commit 9b77ae5cbe866c39e3ae2437e6c32961620c6341 Author: feie9454 Date: Wed Sep 24 11:35:48 2025 +0800 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..22da39c --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv + +*.png \ No newline at end of file diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/chaos_pdl/PingFang SC.ttf b/chaos_pdl/PingFang SC.ttf new file mode 100644 index 0000000..8790adb Binary files /dev/null and b/chaos_pdl/PingFang SC.ttf differ diff --git a/chaos_pdl/bench_latency.py b/chaos_pdl/bench_latency.py new file mode 100644 index 0000000..7cd88a1 --- /dev/null +++ b/chaos_pdl/bench_latency.py @@ -0,0 +1,147 @@ +# -*- coding: utf-8 -*- +""" +bench_latency.py +- 加载训练好的 Transformer 模型(best_model.pt)与 scaler.npz(用于确定列与F) +- 构造单次前向输入(从指定 CSV 取最后 L 行并标准化,或随机生成) +- 多次重复前向,统计耗时(均值/最佳/p50/p90/p99),支持 CUDA 同步与 autocast + +用法示例: +uv run chaos_pdl/bench_latency.py \ + --model_path outputs/chaos/best_model.pt \ + --scaler_path outputs/chaos/scaler.npz \ + --csv_path chaos_pdl/data/metrics-20250920-000328_angles.csv \ + --seq_len 180 --iters 200 --warmup 50 --dtype fp32 + +如导入问题,可用模块方式: +uv run -m chaos_pdl.bench_latency ... +""" + +import argparse +import time +from typing import List + +import numpy as np +import pandas as pd +import torch + +try: + from chaos_pdl.pendulum_transformer import TimeSeriesTransformer +except ModuleNotFoundError: + from pendulum_transformer import TimeSeriesTransformer + + +def read_last_window(csv_path: str, expect_columns: List[str], seq_len: int): + df = pd.read_csv(csv_path) + if "frame_index" in df.columns: + df = df.sort_values("frame_index").drop(columns=["frame_index"]) # 与训练一致 + df_num = df.select_dtypes(include=[np.number]).copy() + has = list(df_num.columns) + if set(has) != set(expect_columns): + raise ValueError( + f"CSV 数值列与训练不一致\n 期望: {expect_columns}\n 实际: {has}\n" + ) + df_num = df_num[expect_columns].reset_index(drop=True) + if len(df_num) < seq_len: + raise ValueError(f"数据行不足:需要至少 {seq_len} 行,实际 {len(df_num)}") + arr = df_num.values.astype(np.float32) + return arr[-seq_len:, :] + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--model_path", type=str, default="./outputs/chaos/best_model.pt") + ap.add_argument("--scaler_path", type=str, default="./outputs/chaos/scaler.npz") + ap.add_argument("--csv_path", type=str, default="", help="用于构造输入的 CSV(可选)") + ap.add_argument("--seq_len", type=int, default=180) + ap.add_argument("--iters", type=int, default=200) + ap.add_argument("--warmup", type=int, default=50) + ap.add_argument("--batch", type=int, default=1) + ap.add_argument("--dtype", type=str, default="fp32", choices=["fp32", "bf16", "fp16"]) + ap.add_argument("--use_autocast", action="store_true", help="使用 autocast 进行混合精度(GPU 推荐)") + args = ap.parse_args() + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + if device.type == "cuda": + print(f"Device: cuda | {torch.cuda.get_device_name(0)}") + else: + print("Device: cpu") + + sc = np.load(args.scaler_path, allow_pickle=True) + mean = sc["mean"].astype(np.float32) + std = sc["std"].astype(np.float32) + columns = list(sc["columns"].tolist()) + F = len(columns) + + # 加载模型 + ckpt = torch.load(args.model_path, map_location=device) + cfg = ckpt["config"] + horizon = int(cfg["horizon"]) + model = TimeSeriesTransformer( + in_features=F, + d_model=cfg["d_model"], + nhead=cfg["nhead"], + num_layers=cfg["num_layers"], + dim_feedforward=cfg["dim_ff"], + dropout=cfg["dropout"], + horizon=horizon, + ).to(device) + model.load_state_dict(ckpt["model_state"]) + model.eval() + + # 构造输入(标准化后) + if args.csv_path: + arr = read_last_window(args.csv_path, columns, args.seq_len) + else: + # 随机输入(标准化空间) + arr = np.random.randn(args.seq_len, F).astype(np.float32) + + # 标准化 + arr_norm = (arr - mean) / std + xb_np = np.repeat(arr_norm[None, :, :], args.batch, axis=0) # [B,L,F] + xb = torch.from_numpy(xb_np).to(device) + + # dtype/autocast + dtype_map = {"fp32": torch.float32, "bf16": torch.bfloat16, "fp16": torch.float16} + amp_dtype = dtype_map[args.dtype] + use_amp = args.use_autocast and (device.type == "cuda") and (amp_dtype != torch.float32) + + # 预热 + with torch.no_grad(): + for _ in range(max(0, args.warmup)): + if use_amp: + with torch.autocast(device_type="cuda", dtype=amp_dtype): + _ = model(xb) + else: + _ = model(xb) + if device.type == "cuda": + torch.cuda.synchronize() + + # 正式测时 + times = [] + with torch.no_grad(): + for _ in range(args.iters): + if device.type == "cuda": + torch.cuda.synchronize() + t0 = time.perf_counter() + if use_amp: + with torch.autocast(device_type="cuda", dtype=amp_dtype): + _ = model(xb) + else: + _ = model(xb) + if device.type == "cuda": + torch.cuda.synchronize() + t1 = time.perf_counter() + times.append((t1 - t0) * 1000.0) # ms + + times = np.array(times, dtype=np.float64) + def pct(p): + return float(np.percentile(times, p)) + + print("Latency (ms) for single forward:") + print(f" batch={args.batch}, L={args.seq_len}, F={F}, H={horizon}, dtype={args.dtype}, autocast={use_amp}") + print(f" mean={times.mean():.3f} | std={times.std():.3f} | min={times.min():.3f}") + print(f" p50={pct(50):.3f} | p90={pct(90):.3f} | p99={pct(99):.3f}") + + +if __name__ == "__main__": + main() diff --git a/chaos_pdl/cmd b/chaos_pdl/cmd new file mode 100644 index 0000000..456704c --- /dev/null +++ b/chaos_pdl/cmd @@ -0,0 +1,3 @@ +uv run ./chaos_pdl/normalize_csv_batch_2.py ./chaos_pdl/data/raw/*.csv -o ./chaos_pdl/data/ --font "chaos_pdl/PingFang SC.ttf" + +uv run chaos_pdl/pendulum_transformer.py --csv_paths chaos_pdl/data/*.csv \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-232212.csv b/chaos_pdl/data/raw/metrics-20250919-232212.csv new file mode 100644 index 0000000..465c7bf --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-232212.csv @@ -0,0 +1,3738 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.001,185.164,429.732,354.176,501.794,190.887,432.164,23.025,77.471,23.025,342.593,317.044,355.031,27.725,18.222,27.725 +1,0.023,179.193,442.782,355.966,486.998,183.990,443.995,14.196,93.945,14.196,344.646,314.632,354.540,27.156,17.957,27.156 +2,0.043,179.193,442.782,355.966,486.998,183.990,443.995,14.196,93.945,14.196,344.646,314.632,354.540,27.156,17.957,27.156 +3,0.062,175.419,457.544,357.384,470.639,180.185,457.915,4.450,109.916,4.450,345.745,312.620,355.305,21.061,19.063,21.061 +4,0.082,175.419,457.544,357.384,470.639,180.185,457.915,4.450,109.916,4.450,345.745,312.620,355.305,21.061,19.063,21.061 +5,0.099,175.622,471.685,354.037,458.094,178.590,471.380,174.132,125.618,174.132,345.803,302.125,351.772,24.051,18.806,24.051 +6,0.120,176.252,487.780,357.341,435.548,184.728,485.487,164.862,141.252,164.862,341.767,313.763,359.329,23.974,21.742,23.974 +7,0.140,176.252,487.780,357.341,435.548,184.728,485.487,164.862,141.252,164.862,341.767,313.763,359.329,23.974,21.742,23.974 +8,0.159,117.423,532.344,351.953,420.396,188.720,497.164,153.737,155.772,153.737,201.698,314.567,360.705,21.475,14.910,21.475 +9,0.178,117.423,532.344,351.953,420.396,188.720,497.164,153.737,155.772,153.737,201.698,314.567,360.705,21.475,14.910,21.475 +10,0.196,181.393,527.125,344.326,407.491,198.979,514.922,145.244,170.713,145.244,318.508,314.167,361.319,25.469,13.934,25.469 +11,0.216,181.393,527.125,344.326,407.491,198.979,514.922,145.244,170.713,145.244,318.508,314.167,361.319,25.469,13.934,25.469 +12,0.234,205.696,535.256,334.211,395.556,212.246,528.388,133.643,6.442,133.643,341.621,313.300,360.602,26.058,14.264,26.058 +13,0.254,220.256,545.881,320.648,384.076,225.379,537.894,122.681,22.319,122.681,342.839,312.161,361.817,24.219,17.586,24.219 +14,0.274,220.256,545.881,320.648,384.076,225.379,537.894,122.681,22.319,122.681,342.839,312.161,361.817,24.219,17.586,24.219 +15,0.292,237.026,553.604,304.554,376.431,240.097,545.842,111.586,37.875,111.586,345.792,310.654,362.487,23.659,19.646,23.659 +16,0.312,237.026,553.604,304.554,376.431,240.097,545.842,111.586,37.875,111.586,345.792,310.654,362.487,23.659,19.646,23.659 +17,0.330,255.908,559.653,285.967,373.412,257.288,552.456,100.852,53.427,100.852,347.827,309.011,362.484,29.423,18.523,29.423 +18,0.350,273.981,562.992,266.726,372.919,273.949,552.962,89.817,70.278,89.817,340.072,309.097,360.131,29.035,16.624,29.035 +19,0.371,273.981,562.992,266.726,372.919,273.949,552.962,89.817,70.278,89.817,340.072,309.097,360.131,29.035,16.624,29.035 +20,0.390,289.813,575.154,250.308,374.613,284.482,551.997,77.037,84.573,77.037,313.533,308.556,361.058,26.985,17.491,26.985 +21,0.410,289.813,575.154,250.308,374.613,284.482,551.997,77.037,84.573,77.037,313.533,308.556,361.058,26.985,17.491,26.985 +22,0.428,304.174,552.351,231.318,379.631,301.284,545.550,66.975,100.763,66.975,345.354,307.519,360.134,23.238,17.229,23.238 +23,0.448,304.174,552.351,231.318,379.631,301.284,545.550,66.975,100.763,66.975,345.354,307.519,360.134,23.238,17.229,23.238 +24,0.466,317.253,542.523,207.021,400.961,315.966,540.623,55.879,117.699,55.879,348.874,280.937,353.464,24.921,17.752,24.921 +25,0.487,328.803,531.647,197.660,399.595,324.444,527.187,45.659,133.363,45.659,347.256,309.990,359.730,28.721,17.368,28.721 +26,0.508,328.803,531.647,197.660,399.595,324.444,527.187,45.659,133.363,45.659,347.256,309.990,359.730,28.721,17.368,28.721 +27,0.526,338.499,517.567,184.666,410.579,333.016,513.744,34.888,148.325,34.888,348.022,313.018,361.391,29.357,16.242,29.357 +28,0.546,338.499,517.567,184.666,410.579,333.016,513.744,34.888,148.325,34.888,348.022,313.018,361.391,29.357,16.242,29.357 +29,0.564,353.084,505.248,174.122,422.935,339.161,498.754,25.003,164.332,25.003,332.510,312.888,363.236,27.973,14.736,27.973 +30,0.584,376.139,493.060,154.496,437.106,336.846,482.769,14.676,179.449,14.676,294.703,287.054,375.939,24.230,13.144,24.230 +31,0.604,376.139,493.060,154.496,437.106,336.846,482.769,14.676,179.449,14.676,294.703,287.054,375.939,24.230,13.144,24.230 +32,0.622,367.606,470.433,144.853,446.060,334.564,467.147,5.679,14.723,5.679,315.323,268.999,381.733,20.512,14.352,20.512 +33,0.641,367.606,470.433,144.853,446.060,334.564,467.147,5.679,14.723,5.679,315.323,268.999,381.733,20.512,14.352,20.512 +34,0.659,355.513,456.157,169.785,466.821,347.426,456.821,175.310,28.443,175.310,339.500,314.823,355.729,22.432,18.648,22.432 +35,0.679,355.513,456.157,169.785,466.821,347.426,456.821,175.310,28.443,175.310,339.500,314.823,355.729,22.432,18.648,22.432 +36,0.698,352.275,443.096,175.620,481.358,347.703,444.244,165.910,44.444,165.910,342.453,313.982,351.882,24.240,18.645,24.240 +37,0.718,348.023,432.228,189.042,511.455,345.139,433.455,156.944,58.717,156.944,342.081,285.896,348.350,24.999,17.471,24.999 +38,0.738,348.023,432.228,189.042,511.455,345.139,433.455,156.944,58.717,156.944,342.081,285.896,348.350,24.999,17.471,24.999 +39,0.756,343.410,424.847,187.963,514.510,339.504,427.144,149.534,74.667,149.534,340.768,313.027,349.831,24.895,17.608,24.895 +40,0.776,343.410,424.847,187.963,514.510,339.504,427.144,149.534,74.667,149.534,340.768,313.027,349.831,24.895,17.608,24.895 +41,0.793,337.081,416.345,192.174,526.584,332.524,419.970,141.499,88.290,141.499,340.769,315.158,352.416,25.541,20.543,25.541 +42,0.813,337.081,416.345,192.174,526.584,332.524,419.970,141.499,88.290,141.499,340.769,315.158,352.416,25.541,20.543,25.541 +43,0.832,330.916,407.887,201.491,535.127,326.618,412.328,134.061,104.511,134.061,338.160,314.348,350.521,25.082,16.435,25.082 +44,0.853,328.295,390.427,208.966,544.595,317.177,406.007,125.513,119.116,125.513,313.054,318.678,351.335,21.704,13.481,21.704 +45,0.873,328.295,390.427,208.966,544.595,317.177,406.007,125.513,119.116,125.513,313.054,318.678,351.335,21.704,13.481,21.704 +46,0.893,315.769,386.154,218.091,550.897,307.526,400.580,119.745,131.285,119.745,316.537,318.812,349.767,18.605,16.495,18.605 +47,0.913,315.769,386.154,218.091,550.897,307.526,400.580,119.745,131.285,119.745,316.537,318.812,349.767,18.605,16.495,18.605 +48,0.934,303.249,388.642,226.073,552.851,300.182,396.025,112.557,146.619,112.557,330.527,318.100,346.516,22.008,14.344,22.008 +49,0.955,291.554,388.656,238.130,554.377,290.090,393.837,105.781,161.030,105.781,326.474,316.273,337.241,21.171,13.506,21.171 +50,0.975,291.554,388.656,238.130,554.377,290.090,393.837,105.781,161.030,105.781,326.474,316.273,337.241,21.171,13.506,21.171 +51,0.993,280.696,384.293,250.938,555.642,280.015,388.591,99.002,175.849,99.002,330.385,315.275,339.086,19.382,13.352,19.382 +52,1.012,280.696,384.293,250.938,555.642,280.015,388.591,99.002,175.849,99.002,330.385,315.275,339.086,19.382,13.352,19.382 +53,1.030,269.473,386.747,263.535,556.310,269.315,390.510,92.406,10.517,92.406,324.260,316.910,331.793,18.857,13.225,18.857 +54,1.049,269.473,386.747,263.535,556.310,269.315,390.510,92.406,10.517,92.406,324.260,316.910,331.793,18.857,13.225,18.857 +55,1.067,259.340,386.775,275.830,556.813,259.657,391.001,85.704,25.677,85.704,324.639,317.951,333.115,18.998,13.917,18.998 +56,1.089,249.519,383.096,302.240,566.628,251.950,395.248,78.690,40.314,78.690,331.044,283.630,355.829,19.023,15.759,19.023 +57,1.108,249.519,383.096,302.240,566.628,251.950,395.248,78.690,40.314,78.690,331.044,283.630,355.829,19.023,15.759,19.023 +58,1.126,237.800,377.400,297.784,555.141,241.560,388.681,71.565,56.876,71.565,327.612,320.041,351.395,19.606,17.231,19.606 +59,1.145,237.800,377.400,297.784,555.141,241.560,388.681,71.565,56.876,71.565,327.612,320.041,351.395,19.606,17.231,19.606 +60,1.163,221.123,369.259,307.169,551.803,231.738,392.516,65.468,69.963,65.468,301.325,320.978,352.454,18.969,14.402,18.969 +61,1.183,220.249,388.899,314.170,538.100,222.461,392.514,58.530,85.711,58.530,335.623,302.725,344.098,24.102,17.675,24.102 +62,1.203,220.249,388.899,314.170,538.100,222.461,392.514,58.530,85.711,58.530,335.623,302.725,344.098,24.102,17.675,24.102 +63,1.224,212.083,396.560,324.000,539.000,215.763,401.209,51.639,101.310,51.639,338.577,318.493,350.435,26.720,17.650,26.720 +64,1.244,212.083,396.560,324.000,539.000,215.763,401.209,51.639,101.310,51.639,338.577,318.493,350.435,26.720,17.650,26.720 +65,1.262,204.109,404.255,331.908,529.188,207.447,407.486,44.066,116.837,44.066,338.855,317.056,348.146,27.212,17.564,27.212 +66,1.281,204.109,404.255,331.908,529.188,207.447,407.486,44.066,116.837,44.066,338.855,317.056,348.146,27.212,17.564,27.212 +67,1.299,196.412,415.302,341.074,517.243,199.138,417.301,36.254,131.411,36.254,340.357,313.345,347.119,26.558,18.651,26.558 +68,1.320,190.832,426.240,349.469,505.201,193.649,427.759,28.330,146.394,28.330,341.413,313.409,347.814,30.065,19.430,30.065 +69,1.340,190.832,426.240,349.469,505.201,193.649,427.759,28.330,146.394,28.330,341.413,313.409,347.814,30.065,19.430,30.065 +70,1.359,185.184,438.350,357.948,493.349,190.451,440.180,19.151,161.108,19.151,340.187,314.649,351.340,25.585,16.732,25.585 +71,1.378,185.184,438.350,357.948,493.349,190.451,440.180,19.151,161.108,19.151,340.187,314.649,351.340,25.585,16.732,25.585 +72,1.396,174.731,449.673,363.589,481.744,188.785,451.928,9.118,175.914,9.118,326.172,315.981,354.639,21.259,15.389,21.259 +73,1.416,134.012,464.575,366.874,468.323,188.411,465.255,0.716,8.707,0.716,248.168,314.753,356.975,19.873,12.645,19.873 +74,1.437,134.012,464.575,366.874,468.323,188.411,465.255,0.716,8.707,0.716,248.168,314.753,356.975,19.873,12.645,19.873 +75,1.457,171.040,482.887,370.756,457.252,190.565,480.005,171.603,23.009,171.603,323.692,303.318,363.164,23.710,14.046,23.710 +76,1.476,171.040,482.887,370.756,457.252,190.565,480.005,171.603,23.009,171.603,323.692,303.318,363.164,23.710,14.046,23.710 +77,1.494,181.368,497.580,366.665,443.944,192.403,494.107,162.530,37.020,162.530,339.429,300.208,362.567,24.307,14.712,24.307 +78,1.514,181.368,497.580,366.665,443.944,192.403,494.107,162.530,37.020,162.530,339.429,300.208,362.567,24.307,14.712,24.307 +79,1.532,189.762,511.414,365.121,437.250,197.386,507.477,152.691,52.352,152.691,345.359,277.124,362.519,25.652,19.297,25.652 +80,1.553,199.209,523.553,350.504,420.259,202.753,520.852,142.677,66.501,142.677,348.060,283.255,356.972,26.414,21.212,26.414 +81,1.574,199.209,523.553,350.504,420.259,202.753,520.852,142.677,66.501,142.677,348.060,283.255,356.972,26.414,21.212,26.414 +82,1.593,209.509,534.704,334.340,409.875,210.062,534.099,132.397,80.754,132.397,349.432,279.621,351.070,25.719,19.855,25.719 +83,1.614,209.509,534.704,334.340,409.875,210.062,534.099,132.397,80.754,132.397,349.432,279.621,351.070,25.719,19.855,25.719 +84,1.632,221.251,545.312,315.874,383.037,225.111,539.051,121.649,95.677,121.649,346.159,309.754,360.870,25.230,17.365,25.230 +85,1.652,209.342,617.143,300.329,374.295,235.177,543.128,109.242,109.558,109.242,204.958,311.641,361.746,23.541,16.937,23.541 +86,1.672,209.342,617.143,300.329,374.295,235.177,543.128,109.242,109.558,109.242,204.958,311.641,361.746,23.541,16.937,23.541 +87,1.691,249.521,556.528,282.671,368.775,250.905,547.298,98.531,124.346,98.531,343.853,311.268,362.520,28.877,17.091,28.877 +88,1.711,249.521,556.528,282.671,368.775,250.905,547.298,98.531,124.346,98.531,343.853,311.268,362.520,28.877,17.091,28.877 +89,1.729,271.741,557.031,263.959,367.535,271.622,548.286,89.218,139.399,89.218,344.186,311.404,361.677,28.120,17.029,28.120 +90,1.749,271.741,557.031,263.959,367.535,271.622,548.286,89.218,139.399,89.218,344.186,311.404,361.677,28.120,17.029,28.120 +91,1.769,284.354,556.994,243.453,369.930,282.165,547.479,77.047,153.719,77.047,343.891,310.356,363.417,26.985,18.209,26.985 +92,1.790,303.918,551.956,226.214,375.504,299.396,541.479,66.656,167.969,66.656,339.954,311.705,362.776,22.944,16.723,22.944 +93,1.810,303.918,551.956,226.214,375.504,299.396,541.479,66.656,167.969,66.656,339.954,311.705,362.776,22.944,16.723,22.944 +94,1.829,320.079,545.266,210.931,384.079,312.743,534.353,56.090,2.517,56.090,336.729,312.358,363.029,25.349,14.239,25.349 +95,1.849,320.079,545.266,210.931,384.079,312.743,534.353,56.090,2.517,56.090,336.729,312.358,363.029,25.349,14.239,25.349 +96,1.868,336.739,537.797,198.144,396.199,324.655,525.517,45.461,16.535,45.461,327.363,313.597,361.818,25.284,14.500,25.284 +97,1.890,387.936,550.110,188.265,410.572,336.615,513.223,35.707,30.801,35.707,234.343,313.169,360.747,20.503,14.586,20.503 +98,1.909,387.936,550.110,188.265,410.572,336.615,513.223,35.707,30.801,35.707,234.343,313.169,360.747,20.503,14.586,20.503 +99,1.927,352.469,509.647,183.910,423.002,342.773,504.930,25.942,43.711,25.942,335.828,312.685,357.392,27.828,20.803,27.828 +100,1.946,352.469,509.647,183.910,423.002,342.773,504.930,25.942,43.711,25.942,335.828,312.685,357.392,27.828,20.803,27.828 +101,1.965,354.709,493.172,177.900,440.066,348.560,491.353,16.480,56.643,16.480,343.569,311.256,356.395,27.984,20.109,27.984 +102,1.984,356.637,476.176,177.900,466.200,353.256,475.825,5.922,71.565,5.922,344.029,290.613,350.827,25.279,19.290,25.279 +103,2.004,356.637,476.176,177.900,466.200,353.256,475.825,5.922,71.565,5.922,344.029,290.613,350.827,25.279,19.290,25.279 +104,2.022,356.356,463.149,175.263,473.954,351.552,463.391,177.115,87.930,177.115,343.572,310.231,353.193,22.669,18.494,22.669 +105,2.042,356.356,463.149,175.263,473.954,351.552,463.391,177.115,87.930,177.115,343.572,310.231,353.193,22.669,18.494,22.669 +106,2.060,353.333,450.317,172.577,487.115,347.193,451.605,168.158,101.310,168.158,343.830,314.570,356.375,23.805,21.965,23.805 +107,2.079,353.333,450.317,172.577,487.115,347.193,451.605,168.158,101.310,168.158,343.830,314.570,356.375,23.805,21.965,23.805 +108,2.098,350.378,437.822,175.869,498.941,343.899,440.225,159.654,116.281,159.654,342.106,317.507,355.925,23.471,18.530,23.471 +109,2.117,353.262,421.732,179.703,509.629,338.796,429.629,151.372,131.798,151.372,322.985,318.886,355.947,24.734,14.782,24.734 +110,2.137,353.262,421.732,179.703,509.629,338.796,429.629,151.372,131.798,151.372,322.985,318.886,355.947,24.734,14.782,24.734 +111,2.156,397.759,372.701,183.280,517.703,330.938,418.784,145.408,145.840,145.408,193.086,317.603,355.427,18.820,16.490,18.820 +112,2.176,397.759,372.701,183.280,517.703,330.938,418.784,145.408,145.840,145.408,193.086,317.603,355.427,18.820,16.490,18.820 +113,2.194,333.868,405.551,192.432,526.617,326.581,412.317,137.121,158.875,137.121,332.270,317.978,352.159,22.821,17.151,22.821 +114,2.213,333.868,405.551,192.432,526.617,326.581,412.317,137.121,158.875,137.121,332.270,317.978,352.159,22.821,17.151,22.821 +115,2.232,325.632,400.006,201.804,531.648,321.574,404.788,130.314,173.953,130.314,335.897,316.361,348.441,25.047,14.672,25.047 +116,2.251,316.551,393.662,213.056,537.597,314.213,397.220,123.311,7.838,123.311,337.219,317.067,345.734,24.570,14.603,24.570 +117,2.271,316.551,393.662,213.056,537.597,314.213,397.220,123.311,7.838,123.311,337.219,317.067,345.734,24.570,14.603,24.570 +118,2.289,307.300,388.900,224.539,544.634,305.527,392.446,116.565,21.541,116.565,336.752,316.791,344.680,23.702,14.197,23.702 +119,2.309,307.300,388.900,224.539,544.634,305.527,392.446,116.565,21.541,116.565,336.752,316.791,344.680,23.702,14.197,23.702 +120,2.326,296.730,386.493,251.423,561.732,294.695,392.088,109.983,34.786,109.983,336.531,279.928,348.438,22.213,14.000,22.213 +121,2.346,296.730,386.493,251.423,561.732,294.695,392.088,109.983,34.786,109.983,336.531,279.928,348.438,22.213,14.000,22.213 +122,2.365,285.122,388.274,258.634,569.382,283.160,396.875,102.844,48.540,102.844,329.640,283.613,347.285,21.379,13.846,21.379 +123,2.384,276.728,388.771,258.092,560.984,276.007,394.482,97.193,61.928,97.193,323.357,319.353,334.870,19.091,14.176,19.091 +124,2.405,276.728,388.771,258.092,560.984,276.007,394.482,97.193,61.928,97.193,323.357,319.353,334.870,19.091,14.176,19.091 +125,2.423,268.620,384.409,266.607,563.264,268.439,395.083,90.971,75.203,90.971,315.022,319.950,336.375,18.404,16.181,18.404 +126,2.442,268.620,384.409,266.607,563.264,268.439,395.083,90.971,75.203,90.971,315.022,319.950,336.375,18.404,16.181,18.404 +127,2.460,256.657,347.158,274.716,548.493,260.070,388.688,85.301,88.091,85.301,237.596,287.274,320.935,18.759,17.590,18.759 +128,2.480,256.657,347.158,274.716,548.493,260.070,388.688,85.301,88.091,85.301,237.596,287.274,320.935,18.759,17.590,18.759 +129,2.498,252.171,388.271,284.890,561.398,253.887,396.913,78.768,101.889,78.768,317.127,316.947,334.747,18.789,16.017,18.789 +130,2.519,243.695,386.815,293.533,558.222,245.633,393.029,72.681,115.221,72.681,330.909,317.697,343.926,20.489,15.314,20.489 +131,2.539,243.695,386.815,293.533,558.222,245.633,393.029,72.681,115.221,72.681,330.909,317.697,343.926,20.489,15.314,20.489 +132,2.557,234.802,389.058,303.232,552.685,236.734,393.481,66.402,128.530,66.402,335.371,315.954,345.023,21.680,14.342,21.680 +133,2.577,234.802,389.058,303.232,552.685,236.734,393.481,66.402,128.530,66.402,335.371,315.954,345.023,21.680,14.342,21.680 +134,2.594,226.149,393.044,313.401,545.733,228.129,396.459,59.899,142.001,59.899,335.925,315.136,343.820,23.384,13.618,23.384 +135,2.614,226.149,393.044,313.401,545.733,228.129,396.459,59.899,142.001,59.899,335.925,315.136,343.820,23.384,13.618,23.384 +136,2.632,217.226,397.704,324.073,537.159,219.310,400.504,53.352,155.225,53.352,337.366,314.992,344.347,25.500,14.458,25.500 +137,2.652,208.763,403.180,334.646,527.714,211.535,406.085,46.353,168.783,46.353,337.936,316.333,345.967,27.085,15.541,27.085 +138,2.673,208.763,403.180,334.646,527.714,211.535,406.085,46.353,168.783,46.353,337.936,316.333,345.967,27.085,15.541,27.085 +139,2.691,199.342,409.815,344.062,517.909,203.773,413.393,38.928,1.692,38.928,338.225,316.394,349.616,26.630,17.140,26.630 +140,2.711,199.342,409.815,344.062,517.909,203.773,413.393,38.928,1.692,38.928,338.225,316.394,349.616,26.630,17.140,26.630 +141,2.729,185.593,415.836,351.060,511.517,197.701,422.689,29.511,16.169,29.511,326.609,318.555,354.436,21.428,15.089,21.428 +142,2.749,185.593,415.836,351.060,511.517,197.701,422.689,29.511,16.169,29.511,326.609,318.555,354.436,21.428,15.089,21.428 +143,2.767,150.745,417.990,358.840,501.286,191.695,435.809,23.516,29.286,23.516,269.460,314.524,358.778,21.984,12.220,21.984 +144,2.788,173.723,440.804,363.111,489.880,188.470,444.760,15.018,42.797,15.018,330.201,312.582,360.736,22.992,15.056,22.992 +145,2.808,173.723,440.804,363.111,489.880,188.470,444.760,15.018,42.797,15.018,330.201,312.582,360.736,22.992,15.056,22.992 +146,2.827,177.275,455.515,362.301,474.971,184.136,456.147,5.256,56.560,5.256,344.501,315.931,358.282,24.357,16.154,24.357 +147,2.846,177.275,455.515,362.301,474.971,184.136,456.147,5.256,56.560,5.256,344.501,315.931,358.282,24.357,16.154,24.357 +148,2.864,176.516,469.802,362.322,460.898,183.084,469.463,177.044,72.440,177.044,345.727,313.681,358.882,21.919,20.902,21.919 +149,2.887,179.305,484.915,357.888,446.978,183.722,483.962,167.829,86.820,167.829,347.058,310.909,356.096,23.729,18.416,23.729 +150,2.907,179.305,484.915,357.888,446.978,183.722,483.962,167.829,86.820,167.829,347.058,310.909,356.096,23.729,18.416,23.729 +151,2.926,184.615,500.380,352.063,440.434,186.423,499.670,158.543,100.916,158.543,347.770,291.430,351.656,24.994,19.112,24.994 +152,2.945,184.615,500.380,352.063,440.434,186.423,499.670,158.543,100.916,158.543,347.770,291.430,351.656,24.994,19.112,24.994 +153,2.963,192.037,515.915,347.371,417.609,196.679,513.139,149.121,115.074,149.121,345.902,307.185,356.720,25.950,20.218,25.950 +154,2.983,192.768,532.371,338.376,402.637,204.499,522.037,138.621,127.515,138.621,327.496,312.232,358.765,21.260,18.750,21.260 +155,3.004,192.768,532.371,338.376,402.637,204.499,522.037,138.621,127.515,138.621,327.496,312.232,358.765,21.260,18.750,21.260 +156,3.025,202.047,553.369,328.648,392.377,217.802,534.506,129.870,140.194,129.870,311.128,312.154,360.282,24.617,16.005,24.617 +157,3.045,202.047,553.369,328.648,392.377,217.802,534.506,129.870,140.194,129.870,311.128,312.154,360.282,24.617,16.005,24.617 +158,3.064,224.470,554.671,315.151,382.820,231.086,542.457,118.443,153.759,118.443,333.032,311.731,360.813,24.620,15.981,24.620 +159,3.083,241.570,559.698,298.888,375.785,245.214,548.480,107.998,167.735,107.998,338.069,312.059,361.658,25.075,16.272,25.075 +160,3.104,241.570,559.698,298.888,375.785,245.214,548.480,107.998,167.735,107.998,338.069,312.059,361.658,25.075,16.272,25.075 +161,3.124,256.361,561.702,280.497,370.664,257.626,550.480,96.435,0.895,96.435,339.905,311.165,362.492,28.608,17.498,28.608 +162,3.144,256.361,561.702,280.497,370.664,257.626,550.480,96.435,0.895,96.435,339.905,311.165,362.492,28.608,17.498,28.608 +163,3.162,271.043,559.332,261.774,369.392,270.339,550.783,85.287,14.207,85.287,345.805,312.152,362.961,29.488,18.345,29.488 +164,3.182,271.043,559.332,261.774,369.392,270.339,550.783,85.287,14.207,85.287,345.805,312.152,362.961,29.488,18.345,29.488 +165,3.201,291.479,555.567,243.336,371.857,289.600,547.726,76.525,27.597,76.525,347.489,312.697,363.616,24.970,17.241,24.970 +166,3.222,307.805,553.744,226.341,377.182,302.294,541.803,65.225,41.236,65.225,336.294,312.693,362.597,22.070,16.498,22.070 +167,3.242,307.805,553.744,226.341,377.182,302.294,541.803,65.225,41.236,65.225,336.294,312.693,362.597,22.070,16.498,22.070 +168,3.260,360.808,597.553,211.128,385.480,315.288,533.289,54.689,54.462,54.689,204.142,312.706,361.645,21.285,16.856,21.285 +169,3.279,360.808,597.553,211.128,385.480,315.288,533.289,54.689,54.462,54.689,204.142,312.706,361.645,21.285,16.856,21.285 +170,3.298,331.198,530.822,198.850,396.495,325.013,524.675,44.824,66.698,44.824,342.242,313.024,359.684,26.935,20.123,26.935 +171,3.317,338.747,517.182,187.486,409.757,333.912,513.758,35.304,80.698,35.304,347.355,312.032,359.203,29.243,17.780,29.243 +172,3.338,338.747,517.182,187.486,409.757,333.912,513.758,35.304,80.698,35.304,347.355,312.032,359.203,29.243,17.780,29.243 +173,3.358,345.772,503.103,179.115,436.417,343.378,501.955,25.624,93.434,25.624,347.592,288.222,352.902,29.212,18.048,29.212 +174,3.377,345.772,503.103,179.115,436.417,343.378,501.955,25.624,93.434,25.624,347.592,288.222,352.902,29.212,18.048,29.212 +175,3.396,351.221,489.454,174.092,440.028,346.257,488.003,16.297,106.699,16.297,347.076,313.018,357.420,27.997,18.390,27.997 +176,3.416,351.221,489.454,174.092,440.028,346.257,488.003,16.297,106.699,16.297,347.076,313.018,357.420,27.997,18.390,27.997 +177,3.434,354.652,474.501,168.850,454.623,347.580,473.783,5.803,120.069,5.803,345.287,315.334,359.504,24.281,20.679,24.281 +178,3.455,357.818,461.451,167.608,469.113,347.276,461.926,177.419,134.615,177.419,338.513,316.141,359.618,22.706,16.628,22.706 +179,3.474,357.818,461.451,167.608,469.113,347.276,461.926,177.419,134.615,177.419,338.513,316.141,359.618,22.706,16.628,22.706 +180,3.492,366.130,447.507,170.281,482.693,346.534,451.300,169.046,146.802,169.046,318.097,318.083,358.016,23.404,12.479,23.404 +181,3.511,366.130,447.507,170.281,482.693,346.534,451.300,169.046,146.802,169.046,318.097,318.083,358.016,23.404,12.479,23.404 +182,3.530,415.598,417.186,174.371,493.937,344.219,440.074,162.221,158.405,162.221,206.451,317.529,356.367,19.278,11.855,19.278 +183,3.550,352.662,425.840,180.523,502.170,341.529,431.147,154.514,170.433,154.514,327.133,318.940,351.799,18.849,17.595,18.849 +184,3.571,352.662,425.840,180.523,502.170,341.529,431.147,154.514,170.433,154.514,327.133,318.940,351.799,18.849,17.595,18.849 +185,3.591,343.621,420.977,187.048,513.002,338.195,424.553,146.611,2.759,146.611,336.754,314.502,349.752,23.151,15.596,23.151 +186,3.611,343.621,420.977,187.048,513.002,338.195,424.553,146.611,2.759,146.611,336.754,314.502,349.752,23.151,15.596,23.151 +187,3.629,336.295,413.212,195.844,522.260,332.913,416.074,139.764,15.507,139.764,337.593,315.230,346.453,23.136,15.111,23.136 +188,3.649,336.295,413.212,195.844,522.260,332.913,416.074,139.764,15.507,139.764,337.593,315.230,346.453,23.136,15.111,23.136 +189,3.668,329.561,405.901,205.110,531.382,326.841,408.803,133.152,28.631,133.152,337.411,314.848,345.365,23.756,14.339,23.756 +190,3.689,321.301,399.594,214.432,540.076,318.920,402.802,126.579,41.915,126.579,337.016,315.006,345.006,23.702,14.384,23.702 +191,3.711,321.301,399.594,214.432,540.076,318.920,402.802,126.579,41.915,126.579,337.016,315.006,345.006,23.702,14.384,23.702 +192,3.731,312.135,394.412,231.529,559.735,308.469,400.695,120.256,55.093,120.256,337.738,286.568,352.286,22.674,14.356,22.674 +193,3.751,303.724,389.712,230.806,553.878,301.486,394.754,113.933,68.305,113.933,337.198,318.663,348.230,23.559,15.116,23.559 +194,3.771,303.724,389.712,230.806,553.878,301.486,394.754,113.933,68.305,113.933,337.198,318.663,348.230,23.559,15.116,23.559 +195,3.791,292.755,384.376,238.229,557.687,290.720,390.947,107.210,81.649,107.210,335.852,320.465,349.610,21.767,15.921,21.767 +196,3.811,292.755,384.376,238.229,557.687,290.720,390.947,107.210,81.649,107.210,335.852,320.465,349.610,21.767,15.921,21.767 +197,3.829,284.239,381.218,246.145,548.121,282.375,390.315,101.575,96.009,101.575,305.159,296.363,323.732,19.652,17.901,19.652 +198,3.850,284.239,381.218,246.145,548.121,282.375,390.315,101.575,96.009,101.575,305.159,296.363,323.732,19.652,17.901,19.652 +199,3.868,274.604,379.567,252.912,560.741,273.044,393.602,96.340,109.983,96.340,308.435,320.811,336.679,18.994,17.087,18.994 +200,3.890,265.713,383.998,260.500,560.000,265.660,391.989,90.382,123.690,90.382,320.100,320.617,336.083,18.360,14.145,18.360 +201,3.909,265.713,383.998,260.500,560.000,265.660,391.989,90.382,123.690,90.382,320.100,320.617,336.083,18.360,14.145,18.360 +202,3.927,257.879,383.226,270.044,557.576,258.425,388.964,84.560,136.596,84.560,326.380,318.919,337.908,18.867,13.502,18.867 +203,3.947,257.879,383.226,270.044,557.576,258.425,388.964,84.560,136.596,84.560,326.380,318.919,337.908,18.867,13.502,18.867 +204,3.964,249.501,381.198,281.040,554.724,250.383,385.588,78.640,149.365,78.640,334.767,317.255,343.722,18.820,14.218,18.820 +205,3.984,241.524,383.799,292.605,551.332,242.589,387.272,72.943,162.408,72.943,335.767,315.938,343.031,19.587,14.112,19.587 +206,4.004,241.524,383.799,292.605,551.332,242.589,387.272,72.943,162.408,72.943,335.767,315.938,343.031,19.587,14.112,19.587 +207,4.024,234.542,387.611,304.920,547.492,235.722,390.427,67.264,175.443,67.264,337.103,315.470,343.209,21.468,13.941,21.468 +208,4.043,234.542,387.611,304.920,547.492,235.722,390.427,67.264,175.443,67.264,337.103,315.470,343.209,21.468,13.941,21.468 +209,4.062,227.544,391.801,316.970,544.714,229.497,395.351,61.178,7.864,61.178,337.959,317.478,346.062,23.182,12.894,23.182 +210,4.081,227.544,391.801,316.970,544.714,229.497,395.351,61.178,7.864,61.178,337.959,317.478,346.062,23.182,12.894,23.182 +211,4.099,219.252,396.019,327.912,539.884,222.761,401.077,55.251,20.260,55.251,335.659,318.101,347.971,25.516,15.268,25.516 +212,4.119,208.347,398.476,336.352,536.725,217.040,407.946,47.447,33.421,47.447,325.395,319.238,351.104,20.397,17.761,20.397 +213,4.140,208.347,398.476,336.352,536.725,217.040,407.946,47.447,33.421,47.447,325.395,319.238,351.104,20.397,17.761,20.397 +214,4.158,167.086,378.392,343.446,531.091,209.864,415.738,41.121,44.012,41.121,239.411,318.992,352.984,18.462,15.725,18.462 +215,4.178,167.086,378.392,343.446,531.091,209.864,415.738,41.121,44.012,41.121,239.411,318.992,352.984,18.462,15.725,18.462 +216,4.196,192.569,414.657,349.201,522.565,203.560,422.425,35.250,54.744,35.250,326.547,319.000,353.464,25.991,14.515,25.991 +217,4.216,190.660,427.350,353.595,512.304,196.794,430.659,28.346,67.109,28.346,339.591,317.770,353.530,26.947,15.723,26.947 +218,4.237,190.660,427.350,353.595,512.304,196.794,430.659,28.346,67.109,28.346,339.591,317.770,353.530,26.947,15.723,26.947 +219,4.258,186.144,436.055,357.201,500.141,191.533,438.049,20.300,79.992,20.300,342.348,316.058,353.840,27.996,18.653,27.996 +220,4.278,186.144,436.055,357.201,500.141,191.533,438.049,20.300,79.992,20.300,342.348,316.058,353.840,27.996,18.653,27.996 +221,4.297,180.932,447.538,358.310,486.471,185.841,448.620,12.430,92.437,12.430,343.092,313.482,353.145,27.443,17.665,27.443 +222,4.317,178.328,460.992,359.563,471.377,182.731,461.208,2.816,105.673,2.816,345.419,312.806,354.236,23.267,18.564,23.267 +223,4.337,178.328,460.992,359.563,471.377,182.731,461.208,2.816,105.673,2.816,345.419,312.806,354.236,23.267,18.564,23.267 +224,4.357,177.670,473.814,358.860,455.885,182.284,473.382,174.653,118.325,174.653,345.608,310.536,354.876,22.248,18.685,22.248 +225,4.377,177.670,473.814,358.860,455.885,182.284,473.382,174.653,118.325,174.653,345.608,310.536,354.876,22.248,18.685,22.248 +226,4.395,178.854,487.865,356.462,439.425,184.538,486.423,165.763,130.280,165.763,344.675,313.279,356.403,24.203,19.409,24.203 +227,4.415,178.854,487.865,356.462,439.425,184.538,486.423,165.763,130.280,165.763,344.675,313.279,356.403,24.203,19.409,24.203 +228,4.433,176.487,502.255,351.958,423.796,188.282,497.091,156.357,142.397,156.357,332.910,315.038,358.662,20.715,18.522,20.715 +229,4.454,153.955,538.787,346.375,410.735,197.307,512.342,148.617,154.799,148.617,258.783,315.037,360.346,23.443,14.956,23.443 +230,4.476,153.955,538.787,346.375,410.735,197.307,512.342,148.617,154.799,148.617,258.783,315.037,360.346,23.443,14.956,23.443 +231,4.494,192.073,535.015,337.755,398.139,206.420,522.390,138.652,167.386,138.652,323.137,314.440,361.358,25.945,14.467,25.945 +232,4.515,192.073,535.015,337.755,398.139,206.420,522.390,138.652,167.386,138.652,323.137,314.440,361.358,25.945,14.467,25.945 +233,4.533,210.671,543.748,326.000,388.000,218.497,533.529,127.446,0.000,127.446,336.063,314.000,361.806,25.401,14.000,25.401 +234,4.553,226.611,551.284,311.654,379.049,231.567,541.663,117.255,12.588,117.255,340.827,312.811,362.473,24.945,16.961,24.945 +235,4.574,226.611,551.284,311.654,379.049,231.567,541.663,117.255,12.588,117.255,340.827,312.811,362.473,24.945,16.961,24.945 +236,4.593,241.787,556.378,295.737,372.990,244.488,547.177,106.359,24.928,106.359,343.961,311.849,363.139,24.618,18.929,24.618 +237,4.612,241.787,556.378,295.737,372.990,244.488,547.177,106.359,24.928,106.359,343.961,311.849,363.139,24.618,18.929,24.618 +238,4.631,261.270,558.337,278.935,369.727,262.228,550.456,96.934,37.875,96.934,346.970,311.268,362.848,30.988,18.769,30.988 +239,4.651,271.683,559.861,260.561,370.951,270.904,551.626,84.596,51.340,84.596,345.148,310.786,361.692,30.203,16.242,30.203 +240,4.671,271.683,559.861,260.561,370.951,270.904,551.626,84.596,51.340,84.596,345.148,310.786,361.692,30.203,16.242,30.203 +241,4.692,294.758,563.584,243.676,374.388,291.199,549.113,76.182,64.026,76.182,332.234,309.944,362.037,24.707,16.412,24.707 +242,4.712,294.758,563.584,243.676,374.388,291.199,549.113,76.182,64.026,76.182,332.234,309.944,362.037,24.707,16.412,24.707 +243,4.730,311.326,559.301,229.489,380.359,304.535,544.103,65.924,75.564,65.924,326.935,310.913,360.228,22.845,18.486,22.845 +244,4.750,319.429,542.925,214.206,388.476,315.471,537.173,55.467,88.025,55.467,345.839,309.264,359.804,24.836,16.852,24.836 +245,4.770,319.429,542.925,214.206,388.476,315.471,537.173,55.467,88.025,55.467,345.839,309.264,359.804,24.836,16.852,24.836 +246,4.791,329.907,531.564,200.923,399.885,326.388,528.004,45.320,101.310,45.320,348.626,308.098,358.638,25.337,17.454,25.337 +247,4.811,329.907,531.564,200.923,399.885,326.388,528.004,45.320,101.310,45.320,348.626,308.098,358.638,25.337,17.454,25.337 +248,4.829,338.480,520.516,186.131,419.142,334.974,518.002,35.636,114.656,35.636,348.509,294.312,357.137,26.943,17.640,26.943 +249,4.849,338.480,520.516,186.131,419.142,334.974,518.002,35.636,114.656,35.636,348.509,294.312,357.137,26.943,17.640,26.943 +250,4.868,346.324,507.311,179.876,424.527,340.813,504.509,26.959,127.185,26.959,347.051,313.017,359.417,28.553,18.406,28.553 +251,4.891,353.320,493.068,172.910,437.700,345.102,490.466,17.571,140.323,17.571,342.933,314.718,360.174,25.994,16.810,25.994 +252,4.911,353.320,493.068,172.910,437.700,345.102,490.466,17.571,140.323,17.571,342.933,314.718,360.174,25.994,16.810,25.994 +253,4.929,363.022,477.253,168.770,449.547,347.195,475.048,7.933,153.068,7.933,328.515,316.667,360.474,25.451,15.147,25.451 +254,4.949,363.022,477.253,168.770,449.547,347.195,475.048,7.933,153.068,7.933,328.515,316.667,360.474,25.451,15.147,25.451 +255,4.967,381.500,464.500,167.827,462.245,347.413,464.500,0.000,165.295,0.000,291.000,317.759,359.173,21.000,13.463,21.000 +256,4.988,384.213,446.628,169.478,474.512,346.774,451.521,172.555,177.455,172.555,282.045,317.487,357.560,19.026,13.320,19.026 +257,5.009,384.213,446.628,169.478,474.512,346.774,451.521,172.555,177.455,172.555,282.045,317.487,357.560,19.026,13.320,19.026 +258,5.027,353.995,439.655,173.372,486.849,345.238,442.272,163.364,8.566,163.364,336.590,315.872,354.868,23.866,19.384,23.866 +259,5.048,353.995,439.655,173.372,486.849,345.238,442.272,163.364,8.566,163.364,336.590,315.872,354.868,23.866,19.384,23.866 +260,5.066,348.358,430.513,180.120,496.933,343.515,432.695,155.742,21.595,155.742,340.096,315.495,350.719,23.563,15.206,23.563 +261,5.087,343.955,423.813,187.417,508.618,340.503,425.850,149.456,33.555,149.456,339.796,314.788,347.813,24.126,15.689,24.126 +262,5.109,343.955,423.813,187.417,508.618,340.503,425.850,149.456,33.555,149.456,339.796,314.788,347.813,24.126,15.689,24.126 +263,5.127,338.296,416.512,194.750,521.250,335.205,418.869,142.677,45.000,142.677,339.761,313.955,347.536,24.819,14.849,24.819 +264,5.147,338.296,416.512,194.750,521.250,335.205,418.869,142.677,45.000,142.677,339.761,313.955,347.536,24.819,14.849,24.819 +265,5.166,332.139,409.657,207.083,538.483,328.512,413.183,135.807,57.288,135.807,338.700,297.596,348.817,25.911,14.940,25.911 +266,5.186,324.643,403.460,210.060,540.977,321.599,407.131,129.668,69.254,129.668,338.919,317.642,348.457,24.031,15.799,24.031 +267,5.207,324.643,403.460,210.060,540.977,321.599,407.131,129.668,69.254,129.668,338.919,317.642,348.457,24.031,15.799,24.031 +268,5.226,317.761,398.170,216.487,546.821,314.709,402.722,123.840,80.934,123.840,337.807,317.126,348.770,24.087,16.357,24.087 +269,5.246,317.761,398.170,216.487,546.821,314.709,402.722,123.840,80.934,123.840,337.807,317.126,348.770,24.087,16.357,24.087 +270,5.265,309.761,393.073,223.676,542.510,308.817,394.844,118.072,93.366,118.072,336.706,297.838,340.721,22.471,17.734,22.471 +271,5.285,303.142,383.166,230.202,554.223,298.700,394.349,111.663,104.973,111.663,323.669,315.055,347.735,20.173,15.827,20.173 +272,5.307,303.142,383.166,230.202,554.223,298.700,394.349,111.663,104.973,111.663,323.669,315.055,347.735,20.173,15.827,20.173 +273,5.325,297.605,369.458,236.748,558.728,290.522,392.410,107.152,114.753,107.152,301.521,320.299,349.560,18.674,16.237,18.674 +274,5.344,297.605,369.458,236.748,558.728,290.522,392.410,107.152,114.753,107.152,301.521,320.299,349.560,18.674,16.237,18.674 +275,5.363,284.703,384.071,242.548,558.165,282.835,392.912,101.929,126.541,101.929,321.950,319.607,340.023,18.907,15.208,18.907 +276,5.382,284.703,384.071,242.548,558.165,282.835,392.912,101.929,126.541,101.929,321.950,319.607,340.023,18.907,15.208,18.907 +277,5.401,276.752,383.261,250.943,558.438,275.983,389.894,96.613,137.511,96.613,327.257,319.126,340.612,18.888,13.620,18.888 +278,5.421,268.682,387.993,260.292,557.315,268.565,393.133,91.302,149.149,91.302,318.372,318.126,328.656,18.359,13.195,18.359 +279,5.442,268.682,387.993,260.292,557.315,268.565,393.133,91.302,149.149,91.302,318.372,318.126,328.656,18.359,13.195,18.359 +280,5.460,261.063,381.888,270.450,555.402,261.366,386.120,85.914,161.003,85.914,330.515,316.926,338.999,18.667,13.176,18.667 +281,5.480,261.063,381.888,270.450,555.402,261.366,386.120,85.914,161.003,85.914,330.515,316.926,338.999,18.667,13.176,18.667 +282,5.499,253.635,384.811,281.347,553.288,254.231,388.384,80.538,172.801,80.538,326.990,317.404,334.235,18.741,14.088,18.741 +283,5.519,245.535,382.653,292.154,551.212,246.334,385.670,75.155,4.927,75.155,337.269,317.581,343.511,19.495,13.519,19.495 +284,5.540,245.535,382.653,292.154,551.212,246.334,385.670,75.155,4.927,75.155,337.269,317.581,343.511,19.495,13.519,19.495 +285,5.558,238.015,385.040,302.680,550.064,239.451,388.991,70.017,16.750,70.017,337.557,318.192,345.965,21.188,12.913,21.188 +286,5.578,238.015,385.040,302.680,550.064,239.451,388.991,70.017,16.750,70.017,337.557,318.192,345.965,21.188,12.913,21.188 +287,5.596,229.959,387.709,313.188,547.239,232.433,392.910,64.564,28.610,64.564,336.590,318.357,348.108,22.511,15.563,22.511 +288,5.616,229.959,387.709,313.188,547.239,232.433,392.910,64.564,28.610,64.564,336.590,318.357,348.108,22.511,15.563,22.511 +289,5.634,220.434,388.476,320.867,545.697,226.180,397.695,58.069,42.274,58.069,329.648,319.587,351.374,20.971,17.893,20.971 +290,5.655,172.084,344.470,328.469,542.023,218.764,403.881,51.843,53.427,51.843,201.691,319.400,352.803,18.310,15.026,18.310 +291,5.676,172.084,344.470,328.469,542.023,218.764,403.881,51.843,53.427,51.843,201.691,319.400,352.803,18.310,15.026,18.310 +292,5.694,206.306,401.409,335.321,535.823,213.072,408.579,46.662,64.537,46.662,333.174,320.344,352.892,26.284,14.747,26.284 +293,5.713,206.306,401.409,335.321,535.823,213.072,408.579,46.662,64.537,46.662,333.174,320.344,352.892,26.284,14.747,26.284 +294,5.732,200.584,411.444,340.920,529.122,205.860,415.906,40.224,78.111,40.224,338.650,319.110,352.469,25.489,16.790,25.489 +295,5.752,194.135,420.565,346.181,519.996,199.145,423.928,33.873,90.716,33.873,339.181,316.088,351.250,27.411,17.886,27.411 +296,5.772,194.135,420.565,346.181,519.996,199.145,423.928,33.873,90.716,33.873,339.181,316.088,351.250,27.411,17.886,27.411 +297,5.791,189.674,429.162,351.021,508.505,193.977,431.323,26.662,103.055,26.662,340.327,314.877,349.957,27.711,18.170,27.711 +298,5.811,189.674,429.162,351.021,508.505,193.977,431.323,26.662,103.055,26.662,340.327,314.877,349.957,27.711,18.170,27.711 +299,5.829,185.684,438.975,355.101,496.290,189.382,440.268,19.269,115.710,19.269,342.012,312.648,349.847,28.695,17.119,28.695 +300,5.849,185.684,438.975,355.101,496.290,189.382,440.268,19.269,115.710,19.269,342.012,312.648,349.847,28.695,17.119,28.695 +301,5.867,182.001,452.286,357.854,483.065,185.363,452.888,10.158,127.740,10.158,343.386,312.489,350.218,23.521,18.738,23.521 +302,5.889,179.419,463.049,360.409,466.892,184.133,463.199,1.826,139.984,1.826,343.176,312.928,352.609,24.179,19.921,24.179 +303,5.910,179.419,463.049,360.409,466.892,184.133,463.199,1.826,139.984,1.826,343.176,312.928,352.609,24.179,19.921,24.179 +304,5.929,177.228,475.654,362.040,454.058,185.493,474.780,173.962,152.987,173.962,338.869,315.783,355.493,23.131,20.438,23.131 +305,5.951,110.702,503.773,360.799,439.723,187.009,483.867,165.379,162.879,165.379,200.886,315.334,358.609,19.857,14.003,19.857 +306,5.972,110.702,503.773,360.799,439.723,187.009,483.867,165.379,162.879,165.379,200.886,315.334,358.609,19.857,14.003,19.857 +307,5.992,160.856,511.141,356.682,426.558,191.650,498.797,158.155,173.318,158.155,293.771,315.063,360.124,22.661,13.502,22.661 +308,6.011,160.856,511.141,356.682,426.558,191.650,498.797,158.155,173.318,158.155,293.771,315.063,360.124,22.661,13.502,22.661 +309,6.030,183.627,519.580,349.935,413.258,197.747,510.896,148.410,4.917,148.410,328.413,313.852,361.566,25.295,13.681,25.295 +310,6.049,183.627,519.580,349.935,413.258,197.747,510.896,148.410,4.917,148.410,328.413,313.852,361.566,25.295,13.681,25.295 +311,6.067,198.409,528.970,340.250,401.013,206.101,522.278,138.981,16.607,138.981,341.212,313.495,361.604,25.782,14.610,25.782 +312,6.088,210.630,538.382,327.904,389.126,216.142,531.626,129.216,27.897,129.216,344.693,313.225,362.131,25.315,17.572,25.315 +313,6.109,210.630,538.382,327.904,389.126,216.142,531.626,129.216,27.897,129.216,344.693,313.225,362.131,25.315,17.572,25.315 +314,6.127,224.307,546.846,313.574,379.618,228.291,539.707,119.168,39.644,119.168,346.355,312.541,362.706,24.632,19.669,24.632 +315,6.147,224.307,546.846,313.574,379.618,228.291,539.707,119.168,39.644,119.168,346.355,312.541,362.706,24.632,19.669,24.632 +316,6.165,238.955,552.500,298.439,373.549,241.211,545.928,108.947,51.340,108.947,349.347,311.879,363.243,24.323,19.678,24.323 +317,6.186,253.724,557.050,281.434,370.534,254.766,549.996,98.399,62.802,98.399,348.603,310.869,362.865,28.430,17.702,28.430 +318,6.206,253.724,557.050,281.434,370.534,254.766,549.996,98.399,62.802,98.399,348.603,310.869,362.865,28.430,17.702,28.430 +319,6.223,273.249,563.465,264.196,370.719,272.998,550.902,88.854,74.745,88.854,335.513,310.566,360.645,27.115,16.840,27.115 +320,6.243,273.249,563.465,264.196,370.719,272.998,550.902,88.854,74.745,88.854,335.513,310.566,360.645,27.115,16.840,27.115 +321,6.262,287.199,569.180,248.698,373.523,283.145,550.975,77.448,85.657,77.448,324.091,310.233,361.394,26.248,17.065,26.248 +322,6.282,302.256,552.707,232.449,378.691,299.511,545.932,67.944,97.496,67.944,345.750,309.856,360.370,22.108,17.037,22.108 +323,6.302,302.256,552.707,232.449,378.691,299.511,545.932,67.944,97.496,67.944,345.750,309.856,360.370,22.108,17.037,22.108 +324,6.321,315.513,544.045,217.433,386.719,312.549,539.274,58.151,109.549,58.151,348.322,309.572,359.555,24.505,17.959,24.505 +325,6.341,315.513,544.045,217.433,386.719,312.549,539.274,58.151,109.549,58.151,348.322,309.572,359.555,24.505,17.959,24.505 +326,6.358,326.548,535.165,204.515,396.309,323.088,531.245,48.566,120.964,48.566,348.806,310.755,359.262,28.808,17.664,28.808 +327,6.378,326.548,535.165,204.515,396.309,323.088,531.245,48.566,120.964,48.566,348.806,310.755,359.262,28.808,17.664,28.808 +328,6.397,337.184,524.989,192.740,407.261,332.129,520.816,39.542,132.614,39.542,346.463,312.300,359.571,30.308,17.280,30.308 +329,6.417,346.068,513.743,182.280,418.893,338.527,509.362,30.157,144.605,30.157,343.654,314.209,361.097,30.905,15.467,30.905 +330,6.437,346.068,513.743,182.280,418.893,338.527,509.362,30.157,144.605,30.157,343.654,314.209,361.097,30.905,15.467,30.905 +331,6.458,356.340,500.626,174.961,431.001,343.705,495.709,21.263,155.256,21.263,334.329,314.921,361.446,27.907,15.052,27.907 +332,6.478,356.340,500.626,174.961,431.001,343.705,495.709,21.263,155.256,21.263,334.329,314.921,361.446,27.907,15.052,27.907 +333,6.497,368.864,487.350,171.130,443.542,347.112,482.555,12.430,166.517,12.430,315.963,317.231,360.510,24.298,12.625,24.298 +334,6.517,368.864,487.350,171.130,443.542,347.112,482.555,12.430,166.517,12.430,315.963,317.231,360.510,24.298,12.625,24.298 +335,6.535,407.381,473.670,169.040,455.783,348.159,469.440,4.086,177.101,4.086,240.530,316.809,359.275,19.237,12.389,19.237 +336,6.556,368.238,456.925,170.042,467.657,348.191,458.140,176.532,6.911,176.532,316.631,316.532,356.798,18.874,13.267,18.874 +337,6.575,368.238,456.925,170.042,467.657,348.191,458.140,176.532,6.911,176.532,316.631,316.532,356.798,18.874,13.267,18.874 +338,6.593,355.787,447.358,173.300,477.600,348.110,448.979,168.077,18.435,168.077,338.212,315.911,353.904,22.036,18.025,22.036 +339,6.613,355.787,447.358,173.300,477.600,348.110,448.979,168.077,18.435,168.077,338.212,315.911,353.904,22.036,18.025,22.036 +340,6.631,350.945,437.191,177.923,489.733,346.033,438.916,160.647,28.856,160.647,340.488,314.873,350.902,23.155,15.872,23.155 +341,6.651,345.930,428.376,183.429,501.920,342.512,430.069,153.638,40.705,153.638,341.260,314.222,348.889,22.432,15.518,22.432 +342,6.672,345.930,428.376,183.429,501.920,342.512,430.069,153.638,40.705,153.638,341.260,314.222,348.889,22.432,15.518,22.432 +343,6.693,342.218,421.771,189.809,513.872,338.814,423.936,147.529,52.187,147.529,339.919,313.908,347.987,24.389,15.311,24.389 +344,6.713,342.218,421.771,189.809,513.872,338.814,423.936,147.529,52.187,147.529,339.919,313.908,347.987,24.389,15.311,24.389 +345,6.732,337.024,415.281,199.286,531.147,333.051,418.459,141.340,64.093,141.340,339.522,303.674,349.698,25.456,15.446,25.456 +346,6.751,329.478,407.967,202.043,534.243,325.983,411.540,134.370,76.185,134.370,338.769,317.254,348.765,25.346,16.238,25.346 +347,6.772,329.478,407.967,202.043,534.243,325.983,411.540,134.370,76.185,134.370,338.769,317.254,348.765,25.346,16.238,25.346 +348,6.792,324.082,403.067,208.542,541.988,320.518,407.423,129.289,88.781,129.289,338.853,318.183,350.110,24.978,15.933,24.978 +349,6.812,324.082,403.067,208.542,541.988,320.518,407.423,129.289,88.781,129.289,338.853,318.183,350.110,24.978,15.933,24.978 +350,6.830,317.077,397.385,213.897,547.867,313.245,403.132,123.690,100.954,123.690,337.258,319.839,351.072,23.297,17.862,23.297 +351,6.850,317.077,397.385,213.897,547.867,313.245,403.132,123.690,100.954,123.690,337.258,319.839,351.072,23.297,17.862,23.297 +352,6.868,314.654,382.280,219.770,551.658,306.104,398.723,117.474,112.689,117.474,313.968,320.772,351.034,20.441,16.294,20.441 +353,6.890,305.649,378.708,226.636,554.437,298.598,395.124,113.245,124.524,113.245,313.831,320.655,349.564,18.660,15.943,18.660 +354,6.909,305.649,378.708,226.636,554.437,298.598,395.124,113.245,124.524,113.245,313.831,320.655,349.564,18.660,15.943,18.660 +355,6.927,295.130,385.521,232.843,554.860,292.492,393.606,108.072,136.414,108.072,326.599,319.689,343.607,20.604,15.272,20.604 +356,6.947,295.130,385.521,232.843,554.860,292.492,393.606,108.072,136.414,108.072,326.599,319.689,343.607,20.604,15.272,20.604 +357,6.966,286.655,382.756,241.032,555.551,285.388,388.469,102.503,147.848,102.503,333.742,318.964,345.445,21.041,14.127,21.041 +358,6.986,278.789,385.470,249.606,555.985,278.082,390.389,98.178,158.794,98.178,325.986,317.193,335.926,18.623,13.910,18.623 +359,7.007,278.789,385.470,249.606,555.985,278.082,390.389,98.178,158.794,98.178,325.986,317.193,335.926,18.623,13.910,18.623 +360,7.025,271.551,387.912,259.165,555.468,271.297,392.096,93.468,170.344,93.468,319.232,317.140,327.615,18.693,13.432,18.693 +361,7.044,271.551,387.912,259.165,555.468,271.297,392.096,93.468,170.344,93.468,319.232,317.140,327.615,18.693,13.432,18.693 +362,7.062,264.650,386.069,269.480,554.766,264.743,389.883,88.611,1.528,88.611,322.269,317.261,329.899,18.528,12.755,18.528 +363,7.082,264.650,386.069,269.480,554.766,264.743,389.883,88.611,1.528,88.611,322.269,317.261,329.899,18.528,12.755,18.528 +364,7.100,257.541,384.434,278.983,554.573,257.927,387.958,83.746,12.995,83.746,328.744,318.026,335.834,18.764,13.417,18.764 +365,7.120,250.365,382.327,288.590,554.295,251.117,386.083,78.690,23.762,78.690,336.928,318.310,344.588,19.023,14.695,19.023 +366,7.141,250.365,382.327,288.590,554.295,251.117,386.083,78.690,23.762,78.690,336.928,318.310,344.588,19.023,14.695,19.023 +367,7.160,243.360,383.407,305.768,558.918,245.821,391.922,73.880,34.396,73.880,336.422,300.108,354.148,19.669,15.906,19.669 +368,7.180,243.360,383.407,305.768,558.918,245.821,391.922,73.880,34.396,73.880,336.422,300.108,354.148,19.669,15.906,19.669 +369,7.199,236.193,384.259,304.944,554.010,239.144,392.011,69.158,46.273,69.158,333.032,319.659,349.620,21.040,16.935,21.040 +370,7.219,224.536,379.009,311.492,552.196,232.987,395.461,62.810,55.376,62.810,313.585,320.518,350.576,19.465,16.575,19.465 +371,7.239,224.536,379.009,311.492,552.196,232.987,395.461,62.810,55.376,62.810,313.585,320.518,350.576,19.465,16.575,19.465 +372,7.258,213.380,378.890,318.493,548.722,225.712,399.767,59.429,64.026,59.429,302.381,320.202,350.877,19.592,15.191,19.592 +373,7.278,213.380,378.890,318.493,548.722,225.712,399.767,59.429,64.026,59.429,302.381,320.202,350.877,19.592,15.191,19.592 +374,7.295,216.281,395.255,325.057,544.350,221.578,402.550,54.019,73.887,54.019,333.053,319.107,351.084,24.387,16.268,24.387 +375,7.315,216.281,395.255,325.057,544.350,221.578,402.550,54.019,73.887,54.019,333.053,319.107,351.084,24.387,16.268,24.387 +376,7.333,210.966,401.879,330.900,538.564,215.452,406.954,48.529,83.884,48.529,336.588,317.149,350.136,26.925,17.365,26.925 +377,7.354,204.416,409.346,337.517,531.591,208.596,413.286,43.311,95.128,43.311,338.434,316.868,349.922,28.939,18.222,28.939 +378,7.375,204.416,409.346,337.517,531.591,208.596,413.286,43.311,95.128,43.311,338.434,316.868,349.922,28.939,18.222,28.939 +379,7.395,198.126,416.482,342.672,522.348,201.794,419.220,36.741,106.526,36.741,340.010,316.189,349.165,27.438,16.466,27.438 +380,7.414,198.126,416.482,342.672,522.348,201.794,419.220,36.741,106.526,36.741,340.010,316.189,349.165,27.438,16.466,27.438 +381,7.433,192.381,422.967,347.901,512.193,196.313,425.226,29.880,117.150,29.880,340.458,314.425,349.527,28.503,16.154,28.503 +382,7.453,187.288,432.492,352.788,499.725,190.769,433.992,23.314,128.019,23.314,342.029,314.149,349.610,29.134,15.398,29.134 +383,7.474,187.288,432.492,352.788,499.725,190.769,433.992,23.314,128.019,23.314,342.029,314.149,349.610,29.134,15.398,29.134 +384,7.492,182.728,442.480,356.683,487.028,186.478,443.522,15.524,138.160,15.524,343.494,314.058,351.279,24.195,18.019,24.195 +385,7.512,182.728,442.480,356.683,487.028,186.478,443.522,15.524,138.160,15.524,343.494,314.058,351.279,24.195,18.019,24.195 +386,7.530,178.537,454.833,359.830,473.379,184.016,455.495,6.886,149.156,6.886,342.343,315.217,353.381,24.306,17.517,24.306 +387,7.550,174.000,464.386,361.088,459.519,183.539,464.348,179.772,159.829,179.772,336.057,316.964,355.135,22.000,18.429,22.000 +388,7.570,174.000,464.386,361.088,459.519,183.539,464.348,179.772,159.829,179.772,336.057,316.964,355.135,22.000,18.429,22.000 +389,7.591,106.041,487.756,362.422,448.025,184.854,475.261,170.991,170.647,170.991,199.689,315.804,359.284,19.910,13.025,19.910 +390,7.611,106.041,487.756,362.422,448.025,184.854,475.261,170.991,170.647,170.991,199.689,315.804,359.284,19.910,13.025,19.910 +391,7.630,160.175,498.441,359.514,435.015,188.029,489.892,162.937,1.637,162.937,301.807,315.414,360.079,23.758,12.795,23.758 +392,7.649,160.175,498.441,359.514,435.015,188.029,489.892,162.937,1.637,162.937,301.807,315.414,360.079,23.758,12.795,23.758 +393,7.667,178.677,509.271,354.838,422.890,192.918,502.494,154.550,12.907,154.550,329.287,315.326,360.830,24.081,14.235,24.081 +394,7.688,191.686,521.312,347.613,410.495,200.505,515.267,145.570,23.962,145.570,339.765,313.844,361.150,25.170,15.027,25.170 +395,7.709,191.686,521.312,347.613,410.495,200.505,515.267,145.570,23.962,145.570,339.765,313.844,361.150,25.170,15.027,25.170 +396,7.727,203.999,532.064,337.876,398.598,210.160,526.162,136.228,35.134,136.228,343.878,312.947,360.942,26.601,18.022,26.601 +397,7.747,203.999,532.064,337.876,398.598,210.160,526.162,136.228,35.134,136.228,343.878,312.947,360.942,26.601,18.022,26.601 +398,7.765,215.790,541.843,325.665,388.444,220.525,535.482,126.663,46.931,126.663,345.595,311.236,361.456,25.398,19.613,25.398 +399,7.785,228.947,548.251,311.880,380.141,231.951,542.338,116.932,58.092,116.932,348.352,310.680,361.617,23.266,20.277,23.266 +400,7.805,228.947,548.251,311.880,380.141,231.951,542.338,116.932,58.092,116.932,348.352,310.680,361.617,23.266,20.277,23.266 +401,7.825,242.553,554.815,296.181,374.931,244.449,548.475,106.648,69.228,106.648,348.945,310.161,362.180,23.835,18.378,23.835 +402,7.844,242.553,554.815,296.181,374.931,244.449,548.475,106.648,69.228,106.648,348.945,310.161,362.180,23.835,18.378,23.835 +403,7.864,255.619,561.513,279.383,372.277,256.708,551.372,96.132,80.838,96.132,340.585,309.389,360.984,28.588,16.783,28.588 +404,7.884,272.414,590.792,263.615,371.547,269.638,551.928,85.914,91.023,85.914,282.780,309.129,360.705,26.646,16.533,26.646 +405,7.904,272.414,590.792,263.615,371.547,269.638,551.928,85.914,91.023,85.914,282.780,309.129,360.705,26.646,16.533,26.646 +406,7.925,286.164,558.781,246.790,374.775,284.373,551.127,76.832,102.051,76.832,344.831,306.817,360.552,26.000,16.944,26.000 +407,7.945,286.164,558.781,246.790,374.775,284.373,551.127,76.832,102.051,76.832,344.831,306.817,360.552,26.000,16.944,26.000 +408,7.963,302.231,550.519,230.789,378.685,300.013,545.090,67.772,113.887,67.772,348.722,309.063,360.451,22.626,17.412,22.626 +409,7.984,314.583,542.882,215.825,385.516,311.623,538.127,58.088,125.655,58.088,349.169,309.807,360.371,25.068,18.229,25.068 +410,8.005,314.583,542.882,215.825,385.516,311.623,538.127,58.088,125.655,58.088,349.169,309.807,360.371,25.068,18.229,25.068 +411,8.026,326.021,534.747,202.354,394.972,321.756,529.916,48.556,136.397,48.556,347.482,310.552,360.370,27.400,17.414,27.400 +412,8.046,326.021,534.747,202.354,394.972,321.756,529.916,48.556,136.397,48.556,347.482,310.552,360.370,27.400,17.414,27.400 +413,8.064,336.330,523.664,190.502,405.085,330.625,518.978,39.401,147.700,39.401,346.375,312.609,361.139,27.266,17.061,27.266 +414,8.084,343.463,511.536,181.111,416.082,337.192,507.812,30.706,158.875,30.706,347.488,314.756,362.076,28.696,15.031,28.696 +415,8.105,343.463,511.536,181.111,416.082,337.192,507.812,30.706,158.875,30.706,347.488,314.756,362.076,28.696,15.031,28.696 +416,8.127,359.981,502.616,174.880,427.840,342.624,495.473,22.367,169.695,22.367,324.183,315.912,361.721,27.416,13.953,27.416 +417,8.147,359.981,502.616,174.880,427.840,342.624,495.473,22.367,169.695,22.367,324.183,315.912,361.721,27.416,13.953,27.416 +418,8.165,384.739,492.922,170.995,439.978,345.977,484.343,12.479,0.281,12.479,281.468,316.016,360.868,20.880,13.573,20.880 +419,8.185,382.537,473.626,170.325,452.908,348.425,470.278,5.606,10.931,5.606,289.339,316.735,357.891,19.630,13.544,19.630 +420,8.205,382.537,473.626,170.325,452.908,348.425,470.278,5.606,10.931,5.606,289.339,316.735,357.891,19.630,13.544,19.630 +421,8.225,358.232,460.446,171.208,465.787,348.815,460.937,177.011,20.336,177.011,336.377,316.231,355.237,21.970,19.599,21.970 +422,8.245,358.232,460.446,171.208,465.787,348.815,460.937,177.011,20.336,177.011,336.377,316.231,355.237,21.970,19.599,21.970 +423,8.263,354.560,450.013,174.046,477.599,348.638,451.113,169.476,31.212,169.476,340.941,314.894,352.987,22.318,16.145,22.318 +424,8.283,354.560,450.013,174.046,477.599,348.638,451.113,169.476,31.212,169.476,340.941,314.894,352.987,22.318,16.145,22.318 +425,8.301,351.253,440.290,178.584,489.789,347.032,441.644,162.212,41.834,162.212,341.342,313.825,350.207,22.924,15.803,22.924 +426,8.322,348.054,432.283,183.432,502.163,344.364,433.986,155.225,52.028,155.225,341.253,313.884,349.380,25.283,16.016,25.283 +427,8.343,348.054,432.283,183.432,502.163,344.364,433.986,155.225,52.028,155.225,341.253,313.884,349.380,25.283,16.016,25.283 +428,8.361,344.482,425.969,189.116,514.407,340.706,428.172,149.744,62.688,149.744,340.041,313.110,348.784,25.338,16.146,25.338 +429,8.381,344.482,425.969,189.116,514.407,340.706,428.172,149.744,62.688,149.744,340.041,313.110,348.784,25.338,16.146,25.338 +430,8.400,338.961,418.622,193.974,523.704,335.400,421.259,143.471,73.091,143.471,340.381,315.121,349.243,25.059,16.701,25.059 +431,8.420,334.309,413.171,199.102,531.434,330.712,416.396,138.122,83.758,138.122,339.909,317.155,349.571,26.342,16.759,26.342 +432,8.439,334.309,413.171,199.102,531.434,330.712,416.396,138.122,83.758,138.122,339.909,317.155,349.571,26.342,16.759,26.342 +433,8.458,327.819,406.752,203.212,531.427,325.760,408.992,132.589,93.240,132.589,340.063,304.155,346.146,24.355,19.309,24.355 +434,8.478,327.819,406.752,203.212,531.427,325.760,408.992,132.589,93.240,132.589,340.063,304.155,346.146,24.355,19.309,24.355 +435,8.496,321.560,399.920,209.034,543.141,317.572,405.237,126.870,104.775,126.870,337.600,318.473,350.892,24.000,16.013,24.000 +436,8.516,321.560,399.920,209.034,543.141,317.572,405.237,126.870,104.775,126.870,337.600,318.473,350.892,24.000,16.013,24.000 +437,8.534,318.975,387.764,214.244,547.421,310.988,400.849,121.399,113.649,121.399,320.361,319.625,351.021,21.306,15.321,21.306 +438,8.554,330.602,347.621,219.868,550.229,304.464,396.630,118.072,121.900,118.072,239.588,320.226,350.676,18.353,15.767,18.353 +439,8.576,330.602,347.621,219.868,550.229,304.464,396.630,118.072,121.900,118.072,239.588,320.226,350.676,18.353,15.767,18.353 +440,8.594,303.758,381.985,223.779,550.748,298.932,393.047,113.569,131.693,113.569,325.054,320.304,349.192,18.528,15.775,18.528 +441,8.614,303.758,381.985,223.779,550.748,298.932,393.047,113.569,131.693,113.569,325.054,320.304,349.192,18.528,15.775,18.528 +442,8.632,295.064,382.674,230.208,552.526,292.692,389.944,108.070,140.884,108.070,332.592,320.487,347.888,22.446,14.228,22.446 +443,8.653,288.441,382.235,237.689,553.446,287.027,387.894,104.036,150.690,104.036,333.487,318.993,345.152,21.343,13.508,21.343 +444,8.674,288.441,382.235,237.689,553.446,287.027,387.894,104.036,150.690,104.036,333.487,318.993,345.152,21.343,13.508,21.343 +445,8.692,281.574,381.778,245.740,554.249,280.692,386.770,100.022,160.877,100.022,331.875,318.171,342.012,19.296,12.919,19.296 +446,8.711,281.574,381.778,245.740,554.249,280.692,386.770,100.022,160.877,100.022,331.875,318.171,342.012,19.296,12.919,19.296 +447,8.729,275.187,383.673,254.639,554.622,274.764,387.805,95.856,171.369,95.856,327.691,317.647,335.999,18.926,12.738,18.926 +448,8.749,275.187,383.673,254.639,554.622,274.764,387.805,95.856,171.369,95.856,327.691,317.647,335.999,18.926,12.738,18.926 +449,8.768,269.144,385.976,263.575,555.377,269.025,390.138,91.637,2.018,91.637,322.326,317.332,330.654,18.564,12.424,18.564 +450,8.788,263.300,384.675,273.128,555.911,263.480,388.483,87.295,12.275,87.295,327.768,318.008,335.393,18.641,13.108,18.641 +451,8.809,263.300,384.675,273.128,555.911,263.480,388.483,87.295,12.275,87.295,327.768,318.008,335.393,18.641,13.108,18.641 +452,8.829,257.846,388.137,282.271,556.361,258.327,392.027,82.958,23.003,82.958,324.218,318.020,332.058,18.530,13.998,18.530 +453,8.848,257.846,388.137,282.271,556.361,258.327,392.027,82.958,23.003,82.958,324.218,318.020,332.058,18.530,13.998,18.530 +454,8.866,251.466,384.020,291.155,556.766,252.508,389.103,78.408,33.559,78.408,333.643,318.393,344.020,19.140,14.587,19.140 +455,8.887,245.072,384.474,299.454,557.016,246.969,391.150,74.134,44.119,74.134,333.913,318.857,347.792,19.562,15.315,19.562 +456,8.908,245.072,384.474,299.454,557.016,246.969,391.150,74.134,44.119,74.134,333.913,318.857,347.792,19.562,15.315,19.562 +457,8.927,236.684,382.483,304.426,557.221,241.166,394.017,68.767,56.117,68.767,325.320,319.789,350.070,19.628,16.725,19.628 +458,8.946,236.684,382.483,304.426,557.221,241.166,394.017,68.767,56.117,68.767,325.320,319.789,350.070,19.628,16.725,19.628 +459,8.965,203.414,329.129,310.772,554.981,235.163,396.596,64.799,66.236,64.799,201.881,320.653,351.009,18.416,15.320,18.416 +460,8.984,225.165,389.360,316.752,551.057,230.303,398.438,60.493,76.945,60.493,329.942,320.652,350.805,23.068,15.784,23.068 +461,9.006,225.165,389.360,316.752,551.057,230.303,398.438,60.493,76.945,60.493,329.942,320.652,350.805,23.068,15.784,23.068 +462,9.027,220.018,395.404,321.258,546.588,223.892,401.058,55.582,87.754,55.582,336.465,319.421,350.173,24.473,17.594,24.473 +463,9.046,220.018,395.404,321.258,546.588,223.892,401.058,55.582,87.754,55.582,336.465,319.421,350.173,24.473,17.594,24.473 +464,9.066,212.542,399.829,327.013,540.342,216.594,404.781,50.711,99.118,50.711,336.883,318.943,349.679,25.259,17.882,25.259 +465,9.085,206.609,404.919,332.621,532.859,210.203,408.551,45.303,110.450,45.303,338.711,317.652,348.931,25.358,16.850,25.358 +466,9.105,206.609,404.919,332.621,532.859,210.203,408.551,45.303,110.450,45.303,338.711,317.652,348.931,25.358,16.850,25.358 +467,9.126,200.339,410.488,337.720,523.929,203.584,413.179,39.668,120.779,39.668,339.463,315.729,347.895,27.054,18.770,27.054 +468,9.146,200.339,410.488,337.720,523.929,203.584,413.179,39.668,120.779,39.668,339.463,315.729,347.895,27.054,18.770,27.054 +469,9.164,194.376,417.686,344.051,514.278,197.570,419.825,33.810,132.709,33.810,340.842,314.270,348.533,27.152,15.487,27.152 +470,9.185,189.801,424.846,349.669,503.875,193.046,426.530,27.436,143.539,27.436,341.977,314.433,349.288,28.469,15.182,28.469 +471,9.206,189.801,424.846,349.669,503.875,193.046,426.530,27.436,143.539,27.436,341.977,314.433,349.288,28.469,15.182,28.469 +472,9.226,184.842,434.422,354.967,492.402,188.620,435.837,20.530,154.093,20.530,343.171,315.342,351.239,25.166,15.394,25.166 +473,9.246,184.842,434.422,354.967,492.402,188.620,435.837,20.530,154.093,20.530,343.171,315.342,351.239,25.166,15.394,25.166 +474,9.264,180.157,443.437,359.867,482.512,186.753,445.011,13.424,164.709,13.424,340.617,316.446,354.180,24.505,16.691,24.505 +475,9.284,180.157,443.437,359.867,482.512,186.753,445.011,13.424,164.709,13.424,340.617,316.446,354.180,24.505,16.691,24.505 +476,9.302,170.332,453.832,362.995,471.451,185.452,455.218,5.240,174.289,5.240,326.199,316.322,356.567,20.408,16.418,20.408 +477,9.323,107.400,468.370,364.477,461.143,185.635,465.859,178.162,2.060,178.162,201.249,315.551,357.802,19.193,12.776,19.193 +478,9.342,107.400,468.370,364.477,461.143,185.635,465.859,178.162,2.060,178.162,201.249,315.551,357.802,19.193,12.776,19.193 +479,9.360,161.787,483.689,364.162,450.265,186.902,479.605,170.764,10.840,170.764,308.453,316.087,359.343,23.552,13.667,23.552 +480,9.380,161.787,483.689,364.162,450.265,186.902,479.605,170.764,10.840,170.764,308.453,316.087,359.343,23.552,13.667,23.552 +481,9.398,176.006,495.889,361.291,437.843,189.548,491.733,162.937,21.038,162.937,331.660,315.327,359.992,23.758,14.287,23.758 +482,9.418,185.805,508.590,356.399,425.516,194.505,504.450,154.552,30.600,154.552,340.939,313.653,360.208,25.458,14.808,25.458 +483,9.439,185.805,508.590,356.399,425.516,194.505,504.450,154.552,30.600,154.552,340.939,313.653,360.208,25.458,14.808,25.458 +484,9.459,194.737,521.109,349.103,412.292,201.734,516.405,146.086,40.426,146.086,343.913,312.927,360.775,26.772,18.072,26.772 +485,9.478,194.737,521.109,349.103,412.292,201.734,516.405,146.086,40.426,146.086,343.913,312.927,360.775,26.772,18.072,26.772 +486,9.497,205.673,531.540,339.024,400.781,210.454,527.076,136.961,51.340,136.961,347.252,312.035,360.334,27.566,20.303,27.566 +487,9.517,215.554,540.137,327.623,390.374,219.522,535.011,127.733,60.876,127.733,348.124,310.528,361.089,24.545,20.841,24.545 +488,9.538,215.554,540.137,327.623,390.374,219.522,535.011,127.733,60.876,127.733,348.124,310.528,361.089,24.545,20.841,24.545 +489,9.558,227.879,547.581,313.918,381.730,230.821,542.096,118.207,70.677,118.207,348.747,310.528,361.196,24.098,19.707,24.098 +490,9.578,227.879,547.581,313.918,381.730,230.821,542.096,118.207,70.677,118.207,348.747,310.528,361.196,24.098,19.707,24.098 +491,9.596,240.280,554.748,297.859,375.779,242.534,547.919,108.265,80.754,108.265,347.232,310.219,361.614,23.932,16.917,23.932 +492,9.616,240.280,554.748,297.859,375.779,242.534,547.919,108.265,80.754,108.265,347.232,310.219,361.614,23.932,16.917,23.932 +493,9.634,252.453,569.088,281.618,371.018,255.268,550.152,98.455,90.932,98.455,323.834,310.138,362.122,27.442,16.681,27.442 +494,9.655,273.000,563.500,266.008,369.956,273.000,550.478,90.000,100.305,90.000,335.000,310.635,361.044,28.000,16.994,28.000 +495,9.676,273.000,563.500,266.008,369.956,273.000,550.478,90.000,100.305,90.000,335.000,310.635,361.044,28.000,16.994,28.000 +496,9.694,282.139,557.384,248.982,371.617,280.620,549.890,78.541,110.638,78.541,346.719,310.403,362.011,26.078,17.270,26.078 +497,9.714,282.139,557.384,248.982,371.617,280.620,549.890,78.541,110.638,78.541,346.719,310.403,362.011,26.078,17.270,26.078 +498,9.733,298.223,550.290,233.015,375.309,296.149,544.729,69.544,120.964,69.544,349.731,310.927,361.602,21.438,18.179,21.438 +499,9.753,311.235,543.587,218.329,382.223,308.358,538.575,60.141,131.121,60.141,349.278,311.849,360.837,24.877,17.530,24.877 +500,9.774,311.235,543.587,218.329,382.223,308.358,538.575,60.141,131.121,60.141,349.278,311.849,360.837,24.877,17.530,24.877 +501,9.792,323.495,536.788,204.787,390.859,318.759,530.943,50.984,141.435,50.984,346.137,313.129,361.182,27.030,16.990,27.030 +502,9.813,323.495,536.788,204.787,390.859,318.759,530.943,50.984,141.435,50.984,346.137,313.129,361.182,27.030,16.990,27.030 +503,9.832,334.343,528.008,193.016,400.946,327.593,521.934,41.987,151.390,41.987,343.773,314.207,361.934,27.948,15.563,27.948 +504,9.852,342.582,515.859,184.140,412.401,335.673,511.304,33.394,160.710,33.394,345.349,314.966,361.901,27.799,14.819,27.799 +505,9.872,342.582,515.859,184.140,412.401,335.673,511.304,33.394,160.710,33.394,345.349,314.966,361.901,27.799,14.819,27.799 +506,9.893,358.099,507.787,177.613,424.158,341.815,500.212,24.949,170.238,24.949,325.997,315.822,361.918,27.559,14.380,27.559 +507,9.913,358.099,507.787,177.613,424.158,341.815,500.212,24.949,170.238,24.949,325.997,315.822,361.918,27.559,14.380,27.559 +508,9.931,377.421,499.261,174.000,437.000,346.302,489.796,16.918,0.000,16.918,295.364,316.000,360.417,26.996,12.000,26.996 +509,9.951,428.113,489.517,172.095,449.385,349.324,477.396,8.746,8.820,8.746,199.423,314.307,358.854,19.387,12.829,19.387 +510,9.972,428.113,489.517,172.095,449.385,349.324,477.396,8.746,8.820,8.746,199.423,314.307,358.854,19.387,12.829,19.387 +511,9.992,364.485,467.673,173.866,459.303,351.422,467.505,0.735,17.796,0.735,329.165,316.279,355.293,23.049,18.056,23.049 +512,10.011,364.485,467.673,173.866,459.303,351.422,467.505,0.735,17.796,0.735,329.165,316.279,355.293,23.049,18.056,23.049 +513,10.030,358.041,456.368,174.845,471.320,351.032,457.144,173.686,26.707,173.686,339.249,313.958,353.353,23.414,15.614,23.414 +514,10.050,358.041,456.368,174.845,471.320,351.032,457.144,173.686,26.707,173.686,339.249,313.958,353.353,23.414,15.614,23.414 +515,10.069,354.931,447.213,177.670,483.108,349.920,448.410,166.566,36.922,166.566,340.892,314.002,351.196,22.922,15.556,22.922 +516,10.089,350.836,437.923,181.151,494.443,346.978,439.326,160.017,47.437,160.017,341.145,313.777,349.356,22.982,16.128,22.982 +517,10.110,350.836,437.923,181.151,494.443,346.978,439.326,160.017,47.437,160.017,341.145,313.777,349.356,22.982,16.128,22.982 +518,10.129,347.595,431.251,186.003,506.605,344.079,432.962,154.058,57.745,154.058,340.907,313.765,348.728,24.401,15.978,24.401 +519,10.148,347.595,431.251,186.003,506.605,344.079,432.962,154.058,57.745,154.058,340.907,313.765,348.728,24.401,15.978,24.401 +520,10.166,343.265,423.754,189.777,515.995,339.462,426.075,148.597,68.270,148.597,340.314,313.268,349.226,24.698,16.095,24.698 +521,10.187,337.668,417.062,193.432,523.722,334.217,419.680,142.815,79.007,142.815,341.423,316.954,350.087,25.577,17.055,25.577 +522,10.207,337.668,417.062,193.432,523.722,334.217,419.680,142.815,79.007,142.815,341.423,316.954,350.087,25.577,17.055,25.577 +523,10.225,332.346,410.731,197.497,531.000,328.475,414.250,137.726,90.333,137.726,340.440,318.047,350.902,25.360,17.389,25.360 +524,10.245,332.346,410.731,197.497,531.000,328.475,414.250,137.726,90.333,137.726,340.440,318.047,350.902,25.360,17.389,25.360 +525,10.263,326.733,404.675,200.255,536.784,322.387,409.394,132.647,99.866,132.647,340.054,320.151,352.884,24.679,19.447,24.679 +526,10.283,326.733,404.675,200.255,536.784,322.387,409.394,132.647,99.866,132.647,340.054,320.151,352.884,24.679,19.447,24.679 +527,10.301,321.060,396.420,205.829,541.401,315.713,403.550,126.870,111.161,126.870,334.600,320.653,352.424,23.400,17.177,23.400 +528,10.323,346.846,342.260,210.872,545.166,309.469,399.260,123.254,121.921,123.254,215.833,320.755,352.158,18.151,15.765,18.151 +529,10.344,346.846,342.260,210.872,545.166,309.469,399.260,123.254,121.921,123.254,215.833,320.755,352.158,18.151,15.765,18.151 +530,10.363,311.205,383.941,216.822,548.291,304.457,396.171,118.887,132.032,118.887,323.118,321.025,351.054,18.236,15.671,18.236 +531,10.383,305.031,385.764,222.487,549.330,301.427,393.773,114.228,142.561,114.228,330.936,320.456,348.501,22.388,14.962,22.388 +532,10.404,305.031,385.764,222.487,549.330,301.427,393.773,114.228,142.561,114.228,330.936,320.456,348.501,22.388,14.962,22.388 +533,10.425,298.012,385.403,229.971,551.495,295.952,391.134,109.767,152.222,109.767,334.273,319.923,346.453,22.145,13.949,22.145 +534,10.444,298.012,385.403,229.971,551.495,295.952,391.134,109.767,152.222,109.767,334.273,319.923,346.453,22.145,13.949,22.145 +535,10.463,291.533,383.928,237.447,552.756,290.213,388.654,105.598,162.403,105.598,334.678,317.891,344.492,20.989,13.562,20.989 +536,10.482,291.533,383.928,237.447,552.756,290.213,388.654,105.598,162.403,105.598,334.678,317.891,344.492,20.989,13.562,20.989 +537,10.500,285.784,384.352,245.679,554.701,284.896,388.656,101.659,172.061,101.659,332.301,317.068,341.089,20.924,14.156,20.924 +538,10.521,279.925,389.343,254.024,555.826,279.365,393.172,98.326,2.026,98.326,321.478,316.474,329.218,18.679,13.377,18.679 +539,10.542,279.925,389.343,254.024,555.826,279.365,393.172,98.326,2.026,98.326,321.478,316.474,329.218,18.679,13.377,18.679 +540,10.560,275.184,384.695,261.857,556.798,274.901,388.237,94.574,11.850,94.574,331.022,317.720,338.129,18.581,13.322,18.581 +541,10.580,275.184,384.695,261.857,556.798,274.901,388.237,94.574,11.850,94.574,331.022,317.720,338.129,18.581,13.322,18.581 +542,10.598,269.586,388.473,269.471,558.073,269.529,392.505,90.818,21.615,90.818,323.038,317.723,331.104,18.384,13.366,18.384 +543,10.618,264.129,387.247,276.671,559.039,264.354,391.671,87.094,30.847,87.094,326.696,318.472,335.555,18.342,13.975,18.342 +544,10.638,264.129,387.247,276.671,559.039,264.354,391.671,87.094,30.847,87.094,326.696,318.472,335.555,18.342,13.975,18.342 +545,10.659,258.221,384.152,283.240,559.029,258.854,389.487,83.234,40.130,83.234,331.724,318.686,342.469,18.615,15.241,18.615 +546,10.679,258.221,384.152,283.240,559.029,258.854,389.487,83.234,40.130,83.234,331.724,318.686,342.469,18.615,15.241,18.615 +547,10.698,252.579,384.630,289.170,558.556,253.772,391.112,79.571,49.145,79.571,328.990,319.758,342.171,18.988,16.497,18.988 +548,10.718,245.653,379.971,292.579,558.656,248.091,389.630,75.833,58.973,75.833,329.622,320.367,349.546,19.222,16.642,19.222 +549,10.738,245.653,379.971,292.579,558.656,248.091,389.630,75.833,58.973,75.833,329.622,320.367,349.546,19.222,16.642,19.222 +550,10.759,235.035,367.301,297.115,557.042,242.690,390.642,71.841,66.396,71.841,301.021,320.825,350.150,18.730,16.748,18.730 +551,10.778,235.035,367.301,297.115,557.042,242.690,390.642,71.841,66.396,71.841,301.021,320.825,350.150,18.730,16.748,18.730 +552,10.797,228.744,370.325,302.217,554.881,237.142,392.008,68.829,73.474,68.829,304.257,320.203,350.763,18.586,16.098,18.586 +553,10.817,228.744,370.325,302.217,554.881,237.142,392.008,68.829,73.474,68.829,304.257,320.203,350.763,18.586,16.098,18.586 +554,10.835,229.820,384.727,306.943,551.823,233.607,392.884,65.095,81.085,65.095,332.095,319.253,350.083,22.643,17.221,22.643 +555,10.856,224.918,388.814,313.500,545.000,227.773,393.929,60.838,90.000,60.838,335.674,310.000,347.390,22.396,17.000,22.396 +556,10.876,224.918,388.814,313.500,545.000,227.773,393.929,60.838,90.000,60.838,335.674,310.000,347.390,22.396,17.000,22.396 +557,10.895,219.535,393.169,318.633,544.523,222.952,398.353,56.607,99.673,56.607,336.982,317.791,349.399,23.988,16.568,23.988 +558,10.915,219.535,393.169,318.633,544.523,222.952,398.353,56.607,99.673,56.607,336.982,317.791,349.399,23.988,16.568,23.988 +559,10.934,213.828,397.792,324.448,540.153,217.405,402.373,52.012,108.825,52.012,337.323,318.759,348.948,24.079,16.134,24.079 +560,10.956,209.384,402.733,330.564,533.800,212.601,406.163,46.838,118.009,46.838,338.186,316.651,347.591,25.583,15.422,25.583 +561,10.976,209.384,402.733,330.564,533.800,212.601,406.163,46.838,118.009,46.838,338.186,316.651,347.591,25.583,15.422,25.583 +562,10.994,203.780,408.580,336.759,526.817,207.009,411.490,42.020,127.235,42.020,338.488,315.981,347.183,27.863,15.318,27.863 +563,11.014,203.780,408.580,336.759,526.817,207.009,411.490,42.020,127.235,42.020,338.488,315.981,347.183,27.863,15.318,27.863 +564,11.033,198.722,415.704,342.911,518.373,201.661,417.912,36.913,136.776,36.913,339.193,314.884,346.545,30.387,14.601,30.387 +565,11.053,193.802,423.333,348.774,509.663,196.809,425.124,30.776,146.152,30.776,340.645,315.079,347.645,28.681,14.228,28.681 +566,11.073,193.802,423.333,348.774,509.663,196.809,425.124,30.776,146.152,30.776,340.645,315.079,347.645,28.681,14.228,28.681 +567,11.092,189.130,431.312,354.329,500.126,192.943,433.049,24.481,155.426,24.481,340.966,315.484,349.346,28.050,14.395,28.050 +568,11.112,189.130,431.312,354.329,500.126,192.943,433.049,24.481,155.426,24.481,340.966,315.484,349.346,28.050,14.395,28.050 +569,11.131,183.766,439.656,358.905,489.850,189.732,441.538,17.514,164.521,17.514,339.227,316.355,351.738,25.647,14.901,25.647 +570,11.150,183.766,439.656,358.905,489.850,189.732,441.538,17.514,164.521,17.514,339.227,316.355,351.738,25.647,14.901,25.647 +571,11.168,176.486,450.581,362.215,478.985,187.212,452.369,9.462,173.541,9.462,332.250,317.388,353.997,23.673,16.330,23.673 +572,11.189,106.646,456.680,365.012,469.272,186.445,460.807,2.961,3.045,2.961,197.718,316.776,357.531,18.889,12.376,18.889 +573,11.210,106.646,456.680,365.012,469.272,186.445,460.807,2.961,3.045,2.961,197.718,316.776,357.531,18.889,12.376,18.889 +574,11.228,154.888,474.568,364.941,457.765,185.990,472.128,175.515,12.529,175.515,296.658,316.935,359.053,22.539,12.799,22.539 +575,11.247,154.888,474.568,364.941,457.765,185.990,472.128,175.515,12.529,175.515,296.658,316.935,359.053,22.539,12.799,22.539 +576,11.266,172.937,486.313,363.134,445.371,187.201,483.325,168.166,22.791,168.166,330.807,316.221,359.954,23.033,14.449,23.033 +577,11.286,180.088,498.850,359.298,433.124,190.081,495.266,160.270,32.005,160.270,339.290,314.607,360.523,24.934,14.310,24.934 +578,11.308,180.088,498.850,359.298,433.124,190.081,495.266,160.270,32.005,160.270,339.290,314.607,360.523,24.934,14.310,24.934 +579,11.327,187.176,510.333,352.941,420.003,194.714,506.360,152.210,41.634,152.210,343.439,314.493,360.481,25.045,16.526,25.045 +580,11.347,187.176,510.333,352.941,420.003,194.714,506.360,152.210,41.634,152.210,343.439,314.493,360.481,25.045,16.526,25.045 +581,11.366,196.891,521.112,345.516,407.344,202.150,517.246,143.678,52.667,143.678,348.159,312.456,361.215,26.143,20.350,26.143 +582,11.386,206.250,531.250,335.311,396.573,210.435,527.065,135.000,62.892,135.000,349.311,310.905,361.146,26.163,20.548,26.163 +583,11.406,206.250,531.250,335.311,396.573,210.435,527.065,135.000,62.892,135.000,349.311,310.905,361.146,26.163,20.548,26.163 +584,11.425,217.713,540.162,323.893,386.844,221.020,535.550,125.645,72.741,125.645,350.241,310.329,361.592,26.090,20.861,26.090 +585,11.445,217.713,540.162,323.893,386.844,221.020,535.550,125.645,72.741,125.645,350.241,310.329,361.592,26.090,20.861,26.090 +586,11.463,229.434,547.961,309.793,379.094,232.283,542.239,116.469,82.444,116.469,348.399,310.717,361.182,24.488,18.137,24.488 +587,11.482,229.434,547.961,309.793,379.094,232.283,542.239,116.469,82.444,116.469,348.399,310.717,361.182,24.488,18.137,24.488 +588,11.501,242.170,558.452,294.806,374.470,245.318,548.330,107.274,92.490,107.274,340.227,309.621,361.427,25.514,16.680,25.514 +589,11.521,251.263,591.341,279.750,372.250,256.464,550.958,97.339,101.310,97.339,279.006,308.491,360.438,27.417,16.866,27.417 +590,11.542,251.263,591.341,279.750,372.250,256.464,550.958,97.339,101.310,97.339,279.006,308.491,360.438,27.417,16.866,27.417 +591,11.560,271.678,560.510,264.662,371.315,271.391,551.607,88.152,110.450,88.152,343.015,309.331,360.831,26.277,17.120,26.277 +592,11.580,271.678,560.510,264.662,371.315,271.391,551.607,88.152,110.450,88.152,343.015,309.331,360.831,26.277,17.120,26.277 +593,11.599,287.842,556.715,249.054,373.208,286.593,549.999,79.461,120.466,79.461,347.685,309.789,361.349,25.493,17.340,25.493 +594,11.619,300.132,551.707,233.673,377.416,298.025,546.137,69.274,130.914,69.274,349.241,309.782,361.151,22.144,17.885,22.144 +595,11.639,300.132,551.707,233.673,377.416,298.025,546.137,69.274,130.914,69.274,349.241,309.782,361.151,22.144,17.885,22.144 +596,11.660,313.851,546.454,219.336,384.200,310.172,540.098,59.942,140.315,59.942,346.171,311.394,360.860,23.633,17.896,23.633 +597,11.680,313.851,546.454,219.336,384.200,310.172,540.098,59.942,140.315,59.942,346.171,311.394,360.860,23.633,17.896,23.633 +598,11.698,326.021,539.584,206.159,392.408,320.356,532.484,51.417,150.018,51.417,343.265,312.693,361.433,26.984,17.524,26.984 +599,11.718,334.790,530.184,194.646,402.393,328.093,524.036,42.553,159.611,42.553,342.954,313.447,361.136,30.022,16.134,30.022 +600,11.739,334.790,530.184,194.646,402.393,328.093,524.036,42.553,159.611,42.553,342.954,313.447,361.136,30.022,16.134,30.022 +601,11.760,347.630,520.573,185.145,411.773,335.796,512.529,34.208,169.349,34.208,333.848,314.153,362.466,28.448,14.845,28.448 +602,11.780,347.630,520.573,185.145,411.773,335.796,512.529,34.208,169.349,34.208,333.848,314.153,362.466,28.448,14.845,28.448 +603,11.798,361.581,510.834,178.991,422.666,341.821,501.219,25.948,178.459,25.948,317.624,316.155,361.573,26.490,14.484,26.490 +604,11.818,393.690,504.977,174.544,434.182,345.766,490.800,16.480,7.861,16.480,260.546,316.487,360.500,20.924,14.179,20.924 +605,11.838,393.690,504.977,174.544,434.182,345.766,490.800,16.480,7.861,16.480,260.546,316.487,360.500,20.924,14.179,20.924 +606,11.859,373.784,481.227,172.127,445.582,348.737,476.807,10.008,16.928,10.008,307.832,316.285,358.698,19.638,14.184,19.638 +607,11.878,373.784,481.227,172.127,445.582,348.737,476.807,10.008,16.928,10.008,307.832,316.285,358.698,19.638,14.184,19.638 +608,11.898,358.968,467.573,172.076,457.339,350.048,467.310,1.685,25.263,1.685,338.530,316.261,356.378,22.137,18.107,22.137 +609,11.918,356.235,456.601,173.449,468.388,349.994,457.166,174.826,34.450,174.826,341.140,315.141,353.674,22.365,15.676,22.365 +610,11.939,356.235,456.601,173.449,468.388,349.994,457.166,174.826,34.450,174.826,341.140,315.141,353.674,22.365,15.676,22.365 +611,11.959,353.601,447.464,175.623,480.345,348.879,448.487,167.782,43.550,167.782,342.488,314.141,352.149,22.187,15.856,22.187 +612,11.979,353.601,447.464,175.623,480.345,348.879,448.487,167.782,43.550,167.782,342.488,314.141,352.149,22.187,15.856,22.187 +613,11.996,350.544,438.599,179.188,491.930,346.596,439.941,161.218,52.397,161.218,342.125,314.610,350.465,23.308,16.259,23.308 +614,12.016,350.544,438.599,179.188,491.930,346.596,439.941,161.218,52.397,161.218,342.125,314.610,350.465,23.308,16.259,23.308 +615,12.035,347.005,430.510,182.914,502.726,343.185,432.275,155.209,61.321,155.209,341.670,314.689,350.084,22.904,16.054,22.904 +616,12.056,343.948,425.529,187.118,512.421,340.124,427.704,150.381,70.320,150.381,340.966,315.418,349.765,23.622,16.708,23.622 +617,12.077,343.948,425.529,187.118,512.421,340.124,427.704,150.381,70.320,150.381,340.966,315.418,349.765,23.622,16.708,23.622 +618,12.095,339.353,419.292,191.450,521.413,335.604,421.947,144.689,79.061,144.689,341.064,316.735,350.252,25.025,16.584,25.025 +619,12.115,339.353,419.292,191.450,521.413,335.604,421.947,144.689,79.061,144.689,341.064,316.735,350.252,25.025,16.584,25.025 +620,12.134,335.361,414.335,194.423,528.083,331.161,417.863,139.976,87.709,139.976,340.217,316.267,351.188,25.386,19.145,25.386 +621,12.154,330.500,409.500,199.107,534.243,326.466,413.534,135.000,96.582,135.000,339.411,316.974,350.821,25.456,19.448,25.456 +622,12.174,330.500,409.500,199.107,534.243,326.466,413.534,135.000,96.582,135.000,339.411,316.974,350.821,25.456,19.448,25.456 +623,12.192,326.312,403.053,204.291,539.665,321.550,408.608,130.601,106.189,130.601,337.001,318.401,351.635,23.971,15.985,23.971 +624,12.212,326.312,403.053,204.291,539.665,321.550,408.608,130.601,106.189,130.601,337.001,318.401,351.635,23.971,15.985,23.971 +625,12.231,322.088,394.785,209.031,544.102,315.406,404.184,125.413,113.527,125.413,328.282,319.458,351.347,22.401,15.843,22.401 +626,12.251,322.088,394.785,209.031,544.102,315.406,404.184,125.413,113.527,125.413,328.282,319.458,351.347,22.401,15.843,22.401 +627,12.269,329.975,372.118,213.834,547.070,311.992,401.499,121.470,120.256,121.470,281.911,320.030,350.806,21.257,15.476,21.257 +628,12.289,318.224,376.757,218.530,549.268,306.386,397.702,119.476,126.724,119.476,302.237,320.202,350.355,18.093,15.700,18.093 +629,12.310,318.224,376.757,218.530,549.268,306.386,397.702,119.476,126.724,119.476,302.237,320.202,350.355,18.093,15.700,18.093 +630,12.329,306.910,385.404,221.250,549.750,302.314,394.931,115.755,135.000,115.755,328.171,320.319,349.327,18.392,15.556,18.392 +631,12.349,306.910,385.404,221.250,549.750,302.314,394.931,115.755,135.000,115.755,328.171,320.319,349.327,18.392,15.556,18.392 +632,12.368,302.386,385.803,226.458,550.944,299.430,392.994,112.348,142.729,112.348,332.118,320.027,347.667,21.817,14.019,21.817 +633,12.390,296.200,384.400,232.056,551.872,294.272,390.184,108.435,151.215,108.435,333.937,319.161,346.130,22.136,13.105,22.136 +634,12.410,296.200,384.400,232.056,551.872,294.272,390.184,108.435,151.215,108.435,333.937,319.161,346.130,22.136,13.105,22.136 +635,12.429,289.725,382.316,238.051,552.391,288.407,387.423,104.470,160.017,104.470,334.087,318.846,344.635,21.927,13.243,21.927 +636,12.449,289.725,382.316,238.051,552.391,288.407,387.423,104.470,160.017,104.470,334.087,318.846,344.635,21.927,13.243,21.927 +637,12.467,284.472,381.696,244.363,553.162,283.592,386.063,101.397,169.205,101.397,334.202,318.278,343.112,20.830,12.982,20.830 +638,12.487,279.716,380.881,250.967,553.798,279.128,384.770,98.596,178.434,98.596,334.813,318.264,342.677,18.718,12.933,18.718 +639,12.508,279.716,380.881,250.967,553.798,279.128,384.770,98.596,178.434,98.596,334.813,318.264,342.677,18.718,12.933,18.718 +640,12.526,274.650,383.681,257.801,554.691,274.306,387.289,95.440,7.431,95.440,329.177,318.304,336.426,18.677,12.718,18.677 +641,12.545,274.650,383.681,257.801,554.691,274.306,387.289,95.440,7.431,95.440,329.177,318.304,336.426,18.677,12.718,18.677 +642,12.564,269.870,385.859,264.690,555.862,269.733,389.369,92.224,16.600,92.224,326.104,318.857,333.128,18.472,13.366,18.472 +643,12.583,269.870,385.859,264.690,555.862,269.733,389.369,92.224,16.600,92.224,326.104,318.857,333.128,18.472,13.366,18.472 +644,12.602,265.598,385.074,271.372,557.221,265.666,389.145,89.037,26.114,89.037,328.155,318.445,336.298,18.384,13.134,18.384 +645,12.622,261.132,382.787,278.391,558.633,261.480,387.481,85.764,35.385,85.764,334.454,318.049,343.868,18.542,13.974,18.542 +646,12.642,261.132,382.787,278.391,558.633,261.480,387.481,85.764,35.385,85.764,334.454,318.049,343.868,18.542,13.974,18.542 +647,12.661,256.849,384.408,284.239,559.246,257.615,390.318,82.614,44.655,82.614,329.980,318.921,341.897,18.695,14.615,18.695 +648,12.681,256.849,384.408,284.239,559.246,257.615,390.318,82.614,44.655,82.614,329.980,318.921,341.897,18.695,14.615,18.695 +649,12.699,252.869,385.388,290.169,559.925,254.235,392.509,79.144,54.011,79.144,327.874,320.039,342.375,18.835,16.327,18.835 +650,12.719,246.519,380.273,293.180,560.387,249.808,393.149,75.669,64.714,75.669,318.960,321.159,345.540,18.692,16.558,18.692 +651,12.740,246.519,380.273,293.180,560.387,249.808,393.149,75.669,64.714,75.669,318.960,321.159,345.540,18.692,16.558,18.692 +652,12.760,222.303,321.468,298.089,559.620,245.064,394.304,72.646,73.780,72.646,194.595,320.758,347.213,18.433,16.027,18.433 +653,12.781,222.303,321.468,298.089,559.620,245.064,394.304,72.646,73.780,72.646,194.595,320.758,347.213,18.433,16.027,18.433 +654,12.800,237.295,383.876,301.594,549.544,239.598,389.969,69.291,83.884,69.291,329.348,305.111,342.375,20.944,17.116,20.944 +655,12.821,233.193,387.519,306.786,554.849,236.404,394.696,65.898,93.180,65.898,334.140,320.561,349.865,22.844,17.529,22.844 +656,12.842,233.193,387.519,306.786,554.849,236.404,394.696,65.898,93.180,65.898,334.140,320.561,349.865,22.844,17.529,22.844 +657,12.861,228.114,390.289,311.637,550.751,231.079,395.882,62.066,103.465,62.066,336.465,319.408,349.126,23.156,18.546,23.156 +658,12.881,228.114,390.289,311.637,550.751,231.079,395.882,62.066,103.465,62.066,336.465,319.408,349.126,23.156,18.546,23.156 +659,12.898,222.860,392.731,315.505,546.502,225.800,397.485,58.266,112.176,58.266,336.665,318.850,347.843,25.291,18.566,25.291 +660,12.919,216.824,396.240,320.867,541.112,219.622,400.116,54.182,123.048,54.182,337.602,317.602,347.162,25.122,15.310,25.122 +661,12.940,216.824,396.240,320.867,541.112,219.622,400.116,54.182,123.048,54.182,337.602,317.602,347.162,25.122,15.310,25.122 +662,12.960,211.163,399.595,326.310,534.945,213.981,402.930,49.802,132.614,49.802,337.941,316.480,346.673,25.764,15.042,25.764 +663,12.980,211.163,399.595,326.310,534.945,213.981,402.930,49.802,132.614,49.802,337.941,316.480,346.673,25.764,15.042,25.764 +664,12.998,205.604,404.412,332.226,528.223,208.206,407.041,45.302,142.085,45.302,339.347,315.828,346.743,26.055,14.593,26.055 +665,13.018,199.726,411.168,338.481,521.154,202.210,413.286,40.446,151.101,40.446,340.835,315.963,347.364,25.538,15.443,25.538 +666,13.038,199.726,411.168,338.481,521.154,202.210,413.286,40.446,151.101,40.446,340.835,315.963,347.364,25.538,15.443,25.538 +667,13.059,195.659,416.385,344.627,513.460,198.484,418.396,35.437,160.284,35.437,341.444,316.627,348.379,28.391,15.194,28.391 +668,13.078,195.659,416.385,344.627,513.460,198.484,418.396,35.437,160.284,35.437,341.444,316.627,348.379,28.391,15.194,28.391 +669,13.096,190.920,422.639,350.724,505.541,195.023,424.989,29.799,169.301,29.799,340.832,317.344,350.288,27.153,14.726,27.153 +670,13.116,190.920,422.639,350.724,505.541,195.023,424.989,29.799,169.301,29.799,340.832,317.344,350.288,27.153,14.726,27.153 +671,13.135,185.940,429.635,356.387,497.326,192.290,432.445,23.872,177.955,23.872,338.744,317.405,352.631,26.714,15.383,26.714 +672,13.155,176.999,437.002,360.951,490.439,190.353,440.940,16.432,6.340,16.432,327.421,318.043,355.265,20.354,15.460,20.354 +673,13.176,176.999,437.002,360.951,490.439,190.353,440.940,16.432,6.340,16.432,327.421,318.043,355.265,20.354,15.460,20.354 +674,13.195,112.452,435.494,364.414,482.649,188.859,450.025,10.768,12.479,10.768,201.565,316.714,357.118,18.798,13.077,18.798 +675,13.215,112.452,435.494,364.414,482.649,188.859,450.025,10.768,12.479,10.768,201.565,316.714,357.118,18.798,13.077,18.798 +676,13.234,155.186,458.212,366.060,473.220,187.480,460.365,3.814,19.817,3.814,293.349,316.704,358.080,24.346,13.374,24.346 +677,13.254,172.273,470.461,366.182,462.107,187.024,469.724,177.138,27.672,177.138,329.089,317.214,358.628,22.921,13.695,22.921 +678,13.276,172.273,470.461,366.182,462.107,187.024,469.724,177.138,27.672,177.138,329.089,317.214,358.628,22.921,13.695,22.921 +679,13.294,177.490,482.579,364.855,450.809,187.817,480.775,170.087,35.655,170.087,338.138,315.265,359.106,23.422,14.272,23.422 +680,13.314,177.490,482.579,364.855,450.809,187.817,480.775,170.087,35.655,170.087,338.138,315.265,359.106,23.422,14.272,23.422 +681,13.332,181.563,495.203,361.313,438.192,189.935,492.598,162.719,44.341,162.719,342.072,313.349,359.607,24.359,16.677,24.359 +682,13.352,186.995,506.490,355.392,425.580,193.287,503.557,155.010,53.569,155.010,345.861,313.765,359.743,24.296,19.712,24.296 +683,13.372,186.995,506.490,355.392,425.580,193.287,503.557,155.010,53.569,155.010,345.861,313.765,359.743,24.296,19.712,24.296 +684,13.392,194.495,517.823,348.249,412.831,199.515,514.547,146.868,61.821,146.868,348.303,312.422,360.292,26.030,20.809,26.030 +685,13.412,194.495,517.823,348.249,412.831,199.515,514.547,146.868,61.821,146.868,348.303,312.422,360.292,26.030,20.809,26.030 +686,13.431,203.398,528.061,339.524,401.267,207.569,524.347,138.313,70.084,138.313,349.626,311.149,360.797,26.747,21.406,26.747 +687,13.451,212.101,537.060,327.915,391.120,215.713,532.684,129.533,78.389,129.533,349.854,311.210,361.202,25.238,19.859,25.238 +688,13.471,212.101,537.060,327.915,391.120,215.713,532.684,129.533,78.389,129.533,349.854,311.210,361.202,25.238,19.859,25.238 +689,13.489,223.062,545.391,314.665,382.491,226.293,539.899,120.480,86.719,120.480,348.220,309.924,360.963,24.515,17.500,24.515 +690,13.509,223.062,545.391,314.665,382.491,226.293,539.899,120.480,86.719,120.480,348.220,309.924,360.963,24.515,17.500,24.515 +691,13.527,234.968,555.154,300.751,375.977,238.681,545.607,111.251,95.323,111.251,340.699,311.261,361.187,23.973,16.976,23.973 +692,13.546,234.968,555.154,300.751,375.977,238.681,545.607,111.251,95.323,111.251,340.699,311.261,361.187,23.973,16.976,23.973 +693,13.565,240.637,607.374,286.049,371.384,253.257,549.681,102.339,103.928,102.339,244.256,311.174,362.370,26.254,16.989,26.254 +694,13.585,262.776,559.944,271.166,369.883,263.080,550.506,91.848,112.190,91.848,342.693,311.236,361.579,27.212,17.032,27.212 +695,13.605,262.776,559.944,271.166,369.883,263.080,550.506,91.848,112.190,91.848,342.693,311.236,361.579,27.212,17.032,27.212 +696,13.626,281.304,557.233,255.750,370.750,280.528,549.912,83.943,120.964,83.943,346.828,311.270,361.552,28.266,17.493,28.266 +697,13.646,281.304,557.233,255.750,370.750,280.528,549.912,83.943,120.964,83.943,346.828,311.270,361.552,28.266,17.493,28.266 +698,13.664,293.935,553.161,240.528,373.929,292.232,547.188,74.091,129.705,74.091,349.171,311.393,361.592,22.644,18.375,22.644 +699,13.684,307.090,549.194,226.309,379.405,303.965,542.583,64.706,138.209,64.706,346.803,311.827,361.427,23.320,18.118,23.320 +700,13.704,307.090,549.194,226.309,379.405,303.965,542.583,64.706,138.209,64.706,346.803,311.827,361.427,23.320,18.118,23.320 +701,13.722,319.710,543.019,212.750,387.151,314.975,536.023,55.911,146.929,55.911,344.276,312.320,361.172,25.732,17.676,25.732 +702,13.743,319.710,543.019,212.750,387.151,314.975,536.023,55.911,146.929,55.911,344.276,312.320,361.172,25.732,17.676,25.732 +703,13.762,329.647,535.483,200.755,396.059,323.533,528.847,47.344,155.480,47.344,343.655,313.664,361.701,30.045,15.643,30.045 +704,13.781,329.647,535.483,200.755,396.059,323.533,528.847,47.344,155.480,47.344,343.655,313.664,361.701,30.045,15.643,30.045 +705,13.799,338.483,524.902,190.353,406.192,331.642,519.376,38.934,163.496,38.934,344.477,313.989,362.065,30.517,15.128,30.517 +706,13.819,352.910,516.811,182.825,416.264,338.686,508.354,30.735,171.941,30.735,328.970,315.508,362.066,28.341,14.317,28.341 +707,13.840,352.910,516.811,182.825,416.264,338.686,508.354,30.735,171.941,30.735,328.970,315.508,362.066,28.341,14.317,28.341 +708,13.860,367.476,507.354,177.000,428.000,343.608,497.443,22.551,0.000,22.551,309.315,316.000,361.002,26.086,12.000,26.086 +709,13.882,367.476,507.354,177.000,428.000,343.608,497.443,22.551,0.000,22.551,309.315,316.000,361.002,26.086,12.000,26.086 +710,13.901,409.771,502.071,173.088,438.853,347.010,485.555,14.744,7.765,14.744,230.367,315.489,360.162,19.494,12.746,19.494 +711,13.922,374.315,478.303,171.324,449.657,348.826,474.676,8.097,14.973,8.097,307.022,315.830,358.512,19.579,13.120,19.579 +712,13.943,374.315,478.303,171.324,449.657,348.826,474.676,8.097,14.973,8.097,307.022,315.830,358.512,19.579,13.120,19.579 +713,13.961,359.002,465.737,172.351,458.439,349.685,465.660,0.477,22.443,0.477,336.138,317.002,354.774,22.058,17.300,22.058 +714,13.981,359.002,465.737,172.351,458.439,349.685,465.660,0.477,22.443,0.477,336.138,317.002,354.774,22.058,17.300,22.058 +715,13.999,356.703,455.873,173.225,469.622,349.916,456.610,173.806,30.806,173.806,340.474,314.870,354.127,22.218,15.786,22.218 +716,14.019,353.795,446.818,175.706,480.555,348.727,447.951,167.397,39.844,167.397,341.547,314.713,351.932,22.113,15.462,22.113 +717,14.039,353.795,446.818,175.706,480.555,348.727,447.951,167.397,39.844,167.397,341.547,314.713,351.932,22.113,15.462,22.113 +718,14.059,350.752,438.684,179.158,491.361,346.729,440.069,161.003,48.652,161.003,341.773,314.369,350.282,23.545,14.954,23.545 +719,14.079,350.752,438.684,179.158,491.361,346.729,440.069,161.003,48.652,161.003,341.773,314.369,350.282,23.545,14.954,23.545 +720,14.097,348.110,431.450,183.647,502.421,344.267,433.190,155.638,58.118,155.638,341.316,314.717,349.752,23.530,16.304,23.530 +721,14.117,345.060,425.711,187.340,510.678,341.233,427.847,150.832,67.230,150.832,340.730,314.765,349.495,24.531,16.176,24.531 +722,14.137,345.060,425.711,187.340,510.678,341.233,427.847,150.832,67.230,150.832,340.730,314.765,349.495,24.531,16.176,24.531 +723,14.156,341.071,420.605,191.231,519.241,337.424,423.062,146.032,76.781,146.032,341.170,316.303,349.965,25.125,16.752,25.125 +724,14.176,341.071,420.605,191.231,519.241,337.424,423.062,146.032,76.781,146.032,341.170,316.303,349.965,25.125,16.752,25.125 +725,14.194,336.671,415.463,192.974,526.650,332.358,418.914,141.340,85.764,141.340,341.240,317.907,352.286,25.300,20.241,25.300 +726,14.214,336.671,415.463,192.974,526.650,332.358,418.914,141.340,85.764,141.340,341.240,317.907,352.286,25.300,20.241,25.300 +727,14.232,333.001,410.468,197.635,532.610,328.311,414.865,136.848,95.528,136.848,338.870,319.283,351.728,25.944,18.912,25.944 +728,14.252,328.037,406.574,201.952,537.956,324.057,410.895,132.647,104.882,132.647,340.615,320.209,352.365,25.725,17.673,25.725 +729,14.272,328.037,406.574,201.952,537.956,324.057,410.895,132.647,104.882,132.647,340.615,320.209,352.365,25.725,17.673,25.725 +730,14.293,324.411,396.525,206.128,541.973,317.445,405.658,127.336,114.560,127.336,328.817,320.290,351.790,22.925,16.484,22.925 +731,14.313,324.411,396.525,206.128,541.973,317.445,405.658,127.336,114.560,127.336,328.817,320.290,351.790,22.925,16.484,22.925 +732,14.333,352.441,345.168,209.753,545.342,312.504,402.411,124.902,123.912,124.902,212.432,320.334,352.028,18.005,15.203,18.005 +733,14.352,317.563,384.761,214.891,547.309,308.679,399.297,121.430,132.213,121.430,316.331,320.663,350.403,18.156,15.681,18.156 +734,14.373,317.563,384.761,214.891,547.309,308.679,399.297,121.430,132.213,121.430,316.331,320.663,350.403,18.156,15.681,18.156 +735,14.394,310.492,389.580,218.460,548.197,306.434,397.263,117.838,141.409,117.838,331.721,320.314,349.097,21.640,14.489,21.640 +736,14.414,310.492,389.580,218.460,548.197,306.434,397.263,117.838,141.409,117.838,331.721,320.314,349.097,21.640,14.489,21.640 +737,14.433,305.884,388.004,223.377,549.285,302.886,394.561,114.567,150.255,114.567,333.128,319.638,347.547,23.075,14.016,23.075 +738,14.453,300.858,387.029,228.183,550.371,298.822,392.164,111.623,159.018,111.623,335.160,318.703,346.207,22.487,13.694,22.487 +739,14.476,300.858,387.029,228.183,550.371,298.822,392.164,111.623,159.018,111.623,335.160,318.703,346.207,22.487,13.694,22.487 +740,14.494,296.050,385.350,233.635,550.571,294.646,389.562,108.435,167.583,108.435,335.201,318.562,344.081,22.452,13.449,22.452 +741,14.514,296.050,385.350,233.635,550.571,294.646,389.562,108.435,167.583,108.435,335.201,318.562,344.081,22.452,13.449,22.452 +742,14.532,289.830,383.191,239.460,551.954,288.731,387.345,104.813,175.815,104.813,334.876,318.125,343.470,21.948,13.452,21.948 +743,14.552,285.779,382.415,245.511,552.867,284.952,386.261,102.127,4.545,102.127,334.481,318.380,342.348,21.380,13.426,21.380 +744,14.572,285.779,382.415,245.511,552.867,284.952,386.261,102.127,4.545,102.127,334.481,318.380,342.348,21.380,13.426,21.380 +745,14.593,282.054,382.509,251.083,554.141,281.378,386.367,99.938,12.976,99.938,333.139,318.476,340.970,19.039,13.456,19.039 +746,14.612,282.054,382.509,251.083,554.141,281.378,386.367,99.938,12.976,99.938,333.139,318.476,340.970,19.039,13.456,19.039 +747,14.631,278.369,381.829,256.726,555.425,277.903,385.391,97.447,21.431,97.447,335.505,318.449,342.689,18.781,13.450,18.781 +748,14.651,274.503,385.080,262.281,556.862,274.200,388.684,94.808,29.578,94.808,329.938,318.893,337.171,18.635,13.633,18.635 +749,14.671,274.503,385.080,262.281,556.862,274.200,388.684,94.808,29.578,94.808,329.938,318.893,337.171,18.635,13.633,18.635 +750,14.689,270.997,385.318,267.517,558.532,270.824,389.607,92.314,37.632,92.314,329.257,318.998,337.842,18.571,14.128,18.571 +751,14.709,270.997,385.318,267.517,558.532,270.824,389.607,92.314,37.632,92.314,329.257,318.998,337.842,18.571,14.128,18.571 +752,14.727,268.000,386.500,272.165,559.861,268.000,391.431,90.000,45.458,90.000,327.000,319.636,336.861,18.000,14.707,18.000 +753,14.747,268.000,386.500,272.165,559.861,268.000,391.431,90.000,45.458,90.000,327.000,319.636,336.861,18.000,14.707,18.000 +754,14.765,263.932,385.175,276.110,560.917,264.218,391.024,87.198,52.914,87.198,328.830,319.608,340.542,18.356,15.276,18.356 +755,14.786,260.396,384.880,279.804,561.325,261.086,392.331,84.710,60.086,84.710,325.036,320.387,340.001,18.513,16.077,18.513 +756,14.806,260.396,384.880,279.804,561.325,261.086,392.331,84.710,60.086,84.710,325.036,320.387,340.001,18.513,16.077,18.513 +757,14.827,256.329,379.860,281.773,561.915,257.677,389.851,82.321,67.659,82.321,327.319,320.587,347.482,18.640,16.573,18.640 +758,14.847,256.329,379.860,281.773,561.915,257.677,389.851,82.321,67.659,82.321,327.319,320.587,347.482,18.640,16.573,18.640 +759,14.866,250.993,370.795,284.786,561.455,254.366,389.909,79.992,73.450,79.992,309.628,320.280,348.445,18.479,16.956,18.479 +760,14.887,234.098,312.122,287.724,561.150,250.863,390.361,77.905,78.774,77.905,189.414,319.471,349.444,18.299,17.326,18.299 +761,14.907,234.098,312.122,287.724,561.150,250.863,390.361,77.905,78.774,77.905,189.414,319.471,349.444,18.299,17.326,18.299 +762,14.928,243.685,375.671,290.403,555.767,247.198,389.372,75.619,84.123,75.619,315.536,311.676,343.825,18.429,17.320,18.429 +763,14.947,243.685,375.671,290.403,555.767,247.198,389.372,75.619,84.123,75.619,315.536,311.676,343.825,18.429,17.320,18.429 +764,14.966,241.910,381.530,294.500,551.500,243.785,387.790,73.327,90.000,73.327,329.684,305.000,342.755,19.898,17.000,19.898 +765,14.986,238.556,383.425,298.147,556.076,241.263,391.119,70.620,96.667,70.620,332.658,318.623,348.971,20.697,17.130,20.697 +766,15.006,238.556,383.425,298.147,556.076,241.263,391.119,70.620,96.667,70.620,332.658,318.623,348.971,20.697,17.130,20.697 +767,15.027,234.594,385.735,301.645,554.277,237.220,392.158,67.762,104.621,67.762,335.006,319.440,348.885,21.280,16.534,21.280 +768,15.047,234.594,385.735,301.645,554.277,237.220,392.158,67.762,104.621,67.762,335.006,319.440,348.885,21.280,16.534,21.280 +769,15.067,230.369,388.149,305.812,551.219,232.763,393.235,64.785,112.218,64.785,336.859,318.851,348.101,21.885,15.803,21.885 +770,15.086,226.221,389.692,310.437,547.826,228.819,394.444,61.330,119.899,61.330,336.636,318.761,347.469,23.098,15.713,23.098 +771,15.106,226.221,389.692,310.437,547.826,228.819,394.444,61.330,119.899,61.330,336.636,318.761,347.469,23.098,15.713,23.098 +772,15.127,221.649,392.192,315.528,543.748,224.249,396.302,57.684,127.733,57.684,337.083,317.845,346.810,23.471,14.970,23.471 +773,15.148,221.649,392.192,315.528,543.748,224.249,396.302,57.684,127.733,57.684,337.083,317.845,346.810,23.471,14.970,23.471 +774,15.165,216.679,395.648,321.180,539.174,219.231,399.178,54.143,135.507,54.143,337.652,316.834,346.364,24.554,14.867,24.554 +775,15.185,212.149,399.708,326.394,533.793,214.350,402.353,50.222,143.957,50.222,338.525,317.173,345.406,25.596,14.342,25.596 +776,15.206,212.149,399.708,326.394,533.793,214.350,402.353,50.222,143.957,50.222,338.525,317.173,345.406,25.596,14.342,25.596 +777,15.228,207.775,403.703,332.670,528.515,210.291,406.300,45.909,151.837,45.909,338.628,316.828,345.861,26.575,13.616,26.575 +778,15.247,207.775,403.703,332.670,528.515,210.291,406.300,45.909,151.837,45.909,338.628,316.828,345.861,26.575,13.616,26.575 +779,15.266,202.310,409.847,338.870,522.780,205.078,412.294,41.471,159.887,41.471,339.445,317.058,346.835,24.465,13.517,24.465 +780,15.286,198.355,414.691,344.847,516.300,201.726,417.252,37.214,167.651,37.214,339.299,317.370,347.765,30.101,14.104,30.101 +781,15.306,198.355,414.691,344.847,516.300,201.726,417.252,37.214,167.651,37.214,339.299,317.370,347.765,30.101,14.104,30.101 +782,15.326,192.982,421.833,350.896,510.390,197.845,424.859,31.891,176.285,31.891,338.811,317.150,350.268,27.585,14.165,27.585 +783,15.346,192.982,421.833,350.896,510.390,197.845,424.859,31.891,176.285,31.891,338.811,317.150,350.268,27.585,14.165,27.585 +784,15.364,187.669,426.645,355.711,501.815,195.135,430.329,26.261,3.798,26.261,334.615,318.159,351.266,28.219,15.683,28.219 +785,15.384,187.669,426.645,355.711,501.815,195.135,430.329,26.261,3.798,26.261,334.615,318.159,351.266,28.219,15.683,28.219 +786,15.403,170.450,430.150,360.431,495.828,192.818,437.606,18.435,11.889,18.435,307.690,318.544,354.846,20.871,12.052,20.871 +787,15.423,135.676,434.052,363.561,487.196,189.823,446.918,13.367,20.171,13.367,245.376,318.343,356.685,18.822,12.164,18.822 +788,15.444,135.676,434.052,363.561,487.196,189.823,446.918,13.367,20.171,13.367,245.376,318.343,356.685,18.822,12.164,18.822 +789,15.462,178.479,455.812,365.580,477.771,187.791,456.876,6.520,28.610,6.520,339.277,317.798,358.023,25.293,12.929,25.293 +790,15.482,178.479,455.812,365.580,477.771,187.791,456.876,6.520,28.610,6.520,339.277,317.798,358.023,25.293,12.929,25.293 +791,15.500,176.500,465.500,366.021,467.300,186.511,465.500,0.000,36.983,0.000,339.000,316.804,359.021,23.000,14.063,23.000 +792,15.520,177.081,476.301,364.209,455.809,185.923,475.299,173.536,45.294,173.536,340.898,315.394,358.694,22.947,15.056,22.947 +793,15.540,177.081,476.301,364.209,455.809,185.923,475.299,173.536,45.294,173.536,340.898,315.394,358.694,22.947,15.056,22.947 +794,15.560,180.058,487.742,361.397,443.484,187.017,486.061,166.421,53.973,166.421,344.686,314.451,359.004,24.367,17.278,24.367 +795,15.580,180.058,487.742,361.397,443.484,187.017,486.061,166.421,53.973,166.421,344.686,314.451,359.004,24.367,17.278,24.367 +796,15.598,184.786,499.841,357.138,430.990,190.241,497.741,158.946,64.093,158.946,347.780,313.029,359.471,26.630,20.355,26.630 +797,15.618,190.161,510.938,351.385,419.467,194.859,508.359,151.246,73.024,151.246,349.255,310.759,359.974,26.355,21.001,26.355 +798,15.640,190.161,510.938,351.385,419.467,194.859,508.359,151.246,73.024,151.246,349.255,310.759,359.974,26.355,21.001,26.355 +799,15.660,197.874,522.343,343.679,407.550,202.204,519.102,143.183,81.951,143.183,349.396,310.407,360.213,27.873,21.713,27.873 +800,15.680,197.874,522.343,343.679,407.550,202.204,519.102,143.183,81.951,143.183,349.396,310.407,360.213,27.873,21.713,27.873 +801,15.698,206.081,531.545,334.145,397.031,210.071,527.508,134.663,90.428,134.663,348.685,310.021,360.037,25.389,19.664,25.389 +802,15.718,216.263,541.466,322.014,387.668,220.086,536.211,126.044,99.403,126.044,347.166,310.717,360.163,26.046,18.179,26.046 +803,15.738,216.263,541.466,322.014,387.668,220.086,536.211,126.044,99.403,126.044,347.166,310.717,360.163,26.046,18.179,26.046 +804,15.757,221.400,555.200,309.516,380.727,228.306,541.388,116.565,107.289,116.565,329.149,310.796,360.035,21.466,17.806,21.466 +805,15.778,221.400,555.200,309.516,380.727,228.306,541.388,116.565,107.289,116.565,329.149,310.796,360.035,21.466,17.806,21.466 +806,15.796,235.199,569.411,297.876,375.778,242.416,547.547,108.265,113.962,108.265,314.945,309.985,360.993,23.137,16.855,23.137 +807,15.815,235.199,569.411,297.876,375.778,242.416,547.547,108.265,113.962,108.265,314.945,309.985,360.993,23.137,16.855,23.137 +808,15.834,252.166,559.643,283.657,372.348,253.521,550.780,98.691,122.005,98.691,343.941,310.261,361.873,27.294,16.960,27.294 +809,15.854,267.500,559.000,269.156,371.334,267.500,551.667,90.000,130.389,90.000,346.000,310.336,360.666,27.000,16.904,27.000 +810,15.874,267.500,559.000,269.156,371.334,267.500,551.667,90.000,130.389,90.000,346.000,310.336,360.666,27.000,16.904,27.000 +811,15.894,285.236,558.181,253.571,372.438,284.159,550.665,81.844,138.814,81.844,346.344,310.720,361.528,26.588,17.780,26.588 +812,15.913,285.236,558.181,253.571,372.438,284.159,550.665,81.844,138.814,81.844,346.344,310.720,361.528,26.588,17.780,26.588 +813,15.932,297.936,555.547,238.507,375.718,295.357,547.379,72.474,147.804,72.474,344.494,311.320,361.625,22.635,18.492,22.635 +814,15.952,310.124,550.433,224.002,381.120,306.037,542.293,63.338,155.854,63.338,343.476,311.795,361.693,23.768,17.904,23.768 +815,15.972,310.124,550.433,224.002,381.120,306.037,542.293,63.338,155.854,63.338,343.476,311.795,361.693,23.768,17.904,23.768 +816,15.993,319.723,540.924,210.951,388.329,315.989,535.655,54.673,164.002,54.673,348.954,313.179,361.871,27.549,16.550,27.549 +817,16.012,319.723,540.924,210.951,388.329,315.989,535.655,54.673,164.002,54.673,348.954,313.179,361.871,27.549,16.550,27.549 +818,16.030,333.503,536.545,199.396,396.199,324.575,527.168,46.405,172.593,46.405,336.447,314.077,362.341,29.100,14.895,29.100 +819,16.050,333.503,536.545,199.396,396.199,324.575,527.168,46.405,172.593,46.405,336.447,314.077,362.341,29.100,14.895,29.100 +820,16.069,344.809,527.749,189.507,405.307,331.767,517.743,37.499,0.582,37.499,329.741,315.065,362.617,26.421,14.542,26.421 +821,16.089,360.935,519.244,182.124,415.662,338.647,506.420,29.914,8.418,29.914,310.437,315.812,361.864,25.398,14.138,25.398 +822,16.110,360.935,519.244,182.124,415.662,338.647,506.420,29.914,8.418,29.914,310.437,315.812,361.864,25.398,14.138,25.398 +823,16.129,413.686,522.054,177.083,426.208,344.077,494.017,21.938,15.878,21.938,210.382,316.204,360.470,19.995,14.941,19.995 +824,16.149,413.686,522.054,177.083,426.208,344.077,494.017,21.938,15.878,21.938,210.382,316.204,360.470,19.995,14.941,19.995 +825,16.167,366.871,488.486,173.771,437.381,347.259,483.283,14.859,23.646,14.859,318.334,316.302,358.915,20.456,14.667,20.456 +826,16.186,358.372,474.609,172.756,448.412,349.393,473.570,6.600,30.675,6.600,338.642,315.888,356.718,25.294,16.570,25.294 +827,16.206,358.372,474.609,172.756,448.412,349.393,473.570,6.600,30.675,6.600,338.642,315.888,356.718,25.294,16.570,25.294 +828,16.227,356.510,464.663,172.543,459.816,349.785,464.690,179.774,38.480,179.774,340.990,315.157,354.441,22.000,15.616,22.000 +829,16.247,356.510,464.663,172.543,459.816,349.785,464.690,179.774,38.480,179.774,340.990,315.157,354.441,22.000,15.616,22.000 +830,16.267,355.434,454.921,173.953,471.064,350.035,455.540,173.461,46.054,173.461,342.540,314.136,353.408,23.047,15.823,23.047 +831,16.287,353.144,446.634,176.443,482.697,348.784,447.625,167.186,53.569,167.186,342.714,315.623,351.656,23.578,16.628,23.578 +832,16.307,353.144,446.634,176.443,482.697,348.784,447.625,167.186,53.569,167.186,342.714,315.623,351.656,23.578,16.628,23.578 +833,16.326,350.524,439.048,179.318,493.044,346.616,440.372,161.288,60.871,161.288,342.454,313.923,350.706,23.954,16.650,23.954 +834,16.347,350.524,439.048,179.318,493.044,346.616,440.372,161.288,60.871,161.288,342.454,313.923,350.706,23.954,16.650,23.954 +835,16.366,348.251,432.556,183.070,502.785,344.246,434.361,155.739,68.412,155.739,341.328,314.197,350.114,24.564,16.771,24.564 +836,16.387,344.990,427.075,186.493,511.868,340.990,429.281,151.113,75.784,151.113,341.204,315.306,350.339,24.154,16.738,24.154 +837,16.408,344.990,427.075,186.493,511.868,340.990,429.281,151.113,75.784,151.113,341.204,315.306,350.339,24.154,16.738,24.154 +838,16.428,342.088,422.635,190.172,518.480,338.307,425.107,146.821,83.355,146.821,341.130,315.295,350.165,25.045,17.127,25.045 +839,16.448,342.088,422.635,190.172,518.480,338.307,425.107,146.821,83.355,146.821,341.130,315.295,350.165,25.045,17.127,25.045 +840,16.466,339.021,418.374,191.500,525.000,334.524,421.817,142.564,90.000,142.564,341.249,316.000,352.576,26.933,21.000,26.933 +841,16.488,333.909,412.707,195.701,530.527,329.810,416.344,138.414,97.765,138.414,341.231,317.021,352.192,23.979,20.537,23.979 +842,16.508,333.909,412.707,195.701,530.527,329.810,416.344,138.414,97.765,138.414,341.231,317.021,352.192,23.979,20.537,23.979 +843,16.527,330.540,409.023,199.836,535.240,326.494,413.137,134.523,106.044,134.523,340.195,318.402,351.736,25.714,17.381,25.714 +844,16.547,330.540,409.023,199.836,535.240,326.494,413.137,134.523,106.044,134.523,340.195,318.402,351.736,25.714,17.381,25.714 +845,16.565,326.541,401.451,203.583,539.235,320.947,408.164,129.806,111.918,129.806,334.176,319.398,351.652,25.223,16.375,25.223 +846,16.585,326.774,391.356,206.775,542.125,316.860,404.780,126.447,117.361,126.447,318.382,319.820,351.760,22.575,15.701,22.575 +847,16.605,326.774,391.356,206.775,542.125,316.860,404.780,126.447,117.361,126.447,318.382,319.820,351.760,22.575,15.701,22.575 +848,16.623,341.536,360.207,209.950,544.104,312.595,401.284,125.166,122.447,125.166,251.246,319.902,351.743,18.022,16.157,18.022 +849,16.644,341.536,360.207,209.950,544.104,312.595,401.284,125.166,122.447,125.166,251.246,319.902,351.743,18.022,16.157,18.022 +850,16.662,331.515,364.466,212.722,545.789,309.420,399.114,122.525,127.124,122.525,269.138,320.816,351.324,17.963,15.459,17.963 +851,16.683,331.515,364.466,212.722,545.789,309.420,399.114,122.525,127.124,122.525,269.138,320.816,351.324,17.963,15.459,17.963 +852,16.701,313.632,384.236,215.131,546.756,306.334,396.823,120.101,132.274,120.101,321.807,320.596,350.907,18.155,15.337,18.155 +853,16.721,308.833,387.247,216.956,547.166,304.544,395.428,117.661,138.786,117.661,331.641,321.068,350.115,20.542,14.604,20.542 +854,16.742,308.833,387.247,216.956,547.166,304.544,395.428,117.661,138.786,117.661,331.641,321.068,350.115,20.542,14.604,20.542 +855,16.761,306.267,387.013,220.957,547.992,303.018,393.902,115.253,145.322,115.253,333.513,320.717,348.746,23.464,13.765,23.464 +856,16.780,306.267,387.013,220.957,547.992,303.018,393.902,115.253,145.322,115.253,333.513,320.717,348.746,23.464,13.765,23.464 +857,16.799,302.217,385.927,225.271,549.144,299.631,392.115,112.681,152.458,112.681,333.703,319.826,347.117,22.378,13.319,22.378 +858,16.819,299.300,385.914,229.916,550.023,297.474,390.820,110.410,159.996,110.410,335.068,319.530,345.537,22.951,13.281,22.951 +859,16.840,299.300,385.914,229.916,550.023,297.474,390.820,110.410,159.996,110.410,335.068,319.530,345.537,22.951,13.281,22.951 +860,16.861,296.003,384.990,234.545,550.879,294.564,389.359,108.239,167.887,108.239,335.178,318.903,344.379,21.866,13.376,21.866 +861,16.881,296.003,384.990,234.545,550.879,294.564,389.359,108.239,167.887,108.239,335.178,318.903,344.379,21.866,13.376,21.866 +862,16.900,292.802,384.456,239.226,551.959,291.614,388.559,106.144,175.567,106.144,334.504,318.139,343.047,21.107,12.351,21.107 +863,16.919,288.519,383.646,244.120,553.097,287.612,387.441,103.444,3.614,103.444,334.651,317.136,342.456,20.994,12.680,20.994 +864,16.939,288.519,383.646,244.120,553.097,287.612,387.441,103.444,3.614,103.444,334.651,317.136,342.456,20.994,12.680,20.994 +865,16.960,285.311,386.540,248.609,554.471,284.546,390.273,101.570,11.689,101.570,328.517,318.327,336.138,20.512,12.967,20.512 +866,16.980,285.311,386.540,248.609,554.471,284.546,390.273,101.570,11.689,101.570,328.517,318.327,336.138,20.512,12.967,20.512 +867,17.000,282.909,385.282,252.889,555.544,282.275,388.891,99.958,19.900,99.958,331.118,318.847,338.447,19.165,13.709,19.165 +868,17.021,279.967,386.699,256.839,556.993,279.428,390.419,98.239,28.106,98.239,328.667,319.001,336.185,19.158,13.913,19.158 +869,17.041,279.967,386.699,256.839,556.993,279.428,390.419,98.239,28.106,98.239,328.667,319.001,336.185,19.158,13.913,19.158 +870,17.060,277.116,389.494,260.344,558.173,276.677,393.299,96.582,36.350,96.582,323.660,319.227,331.320,18.607,13.790,18.607 +871,17.080,277.116,389.494,260.344,558.173,276.677,393.299,96.582,36.350,96.582,323.660,319.227,331.320,18.607,13.790,18.607 +872,17.098,275.086,383.087,263.268,559.711,274.709,387.567,94.808,44.653,94.808,336.000,319.632,344.993,18.477,14.005,18.477 +873,17.118,272.170,386.228,265.791,560.773,271.863,391.688,93.225,52.989,93.225,327.382,320.196,338.319,18.590,14.705,18.590 +874,17.137,272.170,386.228,265.791,560.773,271.863,391.688,93.225,52.989,93.225,327.382,320.196,338.319,18.590,14.705,18.590 +875,17.156,269.482,383.890,268.051,561.611,269.309,390.231,91.569,61.429,91.569,330.013,320.831,342.700,18.568,15.086,18.568 +876,17.176,269.482,383.890,268.051,561.611,269.309,390.231,91.569,61.429,91.569,330.013,320.831,342.700,18.568,15.086,18.568 +877,17.195,267.000,382.000,269.349,561.914,267.000,390.457,90.000,70.201,90.000,326.000,321.332,342.914,18.000,16.070,18.000 +878,17.215,267.000,382.000,269.349,561.914,267.000,390.457,90.000,70.201,90.000,326.000,321.332,342.914,18.000,16.070,18.000 +879,17.233,264.111,377.125,270.477,562.081,264.541,390.531,88.162,79.114,88.162,316.479,321.607,343.305,18.344,16.694,18.344 +880,17.253,257.218,309.932,271.604,552.015,261.394,385.086,86.820,87.905,86.820,183.939,300.384,334.477,18.527,17.830,18.527 +881,17.273,257.218,309.932,271.604,552.015,261.394,385.086,86.820,87.905,86.820,183.939,300.384,334.477,18.527,17.830,18.527 +882,17.294,258.576,379.727,273.935,561.629,259.601,391.258,84.920,95.947,84.920,318.787,321.490,341.941,18.549,17.986,18.549 +883,17.314,258.576,379.727,273.935,561.629,259.601,391.258,84.920,95.947,84.920,318.787,321.490,341.941,18.549,17.986,18.549 +884,17.333,256.263,380.277,276.419,560.858,257.418,389.402,82.786,104.153,82.786,326.571,321.138,344.968,18.586,18.044,18.586 +885,17.353,253.983,381.951,278.895,559.954,255.103,389.058,81.045,113.860,81.045,330.641,320.439,345.031,18.493,16.233,18.493 +886,17.373,253.983,381.951,278.895,559.954,255.103,389.058,81.045,113.860,81.045,330.641,320.439,345.031,18.493,16.233,18.493 +887,17.394,251.715,383.362,281.533,559.073,252.977,389.899,79.071,122.276,79.071,329.723,320.129,343.039,18.561,15.308,18.561 +888,17.414,251.715,383.362,281.533,559.073,252.977,389.899,79.071,122.276,79.071,329.723,320.129,343.039,18.561,15.308,18.561 +889,17.433,249.103,382.638,284.629,557.816,250.413,388.433,77.255,130.807,77.255,333.631,319.311,345.516,19.031,14.725,19.031 +890,17.454,246.661,384.169,288.423,556.037,247.883,388.817,75.277,138.977,75.277,334.456,318.903,344.066,19.322,14.010,19.322 +891,17.476,246.661,384.169,288.423,556.037,247.883,388.817,75.277,138.977,75.277,334.456,318.903,344.066,19.322,14.010,19.322 +892,17.494,243.790,384.960,292.735,554.044,245.057,389.163,73.222,147.105,73.222,334.470,318.444,343.249,19.904,13.999,19.904 +893,17.515,243.790,384.960,292.735,554.044,245.057,389.163,73.222,147.105,73.222,334.470,318.444,343.249,19.904,13.999,19.904 +894,17.533,241.024,386.649,297.065,552.414,242.264,390.271,71.092,155.064,71.092,334.646,318.133,342.304,20.635,14.378,20.635 +895,17.553,237.745,387.598,301.681,550.345,238.996,390.841,68.908,162.862,68.908,335.801,317.978,342.752,21.726,14.187,21.726 +896,17.573,237.745,387.598,301.681,550.345,238.996,390.841,68.908,162.862,68.908,335.801,317.978,342.752,21.726,14.187,21.726 +897,17.593,234.407,388.907,306.536,548.135,235.696,391.882,66.579,170.808,66.579,336.588,318.274,343.074,22.750,14.496,22.750 +898,17.614,234.407,388.907,306.536,548.135,235.696,391.882,66.579,170.808,66.579,336.588,318.274,343.074,22.750,14.496,22.750 +899,17.633,230.886,390.034,311.458,545.938,232.407,393.120,63.768,178.836,63.768,337.160,317.219,344.040,22.594,13.883,22.594 +900,17.653,226.666,391.731,316.293,543.970,228.494,395.068,61.290,6.610,61.290,337.934,318.619,345.545,23.204,13.958,23.204 +901,17.673,226.666,391.731,316.293,543.970,228.494,395.068,61.290,6.610,61.290,337.934,318.619,345.545,23.204,13.958,23.204 +902,17.693,222.530,393.289,321.361,541.569,224.901,397.149,58.436,14.155,58.436,338.031,319.190,347.092,24.152,14.261,24.152 +903,17.713,222.530,393.289,321.361,541.569,224.901,397.149,58.436,14.155,58.436,338.031,319.190,347.092,24.152,14.261,24.152 +904,17.731,218.254,394.857,326.248,538.827,221.391,399.418,55.480,21.473,55.480,337.499,319.779,348.570,24.830,14.792,24.830 +905,17.752,212.979,396.288,331.157,535.880,217.615,402.298,52.352,27.979,52.352,335.060,320.295,350.241,24.545,15.317,24.545 +906,17.771,212.979,396.288,331.157,535.880,217.615,402.298,52.352,27.979,52.352,335.060,320.295,350.241,24.545,15.317,24.545 +907,17.791,206.272,396.613,334.876,533.479,214.360,405.279,46.975,34.249,46.975,328.195,320.914,351.903,20.713,15.248,20.713 +908,17.811,206.272,396.613,334.876,533.479,214.360,405.279,46.975,34.249,46.975,328.195,320.914,351.903,20.713,15.248,20.713 +909,17.830,186.328,384.727,338.234,531.094,211.175,408.463,43.691,38.991,43.691,284.441,320.928,353.166,19.560,15.545,19.560 +910,17.850,186.328,384.727,338.234,531.094,211.175,408.463,43.691,38.991,43.691,284.441,320.928,353.166,19.560,15.545,19.560 +911,17.868,164.907,376.106,342.077,527.440,207.162,413.079,41.186,43.877,41.186,241.389,320.438,353.682,18.156,15.110,18.156 +912,17.889,185.432,402.736,345.848,523.262,203.871,417.575,38.826,48.965,38.826,306.399,320.412,353.737,26.811,15.379,26.811 +913,17.911,185.432,402.736,345.848,523.262,203.871,417.575,38.826,48.965,38.826,306.399,320.412,353.737,26.811,15.379,26.811 +914,17.929,190.967,414.358,349.709,518.207,201.362,421.368,33.992,54.537,33.992,329.200,319.680,354.275,27.110,15.241,27.110 +915,17.950,190.967,414.358,349.709,518.207,201.362,421.368,33.992,54.537,33.992,329.200,319.680,354.275,27.110,15.241,27.110 +916,17.968,191.355,423.128,353.250,512.202,198.057,426.815,28.820,60.701,28.820,338.965,319.375,354.263,26.548,15.246,26.548 +917,17.988,188.695,430.981,355.896,505.365,194.134,433.416,24.118,67.659,24.118,342.162,318.471,354.081,28.512,17.447,28.512 +918,18.010,188.695,430.981,355.896,505.365,194.134,433.416,24.118,67.659,24.118,342.162,318.471,354.081,28.512,17.447,28.512 +919,18.028,185.819,439.090,359.112,496.742,191.066,440.860,18.642,74.745,18.642,343.111,317.407,354.185,28.757,18.418,28.757 +920,18.049,185.819,439.090,359.112,496.742,191.066,440.860,18.642,74.745,18.642,343.111,317.407,354.185,28.757,18.418,28.757 +921,18.067,182.833,447.605,360.682,487.271,188.097,448.796,12.745,81.511,12.745,342.851,316.110,353.643,28.193,18.216,28.193 +922,18.088,180.404,459.202,361.162,477.027,185.494,459.607,4.556,88.152,4.556,342.782,314.417,352.994,25.398,17.733,25.398 +923,18.108,180.404,459.202,361.162,477.027,185.494,459.607,4.556,88.152,4.556,342.782,314.417,352.994,25.398,17.733,25.398 +924,18.127,180.022,468.851,361.411,465.700,184.652,468.733,178.544,95.553,178.544,344.296,313.536,353.559,22.967,18.316,22.967 +925,18.146,180.022,468.851,361.411,465.700,184.652,468.733,178.544,95.553,178.544,344.296,313.536,353.559,22.967,18.316,22.967 +926,18.165,180.809,479.152,360.639,453.738,185.128,478.532,171.836,102.771,171.836,345.781,312.486,354.507,23.611,18.400,23.611 +927,18.185,182.462,490.105,358.275,441.455,186.952,488.906,165.051,109.628,165.051,346.236,311.720,355.530,23.572,18.370,23.572 +928,18.206,182.462,490.105,358.275,441.455,186.952,488.906,165.051,109.628,165.051,346.236,311.720,355.530,23.572,18.370,23.572 +929,18.225,185.739,501.484,354.519,428.763,190.542,499.524,157.797,116.682,157.797,346.739,312.142,357.116,23.826,18.328,23.826 +930,18.245,185.739,501.484,354.519,428.763,190.542,499.524,157.797,116.682,157.797,346.739,312.142,357.116,23.826,18.328,23.826 +931,18.264,189.548,513.447,348.854,416.732,195.628,509.963,150.191,123.614,150.191,344.580,313.134,358.596,24.657,18.071,24.657 +932,18.284,189.548,513.447,348.854,416.732,195.628,509.963,150.191,123.614,150.191,344.580,313.134,358.596,24.657,18.071,24.657 +933,18.303,189.659,524.970,341.275,405.043,200.294,516.586,141.746,130.179,141.746,332.456,312.930,359.540,19.586,17.827,19.586 +934,18.323,156.225,579.954,333.145,394.764,207.967,524.874,133.210,136.987,133.210,209.930,313.624,361.074,20.540,16.091,20.540 +935,18.345,156.225,579.954,333.145,394.764,207.967,524.874,133.210,136.987,133.210,209.930,313.624,361.074,20.540,16.091,20.540 +936,18.363,209.333,549.784,322.441,385.919,220.130,534.988,126.119,144.003,126.119,324.819,313.276,361.452,24.168,15.967,24.168 +937,18.384,209.333,549.784,322.441,385.919,220.130,534.988,126.119,144.003,126.119,324.819,313.276,361.452,24.168,15.967,24.168 +938,18.402,225.230,553.873,309.993,378.815,231.244,541.782,116.447,151.314,116.447,334.960,313.166,361.968,24.119,16.254,24.119 +939,18.424,239.821,558.318,296.154,373.677,243.416,547.126,107.810,158.703,107.810,339.024,312.943,362.534,24.504,16.281,24.504 +940,18.445,239.821,558.318,296.154,373.677,243.416,547.126,107.810,158.703,107.810,339.024,312.943,362.534,24.504,16.281,24.504 +941,18.464,255.254,561.380,281.444,369.800,257.118,549.785,99.137,166.139,99.137,339.642,312.875,363.129,27.134,16.820,27.134 +942,18.483,255.254,561.380,281.444,369.800,257.118,549.785,99.137,166.139,99.137,339.642,312.875,363.129,27.134,16.820,27.134 +943,18.502,271.069,562.023,266.565,368.569,271.149,549.829,90.377,173.501,90.377,338.065,313.076,362.454,27.980,17.381,27.980 +944,18.522,285.238,560.772,251.012,369.716,283.439,549.061,81.269,0.881,81.269,340.681,312.163,364.379,26.306,17.552,26.306 +945,18.542,285.238,560.772,251.012,369.716,283.439,549.061,81.269,0.881,81.269,340.681,312.163,364.379,26.306,17.552,26.306 +946,18.561,298.105,557.812,236.932,373.466,294.286,546.128,71.901,8.326,71.901,339.290,313.394,363.874,21.857,17.352,21.857 +947,18.580,298.105,557.812,236.932,373.466,294.286,546.128,71.901,8.326,71.901,339.290,313.394,363.874,21.857,17.352,21.857 +948,18.599,311.300,552.600,223.629,379.824,305.728,541.455,63.435,15.673,63.435,337.646,313.194,362.567,23.255,15.267,23.255 +949,18.619,325.445,547.071,211.497,387.181,316.747,534.739,54.806,23.091,54.806,332.310,313.829,362.492,24.834,15.716,24.834 +950,18.639,325.445,547.071,211.497,387.181,316.747,534.739,54.806,23.091,54.806,332.310,313.829,362.492,24.834,15.716,24.834 +951,18.658,340.856,545.692,201.401,396.026,324.148,528.538,45.754,30.288,45.754,313.249,313.550,361.142,25.156,15.214,25.156 +952,18.678,340.856,545.692,201.401,396.026,324.148,528.538,45.754,30.288,45.754,313.249,313.550,361.142,25.156,15.214,25.156 +953,18.697,396.501,566.240,193.113,405.349,334.977,516.653,38.868,36.690,38.868,202.563,313.017,360.602,19.965,15.016,19.965 +954,18.718,353.993,515.326,187.479,414.480,341.203,507.483,31.517,42.647,31.517,329.325,313.033,359.331,21.972,17.711,21.972 +955,18.737,353.993,515.326,187.479,414.480,341.203,507.483,31.517,42.647,31.517,329.325,313.033,359.331,21.972,17.711,21.972 +956,18.756,352.204,504.005,181.994,425.576,344.715,500.648,24.146,49.399,24.146,341.971,313.031,358.386,28.099,18.114,28.099 +957,18.777,352.204,504.005,181.994,425.576,344.715,500.648,24.146,49.399,24.146,341.971,313.031,358.386,28.099,18.114,28.099 +958,18.795,354.767,491.919,179.175,436.916,349.062,490.191,16.852,57.075,16.852,344.152,313.455,356.073,26.333,18.026,26.333 +959,18.815,354.767,491.919,179.175,436.916,349.062,490.191,16.852,57.075,16.852,344.152,313.455,356.073,26.333,18.026,26.333 +960,18.833,356.520,478.869,176.170,448.494,351.264,478.069,8.658,65.126,8.658,344.470,312.270,355.102,24.630,16.899,24.630 +961,18.853,356.557,468.285,174.954,460.529,351.599,468.120,1.909,73.457,1.909,343.676,311.291,353.599,25.119,17.359,25.119 +962,18.873,356.557,468.285,174.954,460.529,351.599,468.120,1.909,73.457,1.909,343.676,311.291,353.599,25.119,17.359,25.119 +963,18.895,355.594,459.328,174.903,471.293,351.023,459.652,175.946,81.790,175.946,343.838,313.392,353.004,22.448,18.259,22.448 +964,18.915,355.594,459.328,174.903,471.293,351.023,459.652,175.946,81.790,175.946,343.838,313.392,353.004,22.448,18.259,22.448 +965,18.935,354.169,450.651,175.000,482.000,349.324,451.519,169.842,90.000,169.842,344.092,314.000,353.935,22.389,18.000,22.389 +966,18.955,351.402,443.109,173.271,491.153,345.416,444.798,164.243,97.253,164.243,344.088,316.556,356.528,22.160,22.906,22.160 +967,18.976,351.402,443.109,173.271,491.153,345.416,444.798,164.243,97.253,164.243,344.088,316.556,356.528,22.160,22.906,22.160 +968,18.994,348.316,435.983,175.587,499.609,342.741,438.171,158.575,105.461,158.575,344.113,318.058,356.091,24.074,21.265,24.074 +969,19.014,348.316,435.983,175.587,499.609,342.741,438.171,158.575,105.461,158.575,344.113,318.058,356.091,24.074,21.265,24.074 +970,19.032,346.129,431.134,178.129,507.335,340.207,433.966,154.440,113.962,154.440,342.615,319.123,355.744,24.515,19.596,24.515 +971,19.053,346.188,423.325,181.889,514.060,337.553,428.314,149.982,122.187,149.982,335.417,319.907,355.361,23.840,16.374,23.840 +972,19.073,346.188,423.325,181.889,514.060,337.553,428.314,149.982,122.187,149.982,335.417,319.907,355.361,23.840,16.374,23.840 +973,19.094,349.148,411.397,185.027,519.601,333.523,422.516,144.563,130.150,144.563,316.201,320.454,354.556,23.988,14.916,23.988 +974,19.114,349.148,411.397,185.027,519.601,333.523,422.516,144.563,130.150,144.563,316.201,320.454,354.556,23.988,14.916,23.988 +975,19.133,374.894,382.170,188.284,524.213,329.631,417.593,141.953,137.694,141.953,239.093,320.057,354.045,17.736,14.060,17.736 +976,19.153,345.520,396.645,192.557,527.866,326.737,413.387,138.289,145.058,138.289,302.354,320.234,352.677,17.592,13.785,17.592 +977,19.173,345.520,396.645,192.557,527.866,326.737,413.387,138.289,145.058,138.289,302.354,320.234,352.677,17.592,13.785,17.592 +978,19.195,332.412,402.397,196.227,529.972,324.755,410.115,134.772,152.668,134.772,329.475,319.879,351.219,19.252,15.312,19.252 +979,19.215,332.412,402.397,196.227,529.972,324.755,410.115,134.772,152.668,134.772,329.475,319.879,351.219,19.252,15.312,19.252 +980,19.233,329.414,402.915,200.453,533.100,324.088,408.919,131.576,160.145,131.576,333.834,318.587,349.885,25.845,14.030,25.845 +981,19.253,324.377,400.084,204.937,535.497,320.501,404.956,128.501,167.314,128.501,335.754,318.781,348.206,23.994,13.173,23.994 +982,19.274,324.377,400.084,204.937,535.497,320.501,404.956,128.501,167.314,128.501,335.754,318.781,348.206,23.994,13.173,23.994 +983,19.295,320.671,397.146,209.612,537.401,317.586,401.425,125.783,174.592,125.783,336.336,317.704,346.886,23.394,13.119,23.394 +984,19.314,320.671,397.146,209.612,537.401,317.586,401.425,125.783,174.592,125.783,336.336,317.704,346.886,23.394,13.119,23.394 +985,19.333,316.793,394.976,214.060,539.540,314.479,398.522,123.136,1.762,123.136,337.487,318.311,345.955,23.191,12.763,23.191 +986,19.353,313.999,393.376,218.257,541.805,311.928,396.863,120.713,8.637,120.713,336.796,318.398,344.907,24.660,13.704,24.660 +987,19.373,313.999,393.376,218.257,541.805,311.928,396.863,120.713,8.637,120.713,336.796,318.398,344.907,24.660,13.704,24.660 +988,19.394,310.390,391.334,222.111,543.828,308.537,394.757,118.421,15.709,118.421,336.693,318.818,344.477,23.601,13.928,23.601 +989,19.414,310.390,391.334,222.111,543.828,308.537,394.757,118.421,15.709,118.421,336.693,318.818,344.477,23.601,13.928,23.601 +990,19.433,307.390,389.940,226.067,545.945,305.724,393.309,116.318,22.665,116.318,336.747,318.693,344.263,23.372,13.781,23.372 +991,19.453,304.765,388.981,229.972,547.784,303.273,392.251,114.513,29.539,114.513,336.665,318.515,343.854,23.082,13.862,23.082 +992,19.475,304.765,388.981,229.972,547.784,303.273,392.251,114.513,29.539,114.513,336.665,318.515,343.854,23.082,13.862,23.082 +993,19.497,301.878,388.108,233.561,550.182,300.394,391.639,112.801,36.187,112.801,336.448,318.423,344.108,22.125,14.679,22.125 +994,19.518,301.878,388.108,233.561,550.182,300.394,391.639,112.801,36.187,112.801,336.448,318.423,344.108,22.125,14.679,22.125 +995,19.536,299.290,387.961,236.544,552.373,297.978,391.382,110.973,42.807,110.973,337.300,318.506,344.628,21.616,14.733,21.616 +996,19.558,297.207,387.529,239.324,554.294,295.925,391.217,109.179,49.399,109.179,337.432,318.454,345.241,22.175,15.511,22.175 +997,19.580,297.207,387.529,239.324,554.294,295.925,391.217,109.179,49.399,109.179,337.432,318.454,345.241,22.175,15.511,22.175 +998,19.599,294.065,386.289,241.231,556.346,292.642,390.912,107.103,56.310,107.103,336.802,318.675,346.476,22.056,16.086,22.056 +999,19.620,294.289,386.537,243.908,557.527,292.864,391.287,106.699,62.468,106.699,336.676,319.401,346.594,21.934,15.820,21.934 +1000,19.641,294.289,386.537,243.908,557.527,292.864,391.287,106.699,62.468,106.699,336.676,319.401,346.594,21.934,15.820,21.934 +1001,19.663,291.390,385.537,245.460,558.624,289.975,390.844,104.931,68.587,104.931,336.185,319.415,347.169,21.772,16.429,21.772 +1002,19.684,291.390,385.537,245.460,558.624,289.975,390.844,104.931,68.587,104.931,336.185,319.415,347.169,21.772,16.429,21.772 +1003,19.703,289.428,385.382,246.072,559.574,288.100,390.814,103.741,74.846,103.741,336.644,319.510,347.827,21.285,17.012,21.285 +1004,19.724,288.208,384.904,246.858,559.936,286.926,390.510,102.881,79.931,102.881,336.688,319.479,348.190,21.393,17.042,21.393 +1005,19.746,288.208,384.904,246.858,559.936,286.926,390.510,102.881,79.931,102.881,336.688,319.479,348.190,21.393,17.042,21.393 +1006,19.766,287.497,382.497,246.795,559.568,285.840,389.937,102.553,84.514,102.553,332.880,318.894,348.124,19.976,17.850,19.976 +1007,19.787,286.645,381.175,246.593,551.977,285.601,386.054,102.080,88.807,102.080,330.847,304.122,340.825,19.961,17.725,19.961 +1008,19.808,286.645,381.175,246.593,551.977,285.601,386.054,102.080,88.807,102.080,330.847,304.122,340.825,19.961,17.725,19.961 +1009,19.829,285.943,381.234,246.282,550.978,284.820,386.608,101.806,91.790,101.806,326.574,302.352,337.554,19.874,17.679,19.874 +1010,19.850,285.943,381.234,246.282,550.978,284.820,386.608,101.806,91.790,101.806,326.574,302.352,337.554,19.874,17.679,19.874 +1011,19.869,285.590,381.479,246.148,552.049,284.165,388.336,101.744,94.332,101.744,322.043,305.322,336.049,19.732,17.737,19.732 +1012,19.892,286.836,374.902,245.527,552.665,284.341,386.636,102.002,96.152,102.002,316.948,307.102,340.941,19.416,17.634,19.416 +1013,19.914,286.836,374.902,245.527,552.665,284.341,386.636,102.002,96.152,102.002,316.948,307.102,340.941,19.416,17.634,19.416 +1014,19.934,287.905,373.290,244.897,552.486,285.200,385.798,102.206,97.496,102.206,317.289,306.672,342.884,19.534,17.559,19.534 +1015,19.954,288.964,372.636,244.104,552.516,285.894,386.222,102.731,98.616,102.731,314.973,307.371,342.830,19.776,17.138,19.776 +1016,19.975,288.964,372.636,244.104,552.516,285.894,386.222,102.731,98.616,102.731,314.973,307.371,342.830,19.776,17.138,19.776 +1017,19.996,290.593,372.954,243.248,555.363,286.986,388.149,103.352,99.162,103.352,314.356,312.350,345.589,19.403,17.484,19.403 +1018,20.018,292.422,373.472,242.705,554.446,288.564,388.777,104.146,99.367,104.146,312.141,310.709,343.707,19.417,17.648,19.417 +1019,20.040,292.422,373.472,242.705,554.446,288.564,388.777,104.146,99.367,104.146,312.141,310.709,343.707,19.417,17.648,19.417 +1020,20.062,293.957,376.407,241.822,555.380,290.371,389.679,105.124,99.287,105.124,317.761,312.516,345.257,19.386,17.621,19.386 +1021,20.084,293.957,376.407,241.822,555.380,290.371,389.679,105.124,99.287,105.124,317.761,312.516,345.257,19.386,17.621,19.386 +1022,20.103,294.608,382.587,240.913,553.064,292.668,389.304,106.113,98.746,106.113,329.397,308.524,343.380,19.897,17.639,19.897 +1023,20.127,296.493,384.249,238.862,553.745,294.425,390.871,107.342,97.496,107.342,330.190,310.116,344.065,20.450,17.820,20.450 +1024,20.148,296.493,384.249,238.862,553.745,294.425,390.871,107.342,97.496,107.342,330.190,310.116,344.065,20.450,17.820,20.450 +1025,20.169,298.185,386.026,236.698,551.020,296.673,390.450,108.858,95.711,108.858,333.323,305.974,342.673,21.123,17.712,21.123 +1026,20.194,300.122,387.674,233.772,549.099,298.923,390.876,110.528,93.180,110.528,335.205,304.641,342.044,22.352,17.639,22.352 +1027,20.216,300.122,387.674,233.772,549.099,298.923,390.876,110.528,93.180,110.528,335.205,304.641,342.044,22.352,17.639,22.352 +1028,20.236,304.649,389.963,230.500,547.500,303.516,392.529,113.806,90.000,113.806,336.905,303.000,342.516,22.362,17.000,22.362 +1029,20.258,307.455,391.497,226.664,552.523,304.965,396.572,116.131,86.009,116.131,337.687,318.319,348.994,22.902,17.075,22.902 +1030,20.281,307.455,391.497,226.664,552.523,304.965,396.572,116.131,86.009,116.131,337.687,318.319,348.994,22.902,17.075,22.902 +1031,20.301,310.074,392.724,222.989,550.502,307.355,397.719,118.560,80.961,118.560,337.675,318.944,349.050,22.280,17.238,22.280 +1032,20.325,314.029,395.406,219.101,547.842,311.518,399.513,121.441,76.278,121.441,339.890,319.869,349.516,24.411,16.696,24.411 +1033,20.347,314.029,395.406,219.101,547.842,311.518,399.513,121.441,76.278,121.441,339.890,319.869,349.516,24.411,16.696,24.411 +1034,20.368,317.471,396.980,214.900,544.200,314.733,400.979,124.405,71.565,124.405,339.461,319.074,349.153,24.187,16.760,24.187 +1035,20.390,321.186,399.643,210.985,540.340,318.403,403.257,127.608,66.038,127.608,339.180,319.225,348.302,24.558,16.753,24.558 +1036,20.413,321.186,399.643,210.985,540.340,318.403,403.257,127.608,66.038,127.608,339.180,319.225,348.302,24.558,16.753,24.558 +1037,20.434,325.099,402.653,206.488,535.901,322.308,405.873,130.925,61.049,130.925,339.707,318.289,348.230,24.729,16.365,24.729 +1038,20.456,329.145,405.651,202.105,530.732,326.028,408.818,134.542,55.826,134.542,338.744,318.135,347.632,24.086,16.394,24.086 +1039,20.479,329.145,405.651,202.105,530.732,326.028,408.818,134.542,55.826,134.542,338.744,318.135,347.632,24.086,16.394,24.086 +1040,20.499,333.587,409.852,197.835,525.175,330.361,412.714,138.419,50.641,138.419,338.914,317.813,347.539,24.377,15.924,24.377 +1041,20.521,337.599,414.890,193.610,519.437,334.421,417.327,142.524,45.513,142.524,339.743,316.822,347.752,24.522,15.944,24.522 +1042,20.544,337.599,414.890,193.610,519.437,334.421,417.327,142.524,45.513,142.524,339.743,316.822,347.752,24.522,15.944,24.522 +1043,20.564,341.667,420.307,189.108,513.102,338.208,422.575,146.762,40.258,146.762,340.381,317.275,348.654,24.174,15.721,24.174 +1044,20.586,345.597,426.347,185.109,506.183,341.677,428.484,151.405,34.782,151.405,340.385,317.117,349.315,24.089,15.729,24.089 +1045,20.611,345.597,426.347,185.109,506.183,341.677,428.484,151.405,34.782,151.405,340.385,317.117,349.315,24.089,15.729,24.089 +1046,20.633,348.962,432.272,180.933,498.459,344.353,434.332,155.924,29.419,155.924,340.630,317.147,350.727,24.127,15.482,24.127 +1047,20.657,352.946,439.218,177.448,490.493,346.795,441.328,161.075,24.000,161.075,339.270,317.397,352.276,23.892,15.101,23.892 +1048,20.681,352.946,439.218,177.448,490.493,346.795,441.328,161.075,24.000,161.075,339.270,317.397,352.276,23.892,15.101,23.892 +1049,20.702,355.857,445.457,174.444,481.696,348.215,447.352,166.070,18.612,166.070,338.109,316.874,353.857,23.309,15.105,23.309 +1050,20.727,360.315,453.758,173.135,471.921,349.882,455.214,172.057,13.146,172.057,333.651,318.479,354.720,23.655,15.731,23.655 +1051,20.750,360.315,453.758,173.135,471.921,349.882,455.214,172.057,13.146,172.057,333.651,318.479,354.720,23.655,15.731,23.655 +1052,20.771,374.518,463.760,171.065,462.536,349.548,463.867,179.754,7.939,179.754,307.010,316.792,356.952,20.390,14.317,20.390 +1053,20.796,427.468,482.381,171.535,452.105,349.454,475.732,4.871,2.268,4.871,201.972,315.545,358.565,19.271,14.177,19.271 +1054,20.820,378.187,492.137,173.280,440.888,347.482,485.478,12.236,176.520,12.236,296.552,315.815,359.390,22.136,13.556,22.136 +1055,20.843,378.187,492.137,173.280,440.888,347.482,485.478,12.236,176.520,12.236,296.552,315.815,359.390,22.136,13.556,22.136 +1056,20.867,362.911,501.399,176.275,429.618,344.659,494.593,20.450,170.770,20.450,321.988,315.314,360.946,26.696,13.745,26.696 +1057,20.891,352.553,512.335,181.646,418.204,339.954,505.594,28.151,164.725,28.151,333.047,314.073,361.624,29.692,15.471,29.692 +1058,20.916,352.553,512.335,181.646,418.204,339.954,505.594,28.151,164.725,28.151,333.047,314.073,361.624,29.692,15.471,29.692 +1059,20.938,339.546,518.936,189.083,407.674,334.344,515.205,35.643,158.484,35.643,348.616,312.729,361.419,27.523,16.540,27.523 +1060,20.963,333.382,530.584,198.368,397.330,326.977,524.419,43.907,152.447,43.907,343.807,311.731,361.587,27.990,17.192,27.990 +1061,20.987,323.057,539.185,209.519,389.038,318.230,532.928,52.352,146.143,52.352,344.855,310.349,360.660,26.378,17.292,26.378 +1062,21.011,323.057,539.185,209.519,389.038,318.230,532.928,52.352,146.143,52.352,344.855,310.349,360.660,26.378,17.292,26.378 +1063,21.032,311.562,546.071,221.982,380.892,308.061,539.737,61.068,139.554,61.068,346.849,309.908,361.324,24.303,18.252,24.303 +1064,21.056,299.232,551.462,235.645,375.083,296.942,545.180,69.972,133.423,69.972,348.234,309.336,361.607,21.910,17.781,21.910 +1065,21.081,299.232,551.462,235.645,375.083,296.942,545.180,69.972,133.423,69.972,348.234,309.336,361.607,21.910,17.781,21.910 +1066,21.103,287.396,555.428,249.849,371.366,286.202,548.860,79.695,127.216,79.695,348.916,309.611,362.268,25.670,17.459,25.670 +1067,21.129,273.921,558.066,264.770,370.041,273.759,550.545,88.768,120.466,88.768,346.264,310.094,361.310,27.187,16.681,27.187 +1068,21.154,256.959,560.558,279.186,371.041,258.231,550.546,97.245,114.513,97.245,341.245,310.600,361.430,27.163,16.632,27.163 +1069,21.179,256.959,560.558,279.186,371.041,258.231,550.546,97.245,114.513,97.245,341.245,310.600,361.430,27.163,16.632,27.163 +1070,21.202,235.570,584.018,292.752,374.383,245.627,548.907,105.983,109.424,105.983,288.460,309.743,361.506,22.980,16.484,22.980 +1071,21.228,225.620,558.005,305.472,379.099,232.140,543.555,114.286,104.687,114.286,328.420,310.527,360.126,22.165,16.768,22.165 +1072,21.253,219.934,545.255,318.124,385.520,223.951,539.166,123.415,99.305,123.415,345.630,310.721,360.220,26.492,18.031,26.492 +1073,21.278,219.934,545.255,318.124,385.520,223.951,539.166,123.415,99.305,123.415,345.630,310.721,360.220,26.492,18.031,26.492 +1074,21.301,210.093,536.110,329.648,394.457,213.812,531.955,131.827,92.899,131.827,348.262,309.869,359.415,26.998,18.230,26.998 +1075,21.328,201.640,526.573,340.638,403.845,205.852,523.065,140.217,86.634,140.217,348.770,309.230,359.732,27.950,21.257,27.950 +1076,21.353,201.640,526.573,340.638,403.845,205.852,523.065,140.217,86.634,140.217,348.770,309.230,359.732,27.950,21.257,27.950 +1077,21.377,193.676,515.623,348.759,414.435,198.274,512.773,148.204,80.159,148.204,348.613,310.295,359.432,26.505,21.696,26.505 +1078,21.403,187.756,504.536,354.978,425.186,192.896,502.234,155.872,73.644,155.872,347.570,311.170,358.835,25.668,21.589,25.668 +1079,21.430,183.177,493.244,359.843,436.367,188.925,491.510,163.210,66.975,163.210,347.113,312.498,359.121,25.164,21.329,25.164 +1080,21.456,180.007,482.041,362.682,447.557,186.537,480.925,170.300,60.719,170.300,345.249,313.863,358.497,24.280,20.501,24.280 +1081,21.482,180.007,482.041,362.682,447.557,186.537,480.925,170.300,60.719,170.300,345.249,313.863,358.497,24.280,20.501,24.280 +1082,21.504,178.386,470.420,364.471,458.388,185.726,470.017,176.857,52.927,176.857,343.526,314.803,358.228,22.636,17.269,22.636 +1083,21.532,178.538,460.256,364.533,469.141,186.108,460.646,2.953,46.685,2.953,342.093,316.294,357.251,22.434,15.425,22.434 +1084,21.556,178.476,451.453,364.146,479.243,187.458,452.858,8.888,40.495,8.888,339.105,317.266,357.287,24.484,14.056,24.484 +1085,21.582,178.476,451.453,364.146,479.243,187.458,452.858,8.888,40.495,8.888,339.105,317.266,357.287,24.484,14.056,24.484 +1086,21.605,173.456,438.674,362.667,488.074,189.938,443.411,16.037,34.496,16.037,322.391,318.441,356.690,26.093,13.990,26.093 +1087,21.633,151.045,423.545,360.317,496.122,191.559,439.376,21.343,28.274,21.343,268.682,319.002,355.675,20.440,13.235,20.440 +1088,21.659,123.337,397.882,357.720,503.749,195.151,432.352,25.641,22.350,25.641,195.594,319.015,354.911,18.319,13.251,18.319 +1089,21.685,123.337,397.882,357.720,503.749,195.151,432.352,25.641,22.350,25.641,195.594,319.015,354.911,18.319,13.251,18.319 +1090,21.708,186.725,418.414,353.861,509.114,198.699,424.980,28.740,16.610,28.740,325.693,320.303,353.006,22.486,14.546,22.486 +1091,21.735,195.952,414.954,350.080,514.981,202.294,419.526,35.789,10.879,35.789,335.770,319.454,351.407,29.108,14.986,29.108 +1092,21.761,200.947,411.160,345.232,520.482,205.454,414.934,39.944,5.262,39.944,338.102,319.595,349.859,29.402,14.124,29.402 +1093,21.786,200.947,411.160,345.232,520.482,205.454,414.934,39.944,5.262,39.944,338.102,319.595,349.859,29.402,14.124,29.402 +1094,21.810,205.298,407.188,340.482,525.256,209.052,410.781,43.741,179.634,43.741,337.814,319.045,348.206,28.744,13.514,28.744 +1095,21.835,209.432,403.915,335.333,529.376,212.271,406.981,47.191,174.144,47.191,338.484,319.223,346.840,28.132,13.723,28.132 +1096,21.861,212.508,400.823,330.346,532.731,214.886,403.688,50.307,168.690,50.307,338.626,318.885,346.073,25.431,14.120,25.431 +1097,21.885,216.680,397.602,325.595,535.987,218.699,400.312,53.303,163.283,53.303,338.569,319.148,345.328,26.119,14.340,26.119 +1098,21.910,216.680,397.602,325.595,535.987,218.699,400.312,53.303,163.283,53.303,338.569,319.148,345.328,26.119,14.340,26.119 +1099,21.935,219.785,394.480,321.044,538.904,221.852,397.559,56.124,157.960,56.124,337.864,318.848,345.281,25.332,14.071,25.332 +1100,21.961,222.708,392.372,316.541,541.664,224.712,395.642,58.502,152.775,58.502,337.299,318.925,344.968,23.072,14.434,23.072 +1101,21.986,222.708,392.372,316.541,541.664,224.712,395.642,58.502,152.775,58.502,337.299,318.925,344.968,23.072,14.434,23.072 +1102,22.010,225.802,390.002,312.378,543.946,227.766,393.546,61.017,147.585,61.017,337.024,318.979,345.127,23.271,14.412,23.271 +1103,22.036,228.854,388.542,308.347,546.340,230.786,392.324,62.933,142.577,62.933,336.386,319.004,344.880,21.743,14.832,21.743 +1104,22.061,232.123,387.322,304.713,548.506,233.868,391.090,65.148,137.478,65.148,336.922,319.803,345.226,22.609,14.692,22.609 +1105,22.087,232.123,387.322,304.713,548.506,233.868,391.090,65.148,137.478,65.148,336.922,319.803,345.226,22.609,14.692,22.609 +1106,22.110,234.318,386.520,301.385,550.559,236.081,390.693,67.090,132.548,67.090,336.296,319.985,345.355,21.345,15.097,21.345 +1107,22.136,236.507,385.724,298.334,552.715,238.358,390.510,68.857,127.648,68.857,335.574,319.971,345.838,20.684,15.112,20.684 +1108,22.161,239.047,385.098,296.255,554.522,240.940,390.442,70.487,122.661,70.487,334.927,320.130,346.266,20.531,15.629,20.531 +1109,22.186,239.047,385.098,296.255,554.522,240.940,390.442,70.487,122.661,70.487,334.927,320.130,346.266,20.531,15.629,20.531 +1110,22.209,241.651,384.961,294.537,556.230,243.525,390.705,71.928,117.759,71.928,334.284,319.409,346.367,20.574,15.882,20.574 +1111,22.234,243.392,384.080,292.897,557.741,245.359,390.596,73.202,113.199,73.202,333.891,319.469,347.503,20.104,16.151,20.104 +1112,22.260,245.322,384.160,291.422,558.781,247.200,390.921,74.476,109.093,74.476,333.110,319.442,347.143,19.806,16.356,19.806 +1113,22.285,245.322,384.160,291.422,558.781,247.200,390.921,74.476,109.093,74.476,333.110,319.442,347.143,19.806,16.356,19.806 +1114,22.309,246.620,383.295,290.308,559.538,248.687,391.217,75.379,105.255,75.379,330.378,319.775,346.753,19.226,17.015,19.226 +1115,22.336,248.365,384.163,289.475,559.995,250.440,392.571,76.139,101.889,76.139,326.480,319.522,343.800,19.241,17.305,19.241 +1116,22.362,248.867,381.714,288.735,560.039,250.841,390.176,76.866,99.401,76.866,330.684,319.093,348.061,19.542,17.706,19.542 +1117,22.388,248.889,380.843,287.833,559.612,250.879,389.587,77.181,97.640,77.181,330.037,318.319,347.972,18.900,17.429,18.900 +1118,22.414,248.889,380.843,287.833,559.612,250.879,389.587,77.181,97.640,77.181,330.037,318.319,347.972,18.900,17.429,18.900 +1119,22.436,249.053,380.988,287.520,558.328,250.770,388.717,77.471,96.633,77.471,331.253,315.987,347.088,18.981,17.325,18.981 +1120,22.464,249.088,380.647,287.610,556.012,250.669,387.759,77.471,96.340,77.471,329.951,312.632,344.521,19.198,17.559,19.198 +1121,22.489,248.448,380.328,287.507,557.940,250.276,388.351,77.164,96.953,77.164,330.788,317.017,347.245,19.488,17.553,19.488 +1122,22.515,248.448,380.328,287.507,557.940,250.276,388.351,77.164,96.953,77.164,330.788,317.017,347.245,19.488,17.553,19.488 +1123,22.538,247.256,380.087,287.763,558.966,249.351,388.990,76.759,98.289,76.759,330.217,319.907,348.510,19.125,17.478,19.125 +1124,22.566,246.156,380.590,288.549,558.326,248.161,388.691,76.103,100.389,76.103,332.049,319.229,348.739,19.274,17.492,19.274 +1125,22.590,245.050,381.827,289.907,557.978,247.000,389.213,75.209,103.151,75.209,332.976,319.616,348.254,19.131,17.628,19.131 +1126,22.618,245.050,381.827,289.907,557.978,247.000,389.213,75.209,103.151,75.209,332.976,319.616,348.254,19.131,17.628,19.131 +1127,22.641,243.923,382.670,291.321,557.596,245.815,389.328,74.141,106.699,74.141,334.754,319.722,348.598,19.971,17.049,19.971 +1128,22.669,242.704,384.132,293.153,556.869,244.628,390.419,72.985,110.735,72.985,333.578,319.413,346.728,20.875,16.827,20.875 +1129,22.695,240.850,384.550,295.596,556.084,242.892,390.677,71.565,114.717,71.565,334.253,318.972,347.170,20.871,16.034,20.871 +1130,22.721,238.984,386.091,298.203,555.335,240.960,391.487,69.891,119.055,69.891,335.587,319.359,347.081,20.946,15.832,20.946 +1131,22.747,238.984,386.091,298.203,555.335,240.960,391.487,69.891,119.055,69.891,335.587,319.359,347.081,20.946,15.832,20.946 +1132,22.770,236.871,387.148,300.928,553.616,238.873,392.142,68.151,123.857,68.151,335.180,318.959,345.940,21.388,15.536,21.388 +1133,22.798,234.561,388.876,304.475,552.084,236.490,393.273,66.314,128.367,66.314,335.885,318.127,345.488,21.741,15.224,21.741 +1134,22.823,231.789,389.865,307.064,549.608,233.791,393.930,63.768,133.603,63.768,335.002,317.690,344.064,20.852,14.931,20.852 +1135,22.849,231.789,389.865,307.064,549.608,233.791,393.930,63.768,133.603,63.768,335.002,317.690,344.064,20.852,14.931,20.852 +1136,22.873,229.015,391.384,310.990,547.430,231.007,395.100,61.805,138.180,61.805,335.656,317.983,344.090,21.888,14.591,21.888 +1137,22.900,225.576,392.542,314.620,544.660,227.674,396.116,59.593,143.130,59.593,335.948,317.800,344.237,23.039,14.600,23.039 +1138,22.925,222.012,394.347,318.179,541.369,224.012,397.443,57.137,148.201,57.137,336.612,317.677,343.984,24.277,13.972,24.277 +1139,22.952,222.012,394.347,318.179,541.369,224.012,397.443,57.137,148.201,57.137,336.612,317.677,343.984,24.277,13.972,24.277 +1140,22.975,218.040,396.115,322.136,537.821,220.080,398.976,54.513,153.020,54.513,337.571,317.983,344.600,25.551,13.384,25.551 +1141,23.002,214.106,398.416,326.328,534.078,216.138,400.968,51.473,158.139,51.473,339.016,317.725,345.540,25.713,13.204,25.713 +1142,23.029,209.361,401.464,330.973,529.757,211.725,404.112,48.240,163.166,48.240,339.189,318.284,346.288,24.962,13.439,24.962 +1143,23.054,205.250,404.750,335.580,525.464,208.011,407.511,45.000,168.354,45.000,339.411,318.295,347.221,26.163,13.390,26.163 +1144,23.080,205.250,404.750,335.580,525.464,208.011,407.511,45.000,168.354,45.000,339.411,318.295,347.221,26.163,13.390,26.163 +1145,23.103,201.695,408.776,340.365,520.801,204.623,411.317,40.959,173.593,40.959,340.802,318.591,348.557,25.178,13.344,25.178 +1146,23.131,196.820,412.738,344.993,516.487,201.400,416.212,37.179,179.246,37.179,338.513,318.130,350.010,26.320,13.209,26.320 +1147,23.155,192.678,417.498,350.105,511.148,198.678,421.380,32.905,4.433,32.905,337.507,318.981,351.800,27.064,12.706,27.064 +1148,23.182,192.678,417.498,350.105,511.148,198.678,421.380,32.905,4.433,32.905,337.507,318.981,351.800,27.064,12.706,27.064 +1149,23.205,187.465,422.511,354.581,505.513,196.321,427.199,27.897,9.462,27.897,332.980,319.263,353.021,25.318,12.001,25.318 +1150,23.231,171.759,425.123,359.148,499.081,194.069,433.763,21.168,15.005,21.168,307.205,318.539,355.055,20.706,12.248,20.706 +1151,23.256,118.434,419.910,362.514,492.130,191.753,442.077,16.821,20.556,16.821,202.684,318.703,355.877,18.632,12.055,18.632 +1152,23.282,118.434,419.910,362.514,492.130,191.753,442.077,16.821,20.556,16.821,202.684,318.703,355.877,18.632,12.055,18.632 +1153,23.306,160.121,442.864,365.024,483.951,190.134,449.414,12.312,26.068,12.312,295.023,318.466,356.463,25.278,12.285,25.278 +1154,23.334,179.228,458.747,366.764,475.478,188.775,459.537,4.726,32.005,4.726,338.236,317.681,357.395,25.245,13.992,25.245 +1155,23.360,177.929,468.326,366.702,465.584,187.828,468.135,178.894,37.465,178.894,337.976,317.416,357.778,22.976,14.940,22.976 +1156,23.386,177.929,468.326,366.702,465.584,187.828,468.135,178.894,37.465,178.894,337.976,317.416,357.778,22.976,14.940,22.976 +1157,23.408,178.200,479.270,365.261,455.255,187.548,478.013,172.346,43.191,172.346,339.458,316.343,358.321,24.570,15.162,24.570 +1158,23.435,181.541,490.191,362.644,443.940,188.911,488.321,165.763,48.991,165.763,343.416,315.524,358.623,25.172,16.667,25.172 +1159,23.462,185.601,500.339,358.462,432.192,191.419,498.082,158.806,56.310,158.806,346.648,313.683,359.130,25.079,19.415,25.079 +1160,23.487,190.531,511.334,353.083,420.161,196.010,508.374,151.626,62.592,151.626,347.792,312.720,360.248,25.248,21.438,25.248 +1161,23.512,190.531,511.334,353.083,420.161,196.010,508.374,151.626,62.592,151.626,347.792,312.720,360.248,25.248,21.438,25.248 +1162,23.536,197.390,521.283,345.431,408.946,201.852,518.034,143.944,68.839,143.944,349.525,311.688,360.563,26.212,21.419,26.212 +1163,23.561,205.678,530.339,336.401,398.329,209.533,526.600,135.875,75.107,135.875,350.009,311.059,360.749,26.171,21.292,26.171 +1164,23.586,205.678,530.339,336.401,398.329,209.533,526.600,135.875,75.107,135.875,350.009,311.059,360.749,26.171,21.292,26.171 +1165,23.608,214.564,537.869,325.833,388.707,217.871,533.592,127.709,80.910,127.709,350.501,311.004,361.315,24.913,20.223,24.913 +1166,23.634,225.245,545.667,313.420,381.137,228.175,540.454,119.345,86.964,119.345,349.340,310.412,361.301,24.765,17.892,24.765 +1167,23.660,236.762,553.492,300.330,375.515,239.705,545.719,110.732,92.643,110.732,344.665,309.778,361.287,24.150,16.813,24.150 +1168,23.685,236.762,553.492,300.330,375.515,239.705,545.719,110.732,92.643,110.732,344.665,309.778,361.287,24.150,16.813,24.150 +1169,23.708,246.364,578.143,287.237,371.900,252.756,549.484,102.574,97.496,102.574,302.939,310.325,361.664,25.707,16.359,25.707 +1170,23.735,263.307,567.701,273.962,370.597,264.514,550.801,94.086,101.868,94.086,326.953,309.579,360.838,26.361,16.580,26.361 +1171,23.760,273.733,560.314,259.887,371.465,272.791,551.325,84.019,106.949,84.019,342.374,308.842,360.450,28.710,16.781,28.710 +1172,23.785,273.733,560.314,259.887,371.465,272.791,551.325,84.019,106.949,84.019,342.374,308.842,360.450,28.710,16.781,28.710 +1173,23.807,289.118,556.471,246.189,373.749,287.476,549.904,75.964,112.521,75.964,348.281,309.994,361.818,24.254,17.055,24.254 +1174,23.833,303.170,550.841,232.353,378.017,300.865,545.226,67.678,118.768,67.678,349.262,310.928,361.400,21.773,18.064,21.773 +1175,23.857,314.413,544.748,219.480,385.069,311.633,540.099,59.119,124.778,59.119,349.865,310.592,360.700,24.477,18.207,24.477 +1176,23.883,314.413,544.748,219.480,385.069,311.633,540.099,59.119,124.778,59.119,349.865,310.592,360.700,24.477,18.207,24.477 +1177,23.905,324.815,537.556,207.934,393.516,321.261,533.128,51.248,130.503,51.248,348.272,311.072,359.629,26.905,17.489,26.905 +1178,23.931,333.922,530.111,197.124,402.653,328.982,525.440,43.400,136.292,43.400,346.742,312.153,360.340,29.632,17.955,29.632 +1179,23.957,340.827,520.543,187.808,412.251,335.008,516.378,35.591,142.341,35.591,346.293,313.748,360.606,31.603,17.494,31.603 +1180,23.982,340.827,520.543,187.808,412.251,335.008,516.378,35.591,142.341,35.591,346.293,313.748,360.606,31.603,17.494,31.603 +1181,24.004,346.365,509.253,180.576,422.123,340.258,505.988,28.127,148.104,28.127,346.872,315.038,360.721,29.225,15.874,29.225 +1182,24.031,355.836,500.444,175.127,431.755,343.782,495.995,20.259,153.644,20.259,335.233,316.204,360.931,26.715,15.754,26.715 +1183,24.055,363.523,488.400,171.188,441.881,346.653,484.202,13.974,159.034,13.974,326.217,317.630,360.984,25.468,14.976,25.468 +1184,24.080,363.523,488.400,171.188,441.881,346.653,484.202,13.974,159.034,13.974,326.217,317.630,360.984,25.468,14.976,25.468 +1185,24.103,373.501,476.237,169.329,451.876,347.865,473.538,6.009,164.715,6.009,308.087,318.548,359.644,23.188,13.307,23.188 +1186,24.127,395.487,466.117,169.264,461.157,348.647,466.302,179.774,170.025,179.774,265.041,317.796,358.722,18.790,12.635,18.790 +1187,24.153,427.974,448.723,169.368,469.512,347.970,456.282,174.602,174.920,174.602,197.389,316.242,358.109,18.430,14.498,18.430 +1188,24.178,427.974,448.723,169.368,469.512,347.970,456.282,174.602,174.920,174.602,197.389,316.242,358.109,18.430,14.498,18.430 +1189,24.201,365.068,445.000,171.494,478.751,347.222,448.381,169.274,179.547,169.274,320.291,317.045,356.619,18.551,13.960,18.551 +1190,24.226,356.054,439.385,175.044,486.926,346.573,442.338,162.699,4.399,162.699,334.197,317.600,354.057,23.399,15.186,23.399 +1191,24.251,356.054,439.385,175.044,486.926,346.573,442.338,162.699,4.399,162.699,334.197,317.600,354.057,23.399,15.186,23.399 +1192,24.273,351.290,433.136,177.905,494.559,344.461,435.946,157.632,9.644,157.632,337.890,316.637,352.660,24.698,13.338,24.698 +1193,24.299,348.400,428.800,182.013,501.513,343.103,431.449,153.435,14.482,153.435,338.988,317.001,350.833,24.150,13.824,24.150 +1194,24.325,344.990,424.247,186.284,508.239,340.822,426.691,149.621,19.130,149.621,339.457,316.320,349.119,23.204,14.252,23.204 +1195,24.349,344.990,424.247,186.284,508.239,340.822,426.691,149.621,19.130,149.621,339.457,316.320,349.119,23.204,14.252,23.204 +1196,24.372,341.925,420.341,190.278,514.583,338.325,422.780,145.886,23.661,145.886,339.420,316.590,348.116,23.556,14.788,23.556 +1197,24.398,338.767,416.432,194.441,519.885,335.604,418.878,142.289,28.234,142.289,338.919,316.424,346.917,24.214,15.025,24.214 +1198,24.423,335.459,412.394,198.462,524.734,332.502,414.972,138.918,32.829,138.918,338.483,316.765,346.328,24.198,15.152,24.198 +1199,24.448,335.459,412.394,198.462,524.734,332.502,414.972,138.918,32.829,138.918,338.483,316.765,346.328,24.198,15.152,24.198 +1200,24.470,331.989,409.046,202.461,529.088,329.307,411.652,135.818,37.397,135.818,338.144,316.809,345.622,24.130,14.858,24.130 +1201,24.496,328.796,405.633,205.810,532.876,326.110,408.523,132.901,41.968,132.901,338.081,317.238,345.971,24.225,14.888,24.225 +1202,24.520,325.871,402.940,208.778,535.820,323.267,406.005,130.354,46.248,130.354,338.072,317.585,346.117,25.148,15.128,25.148 +1203,24.545,325.871,402.940,208.778,535.820,323.267,406.005,130.354,46.248,130.354,338.072,317.585,346.117,25.148,15.128,25.148 +1204,24.568,322.515,400.623,211.986,538.780,320.143,403.673,127.875,50.631,127.875,338.369,317.674,346.098,25.084,15.204,25.084 +1205,24.593,319.409,398.077,214.942,540.771,317.388,400.900,125.608,54.689,125.608,339.786,318.283,346.731,24.391,15.742,24.391 +1206,24.618,319.409,398.077,214.942,540.771,317.388,400.900,125.608,54.689,125.608,339.786,318.283,346.731,24.391,15.742,24.391 +1207,24.640,316.907,395.776,217.525,543.080,314.674,399.144,123.541,58.903,123.541,339.211,318.649,347.295,24.227,16.202,24.227 +1208,24.666,314.840,394.401,219.639,545.177,312.517,398.143,121.842,63.184,121.842,339.005,318.450,347.814,24.636,16.417,24.636 +1209,24.692,311.905,392.576,221.689,546.921,309.576,396.595,120.090,67.329,120.090,338.973,318.693,348.263,22.537,16.749,22.537 +1210,24.718,311.905,392.576,221.689,546.921,309.576,396.595,120.090,67.329,120.090,338.973,318.693,348.263,22.537,16.749,22.537 +1211,24.740,310.268,391.510,223.920,548.515,307.857,395.929,118.610,71.147,118.610,338.229,319.081,348.297,22.346,16.965,22.346 +1212,24.766,308.765,390.852,225.908,550.161,306.362,395.533,117.181,74.836,117.181,338.084,319.150,348.607,22.720,17.130,22.720 +1213,24.791,307.765,390.643,227.169,551.772,305.257,395.718,116.295,78.440,116.295,337.674,319.320,348.997,22.888,16.856,22.888 +1214,24.815,307.765,390.643,227.169,551.772,305.257,395.718,116.295,78.440,116.295,337.674,319.320,348.997,22.888,16.856,22.888 +1215,24.839,306.544,391.074,228.090,552.630,304.354,395.698,115.346,81.870,115.346,338.711,318.905,348.946,23.402,17.253,23.402 +1216,24.867,304.763,390.762,229.057,553.591,302.680,395.364,114.341,84.472,114.341,338.910,318.994,349.014,22.713,17.210,22.713 +1217,24.891,304.686,391.406,229.390,553.698,302.801,395.575,114.331,86.855,114.331,339.497,317.620,348.649,23.104,17.512,23.104 +1218,24.917,304.686,391.406,229.390,553.698,302.801,395.575,114.331,86.855,114.331,339.497,317.620,348.649,23.104,17.512,23.104 +1219,24.939,304.433,390.526,229.203,547.906,303.271,393.139,113.962,88.315,113.962,337.298,304.280,343.018,22.744,17.287,22.744 +1220,24.965,304.061,390.906,228.931,547.961,303.038,393.186,114.161,89.341,114.161,338.099,304.083,343.097,22.307,17.286,22.307 +1221,24.990,304.344,390.302,228.500,547.000,303.269,392.685,114.274,90.000,114.274,337.591,304.000,342.819,21.932,17.000,21.932 +1222,25.015,304.344,390.302,228.500,547.000,303.269,392.685,114.274,90.000,114.274,337.591,304.000,342.819,21.932,17.000,21.932 +1223,25.037,305.557,390.856,227.500,546.000,304.613,392.872,115.084,90.000,115.084,338.304,304.000,342.756,22.584,17.000,22.584 +1224,25.063,306.623,390.852,226.026,551.517,304.310,395.643,115.769,89.007,115.769,338.173,315.299,348.812,22.607,17.558,22.607 +1225,25.089,307.788,391.868,224.703,551.468,305.409,396.519,117.096,87.397,117.096,338.957,317.763,349.405,22.277,17.164,22.277 +1226,25.113,307.788,391.868,224.703,551.468,305.409,396.519,117.096,87.397,117.096,338.957,317.763,349.405,22.277,17.164,22.277 +1227,25.135,309.760,392.559,222.873,550.196,307.318,397.075,118.408,85.732,118.408,339.447,318.830,349.714,22.393,17.399,22.393 +1228,25.159,312.494,393.130,221.029,547.997,309.948,397.538,120.010,83.290,120.010,339.343,318.743,349.522,23.380,17.117,23.380 +1229,25.184,312.494,393.130,221.029,547.997,309.948,397.538,120.010,83.290,120.010,339.343,318.743,349.522,23.380,17.117,23.380 +1230,25.206,314.812,394.261,218.688,546.458,312.066,398.678,121.872,80.352,121.872,339.209,318.776,349.610,23.479,17.075,23.479 +1231,25.232,317.500,396.500,215.719,544.342,314.839,400.491,123.690,77.638,123.690,339.754,318.775,349.347,25.239,16.914,25.239 +1232,25.255,320.674,398.262,213.064,542.065,317.744,402.280,126.098,74.445,126.098,339.296,318.549,349.242,25.200,16.934,25.200 +1233,25.280,320.674,398.262,213.064,542.065,317.744,402.280,126.098,74.445,126.098,339.296,318.549,349.242,25.200,16.934,25.200 +1234,25.303,323.466,400.973,209.974,539.349,320.655,404.503,128.530,71.211,128.530,339.843,318.798,348.867,25.670,16.709,25.670 +1235,25.329,326.252,403.656,206.873,536.756,323.316,407.019,131.124,67.775,131.124,339.698,318.512,348.625,25.241,17.091,25.241 +1236,25.355,329.222,407.180,203.526,533.509,326.310,410.197,133.995,64.440,133.995,339.607,318.846,347.993,25.427,16.670,25.427 +1237,25.380,329.222,407.180,203.526,533.509,326.310,410.197,133.995,64.440,133.995,339.607,318.846,347.993,25.427,16.670,25.427 +1238,25.403,333.153,410.664,199.981,529.856,329.775,413.808,137.056,61.128,137.056,338.917,317.894,348.146,26.215,16.573,26.215 +1239,25.429,336.864,414.544,196.688,525.105,333.389,417.419,140.389,57.479,140.389,338.920,317.675,347.941,26.167,16.847,26.167 +1240,25.452,336.864,414.544,196.688,525.105,333.389,417.419,140.389,57.479,140.389,338.920,317.675,347.941,26.167,16.847,26.167 +1241,25.474,339.955,418.879,192.853,520.021,336.512,421.380,144.002,54.103,144.002,339.892,317.022,348.403,25.350,16.757,25.350 +1242,25.500,343.195,423.293,189.965,514.044,339.803,425.422,147.883,50.364,147.883,340.037,316.259,348.046,24.140,16.391,24.140 +1243,25.525,346.726,428.698,186.291,507.324,343.006,430.671,152.063,46.903,152.063,340.307,316.302,348.728,24.670,15.877,24.670 +1244,25.551,346.726,428.698,186.291,507.324,343.006,430.671,152.063,46.903,152.063,340.307,316.302,348.728,24.670,15.877,24.670 +1245,25.573,349.275,433.399,182.693,499.733,345.342,435.129,156.251,43.288,156.251,341.193,316.253,349.787,23.725,16.203,23.725 +1246,25.600,352.410,439.127,179.718,491.418,347.737,440.745,160.907,39.534,160.907,340.813,316.128,350.702,23.843,16.220,23.843 +1247,25.625,354.338,444.773,176.853,482.635,349.260,446.074,165.635,35.972,165.635,341.692,316.214,352.176,22.482,15.559,22.482 +1248,25.649,354.338,444.773,176.853,482.635,349.260,446.074,165.635,35.972,165.635,341.692,316.214,352.176,22.482,15.559,22.482 +1249,25.671,356.452,452.412,174.451,472.999,350.250,453.376,171.168,32.358,171.168,340.901,315.990,353.455,22.487,14.902,22.487 +1250,25.697,359.131,460.068,173.318,462.916,350.840,460.492,177.071,28.551,177.071,338.223,316.517,354.828,22.919,14.816,22.919 +1251,25.722,360.969,469.047,173.374,452.693,350.736,468.470,3.229,24.837,3.229,335.441,317.362,355.939,24.356,14.126,24.356 +1252,25.746,360.969,469.047,173.374,452.693,350.736,468.470,3.229,24.837,3.229,335.441,317.362,355.939,24.356,14.126,24.356 +1253,25.769,367.361,482.651,173.655,442.097,348.912,479.422,9.926,21.058,9.926,320.677,316.620,358.135,19.971,13.754,19.971 +1254,25.794,422.651,512.486,175.919,431.514,346.211,490.003,16.390,17.103,16.390,200.395,316.583,359.751,19.413,13.675,19.413 +1255,25.818,422.651,512.486,175.919,431.514,346.211,490.003,16.390,17.103,16.390,200.395,316.583,359.751,19.413,13.675,19.413 +1256,25.841,379.538,516.409,179.871,420.883,341.963,500.641,22.765,12.923,22.765,279.157,315.997,360.656,21.315,14.023,21.315 +1257,25.866,357.187,520.911,185.583,410.952,337.743,508.636,32.265,8.616,32.265,315.636,315.131,361.625,24.966,14.771,24.966 +1258,25.890,343.144,529.226,193.146,401.634,330.799,518.949,39.777,4.488,39.777,329.571,313.469,361.698,27.153,14.886,27.153 +1259,25.915,343.144,529.226,193.146,401.634,330.799,518.949,39.777,4.488,39.777,329.571,313.469,361.698,27.153,14.886,27.153 +1260,25.938,331.996,537.739,203.000,392.500,323.197,528.024,47.831,0.000,47.831,336.060,312.000,362.274,26.461,15.000,26.461 +1261,25.964,320.808,546.118,213.861,385.691,314.133,536.221,55.999,175.621,55.999,337.857,311.004,361.732,25.954,15.621,25.954 +1262,25.988,308.818,552.392,226.578,379.002,304.125,542.579,64.440,171.152,64.440,340.301,310.268,362.054,23.887,16.168,23.887 +1263,26.013,308.818,552.392,226.578,379.002,304.125,542.579,64.440,171.152,64.440,340.301,310.268,362.054,23.887,16.168,23.887 +1264,26.035,297.245,557.483,240.237,373.903,294.141,547.001,73.505,166.504,73.505,340.693,309.491,362.558,23.720,18.903,23.720 +1265,26.062,284.199,560.974,255.190,371.061,282.830,550.308,82.684,161.723,82.684,341.106,309.597,362.614,26.807,18.582,26.807 +1266,26.087,266.000,561.500,269.977,370.277,266.000,551.138,90.000,156.869,90.000,341.000,309.622,361.723,28.000,17.830,28.000 +1267,26.113,266.000,561.500,269.977,370.277,266.000,551.138,90.000,156.869,90.000,341.000,309.622,361.723,28.000,17.830,28.000 +1268,26.135,252.401,560.341,284.966,371.547,254.043,550.123,99.130,152.103,99.130,341.740,310.002,362.439,27.451,16.844,27.451 +1269,26.159,240.528,558.499,298.862,375.060,244.223,547.640,108.795,147.095,108.795,339.021,310.443,361.963,24.025,16.149,24.025 +1270,26.186,240.528,558.499,298.862,375.060,244.223,547.640,108.795,147.095,108.795,339.021,310.443,361.963,24.025,16.149,24.025 +1271,26.207,225.805,554.640,311.508,380.219,232.166,542.359,117.382,142.253,117.382,333.268,311.367,360.929,23.820,15.917,23.820 +1272,26.232,208.710,553.286,322.520,386.523,221.395,536.071,126.384,138.403,126.384,317.997,312.005,360.765,23.092,16.033,23.092 +1273,26.256,154.824,585.187,331.791,393.793,209.814,526.760,133.264,135.170,133.264,200.384,312.565,360.852,20.218,15.837,20.218 +1274,26.281,154.824,585.187,331.791,393.793,209.814,526.760,133.264,135.170,133.264,200.384,312.565,360.852,20.218,15.837,20.218 +1275,26.304,186.445,530.912,339.690,402.570,201.889,518.459,141.121,131.955,141.121,320.354,313.152,360.032,19.581,16.195,19.581 +1276,26.330,188.634,516.434,346.369,412.190,196.607,511.551,148.517,128.445,148.517,340.515,314.050,359.214,25.108,17.584,25.108 +1277,26.354,188.634,516.434,346.369,412.190,196.607,511.551,148.517,128.445,148.517,340.515,314.050,359.214,25.108,17.584,25.108 +1278,26.376,185.270,504.724,351.405,422.756,190.878,502.185,155.645,124.193,155.645,345.680,313.703,357.993,25.354,18.601,25.354 +1279,26.403,181.956,494.254,355.755,433.642,187.076,492.653,162.633,119.055,162.633,346.478,313.143,357.207,24.991,18.454,24.991 +1280,26.427,180.441,483.861,358.806,444.696,184.916,482.995,169.039,113.694,169.039,346.886,313.730,356.001,25.778,18.492,25.778 +1281,26.452,180.441,483.861,358.806,444.696,184.916,482.995,169.039,113.694,169.039,346.886,313.730,356.001,25.778,18.492,25.778 +1282,26.474,179.303,473.232,360.322,455.952,183.734,472.873,175.365,108.083,175.365,345.865,313.991,354.756,23.356,18.430,23.356 +1283,26.499,179.952,463.558,360.726,466.460,184.318,463.627,0.902,102.288,0.902,344.131,314.226,352.863,24.107,18.565,24.107 +1284,26.523,181.291,455.795,361.073,476.889,185.933,456.336,6.658,96.843,6.658,343.338,314.782,352.685,25.527,18.944,25.527 +1285,26.548,181.291,455.795,361.073,476.889,185.933,456.336,6.658,96.843,6.658,343.338,314.782,352.685,25.527,18.944,25.527 +1286,26.571,183.638,445.440,360.348,486.972,188.622,446.670,13.867,90.971,13.867,342.492,314.192,352.760,27.172,17.438,27.172 +1287,26.597,186.277,439.235,358.728,495.644,191.184,440.891,18.647,85.365,18.647,342.151,316.313,352.510,24.967,18.264,24.967 +1288,26.622,189.673,432.600,357.526,503.171,194.753,434.853,23.918,80.042,23.918,341.872,317.156,352.986,29.046,18.030,29.046 +1289,26.646,189.673,432.600,357.526,503.171,194.753,434.853,23.918,80.042,23.918,341.872,317.156,352.986,29.046,18.030,29.046 +1290,26.670,192.699,425.786,355.350,509.901,198.309,428.751,27.862,74.157,27.862,340.831,318.400,353.522,27.975,17.420,27.975 +1291,26.694,195.250,420.583,352.323,515.571,200.988,424.156,31.912,67.996,31.912,340.055,318.847,353.573,27.580,16.124,27.580 +1292,26.719,195.250,420.583,352.323,515.571,200.988,424.156,31.912,67.996,31.912,340.055,318.847,353.573,27.580,16.124,27.580 +1293,26.741,196.403,415.279,348.711,520.648,203.333,420.275,35.789,62.819,35.789,336.167,319.403,353.252,27.486,15.483,27.486 +1294,26.766,196.504,407.898,345.951,524.892,206.497,415.932,38.800,57.381,38.800,328.270,320.366,353.913,26.513,14.656,26.513 +1295,26.790,190.206,397.479,342.497,527.829,207.705,413.413,42.319,51.953,42.319,306.062,320.480,353.395,24.942,14.346,24.942 +1296,26.815,190.206,397.479,342.497,527.829,207.705,413.413,42.319,51.953,42.319,306.062,320.480,353.395,24.942,14.346,24.942 +1297,26.837,169.158,371.706,339.247,530.875,209.729,410.828,43.958,46.591,43.958,240.402,321.178,353.123,18.125,14.431,18.125 +1298,26.863,184.502,377.968,336.069,533.232,212.808,406.848,45.575,41.587,45.575,272.201,321.140,353.078,19.964,14.282,19.964 +1299,26.887,205.524,394.328,333.343,534.825,214.853,404.699,48.030,36.431,48.030,324.075,321.600,351.975,20.527,15.095,20.527 +1300,26.911,205.524,394.328,333.343,534.825,214.853,404.699,48.030,36.431,48.030,324.075,321.600,351.975,20.527,15.095,20.527 +1301,26.935,211.767,394.857,331.147,536.192,217.625,402.339,51.937,31.571,51.937,331.749,321.075,350.753,23.495,15.872,23.495 +1302,26.960,215.955,394.758,328.757,538.011,220.212,400.626,54.036,26.735,54.036,335.387,320.656,349.887,24.379,14.991,24.379 +1303,26.985,215.955,394.758,328.757,538.011,220.212,400.626,54.036,26.735,54.036,335.387,320.656,349.887,24.379,14.991,24.379 +1304,27.006,219.615,394.601,326.206,539.515,222.721,399.177,55.827,22.004,55.827,337.407,320.879,348.469,24.919,14.428,24.919 +1305,27.033,221.999,393.956,324.117,540.896,224.691,398.182,57.496,17.223,57.496,337.551,320.408,347.572,24.868,14.461,24.868 +1306,27.057,224.151,393.624,322.299,542.166,226.495,397.481,58.710,12.609,58.710,337.770,319.974,346.796,24.193,14.343,24.193 +1307,27.083,224.151,393.624,322.299,542.166,226.495,397.481,58.710,12.609,58.710,337.770,319.974,346.796,24.193,14.343,24.193 +1308,27.105,225.802,392.989,320.349,542.998,227.930,396.642,59.775,7.948,59.775,337.513,319.740,345.968,23.592,13.804,23.592 +1309,27.131,227.332,392.940,318.185,543.966,229.058,396.003,60.604,3.485,60.604,338.290,318.992,345.321,23.119,13.309,23.119 +1310,27.155,227.996,391.818,316.443,544.505,229.831,395.193,61.464,178.911,61.464,337.414,319.151,345.097,23.979,13.154,23.979 +1311,27.179,227.996,391.818,316.443,544.505,229.831,395.193,61.464,178.911,61.464,337.414,319.151,345.097,23.979,13.154,23.979 +1312,27.202,228.504,391.498,314.617,544.932,230.212,394.723,62.090,174.621,62.090,337.195,319.787,344.493,23.663,13.712,23.663 +1313,27.226,228.806,390.865,313.235,544.953,230.469,394.029,62.274,170.293,62.274,337.054,319.426,344.204,23.035,13.864,23.035 +1314,27.251,228.806,390.865,313.235,544.953,230.469,394.029,62.274,170.293,62.274,337.054,319.426,344.204,23.035,13.864,23.035 +1315,27.275,228.799,390.330,311.632,545.004,230.398,393.428,62.700,166.054,62.700,336.931,319.413,343.903,23.706,14.239,23.706 +1316,27.301,228.233,390.154,310.479,545.374,229.878,393.342,62.714,161.917,62.714,336.956,319.384,344.131,22.809,14.162,22.809 +1317,27.326,227.942,389.789,310.014,545.351,229.641,393.072,62.650,157.847,62.650,336.971,319.227,344.365,22.818,13.879,22.818 +1318,27.352,227.942,389.789,310.014,545.351,229.641,393.072,62.650,157.847,62.650,336.971,319.227,344.365,22.818,13.879,22.818 +1319,27.374,227.449,389.527,309.609,545.129,229.172,392.829,62.447,153.853,62.447,337.018,319.309,344.467,22.974,14.053,22.974 +1320,27.401,226.931,389.305,309.764,545.004,228.779,392.754,61.821,149.915,61.821,337.072,319.161,344.897,21.880,14.260,21.880 +1321,27.426,226.192,389.854,310.475,544.748,228.078,393.335,61.557,146.056,61.557,336.842,318.961,344.760,22.972,14.598,22.972 +1322,27.450,226.192,389.854,310.475,544.748,228.078,393.335,61.557,146.056,61.557,336.842,318.961,344.760,22.972,14.598,22.972 +1323,27.472,225.628,390.094,311.662,544.465,227.624,393.678,60.897,142.396,60.897,337.044,318.635,345.248,23.337,14.847,23.337 +1324,27.497,224.824,390.858,313.126,543.941,226.889,394.409,59.826,138.611,59.826,337.017,318.813,345.233,22.558,14.837,22.558 +1325,27.521,223.692,391.867,314.750,543.750,225.915,395.531,58.758,135.000,58.758,337.028,318.198,345.599,22.610,14.849,22.610 +1326,27.546,223.692,391.867,314.750,543.750,225.915,395.531,58.758,135.000,58.758,337.028,318.198,345.599,22.610,14.849,22.610 +1327,27.568,222.591,392.856,316.443,543.127,224.985,396.627,57.600,131.406,57.600,336.465,318.329,345.399,24.047,15.396,24.047 +1328,27.594,220.976,394.654,318.885,542.359,223.371,398.203,55.986,127.794,55.986,337.279,318.378,345.842,23.164,15.611,23.164 +1329,27.619,220.976,394.654,318.885,542.359,223.371,398.203,55.986,127.794,55.986,337.279,318.378,345.842,23.164,15.611,23.164 +1330,27.643,219.510,396.116,321.067,541.020,221.905,399.445,54.280,124.369,54.280,337.469,318.438,345.670,24.137,15.645,24.137 +1331,27.669,216.943,398.248,323.836,540.115,219.681,401.826,52.575,120.784,52.575,337.229,318.306,346.239,24.820,16.067,24.820 +1332,27.694,213.584,400.400,326.947,538.694,216.803,404.360,50.896,117.096,50.896,337.222,318.005,347.430,26.441,16.563,26.441 +1333,27.719,213.584,400.400,326.947,538.694,216.803,404.360,50.896,117.096,50.896,337.222,318.005,347.430,26.441,16.563,26.441 +1334,27.740,210.993,402.489,329.559,536.866,214.313,406.265,48.672,113.749,48.672,338.299,318.713,348.357,28.098,16.659,28.098 +1335,27.767,208.014,404.613,332.990,533.312,211.497,408.226,46.047,110.225,46.047,338.712,317.753,348.750,27.892,16.693,27.892 +1336,27.792,204.585,407.090,336.084,530.068,208.313,410.543,42.809,106.949,42.809,339.758,318.117,349.920,26.874,17.072,26.874 +1337,27.816,204.585,407.090,336.084,530.068,208.313,410.543,42.809,106.949,42.809,339.758,318.117,349.920,26.874,17.072,26.874 +1338,27.837,200.591,410.659,339.261,525.941,204.555,414.009,40.198,103.841,40.198,339.889,317.956,350.270,28.552,17.308,28.552 +1339,27.862,197.192,414.210,342.585,521.325,201.313,417.275,36.652,100.823,36.652,340.633,317.673,350.904,27.855,17.391,27.855 +1340,27.886,193.627,418.690,345.960,516.651,198.085,421.589,33.033,97.824,33.033,340.952,317.747,351.586,27.331,17.492,27.331 +1341,27.910,193.627,418.690,345.960,516.651,198.085,421.589,33.033,97.824,33.033,340.952,317.747,351.586,27.331,17.492,27.331 +1342,27.935,190.706,423.536,349.728,510.781,195.392,426.144,29.097,94.514,29.097,341.306,317.460,352.032,27.772,17.682,27.772 +1343,27.960,188.050,429.510,353.328,504.421,192.789,431.712,24.912,91.420,24.912,342.006,317.274,352.458,27.987,17.730,27.987 +1344,27.985,188.050,429.510,353.328,504.421,192.789,431.712,24.912,91.420,24.912,342.006,317.274,352.458,27.987,17.730,27.987 +1345,28.006,185.762,435.360,356.966,496.990,190.704,437.181,20.225,88.727,20.225,342.841,316.255,353.375,28.595,17.973,28.595 +1346,28.032,184.016,443.233,359.696,489.561,188.719,444.470,14.732,85.691,14.732,343.923,316.439,353.647,25.450,18.338,25.450 +1347,28.057,181.441,453.433,361.648,481.433,186.830,454.173,7.815,82.635,7.815,342.922,316.281,353.802,26.302,18.405,26.302 +1348,28.085,181.441,453.433,361.648,481.433,186.830,454.173,7.815,82.635,7.815,342.922,316.281,353.802,26.302,18.405,26.302 +1349,28.107,181.019,462.048,363.449,472.597,186.639,462.289,2.460,79.970,2.460,342.930,315.424,354.179,24.235,18.669,24.235 +1350,28.133,180.555,470.946,363.528,462.955,186.155,470.618,176.647,77.005,176.647,343.817,314.953,355.035,22.902,18.438,22.902 +1351,28.156,181.537,482.194,364.343,452.471,187.823,481.138,170.463,73.974,170.463,344.911,314.016,357.659,25.301,21.851,25.301 +1352,28.181,181.537,482.194,364.343,452.471,187.823,481.138,170.463,73.974,170.463,344.911,314.016,357.659,25.301,21.851,25.301 +1353,28.202,183.910,492.957,361.611,441.615,189.601,491.355,164.275,70.866,164.275,346.284,313.486,358.107,24.784,21.344,24.784 +1354,28.225,187.173,503.523,357.311,430.468,192.515,501.302,157.423,67.932,157.423,347.151,313.488,358.723,25.553,20.914,25.553 +1355,28.250,187.173,503.523,357.311,430.468,192.515,501.302,157.423,67.932,157.423,347.151,313.488,358.723,25.553,20.914,25.553 +1356,28.272,191.885,513.684,352.111,419.153,197.015,510.759,150.309,64.822,150.309,348.407,312.803,360.215,25.078,21.434,25.078 +1357,28.299,198.330,523.251,344.630,408.034,202.989,519.735,142.962,61.876,142.962,349.019,312.766,360.692,25.637,21.273,25.637 +1358,28.323,205.972,532.492,336.057,397.871,210.534,527.960,135.187,58.885,135.187,348.609,312.641,361.468,25.764,21.380,25.764 +1359,28.347,205.972,532.492,336.057,397.871,210.534,527.960,135.187,58.885,135.187,348.609,312.641,361.468,25.764,21.380,25.764 +1360,28.368,215.409,540.460,325.809,388.153,219.625,534.894,127.140,55.713,127.140,348.208,312.877,362.174,26.198,20.994,26.198 +1361,28.393,225.698,546.600,314.193,380.501,229.023,540.594,118.962,52.549,118.962,348.896,312.602,362.626,24.612,20.303,24.612 +1362,28.419,225.698,546.600,314.193,380.501,229.023,540.594,118.962,52.549,118.962,348.896,312.602,362.626,24.612,20.303,24.612 +1363,28.442,237.827,551.255,301.651,373.870,240.203,544.955,110.670,49.351,110.670,350.057,312.813,363.524,24.547,20.102,24.547 +1364,28.467,249.337,554.499,288.437,369.579,250.719,547.806,101.669,46.054,101.669,350.676,312.670,364.345,24.813,19.969,24.813 +1365,28.490,261.962,556.145,274.380,367.629,262.393,548.827,93.366,42.905,93.366,348.515,312.953,363.177,26.249,18.933,26.249 +1366,28.515,261.962,556.145,274.380,367.629,262.393,548.827,93.366,42.905,93.366,348.515,312.953,363.177,26.249,18.933,26.249 +1367,28.538,273.360,556.387,259.271,369.105,272.654,549.741,83.936,39.394,83.936,348.712,312.955,362.078,28.149,15.473,28.149 +1368,28.563,290.861,554.890,245.476,371.791,289.272,547.931,77.140,35.957,77.140,348.663,313.278,362.940,23.865,15.501,23.865 +1369,28.587,302.828,552.069,232.402,376.226,299.722,544.305,68.199,32.451,68.199,345.393,313.229,362.118,21.912,14.919,21.912 +1370,28.612,302.828,552.069,232.402,376.226,299.722,544.305,68.199,32.451,68.199,345.393,313.229,362.118,21.912,14.919,21.912 +1371,28.636,314.160,545.104,220.252,382.448,310.704,539.103,60.063,28.951,60.063,347.936,313.430,361.786,23.061,15.062,23.061 +1372,28.661,330.266,546.240,208.982,390.038,319.942,532.946,52.167,25.115,52.167,328.189,314.024,361.854,25.853,14.685,25.853 +1373,28.686,330.266,546.240,208.982,390.038,319.942,532.946,52.167,25.115,52.167,328.189,314.024,361.854,25.853,14.685,25.853 +1374,28.707,342.602,540.388,198.990,399.025,327.747,525.792,44.496,21.413,44.496,319.724,314.194,361.375,27.056,14.731,27.056 +1375,28.734,355.209,534.224,190.574,408.266,333.915,518.107,37.122,17.447,37.122,307.755,314.927,361.167,29.524,14.828,29.524 +1376,28.759,370.050,524.941,183.385,418.414,339.465,509.072,27.423,13.643,27.423,291.678,315.292,360.590,23.882,14.737,23.882 +1377,28.783,370.050,524.941,183.385,418.414,339.465,509.072,27.423,13.643,27.423,291.678,315.292,360.590,23.882,14.737,23.882 +1378,28.804,384.725,515.062,178.201,428.338,343.652,499.705,20.501,9.824,20.501,272.235,315.862,359.934,23.343,14.878,23.343 +1379,28.829,406.025,503.349,174.128,438.292,347.286,486.856,15.684,6.049,15.684,237.656,316.361,359.678,19.289,14.212,19.289 +1380,28.852,406.025,503.349,174.128,438.292,347.286,486.856,15.684,6.049,15.684,237.656,316.361,359.678,19.289,14.212,19.289 +1381,28.874,425.602,490.435,171.528,448.172,348.795,477.895,9.273,1.922,9.273,203.832,317.291,359.480,19.034,14.019,19.034 +1382,28.901,427.106,473.717,170.416,457.282,349.269,469.108,3.389,177.825,3.389,202.533,317.341,358.479,18.599,13.775,18.599 +1383,28.924,426.967,458.230,169.864,466.323,349.035,461.570,177.546,173.418,177.546,202.414,318.158,358.421,17.983,14.213,17.983 +1384,28.950,426.967,458.230,169.864,466.323,349.035,461.570,177.546,173.418,177.546,202.414,318.158,358.421,17.983,14.213,17.983 +1385,28.972,426.076,443.292,170.591,474.976,348.435,453.546,172.476,169.144,172.476,201.608,318.053,358.238,18.219,14.032,18.219 +1386,28.998,423.141,430.135,172.191,482.837,347.120,447.029,167.471,165.118,167.471,201.311,319.182,357.063,18.114,13.111,18.114 +1387,29.023,419.451,418.092,174.010,490.605,345.201,440.938,162.897,160.641,162.897,201.081,319.119,356.454,17.939,13.387,17.939 +1388,29.047,419.451,418.092,174.010,490.605,345.201,440.938,162.897,160.641,162.897,201.081,319.119,356.454,17.939,13.387,17.939 +1389,29.069,414.980,407.409,176.542,498.093,343.211,435.665,158.510,155.831,158.510,201.644,319.723,355.906,17.804,14.301,17.804 +1390,29.094,409.801,397.990,179.036,504.842,340.779,430.967,154.463,151.157,154.463,202.587,319.949,355.577,17.775,14.612,17.775 +1391,29.118,409.801,397.990,179.036,504.842,340.779,430.967,154.463,151.157,154.463,202.587,319.949,355.577,17.775,14.612,17.775 +1392,29.140,403.733,390.335,181.785,511.176,338.103,426.966,150.832,146.415,150.832,204.755,320.067,355.076,17.667,14.386,17.667 +1393,29.165,390.014,388.610,184.323,516.494,335.354,423.547,147.414,141.997,147.414,224.884,320.381,354.627,17.738,14.263,17.738 +1394,29.189,365.534,398.174,186.952,521.406,334.003,422.347,142.524,137.311,142.524,274.482,320.658,353.943,23.411,15.068,23.411 +1395,29.214,365.534,398.174,186.952,521.406,334.003,422.347,142.524,137.311,142.524,274.482,320.658,353.943,23.411,15.068,23.411 +1396,29.236,354.621,399.782,189.746,525.725,331.544,419.335,139.726,132.449,139.726,293.431,319.862,353.923,23.321,15.153,23.321 +1397,29.260,344.838,401.208,192.933,529.330,328.790,416.092,137.155,127.296,137.155,309.452,319.839,353.227,24.556,15.646,24.556 +1398,29.286,344.838,401.208,192.933,529.330,328.790,416.092,137.155,127.296,137.155,309.452,319.839,353.227,24.556,15.646,24.556 +1399,29.308,336.750,402.750,195.703,532.572,326.033,413.467,135.000,122.188,135.000,322.441,320.346,352.754,24.749,16.587,24.749 +1400,29.334,332.690,404.206,198.175,534.791,324.890,412.163,134.433,117.202,134.433,330.266,320.627,352.550,23.452,16.774,23.452 +1401,29.359,328.637,404.199,200.574,536.923,323.108,410.153,132.879,112.011,132.879,336.300,320.681,352.551,23.502,17.063,23.502 +1402,29.383,328.637,404.199,200.574,536.923,323.108,410.153,132.879,112.011,132.879,336.300,320.681,352.551,23.502,17.063,23.502 +1403,29.406,326.262,403.346,203.028,537.908,321.970,408.188,131.553,106.699,131.553,339.001,320.106,351.942,23.437,17.624,23.437 +1404,29.431,324.910,402.008,204.865,539.673,320.823,406.912,129.806,101.310,129.806,339.682,321.042,352.449,25.735,18.435,25.735 +1405,29.456,324.476,401.481,206.706,539.916,320.795,405.963,129.393,96.054,129.393,340.249,319.707,351.850,25.503,18.653,25.503 +1406,29.480,324.476,401.481,206.706,539.916,320.795,405.963,129.393,96.054,129.393,340.249,319.707,351.850,25.503,18.653,25.503 +1407,29.502,323.837,400.662,209.248,540.972,320.316,405.115,128.333,90.902,128.333,339.561,320.086,350.914,25.959,16.667,25.959 +1408,29.527,322.379,399.407,210.805,541.435,319.171,403.578,127.569,85.400,127.569,340.158,320.218,350.682,24.388,17.048,24.388 +1409,29.552,321.931,399.448,212.052,541.728,318.972,403.343,127.224,80.074,127.224,339.963,319.470,349.745,24.111,16.598,24.111 +1410,29.576,321.931,399.448,212.052,541.728,318.972,403.343,127.224,80.074,127.224,339.963,319.470,349.745,24.111,16.598,24.111 +1411,29.602,321.553,399.288,213.003,542.451,318.620,403.191,126.925,74.667,126.925,339.796,319.778,349.559,23.779,16.442,23.779 +1412,29.627,321.840,399.380,213.356,542.616,318.756,403.492,126.870,69.444,126.870,338.800,319.991,349.079,24.200,16.386,24.200 +1413,29.652,321.840,399.380,213.356,542.616,318.756,403.492,126.870,69.444,126.870,338.800,319.991,349.079,24.200,16.386,24.200 +1414,29.673,321.800,400.100,213.571,541.749,319.203,403.563,126.870,64.063,126.870,339.200,318.426,347.857,24.600,15.750,24.600 +1415,29.699,322.021,400.516,213.205,541.373,319.357,404.020,127.247,58.963,127.247,338.368,318.132,347.172,23.973,15.456,23.973 +1416,29.723,322.502,401.113,212.226,540.507,319.813,404.574,127.846,53.836,127.846,337.934,317.832,346.700,23.519,15.511,23.519 +1417,29.748,322.502,401.113,212.226,540.507,319.813,404.574,127.846,53.836,127.846,337.934,317.832,346.700,23.519,15.511,23.519 +1418,29.770,323.847,401.878,211.069,539.182,321.142,405.271,128.565,48.691,128.565,337.970,317.583,346.649,24.397,15.388,24.397 +1419,29.795,325.027,402.523,209.826,537.085,322.411,405.692,129.544,43.632,129.544,337.783,318.276,346.003,24.174,15.544,24.174 +1420,29.819,326.477,403.271,208.059,534.951,323.777,406.409,130.699,38.928,130.699,337.544,317.969,345.824,24.017,14.930,24.017 +1421,29.843,326.477,403.271,208.059,534.951,323.777,406.409,130.699,38.928,130.699,337.544,317.969,345.824,24.017,14.930,24.017 +1422,29.868,328.057,404.360,205.758,532.639,325.274,407.438,132.122,34.050,132.122,337.752,318.133,346.050,24.161,14.503,24.161 +1423,29.892,329.904,405.736,203.226,529.816,327.050,408.719,133.734,29.307,133.734,337.946,318.014,346.203,24.157,14.539,24.157 +1424,29.918,329.904,405.736,203.226,529.816,327.050,408.719,133.734,29.307,133.734,337.946,318.014,346.203,24.157,14.539,24.157 +1425,29.940,331.913,407.493,200.742,526.787,329.127,410.215,135.666,24.596,135.666,338.805,318.135,346.593,24.509,14.414,24.509 +1426,29.965,334.210,409.482,197.515,523.729,331.033,412.369,137.740,20.106,137.740,338.828,318.248,347.412,24.480,14.547,24.480 +1427,29.989,336.965,412.623,194.388,520.307,333.469,415.550,140.056,15.536,140.056,338.657,318.550,347.776,26.237,14.752,26.237 +1428,30.014,336.965,412.623,194.388,520.307,333.469,415.550,140.056,15.536,140.056,338.657,318.550,347.776,26.237,14.752,26.237 +1429,30.036,339.493,414.915,190.809,516.941,335.159,418.227,142.604,11.215,142.604,338.351,318.498,349.260,25.645,14.282,25.645 +1430,30.060,341.922,417.727,187.447,513.348,336.867,421.221,145.342,6.977,145.342,338.305,318.762,350.596,24.829,13.862,24.829 +1431,30.086,341.922,417.727,187.447,513.348,336.867,421.221,145.342,6.977,145.342,338.305,318.762,350.596,24.829,13.862,24.829 +1432,30.108,344.849,421.306,184.223,509.485,338.773,425.055,148.325,3.180,148.325,337.445,318.675,351.724,24.553,13.923,24.553 +1433,30.134,347.288,425.638,180.989,505.518,340.300,429.430,151.514,179.745,151.514,336.728,318.015,352.628,24.099,12.378,24.099 +1434,30.158,350.870,429.473,178.516,500.328,342.301,433.505,154.799,177.207,154.799,334.357,317.793,353.297,23.738,14.008,23.738 +1435,30.183,350.870,429.473,178.516,500.328,342.301,433.505,154.799,177.207,154.799,334.357,317.793,353.297,23.738,14.008,23.738 +1436,30.205,354.480,431.386,176.817,495.260,343.363,435.953,157.668,175.333,157.668,329.141,319.305,353.179,21.935,13.587,21.935 +1437,30.230,359.112,436.973,174.164,490.071,345.026,441.483,162.246,174.410,162.246,325.499,318.512,355.080,18.789,12.887,18.789 +1438,30.254,369.063,441.312,172.784,483.886,346.828,446.731,166.304,174.179,166.304,310.011,317.616,355.784,18.892,12.749,18.892 +1439,30.279,369.063,441.312,172.784,483.886,346.828,446.731,166.304,174.179,166.304,310.011,317.616,355.784,18.892,12.749,18.892 +1440,30.303,397.486,444.013,171.887,477.319,348.310,451.938,170.845,174.514,170.845,256.810,317.516,356.430,19.892,12.457,19.892 +1441,30.328,428.860,452.056,170.824,469.395,349.403,459.761,174.461,175.210,174.461,197.691,316.984,357.351,18.290,13.628,18.290 +1442,30.352,428.860,452.056,170.824,469.395,349.403,459.761,174.461,175.210,174.461,197.691,316.984,357.351,18.290,13.628,18.290 +1443,30.374,427.494,465.601,170.936,461.618,350.048,466.837,179.086,175.869,179.086,203.102,316.836,358.012,18.248,12.484,18.248 +1444,30.401,409.671,478.282,171.455,452.802,350.013,473.693,4.399,176.285,4.399,239.600,315.699,359.268,18.561,12.623,18.561 +1445,30.426,385.735,488.156,173.485,443.268,349.278,481.795,9.897,176.186,9.897,285.584,315.699,359.599,19.430,12.705,19.430 +1446,30.450,385.735,488.156,173.485,443.268,349.278,481.795,9.897,176.186,9.897,285.584,315.699,359.599,19.430,12.705,19.430 +1447,30.471,372.160,497.988,175.965,433.561,347.228,490.196,17.354,175.474,17.354,308.476,315.073,360.719,26.010,13.009,26.010 +1448,30.496,361.946,507.621,179.845,422.917,343.592,499.446,24.011,174.401,24.011,321.250,315.526,361.436,27.205,13.309,27.205 +1449,30.520,361.946,507.621,179.845,422.917,343.592,499.446,24.011,174.401,24.011,321.250,315.526,361.436,27.205,13.309,27.205 +1450,30.542,352.291,517.667,185.109,411.888,338.294,509.165,31.278,172.840,31.278,330.099,314.059,362.852,30.281,15.192,30.281 +1451,30.567,342.782,526.897,192.244,402.925,331.988,518.251,38.695,170.754,38.695,334.675,313.501,362.334,30.598,14.713,30.598 +1452,30.591,333.817,534.790,200.750,394.250,325.218,525.774,46.356,168.690,46.356,337.246,312.413,362.163,27.774,14.905,27.774 +1453,30.616,333.817,534.790,200.750,394.250,325.218,525.774,46.356,168.690,46.356,337.246,312.413,362.163,27.774,14.905,27.774 +1454,30.638,320.694,539.995,211.046,386.195,316.253,533.884,53.989,166.759,53.989,347.534,311.952,362.643,25.577,15.746,25.577 +1455,30.663,311.659,550.104,222.477,379.077,306.454,540.188,62.306,164.770,62.306,340.966,311.530,363.365,24.412,17.060,24.412 +1456,30.687,298.493,555.823,235.231,374.018,294.799,545.519,70.278,162.777,70.278,341.191,310.856,363.084,23.072,17.365,23.072 +1457,30.713,298.493,555.823,235.231,374.018,294.799,545.519,70.278,162.777,70.278,341.191,310.856,363.084,23.072,17.365,23.072 +1458,30.737,284.385,559.923,248.857,370.667,282.273,549.365,78.690,160.677,78.690,342.027,310.577,363.562,25.103,18.248,25.103 +1459,30.762,273.938,561.393,263.115,369.306,273.601,550.527,88.222,159.326,88.222,341.177,310.161,362.920,26.329,18.200,26.329 +1460,30.786,273.938,561.393,263.115,369.306,273.601,550.527,88.222,159.326,88.222,341.177,310.161,362.920,26.329,18.200,26.329 +1461,30.808,257.900,561.433,278.082,370.266,259.128,550.479,96.399,157.218,96.399,340.362,310.394,362.406,27.835,17.149,27.835 +1462,30.833,244.859,559.962,292.482,373.251,247.851,548.972,105.233,155.493,105.233,339.770,311.349,362.548,24.001,16.245,24.001 +1463,30.856,231.633,556.058,305.898,377.808,236.597,544.791,113.778,153.794,113.778,336.875,311.291,361.500,24.364,15.743,24.364 +1464,30.881,231.633,556.058,305.898,377.808,236.597,544.791,113.778,153.794,113.778,336.875,311.291,361.500,24.364,15.743,24.364 +1465,30.903,218.013,551.691,318.456,383.866,225.957,539.164,122.381,152.241,122.381,331.706,312.330,361.375,24.161,15.370,24.161 +1466,30.928,203.595,546.356,329.330,391.094,216.351,531.570,130.786,150.945,130.786,321.272,313.045,360.328,23.902,15.443,23.902 +1467,30.952,203.595,546.356,329.330,391.094,216.351,531.570,130.786,150.945,130.786,321.272,313.045,360.328,23.902,15.443,23.902 +1468,30.974,182.849,545.237,338.695,399.337,208.000,523.777,139.527,149.886,139.527,294.264,313.972,360.388,22.383,15.536,22.383 +1469,31.001,132.038,559.308,346.105,408.673,200.112,513.926,146.310,148.815,146.310,196.087,314.712,359.714,19.969,15.354,19.969 +1470,31.026,163.272,518.999,352.269,418.636,193.963,503.454,153.138,147.680,153.138,290.291,314.835,359.098,19.499,15.470,19.499 +1471,31.051,163.272,518.999,352.269,418.636,193.963,503.454,153.138,147.680,153.138,290.291,314.835,359.098,19.499,15.470,19.499 +1472,31.072,175.520,498.809,356.500,428.500,189.594,493.697,160.036,146.889,160.036,328.326,315.379,358.273,19.546,15.514,19.546 +1473,31.098,178.434,488.423,359.112,438.432,187.053,486.336,166.393,146.116,166.393,339.262,316.469,356.998,24.360,15.403,24.360 +1474,31.123,177.554,477.898,360.798,448.486,184.745,476.991,172.818,145.305,172.818,341.974,315.975,356.470,21.819,15.369,21.819 +1475,31.148,177.554,477.898,360.798,448.486,184.745,476.991,172.818,145.305,172.818,341.974,315.975,356.470,21.819,15.369,21.819 +1476,31.168,178.084,468.246,361.618,458.772,184.329,468.055,178.251,144.299,178.251,342.482,316.077,354.978,22.745,15.099,22.745 +1477,31.193,179.174,459.426,361.115,467.932,184.306,459.765,3.784,143.720,3.784,343.638,316.596,353.924,23.346,14.725,23.346 +1478,31.218,179.174,459.426,361.115,467.932,184.306,459.765,3.784,143.720,3.784,343.638,316.596,353.924,23.346,14.725,23.346 +1479,31.239,180.437,452.546,360.200,476.600,185.203,453.302,9.019,143.130,9.019,343.321,316.800,352.972,24.487,14.800,24.487 +1480,31.265,183.035,443.664,358.439,484.958,187.128,444.807,15.598,142.595,15.598,343.098,316.809,351.596,25.155,14.579,25.155 +1481,31.290,186.219,436.113,356.121,492.068,189.736,437.413,20.283,142.313,20.283,342.531,317.053,350.029,27.997,14.601,27.997 +1482,31.315,186.219,436.113,356.121,492.068,189.736,437.413,20.283,142.313,20.283,342.531,317.053,350.029,27.997,14.601,27.997 +1483,31.336,188.871,430.280,354.184,499.203,192.601,431.996,24.714,141.667,24.714,341.552,317.050,349.763,28.924,14.703,28.924 +1484,31.362,192.238,424.981,351.488,505.110,195.462,426.738,28.592,141.340,28.592,341.667,317.345,349.010,28.256,14.524,28.256 +1485,31.386,192.238,424.981,351.488,505.110,195.462,426.738,28.592,141.340,28.592,341.667,317.345,349.010,28.256,14.524,28.256 +1486,31.409,195.278,420.636,348.439,510.049,198.099,422.428,32.421,141.340,32.421,341.086,317.345,347.768,29.157,14.680,29.157 +1487,31.434,198.414,416.119,345.651,515.341,201.358,418.232,35.663,140.889,35.663,340.451,317.333,347.697,28.914,14.648,28.914 +1488,31.458,200.912,412.610,342.188,519.147,203.629,414.773,38.524,140.973,38.524,339.874,317.819,346.819,27.527,14.442,27.527 +1489,31.483,200.912,412.610,342.188,519.147,203.629,414.773,38.524,140.973,38.524,339.874,317.819,346.819,27.527,14.442,27.527 +1490,31.505,203.359,409.597,339.025,522.688,205.864,411.823,41.634,140.849,41.634,339.656,318.161,346.360,28.817,14.412,28.817 +1491,31.531,205.752,406.738,335.902,525.818,208.199,409.093,43.913,140.765,43.913,339.113,317.816,345.905,27.961,14.490,27.961 +1492,31.555,207.593,403.942,332.906,528.430,210.129,406.561,45.934,140.832,45.934,338.625,318.306,345.915,27.239,14.470,27.239 +1493,31.578,207.593,403.942,332.906,528.430,210.129,406.561,45.934,140.832,45.934,338.625,318.306,345.915,27.239,14.470,27.239 +1494,31.604,209.611,401.853,330.071,530.627,211.955,404.433,47.755,140.897,47.755,338.686,318.304,345.657,26.559,14.312,26.559 +1495,31.628,211.129,400.390,327.472,532.870,213.347,402.985,49.470,141.078,49.470,338.941,318.597,345.769,25.895,14.479,25.895 +1496,31.653,211.129,400.390,327.472,532.870,213.347,402.985,49.470,141.078,49.470,338.941,318.597,345.769,25.895,14.479,25.895 +1497,31.675,212.718,398.824,325.513,534.524,215.007,401.655,51.033,141.250,51.033,338.320,319.068,345.602,25.898,14.292,25.898 +1498,31.700,214.358,397.722,323.764,536.050,216.583,400.594,52.242,141.582,52.242,338.176,318.748,345.442,25.385,14.319,25.385 +1499,31.725,215.813,396.893,322.619,537.099,217.983,399.801,53.262,141.932,53.262,337.978,318.735,345.234,24.942,14.248,24.942 +1500,31.751,215.813,396.893,322.619,537.099,217.983,399.801,53.262,141.932,53.262,337.978,318.735,345.234,24.942,14.248,24.942 +1501,31.774,217.428,396.105,321.708,538.180,219.599,399.103,54.103,142.306,54.103,337.660,319.068,345.064,25.382,14.171,25.382 +1502,31.800,218.513,395.783,321.160,538.915,220.671,398.830,54.689,142.821,54.689,337.324,318.814,344.793,24.889,14.257,24.889 +1503,31.824,219.415,395.712,320.909,539.360,221.451,398.638,55.168,143.362,55.168,337.500,318.598,344.632,24.666,13.995,24.666 +1504,31.848,219.415,395.712,320.909,539.360,221.451,398.638,55.168,143.362,55.168,337.500,318.598,344.632,24.666,13.995,24.666 +1505,31.870,219.904,395.567,320.855,539.740,222.016,398.616,55.291,143.959,55.291,337.164,318.422,344.583,24.039,14.048,24.039 +1506,31.896,219.957,395.557,320.971,539.638,222.039,398.597,55.592,144.657,55.592,337.166,318.625,344.536,24.774,13.987,24.774 +1507,31.921,219.833,395.925,321.239,539.676,221.915,398.944,55.402,145.353,55.402,337.149,318.756,344.484,24.870,13.932,24.870 +1508,31.947,219.833,395.925,321.239,539.676,221.915,398.944,55.402,145.353,55.402,337.149,318.756,344.484,24.870,13.932,24.870 +1509,31.970,219.209,396.005,321.817,539.240,221.370,399.099,55.061,146.104,55.061,337.269,318.402,344.818,25.042,14.124,25.042 +1510,31.995,218.241,396.546,322.212,538.478,220.286,399.390,54.280,147.000,54.280,337.852,318.692,344.858,23.909,13.770,23.909 +1511,32.019,218.241,396.546,322.212,538.478,220.286,399.390,54.280,147.000,54.280,337.852,318.692,344.858,23.909,13.770,23.909 +1512,32.042,217.028,396.742,323.175,537.383,219.174,399.653,53.606,147.955,53.606,337.913,318.743,345.147,25.385,14.009,25.385 +1513,32.068,216.053,397.305,324.352,536.264,218.190,400.082,52.418,148.937,52.418,338.330,318.648,345.339,25.491,14.077,25.491 +1514,32.092,213.918,398.761,325.761,534.857,216.030,401.411,51.442,149.967,51.442,338.719,318.293,345.496,25.102,13.798,25.102 +1515,32.118,213.918,398.761,325.761,534.857,216.030,401.411,51.442,149.967,51.442,338.719,318.293,345.496,25.102,13.798,25.102 +1516,32.140,211.813,399.738,327.397,533.097,214.054,402.413,50.052,151.096,50.052,338.945,318.771,345.925,25.664,13.662,25.664 +1517,32.164,209.713,401.638,329.526,531.144,212.040,404.269,48.510,152.305,48.510,338.718,318.522,345.743,25.608,13.756,25.608 +1518,32.188,207.874,403.091,332.138,528.771,210.303,405.664,46.654,153.609,46.654,339.229,317.985,346.307,26.287,13.752,26.287 +1519,32.213,207.874,403.091,332.138,528.771,210.303,405.664,46.654,153.609,46.654,339.229,317.985,346.307,26.287,13.752,26.287 +1520,32.236,205.758,405.236,334.902,526.084,208.265,407.686,44.349,154.927,44.349,339.630,318.129,346.641,25.663,13.402,25.663 +1521,32.260,203.272,408.203,338.126,522.856,205.831,410.541,42.418,156.393,42.418,339.921,317.906,346.854,27.798,13.453,27.798 +1522,32.286,203.272,408.203,338.126,522.856,205.831,410.541,42.418,156.393,42.418,339.921,317.906,346.854,27.798,13.453,27.798 +1523,32.308,200.967,410.539,341.354,519.458,203.836,412.943,39.971,157.845,39.971,340.145,317.924,347.630,30.035,13.593,30.035 +1524,32.334,198.660,414.620,344.973,515.760,201.554,416.790,36.870,159.444,36.870,341.000,318.001,348.234,28.600,13.343,28.600 +1525,32.358,196.199,418.949,348.496,511.574,199.383,421.086,33.871,161.068,33.871,340.808,317.541,348.478,29.629,13.170,29.629 +1526,32.384,196.199,418.949,348.496,511.574,199.383,421.086,33.871,161.068,33.871,340.808,317.541,348.478,29.629,13.170,29.629 +1527,32.406,193.549,422.915,351.992,506.860,197.441,425.158,29.960,162.801,29.960,340.417,317.542,349.401,28.488,12.965,28.488 +1528,32.432,191.138,428.218,355.491,501.669,195.279,430.244,26.062,164.476,26.062,341.383,317.586,350.604,28.248,12.793,28.248 +1529,32.457,188.475,434.062,358.521,495.517,193.100,435.908,21.760,166.421,21.760,341.505,317.469,351.464,27.858,13.008,27.858 +1530,32.481,188.475,434.062,358.521,495.517,193.100,435.908,21.760,166.421,21.760,341.505,317.469,351.464,27.858,13.008,27.858 +1531,32.503,184.537,440.377,360.925,488.699,190.648,442.240,16.955,168.402,16.955,340.071,317.718,352.848,25.371,13.214,25.371 +1532,32.527,180.727,447.252,362.726,481.347,188.789,449.012,12.312,170.462,12.312,337.158,317.621,353.663,25.491,13.681,25.491 +1533,32.553,175.443,455.095,363.930,472.976,186.992,456.203,5.484,172.405,5.484,332.257,317.457,355.462,21.207,13.811,21.207 +1534,32.576,175.443,455.095,363.930,472.976,186.992,456.203,5.484,172.405,5.484,332.257,317.457,355.462,21.207,13.811,21.207 +1535,32.601,161.987,463.286,364.438,464.341,186.212,463.383,0.229,174.632,0.229,308.006,316.986,356.457,19.476,13.645,19.476 +1536,32.626,107.072,479.157,364.158,455.075,185.959,472.183,174.948,176.488,174.948,199.636,316.570,358.026,18.750,12.435,18.750 +1537,32.651,107.072,479.157,364.158,455.075,185.959,472.183,174.948,176.488,174.948,199.636,316.570,358.026,18.750,12.435,18.750 +1538,32.672,130.452,491.685,362.470,445.030,186.198,480.825,168.977,178.816,168.977,246.139,317.118,359.728,18.853,12.481,18.853 +1539,32.698,158.617,500.875,359.514,434.827,188.578,491.553,162.719,1.169,162.719,297.385,317.118,360.141,22.747,12.446,22.747 +1540,32.722,172.335,509.631,355.544,424.345,192.152,500.753,155.869,3.801,155.869,317.272,316.031,360.702,24.517,13.319,24.517 +1541,32.747,172.335,509.631,355.544,424.345,192.152,500.753,155.869,3.801,155.869,317.272,316.031,360.702,24.517,13.319,24.517 +1542,32.770,182.579,518.791,350.105,414.072,197.038,510.194,149.265,6.445,149.265,327.739,316.281,361.384,25.136,13.694,25.136 +1543,32.796,193.665,527.710,343.598,404.392,204.035,519.532,141.739,9.123,141.739,335.355,315.311,361.768,26.320,14.162,26.320 +1544,32.820,205.811,534.315,335.203,395.406,211.956,528.010,134.261,11.919,134.261,344.360,315.143,361.969,27.073,14.876,27.073 +1545,32.844,205.811,534.315,335.203,395.406,211.956,528.010,134.261,11.919,134.261,344.360,315.143,361.969,27.073,14.876,27.073 +1546,32.869,214.979,542.249,325.381,386.959,220.642,534.546,126.320,14.574,126.320,342.780,314.562,361.901,24.636,15.872,24.636 +1547,32.894,226.162,549.548,314.453,379.746,230.893,540.771,118.323,17.403,118.323,342.843,313.784,362.785,24.071,17.390,24.071 +1548,32.918,226.162,549.548,314.453,379.746,230.893,540.771,118.323,17.403,118.323,342.843,313.784,362.785,24.071,17.390,24.071 +1549,32.941,238.372,555.239,302.085,374.472,241.910,545.606,110.171,20.308,110.171,342.250,313.415,362.774,24.118,18.122,24.118 +1550,32.966,249.848,557.964,288.933,370.655,251.648,548.863,101.189,23.364,101.189,345.557,313.163,364.112,25.883,18.867,25.883 +1551,32.992,265.157,558.494,274.700,369.100,265.717,550.386,93.952,26.565,93.952,346.694,312.602,362.949,25.663,19.230,25.663 +1552,33.020,265.157,558.494,274.700,369.100,265.717,550.386,93.952,26.565,93.952,346.694,312.602,362.949,25.663,19.230,25.663 +1553,33.043,273.443,558.818,260.664,369.712,272.636,551.051,84.071,29.659,84.071,347.596,312.690,363.212,29.067,18.442,29.067 +1554,33.070,288.347,557.051,246.710,371.948,286.464,549.313,76.323,32.887,76.323,347.542,312.863,363.470,24.265,17.515,24.265 +1555,33.096,302.357,553.790,233.116,376.523,299.052,545.371,68.569,36.298,68.569,344.443,312.830,362.531,21.993,16.825,21.993 +1556,33.120,302.357,553.790,233.116,376.523,299.052,545.371,68.569,36.298,68.569,344.443,312.830,362.531,21.993,16.825,21.993 +1557,33.142,315.347,551.414,221.197,381.633,309.055,540.119,60.879,38.804,60.879,336.560,312.820,362.418,23.348,16.566,23.348 +1558,33.167,333.666,555.430,210.405,388.188,317.271,534.317,52.169,40.855,52.169,308.461,313.012,361.922,21.537,16.272,21.537 +1559,33.192,381.794,583.182,200.910,396.008,325.940,526.519,45.412,42.525,45.412,202.309,313.044,361.436,19.819,16.153,19.819 +1560,33.217,381.794,583.182,200.910,396.008,325.940,526.519,45.412,42.525,45.412,202.309,313.044,361.436,19.819,16.153,19.819 +1561,33.238,361.746,539.622,193.228,403.810,333.877,516.587,39.575,43.643,39.575,288.206,314.135,360.520,20.190,16.376,20.190 +1562,33.263,349.995,517.101,187.500,412.000,338.496,509.667,32.883,45.000,32.883,332.272,313.248,359.658,23.463,16.263,23.463 +1563,33.288,350.250,507.079,182.453,421.085,342.217,503.119,26.244,47.490,26.244,341.229,313.659,359.140,27.779,16.525,27.779 +1564,33.312,350.250,507.079,182.453,421.085,342.217,503.119,26.244,47.490,26.244,341.229,313.659,359.140,27.779,16.525,27.779 +1565,33.336,353.139,497.725,179.169,430.539,346.011,495.186,19.607,50.580,19.607,342.591,313.450,357.723,27.383,16.417,27.383 +1566,33.360,355.980,486.545,177.243,440.964,349.860,485.003,14.149,54.206,14.149,343.668,313.869,356.291,27.403,16.906,27.403 +1567,33.386,355.980,486.545,177.243,440.964,349.860,485.003,14.149,54.206,14.149,343.668,313.869,356.291,27.403,16.906,27.403 +1568,33.408,357.420,475.228,175.690,451.074,351.890,474.624,6.238,58.305,6.238,344.305,313.744,355.431,26.281,16.636,26.281 +1569,33.434,357.516,467.197,175.354,460.793,352.223,467.091,1.150,62.436,1.150,343.332,313.119,353.920,23.076,16.658,23.076 +1570,33.459,357.099,459.399,175.880,470.183,352.058,459.756,175.946,66.512,175.946,342.841,313.318,352.948,22.660,17.133,22.660 +1571,33.484,357.099,459.399,175.880,470.183,352.058,459.756,175.946,66.512,175.946,342.841,313.318,352.948,22.660,17.133,22.660 +1572,33.506,356.093,452.577,177.054,479.104,351.489,453.317,170.866,70.665,170.866,343.308,314.070,352.634,23.572,16.885,23.572 +1573,33.532,354.318,446.260,178.443,487.573,349.869,447.355,166.181,74.932,166.181,342.979,314.419,352.142,23.814,17.270,23.814 +1574,33.556,352.100,440.800,179.916,494.945,347.721,442.260,161.565,79.229,161.565,342.475,315.143,351.707,24.982,17.750,24.982 +1575,33.580,352.100,440.800,179.916,494.945,347.721,442.260,161.565,79.229,161.565,342.475,315.143,351.707,24.982,17.750,24.982 +1576,33.602,349.753,435.689,181.684,501.589,345.493,437.447,157.584,83.631,157.584,342.562,316.056,351.780,24.683,17.732,24.683 +1577,33.627,347.450,432.395,182.980,506.963,343.363,434.328,154.687,87.833,154.687,343.038,316.455,352.081,24.603,17.755,24.603 +1578,33.652,347.450,432.395,182.980,506.963,343.363,434.328,154.687,87.833,154.687,343.038,316.455,352.081,24.603,17.755,24.603 +1579,33.674,345.235,429.004,184.709,512.469,341.135,431.195,151.887,92.235,151.887,343.238,317.578,352.536,24.926,17.421,24.926 +1580,33.700,342.956,425.088,185.659,516.073,338.537,427.723,149.184,96.340,149.184,342.820,318.926,353.110,24.755,18.111,24.755 +1581,33.724,341.441,421.149,186.124,519.068,336.118,424.643,146.719,100.305,146.719,341.683,319.221,354.418,24.535,21.556,24.535 +1582,33.749,341.441,421.149,186.124,519.068,336.118,424.643,146.719,100.305,146.719,341.683,319.221,354.418,24.535,21.556,24.535 +1583,33.770,339.459,418.243,188.170,522.014,334.404,421.854,144.462,104.859,144.462,342.001,320.208,354.426,25.342,19.667,25.342 +1584,33.795,338.016,414.874,189.941,523.998,332.577,419.077,142.306,109.047,142.306,340.289,319.507,354.037,24.854,19.378,24.854 +1585,33.820,336.878,412.131,192.237,526.255,331.121,416.851,140.653,113.499,140.653,338.645,320.695,353.532,24.650,17.544,24.650 +1586,33.844,336.878,412.131,192.237,526.255,331.121,416.851,140.653,113.499,140.653,338.645,320.695,353.532,24.650,17.544,24.650 +1587,33.869,337.160,408.608,193.251,527.892,329.810,414.970,139.118,117.575,139.118,334.867,320.831,354.310,24.081,16.812,24.081 +1588,33.893,338.861,403.801,194.321,529.308,328.297,413.446,137.603,121.461,137.603,325.512,320.932,354.123,23.278,16.277,23.278 +1589,33.918,338.861,403.801,194.321,529.308,328.297,413.446,137.603,121.461,137.603,325.512,320.932,354.123,23.278,16.277,23.278 +1590,33.940,341.907,396.879,195.180,530.629,326.446,412.174,135.308,125.572,135.308,309.754,321.195,353.250,22.802,15.624,22.802 +1591,33.966,349.770,388.306,195.469,531.386,326.334,412.238,134.400,129.406,134.400,286.385,320.847,353.377,22.571,14.764,22.571 +1592,33.990,376.760,359.197,196.118,532.142,324.221,410.726,135.556,133.161,135.556,205.765,321.133,352.948,17.821,15.000,17.821 +1593,34.015,376.760,359.197,196.118,532.142,324.221,410.726,135.556,133.161,135.556,205.765,321.133,352.948,17.821,15.000,17.821 +1594,34.038,381.250,353.750,196.094,532.512,324.145,410.855,135.000,136.621,135.000,191.626,320.611,353.142,16.971,15.117,16.971 +1595,34.062,348.407,386.418,196.409,532.294,324.121,410.569,135.160,140.031,135.160,284.280,321.109,352.781,17.475,14.002,17.475 +1596,34.087,348.407,386.418,196.409,532.294,324.121,410.569,135.160,140.031,135.160,284.280,321.109,352.781,17.475,14.002,17.475 +1597,34.109,338.344,397.359,196.052,531.662,324.370,411.179,135.320,143.746,135.320,312.607,321.218,351.914,17.808,13.279,17.808 +1598,34.135,336.341,400.362,195.906,530.583,325.041,411.382,135.719,147.048,135.719,319.782,321.504,351.350,17.809,13.685,17.809 +1599,34.158,335.560,402.668,194.870,529.382,325.956,411.792,136.469,150.593,136.469,325.561,320.901,352.055,17.835,13.780,17.835 +1600,34.183,335.560,402.668,194.870,529.382,325.956,411.792,136.469,150.593,136.469,325.561,320.901,352.055,17.835,13.780,17.835 +1601,34.205,336.345,405.059,193.502,526.942,327.643,413.035,137.490,154.140,137.490,328.095,320.252,351.704,19.965,14.205,19.965 +1602,34.228,337.610,407.463,192.379,525.009,329.490,414.616,138.621,157.380,138.621,330.069,320.538,351.712,21.689,13.692,21.689 +1603,34.253,337.610,407.463,192.379,525.009,329.490,414.616,138.621,157.380,138.621,330.069,320.538,351.712,21.689,13.692,21.689 +1604,34.275,338.834,410.485,191.081,522.388,331.691,416.460,140.086,160.615,140.086,333.008,320.062,351.633,23.910,13.713,23.910 +1605,34.301,340.624,412.617,189.459,519.399,333.667,418.079,141.870,163.879,141.870,334.302,319.918,351.991,25.205,13.411,25.205 +1606,34.326,342.697,415.723,187.765,516.500,335.890,420.714,143.746,166.799,143.746,335.303,319.969,352.185,26.289,13.462,26.289 +1607,34.352,342.697,415.723,187.765,516.500,335.890,420.714,143.746,166.799,143.746,335.303,319.969,352.185,26.289,13.462,26.289 +1608,34.374,344.625,417.877,185.826,513.321,337.361,422.775,146.012,169.624,146.012,335.004,319.935,352.526,25.602,13.231,25.602 +1609,34.400,346.229,421.257,183.607,509.486,338.888,425.766,148.443,172.569,148.443,335.037,319.166,352.266,25.315,13.193,25.315 +1610,34.424,347.929,423.873,181.718,505.064,340.378,428.068,150.945,175.301,150.945,334.899,319.307,352.175,24.574,13.680,24.574 +1611,34.449,347.929,423.873,181.718,505.064,340.378,428.068,150.945,175.301,150.945,334.899,319.307,352.175,24.574,13.680,24.574 +1612,34.471,349.807,427.666,179.381,500.665,342.004,431.512,153.759,177.955,153.759,335.481,319.296,352.879,24.268,13.420,24.268 +1613,34.494,352.220,432.601,177.009,496.110,343.727,436.163,157.249,0.279,157.249,335.441,318.045,353.859,23.650,13.117,23.650 +1614,34.518,352.220,432.601,177.009,496.110,343.727,436.163,157.249,0.279,157.249,335.441,318.045,353.859,23.650,13.117,23.650 +1615,34.540,354.307,437.706,175.458,490.317,345.501,440.763,160.852,2.961,160.852,335.136,319.349,353.780,23.210,13.361,23.210 +1616,34.565,356.261,442.190,173.783,484.389,346.658,444.905,164.214,5.194,164.214,334.234,318.867,354.193,23.115,13.671,23.115 +1617,34.589,359.365,448.327,172.770,477.455,348.249,450.550,168.690,7.515,168.690,332.025,318.703,354.697,23.142,14.065,23.142 +1618,34.613,359.365,448.327,172.770,477.455,348.249,450.550,168.690,7.515,168.690,332.025,318.703,354.697,23.142,14.065,23.142 +1619,34.637,362.003,455.958,172.112,469.984,349.549,457.362,173.567,9.877,173.567,330.402,318.481,355.467,22.071,13.836,22.071 +1620,34.661,366.018,463.826,171.934,461.458,349.984,463.891,179.765,11.993,179.765,324.010,317.009,356.077,20.414,14.171,20.414 +1621,34.686,366.018,463.826,171.934,461.458,349.984,463.891,179.765,11.993,179.765,324.010,317.009,356.077,20.414,14.171,20.414 +1622,34.708,369.888,473.209,172.683,452.814,350.389,471.401,5.299,14.273,5.299,318.159,316.524,357.325,20.914,13.619,20.914 +1623,34.733,381.115,485.463,174.645,443.508,350.289,479.424,11.085,16.443,11.085,295.721,316.083,358.545,21.333,13.424,21.333 +1624,34.757,424.809,511.925,177.843,433.457,348.441,490.169,15.901,18.202,15.901,200.404,315.588,359.217,19.061,14.224,19.061 +1625,34.782,424.809,511.925,177.843,433.457,348.441,490.169,15.901,18.202,15.901,200.404,315.588,359.217,19.061,14.224,19.061 +1626,34.804,418.799,528.995,181.366,424.362,345.292,499.102,22.130,20.362,22.130,201.304,315.537,360.010,19.434,14.749,19.434 +1627,34.827,391.066,535.380,186.487,414.577,340.993,507.888,28.768,22.153,28.768,246.439,314.768,360.687,19.714,15.176,19.714 +1628,34.852,391.066,535.380,186.487,414.577,340.993,507.888,28.768,22.153,28.768,246.439,314.768,360.687,19.714,15.176,19.714 +1629,34.874,361.715,535.699,193.019,405.088,335.193,516.794,35.482,23.857,35.482,296.083,314.460,361.223,21.113,15.252,21.113 +1630,34.899,344.345,540.146,200.699,396.082,328.135,524.322,44.310,25.408,44.310,316.233,313.641,361.541,26.408,15.536,26.408 +1631,34.922,330.407,545.392,209.722,388.060,319.720,531.822,51.777,26.783,51.777,327.454,313.506,361.999,26.035,15.508,26.035 +1632,34.947,330.407,545.392,209.722,388.060,319.720,531.822,51.777,26.783,51.777,327.454,313.506,361.999,26.035,15.508,26.035 +1633,34.971,317.602,550.353,220.263,380.895,310.477,538.212,59.593,27.854,59.593,334.523,312.704,362.678,24.052,16.317,24.052 +1634,34.996,303.068,550.427,231.635,375.548,300.188,543.537,67.313,29.208,67.313,347.929,312.462,362.864,22.589,17.024,22.589 +1635,35.021,303.068,550.427,231.635,375.548,300.188,543.537,67.313,29.208,67.313,347.929,312.462,362.864,22.589,17.024,22.589 +1636,35.042,291.717,553.968,244.146,371.255,290.094,547.383,76.159,30.713,76.159,350.448,311.940,364.012,24.007,17.808,24.007 +1637,35.069,278.516,556.744,257.391,368.784,277.776,549.486,84.184,31.866,84.184,349.083,311.642,363.675,27.368,18.730,27.368 +1638,35.094,261.733,557.937,271.073,368.467,261.885,550.134,91.109,32.276,91.109,348.012,311.229,363.621,27.111,19.580,27.111 +1639,35.118,261.733,557.937,271.073,368.467,261.885,550.134,91.109,32.276,91.109,348.012,311.229,363.621,27.111,19.580,27.111 +1640,35.140,251.658,556.620,284.760,370.124,252.975,549.397,100.335,33.378,100.335,349.449,310.908,364.133,26.030,19.334,26.030 +1641,35.164,239.740,554.263,298.514,373.445,242.352,546.596,108.812,34.308,108.812,347.822,310.963,364.023,23.748,19.611,23.748 +1642,35.189,228.991,550.019,311.304,378.479,232.965,542.163,116.834,35.395,116.834,345.232,310.948,362.841,25.405,19.479,25.405 +1643,35.213,228.991,550.019,311.304,378.479,232.965,542.163,116.834,35.395,116.834,345.232,310.948,362.841,25.405,19.479,25.405 +1644,35.236,218.415,543.426,322.894,385.519,223.216,536.538,124.875,36.055,124.875,344.990,311.146,361.782,26.128,18.905,26.128 +1645,35.260,208.989,536.409,333.480,393.360,214.847,530.035,132.580,36.870,132.580,344.502,311.600,361.815,26.567,18.800,26.567 +1646,35.285,208.989,536.409,333.480,393.360,214.847,530.035,132.580,36.870,132.580,344.502,311.600,361.815,26.567,18.800,26.567 +1647,35.308,200.920,527.197,342.515,402.044,207.398,521.775,140.077,37.747,140.077,344.026,312.055,360.921,26.479,18.365,26.479 +1648,35.334,193.589,518.189,349.993,411.379,201.051,513.375,147.176,38.428,147.176,343.139,312.831,360.899,26.083,18.057,26.083 +1649,35.359,187.589,508.742,355.729,421.721,195.764,504.772,154.093,39.341,154.093,342.173,313.731,360.350,25.803,17.509,25.803 +1650,35.383,187.589,508.742,355.729,421.721,195.764,504.772,154.093,39.341,154.093,342.173,313.731,360.350,25.803,17.509,25.803 +1651,35.406,183.226,499.136,359.608,432.058,191.724,496.119,160.450,40.130,160.450,341.250,314.699,359.285,26.201,16.783,26.201 +1652,35.431,180.047,489.196,362.462,442.392,188.693,487.136,166.597,40.956,166.597,341.038,315.069,358.815,25.383,16.116,25.383 +1653,35.456,177.434,479.019,364.059,451.997,186.701,477.752,172.215,41.634,172.215,339.719,316.154,358.424,23.686,16.194,23.686 +1654,35.480,177.434,479.019,364.059,451.997,186.701,477.752,172.215,41.634,172.215,339.719,316.154,358.424,23.686,16.194,23.686 +1655,35.503,176.878,469.806,364.612,461.028,185.801,469.402,177.408,42.248,177.408,340.150,316.697,358.014,22.886,16.170,22.886 +1656,35.527,179.112,461.963,364.447,469.623,185.682,462.253,2.529,43.169,2.529,344.680,317.119,357.832,22.288,15.800,22.288 +1657,35.552,179.112,461.963,364.447,469.623,185.682,462.253,2.529,43.169,2.529,344.680,317.119,357.832,22.288,15.800,22.288 +1658,35.574,177.576,454.910,363.764,477.742,186.533,456.069,7.374,44.165,7.374,339.032,317.653,357.095,22.588,15.847,22.588 +1659,35.604,178.921,448.354,362.482,484.518,187.491,450.034,11.089,45.513,11.089,339.245,318.211,356.712,25.495,15.750,25.495 +1660,35.628,180.968,440.565,361.529,490.973,189.662,443.151,16.569,47.003,16.569,338.596,319.032,356.736,23.471,15.814,23.471 +1661,35.653,180.968,440.565,361.529,490.973,189.662,443.151,16.569,47.003,16.569,338.596,319.032,356.736,23.471,15.814,23.471 +1662,35.675,183.205,434.479,360.052,496.888,191.866,437.651,20.116,49.118,20.116,338.152,318.798,356.599,25.790,15.843,25.790 +1663,35.702,184.945,429.818,358.566,501.845,194.197,433.800,23.286,51.506,23.286,335.617,319.372,355.760,26.777,16.140,26.777 +1664,35.726,188.471,426.471,356.932,505.905,196.276,430.305,26.165,54.462,26.165,337.669,318.984,355.061,28.690,16.275,28.690 +1665,35.752,188.471,426.471,356.932,505.905,196.276,430.305,26.165,54.462,26.165,337.669,318.984,355.061,28.690,16.275,28.690 +1666,35.774,190.854,423.528,355.655,509.218,198.409,427.505,27.759,57.653,27.759,337.340,318.440,354.416,25.383,16.418,25.383 +1667,35.802,192.750,421.703,354.137,512.512,199.741,425.711,29.827,61.477,29.827,338.117,318.826,354.234,26.778,16.866,26.778 +1668,35.826,194.564,421.144,352.911,514.680,200.572,424.838,31.593,65.501,31.593,339.550,318.294,353.655,27.649,17.036,27.649 +1669,35.850,194.564,421.144,352.911,514.680,200.572,424.838,31.593,65.501,31.593,339.550,318.294,353.655,27.649,17.036,27.649 +1670,35.872,195.347,421.107,351.854,516.237,200.775,424.573,32.554,69.864,32.554,340.451,317.997,353.331,25.215,17.150,25.215 +1671,35.898,196.567,419.595,350.437,517.493,201.601,422.904,33.321,74.982,33.321,340.609,317.833,352.657,28.101,17.456,28.101 +1672,35.921,196.769,418.809,348.957,518.187,201.434,421.891,33.450,79.824,33.450,341.154,317.692,352.336,28.621,17.364,28.621 +1673,35.945,196.769,418.809,348.957,518.187,201.434,421.891,33.450,79.824,33.450,341.154,317.692,352.336,28.621,17.364,28.621 +1674,35.970,195.923,418.883,348.374,518.054,200.669,422.061,33.810,85.030,33.810,340.857,317.584,352.282,29.645,18.322,29.645 +1675,35.994,194.923,419.849,347.500,517.500,199.260,422.727,33.570,90.000,33.570,341.428,317.000,351.840,28.875,17.000,28.875 +1676,36.019,194.923,419.849,347.500,517.500,199.260,422.727,33.570,90.000,33.570,341.428,317.000,351.840,28.875,17.000,28.875 +1677,36.042,193.153,420.680,346.796,516.241,197.464,423.477,32.969,95.469,32.969,341.253,316.902,351.530,27.640,17.579,27.640 +1678,36.069,192.814,420.750,346.974,514.301,196.716,423.158,31.679,100.954,31.679,342.297,317.115,351.469,27.631,17.355,27.631 +1679,36.093,190.975,422.196,347.366,512.254,195.226,424.709,30.588,106.365,30.588,341.161,317.324,351.036,27.000,17.019,27.000 +1680,36.118,190.975,422.196,347.366,512.254,195.226,424.709,30.588,106.365,30.588,341.161,317.324,351.036,27.000,17.019,27.000 +1681,36.140,189.978,423.540,348.492,509.298,194.004,425.799,29.296,111.714,29.296,341.943,316.606,351.176,28.120,16.821,28.120 +1682,36.165,188.915,425.704,349.788,505.880,192.789,427.723,27.536,117.084,27.536,341.956,316.659,350.694,27.564,16.370,27.564 +1683,36.188,188.187,428.607,351.852,502.272,191.984,430.414,25.454,122.381,25.454,342.058,316.753,350.467,27.904,16.025,27.904 +1684,36.213,188.187,428.607,351.852,502.272,191.984,430.414,25.454,122.381,25.454,342.058,316.753,350.467,27.904,16.025,27.904 +1685,36.237,187.792,431.492,353.669,497.740,191.160,432.915,22.909,128.157,22.909,342.536,315.763,349.849,28.270,15.670,28.270 +1686,36.261,186.646,435.968,355.859,492.955,190.029,437.204,20.059,133.678,20.059,342.581,315.514,349.784,26.734,15.286,26.734 +1687,36.286,186.646,435.968,355.859,492.955,190.029,437.204,20.059,133.678,20.059,342.581,315.514,349.784,26.734,15.286,26.734 +1688,36.308,185.694,440.513,358.757,488.150,189.503,441.662,16.786,138.814,16.786,342.979,315.518,350.935,25.759,14.957,25.759 +1689,36.334,184.418,445.347,360.889,482.452,188.652,446.341,13.215,144.324,13.215,343.164,315.723,351.861,25.481,14.559,25.481 +1690,36.359,182.863,453.870,362.732,476.317,187.865,454.598,8.288,149.852,8.288,342.235,316.067,352.343,22.635,14.080,22.635 +1691,36.384,182.863,453.870,362.732,476.317,187.865,454.598,8.288,149.852,8.288,342.235,316.067,352.343,22.635,14.080,22.635 +1692,36.405,180.784,460.113,363.782,469.936,187.212,460.558,3.962,155.344,3.962,340.708,316.317,353.593,23.360,13.856,23.360 +1693,36.431,177.525,466.735,363.735,462.724,186.377,466.668,179.561,161.131,179.561,337.059,317.189,354.765,21.992,14.134,21.992 +1694,36.455,169.122,473.876,364.025,455.104,186.449,472.339,174.931,166.709,174.931,322.018,316.763,356.808,19.247,13.809,19.247 +1695,36.480,169.122,473.876,364.025,455.104,186.449,472.339,174.931,166.709,174.931,322.018,316.763,356.808,19.247,13.809,19.247 +1696,36.503,108.319,493.474,362.917,447.407,186.537,479.645,169.974,172.057,169.974,199.737,316.791,358.599,18.824,12.944,18.824 +1697,36.528,146.779,499.636,360.958,438.962,188.020,489.098,165.667,177.709,165.667,274.802,316.387,359.934,20.483,12.630,20.483 +1698,36.553,167.748,505.836,357.538,429.906,190.272,497.277,159.193,3.691,159.193,312.386,316.214,360.578,23.818,12.748,23.818 +1699,36.576,167.748,505.836,357.538,429.906,190.272,497.277,159.193,3.691,159.193,312.386,316.214,360.578,23.818,12.748,23.818 +1700,36.599,178.786,512.576,353.760,421.011,193.665,505.058,153.192,9.917,153.192,328.248,315.825,361.589,24.070,13.991,24.070 +1701,36.623,187.912,520.406,348.122,412.076,198.609,513.466,147.025,16.007,147.025,335.720,315.652,361.222,25.098,14.371,25.098 +1702,36.648,187.912,520.406,348.122,412.076,198.609,513.466,147.025,16.007,147.025,335.720,315.652,361.222,25.098,14.371,25.098 +1703,36.671,197.769,527.037,342.157,402.842,205.053,521.024,140.461,22.166,140.461,343.047,315.112,361.938,25.657,15.641,25.657 +1704,36.696,206.173,534.688,334.652,394.215,212.668,527.889,133.691,28.072,133.691,343.035,314.529,361.840,26.100,17.059,26.100 +1705,36.720,206.173,534.688,334.652,394.215,212.668,527.889,133.691,28.072,133.691,343.035,314.529,361.840,26.100,17.059,26.100 +1706,36.743,216.516,541.773,326.107,386.118,221.868,534.531,126.469,34.563,126.469,344.607,313.756,362.617,27.132,19.032,27.132 +1707,36.768,226.640,547.104,316.545,379.949,230.715,539.845,119.302,41.309,119.302,346.240,312.689,362.889,25.476,20.099,25.476 +1708,36.793,237.584,551.231,305.543,374.962,240.312,544.396,111.760,48.094,111.760,348.369,312.105,363.087,24.069,20.400,24.069 +1709,36.819,237.584,551.231,305.543,374.962,240.312,544.396,111.760,48.094,111.760,348.369,312.105,363.087,24.069,20.400,24.069 +1710,36.840,248.652,555.035,293.277,371.588,250.346,548.221,103.966,54.462,103.966,349.503,311.660,363.546,24.010,19.762,24.010 +1711,36.866,260.209,557.424,280.223,370.326,261.020,550.324,96.520,61.157,96.520,347.736,310.796,362.028,26.400,18.154,26.400 +1712,36.891,273.364,559.489,266.864,370.473,273.251,550.771,89.258,67.380,89.258,343.295,310.923,360.731,25.114,16.769,25.114 +1713,36.915,273.364,559.489,266.864,370.473,273.251,550.771,89.258,67.380,89.258,343.295,310.923,360.731,25.114,16.769,25.114 +1714,36.938,285.789,567.032,253.879,372.148,283.455,550.643,81.895,73.009,81.895,328.656,310.336,361.764,24.606,16.630,24.606 +1715,36.962,304.425,588.289,241.855,375.031,293.672,548.278,74.957,77.856,74.957,278.656,310.661,361.517,21.421,16.855,21.421 +1716,36.987,304.425,588.289,241.855,375.031,293.672,548.278,74.957,77.856,74.957,278.656,310.661,361.517,21.421,16.855,21.421 +1717,37.009,304.700,554.400,230.995,379.065,300.920,545.490,67.011,82.694,67.011,341.675,310.459,361.034,22.959,16.964,22.959 +1718,37.036,313.444,546.982,220.296,383.969,309.704,540.531,59.895,88.628,59.895,345.667,310.198,360.579,25.028,16.899,25.028 +1719,37.061,321.742,539.576,210.029,390.684,318.001,534.605,53.027,95.194,53.027,347.396,310.447,359.839,26.652,17.564,26.652 +1720,37.086,321.742,539.576,210.029,390.684,318.001,534.605,53.027,95.194,53.027,347.396,310.447,359.839,26.652,17.564,26.652 +1721,37.107,329.070,531.864,201.360,397.832,325.246,527.853,46.369,102.171,46.369,348.101,310.871,359.184,27.736,17.691,27.736 +1722,37.133,336.030,524.082,194.211,405.939,332.081,520.808,39.659,108.869,39.659,348.644,311.487,358.904,28.728,17.488,28.728 +1723,37.157,341.668,516.366,187.912,414.236,337.363,513.573,32.969,115.688,32.969,348.622,312.579,358.885,29.318,17.932,29.318 +1724,37.181,341.668,516.366,187.912,414.236,337.363,513.573,32.969,115.688,32.969,348.622,312.579,358.885,29.318,17.932,29.318 +1725,37.205,347.710,506.976,182.864,422.974,342.705,504.398,27.248,122.093,27.248,347.508,313.446,358.767,27.613,18.179,27.613 +1726,37.228,352.067,498.830,178.314,431.230,345.852,496.391,21.425,128.991,21.425,346.175,314.858,359.527,27.161,18.839,27.161 +1727,37.253,352.067,498.830,178.314,431.230,345.852,496.391,21.425,128.991,21.425,346.175,314.858,359.527,27.161,18.839,27.161 +1728,37.275,355.571,490.248,175.425,439.430,348.425,488.236,15.725,135.360,15.725,344.658,315.426,359.505,24.186,18.180,24.186 +1729,37.300,359.426,482.888,172.062,446.654,349.131,480.913,10.860,142.081,10.860,339.740,316.617,360.705,25.306,18.829,25.306 +1730,37.324,364.359,472.747,171.051,454.781,350.180,471.551,4.821,147.995,4.821,331.354,317.257,359.811,24.335,16.642,24.335 +1731,37.349,364.359,472.747,171.051,454.781,350.180,471.551,4.821,147.995,4.821,331.354,317.257,359.811,24.335,16.642,24.335 +1732,37.371,369.523,465.939,170.210,462.428,349.616,465.848,0.260,153.901,0.260,319.024,317.584,358.839,23.018,14.972,23.018 +1733,37.395,380.306,458.472,169.597,468.875,348.897,460.483,176.338,160.296,176.338,295.994,318.173,358.941,22.634,13.285,22.634 +1734,37.420,380.306,458.472,169.597,468.875,348.897,460.483,176.338,160.296,176.338,295.994,318.173,358.941,22.634,13.285,22.634 +1735,37.442,415.668,447.770,170.095,474.844,348.236,455.971,173.066,166.245,173.066,222.375,318.447,358.233,18.083,13.411,18.083 +1736,37.468,425.227,436.945,171.259,479.800,347.257,451.308,169.563,171.941,169.563,197.933,317.917,356.495,18.090,13.152,18.090 +1737,37.491,361.555,442.883,172.360,484.546,346.080,446.490,166.881,177.672,166.881,323.868,317.470,355.648,18.999,12.526,18.999 +1738,37.516,361.555,442.883,172.360,484.546,346.080,446.490,166.881,177.672,166.881,323.868,317.470,355.648,18.999,12.526,18.999 +1739,37.537,354.736,440.384,174.562,488.191,345.903,443.110,162.848,2.717,162.848,335.542,317.829,354.030,22.779,14.550,22.779 +1740,37.561,353.119,437.230,176.079,490.984,345.430,439.980,160.317,8.726,160.317,336.936,317.799,353.269,23.065,14.141,23.065 +1741,37.585,353.119,437.230,176.079,490.984,345.430,439.980,160.317,8.726,160.317,336.936,317.799,353.269,23.065,14.141,23.065 +1742,37.607,351.356,434.612,178.326,494.206,345.182,437.115,157.932,14.081,157.932,338.836,317.482,352.161,24.797,14.072,24.797 +1743,37.633,350.497,431.931,180.568,496.492,345.056,434.306,156.422,19.542,156.422,339.386,317.021,351.260,23.379,14.319,23.379 +1744,37.657,349.723,430.572,182.472,498.487,345.130,432.686,155.283,24.995,155.283,340.427,317.225,350.539,23.416,14.256,23.416 +1745,37.682,349.723,430.572,182.472,498.487,345.130,432.686,155.283,24.995,155.283,340.427,317.225,350.539,23.416,14.256,23.416 +1746,37.705,349.523,429.635,184.064,500.391,345.228,431.693,154.398,30.343,154.398,340.530,316.789,350.054,24.067,14.545,24.067 +1747,37.730,348.500,428.000,185.260,501.735,344.657,429.922,153.435,35.509,153.435,340.777,317.006,349.370,23.702,14.996,23.702 +1748,37.756,347.637,427.171,185.943,502.904,344.246,428.922,152.700,40.711,152.700,341.574,316.496,349.206,24.337,15.195,24.337 +1749,37.780,347.637,427.171,185.943,502.904,344.246,428.922,152.700,40.711,152.700,341.574,316.496,349.206,24.337,15.195,24.337 +1750,37.805,347.878,427.696,185.838,504.208,344.186,429.583,152.928,46.005,152.928,341.630,316.859,349.922,23.963,15.207,23.963 +1751,37.829,347.988,429.417,185.765,504.879,344.328,431.274,153.094,50.934,153.094,341.207,316.266,349.414,25.807,15.781,25.807 +1752,37.854,347.988,429.417,185.765,504.879,344.328,431.274,153.094,50.934,153.094,341.207,316.266,349.414,25.807,15.781,25.807 +1753,37.875,347.400,429.800,185.282,505.292,343.854,431.573,153.435,55.871,153.435,341.671,316.479,349.600,25.044,16.068,25.044 +1754,37.901,347.100,430.247,184.265,505.353,343.327,432.095,153.905,60.906,153.905,341.740,317.128,350.143,24.321,16.722,24.321 +1755,37.925,347.313,430.708,183.357,504.113,343.400,432.571,154.537,65.695,154.537,341.840,316.304,350.509,23.646,16.669,23.646 +1756,37.949,347.313,430.708,183.357,504.113,343.400,432.571,154.537,65.695,154.537,341.840,316.304,350.509,23.646,16.669,23.646 +1757,37.971,348.204,432.957,182.412,502.827,344.096,434.788,155.966,70.615,155.966,341.760,316.342,350.755,23.635,16.997,23.635 +1758,37.996,349.096,435.519,181.276,500.799,344.974,437.217,157.620,75.500,157.620,342.240,315.599,351.155,23.770,17.260,23.770 +1759,38.021,349.096,435.519,181.276,500.799,344.974,437.217,157.620,75.500,157.620,342.240,315.599,351.155,23.770,17.260,23.770 +1760,38.043,350.315,438.007,180.194,498.220,346.035,439.612,159.444,80.611,159.444,342.579,316.132,351.721,24.345,17.557,24.345 +1761,38.068,351.089,440.282,178.911,494.852,346.886,441.701,161.342,85.567,161.342,343.431,315.534,352.302,23.969,17.436,23.969 +1762,38.093,353.043,444.150,174.674,490.484,347.075,445.844,164.157,90.390,164.157,343.673,315.088,356.079,24.752,23.380,24.752 +1763,38.118,353.043,444.150,174.674,490.484,347.075,445.844,164.157,90.390,164.157,343.673,315.088,356.079,24.752,23.380,24.752 +1764,38.140,354.285,447.063,174.078,485.143,348.458,448.399,167.088,95.194,167.088,344.406,315.879,356.363,22.804,22.634,22.804 +1765,38.164,355.485,451.471,172.864,479.248,349.411,452.503,170.354,100.305,170.354,344.744,315.912,357.066,22.655,22.897,22.655 +1766,38.189,356.297,456.529,171.761,472.709,350.016,457.174,174.132,105.362,174.132,345.190,316.356,357.819,22.062,23.249,22.062 +1767,38.213,356.297,456.529,171.761,472.709,350.016,457.174,174.132,105.362,174.132,345.190,316.356,357.819,22.062,23.249,22.062 +1768,38.237,356.439,461.695,170.891,465.693,349.981,461.912,178.075,110.123,178.075,345.309,315.775,358.232,22.987,22.492,22.987 +1769,38.261,356.608,467.582,170.541,458.225,349.855,467.333,2.111,115.201,2.111,345.540,315.888,359.055,25.130,22.567,25.130 +1770,38.286,356.608,467.582,170.541,458.225,349.855,467.333,2.111,115.201,2.111,345.540,315.888,359.055,25.130,22.567,25.130 +1771,38.308,356.097,475.159,170.893,450.330,349.364,474.381,6.591,120.774,6.591,346.547,315.584,360.103,25.409,21.760,25.409 +1772,38.334,354.169,485.935,173.011,442.863,347.915,484.494,12.976,125.410,12.976,346.735,315.025,359.571,26.234,18.478,26.234 +1773,38.359,352.587,494.244,174.644,434.267,345.566,491.913,18.359,130.561,18.359,345.960,314.334,360.757,26.886,18.903,26.886 +1774,38.384,352.587,494.244,174.644,434.267,345.566,491.913,18.359,130.561,18.359,345.960,314.334,360.757,26.886,18.903,26.886 +1775,38.405,349.541,503.646,178.500,426.000,342.655,500.569,24.076,135.000,24.076,345.506,313.248,360.590,29.022,17.678,29.022 +1776,38.430,345.513,512.346,183.051,416.854,338.775,508.465,29.944,140.097,29.944,345.781,313.957,361.331,29.725,17.525,29.725 +1777,38.453,345.513,512.346,183.051,416.854,338.775,508.465,29.944,140.097,29.944,345.781,313.957,361.331,29.725,17.525,29.725 +1778,38.474,339.977,520.715,189.360,408.918,334.372,516.615,36.180,144.676,36.180,347.360,313.151,361.250,28.191,17.217,28.191 +1779,38.500,334.185,530.339,196.818,400.599,328.150,524.732,42.891,149.610,42.891,344.934,311.911,361.411,31.296,16.856,31.296 +1780,38.525,328.145,538.377,205.071,392.084,321.852,530.973,49.635,154.916,49.635,343.482,311.423,362.916,28.306,17.015,28.306 +1781,38.549,328.145,538.377,205.071,392.084,321.852,530.973,49.635,154.916,49.635,343.482,311.423,362.916,28.306,17.015,28.306 +1782,38.571,318.620,543.757,215.181,385.208,314.169,537.047,56.435,159.794,56.435,346.397,311.528,362.501,26.554,16.612,26.554 +1783,38.596,308.402,548.816,225.867,379.005,305.120,542.157,63.759,164.973,63.759,347.911,310.742,362.758,23.927,16.574,23.927 +1784,38.621,299.033,553.640,237.463,373.617,296.258,545.470,71.237,169.963,71.237,346.005,310.153,363.262,21.832,17.132,21.832 +1785,38.646,299.033,553.640,237.463,373.617,296.258,545.470,71.237,169.963,71.237,346.005,310.153,363.262,21.832,17.132,21.832 +1786,38.671,286.319,560.037,249.710,369.591,283.978,548.577,78.453,175.365,78.453,341.052,310.575,364.445,24.315,17.402,24.315 +1787,38.695,272.026,560.686,262.485,367.625,271.166,549.231,85.706,0.512,85.706,340.519,311.059,363.493,28.095,17.330,28.095 +1788,38.721,272.026,560.686,262.485,367.625,271.166,549.231,85.706,0.512,85.706,340.519,311.059,363.493,28.095,17.330,28.095 +1789,38.743,263.984,560.512,274.842,367.643,264.948,549.252,94.894,5.511,94.894,340.979,311.640,363.582,28.212,18.196,28.212 +1790,38.769,248.555,558.408,287.162,369.251,250.785,547.668,101.731,10.923,101.731,342.235,311.412,364.173,24.719,18.415,24.719 +1791,38.793,238.154,554.584,299.359,372.162,241.631,544.740,109.454,16.504,109.454,343.025,311.858,363.904,24.927,18.288,24.927 +1792,38.819,238.154,554.584,299.359,372.162,241.631,544.740,109.454,16.504,109.454,343.025,311.858,363.904,24.927,18.288,24.927 +1793,38.841,227.352,549.935,310.642,377.379,231.905,541.019,117.051,21.890,117.051,343.073,311.975,363.095,25.278,18.434,25.278 +1794,38.866,216.919,544.287,321.002,384.430,222.208,536.570,124.425,27.339,124.425,343.982,311.824,362.693,25.336,18.769,25.336 +1795,38.891,208.497,537.939,330.374,392.262,214.266,531.409,131.458,33.096,131.458,344.883,311.991,362.309,26.335,18.236,26.335 +1796,38.915,208.497,537.939,330.374,392.262,214.266,531.409,131.458,33.096,131.458,344.883,311.991,362.309,26.335,18.236,26.335 +1797,38.938,201.465,530.265,339.585,400.268,208.042,524.400,138.274,38.660,138.274,343.962,311.723,361.586,27.456,18.741,27.456 +1798,38.963,195.717,522.018,346.795,409.202,202.239,517.426,144.848,44.694,144.848,345.053,311.160,361.006,27.421,18.937,27.421 +1799,38.987,195.717,522.018,346.795,409.202,202.239,517.426,144.848,44.694,144.848,345.053,311.160,361.006,27.421,18.937,27.421 +1800,39.010,190.502,513.404,352.217,418.604,196.824,509.893,150.963,50.882,150.963,345.876,312.046,360.340,26.149,19.439,26.149 +1801,39.035,186.952,504.753,356.793,428.491,192.880,502.226,156.918,57.308,156.918,346.509,312.794,359.397,24.854,20.349,24.854 +1802,39.060,184.385,496.423,360.243,437.396,190.340,494.528,162.350,63.677,162.350,345.955,312.141,358.455,25.209,20.502,25.209 +1803,39.086,184.385,496.423,360.243,437.396,190.340,494.528,162.350,63.677,162.350,345.955,312.141,358.455,25.209,20.502,25.209 +1804,39.108,182.063,489.009,362.382,447.302,188.032,487.670,167.352,69.656,167.352,345.682,313.071,357.916,24.593,21.513,24.593 +1805,39.134,179.890,481.388,362.912,456.285,185.946,480.571,172.316,76.201,172.316,345.025,312.842,357.248,23.706,22.149,23.706 +1806,39.158,179.555,473.590,363.685,463.805,185.761,473.278,177.127,82.504,177.127,343.922,314.082,356.350,21.872,22.647,21.872 +1807,39.182,179.555,473.590,363.685,463.805,185.761,473.278,177.127,82.504,177.127,343.922,314.082,356.350,21.872,22.647,21.872 +1808,39.205,179.966,465.106,361.750,469.130,184.851,465.210,1.219,88.431,1.219,344.114,314.238,353.886,22.250,18.390,22.250 +1809,39.228,180.843,458.373,361.297,474.361,185.516,458.764,4.783,94.667,4.783,343.561,314.729,352.939,24.417,18.591,24.417 +1810,39.253,180.843,458.373,361.297,474.361,185.516,458.764,4.783,94.667,4.783,343.561,314.729,352.939,24.417,18.591,24.417 +1811,39.275,181.903,450.537,359.967,479.922,186.104,451.296,10.244,100.784,10.244,343.828,315.518,352.366,26.297,18.711,26.297 +1812,39.301,183.195,445.696,359.007,485.114,187.333,446.700,13.647,107.140,13.647,343.266,315.629,351.781,27.181,18.406,27.181 +1813,39.326,184.655,441.473,358.051,489.232,188.608,442.638,16.415,113.276,16.415,343.165,316.059,351.407,27.030,17.736,27.030 +1814,39.351,184.655,441.473,358.051,489.232,188.608,442.638,16.415,113.276,16.415,343.165,316.059,351.407,27.030,17.736,27.030 +1815,39.372,186.128,438.081,356.752,493.284,189.820,439.353,19.004,119.820,19.004,342.980,316.290,350.791,27.776,16.357,27.776 +1816,39.398,186.989,435.528,355.075,497.469,190.720,436.966,21.086,125.882,21.086,342.240,316.660,350.236,26.991,15.877,26.991 +1817,39.423,188.203,433.024,354.057,499.702,191.794,434.557,23.112,131.970,23.112,341.813,316.569,349.621,27.715,15.240,27.715 +1818,39.448,188.203,433.024,354.057,499.702,191.794,434.557,23.112,131.970,23.112,341.813,316.569,349.621,27.715,15.240,27.715 +1819,39.471,189.568,430.354,353.512,500.911,192.964,431.927,24.854,137.796,24.854,341.860,316.632,349.346,28.903,14.623,28.903 +1820,39.495,190.259,428.496,352.875,502.309,193.471,430.087,26.362,143.437,26.362,342.624,317.405,349.793,29.552,14.525,29.552 +1821,39.522,190.258,427.912,352.136,503.231,193.556,429.610,27.244,149.002,27.244,341.962,317.274,349.381,26.725,14.030,26.725 +1822,39.547,190.258,427.912,352.136,503.231,193.556,429.610,27.244,149.002,27.244,341.962,317.274,349.381,26.725,14.030,26.725 +1823,39.570,191.483,425.491,351.807,503.495,194.499,427.065,27.553,154.526,27.553,342.839,317.549,349.642,26.713,14.091,26.713 +1824,39.594,191.615,423.219,352.649,502.838,195.414,425.252,28.151,159.752,28.151,341.864,318.000,350.481,27.929,14.148,27.929 +1825,39.620,191.615,423.219,352.649,502.838,195.414,425.252,28.151,159.752,28.151,341.864,318.000,350.481,27.929,14.148,27.929 +1826,39.642,191.568,423.194,353.402,502.444,195.558,425.390,28.820,164.851,28.820,341.765,318.545,350.875,29.965,13.720,29.965 +1827,39.667,190.270,424.774,353.399,502.774,194.727,427.185,28.419,169.455,28.419,340.915,318.443,351.050,26.529,13.849,26.529 +1828,39.692,189.390,425.155,353.572,503.115,194.396,427.797,27.829,173.715,27.829,340.536,318.480,351.856,27.980,13.859,27.980 +1829,39.716,189.390,425.155,353.572,503.115,194.396,427.797,27.829,173.715,27.829,340.536,318.480,351.856,27.980,13.859,27.980 +1830,39.738,187.994,425.982,353.907,502.793,193.687,428.914,27.255,177.584,27.255,339.723,318.476,352.530,28.959,13.414,28.959 +1831,39.762,187.111,426.791,355.045,501.106,193.369,429.865,26.162,0.757,26.162,339.102,318.091,353.046,26.895,13.964,26.895 +1832,39.787,187.111,426.791,355.045,501.106,193.369,429.865,26.162,0.757,26.162,339.102,318.091,353.046,26.895,13.964,26.895 +1833,39.808,185.455,427.656,356.009,499.355,192.604,431.027,25.249,3.386,25.249,338.071,319.040,353.878,27.031,14.153,27.031 +1834,39.833,183.535,428.045,356.295,497.568,191.926,431.782,24.007,4.919,24.007,335.460,319.401,353.832,27.205,13.887,27.205 +1835,39.857,181.196,429.466,357.319,495.400,191.117,433.525,22.249,5.877,22.249,333.071,319.912,354.511,24.106,13.722,24.106 +1836,39.881,181.196,429.466,357.319,495.400,191.117,433.525,22.249,5.877,22.249,333.071,319.912,354.511,24.106,13.722,24.106 +1837,39.904,179.989,431.029,358.190,493.144,190.363,434.844,20.192,5.837,20.192,333.167,319.809,355.272,22.967,13.777,22.967 +1838,39.928,177.552,432.841,358.737,490.350,189.201,436.662,18.159,5.117,18.159,331.131,318.591,355.650,23.086,13.498,23.086 +1839,39.953,177.552,432.841,358.737,490.350,189.201,436.662,18.159,5.117,18.159,331.131,318.591,355.650,23.086,13.498,23.086 +1840,39.975,175.049,437.161,359.191,487.214,187.479,440.537,15.195,3.325,15.195,330.126,318.799,355.887,22.708,13.811,22.708 +1841,40.001,174.358,441.213,360.039,484.107,186.648,444.123,13.319,0.764,13.319,330.617,318.105,355.877,22.508,13.972,22.508 +1842,40.026,173.611,446.015,360.374,481.092,185.539,448.315,10.911,177.510,10.911,331.464,317.570,355.757,23.909,14.378,23.909 +1843,40.051,173.611,446.015,360.374,481.092,185.539,448.315,10.911,177.510,10.911,331.464,317.570,355.757,23.909,14.378,23.909 +1844,40.072,175.333,451.330,361.159,476.927,185.060,452.829,8.763,173.660,8.763,335.742,317.491,355.427,24.482,14.246,24.482 +1845,40.096,175.142,455.364,361.552,472.737,184.511,456.360,6.068,168.799,6.068,336.717,318.100,355.560,23.400,15.006,23.400 +1846,40.121,175.142,455.364,361.552,472.737,184.511,456.360,6.068,168.799,6.068,336.717,318.100,355.560,23.400,15.006,23.400 +1847,40.142,175.316,459.409,361.281,468.099,183.516,459.852,3.094,163.338,3.094,339.477,317.328,355.902,23.344,14.788,23.344 +1848,40.167,176.000,463.500,361.604,463.064,183.802,463.500,0.000,157.089,0.000,340.000,316.459,355.604,23.000,15.395,23.000 +1849,40.192,176.708,469.148,361.227,457.446,183.174,468.780,176.737,149.865,176.737,343.867,316.066,356.820,23.506,15.496,23.506 +1850,40.216,176.708,469.148,361.227,457.446,183.174,468.780,176.737,149.865,176.737,343.867,316.066,356.820,23.506,15.496,23.506 +1851,40.238,177.352,475.006,359.867,451.197,183.021,474.341,173.316,141.772,173.316,345.262,315.649,356.677,23.899,16.883,23.899 +1852,40.262,178.206,481.338,358.583,445.776,183.561,480.353,169.574,133.039,169.574,345.889,314.207,356.779,24.123,17.266,24.123 +1853,40.288,178.206,481.338,358.583,445.776,183.561,480.353,169.574,133.039,169.574,345.889,314.207,356.779,24.123,17.266,24.123 +1854,40.310,180.018,488.521,355.529,442.520,183.958,487.523,165.793,124.636,165.793,346.609,309.272,354.738,24.211,16.824,24.211 +1855,40.337,183.044,496.112,349.870,445.547,183.194,496.062,161.487,115.313,161.487,347.863,288.005,348.180,25.907,17.677,25.907 +1856,40.361,186.034,503.454,349.248,440.037,186.150,503.404,156.949,106.504,156.949,349.522,286.858,349.775,26.313,17.756,26.313 +1857,40.385,186.034,503.454,349.248,440.037,186.150,503.404,156.949,106.504,156.949,349.522,286.858,349.775,26.313,17.756,26.313 +1858,40.407,189.732,511.189,348.064,436.614,189.856,511.124,152.229,97.496,152.229,349.126,280.582,349.405,27.241,18.551,27.241 +1859,40.434,193.868,516.920,347.675,430.887,194.244,516.676,147.026,87.955,147.026,349.916,276.574,350.814,25.050,20.273,25.050 +1860,40.458,199.028,523.439,345.114,419.660,200.513,522.259,141.520,78.465,141.520,350.283,282.643,354.077,25.372,21.356,25.372 +1861,40.483,199.028,523.439,345.114,419.660,200.513,522.259,141.520,78.465,141.520,350.283,282.643,354.077,25.372,21.356,25.372 +1862,40.504,204.975,530.600,339.930,407.469,207.690,527.952,135.711,68.714,135.711,350.000,291.102,357.584,25.738,21.092,25.738 +1863,40.529,211.521,536.772,332.365,395.971,214.927,532.690,129.840,58.912,129.840,349.794,299.456,360.427,25.786,20.981,25.786 +1864,40.554,219.063,542.869,320.915,384.143,223.085,536.821,123.620,49.268,123.620,348.086,312.053,362.612,25.155,20.270,25.155 +1865,40.577,219.063,542.869,320.915,384.143,223.085,536.821,123.620,49.268,123.620,348.086,312.053,362.612,25.155,20.270,25.155 +1866,40.601,227.394,548.227,311.660,377.910,231.160,540.880,117.144,39.705,117.144,346.984,313.309,363.496,23.837,20.010,23.837 +1867,40.627,237.377,552.574,301.727,373.616,240.327,544.668,110.466,30.510,110.466,346.570,313.692,363.447,24.085,19.492,24.085 +1868,40.653,237.377,552.574,301.727,373.616,240.327,544.668,110.466,30.510,110.466,346.570,313.692,363.447,24.085,19.492,24.085 +1869,40.675,246.542,557.869,290.769,371.309,248.809,548.627,103.782,21.269,103.782,345.385,313.671,364.417,23.053,19.282,23.053 +1870,40.701,257.480,561.579,279.081,370.622,258.808,551.298,97.365,12.140,97.365,342.835,313.457,363.568,24.767,18.927,24.767 +1871,40.726,267.000,561.500,267.486,370.749,267.000,551.875,90.000,3.148,90.000,343.000,313.571,362.251,26.000,18.078,26.000 +1872,40.752,267.000,561.500,267.486,370.749,267.000,551.875,90.000,3.148,90.000,343.000,313.571,362.251,26.000,18.078,26.000 +1873,40.773,278.909,562.994,256.472,371.222,277.585,551.456,83.454,174.264,83.454,339.705,312.941,362.932,25.521,18.646,25.521 +1874,40.800,289.329,560.683,245.504,373.014,286.785,549.999,76.608,165.504,76.608,341.501,311.943,363.468,22.838,18.707,22.838 +1875,40.823,300.104,556.427,234.849,376.745,296.772,547.106,70.331,157.332,70.331,342.729,311.614,362.526,21.001,18.336,21.001 +1876,40.847,300.104,556.427,234.849,376.745,296.772,547.106,70.331,157.332,70.331,342.729,311.614,362.526,21.001,18.336,21.001 +1877,40.872,309.038,551.196,225.828,380.543,305.226,543.349,64.093,148.891,64.093,344.820,312.656,362.268,23.696,17.906,23.696 +1878,40.898,317.426,544.606,217.481,385.082,313.446,538.225,58.040,140.428,58.040,346.411,312.777,361.452,25.625,17.901,25.625 +1879,40.921,324.892,537.257,209.753,390.047,320.861,532.099,51.990,131.424,51.990,347.594,312.682,360.687,25.492,17.952,25.492 +1880,40.946,324.892,537.257,209.753,390.047,320.861,532.099,51.990,131.424,51.990,347.594,312.682,360.687,25.492,17.952,25.492 +1881,40.971,330.258,530.589,202.505,396.102,326.537,526.685,46.382,122.600,46.382,349.414,312.686,360.200,27.040,17.868,27.040 +1882,40.996,335.263,524.503,194.782,404.745,331.541,521.276,40.937,113.728,40.937,349.481,308.934,359.333,30.572,18.651,30.572 +1883,41.021,335.263,524.503,194.782,404.745,331.541,521.276,40.937,113.728,40.937,349.481,308.934,359.333,30.572,18.651,30.572 +1884,41.043,339.651,518.861,188.379,416.696,336.362,516.500,35.682,105.195,35.682,348.737,299.329,356.833,31.575,18.443,31.575 +1885,41.069,344.484,512.596,184.684,429.406,341.985,511.117,30.615,96.582,30.615,348.165,290.266,353.974,30.086,17.958,30.086 +1886,41.094,347.805,506.584,182.479,436.884,345.067,505.263,25.762,88.091,25.762,346.216,290.305,352.295,28.757,17.890,28.757 +1887,41.120,347.805,506.584,182.479,436.884,345.067,505.263,25.762,88.091,25.762,346.216,290.305,352.295,28.757,17.890,28.757 +1888,41.141,351.582,500.866,182.084,442.792,348.515,499.676,21.199,80.166,21.199,344.897,292.347,351.477,27.552,18.156,27.552 +1889,41.165,353.724,494.175,178.539,438.629,348.431,492.558,16.997,71.061,16.997,345.402,312.784,356.471,26.990,16.543,26.990 +1890,41.190,355.594,488.281,177.137,444.407,350.031,486.949,13.468,62.482,13.468,344.653,313.155,356.094,27.189,16.341,27.189 +1891,41.215,355.594,488.281,177.137,444.407,350.031,486.949,13.468,62.482,13.468,344.653,313.155,356.094,27.189,16.341,27.189 +1892,41.237,357.630,480.090,176.227,449.471,351.404,479.201,8.130,53.952,8.130,342.664,314.231,355.242,26.304,15.802,26.304 +1893,41.261,358.480,475.206,175.405,453.612,351.774,474.562,5.484,45.522,5.484,341.653,314.007,355.128,24.272,15.358,24.272 +1894,41.287,358.480,475.206,175.405,453.612,351.774,474.562,5.484,45.522,5.484,341.653,314.007,355.128,24.272,15.358,24.272 +1895,41.309,359.943,470.190,174.628,456.671,352.314,469.822,2.759,37.112,2.759,340.954,314.997,356.228,24.165,15.578,24.165 +1896,41.335,360.487,466.060,174.070,459.538,352.039,465.958,0.690,28.610,0.690,339.168,315.564,356.066,22.083,14.924,22.083 +1897,41.360,361.570,462.295,173.685,462.638,351.898,462.536,178.574,20.206,178.574,336.970,317.308,356.320,22.993,14.983,22.993 +1898,41.385,361.570,462.295,173.685,462.638,351.898,462.536,178.574,20.206,178.574,336.970,317.308,356.320,22.993,14.983,22.993 +1899,41.406,363.698,459.465,172.566,465.769,350.445,460.128,177.138,11.708,177.138,329.339,317.552,355.878,21.973,14.224,21.973 +1900,41.432,374.754,456.860,171.175,468.217,349.745,458.319,176.662,3.045,176.662,307.586,316.776,357.688,19.558,14.352,19.558 +1901,41.456,429.387,450.712,170.733,470.327,349.590,457.711,174.987,174.289,174.987,198.344,317.417,358.551,18.298,14.926,18.298 +1902,41.481,429.387,450.712,170.733,470.327,349.590,457.711,174.987,174.289,174.987,198.344,317.417,358.551,18.298,14.926,18.298 +1903,41.504,409.703,451.081,170.436,472.309,348.932,457.261,174.193,165.559,174.193,236.037,318.469,358.206,18.380,14.957,18.380 +1904,41.529,378.258,452.943,169.357,473.991,347.917,456.520,173.277,156.926,173.277,297.654,318.686,358.755,23.015,15.122,23.015 +1905,41.554,366.177,453.116,169.402,474.042,347.774,455.177,173.610,148.016,173.610,321.693,319.059,358.728,23.406,15.307,23.406 +1906,41.578,366.177,453.116,169.402,474.042,347.774,455.177,173.610,148.016,173.610,321.693,319.059,358.728,23.406,15.307,23.406 +1907,41.602,360.663,453.839,169.536,471.881,348.291,455.157,173.918,139.273,173.918,334.157,318.768,359.041,22.235,17.021,22.235 +1908,41.628,356.822,454.158,169.298,469.497,348.316,454.980,174.480,129.855,174.480,342.079,317.917,359.169,22.412,20.040,22.412 +1909,41.653,356.822,454.158,169.298,469.497,348.316,454.980,174.480,129.855,174.480,342.079,317.917,359.169,22.412,20.040,22.412 +1910,41.675,355.882,455.035,169.643,467.988,348.950,455.590,175.416,120.854,175.416,345.537,317.959,359.447,23.284,21.674,23.284 +1911,41.701,355.452,458.181,169.756,466.631,349.008,458.556,176.675,111.161,176.675,345.927,316.983,358.838,21.905,22.261,21.905 +1912,41.726,355.511,463.290,170.288,465.558,349.196,463.381,179.170,101.310,179.170,345.210,315.943,357.841,20.998,22.357,20.998 +1913,41.750,355.511,463.290,170.288,465.558,349.196,463.381,179.170,101.310,179.170,345.210,315.943,357.841,20.998,22.357,20.998 +1914,41.773,356.007,465.704,172.844,463.629,350.444,465.658,0.472,91.925,0.472,344.095,313.361,355.221,22.073,18.225,22.073 +1915,41.800,355.997,469.559,174.584,459.961,351.381,469.364,2.426,83.290,2.426,344.835,312.025,354.075,24.148,18.695,24.148 +1916,41.823,356.328,473.452,175.085,453.787,351.531,473.028,5.050,73.457,5.050,345.278,312.430,354.909,24.259,17.464,24.259 +1917,41.848,356.328,473.452,175.085,453.787,351.531,473.028,5.050,73.457,5.050,345.278,312.430,354.909,24.259,17.464,24.259 +1918,41.873,356.382,477.838,175.347,446.354,350.693,477.035,8.033,63.975,8.033,344.338,314.019,355.827,24.463,17.128,24.463 +1919,41.899,356.745,481.780,176.784,439.599,350.351,480.507,11.265,54.956,11.265,343.388,315.488,356.428,26.476,17.919,26.476 +1920,41.922,356.030,490.452,177.500,433.064,348.048,488.082,16.538,45.935,16.538,341.653,314.794,358.306,25.104,16.787,25.104 +1921,41.947,356.030,490.452,177.500,433.064,348.048,488.082,16.538,45.935,16.538,341.653,314.794,358.306,25.104,16.787,25.104 +1922,41.970,356.479,497.404,179.677,426.977,346.302,493.598,20.503,37.694,20.503,337.077,316.622,358.809,26.104,16.042,26.104 +1923,41.995,370.582,509.197,180.856,421.542,344.319,497.198,24.555,30.426,24.555,302.491,315.569,360.240,20.967,14.358,20.967 +1924,42.020,370.582,509.197,180.856,421.542,344.319,497.198,24.555,30.426,24.555,302.491,315.569,360.240,20.967,14.358,20.967 +1925,42.042,410.981,541.884,183.834,415.745,340.829,504.937,27.774,23.824,27.774,202.369,314.866,360.942,18.864,14.019,18.864 +1926,42.068,361.151,527.765,187.338,409.384,336.455,511.852,32.795,16.832,32.795,302.942,314.833,361.701,23.481,13.569,23.481 +1927,42.093,346.352,528.186,192.180,402.403,332.401,517.080,38.520,9.324,38.520,326.590,314.491,362.254,25.963,13.903,25.963 +1928,42.118,346.352,528.186,192.180,402.403,332.401,517.080,38.520,9.324,38.520,326.590,314.491,362.254,25.963,13.903,25.963 +1929,42.139,337.521,532.491,198.073,393.975,326.940,522.159,44.318,1.384,44.318,333.933,314.150,363.510,27.819,15.846,27.819 +1930,42.164,328.634,537.045,205.224,388.253,321.001,527.984,49.890,172.999,49.890,339.219,313.678,362.915,28.829,14.940,28.829 +1931,42.187,328.634,537.045,205.224,388.253,321.001,527.984,49.890,172.999,49.890,339.219,313.678,362.915,28.829,14.940,28.829 +1932,42.209,317.816,539.283,212.515,382.723,313.855,533.510,55.548,164.745,55.548,349.334,312.671,363.337,26.493,16.401,26.493 +1933,42.234,311.139,547.158,221.333,378.317,306.638,538.744,61.853,156.485,61.853,344.307,311.843,363.392,24.283,17.674,24.283 +1934,42.258,302.201,551.727,231.601,375.051,298.874,543.496,67.994,148.191,67.994,345.004,311.115,362.760,21.694,18.534,21.694 +1935,42.283,302.201,551.727,231.601,375.051,298.874,543.496,67.994,148.191,67.994,345.004,311.115,362.760,21.694,18.534,21.694 +1936,42.307,292.608,554.471,242.296,372.257,290.622,547.097,74.932,139.955,74.932,347.510,310.998,362.784,22.098,18.414,22.098 +1937,42.332,283.240,556.180,253.102,370.140,282.281,549.466,81.870,132.114,81.870,349.735,310.602,363.300,24.466,18.201,24.466 +1938,42.357,271.060,556.676,264.625,369.069,270.809,549.660,87.955,123.341,87.955,347.350,311.215,361.392,24.342,17.126,24.342 +1939,42.382,271.060,556.676,264.625,369.069,270.809,549.660,87.955,123.341,87.955,347.350,311.215,361.392,24.342,17.126,24.342 +1940,42.405,262.375,558.634,275.092,368.262,263.300,549.143,95.566,115.560,95.566,343.272,311.825,362.344,27.556,17.180,27.556 +1941,42.431,245.841,566.962,285.522,369.664,249.769,547.536,101.430,107.475,101.430,323.219,311.520,362.858,24.911,17.046,24.911 +1942,42.456,235.350,561.950,295.419,372.574,240.885,545.345,108.435,99.964,108.435,327.296,312.059,362.302,22.136,17.343,22.136 +1943,42.480,235.350,561.950,295.419,372.574,240.885,545.345,108.435,99.964,108.435,327.296,312.059,362.302,22.136,17.343,22.136 +1944,42.504,229.701,548.645,305.517,375.984,232.824,541.914,114.887,91.941,114.887,347.387,312.227,362.227,23.810,17.058,23.810 +1945,42.529,222.219,542.663,315.512,380.843,225.217,537.716,121.218,84.075,121.218,350.346,311.854,361.915,25.164,18.504,25.164 +1946,42.554,214.336,537.083,324.336,386.678,217.472,532.984,127.423,76.430,127.423,351.945,311.871,362.267,25.308,19.978,25.308 +1947,42.577,214.336,537.083,324.336,386.678,217.472,532.984,127.423,76.430,127.423,351.945,311.871,362.267,25.308,19.978,25.308 +1948,42.603,206.950,531.752,332.140,393.140,211.019,527.436,133.304,68.682,133.304,349.744,311.647,361.607,25.760,20.972,25.760 +1949,42.628,201.277,526.915,338.835,400.203,205.795,522.983,138.972,60.945,138.972,349.941,311.394,361.920,28.353,21.077,28.353 +1950,42.654,201.277,526.915,338.835,400.203,205.795,522.983,138.972,60.945,138.972,349.941,311.394,361.920,28.353,21.077,28.353 +1951,42.676,195.026,520.034,344.104,406.928,200.137,516.381,144.441,53.227,144.441,348.977,313.195,361.542,26.938,20.556,26.938 +1952,42.701,188.734,513.749,349.250,414.250,195.482,509.786,149.572,45.000,149.572,346.297,313.248,361.948,25.647,18.385,25.647 +1953,42.726,184.409,507.433,353.089,421.029,192.274,503.655,154.343,36.529,154.343,344.020,314.221,361.470,26.751,17.083,26.751 +1954,42.751,184.409,507.433,353.089,421.029,192.274,503.655,154.343,36.529,154.343,344.020,314.221,361.470,26.751,17.083,26.751 +1955,42.773,180.440,500.348,356.103,428.485,188.941,497.004,158.530,28.706,158.530,343.013,314.606,361.283,25.555,14.660,25.555 +1956,42.799,172.722,495.114,358.382,434.703,186.630,490.750,162.578,21.012,162.578,332.155,315.543,361.308,24.620,14.676,24.620 +1957,42.822,165.544,490.183,359.565,440.142,185.100,485.452,166.399,13.465,166.399,320.213,316.532,360.454,23.625,14.204,23.625 +1958,42.846,165.544,490.183,359.565,440.142,185.100,485.452,166.399,13.465,166.399,320.213,316.532,360.454,23.625,14.204,23.625 +1959,42.872,152.610,485.623,360.811,445.104,184.216,480.444,170.694,6.132,170.694,295.919,317.043,359.972,20.334,13.723,20.334 +1960,42.897,114.531,484.713,361.479,449.446,183.790,476.132,172.937,179.526,172.937,219.666,317.039,359.243,18.461,13.694,18.461 +1961,42.922,104.213,479.644,362.703,453.763,183.959,473.213,175.389,173.805,175.389,199.449,316.159,359.458,18.585,14.108,18.585 +1962,42.946,104.213,479.644,362.703,453.763,183.959,473.213,175.389,173.805,175.389,199.449,316.159,359.458,18.585,14.108,18.585 +1963,42.971,167.094,470.096,362.295,456.779,184.101,469.100,176.647,167.661,176.647,323.145,316.943,357.219,19.981,15.630,19.981 +1964,42.996,175.068,467.533,361.989,460.028,184.002,467.293,178.464,160.859,178.464,338.361,317.476,356.236,21.912,17.076,21.912 +1965,43.021,175.068,467.533,361.989,460.028,184.002,467.293,178.464,160.859,178.464,338.361,317.476,356.236,21.912,17.076,21.912 +1966,43.043,177.500,465.000,362.473,462.938,184.237,465.000,0.000,153.608,0.000,343.000,316.645,356.473,22.000,15.828,22.000 +1967,43.069,179.425,462.611,362.049,464.957,184.478,462.715,1.189,145.331,1.189,345.050,315.974,355.159,23.182,16.978,23.182 +1968,43.094,180.302,460.993,361.696,467.648,184.721,461.188,2.529,136.646,2.529,345.326,315.646,354.174,22.332,16.895,22.332 +1969,43.120,180.302,460.993,361.696,467.648,184.721,461.188,2.529,136.646,2.529,345.326,315.646,354.174,22.332,16.895,22.332 +1970,43.141,180.257,460.154,360.703,470.235,184.219,460.386,3.353,127.537,3.353,345.579,314.486,353.517,23.370,17.333,23.370 +1971,43.166,180.734,460.136,361.023,471.645,184.846,460.400,3.677,118.681,3.677,344.831,314.771,353.072,24.335,16.958,24.335 +1972,43.190,180.211,459.733,360.599,472.487,184.179,460.004,3.906,109.242,3.906,345.765,314.442,353.720,24.353,17.591,24.353 +1973,43.215,180.211,459.733,360.599,472.487,184.179,460.004,3.906,109.242,3.906,345.765,314.442,353.720,24.353,17.591,24.353 +1974,43.238,179.893,459.712,360.793,472.909,184.332,459.990,3.576,100.437,3.576,344.952,314.757,353.847,25.263,18.867,25.263 +1975,43.262,179.921,459.945,361.937,471.987,184.901,460.218,3.142,91.317,3.142,344.853,314.216,354.829,24.293,18.260,24.293 +1976,43.287,179.921,459.945,361.937,471.987,184.901,460.218,3.142,91.317,3.142,344.853,314.216,354.829,24.293,18.260,24.293 +1977,43.309,179.874,461.626,362.624,470.983,185.245,461.884,2.748,82.208,2.748,344.467,315.763,355.222,22.262,18.574,22.262 +1978,43.335,179.531,463.552,364.633,469.017,185.792,463.684,1.214,72.582,1.214,345.304,315.879,357.828,23.143,20.991,23.143 +1979,43.360,178.494,466.210,364.344,466.554,185.171,466.159,179.563,62.835,179.563,344.975,316.252,358.329,22.992,18.602,22.992 +1980,43.385,178.494,466.210,364.344,466.554,185.171,466.159,179.563,62.835,179.563,344.975,316.252,358.329,22.992,18.602,22.992 +1981,43.406,178.376,467.215,364.775,463.177,185.816,467.040,178.652,53.301,178.652,343.117,316.806,358.001,22.017,16.200,22.017 +1982,43.435,177.166,472.288,365.118,458.867,186.410,471.555,175.462,44.621,175.462,339.757,316.814,358.304,23.292,15.135,23.292 +1983,43.460,177.222,477.230,364.864,454.613,186.468,476.099,173.024,35.867,173.024,340.741,317.109,359.370,22.851,14.720,22.851 +1984,43.485,177.222,477.230,364.864,454.613,186.468,476.099,173.024,35.867,173.024,340.741,317.109,359.370,22.851,14.720,22.851 +1985,43.505,172.604,483.214,363.994,449.607,186.983,480.721,170.163,27.316,170.163,330.262,317.123,359.449,23.266,14.538,23.266 +1986,43.531,171.166,489.558,363.233,443.832,188.494,485.542,166.952,18.685,166.952,323.716,317.172,359.290,23.748,14.440,23.748 +1987,43.555,170.925,496.049,361.914,437.784,189.917,490.452,163.580,10.574,163.580,320.142,316.362,359.741,22.961,14.522,22.961 +1988,43.578,170.925,496.049,361.914,437.784,189.917,490.452,163.580,10.574,163.580,320.142,316.362,359.741,22.961,14.522,22.961 +1989,43.601,167.276,505.390,359.131,431.152,191.619,496.443,159.818,2.246,159.818,307.633,316.267,359.505,23.521,13.930,23.521 +1990,43.626,163.196,514.776,355.943,424.963,193.295,502.132,157.213,173.979,157.213,294.389,316.149,359.683,23.954,14.156,23.954 +1991,43.651,163.196,514.776,355.943,424.963,193.295,502.132,157.213,173.979,157.213,294.389,316.149,359.683,23.954,14.156,23.954 +1992,43.672,160.768,526.581,352.379,418.024,196.611,508.321,153.004,165.732,153.004,279.114,315.555,359.567,24.092,14.069,24.092 +1993,43.698,160.399,539.526,347.921,410.879,200.610,514.736,148.346,157.635,148.346,265.324,314.988,359.799,23.768,14.397,23.768 +1994,43.724,157.261,554.483,342.443,404.052,202.680,517.855,141.116,149.566,141.116,243.769,314.147,360.466,18.657,14.420,18.657 +1995,43.748,157.261,554.483,342.443,404.052,202.680,517.855,141.116,149.566,141.116,243.769,314.147,360.466,18.657,14.420,18.657 +1996,43.773,149.936,580.376,335.931,398.041,207.675,524.776,136.081,141.435,136.081,200.276,313.446,360.589,18.702,14.941,18.702 +1997,43.800,161.086,591.336,316.549,405.094,206.998,536.815,130.101,133.586,130.101,200.085,276.482,342.639,19.324,15.691,19.324 +1998,43.824,175.142,600.101,310.601,401.570,213.720,542.561,123.840,124.992,123.840,203.562,274.033,342.113,19.981,16.385,19.981 +1999,43.848,175.142,600.101,310.601,401.570,213.720,542.561,123.840,124.992,123.840,203.562,274.033,342.113,19.981,16.385,19.981 +2000,43.873,190.404,608.270,301.600,402.800,220.950,550.451,117.848,116.565,117.848,205.667,262.962,336.451,20.186,16.100,20.186 +2001,43.897,222.073,576.632,295.073,401.021,230.317,556.119,111.894,108.555,111.894,291.900,259.963,336.116,20.639,16.779,20.639 +2002,43.922,237.567,569.936,287.939,403.198,239.684,562.324,105.546,100.934,105.546,316.673,251.364,332.475,21.543,16.535,21.543 +2003,43.946,237.567,569.936,287.939,403.198,239.684,562.324,105.546,100.934,105.546,316.673,251.364,332.475,21.543,16.535,21.543 +2004,43.971,252.464,568.549,282.103,399.285,253.288,563.860,99.976,93.202,99.976,324.635,254.385,334.157,23.984,16.562,23.984 +2005,43.996,263.680,566.784,275.829,399.238,263.781,565.111,93.468,85.507,93.468,329.244,252.344,332.596,24.259,16.428,24.259 +2006,44.022,263.680,566.784,275.829,399.238,263.781,565.111,93.468,85.507,93.468,329.244,252.344,332.596,24.259,16.428,24.259 +2007,44.044,270.541,564.692,268.728,397.340,270.554,564.860,85.525,77.631,85.525,334.638,255.404,334.302,26.215,16.237,26.215 +2008,44.070,285.977,562.782,260.753,395.343,285.916,562.405,80.893,69.444,80.893,337.116,261.002,337.879,23.343,16.386,23.343 +2009,44.095,295.309,558.723,241.807,373.642,292.160,547.545,74.268,61.699,74.268,338.855,311.551,362.081,21.217,16.255,21.217 +2010,44.120,295.309,558.723,241.807,373.642,292.160,547.545,74.268,61.699,74.268,338.855,311.551,362.081,21.217,16.255,21.217 +2011,44.142,305.414,555.510,232.381,376.722,300.787,544.232,67.694,53.902,67.694,337.497,312.463,361.877,21.540,16.194,21.540 +2012,44.167,313.422,550.484,223.146,380.892,308.228,540.657,62.144,45.971,62.144,339.782,312.664,362.013,23.161,15.890,23.161 +2013,44.191,324.391,550.234,214.735,386.059,315.108,536.373,56.189,37.999,56.189,328.127,313.289,361.491,25.025,15.243,25.025 +2014,44.216,324.391,550.234,214.735,386.059,315.108,536.373,56.189,37.999,56.189,328.127,313.289,361.491,25.025,15.243,25.025 +2015,44.239,333.684,546.714,207.242,391.077,321.369,531.654,50.728,29.787,50.728,323.230,314.057,362.140,26.518,15.263,26.518 +2016,44.263,341.112,539.895,200.423,396.692,327.206,525.829,45.327,21.857,45.327,322.379,314.751,361.938,26.748,15.442,26.748 +2017,44.289,341.112,539.895,200.423,396.692,327.206,525.829,45.327,21.857,45.327,322.379,314.751,361.938,26.748,15.442,26.748 +2018,44.311,345.926,531.495,194.101,403.071,332.107,519.841,40.139,13.905,40.139,325.401,315.047,361.555,27.042,15.639,27.042 +2019,44.338,352.067,525.906,188.616,409.871,335.975,514.528,35.263,5.856,35.263,322.068,315.244,361.484,28.438,15.126,28.438 +2020,44.362,355.107,519.320,183.879,416.458,338.810,509.630,30.735,177.730,30.735,323.650,314.348,361.571,30.409,15.450,30.409 +2021,44.387,355.107,519.320,183.879,416.458,338.810,509.630,30.735,177.730,30.735,323.650,314.348,361.571,30.409,15.450,30.409 +2022,44.408,357.985,510.530,180.208,422.435,342.145,502.650,26.450,169.426,26.450,326.047,315.995,361.431,28.191,16.895,28.191 +2023,44.434,358.598,502.977,177.075,428.799,344.409,497.145,22.343,161.089,22.343,330.824,316.541,361.507,27.799,17.449,27.799 +2024,44.459,358.165,496.507,174.320,434.715,345.669,492.324,18.507,152.692,18.507,335.193,316.606,361.548,27.822,18.650,27.822 +2025,44.484,358.165,496.507,174.320,434.715,345.669,492.324,18.507,152.692,18.507,335.193,316.606,361.548,27.822,18.650,27.822 +2026,44.505,357.036,489.866,172.504,440.919,346.934,487.134,15.136,144.293,15.136,339.963,316.178,360.893,26.404,18.829,26.404 +2027,44.530,356.381,484.548,171.035,445.492,347.606,482.648,12.213,135.623,12.213,342.912,316.189,360.869,27.235,20.520,27.235 +2028,44.554,356.284,476.899,170.284,450.435,348.755,475.881,7.702,127.250,7.702,345.348,316.013,360.543,25.579,22.189,25.579 +2029,44.578,356.284,476.899,170.284,450.435,348.755,475.881,7.702,127.250,7.702,345.348,316.013,360.543,25.579,22.189,25.579 +2030,44.601,356.150,473.917,170.247,455.063,349.243,473.264,5.407,118.113,5.407,345.956,316.004,359.830,24.364,22.026,24.364 +2031,44.626,355.691,470.979,170.504,458.987,349.380,470.637,3.100,108.925,3.100,345.847,315.378,358.487,25.180,22.514,25.180 +2032,44.651,355.691,470.979,170.504,458.987,349.380,470.637,3.100,108.925,3.100,345.847,315.378,358.487,25.180,22.514,25.180 +2033,44.672,356.575,468.388,171.250,462.435,350.197,468.206,1.637,99.866,1.637,345.316,314.240,358.077,24.104,22.403,24.104 +2034,44.697,357.490,466.215,174.023,464.588,352.021,466.170,0.479,91.112,0.479,345.072,313.116,356.010,23.049,18.259,23.049 +2035,44.722,357.490,466.215,174.023,464.588,352.021,466.170,0.479,91.112,0.479,345.072,313.116,356.010,23.049,18.259,23.049 +2036,44.744,357.503,464.829,175.527,466.040,352.762,464.867,179.545,82.569,179.545,344.997,312.613,354.478,22.999,17.849,22.999 +2037,44.769,357.500,465.500,175.730,465.896,352.365,465.500,0.000,73.516,0.000,343.000,313.775,353.270,23.000,17.544,23.000 +2038,44.794,358.014,465.109,175.942,465.544,352.987,465.132,179.735,64.163,179.735,344.033,314.010,354.089,23.004,16.457,23.004 +2039,44.818,358.014,465.109,175.942,465.544,352.987,465.132,179.735,64.163,179.735,344.033,314.010,354.089,23.004,16.457,23.004 +2040,44.840,358.522,462.860,175.698,464.983,352.887,463.003,178.550,55.394,178.550,343.093,314.836,354.365,23.992,16.116,23.992 +2041,44.865,358.556,463.816,175.374,463.673,352.739,463.931,178.859,46.603,178.859,343.012,314.268,354.648,22.995,15.144,22.995 +2042,44.890,359.514,464.813,174.934,461.692,352.487,464.869,179.545,38.423,179.545,340.989,315.020,355.044,22.999,14.799,22.999 +2043,44.913,359.514,464.813,174.934,461.692,352.487,464.869,179.545,38.423,179.545,340.989,315.020,355.044,22.999,14.799,22.999 +2044,44.939,359.982,466.208,174.105,459.637,352.042,466.144,0.458,30.665,0.458,340.085,315.377,355.967,23.055,14.676,23.055 +2045,44.963,361.438,467.848,174.099,457.106,352.022,467.598,1.521,23.232,1.521,337.439,316.971,356.278,23.098,14.936,23.098 +2046,44.988,361.438,467.848,174.099,457.106,352.022,467.598,1.521,23.232,1.521,337.439,316.971,356.278,23.098,14.936,23.098 +2047,45.010,364.327,470.482,172.859,454.643,350.879,469.545,3.985,16.728,3.985,330.289,316.564,357.251,20.467,14.240,20.467 +2048,45.035,378.325,474.270,172.180,452.577,350.120,471.486,5.638,11.004,5.638,301.189,316.326,357.874,20.044,13.115,20.044 +2049,45.060,428.137,484.796,171.325,449.304,349.300,475.850,6.474,5.807,6.474,200.980,316.132,359.666,18.562,13.422,18.562 +2050,45.084,428.137,484.796,171.325,449.304,349.300,475.850,6.474,5.807,6.474,200.980,316.132,359.666,18.562,13.422,18.562 +2051,45.106,411.064,488.087,172.021,446.097,348.899,478.523,8.746,0.639,8.746,233.712,316.092,359.504,18.551,12.639,18.551 +2052,45.132,380.447,489.744,172.322,442.021,347.967,482.717,12.207,174.852,12.207,294.095,316.421,360.558,25.281,12.912,25.281 +2053,45.156,368.750,492.595,173.410,437.584,347.194,486.639,15.446,168.559,15.446,316.419,316.733,361.146,24.465,13.885,24.465 +2054,45.180,368.750,492.595,173.410,437.584,347.194,486.639,15.446,168.559,15.446,316.419,316.733,361.146,24.465,13.885,24.465 +2055,45.204,361.004,498.435,175.170,431.959,345.359,493.024,19.077,161.901,19.077,328.494,315.912,361.602,27.770,15.783,27.770 +2056,45.229,355.431,502.846,178.456,426.844,344.357,498.165,22.915,154.799,22.915,337.112,314.983,361.157,27.348,15.222,27.348 +2057,45.254,355.431,502.846,178.456,426.844,344.357,498.165,22.915,154.799,22.915,337.112,314.983,361.157,27.348,15.222,27.348 +2058,45.276,350.503,508.936,181.584,421.043,341.977,504.543,27.261,147.854,27.261,342.470,313.861,361.650,28.500,15.740,28.500 +2059,45.302,345.763,515.186,185.695,414.543,338.756,510.835,31.840,140.942,31.840,345.157,313.160,361.655,29.295,18.012,29.295 +2060,45.327,340.711,521.928,191.572,409.068,335.287,517.899,36.607,133.616,36.607,347.015,312.136,360.529,30.688,17.683,30.688 +2061,45.352,340.711,521.928,191.572,409.068,335.287,517.899,36.607,133.616,36.607,347.015,312.136,360.529,30.688,17.683,30.688 +2062,45.373,335.113,526.807,197.943,402.544,331.231,523.354,41.654,125.889,41.654,349.371,311.799,359.764,27.398,17.751,27.398 +2063,45.399,329.365,532.974,204.074,396.126,325.633,528.937,47.249,118.496,47.249,349.084,311.265,360.080,27.374,19.234,27.374 +2064,45.425,322.272,539.449,211.830,390.295,318.800,534.873,52.815,111.251,52.815,348.182,310.513,359.670,27.967,17.605,27.967 +2065,45.450,322.272,539.449,211.830,390.295,318.800,534.873,52.815,111.251,52.815,348.182,310.513,359.670,27.967,17.605,27.967 +2066,45.473,315.386,544.208,219.689,384.428,312.214,539.015,58.582,104.207,58.582,348.139,310.925,360.308,24.076,17.597,24.076 +2067,45.497,307.061,549.442,228.553,379.188,304.020,542.980,64.799,96.911,64.799,346.386,310.816,360.670,23.259,17.268,23.259 +2068,45.522,298.588,555.355,238.000,375.000,295.423,546.220,70.891,90.000,70.891,341.830,310.000,361.167,21.785,16.000,21.785 +2069,45.547,298.588,555.355,238.000,375.000,295.423,546.220,70.891,90.000,70.891,341.830,310.000,361.167,21.785,16.000,21.785 +2070,45.571,291.624,570.698,247.730,372.412,286.850,549.267,77.440,83.157,77.440,318.345,311.565,362.258,22.996,17.077,22.996 +2071,45.595,279.805,568.164,258.029,370.372,277.982,550.240,84.193,76.373,84.193,325.895,311.198,361.928,25.580,16.787,25.580 +2072,45.620,279.805,568.164,258.029,370.372,277.982,550.240,84.193,76.373,84.193,325.895,311.198,361.928,25.580,16.787,25.580 +2073,45.642,266.000,558.500,268.712,369.733,266.000,550.366,90.000,69.444,90.000,345.000,311.329,361.267,26.000,16.737,26.000 +2074,45.668,257.969,556.246,280.350,369.816,258.776,549.795,97.125,62.241,97.125,349.530,311.305,362.532,25.303,18.211,25.303 +2075,45.693,248.588,554.874,291.191,371.369,250.154,548.442,103.686,55.491,103.686,350.271,310.973,363.510,23.057,19.571,23.057 +2076,45.718,248.588,554.874,291.191,371.369,250.154,548.442,103.686,55.491,103.686,350.271,310.973,363.510,23.057,19.571,23.057 +2077,45.740,239.204,552.217,301.331,374.372,241.566,545.745,110.053,48.366,110.053,349.173,311.088,362.952,23.270,19.765,23.270 +2078,45.765,230.141,548.810,311.052,378.311,233.449,542.111,116.279,41.511,116.279,347.516,311.265,362.459,23.763,20.158,23.763 +2079,45.790,221.607,545.885,319.980,383.055,226.380,538.361,122.393,34.144,122.393,344.746,311.752,362.566,25.807,19.559,25.807 +2080,45.814,221.607,545.885,319.980,383.055,226.380,538.361,122.393,34.144,122.393,344.746,311.752,362.566,25.807,19.559,25.807 +2081,45.839,214.518,539.410,328.093,388.830,219.189,533.506,128.353,26.896,128.353,347.005,312.152,362.062,25.631,18.431,25.631 +2082,45.863,207.933,534.402,334.973,395.776,212.930,529.234,134.034,19.654,134.034,347.176,312.187,361.553,27.279,16.279,27.279 +2083,45.888,202.097,528.457,341.206,402.566,207.499,523.847,139.518,12.420,139.518,346.669,312.819,360.872,27.735,14.690,27.735 +2084,45.912,202.097,528.457,341.206,402.566,207.499,523.847,139.518,12.420,139.518,346.669,312.819,360.872,27.735,14.690,27.735 +2085,45.935,190.152,526.418,346.188,408.451,202.419,517.702,144.605,5.237,144.605,330.856,313.710,360.953,27.330,14.108,27.330 +2086,45.959,180.749,521.075,350.922,414.131,198.310,510.694,149.412,178.107,149.412,320.225,314.324,361.025,25.355,13.984,25.355 +2087,45.984,180.749,521.075,350.922,414.131,198.310,510.694,149.412,178.107,149.412,320.225,314.324,361.025,25.355,13.984,25.355 +2088,46.006,166.429,517.850,353.824,420.312,194.324,504.636,154.654,171.564,154.654,298.757,315.519,360.489,23.212,14.062,23.212 +2089,46.031,135.000,520.755,356.126,426.024,191.321,498.145,158.127,165.782,158.127,238.241,315.552,359.620,18.391,14.459,18.391 +2090,46.056,114.350,518.050,358.056,430.376,189.619,492.960,161.565,160.208,161.565,200.488,315.084,359.169,18.025,16.680,18.025 +2091,46.081,114.350,518.050,358.056,430.376,189.619,492.960,161.565,160.208,161.565,200.488,315.084,359.169,18.025,16.680,18.025 +2092,46.105,170.728,492.069,359.596,436.081,187.848,487.216,164.174,154.779,164.174,322.779,315.782,358.367,19.393,15.524,19.393 +2093,46.129,177.645,487.582,360.143,440.918,187.239,485.421,167.303,148.454,167.303,337.246,316.231,356.915,23.606,18.140,23.606 +2094,46.154,180.330,482.191,360.883,445.719,186.342,481.127,169.965,141.670,169.965,343.868,315.025,356.079,23.224,16.403,23.224 +2095,46.178,180.330,482.191,360.883,445.719,186.342,481.127,169.965,141.670,169.965,343.868,315.025,356.079,23.224,16.403,23.224 +2096,46.202,180.198,478.269,361.338,449.983,185.575,477.556,172.451,133.662,172.451,344.876,314.758,355.724,23.732,17.914,23.732 +2097,46.225,180.821,474.381,361.247,454.866,185.174,473.967,174.571,125.942,174.571,345.435,314.594,354.180,23.135,17.245,23.135 +2098,46.249,180.821,474.381,361.247,454.866,185.174,473.967,174.571,125.942,174.571,345.435,314.594,354.180,23.135,17.245,23.135 +2099,46.273,180.730,471.164,361.424,458.414,184.756,470.911,176.410,117.629,176.410,346.139,313.667,354.208,22.704,17.373,22.704 +2100,46.298,180.609,469.107,362.097,462.290,185.042,468.952,177.987,109.573,177.987,345.490,313.799,354.360,23.704,18.300,23.704 +2101,46.323,180.500,465.500,361.447,465.115,184.724,465.500,0.000,100.620,0.000,345.000,313.721,353.447,23.000,18.367,23.000 +2102,46.347,180.500,465.500,361.447,465.115,184.724,465.500,0.000,100.620,0.000,345.000,313.721,353.447,23.000,18.367,23.000 +2103,46.372,180.009,465.852,361.716,467.414,184.853,465.833,179.782,92.148,179.782,344.024,313.530,353.712,22.996,17.925,22.996 +2104,46.396,179.990,465.203,362.796,468.624,185.386,465.249,0.494,84.114,0.494,344.073,315.247,354.866,24.042,18.438,24.042 +2105,46.422,179.516,464.781,365.107,468.951,186.535,464.872,0.747,75.403,0.747,343.180,315.397,357.220,24.050,21.562,24.050 +2106,46.447,179.516,464.781,365.107,468.951,186.535,464.872,0.747,75.403,0.747,343.180,315.397,357.220,24.050,21.562,24.050 +2107,46.471,180.019,464.428,365.387,469.038,186.682,464.508,0.690,66.652,0.690,344.168,316.063,357.494,23.143,20.311,23.143 +2108,46.495,179.010,465.127,365.623,467.643,186.806,465.159,0.238,57.412,0.238,342.059,316.830,357.652,23.050,18.179,23.050 +2109,46.519,179.010,465.127,365.623,467.643,186.806,465.159,0.238,57.412,0.238,342.059,316.830,357.652,23.050,18.179,23.050 +2110,46.540,178.955,466.567,365.881,465.950,186.924,466.476,179.346,49.279,179.346,341.966,317.148,357.904,22.987,16.578,22.987 +2111,46.564,178.392,467.974,365.862,463.958,186.898,467.747,178.470,41.444,178.470,340.985,317.490,358.002,22.885,14.857,22.885 +2112,46.588,173.294,470.456,365.890,460.905,186.884,469.763,177.082,33.561,177.082,331.233,318.121,358.449,22.716,14.532,22.716 +2113,46.612,173.294,470.456,365.890,460.905,186.884,469.763,177.082,33.561,177.082,331.233,318.121,358.449,22.716,14.532,22.716 +2114,46.637,169.759,474.037,365.770,457.400,186.881,472.643,175.347,25.716,175.347,324.717,317.619,359.074,23.353,14.395,23.353 +2115,46.662,166.137,478.034,365.555,453.282,187.314,475.441,173.019,17.902,173.019,316.554,317.502,359.225,23.964,14.048,23.964 +2116,46.687,166.137,478.034,365.555,453.282,187.314,475.441,173.019,17.902,173.019,316.554,317.502,359.225,23.964,14.048,23.964 +2117,46.708,158.870,484.192,364.620,448.595,187.674,479.564,170.874,10.322,170.874,300.889,317.343,359.236,23.415,13.809,23.415 +2118,46.735,149.977,490.761,363.177,443.863,187.891,483.517,169.184,2.779,169.184,282.025,316.550,359.225,20.443,13.421,20.443 +2119,46.759,131.463,501.583,361.543,439.054,188.496,486.486,165.174,175.587,165.174,240.852,316.298,358.846,18.538,13.848,18.538 +2120,46.784,131.463,501.583,361.543,439.054,188.496,486.486,165.174,175.587,165.174,240.852,316.298,358.846,18.538,13.848,18.538 +2121,46.806,114.150,516.450,359.563,433.417,189.641,491.286,161.565,168.164,161.565,199.856,316.014,359.005,18.657,14.174,18.657 +2122,46.830,117.448,526.817,357.001,427.565,191.156,496.663,157.751,160.821,157.751,200.044,315.339,359.320,18.595,14.044,18.595 +2123,46.855,122.223,537.449,353.732,421.472,193.132,502.273,153.616,153.319,153.616,201.245,314.850,359.555,18.382,14.156,18.382 +2124,46.879,122.223,537.449,353.732,421.472,193.132,502.273,153.616,153.319,153.616,201.245,314.850,359.555,18.382,14.156,18.382 +2125,46.901,164.933,526.565,349.891,415.338,195.832,508.140,149.194,146.121,149.194,287.748,313.978,359.699,18.698,14.410,18.698 +2126,46.926,180.890,527.453,345.147,409.168,199.373,514.302,144.567,138.871,144.567,314.086,313.642,359.455,18.536,14.916,18.536 +2127,46.953,180.890,527.453,345.147,409.168,199.373,514.302,144.567,138.871,144.567,314.086,313.642,359.455,18.536,14.916,18.536 +2128,46.976,190.294,531.176,340.135,403.228,203.371,519.968,139.399,131.751,139.399,325.179,313.241,359.625,19.090,15.747,19.090 +2129,47.003,198.952,535.930,327.647,406.918,204.535,530.213,134.322,124.287,134.322,332.468,289.367,348.449,19.078,15.999,19.078 +2130,47.029,208.155,543.076,319.587,407.786,210.725,539.929,129.237,117.368,129.237,334.288,276.514,342.415,22.461,17.208,22.461 +2131,47.054,208.155,543.076,319.587,407.786,210.725,539.929,129.237,117.368,129.237,334.288,276.514,342.415,22.461,17.208,22.461 +2132,47.075,218.393,547.072,313.017,404.643,218.695,546.615,123.456,109.952,123.456,339.797,271.680,340.895,24.228,17.158,24.228 +2133,47.101,227.862,549.324,305.843,406.348,225.651,553.555,117.586,102.995,117.586,344.763,260.087,335.214,23.776,17.089,23.776 +2134,47.125,236.562,553.708,299.974,405.602,234.498,558.908,111.648,96.277,111.648,344.486,253.441,333.295,23.950,17.017,23.950 +2135,47.149,236.562,553.708,299.974,405.602,234.498,558.908,111.648,96.277,111.648,344.486,253.441,333.295,23.950,17.017,23.950 +2136,47.172,245.715,557.308,293.991,400.961,244.567,561.445,105.507,89.502,105.507,344.300,256.069,335.712,23.422,17.008,23.422 +2137,47.196,253.952,557.808,286.931,398.328,253.148,562.905,98.955,82.235,98.955,345.979,256.805,335.659,24.486,16.709,24.486 +2138,47.222,264.750,559.750,279.987,395.951,264.559,563.374,93.013,75.256,93.013,343.262,257.649,336.005,24.177,16.491,24.177 +2139,47.245,264.750,559.750,279.987,395.951,264.559,563.374,93.013,75.256,93.013,343.262,257.649,336.005,24.177,16.491,24.177 +2140,47.268,271.918,560.116,262.678,370.134,271.247,550.977,85.804,68.311,85.804,343.644,311.230,361.971,24.787,16.641,24.787 +2141,47.293,282.386,558.971,252.105,371.168,280.783,550.225,79.611,61.243,79.611,344.803,311.976,362.586,24.148,16.614,24.148 +2142,47.318,282.386,558.971,252.105,371.168,280.783,550.225,79.611,61.243,79.611,344.803,311.976,362.586,24.148,16.614,24.148 +2143,47.342,294.772,556.890,241.883,373.585,292.163,547.534,74.419,53.931,74.419,342.695,312.095,362.123,21.682,15.947,21.682 +2144,47.367,303.707,553.809,232.169,376.751,299.952,544.537,67.949,46.784,67.949,341.914,312.742,361.921,21.728,15.788,21.728 +2145,47.391,310.957,547.969,223.311,380.926,307.361,541.146,62.210,39.806,62.210,346.428,313.050,361.853,22.236,15.620,22.236 +2146,47.416,310.957,547.969,223.311,380.926,307.361,541.146,62.210,39.806,62.210,346.428,313.050,361.853,22.236,15.620,22.236 +2147,47.441,323.457,549.904,215.400,385.158,314.639,536.463,56.731,32.445,56.731,329.742,313.766,361.893,24.190,15.642,24.190 +2148,47.466,331.446,545.147,207.817,390.388,320.779,531.797,51.374,25.221,51.374,327.804,314.025,361.978,25.597,15.438,25.597 +2149,47.490,338.922,539.657,201.425,396.212,326.499,526.813,45.955,18.258,45.955,325.919,314.640,361.658,25.818,15.351,25.818 +2150,47.514,338.922,539.657,201.425,396.212,326.499,526.813,45.955,18.258,45.955,325.919,314.640,361.658,25.818,15.351,25.818 +2151,47.539,345.494,533.354,195.389,402.521,331.707,521.400,40.926,11.121,40.926,325.247,314.754,361.743,26.043,15.414,26.043 +2152,47.562,347.603,524.319,190.142,408.865,335.960,515.764,36.309,3.796,36.309,332.713,315.165,361.609,25.738,15.412,25.738 +2153,47.586,347.603,524.319,190.142,408.865,335.960,515.764,36.309,3.796,36.309,332.713,315.165,361.609,25.738,15.412,25.738 +2154,47.608,354.191,519.195,185.852,414.604,339.394,509.956,31.980,176.471,31.980,326.590,314.636,361.479,26.717,16.022,26.717 +2155,47.633,356.649,513.164,182.064,420.722,341.748,505.291,27.848,169.160,27.848,327.685,315.982,361.392,29.278,15.861,29.278 +2156,47.658,357.640,505.311,178.730,426.700,344.247,499.372,23.914,161.485,23.914,332.230,316.541,361.533,27.623,16.980,27.623 +2157,47.683,357.640,505.311,178.730,426.700,344.247,499.372,23.914,161.485,23.914,332.230,316.541,361.533,27.623,16.980,27.623 +2158,47.707,357.866,499.863,175.585,432.109,345.029,495.120,20.283,153.914,20.283,334.191,316.669,361.561,28.588,18.562,28.588 +2159,47.732,357.193,492.869,173.622,437.692,346.573,489.625,16.985,146.233,16.985,338.948,316.452,361.156,26.327,18.487,26.327 +2160,47.757,356.320,487.212,172.253,442.953,347.612,485.008,14.201,138.576,14.201,342.671,316.343,360.635,26.432,18.702,26.432 +2161,47.781,356.320,487.212,172.253,442.953,347.612,485.008,14.201,138.576,14.201,342.671,316.343,360.635,26.432,18.702,26.432 +2162,47.805,355.735,483.357,171.381,447.610,348.281,481.901,11.053,130.649,11.053,345.196,316.070,360.386,24.322,19.596,24.322 +2163,47.829,355.518,477.864,170.353,451.307,348.571,476.961,7.411,122.593,7.411,346.068,316.153,360.078,24.315,21.947,24.315 +2164,47.853,355.518,477.864,170.353,451.307,348.571,476.961,7.411,122.593,7.411,346.068,316.153,360.078,24.315,21.947,24.315 +2165,47.874,356.111,474.395,170.570,454.951,349.411,473.722,5.733,114.305,5.733,346.175,315.716,359.642,24.379,22.343,24.379 +2166,47.898,356.328,471.712,171.101,457.813,349.766,471.262,3.921,105.880,3.921,345.178,314.968,358.333,26.213,22.611,26.213 +2167,47.922,357.065,470.203,171.803,459.974,350.532,469.877,2.862,97.595,2.862,344.919,314.550,358.001,24.170,22.732,24.170 +2168,47.946,357.065,470.203,171.803,459.974,350.532,469.877,2.862,97.595,2.862,344.919,314.550,358.001,24.170,22.732,24.170 +2169,47.971,357.461,469.078,175.000,462.000,352.540,468.898,2.087,90.000,2.087,345.499,312.000,355.347,24.130,18.000,24.130 +2170,47.996,357.495,468.201,175.839,462.015,352.970,468.082,1.501,81.730,1.501,345.406,313.123,354.458,24.123,17.893,24.123 +2171,48.020,357.495,468.201,175.839,462.015,352.970,468.082,1.501,81.730,1.501,345.406,313.123,354.458,24.123,17.893,24.123 +2172,48.042,358.003,467.372,176.127,461.431,353.106,467.264,1.262,73.580,1.262,344.335,313.094,354.130,25.082,17.655,25.082 +2173,48.068,358.502,467.918,175.924,460.137,352.999,467.763,1.610,65.011,1.610,343.427,314.083,354.438,23.188,16.266,23.188 +2174,48.093,358.460,468.741,175.735,459.040,352.882,468.561,1.848,56.848,1.848,343.563,314.284,354.725,24.149,15.830,24.149 +2175,48.117,358.460,468.741,175.735,459.040,352.882,468.561,1.848,56.848,1.848,343.563,314.284,354.725,24.149,15.830,24.149 +2176,48.140,358.934,469.939,175.294,456.809,352.613,469.649,2.624,48.977,2.624,342.786,314.867,355.442,24.158,15.994,24.158 +2177,48.164,358.899,471.564,174.788,454.107,351.858,471.108,3.706,41.424,3.706,341.487,314.755,355.598,24.208,14.909,24.208 +2178,48.189,358.899,471.564,174.788,454.107,351.858,471.108,3.706,41.424,3.706,341.487,314.755,355.598,24.208,14.909,24.208 +2179,48.210,359.407,473.561,174.065,451.435,351.023,472.827,5.001,34.226,5.001,339.465,315.621,356.298,24.257,14.247,24.257 +2180,48.235,360.135,476.262,174.491,448.076,350.999,475.238,6.392,27.960,6.392,338.484,316.708,356.870,25.290,15.171,25.290 +2181,48.259,364.118,480.204,173.771,445.102,349.770,477.716,9.837,22.122,9.837,328.844,315.694,357.967,21.188,14.415,21.188 +2182,48.283,364.118,480.204,173.771,445.102,349.770,477.716,9.837,22.122,9.837,328.844,315.694,357.967,21.188,14.415,21.188 +2183,48.307,377.345,486.096,173.860,442.448,349.235,480.147,11.949,17.335,11.949,301.294,315.695,358.760,20.423,13.364,20.423 +2184,48.332,425.818,503.278,174.201,438.456,348.197,485.085,13.191,12.974,13.191,200.641,316.001,360.090,18.636,13.093,18.636 +2185,48.357,412.833,507.313,175.354,434.670,347.306,488.941,15.662,8.631,15.662,224.331,315.970,360.438,18.618,12.782,18.618 +2186,48.381,412.833,507.313,175.354,434.670,347.306,488.941,15.662,8.631,15.662,224.331,315.970,360.438,18.618,12.782,18.618 +2187,48.407,378.818,504.562,176.685,430.233,345.801,493.884,17.921,3.832,17.921,291.590,315.900,360.992,21.516,12.995,21.516 +2188,48.432,365.897,507.743,179.449,425.266,344.454,498.619,23.051,178.301,23.051,314.497,315.217,361.104,25.099,13.028,25.099 +2189,48.457,357.489,512.455,182.151,419.400,341.906,504.393,27.357,172.360,27.357,326.802,314.089,361.890,28.023,14.589,28.023 +2190,48.480,357.489,512.455,182.151,419.400,341.906,504.393,27.357,172.360,27.357,326.802,314.089,361.890,28.023,14.589,28.023 +2191,48.505,351.625,517.103,185.527,413.053,339.050,509.280,31.887,166.144,31.887,332.755,314.804,362.374,28.963,16.343,28.963 +2192,48.529,341.103,520.860,190.138,408.160,335.249,516.554,36.337,159.775,36.337,347.708,313.555,362.242,30.564,15.606,30.564 +2193,48.554,338.951,527.986,195.473,401.938,331.468,521.413,41.293,153.593,41.293,342.124,313.061,362.045,28.094,16.381,28.094 +2194,48.578,338.951,527.986,195.473,401.938,331.468,521.413,41.293,153.593,41.293,342.124,313.061,362.045,28.094,16.381,28.094 +2195,48.601,331.974,533.567,201.652,395.673,325.899,527.224,46.232,147.407,46.232,344.327,312.078,361.892,27.791,17.803,27.791 +2196,48.626,325.019,539.173,209.013,390.515,320.055,532.907,51.618,140.925,51.618,345.144,312.046,361.132,27.351,17.696,27.351 +2197,48.651,325.019,539.173,209.013,390.515,320.055,532.907,51.618,140.925,51.618,345.144,312.046,361.132,27.351,17.696,27.351 +2198,48.674,317.020,543.556,216.396,384.439,313.153,537.533,57.295,134.409,57.295,347.889,311.183,362.203,26.059,19.550,26.059 +2199,48.700,309.083,546.983,225.721,380.610,306.538,541.977,63.054,127.794,63.054,349.710,310.750,360.941,23.504,18.014,23.504 +2200,48.724,300.535,550.867,234.863,376.460,298.498,545.514,69.169,121.701,69.169,349.812,310.917,361.267,21.875,18.217,21.875 +2201,48.749,300.535,550.867,234.863,376.460,298.498,545.514,69.169,121.701,69.169,349.812,310.917,361.267,21.875,18.217,21.875 +2202,48.774,291.890,554.666,244.524,373.867,290.329,548.544,75.694,115.159,75.694,348.522,309.499,361.157,21.909,17.431,21.909 +2203,48.800,283.395,557.854,254.823,371.927,282.399,550.533,82.252,108.869,82.252,346.609,309.966,361.387,24.590,17.440,24.590 +2204,48.823,271.704,561.225,265.309,370.570,271.336,550.921,87.955,102.680,87.955,340.283,310.537,360.904,23.378,17.146,23.378 +2205,48.847,271.704,561.225,265.309,370.570,271.336,550.921,87.955,102.680,87.955,340.283,310.537,360.904,23.378,17.146,23.378 +2206,48.871,260.218,603.229,275.829,370.271,265.323,550.821,95.563,96.633,95.563,256.126,310.674,361.437,25.567,17.094,25.567 +2207,48.895,251.457,562.684,286.061,371.535,254.005,549.859,101.238,90.785,101.238,336.152,311.149,362.303,23.930,16.766,23.930 +2208,48.921,251.457,562.684,286.061,371.535,254.005,549.859,101.238,90.785,101.238,336.152,311.149,362.303,23.930,16.766,23.930 +2209,48.942,243.241,554.614,296.121,374.350,245.313,548.009,107.411,84.719,107.411,347.965,310.726,361.810,23.914,17.229,23.914 +2210,48.968,234.174,550.256,306.157,377.667,236.695,544.474,113.557,78.781,113.557,348.720,310.845,361.334,23.771,18.369,23.771 +2211,48.992,226.676,545.224,315.775,381.570,229.371,540.480,119.601,72.848,119.601,350.787,311.064,361.700,24.694,20.184,24.694 +2212,49.017,226.676,545.224,315.775,381.570,229.371,540.480,119.601,72.848,119.601,350.787,311.064,361.700,24.694,20.184,24.694 +2213,49.041,219.080,540.969,324.328,386.573,222.501,536.160,125.421,67.036,125.421,350.032,310.683,361.835,25.505,21.099,25.505 +2214,49.066,212.120,536.028,331.785,392.450,216.255,531.285,131.085,61.032,131.085,348.552,311.009,361.137,25.982,21.404,25.982 +2215,49.091,205.734,530.396,338.032,398.426,210.243,526.102,136.397,54.972,136.397,348.724,312.212,361.178,26.069,20.916,26.069 +2216,49.116,205.734,530.396,338.032,398.426,210.243,526.102,136.397,54.972,136.397,348.724,312.212,361.178,26.069,20.916,26.069 +2217,49.140,200.559,525.728,343.770,404.951,205.941,521.462,141.597,48.814,141.597,347.036,312.508,360.772,28.766,20.414,28.766 +2218,49.163,195.008,519.784,348.784,411.183,201.592,515.421,146.470,41.864,146.470,344.756,313.156,360.554,27.669,18.686,27.669 +2219,49.188,195.008,519.784,348.784,411.183,201.592,515.421,146.470,41.864,146.470,344.756,313.156,360.554,27.669,18.686,27.669 +2220,49.210,189.653,513.679,352.791,417.901,197.493,509.333,151.002,35.740,151.002,342.380,314.097,360.307,26.385,17.091,26.385 +2221,49.235,185.957,507.407,356.173,424.314,194.212,503.590,155.179,29.578,155.179,342.368,314.685,360.557,25.686,16.218,25.686 +2222,49.258,179.701,502.335,358.524,430.299,191.646,497.768,159.076,23.587,159.076,334.363,315.789,359.938,24.807,14.741,24.807 +2223,49.283,179.701,502.335,358.524,430.299,191.646,497.768,159.076,23.587,159.076,334.363,315.789,359.938,24.807,14.741,24.807 +2224,49.308,174.802,497.361,360.835,435.450,190.013,492.645,162.774,17.694,162.774,328.345,315.634,360.195,24.079,14.425,24.079 +2225,49.333,168.701,492.344,362.397,440.135,188.739,487.155,165.481,12.022,165.481,318.401,316.531,359.800,24.383,14.336,24.383 +2226,49.357,158.342,489.732,363.304,443.833,188.104,483.618,168.391,6.506,168.391,298.477,316.397,359.244,23.858,13.927,23.858 +2227,49.382,158.342,489.732,363.304,443.833,188.104,483.618,168.391,6.506,168.391,298.477,316.397,359.244,23.858,13.927,23.858 +2228,49.407,143.188,486.801,364.095,446.877,187.485,480.524,171.935,2.066,171.935,269.691,316.335,359.168,20.712,13.502,20.712 +2229,49.432,109.217,486.293,364.435,449.678,187.212,476.293,172.694,177.964,172.694,201.072,315.476,358.338,18.642,13.796,18.642 +2230,49.457,108.141,482.498,364.827,451.261,187.044,474.406,174.144,174.310,174.144,199.798,315.824,358.432,18.620,15.146,18.620 +2231,49.481,108.141,482.498,364.827,451.261,187.044,474.406,174.144,174.310,174.144,199.798,315.824,358.432,18.620,15.146,18.620 +2232,49.505,147.660,475.603,364.632,453.254,186.725,471.711,174.311,170.693,174.311,279.204,316.788,357.721,20.134,14.258,20.134 +2233,49.530,167.230,472.750,364.352,454.375,186.216,471.161,175.217,166.685,175.217,319.728,316.815,357.832,19.732,15.087,19.732 +2234,49.555,173.716,471.730,363.862,455.515,185.971,470.761,175.480,161.917,175.480,332.492,316.881,357.079,21.695,16.180,21.695 +2235,49.578,173.716,471.730,363.862,455.515,185.971,470.761,175.480,161.917,175.480,332.492,316.881,357.079,21.695,16.180,21.695 +2236,49.602,176.795,472.612,363.209,455.686,185.757,471.970,175.898,156.435,175.898,338.354,316.823,356.324,23.366,17.357,23.366 +2237,49.627,178.249,472.482,363.230,456.633,185.696,471.950,175.914,150.602,175.914,341.416,316.054,356.348,23.369,15.666,23.369 +2238,49.651,178.249,472.482,363.230,456.633,185.696,471.950,175.914,150.602,175.914,341.416,316.054,356.348,23.369,15.666,23.369 +2239,49.674,179.737,472.232,362.360,456.292,185.230,471.829,175.804,143.383,175.804,344.568,315.409,355.583,22.719,17.673,22.719 +2240,49.700,180.296,473.165,361.865,456.345,185.022,472.783,175.382,135.892,175.382,345.701,314.812,355.185,23.278,17.242,23.278 +2241,49.724,180.404,474.343,361.267,456.039,184.766,473.937,174.680,127.946,174.680,346.041,314.785,354.802,23.340,17.274,23.340 +2242,49.749,180.404,474.343,361.267,456.039,184.766,473.937,174.680,127.946,174.680,346.041,314.785,354.802,23.340,17.274,23.340 +2243,49.774,180.433,476.379,360.971,454.757,185.095,475.859,173.636,119.924,173.636,344.881,313.953,354.263,23.959,17.374,23.959 +2244,49.799,180.871,478.274,360.965,453.086,185.432,477.665,172.390,111.801,172.390,345.280,313.268,354.484,23.720,17.455,23.720 +2245,49.823,181.331,481.151,360.471,451.422,185.442,480.488,170.831,103.392,170.831,346.522,312.363,354.849,24.393,18.066,24.393 +2246,49.847,181.331,481.151,360.471,451.422,185.442,480.488,170.831,103.392,170.831,346.522,312.363,354.849,24.393,18.066,24.393 +2247,49.872,182.110,484.099,360.767,448.781,186.358,483.263,168.867,95.599,168.867,346.909,312.033,355.569,23.966,18.421,23.966 +2248,49.897,183.034,487.715,360.084,445.666,187.137,486.726,166.452,87.217,166.452,347.066,311.459,355.508,25.347,18.166,25.347 +2249,49.922,183.699,492.221,361.611,440.691,189.180,490.665,164.148,78.871,164.148,347.651,312.583,359.048,24.750,22.198,24.750 +2250,49.946,183.699,492.221,361.611,440.691,189.180,490.665,164.148,78.871,164.148,347.651,312.583,359.048,24.750,22.198,24.750 +2251,49.969,185.148,496.798,360.541,435.225,190.862,494.835,161.046,70.201,161.046,347.597,313.617,359.681,25.775,21.866,25.775 +2252,49.993,186.953,501.810,358.490,430.161,192.541,499.541,157.904,61.736,157.904,347.655,313.376,359.718,25.714,20.693,25.714 +2253,50.018,186.953,501.810,358.490,430.161,192.541,499.541,157.904,61.736,157.904,347.655,313.376,359.718,25.714,20.693,25.714 +2254,50.040,188.267,507.631,356.170,424.369,194.698,504.534,154.290,53.067,154.290,346.252,313.605,360.528,25.795,19.366,25.795 +2255,50.066,190.752,513.828,353.250,417.750,197.966,509.741,150.468,45.000,150.468,344.326,313.955,360.907,26.510,19.092,26.510 +2256,50.091,193.630,520.447,349.440,411.928,201.302,515.343,146.365,37.030,146.365,342.806,314.593,361.236,26.698,18.179,26.698 +2257,50.116,193.630,520.447,349.440,411.928,201.302,515.343,146.365,37.030,146.365,342.806,314.593,361.236,26.698,18.179,26.698 +2258,50.140,198.123,526.520,345.000,405.713,205.477,520.734,141.804,29.240,141.804,342.833,314.591,361.549,26.876,17.786,26.876 +2259,50.164,203.406,532.010,339.459,399.831,209.970,525.894,137.026,21.417,137.026,343.407,314.596,361.350,26.890,17.094,26.890 +2260,50.188,203.406,532.010,339.459,399.831,209.970,525.894,137.026,21.417,137.026,343.407,314.596,361.350,26.890,17.094,26.890 +2261,50.210,208.266,537.389,333.209,394.189,214.532,530.430,132.002,13.749,132.002,342.585,314.799,361.313,25.062,16.203,25.062 +2262,50.235,213.393,544.546,326.521,388.809,220.420,535.146,126.781,6.189,126.781,337.993,314.626,361.467,24.938,15.368,24.938 +2263,50.258,220.442,550.161,318.492,383.592,226.873,539.591,121.319,178.831,121.319,337.036,313.261,361.782,24.652,14.997,24.652 +2264,50.283,220.442,550.161,318.492,383.592,226.873,539.591,121.319,178.831,121.319,337.036,313.261,361.782,24.652,14.997,24.652 +2265,50.308,228.756,554.182,310.187,379.229,233.982,543.301,115.650,171.336,115.650,337.639,314.296,361.782,24.638,15.121,24.638 +2266,50.334,237.449,557.300,301.171,375.354,241.464,546.220,109.916,163.977,109.916,338.401,313.873,361.972,23.505,15.600,23.505 +2267,50.358,246.975,559.362,291.836,372.285,249.637,548.824,104.175,156.801,104.175,341.257,313.035,362.996,23.489,16.151,23.489 +2268,50.384,246.975,559.362,291.836,372.285,249.637,548.824,104.175,156.801,104.175,341.257,313.035,362.996,23.489,16.151,23.489 +2269,50.408,256.920,559.988,281.933,370.523,258.369,550.269,98.480,149.859,98.480,342.858,312.747,362.511,23.864,16.403,23.864 +2270,50.434,266.378,559.065,272.167,369.717,266.781,550.582,92.716,142.431,92.716,344.846,312.660,361.832,23.649,16.828,23.649 +2271,50.458,272.415,558.390,258.250,373.750,271.961,552.464,85.615,135.000,85.615,346.593,300.520,358.479,26.462,16.971,26.462 +2272,50.482,272.415,558.390,258.250,373.750,271.961,552.464,85.615,135.000,85.615,346.593,300.520,358.479,26.462,16.971,26.462 +2273,50.505,282.497,556.629,246.461,379.201,281.916,553.388,79.824,127.569,79.824,348.836,291.930,355.421,23.976,16.950,23.976 +2274,50.530,293.138,553.325,237.112,382.785,292.567,551.243,74.650,120.700,74.650,349.937,289.986,354.255,21.007,17.654,21.007 +2275,50.555,301.160,550.910,228.521,389.078,300.691,549.705,68.749,113.325,68.749,349.139,284.698,351.725,21.488,17.649,21.488 +2276,50.578,301.160,550.910,228.521,389.078,300.691,549.705,68.749,113.325,68.749,349.139,284.698,351.725,21.488,17.649,21.488 +2277,50.602,309.145,547.435,220.484,397.554,309.298,547.739,63.322,106.390,63.322,348.826,276.184,348.144,22.880,17.381,22.880 +2278,50.627,316.329,542.986,214.284,406.797,317.641,545.081,57.943,99.462,57.943,349.057,267.477,344.113,24.407,17.591,24.407 +2279,50.651,316.329,542.986,214.284,406.797,317.641,545.081,57.943,99.462,57.943,349.057,267.477,344.113,24.407,17.591,24.407 +2280,50.674,322.963,539.423,209.666,415.181,324.848,541.911,52.842,92.490,52.842,347.387,260.232,341.144,26.745,17.505,26.745 +2281,50.699,328.928,534.781,204.525,395.115,324.382,529.760,47.847,85.533,47.847,346.968,311.395,360.515,28.468,17.634,28.468 +2282,50.725,334.710,529.560,199.250,400.750,329.519,524.676,43.255,78.690,43.255,345.339,311.825,359.593,28.232,17.454,28.232 +2283,50.749,334.710,529.560,199.250,400.750,329.519,524.676,43.255,78.690,43.255,345.339,311.825,359.593,28.232,17.454,28.232 +2284,50.774,339.733,523.954,194.802,406.400,334.347,519.640,38.695,71.707,38.695,345.613,311.809,359.415,28.257,16.871,28.257 +2285,50.801,344.002,518.622,190.933,411.766,338.012,514.491,34.592,64.894,34.592,344.245,312.695,358.797,29.181,16.605,29.181 +2286,50.824,347.597,514.503,187.567,417.009,340.741,510.524,30.129,57.680,30.129,342.986,313.542,358.839,28.318,15.850,28.318 +2287,50.848,347.597,514.503,187.567,417.009,340.741,510.524,30.129,57.680,30.129,342.986,313.542,358.839,28.318,15.850,28.318 +2288,50.873,351.033,508.350,184.626,421.809,343.692,504.600,27.059,50.398,27.059,342.144,313.445,358.632,28.536,15.410,28.536 +2289,50.898,353.856,503.370,181.868,426.140,345.550,499.714,23.758,43.332,23.758,340.753,314.234,358.904,27.642,15.618,27.642 +2290,50.922,356.836,498.938,179.665,430.592,346.923,495.221,20.556,36.200,20.556,337.430,315.411,358.603,26.685,15.514,26.685 +2291,50.946,356.836,498.938,179.665,430.592,346.923,495.221,20.556,36.200,20.556,337.430,315.411,358.603,26.685,15.514,26.685 +2292,50.969,360.829,493.635,177.750,434.449,348.420,489.637,17.858,29.081,17.858,332.668,315.281,358.742,22.812,15.366,22.812 +2293,50.994,368.479,490.387,175.901,437.788,349.053,485.023,15.438,22.153,15.438,318.651,315.694,358.957,20.384,14.792,20.384 +2294,51.019,368.479,490.387,175.901,437.788,349.053,485.023,15.438,22.153,15.438,318.651,315.694,358.957,20.384,14.792,20.384 +2295,51.041,401.306,495.124,174.413,441.101,348.995,483.499,12.529,15.027,12.529,252.073,316.608,359.246,18.764,14.578,18.764 +2296,51.066,426.926,495.891,172.973,444.055,349.098,481.066,10.784,7.815,10.784,201.426,316.484,359.880,18.805,14.297,18.805 +2297,51.091,411.770,489.378,172.521,446.416,349.463,478.994,9.462,0.577,9.462,233.447,317.075,359.780,18.577,14.318,18.577 +2298,51.116,411.770,489.378,172.521,446.416,349.463,478.994,9.462,0.577,9.462,233.447,317.075,359.780,18.577,14.318,18.577 +2299,51.140,386.478,483.658,171.615,448.777,349.304,478.562,7.806,173.180,7.806,285.131,316.528,360.176,20.158,14.317,20.158 +2300,51.163,375.665,481.392,171.507,450.572,349.572,477.499,8.486,165.646,8.486,307.416,317.474,360.179,24.180,15.380,24.180 +2301,51.188,375.665,481.392,171.507,450.572,349.572,477.499,8.486,165.646,8.486,307.416,317.474,360.179,24.180,15.380,24.180 +2302,51.209,368.860,477.503,171.514,451.790,349.838,475.221,6.843,158.129,6.843,321.374,317.162,359.690,24.306,15.234,24.306 +2303,51.235,364.401,477.045,171.253,451.405,349.726,475.342,6.617,150.555,6.617,330.540,317.303,360.085,25.410,17.529,25.410 +2304,51.260,360.881,476.941,171.087,450.974,349.661,475.544,7.097,142.859,7.097,337.870,316.978,360.483,24.557,19.289,24.557 +2305,51.286,360.881,476.941,171.087,450.974,349.661,475.544,7.097,142.859,7.097,337.870,316.978,360.483,24.557,19.289,24.557 +2306,51.309,358.791,477.804,171.250,450.250,349.695,476.598,7.549,135.000,7.549,342.368,316.784,360.719,25.440,20.506,25.440 +2307,51.334,356.507,481.462,171.913,449.162,349.262,480.164,10.158,127.131,10.158,345.355,316.010,360.075,25.314,21.651,25.314 +2308,51.359,355.544,483.283,172.583,447.182,349.112,481.975,11.493,118.610,11.493,346.715,315.324,359.844,25.296,21.947,25.296 +2309,51.384,355.544,483.283,172.583,447.182,349.112,481.975,11.493,118.610,11.493,346.715,315.324,359.844,25.296,21.947,25.296 +2310,51.408,355.016,486.081,174.151,444.932,349.057,484.695,13.097,110.556,13.097,346.497,314.138,358.734,26.230,20.833,26.230 +2311,51.433,354.317,489.523,176.581,442.372,349.258,488.153,15.154,102.137,15.154,346.798,312.553,357.280,27.107,18.617,27.107 +2312,51.457,353.705,493.148,177.934,439.327,348.706,491.559,17.630,93.786,17.630,346.649,308.913,357.141,26.943,19.193,26.943 +2313,51.482,353.705,493.148,177.934,439.327,348.706,491.559,17.630,93.786,17.630,346.649,308.913,357.141,26.943,19.193,26.943 +2314,51.505,352.640,497.395,180.297,433.657,347.597,495.533,20.259,85.914,20.259,345.999,310.993,356.751,27.653,17.598,27.653 +2315,51.530,351.708,501.663,182.495,427.644,346.187,499.287,23.289,77.905,23.289,345.337,312.268,357.359,27.696,17.461,27.696 +2316,51.555,349.400,507.200,184.697,421.928,343.864,504.432,26.565,69.955,26.565,346.143,312.866,358.521,28.622,17.557,28.622 +2317,51.579,349.400,507.200,184.697,421.928,343.864,504.432,26.565,69.955,26.565,346.143,312.866,358.521,28.622,17.557,28.622 +2318,51.604,347.513,512.157,187.494,416.701,341.524,508.688,30.079,61.847,30.079,344.940,313.239,358.783,27.965,16.757,27.965 +2319,51.631,345.984,518.494,189.783,411.444,338.188,513.260,33.873,54.638,33.873,341.150,313.418,359.928,27.968,18.020,27.968 +2320,51.655,345.984,518.494,189.783,411.444,338.188,513.260,33.873,54.638,33.873,341.150,313.418,359.928,27.968,18.020,27.968 +2321,51.677,349.914,525.545,194.128,404.981,336.778,515.359,37.794,47.911,37.794,327.490,313.215,360.734,21.255,16.350,21.255 +2322,51.703,391.195,572.679,197.896,400.017,331.519,521.331,40.711,42.341,40.711,203.376,313.058,360.828,19.038,16.314,19.038 +2323,51.728,351.854,552.629,202.663,394.608,325.691,527.611,43.719,36.634,43.719,289.277,313.392,361.676,22.676,15.864,22.676 +2324,51.755,333.927,547.423,207.875,390.037,320.830,531.425,50.694,30.885,50.694,320.561,313.331,361.910,27.166,15.512,27.166 +2325,51.781,333.927,547.423,207.875,390.037,320.830,531.425,50.694,30.885,50.694,320.561,313.331,361.910,27.166,15.512,27.166 +2326,51.806,324.345,547.568,214.496,384.398,315.714,535.108,55.290,24.228,55.290,332.737,312.926,363.052,22.648,15.913,22.648 +2327,51.832,315.637,550.814,221.849,380.379,309.264,539.334,60.967,17.301,60.967,336.547,312.535,362.808,23.881,15.370,23.881 +2328,51.857,306.459,554.145,230.023,376.094,301.655,543.139,66.416,10.204,66.416,339.487,312.419,363.504,22.470,16.633,22.470 +2329,51.881,306.459,554.145,230.023,376.094,301.655,543.139,66.416,10.204,66.416,339.487,312.419,363.504,22.470,16.633,22.470 +2330,51.907,297.877,557.224,238.680,372.656,294.223,546.029,71.925,3.082,71.925,340.549,311.625,364.101,20.556,17.536,20.556 +2331,51.933,289.473,560.068,248.017,370.240,287.022,548.305,78.232,176.055,78.232,340.522,311.054,364.554,22.761,18.164,22.761 +2332,51.960,278.006,561.555,258.207,369.006,276.703,549.825,83.660,168.896,83.660,339.908,311.038,363.512,24.626,18.525,24.626 +2333,51.987,278.006,561.555,258.207,369.006,276.703,549.825,83.660,168.896,83.660,339.908,311.038,363.512,24.626,18.525,24.626 +2334,52.009,268.500,561.000,268.201,369.089,268.500,550.045,90.000,161.804,90.000,340.000,311.501,361.911,25.000,18.019,25.000 +2335,52.036,259.167,560.364,278.115,370.174,260.191,550.304,95.816,155.002,95.816,341.815,311.426,362.039,25.885,16.725,25.885 +2336,52.061,249.831,559.534,287.825,371.716,251.949,549.688,102.137,148.282,102.137,342.934,311.442,363.074,22.980,16.345,22.980 +2337,52.087,249.831,559.534,287.825,371.716,251.949,549.688,102.137,148.282,102.137,342.934,311.442,363.074,22.980,16.345,22.980 +2338,52.109,241.013,557.180,297.343,374.171,244.181,547.398,107.942,141.216,107.942,341.794,312.040,362.359,23.404,16.314,23.404 +2339,52.137,231.041,555.407,305.979,377.469,236.025,544.195,113.962,134.397,113.962,336.993,311.899,361.534,22.947,16.166,22.947 +2340,52.161,217.260,560.398,314.128,381.599,228.641,540.929,120.311,127.694,120.311,316.285,312.126,361.388,22.180,16.689,22.180 +2341,52.187,217.260,560.398,314.128,381.599,228.641,540.929,120.311,127.694,120.311,316.285,312.126,361.388,22.180,16.689,22.180 +2342,52.210,191.751,575.756,321.301,385.962,219.825,535.296,124.756,121.430,124.756,262.590,312.491,361.081,19.735,16.686,19.735 +2343,52.238,209.458,540.181,327.642,391.027,215.866,532.581,130.138,114.791,130.138,340.662,312.826,360.543,25.384,18.030,25.384 +2344,52.263,206.790,532.823,333.767,396.608,211.344,528.290,135.131,108.741,135.131,346.475,312.452,359.327,27.105,17.333,27.105 +2345,52.289,206.790,532.823,333.767,396.608,211.344,528.290,135.131,108.741,135.131,346.475,312.452,359.327,27.105,17.333,27.105 +2346,52.311,202.157,527.532,339.210,402.875,206.454,523.915,139.907,102.381,139.907,347.792,311.843,359.024,28.112,17.462,28.112 +2347,52.339,198.625,521.945,344.983,409.313,202.743,518.991,144.335,95.991,144.335,348.881,311.647,359.016,28.741,19.443,28.741 +2348,52.363,194.678,515.509,349.818,415.488,199.091,512.808,148.533,89.608,148.533,348.380,311.089,358.728,25.827,20.438,25.827 +2349,52.388,194.678,515.509,349.818,415.488,199.091,512.808,148.533,89.608,148.533,348.380,311.089,358.728,25.827,20.438,25.827 +2350,52.411,191.751,510.208,353.965,421.645,196.500,507.722,152.364,83.173,152.364,348.130,311.284,358.853,25.988,21.271,25.988 +2351,52.436,188.976,504.796,356.982,427.074,194.139,502.483,155.869,76.908,155.869,347.570,311.819,358.884,25.021,21.813,25.021 +2352,52.461,186.975,499.867,359.270,431.688,192.383,497.804,159.117,70.317,159.117,347.409,313.604,358.985,24.821,21.480,24.821 +2353,52.486,186.975,499.867,359.270,431.688,192.383,497.804,159.117,70.317,159.117,347.409,313.604,358.985,24.821,21.480,24.821 +2354,52.507,185.251,495.354,361.115,436.236,190.990,493.490,162.013,63.997,162.013,346.914,314.350,358.981,24.470,21.483,24.470 +2355,52.534,183.267,491.975,362.232,440.579,189.647,490.228,164.687,57.529,164.687,345.910,314.456,359.140,25.858,20.325,25.858 +2356,52.558,181.479,488.410,363.525,443.891,189.042,486.646,166.873,50.133,166.873,343.734,315.227,359.266,25.451,18.252,25.451 +2357,52.581,181.479,488.410,363.525,443.891,189.042,486.646,166.873,50.133,166.873,343.734,315.227,359.266,25.451,18.252,25.451 +2358,52.607,178.985,484.923,363.799,446.639,187.769,483.174,168.739,43.655,168.739,341.638,316.239,359.552,23.937,16.521,23.937 +2359,52.632,177.664,482.024,364.158,449.155,187.136,480.414,170.354,37.185,170.354,340.298,316.808,359.514,23.306,15.329,23.306 +2360,52.658,173.872,480.136,364.544,450.926,186.882,478.202,171.548,30.964,171.548,333.177,317.101,359.483,22.857,14.749,22.857 +2361,52.682,173.872,480.136,364.544,450.926,186.882,478.202,171.548,30.964,171.548,333.177,317.101,359.483,22.857,14.749,22.857 +2362,52.707,170.364,479.009,364.810,451.759,186.597,476.774,172.162,24.952,172.162,327.146,317.226,359.919,23.812,14.935,23.812 +2363,52.732,167.228,478.854,364.814,452.215,186.571,476.399,172.767,19.612,172.767,320.742,317.839,359.739,22.928,14.455,22.928 +2364,52.758,161.758,479.600,365.066,451.807,187.155,476.364,172.739,14.470,172.739,307.970,317.251,359.175,22.923,14.399,22.923 +2365,52.782,161.758,479.600,365.066,451.807,187.155,476.364,172.739,14.470,172.739,307.970,317.251,359.175,22.923,14.399,22.923 +2366,52.807,154.316,480.944,364.916,450.590,187.167,477.056,173.249,9.802,173.249,293.097,317.624,359.257,20.409,14.141,20.409 +2367,52.831,150.139,483.839,364.776,448.782,187.640,478.746,172.266,5.793,172.266,283.423,317.126,359.114,20.148,13.972,20.148 +2368,52.856,143.941,488.532,364.913,446.829,188.605,481.334,170.845,2.726,170.845,268.625,316.689,359.105,20.019,13.556,20.019 +2369,52.879,143.941,488.532,364.913,446.829,188.605,481.334,170.845,2.726,170.845,268.625,316.689,359.105,20.019,13.556,20.019 +2370,52.903,141.090,493.793,364.000,443.500,189.331,484.463,169.053,0.000,169.053,260.267,316.000,358.538,20.355,13.000,20.355 +2371,52.927,144.060,499.025,362.987,439.632,189.933,488.176,166.693,177.964,166.693,264.883,316.298,359.161,21.050,13.849,21.050 +2372,52.952,144.060,499.025,362.987,439.632,189.933,488.176,166.693,177.964,166.693,264.883,316.298,359.161,21.050,13.849,21.050 +2373,52.974,151.373,503.783,361.509,435.144,191.097,492.553,164.214,176.553,164.214,276.643,315.873,359.204,22.368,13.866,22.368 +2374,53.000,158.178,508.644,359.507,430.094,192.339,496.724,160.764,175.855,160.764,287.213,316.200,359.574,22.620,13.819,22.620 +2375,53.025,167.415,514.707,356.939,424.661,194.440,502.475,155.647,175.865,155.647,300.925,315.418,360.255,23.533,14.072,23.533 +2376,53.049,167.415,514.707,356.939,424.661,194.440,502.475,155.647,175.865,155.647,300.925,315.418,360.255,23.533,14.072,23.533 +2377,53.074,175.233,519.588,353.462,418.409,196.854,507.851,151.504,176.364,151.504,311.415,315.888,360.617,24.055,14.419,24.055 +2378,53.101,182.702,524.265,349.437,411.623,199.908,513.153,147.144,177.388,147.144,320.423,315.584,361.386,24.414,13.947,24.414 +2379,53.125,191.091,529.968,344.005,404.753,204.346,519.773,142.431,178.935,142.431,328.207,314.225,361.652,26.766,14.336,26.766 +2380,53.149,191.091,529.968,344.005,404.753,204.346,519.773,142.431,178.935,142.431,328.207,314.225,361.652,26.766,14.336,26.766 +2381,53.173,198.845,535.884,337.518,398.068,209.390,525.813,136.317,0.728,136.317,332.610,315.089,361.775,26.465,14.384,26.465 +2382,53.197,209.885,537.969,330.905,391.639,215.653,531.288,130.807,2.532,130.807,344.388,314.621,362.042,25.967,14.890,25.967 +2383,53.222,217.219,543.847,322.945,385.693,222.477,536.282,124.799,4.514,124.799,343.564,315.072,361.989,26.142,15.662,26.142 +2384,53.246,217.219,543.847,322.945,385.693,222.477,536.282,124.799,4.514,124.799,343.564,315.072,361.989,26.142,15.662,26.142 +2385,53.270,223.969,549.159,314.413,379.800,229.069,539.874,118.780,6.226,118.780,341.591,314.841,362.779,23.455,16.936,23.455 +2386,53.295,233.591,554.038,305.219,375.030,237.855,543.738,112.487,7.883,112.487,340.995,314.644,363.290,23.907,17.495,23.907 +2387,53.320,233.591,554.038,305.219,375.030,237.855,543.738,112.487,7.883,112.487,340.995,314.644,363.290,23.907,17.495,23.907 +2388,53.342,243.792,557.807,295.248,372.030,246.829,547.297,106.119,9.367,106.119,341.758,314.157,363.638,23.898,18.045,23.898 +2389,53.367,253.307,559.635,285.022,369.390,255.124,548.798,99.518,11.201,99.518,341.786,313.982,363.763,24.496,18.395,24.496 +2390,53.392,265.598,557.914,274.489,368.548,266.091,550.046,93.588,12.485,93.588,347.571,313.569,363.337,24.569,19.074,24.569 +2391,53.416,265.598,557.914,274.489,368.548,266.091,550.046,93.588,12.485,93.588,347.571,313.569,363.337,24.569,19.074,24.569 +2392,53.441,272.719,561.167,263.941,368.735,271.923,550.311,85.806,14.036,85.806,341.576,313.599,363.347,26.901,18.918,26.901 +2393,53.466,286.885,556.850,252.984,370.558,285.683,549.664,80.507,15.376,80.507,349.518,313.728,364.091,23.345,18.103,23.345 +2394,53.491,295.345,553.819,242.439,372.703,293.430,547.226,73.803,16.645,73.803,349.908,313.683,363.638,20.948,18.145,20.948 +2395,53.515,295.345,553.819,242.439,372.703,293.430,547.226,73.803,16.645,73.803,349.908,313.683,363.638,20.948,18.145,20.948 +2396,53.540,304.063,550.730,231.959,377.126,301.503,544.553,67.485,18.194,67.485,349.219,313.701,362.592,22.234,16.715,22.234 +2397,53.563,312.031,546.440,222.246,381.626,308.931,540.732,61.492,19.525,61.492,349.384,314.072,362.375,23.963,16.764,23.963 +2398,53.589,323.848,547.895,213.467,386.088,315.670,535.929,55.648,20.376,55.648,333.768,314.359,362.755,25.309,16.713,25.309 +2399,53.613,323.848,547.895,213.467,386.088,315.670,535.929,55.648,20.376,55.648,333.768,314.359,362.755,25.309,16.713,25.309 +2400,53.636,333.836,543.444,205.286,392.039,322.496,530.067,49.712,21.714,49.712,327.090,314.756,362.162,23.097,16.221,23.097 +2401,53.661,343.250,539.734,198.288,397.809,327.633,524.449,44.384,22.652,44.384,318.332,315.001,362.036,25.667,16.052,25.667 +2402,53.686,343.250,539.734,198.288,397.809,327.633,524.449,44.384,22.652,44.384,318.332,315.001,362.036,25.667,16.052,25.667 +2403,53.708,354.922,536.003,192.592,403.786,332.346,518.628,37.583,23.286,37.583,304.611,315.269,361.588,21.168,16.348,21.168 +2404,53.734,376.029,538.084,187.804,409.691,336.271,512.923,32.328,23.962,32.328,267.217,315.570,361.319,21.999,15.839,21.999 +2405,53.758,410.864,543.475,184.367,415.186,341.082,505.095,28.811,24.261,28.811,202.012,315.981,361.291,18.839,15.370,18.839 +2406,53.782,410.864,543.475,184.367,415.186,341.082,505.095,28.811,24.261,28.811,202.012,315.981,361.291,18.839,15.370,18.839 +2407,53.806,416.410,532.292,181.377,421.692,344.071,499.296,24.520,24.999,24.520,201.437,315.534,360.456,18.643,14.796,18.643 +2408,53.829,375.691,503.875,178.928,428.188,347.014,492.753,21.199,25.710,21.199,298.603,315.851,360.119,20.180,14.149,20.180 +2409,53.854,375.691,503.875,178.928,428.188,347.014,492.753,21.199,25.710,21.199,298.603,315.851,360.119,20.180,14.149,20.180 +2410,53.876,366.456,493.235,177.448,434.085,348.830,487.704,17.422,26.058,17.422,322.202,315.792,359.149,20.104,14.069,20.104 +2411,53.901,362.726,485.684,176.302,439.403,350.246,482.791,13.052,26.154,13.052,332.877,315.766,358.498,22.561,14.450,22.561 +2412,53.925,362.689,480.865,175.855,444.773,351.330,478.972,9.462,26.348,9.462,334.388,316.188,357.419,24.495,14.304,24.495 +2413,53.949,362.689,480.865,175.855,444.773,351.330,478.972,9.462,26.348,9.462,334.388,316.188,357.419,24.495,14.304,24.495 +2414,53.974,361.820,477.030,175.592,449.806,351.802,475.849,6.723,26.462,6.723,335.922,316.626,356.095,23.427,13.986,23.427 +2415,53.999,361.286,473.423,174.950,453.601,352.367,472.771,4.185,26.358,4.185,338.802,316.204,356.687,24.155,14.748,24.155 +2416,54.025,360.945,469.412,174.328,456.845,352.158,469.071,2.222,26.459,2.222,338.754,316.189,356.341,24.137,14.308,24.137 +2417,54.049,360.945,469.412,174.328,456.845,352.158,469.071,2.222,26.459,2.222,338.754,316.189,356.341,24.137,14.308,24.137 +2418,54.074,360.486,466.622,173.993,460.010,351.996,466.515,0.722,26.463,0.722,339.162,315.743,356.143,23.086,13.989,23.086 +2419,54.099,359.541,464.970,173.711,462.074,351.397,465.067,179.318,26.333,179.318,338.988,316.197,355.277,21.998,14.131,21.998 +2420,54.124,359.554,462.783,173.406,463.675,351.254,463.033,178.272,26.188,178.272,338.966,316.220,355.574,22.778,14.152,22.778 +2421,54.148,359.554,462.783,173.406,463.675,351.254,463.033,178.272,26.188,178.272,338.966,316.220,355.574,22.778,14.152,22.778 +2422,54.172,359.178,461.691,173.329,464.292,350.851,462.045,177.568,25.887,177.568,338.247,316.653,354.916,22.682,13.998,22.682 +2423,54.196,359.186,460.931,173.227,464.479,350.806,461.327,177.297,25.550,177.297,338.284,316.728,355.061,21.976,14.127,21.976 +2424,54.221,359.185,460.378,173.359,464.168,350.880,460.775,177.262,25.115,177.262,338.331,316.741,354.961,22.974,13.865,22.974 +2425,54.244,359.185,460.378,173.359,464.168,350.880,460.775,177.262,25.115,177.262,338.331,316.741,354.961,22.974,13.865,22.974 +2426,54.267,360.097,461.272,173.315,463.216,351.266,461.648,177.563,24.548,177.563,338.035,316.888,355.713,21.938,14.003,21.938 +2427,54.291,360.102,461.837,173.479,462.046,351.349,462.105,178.249,23.962,178.249,338.056,317.093,355.570,22.989,14.113,22.989 +2428,54.316,360.102,461.837,173.479,462.046,351.349,462.105,178.249,23.962,178.249,338.056,317.093,355.570,22.989,14.113,22.989 +2429,54.341,360.545,463.312,173.853,460.341,351.971,463.428,179.222,23.298,179.222,338.969,317.489,356.119,22.998,13.944,22.998 +2430,54.366,360.986,465.397,174.058,458.362,352.027,465.305,0.588,22.567,0.588,338.146,317.612,356.064,23.050,13.983,23.050 +2431,54.391,361.918,468.735,174.081,455.552,352.000,468.372,2.095,21.724,2.095,336.689,317.354,356.538,23.167,14.073,23.167 +2432,54.417,361.918,468.735,174.081,455.552,352.000,468.372,2.095,21.724,2.095,336.689,317.354,356.538,23.167,14.073,23.167 +2433,54.443,363.742,472.056,174.063,452.524,351.891,471.195,4.155,20.891,4.155,333.663,316.971,357.427,23.302,13.786,23.302 +2434,54.470,365.200,476.689,174.001,448.740,350.950,474.738,7.797,19.940,7.797,328.914,316.626,357.680,20.485,13.755,20.485 +2435,54.494,369.411,482.150,174.498,444.533,350.497,478.613,10.592,18.768,10.592,320.046,316.259,358.529,20.634,13.761,20.634 +2436,54.519,369.411,482.150,174.498,444.533,350.497,478.613,10.592,18.768,10.592,320.046,316.259,358.529,20.634,13.761,20.634 +2437,54.542,382.965,491.197,175.495,439.947,349.718,483.095,13.696,17.665,13.696,290.531,316.588,358.971,21.154,13.959,21.154 +2438,54.566,424.660,511.729,176.806,434.793,348.089,490.034,15.819,16.587,15.819,200.539,315.982,359.709,18.521,13.662,18.521 +2439,54.590,421.072,521.597,178.772,429.166,346.531,494.976,19.654,15.230,19.654,201.936,315.915,360.241,18.835,13.806,18.835 +2440,54.614,421.072,521.597,178.772,429.166,346.531,494.976,19.654,15.230,19.654,201.936,315.915,360.241,18.835,13.806,18.835 +2441,54.638,388.262,520.371,181.379,422.975,343.858,501.887,22.601,13.968,22.601,264.461,315.538,360.656,21.129,13.443,21.129 +2442,54.663,368.667,522.100,184.841,416.449,341.357,506.941,29.032,12.393,29.032,299.063,315.299,361.532,26.423,13.937,26.423 +2443,54.688,368.667,522.100,184.841,416.449,341.357,506.941,29.032,12.393,29.032,299.063,315.299,361.532,26.423,13.937,26.423 +2444,54.708,357.721,525.172,188.744,409.739,338.116,511.980,33.936,10.962,33.936,314.750,315.152,362.011,26.851,13.824,26.851 +2445,54.733,348.085,529.145,193.382,403.175,333.860,517.750,38.695,9.342,38.695,326.085,314.816,362.539,25.915,14.250,25.915 +2446,54.758,339.815,535.172,199.073,396.444,328.269,524.083,43.844,7.496,43.844,331.172,313.874,363.190,27.292,15.263,27.292 +2447,54.783,339.815,535.172,199.073,396.444,328.269,524.083,43.844,7.496,43.844,331.172,313.874,363.190,27.292,15.263,27.292 +2448,54.807,331.705,540.254,205.561,390.411,322.345,529.371,49.301,5.900,49.301,334.299,313.464,363.009,26.508,14.834,26.508 +2449,54.830,319.563,539.607,213.020,384.707,315.882,534.341,55.044,3.918,55.044,350.298,313.321,363.147,26.196,15.512,26.196 +2450,54.855,314.962,549.125,221.037,379.974,309.138,538.699,60.814,2.064,60.814,339.189,312.446,363.072,23.973,15.071,23.973 +2451,54.879,314.962,549.125,221.037,379.974,309.138,538.699,60.814,2.064,60.814,339.189,312.446,363.072,23.973,15.071,23.973 +2452,54.902,303.515,549.000,230.491,375.251,300.890,542.850,66.888,179.811,66.888,350.190,311.018,363.563,22.913,16.505,22.913 +2453,54.925,295.720,555.131,240.412,371.887,292.993,546.113,73.173,177.604,73.173,345.132,311.397,363.975,21.595,17.708,21.595 +2454,54.949,295.720,555.131,240.412,371.887,292.993,546.113,73.173,177.604,73.173,345.132,311.397,363.975,21.595,17.708,21.595 +2455,54.974,284.196,556.581,250.871,370.011,282.791,549.224,79.188,175.061,79.188,349.060,311.346,364.039,23.154,18.278,23.154 +2456,55.000,272.919,562.205,261.457,369.145,271.990,550.529,85.450,173.073,85.450,339.870,311.448,363.296,26.960,18.750,26.960 +2457,55.025,265.565,562.400,272.553,369.305,266.169,550.724,92.961,170.176,92.961,339.632,311.371,363.014,24.175,18.184,24.175 +2458,55.050,265.565,562.400,272.553,369.305,266.169,550.724,92.961,170.176,92.961,339.632,311.371,363.014,24.175,18.184,24.175 +2459,55.074,255.121,561.938,283.452,370.777,257.000,550.423,99.269,167.930,99.269,339.786,311.640,363.121,24.009,17.356,24.009 +2460,55.099,244.571,560.297,293.905,373.135,247.747,548.842,105.495,165.440,105.495,339.531,311.659,363.305,23.509,17.133,23.509 +2461,55.125,234.999,556.599,304.031,376.716,239.333,545.787,111.840,162.801,111.840,338.713,312.242,362.009,23.993,15.808,23.993 +2462,55.149,234.999,556.599,304.031,376.716,239.333,545.787,111.840,162.801,111.840,338.713,312.242,362.009,23.993,15.808,23.993 +2463,55.173,224.900,553.412,313.234,380.650,231.070,541.869,118.124,160.216,118.124,335.651,312.525,361.829,23.903,15.760,23.903 +2464,55.198,215.423,549.448,321.689,385.241,223.755,537.082,123.972,157.751,123.972,331.472,313.087,361.295,24.698,15.608,24.698 +2465,55.225,205.035,545.688,329.153,390.443,216.606,531.928,130.061,155.659,130.061,325.488,313.421,361.445,24.457,15.684,24.457 +2466,55.249,205.035,545.688,329.153,390.443,216.606,531.928,130.061,155.659,130.061,325.488,313.421,361.445,24.457,15.684,24.457 +2467,55.274,193.870,543.886,335.414,395.821,211.145,526.920,135.516,154.330,135.516,312.618,313.982,361.043,24.194,15.658,24.194 +2468,55.299,179.628,541.530,340.900,401.300,205.588,520.984,141.640,153.435,141.640,294.540,314.391,360.754,23.256,15.652,23.256 +2469,55.325,160.064,544.585,345.415,406.838,202.091,516.776,146.508,153.293,146.508,259.598,313.958,360.387,23.102,15.508,23.102 +2470,55.349,160.064,544.585,345.415,406.838,202.091,516.776,146.508,153.293,146.508,259.598,313.958,360.387,23.102,15.508,23.102 +2471,55.374,126.929,551.383,349.200,412.400,196.848,508.932,148.736,153.435,148.736,197.059,314.838,360.653,18.775,15.205,18.775 +2472,55.400,123.855,541.149,352.025,417.553,194.419,504.560,152.592,154.086,152.592,200.961,315.316,359.934,18.544,15.214,18.544 +2473,55.425,119.747,532.557,354.585,422.115,192.295,500.313,156.038,154.872,156.038,201.343,314.874,360.123,18.479,14.614,18.479 +2474,55.450,119.747,532.557,354.585,422.115,192.295,500.313,156.038,154.872,156.038,201.343,314.874,360.123,18.479,14.614,18.479 +2475,55.474,143.475,514.027,356.380,427.057,190.515,495.871,158.895,155.367,158.895,258.191,315.483,359.035,18.429,14.451,18.429 +2476,55.498,163.350,500.550,358.212,431.767,189.280,491.907,161.565,155.556,161.565,303.895,315.566,358.561,18.974,14.152,18.974 +2477,55.523,170.635,493.449,359.754,435.967,188.410,488.338,163.960,155.240,163.960,321.297,315.552,358.288,19.257,14.055,19.257 +2478,55.547,170.635,493.449,359.754,435.967,188.410,488.338,163.960,155.240,163.960,321.297,315.552,358.288,19.257,14.055,19.257 +2479,55.570,175.280,488.173,360.745,439.924,187.660,485.130,166.192,154.404,166.192,332.249,315.430,357.746,19.727,14.214,19.727 +2480,55.594,177.934,486.099,361.428,443.388,187.705,484.115,168.518,152.770,168.518,336.763,316.231,356.705,23.106,15.054,23.106 +2481,55.618,177.934,486.099,361.428,443.388,187.705,484.115,168.518,152.770,168.518,336.763,316.231,356.705,23.106,15.054,23.106 +2482,55.641,179.139,482.214,361.889,446.433,187.221,480.824,170.241,150.232,170.241,339.538,316.411,355.940,23.452,15.358,23.452 +2483,55.668,179.680,479.298,362.612,449.903,186.640,478.312,171.935,146.944,171.935,342.373,315.633,356.433,23.630,15.087,23.630 +2484,55.692,180.869,476.233,362.572,452.267,186.396,475.602,173.487,143.017,173.487,344.244,315.404,355.370,23.278,16.282,23.278 +2485,55.716,180.869,476.233,362.572,452.267,186.396,475.602,173.487,143.017,173.487,344.244,315.404,355.370,23.278,16.282,23.278 +2486,55.741,180.382,474.166,362.635,454.881,185.975,473.654,174.764,138.652,174.764,344.041,315.330,355.273,23.261,15.975,23.261 +2487,55.766,180.835,472.100,362.471,456.510,185.382,471.769,175.836,133.877,175.836,346.340,315.420,355.459,22.576,15.637,22.576 +2488,55.791,180.210,471.436,361.856,458.190,184.962,471.145,176.496,128.548,176.496,345.190,315.622,354.711,23.466,16.566,23.466 +2489,55.815,180.210,471.436,361.856,458.190,184.962,471.145,176.496,128.548,176.496,345.190,315.622,354.711,23.466,16.566,23.466 +2490,55.840,180.650,470.776,361.544,459.204,184.769,470.553,176.906,122.942,176.906,346.008,314.744,354.259,23.533,17.037,23.533 +2491,55.864,179.717,470.209,361.432,459.431,184.281,469.974,177.047,117.350,177.047,345.778,314.490,354.919,22.763,17.397,22.763 +2492,55.889,180.120,470.589,361.170,459.276,184.539,470.336,176.723,111.571,176.723,345.095,314.543,353.948,22.505,17.734,22.505 +2493,55.913,180.120,470.589,361.170,459.276,184.539,470.336,176.723,111.571,176.723,345.095,314.543,353.948,22.505,17.734,22.505 +2494,55.936,180.142,471.490,361.274,458.792,184.585,471.172,175.914,105.945,175.914,345.334,314.281,354.243,23.654,17.994,23.654 +2495,55.961,180.245,473.426,361.149,457.985,184.539,473.067,175.217,100.235,175.217,345.887,314.744,354.505,23.249,18.493,23.249 +2496,55.986,180.245,473.426,361.149,457.985,184.539,473.067,175.217,100.235,175.217,345.887,314.744,354.505,23.249,18.493,23.249 +2497,56.009,180.470,475.918,361.663,456.352,184.966,475.440,173.928,94.604,173.928,346.407,314.478,355.450,24.013,18.718,24.013 +2498,56.033,181.370,478.755,361.917,454.104,185.970,478.138,172.360,88.823,172.360,345.877,314.139,355.160,24.706,18.250,24.706 +2499,56.058,181.812,481.345,361.966,451.883,186.501,480.551,170.391,83.112,170.391,346.064,313.519,355.576,23.481,18.630,23.481 +2500,56.083,181.812,481.345,361.966,451.883,186.501,480.551,170.391,83.112,170.391,346.064,313.519,355.576,23.481,18.630,23.481 +2501,56.107,182.807,485.337,363.927,447.836,188.610,484.116,168.124,77.221,168.124,346.200,314.256,358.060,23.797,22.410,23.797 +2502,56.132,183.803,489.677,363.028,443.817,189.465,488.220,165.572,71.395,165.572,346.610,314.040,358.304,24.155,21.338,24.155 +2503,56.157,185.044,494.366,362.066,438.644,190.912,492.545,162.759,65.462,162.759,346.589,314.080,358.877,24.371,21.259,24.371 +2504,56.181,185.044,494.366,362.066,438.644,190.912,492.545,162.759,65.462,162.759,346.589,314.080,358.877,24.371,21.259,24.371 +2505,56.204,186.415,499.446,360.369,433.206,192.410,497.205,159.495,59.886,159.495,346.672,314.110,359.472,24.947,20.882,24.947 +2506,56.228,187.613,505.255,358.155,427.408,194.284,502.297,156.086,53.556,156.086,345.727,314.397,360.322,24.690,19.467,24.690 +2507,56.252,187.613,505.255,358.155,427.408,194.284,502.297,156.086,53.556,156.086,345.727,314.397,360.322,24.690,19.467,24.690 +2508,56.274,190.384,512.468,355.043,421.156,197.431,508.751,152.190,47.936,152.190,344.613,314.413,360.548,28.109,18.868,28.109 +2509,56.301,192.769,517.855,351.322,414.561,200.143,513.287,148.221,42.563,148.221,343.668,314.393,361.017,27.020,18.458,27.020 +2510,56.326,196.301,523.773,346.531,408.118,203.598,518.420,143.733,37.213,143.733,342.882,314.671,360.983,26.817,18.395,26.817 +2511,56.350,196.301,523.773,346.531,408.118,203.598,518.420,143.733,37.213,143.733,342.882,314.671,360.983,26.817,18.395,26.817 +2512,56.376,200.729,529.763,341.316,401.201,207.828,523.601,139.040,32.131,139.040,343.282,314.925,362.084,27.228,18.047,27.228 +2513,56.400,206.334,534.822,335.329,395.370,212.496,528.434,133.965,26.952,133.965,344.343,314.840,362.094,26.384,17.435,26.384 +2514,56.426,213.034,540.426,328.546,389.387,218.604,533.455,128.625,22.026,128.625,344.516,314.743,362.363,26.983,17.432,26.983 +2515,56.450,213.034,540.426,328.546,389.387,218.604,533.455,128.625,22.026,128.625,344.516,314.743,362.363,26.983,17.432,26.983 +2516,56.474,218.552,545.552,321.208,384.086,224.049,537.162,123.232,17.030,123.232,342.516,314.668,362.576,23.969,17.529,23.969 +2517,56.498,226.848,550.181,312.987,379.383,231.488,541.246,117.440,12.144,117.440,342.283,314.435,362.418,24.167,17.387,24.167 +2518,56.523,235.185,555.177,304.350,375.672,239.241,544.958,111.648,7.275,111.648,340.740,314.195,362.729,23.950,17.159,23.950 +2519,56.547,235.185,555.177,304.350,375.672,239.241,544.958,111.648,7.275,111.648,340.740,314.195,362.729,23.950,17.159,23.950 +2520,56.570,244.125,558.970,295.414,372.257,247.283,547.791,105.776,2.800,105.776,340.783,313.555,364.016,23.087,17.039,23.087 +2521,56.593,253.169,561.442,285.483,370.524,255.130,549.743,99.518,177.898,99.518,339.820,313.450,363.543,23.510,16.998,23.510 +2522,56.618,253.169,561.442,285.483,370.524,255.130,549.743,99.518,177.898,99.518,339.820,313.450,363.543,23.510,16.998,23.510 +2523,56.642,264.956,562.140,275.083,369.218,265.791,550.485,94.100,173.400,94.100,339.566,312.888,362.936,25.362,17.872,25.362 +2524,56.667,273.133,562.426,264.924,369.178,272.596,550.606,87.397,168.983,87.397,339.513,313.190,363.177,23.385,17.990,23.385 +2525,56.693,284.115,560.984,254.443,370.481,282.570,549.901,82.061,164.578,82.061,340.791,313.198,363.171,23.470,17.983,23.470 +2526,56.718,284.115,560.984,254.443,370.481,282.570,549.901,82.061,164.578,82.061,340.791,313.198,363.171,23.470,17.983,23.470 +2527,56.742,292.238,558.797,244.356,372.385,289.584,548.460,75.600,160.253,75.600,342.237,312.935,363.582,21.584,18.052,21.584 +2528,56.768,301.091,555.062,234.882,375.368,297.656,545.653,69.941,156.262,69.941,342.940,313.402,362.973,21.503,18.446,21.503 +2529,56.793,308.932,550.759,225.765,379.383,304.899,542.425,64.179,152.042,64.179,343.948,313.338,362.464,23.201,17.510,23.201 +2530,56.816,308.932,550.759,225.765,379.383,304.899,542.425,64.179,152.042,64.179,343.948,313.338,362.464,23.201,17.510,23.201 +2531,56.841,315.961,546.024,217.631,383.894,311.495,538.641,58.831,147.875,58.831,344.721,313.664,361.977,25.160,17.667,25.160 +2532,56.866,322.050,541.068,209.994,388.809,317.253,534.558,53.616,143.807,53.616,345.750,313.423,361.924,27.541,18.070,27.541 +2533,56.891,327.519,535.483,202.565,393.374,322.222,529.516,48.406,140.136,48.406,346.542,314.079,362.501,28.133,19.482,28.133 +2534,56.914,327.519,535.483,202.565,393.374,322.222,529.516,48.406,140.136,48.406,346.542,314.079,362.501,28.133,19.482,28.133 +2535,56.937,332.587,529.983,197.664,399.725,327.592,525.166,43.971,135.551,43.971,347.324,313.955,361.202,30.845,17.616,30.845 +2536,56.962,337.564,523.491,191.942,405.398,332.323,519.222,39.161,131.987,39.161,347.938,314.190,361.457,28.745,19.028,28.745 +2537,56.987,337.564,523.491,191.942,405.398,332.323,519.222,39.161,131.987,39.161,347.938,314.190,361.457,28.745,19.028,28.745 +2538,57.008,340.987,517.591,188.146,411.669,336.327,514.329,34.992,127.875,34.992,349.157,314.338,360.532,30.148,18.594,30.148 +2539,57.034,344.648,512.423,184.634,417.637,339.651,509.429,30.925,124.287,30.925,348.659,314.755,360.308,30.364,19.491,30.364 +2540,57.059,347.761,507.364,182.512,424.007,342.820,504.828,27.165,120.141,27.165,347.941,314.337,359.048,30.296,18.579,30.296 +2541,57.084,347.761,507.364,182.512,424.007,342.820,504.828,27.165,120.141,27.165,347.941,314.337,359.048,30.296,18.579,30.296 +2542,57.108,350.614,502.174,180.479,429.459,345.493,499.938,23.590,116.095,23.590,347.684,314.432,358.859,28.577,19.153,28.577 +2543,57.134,352.471,497.835,179.040,434.543,347.356,495.979,19.942,112.319,19.942,347.472,314.391,358.355,25.805,19.514,25.805 +2544,57.158,354.392,493.423,178.200,439.400,349.276,491.805,17.549,108.435,17.549,347.100,314.330,357.831,27.903,18.974,27.903 +2545,57.182,354.392,493.423,178.200,439.400,349.276,491.805,17.549,108.435,17.549,347.100,314.330,357.831,27.903,18.974,27.903 +2546,57.207,355.536,489.632,177.758,443.620,350.486,488.292,14.859,104.744,14.859,346.364,314.147,356.815,26.156,18.883,26.156 +2547,57.230,355.984,487.100,176.943,447.170,350.941,485.987,12.450,101.014,12.450,346.221,313.381,356.550,26.251,18.769,26.251 +2548,57.255,355.984,487.100,176.943,447.170,350.941,485.987,12.450,101.014,12.450,346.221,313.381,356.550,26.251,18.769,26.251 +2549,57.276,357.099,481.542,176.669,449.911,352.206,480.769,8.973,97.386,8.973,346.497,313.947,356.403,25.474,18.971,25.474 +2550,57.302,357.411,478.668,176.173,452.238,352.305,477.984,7.626,93.715,7.626,345.681,312.835,355.983,25.310,19.116,25.310 +2551,57.326,357.145,477.259,175.500,454.000,351.965,476.654,6.654,90.000,6.654,345.374,314.000,355.803,23.424,19.000,23.424 +2552,57.351,357.145,477.259,175.500,454.000,351.965,476.654,6.654,90.000,6.654,345.374,314.000,355.803,23.424,19.000,23.424 +2553,57.376,357.197,475.057,175.411,454.728,351.944,474.523,5.803,86.473,5.803,344.696,312.762,355.258,25.276,18.697,25.276 +2554,57.400,356.641,474.011,175.595,455.002,351.980,473.570,5.407,83.066,5.407,345.337,313.917,354.700,24.459,17.627,24.459 +2555,57.426,356.893,474.184,175.343,453.843,351.735,473.717,5.172,79.461,5.172,344.574,313.093,354.931,23.267,17.605,23.267 +2556,57.450,356.893,474.184,175.343,453.843,351.735,473.717,5.172,79.461,5.172,344.574,313.093,354.931,23.267,17.605,23.267 +2557,57.474,356.608,473.349,175.177,453.325,351.708,472.889,5.363,75.842,5.363,345.331,314.578,355.174,25.264,17.462,25.264 +2558,57.498,356.824,474.779,175.164,452.313,351.572,474.260,5.641,72.382,5.641,344.865,314.289,355.422,25.272,17.265,25.272 +2559,57.523,357.247,475.632,175.527,450.212,351.661,474.968,6.778,68.749,6.778,344.400,314.552,355.650,25.533,17.294,25.533 +2560,57.547,357.247,475.632,175.527,450.212,351.661,474.968,6.778,68.749,6.778,344.400,314.552,355.650,25.533,17.294,25.533 +2561,57.570,356.789,478.034,175.842,447.843,351.371,477.288,7.838,65.273,7.838,344.870,314.430,355.808,25.312,17.126,25.312 +2562,57.594,356.381,482.607,176.726,445.378,350.995,481.534,11.264,61.557,11.264,344.967,314.677,355.951,26.280,17.036,26.280 +2563,57.619,356.381,482.607,176.726,445.378,350.995,481.534,11.264,61.557,11.264,344.967,314.677,355.951,26.280,17.036,26.280 +2564,57.642,356.660,486.306,177.800,442.626,350.827,484.960,12.995,57.875,12.995,344.260,314.826,356.232,26.234,17.076,26.234 +2565,57.667,356.455,490.656,178.705,439.132,350.159,488.936,15.275,54.224,15.275,343.982,314.680,357.036,27.801,17.026,27.801 +2566,57.693,356.636,493.784,179.826,435.143,349.492,491.483,17.858,50.618,17.858,342.524,314.224,357.537,26.281,16.762,26.281 +2567,57.717,356.636,493.784,179.826,435.143,349.492,491.483,17.858,50.618,17.858,342.524,314.224,357.537,26.281,16.762,26.281 +2568,57.742,355.556,499.170,181.264,430.657,347.838,496.268,20.610,46.888,20.610,341.528,314.111,358.018,26.680,16.387,26.680 +2569,57.768,354.579,504.929,183.379,425.591,345.993,501.101,24.031,42.847,24.031,339.736,314.371,358.538,29.029,16.204,29.029 +2570,57.793,357.316,510.258,185.382,419.789,344.310,503.585,27.160,38.928,27.160,330.077,314.558,359.311,21.400,16.247,21.400 +2571,57.817,357.316,510.258,185.382,419.789,344.310,503.585,27.160,38.928,27.160,330.077,314.558,359.311,21.400,16.247,21.400 +2572,57.841,371.310,525.300,187.839,413.887,341.792,507.483,31.115,35.134,31.115,291.385,314.674,360.341,20.832,15.993,20.832 +2573,57.866,402.740,558.598,190.747,408.272,337.046,514.096,34.114,31.304,34.114,202.253,314.716,360.950,18.855,16.361,18.855 +2574,57.891,358.897,541.136,194.355,402.777,331.845,520.624,37.171,27.597,37.171,293.621,314.509,361.519,23.126,16.194,23.126 +2575,57.915,358.897,541.136,194.355,402.777,331.845,520.624,37.171,27.597,37.171,293.621,314.509,361.519,23.126,16.194,23.126 +2576,57.938,343.513,539.486,199.282,396.507,327.823,524.133,44.377,23.286,44.377,318.364,314.479,362.268,26.369,16.080,26.369 +2577,57.962,332.768,541.476,205.211,390.833,322.189,529.207,49.231,19.120,49.231,329.970,314.101,362.370,25.232,16.302,25.232 +2578,57.988,332.768,541.476,205.211,390.833,322.189,529.207,49.231,19.120,49.231,329.970,314.101,362.370,25.232,16.302,25.232 +2579,58.009,325.034,545.264,212.445,384.838,316.672,533.523,54.542,14.992,54.542,334.318,313.709,363.146,25.537,16.326,25.537 +2580,58.034,316.921,548.501,219.740,380.714,310.616,537.713,59.695,10.561,59.695,337.814,313.163,362.804,23.996,15.762,23.996 +2581,58.059,306.128,548.297,228.244,376.805,303.274,542.062,65.410,6.340,65.410,349.267,312.521,362.982,23.688,16.123,23.688 +2582,58.084,306.128,548.297,228.244,376.805,303.274,542.062,65.410,6.340,65.410,349.267,312.521,362.982,23.688,16.123,23.688 +2583,58.109,298.427,551.506,237.525,373.578,296.278,545.303,70.891,1.562,70.891,349.865,311.402,362.993,21.457,17.284,21.457 +2584,58.134,290.804,555.974,247.446,371.012,289.020,548.167,77.133,176.878,77.133,347.912,311.519,363.928,21.809,18.373,21.809 +2585,58.158,282.432,558.471,256.880,369.601,281.377,549.629,83.197,172.379,83.197,345.515,310.982,363.325,24.186,18.734,24.186 +2586,58.182,282.432,558.471,256.880,369.601,281.377,549.629,83.197,172.379,83.197,345.515,310.982,363.325,24.186,18.734,24.186 +2587,58.206,272.554,562.445,266.863,369.381,272.340,550.674,88.958,167.567,88.958,339.180,311.080,362.726,23.196,18.693,23.196 +2588,58.230,263.847,562.169,276.774,370.275,264.857,551.139,95.231,162.711,95.231,340.239,311.283,362.393,26.867,17.579,26.867 +2589,58.254,263.847,562.169,276.774,370.275,264.857,551.139,95.231,162.711,95.231,340.239,311.283,362.393,26.867,17.579,26.867 +2590,58.275,252.481,561.306,286.729,372.067,254.596,550.579,101.152,157.989,101.152,340.845,311.785,362.713,24.320,16.609,24.320 +2591,58.300,242.772,558.931,296.030,374.505,245.898,548.627,106.873,152.802,106.873,340.819,311.758,362.354,23.189,16.072,23.189 +2592,58.325,233.242,556.558,304.852,377.764,237.759,545.729,112.638,147.848,112.638,338.232,311.853,361.698,23.856,16.812,23.856 +2593,58.349,233.242,556.558,304.852,377.764,237.759,545.729,112.638,147.848,112.638,338.232,311.853,361.698,23.856,16.812,23.856 +2594,58.374,224.068,553.727,312.666,381.063,230.336,542.112,118.355,143.267,118.355,335.261,312.212,361.657,23.719,16.160,23.719 +2595,58.400,212.553,553.372,319.887,384.868,223.234,537.482,123.906,139.311,123.906,322.865,312.585,361.157,22.477,16.051,22.477 +2596,58.425,196.208,559.333,326.138,389.162,217.734,533.743,130.070,136.054,130.070,293.968,312.749,360.849,22.463,16.300,22.463 +2597,58.450,196.208,559.333,326.138,389.162,217.734,533.743,130.070,136.054,130.070,293.968,312.749,360.849,22.463,16.300,22.463 +2598,58.474,156.450,584.835,331.523,393.499,210.481,527.427,133.264,133.668,133.264,203.296,312.753,360.968,19.362,17.097,19.362 +2599,58.498,188.121,538.411,336.603,398.371,205.756,522.276,137.541,130.655,137.541,312.547,312.813,360.353,18.935,16.527,18.935 +2600,58.523,188.121,538.411,336.603,398.371,205.756,522.276,137.541,130.655,137.541,312.547,312.813,360.353,18.935,16.527,18.935 +2601,58.544,194.014,526.090,340.907,403.429,203.029,518.981,141.740,127.405,141.740,336.670,314.052,359.632,23.384,17.663,23.384 +2602,58.568,194.724,520.207,345.213,408.996,200.854,516.035,145.760,123.341,145.760,344.303,313.128,359.133,27.485,17.236,27.485 +2603,58.591,192.546,514.565,349.015,415.008,197.830,511.476,149.689,118.867,149.689,346.169,313.515,358.410,27.267,17.728,27.267 +2604,58.616,192.546,514.565,349.015,415.008,197.830,511.476,149.689,118.867,149.689,346.169,313.515,358.410,27.267,17.728,27.267 +2605,58.641,190.356,508.171,352.205,420.780,194.867,505.896,153.234,113.575,153.234,347.520,312.523,357.624,24.969,17.998,24.969 +2606,58.666,188.528,503.829,354.826,426.319,192.843,501.957,156.557,107.819,156.557,348.000,312.435,357.408,25.258,17.885,25.258 +2607,58.692,187.360,499.534,356.947,431.850,191.435,498.028,159.722,102.011,159.722,347.689,312.474,356.378,25.368,18.189,25.368 +2608,58.716,187.360,499.534,356.947,431.850,191.435,498.028,159.722,102.011,159.722,347.689,312.474,356.378,25.368,18.189,25.368 +2609,58.741,185.563,495.430,358.596,437.589,189.844,494.056,162.212,96.009,162.212,346.876,311.961,355.869,25.475,18.582,25.475 +2610,58.767,184.028,491.573,359.633,441.985,188.337,490.391,164.667,90.372,164.667,347.061,312.045,355.998,24.888,18.733,24.888 +2611,58.792,183.181,487.946,362.426,445.696,188.418,486.736,166.989,84.075,166.989,346.810,312.783,357.560,23.756,21.798,23.756 +2612,58.816,183.181,487.946,362.426,445.696,188.418,486.736,166.989,84.075,166.989,346.810,312.783,357.560,23.756,21.798,23.756 +2613,58.840,182.349,485.761,362.875,448.794,187.792,484.677,168.734,78.179,168.734,346.339,313.486,357.439,24.917,20.964,24.917 +2614,58.863,181.522,483.035,364.027,450.525,187.721,481.970,170.248,71.957,170.248,345.589,314.628,358.169,24.269,21.811,24.269 +2615,58.889,180.867,480.640,364.420,452.253,187.290,479.646,171.203,65.985,171.203,345.471,315.371,358.470,24.471,21.163,24.471 +2616,58.912,180.867,480.640,364.420,452.253,187.290,479.646,171.203,65.985,171.203,345.471,315.371,358.470,24.471,21.163,24.471 +2617,58.934,180.049,478.854,364.265,453.489,186.795,477.917,172.093,60.191,172.093,344.664,316.172,358.285,23.662,19.369,23.662 +2618,58.959,179.792,477.866,365.288,453.549,187.226,476.919,172.739,53.563,172.739,344.187,316.389,359.175,23.788,18.655,23.788 +2619,58.983,179.792,477.866,365.288,453.549,187.226,476.919,172.739,53.563,172.739,344.187,316.389,359.175,23.788,18.655,23.788 +2620,59.007,178.823,477.124,365.134,453.561,187.103,476.057,172.655,47.745,172.655,342.196,316.628,358.893,23.772,16.569,23.772 +2621,59.031,178.311,478.011,364.941,453.017,187.146,476.889,172.767,42.451,172.767,340.961,317.288,358.772,23.794,15.206,23.794 +2622,59.056,178.311,478.011,364.941,453.017,187.146,476.889,172.767,42.451,172.767,340.961,317.288,358.772,23.794,15.206,23.794 +2623,59.077,176.219,478.997,365.152,451.971,187.280,477.447,172.026,36.989,172.026,337.032,317.800,359.371,24.639,15.000,24.639 +2624,59.103,174.784,480.607,365.009,450.174,187.587,478.622,171.187,31.645,171.187,333.458,317.799,359.371,24.467,14.581,24.467 +2625,59.127,173.521,482.350,364.742,447.998,187.916,479.748,169.753,26.303,169.753,330.051,317.982,359.308,24.340,14.459,24.340 +2626,59.153,173.521,482.350,364.742,447.998,187.916,479.748,169.753,26.303,169.753,330.051,317.982,359.308,24.340,14.459,24.340 +2627,59.175,171.677,485.924,364.381,445.215,188.374,482.506,168.430,21.077,168.430,325.732,317.767,359.819,23.867,14.298,23.867 +2628,59.200,170.226,490.855,363.754,442.625,189.236,486.314,166.566,16.204,166.566,320.698,317.162,359.787,24.867,13.961,24.867 +2629,59.224,169.416,494.889,362.791,439.031,189.871,489.235,164.548,11.211,164.548,317.649,316.925,360.092,22.764,13.980,22.764 +2630,59.248,169.416,494.889,362.791,439.031,189.871,489.235,164.548,11.211,164.548,317.649,316.925,360.092,22.764,13.980,22.764 +2631,59.271,167.632,500.878,361.256,435.026,191.014,493.217,161.858,5.906,161.858,310.587,316.141,359.796,23.478,13.720,23.478 +2632,59.296,167.010,507.212,359.052,430.518,192.231,497.609,159.156,1.005,159.156,305.578,316.144,359.553,23.321,13.594,23.321 +2633,59.320,167.010,507.212,359.052,430.518,192.231,497.609,159.156,1.005,159.156,305.578,316.144,359.553,23.321,13.594,23.321 +2634,59.342,167.213,514.190,357.078,425.677,194.236,502.441,156.501,176.204,156.501,300.958,316.432,359.891,23.405,13.714,23.405 +2635,59.367,167.582,519.649,354.096,420.661,195.561,505.911,153.849,171.694,153.849,297.422,315.661,359.760,22.752,13.759,22.752 +2636,59.391,170.174,526.666,350.885,414.994,198.165,510.768,150.405,167.246,150.405,295.812,315.633,360.192,23.929,14.066,23.929 +2637,59.416,170.174,526.666,350.885,414.994,198.165,510.768,150.405,167.246,150.405,295.812,315.633,360.192,23.929,14.066,23.929 +2638,59.439,175.269,533.154,346.883,409.120,201.393,515.738,146.310,162.852,146.310,297.597,315.263,360.391,23.852,14.305,23.852 +2639,59.463,181.396,538.581,342.358,403.388,204.848,520.340,142.125,158.273,142.125,301.269,314.938,360.690,24.031,14.745,24.031 +2640,59.488,181.396,538.581,342.358,403.388,204.848,520.340,142.125,158.273,142.125,301.269,314.938,360.690,24.031,14.745,24.031 +2641,59.508,189.793,543.222,337.130,397.749,209.373,525.412,137.710,153.778,137.710,307.883,314.410,360.821,25.294,14.956,25.294 +2642,59.534,199.592,547.797,331.055,391.947,215.098,530.430,131.760,149.642,131.760,314.493,313.991,361.057,24.749,15.199,24.749 +2643,59.558,208.565,550.034,324.512,386.797,220.288,534.559,127.147,145.244,127.147,322.605,313.511,361.433,23.889,15.241,23.889 +2644,59.582,208.565,550.034,324.512,386.797,220.288,534.559,127.147,145.244,127.147,322.605,313.511,361.433,23.889,15.241,23.889 +2645,59.607,217.960,552.750,317.255,382.199,226.667,538.543,121.504,140.906,121.504,327.949,312.822,361.274,23.268,15.765,23.268 +2646,59.631,227.948,554.993,309.334,378.431,233.838,542.760,115.710,136.990,115.710,334.472,312.893,361.626,22.659,15.984,22.659 +2647,59.658,237.617,556.679,300.754,375.192,241.484,546.044,109.983,132.571,109.983,339.009,312.303,361.641,22.640,16.373,22.640 +2648,59.683,237.617,556.679,300.754,375.192,241.484,546.044,109.983,132.571,109.983,339.009,312.303,361.641,22.640,16.373,22.640 +2649,59.706,247.209,557.797,291.641,372.810,249.411,549.053,104.133,128.585,104.133,344.408,312.189,362.442,22.381,16.365,22.381 +2650,59.731,256.875,558.631,282.225,371.381,258.050,550.780,98.512,124.624,98.512,346.125,311.545,362.002,23.487,16.595,23.487 +2651,59.757,263.793,558.993,272.795,370.959,264.066,551.072,91.975,120.735,91.975,344.761,311.617,360.613,24.193,16.749,24.193 +2652,59.782,263.793,558.993,272.795,370.959,264.066,551.072,91.975,120.735,91.975,344.761,311.617,360.613,24.193,16.749,24.193 +2653,59.805,272.235,559.232,263.129,371.588,271.713,551.890,85.929,116.911,85.929,346.192,311.260,360.913,24.724,16.949,24.724 +2654,59.829,282.234,558.318,253.757,372.459,281.030,551.304,80.261,113.009,80.261,347.530,311.463,361.763,23.007,17.211,23.007 +2655,59.853,282.234,558.318,253.757,372.459,281.030,551.304,80.261,113.009,80.261,347.530,311.463,361.763,23.007,17.211,23.007 +2656,59.875,292.330,555.413,241.626,382.761,291.622,552.740,75.174,109.179,75.174,348.696,293.164,354.226,21.580,17.206,21.580 +2657,59.900,300.673,552.734,236.208,377.252,298.449,546.740,69.643,105.524,69.643,348.321,310.842,361.108,21.733,17.557,21.733 +2658,59.924,307.970,549.235,228.006,380.521,305.175,543.418,64.335,101.753,64.335,347.590,311.274,360.497,23.997,17.596,23.997 +2659,59.949,307.970,549.235,228.006,380.521,305.175,543.418,64.335,101.753,64.335,347.590,311.274,360.497,23.997,17.596,23.997 +2660,59.976,314.817,544.904,220.650,384.450,311.834,539.916,59.112,98.130,59.112,348.830,311.551,360.454,24.994,17.536,24.994 +2661,60.003,321.953,540.485,213.759,389.135,318.318,535.475,54.043,94.399,54.043,347.322,311.234,359.701,25.550,17.794,25.550 +2662,60.028,327.944,535.941,207.463,393.518,323.624,530.947,49.140,90.707,49.140,346.660,311.124,359.866,27.129,17.480,27.129 +2663,60.052,327.944,535.941,207.463,393.518,323.624,530.947,49.140,90.707,49.140,346.660,311.124,359.866,27.129,17.480,27.129 +2664,60.077,332.932,530.589,201.789,398.485,328.484,526.166,44.834,86.987,44.834,347.194,311.884,359.738,28.346,17.607,28.346 +2665,60.103,337.470,525.553,196.756,403.676,332.611,521.410,40.457,83.290,40.457,346.761,312.317,359.532,29.115,17.701,29.115 +2666,60.128,341.812,520.161,192.316,408.940,336.484,516.249,36.290,79.299,36.290,346.217,312.191,359.435,28.752,17.664,28.752 +2667,60.153,341.812,520.161,192.316,408.940,336.484,516.249,36.290,79.299,36.290,346.217,312.191,359.435,28.752,17.664,28.752 +2668,60.175,344.371,515.418,188.907,414.139,339.193,512.123,32.471,75.606,32.471,346.515,312.630,358.790,29.145,17.255,29.145 +2669,60.200,347.812,510.450,185.783,419.244,341.959,507.207,28.989,71.870,28.989,345.098,312.750,358.480,28.180,17.199,28.180 +2670,60.225,349.428,506.337,183.460,424.220,343.796,503.622,25.733,67.834,25.733,345.316,313.088,357.820,29.662,16.532,29.662 +2671,60.248,349.428,506.337,183.460,424.220,343.796,503.622,25.733,67.834,25.733,345.316,313.088,357.820,29.662,16.532,29.662 +2672,60.271,351.706,501.446,181.500,428.500,345.950,499.022,22.845,63.925,22.845,345.370,313.497,357.860,28.666,16.741,28.666 +2673,60.296,353.305,497.979,180.172,432.479,347.407,495.814,20.158,59.931,20.158,345.067,313.831,357.633,28.602,16.762,28.602 +2674,60.321,353.305,497.979,180.172,432.479,347.407,495.814,20.158,59.931,20.158,345.067,313.831,357.633,28.602,16.762,28.602 +2675,60.342,354.624,494.274,179.038,436.146,348.481,492.297,17.843,56.110,17.843,344.090,314.251,356.996,27.879,16.694,27.879 +2676,60.367,355.511,490.976,178.409,439.071,349.565,489.284,15.882,52.028,15.882,344.362,314.250,356.727,27.064,16.593,27.064 +2677,60.393,356.536,488.265,177.377,441.274,350.056,486.606,14.365,48.311,14.365,343.677,313.991,357.055,26.428,16.487,26.428 +2678,60.417,356.536,488.265,177.377,441.274,350.056,486.606,14.365,48.311,14.365,343.677,313.991,357.055,26.428,16.487,26.428 +2679,60.442,357.785,486.781,177.083,442.914,350.583,485.124,12.960,44.256,12.960,342.312,314.039,357.092,27.209,16.400,27.209 +2680,60.467,359.376,482.179,177.040,444.185,351.581,480.756,10.347,40.314,10.347,340.696,314.685,356.543,25.491,15.620,25.491 +2681,60.491,360.210,481.193,176.813,444.570,351.826,479.756,9.728,36.083,9.728,339.871,315.189,356.883,25.485,15.473,25.485 +2682,60.515,360.210,481.193,176.813,444.570,351.826,479.756,9.728,36.083,9.728,339.871,315.189,356.883,25.485,15.473,25.485 +2683,60.538,360.775,481.280,176.594,444.653,351.800,479.761,9.612,31.866,9.612,339.011,315.888,357.217,23.512,15.310,23.512 +2684,60.561,361.115,480.783,176.416,444.209,351.611,479.179,9.577,27.740,9.577,337.867,316.707,357.143,24.497,15.286,24.497 +2685,60.585,361.115,480.783,176.416,444.209,351.611,479.179,9.577,27.740,9.577,337.867,316.707,357.143,24.497,15.286,24.497 +2686,60.609,364.300,481.676,175.530,443.130,350.874,479.119,10.784,23.491,10.784,330.627,316.469,357.962,21.331,14.898,21.331 +2687,60.633,371.291,484.837,174.961,442.176,350.211,480.357,11.997,19.210,11.997,315.615,316.327,358.717,20.297,14.593,20.297 +2688,60.659,409.446,496.417,174.426,440.505,348.921,483.447,12.095,14.832,12.095,235.441,316.340,359.240,18.788,14.682,18.788 +2689,60.683,409.446,496.417,174.426,440.505,348.921,483.447,12.095,14.832,12.095,235.441,316.340,359.240,18.788,14.682,18.788 +2690,60.709,425.278,503.927,174.388,438.372,348.290,485.450,13.496,10.322,13.496,201.829,316.271,360.175,18.787,14.881,18.787 +2691,60.733,402.682,502.827,175.127,436.247,347.784,488.013,15.101,5.785,15.101,246.639,316.332,360.362,18.773,14.862,18.773 +2692,60.759,379.142,502.584,176.019,433.279,346.622,491.835,18.291,1.483,18.291,292.224,316.257,360.723,26.891,13.568,26.891 +2693,60.783,379.142,502.584,176.019,433.279,346.622,491.835,18.291,1.483,18.291,292.224,316.257,360.723,26.891,13.568,26.891 +2694,60.808,369.034,503.908,177.305,429.931,345.644,495.163,20.501,176.874,20.501,311.103,315.676,361.046,25.754,13.480,25.754 +2695,60.831,362.512,506.971,179.111,426.175,344.432,499.201,23.257,172.159,23.257,322.087,316.076,361.445,26.385,14.174,26.385 +2696,60.857,356.928,511.143,181.378,421.784,342.444,503.870,26.664,167.104,26.664,329.135,315.631,361.549,29.498,16.072,29.498 +2697,60.880,356.928,511.143,181.378,421.784,342.444,503.870,26.664,167.104,26.664,329.135,315.631,361.549,29.498,16.072,29.498 +2698,60.903,352.598,515.195,184.442,417.321,340.691,508.305,30.058,161.892,30.058,334.102,314.997,361.616,30.201,17.300,30.201 +2699,60.927,345.847,517.733,187.964,412.561,338.450,512.870,33.321,156.980,33.321,343.998,314.615,361.702,28.101,17.017,28.101 +2700,60.951,345.847,517.733,187.964,412.561,338.450,512.870,33.321,156.980,33.321,343.998,314.615,361.702,28.101,17.017,28.101 +2701,60.975,341.730,522.541,192.289,407.671,335.519,517.815,37.270,151.858,37.270,345.752,313.997,361.362,27.888,17.000,27.888 +2702,61.000,337.551,527.942,196.515,401.769,331.357,522.580,40.879,146.449,40.879,345.656,313.419,362.039,25.402,19.028,25.402 +2703,61.026,332.433,532.980,202.220,397.024,327.123,527.436,46.232,141.340,46.232,345.802,312.348,361.155,29.205,18.429,29.205 +2704,61.050,332.433,532.980,202.220,397.024,327.123,527.436,46.232,141.340,46.232,345.802,312.348,361.155,29.205,18.429,29.205 +2705,61.075,326.239,537.215,207.919,391.418,321.767,531.779,50.557,135.466,50.557,347.368,311.910,361.446,26.595,18.856,26.595 +2706,61.100,319.908,541.256,214.213,386.638,316.150,535.828,55.305,130.280,55.305,348.167,310.874,361.371,25.488,19.357,25.488 +2707,61.126,312.164,545.087,221.082,381.679,309.208,539.806,60.767,124.548,60.767,349.946,310.772,362.051,25.851,19.862,25.851 +2708,61.150,312.164,545.087,221.082,381.679,309.208,539.806,60.767,124.548,60.767,349.946,310.772,362.051,25.851,19.862,25.851 +2709,61.175,305.083,548.409,229.352,378.195,302.810,543.315,65.956,119.006,65.956,350.287,310.427,361.444,22.803,18.279,22.803 +2710,61.200,297.453,552.367,238.373,375.369,295.488,546.592,71.209,113.286,71.209,348.791,309.758,360.989,20.859,17.278,20.859 +2711,61.225,289.955,556.470,247.103,373.244,288.307,549.293,77.069,107.865,77.069,346.883,308.936,361.610,21.810,17.006,21.810 +2712,61.248,289.955,556.470,247.103,373.244,288.307,549.293,77.069,107.865,77.069,346.883,308.936,361.610,21.810,17.006,21.810 +2713,61.272,281.871,559.040,256.138,371.570,280.758,550.522,82.553,102.995,82.553,344.086,309.407,361.266,23.454,17.014,23.454 +2714,61.297,271.352,563.862,265.042,370.895,270.753,551.197,87.292,98.835,87.292,335.382,309.521,360.740,22.691,17.100,22.691 +2715,61.322,271.352,563.862,265.042,370.895,270.753,551.197,87.292,98.835,87.292,335.382,309.521,360.740,22.691,17.100,22.691 +2716,61.343,262.883,603.562,273.864,371.178,266.550,551.484,94.028,95.440,94.028,256.337,309.647,360.750,23.589,16.734,23.589 +2717,61.368,254.886,573.093,282.498,371.558,258.401,550.938,99.016,92.203,99.016,317.016,309.540,361.880,24.841,16.565,24.841 +2718,61.393,247.938,558.993,291.189,373.545,250.282,549.698,104.155,88.568,104.155,342.444,309.303,361.616,23.276,16.445,23.276 +2719,61.418,247.938,558.993,291.189,373.545,250.282,549.698,104.155,88.568,104.155,342.444,309.303,361.616,23.276,16.445,23.276 +2720,61.442,241.116,553.141,300.321,376.130,243.197,547.289,109.573,83.703,109.573,348.389,309.981,360.811,23.890,17.268,23.890 +2721,61.468,234.176,549.639,309.016,379.300,236.538,544.559,114.939,78.864,114.939,349.615,310.073,360.821,25.255,18.874,25.255 +2722,61.492,227.005,545.297,317.386,383.034,229.623,540.811,120.270,73.511,120.270,350.621,310.438,361.009,25.435,20.512,25.435 +2723,61.516,227.005,545.297,317.386,383.034,229.623,540.811,120.270,73.511,120.270,350.621,310.438,361.009,25.435,20.512,25.435 +2724,61.540,220.156,541.524,325.045,387.256,223.537,536.773,125.433,67.775,125.433,349.686,310.728,361.350,25.870,21.311,25.870 +2725,61.564,213.234,537.098,331.452,391.822,217.369,532.232,130.357,62.021,130.357,348.969,311.298,361.740,25.896,21.388,25.896 +2726,61.588,213.234,537.098,331.452,391.822,217.369,532.232,130.357,62.021,130.357,348.969,311.298,361.740,25.896,21.388,25.896 +2727,61.609,207.363,532.411,336.906,397.232,212.060,527.755,135.251,56.583,135.251,347.881,311.494,361.107,26.581,20.945,26.581 +2728,61.634,202.423,527.706,341.778,402.054,207.644,523.270,139.649,50.891,139.649,347.709,312.873,361.411,28.135,20.688,28.135 +2729,61.658,196.778,522.807,346.400,407.116,203.415,517.963,143.877,45.165,143.877,345.254,313.249,361.686,27.437,19.412,27.437 +2730,61.683,196.778,522.807,346.400,407.116,203.415,517.963,143.877,45.165,143.877,345.254,313.249,361.686,27.437,19.412,27.437 +2731,61.709,191.776,517.530,349.847,412.623,199.394,512.743,147.852,39.198,147.852,343.324,314.085,361.319,26.227,18.735,26.227 +2732,61.733,188.370,512.761,352.785,418.094,196.609,508.289,151.510,33.977,151.510,341.824,314.797,360.572,26.066,17.090,26.066 +2733,61.759,184.905,508.359,355.746,423.146,194.428,503.876,154.787,28.856,154.787,339.626,315.391,360.678,25.970,16.194,25.970 +2734,61.784,184.905,508.359,355.746,423.146,194.428,503.876,154.787,28.856,154.787,339.626,315.391,360.678,25.970,16.194,25.970 +2735,61.808,181.327,504.300,358.166,427.995,193.101,499.492,157.788,23.879,157.788,334.250,315.673,359.687,25.675,14.459,25.675 +2736,61.832,178.135,500.979,360.165,432.056,191.977,496.032,160.331,18.886,160.331,330.415,315.919,359.815,26.498,14.392,26.498 +2737,61.857,173.313,497.402,361.817,435.725,190.721,491.962,162.646,13.972,162.646,323.688,316.267,360.164,24.578,14.180,24.578 +2738,61.880,173.313,497.402,361.817,435.725,190.721,491.962,162.646,13.972,162.646,323.688,316.267,360.164,24.578,14.180,24.578 +2739,61.903,167.479,494.922,363.348,438.861,190.294,488.708,164.765,9.238,164.765,312.848,316.301,360.141,23.509,14.027,23.509 +2740,61.926,158.262,492.908,363.733,441.310,189.881,486.012,167.696,4.185,167.696,294.046,316.130,358.771,21.121,13.306,21.121 +2741,61.950,158.262,492.908,363.733,441.310,189.881,486.012,167.696,4.185,167.696,294.046,316.130,358.771,21.121,13.306,21.121 +2742,61.976,142.720,493.435,363.997,443.249,189.356,484.489,169.140,179.743,169.140,263.594,316.033,358.566,20.440,12.901,20.440 +2743,62.000,110.983,496.408,364.367,444.931,188.813,481.648,169.261,175.160,169.261,200.207,316.492,358.642,18.447,12.926,18.447 +2744,62.026,109.949,494.360,364.160,445.918,188.283,480.617,170.049,170.731,170.049,199.393,315.959,358.454,18.628,13.303,18.628 +2745,62.050,109.949,494.360,364.160,445.918,188.283,480.617,170.049,170.731,170.049,199.393,315.959,358.454,18.628,13.303,18.628 +2746,62.075,152.812,485.269,363.399,446.514,187.589,479.131,169.992,166.417,169.992,286.978,316.765,357.607,19.464,13.361,19.464 +2747,62.100,169.437,481.988,362.908,446.215,187.005,478.899,170.030,162.162,170.030,322.135,316.583,357.810,19.271,13.554,19.271 +2748,62.125,174.051,481.561,362.064,445.677,186.218,479.371,169.796,158.054,169.796,333.343,316.436,358.068,19.192,13.882,19.192 +2749,62.149,174.051,481.561,362.064,445.677,186.218,479.371,169.796,158.054,169.796,333.343,316.436,358.068,19.192,13.882,19.192 +2750,62.174,176.537,483.983,360.874,444.744,186.063,482.181,169.293,153.914,169.293,338.057,316.669,357.447,23.078,14.342,23.078 +2751,62.198,178.024,484.923,360.225,443.387,186.141,483.235,168.250,149.808,168.250,340.520,317.012,357.102,23.826,14.914,23.826 +2752,62.223,179.168,486.594,359.667,441.246,186.475,484.919,167.088,145.784,167.088,342.152,316.448,357.145,23.555,15.050,23.555 +2753,62.247,179.168,486.594,359.667,441.246,186.475,484.919,167.088,145.784,167.088,342.152,316.448,357.145,23.555,15.050,23.555 +2754,62.270,180.279,489.445,359.141,438.258,187.343,487.618,165.500,142.038,165.500,342.774,315.307,357.368,24.137,15.223,24.137 +2755,62.294,182.267,492.510,358.431,435.749,188.347,490.721,163.610,138.145,163.610,344.694,315.081,357.369,24.605,15.471,24.605 +2756,62.319,182.267,492.510,358.431,435.749,188.347,490.721,163.610,138.145,163.610,344.694,315.081,357.369,24.605,15.471,24.605 +2757,62.344,184.233,496.155,358.060,433.095,189.934,494.239,161.424,133.898,161.424,345.658,314.061,357.689,24.622,15.553,24.622 +2758,62.370,185.571,499.853,357.145,429.541,191.632,497.509,158.852,130.014,158.852,344.778,313.845,357.775,23.589,15.951,23.589 +2759,62.394,188.125,504.787,355.384,425.546,193.799,502.268,156.065,126.367,156.065,345.214,313.970,357.631,24.174,16.127,24.174 +2760,62.419,188.125,504.787,355.384,425.546,193.799,502.268,156.065,126.367,156.065,345.214,313.970,357.631,24.174,16.127,24.174 +2761,62.444,191.034,509.949,353.018,421.691,196.253,507.276,152.884,122.634,152.884,345.358,313.327,357.085,24.836,16.318,24.836 +2762,62.469,193.312,515.265,350.160,417.311,198.562,512.166,149.449,119.055,149.449,345.345,312.366,357.536,24.508,16.512,24.508 +2763,62.493,196.987,520.390,347.041,412.045,201.899,517.048,145.768,115.408,145.768,346.254,312.082,358.136,25.212,17.230,25.212 +2764,62.517,196.987,520.390,347.041,412.045,201.899,517.048,145.768,115.408,145.768,346.254,312.082,358.136,25.212,17.230,25.212 +2765,62.541,200.955,525.991,342.326,406.734,205.536,522.361,141.608,111.571,141.608,346.356,311.558,358.046,25.941,17.453,25.941 +2766,62.564,204.837,530.793,337.375,401.102,209.155,526.815,137.349,108.083,137.349,347.216,311.799,358.959,25.815,17.654,25.815 +2767,62.589,204.837,530.793,337.375,401.102,209.155,526.815,137.349,108.083,137.349,347.216,311.799,358.959,25.815,17.654,25.815 +2768,62.610,209.590,536.222,331.816,395.999,213.773,531.675,132.608,104.668,132.608,347.184,310.987,359.541,25.868,17.680,25.868 +2769,62.635,214.942,540.118,326.032,390.310,218.828,535.118,127.854,101.441,127.854,347.580,311.646,360.246,24.902,17.829,24.902 +2770,62.659,220.660,544.189,318.730,385.169,224.173,538.753,122.879,97.800,122.879,347.685,311.800,360.630,23.835,17.508,23.835 +2771,62.684,220.660,544.189,318.730,385.169,224.173,538.753,122.879,97.800,122.879,347.685,311.800,360.630,23.835,17.508,23.835 +2772,62.709,227.248,547.995,310.951,380.697,230.348,542.095,117.719,94.279,117.719,347.406,310.927,360.735,23.031,17.645,23.031 +2773,62.734,235.271,550.753,303.481,376.980,237.611,545.052,112.312,91.123,112.312,348.669,310.234,360.993,22.875,17.075,22.875 +2774,62.760,242.707,555.129,295.004,373.587,245.000,547.597,106.936,87.510,106.936,346.315,311.488,362.060,22.351,16.810,22.351 +2775,62.785,242.707,555.129,295.004,373.587,245.000,547.597,106.936,87.510,106.936,346.315,311.488,362.060,22.351,16.810,22.351 +2776,62.808,251.755,558.365,286.685,371.329,253.554,549.512,101.488,84.218,101.488,344.358,310.652,362.424,23.336,16.636,23.336 +2777,62.832,262.919,559.001,277.835,369.846,263.863,550.108,96.065,80.910,96.065,343.572,311.360,361.458,27.470,16.944,27.470 +2778,62.858,269.500,560.500,268.831,369.872,269.500,550.436,90.000,77.437,90.000,341.000,311.189,361.128,23.000,16.593,23.000 +2779,62.882,269.500,560.500,268.831,369.872,269.500,550.436,90.000,77.437,90.000,341.000,311.189,361.128,23.000,16.593,23.000 +2780,62.904,279.995,563.763,259.899,370.460,278.722,550.346,84.583,73.980,84.583,334.766,310.989,361.720,24.270,16.149,24.270 +2781,62.929,287.858,565.217,250.791,372.074,284.708,550.097,78.232,70.560,78.232,331.507,311.298,362.397,22.149,16.419,22.149 +2782,62.953,287.858,565.217,250.791,372.074,284.708,550.097,78.232,70.560,78.232,331.507,311.298,362.397,22.149,16.419,22.149 +2783,62.976,300.278,567.713,241.874,374.690,294.268,547.745,73.250,67.006,73.250,319.921,311.324,361.625,20.704,16.254,20.704 +2784,63.001,312.657,573.476,233.300,377.600,300.951,545.383,67.380,63.435,67.380,300.923,311.708,361.792,20.385,16.100,20.385 +2785,63.027,344.198,611.785,225.287,381.334,307.334,542.394,62.021,60.033,62.021,204.303,311.959,361.454,20.422,16.273,20.422 +2786,63.051,344.198,611.785,225.287,381.334,307.334,542.394,62.021,60.033,62.021,204.303,311.959,361.454,20.422,16.273,20.422 +2787,63.076,357.410,603.958,217.731,385.346,315.306,537.527,57.633,56.310,57.633,204.248,312.019,361.548,19.724,16.364,19.724 +2788,63.101,368.563,595.479,211.203,389.467,320.891,533.013,52.651,52.864,52.651,204.156,312.195,361.312,19.100,16.215,19.100 +2789,63.127,377.003,585.777,205.030,393.974,325.107,528.859,47.643,49.236,47.643,207.103,312.366,361.153,19.082,15.906,19.082 +2790,63.150,377.003,585.777,205.030,393.974,325.107,528.859,47.643,49.236,47.643,207.103,312.366,361.153,19.082,15.906,19.082 +2791,63.175,378.507,570.200,199.959,398.547,329.500,524.355,43.091,45.360,43.091,226.879,313.264,361.094,19.011,15.876,19.011 +2792,63.200,378.139,554.864,195.349,403.040,333.931,518.423,39.500,41.496,39.500,246.066,313.830,360.650,18.926,15.902,18.926 +2793,63.229,383.613,547.164,191.358,407.684,337.073,514.197,35.311,37.711,35.311,246.881,314.175,360.948,18.871,15.879,18.871 +2794,63.254,383.613,547.164,191.358,407.684,337.073,514.197,35.311,37.711,35.311,246.881,314.175,360.948,18.871,15.879,18.871 +2795,63.277,393.168,542.244,188.105,412.098,340.052,509.155,31.921,33.835,31.921,235.418,314.796,360.577,18.743,15.928,18.743 +2796,63.302,410.922,542.403,185.109,416.442,342.124,505.013,28.523,29.932,28.523,203.898,314.925,360.502,18.661,15.783,18.661 +2797,63.327,415.937,535.164,182.974,420.517,344.389,500.526,25.833,25.750,25.833,201.315,315.286,360.297,18.951,15.513,18.951 +2798,63.352,415.937,535.164,182.974,420.517,344.389,500.526,25.833,25.750,25.833,201.315,315.286,360.297,18.951,15.513,18.951 +2799,63.376,419.060,528.359,180.814,424.712,345.803,497.280,22.989,21.705,22.989,201.301,315.496,360.455,18.746,15.713,18.746 +2800,63.400,420.918,522.219,179.069,428.208,346.681,494.380,20.556,17.601,20.556,201.779,315.938,360.350,18.727,14.804,18.727 +2801,63.426,422.350,516.950,177.575,431.595,347.398,491.966,18.435,13.437,18.435,202.386,316.214,360.399,18.657,14.818,18.657 +2802,63.450,422.350,516.950,177.575,431.595,347.398,491.966,18.435,13.437,18.435,202.386,316.214,360.399,18.657,14.818,18.657 +2803,63.474,420.151,511.495,176.448,434.759,347.984,489.845,16.699,9.280,16.699,209.572,316.463,360.262,18.869,14.759,18.869 +2804,63.496,400.607,502.283,175.576,437.604,348.461,487.996,15.322,4.825,15.322,251.975,316.659,360.112,18.800,14.837,18.800 +2805,63.521,400.607,502.283,175.576,437.604,348.461,487.996,15.322,4.825,15.322,251.975,316.659,360.112,18.800,14.837,18.800 +2806,63.542,387.040,497.332,175.006,439.631,348.482,488.059,13.523,0.371,13.523,280.668,316.065,359.983,20.565,14.744,20.565 +2807,63.566,380.136,494.971,174.289,441.036,348.542,486.870,14.381,175.928,14.381,295.120,316.051,360.352,25.210,14.207,25.210 +2808,63.591,374.460,492.181,174.087,441.707,348.712,485.664,14.204,171.582,14.204,307.023,316.801,360.145,25.217,13.721,25.217 +2809,63.616,374.460,492.181,174.087,441.707,348.712,485.664,14.204,171.582,14.204,307.023,316.801,360.145,25.217,13.721,25.217 +2810,63.638,370.160,491.865,173.869,441.761,348.429,486.387,14.148,167.027,14.148,315.523,317.052,360.346,26.914,13.985,26.914 +2811,63.663,366.664,491.359,173.768,441.275,348.363,486.672,14.365,162.269,14.365,323.015,316.891,360.798,26.900,14.780,26.900 +2812,63.688,366.664,491.359,173.768,441.275,348.363,486.672,14.365,162.269,14.365,323.015,316.891,360.798,26.900,14.780,26.900 +2813,63.710,363.706,491.595,174.164,440.025,348.292,487.454,15.035,157.054,15.035,329.020,316.740,360.941,27.113,17.463,27.113 +2814,63.735,360.987,492.300,174.570,438.290,347.815,488.545,15.913,152.180,15.913,333.379,316.708,360.771,27.062,18.191,27.062 +2815,63.760,358.109,493.268,174.853,435.941,347.494,489.992,17.152,147.236,17.152,339.588,316.581,361.806,26.023,19.091,26.023 +2816,63.785,358.109,493.268,174.853,435.941,347.494,489.992,17.152,147.236,17.152,339.588,316.581,361.806,26.023,19.091,26.023 +2817,63.808,355.550,495.850,175.719,433.195,346.453,492.818,18.435,142.306,18.435,342.475,316.622,361.654,26.563,19.602,26.563 +2818,63.831,353.217,497.751,177.219,430.664,345.808,494.957,20.662,136.941,20.662,345.027,315.129,360.862,26.675,19.692,26.675 +2819,63.855,353.217,497.751,177.219,430.664,345.808,494.957,20.662,136.941,20.662,345.027,315.129,360.862,26.675,19.692,26.675 +2820,63.876,351.388,501.095,178.811,427.600,344.718,498.236,23.199,131.743,23.199,346.124,315.078,360.637,28.231,20.123,28.231 +2821,63.900,348.942,504.805,181.255,424.499,343.480,502.195,25.551,126.085,25.551,347.636,314.012,359.743,27.889,19.080,27.889 +2822,63.925,346.472,509.394,183.157,419.917,341.186,506.524,28.501,120.440,28.501,348.377,313.436,360.407,29.152,20.665,29.152 +2823,63.950,346.472,509.394,183.157,419.917,341.186,506.524,28.501,120.440,28.501,348.377,313.436,360.407,29.152,20.665,29.152 +2824,63.971,344.007,513.847,187.129,416.357,339.705,511.191,31.696,115.115,31.696,349.178,312.525,359.290,29.329,18.081,29.329 +2825,63.997,340.980,518.486,190.661,411.450,336.929,515.627,35.218,109.654,35.218,349.230,312.120,359.147,29.267,18.095,29.267 +2826,64.021,340.980,518.486,190.661,411.450,336.929,515.627,35.218,109.654,35.218,349.230,312.120,359.147,29.267,18.095,29.267 +2827,64.044,338.051,523.753,195.115,406.276,333.857,520.352,39.040,103.921,39.040,348.427,311.912,359.227,28.927,17.330,28.927 +2828,64.068,334.877,529.341,199.704,401.327,330.181,524.951,43.069,98.448,43.069,346.619,311.269,359.476,28.300,17.687,28.300 +2829,64.094,330.918,533.955,205.241,396.187,326.278,528.908,47.406,92.862,47.406,345.536,310.562,359.246,27.369,17.278,27.369 +2830,64.119,330.918,533.955,205.241,396.187,326.278,528.908,47.406,92.862,47.406,345.536,310.562,359.246,27.369,17.278,27.369 +2831,64.143,325.382,539.176,211.244,390.967,321.095,533.791,51.480,87.489,51.480,346.550,310.622,360.316,26.013,17.106,26.013 +2832,64.166,320.309,544.623,217.741,386.580,315.796,537.838,56.371,82.621,56.371,344.196,310.458,360.494,26.591,17.202,26.591 +2833,64.190,320.309,544.623,217.741,386.580,315.796,537.838,56.371,82.621,56.371,344.196,310.458,360.494,26.591,17.202,26.591 +2834,64.211,314.785,549.612,224.464,382.110,310.039,541.047,61.011,78.366,61.011,341.410,311.064,360.995,24.823,17.169,24.823 +2835,64.235,311.840,557.526,231.665,378.456,305.365,543.259,65.592,75.000,65.592,329.724,311.190,361.059,20.286,17.595,20.286 +2836,64.259,323.439,618.960,238.335,375.233,297.320,546.280,70.233,72.255,70.233,207.375,310.528,361.834,20.174,17.106,20.174 +2837,64.284,323.439,618.960,238.335,375.233,297.320,546.280,70.233,72.255,70.233,207.375,310.528,361.834,20.174,17.106,20.174 +2838,64.309,294.126,566.068,245.959,372.583,289.448,548.464,75.118,69.298,75.118,325.872,310.971,362.302,21.323,16.816,21.323 +2839,64.333,282.935,560.335,253.624,370.666,281.077,549.816,79.980,66.218,79.980,341.026,310.804,362.389,22.997,16.828,22.997 +2840,64.358,272.700,558.148,262.300,369.129,272.032,550.027,85.292,62.328,85.292,345.876,310.971,362.173,25.690,17.734,25.690 +2841,64.382,272.700,558.148,262.300,369.129,272.032,550.027,85.292,62.328,85.292,345.876,310.971,362.173,25.690,17.734,25.690 +2842,64.405,264.468,557.059,270.906,368.799,264.574,549.916,90.852,57.771,90.852,348.095,311.227,362.383,24.116,18.004,24.116 +2843,64.430,257.958,556.284,279.955,369.018,258.857,549.454,97.501,52.826,97.501,349.513,311.616,363.293,24.332,19.322,24.332 +2844,64.454,257.958,556.284,279.955,369.018,258.857,549.454,97.501,52.826,97.501,349.513,311.616,363.293,24.332,19.322,24.332 +2845,64.476,249.037,555.243,288.774,370.441,250.566,548.434,102.653,47.839,102.653,350.123,311.656,364.079,22.720,19.220,22.720 +2846,64.500,240.857,553.604,297.950,372.976,243.227,546.400,108.214,42.859,108.214,348.510,311.544,363.678,23.009,19.924,23.009 +2847,64.525,233.410,551.552,306.665,376.144,236.803,543.778,113.582,37.833,113.582,346.201,311.536,363.166,24.091,19.930,24.091 +2848,64.549,233.410,551.552,306.665,376.144,236.803,543.778,113.582,37.833,113.582,346.201,311.536,363.166,24.091,19.930,24.091 +2849,64.572,226.125,549.069,314.772,380.353,230.505,541.120,118.856,32.800,118.856,344.794,311.833,362.946,25.381,19.595,25.381 +2850,64.596,219.399,545.432,322.517,385.085,224.637,537.642,123.917,27.970,123.917,343.655,312.292,362.430,24.953,18.705,24.953 +2851,64.620,219.399,545.432,322.517,385.085,224.637,537.642,123.917,27.970,123.917,343.655,312.292,362.430,24.953,18.705,24.953 +2852,64.643,214.143,540.825,329.664,390.117,219.824,533.777,128.870,23.164,128.870,343.454,312.512,361.559,26.045,17.807,26.045 +2853,64.667,209.223,536.712,336.081,395.277,215.565,530.037,133.531,18.626,133.531,342.997,313.383,361.412,27.695,16.955,27.695 +2854,64.692,203.977,532.139,341.257,400.975,211.041,525.775,137.981,13.968,137.981,341.541,313.843,360.558,27.702,15.335,27.702 +2855,64.716,203.977,532.139,341.257,400.975,211.041,525.775,137.981,13.968,137.981,341.541,313.843,360.558,27.702,15.335,27.702 +2856,64.740,196.170,529.075,346.000,406.000,206.804,520.825,142.193,9.462,142.193,333.811,314.331,360.728,26.672,14.467,26.672 +2857,64.763,189.808,523.961,349.578,410.618,202.673,515.385,146.310,5.080,146.310,329.769,314.693,360.694,25.794,14.144,25.794 +2858,64.788,189.808,523.961,349.578,410.618,202.673,515.385,146.310,5.080,146.310,329.769,314.693,360.694,25.794,14.144,25.794 +2859,64.809,183.045,519.878,352.486,414.922,199.324,510.298,149.523,0.888,149.523,322.971,315.148,360.748,25.043,13.363,25.043 +2860,64.833,174.377,517.260,354.396,419.184,196.221,506.063,152.860,176.722,152.860,311.688,315.743,360.781,24.394,13.432,24.394 +2861,64.857,162.428,513.637,355.438,423.011,192.732,500.920,157.235,172.758,157.235,294.627,316.176,360.356,22.880,13.406,22.880 +2862,64.880,162.428,513.637,355.438,423.011,192.732,500.920,157.235,172.758,157.235,294.627,316.176,360.356,22.880,13.406,22.880 +2863,64.902,144.513,514.806,356.791,426.438,191.336,497.651,159.878,168.877,159.878,259.976,316.330,359.709,21.293,13.504,21.293 +2864,64.926,113.516,518.508,357.787,429.837,189.144,492.608,161.095,165.012,161.095,199.891,316.606,359.769,18.455,13.737,18.455 +2865,64.950,113.516,518.508,357.787,429.837,189.144,492.608,161.095,165.012,161.095,199.891,316.606,359.769,18.455,13.737,18.455 +2866,64.975,112.505,512.817,358.492,433.027,187.844,489.987,163.142,161.271,163.142,202.222,316.561,359.666,18.618,13.872,18.618 +2867,65.000,166.881,492.661,359.185,435.806,187.383,486.943,164.417,157.620,164.417,315.882,316.294,358.449,19.391,13.925,19.391 +2868,65.026,175.132,487.977,359.978,437.933,187.105,484.920,165.677,153.947,165.677,333.534,315.772,358.248,19.358,14.035,19.358 +2869,65.051,175.132,487.977,359.978,437.933,187.105,484.920,165.677,153.947,165.677,333.534,315.772,358.248,19.358,14.035,19.358 +2870,65.075,178.982,487.693,360.177,440.043,187.593,485.677,166.823,150.544,166.823,339.196,316.770,356.885,22.746,14.721,22.746 +2871,65.099,180.483,486.898,361.251,442.119,188.103,485.195,167.400,146.889,167.400,341.134,315.961,356.750,23.847,15.113,23.847 +2872,65.124,181.474,486.551,361.779,443.054,188.432,485.062,167.921,143.531,167.921,342.368,315.237,356.600,22.982,15.489,22.982 +2873,65.147,181.474,486.551,361.779,443.054,188.432,485.062,167.921,143.531,167.921,342.368,315.237,356.600,22.982,15.489,22.982 +2874,65.169,182.178,486.418,361.960,443.661,188.671,485.006,167.735,140.064,167.735,342.946,315.102,356.235,23.920,15.656,23.920 +2875,65.194,183.255,487.114,361.798,443.252,189.110,485.805,167.400,136.848,167.400,343.626,314.978,355.625,24.605,15.685,24.605 +2876,65.217,183.255,487.114,361.798,443.252,189.110,485.805,167.400,136.848,167.400,343.626,314.978,355.625,24.605,15.685,24.605 +2877,65.241,183.296,488.034,361.635,442.739,189.092,486.677,166.823,133.363,166.823,344.127,314.110,356.033,24.465,15.752,24.465 +2878,65.265,183.650,489.619,360.847,441.611,188.922,488.307,166.022,130.040,166.022,345.362,314.337,356.228,23.539,16.141,23.539 +2879,65.290,183.650,489.619,360.847,441.611,188.922,488.307,166.022,130.040,166.022,345.362,314.337,356.228,23.539,16.141,23.539 +2880,65.312,183.685,491.799,359.820,439.740,188.955,490.346,164.585,126.870,164.585,345.408,314.600,356.340,24.866,16.200,24.866 +2881,65.337,184.037,494.042,358.455,437.300,188.957,492.543,163.053,123.818,163.053,346.194,313.973,356.481,24.744,16.479,24.744 +2882,65.361,185.051,497.534,357.121,434.274,189.689,495.958,161.227,120.735,161.227,346.954,313.824,356.751,25.829,16.610,25.829 +2883,65.386,185.051,497.534,357.121,434.274,189.689,495.958,161.227,120.735,161.227,346.954,313.824,356.751,25.829,16.610,25.829 +2884,65.411,185.608,500.245,355.629,430.305,190.447,498.374,158.860,117.759,158.860,346.854,313.308,357.230,25.096,16.767,25.096 +2885,65.435,187.385,503.485,353.944,426.514,191.710,501.604,156.501,114.702,156.501,348.008,313.029,357.440,24.322,17.007,24.322 +2886,65.460,189.027,507.602,352.121,421.948,193.502,505.386,153.656,111.801,153.656,348.354,313.268,358.343,25.127,17.270,25.127 +2887,65.484,189.027,507.602,352.121,421.948,193.502,505.386,153.656,111.801,153.656,348.354,313.268,358.343,25.127,17.270,25.127 +2888,65.508,191.622,512.649,349.563,417.508,196.113,510.116,150.573,108.886,150.573,347.989,312.483,358.302,25.683,17.330,25.683 +2889,65.532,194.774,517.057,346.754,412.646,198.996,514.323,147.080,105.859,147.080,348.523,312.345,358.582,25.872,17.435,25.872 +2890,65.556,199.018,522.406,343.873,407.852,203.117,519.359,143.379,103.305,143.379,348.760,312.075,358.974,26.703,18.398,26.703 +2891,65.579,199.018,522.406,343.873,407.852,203.117,519.359,143.379,103.305,143.379,348.760,312.075,358.974,26.703,18.398,26.703 +2892,65.604,203.125,526.389,340.216,402.632,206.940,523.115,139.365,100.401,139.365,349.153,311.723,359.207,25.145,18.296,25.145 +2893,65.629,207.750,531.750,336.047,397.677,211.592,527.908,135.000,97.507,135.000,349.311,311.239,360.179,24.749,19.037,24.749 +2894,65.653,207.750,531.750,336.047,397.677,211.592,527.908,135.000,97.507,135.000,349.311,311.239,360.179,24.749,19.037,24.749 +2895,65.677,213.556,536.749,330.511,393.001,216.974,532.751,130.521,94.800,130.521,349.485,311.674,360.004,25.482,18.408,25.482 +2896,65.701,219.570,541.646,324.638,388.396,222.881,537.041,125.720,92.075,125.720,348.835,311.194,360.179,25.597,18.466,25.597 +2897,65.725,226.253,545.919,318.018,384.014,229.225,540.918,120.721,89.187,120.721,348.857,310.196,360.491,25.184,18.161,25.184 +2898,65.750,226.253,545.919,318.018,384.014,229.225,540.918,120.721,89.187,120.721,348.857,310.196,360.491,25.184,18.161,25.184 +2899,65.772,232.364,549.821,310.506,380.500,235.012,544.318,115.694,86.379,115.694,348.489,310.341,360.704,23.557,18.027,23.557 +2900,65.796,239.965,553.410,302.146,377.317,242.169,547.499,110.445,83.660,110.445,348.208,310.754,360.825,23.830,17.669,23.830 +2901,65.821,239.965,553.410,302.146,377.317,242.169,547.499,110.445,83.660,110.445,348.208,310.754,360.825,23.830,17.669,23.830 +2902,65.843,247.349,556.401,293.331,374.364,249.090,549.931,105.058,80.720,105.058,348.663,310.884,362.064,23.196,16.868,23.196 +2903,65.869,254.067,558.161,284.354,372.061,255.266,550.789,99.238,78.035,99.238,347.220,310.929,362.159,23.504,17.175,23.504 +2904,65.894,264.991,559.572,275.106,370.772,265.625,551.274,94.370,75.069,94.370,344.752,310.999,361.399,25.543,16.426,25.543 +2905,65.918,264.991,559.572,275.106,370.772,265.625,551.274,94.370,75.069,94.370,344.752,310.999,361.399,25.543,16.426,25.543 +2906,65.942,272.750,560.483,265.960,370.354,272.528,550.744,88.698,72.382,88.698,341.503,311.218,360.986,23.153,16.570,23.153 +2907,65.967,278.124,561.847,256.873,370.607,276.604,550.689,82.246,69.528,82.246,339.674,311.681,362.195,23.915,16.326,23.915 +2908,65.992,288.092,561.979,248.028,371.566,285.153,549.169,77.079,66.677,77.079,336.528,311.993,362.815,22.114,16.331,22.114 +2909,66.016,288.092,561.979,248.028,371.566,285.153,549.169,77.079,66.677,77.079,336.528,311.993,362.815,22.114,16.331,22.114 +2910,66.039,299.721,562.813,239.855,373.826,294.483,546.395,72.305,63.892,72.305,327.552,311.755,362.018,20.188,16.437,20.188 +2911,66.064,311.799,568.939,231.959,376.352,300.928,543.778,66.634,61.060,66.634,307.281,312.163,362.098,20.222,16.370,20.222 +2912,66.088,311.799,568.939,231.959,376.352,300.928,543.778,66.634,61.060,66.634,307.281,312.163,362.098,20.222,16.370,20.222 +2913,66.110,326.352,575.160,224.641,380.036,307.562,540.934,61.232,58.042,61.232,283.805,312.590,361.893,20.849,16.478,20.849 +2914,66.135,358.429,602.655,217.829,383.970,315.624,536.172,57.225,55.008,57.225,203.682,312.701,361.825,19.131,16.139,19.131 +2915,66.159,369.010,594.924,211.899,388.471,320.843,532.591,52.306,51.892,52.306,203.756,312.674,361.306,19.386,16.508,19.386 +2916,66.183,369.010,594.924,211.899,388.471,320.843,532.591,52.306,51.892,52.306,203.756,312.674,361.306,19.386,16.508,19.386 +2917,66.206,378.825,586.555,206.035,393.469,326.285,528.045,48.077,48.772,48.077,203.672,312.694,360.947,19.072,16.430,19.072 +2918,66.230,379.219,570.913,200.711,398.328,330.326,524.243,43.668,45.666,43.668,226.213,312.602,361.397,18.774,15.818,18.774 +2919,66.254,379.219,570.913,200.711,398.328,330.326,524.243,43.668,45.666,43.668,226.213,312.602,361.397,18.774,15.818,18.774 +2920,66.276,374.149,553.338,196.657,403.327,334.045,520.109,39.644,42.245,39.644,256.439,313.132,360.601,18.899,16.188,18.899 +2921,66.301,374.571,542.128,192.491,408.242,337.842,515.170,36.278,39.094,36.278,269.771,313.744,360.891,19.419,15.668,19.419 +2922,66.327,378.195,534.972,189.215,412.807,340.632,510.111,33.498,35.665,33.498,269.851,314.223,359.940,20.574,15.991,20.574 +2923,66.351,378.195,534.972,189.215,412.807,340.632,510.111,33.498,35.665,33.498,269.851,314.223,359.940,20.574,15.991,20.574 +2924,66.376,382.357,529.459,185.857,417.015,342.421,506.162,30.256,32.367,30.256,267.843,314.384,360.312,20.443,15.977,20.443 +2925,66.401,391.134,527.211,183.388,420.384,343.447,503.182,26.742,28.787,26.742,253.595,315.174,360.393,18.698,16.016,18.698 +2926,66.426,416.729,531.958,181.508,423.357,344.812,499.784,24.102,25.201,24.102,202.982,315.356,360.554,18.833,15.542,18.833 +2927,66.450,416.729,531.958,181.508,423.357,344.812,499.784,24.102,25.201,24.102,202.982,315.356,360.554,18.833,15.542,18.833 +2928,66.474,419.448,526.379,179.781,426.049,345.483,496.793,21.801,21.766,21.801,200.922,315.683,360.249,18.570,15.158,18.570 +2929,66.498,421.102,521.219,178.297,428.617,346.339,494.033,19.983,18.259,19.983,201.458,315.923,360.562,18.796,14.513,18.796 +2930,66.522,421.102,521.219,178.297,428.617,346.339,494.033,19.983,18.259,19.983,201.458,315.923,360.562,18.796,14.513,18.796 +2931,66.543,422.050,516.850,177.072,430.805,346.753,491.751,18.435,14.597,18.435,201.753,316.325,360.493,18.657,14.586,18.657 +2932,66.566,422.740,513.016,176.418,432.825,347.574,489.435,17.418,10.871,17.418,202.953,316.507,360.508,18.821,15.004,18.821 +2933,66.591,404.504,504.985,175.800,434.100,347.943,488.294,16.440,7.125,16.440,242.939,316.413,360.885,18.868,14.388,18.868 +2934,66.615,404.504,504.985,175.800,434.100,347.943,488.294,16.440,7.125,16.440,242.939,316.413,360.885,18.868,14.388,18.868 +2935,66.638,389.253,500.060,175.616,435.431,347.938,488.950,15.051,3.201,15.051,275.052,316.016,360.617,20.742,14.520,20.742 +2936,66.664,380.760,498.115,175.483,436.441,348.066,488.523,16.351,179.098,16.351,292.387,317.039,360.530,25.115,14.282,25.115 +2937,66.689,380.760,498.115,175.483,436.441,348.066,488.523,16.351,179.098,16.351,292.387,317.039,360.530,25.115,14.282,25.115 +2938,66.711,375.129,497.065,175.347,436.622,348.013,489.043,16.480,175.350,16.480,304.333,316.314,360.887,25.783,13.925,25.783 +2939,66.737,370.715,496.287,175.633,436.634,348.161,489.492,16.765,171.187,16.765,313.774,316.283,360.883,24.422,14.011,24.422 +2940,66.761,366.556,497.326,175.854,435.745,347.676,491.274,17.771,166.804,17.771,321.493,316.592,361.144,26.627,14.772,26.627 +2941,66.786,366.556,497.326,175.854,435.745,347.676,491.274,17.771,166.804,17.771,321.493,316.592,361.144,26.627,14.772,26.627 +2942,66.810,363.119,499.110,176.525,434.421,347.096,493.607,18.956,162.426,18.956,327.210,316.240,361.093,28.727,15.484,28.727 +2943,66.833,360.025,499.934,176.690,432.003,346.186,494.767,20.475,157.913,20.475,331.941,316.217,361.486,27.980,18.009,27.980 +2944,66.858,357.371,502.050,177.935,429.904,345.617,497.278,22.096,153.185,22.096,336.050,315.724,361.420,27.824,17.677,27.824 +2945,66.882,357.371,502.050,177.935,429.904,345.617,497.278,22.096,153.185,22.096,336.050,315.724,361.420,27.824,17.677,27.824 +2946,66.904,354.266,505.163,178.994,426.514,344.006,500.633,23.824,148.788,23.824,339.351,315.724,361.781,27.741,19.064,27.741 +2947,66.928,351.276,507.456,180.958,423.169,343.088,503.381,26.458,144.197,26.458,343.479,315.265,361.771,27.745,19.053,27.745 +2948,66.953,351.276,507.456,180.958,423.169,343.088,503.381,26.458,144.197,26.458,343.479,315.265,361.771,27.745,19.053,27.745 +2949,66.978,347.969,510.556,183.651,419.596,341.428,506.906,29.163,139.185,29.163,345.665,314.082,360.645,28.634,19.093,28.634 +2950,67.003,345.500,514.295,186.902,414.955,339.751,510.679,32.174,134.409,32.174,347.117,313.982,360.699,28.055,18.253,28.055 +2951,67.029,341.795,518.312,190.227,410.370,336.884,514.827,35.357,129.155,35.357,348.064,313.653,360.108,29.228,18.389,29.228 +2952,67.054,341.795,518.312,190.227,410.370,336.884,514.827,35.357,129.155,35.357,348.064,313.653,360.108,29.228,18.389,29.228 +2953,67.079,337.591,522.368,194.020,405.355,333.607,519.169,38.766,124.315,38.766,349.986,312.956,360.203,28.235,18.315,28.235 +2954,67.109,333.689,527.121,198.466,400.450,329.756,523.484,42.761,119.358,42.761,349.139,312.460,359.852,29.147,18.031,29.147 +2955,67.134,329.527,532.229,202.906,395.563,325.339,527.766,46.816,114.102,46.816,348.125,311.223,360.366,28.922,18.785,28.922 +2956,67.159,325.131,537.104,209.021,390.370,320.913,531.877,51.099,109.047,51.099,347.349,311.810,360.782,27.604,18.084,27.604 +2957,67.183,325.131,537.104,209.021,390.370,320.913,531.877,51.099,109.047,51.099,347.349,311.810,360.782,27.604,18.084,27.604 +2958,67.207,318.988,541.093,215.118,386.529,315.667,536.247,55.571,104.036,55.571,348.931,310.931,360.680,27.045,17.948,27.045 +2959,67.230,313.158,545.713,222.385,382.755,310.085,540.380,60.056,98.637,60.056,348.408,310.639,360.719,25.429,17.233,25.429 +2960,67.255,313.158,545.713,222.385,382.755,310.085,540.380,60.056,98.637,60.056,348.408,310.639,360.719,25.429,17.233,25.429 +2961,67.277,307.283,550.271,229.544,379.643,304.254,543.798,64.926,94.008,64.926,346.398,309.992,360.692,23.118,17.251,23.118 +2962,67.301,301.025,554.962,237.000,376.500,297.918,546.516,69.803,90.000,69.803,343.188,309.000,361.187,22.053,16.000,22.053 +2963,67.327,295.200,561.530,244.767,374.543,291.821,549.059,74.840,86.634,74.840,335.657,309.935,361.497,21.135,16.736,21.135 +2964,67.351,295.200,561.530,244.767,374.543,291.821,549.059,74.840,86.634,74.840,335.657,309.935,361.497,21.135,16.736,21.135 +2965,67.377,289.447,580.370,252.629,373.039,283.910,551.383,79.186,84.015,79.186,303.071,310.075,362.092,22.592,16.595,22.592 +2966,67.401,277.623,592.329,260.280,371.960,273.054,552.347,83.480,81.870,83.480,280.857,309.713,361.342,26.939,16.688,26.939 +2967,67.427,272.016,563.524,268.565,371.464,272.053,551.747,90.180,79.216,90.180,336.989,309.858,360.542,24.997,16.559,24.997 +2968,67.452,272.016,563.524,268.565,371.464,272.053,551.747,90.180,79.216,90.180,336.989,309.858,360.542,24.997,16.559,24.997 +2969,67.477,264.548,559.180,277.074,371.355,265.230,551.600,95.146,75.828,95.146,345.941,309.732,361.162,25.663,17.031,25.663 +2970,67.500,254.975,557.130,285.857,371.883,256.163,550.575,100.272,71.884,100.272,348.921,310.245,362.245,23.262,17.823,23.262 +2971,67.526,247.220,554.803,294.794,373.057,248.935,548.591,105.438,67.647,105.438,349.928,310.527,362.817,23.864,19.457,23.864 +2972,67.550,247.220,554.803,294.794,373.057,248.935,548.591,105.438,67.647,105.438,349.928,310.527,362.817,23.864,19.457,23.864 +2973,67.573,239.226,550.969,302.915,374.787,241.362,545.300,110.644,62.879,110.644,350.412,310.886,362.530,23.797,19.711,23.797 +2974,67.596,231.266,548.063,310.444,377.845,234.050,542.307,115.810,58.134,115.810,349.844,311.229,362.633,24.169,20.061,24.169 +2975,67.621,231.266,548.063,310.444,377.845,234.050,542.307,115.810,58.134,115.810,349.844,311.229,362.633,24.169,20.061,24.169 +2976,67.644,223.389,544.625,317.583,381.184,227.077,538.459,120.887,53.306,120.887,348.493,311.806,362.863,24.241,20.889,24.241 +2977,67.669,217.251,541.763,324.017,385.381,221.906,535.267,125.625,48.434,125.625,346.640,311.670,362.623,26.643,20.582,26.643 +2978,67.695,210.880,537.440,329.954,389.997,216.166,531.201,130.277,43.556,130.277,346.225,312.834,362.581,26.413,19.852,26.413 +2979,67.719,210.880,537.440,329.954,389.997,216.166,531.201,130.277,43.556,130.277,346.225,312.834,362.581,26.413,19.852,26.413 +2980,67.744,205.115,533.574,335.322,395.067,211.388,527.238,134.715,38.367,134.715,344.409,313.292,362.241,26.609,19.046,26.609 +2981,67.769,200.694,529.366,340.327,400.267,207.484,523.433,138.851,33.770,138.851,344.120,313.683,362.154,26.850,18.398,26.850 +2982,67.795,196.911,525.193,344.572,405.980,204.114,519.694,142.642,29.291,142.642,343.167,314.312,361.292,26.685,16.932,26.685 +2983,67.819,196.911,525.193,344.572,405.980,204.114,519.694,142.642,29.291,142.642,343.167,314.312,361.292,26.685,16.932,26.685 +2984,67.843,193.364,520.544,348.869,411.207,201.460,515.135,146.254,24.944,146.254,341.137,314.210,360.611,25.469,16.300,25.469 +2985,67.868,188.957,517.278,352.347,416.578,199.146,511.298,149.592,20.603,149.592,336.511,314.720,360.140,25.051,14.660,25.051 +2986,67.894,185.080,513.694,355.530,420.899,197.447,507.261,152.517,16.359,152.517,332.316,314.956,360.195,24.697,14.440,24.697 +2987,67.918,185.080,513.694,355.530,420.899,197.447,507.261,152.517,16.359,152.517,332.316,314.956,360.195,24.697,14.440,24.697 +2988,67.943,181.593,510.620,357.505,424.978,195.912,503.997,155.179,12.313,155.179,328.119,315.540,359.672,25.198,14.104,25.198 +2989,67.968,176.971,507.729,359.521,428.358,194.669,500.361,157.398,8.246,157.398,321.387,315.931,359.727,25.390,14.099,25.390 +2990,67.994,171.380,505.526,360.660,430.784,193.592,497.299,159.677,4.131,159.677,312.166,316.055,359.539,24.173,13.326,24.173 +2991,68.018,171.380,505.526,360.660,430.784,193.592,497.299,159.677,4.131,159.677,312.166,316.055,359.539,24.173,13.326,24.173 +2992,68.042,163.105,503.330,361.503,432.952,192.378,494.016,162.350,0.292,162.350,297.919,315.062,359.357,22.350,13.030,22.350 +2993,68.066,152.028,502.849,361.463,434.889,191.021,491.708,164.055,176.558,164.055,277.880,315.933,358.987,21.154,13.134,21.154 +2994,68.092,131.622,504.889,361.708,436.162,189.752,488.493,164.249,172.875,164.249,238.613,316.909,359.409,18.731,13.148,18.731 +2995,68.117,131.622,504.889,361.708,436.162,189.752,488.493,164.249,172.875,164.249,238.613,316.909,359.409,18.731,13.148,18.731 +2996,68.139,112.556,507.585,361.387,436.894,189.026,487.193,165.069,169.439,165.069,200.719,316.912,359.003,18.681,13.263,18.681 +2997,68.163,111.329,506.262,361.441,437.278,188.481,486.135,165.379,165.887,165.379,199.918,316.027,359.385,18.595,13.245,18.595 +2998,68.187,111.329,506.262,361.441,437.278,188.481,486.135,165.379,165.887,165.379,199.918,316.027,359.385,18.595,13.245,18.595 +2999,68.211,138.362,498.842,360.551,437.481,187.633,486.127,165.530,162.543,165.530,257.406,316.236,359.175,18.616,13.571,18.616 +3000,68.235,164.471,492.113,360.037,437.279,187.373,485.957,164.956,159.258,164.956,311.334,316.608,358.764,19.204,13.795,19.204 +3001,68.259,171.388,491.189,359.693,436.179,187.645,486.662,164.438,156.114,164.438,324.817,316.078,358.569,19.060,14.133,19.060 +3002,68.284,171.388,491.189,359.693,436.179,187.645,486.662,164.438,156.114,164.438,324.817,316.078,358.569,19.060,14.133,19.060 +3003,68.306,174.424,492.140,359.121,435.256,187.871,488.185,163.610,153.023,163.610,330.417,315.779,358.452,18.905,14.841,18.905 +3004,68.331,177.507,495.789,358.531,433.982,189.099,492.141,162.534,149.744,162.534,333.846,316.071,358.152,22.400,15.044,22.400 +3005,68.356,177.507,495.789,358.531,433.982,189.099,492.141,162.534,149.744,162.534,333.846,316.071,358.152,22.400,15.044,22.400 +3006,68.377,180.891,497.919,357.518,431.762,189.939,494.762,160.764,146.857,160.764,338.793,315.634,357.958,24.131,15.224,24.131 +3007,68.403,183.039,501.322,357.213,429.645,191.809,497.961,159.034,143.587,159.034,339.011,315.241,357.795,25.151,15.290,25.151 +3008,68.429,184.799,504.912,356.012,426.626,193.459,501.232,156.981,140.711,156.981,338.750,315.282,357.568,25.012,15.620,25.012 +3009,68.453,184.799,504.912,356.012,426.626,193.459,501.232,156.981,140.711,156.981,338.750,315.282,357.568,25.012,15.620,25.012 +3010,68.477,187.218,508.232,354.507,423.508,194.847,504.614,154.628,137.746,154.628,341.141,314.611,358.027,24.582,15.757,24.582 +3011,68.501,189.408,512.516,352.500,419.500,196.947,508.495,151.928,135.000,151.928,341.176,313.955,358.265,24.471,15.556,24.471 +3012,68.527,190.997,517.468,349.548,415.498,199.013,512.632,148.895,132.274,148.895,339.419,314.138,358.142,24.639,15.875,24.639 +3013,68.551,190.997,517.468,349.548,415.498,199.013,512.632,148.895,132.274,148.895,339.419,314.138,358.142,24.639,15.875,24.639 +3014,68.580,194.184,521.159,346.474,410.651,201.385,516.237,145.649,129.605,145.649,341.281,313.550,358.726,24.121,16.141,24.121 +3015,68.605,197.428,526.520,342.700,405.900,204.640,520.877,141.961,126.870,141.961,340.852,313.000,359.167,25.407,16.200,25.407 +3016,68.630,200.388,531.394,338.186,401.262,207.600,524.928,138.122,124.303,138.122,340.191,312.615,359.565,24.468,16.614,24.468 +3017,68.655,200.388,531.394,338.186,401.262,207.600,524.928,138.122,124.303,138.122,340.191,312.615,359.565,24.468,16.614,24.468 +3018,68.678,202.886,536.811,333.527,396.177,211.309,528.117,134.091,121.686,134.091,335.396,312.493,359.606,22.692,16.651,22.692 +3019,68.703,206.014,541.158,328.202,391.113,214.439,530.923,129.461,119.155,129.461,333.975,312.564,360.488,19.152,16.521,19.152 +3020,68.728,209.984,548.023,322.125,386.825,219.126,534.767,124.592,116.775,124.592,328.320,312.605,360.527,19.303,16.840,19.303 +3021,68.752,209.984,548.023,322.125,386.825,219.126,534.767,124.592,116.775,124.592,328.320,312.605,360.527,19.303,16.840,19.303 +3022,68.778,214.639,557.008,315.643,382.410,225.152,538.608,119.745,114.158,119.745,318.645,312.740,361.028,19.722,16.739,19.722 +3023,68.803,216.723,575.028,308.431,378.672,231.800,542.413,114.809,111.801,114.809,289.705,311.411,361.566,19.918,16.527,19.918 +3024,68.827,212.448,619.191,300.913,375.207,238.762,545.034,109.537,109.473,109.537,204.294,311.634,361.668,20.490,16.840,20.490 +3025,68.851,212.448,619.191,300.913,375.207,238.762,545.034,109.537,109.473,109.537,204.294,311.634,361.668,20.490,16.840,20.490 +3026,68.875,236.842,592.909,293.007,373.283,248.931,548.807,105.329,107.335,105.329,270.406,311.816,361.863,22.265,16.548,22.265 +3027,68.900,252.035,570.668,284.632,371.939,255.446,550.324,99.516,105.068,99.516,320.254,311.077,361.510,23.345,16.638,23.345 +3028,68.925,265.079,566.548,276.359,371.422,266.325,551.598,94.764,102.804,94.764,330.770,310.668,360.774,25.827,17.021,25.827 +3029,68.949,265.079,566.548,276.359,371.422,266.325,551.598,94.764,102.804,94.764,330.770,310.668,360.774,25.827,17.021,25.827 +3030,68.972,273.503,562.568,267.529,370.965,273.361,551.012,89.296,100.421,89.296,337.097,310.822,360.210,23.121,17.104,23.121 +3031,68.997,279.000,560.799,259.432,371.712,277.837,551.333,82.992,98.427,82.992,341.974,311.013,361.049,23.943,17.110,23.943 +3032,69.022,279.000,560.799,259.432,371.712,277.837,551.333,82.992,98.427,82.992,341.974,311.013,361.049,23.943,17.110,23.943 +3033,69.045,289.447,559.123,250.733,373.190,287.634,550.245,78.460,96.254,78.460,343.591,310.524,361.715,21.776,17.185,21.776 +3034,69.071,296.708,556.691,242.135,375.117,294.145,548.186,73.229,94.086,73.229,343.664,311.136,361.430,20.946,17.384,20.946 +3035,69.096,303.624,553.653,233.966,378.032,300.518,545.903,68.157,91.909,68.157,344.462,310.428,361.161,22.872,17.257,22.872 +3036,69.120,303.624,553.653,233.966,378.032,300.518,545.903,68.157,91.909,68.157,344.462,310.428,361.161,22.872,17.257,22.872 +3037,69.143,309.875,549.556,226.344,380.514,306.326,542.427,63.531,89.635,63.531,345.253,311.051,361.180,24.533,16.643,24.533 +3038,69.167,316.189,545.908,219.417,384.393,312.044,539.101,58.655,87.455,58.655,344.686,311.315,360.625,25.264,17.538,25.264 +3039,69.194,321.558,541.343,212.945,388.338,317.204,535.305,54.206,85.236,54.206,345.486,311.919,360.373,26.639,17.772,26.639 +3040,69.217,321.558,541.343,212.945,388.338,317.204,535.305,54.206,85.236,54.206,345.486,311.919,360.373,26.639,17.772,26.639 +3041,69.242,326.555,536.637,207.608,392.429,322.083,531.322,49.917,83.367,49.917,346.063,311.783,359.956,27.529,17.510,27.529 +3042,69.266,331.098,531.813,202.878,396.709,326.601,527.143,46.081,81.203,46.081,346.581,312.024,359.547,28.573,17.494,28.573 +3043,69.292,336.018,527.459,198.371,401.228,330.858,522.795,42.109,78.778,42.109,345.699,312.418,359.609,27.164,17.671,27.164 +3044,69.316,336.018,527.459,198.371,401.228,330.858,522.795,42.109,78.778,42.109,345.699,312.418,359.609,27.164,17.671,27.164 +3045,69.340,339.183,523.146,194.822,405.805,334.203,519.163,38.660,76.675,38.660,346.550,312.410,359.304,29.048,17.669,29.048 +3046,69.365,342.723,518.703,191.690,410.308,337.527,515.009,35.405,74.450,35.405,346.302,312.501,359.054,28.164,17.500,28.164 +3047,69.390,342.723,518.703,191.690,410.308,337.527,515.009,35.405,74.450,35.405,346.302,312.501,359.054,28.164,17.500,28.164 +3048,69.411,346.090,514.601,189.359,414.562,340.573,511.111,32.316,72.135,32.316,345.758,312.468,358.814,27.492,17.203,27.492 +3049,69.435,347.890,511.475,187.208,418.369,342.275,508.285,29.600,69.727,29.600,345.570,312.862,358.486,28.930,17.020,28.930 +3050,69.461,349.948,508.473,185.506,422.207,344.040,505.442,27.165,67.249,27.165,344.816,312.773,358.096,29.407,16.956,29.407 +3051,69.485,349.948,508.473,185.506,422.207,344.040,505.442,27.165,67.249,27.165,344.816,312.773,358.096,29.407,16.956,29.407 +3052,69.509,351.114,504.560,183.943,425.292,345.638,502.016,24.920,64.855,24.920,345.862,312.806,357.937,27.564,17.089,27.564 +3053,69.534,352.718,502.441,182.749,428.110,346.568,499.861,22.758,62.468,22.758,344.306,313.194,357.643,25.523,17.169,25.523 +3054,69.559,352.518,500.771,181.554,430.329,346.852,498.529,21.591,60.186,21.591,345.404,313.940,357.592,29.929,16.836,29.929 +3055,69.582,352.518,500.771,181.554,430.329,346.852,498.529,21.591,60.186,21.591,345.404,313.940,357.592,29.929,16.836,29.929 +3056,69.605,353.459,499.606,180.989,432.191,347.424,497.410,20.002,57.700,20.002,344.563,314.300,357.409,28.277,16.993,28.277 +3057,69.630,354.556,496.552,180.330,433.310,348.224,494.297,19.607,55.305,19.607,343.803,314.330,357.248,26.777,16.760,26.777 +3058,69.654,354.556,496.552,180.330,433.310,348.224,494.297,19.607,55.305,19.607,343.803,314.330,357.248,26.777,16.760,26.777 +3059,69.679,355.038,495.725,179.853,433.493,348.333,493.404,19.093,52.716,19.093,343.430,314.232,357.619,27.150,17.016,27.150 +3060,69.703,355.896,495.213,179.502,433.583,348.583,492.724,18.795,50.258,18.795,342.788,314.207,358.239,25.902,16.856,25.902 +3061,69.729,356.007,495.369,179.420,432.708,348.233,492.713,18.869,47.690,18.869,341.864,314.406,358.294,25.896,16.525,25.896 +3062,69.753,356.007,495.369,179.420,432.708,348.233,492.713,18.869,47.690,18.869,341.864,314.406,358.294,25.896,16.525,25.896 +3063,69.778,355.276,496.383,179.500,432.000,347.627,493.681,19.453,45.000,19.453,341.918,314.663,358.142,27.124,16.263,27.124 +3064,69.803,355.701,497.747,179.868,430.196,347.262,494.642,20.202,42.248,20.202,340.718,314.612,358.703,27.066,16.347,27.066 +3065,69.826,356.275,499.747,180.642,428.435,346.823,496.087,21.168,39.462,21.168,338.522,315.766,358.794,26.623,16.529,26.623 +3066,69.850,356.275,499.747,180.642,428.435,346.823,496.087,21.168,39.462,21.168,338.522,315.766,358.794,26.623,16.529,26.623 +3067,69.875,357.628,502.202,181.654,425.262,346.056,497.389,22.586,36.461,22.586,333.923,315.412,358.990,25.542,15.768,25.542 +3068,69.899,361.623,504.648,182.377,422.678,345.958,497.558,24.351,33.563,24.351,325.417,315.349,359.806,20.852,15.808,20.852 +3069,69.923,361.623,504.648,182.377,422.678,345.958,497.558,24.351,33.563,24.351,325.417,315.349,359.806,20.852,15.808,20.852 +3070,69.944,372.648,514.221,183.789,420.013,344.938,500.429,26.462,30.666,26.462,298.292,315.217,360.198,20.799,15.651,20.799 +3071,69.969,412.565,542.271,185.276,416.571,342.356,505.215,27.824,27.722,27.824,201.812,314.937,360.588,18.670,15.261,18.670 +3072,69.995,409.332,549.360,187.535,412.924,340.468,509.190,30.256,24.528,30.256,201.764,315.069,361.212,18.859,15.598,18.859 +3073,70.019,409.332,549.360,187.535,412.924,340.468,509.190,30.256,24.528,30.256,201.764,315.069,361.212,18.859,15.598,18.859 +3074,70.044,369.730,534.138,189.971,409.026,337.615,513.747,32.412,21.435,32.412,285.464,315.291,361.548,21.186,15.417,21.186 +3075,70.070,354.851,532.547,192.943,405.161,335.052,517.203,37.776,18.376,37.776,311.819,314.960,361.917,26.341,15.155,26.341 +3076,70.095,346.503,533.997,196.487,400.848,331.812,521.219,41.016,15.124,41.016,323.265,314.682,362.205,25.359,15.107,25.359 +3077,70.120,346.503,533.997,196.487,400.848,331.812,521.219,41.016,15.124,41.016,323.265,314.682,362.205,25.359,15.107,25.359 +3078,70.144,340.190,537.306,200.675,396.659,328.247,525.432,44.835,11.791,44.835,328.838,314.213,362.520,24.808,15.260,24.808 +3079,70.168,333.265,540.539,205.652,391.979,323.721,529.514,49.118,8.463,49.118,333.355,313.583,362.521,26.688,15.299,26.688 +3080,70.193,326.460,544.280,211.066,387.743,318.610,533.814,53.130,5.001,53.130,336.600,313.689,362.766,26.000,15.416,26.000 +3081,70.217,326.460,544.280,211.066,387.743,318.610,533.814,53.130,5.001,53.130,336.600,313.689,362.766,26.000,15.416,26.000 +3082,70.240,317.211,542.790,217.053,383.565,313.677,537.188,57.755,1.555,57.755,349.718,312.346,362.966,25.037,15.230,25.037 +3083,70.264,310.986,546.465,223.963,379.629,307.930,540.602,62.472,177.540,62.472,349.890,312.356,363.114,24.345,15.841,24.345 +3084,70.289,310.986,546.465,223.963,379.629,307.930,540.602,62.472,177.540,62.472,349.890,312.356,363.114,24.345,15.841,24.345 +3085,70.312,306.038,553.706,231.434,375.879,301.673,543.458,66.926,173.974,66.926,341.125,312.746,363.401,22.884,16.812,22.884 +3086,70.337,298.456,557.014,239.244,373.092,294.933,546.107,72.102,169.695,72.102,340.589,311.887,363.513,20.839,17.978,20.839 +3087,70.362,290.787,559.047,247.592,370.883,288.406,548.248,77.565,165.838,77.565,341.869,311.661,363.985,21.799,18.984,21.799 +3088,70.386,290.787,559.047,247.592,370.883,288.406,548.248,77.565,165.838,77.565,341.869,311.661,363.985,21.799,18.984,21.799 +3089,70.411,282.812,560.087,256.239,369.210,281.449,549.252,82.828,161.723,82.828,341.723,312.123,363.562,23.444,18.895,23.444 +3090,70.435,273.884,560.625,264.932,369.132,273.522,550.150,88.025,157.457,88.025,341.452,311.773,362.414,23.365,18.350,23.365 +3091,70.461,264.712,560.482,273.700,369.400,265.336,550.385,93.537,153.435,93.537,342.078,311.261,362.312,23.533,17.441,23.533 +3092,70.485,264.712,560.482,273.700,369.400,265.336,550.385,93.537,153.435,93.537,342.078,311.261,362.312,23.533,17.441,23.533 +3093,70.509,256.205,560.032,282.427,370.877,257.693,550.481,98.855,149.237,98.855,343.207,311.964,362.541,24.272,17.411,24.272 +3094,70.534,247.474,558.621,290.664,372.438,249.809,549.210,103.938,144.713,103.938,343.422,311.690,362.816,23.138,16.652,23.138 +3095,70.558,239.395,557.115,298.803,374.868,242.754,547.224,108.759,140.528,108.759,341.556,311.814,362.449,23.297,16.528,23.297 +3096,70.582,239.395,557.115,298.803,374.868,242.754,547.224,108.759,140.528,108.759,341.556,311.814,362.449,23.297,16.528,23.297 +3097,70.606,231.279,556.183,306.387,377.879,236.369,544.617,113.749,136.790,113.749,336.360,312.146,361.633,23.139,16.388,23.139 +3098,70.631,222.532,556.292,313.337,380.922,230.580,541.604,118.720,133.843,118.720,327.869,311.928,361.364,22.934,16.346,22.934 +3099,70.656,222.532,556.292,313.337,380.922,230.580,541.604,118.720,133.843,118.720,327.869,311.928,361.364,22.934,16.346,22.934 +3100,70.679,212.448,558.617,319.457,384.462,225.649,539.025,123.972,131.685,123.972,313.950,311.997,361.199,22.737,16.332,22.737 +3101,70.704,182.237,583.716,325.001,388.083,218.989,534.033,126.491,129.852,126.491,237.164,312.029,360.763,19.163,16.680,19.163 +3102,70.729,164.752,590.433,330.062,391.755,215.757,531.001,130.636,128.454,130.636,203.583,312.185,360.219,19.181,16.653,19.181 +3103,70.753,164.752,590.433,330.062,391.755,215.757,531.001,130.636,128.454,130.636,203.583,312.185,360.219,19.181,16.653,19.181 +3104,70.777,195.529,543.470,334.332,395.629,211.353,527.013,133.877,126.724,133.877,314.228,312.594,359.889,18.880,16.857,18.880 +3105,70.802,199.495,532.245,337.675,399.776,208.124,524.282,137.301,124.574,137.301,335.804,312.422,359.288,20.758,17.102,20.758 +3106,70.827,200.104,527.591,341.465,403.557,206.590,522.249,140.528,121.559,140.528,342.328,312.687,359.134,25.746,17.215,25.746 +3107,70.850,200.104,527.591,341.465,403.557,206.590,522.249,140.528,121.559,140.528,342.328,312.687,359.134,25.746,17.215,25.746 +3108,70.875,198.021,522.281,344.312,407.633,203.140,518.510,143.624,118.045,143.624,346.130,312.467,358.845,25.009,17.709,25.009 +3109,70.900,195.921,517.950,346.816,411.481,200.389,515.005,146.611,113.671,146.611,347.760,312.299,358.462,25.447,17.790,25.447 +3110,70.925,193.998,514.741,348.940,415.479,198.159,512.273,149.325,108.765,149.325,348.453,312.168,358.127,26.447,17.650,26.447 +3111,70.949,193.998,514.741,348.940,415.479,198.159,512.273,149.325,108.765,149.325,348.453,312.168,358.127,26.447,17.650,26.447 +3112,70.973,192.053,511.640,350.788,419.590,196.124,509.462,151.851,103.478,151.851,348.306,312.095,357.540,27.141,17.721,27.141 +3113,70.997,189.531,507.198,352.550,423.150,193.569,505.232,154.036,98.130,154.036,348.760,312.117,357.742,24.369,18.385,24.369 +3114,71.022,189.531,507.198,352.550,423.150,193.569,505.232,154.036,98.130,154.036,348.760,312.117,357.742,24.369,18.385,24.369 +3115,71.048,188.503,505.085,353.904,426.446,192.544,503.274,155.854,92.816,155.854,348.484,311.803,357.339,25.928,18.224,25.928 +3116,71.075,187.358,502.490,356.576,429.402,192.052,500.548,157.521,87.299,157.521,348.291,311.927,358.451,25.203,21.335,25.203 +3117,71.099,186.899,501.160,358.243,431.541,192.050,499.155,158.727,81.937,158.727,347.745,312.529,358.801,26.554,22.575,26.554 +3118,71.125,186.899,501.160,358.243,431.541,192.050,499.155,158.727,81.937,158.727,347.745,312.529,358.801,26.554,22.575,26.554 +3119,71.146,186.155,498.479,359.332,433.079,191.405,496.539,159.722,76.483,159.722,347.833,313.035,359.026,24.430,22.653,24.430 +3120,71.170,185.829,497.637,360.325,434.003,191.425,495.645,160.408,70.560,160.408,347.700,314.182,359.581,24.303,22.133,24.303 +3121,71.194,186.047,497.512,360.811,434.464,191.845,495.496,160.831,65.109,160.831,346.999,314.440,359.276,25.093,21.400,25.093 +3122,71.217,186.047,497.512,360.811,434.464,191.845,495.496,160.831,65.109,160.831,346.999,314.440,359.276,25.093,21.400,25.093 +3123,71.240,185.779,497.172,361.391,434.480,191.986,495.011,160.803,59.697,160.803,346.631,314.637,359.777,24.757,21.113,24.757 +3124,71.264,185.408,498.162,361.325,433.675,192.484,495.681,160.677,54.019,160.677,344.696,315.405,359.695,24.719,19.975,24.719 +3125,71.289,185.408,498.162,361.325,433.675,192.484,495.681,160.677,54.019,160.677,344.696,315.405,359.695,24.719,19.975,24.719 +3126,71.313,185.269,498.738,361.097,432.694,192.708,496.028,159.980,48.400,159.980,343.959,315.409,359.793,24.509,18.387,24.509 +3127,71.338,184.628,500.834,360.259,431.652,192.843,497.692,159.076,43.059,159.076,342.330,315.620,359.921,24.807,17.272,24.807 +3128,71.363,185.308,503.027,359.518,429.205,193.770,499.598,157.938,38.177,157.938,341.842,316.268,360.103,25.350,17.096,25.350 +3129,71.387,185.308,503.027,359.518,429.205,193.770,499.598,157.938,38.177,157.938,341.842,316.268,360.103,25.350,17.096,25.350 +3130,71.411,185.088,505.200,358.047,426.666,193.902,501.338,156.342,33.268,156.342,341.382,316.470,360.628,24.268,15.952,24.268 +3131,71.436,184.908,508.856,356.340,423.945,194.915,504.082,154.496,28.377,154.496,338.226,316.291,360.400,24.965,15.173,24.965 +3132,71.462,185.733,512.905,354.438,420.503,196.346,507.373,152.468,23.698,152.468,336.749,316.590,360.687,25.565,15.130,25.565 +3133,71.486,185.733,512.905,354.438,420.503,196.346,507.373,152.468,23.698,152.468,336.749,316.590,360.687,25.565,15.130,25.565 +3134,71.510,187.299,517.017,352.406,416.811,198.136,510.746,149.942,18.858,149.942,336.105,316.219,361.146,25.877,14.865,25.877 +3135,71.535,189.027,521.608,349.815,412.782,200.423,514.327,147.426,14.511,147.426,334.082,316.250,361.128,26.849,14.180,26.849 +3136,71.560,191.455,524.938,346.787,408.371,202.430,517.001,144.123,9.982,144.123,334.175,315.999,361.263,24.721,14.387,24.721 +3137,71.583,191.455,524.938,346.787,408.371,202.430,517.001,144.123,9.982,144.123,334.175,315.999,361.263,24.721,14.387,24.721 +3138,71.607,194.284,530.236,343.402,404.019,205.674,520.923,140.727,5.492,140.727,331.818,315.200,361.244,25.401,14.319,25.401 +3139,71.632,199.001,535.126,339.540,399.562,209.828,525.137,137.304,1.169,137.304,331.511,315.118,360.974,26.004,14.201,26.004 +3140,71.657,199.001,535.126,339.540,399.562,209.828,525.137,137.304,1.169,137.304,331.511,315.118,360.974,26.004,14.201,26.004 +3141,71.678,203.925,539.513,335.492,395.342,213.980,528.864,133.353,177.045,133.353,331.720,315.561,361.011,26.412,14.458,26.412 +3142,71.704,209.162,544.134,330.412,390.800,218.497,532.784,129.437,172.818,129.437,332.109,314.436,361.499,25.647,14.225,25.647 +3143,71.729,215.181,548.479,325.043,386.731,223.656,536.420,125.102,168.766,125.102,332.054,314.768,361.531,25.587,14.793,25.587 +3144,71.753,215.181,548.479,325.043,386.731,223.656,536.420,125.102,168.766,125.102,332.054,314.768,361.531,25.587,14.793,25.587 +3145,71.778,221.847,552.317,318.719,382.804,229.162,539.969,120.641,164.745,120.641,333.028,314.425,361.731,25.389,14.910,25.389 +3146,71.802,228.265,554.406,311.826,379.503,233.964,542.766,116.086,160.677,116.086,335.819,313.837,361.740,22.650,15.270,22.650 +3147,71.826,235.923,556.690,304.241,376.397,240.236,545.634,111.311,156.801,111.311,338.117,313.428,361.852,22.512,15.625,22.512 +3148,71.849,235.923,556.690,304.241,376.397,240.236,545.634,111.311,156.801,111.311,338.117,313.428,361.852,22.512,15.625,22.512 +3149,71.874,243.973,558.966,296.369,373.742,247.086,548.342,106.332,153.113,106.332,340.684,313.082,362.826,23.407,15.929,23.407 +3150,71.898,251.690,559.836,287.757,371.805,253.685,549.970,101.429,149.323,101.429,342.635,312.987,362.767,22.569,16.618,22.569 +3151,71.922,251.690,559.836,287.757,371.805,253.685,549.970,101.429,149.323,101.429,342.635,312.987,362.767,22.569,16.618,22.569 +3152,71.945,260.444,559.493,279.304,370.679,261.467,550.726,96.651,145.713,96.651,344.149,313.178,361.802,24.358,16.337,24.358 +3153,71.969,265.576,558.995,270.283,369.925,265.684,550.501,90.728,142.028,90.728,344.252,312.404,361.240,23.112,17.228,23.112 +3154,71.995,272.582,559.067,261.853,369.977,271.958,550.906,85.629,138.865,85.629,345.978,312.879,362.347,25.702,17.466,25.702 +3155,72.019,272.582,559.067,261.853,369.977,271.958,550.906,85.629,138.865,85.629,345.978,312.879,362.347,25.702,17.466,25.702 +3156,72.043,283.512,556.951,253.500,371.000,282.480,550.116,81.416,135.000,81.416,349.046,311.834,362.871,21.810,17.678,21.810 +3157,72.068,289.676,555.206,245.421,372.652,288.118,548.974,75.964,131.634,75.964,349.979,312.500,362.827,21.586,17.938,21.586 +3158,72.093,297.748,552.261,237.949,374.856,295.748,546.343,71.330,128.403,71.330,349.435,312.536,361.930,20.449,18.435,20.449 +3159,72.117,297.748,552.261,237.949,374.856,295.748,546.343,71.330,128.403,71.330,349.435,312.536,361.930,20.449,18.435,20.449 +3160,72.140,304.543,549.273,231.050,378.035,302.294,544.047,66.708,124.943,66.708,349.930,311.958,361.308,21.863,18.628,21.863 +3161,72.164,311.265,546.670,223.962,381.329,308.403,541.205,62.363,121.693,62.363,349.271,311.642,361.610,23.490,19.947,23.490 +3162,72.189,311.265,546.670,223.962,381.329,308.403,541.205,62.363,121.693,62.363,349.271,311.642,361.610,23.490,19.947,23.490 +3163,72.212,317.222,542.727,218.370,385.099,314.333,538.079,58.134,118.474,58.134,350.227,311.892,361.172,25.364,18.922,25.364 +3164,72.236,323.192,540.040,212.382,389.972,319.515,534.977,54.009,115.292,54.009,348.051,310.687,360.566,26.377,19.206,26.377 +3165,72.261,327.377,536.195,208.302,394.053,323.711,531.813,50.080,112.218,50.080,348.001,311.784,359.427,28.220,17.759,28.220 +3166,72.285,327.377,536.195,208.302,394.053,323.711,531.813,50.080,112.218,50.080,348.001,311.784,359.427,28.220,17.759,28.220 +3167,72.309,331.389,531.998,203.335,397.817,327.547,527.981,46.273,108.954,46.273,348.722,312.460,359.839,27.775,18.304,27.775 +3168,72.334,335.333,528.338,199.326,402.237,331.085,524.400,42.821,106.001,42.821,347.772,312.628,359.357,28.391,18.073,28.391 +3169,72.359,338.411,524.051,195.684,406.858,334.254,520.647,39.307,103.109,39.307,347.860,311.954,358.606,26.521,18.078,26.521 +3170,72.383,338.411,524.051,195.684,406.858,334.254,520.647,39.307,103.109,39.307,347.860,311.954,358.606,26.521,18.078,26.521 +3171,72.408,340.966,520.894,192.193,410.556,336.344,517.467,36.556,99.881,36.556,347.432,312.698,358.940,28.891,18.394,28.891 +3172,72.433,343.093,517.619,189.927,414.425,338.432,514.519,33.628,97.076,33.628,346.973,312.443,358.169,28.860,18.055,28.860 +3173,72.457,343.093,517.619,189.927,414.425,338.432,514.519,33.628,97.076,33.628,346.973,312.443,358.169,28.860,18.055,28.860 +3174,72.479,345.244,514.059,187.451,417.230,340.259,511.019,31.378,93.814,31.378,346.912,312.905,358.589,29.403,18.093,29.403 +3175,72.502,346.945,510.949,186.268,420.075,342.072,508.217,29.272,91.146,29.272,346.837,312.078,358.012,28.997,18.176,28.997 +3176,72.528,348.167,507.971,185.150,422.935,343.684,505.631,27.561,88.264,27.561,347.502,312.463,357.614,28.909,18.173,28.909 +3177,72.552,348.167,507.971,185.150,422.935,343.684,505.631,27.561,88.264,27.561,347.502,312.463,357.614,28.909,18.173,28.909 +3178,72.576,349.876,505.870,184.179,424.652,344.830,503.417,25.925,85.236,25.925,346.619,313.248,357.840,27.830,18.021,27.830 +3179,72.601,350.997,504.511,183.400,426.235,345.466,501.961,24.759,82.073,24.759,345.585,312.805,357.766,28.917,17.828,28.917 +3180,72.627,351.413,502.721,183.269,427.163,346.352,500.484,23.848,79.216,23.848,346.539,313.366,357.606,28.141,17.589,28.141 +3181,72.651,351.413,502.721,183.269,427.163,346.352,500.484,23.848,79.216,23.848,346.539,313.366,357.606,28.141,17.589,28.141 +3182,72.674,351.744,502.413,183.127,427.978,346.547,500.180,23.257,76.218,23.257,345.990,312.858,357.302,29.142,17.299,29.142 +3183,72.699,352.049,502.328,183.026,428.037,346.611,500.040,22.812,73.142,22.812,345.614,313.121,357.412,28.283,17.255,28.283 +3184,72.723,352.049,502.328,183.026,428.037,346.611,500.040,22.812,73.142,22.812,345.614,313.121,357.412,28.283,17.255,28.283 +3185,72.746,351.889,502.137,183.300,427.708,346.703,499.931,23.047,69.969,23.047,345.998,313.551,357.270,29.172,17.420,29.172 +3186,72.771,351.780,502.548,183.437,426.952,346.514,500.311,23.020,66.949,23.020,346.113,313.029,357.556,26.414,17.326,26.414 +3187,72.796,352.116,502.706,183.431,426.047,346.331,500.116,24.124,64.041,24.124,345.213,313.541,357.891,26.685,17.178,26.685 +3188,72.820,352.116,502.706,183.431,426.047,346.331,500.116,24.124,64.041,24.124,345.213,313.541,357.891,26.685,17.178,26.685 +3189,72.845,351.508,504.730,183.797,424.390,345.409,501.858,25.213,61.011,25.213,344.948,314.011,358.432,27.462,16.951,27.462 +3190,72.870,350.483,507.562,184.607,422.374,343.992,504.331,26.458,57.885,26.458,343.912,314.393,358.413,28.640,17.120,28.640 +3191,72.895,350.013,510.097,185.623,419.558,342.717,506.203,28.086,54.652,28.086,342.235,314.102,358.775,28.350,17.024,28.350 +3192,72.918,350.013,510.097,185.623,419.558,342.717,506.203,28.086,54.652,28.086,342.235,314.102,358.775,28.350,17.024,28.350 +3193,72.942,348.879,512.894,186.947,416.542,341.308,508.515,30.048,51.582,30.048,341.843,314.075,359.338,27.971,16.967,27.971 +3194,72.967,348.658,517.068,189.099,413.466,339.794,511.554,31.887,48.285,31.887,338.660,314.071,359.538,25.888,16.947,25.888 +3195,72.992,352.234,520.598,191.250,409.750,339.554,511.759,34.881,45.000,34.881,329.079,313.955,359.993,22.074,16.263,22.074 +3196,73.016,352.234,520.598,191.250,409.750,339.554,511.759,34.881,45.000,34.881,329.079,313.955,359.993,22.074,16.263,22.074 +3197,73.039,362.824,534.848,194.203,405.833,337.355,515.394,37.373,41.795,37.373,296.434,314.492,360.534,20.291,16.854,20.291 +3198,73.064,394.420,570.615,197.400,401.625,333.603,520.241,39.634,38.501,39.634,203.174,313.449,361.114,18.740,16.630,18.740 +3199,73.088,394.420,570.615,197.400,401.625,333.603,520.241,39.634,38.501,39.634,203.174,313.449,361.114,18.740,16.630,18.740 +3200,73.113,359.910,552.976,201.040,397.734,329.132,525.617,41.634,35.218,41.634,279.033,313.860,361.394,22.671,16.724,22.671 +3201,73.138,341.773,545.831,205.385,393.495,325.827,528.460,47.450,31.734,47.450,314.587,313.668,361.748,25.939,16.506,25.939 +3202,73.162,333.466,546.230,209.943,389.680,322.032,531.886,51.442,28.346,51.442,325.448,313.721,362.136,25.102,16.629,25.102 +3203,73.186,333.466,546.230,209.943,389.680,322.032,531.886,51.442,28.346,51.442,325.448,313.721,362.136,25.102,16.629,25.102 +3204,73.210,325.764,547.275,214.996,385.595,317.321,535.115,55.228,24.711,55.228,332.745,313.665,362.353,22.996,16.601,22.996 +3205,73.234,318.132,549.963,221.082,381.281,311.437,538.493,59.727,20.556,59.727,336.084,313.553,362.647,23.979,17.322,23.979 +3206,73.259,308.459,548.294,227.192,378.372,305.415,541.999,64.193,16.966,64.193,348.737,313.206,362.723,23.656,16.487,23.656 +3207,73.284,308.459,548.294,227.192,378.372,305.415,541.999,64.193,16.966,64.193,348.737,313.206,362.723,23.656,16.487,23.656 +3208,73.306,303.623,555.368,233.937,375.271,299.476,544.717,68.727,13.069,68.727,340.496,312.859,363.357,22.074,17.047,22.074 +3209,73.331,294.975,553.610,241.361,372.727,292.975,546.925,73.344,9.023,73.344,349.411,312.658,363.366,20.743,18.065,20.743 +3210,73.356,294.975,553.610,241.361,372.727,292.975,546.925,73.344,9.023,73.344,349.411,312.658,363.366,20.743,18.065,20.743 +3211,73.379,288.650,558.366,249.518,370.297,286.696,548.661,78.615,5.163,78.615,344.588,312.528,364.387,21.969,19.145,21.969 +3212,73.404,279.061,557.931,257.513,369.318,278.083,549.988,82.983,1.116,82.983,347.654,311.253,363.659,23.316,18.769,23.316 +3213,73.429,272.261,562.389,265.979,369.122,271.913,550.548,88.315,176.836,88.315,339.353,310.907,363.045,22.314,18.434,22.314 +3214,73.453,272.261,562.389,265.979,369.122,271.913,550.548,88.315,176.836,88.315,339.353,310.907,363.045,22.314,18.434,22.314 +3215,73.477,264.968,562.099,274.481,369.348,265.753,550.514,93.879,172.747,93.879,339.458,311.956,362.683,24.469,18.668,24.469 +3216,73.501,256.545,562.007,282.823,370.145,258.370,550.184,98.776,168.294,98.776,339.397,312.215,363.323,24.631,17.837,24.631 +3217,73.525,247.879,559.603,291.138,371.977,250.484,548.957,103.749,163.880,103.749,341.221,312.360,363.142,23.550,16.770,23.550 +3218,73.549,247.879,559.603,291.138,371.977,250.484,548.957,103.749,163.880,103.749,341.221,312.360,363.142,23.550,16.770,23.550 +3219,73.571,240.210,557.730,298.931,374.315,243.782,547.100,108.576,159.520,108.576,340.274,312.381,362.703,23.566,16.004,23.566 +3220,73.595,232.770,555.540,306.397,376.844,237.605,544.312,113.298,154.822,113.298,337.594,312.323,362.043,23.691,15.880,23.691 +3221,73.619,232.770,555.540,306.397,376.844,237.605,544.312,113.298,154.822,113.298,337.594,312.323,362.043,23.691,15.880,23.691 +3222,73.644,225.198,553.314,313.081,379.759,231.475,541.399,117.782,150.524,117.782,335.153,312.948,362.089,24.268,16.086,24.268 +3223,73.668,217.200,551.670,319.169,383.257,225.788,538.216,122.550,146.659,122.550,329.798,312.886,361.721,24.050,16.225,24.050 +3224,73.697,208.997,551.879,324.602,386.964,221.256,535.440,126.714,143.374,126.714,320.597,313.023,361.610,23.791,16.285,23.791 +3225,73.721,208.997,551.879,324.602,386.964,221.256,535.440,126.714,143.374,126.714,320.597,313.023,361.610,23.791,16.285,23.791 +3226,73.745,198.141,553.854,329.389,390.587,217.296,532.211,131.511,140.735,131.511,302.881,313.103,360.686,23.618,16.111,23.618 +3227,73.770,177.250,566.750,333.565,394.442,214.281,529.719,135.000,138.532,135.000,255.266,313.167,360.004,22.627,16.363,22.627 +3228,73.796,152.095,579.242,336.837,397.863,208.975,524.593,136.146,137.137,136.146,202.249,312.957,360.007,18.579,16.801,18.579 +3229,73.820,152.095,579.242,336.837,397.863,208.975,524.593,136.146,137.137,136.146,202.249,312.957,360.007,18.579,16.801,18.579 +3230,73.843,168.761,554.584,340.037,401.032,206.215,521.812,138.814,135.306,138.814,260.956,312.567,360.491,18.438,16.585,18.438 +3231,73.869,186.683,532.854,342.440,404.564,203.813,519.149,141.340,133.210,141.340,315.783,312.742,359.659,18.741,16.476,18.741 +3232,73.894,192.162,524.437,344.464,407.677,201.911,517.261,143.645,130.739,143.645,335.322,313.464,359.533,20.796,16.929,20.796 +3233,73.918,192.162,524.437,344.464,407.677,201.911,517.261,143.645,130.739,143.645,335.322,313.464,359.533,20.796,16.929,20.796 +3234,73.941,194.142,521.372,346.597,410.957,201.341,516.492,145.867,127.421,145.867,341.506,313.680,358.902,25.396,17.189,25.396 +3235,73.966,193.860,517.363,348.220,413.843,199.451,513.860,147.931,123.326,147.931,345.147,312.864,358.342,25.144,17.570,25.144 +3236,73.991,193.860,517.363,348.220,413.843,199.451,513.860,147.931,123.326,147.931,345.147,312.864,358.342,25.144,17.570,25.144 +3237,74.012,192.551,514.246,349.842,416.639,197.645,511.284,149.822,118.729,149.822,346.507,313.021,358.293,25.009,17.798,25.009 +3238,74.037,191.943,512.341,350.893,419.184,196.497,509.868,151.499,113.385,151.499,347.550,311.848,357.914,26.941,17.762,26.941 +3239,74.063,191.193,510.231,352.065,421.252,195.530,508.017,152.949,107.601,152.949,347.999,312.125,357.739,27.533,17.736,27.533 +3240,74.087,191.193,510.231,352.065,421.252,195.530,508.017,152.949,107.601,152.949,347.999,312.125,357.739,27.533,17.736,27.533 +3241,74.112,191.027,508.278,352.994,423.373,194.804,506.447,154.141,101.785,154.141,348.773,311.480,357.167,28.034,18.212,28.034 +3242,74.136,189.067,505.502,353.827,424.733,193.181,503.582,154.983,95.711,154.983,348.760,312.143,357.838,24.286,18.309,24.286 +3243,74.161,188.940,504.337,354.239,426.480,192.895,502.529,155.427,89.484,155.427,348.017,311.095,356.713,25.281,17.621,25.281 +3244,74.185,188.940,504.337,354.239,426.480,192.895,502.529,155.427,89.484,155.427,348.017,311.095,356.713,25.281,17.621,25.281 +3245,74.208,188.612,504.817,356.479,427.405,193.542,502.604,155.821,83.797,155.821,348.077,310.735,358.886,25.413,22.087,25.413 +3246,74.231,188.757,504.419,356.771,426.887,193.679,502.213,155.854,77.525,155.854,348.484,312.695,359.272,24.103,22.085,24.103 +3247,74.255,188.757,504.419,356.771,426.887,193.679,502.213,155.854,77.525,155.854,348.484,312.695,359.272,24.103,22.085,24.103 +3248,74.278,189.243,505.322,356.799,426.063,194.303,503.014,155.489,71.409,155.489,348.428,313.099,359.552,24.887,21.929,24.887 +3249,74.302,189.768,506.256,356.737,425.223,194.915,503.834,154.799,64.983,154.799,348.408,313.841,359.785,24.643,21.205,24.643 +3250,74.328,190.276,508.137,356.015,423.691,195.779,505.436,153.853,59.036,153.853,347.463,314.357,359.722,25.200,20.923,25.200 +3251,74.352,190.276,508.137,356.015,423.691,195.779,505.436,153.853,59.036,153.853,347.463,314.357,359.722,25.200,20.923,25.200 +3252,74.377,190.447,510.723,355.361,421.677,196.976,507.340,152.608,52.317,152.608,345.368,314.428,360.075,25.619,19.752,25.619 +3253,74.401,191.036,513.066,354.531,419.092,198.147,509.143,151.113,46.420,151.113,344.615,314.794,360.857,25.029,19.290,25.029 +3254,74.426,191.855,516.273,353.012,416.653,199.520,511.705,149.207,40.601,149.207,343.183,314.983,361.028,25.623,18.764,25.623 +3255,74.451,191.855,516.273,353.012,416.653,199.520,511.705,149.207,40.601,149.207,343.183,314.983,361.028,25.623,18.764,25.623 +3256,74.473,193.573,519.388,351.104,413.423,201.292,514.408,147.171,34.992,147.171,342.895,315.077,361.267,25.778,17.941,25.778 +3257,74.497,195.386,522.547,348.624,410.014,203.128,517.079,144.770,29.511,144.770,342.261,315.181,361.218,25.031,16.978,25.031 +3258,74.521,195.386,522.547,348.624,410.014,203.128,517.079,144.770,29.511,144.770,342.261,315.181,361.218,25.031,16.978,25.031 +3259,74.545,197.879,526.627,345.812,406.304,205.911,520.364,142.054,24.126,142.054,340.555,315.257,360.925,26.010,16.375,26.010 +3260,74.568,201.803,529.927,342.809,402.087,209.074,523.623,139.075,18.674,139.075,342.074,315.278,361.320,26.795,16.778,26.795 +3261,74.592,203.556,535.121,338.954,398.087,212.129,526.813,135.900,13.339,135.900,337.437,315.329,361.315,26.415,15.558,26.415 +3262,74.616,203.556,535.121,338.954,398.087,212.129,526.813,135.900,13.339,135.900,337.437,315.329,361.315,26.415,15.558,26.415 +3263,74.638,207.789,538.849,334.677,394.255,215.639,530.276,132.479,8.104,132.479,338.168,314.520,361.415,26.640,14.817,26.640 +3264,74.664,211.900,542.920,329.858,390.116,219.397,533.527,128.593,3.103,128.593,337.952,314.785,361.988,26.349,14.984,26.349 +3265,74.688,211.900,542.920,329.858,390.116,219.397,533.527,128.593,3.103,128.593,337.952,314.785,361.988,26.349,14.984,26.349 +3266,74.712,216.244,546.867,324.018,386.048,223.573,536.358,124.891,178.152,124.891,335.869,314.385,361.494,25.071,14.218,25.071 +3267,74.737,221.504,550.408,318.112,382.450,228.042,539.405,120.719,173.260,120.719,336.286,314.656,361.884,24.682,14.824,24.682 +3268,74.762,227.436,553.968,311.529,379.144,233.143,542.505,116.464,168.522,116.464,336.739,314.392,362.350,24.510,14.959,24.510 +3269,74.786,227.436,553.968,311.529,379.144,233.143,542.505,116.464,168.522,116.464,336.739,314.392,362.350,24.510,14.959,24.510 +3270,74.810,234.154,556.254,304.293,376.290,238.609,545.236,112.017,163.740,112.017,338.731,314.160,362.499,24.367,15.280,24.367 +3271,74.833,241.152,558.390,297.113,373.794,244.638,547.371,107.554,158.990,107.554,339.530,313.818,362.643,23.622,15.782,23.622 +3272,74.858,248.397,559.861,289.646,371.805,250.881,549.109,103.010,154.486,103.010,340.890,313.469,362.959,23.110,16.532,23.110 +3273,74.881,248.397,559.861,289.646,371.805,250.881,549.109,103.010,154.486,103.010,340.890,313.469,362.959,23.110,16.532,23.110 +3274,74.903,256.613,560.090,281.928,370.724,258.033,550.462,98.390,149.421,98.390,343.137,313.299,362.602,23.800,16.671,23.800 +3275,74.928,265.038,560.070,274.091,370.487,265.649,551.055,93.879,145.008,93.879,343.381,312.373,361.452,24.199,16.794,24.199 +3276,74.953,265.038,560.070,274.091,370.487,265.649,551.055,93.879,145.008,93.879,343.381,312.373,361.452,24.199,16.794,24.199 +3277,74.977,272.624,559.099,266.608,370.134,272.452,550.625,88.831,141.155,88.831,344.194,312.538,361.146,22.179,17.803,22.179 +3278,75.002,279.248,557.946,259.362,370.950,278.489,550.705,84.015,136.332,84.015,346.977,311.963,361.538,23.605,17.656,23.605 +3279,75.027,285.959,556.593,251.694,372.432,284.739,550.334,78.972,132.075,78.972,349.125,311.588,361.877,21.976,17.979,21.976 +3280,75.052,285.959,556.593,251.694,372.432,284.739,550.334,78.972,132.075,78.972,349.125,311.588,361.877,21.976,17.979,21.976 +3281,75.075,294.120,554.512,244.445,374.259,292.532,548.681,74.769,127.493,74.769,349.772,311.808,361.857,20.692,17.955,20.692 +3282,75.099,300.293,552.017,237.408,376.592,298.355,546.643,70.168,123.089,70.168,349.860,311.266,361.286,20.803,17.859,20.803 +3283,75.124,300.293,552.017,237.408,376.592,298.355,546.643,70.168,123.089,70.168,349.860,311.266,361.286,20.803,17.859,20.803 +3284,75.146,306.393,549.210,230.594,379.210,304.082,543.979,66.171,118.926,66.171,349.390,311.010,360.826,23.158,17.919,23.158 +3285,75.170,311.645,546.285,224.129,382.018,309.012,541.335,61.995,114.642,61.995,349.824,311.581,361.037,23.722,18.662,23.722 +3286,75.196,317.025,544.298,217.774,386.603,313.668,538.938,57.943,110.556,57.943,347.362,309.340,360.009,24.621,18.258,24.621 +3287,75.219,317.025,544.298,217.774,386.603,313.668,538.938,57.943,110.556,57.943,347.362,309.340,360.009,24.621,18.258,24.621 +3288,75.244,321.406,540.804,213.039,388.546,317.534,535.420,54.276,106.470,54.276,347.239,312.531,360.502,27.187,18.345,27.187 +3289,75.268,325.799,537.307,208.424,392.253,321.639,532.240,50.612,102.407,50.612,346.953,312.487,360.066,27.205,18.048,27.205 +3290,75.294,328.723,533.555,204.039,395.875,324.684,529.166,47.379,98.399,47.379,347.624,312.551,359.554,28.675,18.205,28.675 +3291,75.318,328.723,533.555,204.039,395.875,324.684,529.166,47.379,98.399,47.379,347.624,312.551,359.554,28.675,18.205,28.675 +3292,75.342,332.487,530.619,200.325,399.723,327.931,526.169,44.334,94.514,44.334,346.541,312.160,359.279,29.261,17.813,29.261 +3293,75.366,335.789,526.845,197.154,403.014,331.219,522.817,41.394,90.490,41.394,347.397,312.031,359.581,28.901,17.350,28.901 +3294,75.390,335.789,526.845,197.154,403.014,331.219,522.817,41.394,90.490,41.394,347.397,312.031,359.581,28.901,17.350,28.901 +3295,75.413,339.178,523.138,194.818,406.388,334.348,519.260,38.763,86.486,38.763,346.548,312.009,358.934,27.456,17.660,27.456 +3296,75.438,341.773,520.535,192.796,409.266,336.699,516.779,36.509,82.569,36.509,346.632,312.354,359.258,28.695,17.547,28.695 +3297,75.463,343.213,518.340,191.374,412.025,338.311,515.011,34.179,78.740,34.179,346.978,312.802,358.830,28.158,17.844,28.158 +3298,75.486,343.213,518.340,191.374,412.025,338.311,515.011,34.179,78.740,34.179,346.978,312.802,358.830,28.158,17.844,28.158 +3299,75.510,345.701,516.446,189.900,414.389,339.970,512.839,32.188,74.450,32.188,345.357,312.769,358.900,26.987,17.140,26.987 +3300,75.534,346.826,513.629,189.189,416.250,341.654,510.530,30.925,70.062,30.925,346.426,312.608,358.485,27.791,17.179,27.791 +3301,75.558,348.314,512.297,188.185,417.919,342.619,509.017,29.937,66.194,29.937,345.441,312.740,358.583,28.860,17.034,28.860 +3302,75.582,348.314,512.297,188.185,417.919,342.619,509.017,29.937,66.194,29.937,345.441,312.740,358.583,28.860,17.034,28.860 +3303,75.604,348.897,511.728,187.395,419.321,342.900,508.426,28.831,62.049,28.831,344.704,313.282,358.397,29.086,16.838,29.086 +3304,75.630,350.012,511.188,187.042,419.843,343.295,507.660,27.711,57.771,27.711,343.159,313.765,358.334,26.184,17.047,26.184 +3305,75.654,350.012,511.188,187.042,419.843,343.295,507.660,27.711,57.771,27.711,343.159,313.765,358.334,26.184,17.047,26.184 +3306,75.680,350.330,510.529,186.368,419.862,343.169,506.727,27.967,53.686,27.967,342.235,313.849,358.451,28.372,16.854,28.372 +3307,75.704,350.306,511.016,185.964,419.458,342.720,506.989,27.967,49.514,27.967,341.821,314.113,358.997,29.256,16.751,29.256 +3308,75.729,351.287,510.990,186.250,418.750,342.913,506.499,28.207,45.000,28.207,340.063,313.955,359.068,26.565,16.263,26.565 +3309,75.754,351.287,510.990,186.250,418.750,342.913,506.499,28.207,45.000,28.207,340.063,313.955,359.068,26.565,16.263,26.565 +3310,75.777,353.679,511.781,185.995,417.429,342.685,505.678,29.032,40.941,29.032,334.510,314.214,359.658,24.674,16.437,24.674 +3311,75.801,360.957,515.679,186.000,416.000,342.638,505.129,29.937,36.870,29.937,318.156,314.800,360.436,21.103,16.000,21.103 +3312,75.826,397.955,541.395,187.095,413.489,340.781,508.294,30.069,32.412,30.069,228.883,314.838,361.012,18.948,15.839,18.948 +3313,75.850,397.955,541.395,187.095,413.489,340.781,508.294,30.069,32.412,30.069,228.883,314.838,361.012,18.948,15.839,18.948 +3314,75.874,407.300,551.762,188.367,411.313,339.518,510.050,31.608,28.113,31.608,201.778,315.062,360.954,19.064,15.091,19.064 +3315,75.898,374.007,536.989,189.890,408.961,337.224,513.796,32.233,23.575,32.233,274.117,315.156,361.086,21.926,15.381,21.926 +3316,75.922,374.007,536.989,189.890,408.961,337.224,513.796,32.233,23.575,32.233,274.117,315.156,361.086,21.926,15.381,21.926 +3317,75.945,358.804,533.091,191.956,406.192,335.822,515.993,36.648,19.210,36.648,304.645,315.011,361.934,28.062,15.132,28.062 +3318,75.970,350.341,531.078,194.299,403.353,334.283,518.106,38.934,14.629,38.934,320.720,315.107,362.006,25.221,15.245,25.221 +3319,75.996,344.537,533.022,197.076,400.251,331.546,521.498,41.579,10.052,41.579,327.379,314.555,362.110,25.928,15.175,25.928 +3320,76.020,344.537,533.022,197.076,400.251,331.546,521.498,41.579,10.052,41.579,327.379,314.555,362.110,25.928,15.175,25.928 +3321,76.044,339.870,535.626,200.597,396.485,328.844,524.725,44.674,5.440,44.674,331.712,314.719,362.722,26.279,16.402,26.279 +3322,76.067,334.432,538.204,204.025,393.176,325.334,528.154,47.847,0.503,47.847,335.848,314.076,362.959,27.867,16.350,27.867 +3323,76.093,329.536,541.662,208.390,390.087,321.591,531.840,51.033,175.544,51.033,337.543,313.996,362.808,27.007,16.340,27.007 +3324,76.117,329.536,541.662,208.390,390.087,321.591,531.840,51.033,175.544,51.033,337.543,313.996,362.808,27.007,16.340,27.007 +3325,76.140,321.327,540.060,213.178,387.079,317.741,534.994,54.705,170.496,54.705,349.868,313.345,362.283,25.459,16.334,25.459 +3326,76.164,316.027,543.678,218.000,383.500,312.663,538.180,58.536,165.292,58.536,349.806,313.081,362.696,25.334,17.555,25.334 +3327,76.188,316.027,543.678,218.000,383.500,312.663,538.180,58.536,165.292,58.536,349.806,313.081,362.696,25.334,17.555,25.334 +3328,76.212,311.830,549.809,223.741,379.912,307.376,541.232,62.557,160.017,62.557,344.093,312.780,363.422,24.716,18.796,24.716 +3329,76.236,305.454,551.871,230.169,377.299,301.981,543.843,66.609,154.708,66.609,345.239,312.366,362.733,23.645,18.570,23.645 +3330,76.265,299.360,554.394,237.224,374.838,296.504,546.129,70.939,149.444,70.939,345.029,311.969,362.518,21.416,18.499,21.416 +3331,76.297,292.426,555.933,244.393,372.354,290.361,548.026,75.368,143.820,75.368,346.827,311.495,363.172,20.867,19.107,20.867 +3332,76.323,292.426,555.933,244.393,372.354,290.361,548.026,75.368,143.820,75.368,346.827,311.495,363.172,20.867,19.107,20.867 +3333,76.347,284.262,557.179,252.297,371.272,282.949,549.944,79.711,138.417,79.711,347.844,310.679,362.549,22.003,18.247,22.003 +3334,76.372,274.773,558.234,260.301,370.280,274.014,550.763,84.202,132.917,84.202,346.872,310.279,361.890,27.058,17.370,27.058 +3335,76.402,271.366,557.522,268.652,370.115,271.339,550.571,89.780,127.011,89.780,347.028,311.019,360.930,22.038,16.806,22.038 +3336,76.430,265.443,558.456,276.223,370.386,266.036,550.883,94.477,121.931,94.477,346.289,310.792,361.483,25.513,17.097,25.513 +3337,76.454,265.443,558.456,276.223,370.386,266.036,550.883,94.477,121.931,94.477,346.289,310.792,361.483,25.513,17.097,25.513 +3338,76.479,257.334,559.315,283.204,370.904,258.753,550.373,99.016,117.440,99.016,344.057,310.880,362.166,23.696,16.794,23.696 +3339,76.503,249.385,560.356,289.923,372.750,251.888,549.678,103.191,113.416,103.191,339.944,310.041,361.879,22.271,16.929,22.271 +3340,76.528,235.374,583.306,296.255,374.543,246.699,548.611,108.078,110.144,108.078,288.712,309.987,361.705,22.702,16.899,22.702 +3341,76.551,235.374,583.306,296.255,374.543,246.699,548.611,108.078,110.144,108.078,288.712,309.987,361.705,22.702,16.899,22.702 +3342,76.574,227.441,576.629,302.108,376.464,239.272,545.815,111.003,106.991,111.003,295.230,309.884,361.244,19.963,17.055,19.963 +3343,76.598,230.079,554.350,307.392,379.106,234.758,544.239,114.832,103.761,114.832,338.453,310.914,360.736,22.205,16.948,22.205 +3344,76.622,230.079,554.350,307.392,379.106,234.758,544.239,114.832,103.761,114.832,338.453,310.914,360.736,22.205,16.948,22.205 +3345,76.646,227.087,548.728,312.933,381.494,230.662,542.171,118.595,99.563,118.595,345.974,311.051,360.909,24.561,17.107,24.561 +3346,76.670,222.338,544.575,318.559,384.797,225.631,539.393,122.440,94.764,122.440,348.361,310.424,360.640,24.804,18.021,24.804 +3347,76.696,218.539,540.775,323.808,388.007,221.607,536.573,126.138,89.421,126.138,350.099,310.116,360.505,26.207,18.504,26.207 +3348,76.721,218.539,540.775,323.808,388.007,221.607,536.573,126.138,89.421,126.138,350.099,310.116,360.505,26.207,18.504,26.207 +3349,76.746,213.794,537.064,329.449,391.835,217.152,533.018,129.696,83.729,129.696,350.198,310.974,360.715,25.328,20.481,25.328 +3350,76.771,210.520,533.741,334.256,396.052,213.891,530.149,133.176,77.989,133.176,350.448,310.455,360.300,26.532,21.165,26.532 +3351,76.796,207.078,530.816,338.608,399.455,211.010,527.060,136.314,71.917,136.314,349.942,311.178,360.817,26.704,21.243,26.704 +3352,76.820,207.078,530.816,338.608,399.455,211.010,527.060,136.314,71.917,136.314,349.942,311.178,360.817,26.704,21.243,26.704 +3353,76.843,203.983,527.126,342.480,403.004,208.307,523.402,139.268,65.980,139.268,349.058,311.311,360.470,25.975,21.465,25.975 +3354,76.868,201.521,524.357,345.683,406.159,206.249,520.653,141.924,59.959,141.924,348.729,312.599,360.740,26.670,21.297,26.670 +3355,76.894,199.249,521.923,348.063,409.146,204.474,518.175,144.348,54.118,144.348,347.589,313.333,360.451,27.559,20.962,27.559 +3356,76.917,199.249,521.923,348.063,409.146,204.474,518.175,144.348,54.118,144.348,347.589,313.333,360.451,27.559,20.962,27.559 +3357,76.941,195.600,518.905,350.592,411.591,202.254,514.495,146.464,47.626,146.464,345.027,314.209,360.992,25.704,19.960,25.704 +3358,76.965,193.099,516.282,351.851,414.105,200.272,511.856,148.328,41.658,148.328,343.801,314.658,360.657,25.010,18.462,25.010 +3359,76.990,193.099,516.282,351.851,414.105,200.272,511.856,148.328,41.658,148.328,343.801,314.658,360.657,25.010,18.462,25.010 +3360,77.013,190.820,514.916,353.083,416.319,198.843,510.270,149.921,35.977,149.921,342.572,315.040,361.113,25.314,17.468,25.314 +3361,77.038,189.197,514.267,353.705,417.954,197.980,509.436,151.189,30.483,151.189,341.023,315.417,361.071,27.031,16.954,27.031 +3362,77.063,186.866,512.692,353.807,419.346,196.461,507.616,152.117,25.183,152.117,339.011,315.889,360.720,25.895,15.690,25.895 +3363,77.087,186.866,512.692,353.807,419.346,196.461,507.616,152.117,25.183,152.117,339.011,315.889,360.720,25.895,15.690,25.895 +3364,77.112,184.732,511.981,354.221,420.387,195.515,506.417,152.707,19.790,152.707,336.702,316.289,360.970,25.658,14.657,25.658 +3365,77.136,182.537,512.587,354.439,420.812,195.528,506.000,153.113,14.597,153.113,331.385,316.537,360.516,25.375,14.597,25.375 +3366,77.159,180.728,513.451,354.394,420.650,195.529,505.955,153.141,9.520,153.141,327.354,316.303,360.535,25.385,14.285,25.385 +3367,77.183,180.728,513.451,354.394,420.650,195.529,505.955,153.141,9.520,153.141,327.354,316.303,360.535,25.385,14.285,25.385 +3368,77.205,179.625,514.272,354.631,420.270,195.770,505.958,152.751,4.343,152.751,324.611,316.064,360.931,25.270,14.073,25.270 +3369,77.229,176.992,516.524,354.496,419.203,196.652,506.301,152.526,179.233,152.526,316.133,315.119,360.450,24.416,13.758,24.416 +3370,77.253,176.992,516.524,354.496,419.203,196.652,506.301,152.526,179.233,152.526,316.133,315.119,360.450,24.416,13.758,24.416 +3371,77.278,175.234,519.934,353.990,417.896,197.780,507.752,151.617,174.480,151.617,309.039,315.814,360.292,24.017,14.102,24.017 +3372,77.302,171.588,522.353,353.383,416.347,198.214,508.153,151.928,169.854,151.928,299.882,315.649,360.234,23.882,14.061,23.882 +3373,77.327,168.999,527.816,351.989,414.457,199.599,510.703,150.784,165.296,150.784,289.844,315.619,359.964,24.422,14.090,24.422 +3374,77.352,168.999,527.816,351.989,414.457,199.599,510.703,150.784,165.296,150.784,289.844,315.619,359.964,24.422,14.090,24.422 +3375,77.374,166.507,533.850,350.260,411.885,201.017,513.077,148.955,160.728,148.955,279.544,315.059,360.104,23.374,14.582,23.374 +3376,77.398,162.816,541.416,348.031,409.320,202.552,515.518,146.906,156.038,146.906,264.867,314.757,359.728,22.595,14.824,22.595 +3377,77.422,162.816,541.416,348.031,409.320,202.552,515.518,146.906,156.038,146.906,264.867,314.757,359.728,22.595,14.824,22.595 +3378,77.446,161.844,548.277,345.160,406.372,203.773,518.358,144.490,151.557,144.490,257.256,314.347,360.275,22.400,15.095,22.400 +3379,77.471,151.650,562.651,342.173,403.499,204.156,519.334,140.477,146.853,140.477,224.219,314.250,360.356,18.417,15.413,18.417 +3380,77.495,145.742,577.922,338.685,399.741,206.657,522.717,137.816,142.507,137.816,196.408,313.818,360.824,18.525,15.466,18.525 +3381,77.519,145.742,577.922,338.685,399.741,206.657,522.717,137.816,142.507,137.816,196.408,313.818,360.824,18.525,15.466,18.525 +3382,77.542,151.940,583.924,334.749,396.337,209.040,525.839,134.510,138.155,134.510,198.055,313.902,360.957,18.324,15.622,18.324 +3383,77.565,158.887,589.775,330.298,392.710,212.042,528.888,131.121,133.877,131.121,199.067,313.285,360.715,18.809,15.941,18.809 +3384,77.589,158.887,589.775,330.298,392.710,212.042,528.888,131.121,133.877,131.121,199.067,313.285,360.715,18.809,15.941,18.809 +3385,77.612,167.407,595.621,325.990,389.237,216.028,532.413,127.569,129.710,127.569,201.570,313.048,361.059,18.840,16.194,18.840 +3386,77.636,176.449,601.479,321.351,385.608,220.644,535.619,123.864,125.538,123.864,202.729,312.590,361.359,19.175,16.391,19.175 +3387,77.663,186.429,607.190,316.192,382.338,225.869,538.826,119.982,121.390,119.982,203.520,312.490,361.369,19.389,16.537,19.389 +3388,77.686,186.429,607.190,316.192,382.338,225.869,538.826,119.982,121.390,119.982,203.520,312.490,361.369,19.389,16.537,19.389 +3389,77.711,196.876,613.417,310.507,379.521,231.763,542.021,116.042,117.378,116.042,202.218,311.829,361.145,19.542,16.602,19.542 +3390,77.735,209.330,615.161,304.434,376.834,237.154,544.498,111.492,113.334,111.492,209.425,311.076,361.312,19.761,16.798,19.761 +3391,77.760,229.399,596.989,298.162,374.765,245.529,547.866,108.178,109.491,108.178,258.354,311.302,361.762,21.569,16.640,21.569 +3392,77.784,229.399,596.989,298.162,374.765,245.529,547.866,108.178,109.491,108.178,258.354,311.302,361.762,21.569,16.640,21.569 +3393,77.808,241.523,593.531,291.192,373.109,251.938,549.610,103.339,105.524,103.339,271.312,311.109,361.591,21.748,16.701,21.748 +3394,77.831,252.429,587.193,283.834,371.774,257.848,550.674,98.440,101.611,98.440,287.714,310.284,361.552,23.191,16.706,23.191 +3395,77.856,252.429,587.193,283.834,371.774,257.848,550.674,98.440,101.611,98.440,287.714,310.284,361.552,23.191,16.706,23.191 +3396,77.879,264.651,583.054,276.339,371.115,267.249,551.475,94.704,97.806,94.704,297.627,309.820,360.997,24.682,16.619,24.682 +3397,77.903,272.000,576.000,268.919,370.637,272.000,551.319,90.000,94.086,90.000,312.000,310.210,361.363,22.000,16.743,22.000 +3398,77.928,275.893,573.197,261.000,371.500,273.780,551.664,84.396,90.000,84.396,317.829,311.000,361.102,26.886,16.000,26.886 +3399,77.953,275.893,573.197,261.000,371.500,273.780,551.664,84.396,90.000,84.396,317.829,311.000,361.102,26.886,16.000,26.886 +3400,77.977,286.052,572.290,253.415,372.473,282.268,550.992,79.928,86.328,79.928,318.365,310.159,361.627,22.360,16.714,22.360 +3401,78.001,295.442,567.998,246.198,373.644,290.875,549.134,76.390,82.476,76.390,323.333,310.979,362.151,20.850,17.172,20.850 +3402,78.026,301.750,565.750,238.758,375.345,295.490,546.969,71.565,78.447,71.565,321.920,311.238,361.514,19.922,17.435,19.922 +3403,78.051,301.750,565.750,238.758,375.345,295.490,546.969,71.565,78.447,71.565,321.920,311.238,361.514,19.922,17.435,19.922 +3404,78.073,308.372,560.301,232.128,377.381,301.731,544.329,67.420,74.497,67.420,327.157,311.805,361.753,20.003,17.303,20.003 +3405,78.098,315.928,558.023,226.140,379.653,307.564,541.083,63.721,70.649,63.721,323.805,311.953,361.591,19.600,17.241,19.600 +3406,78.123,315.928,558.023,226.140,379.653,307.564,541.083,63.721,70.649,63.721,323.805,311.953,361.591,19.600,17.241,19.600 +3407,78.145,322.569,554.702,220.613,382.308,312.830,537.930,59.859,66.828,59.859,322.985,312.247,361.773,19.862,16.840,19.862 +3408,78.169,328.743,551.508,215.691,385.412,317.463,534.628,56.249,63.009,56.249,320.614,312.653,361.219,20.089,16.753,20.089 +3409,78.195,335.001,548.779,211.088,388.647,321.792,531.395,52.772,59.036,52.772,317.605,312.642,361.271,20.339,16.635,20.339 +3410,78.218,335.001,548.779,211.088,388.647,321.792,531.395,52.772,59.036,52.772,317.605,312.642,361.271,20.339,16.635,20.339 +3411,78.241,341.635,547.241,207.194,391.823,325.397,528.297,49.399,55.214,49.399,311.187,312.873,361.089,20.175,16.557,20.175 +3412,78.265,348.816,545.594,203.650,395.090,329.110,524.775,46.574,51.072,46.574,303.526,312.972,360.858,20.160,16.337,20.160 +3413,78.289,348.816,545.594,203.650,395.090,329.110,524.775,46.574,51.072,46.574,303.526,312.972,360.858,20.160,16.337,20.160 +3414,78.312,361.364,550.222,200.497,398.503,332.008,522.002,43.870,46.824,43.870,279.350,312.923,360.792,20.416,15.864,20.416 +3415,78.337,382.103,561.893,197.521,401.519,333.418,520.332,40.486,42.739,40.486,232.974,313.023,360.999,18.921,16.065,18.921 +3416,78.363,397.674,566.582,195.158,404.540,335.681,517.676,38.270,38.403,38.270,202.871,313.291,360.796,18.729,16.017,18.729 +3417,78.387,397.674,566.582,195.158,404.540,335.681,517.676,38.270,38.403,38.270,202.871,313.291,360.796,18.729,16.017,18.729 +3418,78.411,401.439,562.297,193.087,407.346,337.693,515.327,36.384,34.144,36.384,202.577,313.968,360.940,19.025,15.925,19.025 +3419,78.435,404.341,558.641,191.300,409.596,338.778,513.566,34.509,29.678,34.509,201.736,314.428,360.860,19.107,15.966,19.107 +3420,78.460,393.479,546.987,189.435,411.636,339.564,512.100,32.905,25.463,32.905,232.808,314.496,361.243,19.014,15.736,19.014 +3421,78.484,393.479,546.987,189.435,411.636,339.564,512.100,32.905,25.463,32.905,232.808,314.496,361.243,19.014,15.736,19.014 +3422,78.507,375.953,534.079,188.204,412.967,339.174,512.465,30.442,20.943,30.442,275.821,314.968,361.141,22.436,15.865,22.436 +3423,78.531,369.417,527.645,187.153,413.827,339.828,510.718,29.774,16.717,29.774,293.091,315.318,361.269,21.974,15.265,21.974 +3424,78.555,369.417,527.645,187.153,413.827,339.828,510.718,29.774,16.717,29.774,293.091,315.318,361.269,21.974,15.265,21.974 +3425,78.578,363.773,524.378,185.929,414.528,339.591,509.892,30.924,12.265,30.924,305.273,315.500,361.653,26.075,14.658,26.075 +3426,78.603,360.759,521.236,185.376,414.771,340.045,508.788,31.002,7.841,31.002,313.664,315.495,361.999,26.918,14.834,26.918 +3427,78.629,358.112,519.645,185.518,414.657,339.998,508.760,31.002,3.043,31.002,319.495,315.724,361.763,26.918,15.092,26.918 +3428,78.653,358.112,519.645,185.518,414.657,339.998,508.760,31.002,3.043,31.002,319.495,315.724,361.763,26.918,15.092,26.918 +3429,78.678,355.376,518.527,185.417,414.153,339.645,508.974,31.271,178.326,31.271,325.276,315.216,362.085,26.863,14.779,26.863 +3430,78.702,353.187,518.788,185.738,412.690,338.762,509.684,32.255,173.534,32.255,328.232,316.057,362.348,28.885,16.349,28.885 +3431,78.727,348.647,517.773,186.496,411.497,338.160,510.967,32.985,168.616,32.985,337.735,316.139,362.740,27.886,16.870,27.886 +3432,78.752,348.647,517.773,186.496,411.497,338.160,510.967,32.985,168.616,32.985,337.735,316.139,362.740,27.886,16.870,27.886 +3433,78.775,342.452,515.835,187.690,409.958,337.262,512.310,34.186,163.453,34.186,349.928,315.903,362.476,27.626,17.928,27.626 +3434,78.799,341.589,518.376,189.206,408.258,336.092,514.430,35.672,158.366,35.672,348.946,315.511,362.479,28.099,18.454,28.099 +3435,78.824,340.711,521.073,191.367,406.755,335.111,516.776,37.500,153.231,37.500,347.913,314.841,362.032,27.638,17.813,27.638 +3436,78.848,340.711,521.073,191.367,406.755,335.111,516.776,37.500,153.231,37.500,347.913,314.841,362.032,27.638,17.813,27.638 +3437,78.871,338.830,524.101,193.366,404.415,333.229,519.463,39.629,147.709,39.629,347.657,314.165,362.201,27.835,19.513,27.835 +3438,78.896,336.194,527.841,196.462,401.868,330.871,523.062,41.919,142.253,41.919,347.654,313.815,361.960,29.460,19.845,29.460 +3439,78.920,336.194,527.841,196.462,401.868,330.871,523.062,41.919,142.253,41.919,347.654,313.815,361.960,29.460,19.845,29.460 +3440,78.945,333.807,531.199,199.756,399.213,328.507,526.042,44.219,136.606,44.219,346.662,312.207,361.450,28.590,19.686,28.590 +3441,78.969,329.976,533.807,203.298,396.130,325.573,529.064,47.133,131.257,47.133,348.287,312.323,361.230,28.103,20.377,28.103 +3442,78.994,326.024,536.876,207.986,393.419,322.416,532.515,50.395,125.538,50.395,348.909,311.776,360.230,28.581,18.367,28.581 +3443,79.019,326.024,536.876,207.986,393.419,322.416,532.515,50.395,125.538,50.395,348.909,311.776,360.230,28.581,18.367,28.581 +3444,79.041,322.806,540.013,212.580,390.195,319.328,535.309,53.523,119.876,53.523,348.593,311.069,360.295,25.807,17.840,25.807 +3445,79.066,317.745,542.606,217.346,386.858,314.920,538.240,57.095,114.193,57.095,349.804,309.595,360.205,26.175,17.834,26.175 +3446,79.090,317.745,542.606,217.346,386.858,314.920,538.240,57.095,114.193,57.095,349.804,309.595,360.205,26.175,17.834,26.175 +3447,79.114,312.941,545.790,223.100,383.200,310.198,540.927,60.567,108.435,60.567,349.173,309.587,360.340,24.122,17.393,24.122 +3448,79.138,307.770,549.048,228.717,379.778,305.004,543.278,64.393,102.848,64.393,348.026,310.312,360.824,23.056,17.447,23.056 +3449,79.163,302.655,552.138,234.848,376.871,299.933,545.332,68.199,97.417,68.199,346.508,309.853,361.168,21.541,17.104,21.541 +3450,79.187,302.655,552.138,234.848,376.871,299.933,545.332,68.199,97.417,68.199,346.508,309.853,361.168,21.541,17.104,21.541 +3451,79.211,297.222,555.386,240.995,374.116,294.507,546.874,72.313,92.663,72.313,343.830,310.548,361.699,21.170,17.005,21.170 +3452,79.235,292.086,560.462,247.225,372.026,289.172,548.378,76.439,88.831,76.439,337.682,310.241,362.543,21.015,17.017,21.015 +3453,79.261,287.146,571.565,253.574,371.073,283.443,549.594,80.433,85.515,80.433,317.444,311.006,362.006,21.705,16.928,21.705 +3454,79.286,287.146,571.565,253.574,371.073,283.443,549.594,80.433,85.515,80.433,317.444,311.006,362.006,21.705,16.928,21.705 +3455,79.309,284.502,625.243,259.642,370.110,276.793,550.263,84.130,82.694,84.130,211.177,310.459,361.926,23.186,16.964,23.186 +3456,79.335,273.179,564.423,266.096,370.028,272.844,550.531,88.620,79.695,88.620,333.433,310.456,361.226,22.235,16.815,22.235 +3457,79.360,265.186,559.725,272.984,370.256,265.576,550.741,92.490,76.097,92.490,343.284,310.443,361.271,22.240,17.107,22.240 +3458,79.384,265.186,559.725,272.984,370.256,265.576,550.741,92.490,76.097,92.490,343.284,310.443,361.271,22.240,17.107,22.240 +3459,79.407,259.897,557.670,280.150,370.950,260.749,550.807,97.079,71.565,97.079,347.922,310.536,361.754,23.545,17.393,23.545 +3460,79.432,253.061,556.708,287.707,371.983,254.356,550.191,101.239,66.801,101.239,349.292,310.671,362.581,23.169,18.646,23.169 +3461,79.457,253.061,556.708,287.707,371.983,254.356,550.191,101.239,66.801,101.239,349.292,310.671,362.581,23.169,18.646,23.169 +3462,79.480,247.367,554.851,295.239,373.372,249.031,548.855,105.511,61.699,105.511,350.454,310.671,362.899,24.009,19.844,24.009 +3463,79.504,240.323,552.696,302.574,375.437,242.555,546.495,109.791,56.129,109.791,349.371,310.918,362.552,22.643,20.621,22.643 +3464,79.530,235.085,550.992,308.567,378.038,237.816,544.872,114.041,50.845,114.041,348.967,311.326,362.369,24.892,20.416,24.892 +3465,79.553,235.085,550.992,308.567,378.038,237.816,544.872,114.041,50.845,114.041,348.967,311.326,362.369,24.892,20.416,24.892 +3466,79.578,228.586,548.914,314.838,381.152,232.137,542.259,118.085,45.474,118.085,347.058,311.175,362.143,24.551,20.266,24.551 +3467,79.602,223.131,546.210,320.600,383.670,227.591,539.081,122.028,39.966,122.028,345.345,312.161,362.163,25.370,19.978,25.370 +3468,79.627,217.607,543.077,325.603,386.664,222.909,535.708,125.733,34.452,125.733,343.764,312.313,361.921,25.201,19.359,25.201 +3469,79.652,217.607,543.077,325.603,386.664,222.909,535.708,125.733,34.452,125.733,343.764,312.313,361.921,25.201,19.359,25.201 +3470,79.674,212.945,539.772,330.070,389.876,218.757,532.664,129.276,29.302,129.276,343.636,313.333,362.001,25.454,18.776,25.454 +3471,79.699,209.004,535.964,334.022,393.221,214.794,529.672,132.626,24.154,132.626,345.182,313.934,362.283,25.683,17.882,25.683 +3472,79.723,209.004,535.964,334.022,393.221,214.794,529.672,132.626,24.154,132.626,345.182,313.934,362.283,25.683,17.882,25.683 +3473,79.747,205.504,532.549,337.439,396.790,211.712,526.478,135.640,19.109,135.640,343.759,314.353,361.126,26.612,16.547,26.612 +3474,79.772,202.069,529.641,340.755,399.984,208.773,523.690,138.401,14.098,138.401,343.727,314.813,361.655,27.096,15.624,27.096 +3475,79.797,195.723,529.129,343.405,403.585,205.973,520.832,141.009,9.230,141.009,334.807,314.993,361.181,26.056,14.522,26.056 +3476,79.821,195.723,529.129,343.405,403.585,205.973,520.832,141.009,9.230,141.009,334.807,314.993,361.181,26.056,14.522,26.056 +3477,79.845,191.537,526.881,345.847,406.404,203.556,517.883,143.179,4.591,143.179,331.404,315.314,361.433,25.402,14.101,25.402 +3478,79.870,187.382,525.549,347.500,408.500,201.953,515.418,145.191,0.000,145.191,325.579,315.000,361.073,24.812,13.000,24.812 +3479,79.896,183.706,524.549,349.198,410.946,200.590,513.523,146.853,175.373,146.853,320.692,314.993,361.024,25.443,13.661,25.443 +3480,79.919,183.706,524.549,349.198,410.946,200.590,513.523,146.853,175.373,146.853,320.692,314.993,361.024,25.443,13.661,25.443 +3481,79.943,178.112,525.367,350.613,413.051,199.709,512.130,148.496,171.016,148.496,310.209,315.824,360.871,24.725,13.699,24.725 +3482,79.968,169.700,525.552,351.532,414.639,198.155,509.834,151.085,166.885,151.085,295.555,315.557,360.570,23.884,13.935,23.884 +3483,79.993,159.625,529.924,351.995,415.874,197.872,509.513,151.913,162.746,151.913,273.412,315.633,360.117,22.662,14.142,22.662 +3484,80.017,159.625,529.924,351.995,415.874,197.872,509.513,151.913,162.746,151.913,273.412,315.633,360.117,22.662,14.142,22.662 +3485,80.040,137.252,539.462,352.315,416.742,196.450,506.499,150.890,158.703,150.890,224.171,315.280,359.685,18.645,14.718,18.645 +3486,80.065,126.457,544.649,352.373,417.179,196.102,506.344,151.189,154.612,151.189,200.829,315.311,359.796,18.576,14.975,18.576 +3487,80.089,126.457,544.649,352.373,417.179,196.102,506.344,151.189,154.612,151.189,200.829,315.311,359.796,18.576,14.975,18.576 +3488,80.114,126.936,544.716,352.424,417.199,196.386,506.835,151.390,150.642,151.390,201.597,314.530,359.816,18.595,15.362,18.595 +3489,80.139,170.014,521.318,351.889,417.073,196.248,506.683,150.843,146.634,150.843,299.078,314.778,359.157,18.569,15.522,18.569 +3490,80.163,180.715,516.494,351.433,416.099,196.676,507.353,150.201,142.696,150.201,322.498,314.196,359.286,18.472,15.757,18.472 +3491,80.187,180.715,516.494,351.433,416.099,196.676,507.353,150.201,142.696,150.201,322.498,314.196,359.286,18.472,15.757,18.472 +3492,80.211,185.210,515.540,350.637,414.942,197.268,508.385,149.315,138.814,149.315,331.122,314.107,359.162,18.438,15.804,18.438 +3493,80.234,190.175,517.019,349.500,413.500,199.045,511.536,148.276,135.000,148.276,338.196,313.955,359.051,21.868,15.556,21.868 +3494,80.259,192.448,519.511,347.818,411.523,200.524,514.233,146.832,131.295,146.832,339.679,313.919,358.975,23.799,15.991,23.799 +3495,80.286,192.448,519.511,347.818,411.523,200.524,514.233,146.832,131.295,146.832,339.679,313.919,358.975,23.799,15.991,23.799 +3496,80.310,195.024,521.538,346.019,409.514,202.026,516.640,145.027,127.610,145.027,341.699,313.700,358.789,24.272,16.231,24.272 +3497,80.335,197.662,524.018,343.998,407.018,203.958,519.269,142.973,123.944,142.973,343.023,312.850,358.796,24.795,16.352,24.795 +3498,80.361,200.658,527.065,341.531,404.225,206.169,522.540,140.618,120.411,140.618,345.130,312.569,359.391,25.622,16.555,25.622 +3499,80.385,200.658,527.065,341.531,404.225,206.169,522.540,140.618,120.411,140.618,345.130,312.569,359.391,25.622,16.555,25.622 +3500,80.410,202.727,529.696,338.681,401.372,208.181,524.787,138.013,116.961,138.013,344.443,313.057,359.119,24.008,17.048,24.008 +3501,80.434,206.695,532.765,335.443,397.975,211.353,528.163,135.347,113.385,135.347,346.450,312.667,359.545,25.361,17.414,25.361 +3502,80.458,206.695,532.765,335.443,397.975,211.353,528.163,135.347,113.385,135.347,346.450,312.667,359.545,25.361,17.414,25.361 +3503,80.479,210.034,536.651,331.424,394.735,214.614,531.589,132.145,109.832,132.145,346.049,312.263,359.701,25.754,17.549,25.754 +3504,80.503,213.783,539.345,327.399,391.163,217.886,534.242,128.800,106.607,128.800,347.158,311.578,360.256,24.563,17.636,24.563 +3505,80.529,217.891,542.957,322.470,387.574,221.954,537.209,125.253,103.076,125.253,346.342,311.364,360.420,24.366,17.540,24.366 +3506,80.553,217.891,542.957,322.470,387.574,221.954,537.209,125.253,103.076,125.253,346.342,311.364,360.420,24.366,17.540,24.366 +3507,80.575,223.543,545.919,317.598,384.275,227.091,540.168,121.664,99.770,121.664,346.880,311.404,360.395,25.114,17.419,25.114 +3508,80.599,228.658,548.239,312.474,381.054,231.744,542.372,117.746,96.553,117.746,347.448,310.781,360.707,23.882,17.547,23.882 +3509,80.624,228.658,548.239,312.474,381.054,231.744,542.372,117.746,96.553,117.746,347.448,310.781,360.707,23.882,17.547,23.882 +3510,80.647,234.498,551.421,306.842,378.549,237.306,545.045,113.767,93.323,113.767,346.866,310.104,360.800,23.686,17.525,23.686 +3511,80.673,240.703,553.498,300.500,376.000,242.977,547.116,109.615,90.000,109.615,347.441,310.000,360.992,23.695,17.000,23.695 +3512,80.699,246.835,555.827,294.476,373.836,248.719,548.961,105.341,86.847,105.341,347.745,310.576,361.982,22.582,17.469,22.582 +3513,80.723,246.835,555.827,294.476,373.836,248.719,548.961,105.341,86.847,105.341,347.745,310.576,361.982,22.582,17.469,22.582 +3514,80.747,253.372,557.651,287.315,372.021,254.846,550.136,101.094,83.403,101.094,346.750,310.671,362.068,22.647,16.881,22.647 +3515,80.772,260.786,559.066,280.147,370.823,261.785,550.614,96.742,80.102,96.742,344.385,310.774,361.406,23.361,16.879,23.361 +3516,80.798,267.372,559.777,272.689,370.425,267.731,550.869,92.309,76.804,92.309,343.165,311.147,360.995,21.966,17.048,21.966 +3517,80.822,267.372,559.777,272.689,370.425,267.731,550.869,92.309,76.804,92.309,343.165,311.147,360.995,21.966,17.048,21.966 +3518,80.846,271.774,560.067,265.483,370.303,271.274,550.952,86.858,73.426,86.858,343.130,311.006,361.389,22.965,16.453,22.965 +3519,80.871,279.005,560.867,258.061,370.616,277.656,550.689,82.448,70.105,82.448,341.639,311.844,362.173,23.063,16.514,23.063 +3520,80.897,286.857,560.223,250.791,371.885,284.765,549.980,78.453,66.644,78.453,341.674,311.599,362.582,20.975,16.358,20.975 +3521,80.920,286.857,560.223,250.791,371.885,284.765,549.980,78.453,66.644,78.453,341.674,311.599,362.582,20.975,16.358,20.975 +3522,80.945,295.631,560.719,243.792,373.613,292.140,548.101,74.533,63.239,74.533,335.940,311.285,362.124,20.632,16.416,20.632 +3523,80.977,302.531,560.808,237.256,375.803,297.322,546.417,70.105,59.859,70.105,331.134,311.742,361.743,20.114,16.319,20.114 +3524,81.003,309.180,558.525,231.192,378.038,302.740,544.126,65.904,56.310,65.904,330.103,312.019,361.651,20.285,16.364,20.285 +3525,81.028,314.852,555.498,225.416,380.564,307.415,541.752,61.587,52.943,61.587,330.319,312.213,361.577,20.662,16.270,20.662 +3526,81.053,314.852,555.498,225.416,380.564,307.415,541.752,61.587,52.943,61.587,330.319,312.213,361.577,20.662,16.270,20.662 +3527,81.075,321.185,553.751,219.966,383.529,312.056,539.297,57.724,49.297,57.724,327.560,312.706,361.751,21.048,16.067,21.048 +3528,81.102,332.249,558.592,215.429,386.523,316.231,536.568,53.973,45.674,53.973,306.805,312.586,361.271,21.468,16.154,21.468 +3529,81.128,337.783,554.861,210.863,389.153,320.195,533.310,50.782,41.878,50.782,305.991,313.233,361.625,21.461,16.175,21.461 +3530,81.152,337.783,554.861,210.863,389.153,320.195,533.310,50.782,41.878,50.782,305.991,313.233,361.625,21.461,16.175,21.461 +3531,81.175,340.277,548.370,206.733,391.926,323.549,530.131,47.474,38.089,47.474,312.123,313.461,361.622,21.852,16.039,21.852 +3532,81.199,348.086,548.913,202.859,395.205,326.244,527.326,44.663,34.408,44.663,299.841,313.963,361.260,21.741,16.094,21.741 +3533,81.224,348.086,548.913,202.859,395.205,326.244,527.326,44.663,34.408,44.663,299.841,313.963,361.260,21.741,16.094,21.741 +3534,81.246,350.452,543.891,199.578,397.720,328.910,524.441,42.078,30.411,42.078,303.783,314.557,361.832,22.178,15.842,22.178 +3535,81.270,352.805,539.634,196.898,400.207,331.072,521.563,39.744,26.338,39.744,304.988,314.857,361.516,22.127,15.990,22.127 +3536,81.296,353.189,536.272,194.381,402.788,332.777,519.297,39.748,22.416,39.748,308.711,315.153,361.809,27.801,15.912,27.801 +3537,81.320,353.189,536.272,194.381,402.788,332.777,519.297,39.748,22.416,39.748,308.711,315.153,361.809,27.801,15.912,27.801 +3538,81.345,354.525,532.610,192.150,405.550,334.533,517.038,37.915,18.435,37.915,310.995,314.963,361.676,27.529,16.128,27.529 +3539,81.370,355.462,529.552,190.459,407.686,336.057,515.302,36.290,14.213,36.290,313.952,315.073,362.102,26.548,15.895,26.548 +3540,81.395,355.535,526.736,189.368,409.498,337.081,513.826,34.974,10.416,34.974,316.636,315.558,361.678,26.875,14.775,26.875 +3541,81.419,355.535,526.736,189.368,409.498,337.081,513.826,34.974,10.416,34.974,316.636,315.558,361.678,26.875,14.775,26.875 +3542,81.443,354.782,525.081,188.577,411.284,337.653,513.578,33.881,6.165,33.881,320.311,315.486,361.576,27.408,14.740,27.408 +3543,81.468,354.447,522.342,187.564,412.448,338.652,511.967,33.299,1.796,33.299,324.041,315.378,361.837,26.435,14.791,26.435 +3544,81.492,353.386,521.710,187.394,412.756,338.624,512.095,33.079,177.283,33.079,326.641,315.404,361.876,28.997,16.101,28.997 +3545,81.516,353.386,521.710,187.394,412.756,338.624,512.095,33.079,177.283,33.079,326.641,315.404,361.876,28.997,16.101,28.997 +3546,81.538,352.213,521.214,187.098,412.771,338.374,512.240,32.959,172.899,32.959,329.101,315.544,362.090,29.865,16.930,29.865 +3547,81.563,350.595,520.625,187.020,412.677,338.113,512.538,32.939,168.317,32.939,332.462,315.558,362.208,29.031,17.069,29.031 +3548,81.586,350.595,520.625,187.020,412.677,338.113,512.538,32.939,168.317,32.939,332.462,315.558,362.208,29.031,17.069,29.031 +3549,81.610,343.973,516.040,187.050,411.245,337.930,512.021,33.629,163.732,33.629,348.363,315.640,362.879,28.027,18.659,28.027 +3550,81.634,343.035,516.717,187.857,411.031,337.580,512.987,34.371,158.946,34.371,349.064,315.757,362.281,27.846,17.760,27.846 +3551,81.659,341.599,517.955,188.905,409.304,336.577,514.382,35.433,154.113,35.433,350.156,315.369,362.484,28.157,18.350,28.157 +3552,81.683,341.599,517.955,188.905,409.304,336.577,514.382,35.433,154.113,35.433,350.156,315.369,362.484,28.157,18.350,28.157 +3553,81.706,341.023,520.469,190.124,407.867,335.348,516.227,36.775,149.253,36.775,348.220,314.891,362.391,28.625,18.392,28.625 +3554,81.732,339.155,522.436,192.035,405.780,333.797,518.198,38.346,144.162,38.346,348.187,314.679,361.851,28.983,18.781,28.983 +3555,81.756,339.155,522.436,192.035,405.780,333.797,518.198,38.346,144.162,38.346,348.187,314.679,361.851,28.983,18.781,28.983 +3556,81.781,337.666,524.990,193.963,403.238,331.971,520.192,40.119,138.894,40.119,346.903,314.206,361.796,27.813,19.871,27.813 +3557,81.807,335.494,527.147,196.547,400.714,330.335,522.430,42.441,133.580,42.441,347.759,312.620,361.740,27.790,20.190,27.790 +3558,81.831,332.170,529.848,199.595,397.989,327.803,525.505,44.842,128.418,44.842,349.333,312.805,361.651,28.343,20.587,28.343 +3559,81.855,332.170,529.848,199.595,397.989,327.803,525.505,44.842,128.418,44.842,349.333,312.805,361.651,28.343,20.587,28.343 +3560,81.879,329.139,533.124,203.346,395.209,325.035,528.648,47.476,123.232,47.476,349.042,312.346,361.187,28.632,20.190,28.632 +3561,81.903,326.566,536.279,207.558,392.843,322.707,531.648,50.194,117.699,50.194,348.644,311.262,360.700,26.120,18.903,26.120 +3562,81.927,322.958,540.142,212.025,389.328,318.933,534.704,53.491,112.249,53.491,347.373,311.405,360.904,27.013,19.310,27.013 +3563,81.951,322.958,540.142,212.025,389.328,318.933,534.704,53.491,112.249,53.491,347.373,311.405,360.904,27.013,19.310,27.013 +3564,81.974,318.724,542.650,217.585,386.631,315.616,537.916,56.725,106.837,56.725,349.207,311.004,360.533,25.839,17.606,25.839 +3565,81.999,314.603,546.237,222.843,383.675,311.455,540.754,60.145,101.421,60.145,348.042,310.455,360.687,24.875,17.248,24.875 +3566,82.023,314.603,546.237,222.843,383.675,311.455,540.754,60.145,101.421,60.145,348.042,310.455,360.687,24.875,17.248,24.875 +3567,82.048,310.031,549.472,228.483,381.161,307.045,543.424,63.726,96.189,63.726,347.063,309.870,360.553,23.518,17.045,23.518 +3568,82.073,305.448,553.057,234.170,378.519,302.347,545.565,67.514,91.627,67.514,344.626,309.415,360.842,23.202,16.908,23.202 +3569,82.098,300.336,556.273,239.807,376.469,297.360,547.608,71.046,87.797,71.046,342.783,309.540,361.107,21.648,16.949,21.648 +3570,82.123,300.336,556.273,239.807,376.469,297.360,547.608,71.046,87.797,71.046,342.783,309.540,361.107,21.648,16.949,21.648 +3571,82.147,295.640,562.559,245.610,374.344,291.934,549.048,74.659,84.450,74.659,333.450,310.646,361.470,20.431,17.364,20.431 +3572,82.171,293.508,587.536,251.328,372.816,285.800,550.399,78.275,82.117,78.275,285.907,310.301,361.765,21.541,16.763,21.541 +3573,82.196,287.595,594.350,257.284,371.312,282.001,550.483,82.733,79.695,82.733,273.270,310.187,361.716,22.329,16.726,22.329 +3574,82.220,287.595,594.350,257.284,371.312,282.001,550.483,82.733,79.695,82.733,273.270,310.187,361.716,22.329,16.726,22.329 +3575,82.243,272.949,564.504,263.141,370.422,271.852,551.056,85.333,77.196,85.333,334.500,310.004,361.486,24.795,16.755,24.795 +3576,82.267,267.500,558.500,269.302,369.698,267.500,550.349,90.000,74.144,90.000,345.000,310.574,361.302,23.000,17.093,23.000 +3577,82.293,264.016,557.072,276.075,369.653,264.580,550.156,94.660,70.201,94.660,347.803,310.719,361.680,24.902,17.689,24.902 +3578,82.317,264.016,557.072,276.075,369.653,264.580,550.156,94.660,70.201,94.660,347.803,310.719,361.680,24.902,17.689,24.902 +3579,82.340,256.644,556.149,282.989,370.229,257.639,549.794,98.897,65.842,98.897,349.784,311.103,362.649,24.008,18.524,24.008 +3580,82.368,249.815,554.725,290.356,371.355,251.191,548.757,102.981,61.133,102.981,351.082,311.405,363.332,22.681,19.704,22.681 +3581,82.394,243.595,553.303,297.349,372.929,245.523,547.072,107.193,56.063,107.193,350.318,311.493,363.362,23.120,19.889,23.120 +3582,82.419,243.595,553.303,297.349,372.929,245.523,547.072,107.193,56.063,107.193,350.318,311.493,363.362,23.120,19.889,23.120 +3583,82.443,238.049,551.468,304.099,375.397,240.443,545.326,111.291,51.024,111.291,349.707,311.268,362.890,23.835,20.036,23.835 +3584,82.468,232.500,550.127,310.457,378.012,235.669,543.423,115.298,45.872,115.298,348.183,311.916,363.013,24.668,20.593,24.668 +3585,82.493,226.917,548.241,316.174,381.219,230.865,541.158,119.137,40.815,119.137,346.256,311.811,362.474,24.992,19.849,24.992 +3586,82.517,226.917,548.241,316.174,381.219,230.865,541.158,119.137,40.815,119.137,346.256,311.811,362.474,24.992,19.849,24.992 +3587,82.539,221.775,546.257,321.898,384.250,226.720,538.590,122.818,35.690,122.818,344.333,312.348,362.580,25.874,19.607,25.874 +3588,82.564,217.832,543.349,326.898,387.656,223.184,536.077,126.355,30.811,126.355,343.968,312.987,362.025,26.618,18.709,26.618 +3589,82.588,217.832,543.349,326.898,387.656,223.184,536.077,126.355,30.811,126.355,343.968,312.987,362.025,26.618,18.709,26.618 +3590,82.612,213.590,540.490,331.342,391.297,219.440,533.450,129.724,25.935,129.724,343.391,313.129,361.698,26.570,18.025,26.570 +3591,82.637,209.998,537.036,335.440,394.873,215.983,530.569,132.783,21.323,132.783,343.834,313.873,361.457,26.567,17.168,26.567 +3592,82.662,206.136,534.677,338.762,398.124,213.104,527.879,135.711,16.656,135.711,341.638,314.167,361.109,26.766,16.456,26.766 +3593,82.686,206.136,534.677,338.762,398.124,213.104,527.879,135.711,16.656,135.711,341.638,314.167,361.109,26.766,16.456,26.766 +3594,82.710,201.477,533.217,341.873,401.096,210.563,525.116,138.279,12.074,138.279,336.741,314.365,361.089,27.175,15.322,27.175 +3595,82.735,196.933,530.638,344.088,403.853,207.526,521.953,140.651,7.765,140.651,333.572,314.949,360.968,25.999,14.367,25.999 +3596,82.763,192.704,528.613,346.053,406.091,205.046,519.191,142.640,3.366,142.640,330.364,314.750,361.418,25.982,14.035,25.982 +3597,82.787,192.704,528.613,346.053,406.091,205.046,519.191,142.640,3.366,142.640,330.364,314.750,361.418,25.982,14.035,25.982 +3598,82.811,187.614,525.998,347.482,407.821,202.249,515.866,145.305,179.145,145.305,326.220,315.114,361.820,25.108,13.536,25.108 +3599,82.835,184.346,526.033,348.050,409.576,201.143,514.682,145.949,175.052,145.949,320.596,315.590,361.141,25.102,13.629,25.102 +3600,82.859,179.147,525.732,349.237,410.820,199.924,512.541,147.588,171.091,147.588,311.930,315.766,361.150,24.335,13.666,24.335 +3601,82.882,179.147,525.732,349.237,410.820,199.924,512.541,147.588,171.091,147.588,311.930,315.766,361.150,24.335,13.666,24.335 +3602,82.904,172.717,525.658,349.946,412.045,198.487,510.615,149.727,167.276,149.727,301.316,315.539,360.994,23.826,13.782,23.826 +3603,82.929,165.549,528.826,350.238,413.115,198.173,510.294,150.400,163.496,150.400,285.399,315.516,360.440,23.019,13.991,23.019 +3604,82.953,165.549,528.826,350.238,413.115,198.173,510.294,150.400,163.496,150.400,285.399,315.516,360.440,23.019,13.991,23.019 +3605,82.977,154.022,534.855,350.716,413.869,198.173,510.183,150.803,159.814,150.803,259.136,315.528,360.291,22.209,14.576,22.209 +3606,83.001,131.065,547.245,350.888,413.746,197.252,507.891,149.265,156.258,149.265,206.335,315.161,360.342,18.701,15.011,18.701 +3607,83.026,128.651,549.764,350.895,413.869,197.626,508.571,149.153,152.592,149.153,199.611,314.923,360.291,18.602,15.190,18.602 +3608,83.051,128.651,549.764,350.895,413.869,197.626,508.571,149.153,152.592,149.153,199.611,314.923,360.291,18.602,15.190,18.602 +3609,83.074,130.689,550.635,350.709,413.863,198.265,509.607,148.736,148.861,148.736,201.882,314.192,359.993,18.531,15.478,18.531 +3610,83.099,157.186,536.681,349.869,412.580,198.860,510.467,147.829,145.539,147.829,261.420,313.800,359.886,18.472,15.682,18.472 +3611,83.123,157.186,536.681,349.869,412.580,198.860,510.467,147.829,145.539,147.829,261.420,313.800,359.886,18.472,15.682,18.472 +3612,83.148,176.094,527.438,348.685,411.681,199.524,512.119,146.821,141.953,146.821,303.627,314.078,359.615,18.478,15.750,18.478 +3613,83.172,184.347,524.909,347.225,410.255,200.440,513.829,145.452,138.532,145.452,320.196,313.603,359.273,18.498,15.980,18.498 +3614,83.197,188.480,525.528,345.750,408.250,201.698,515.882,143.881,135.000,143.881,326.893,313.248,359.620,18.536,15.556,18.536 +3615,83.225,192.375,526.389,343.187,405.958,202.783,518.221,141.875,131.845,141.875,333.057,313.079,359.519,18.342,15.989,18.342 +3616,83.253,192.375,526.389,343.187,405.958,202.783,518.221,141.875,131.845,141.875,333.057,313.079,359.519,18.342,15.989,18.342 +3617,83.276,195.283,528.795,340.744,403.195,204.830,520.732,139.816,128.660,139.816,334.357,312.972,359.350,18.707,16.086,18.707 +3618,83.302,198.835,532.037,337.892,400.210,207.428,524.128,137.375,125.493,137.375,336.470,313.167,359.826,20.394,16.270,20.394 +3619,83.327,202.568,535.041,334.644,397.186,210.381,527.146,134.703,122.518,134.703,337.348,312.690,359.563,21.191,16.612,21.191 +3620,83.353,202.568,535.041,334.644,397.186,210.381,527.146,134.703,122.518,134.703,337.348,312.690,359.563,21.191,16.612,21.191 +3621,83.376,206.661,538.289,331.334,393.827,213.781,530.364,131.941,119.624,131.941,338.949,312.450,360.258,22.541,16.977,22.541 +3622,83.402,211.312,541.260,327.700,390.600,217.802,533.168,128.731,116.565,128.731,339.203,312.602,359.950,22.742,16.994,22.742 +3623,83.428,214.933,545.650,323.485,387.083,221.791,535.997,125.395,113.543,125.395,336.905,312.287,360.588,22.739,16.973,22.739 +3624,83.452,214.933,545.650,323.485,387.083,221.791,535.997,125.395,113.543,125.395,336.905,312.287,360.588,22.739,16.973,22.739 +3625,83.475,219.341,549.201,318.740,384.027,225.848,538.744,121.891,110.556,121.891,336.245,312.266,360.877,21.962,17.088,21.962 +3626,83.499,224.752,551.740,313.516,381.144,230.305,541.365,118.156,107.716,118.156,337.516,311.824,361.053,20.949,16.921,20.949 +3627,83.523,224.752,551.740,313.516,381.144,230.305,541.365,118.156,107.716,118.156,337.516,311.824,361.053,20.949,16.921,20.949 +3628,83.546,228.901,556.471,307.805,378.449,234.697,543.528,114.121,104.775,114.121,332.721,311.449,361.084,19.739,17.001,19.739 +3629,83.571,234.836,559.577,301.868,375.972,239.942,545.534,109.983,101.997,109.983,331.149,311.079,361.033,19.907,16.873,19.907 +3630,83.595,240.715,566.488,295.276,374.124,245.915,548.214,105.884,99.103,105.884,323.906,310.531,361.905,20.269,16.699,20.269 +3631,83.619,240.715,566.488,295.276,374.124,245.915,548.214,105.884,99.103,105.884,323.906,310.531,361.905,20.269,16.699,20.269 +3632,83.643,249.682,572.419,288.290,372.587,254.320,550.574,101.988,96.297,101.988,317.658,311.194,362.322,24.569,16.610,24.569 +3633,83.667,255.795,579.586,281.201,371.857,259.687,551.077,97.774,93.558,97.774,303.418,310.706,360.966,22.768,16.610,22.768 +3634,83.693,263.564,590.973,274.199,370.996,266.045,551.276,93.576,90.843,93.576,281.326,310.158,360.875,22.706,16.425,22.706 +3635,83.718,263.564,590.973,274.199,370.996,266.045,551.276,93.576,90.843,93.576,281.326,310.158,360.875,22.706,16.425,22.706 +3636,83.741,273.345,629.485,267.048,370.949,271.992,551.027,89.012,88.101,89.012,203.332,310.327,360.273,22.117,16.742,22.117 +3637,83.766,283.288,628.946,259.980,371.380,275.090,551.444,83.962,85.380,83.962,205.441,310.332,361.308,23.609,16.854,23.609 +3638,83.790,283.288,628.946,259.980,371.380,275.090,551.444,83.962,85.380,83.962,205.441,310.332,361.308,23.609,16.854,23.609 +3639,83.813,290.268,595.762,253.051,371.801,282.144,550.649,79.792,82.694,79.792,270.669,310.968,362.346,21.652,16.735,21.652 +3640,83.837,296.706,579.324,246.176,372.879,289.138,549.052,75.964,79.838,75.964,300.259,311.256,362.666,20.616,16.882,20.616 +3641,83.862,303.601,570.613,239.830,374.154,295.759,546.304,72.121,77.074,72.121,310.932,311.731,362.016,19.863,16.921,19.863 +3642,83.886,303.601,570.613,239.830,374.154,295.759,546.304,72.121,77.074,72.121,310.932,311.731,362.016,19.863,16.921,19.863 +3643,83.910,309.632,564.045,233.839,376.328,301.707,544.151,68.279,74.213,68.279,319.220,312.081,362.048,20.038,17.024,20.038 +3644,83.934,314.734,558.339,228.162,378.962,306.798,541.640,64.583,71.269,64.583,324.389,311.826,361.366,19.598,17.172,19.598 +3645,83.959,320.474,554.627,223.176,381.523,311.849,539.116,60.924,68.443,60.924,326.156,311.969,361.650,20.066,17.166,20.066 +3646,83.983,320.474,554.627,223.176,381.523,311.849,539.116,60.924,68.443,60.924,326.156,311.969,361.650,20.066,17.166,20.066 +3647,84.005,326.632,551.866,218.675,384.784,316.773,536.299,57.653,65.556,57.653,324.129,311.842,360.981,20.247,16.966,20.247 +3648,84.032,330.861,547.670,214.351,387.853,320.757,533.512,54.488,62.639,54.488,325.960,312.224,360.747,21.137,16.533,21.137 +3649,84.056,330.861,547.670,214.351,387.853,320.757,533.512,54.488,62.639,54.488,325.960,312.224,360.747,21.137,16.533,21.137 +3650,84.081,335.814,544.847,210.441,391.242,324.603,530.816,51.374,59.693,51.374,324.687,311.969,360.607,21.522,16.689,21.522 +3651,84.106,339.694,541.665,206.771,394.151,327.518,528.011,48.275,56.706,48.275,323.953,312.316,360.541,20.286,16.618,20.286 +3652,84.132,343.162,538.329,203.414,397.063,330.237,525.043,45.789,53.673,45.789,323.263,312.616,360.334,19.930,16.611,19.930 +3653,84.156,343.162,538.329,203.414,397.063,330.237,525.043,45.789,53.673,45.789,323.263,312.616,360.334,19.930,16.611,19.930 +3654,84.180,347.181,536.449,200.500,399.500,332.309,522.235,43.705,50.332,43.705,319.031,312.803,360.177,20.840,16.578,20.840 +3655,84.205,349.888,534.347,197.666,402.347,334.003,520.479,41.121,47.291,41.121,318.617,312.970,360.791,19.538,16.222,19.538 +3656,84.230,359.110,537.073,195.500,404.000,335.548,517.537,39.664,43.905,39.664,299.342,313.448,360.557,20.529,16.454,20.529 +3657,84.253,359.110,537.073,195.500,404.000,335.548,517.537,39.664,43.905,39.664,299.342,313.448,360.557,20.529,16.454,20.529 +3658,84.277,369.048,540.989,193.588,405.647,336.615,515.551,38.108,40.601,38.108,278.299,314.115,360.736,20.813,16.487,20.813 +3659,84.302,398.618,560.012,191.833,406.873,336.267,515.233,35.685,37.381,35.685,207.518,314.425,361.048,18.851,16.481,18.851 +3660,84.327,402.271,559.009,190.612,407.834,336.892,513.970,34.563,34.007,34.563,202.565,314.797,361.348,19.179,16.340,19.179 +3661,84.351,402.271,559.009,190.612,407.834,336.892,513.970,34.563,34.007,34.563,202.565,314.797,361.348,19.179,16.340,19.179 +3662,84.373,403.853,557.192,189.892,408.841,337.739,512.715,33.930,30.735,33.930,201.939,315.217,361.304,18.767,16.285,18.767 +3663,84.399,400.038,552.692,189.730,408.605,338.354,511.569,33.690,27.181,33.690,213.282,314.931,361.554,18.860,15.652,18.860 +3664,84.423,400.038,552.692,189.730,408.605,338.354,511.569,33.690,27.181,33.690,213.282,314.931,361.554,18.860,15.652,18.860 +3665,84.447,376.418,537.129,189.912,408.924,337.904,512.792,32.289,23.720,32.289,270.066,315.161,361.185,21.108,15.217,21.108 +3666,84.472,366.516,531.678,189.907,408.890,337.680,513.565,32.135,20.158,32.135,293.516,315.526,361.623,23.187,15.163,23.187 +3667,84.497,360.160,529.771,190.443,408.503,337.402,513.852,34.974,16.484,34.974,306.068,315.125,361.614,27.695,14.804,27.695 +3668,84.520,360.160,529.771,190.443,408.503,337.402,513.852,34.974,16.484,34.974,306.068,315.125,361.614,27.695,14.804,27.695 +3669,84.543,356.266,527.931,190.763,407.840,337.103,514.204,35.616,12.771,35.616,314.671,315.321,361.814,26.718,14.746,26.718 +3670,84.567,352.707,527.544,191.597,406.878,336.562,515.611,36.469,8.846,36.469,322.265,315.451,362.416,25.908,15.554,25.908 +3671,84.590,352.707,527.544,191.597,406.878,336.562,515.611,36.469,8.846,36.469,322.265,315.451,362.416,25.908,15.554,25.908 +3672,84.614,348.137,528.525,192.583,405.572,334.474,517.995,37.623,5.092,37.623,327.530,314.871,362.029,27.177,14.527,27.177 +3673,84.638,345.078,528.676,193.537,403.814,333.360,519.137,39.148,0.964,39.148,332.264,315.157,362.484,25.791,15.540,25.791 +3674,84.664,336.443,525.493,194.908,401.789,331.479,521.155,41.143,176.906,41.143,349.582,314.460,362.767,26.635,16.085,26.635 +3675,84.688,336.443,525.493,194.908,401.789,331.479,521.155,41.143,176.906,41.143,349.582,314.460,362.767,26.635,16.085,26.635 +3676,84.713,338.276,532.737,197.562,399.112,329.015,523.982,43.391,172.641,43.391,337.125,314.682,362.614,28.869,17.003,28.869 +3677,84.738,330.778,530.752,199.860,396.339,326.345,526.244,45.479,168.551,45.479,349.976,314.960,362.620,28.094,17.481,28.094 +3678,84.764,328.190,533.931,203.208,393.475,323.732,528.970,48.064,164.107,48.064,349.341,314.147,362.679,27.703,17.512,27.703 +3679,84.788,328.190,533.931,203.208,393.475,323.732,528.970,48.064,164.107,48.064,349.341,314.147,362.679,27.703,17.512,27.703 +3680,84.813,325.533,537.258,206.966,390.552,320.957,531.607,51.001,159.756,51.001,348.170,314.147,362.715,27.799,17.806,27.799 +3681,84.837,322.697,541.856,210.910,387.150,317.205,534.357,53.781,155.120,53.781,344.546,313.729,363.135,26.862,18.788,26.862 +3682,84.863,318.834,543.661,215.862,384.373,314.198,536.514,57.031,150.479,57.031,345.267,312.947,362.307,25.123,18.609,25.123 +3683,84.886,318.834,543.661,215.862,384.373,314.198,536.514,57.031,150.479,57.031,345.267,312.947,362.307,25.123,18.609,25.123 +3684,84.909,314.345,546.521,220.789,380.960,310.032,538.903,60.481,145.620,60.481,345.311,312.531,362.822,24.667,19.677,24.667 +3685,84.933,308.807,548.567,226.683,378.503,305.456,541.682,64.047,140.667,64.047,347.080,312.109,362.394,23.728,19.090,23.728 +3686,84.957,308.807,548.567,226.683,378.503,305.456,541.682,64.047,140.667,64.047,347.080,312.109,362.394,23.728,19.090,23.728 +3687,84.981,303.650,550.367,232.833,375.828,301.041,543.976,67.797,135.881,67.797,349.101,311.308,362.909,22.390,19.405,22.390 +3688,85.006,298.024,552.000,239.201,374.240,296.004,545.988,71.428,131.028,71.428,349.108,311.457,361.793,20.672,18.468,20.672 +3689,85.032,292.114,553.471,245.395,372.695,290.775,548.193,75.759,126.069,75.759,351.647,310.928,362.537,21.107,18.521,21.107 +3690,85.056,292.114,553.471,245.395,372.695,290.775,548.193,75.759,126.069,75.759,351.647,310.928,362.537,21.107,18.521,21.107 +3691,85.081,284.412,556.483,252.504,371.518,283.194,549.956,79.436,121.218,79.436,348.803,311.085,362.081,22.177,17.570,22.177 +3692,85.106,277.256,557.723,259.146,371.101,276.480,551.024,83.397,116.114,83.397,347.960,310.346,361.446,23.301,17.113,23.301 +3693,85.132,271.252,559.293,265.166,371.263,270.906,551.335,87.510,111.879,87.510,344.370,309.007,360.302,21.588,17.105,21.588 +3694,85.156,271.252,559.293,265.166,371.263,270.906,551.335,87.510,111.879,87.510,344.370,309.007,360.302,21.588,17.105,21.588 +3695,85.180,266.062,560.502,271.300,371.100,266.421,551.215,92.212,108.435,92.212,341.749,309.271,360.338,21.941,17.076,21.941 +3696,85.205,260.448,563.778,277.409,371.562,261.776,551.505,96.180,105.388,96.180,336.473,309.271,361.161,23.145,17.027,23.145 +3697,85.230,249.990,582.074,283.518,371.924,255.310,550.725,99.631,103.069,99.631,298.407,309.937,362.001,21.541,16.942,21.541 +3698,85.253,249.990,582.074,283.518,371.924,255.310,550.725,99.631,103.069,99.631,298.407,309.937,362.001,21.541,16.942,21.541 +3699,85.277,232.845,623.289,289.339,372.962,250.598,549.688,103.561,101.182,103.561,210.340,309.659,361.764,21.387,16.917,21.387 +3700,85.302,239.352,563.998,295.040,374.243,244.172,547.816,106.587,98.973,106.587,327.972,310.210,361.742,20.167,17.104,20.167 +3701,85.327,238.290,554.958,300.827,375.981,241.447,546.428,110.314,96.248,110.314,342.731,309.871,360.922,23.328,16.935,23.328 +3702,85.351,238.290,554.958,300.827,375.981,241.447,546.428,110.314,96.248,110.314,342.731,309.871,360.922,23.328,16.935,23.328 +3703,85.373,234.199,551.295,306.323,377.541,237.239,544.408,113.819,92.862,113.819,346.052,309.963,361.108,24.239,16.879,24.239 +3704,85.398,229.914,547.300,312.263,379.993,232.631,542.048,117.350,88.493,117.350,349.223,310.314,361.050,24.258,17.889,24.258 +3705,85.423,229.914,547.300,312.263,379.993,232.631,542.048,117.350,88.493,117.350,349.223,310.314,361.050,24.258,17.889,24.258 +3706,85.447,225.863,544.495,317.949,382.664,228.691,539.749,120.795,83.946,120.795,350.220,310.757,361.268,25.114,19.406,25.114 +3707,85.472,221.603,541.612,322.398,385.659,224.473,537.367,124.063,79.177,124.063,350.804,310.841,361.053,25.242,19.774,25.242 +3708,85.497,217.423,539.128,327.109,388.824,220.708,534.812,127.276,73.899,127.276,350.371,311.251,361.218,25.447,20.870,25.447 +3709,85.520,217.423,539.128,327.109,388.824,220.708,534.812,127.276,73.899,127.276,350.371,311.251,361.218,25.447,20.870,25.447 +3710,85.543,213.812,536.495,330.954,391.821,217.336,532.330,130.236,68.523,130.236,350.394,311.633,361.306,26.073,21.098,26.073 +3711,85.567,210.198,534.413,334.358,395.049,214.305,530.006,132.982,62.892,132.982,349.110,311.796,361.157,26.542,20.897,26.542 +3712,85.590,210.198,534.413,334.358,395.049,214.305,530.006,132.982,62.892,132.982,349.110,311.796,361.157,26.542,20.897,26.542 +3713,85.614,207.091,532.641,337.331,397.607,211.809,527.998,135.458,57.724,135.458,348.609,312.786,361.848,27.582,21.271,27.582 +3714,85.639,204.283,530.266,340.014,400.449,209.479,525.547,137.752,52.407,137.752,347.434,312.906,361.472,27.953,20.889,27.953 +3715,85.664,201.191,528.048,341.862,402.851,207.040,523.103,139.787,47.220,139.787,345.871,313.424,361.190,27.339,20.003,27.339 +3716,85.688,201.191,528.048,341.862,402.851,207.040,523.103,139.787,47.220,139.787,345.871,313.424,361.190,27.339,20.003,27.339 +3717,85.713,198.267,526.098,343.931,404.828,204.892,520.843,141.575,41.634,141.575,345.144,314.576,362.056,26.387,19.433,26.387 +3718,85.738,196.580,524.440,345.603,406.829,203.694,519.104,143.130,36.439,143.130,344.000,314.818,361.785,27.000,18.165,27.000 +3719,85.764,195.287,522.599,346.881,408.269,202.700,517.289,144.389,31.769,144.389,343.159,315.570,361.396,26.554,17.508,26.554 +3720,85.788,195.287,522.599,346.881,408.269,202.700,517.289,144.389,31.769,144.389,343.159,315.570,361.396,26.554,17.508,26.554 +3721,85.813,194.817,522.140,348.596,409.325,202.857,516.608,145.469,26.906,145.469,342.234,315.280,361.753,28.259,17.103,28.259 +3722,85.837,193.011,520.506,349.759,410.139,202.113,514.398,146.136,22.190,146.136,339.467,315.695,361.391,25.698,15.741,25.698 +3723,85.863,192.338,520.512,350.822,410.566,202.665,513.702,146.597,17.482,146.597,336.183,315.688,360.925,26.254,15.531,26.254 +3724,85.886,192.338,520.512,350.822,410.566,202.665,513.702,146.597,17.482,146.597,336.183,315.688,360.925,26.254,15.531,26.254 +3725,85.908,191.677,520.769,351.330,410.579,202.768,513.496,146.746,13.085,146.746,334.813,316.303,361.339,26.129,14.616,26.129 +3726,85.932,190.235,522.112,351.156,410.486,202.893,513.743,146.527,8.746,146.527,330.901,315.823,361.249,26.100,14.445,26.100 +3727,85.957,190.235,522.112,351.156,410.486,202.893,513.743,146.527,8.746,146.527,330.901,315.823,361.249,26.100,14.445,26.100 +3728,85.982,188.682,522.777,350.494,410.083,202.503,513.722,146.768,4.170,146.768,328.124,315.911,361.171,25.988,14.243,25.988 +3729,86.007,188.806,526.221,349.500,409.500,203.614,515.933,145.207,0.000,145.207,325.010,315.000,361.072,26.460,13.000,26.460 +3730,86.032,189.491,528.790,348.850,408.050,205.212,517.518,144.360,175.601,144.360,322.349,315.223,361.039,27.279,14.035,27.279 +3731,86.056,189.491,528.790,348.850,408.050,205.212,517.518,144.360,175.601,144.360,322.349,315.223,361.039,27.279,14.035,27.279 +3732,86.081,188.960,530.780,347.266,406.408,205.587,518.309,143.130,171.656,143.130,319.400,315.254,360.969,24.800,14.129,24.800 +3733,86.111,188.818,534.769,345.336,404.748,206.784,520.546,141.633,167.707,141.633,315.186,315.078,361.016,24.959,14.265,24.959 +3734,86.135,189.918,537.305,343.155,402.262,208.124,522.078,140.092,163.840,140.092,313.428,314.964,360.896,24.798,14.560,24.798 +3735,86.160,192.119,540.743,339.898,399.219,210.020,524.632,138.013,160.017,138.013,312.704,314.916,360.870,26.238,14.866,26.238 +3736,86.184,192.119,540.743,339.898,399.219,210.020,524.632,138.013,160.017,138.013,312.704,314.916,360.870,26.238,14.866,26.238 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-233154.csv b/chaos_pdl/data/raw/metrics-20250919-233154.csv new file mode 100644 index 0000000..d83dc0c --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-233154.csv @@ -0,0 +1,3045 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.002,369.871,450.287,177.970,599.419,319.824,491.235,140.711,137.603,140.711,227.262,312.187,356.591,16.464,14.192,16.464 +1,0.030,343.004,491.922,168.676,586.304,327.180,501.103,149.878,132.920,149.878,323.124,312.116,359.714,19.617,14.619,19.617 +2,0.057,343.807,510.705,162.682,572.468,333.866,514.304,160.100,127.349,160.100,340.376,311.202,361.521,18.725,15.585,18.725 +3,0.083,347.087,528.438,158.823,557.258,338.444,529.832,170.838,122.233,170.838,345.885,309.902,363.393,18.089,17.776,18.089 +4,0.109,349.072,546.307,159.281,541.892,341.235,546.051,1.868,116.217,1.868,348.304,311.746,363.986,17.121,19.125,17.121 +5,0.140,349.072,546.307,159.281,541.892,341.235,546.051,1.868,116.217,1.868,348.304,311.746,363.986,17.121,19.125,17.121 +6,0.171,348.698,565.159,164.013,525.106,341.972,563.575,13.252,109.776,13.252,350.258,309.628,364.078,18.025,19.508,18.025 +7,0.197,343.016,583.608,172.715,508.323,338.418,581.461,25.017,102.680,25.017,352.022,308.171,362.172,17.761,18.268,17.761 +8,0.223,333.139,601.311,182.902,492.445,329.459,598.547,36.913,96.509,36.913,352.601,306.121,361.808,18.986,18.751,18.986 +9,0.252,319.477,615.890,196.535,477.066,316.498,612.463,48.998,90.682,48.998,352.697,306.074,361.777,19.387,18.308,19.387 +10,0.277,302.991,627.905,211.950,465.661,300.405,623.140,61.504,84.382,61.504,350.361,305.770,361.204,19.460,19.023,19.460 +11,0.305,302.991,627.905,211.950,465.661,300.405,623.140,61.504,84.382,61.504,350.361,305.770,361.204,19.460,19.023,19.460 +12,0.329,286.226,651.106,229.903,456.710,279.941,630.467,73.064,79.144,73.064,318.446,306.537,361.595,25.372,17.678,25.372 +13,0.355,267.176,650.706,249.824,452.554,266.290,632.092,87.274,72.897,87.274,322.967,307.099,360.237,27.493,18.454,27.493 +14,0.381,245.056,638.148,270.999,452.932,246.252,630.666,99.083,66.857,99.083,343.670,307.382,358.825,25.318,21.201,25.318 +15,0.406,245.056,638.148,270.999,452.932,246.252,630.666,99.083,66.857,99.083,343.670,307.382,358.825,25.318,21.201,25.318 +16,0.431,225.507,630.014,290.323,458.687,227.464,624.836,110.706,60.524,110.706,344.212,308.331,355.284,20.221,21.613,20.221 +17,0.457,208.869,619.853,307.964,468.546,211.498,615.784,122.863,53.499,122.863,342.350,309.222,352.041,20.241,18.617,20.241 +18,0.483,194.702,606.195,323.766,481.309,198.299,602.579,134.850,47.936,134.850,338.720,311.443,348.922,17.561,17.383,17.561 +19,0.508,194.702,606.195,323.766,481.309,198.299,602.579,134.850,47.936,134.850,338.720,311.443,348.922,17.561,17.383,17.561 +20,0.533,184.110,592.423,337.549,495.175,190.164,588.419,146.519,41.388,146.519,334.224,314.668,348.738,19.663,16.885,19.663 +21,0.559,175.317,576.824,347.607,511.246,184.474,573.090,157.818,35.480,157.818,329.036,317.939,348.815,19.410,17.127,19.410 +22,0.586,168.446,560.106,353.393,527.693,181.758,557.557,169.160,29.790,169.160,321.269,321.622,348.378,18.055,16.697,18.055 +23,0.612,162.000,544.000,355.743,544.748,182.372,544.000,0.000,24.311,0.000,306.000,323.595,346.743,18.000,15.381,18.000 +24,0.638,162.000,544.000,355.743,544.748,182.372,544.000,0.000,24.311,0.000,306.000,323.595,346.743,18.000,15.381,18.000 +25,0.662,136.319,521.823,363.109,563.440,188.361,531.736,10.784,19.926,10.784,249.233,307.742,355.188,15.811,13.914,15.811 +26,0.689,153.777,505.482,369.161,580.630,196.772,521.160,20.034,15.578,20.034,273.132,287.234,364.661,16.807,13.643,16.807 +27,0.714,184.722,502.635,362.690,592.923,200.292,511.464,29.555,10.923,29.555,327.098,286.934,362.895,17.244,13.781,17.244 +28,0.739,184.722,502.635,362.690,592.923,200.292,511.464,29.555,10.923,29.555,327.098,286.934,362.895,17.244,13.781,17.244 +29,0.763,193.825,492.571,334.629,601.890,198.794,496.589,38.956,4.581,38.956,330.890,324.764,343.669,18.481,15.911,18.481 +30,0.789,202.973,483.289,323.443,611.043,206.224,486.878,47.827,178.905,47.827,331.753,323.208,341.437,18.057,15.972,18.057 +31,0.815,212.571,476.276,310.351,620.191,214.661,479.435,56.508,172.309,56.508,332.800,323.010,340.376,18.737,16.054,18.737 +32,0.841,212.571,476.276,310.351,620.191,214.661,479.435,56.508,172.309,56.508,332.800,323.010,340.376,18.737,16.054,18.737 +33,0.865,223.478,470.202,295.950,628.460,225.171,473.870,65.225,165.610,65.225,331.964,321.373,340.044,20.813,15.625,20.813 +34,0.891,234.045,466.081,281.030,634.232,235.281,470.240,73.455,158.682,73.455,331.782,319.986,340.460,19.108,14.814,19.108 +35,0.918,245.570,462.273,266.252,637.326,246.303,467.349,81.787,151.699,81.787,331.911,319.001,342.167,17.703,14.765,17.703 +36,0.943,245.570,462.273,266.252,637.326,246.303,467.349,81.787,151.699,81.787,331.911,319.001,342.167,17.703,14.765,17.703 +37,0.969,257.500,460.500,250.632,638.946,257.500,466.973,90.000,144.720,90.000,331.000,317.705,343.946,17.000,14.213,17.000 +38,0.996,270.270,460.110,236.089,638.368,269.165,467.844,98.130,138.136,98.130,331.350,317.905,346.975,19.516,15.020,19.516 +39,1.023,283.221,459.099,221.447,635.701,279.833,470.564,106.460,131.241,106.460,325.913,318.997,349.824,19.791,16.017,19.791 +40,1.049,302.978,445.079,210.936,632.112,289.559,473.991,114.898,123.188,114.898,289.303,319.208,353.052,18.137,17.385,18.137 +41,1.074,302.978,445.079,210.936,632.112,289.559,473.991,114.898,123.188,114.898,289.303,319.208,353.052,18.137,17.385,18.137 +42,1.099,313.246,460.356,198.155,624.822,300.836,479.384,123.111,116.470,123.111,310.389,318.862,355.824,18.282,15.459,18.282 +43,1.125,315.091,479.669,191.629,604.046,313.489,481.423,132.416,109.537,132.416,340.697,293.217,345.448,18.547,16.903,18.547 +44,1.151,324.899,490.106,178.051,606.113,318.873,494.863,141.710,101.581,141.710,343.572,318.745,358.928,19.292,18.983,19.292 +45,1.176,324.899,490.106,178.051,606.113,318.873,494.863,141.710,101.581,141.710,343.572,318.745,358.928,19.292,18.983,19.292 +46,1.203,332.352,500.458,170.717,592.978,326.623,503.681,150.642,94.485,150.642,346.179,317.847,359.325,18.467,19.841,18.467 +47,1.229,340.773,512.855,166.637,577.596,334.842,514.945,160.585,87.682,160.585,346.354,315.228,358.930,18.144,18.005,18.144 +48,1.256,346.102,528.578,164.381,561.807,340.787,529.453,170.655,81.005,170.655,347.866,313.330,358.638,18.585,19.338,18.585 +49,1.282,348.013,545.397,164.417,544.444,343.295,545.293,1.264,73.972,1.264,348.268,310.713,357.707,17.128,20.198,17.128 +50,1.309,348.013,545.397,164.417,544.444,343.295,545.293,1.264,73.972,1.264,348.268,310.713,357.707,17.128,20.198,17.128 +51,1.333,347.757,563.605,167.953,525.885,343.372,562.643,12.381,66.877,12.381,349.460,308.041,358.441,17.581,19.833,17.581 +52,1.359,343.955,581.390,173.629,508.229,339.224,579.322,23.613,59.162,23.613,350.086,306.297,360.413,17.524,20.094,17.524 +53,1.386,336.838,599.166,182.745,492.166,331.042,595.123,34.902,52.595,34.902,346.933,306.015,361.066,17.966,20.700,17.966 +54,1.412,371.661,664.722,194.667,477.449,319.113,609.409,46.469,46.582,46.469,210.177,302.956,362.766,17.364,16.144,17.364 +55,1.439,371.661,664.722,194.667,477.449,319.113,609.409,46.469,46.582,46.469,210.177,302.956,362.766,17.364,16.144,17.364 +56,1.464,313.213,635.416,209.495,466.154,304.086,620.996,57.670,41.239,57.670,328.719,303.289,362.850,19.167,17.813,19.167 +57,1.490,289.945,639.287,227.439,456.359,286.255,629.216,69.877,34.448,69.877,343.628,303.358,365.080,24.599,19.887,24.599 +58,1.517,272.354,640.331,246.307,450.456,271.192,631.036,82.875,27.605,82.875,345.809,304.015,364.543,28.404,20.101,28.404 +59,1.542,272.354,640.331,246.307,450.456,271.192,631.036,82.875,27.605,82.875,345.809,304.015,364.543,28.404,20.101,28.404 +60,1.567,252.967,640.341,265.334,448.768,253.812,630.525,94.915,20.495,94.915,344.449,305.720,364.153,28.030,19.693,28.030 +61,1.593,231.547,636.150,284.328,452.203,234.366,626.227,105.857,13.753,105.857,341.476,308.258,362.107,21.039,18.673,21.039 +62,1.620,213.279,627.883,301.947,458.493,218.704,617.665,117.965,7.263,117.965,336.107,310.819,359.243,20.961,17.875,20.961 +63,1.645,196.893,617.328,317.518,469.263,205.418,607.098,129.806,0.595,129.806,328.671,313.108,355.304,21.510,14.681,21.510 +64,1.672,196.893,617.328,317.518,469.263,205.418,607.098,129.806,0.595,129.806,328.671,313.108,355.304,21.510,14.681,21.510 +65,1.696,179.245,604.044,330.882,481.721,193.607,592.705,141.710,174.719,141.710,316.432,316.165,353.029,18.052,13.547,18.052 +66,1.722,157.400,594.300,340.432,496.647,186.243,579.878,153.435,168.737,153.435,285.769,319.476,350.265,16.994,13.606,16.994 +67,1.749,104.528,587.349,347.346,512.744,181.590,565.332,164.055,162.915,164.055,187.360,319.450,347.650,16.071,13.717,16.071 +68,1.774,104.528,587.349,347.346,512.744,181.590,565.332,164.055,162.915,164.055,187.360,319.450,347.650,16.071,13.717,16.071 +69,1.799,168.700,551.395,412.011,502.915,211.552,546.874,173.978,157.449,173.978,321.751,186.688,407.930,17.011,13.438,17.011 +70,1.824,173.759,536.528,349.727,546.270,179.675,536.998,4.550,151.229,4.550,328.632,321.876,340.502,17.957,15.517,17.957 +71,1.850,177.692,523.174,346.316,563.334,181.646,524.180,14.278,145.408,14.278,330.321,322.047,338.480,17.670,15.215,17.670 +72,1.876,177.692,523.174,346.316,563.334,181.646,524.180,14.278,145.408,14.278,330.321,322.047,338.480,17.670,15.215,17.670 +73,1.900,182.830,510.504,340.145,579.648,185.981,511.907,24.015,139.579,24.015,329.878,322.147,336.776,17.862,14.981,17.862 +74,1.926,189.365,499.238,332.222,594.322,192.156,501.061,33.147,133.949,33.147,329.867,321.102,336.534,17.873,14.970,17.873 +75,1.953,196.756,489.331,322.592,607.313,199.702,491.966,41.808,128.251,41.808,329.085,322.051,336.989,17.574,15.012,17.574 +76,1.978,205.121,480.750,311.617,618.494,208.141,484.410,50.473,122.833,50.473,329.068,322.348,338.558,18.689,15.911,18.689 +77,2.004,205.121,480.750,311.617,618.494,208.141,484.410,50.473,122.833,50.473,329.068,322.348,338.558,18.689,15.911,18.689 +78,2.028,214.340,473.878,301.500,629.000,217.839,479.616,58.627,116.565,58.627,328.753,322.441,342.195,19.825,16.100,19.825 +79,2.056,224.320,468.003,289.466,634.987,227.206,474.716,66.743,111.286,66.743,329.050,321.596,343.663,19.485,16.373,19.485 +80,2.081,234.484,462.312,278.389,637.756,236.832,470.785,74.511,106.060,74.511,326.422,316.903,344.008,18.809,16.890,18.809 +81,2.107,234.484,462.312,278.389,637.756,236.832,470.785,74.511,106.060,74.511,326.422,316.903,344.008,18.809,16.890,18.809 +82,2.132,244.594,455.853,268.019,630.404,245.725,463.890,81.989,101.310,81.989,319.760,296.528,335.991,17.839,17.454,17.839 +83,2.158,255.000,437.000,256.534,621.505,255.000,457.752,90.000,97.619,90.000,286.000,276.556,327.505,18.000,18.618,18.000 +84,2.185,268.876,450.032,242.314,617.024,268.164,456.297,96.478,94.300,96.478,312.625,269.195,325.235,18.642,16.960,18.642 +85,2.211,278.561,461.147,229.259,613.979,279.387,457.778,103.774,90.988,103.774,334.225,268.219,327.287,21.454,17.239,21.454 +86,2.238,278.561,461.147,229.259,613.979,279.387,457.778,103.774,90.988,103.774,334.225,268.219,327.287,21.454,17.239,21.454 +87,2.263,290.747,466.074,216.221,606.772,292.853,460.952,112.348,86.496,112.348,339.086,262.671,328.011,21.827,18.068,21.827 +88,2.290,300.569,471.078,203.899,606.570,301.826,468.931,120.336,81.573,120.336,341.480,273.533,336.506,20.382,18.099,20.382 +89,2.316,310.978,477.482,196.648,620.732,307.212,482.178,128.724,76.849,128.724,342.486,317.441,354.523,19.019,18.147,19.019 +90,2.342,310.978,477.482,196.648,620.732,307.212,482.178,128.724,76.849,128.724,342.486,317.441,354.523,19.019,18.147,19.019 +91,2.367,321.810,486.250,188.150,611.950,317.433,490.277,137.392,71.565,137.392,343.150,319.390,355.045,20.573,18.025,20.573 +92,2.393,330.658,495.250,180.498,599.196,326.299,498.187,146.041,66.501,146.041,344.199,316.469,354.712,19.602,17.026,19.602 +93,2.420,338.190,505.675,174.137,584.988,333.782,507.719,155.126,61.053,155.126,344.955,313.821,354.673,19.118,17.923,19.118 +94,2.446,344.346,519.437,169.364,569.775,339.932,520.644,164.707,55.698,164.707,345.820,311.148,354.973,18.674,16.998,18.674 +95,2.472,344.346,519.437,169.364,569.775,339.932,520.644,164.707,55.698,164.707,345.820,311.148,354.973,18.674,16.998,18.674 +96,2.496,348.446,533.428,167.171,552.952,343.932,533.857,174.572,50.298,174.572,346.480,309.216,355.549,21.000,17.004,21.000 +97,2.523,350.380,551.904,167.611,535.350,345.366,551.474,4.899,44.732,4.899,346.899,308.289,356.964,17.109,17.354,17.109 +98,2.549,349.123,569.647,169.509,518.481,342.462,567.790,15.576,38.568,15.576,345.853,305.934,359.683,17.497,16.675,17.497 +99,2.575,349.123,569.647,169.509,518.481,342.462,567.790,15.576,38.568,15.576,345.853,305.934,359.683,17.497,16.675,17.497 +100,2.600,354.937,592.617,175.164,502.009,336.425,583.322,26.664,33.412,26.664,319.773,304.816,361.202,16.883,15.357,16.883 +101,2.626,354.562,620.597,184.445,486.145,326.662,599.473,37.131,27.484,37.131,293.596,304.210,363.586,17.107,15.673,17.107 +102,2.653,324.600,623.632,196.884,471.785,314.229,611.502,49.470,21.754,49.470,332.983,303.427,364.901,20.035,15.664,20.035 +103,2.678,304.325,632.046,211.864,460.455,298.526,621.501,61.189,15.843,61.189,341.680,303.021,365.750,20.503,16.887,20.503 +104,2.704,304.325,632.046,211.864,460.455,298.526,621.501,61.189,15.843,61.189,341.680,303.021,365.750,20.503,16.887,20.503 +105,2.729,287.606,638.070,228.868,451.898,284.385,627.314,73.329,9.656,73.329,345.483,303.171,367.939,26.244,20.230,26.244 +106,2.756,268.391,641.387,247.674,447.860,267.468,630.042,85.344,3.774,85.344,343.609,304.252,366.374,26.320,19.984,26.320 +107,2.782,248.468,640.694,266.785,447.602,249.837,629.354,96.882,177.720,96.882,342.104,306.394,364.948,26.292,19.250,26.292 +108,2.807,248.468,640.694,266.785,447.602,249.837,629.354,96.882,177.720,96.882,342.104,306.394,364.948,26.292,19.250,26.292 +109,2.833,229.051,635.195,285.276,451.465,232.579,624.195,107.784,171.707,107.784,338.036,309.848,361.142,20.877,18.234,20.877 +110,2.858,211.290,627.382,303.210,459.827,217.537,616.282,119.371,165.779,119.371,331.255,312.398,356.728,20.981,15.277,20.981 +111,2.885,193.218,619.382,318.038,469.845,204.829,606.064,131.082,160.081,131.082,318.807,315.263,354.144,21.125,15.813,21.125 +112,2.910,193.218,619.382,318.038,469.845,204.829,606.064,131.082,160.081,131.082,318.807,315.263,354.144,21.125,15.813,21.125 +113,2.937,167.569,613.782,330.101,482.652,193.933,593.636,142.615,154.779,142.615,284.801,317.270,351.162,16.776,14.914,16.776 +114,2.962,116.098,616.649,339.473,496.932,186.527,580.026,152.526,150.392,152.526,189.297,317.648,348.062,16.289,14.530,16.289 +115,2.990,171.930,569.429,344.182,511.970,180.936,566.570,162.391,145.038,162.391,325.333,320.649,344.230,18.155,19.502,18.155 +116,3.015,173.312,554.434,347.188,528.808,178.638,553.752,172.694,139.336,172.694,329.966,319.640,340.706,17.727,19.234,17.727 +117,3.041,173.312,554.434,347.188,528.808,178.638,553.752,172.694,139.336,172.694,329.966,319.640,340.706,17.727,19.234,17.727 +118,3.067,174.774,539.780,346.999,545.671,178.352,539.949,2.708,133.739,2.708,330.293,320.444,337.457,16.806,16.296,16.806 +119,3.092,176.744,527.203,344.189,562.714,179.706,527.833,11.999,127.312,11.999,330.226,320.597,336.282,17.927,15.698,17.927 +120,3.120,180.709,514.532,339.486,579.241,183.785,515.728,21.260,120.586,21.260,329.670,321.908,336.269,18.238,16.020,18.238 +121,3.146,186.026,502.814,333.033,594.158,189.741,504.976,30.203,114.337,30.203,328.813,323.183,337.409,18.072,16.275,18.072 +122,3.172,186.026,502.814,333.033,594.158,189.741,504.976,30.203,114.337,30.203,328.813,323.183,337.409,18.072,16.275,18.072 +123,3.196,192.817,492.854,326.136,607.613,197.337,496.470,38.660,107.207,38.660,328.433,324.296,340.011,17.804,16.449,17.804 +124,3.221,200.583,483.922,317.743,618.326,205.469,489.134,46.848,100.587,46.848,327.790,325.209,342.078,18.284,17.069,18.284 +125,3.247,208.473,475.754,310.051,614.503,210.901,479.193,54.782,93.252,54.782,327.027,299.880,335.445,18.646,18.833,18.646 +126,3.273,208.473,475.754,310.051,614.503,210.901,479.193,54.782,93.252,54.782,327.027,299.880,335.445,18.646,18.833,18.646 +127,3.297,217.323,467.260,298.603,608.666,217.680,467.944,62.364,85.851,62.364,322.865,274.584,324.408,19.101,16.940,19.101 +128,3.323,223.533,453.215,285.438,618.653,227.809,464.975,70.017,79.846,70.017,303.212,284.605,328.239,17.600,16.792,17.600 +129,3.350,234.495,442.795,272.170,624.759,238.978,462.564,77.221,72.669,77.221,290.498,289.447,331.040,17.906,17.799,17.906 +130,3.376,234.495,442.795,272.170,624.759,238.978,462.564,77.221,72.669,77.221,290.498,289.447,331.040,17.906,17.799,17.906 +131,3.404,249.441,460.650,267.409,644.540,250.349,470.112,84.519,66.501,84.519,331.508,327.474,350.519,18.109,17.305,18.109 +132,3.429,260.084,462.860,256.310,644.093,259.890,468.974,91.818,60.050,91.818,338.052,326.218,350.287,18.403,16.025,18.403 +133,3.456,271.381,462.586,244.348,642.409,270.381,468.921,98.973,53.717,98.973,338.023,324.606,350.850,20.171,16.371,20.171 +134,3.483,281.928,464.831,232.310,638.502,280.351,470.161,106.482,47.445,106.482,338.990,322.074,350.107,20.460,16.117,20.460 +135,3.508,281.928,464.831,232.310,638.502,280.351,470.161,106.482,47.445,106.482,338.990,322.074,350.107,20.460,16.117,20.460 +136,3.533,292.223,467.877,220.887,633.128,290.199,472.456,113.850,41.540,113.850,339.944,319.883,349.955,20.198,15.613,20.198 +137,3.560,302.571,472.237,209.357,625.568,300.111,476.243,121.557,35.100,121.557,340.076,317.945,349.478,19.699,15.778,19.699 +138,3.586,312.536,478.030,198.208,616.048,309.678,481.497,129.508,28.671,129.508,340.465,315.168,349.453,18.598,16.388,18.598 +139,3.612,321.983,485.529,188.100,605.565,318.492,488.719,137.584,22.132,137.584,340.697,312.538,350.155,17.866,16.226,17.866 +140,3.638,321.983,485.529,188.100,605.565,318.492,488.719,137.584,22.132,137.584,340.697,312.538,350.155,17.866,16.226,17.866 +141,3.662,330.507,494.995,179.120,593.304,326.681,497.574,146.023,15.764,146.023,342.505,309.760,351.734,17.397,16.094,17.397 +142,3.689,338.129,505.271,171.469,579.738,333.129,507.647,154.581,9.547,154.581,342.837,307.926,353.908,18.019,16.666,18.019 +143,3.715,346.738,516.791,166.232,565.119,338.342,519.313,163.278,3.918,163.278,338.492,305.271,356.024,19.056,15.894,19.056 +144,3.740,346.738,516.791,166.232,565.119,338.342,519.313,163.278,3.918,163.278,338.492,305.271,356.024,19.056,15.894,19.056 +145,3.765,371.006,529.165,162.981,551.636,341.349,532.767,173.075,179.197,173.075,298.933,304.110,358.683,16.687,12.961,16.687 +146,3.790,403.605,549.652,162.378,536.147,342.640,547.394,2.121,174.829,2.121,239.095,304.561,361.110,15.915,13.105,15.915 +147,3.816,364.432,567.066,164.026,520.158,340.959,561.818,12.603,170.789,12.603,315.416,304.776,363.521,18.324,14.833,18.324 +148,3.844,350.949,582.933,168.734,503.966,336.501,576.852,22.823,165.559,22.823,334.457,304.163,365.808,18.580,15.852,18.580 +149,3.871,350.949,582.933,168.734,503.966,336.501,576.852,22.823,165.559,22.823,334.457,304.163,365.808,18.580,15.852,18.580 +150,3.896,339.031,598.701,176.190,489.777,328.769,591.879,33.611,159.984,33.611,342.532,305.007,367.177,19.713,14.987,19.713 +151,3.924,326.542,611.443,187.150,476.705,319.211,604.215,44.594,154.645,44.594,346.534,305.511,367.125,17.442,14.627,17.442 +152,3.950,310.467,623.704,201.359,465.772,305.472,616.368,55.746,148.970,55.746,348.403,305.439,366.152,19.736,15.766,19.736 +153,3.976,310.467,623.704,201.359,465.772,305.472,616.368,55.746,148.970,55.746,348.403,305.439,366.152,19.736,15.766,19.736 +154,4.000,293.934,632.645,216.906,456.250,290.738,624.890,67.605,144.063,67.605,351.323,306.720,368.099,21.010,16.043,21.010 +155,4.026,274.337,637.902,234.713,450.975,272.678,630.243,77.775,139.062,77.775,350.810,307.215,366.483,26.893,17.516,26.893 +156,4.053,261.576,639.599,253.156,450.124,261.729,631.750,91.116,133.561,91.116,347.148,308.663,362.849,30.819,17.008,30.819 +157,4.079,239.586,637.914,272.007,452.297,241.237,629.920,101.672,128.351,101.672,344.023,310.353,360.350,22.557,16.839,22.557 +158,4.106,239.586,637.914,272.007,452.297,241.237,629.920,101.672,128.351,101.672,344.023,310.353,360.350,22.557,16.839,22.557 +159,4.131,218.645,639.475,290.072,458.332,225.391,623.973,113.518,122.735,113.518,321.573,311.837,355.385,19.358,15.982,19.358 +160,4.157,190.302,644.542,306.073,467.038,210.139,614.922,123.811,117.431,123.811,281.217,313.217,352.514,16.671,16.927,16.671 +161,4.185,193.358,610.317,319.276,478.190,199.077,604.514,134.586,113.199,134.586,332.393,314.216,348.689,18.606,20.090,18.606 +162,4.212,185.221,594.990,330.250,492.250,189.437,592.076,145.353,108.435,145.353,334.942,315.279,345.192,18.600,19.606,18.600 +163,4.240,185.221,594.990,330.250,492.250,189.437,592.076,145.353,108.435,145.353,334.942,315.279,345.192,18.600,19.606,18.600 +164,4.266,179.283,579.396,338.000,507.500,182.342,577.996,155.410,104.036,155.410,335.026,316.266,341.753,20.159,17.705,20.159 +165,4.292,175.078,564.239,343.222,524.041,178.099,563.470,165.727,99.426,165.727,333.263,317.949,339.496,19.136,17.757,19.136 +166,4.318,173.283,550.159,347.267,540.769,177.513,549.832,175.583,94.086,175.583,331.407,319.258,339.894,18.559,17.883,18.559 +167,4.343,173.283,550.159,347.267,540.769,177.513,549.832,175.583,94.086,175.583,331.407,319.258,339.894,18.559,17.883,18.559 +168,4.368,173.849,535.683,347.000,556.500,178.603,536.111,5.145,90.000,5.145,329.548,321.000,339.095,17.591,18.000,17.591 +169,4.394,176.289,521.881,345.734,572.070,182.176,523.400,14.470,84.806,14.470,328.902,323.665,341.062,17.929,18.107,17.929 +170,4.421,179.981,510.663,342.550,584.308,186.688,513.479,22.768,79.634,22.768,327.708,322.082,342.256,18.280,18.774,18.280 +171,4.447,185.437,499.778,337.028,595.275,192.183,503.858,31.163,75.379,31.163,326.731,319.776,342.500,18.332,18.006,18.332 +172,4.472,185.437,499.778,337.028,595.275,192.183,503.858,31.163,75.379,31.163,326.731,319.776,342.500,18.332,18.006,18.332 +173,4.497,191.572,489.468,330.986,608.030,199.607,496.042,39.289,70.710,39.289,324.429,323.979,345.193,17.731,17.320,17.731 +174,4.528,196.900,478.689,323.147,618.438,207.172,489.658,46.878,67.068,46.878,316.486,326.022,346.542,17.958,17.215,17.958 +175,4.562,198.074,463.657,314.562,626.202,213.275,484.889,54.398,63.997,54.398,295.500,326.560,347.725,17.695,16.967,17.695 +176,4.590,180.899,408.281,304.476,633.095,220.428,480.396,61.271,61.571,61.271,184.130,326.108,348.605,17.843,18.375,17.843 +177,4.618,224.889,464.836,294.485,638.305,229.772,476.211,66.766,59.361,66.766,324.197,327.163,348.955,18.629,18.657,18.629 +178,4.647,235.160,465.811,286.407,640.564,237.326,473.390,74.055,55.516,74.055,332.687,325.959,348.451,18.269,17.418,18.269 +179,4.673,235.160,465.811,286.407,640.564,237.326,473.390,74.055,55.516,74.055,332.687,325.959,348.451,18.269,17.418,18.269 +180,4.698,244.201,464.294,275.798,643.487,245.417,471.741,80.727,52.038,80.727,333.704,325.920,348.795,18.228,16.513,18.228 +181,4.724,253.707,464.105,264.940,644.272,253.983,470.135,87.379,47.596,87.379,336.837,325.640,348.911,17.394,16.720,17.394 +182,4.751,263.626,463.771,253.466,643.331,263.240,469.463,93.882,43.109,93.882,336.854,324.052,348.263,19.092,16.695,19.092 +183,4.777,263.626,463.771,253.466,643.331,263.240,469.463,93.882,43.109,93.882,336.854,324.052,348.263,19.092,16.695,19.092 +184,4.804,274.168,463.938,241.815,640.562,273.174,469.237,100.620,38.243,100.620,337.555,322.218,348.339,20.947,17.219,20.947 +185,4.831,284.109,465.227,230.323,636.258,282.533,470.103,107.911,33.639,107.911,338.071,320.340,348.318,19.175,15.737,19.175 +186,4.857,294.201,468.127,218.689,630.464,292.193,472.428,115.029,28.471,115.029,339.094,318.195,348.587,19.871,16.334,19.871 +187,4.884,304.211,472.190,207.647,623.026,301.727,476.138,122.171,23.344,122.171,339.526,316.314,348.857,20.165,15.966,20.165 +188,4.910,304.211,472.190,207.647,623.026,301.727,476.138,122.171,23.344,122.171,339.526,316.314,348.857,20.165,15.966,20.165 +189,4.935,313.848,477.952,196.539,614.218,310.713,481.724,129.728,17.844,129.728,339.935,314.307,349.746,20.516,15.693,20.516 +190,4.961,322.112,484.764,187.058,603.699,318.576,487.996,137.572,12.426,137.572,340.696,312.156,350.276,18.780,15.907,18.780 +191,4.987,330.299,493.102,178.140,592.178,325.960,496.101,145.349,6.852,145.349,341.911,309.699,352.458,19.114,16.231,19.114 +192,5.013,338.470,501.924,170.059,579.739,331.559,505.410,153.236,1.037,153.236,339.857,306.203,355.339,19.620,15.672,19.620 +193,5.040,338.470,501.924,170.059,579.739,331.559,505.410,153.236,1.037,153.236,339.857,306.203,355.339,19.620,15.672,19.620 +194,5.064,349.990,512.656,140.305,570.149,325.034,520.481,162.591,174.464,162.591,329.948,257.700,382.255,17.046,14.448,17.046 +195,5.090,416.124,518.609,161.837,553.123,340.382,530.511,171.069,169.472,171.069,206.438,307.514,359.781,16.173,13.756,16.173 +196,5.117,371.023,544.549,160.420,539.036,341.701,544.076,0.924,163.557,0.924,304.025,307.671,362.677,17.611,13.294,17.611 +197,5.142,371.023,544.549,160.420,539.036,341.701,544.076,0.924,163.557,0.924,304.025,307.671,362.677,17.611,13.294,17.611 +198,5.167,357.338,561.621,161.629,524.088,340.797,558.643,10.204,157.880,10.204,331.296,306.776,364.911,17.164,16.272,17.164 +199,5.193,348.893,577.944,165.891,509.527,337.471,573.696,20.400,152.042,20.400,341.999,307.297,366.372,17.351,16.008,17.351 +200,5.218,339.792,593.510,173.798,496.985,331.982,588.854,30.801,145.330,30.801,347.642,306.427,365.828,18.335,17.333,18.335 +201,5.244,339.792,593.510,173.798,496.985,331.982,588.854,30.801,145.330,30.801,347.642,306.427,365.828,18.335,17.333,18.335 +202,5.271,328.698,608.341,184.267,484.150,322.960,603.271,41.464,139.247,41.464,350.303,305.630,365.617,19.225,17.081,19.225 +203,5.298,315.331,619.682,197.546,472.653,311.698,614.997,52.202,133.394,52.202,353.018,305.628,364.876,18.644,17.043,18.644 +204,5.324,300.079,628.961,212.393,463.537,297.753,624.257,63.687,127.381,63.687,353.315,306.059,363.810,19.484,18.187,19.484 +205,5.350,280.987,636.686,228.959,456.888,279.426,631.403,73.540,121.329,73.540,352.308,306.769,363.325,25.959,18.087,25.959 +206,5.377,267.431,639.636,246.541,453.938,267.022,633.420,86.239,114.687,86.239,348.417,306.616,360.877,25.209,18.077,25.209 +207,5.403,267.431,639.636,246.541,453.938,267.022,633.420,86.239,114.687,86.239,348.417,306.616,360.877,25.209,18.077,25.209 +208,5.428,248.032,642.388,263.950,454.707,249.084,633.270,96.582,109.926,96.582,339.822,305.521,358.180,25.523,17.216,25.523 +209,5.454,208.516,701.753,281.365,456.131,230.815,627.255,106.663,104.931,106.663,201.338,309.002,356.866,17.805,17.908,17.805 +210,5.480,212.277,629.759,297.053,463.385,217.240,620.362,117.844,100.620,117.844,330.906,310.342,352.161,19.531,20.149,19.531 +211,5.505,212.277,629.759,297.053,463.385,217.240,620.362,117.844,100.620,117.844,330.906,310.342,352.161,19.531,20.149,19.531 +212,5.532,201.707,615.231,311.224,472.060,204.882,611.225,128.401,94.708,128.401,340.012,312.343,350.235,21.777,19.686,21.777 +213,5.559,190.876,601.355,323.437,484.467,193.679,598.901,138.793,87.990,138.793,338.566,313.474,346.018,20.383,19.251,20.383 +214,5.586,182.338,587.397,334.424,498.793,185.481,585.511,149.036,81.724,149.036,337.338,314.545,344.668,19.551,19.540,19.551 +215,5.611,176.397,573.622,342.451,514.246,180.501,572.040,158.914,75.046,158.914,335.001,317.120,343.797,19.088,18.591,19.088 +216,5.637,176.397,573.622,342.451,514.246,180.501,572.040,158.914,75.046,158.914,335.001,317.120,343.797,19.088,18.591,19.088 +217,5.662,173.033,559.605,348.621,530.052,178.779,558.429,168.434,68.199,168.434,332.435,319.582,344.165,18.414,17.455,18.414 +218,5.688,172.437,546.377,352.087,545.185,179.888,546.088,177.778,61.783,177.778,329.295,322.655,344.209,17.870,16.957,17.870 +219,5.713,173.765,533.704,353.579,559.760,182.539,534.716,6.582,55.561,6.582,327.901,324.307,345.566,18.111,17.013,18.111 +220,5.739,173.765,533.704,353.579,559.760,182.539,534.716,6.582,55.561,6.582,327.901,324.307,345.566,18.111,17.013,18.111 +221,5.765,175.057,520.802,352.021,573.870,186.210,523.988,15.945,49.814,15.945,323.072,325.613,346.271,18.544,16.132,18.544 +222,5.791,172.003,507.193,348.824,586.621,190.821,515.371,23.489,43.836,23.489,305.583,326.153,346.619,17.863,15.221,17.863 +223,5.818,150.624,478.853,343.949,597.647,196.264,506.851,31.527,38.016,31.527,239.638,326.611,346.725,16.174,15.319,16.174 +224,5.845,186.649,486.669,337.502,608.094,202.315,499.350,38.991,31.986,38.991,306.679,325.737,346.990,16.951,15.955,16.951 +225,5.873,186.649,486.669,337.502,608.094,202.315,499.350,38.991,31.986,38.991,306.679,325.737,346.990,16.951,15.955,16.951 +226,5.897,201.689,485.718,333.852,616.397,209.107,493.445,46.169,27.061,46.169,328.751,316.619,350.172,17.429,16.194,17.429 +227,5.924,210.224,480.571,320.595,621.929,214.082,485.744,53.282,21.393,53.282,332.785,323.505,345.692,18.330,15.426,18.330 +228,5.951,218.268,474.786,309.200,626.799,220.879,479.315,60.043,15.920,60.043,333.312,324.994,343.766,19.372,15.470,19.372 +229,5.977,218.268,474.786,309.200,626.799,220.879,479.315,60.043,15.920,60.043,333.312,324.994,343.766,19.372,15.470,19.372 +230,6.004,226.261,469.965,297.746,630.913,228.121,474.281,66.682,10.339,66.682,333.399,323.964,342.798,19.950,15.634,19.950 +231,6.031,233.916,466.283,286.304,633.836,235.167,470.414,73.148,4.748,73.148,333.827,321.633,342.459,18.728,15.078,18.728 +232,6.057,241.942,463.603,274.428,635.766,242.701,467.700,79.501,179.212,79.501,333.734,321.080,342.066,17.987,14.772,17.987 +233,6.083,250.612,461.563,262.463,636.671,250.941,466.178,85.914,173.660,85.914,332.510,318.153,341.762,17.527,14.687,17.527 +234,6.109,250.612,461.563,262.463,636.671,250.941,466.178,85.914,173.660,85.914,332.510,318.153,341.762,17.527,14.687,17.527 +235,6.136,260.036,460.467,250.332,636.403,259.872,465.208,91.975,168.217,91.975,333.354,317.924,342.843,17.679,14.985,17.679 +236,6.163,270.090,459.870,238.569,635.370,269.290,465.471,98.130,162.824,98.130,333.754,316.881,345.071,19.940,14.800,19.940 +237,6.189,279.838,461.616,227.189,633.111,278.345,467.280,104.767,157.580,104.767,335.069,316.077,346.784,20.051,14.881,20.051 +238,6.215,289.297,463.779,216.844,629.797,286.803,470.210,111.201,152.663,111.201,334.376,314.828,348.171,19.612,14.522,19.612 +239,6.241,289.297,463.779,216.844,629.797,286.803,470.210,111.201,152.663,111.201,334.376,314.828,348.171,19.612,14.522,19.612 +240,6.266,299.705,466.420,206.295,625.270,295.622,474.197,117.699,148.015,117.699,332.998,314.184,350.565,20.497,14.597,20.497 +241,6.293,309.572,468.597,196.511,619.515,302.725,478.626,124.323,144.154,124.323,328.205,314.589,352.491,18.494,15.818,18.494 +242,6.320,325.222,466.745,188.593,613.261,309.924,484.293,131.082,141.036,131.082,307.327,314.824,353.886,17.163,14.246,17.163 +243,6.345,375.581,438.333,180.643,605.766,317.135,491.331,137.799,138.541,137.799,198.168,312.505,355.964,16.417,13.605,16.417 +244,6.371,375.581,438.333,180.643,605.766,317.135,491.331,137.799,138.541,137.799,198.168,312.505,355.964,16.417,13.605,16.417 +245,6.396,351.587,478.998,175.112,597.594,323.825,498.594,144.782,135.370,144.782,289.207,311.887,357.170,16.724,14.197,16.724 +246,6.423,345.309,498.234,167.814,585.894,329.299,506.645,152.285,133.610,152.285,323.459,311.344,359.630,18.546,14.862,18.546 +247,6.449,345.800,511.619,162.992,574.410,334.028,515.796,160.463,129.806,160.463,336.599,311.258,361.581,20.733,15.620,20.733 +248,6.474,345.800,511.619,162.992,574.410,334.028,515.796,160.463,129.806,160.463,336.599,311.258,361.581,20.733,15.620,20.733 +249,6.499,347.745,525.598,159.637,560.883,338.128,527.459,169.046,126.483,169.046,343.591,310.236,363.181,19.636,16.898,19.636 +250,6.525,348.482,540.967,158.114,546.823,340.102,541.251,178.059,122.735,178.059,347.377,310.215,364.146,17.854,18.266,17.854 +251,6.551,348.549,555.631,160.044,531.820,341.187,554.661,7.506,118.863,7.506,350.297,308.688,365.148,16.871,19.888,16.871 +252,6.576,348.549,555.631,160.044,531.820,341.187,554.661,7.506,118.863,7.506,350.297,308.688,365.148,16.871,19.888,16.871 +253,6.601,346.052,571.331,165.500,519.000,340.207,569.524,17.184,113.199,17.184,351.432,310.277,363.669,17.868,17.726,17.868 +254,6.628,340.278,585.908,171.991,504.171,335.569,583.492,27.155,109.220,27.155,352.916,309.060,363.500,18.229,18.184,18.229 +255,6.654,331.351,600.507,180.989,489.926,327.536,597.598,37.330,104.859,37.330,354.045,308.294,363.640,18.855,18.601,18.855 +256,6.680,319.100,613.761,192.711,477.499,316.198,610.540,47.980,100.437,47.980,354.325,307.148,362.997,20.604,18.246,20.604 +257,6.707,319.100,613.761,192.711,477.499,316.198,610.540,47.980,100.437,47.980,354.325,307.148,362.997,20.604,18.246,20.604 +258,6.731,305.625,624.752,206.820,466.997,303.135,620.667,58.637,96.566,58.637,353.118,307.230,362.688,20.339,18.053,20.339 +259,6.757,291.175,634.121,221.844,459.163,288.952,628.141,69.602,92.148,69.602,350.783,306.497,363.543,21.534,18.137,21.534 +260,6.784,271.616,645.315,239.710,454.947,269.293,633.154,79.186,88.620,79.186,336.423,306.321,361.186,27.933,18.645,27.933 +261,6.810,259.090,667.793,257.042,458.449,260.062,635.970,91.749,84.644,91.749,291.017,297.352,354.692,28.338,17.673,28.338 +262,6.837,259.090,667.793,257.042,458.449,260.062,635.970,91.749,84.644,91.749,291.017,297.352,354.692,28.338,17.673,28.338 +263,6.861,239.060,640.953,274.662,455.918,241.158,631.421,102.411,80.969,102.411,337.684,307.720,357.205,24.416,18.863,24.416 +264,6.887,224.117,630.896,291.477,460.858,226.407,625.320,112.332,76.781,112.332,341.646,309.489,353.703,21.627,19.496,21.627 +265,6.913,209.599,620.636,306.947,469.544,211.987,616.924,122.747,72.518,122.747,341.818,310.762,350.646,19.662,19.685,19.662 +266,6.939,209.599,620.636,306.947,469.544,211.987,616.924,122.747,72.518,122.747,341.818,310.762,350.646,19.662,19.685,19.662 +267,6.963,197.612,609.378,320.545,480.180,200.260,606.546,133.086,68.459,133.086,341.155,311.994,348.910,19.287,19.827,19.287 +268,6.990,188.019,596.866,332.600,493.200,191.698,594.122,143.276,63.435,143.276,337.391,313.049,346.569,18.588,17.889,18.588 +269,7.016,180.874,583.690,341.730,507.281,185.653,581.248,152.932,59.676,152.932,334.546,316.366,345.280,19.096,17.850,19.096 +270,7.041,180.874,583.690,341.730,507.281,185.653,581.248,152.932,59.676,152.932,334.546,316.366,345.280,19.096,17.850,19.096 +271,7.068,176.082,569.671,348.806,521.446,182.444,567.671,162.546,55.491,162.546,331.799,319.007,345.136,19.133,17.717,19.133 +272,7.094,173.737,555.724,353.035,535.787,181.453,554.581,171.573,51.687,171.573,329.368,321.100,344.968,18.795,17.194,18.795 +273,7.121,172.513,542.934,355.420,549.319,182.711,543.057,0.690,47.442,0.690,325.145,323.668,345.543,18.095,17.009,18.095 +274,7.147,171.767,529.367,355.093,562.774,184.695,531.481,9.286,43.798,9.286,320.231,325.316,346.430,17.205,16.334,17.205 +275,7.173,171.767,529.367,355.093,562.774,184.695,531.481,9.286,43.798,9.286,320.231,325.316,346.430,17.205,16.334,17.205 +276,7.197,169.071,515.645,352.610,575.047,187.520,521.327,17.121,40.707,17.121,308.572,326.368,347.179,18.307,15.614,18.307 +277,7.224,162.419,499.483,348.211,586.311,190.959,512.905,25.189,38.022,25.189,284.006,326.954,347.083,16.565,15.315,16.565 +278,7.251,130.614,463.611,342.882,596.279,195.572,504.129,31.954,35.849,31.954,194.400,327.469,347.517,16.852,15.324,16.852 +279,7.277,179.889,481.017,335.786,605.581,200.279,497.307,38.622,33.822,38.622,294.705,327.548,346.902,16.904,15.062,16.904 +280,7.305,179.889,481.017,335.786,605.581,200.279,497.307,38.622,33.822,38.622,294.705,327.548,346.902,16.904,15.062,16.904 +281,7.331,198.942,484.539,329.097,612.406,205.552,491.190,45.178,31.608,45.178,327.378,327.757,346.131,16.984,17.754,16.984 +282,7.358,206.165,479.562,321.229,619.422,211.079,485.739,51.495,28.657,51.495,330.596,327.218,346.383,18.038,18.254,18.038 +283,7.385,214.072,475.328,312.174,625.336,217.428,480.704,58.023,24.995,58.023,333.048,326.588,345.723,19.168,17.659,19.168 +284,7.411,214.072,475.328,312.174,625.336,217.428,480.704,58.023,24.995,58.023,333.048,326.588,345.723,19.168,17.659,19.168 +285,7.435,222.547,471.210,302.742,630.410,224.966,476.158,63.947,20.785,63.947,334.458,325.379,345.474,20.164,17.177,20.164 +286,7.460,230.231,468.640,292.743,634.200,231.848,473.108,70.115,16.121,70.115,334.894,324.594,344.398,19.888,16.938,19.888 +287,7.488,238.105,465.853,282.934,636.519,239.286,470.556,75.901,11.776,75.901,333.493,322.819,343.192,18.978,15.641,18.978 +288,7.514,246.136,464.769,272.463,638.132,246.735,468.921,81.790,6.828,81.790,333.911,320.738,342.301,17.530,15.337,17.530 +289,7.539,246.136,464.769,272.463,638.132,246.735,468.921,81.790,6.828,81.790,333.911,320.738,342.301,17.530,15.337,17.530 +290,7.564,254.073,463.078,261.627,638.526,254.261,467.725,87.684,1.824,87.684,332.618,319.316,341.919,17.471,15.107,17.471 +291,7.591,262.962,462.384,250.234,638.142,262.698,467.019,93.257,176.508,93.257,333.826,317.691,343.110,18.166,15.233,18.166 +292,7.617,273.462,462.230,239.679,636.244,272.628,467.324,99.297,171.125,99.297,333.725,316.812,344.048,21.244,15.641,21.244 +293,7.643,273.462,462.230,239.679,636.244,272.628,467.324,99.297,171.125,99.297,333.725,316.812,344.048,21.244,15.641,21.244 +294,7.668,282.882,463.567,228.902,633.700,281.441,468.809,105.371,165.681,105.371,334.964,315.785,345.837,22.707,15.124,22.707 +295,7.694,290.217,464.675,218.289,629.724,287.907,470.555,111.448,160.284,111.448,334.572,315.953,347.207,20.044,15.599,20.044 +296,7.720,299.270,467.423,207.753,625.363,295.757,474.162,117.530,154.689,117.530,334.315,314.978,349.514,20.632,14.399,20.632 +297,7.746,307.808,470.233,197.767,619.600,302.590,477.964,124.015,149.135,124.015,333.425,315.216,352.080,18.983,14.492,18.983 +298,7.773,307.808,470.233,197.767,619.600,302.590,477.964,124.015,149.135,124.015,333.425,315.216,352.080,18.983,14.492,18.983 +299,7.797,320.551,469.617,188.869,612.645,309.277,482.760,130.622,143.576,130.622,319.324,315.795,353.957,17.589,14.328,17.589 +300,7.823,374.421,436.073,180.017,605.789,316.068,490.156,137.175,138.112,137.175,197.650,314.567,356.774,17.066,14.205,17.066 +301,7.849,342.951,481.828,173.149,597.176,321.947,496.811,144.498,132.762,144.498,307.241,314.323,358.841,17.216,14.407,17.216 +302,7.875,342.951,481.828,173.149,597.176,321.947,496.811,144.498,132.762,144.498,307.241,314.323,358.841,17.216,14.407,17.216 +303,7.900,339.590,498.900,168.355,587.893,328.236,505.054,151.540,126.376,151.540,334.241,314.564,360.072,20.073,15.699,20.073 +304,7.926,341.935,511.669,163.299,577.017,333.576,514.814,159.379,120.588,159.379,344.688,315.217,362.549,19.413,18.376,19.413 +305,7.955,344.719,522.936,160.248,565.192,337.184,524.587,167.640,114.742,167.640,347.625,314.155,363.053,21.183,20.165,21.183 +306,7.988,347.921,538.204,159.496,552.470,340.712,538.645,176.504,108.925,176.504,348.999,313.108,363.444,17.427,21.568,17.427 +307,8.014,348.640,552.515,161.605,539.068,342.145,551.903,5.386,102.836,5.386,348.847,311.646,361.895,17.418,20.191,17.418 +308,8.040,348.640,552.515,161.605,539.068,342.145,551.903,5.386,102.836,5.386,348.847,311.646,361.895,17.418,20.191,17.418 +309,8.064,347.407,566.862,165.631,524.937,342.201,565.523,14.421,96.857,14.421,351.480,309.580,362.230,17.239,19.750,17.239 +310,8.093,342.279,582.227,172.091,510.514,338.577,580.569,24.124,91.377,24.124,353.046,307.368,361.157,18.757,18.480,18.757 +311,8.121,335.305,597.532,180.483,496.293,331.755,595.141,33.959,85.236,33.959,352.815,306.604,361.375,19.060,18.851,19.060 +312,8.147,325.999,611.082,191.179,483.320,322.517,607.735,43.870,79.531,43.870,352.154,306.090,361.813,19.548,19.133,19.548 +313,8.173,325.999,611.082,191.179,483.320,322.517,607.735,43.870,79.531,43.870,352.154,306.090,361.813,19.548,19.133,19.548 +314,8.197,314.365,623.179,203.528,472.349,310.655,618.032,54.215,74.055,54.215,348.957,305.078,361.645,19.786,19.780,19.786 +315,8.224,306.295,644.598,217.258,463.857,297.360,625.886,64.477,69.910,64.477,319.989,304.596,361.461,18.894,17.879,18.894 +316,8.249,284.682,653.900,233.074,457.966,278.322,632.912,73.142,65.508,73.142,317.239,303.401,361.099,25.376,18.059,25.376 +317,8.275,284.682,653.900,233.074,457.966,278.322,632.912,73.142,65.508,73.142,317.239,303.401,361.099,25.376,18.059,25.376 +318,8.299,268.599,642.803,250.240,453.650,267.885,633.381,85.668,60.018,85.668,342.201,304.997,361.100,24.460,20.155,24.460 +319,8.325,249.964,639.013,267.329,452.838,250.671,632.178,95.906,54.425,95.906,346.461,305.848,360.205,24.490,20.910,24.490 +320,8.352,234.991,634.409,285.312,454.976,236.813,627.956,105.770,48.094,105.770,345.888,307.200,359.300,23.747,21.335,23.747 +321,8.377,234.991,634.409,285.312,454.976,236.813,627.956,105.770,48.094,105.770,345.888,307.200,359.300,23.747,21.335,23.747 +322,8.402,217.829,626.144,300.973,460.436,220.884,619.922,116.147,42.460,116.147,343.056,308.198,356.917,20.026,20.961,20.026 +323,8.427,204.140,617.174,315.821,468.068,209.043,610.498,126.295,36.822,126.295,339.441,311.404,356.006,20.317,21.127,20.317 +324,8.454,192.136,606.669,327.131,480.462,198.465,600.651,136.439,31.293,136.439,334.658,314.162,352.124,20.240,15.432,20.240 +325,8.480,182.190,594.542,337.989,491.951,191.051,588.559,145.971,25.775,145.971,330.295,316.745,351.678,19.847,16.815,19.847 +326,8.507,182.190,594.542,337.989,491.951,191.051,588.559,145.971,25.775,145.971,330.295,316.745,351.678,19.847,16.815,19.847 +327,8.531,173.190,582.325,346.056,504.656,186.066,576.412,155.334,20.381,155.334,322.336,319.876,350.675,20.289,16.138,20.289 +328,8.557,164.398,568.644,351.592,518.386,182.842,563.353,163.993,15.642,163.993,310.838,321.977,349.214,20.462,14.136,20.462 +329,8.583,150.105,555.777,354.730,531.785,182.256,552.367,173.946,10.733,173.946,282.702,322.628,347.365,16.303,14.449,16.303 +330,8.609,150.105,555.777,354.730,531.785,182.256,552.367,173.946,10.733,173.946,282.702,322.628,347.365,16.303,14.449,16.303 +331,8.633,103.568,538.267,355.226,545.311,182.507,541.363,2.246,5.898,2.246,187.483,323.892,345.483,15.929,13.330,15.929 +332,8.659,167.522,527.737,375.590,558.627,194.339,532.422,9.908,1.174,9.908,311.665,279.105,366.112,16.923,13.235,16.923 +333,8.685,178.196,518.009,350.264,569.777,186.102,520.542,17.765,176.367,17.765,326.108,323.935,342.712,16.874,14.701,16.874 +334,8.711,184.289,509.001,345.327,581.418,189.533,511.484,25.333,171.639,25.333,329.866,323.869,341.470,17.697,14.237,17.697 +335,8.738,184.289,509.001,345.327,581.418,189.533,511.484,25.333,171.639,25.333,329.866,323.869,341.470,17.697,14.237,17.697 +336,8.763,189.265,500.658,338.905,591.429,193.407,503.287,32.400,166.978,32.400,330.344,323.123,340.155,18.267,14.947,18.267 +337,8.790,195.157,493.035,331.155,600.767,198.308,495.600,39.144,162.374,39.144,330.714,322.868,338.840,18.036,14.860,18.036 +338,8.816,200.936,486.526,322.943,608.970,203.410,489.038,45.431,157.759,45.431,331.597,322.006,338.649,17.587,14.781,17.587 +339,8.842,200.936,486.526,322.943,608.970,203.410,489.038,45.431,157.759,45.431,331.597,322.006,338.649,17.587,14.781,17.587 +340,8.866,207.094,480.294,313.473,616.475,209.348,483.150,51.720,153.273,51.720,331.054,321.549,338.331,18.420,14.829,18.420 +341,8.893,213.521,475.302,304.211,622.553,215.481,478.409,57.745,148.748,57.745,331.163,320.881,338.509,18.277,14.830,18.277 +342,8.920,220.600,470.200,294.832,627.780,222.539,474.078,63.435,144.355,63.435,330.938,321.076,339.610,18.783,14.631,18.783 +343,8.946,228.289,466.511,285.072,632.397,230.019,471.066,69.206,140.125,69.206,330.989,320.987,340.734,19.821,14.793,19.821 +344,8.974,228.289,466.511,285.072,632.397,230.019,471.066,69.206,140.125,69.206,330.989,320.987,340.734,19.821,14.793,19.821 +345,8.998,235.354,463.631,276.088,635.531,236.820,469.008,74.745,135.845,74.745,330.826,320.399,341.974,18.944,14.282,18.944 +346,9.024,242.763,461.691,266.313,638.086,243.865,467.981,80.064,131.934,80.064,330.083,320.655,342.854,18.607,14.727,18.607 +347,9.050,250.460,460.179,257.719,639.216,251.029,467.189,85.365,128.022,85.365,329.944,318.904,344.011,17.591,14.280,17.591 +348,9.076,250.460,460.179,257.719,639.216,251.029,467.189,85.365,128.022,85.365,329.944,318.904,344.011,17.591,14.280,17.591 +349,9.101,258.367,458.528,248.791,639.801,258.279,467.429,90.564,124.422,90.564,327.112,319.005,344.914,17.285,14.329,17.285 +350,9.127,266.408,457.644,239.668,639.751,265.343,468.030,95.856,121.701,95.856,326.008,318.974,346.888,17.421,14.989,17.421 +351,9.155,275.052,455.494,230.731,638.558,272.460,468.878,100.961,119.775,100.961,321.772,319.018,349.037,17.613,16.371,17.613 +352,9.180,285.270,449.730,222.675,636.916,279.224,470.721,106.066,118.171,106.066,307.017,319.001,350.707,17.897,16.937,17.897 +353,9.207,285.270,449.730,222.675,636.916,279.224,470.721,106.066,118.171,106.066,307.017,319.001,350.707,17.897,16.937,17.897 +354,9.232,302.896,428.616,215.055,634.194,285.907,472.706,111.073,117.423,111.073,257.825,318.901,352.326,17.610,15.617,17.610 +355,9.258,327.704,404.384,207.800,630.900,292.785,475.619,116.114,116.565,116.114,195.007,317.522,353.673,18.152,16.547,18.152 +356,9.284,311.852,458.577,199.378,626.208,299.403,478.957,121.418,116.229,121.418,307.845,317.529,355.607,18.661,15.276,18.661 +357,9.311,311.852,458.577,199.378,626.208,299.403,478.957,121.418,116.229,121.418,307.845,317.529,355.607,18.661,15.276,18.661 +358,9.336,314.276,470.569,191.310,620.476,305.056,482.795,127.020,115.540,127.020,326.203,317.200,356.828,18.639,16.161,18.639 +359,9.362,319.672,479.714,189.441,609.266,314.193,485.482,133.531,112.681,133.531,335.421,303.696,351.333,18.415,16.250,18.415 +360,9.389,324.711,487.560,187.958,587.286,325.435,486.953,139.999,110.395,139.999,341.501,273.539,339.612,17.805,17.184,17.805 +361,9.415,330.683,496.243,180.298,577.264,331.495,495.708,146.611,108.299,146.611,344.193,272.269,342.248,19.223,17.912,19.223 +362,9.440,330.683,496.243,180.298,577.264,331.495,495.708,146.611,108.299,146.611,344.193,272.269,342.248,19.223,17.912,19.223 +363,9.465,336.128,503.769,174.509,566.044,336.339,503.663,153.333,105.154,153.333,345.696,269.962,345.226,20.546,18.098,20.546 +364,9.491,341.108,514.424,163.512,574.947,334.648,516.661,160.907,102.529,160.907,347.900,312.922,361.574,19.772,20.283,19.772 +365,9.517,345.287,525.809,161.500,562.686,338.902,527.043,169.063,98.915,169.063,348.879,310.827,361.885,19.068,20.533,19.068 +366,9.542,345.287,525.809,161.500,562.686,338.902,527.043,169.063,98.915,169.063,348.879,310.827,361.885,19.068,20.533,19.068 +367,9.566,348.462,539.595,163.055,550.838,342.524,539.844,177.599,94.764,177.599,347.659,312.417,359.545,17.375,18.353,17.375 +368,9.593,348.455,552.910,164.127,537.569,343.490,552.370,6.212,91.848,6.212,349.832,311.225,359.822,17.333,17.765,17.333 +369,9.619,346.888,567.909,167.544,523.394,342.454,566.698,15.275,88.668,15.275,351.087,309.149,360.280,17.364,17.484,17.364 +370,9.645,342.322,583.071,173.228,509.198,338.476,581.309,24.615,85.914,24.615,352.073,308.215,360.534,18.675,19.237,18.675 +371,9.671,342.322,583.071,173.228,509.198,338.476,581.309,24.615,85.914,24.615,352.073,308.215,360.534,18.675,19.237,18.675 +372,9.694,335.159,596.976,181.153,495.427,331.777,594.681,34.166,82.983,34.166,352.564,306.976,360.738,18.735,19.346,18.735 +373,9.721,325.745,610.364,191.386,482.898,322.463,607.208,43.883,79.913,43.883,352.183,306.506,361.290,18.822,19.407,18.822 +374,9.748,313.730,622.516,202.029,472.118,310.085,617.507,53.952,75.964,53.952,349.887,306.323,362.276,19.347,18.918,19.347 +375,9.774,313.730,622.516,202.029,472.118,310.085,617.507,53.952,75.964,53.952,349.887,306.323,362.276,19.347,18.918,19.347 +376,9.798,301.722,636.113,217.543,463.046,296.777,625.801,64.378,73.610,64.378,339.155,305.699,362.028,18.484,20.090,18.484 +377,9.824,293.020,683.796,231.743,457.448,277.565,632.677,73.179,70.401,73.179,255.175,305.657,361.984,25.756,17.999,25.756 +378,9.851,268.731,645.830,248.727,454.118,267.800,633.602,85.647,66.666,85.647,336.300,306.467,360.828,24.386,19.030,24.386 +379,9.876,268.731,645.830,248.727,454.118,267.800,633.602,85.647,66.666,85.647,336.300,306.467,360.828,24.386,19.030,24.386 +380,9.901,249.778,640.155,265.707,453.650,250.495,632.725,95.517,63.646,95.517,344.488,306.800,359.416,24.946,19.812,24.946 +381,9.927,234.246,634.812,282.808,456.029,235.875,628.921,105.455,59.744,105.455,346.070,307.937,358.295,21.295,21.379,21.295 +382,9.952,219.453,626.626,298.940,461.363,221.852,621.603,115.523,55.886,115.523,344.501,309.001,355.634,20.853,21.713,20.853 +383,9.978,206.154,617.112,311.979,470.896,208.914,613.251,125.559,52.804,125.559,341.999,310.955,351.490,20.255,18.044,20.255 +384,10.005,206.154,617.112,311.979,470.896,208.914,613.251,125.559,52.804,125.559,341.999,310.955,351.490,20.255,18.044,20.255 +385,10.030,194.748,606.268,324.505,481.217,198.341,602.698,135.174,49.554,135.174,340.110,312.927,350.241,19.300,17.703,19.300 +386,10.057,186.026,595.036,335.368,493.105,191.304,591.307,144.758,46.236,144.758,335.726,314.971,348.652,20.454,17.394,20.454 +387,10.083,178.433,581.385,344.161,505.240,185.696,577.834,153.942,42.647,153.942,332.322,318.007,348.492,19.823,16.859,19.823 +388,10.109,178.433,581.385,344.161,505.240,185.696,577.834,153.942,42.647,153.942,332.322,318.007,348.492,19.823,16.859,19.823 +389,10.133,173.479,568.337,350.583,518.673,182.701,565.450,162.618,39.207,162.618,329.054,320.631,348.379,19.684,16.619,19.684 +390,10.159,170.621,555.934,354.280,532.362,181.786,554.284,171.591,36.003,171.591,325.119,322.612,347.692,18.357,16.133,18.357 +391,10.186,167.000,543.500,355.928,545.581,182.464,543.500,0.000,33.203,0.000,316.000,323.971,346.928,17.000,15.237,17.000 +392,10.212,163.053,529.071,355.805,557.924,184.103,532.034,8.013,30.401,8.013,304.752,325.505,347.268,20.084,15.700,20.084 +393,10.239,163.053,529.071,355.805,557.924,184.103,532.034,8.013,30.401,8.013,304.752,325.505,347.268,20.084,15.700,20.084 +394,10.264,152.345,515.908,353.670,569.399,185.870,525.069,15.283,28.301,15.283,277.590,326.113,347.100,16.388,15.781,16.388 +395,10.291,121.379,489.552,350.462,580.105,189.183,516.673,21.801,26.914,21.801,200.551,326.473,346.604,16.341,15.581,16.341 +396,10.318,135.020,478.719,345.981,590.469,192.820,509.495,28.034,25.787,28.034,215.532,326.932,346.497,16.312,14.457,16.312 +397,10.343,135.020,478.719,345.981,590.469,192.820,509.495,28.034,25.787,28.034,215.532,326.932,346.497,16.312,14.457,16.312 +398,10.368,186.058,495.393,340.687,598.262,196.704,502.598,34.089,24.294,34.089,320.008,327.564,345.720,16.747,16.963,16.747 +399,10.394,194.530,490.740,335.079,605.459,201.080,496.273,40.188,22.412,40.188,328.498,326.847,345.646,17.926,18.206,17.926 +400,10.421,200.840,486.066,328.229,612.667,205.747,491.153,46.029,19.690,46.029,330.847,326.449,344.983,18.644,17.936,18.644 +401,10.447,207.631,481.377,320.642,618.660,211.121,485.781,51.601,16.562,51.601,333.092,325.954,344.330,18.605,16.536,18.605 +402,10.473,207.631,481.377,320.642,618.660,211.121,485.781,51.601,16.562,51.601,333.092,325.954,344.330,18.605,16.536,18.605 +403,10.498,213.966,476.639,313.034,623.349,216.773,480.979,57.107,12.804,57.107,333.308,324.764,343.645,18.364,16.267,18.364 +404,10.524,220.967,472.561,304.588,627.598,223.105,476.659,62.447,8.567,62.447,333.780,324.027,343.024,19.543,16.100,19.543 +405,10.551,227.887,468.865,295.798,630.922,229.612,473.078,67.732,4.176,67.732,333.199,322.187,342.304,20.507,15.597,20.507 +406,10.577,227.887,468.865,295.798,630.922,229.612,473.078,67.732,4.176,67.732,333.199,322.187,342.304,20.507,15.597,20.507 +407,10.603,234.322,466.481,286.487,633.534,235.557,470.479,72.845,179.634,72.845,333.277,321.064,341.646,19.243,14.958,19.243 +408,10.629,240.700,464.281,277.540,635.389,241.590,468.409,77.824,174.855,77.824,333.163,319.678,341.610,18.252,15.513,18.252 +409,10.656,247.248,462.532,268.154,636.708,247.832,467.063,82.655,169.992,82.655,332.565,319.128,341.701,17.341,15.351,17.341 +410,10.682,253.911,461.920,258.717,637.215,254.101,466.472,87.605,164.986,87.605,332.462,318.728,341.574,17.281,15.256,17.281 +411,10.708,253.911,461.920,258.717,637.215,254.101,466.472,87.605,164.986,87.605,332.462,318.728,341.574,17.281,15.256,17.281 +412,10.732,261.250,460.595,249.137,637.269,261.013,466.196,92.428,159.938,92.428,331.635,317.905,342.846,17.645,15.206,17.645 +413,10.758,268.969,460.746,239.697,636.662,268.242,466.568,97.125,154.838,97.125,332.909,317.166,344.643,19.970,14.707,19.970 +414,10.785,276.274,461.325,230.826,635.135,274.959,467.342,102.326,149.704,102.326,334.373,317.149,346.692,19.481,14.843,19.481 +415,10.811,283.951,462.265,221.642,633.399,281.664,469.587,107.341,144.462,107.341,333.171,317.705,348.512,20.166,14.182,20.166 +416,10.836,283.951,462.265,221.642,633.399,281.664,469.587,107.341,144.462,107.341,333.171,317.705,348.512,20.166,14.182,20.166 +417,10.861,291.253,462.846,212.861,630.514,287.565,471.761,112.479,139.299,112.479,331.212,317.801,350.507,18.640,14.263,18.640 +418,10.888,300.830,461.204,204.598,626.657,293.744,474.594,117.887,134.091,117.887,321.905,316.811,352.203,17.719,14.522,17.719 +419,10.914,326.671,438.926,197.561,623.318,300.491,478.782,123.299,129.406,123.299,259.258,317.811,354.629,17.757,15.261,17.757 +420,10.940,326.671,438.926,197.561,623.318,300.491,478.782,123.299,129.406,123.299,259.258,317.811,354.629,17.757,15.261,17.757 +421,10.964,328.260,457.597,190.192,617.962,307.264,483.632,128.884,123.690,128.884,289.218,317.566,356.111,17.627,14.700,17.627 +422,10.991,322.750,478.750,184.548,612.665,312.971,488.529,135.000,117.678,135.000,329.512,317.635,357.172,17.678,16.137,17.678 +423,11.017,326.576,490.201,181.441,597.265,323.073,492.973,141.645,112.834,141.645,342.627,300.308,351.562,19.332,16.056,19.332 +424,11.043,326.576,490.201,181.441,597.265,323.073,492.973,141.645,112.834,141.645,342.627,300.308,351.562,19.332,16.056,19.332 +425,11.068,332.257,497.820,173.177,597.101,325.800,501.885,147.804,106.798,147.804,344.511,317.706,359.772,19.338,19.363,19.338 +426,11.094,337.583,506.001,170.259,587.663,331.689,508.827,154.385,100.954,154.385,346.222,316.893,359.294,19.480,17.609,19.480 +427,11.122,342.765,515.766,165.201,576.423,336.180,517.932,161.786,95.528,161.786,347.523,315.398,361.388,19.022,21.352,19.022 +428,11.147,346.590,526.790,165.000,564.500,341.049,527.820,169.479,90.000,169.479,348.302,313.000,359.573,18.315,18.000,18.315 +429,11.172,346.590,526.790,165.000,564.500,341.049,527.820,169.479,90.000,169.479,348.302,313.000,359.573,18.315,18.000,18.315 +430,11.196,348.978,539.970,164.531,551.683,343.739,540.184,177.663,84.701,177.663,348.567,311.980,359.055,17.190,17.795,17.190 +431,11.222,348.969,552.323,165.498,538.186,344.461,551.889,5.498,79.487,5.498,349.848,310.534,358.905,18.205,19.380,18.205 +432,11.248,347.469,567.057,168.317,523.771,343.159,565.944,14.470,74.107,14.470,350.766,308.783,359.669,17.929,19.690,17.929 +433,11.275,347.469,567.057,168.317,523.771,343.159,565.944,14.470,74.107,14.470,350.766,308.783,359.669,17.929,19.690,17.929 +434,11.299,343.333,581.039,173.322,509.373,339.271,579.279,23.436,68.488,23.436,351.272,307.344,360.125,17.952,19.218,17.952 +435,11.325,336.999,595.352,179.976,495.756,332.445,592.446,32.539,63.253,32.539,350.278,306.361,361.084,18.314,19.001,18.314 +436,11.351,329.058,608.724,189.314,483.589,324.168,604.340,41.878,58.619,41.878,348.895,305.660,362.030,17.433,20.163,17.433 +437,11.376,329.058,608.724,189.314,483.589,324.168,604.340,41.878,58.619,41.878,348.895,305.660,362.030,17.433,20.163,17.433 +438,11.401,337.602,644.416,199.553,473.186,313.579,614.351,51.374,54.605,51.374,285.958,304.792,362.925,17.226,17.677,17.226 +439,11.427,313.414,645.206,212.540,464.143,300.753,622.643,60.701,50.515,60.701,311.037,304.323,362.784,17.900,17.426,17.900 +440,11.454,289.759,639.875,227.498,457.096,286.065,629.468,70.457,46.102,70.457,341.980,303.469,364.067,23.074,18.939,23.074 +441,11.479,270.269,641.223,244.323,451.878,268.679,632.430,79.751,40.671,79.751,346.140,304.245,364.010,27.597,20.203,27.597 +442,11.506,270.269,641.223,244.323,451.878,268.679,632.430,79.751,40.671,79.751,346.140,304.245,364.010,27.597,20.203,27.597 +443,11.531,260.210,639.717,261.034,450.163,260.409,631.716,91.428,35.636,91.428,347.017,304.562,363.024,28.421,20.896,28.421 +444,11.558,242.558,637.900,277.898,451.323,244.215,629.510,101.170,30.486,101.170,345.570,306.493,362.674,25.401,20.633,25.401 +445,11.586,227.081,632.526,293.422,455.062,230.396,623.661,110.507,25.444,110.507,341.059,308.737,359.989,21.834,20.387,21.834 +446,11.614,211.920,625.332,307.001,463.161,216.741,617.100,120.358,20.530,120.358,337.819,310.513,356.898,20.980,15.986,20.980 +447,11.641,211.920,625.332,307.001,463.161,216.741,617.100,120.358,20.530,120.358,337.819,310.513,356.898,20.980,15.986,20.980 +448,11.666,199.539,616.114,319.989,471.262,206.418,607.905,129.958,15.709,129.958,333.934,313.884,355.353,21.649,15.854,21.649 +449,11.693,186.677,605.124,331.507,481.412,196.843,596.392,139.341,11.085,139.341,327.343,316.137,354.145,18.625,14.696,18.625 +450,11.720,175.843,594.435,339.942,493.002,190.291,585.519,148.321,6.546,148.321,317.925,318.158,351.881,19.826,13.469,19.826 +451,11.745,163.336,583.619,346.159,505.381,185.232,574.208,156.741,2.210,156.741,302.390,320.340,350.055,21.389,13.357,21.389 +452,11.773,163.336,583.619,346.159,505.381,185.232,574.208,156.741,2.210,156.741,302.390,320.340,350.055,21.389,13.357,21.389 +453,11.799,138.608,573.406,372.381,517.065,192.590,560.125,166.178,178.017,166.178,258.559,277.353,369.744,15.845,13.325,15.845 +454,11.826,100.421,559.673,353.234,530.545,181.135,551.958,174.540,173.817,174.540,184.549,321.237,346.712,16.074,13.016,16.074 +455,11.854,168.372,540.282,352.526,543.354,180.674,540.650,1.713,169.832,1.713,319.097,323.598,343.711,16.399,13.828,16.399 +456,11.879,174.532,529.321,351.134,555.105,181.741,530.518,9.421,165.696,9.421,327.651,322.834,342.266,17.757,14.798,17.757 +457,11.907,174.532,529.321,351.134,555.105,181.741,530.518,9.421,165.696,9.421,327.651,322.834,342.266,17.757,14.798,17.757 +458,11.931,178.117,520.525,347.879,567.115,183.491,522.095,16.280,161.680,16.280,329.638,322.866,340.836,17.321,14.398,17.321 +459,11.959,182.857,511.506,343.841,577.460,186.736,513.162,23.114,157.681,23.114,331.033,322.551,339.469,17.082,14.714,17.082 +460,11.990,187.201,503.404,338.453,587.333,190.459,505.259,29.656,153.844,29.656,330.939,322.442,338.437,17.368,14.655,17.368 +461,12.023,192.122,496.608,332.342,596.761,194.970,498.659,35.754,150.006,35.754,330.587,322.121,337.606,17.724,14.599,17.724 +462,12.049,197.231,490.436,325.485,604.983,199.843,492.745,41.468,146.258,41.468,329.966,322.005,336.940,17.496,14.750,17.496 +463,12.076,197.231,490.436,325.485,604.983,199.843,492.745,41.468,146.258,41.468,329.966,322.005,336.940,17.496,14.750,17.496 +464,12.106,202.908,484.552,318.403,612.273,205.298,487.114,46.987,142.442,46.987,330.339,321.622,337.346,17.589,14.500,17.589 +465,12.132,208.624,479.136,310.930,618.570,211.053,482.297,52.463,138.746,52.463,329.852,321.634,337.824,19.380,14.465,19.380 +466,12.158,214.206,474.659,303.190,624.176,216.649,478.528,57.724,135.169,57.724,329.563,321.033,338.713,20.203,14.117,20.203 +467,12.183,219.463,471.020,295.084,628.855,221.810,475.501,62.354,131.594,62.354,329.572,321.056,339.690,18.771,14.571,18.771 +468,12.209,219.463,471.020,295.084,628.855,221.810,475.501,62.354,131.594,62.354,329.572,321.056,339.690,18.771,14.571,18.771 +469,12.234,226.205,467.367,287.327,632.896,228.423,472.664,67.276,128.211,67.276,329.611,321.718,341.096,21.333,14.595,21.333 +470,12.260,231.496,465.011,280.047,635.440,233.382,470.787,71.912,124.893,71.912,329.860,319.831,342.010,19.541,14.537,19.541 +471,12.287,237.103,462.862,272.373,637.747,238.702,469.390,76.230,121.842,76.230,329.626,320.754,343.067,18.346,14.853,18.346 +472,12.312,243.020,460.920,265.881,640.348,244.343,468.948,80.640,118.540,80.640,328.967,320.585,345.241,17.609,15.227,17.609 +473,12.339,243.020,460.920,265.881,640.348,244.343,468.948,80.640,118.540,80.640,328.967,320.585,345.241,17.609,15.227,17.609 +474,12.364,249.292,458.663,257.395,640.924,250.121,467.979,84.915,116.777,84.915,327.110,320.665,345.817,17.043,16.078,17.043 +475,12.391,255.725,457.438,250.220,641.488,255.903,468.156,89.049,114.742,89.049,324.988,320.860,346.428,17.251,15.439,17.251 +476,12.418,262.398,455.132,244.136,641.263,261.677,468.275,93.140,113.356,93.140,321.053,320.529,347.379,17.510,15.482,17.510 +477,12.444,262.398,455.132,244.136,641.263,261.677,468.275,93.140,113.356,93.140,321.053,320.529,347.379,17.510,15.482,17.510 +478,12.469,268.890,453.798,237.423,640.694,267.042,468.637,97.100,113.003,97.100,318.888,320.251,348.796,17.233,15.509,17.233 +479,12.495,276.290,449.447,231.085,639.523,272.433,469.228,101.034,113.385,101.034,309.815,320.258,350.122,17.378,16.000,17.378 +480,12.522,284.472,444.922,225.210,637.692,277.732,470.309,104.868,114.297,104.868,297.978,319.538,350.511,17.722,14.906,17.722 +481,12.548,294.541,436.518,219.448,635.239,282.880,471.177,108.595,116.118,108.595,278.315,318.427,351.450,17.778,14.841,17.778 +482,12.574,294.541,436.518,219.448,635.239,282.880,471.177,108.595,116.118,108.595,278.315,318.427,351.450,17.778,14.841,17.778 +483,12.599,306.813,427.457,214.802,633.607,287.979,472.956,112.487,117.316,112.487,254.361,318.070,352.847,17.813,14.050,17.813 +484,12.625,327.846,405.152,208.308,629.962,293.325,475.047,116.285,119.745,116.285,197.182,317.405,353.091,17.801,13.644,17.801 +485,12.652,338.437,408.667,202.702,626.376,297.939,477.127,120.606,122.005,120.606,194.806,315.349,353.890,17.311,14.098,17.311 +486,12.678,338.437,408.667,202.702,626.376,297.939,477.127,120.606,122.005,120.606,194.806,315.349,353.890,17.311,14.098,17.311 +487,12.703,348.329,415.184,195.836,621.735,302.945,480.281,124.884,124.992,124.884,195.876,315.322,354.588,17.331,14.009,17.331 +488,12.729,354.836,426.306,189.900,616.731,307.816,483.402,129.472,127.569,129.472,207.831,314.794,355.761,17.028,13.901,17.028 +489,12.755,349.323,450.340,183.729,610.509,312.873,487.679,134.310,130.101,134.310,251.848,314.580,356.211,16.782,13.527,16.782 +490,12.782,345.499,468.512,177.943,603.628,317.835,492.317,139.289,132.308,139.289,284.289,313.666,357.282,17.187,13.719,17.187 +491,12.808,345.499,468.512,177.943,603.628,317.835,492.317,139.289,132.308,139.289,284.289,313.666,357.282,17.187,13.719,17.187 +492,12.833,346.164,481.179,172.635,595.701,322.837,497.589,144.873,133.971,144.873,301.559,312.643,358.599,16.995,13.573,16.995 +493,12.859,346.795,493.361,167.750,587.250,327.549,504.209,150.593,135.000,150.593,315.785,311.834,359.968,19.435,14.142,19.435 +494,12.886,348.191,504.720,164.250,578.250,331.905,511.604,157.085,135.000,157.085,325.385,311.127,360.747,19.770,13.435,19.770 +495,12.912,349.542,517.122,160.440,566.925,335.871,520.996,164.176,135.172,164.176,334.195,310.429,362.614,18.568,14.121,18.568 +496,12.939,349.542,517.122,160.440,566.925,335.871,520.996,164.176,135.172,164.176,334.195,310.429,362.614,18.568,14.121,18.568 +497,12.965,350.536,528.315,159.107,555.134,339.042,529.989,171.714,134.594,171.714,340.131,309.755,363.361,19.916,14.543,19.916 +498,12.992,351.502,543.556,158.872,542.479,340.949,543.597,179.777,134.010,179.777,343.036,309.070,364.142,18.183,16.060,18.183 +499,13.018,350.805,556.763,160.443,530.044,341.364,555.475,7.774,133.073,7.774,346.340,307.964,365.398,18.007,16.207,18.007 +500,13.044,350.805,556.763,160.443,530.044,341.364,555.475,7.774,133.073,7.774,346.340,307.964,365.398,18.007,16.207,18.007 +501,13.069,348.362,570.267,164.522,518.633,340.512,567.962,16.361,131.560,16.361,349.154,309.016,365.518,17.667,17.233,17.667 +502,13.096,343.636,584.211,170.948,506.115,337.159,581.163,25.201,130.083,25.201,350.378,307.816,364.693,18.575,17.461,18.575 +503,13.122,336.227,597.633,178.559,493.855,331.034,594.090,34.312,128.928,34.312,352.313,307.377,364.886,18.132,17.564,18.132 +504,13.148,325.928,609.684,187.558,482.018,321.659,605.635,43.485,128.270,43.485,352.966,306.767,364.734,19.014,17.909,19.014 +505,13.173,325.928,609.684,187.558,482.018,321.659,605.635,43.485,128.270,43.485,352.966,306.767,364.734,19.014,17.909,19.014 +506,13.198,313.762,620.549,199.140,471.759,310.511,616.180,53.348,127.158,53.348,353.804,306.590,364.696,19.084,17.668,19.084 +507,13.225,299.948,628.532,211.640,462.480,297.476,623.649,63.153,126.870,63.153,354.176,307.200,365.123,19.474,18.000,19.474 +508,13.252,286.284,634.713,226.196,455.827,284.536,628.837,73.436,126.057,73.436,352.664,307.685,364.925,24.223,17.473,24.223 +509,13.278,286.284,634.713,226.196,455.827,284.536,628.837,73.436,126.057,73.436,352.664,307.685,364.925,24.223,17.473,24.223 +510,13.303,266.747,638.532,241.492,451.771,265.823,632.016,81.930,125.395,81.930,350.590,308.996,363.753,25.033,17.226,25.033 +511,13.329,255.117,639.391,257.294,451.164,255.534,632.221,93.327,124.721,93.327,347.344,309.587,361.707,25.747,17.124,25.747 +512,13.356,238.145,638.187,273.131,452.560,240.131,629.605,103.027,124.484,103.027,342.237,310.406,359.854,23.711,15.570,23.711 +513,13.383,217.917,640.117,288.885,456.923,225.024,623.344,112.964,123.690,112.964,319.860,312.296,356.294,18.321,15.254,18.321 +514,13.410,217.917,640.117,288.885,456.923,225.024,623.344,112.964,123.690,112.964,319.860,312.296,356.294,18.321,15.254,18.321 +515,13.435,170.121,682.668,303.251,463.554,212.772,615.643,122.471,122.735,122.471,194.886,312.858,353.775,16.720,15.562,16.720 +516,13.462,187.913,622.131,315.796,473.053,201.841,606.360,131.450,122.381,131.450,308.621,314.755,350.703,16.756,16.149,16.756 +517,13.489,186.889,602.624,325.570,483.265,193.977,596.800,140.594,122.619,140.594,329.154,315.380,347.503,18.511,16.407,18.511 +518,13.517,182.256,588.457,334.073,494.965,187.385,585.412,149.300,122.320,149.300,332.683,316.439,344.614,18.782,15.884,18.782 +519,13.543,182.256,588.457,334.073,494.965,187.385,585.412,149.300,122.320,149.300,332.683,316.439,344.614,18.782,15.884,18.782 +520,13.568,178.271,575.612,340.217,507.758,182.517,573.878,157.779,122.047,157.779,332.816,317.578,341.987,19.610,15.574,19.610 +521,13.594,176.086,563.455,344.770,520.936,179.772,562.556,166.293,121.608,166.293,332.734,318.520,340.322,17.985,15.395,17.985 +522,13.622,174.862,552.031,346.410,534.021,178.223,551.686,174.150,121.608,174.150,331.465,319.044,338.223,17.906,15.657,17.906 +523,13.648,175.412,541.440,346.579,547.015,178.274,541.525,1.713,121.519,1.713,331.061,319.891,336.788,18.231,15.811,18.231 +524,13.673,175.412,541.440,346.579,547.015,178.274,541.525,1.713,121.519,1.713,331.061,319.891,336.788,18.231,15.811,18.231 +525,13.698,176.910,531.210,345.155,559.146,179.491,531.620,9.034,121.477,9.034,330.638,321.212,335.864,17.888,15.630,17.888 +526,13.724,178.964,520.832,342.329,570.563,181.651,521.619,16.321,121.418,16.321,330.313,321.735,335.913,18.118,15.222,18.118 +527,13.751,181.686,512.251,338.701,580.901,184.667,513.497,22.694,121.418,22.694,329.764,321.924,336.226,17.378,15.277,17.378 +528,13.777,181.686,512.251,338.701,580.901,184.667,513.497,22.694,121.418,22.694,329.764,321.924,336.226,17.378,15.277,17.378 +529,13.802,185.557,504.299,333.792,590.526,188.433,505.895,29.029,121.608,29.029,329.753,322.254,336.331,17.780,15.133,17.780 +530,13.829,189.730,497.390,328.529,598.846,192.655,499.415,34.695,121.820,34.695,329.509,322.453,336.624,17.646,15.125,17.646 +531,13.855,194.445,490.975,322.893,606.371,197.554,493.614,40.324,122.005,40.324,328.895,322.981,337.049,18.048,15.052,18.048 +532,13.881,199.832,484.716,316.689,613.085,202.987,487.956,45.759,122.361,45.759,328.898,322.581,337.942,17.517,15.004,17.517 +533,13.907,199.832,484.716,316.689,613.085,202.987,487.956,45.759,122.361,45.759,328.898,322.581,337.942,17.517,15.004,17.517 +534,13.932,205.174,480.449,310.390,618.966,208.049,483.968,50.744,122.705,50.744,329.497,322.290,338.585,17.884,14.916,17.884 +535,13.959,211.067,475.599,303.855,623.595,213.894,479.772,55.886,123.225,55.886,328.977,322.297,339.057,18.828,14.915,18.828 +536,13.985,217.065,471.905,297.346,627.731,219.629,476.493,60.803,123.690,60.803,329.356,322.003,339.868,19.821,14.700,19.821 +537,14.011,217.065,471.905,297.346,627.731,219.629,476.493,60.803,123.690,60.803,329.356,322.003,339.868,19.821,14.700,19.821 +538,14.036,223.419,468.656,290.591,631.359,225.715,473.645,65.286,124.258,65.286,329.800,322.303,340.784,20.616,14.614,20.616 +539,14.062,228.902,466.231,284.221,633.706,230.893,471.570,69.547,124.972,69.547,329.706,320.236,341.101,19.331,14.665,19.331 +540,14.092,234.832,464.467,277.160,636.450,236.509,470.227,73.768,125.816,73.768,329.922,321.208,341.921,19.373,14.646,19.373 +541,14.119,240.265,462.680,270.630,637.851,241.592,468.776,77.716,126.822,77.716,330.285,320.599,342.763,18.163,14.635,18.163 +542,14.146,245.674,460.902,264.128,638.711,246.690,467.902,81.744,127.852,81.744,328.940,319.511,343.085,17.336,14.122,17.336 +543,14.174,245.674,460.902,264.128,638.711,246.690,467.902,81.744,127.852,81.744,328.940,319.511,343.085,17.336,14.122,17.336 +544,14.199,251.424,460.354,257.175,639.502,251.964,467.456,85.651,129.374,85.651,329.645,319.299,343.891,17.125,14.528,17.125 +545,14.225,257.053,460.463,250.523,639.648,257.112,467.773,89.534,131.067,89.534,329.014,318.807,343.633,17.658,14.250,17.658 +546,14.252,262.758,460.075,244.469,640.093,262.280,468.138,93.395,132.580,93.395,329.260,319.069,345.415,17.765,13.950,17.765 +547,14.279,269.421,460.434,238.000,639.000,268.460,468.003,97.237,135.000,97.237,331.686,318.198,346.944,19.463,14.142,19.463 +548,14.307,269.421,460.434,238.000,639.000,268.460,468.003,97.237,135.000,97.237,331.686,318.198,346.944,19.463,14.142,19.463 +549,14.332,276.565,461.205,231.554,636.837,275.082,468.671,101.236,138.030,101.236,331.624,316.794,346.848,21.994,13.973,21.994 +550,14.359,282.593,462.107,225.304,635.023,280.541,469.698,105.130,141.000,105.130,332.295,317.190,348.023,22.986,13.621,22.986 +551,14.385,286.726,463.269,219.380,632.414,284.203,470.575,109.054,144.771,109.054,332.809,316.071,348.269,19.884,13.941,19.884 +552,14.411,292.628,465.043,213.631,629.249,289.755,471.799,113.035,148.699,113.035,334.680,315.385,349.364,20.246,13.405,20.246 +553,14.437,292.628,465.043,213.631,629.249,289.755,471.799,113.035,148.699,113.035,334.680,315.385,349.364,20.246,13.405,20.246 +554,14.462,298.534,466.800,208.085,625.679,295.036,473.619,117.158,153.322,117.158,334.641,314.396,349.969,20.210,13.632,20.210 +555,14.489,304.503,470.640,202.586,621.699,300.893,476.549,121.420,158.334,121.420,336.381,314.006,350.230,21.763,13.877,21.763 +556,14.515,309.590,473.143,197.380,617.187,305.469,478.873,125.727,163.639,125.727,336.685,313.036,350.800,20.010,14.058,20.010 +557,14.541,309.590,473.143,197.380,617.187,305.469,478.873,125.727,163.639,125.727,336.685,313.036,350.800,20.010,14.058,20.010 +558,14.565,314.634,476.802,192.684,612.012,310.435,481.774,130.179,169.695,130.179,337.939,311.529,350.954,18.473,14.400,18.473 +559,14.592,319.557,481.537,188.316,606.352,315.557,485.556,134.862,176.021,134.862,339.414,309.921,350.754,17.802,14.504,17.802 +560,14.619,325.532,486.718,183.634,600.864,320.911,490.633,139.723,2.450,139.723,339.877,309.487,351.990,18.632,13.736,18.632 +561,14.645,329.443,491.921,179.514,594.419,325.117,495.014,144.435,9.462,144.435,341.880,308.906,352.517,18.592,14.467,18.592 +562,14.672,329.443,491.921,179.514,594.419,325.117,495.014,144.435,9.462,144.435,341.880,308.906,352.517,18.592,14.467,18.592 +563,14.697,333.812,498.757,175.882,587.719,329.692,501.152,149.831,16.607,149.831,343.431,308.989,352.961,18.880,14.358,18.880 +564,14.724,338.013,506.125,172.429,580.046,334.151,507.885,155.496,24.206,155.496,345.685,308.868,354.172,18.774,14.426,18.774 +565,14.750,342.007,513.993,169.587,572.054,337.762,515.434,161.250,31.837,161.250,345.934,309.093,354.899,20.476,14.798,20.476 +566,14.776,342.007,513.993,169.587,572.054,337.762,515.434,161.250,31.837,161.250,345.934,309.093,354.899,20.476,14.798,20.476 +567,14.802,345.698,523.892,167.730,563.431,341.182,524.893,167.502,39.890,167.502,346.115,308.699,355.365,19.959,14.704,19.959 +568,14.829,348.129,535.343,183.998,573.103,351.484,535.020,174.495,48.059,174.495,347.474,257.322,340.734,17.209,14.887,17.209 +569,14.855,349.503,546.359,166.445,543.698,344.790,546.256,1.245,55.880,1.245,347.288,309.001,356.716,17.039,16.062,17.039 +570,14.881,349.317,558.208,167.250,532.674,344.897,557.539,8.601,64.032,8.601,349.794,308.146,358.735,18.097,16.565,18.097 +571,14.906,349.317,558.208,167.250,532.674,344.897,557.539,8.601,64.032,8.601,349.794,308.146,358.735,18.097,16.565,18.097 +572,14.932,347.297,570.400,173.188,532.488,346.249,570.093,16.327,72.384,16.327,351.124,285.529,353.308,18.631,16.966,18.631 +573,14.957,343.603,582.524,175.987,526.351,343.470,582.465,23.916,80.754,23.916,351.411,275.857,351.702,17.877,17.399,17.877 +574,14.984,337.538,594.234,179.003,513.520,337.227,594.039,32.158,89.673,32.158,352.878,277.024,353.613,17.560,17.565,17.560 +575,15.008,337.538,594.234,179.003,513.520,337.227,594.039,32.158,89.673,32.158,352.878,277.024,353.613,17.560,17.565,17.560 +576,15.033,328.865,605.409,184.010,499.930,328.312,604.936,40.578,98.078,40.578,354.355,281.846,355.810,18.665,18.626,18.665 +577,15.059,318.581,615.227,190.919,489.476,318.195,614.781,49.162,106.390,49.162,354.879,280.417,356.059,19.310,18.623,19.310 +578,15.086,306.292,624.063,200.339,477.505,305.480,622.759,58.104,114.723,58.104,354.679,284.886,357.751,19.965,18.605,19.965 +579,15.112,293.700,630.915,210.492,469.366,292.873,628.958,67.077,123.092,67.077,353.900,283.985,358.151,19.438,18.545,19.438 +580,15.139,293.700,630.915,210.492,469.366,292.873,628.958,67.077,123.092,67.077,353.900,283.985,358.151,19.438,18.545,19.438 +581,15.165,278.272,636.220,222.079,462.266,277.507,633.322,75.215,132.075,75.215,353.080,283.052,359.074,25.193,18.227,25.193 +582,15.190,267.434,638.656,238.817,454.673,267.009,633.027,85.680,140.440,85.680,348.651,291.826,359.941,24.082,17.833,24.082 +583,15.215,253.600,639.736,258.138,450.073,254.250,631.197,94.353,148.861,94.353,344.667,303.369,361.794,26.418,17.707,26.418 +584,15.241,253.600,639.736,258.138,450.073,254.250,631.197,94.353,148.861,94.353,344.667,303.369,361.794,26.418,17.707,26.418 +585,15.266,237.833,638.735,275.577,450.799,240.148,628.549,102.804,157.256,102.804,341.474,309.531,362.364,22.694,16.202,22.694 +586,15.292,223.237,634.310,290.811,454.232,227.733,622.831,111.389,165.818,111.389,335.330,311.426,359.984,21.152,16.338,21.152 +587,15.320,210.772,627.868,304.563,460.626,217.211,616.715,119.999,174.264,119.999,331.951,312.841,357.707,21.669,14.825,21.669 +588,15.345,198.931,619.046,317.497,468.570,207.267,608.597,128.583,2.762,128.583,329.677,313.648,356.410,20.264,15.749,20.264 +589,15.371,198.931,619.046,317.497,468.570,207.267,608.597,128.583,2.762,128.583,329.677,313.648,356.410,20.264,15.749,20.264 +590,15.396,190.823,609.843,328.610,479.387,200.121,601.092,136.736,11.665,136.736,328.418,315.590,353.956,22.317,15.095,22.317 +591,15.423,182.948,597.720,337.707,490.065,192.937,590.650,144.711,20.078,144.711,328.078,316.966,352.553,19.087,15.714,19.087 +592,15.448,178.584,586.210,345.104,501.546,188.607,580.929,152.218,28.508,152.218,328.257,318.195,350.916,19.835,15.376,19.835 +593,15.474,178.584,586.210,345.104,501.546,188.607,580.929,152.218,28.508,152.218,328.257,318.195,350.916,19.835,15.376,19.835 +594,15.499,175.457,574.063,350.146,513.800,185.025,570.450,159.309,36.800,159.309,328.518,319.602,348.973,19.874,15.899,19.874 +595,15.526,174.116,563.896,352.107,526.944,182.440,561.906,166.551,45.939,166.551,329.176,321.076,346.292,18.754,17.015,18.754 +596,15.552,173.796,553.839,353.694,538.502,181.435,552.900,172.995,54.324,172.995,330.064,322.013,345.457,19.607,17.371,19.607 +597,15.579,173.796,553.839,353.694,538.502,181.435,552.900,172.995,54.324,172.995,330.064,322.013,345.457,19.607,17.371,19.607 +598,15.604,173.989,544.717,353.423,549.284,181.679,544.654,179.530,62.928,179.530,328.022,322.911,343.401,17.991,17.393,17.991 +599,15.629,174.636,535.580,350.824,559.035,181.134,536.202,5.474,71.830,5.474,329.134,323.187,342.189,18.395,19.514,18.395 +600,15.657,175.884,527.599,348.418,566.854,182.027,528.793,10.998,80.455,10.998,328.677,321.409,341.193,17.336,19.409,17.336 +601,15.683,177.787,520.026,344.500,574.500,183.038,521.570,16.390,90.000,16.390,328.724,321.000,339.672,17.438,17.000,17.438 +602,15.709,177.787,520.026,344.500,574.500,183.038,521.570,16.390,90.000,16.390,328.724,321.000,339.672,17.438,17.000,17.438 +603,15.733,179.803,513.507,341.269,582.326,184.969,515.516,21.251,98.067,21.251,328.687,323.000,339.774,17.656,17.666,17.656 +604,15.760,182.792,507.365,337.273,587.970,187.092,509.448,25.841,107.053,25.841,329.225,322.242,338.780,17.508,17.173,17.508 +605,15.786,185.934,502.252,333.301,593.182,189.536,504.344,30.141,115.710,30.141,329.540,322.892,337.871,18.021,15.851,18.021 +606,15.812,189.125,497.814,329.244,597.075,191.999,499.748,33.939,124.928,33.939,329.474,321.795,336.403,17.438,15.747,17.438 +607,15.838,189.125,497.814,329.244,597.075,191.999,499.748,33.939,124.928,33.939,329.474,321.795,336.403,17.438,15.747,17.438 +608,15.862,192.896,493.986,326.786,600.870,195.359,495.885,37.635,133.559,37.635,330.152,321.209,336.372,18.214,15.418,18.214 +609,15.893,196.131,490.581,324.514,604.457,198.579,492.700,40.879,142.008,40.879,330.241,321.268,336.717,17.740,13.785,17.740 +610,15.927,199.659,487.872,322.443,607.698,201.938,490.070,43.965,150.945,43.965,330.459,320.039,336.791,17.326,13.695,17.326 +611,15.954,203.071,485.302,321.069,610.569,205.225,487.607,46.939,159.997,46.939,331.563,320.812,337.871,18.244,13.860,18.244 +612,15.979,206.600,483.196,319.839,613.604,208.654,485.602,49.505,168.988,49.505,332.757,321.425,339.085,18.499,14.008,18.499 +613,16.010,206.600,483.196,319.839,613.604,208.654,485.602,49.505,168.988,49.505,332.757,321.425,339.085,18.499,14.008,18.499 +614,16.034,208.633,481.070,317.960,616.637,211.100,484.225,51.970,178.305,51.970,332.256,322.332,340.267,17.967,13.870,17.967 +615,16.060,211.467,479.247,316.362,619.721,213.942,482.672,54.140,7.431,54.140,333.688,323.132,342.140,18.209,13.926,18.209 +616,16.086,213.647,477.071,314.709,622.793,216.716,481.654,56.190,16.481,56.190,332.563,324.606,343.595,18.659,14.509,18.659 +617,16.112,215.721,475.784,313.143,626.104,218.985,481.105,58.478,25.507,58.478,333.178,324.340,345.662,20.777,14.517,20.777 +618,16.140,215.721,475.784,313.143,626.104,218.985,481.105,58.478,25.507,58.478,333.178,324.340,345.662,20.777,14.517,20.777 +619,16.164,216.769,473.926,310.262,629.248,220.625,480.545,59.776,34.824,59.776,331.901,325.650,347.221,18.692,15.098,18.692 +620,16.192,218.947,473.079,307.460,631.509,222.504,479.554,61.218,44.091,61.218,333.395,326.822,348.172,18.556,15.487,18.556 +621,16.218,218.963,469.052,303.627,634.159,224.166,478.827,61.975,53.274,61.975,326.759,328.587,348.907,18.595,17.188,18.595 +622,16.244,218.963,469.052,303.627,634.159,224.166,478.827,61.975,53.274,61.975,326.759,328.587,348.907,18.595,17.188,18.595 +623,16.269,204.600,435.700,301.152,635.378,225.691,477.881,63.435,61.617,63.435,254.912,328.487,349.232,17.441,15.687,17.441 +624,16.295,210.154,443.516,298.028,636.670,226.173,477.555,64.799,71.222,64.799,273.894,328.265,349.133,17.617,16.247,17.617 +625,16.323,221.325,461.356,291.928,615.335,223.752,466.817,66.038,79.928,66.038,314.859,282.745,326.812,20.408,17.308,20.408 +626,16.350,224.152,464.585,292.000,619.000,225.543,467.841,66.861,90.000,66.861,323.148,288.000,330.229,20.034,18.000,20.034 +627,16.376,224.152,464.585,292.000,619.000,225.543,467.841,66.861,90.000,66.861,323.148,288.000,330.229,20.034,18.000,20.034 +628,16.401,226.376,465.698,289.552,637.178,230.051,474.623,67.620,99.625,67.620,326.629,324.357,345.933,20.615,17.453,20.615 +629,16.427,227.056,466.680,287.338,636.603,230.039,474.156,68.244,108.869,68.244,328.129,323.561,344.228,19.828,16.027,19.828 +630,16.454,228.217,467.330,286.799,635.893,230.651,473.568,68.677,117.987,68.677,329.869,322.228,343.261,19.227,16.258,19.227 +631,16.480,229.180,466.899,286.272,635.067,231.405,472.706,69.036,127.216,69.036,330.049,321.426,342.487,19.878,16.401,19.878 +632,16.507,229.180,466.899,286.272,635.067,231.405,472.706,69.036,127.216,69.036,330.049,321.426,342.487,19.878,16.401,19.878 +633,16.531,229.982,466.818,285.419,633.294,231.810,471.666,69.338,136.668,69.338,329.933,319.847,340.295,20.942,14.013,20.942 +634,16.558,229.719,467.418,285.634,632.469,231.253,471.508,69.444,146.176,69.444,330.875,318.401,339.613,19.546,13.874,19.546 +635,16.584,230.068,467.531,286.777,631.831,231.476,471.327,69.647,155.376,69.647,331.339,318.211,339.436,20.173,13.750,20.173 +636,16.610,230.068,467.531,286.777,631.831,231.476,471.327,69.647,155.376,69.647,331.339,318.211,339.436,20.173,13.750,20.173 +637,16.635,230.037,467.918,287.896,631.508,231.343,471.420,69.550,164.539,69.550,332.040,317.586,339.515,20.264,13.883,20.264 +638,16.661,229.555,468.479,290.618,631.158,230.790,471.774,69.444,173.480,69.444,333.450,320.372,340.487,19.429,14.193,19.429 +639,16.688,229.566,468.111,292.091,631.402,231.004,471.906,69.251,2.474,69.251,333.470,320.436,341.585,20.548,14.536,20.548 +640,16.714,228.724,468.494,294.195,631.980,230.351,472.698,68.839,10.826,68.839,334.160,322.772,343.176,19.524,15.876,19.524 +641,16.740,228.724,468.494,294.195,631.980,230.351,472.698,68.839,10.826,68.839,334.160,322.772,343.176,19.524,15.876,19.524 +642,16.766,228.224,468.796,295.725,632.503,230.069,473.461,68.423,19.299,68.423,334.051,324.216,344.084,19.664,16.283,19.664 +643,16.793,227.578,469.073,297.204,633.230,229.608,474.112,68.062,27.516,68.062,334.833,325.146,345.699,20.188,16.615,20.188 +644,16.819,227.141,469.604,298.221,634.088,229.372,474.974,67.433,35.509,67.433,335.074,325.960,346.704,19.872,16.234,19.872 +645,16.845,226.750,469.250,299.277,634.615,229.495,475.655,66.801,42.669,66.801,333.256,325.805,347.192,20.615,16.550,20.615 +646,16.872,226.750,469.250,299.277,634.615,229.495,475.655,66.801,42.669,66.801,333.256,325.805,347.192,20.615,16.550,20.615 +647,16.897,226.338,469.794,300.355,635.332,229.293,476.449,66.062,49.243,66.062,333.537,326.809,348.100,19.988,16.803,19.988 +648,16.924,224.438,469.218,301.091,635.586,228.146,477.287,65.323,54.968,65.323,330.832,327.450,348.593,17.658,17.609,17.658 +649,16.950,219.642,461.051,299.334,636.864,227.600,477.963,64.799,60.430,64.799,311.258,327.331,348.640,17.404,17.901,17.404 +650,16.978,219.642,461.051,299.334,636.864,227.600,477.963,64.799,60.430,64.799,311.258,327.331,348.640,17.404,17.901,17.404 +651,17.003,191.133,404.392,299.887,637.013,227.096,478.432,64.093,65.283,64.093,184.271,326.368,348.894,17.322,18.413,17.322 +652,17.029,209.200,445.900,300.840,635.508,225.686,478.871,63.435,69.829,63.435,273.695,325.699,347.420,17.441,17.547,17.441 +653,17.057,215.203,462.314,295.694,613.105,219.040,469.692,62.526,75.285,62.526,308.574,280.498,325.206,17.815,17.312,17.815 +654,17.083,215.961,467.798,297.941,608.235,216.632,469.030,61.425,81.416,61.425,319.475,273.095,322.280,19.446,18.134,19.446 +655,17.110,215.961,467.798,297.941,608.235,216.632,469.030,61.425,81.416,61.425,319.475,273.095,322.280,19.446,18.134,19.446 +656,17.134,214.801,470.912,301.793,606.404,214.516,470.424,59.775,88.332,59.775,323.989,271.322,322.859,19.054,17.886,19.054 +657,17.161,212.945,473.551,304.640,620.305,215.475,477.626,58.173,95.545,58.173,326.906,303.389,336.498,20.655,17.568,20.655 +658,17.189,210.421,475.661,305.806,627.340,214.613,481.790,55.630,102.995,55.630,328.386,322.748,343.239,18.151,17.464,18.151 +659,17.214,207.660,477.420,308.047,624.075,211.556,482.681,53.479,110.674,53.479,329.012,321.988,342.106,18.805,16.452,18.805 +660,17.242,207.660,477.420,308.047,624.075,211.556,482.681,53.479,110.674,53.479,329.012,321.988,342.106,18.805,16.452,18.805 +661,17.268,205.076,479.718,310.146,619.637,208.306,483.688,50.870,119.055,50.870,329.217,321.107,339.454,18.249,15.832,18.249 +662,17.294,202.314,482.424,313.984,615.977,205.408,485.872,48.098,127.073,48.098,329.432,321.611,338.698,17.285,16.223,17.285 +663,17.321,199.672,485.826,317.869,610.822,202.094,488.261,45.154,135.507,45.154,330.216,319.662,337.083,17.615,16.056,17.615 +664,17.347,197.066,489.037,322.841,606.116,199.537,491.264,42.022,143.186,42.022,330.316,320.403,336.970,17.307,14.170,17.307 +665,17.374,197.066,489.037,322.841,606.116,199.537,491.264,42.022,143.186,42.022,330.316,320.403,336.970,17.307,14.170,17.307 +666,17.400,194.446,493.189,328.371,601.007,197.062,495.292,38.804,151.440,38.804,330.439,320.353,337.151,18.245,14.198,18.245 +667,17.426,192.077,497.104,334.159,595.350,194.864,499.055,34.992,159.829,34.992,331.871,321.159,338.674,18.105,14.482,18.105 +668,17.453,188.588,502.016,339.463,589.976,192.501,504.371,31.042,167.989,31.042,330.984,322.192,340.118,17.477,14.630,17.477 +669,17.479,185.729,507.021,344.796,584.479,191.137,509.749,26.766,176.689,26.766,329.585,322.733,341.700,17.849,14.364,17.849 +670,17.507,185.729,507.021,344.796,584.479,191.137,509.749,26.766,176.689,26.766,329.585,322.733,341.700,17.849,14.364,17.849 +671,17.532,181.617,512.449,348.665,578.138,188.904,515.391,21.987,5.059,21.987,327.549,324.564,343.266,17.261,15.187,17.261 +672,17.559,165.290,514.694,372.296,576.999,197.010,524.306,16.858,12.804,16.858,299.781,284.074,366.069,16.298,13.076,16.298 +673,17.585,131.814,517.045,357.041,566.101,186.485,528.291,11.624,21.146,11.624,237.719,321.074,349.352,16.349,13.814,16.349 +674,17.612,160.731,533.758,355.948,557.990,183.565,536.114,5.891,29.036,5.891,301.526,325.478,347.436,18.521,14.056,18.521 +675,17.639,160.731,533.758,355.948,557.990,183.565,536.114,5.891,29.036,5.891,301.526,325.478,347.436,18.521,14.056,18.521 +676,17.662,169.000,544.000,356.554,549.309,182.777,544.000,0.000,37.354,0.000,320.000,324.800,347.554,18.000,15.510,18.000 +677,17.690,171.583,553.130,354.930,540.131,181.480,552.064,173.853,45.603,173.853,327.552,323.882,347.461,18.462,15.883,18.462 +678,17.716,173.663,560.664,351.806,530.987,180.731,559.122,167.692,54.345,167.692,331.812,321.306,346.281,19.878,16.622,19.878 +679,17.742,173.663,560.664,351.806,530.987,180.731,559.122,167.692,54.345,167.692,331.812,321.306,346.281,19.878,16.622,19.878 +680,17.767,176.591,572.629,347.006,520.250,181.777,570.748,160.056,63.172,160.056,334.054,319.795,345.088,21.196,17.324,21.196 +681,17.793,180.447,582.385,341.168,509.628,184.165,580.510,153.232,72.335,153.232,335.874,316.199,344.204,19.184,18.693,19.184 +682,17.820,185.895,592.319,334.069,499.342,188.239,590.743,146.088,81.573,146.088,338.389,311.599,344.037,19.060,19.161,19.060 +683,17.846,191.522,602.168,325.289,487.034,194.144,599.874,138.814,90.690,138.814,339.036,311.989,346.004,18.250,19.131,18.250 +684,17.873,191.522,602.168,325.289,487.034,194.144,599.874,138.814,90.690,138.814,339.036,311.989,346.004,18.250,19.131,18.250 +685,17.898,199.512,612.653,315.998,475.761,202.888,608.714,130.601,99.866,130.601,338.737,312.141,349.113,18.981,20.304,18.981 +686,17.925,206.120,626.353,303.611,466.765,212.228,616.957,123.024,107.103,123.024,329.047,311.952,351.461,20.710,22.351,20.710 +687,17.951,189.256,693.519,294.345,459.269,221.730,621.661,114.319,114.871,114.319,198.060,311.297,355.772,17.244,18.181,17.244 +688,17.976,189.256,693.519,294.345,459.269,221.730,621.661,114.319,114.871,114.319,198.060,311.297,355.772,17.244,18.181,17.244 +689,18.002,231.982,638.395,281.513,454.559,235.146,627.846,106.699,122.335,106.699,336.580,311.456,358.606,22.030,17.310,22.030 +690,18.029,246.066,638.721,267.734,451.275,247.195,630.901,98.213,130.179,98.213,345.635,311.164,361.436,23.907,16.928,23.907 +691,18.058,262.000,639.500,253.365,450.285,262.000,631.642,90.000,138.428,90.000,347.000,310.596,362.715,26.000,16.212,26.000 +692,18.084,270.274,639.905,238.893,451.344,268.840,631.623,80.174,146.232,80.174,348.681,309.516,365.491,25.689,17.629,25.689 +693,18.110,270.274,639.905,238.893,451.344,268.840,631.623,80.174,146.232,80.174,348.681,309.516,365.491,25.689,17.629,25.689 +694,18.136,286.826,637.855,225.028,453.947,283.799,628.382,72.279,154.663,72.279,348.207,308.794,368.095,22.174,17.148,22.174 +695,18.163,300.595,633.219,212.802,459.713,295.895,623.625,63.900,163.040,63.900,346.139,307.840,367.506,19.743,16.552,19.743 +696,18.190,314.126,626.886,201.474,467.116,307.489,617.200,55.582,171.167,55.582,343.982,305.943,367.465,19.004,14.381,19.004 +697,18.217,326.533,619.156,191.994,475.311,317.204,609.076,47.220,179.719,47.220,338.970,306.031,366.439,18.338,14.622,18.338 +698,18.242,326.533,619.156,191.994,475.311,317.204,609.076,47.220,179.719,47.220,338.970,306.031,366.439,18.338,14.622,18.338 +699,18.266,339.498,611.184,162.861,481.244,318.763,594.082,39.516,7.461,39.516,330.380,262.001,384.136,18.920,15.109,18.920 +700,18.293,360.244,606.620,150.677,487.704,321.412,583.102,31.201,15.317,31.201,300.123,248.473,390.919,18.252,14.209,18.252 +701,18.319,408.635,610.416,149.997,496.706,327.488,573.769,24.305,23.484,24.305,208.880,255.024,386.957,16.287,13.985,16.287 +702,18.345,408.635,610.416,149.997,496.706,327.488,573.769,24.305,23.484,24.305,208.880,255.024,386.957,16.287,13.985,16.287 +703,18.369,350.264,571.284,169.427,517.623,342.294,568.884,16.763,30.816,16.763,343.965,304.941,360.612,17.235,15.881,17.235 +704,18.395,349.995,559.028,167.270,528.655,344.534,558.065,10.008,38.583,10.008,348.266,305.479,359.356,17.089,16.382,17.089 +705,18.422,349.552,548.108,166.705,539.834,345.060,547.846,3.327,46.637,3.327,348.040,307.688,357.039,16.751,16.923,16.751 +706,18.448,348.551,538.048,166.513,551.064,344.219,538.259,177.212,54.492,177.212,347.562,308.984,356.237,16.733,16.725,16.733 +707,18.476,348.551,538.048,166.513,551.064,344.219,538.259,177.212,54.492,177.212,347.562,308.984,356.237,16.733,16.725,16.733 +708,18.501,347.321,528.872,167.697,561.998,342.962,529.564,170.977,61.957,170.977,347.538,310.528,356.365,18.294,16.800,18.294 +709,18.527,344.743,520.045,168.960,571.982,340.131,521.227,165.630,69.027,165.630,347.304,312.525,356.825,19.350,17.648,19.350 +710,18.554,341.750,512.981,170.149,580.259,336.576,514.820,160.436,76.759,160.436,346.483,313.784,357.463,18.783,17.922,18.783 +711,18.580,338.124,506.881,172.326,587.292,333.083,509.176,155.518,83.766,155.518,346.272,313.630,357.351,18.527,17.626,18.527 +712,18.608,338.124,506.881,172.326,587.292,333.083,509.176,155.518,83.766,155.518,346.272,313.630,357.351,18.527,17.626,18.527 +713,18.633,334.649,501.613,174.315,593.996,329.368,504.601,150.499,91.322,150.499,345.804,314.309,357.941,20.167,17.534,20.167 +714,18.660,330.428,496.596,176.757,599.264,325.410,499.903,146.620,98.552,146.620,345.578,313.989,357.597,18.410,17.963,18.410 +715,18.686,327.308,492.611,185.768,581.212,329.777,490.738,142.815,105.408,142.815,345.022,266.991,338.824,18.818,17.383,18.818 +716,18.712,325.495,488.066,189.426,588.767,325.994,487.640,139.505,112.077,139.505,340.362,273.364,339.049,20.003,15.987,20.003 +717,18.739,325.495,488.066,189.426,588.767,325.994,487.640,139.505,112.077,139.505,340.362,273.364,339.049,20.003,15.987,20.003 +718,18.765,325.135,479.967,184.287,611.587,315.013,489.606,136.397,118.072,136.397,329.621,315.118,357.576,17.517,15.412,17.517 +719,18.792,330.350,468.464,184.477,612.581,312.187,487.636,133.452,124.469,133.452,304.251,315.093,357.072,18.111,14.323,18.111 +720,18.818,358.859,429.159,187.823,614.735,309.727,484.590,131.553,129.036,131.553,208.364,315.006,356.506,17.042,13.247,17.042 +721,18.845,341.287,441.984,190.684,616.248,307.547,482.625,129.699,133.965,129.699,249.274,314.752,354.917,17.174,12.777,17.174 +722,18.872,341.287,441.984,190.684,616.248,307.547,482.625,129.699,133.965,129.699,249.274,314.752,354.917,17.174,12.777,17.174 +723,18.896,317.278,466.488,193.190,616.491,306.304,480.680,127.711,139.051,127.711,317.380,315.125,353.260,17.168,14.107,17.168 +724,18.924,311.647,470.412,195.682,617.840,305.130,479.435,125.838,144.806,125.838,330.307,313.093,352.567,18.646,14.151,18.646 +725,18.950,308.602,471.087,198.749,619.038,303.882,478.042,124.160,151.489,124.160,334.596,311.741,351.406,20.007,13.539,20.007 +726,18.976,308.602,471.087,198.749,619.038,303.882,478.042,124.160,151.489,124.160,334.596,311.741,351.406,20.007,13.539,20.007 +727,19.001,305.760,470.271,201.210,620.451,301.795,476.451,122.681,158.927,122.681,336.344,312.383,351.030,18.660,13.269,18.660 +728,19.027,304.157,470.313,204.374,621.293,300.976,475.540,121.329,166.987,121.329,337.223,311.505,349.460,20.278,14.199,20.278 +729,19.054,302.250,470.222,207.762,622.571,299.738,474.569,120.018,175.358,120.018,338.284,311.006,348.325,20.935,13.860,20.935 +730,19.080,300.944,469.852,210.691,623.651,298.818,473.694,118.951,3.831,118.951,338.973,312.109,347.754,21.429,14.668,21.429 +731,19.108,300.944,469.852,210.691,623.651,298.818,473.694,118.951,3.831,118.951,338.973,312.109,347.754,21.429,14.668,21.429 +732,19.134,298.951,468.741,213.152,625.307,296.798,472.772,118.106,12.393,118.106,338.767,313.893,347.907,19.275,14.506,19.275 +733,19.161,297.847,469.162,215.260,627.021,295.914,472.899,117.350,21.016,117.350,339.483,315.111,347.897,19.970,14.767,19.970 +734,19.188,296.600,468.800,216.671,628.940,294.579,472.842,116.565,29.624,116.565,339.882,316.405,348.920,19.677,14.505,19.677 +735,19.214,295.801,469.406,217.881,630.617,293.874,473.278,116.454,38.290,116.454,340.786,317.671,349.435,19.277,14.582,19.277 +736,19.242,295.801,469.406,217.881,630.617,293.874,473.278,116.454,38.290,116.454,340.786,317.671,349.435,19.277,14.582,19.277 +737,19.267,295.917,469.722,218.968,632.724,293.799,474.034,116.162,46.909,116.162,341.244,317.621,350.852,20.455,15.218,20.455 +738,19.293,295.496,469.769,218.406,633.969,293.177,474.489,116.172,55.054,116.172,341.700,319.583,352.217,19.411,15.851,19.411 +739,19.320,295.823,470.416,217.198,634.414,293.377,475.349,116.372,63.712,116.372,341.687,321.979,352.699,19.823,15.739,19.823 +740,19.347,295.773,470.627,215.955,634.515,293.350,475.438,116.727,72.140,116.727,343.004,322.261,353.777,19.200,16.435,19.200 +741,19.375,295.773,470.627,215.955,634.515,293.350,475.438,116.727,72.140,116.727,343.004,322.261,353.777,19.200,16.435,19.200 +742,19.400,297.480,471.451,210.649,614.892,298.449,469.562,117.163,80.538,117.163,343.013,283.424,338.768,21.460,17.426,21.460 +743,19.427,298.399,470.124,210.982,611.969,299.365,468.299,117.882,89.497,117.882,340.779,278.051,336.649,20.022,17.070,20.022 +744,19.453,298.732,469.233,210.730,613.890,298.945,468.840,118.403,98.130,118.403,339.994,285.530,339.101,18.642,18.385,18.642 +745,19.480,301.664,466.893,205.269,629.492,296.188,476.560,119.532,106.356,119.532,333.538,320.087,355.757,18.237,17.876,18.237 +746,19.508,301.664,466.893,205.269,629.492,296.188,476.560,119.532,106.356,119.532,333.538,320.087,355.757,18.237,17.876,18.237 +747,19.536,311.747,453.880,201.566,627.032,297.969,477.302,120.466,115.747,120.466,301.525,319.789,355.871,18.709,15.038,18.709 +748,19.570,342.101,409.879,199.367,624.576,299.388,477.548,122.260,123.845,122.260,195.395,317.854,355.438,17.614,13.465,17.614 +749,19.596,315.215,457.491,197.463,622.019,301.347,478.097,123.940,131.873,123.940,305.128,317.674,354.804,17.387,13.219,17.387 +750,19.625,311.963,467.909,195.238,618.885,303.861,479.193,125.676,140.194,125.676,325.867,315.739,353.650,17.538,14.212,17.538 +751,19.652,313.561,472.970,193.514,616.062,307.359,481.033,127.569,148.643,127.569,332.536,314.344,352.880,19.633,13.850,19.633 +752,19.680,314.741,475.463,191.931,613.672,309.289,481.949,130.050,156.801,130.050,335.749,312.903,352.694,17.151,13.787,17.151 +753,19.708,314.741,475.463,191.931,613.672,309.289,481.949,130.050,156.801,130.050,335.749,312.903,352.694,17.151,13.787,17.151 +754,19.733,317.528,479.350,190.273,610.202,313.007,484.307,132.366,165.440,132.366,338.030,311.910,351.448,18.164,13.525,18.164 +755,19.760,320.500,482.000,188.093,606.815,316.070,486.430,135.000,173.698,135.000,338.704,310.975,351.235,17.678,14.531,17.678 +756,19.787,323.201,486.282,186.100,603.816,319.345,489.738,138.127,1.790,138.127,340.372,310.286,350.727,18.277,13.931,18.277 +757,19.813,326.829,489.037,183.576,599.671,322.695,492.344,141.340,9.811,141.340,340.771,311.067,351.361,17.335,14.714,17.335 +758,19.841,326.829,489.037,183.576,599.671,322.695,492.344,141.340,9.811,141.340,340.771,311.067,351.361,17.335,14.714,17.335 +759,19.867,329.568,493.805,180.792,595.497,325.966,496.348,144.782,17.560,144.782,342.742,310.567,351.561,18.117,15.194,18.117 +760,19.893,332.499,498.309,178.567,590.791,329.376,500.234,148.349,25.769,148.349,344.456,310.442,351.794,18.984,15.527,18.984 +761,19.920,335.940,502.860,175.914,585.364,332.432,504.657,152.879,33.499,152.879,344.317,310.922,352.200,18.192,15.916,18.192 +762,19.945,339.480,508.338,172.898,579.878,335.480,510.013,157.274,40.764,157.274,345.229,310.747,353.900,19.133,15.879,19.133 +763,19.972,339.480,508.338,172.898,579.878,335.480,510.013,157.274,40.764,157.274,345.229,310.747,353.900,19.133,15.879,19.133 +764,19.997,342.870,514.600,170.820,573.329,338.693,515.955,162.025,48.427,162.025,345.988,311.670,354.770,20.000,16.057,20.000 +765,20.025,345.868,523.119,174.291,574.467,343.277,523.707,167.209,55.993,167.209,346.749,290.158,352.062,17.422,16.220,17.422 +766,20.051,347.785,531.277,166.548,557.695,343.150,531.856,172.875,62.888,172.875,347.545,311.298,356.887,17.613,17.517,17.613 +767,20.077,347.785,531.277,166.548,557.695,343.150,531.856,172.875,62.888,172.875,347.545,311.298,356.887,17.613,17.517,17.613 +768,20.101,349.036,541.236,165.668,548.854,344.343,541.333,178.811,70.120,178.811,348.195,310.984,357.584,18.038,17.738,18.038 +769,20.128,349.517,550.797,165.780,539.375,344.752,550.395,4.821,77.339,4.821,348.966,310.438,358.530,17.276,18.185,17.276 +770,20.155,348.465,562.174,166.717,529.552,343.870,561.245,11.427,84.577,11.427,350.466,309.646,359.841,17.841,17.856,17.841 +771,20.180,345.921,572.752,168.890,519.143,341.680,571.350,18.296,91.672,18.296,351.954,308.277,360.887,17.726,17.576,17.726 +772,20.208,345.921,572.752,168.890,519.143,341.680,571.350,18.296,91.672,18.296,351.954,308.277,360.887,17.726,17.576,17.726 +773,20.233,341.957,583.700,171.912,508.070,337.617,581.642,25.367,99.720,25.367,352.887,308.922,362.494,17.690,17.910,17.690 +774,20.260,335.746,594.936,177.284,497.086,331.867,592.423,32.928,106.914,32.928,353.904,308.630,363.148,18.762,17.557,18.762 +775,20.286,328.553,605.688,183.896,487.000,324.817,602.486,40.601,114.362,40.601,354.464,306.957,364.305,19.198,17.480,19.198 +776,20.312,319.226,615.617,192.490,476.994,315.762,611.667,48.752,121.562,48.752,354.554,306.857,365.063,20.254,17.066,20.254 +777,20.338,319.226,615.617,192.490,476.994,315.762,611.667,48.752,121.562,48.752,354.554,306.857,365.063,20.254,17.066,20.254 +778,20.363,308.996,623.156,202.499,468.188,306.025,618.607,56.849,129.053,56.849,354.233,306.420,365.099,18.815,16.718,18.815 +779,20.391,297.434,630.985,213.145,459.528,294.444,624.413,65.536,136.751,65.536,353.057,306.272,367.498,20.128,16.907,20.128 +780,20.417,285.069,636.480,226.076,453.370,282.699,628.272,73.893,143.820,73.893,350.405,306.002,367.491,23.356,16.830,23.356 +781,20.444,285.069,636.480,226.076,453.370,282.699,628.272,73.893,143.820,73.893,350.405,306.002,367.491,23.356,16.830,23.356 +782,20.468,268.748,640.426,240.815,449.480,267.329,630.844,81.573,150.840,81.573,347.210,306.736,366.583,25.756,16.377,25.756 +783,20.494,259.555,641.083,255.348,448.182,259.795,630.769,91.337,157.767,91.337,344.233,306.946,364.866,27.499,16.087,27.499 +784,20.522,242.669,640.121,271.656,448.787,244.740,628.693,100.271,165.285,100.271,340.416,308.498,363.644,23.734,16.315,23.734 +785,20.548,229.500,636.000,287.506,452.548,233.243,624.771,108.435,173.047,108.435,337.415,310.190,361.088,22.452,14.865,22.452 +786,20.575,229.500,636.000,287.506,452.548,233.243,624.771,108.435,173.047,108.435,337.415,310.190,361.088,22.452,14.865,22.452 +787,20.600,215.649,628.820,301.545,457.744,221.157,618.097,117.187,0.796,117.187,334.622,311.109,358.732,20.633,15.637,20.633 +788,20.627,203.901,620.928,315.217,466.039,210.978,611.149,125.893,8.455,125.893,333.192,313.247,357.336,20.626,15.332,20.626 +789,20.653,194.679,611.174,326.496,475.794,202.748,602.884,134.228,16.204,134.228,331.632,314.281,354.770,20.792,14.757,20.792 +790,20.679,186.957,600.444,335.875,486.542,195.673,593.724,142.367,24.081,142.367,330.944,316.581,352.955,20.753,15.118,20.753 +791,20.706,186.957,600.444,335.875,486.542,195.673,593.724,142.367,24.081,142.367,330.944,316.581,352.955,20.753,15.118,20.753 +792,20.730,180.599,588.673,342.898,498.579,189.519,583.542,150.092,32.300,150.092,330.053,317.992,350.633,19.546,15.953,19.546 +793,20.758,176.915,577.795,348.377,511.193,185.539,574.235,157.571,40.259,157.571,330.485,319.330,349.145,20.820,15.194,20.820 +794,20.785,174.355,566.471,351.390,523.876,182.250,564.312,164.703,48.366,164.703,331.261,320.223,347.630,19.728,16.194,19.728 +795,20.811,174.355,566.471,351.390,523.876,182.250,564.312,164.703,48.366,164.703,331.261,320.223,347.630,19.728,16.194,19.728 +796,20.836,173.246,555.784,352.530,535.996,180.700,554.681,171.581,56.739,171.581,330.357,321.721,345.428,18.795,16.822,18.795 +797,20.863,172.485,544.646,352.277,547.455,179.914,544.337,177.614,65.341,177.614,329.298,322.187,344.168,21.731,18.201,21.731 +798,20.891,173.664,536.894,350.458,558.070,180.433,537.421,4.453,73.583,4.453,328.653,322.969,342.231,17.647,18.876,17.647 +799,20.917,175.341,528.859,348.220,567.040,181.485,529.997,10.491,81.870,10.491,328.890,324.279,341.386,17.881,19.092,17.881 +800,20.944,175.341,528.859,348.220,567.040,181.485,529.997,10.491,81.870,10.491,328.890,324.279,341.386,17.881,19.092,17.881 +801,20.970,177.774,520.792,345.295,575.486,183.257,522.359,15.945,90.470,15.945,329.391,323.088,340.797,17.582,19.991,17.582 +802,20.996,180.183,514.027,341.781,582.589,185.348,516.023,21.129,98.601,21.129,328.747,324.028,339.822,18.172,18.936,18.172 +803,21.023,183.771,506.965,336.696,588.592,187.754,508.927,26.229,107.949,26.229,328.749,322.568,337.629,17.967,16.132,17.967 +804,21.049,187.190,501.182,332.472,593.997,190.451,503.136,30.924,116.398,30.924,329.451,323.346,337.053,18.869,16.117,18.869 +805,21.075,187.190,501.182,332.472,593.997,190.451,503.136,30.924,116.398,30.924,329.451,323.346,337.053,18.869,16.117,18.869 +806,21.100,190.654,497.208,329.477,598.410,193.461,499.173,34.992,124.660,34.992,329.823,322.046,336.674,18.760,15.760,18.760 +807,21.126,194.442,492.573,326.239,602.421,196.874,494.529,38.811,132.600,38.811,330.607,321.337,336.850,17.312,14.189,17.312 +808,21.152,198.347,488.712,323.104,606.591,200.741,490.910,42.541,140.528,42.541,330.240,321.259,336.740,17.865,13.849,17.865 +809,21.178,198.347,488.712,323.104,606.591,200.741,490.910,42.541,140.528,42.541,330.240,321.259,336.740,17.865,13.849,17.865 +810,21.202,201.606,485.377,319.786,610.375,203.886,487.758,46.245,148.582,46.245,330.848,320.360,337.440,18.672,14.247,18.672 +811,21.229,205.625,482.614,317.508,613.199,207.581,484.887,49.274,156.675,49.274,331.923,320.384,337.920,18.605,14.296,18.605 +812,21.256,208.564,480.222,315.237,616.237,210.599,482.863,52.377,164.554,52.377,332.363,321.708,339.032,18.990,14.509,18.990 +813,21.282,212.118,478.120,312.638,619.274,214.004,480.805,54.922,172.425,54.922,333.443,321.816,340.006,19.052,14.695,19.052 +814,21.309,212.118,478.120,312.638,619.274,214.004,480.805,54.922,172.425,54.922,333.443,321.816,340.006,19.052,14.695,19.052 +815,21.334,215.142,476.186,309.991,622.131,217.129,479.299,57.445,179.776,57.445,333.331,322.033,340.718,19.534,14.519,19.534 +816,21.361,217.495,474.857,307.400,625.300,219.544,478.454,60.333,7.125,60.333,333.885,322.862,342.164,19.787,14.884,19.787 +817,21.387,220.286,472.873,305.102,628.182,222.602,477.303,62.403,14.560,62.403,333.865,324.316,343.863,19.155,14.757,19.155 +818,21.414,223.629,471.586,302.171,630.785,225.813,476.227,64.799,21.351,64.799,334.464,324.802,344.720,20.651,14.749,20.651 +819,21.441,223.629,471.586,302.171,630.785,225.813,476.227,64.799,21.351,64.799,334.464,324.802,344.720,20.651,14.749,20.651 +820,21.465,227.013,470.425,299.331,632.959,229.029,475.108,66.711,27.646,66.711,335.373,325.185,345.570,20.839,16.240,20.839 +821,21.492,228.854,469.140,296.148,635.041,230.962,474.564,68.761,33.824,68.761,334.743,325.886,346.382,19.558,16.375,19.558 +822,21.517,231.593,467.316,293.165,636.998,233.832,473.738,70.778,39.744,70.778,333.784,326.242,347.386,19.927,16.260,19.927 +823,21.543,231.593,467.316,293.165,636.998,233.832,473.738,70.778,39.744,70.778,333.784,326.242,347.386,19.927,16.260,19.927 +824,21.568,234.491,467.471,290.316,638.667,236.264,473.144,72.646,44.831,72.646,336.335,326.690,348.222,19.030,16.945,19.030 +825,21.596,236.829,465.641,286.641,640.023,238.728,472.584,74.703,49.425,74.703,333.899,326.914,348.295,18.986,16.924,18.986 +826,21.622,239.655,465.401,282.637,641.028,241.151,471.787,76.813,53.464,76.813,335.365,326.393,348.484,18.389,16.844,18.389 +827,21.648,242.323,463.720,279.117,642.423,243.837,471.451,78.915,56.775,78.915,333.376,326.421,349.131,17.828,16.731,17.828 +828,21.675,242.323,463.720,279.117,642.423,243.837,471.451,78.915,56.775,78.915,333.376,326.421,349.131,17.828,16.731,17.828 +829,21.700,245.592,463.697,275.331,642.803,246.689,470.635,81.014,59.242,81.014,335.009,325.835,349.057,17.627,17.002,17.627 +830,21.727,248.478,463.180,271.256,643.358,249.348,470.535,83.254,61.001,83.254,333.589,325.087,348.401,17.587,17.303,17.587 +831,21.753,251.983,462.727,266.937,644.244,252.542,470.154,85.691,62.253,85.691,334.463,325.369,349.359,17.423,17.327,17.423 +832,21.781,255.345,462.597,262.500,644.500,255.566,469.771,88.231,62.700,88.231,335.365,325.207,349.719,17.169,16.998,17.169 +833,21.808,255.345,462.597,262.500,644.500,255.566,469.771,88.231,62.700,88.231,335.365,325.207,349.719,17.169,16.998,17.169 +834,21.833,258.820,462.447,257.636,644.430,258.716,469.685,90.826,62.650,90.826,335.008,324.353,349.485,17.229,17.029,17.229 +835,21.860,262.628,463.278,253.678,644.093,262.276,469.400,93.284,61.618,93.284,337.535,324.159,349.799,18.404,17.050,18.404 +836,21.887,266.700,463.057,248.601,643.525,266.044,469.427,95.877,60.433,95.877,337.130,323.476,349.937,19.924,17.136,19.924 +837,21.913,272.121,464.271,243.896,642.959,271.181,469.935,99.427,58.870,99.427,338.829,323.964,350.312,20.229,17.137,20.229 +838,21.939,272.121,464.271,243.896,642.959,271.181,469.935,99.427,58.870,99.427,338.829,323.964,350.312,20.229,17.137,20.229 +839,21.965,276.941,464.273,238.752,641.513,275.669,470.212,102.095,57.047,102.095,338.320,323.385,350.467,23.188,16.938,23.188 +840,21.993,281.501,465.292,233.802,639.585,280.051,470.410,105.819,54.888,105.819,340.112,322.700,350.751,20.910,17.358,20.910 +841,22.019,286.092,466.161,228.513,637.469,284.379,471.081,109.197,52.747,109.197,340.593,321.809,351.012,20.322,17.344,20.322 +842,22.045,286.092,466.161,228.513,637.469,284.379,471.081,109.197,52.747,109.197,340.593,321.809,351.012,20.322,17.344,20.322 +843,22.070,290.613,467.295,223.237,635.064,288.575,472.179,112.652,50.415,112.652,340.383,320.989,350.968,19.525,17.372,19.525 +844,22.096,296.054,469.035,217.936,631.868,293.790,473.602,116.372,48.127,116.372,340.784,320.807,350.979,19.763,17.361,19.763 +845,22.124,301.709,470.957,212.466,628.104,299.119,475.404,120.211,45.680,120.211,340.835,318.958,351.127,19.821,16.959,19.821 +846,22.151,306.910,473.577,206.977,623.843,304.132,477.658,124.242,43.324,124.242,341.157,318.351,351.030,19.173,16.622,19.173 +847,22.177,306.910,473.577,206.977,623.843,304.132,477.658,124.242,43.324,124.242,341.157,318.351,351.030,19.173,16.622,19.173 +848,22.201,311.819,477.058,201.125,619.042,308.961,480.643,128.565,40.848,128.565,341.711,317.141,350.880,18.322,16.166,18.322 +849,22.228,317.251,481.235,195.669,613.227,314.237,484.457,133.086,38.022,133.086,341.249,315.309,350.074,18.331,17.039,18.331 +850,22.254,323.286,485.816,190.228,606.853,319.997,488.798,137.800,35.298,137.800,341.988,314.101,350.868,18.965,16.891,18.965 +851,22.281,328.488,491.302,184.672,599.782,325.000,493.948,142.815,32.353,142.815,342.770,312.921,351.526,19.093,16.717,19.093 +852,22.308,328.488,491.302,184.672,599.782,325.000,493.948,142.815,32.353,142.815,342.770,312.921,351.526,19.093,16.717,19.093 +853,22.333,332.659,497.252,179.297,591.946,329.051,499.524,147.804,29.533,147.804,343.414,311.816,351.941,18.805,16.134,18.805 +854,22.361,336.600,503.700,174.361,583.258,332.893,505.554,153.435,26.396,153.435,344.802,310.368,353.091,18.783,15.962,18.783 +855,22.388,341.321,511.024,170.768,573.551,336.965,512.659,159.417,23.270,159.417,344.683,308.572,353.989,19.541,16.084,19.541 +856,22.413,345.729,520.399,167.698,563.221,340.387,521.761,165.691,20.065,165.691,344.132,307.663,355.158,18.411,16.211,18.411 +857,22.441,345.729,520.399,167.698,563.221,340.387,521.761,165.691,20.065,165.691,344.132,307.663,355.158,18.411,16.211,18.411 +858,22.465,349.409,531.105,165.018,552.606,342.369,532.034,172.488,16.699,172.488,342.834,306.696,357.037,16.854,15.517,16.854 +859,22.492,354.037,542.533,163.718,541.477,342.887,542.624,179.528,13.360,179.528,336.005,305.320,358.307,16.596,14.314,16.596 +860,22.518,389.662,559.331,163.790,529.848,342.856,553.749,6.801,9.964,6.801,266.998,302.729,361.273,16.807,13.190,16.807 +861,22.543,389.662,559.331,163.790,529.848,342.856,553.749,6.801,9.964,6.801,266.998,302.729,361.273,16.807,13.190,16.807 +862,22.568,399.722,580.161,167.233,517.432,341.927,565.461,14.270,6.425,14.270,243.015,304.691,362.285,16.335,13.151,16.335 +863,22.594,363.042,587.189,171.109,505.234,338.468,577.036,22.448,2.754,22.448,311.014,302.756,364.190,17.456,13.960,17.456 +864,22.620,347.837,598.103,176.952,492.773,332.543,588.944,30.916,178.995,30.916,330.139,302.006,365.792,19.054,15.752,19.054 +865,22.647,336.535,608.852,184.618,482.375,325.467,599.706,39.569,175.276,39.569,337.915,303.280,366.632,18.902,14.966,18.902 +866,22.676,336.535,608.852,184.618,482.375,325.467,599.706,39.569,175.276,39.569,337.915,303.280,366.632,18.902,14.966,18.902 +867,22.702,324.202,618.993,194.067,472.550,316.066,609.804,48.478,171.656,48.478,342.725,304.344,367.272,21.042,14.670,21.042 +868,22.729,311.388,627.252,205.842,463.996,305.449,617.981,57.355,167.645,57.355,344.760,304.244,366.780,19.590,14.643,19.590 +869,22.757,297.335,634.424,218.369,456.122,293.017,624.417,66.656,163.740,66.656,346.401,305.360,368.198,19.706,17.160,19.706 +870,22.784,280.535,639.262,231.909,451.261,277.830,629.300,74.809,159.154,74.809,347.057,306.333,367.702,25.795,18.668,25.795 +871,22.813,268.263,640.696,246.261,448.824,267.441,630.523,85.380,155.158,85.380,345.218,307.514,365.630,23.972,18.049,23.972 +872,22.840,268.263,640.696,246.261,448.824,267.441,630.523,85.380,155.158,85.380,345.218,307.514,365.630,23.972,18.049,23.972 +873,22.866,252.898,640.308,261.661,448.980,253.771,630.664,95.176,151.113,95.176,343.943,309.079,363.310,26.756,16.968,26.756 +874,22.894,236.530,638.008,277.257,451.855,238.918,628.367,103.912,147.009,103.912,341.237,310.731,361.102,22.494,16.312,22.494 +875,22.922,219.599,633.393,291.981,456.801,224.353,622.425,113.438,143.206,113.438,333.808,312.604,357.716,20.280,15.543,20.280 +876,22.949,201.391,630.597,305.122,463.781,211.905,614.784,123.621,139.764,123.621,316.735,313.928,354.714,19.423,15.796,19.423 +877,22.978,201.391,630.597,305.122,463.781,211.905,614.784,123.621,139.764,123.621,316.735,313.928,354.714,19.423,15.796,19.423 +878,23.004,164.961,647.265,317.004,472.464,202.214,605.873,131.987,137.228,131.987,240.530,315.112,351.905,15.906,15.593,15.906 +879,23.031,168.359,617.356,327.155,482.689,194.105,596.088,140.440,134.472,140.440,282.809,316.057,349.597,16.559,15.771,16.559 +880,23.060,179.001,591.302,333.787,493.367,187.563,586.113,148.782,131.603,148.782,326.219,317.562,346.242,17.778,18.269,17.778 +881,23.087,177.765,577.654,339.912,505.702,182.863,575.487,156.980,127.940,156.980,332.584,317.498,343.663,18.431,19.098,18.431 +882,23.115,175.839,565.012,344.308,518.538,179.830,563.900,164.427,123.690,164.427,332.951,318.953,341.236,20.655,18.860,20.655 +883,23.144,175.839,565.012,344.308,518.538,179.830,563.900,164.427,123.690,164.427,332.951,318.953,341.236,20.655,18.860,20.655 +884,23.170,174.793,553.290,346.801,532.174,178.242,552.849,172.706,118.982,172.706,332.686,319.649,339.640,17.854,19.599,17.854 +885,23.197,174.486,543.034,346.632,544.926,177.814,543.050,0.263,115.051,0.263,330.997,320.247,337.651,17.192,16.622,17.192 +886,23.227,175.600,532.644,347.015,558.271,179.632,533.157,7.245,109.420,7.245,330.300,320.782,338.427,17.873,19.761,17.873 +887,23.254,177.612,522.569,344.074,569.891,181.642,523.616,14.568,105.188,14.568,329.369,322.144,337.698,18.389,16.914,18.389 +888,23.281,180.349,513.899,342.066,581.339,185.316,515.776,20.702,99.532,20.702,328.995,323.545,339.613,17.545,18.885,17.545 +889,23.311,180.349,513.899,342.066,581.339,185.316,515.776,20.702,99.532,20.702,328.995,323.545,339.613,17.545,18.885,17.545 +890,23.338,183.700,506.100,338.493,591.218,189.341,508.920,26.565,94.603,26.565,327.808,324.366,340.421,17.441,18.842,17.441 +891,23.367,187.525,499.089,334.717,600.502,193.725,503.010,32.307,89.530,32.307,327.873,325.104,342.544,17.215,18.032,17.215 +892,23.397,191.276,493.492,329.696,596.982,194.943,496.316,37.596,84.738,37.596,327.113,303.203,336.369,18.239,18.474,18.239 +893,23.430,196.247,487.000,324.077,603.079,199.761,490.261,42.852,79.380,42.852,326.145,302.663,335.733,17.701,17.446,17.701 +894,23.460,200.775,481.473,318.733,610.520,205.013,486.127,47.681,74.529,47.681,324.493,305.754,337.081,17.361,17.520,17.361 +895,23.489,203.596,473.842,316.612,626.274,213.252,486.366,52.368,69.717,52.368,316.193,328.176,347.821,17.822,16.741,17.822 +896,23.522,202.297,459.822,312.238,630.152,217.938,483.695,56.768,64.779,56.768,291.290,328.874,348.370,17.479,15.956,17.479 +897,23.558,182.521,408.808,305.846,633.731,221.966,481.023,61.356,60.255,61.356,183.886,327.576,348.457,17.486,15.876,17.486 +898,23.587,223.379,467.013,301.510,635.429,228.405,477.384,64.141,55.464,64.141,325.160,328.123,348.210,19.962,16.785,19.962 +899,23.616,228.960,466.848,295.728,637.503,232.209,475.381,69.156,51.203,69.156,329.962,327.812,348.225,18.683,15.756,18.683 +900,23.648,234.636,466.374,289.985,639.692,236.870,473.689,73.022,46.749,73.022,333.261,326.105,348.557,19.010,15.171,19.010 +901,23.678,234.636,466.374,289.985,639.692,236.870,473.689,73.022,46.749,73.022,333.261,326.105,348.557,19.010,15.171,19.010 +902,23.705,239.405,464.958,283.488,640.315,240.980,471.688,76.827,42.306,76.827,333.934,325.774,347.756,18.707,15.215,18.707 +903,23.735,244.432,464.595,277.760,640.954,245.385,470.309,80.538,37.895,80.538,335.703,324.248,347.290,17.755,15.110,17.755 +904,23.765,249.475,463.366,271.248,640.880,250.024,468.658,84.079,33.536,84.079,336.344,323.093,346.985,17.344,15.188,17.344 +905,23.796,254.246,462.631,264.787,640.881,254.462,467.998,87.698,29.160,87.698,335.573,322.189,346.317,17.102,15.352,17.102 +906,23.827,259.334,461.943,257.725,639.851,259.228,466.880,91.229,24.814,91.229,336.051,321.765,345.928,17.511,15.753,17.511 +907,23.856,265.742,462.349,251.233,638.686,265.366,466.736,94.899,20.406,94.899,336.253,320.225,345.058,19.415,15.377,19.415 +908,23.884,270.670,461.810,244.266,637.114,270.025,466.327,98.130,16.098,98.130,336.300,319.234,345.426,20.789,15.598,20.789 +909,23.913,276.116,462.526,237.415,635.646,275.129,467.025,102.381,11.869,102.381,336.357,317.925,345.571,18.892,15.492,18.892 +910,23.945,276.116,462.526,237.415,635.646,275.129,467.025,102.381,11.869,102.381,336.357,317.925,345.571,18.892,15.492,18.892 +911,23.974,282.991,464.084,230.182,633.357,281.751,468.312,106.343,7.552,106.343,336.962,316.199,345.775,21.342,15.688,21.342 +912,24.005,287.658,465.058,223.319,630.818,286.062,469.373,110.295,3.527,110.295,337.170,314.759,346.370,19.042,15.635,19.042 +913,24.037,294.242,467.017,216.439,627.237,292.287,471.329,114.394,179.262,114.394,337.160,313.051,346.630,20.216,15.557,20.216 +914,24.068,300.286,469.250,209.667,624.435,297.707,473.968,118.671,175.321,118.671,337.760,313.163,348.514,20.387,14.709,20.387 +915,24.099,306.166,471.917,202.760,620.013,302.938,476.852,123.185,171.565,123.185,337.493,312.405,349.288,19.666,15.255,19.666 +916,24.132,312.798,475.781,196.532,615.277,308.909,480.799,127.772,168.100,127.772,337.566,310.458,350.264,20.928,14.955,20.928 +917,24.165,318.860,479.669,189.701,610.018,313.988,484.972,132.576,165.005,132.576,337.934,311.449,352.338,20.540,14.368,20.540 +918,24.198,324.268,483.388,183.413,603.538,317.964,489.145,137.596,162.573,137.596,335.914,310.921,352.989,17.985,15.462,17.985 +919,24.230,330.969,488.245,178.346,596.987,322.884,494.398,142.727,160.661,142.727,333.971,311.289,354.292,18.239,14.684,18.239 +920,24.264,339.096,492.253,174.032,590.212,327.194,499.691,147.995,160.038,147.995,327.645,311.243,355.714,16.854,14.162,16.854 +921,24.295,356.057,493.623,169.251,583.031,330.708,506.182,153.646,159.712,153.646,301.004,309.906,357.582,17.428,12.847,17.428 +922,24.327,407.824,485.833,166.153,574.160,335.226,514.039,158.767,160.100,158.767,202.970,308.943,358.739,16.695,13.160,16.695 +923,24.358,410.800,502.400,163.410,564.838,338.248,521.933,164.932,160.463,164.932,209.687,308.295,359.959,16.564,12.860,16.564 +924,24.389,385.757,524.422,161.520,554.633,340.727,531.350,171.254,160.665,171.254,270.206,307.978,361.326,16.270,12.830,16.270 +925,24.420,370.455,540.416,160.661,543.558,341.901,541.231,178.363,160.221,178.363,305.333,307.069,362.464,17.136,13.086,17.136 +926,24.450,362.743,553.574,161.187,531.355,342.110,551.511,5.711,159.246,5.711,322.591,307.228,364.061,17.513,13.948,17.513 +927,24.481,356.417,567.782,163.228,518.624,340.468,563.913,13.635,157.638,13.635,333.020,306.395,365.842,17.728,15.142,17.728 +928,24.513,349.733,580.676,167.291,506.795,337.243,575.655,21.903,155.924,21.903,339.820,305.916,366.743,18.193,14.278,18.193 +929,24.545,349.733,580.676,167.291,506.795,337.243,575.655,21.903,155.924,21.903,339.820,305.916,366.743,18.193,14.278,18.193 +930,24.572,341.860,593.888,173.387,494.713,331.824,587.985,30.466,154.051,30.466,344.419,305.958,367.706,18.810,14.209,18.810 +931,24.604,332.817,606.004,182.338,483.586,324.902,599.509,39.369,152.146,39.369,347.011,306.149,367.489,19.267,14.563,19.267 +932,24.636,321.990,616.676,192.346,473.231,315.751,609.657,48.366,150.255,48.366,349.123,305.746,367.904,19.017,14.636,19.017 +933,24.669,308.958,625.971,204.290,464.348,304.158,618.351,57.797,148.358,57.797,349.055,306.465,367.067,19.625,15.007,19.625 +934,24.701,294.713,633.358,217.736,457.032,291.428,625.404,67.557,146.860,67.557,350.295,306.748,367.505,20.294,15.930,20.294 +935,24.735,278.199,638.196,232.453,451.755,276.133,629.899,76.014,145.426,76.014,349.739,306.858,366.839,24.742,16.579,24.742 +936,24.769,266.165,639.517,248.257,450.029,265.752,631.381,87.099,143.633,87.099,347.719,308.334,364.011,25.575,17.305,25.575 +937,24.803,249.200,640.022,263.928,449.465,250.239,630.769,96.411,142.306,96.411,344.774,309.069,363.397,24.743,16.473,24.743 +938,24.836,232.528,637.151,280.334,452.735,235.368,627.211,105.945,140.622,105.945,339.555,310.717,360.231,20.329,16.028,20.329 +939,24.870,216.361,633.433,294.902,457.555,222.520,620.754,115.907,139.359,115.907,328.655,312.162,356.845,21.383,14.803,21.383 +940,24.903,195.722,631.685,308.614,465.329,209.868,612.559,126.486,138.221,126.486,306.601,314.413,354.180,18.877,13.875,18.877 +941,24.936,142.750,658.250,320.433,474.853,199.145,601.855,135.000,137.070,135.000,191.626,314.994,351.135,15.556,13.826,15.556 +942,24.969,173.686,604.188,330.076,486.046,191.261,591.389,143.938,135.924,143.938,304.970,316.879,348.453,16.847,13.832,16.847 +943,25.002,176.819,584.999,337.442,498.452,185.214,580.636,152.534,134.815,152.534,327.027,318.192,345.949,18.953,13.776,18.953 +944,25.037,175.390,570.563,343.038,511.127,181.188,568.550,160.858,133.668,160.858,331.186,318.276,343.462,19.183,14.697,19.183 +945,25.070,173.997,558.197,345.796,524.457,178.515,557.364,169.551,132.825,169.551,331.762,319.078,340.949,17.274,14.490,17.274 +946,25.103,174.074,546.641,347.179,537.459,178.054,546.460,177.408,132.011,177.408,330.748,319.915,338.716,17.303,14.503,17.303 +947,25.137,174.836,535.873,346.902,550.221,178.444,536.189,5.001,131.257,5.001,330.836,320.315,338.080,17.284,14.705,17.284 +948,25.170,177.313,526.120,345.031,562.394,180.384,526.796,12.426,130.462,12.426,330.612,320.736,336.901,18.009,14.657,18.009 +949,25.203,180.826,516.401,341.932,573.435,183.586,517.380,19.519,129.898,19.519,330.095,320.861,335.950,17.968,14.916,17.968 +950,25.236,184.632,508.261,337.671,584.191,187.320,509.562,25.829,129.222,25.829,329.719,321.263,335.692,17.480,14.707,17.480 +951,25.270,188.861,500.519,332.817,593.354,191.618,502.248,32.085,128.660,32.085,329.544,321.562,336.052,17.577,14.837,17.577 +952,25.304,193.429,494.014,326.910,601.775,196.150,496.137,37.954,128.251,37.954,329.247,321.719,336.150,18.482,14.846,18.482 +953,25.337,198.928,487.549,320.617,609.378,201.668,490.146,43.472,127.786,43.472,329.159,322.055,336.709,17.916,14.794,17.916 +954,25.370,203.698,482.265,313.881,615.733,206.488,485.448,48.769,127.405,48.769,329.061,322.229,337.527,18.176,14.812,18.176 +955,25.403,209.320,477.404,306.880,621.254,211.975,481.060,54.009,127.178,54.009,329.374,321.808,338.409,18.729,14.754,18.729 +956,25.437,214.968,473.228,299.768,626.067,217.547,477.547,59.156,126.966,59.156,329.275,322.001,339.338,20.496,14.958,20.496 +957,25.471,220.803,469.854,292.901,630.065,223.192,474.674,63.633,126.666,63.633,329.611,322.199,340.370,18.622,14.697,18.622 +958,25.504,227.134,467.043,286.291,633.744,229.321,472.497,68.154,126.327,68.154,329.979,321.597,341.732,19.726,14.525,19.726 +959,25.537,233.369,464.945,279.004,635.516,235.055,470.333,72.619,126.629,72.619,330.249,319.997,341.539,19.599,14.302,19.599 +960,25.570,238.911,462.940,272.017,637.516,240.317,468.989,76.919,126.822,76.919,330.235,320.000,342.656,18.519,14.417,18.519 +961,25.603,244.812,461.642,264.976,638.719,245.836,468.265,81.207,127.304,81.207,329.353,320.029,342.755,17.781,14.394,17.781 +962,25.635,251.016,460.287,258.280,639.441,251.617,467.384,85.160,127.852,85.160,329.767,318.897,344.012,17.598,14.213,17.598 +963,25.668,257.005,459.461,251.256,639.805,257.092,467.348,89.366,128.660,89.366,328.991,319.219,344.764,17.276,14.212,17.276 +964,25.703,263.136,459.095,244.365,639.046,262.665,467.168,93.338,130.052,93.338,329.132,318.442,345.304,17.670,13.900,17.670 +965,25.737,269.100,459.200,237.594,638.138,268.081,467.354,97.125,131.730,97.125,330.056,317.982,346.492,18.853,14.018,18.853 +966,25.770,276.250,460.250,231.134,636.649,274.671,468.145,101.310,133.803,101.310,331.436,317.525,347.540,20.592,13.949,20.592 +967,25.803,282.309,461.062,224.658,634.557,280.010,469.305,105.583,136.521,105.583,330.979,317.010,348.094,19.848,14.025,19.848 +968,25.837,288.643,462.621,218.199,632.473,285.654,471.004,109.626,139.581,109.626,331.690,317.044,349.490,20.861,13.645,20.861 +969,25.870,293.509,463.813,212.478,629.316,289.917,472.045,113.575,143.393,113.575,332.271,315.983,350.234,19.047,13.647,19.047 +970,25.903,299.371,466.751,206.483,625.573,295.437,474.209,117.814,147.995,117.814,333.903,315.243,350.766,19.340,13.780,19.340 +971,25.937,304.905,469.819,201.049,621.653,300.575,476.736,122.049,152.996,122.049,334.965,314.385,351.287,19.377,13.664,19.377 +972,25.969,310.327,473.587,196.129,616.767,305.951,479.514,126.435,158.682,126.435,336.561,312.737,351.297,19.212,13.746,19.212 +973,26.002,315.871,477.618,191.604,611.633,311.230,482.984,130.855,165.101,130.855,336.929,311.450,351.118,18.725,14.265,18.725 +974,26.036,321.587,483.111,187.171,606.179,317.053,487.579,135.427,171.943,135.427,338.784,310.277,351.515,20.269,14.201,20.269 +975,26.070,326.379,487.664,183.464,600.472,321.768,491.485,140.347,179.174,140.347,340.085,309.054,352.063,18.222,13.455,18.222 +976,26.103,331.172,493.185,179.429,593.491,326.528,496.415,145.176,6.965,145.176,341.068,308.835,352.382,17.917,14.849,17.917 +977,26.137,335.254,499.446,175.981,586.695,330.786,501.989,150.354,14.931,150.354,342.599,308.358,352.880,18.371,14.365,18.371 +978,26.170,339.228,507.009,172.766,579.376,335.026,508.891,155.869,23.114,155.869,344.585,308.175,353.793,18.537,14.536,18.537 +979,26.203,342.338,514.511,170.001,571.191,338.409,515.814,161.643,31.759,161.643,346.280,308.889,354.558,20.570,14.981,20.570 +980,26.235,345.876,522.923,167.985,562.357,341.598,523.845,167.838,40.746,167.838,346.906,308.685,355.658,21.085,15.106,21.085 +981,26.268,348.143,534.015,182.927,571.934,350.999,533.745,174.611,49.594,174.611,347.570,258.567,341.832,18.014,15.217,18.014 +982,26.300,349.001,545.444,165.808,542.952,344.473,545.344,1.273,58.231,1.273,348.292,309.213,357.350,17.196,16.296,17.196 +983,26.333,349.093,557.677,170.400,540.948,346.904,557.344,8.653,67.280,8.653,349.498,290.848,353.925,17.258,16.808,17.258 +984,26.367,346.949,569.896,172.561,536.006,346.393,569.734,16.204,76.245,16.204,351.518,278.663,352.677,18.245,17.711,18.245 +985,26.400,343.032,582.060,173.954,522.234,341.877,581.549,23.824,86.147,23.824,352.621,284.107,355.147,17.999,18.693,17.999 +986,26.434,336.868,593.614,177.150,510.735,335.914,593.019,31.976,95.064,31.976,354.250,283.749,356.499,18.451,18.434,18.451 +987,26.468,329.209,605.203,183.382,494.971,327.213,603.510,40.288,104.036,40.288,354.566,292.255,359.799,18.656,18.190,18.656 +988,26.502,319.380,615.478,191.468,483.644,317.386,613.196,48.865,112.852,48.865,354.751,293.324,360.813,19.449,18.253,19.449 +989,26.535,308.339,623.870,201.346,473.595,306.456,620.900,57.630,121.809,57.630,354.344,293.388,361.378,18.572,17.674,18.572 +990,26.569,295.652,631.148,212.369,465.005,293.984,627.240,66.883,131.357,66.883,354.004,292.478,362.503,19.361,17.201,19.361 +991,26.603,280.437,637.558,225.639,457.467,278.779,631.433,74.854,140.194,74.854,350.921,294.357,363.613,24.473,18.181,24.473 +992,26.635,269.113,639.829,243.515,450.530,268.424,631.307,85.380,148.993,85.380,347.292,303.893,364.392,25.483,18.234,25.483 +993,26.667,254.152,641.082,260.067,448.715,254.888,630.739,94.072,157.779,94.072,343.125,307.116,363.863,25.613,16.864,25.613 +994,26.701,238.354,639.191,275.860,449.288,240.873,627.913,102.591,166.729,102.591,340.801,308.572,363.913,23.627,17.556,23.627 +995,26.734,224.484,633.916,291.369,453.322,228.779,622.776,111.084,175.544,111.084,337.373,310.552,361.251,22.157,16.340,22.157 +996,26.768,211.526,626.515,305.509,459.883,217.437,616.192,119.798,4.217,119.798,335.025,312.364,358.817,21.257,16.531,21.257 +997,26.801,200.803,618.134,317.929,468.306,208.076,608.926,128.307,13.036,128.307,333.411,313.759,356.879,21.742,16.524,21.742 +998,26.835,191.171,607.153,328.961,479.081,199.091,599.657,136.579,21.675,136.579,332.604,314.567,354.413,19.016,15.762,19.016 +999,26.867,184.180,595.849,337.385,491.347,192.133,590.186,144.545,30.504,144.545,331.775,316.277,351.302,17.933,16.544,17.933 +1000,26.900,179.903,584.871,343.589,503.391,187.360,580.928,152.138,39.289,152.138,331.839,317.463,348.709,19.247,16.886,19.247 +1001,26.935,176.758,573.554,348.063,515.591,183.464,570.997,159.125,47.974,159.125,332.720,319.246,347.075,19.930,17.039,19.930 +1002,26.968,174.684,562.682,350.923,527.385,181.336,561.086,166.513,56.310,166.513,331.857,320.062,345.540,18.476,17.750,18.476 +1003,27.000,174.166,553.234,351.821,538.616,180.447,552.475,173.110,64.949,173.110,330.943,321.153,343.597,18.863,17.941,18.863 +1004,27.034,173.500,543.500,350.692,549.606,179.846,543.500,0.000,73.811,0.000,329.000,322.119,341.692,17.000,19.207,17.000 +1005,27.067,174.563,535.373,349.353,558.179,180.391,535.960,5.751,82.488,5.751,328.962,320.685,340.676,17.551,18.891,17.551 +1006,27.101,176.409,527.028,346.486,567.954,181.549,528.095,11.725,91.736,11.725,328.693,322.337,339.192,17.624,17.386,17.624 +1007,27.134,178.964,519.619,343.851,575.702,183.450,520.985,16.928,100.261,16.928,329.387,322.168,338.766,17.594,17.347,17.594 +1008,27.168,181.679,513.057,340.767,582.077,185.734,514.696,22.001,108.933,22.001,329.224,321.649,337.971,17.635,16.735,17.635 +1009,27.200,184.500,507.500,336.983,588.173,188.128,509.314,26.565,117.790,26.565,328.702,322.530,336.814,18.336,15.840,18.336 +1010,27.232,187.607,501.657,333.077,592.048,190.365,503.308,30.912,126.966,30.912,329.626,321.202,336.056,17.503,15.690,17.503 +1011,27.266,190.726,497.615,329.957,596.880,193.129,499.284,34.778,135.855,34.778,330.259,321.033,336.110,17.751,15.428,17.751 +1012,27.298,194.313,492.982,327.546,600.787,196.623,494.832,38.695,144.246,38.695,330.928,321.076,336.847,17.792,13.796,17.792 +1013,27.331,197.646,489.554,325.293,604.633,199.874,491.565,42.073,153.116,42.073,331.722,321.109,337.724,17.434,13.790,17.434 +1014,27.365,201.294,486.183,323.207,608.028,203.599,488.513,45.310,162.216,45.310,331.609,321.615,338.165,17.651,13.726,17.651 +1015,27.398,204.463,483.913,321.445,611.928,206.744,486.505,48.652,171.165,48.652,332.956,322.060,339.863,18.888,14.126,18.888 +1016,27.431,207.249,481.505,319.512,615.824,209.897,484.799,51.203,0.320,51.203,333.145,323.040,341.596,18.308,13.408,18.308 +1017,27.464,210.675,479.468,317.142,619.130,213.221,482.955,53.865,9.414,53.865,333.883,323.864,342.519,18.588,14.093,18.588 +1018,27.500,215.143,476.068,315.077,622.305,218.007,480.330,56.097,18.635,56.097,333.694,325.404,343.964,22.597,14.720,22.597 +1019,27.535,217.545,474.472,312.885,625.899,220.744,479.645,58.261,27.633,58.261,333.544,325.185,345.707,22.296,14.884,22.296 +1020,27.568,219.218,472.376,310.080,629.560,223.174,479.353,60.446,36.870,60.446,331.017,326.400,347.058,22.806,15.200,22.806 +1021,27.601,220.299,471.607,306.411,632.190,224.228,479.024,62.090,46.219,62.090,330.851,327.422,347.638,18.929,15.613,18.929 +1022,27.634,221.270,468.621,302.020,635.800,226.366,478.710,63.202,55.539,63.202,326.049,328.172,348.654,18.248,17.299,18.248 +1023,27.666,193.535,403.338,299.097,637.453,228.103,477.933,65.136,63.988,65.136,184.737,328.270,349.169,17.460,16.227,17.460 +1024,27.700,216.599,449.113,295.080,638.561,228.504,477.296,67.100,73.715,67.100,287.736,327.761,348.923,17.645,16.404,17.645 +1025,27.737,224.694,460.334,288.169,614.354,226.354,464.554,68.530,82.875,68.530,314.990,277.094,324.060,20.298,17.365,20.298 +1026,27.770,227.726,463.174,288.000,618.500,228.575,465.464,69.647,92.386,69.647,323.415,283.754,328.299,19.659,19.192,19.659 +1027,27.803,229.945,463.946,284.519,638.685,233.210,473.286,70.731,102.019,70.731,326.340,324.066,346.129,19.471,17.239,19.471 +1028,27.836,231.468,464.681,281.581,638.336,234.021,472.434,71.775,111.297,71.775,328.585,323.618,344.909,19.043,16.171,19.043 +1029,27.867,233.455,464.926,279.950,637.880,235.552,471.673,72.737,120.566,72.737,329.660,322.220,343.790,19.715,15.926,19.715 +1030,27.899,234.697,464.500,277.527,635.882,236.330,470.037,73.573,130.581,73.573,329.905,320.841,341.451,19.168,16.164,19.168 +1031,27.931,235.893,464.688,277.506,635.348,237.257,469.550,74.324,139.214,74.324,330.912,319.416,341.012,18.830,14.341,18.830 +1032,27.965,236.772,464.465,277.040,634.579,237.965,468.901,74.949,148.912,74.949,331.095,318.473,340.283,18.551,13.727,18.551 +1033,27.998,238.218,464.701,277.468,634.182,239.215,468.582,75.591,158.136,75.591,331.805,317.541,339.819,19.382,13.608,19.382 +1034,28.031,238.549,464.976,278.726,634.141,239.423,468.556,76.283,167.024,76.283,332.995,319.001,340.365,18.611,14.337,18.611 +1035,28.065,239.280,465.026,279.839,634.560,240.155,468.724,76.681,176.228,76.681,333.433,318.890,341.035,18.636,13.948,18.636 +1036,28.100,239.788,465.238,279.810,635.630,240.674,469.098,77.067,5.258,77.067,334.213,320.407,342.134,18.208,14.656,18.208 +1037,28.134,240.376,465.694,280.710,636.586,241.232,469.543,77.471,13.684,77.471,335.374,321.833,343.259,18.222,16.180,18.222 +1038,28.168,240.670,465.501,280.884,637.595,241.609,469.869,77.858,22.121,77.858,335.534,322.932,344.469,18.485,16.532,18.485 +1039,28.202,241.060,465.409,280.982,638.994,242.146,470.570,78.111,30.598,78.111,335.076,324.139,345.625,18.283,16.139,18.283 +1040,28.232,241.479,465.724,280.651,640.448,242.580,471.082,78.386,38.811,78.386,336.182,325.152,347.124,18.239,15.940,18.239 +1041,28.265,241.847,465.131,280.096,641.485,243.131,471.525,78.647,46.494,78.647,334.779,326.068,347.822,18.292,16.289,18.292 +1042,28.299,242.291,464.319,279.247,642.448,243.708,471.597,78.985,53.565,78.985,334.159,326.178,348.988,18.283,16.276,18.283 +1043,28.332,242.661,463.539,276.554,643.310,244.187,471.577,79.257,60.751,79.257,333.148,325.515,349.512,17.479,17.345,17.479 +1044,28.367,243.542,462.948,274.788,643.952,245.130,471.660,79.670,66.711,79.670,331.926,325.653,349.636,17.611,18.522,17.611 +1045,28.401,244.523,462.756,273.164,644.114,246.043,471.545,80.186,71.505,80.186,331.494,325.410,349.333,17.358,18.419,17.358 +1046,28.435,244.865,458.845,271.501,643.762,246.825,470.965,80.811,75.739,80.811,324.488,324.310,349.041,17.377,18.048,17.377 +1047,28.469,242.011,433.597,265.668,620.740,245.833,459.146,81.491,79.765,81.491,273.834,276.638,325.501,17.413,18.137,17.413 +1048,28.503,237.313,389.960,265.358,617.267,246.841,457.185,81.933,84.226,81.933,186.397,269.055,322.192,17.705,18.524,17.705 +1049,28.536,243.349,425.576,266.085,617.436,247.345,457.116,82.779,88.586,82.779,259.222,269.239,322.808,17.579,17.846,17.579 +1050,28.568,246.030,444.093,266.203,617.935,247.567,457.414,83.418,92.862,83.418,296.380,270.812,323.199,17.461,17.778,17.461 +1051,28.601,247.541,451.946,266.273,622.606,248.383,459.611,83.734,97.784,83.734,312.526,280.542,327.947,17.491,17.542,17.491 +1052,28.633,248.029,457.023,265.117,632.146,248.799,464.337,83.991,103.276,83.991,322.482,299.473,337.190,17.639,17.464,17.639 +1053,28.665,248.422,459.044,259.630,641.986,249.445,468.965,84.116,110.556,84.116,326.363,321.395,346.309,17.332,16.386,17.332 +1054,28.698,248.644,459.616,261.412,641.710,249.626,468.942,83.991,116.996,83.991,327.349,320.287,346.104,17.482,16.173,17.482 +1055,28.732,248.700,460.317,259.696,639.783,249.522,467.941,83.841,125.482,83.841,328.546,319.681,343.883,17.388,15.931,17.388 +1056,28.772,248.723,461.307,260.447,638.949,249.424,467.560,83.608,133.559,83.608,330.517,319.107,343.102,17.500,15.800,17.500 +1057,28.814,248.653,462.017,262.013,638.019,249.279,467.397,83.367,141.303,83.367,331.072,318.281,341.903,17.556,13.901,17.556 +1058,28.846,248.224,461.851,263.813,637.104,248.853,467.009,83.042,149.778,83.042,330.915,318.159,341.309,17.598,13.783,17.598 +1059,28.877,247.898,462.386,265.673,636.418,248.460,466.812,82.763,158.331,82.763,331.922,316.616,340.846,17.557,13.969,17.557 +1060,28.912,247.310,462.525,268.032,635.799,247.853,466.587,82.392,167.024,82.392,332.591,317.802,340.788,17.731,14.070,17.731 +1061,28.945,246.829,463.376,270.262,636.435,247.375,467.254,81.986,175.553,81.986,333.609,317.984,341.440,17.617,13.847,17.617 +1062,28.976,245.967,463.801,272.260,636.671,246.545,467.700,81.565,4.472,81.565,333.949,319.371,341.831,17.692,13.952,17.692 +1063,29.007,245.209,463.669,274.307,637.201,245.865,467.879,81.145,13.282,81.145,334.841,320.885,343.364,17.671,14.528,17.671 +1064,29.039,244.422,464.006,275.966,638.112,245.191,468.686,80.670,22.031,80.670,334.861,322.379,344.348,17.889,14.495,17.889 +1065,29.071,243.641,463.909,277.713,639.281,244.572,469.277,80.161,30.753,80.161,335.439,322.930,346.335,18.215,14.786,18.215 +1066,29.104,242.608,464.121,278.669,640.580,243.718,470.178,79.621,39.472,79.621,335.507,323.711,347.822,18.347,15.030,18.347 +1067,29.137,241.902,464.507,279.394,641.856,243.174,471.030,78.965,48.160,78.965,335.908,325.710,349.201,18.307,15.732,18.307 +1068,29.170,240.908,463.938,279.376,642.443,242.523,471.651,78.173,56.768,78.173,333.677,326.162,349.438,18.534,16.181,18.534 +1069,29.201,239.844,462.485,279.485,643.194,242.051,472.303,77.326,65.376,77.326,329.755,327.642,349.881,17.949,17.613,17.949 +1070,29.233,233.541,441.091,278.925,643.312,241.120,472.638,76.492,73.846,76.492,284.678,327.199,349.566,17.698,17.660,17.698 +1071,29.267,232.546,443.106,276.286,616.352,236.838,460.127,75.849,83.454,75.849,287.150,272.425,322.258,17.591,17.459,17.591 +1072,29.300,236.029,458.529,281.149,621.572,237.338,463.450,75.096,92.490,75.096,317.957,283.558,328.142,19.228,19.286,19.228 +1073,29.333,235.616,462.184,280.192,641.038,238.623,472.729,74.086,101.310,74.086,324.585,323.984,346.515,19.325,17.258,19.325 +1074,29.368,234.794,464.349,280.994,639.682,237.279,472.542,73.129,110.253,73.129,328.143,322.892,345.266,19.704,16.817,19.704 +1075,29.402,233.116,465.821,281.243,637.512,235.215,472.258,71.940,119.358,71.940,329.221,321.611,342.763,18.932,15.743,18.932 +1076,29.436,231.596,466.744,282.713,635.582,233.438,472.016,70.743,128.433,70.743,330.162,320.775,341.331,19.458,15.965,19.458 +1077,29.468,230.255,466.904,285.407,633.783,232.099,471.801,69.365,136.644,69.365,330.287,320.532,340.753,20.561,14.339,20.561 +1078,29.501,227.456,468.411,288.009,631.297,229.001,472.235,67.984,145.911,67.984,330.919,318.669,339.167,18.981,13.953,18.981 +1079,29.533,225.419,468.688,291.172,629.196,226.955,472.220,66.484,154.663,66.484,331.421,318.544,339.124,19.993,14.196,19.993 +1080,29.565,222.935,470.002,295.162,627.686,224.454,473.223,64.747,163.413,64.747,332.609,319.244,339.732,19.471,14.376,19.471 +1081,29.600,220.581,471.213,299.921,625.804,222.250,474.491,63.020,172.147,63.020,332.809,320.585,340.165,19.573,14.347,19.573 +1082,29.633,218.056,473.065,304.515,624.316,219.752,476.161,61.280,0.503,61.280,334.260,321.075,341.320,19.474,14.184,19.474 +1083,29.664,215.871,474.078,308.667,623.845,218.266,478.062,58.996,8.241,58.996,333.745,323.159,343.042,19.405,16.101,19.405 +1084,29.697,213.440,475.539,312.859,622.864,216.509,480.225,56.787,16.336,56.787,333.024,324.603,344.227,19.400,16.363,19.400 +1085,29.730,210.644,477.969,317.023,622.061,214.347,483.148,54.437,23.890,54.437,332.704,325.417,345.437,18.379,16.358,18.379 +1086,29.763,208.056,480.127,321.000,620.500,212.464,485.778,52.049,30.964,52.049,331.628,326.362,345.963,17.929,17.321,17.929 +1087,29.794,204.688,481.126,324.584,618.895,210.683,488.112,49.370,36.966,49.370,328.437,327.199,346.849,17.043,17.801,17.043 +1088,29.826,195.350,476.465,327.113,617.826,208.984,490.952,46.736,42.257,46.736,306.915,327.257,346.702,17.177,15.255,17.177 +1089,29.858,152.820,441.576,330.016,616.986,207.053,493.872,43.958,47.891,43.958,197.263,326.909,347.943,17.019,16.735,17.019 +1090,29.888,184.025,479.635,332.590,613.188,203.711,496.987,41.394,52.918,41.394,294.552,328.207,347.036,17.989,16.855,17.989 +1091,29.919,189.788,490.908,335.357,609.087,201.042,499.642,37.813,58.671,37.813,317.928,327.789,346.420,18.524,16.935,18.524 +1092,29.951,188.486,497.299,337.588,604.116,197.232,503.173,33.890,65.175,33.890,324.523,326.451,345.593,17.730,17.183,17.730 +1093,29.984,185.331,502.668,339.791,598.694,193.589,507.381,29.716,72.150,29.716,325.465,326.311,344.480,18.111,17.666,18.111 +1094,30.016,182.613,508.518,341.324,590.939,189.402,511.718,25.241,79.249,25.241,327.387,323.238,342.397,17.987,18.666,17.987 +1095,30.049,179.525,514.928,343.019,582.560,185.544,517.182,20.529,86.479,20.529,327.948,321.622,340.803,18.379,18.979,18.379 +1096,30.082,177.094,521.802,344.793,574.483,182.473,523.254,15.112,94.764,15.112,328.980,322.549,340.124,17.378,18.436,17.378 +1097,30.114,177.094,521.802,344.793,574.483,182.473,523.254,15.112,94.764,15.112,328.980,322.549,340.124,17.378,18.436,17.378 +1098,30.144,175.595,529.432,345.589,564.300,179.716,530.119,9.462,102.391,9.462,330.113,321.373,338.471,17.755,17.751,17.755 +1099,30.175,173.932,538.092,346.016,552.956,177.580,538.319,3.554,110.113,3.554,330.729,319.623,338.039,17.463,16.929,17.463 +1100,30.207,173.554,546.406,345.583,541.192,176.703,546.286,177.807,117.883,177.807,331.599,319.411,337.903,18.102,16.326,18.102 +1101,30.238,173.829,555.575,345.388,528.914,177.540,554.986,170.981,125.595,170.981,332.206,318.868,339.720,18.608,16.366,18.608 +1102,30.270,174.588,565.804,344.185,516.879,179.630,564.344,163.856,132.948,163.856,332.027,317.718,342.526,19.616,15.169,19.616 +1103,30.301,174.979,578.729,341.231,504.846,183.385,575.036,156.284,140.599,156.284,327.131,318.308,345.493,18.422,14.958,18.422 +1104,30.332,120.408,624.039,338.135,494.141,188.460,583.889,149.459,147.529,149.459,191.004,317.447,349.031,15.933,14.189,15.933 +1105,30.364,167.438,615.495,331.921,483.831,194.960,594.057,142.083,154.971,142.083,281.797,317.767,351.569,17.779,13.701,17.779 +1106,30.397,188.228,616.327,323.883,474.122,201.739,602.395,134.119,162.810,134.119,315.419,317.315,354.234,18.926,13.677,18.926 +1107,30.429,203.347,623.979,314.264,466.092,211.729,612.115,125.242,170.473,125.242,327.798,315.814,356.851,20.533,13.441,20.533 +1108,30.461,216.329,629.913,302.506,458.805,221.861,618.968,116.811,178.794,116.811,334.111,313.331,358.640,20.297,15.418,20.297 +1109,30.492,230.417,635.807,289.854,452.843,234.014,624.947,108.329,6.203,108.329,338.986,311.967,361.866,22.346,17.830,22.346 +1110,30.523,241.960,639.671,276.279,449.392,243.910,628.744,100.115,14.146,100.115,342.300,310.194,364.499,22.712,19.055,22.712 +1111,30.554,259.695,641.271,261.452,448.659,259.997,631.044,91.690,22.135,91.690,344.234,308.048,364.698,28.188,19.468,28.188 +1112,30.585,268.070,640.990,247.364,450.391,266.761,631.827,81.870,30.847,81.870,346.200,306.309,364.712,24.183,19.520,24.183 +1113,30.616,283.540,639.750,232.905,454.156,280.648,629.963,73.540,39.105,73.540,343.851,305.158,364.261,22.798,18.985,22.798 +1114,30.648,300.320,639.469,219.023,460.049,294.269,625.855,66.038,47.107,66.038,334.354,304.422,364.150,20.713,17.730,20.713 +1115,30.679,300.320,639.469,219.023,460.049,294.269,625.855,66.038,47.107,66.038,334.354,304.422,364.150,20.713,17.730,20.713 +1116,30.708,347.738,684.118,206.451,467.174,306.421,619.011,57.600,54.175,57.600,209.313,304.455,363.533,17.163,16.226,17.163 +1117,30.740,320.676,617.498,194.652,477.138,316.000,612.060,49.311,61.009,49.311,348.493,305.275,362.837,18.588,21.394,18.588 +1118,30.772,329.571,607.122,186.772,486.086,324.842,602.958,41.367,69.353,41.367,349.113,305.468,361.717,18.942,19.882,18.942 +1119,30.804,336.342,595.737,179.030,497.537,332.545,593.214,33.605,77.735,33.605,352.505,306.111,361.624,18.882,19.968,18.882 +1120,30.837,342.280,583.454,173.270,509.262,338.576,581.658,25.866,86.807,25.866,352.427,307.860,360.659,18.024,18.996,18.024 +1121,30.868,346.100,572.700,168.233,520.795,341.824,571.275,18.435,95.218,18.435,352.278,309.902,361.292,17.709,18.798,17.709 +1122,30.899,349.021,561.362,163.744,531.441,342.970,560.166,11.179,102.995,11.179,350.451,311.880,362.788,17.337,19.788,17.337 +1123,30.932,349.778,550.438,160.400,541.370,342.575,549.875,4.464,111.501,4.464,350.121,313.068,364.570,17.583,21.033,17.583 +1124,30.965,349.459,540.727,159.523,551.085,341.244,540.992,178.152,119.745,178.152,347.464,313.684,363.903,17.088,19.349,17.088 +1125,30.996,350.096,530.101,159.830,559.564,339.743,531.545,172.061,127.543,172.061,343.209,313.635,364.116,18.316,17.980,18.316 +1126,31.032,352.060,520.137,161.716,567.659,337.574,523.662,166.324,136.236,166.324,332.731,312.743,362.549,19.060,13.193,19.060 +1127,31.064,360.252,507.404,164.059,575.081,334.910,516.198,160.862,144.222,160.862,307.779,312.020,361.427,19.184,13.174,19.184 +1128,31.096,401.682,479.140,167.579,581.579,332.246,509.692,156.251,151.783,156.251,207.630,310.942,359.349,16.549,12.831,16.549 +1129,31.128,345.608,495.032,171.883,587.331,329.554,503.789,151.390,159.702,151.390,320.272,310.883,356.847,16.760,12.797,16.760 +1130,31.159,333.656,493.740,175.296,592.393,326.116,498.647,146.944,167.229,146.944,337.092,308.455,355.085,16.883,15.591,16.883 +1131,31.190,328.035,490.045,179.787,597.611,322.971,493.906,142.677,175.790,142.677,340.745,306.716,353.481,17.249,14.550,17.249 +1132,31.221,324.448,486.014,184.744,602.146,320.086,489.818,138.900,3.627,138.900,340.084,308.030,351.660,18.310,14.787,18.310 +1133,31.251,319.856,482.854,190.609,606.996,316.747,485.929,135.308,11.454,135.308,340.889,311.052,349.634,18.415,14.893,18.415 +1134,31.283,316.729,479.255,195.376,611.485,313.624,482.684,132.158,19.217,132.158,340.436,312.222,349.690,18.633,14.526,18.633 +1135,31.315,313.332,476.956,199.724,615.591,310.512,480.417,129.174,26.822,129.174,340.615,313.949,349.546,19.410,15.001,19.410 +1136,31.348,309.186,474.563,204.151,619.307,306.718,477.920,126.333,33.966,126.333,341.004,315.643,349.337,18.767,16.692,18.767 +1137,31.379,309.186,474.563,204.151,619.307,306.718,477.920,126.333,33.966,126.333,341.004,315.643,349.337,18.767,16.692,18.767 +1138,31.409,306.396,473.080,207.827,623.288,303.897,476.783,124.019,41.348,124.019,341.424,316.741,350.358,18.691,16.396,18.691 +1139,31.440,303.369,472.366,210.400,626.767,300.935,476.287,121.839,48.630,121.839,341.965,317.223,351.196,19.183,16.463,19.183 +1140,31.472,300.831,471.046,213.379,629.557,298.296,475.482,119.745,55.630,119.745,341.592,319.306,351.810,19.597,16.820,19.597 +1141,31.504,298.720,470.325,215.286,632.341,295.965,475.549,117.801,62.870,117.801,340.833,320.286,352.645,20.651,16.130,20.651 +1142,31.536,296.261,470.148,216.283,634.765,293.586,475.611,116.086,69.677,116.086,341.704,321.370,353.868,20.882,17.782,20.882 +1143,31.567,294.149,469.189,217.912,635.647,291.525,474.896,114.692,75.964,114.692,341.048,320.390,353.609,20.354,17.948,20.354 +1144,31.599,292.845,468.362,215.354,613.331,294.080,465.481,113.199,82.875,113.199,340.084,273.373,333.814,21.534,18.233,21.534 +1145,31.632,291.706,467.760,218.635,610.909,293.539,463.313,112.402,88.568,112.402,339.628,268.116,330.007,21.151,18.069,21.151 +1146,31.665,290.455,467.004,221.105,612.433,292.034,462.970,111.371,94.289,111.371,338.729,270.341,330.065,21.257,17.875,21.257 +1147,31.698,289.246,465.293,222.873,614.827,290.129,462.912,110.353,98.746,110.353,336.722,274.463,331.644,20.778,17.791,20.778 +1148,31.731,290.028,463.216,224.159,614.535,290.265,462.576,110.300,102.529,110.300,332.275,274.525,330.911,19.646,17.463,19.646 +1149,31.763,291.985,457.872,224.921,613.761,290.504,461.832,110.507,105.792,110.507,322.098,273.465,330.552,19.116,16.883,19.116 +1150,31.795,298.563,440.988,219.905,629.307,287.647,469.420,111.003,108.759,111.003,286.178,306.146,347.089,18.613,16.812,18.613 +1151,31.827,316.226,398.478,215.642,634.463,286.498,472.206,111.961,111.571,111.961,194.972,318.998,353.964,17.412,14.944,17.412 +1152,31.858,318.206,398.086,212.346,632.489,287.175,472.084,112.751,115.607,112.751,193.244,318.923,353.725,17.760,16.739,17.760 +1153,31.890,312.357,417.521,212.670,632.042,288.622,472.296,113.429,117.621,113.429,234.160,318.941,353.551,17.709,14.166,17.709 +1154,31.923,304.240,440.241,210.509,630.209,289.752,472.235,114.362,120.921,114.362,282.946,318.129,353.190,17.446,13.552,17.446 +1155,31.955,301.148,451.252,208.812,629.000,290.995,472.724,115.308,124.422,115.308,305.315,317.568,352.818,17.513,14.069,17.513 +1156,31.986,300.100,457.300,207.220,627.764,292.169,473.162,116.565,128.470,116.565,317.074,316.422,352.542,17.441,14.414,17.441 +1157,32.017,300.372,461.492,206.006,626.505,293.980,473.799,117.446,133.245,117.446,324.398,315.056,352.134,17.501,14.482,17.501 +1158,32.049,302.093,465.408,205.006,625.712,296.709,475.325,118.496,138.668,118.496,329.269,315.149,351.838,20.239,13.742,20.239 +1159,32.082,302.788,468.160,203.875,624.536,298.325,475.985,119.697,145.028,119.697,333.647,314.420,351.663,19.877,13.905,19.877 +1160,32.113,302.788,468.160,203.875,624.536,298.325,475.985,119.697,145.028,119.697,333.647,314.420,351.663,19.877,13.905,19.877 +1161,32.143,304.028,470.314,203.204,623.387,300.047,476.958,120.930,152.213,120.930,335.275,313.169,350.765,20.087,13.482,20.087 +1162,32.174,305.588,471.319,202.226,621.872,301.800,477.317,122.276,160.017,122.276,336.594,312.524,350.783,19.135,13.413,19.135 +1163,32.206,307.859,472.910,201.894,620.037,304.445,478.021,123.745,168.451,123.745,337.818,311.238,350.110,19.946,13.806,19.946 +1164,32.238,309.588,474.627,201.364,618.186,306.544,478.915,125.362,177.238,125.362,338.383,311.410,348.899,19.783,14.435,19.783 +1165,32.270,311.947,476.362,200.219,616.415,309.043,480.179,127.260,5.994,127.260,339.040,311.960,348.632,20.176,14.684,20.176 +1166,32.301,314.010,477.599,198.726,614.793,311.087,481.171,129.289,15.011,129.289,339.908,312.296,349.138,19.208,15.044,19.208 +1167,32.332,316.114,479.546,196.491,612.792,313.211,482.810,131.650,24.174,131.650,340.653,313.243,349.389,18.925,15.297,18.925 +1168,32.365,318.749,481.679,194.103,610.560,315.682,484.844,134.091,33.302,134.091,340.962,314.249,349.777,19.033,15.697,19.033 +1169,32.397,321.268,484.186,190.907,608.459,318.035,487.217,136.848,42.397,136.848,342.472,315.141,351.334,18.330,15.444,18.330 +1170,32.430,324.104,487.751,187.475,605.737,320.738,490.589,139.870,51.512,139.870,343.405,316.562,352.212,18.912,15.944,18.912 +1171,32.463,327.254,491.502,184.043,603.259,323.522,494.293,143.209,60.225,143.209,344.596,315.546,353.916,19.151,16.525,19.151 +1172,32.494,329.861,494.768,179.845,598.675,325.720,497.509,146.505,69.356,146.505,345.027,317.416,354.960,18.371,17.314,18.371 +1173,32.525,333.326,499.540,174.927,594.338,328.366,502.344,150.515,79.061,150.515,346.295,317.081,357.691,17.939,19.480,17.939 +1174,32.556,336.751,505.338,171.330,588.401,331.551,507.822,154.467,87.990,154.467,347.086,317.401,358.611,19.070,19.462,19.070 +1175,32.587,339.846,511.525,166.537,581.331,333.868,513.844,158.797,96.226,158.797,347.999,316.161,360.824,21.138,20.334,21.138 +1176,32.618,343.108,518.922,163.602,573.256,336.760,520.761,163.843,105.213,163.843,348.635,315.736,361.854,19.461,20.408,19.461 +1177,32.649,347.020,526.860,161.206,564.138,339.363,528.252,169.695,114.503,169.695,347.843,314.079,363.407,17.620,20.025,17.620 +1178,32.681,349.913,536.000,160.124,553.958,341.131,536.766,175.011,122.989,175.011,346.001,312.526,363.632,17.110,20.116,17.110 +1179,32.713,349.913,536.000,160.124,553.958,341.131,536.766,175.011,122.989,175.011,346.001,312.526,363.632,17.110,20.116,17.110 +1180,32.741,352.534,545.058,159.983,542.769,342.514,544.942,0.662,132.144,0.662,345.046,310.845,365.088,18.091,18.097,18.091 +1181,32.773,354.146,556.331,161.134,531.845,342.572,554.884,7.125,140.466,7.125,342.460,308.722,365.788,17.737,17.095,17.737 +1182,32.805,354.578,567.682,163.910,520.330,341.625,564.510,13.761,149.216,13.761,339.577,308.198,366.248,17.979,16.232,17.979 +1183,32.837,352.427,579.533,168.121,509.314,339.108,574.530,20.591,158.102,20.591,337.545,306.763,365.999,17.435,14.791,17.435 +1184,32.867,348.367,591.855,173.437,498.134,334.864,584.739,27.790,166.608,27.790,335.848,305.878,366.374,17.837,15.935,17.837 +1185,32.899,341.303,603.662,180.190,487.276,328.685,594.716,35.336,175.236,35.336,335.622,304.279,366.558,18.659,15.031,18.659 +1186,32.932,332.447,614.023,188.607,477.346,321.394,603.679,43.101,3.691,43.101,336.277,303.917,366.553,19.124,14.711,19.124 +1187,32.965,320.753,623.086,198.191,469.035,312.128,612.395,51.105,11.170,51.105,338.761,303.566,366.235,19.164,16.078,19.164 +1188,32.997,308.189,630.702,209.367,462.028,301.718,619.790,59.331,19.328,59.331,340.231,304.352,365.604,19.513,16.232,19.513 +1189,33.028,294.915,636.327,222.803,455.470,290.584,625.564,68.081,27.681,68.081,342.998,304.309,366.201,20.169,18.727,20.169 +1190,33.064,281.680,638.986,236.396,452.145,279.385,629.527,76.363,35.754,76.363,345.568,304.455,365.034,23.766,19.250,23.766 +1191,33.105,268.316,639.768,250.356,450.548,267.622,631.361,85.280,43.550,85.280,346.372,305.551,363.242,24.495,20.383,24.495 +1192,33.138,255.095,639.423,281.141,472.982,254.919,642.161,93.668,51.280,93.668,346.507,252.224,341.019,25.678,20.447,25.678 +1193,33.171,240.056,636.500,291.362,478.008,239.290,639.992,102.377,60.255,102.377,345.911,254.643,338.761,22.695,21.210,22.695 +1194,33.206,227.689,631.651,301.047,483.239,226.422,635.002,110.711,67.521,110.711,343.858,258.757,336.693,21.540,19.914,21.540 +1195,33.237,215.285,624.632,308.941,489.765,213.406,627.966,119.396,75.964,119.396,342.253,262.424,334.600,20.358,18.918,20.358 +1196,33.269,205.318,616.857,315.907,494.778,203.442,619.270,127.859,83.351,127.859,340.739,270.597,334.624,21.819,18.403,21.819 +1197,33.301,196.098,606.732,322.364,495.990,195.529,607.280,136.047,90.947,136.047,338.686,286.225,337.106,20.032,17.898,20.032 +1198,33.333,187.670,595.667,328.579,501.686,187.931,595.477,143.940,99.293,143.940,337.172,294.753,337.817,17.486,17.369,17.486 +1199,33.368,182.087,585.421,333.726,507.977,183.187,584.823,151.482,107.354,151.482,335.424,302.332,337.926,19.178,16.286,19.178 +1200,33.402,177.397,574.054,339.539,513.340,180.186,572.957,158.545,115.246,158.545,334.240,312.165,340.234,19.378,16.398,19.378 +1201,33.436,174.911,564.162,343.300,520.362,178.425,563.288,166.032,123.755,166.032,333.479,318.675,340.722,17.955,16.081,17.955 +1202,33.469,173.446,553.951,346.014,529.733,177.642,553.408,172.632,131.658,172.632,331.576,319.476,340.036,18.587,15.185,18.587 +1203,33.502,173.513,543.456,348.114,539.284,178.056,543.433,179.705,139.596,179.705,331.068,320.203,340.154,18.010,14.088,18.010 +1204,33.534,174.205,535.246,340.684,553.662,175.385,535.353,5.194,147.381,5.194,330.184,301.567,332.555,16.749,13.308,16.749 +1205,33.567,176.104,527.058,349.022,557.448,181.256,528.049,10.886,155.589,10.886,330.105,321.773,340.598,17.223,13.330,17.223 +1206,33.601,178.598,519.357,348.535,565.906,184.109,520.989,16.496,163.740,16.496,329.331,323.080,340.825,17.934,13.880,17.934 +1207,33.634,182.469,513.121,347.722,573.966,187.262,515.006,21.465,172.225,21.465,331.512,323.552,341.812,18.215,14.126,18.215 +1208,33.667,184.282,507.489,346.018,582.448,190.394,510.480,26.075,0.500,26.075,329.225,324.066,342.835,17.983,13.550,17.983 +1209,33.701,187.833,502.141,343.950,589.721,194.033,505.762,30.288,9.204,30.288,329.239,325.345,343.597,17.346,14.053,17.346 +1210,33.735,190.672,497.716,341.519,597.006,197.399,502.298,34.256,17.716,34.256,328.581,325.345,344.860,17.029,14.778,17.029 +1211,33.769,192.819,492.658,337.711,603.561,200.547,498.677,37.915,26.290,37.915,325.735,327.391,345.325,16.682,14.406,16.682 +1212,33.803,191.987,485.156,334.494,610.065,203.998,495.675,41.211,34.707,41.211,315.138,326.979,347.069,17.261,14.282,17.261 +1213,33.837,148.648,435.867,329.926,615.506,206.714,492.981,44.526,42.969,44.526,184.625,327.711,347.520,16.947,14.013,16.947 +1214,33.868,168.489,446.238,325.730,620.138,209.095,490.905,47.726,51.783,47.726,227.431,328.121,348.163,16.951,14.736,16.951 +1215,33.899,193.755,467.335,321.232,623.503,211.107,488.531,50.693,60.078,50.693,293.611,329.055,348.396,17.282,15.601,17.282 +1216,33.932,203.940,472.207,315.732,627.103,213.980,485.742,53.433,68.962,53.433,314.607,329.112,348.312,19.634,16.513,19.634 +1217,33.964,208.962,473.267,310.883,629.245,216.020,483.499,55.401,77.619,55.401,322.812,327.995,347.673,18.342,17.296,18.342 +1218,33.995,212.074,471.923,304.679,604.303,211.861,471.587,57.680,86.939,57.680,324.355,273.572,323.560,18.005,18.241,18.005 +1219,34.026,215.529,471.118,303.535,618.256,217.549,474.619,60.018,95.768,60.018,326.685,298.521,334.770,19.656,19.185,19.656 +1220,34.058,218.057,470.040,298.018,631.877,221.958,477.267,61.639,104.086,61.639,327.941,323.789,344.366,18.472,18.736,18.472 +1221,34.089,221.357,469.325,294.007,632.064,224.360,475.359,63.538,113.682,63.538,329.163,323.177,342.644,20.486,15.809,20.486 +1222,34.121,223.346,468.640,290.498,631.567,225.693,473.680,65.026,122.779,65.026,329.854,322.592,340.973,20.080,15.732,20.080 +1223,34.153,225.164,467.909,289.440,631.210,227.223,472.650,66.529,130.986,66.529,330.106,321.068,340.443,19.950,14.008,19.950 +1224,34.185,227.382,467.229,288.073,631.131,229.197,471.655,67.711,139.764,67.711,330.213,320.094,339.781,20.148,13.682,20.148 +1225,34.217,228.655,467.325,286.881,631.014,230.092,471.064,68.979,148.707,68.979,331.338,319.172,339.351,19.154,13.739,19.154 +1226,34.249,230.635,466.951,286.723,631.461,232.023,470.761,69.978,157.213,69.978,331.323,318.692,339.432,19.524,13.686,19.524 +1227,34.284,232.141,467.311,287.590,631.904,233.378,470.908,71.022,165.790,71.022,332.144,319.429,339.751,19.482,13.992,19.482 +1228,34.317,233.905,467.358,287.660,632.780,235.040,470.832,71.912,173.974,71.912,333.256,320.022,340.565,20.219,14.166,20.219 +1229,34.349,235.024,467.431,288.073,633.753,236.186,471.143,72.621,2.386,72.621,333.593,320.514,341.371,19.837,14.238,19.837 +1230,34.381,235.024,467.431,288.073,633.753,236.186,471.143,72.621,2.386,72.621,333.593,320.514,341.371,19.837,14.238,19.837 +1231,34.410,236.040,467.586,287.628,635.014,237.179,471.398,73.366,10.216,73.366,334.463,321.454,342.421,19.763,16.164,19.763 +1232,34.443,236.802,467.057,287.439,636.161,238.085,471.547,74.055,18.147,74.055,334.336,322.860,343.676,19.643,16.730,19.643 +1233,34.474,236.783,466.611,287.077,637.272,238.229,471.859,74.592,26.035,74.592,334.005,324.237,344.893,18.795,16.323,18.795 +1234,34.506,237.510,466.660,285.976,638.275,238.873,471.800,75.146,33.555,75.146,335.337,324.779,345.972,18.735,16.523,18.735 +1235,34.537,237.939,465.653,284.843,639.448,239.512,471.828,75.704,40.865,75.704,334.499,325.706,347.245,18.730,15.975,18.730 +1236,34.568,238.286,465.524,283.534,640.096,239.749,471.539,76.334,47.549,76.334,335.881,326.314,348.261,18.508,16.220,18.508 +1237,34.600,238.580,463.950,282.057,640.721,240.302,471.296,76.813,53.616,76.813,333.874,326.387,348.965,18.328,16.694,18.328 +1238,34.633,239.643,464.026,280.442,641.436,241.223,471.106,77.419,59.119,77.419,335.058,326.356,349.566,17.723,16.887,17.723 +1239,34.667,240.610,462.611,278.632,641.698,242.351,470.842,78.056,63.838,78.056,332.507,325.592,349.332,17.497,17.054,17.497 +1240,34.702,241.989,462.497,275.480,643.189,243.713,471.204,78.802,68.517,78.802,332.008,325.728,349.760,17.901,18.461,17.901 +1241,34.735,243.092,460.756,273.900,643.700,245.008,471.294,79.695,71.565,79.695,328.165,325.715,349.587,17.620,18.341,17.620 +1242,34.770,244.411,458.426,272.184,643.934,246.507,471.152,80.647,74.157,80.647,323.523,324.718,349.317,17.366,18.304,17.366 +1243,34.805,246.716,459.647,270.334,643.388,248.369,470.588,81.409,76.232,81.409,326.155,322.551,348.285,17.684,18.010,17.684 +1244,34.838,247.982,457.334,264.024,621.780,248.264,459.458,82.439,77.905,82.439,321.683,277.556,325.969,17.457,18.159,17.457 +1245,34.870,249.113,454.211,262.602,621.817,249.702,459.472,83.613,79.479,83.613,314.958,276.922,325.545,17.443,18.105,17.443 +1246,34.901,250.467,452.139,260.703,620.126,251.062,458.680,84.806,80.643,84.806,310.175,272.737,323.311,17.202,17.917,17.202 +1247,34.934,252.338,452.726,258.919,619.470,252.717,458.038,85.914,81.333,85.914,312.276,270.967,322.927,17.527,18.204,17.527 +1248,34.967,254.057,458.188,256.771,618.741,254.013,457.269,87.274,81.690,87.274,324.680,269.566,322.841,17.028,18.411,17.028 +1249,34.999,255.817,459.044,254.396,619.304,255.777,457.518,88.493,82.015,88.493,326.440,270.801,323.387,17.152,18.426,17.152 +1250,35.032,257.500,461.500,251.356,618.012,257.500,456.506,90.000,81.724,90.000,333.000,268.574,323.012,17.000,18.298,17.000 +1251,35.066,259.464,462.381,248.403,618.778,259.620,456.440,91.507,81.011,91.507,337.041,270.858,325.155,17.152,18.521,17.152 +1252,35.099,262.016,460.782,246.119,623.852,262.111,459.038,93.130,79.415,93.130,334.375,282.077,330.882,17.607,18.667,17.607 +1253,35.132,264.485,461.625,247.082,642.330,263.950,468.074,94.744,76.921,94.744,337.165,320.741,350.107,18.596,18.566,18.596 +1254,35.164,267.597,461.559,244.736,643.367,266.755,469.001,96.455,73.811,96.455,336.492,323.668,351.472,20.453,18.185,20.453 +1255,35.196,272.545,462.099,242.222,642.567,271.391,469.166,99.273,69.887,99.273,337.350,323.631,351.670,20.726,18.066,20.726 +1256,35.228,276.330,463.438,238.711,641.851,275.004,469.746,101.878,66.038,101.878,338.888,323.388,351.779,20.449,17.667,20.449 +1257,35.259,280.490,463.983,236.239,639.868,279.031,469.654,104.427,61.157,104.427,339.304,322.450,351.016,21.057,17.024,21.057 +1258,35.290,284.518,465.238,232.358,638.764,282.809,470.808,107.057,56.377,107.057,339.081,321.722,350.733,21.184,16.760,21.184 +1259,35.321,288.527,466.468,228.350,637.023,286.659,471.645,109.843,51.398,109.843,339.697,321.561,350.704,21.217,17.074,21.217 +1260,35.352,292.413,468.123,223.790,634.816,290.448,472.800,112.794,46.364,112.794,340.230,320.414,350.376,21.017,17.286,21.017 +1261,35.384,296.474,469.759,219.445,632.149,294.343,474.147,115.907,41.309,115.907,339.937,318.995,349.694,20.277,17.209,20.277 +1262,35.416,300.629,471.456,214.087,628.984,298.322,475.589,119.168,36.353,119.168,340.527,317.829,349.994,20.023,16.146,20.023 +1263,35.448,300.629,471.456,214.087,628.984,298.322,475.589,119.168,36.353,119.168,340.527,317.829,349.994,20.023,16.146,20.023 +1264,35.477,305.010,473.545,208.574,625.044,302.474,477.501,122.661,30.964,122.661,340.378,316.243,349.777,19.687,15.949,19.687 +1265,35.509,308.946,475.593,202.934,620.415,306.113,479.447,126.327,25.574,126.327,339.819,315.354,349.386,17.914,16.140,17.914 +1266,35.540,314.467,479.321,196.887,614.686,311.537,482.771,130.342,19.983,130.342,340.472,313.806,349.526,19.901,15.891,19.901 +1267,35.572,319.203,482.661,190.904,608.570,315.821,486.109,134.449,14.500,134.449,340.137,312.878,349.796,19.560,15.874,19.560 +1268,35.604,324.089,486.251,185.291,602.346,320.114,489.711,138.959,8.728,138.959,340.749,311.184,351.289,18.624,16.073,18.624 +1269,35.637,328.515,490.882,179.709,595.449,324.046,494.166,143.702,2.948,143.702,341.481,309.671,352.573,17.396,15.807,17.396 +1270,35.668,333.981,495.581,174.754,587.858,328.161,499.193,148.173,176.961,148.173,340.501,308.362,354.200,19.776,15.368,19.776 +1271,35.700,341.192,500.919,171.042,580.072,332.358,505.227,154.004,171.112,154.004,335.943,310.730,355.600,18.065,14.889,18.065 +1272,35.734,365.330,502.287,166.778,572.293,335.711,513.034,160.058,165.069,160.058,295.013,309.002,358.030,17.703,12.948,17.703 +1273,35.769,402.985,506.010,163.449,563.555,338.951,522.583,165.489,159.112,165.489,228.050,309.448,360.339,16.435,13.063,16.435 +1274,35.802,366.270,527.164,161.533,554.083,340.930,530.345,172.846,153.007,172.846,310.837,309.477,361.914,20.093,13.239,20.093 +1275,35.835,357.966,540.284,160.902,544.011,342.499,540.722,178.379,147.299,178.379,332.291,309.376,363.236,17.936,15.890,17.936 +1276,35.868,353.697,553.059,161.298,533.818,342.747,551.947,5.799,140.615,5.799,342.690,309.448,364.703,18.009,18.256,18.009 +1277,35.900,349.985,565.565,162.680,523.262,341.246,563.537,13.062,134.157,13.062,348.153,309.045,366.096,18.282,19.703,18.282 +1278,35.934,345.977,577.240,167.409,513.143,339.229,574.686,20.737,128.171,20.737,350.529,309.529,364.960,17.669,17.561,17.669 +1279,35.968,339.977,589.123,173.202,502.585,334.920,586.370,28.557,121.636,28.557,352.673,308.563,364.190,17.967,18.123,17.967 +1280,36.004,332.060,601.252,180.511,491.563,327.963,598.174,36.913,115.233,36.913,353.604,308.120,363.852,18.986,18.123,18.986 +1281,36.038,322.894,611.605,189.404,481.779,319.724,608.398,45.341,108.970,45.341,354.309,307.437,363.328,18.250,17.879,18.250 +1282,36.069,311.227,621.271,200.135,472.414,308.770,617.845,54.363,102.458,54.363,354.550,306.198,362.983,20.515,17.678,20.515 +1283,36.103,299.400,628.800,212.981,465.003,297.399,624.797,63.435,96.399,63.435,352.404,305.013,361.355,19.677,18.036,19.677 +1284,36.135,287.066,635.624,226.000,461.000,285.523,630.847,72.104,90.000,72.104,349.798,300.000,359.839,22.442,18.000,22.442 +1285,36.167,271.671,653.553,240.981,458.928,268.468,635.347,80.024,85.806,80.024,320.057,297.694,357.027,26.383,17.446,26.383 +1286,36.200,261.898,656.605,256.360,456.543,262.123,634.357,90.579,80.921,90.579,310.994,300.970,355.493,26.938,18.731,26.938 +1287,36.234,242.998,640.495,272.191,455.427,244.426,631.850,99.375,75.336,99.375,339.657,305.688,357.180,23.670,18.960,23.670 +1288,36.267,231.194,631.905,288.014,458.259,232.815,627.067,108.521,69.092,108.521,344.996,307.358,355.200,21.643,20.205,21.643 +1289,36.301,218.112,624.638,303.419,463.542,220.573,619.962,117.759,62.471,117.759,343.441,309.034,354.009,21.378,22.417,21.378 +1290,36.332,206.620,615.840,315.210,472.879,209.207,612.391,126.870,56.045,126.870,341.800,310.074,350.423,21.200,19.049,21.200 +1291,36.365,196.336,606.428,326.951,481.878,200.192,602.676,135.781,49.121,135.781,339.418,312.603,350.180,20.857,16.728,20.857 +1292,36.397,186.384,595.135,336.656,492.789,192.276,590.923,144.435,42.722,144.435,334.563,315.173,349.049,18.474,16.166,18.474 +1293,36.429,179.264,584.543,344.584,503.717,187.481,580.291,152.636,36.703,152.636,330.937,317.418,349.441,19.905,15.641,19.905 +1294,36.461,172.632,573.081,350.649,515.559,184.006,568.998,160.253,30.627,160.253,325.629,319.361,349.799,20.031,16.354,20.031 +1295,36.492,166.164,562.362,353.349,527.241,181.870,559.138,168.402,24.696,168.402,316.713,321.424,348.781,18.988,15.372,18.988 +1296,36.523,157.774,549.998,355.714,537.960,181.726,548.453,176.309,19.300,176.309,300.601,322.516,348.605,17.544,14.179,17.544 +1297,36.554,132.594,536.936,355.155,548.308,181.973,539.899,3.434,13.681,3.434,247.814,324.511,346.750,15.572,14.498,15.572 +1298,36.585,104.521,517.182,354.370,558.938,183.451,531.277,10.125,8.211,10.125,185.881,323.718,346.239,16.278,13.647,16.278 +1299,36.617,174.682,519.321,351.050,568.494,185.199,522.372,16.174,2.853,16.174,322.368,324.644,344.269,16.610,13.352,16.610 +1300,36.649,181.364,512.266,347.812,576.841,187.796,514.907,22.329,177.414,22.329,329.191,324.482,343.097,17.361,14.682,17.361 +1301,36.680,181.364,512.266,347.812,576.841,187.796,514.907,22.329,177.414,22.329,329.191,324.482,343.097,17.361,14.682,17.361 +1302,36.709,186.588,505.134,343.465,585.204,191.375,507.701,28.202,171.973,28.202,330.458,323.568,341.322,17.690,14.168,17.690 +1303,36.740,191.090,498.369,338.070,592.562,194.938,500.927,33.612,166.705,33.612,330.613,323.292,339.854,17.494,15.098,17.494 +1304,36.773,195.941,492.826,332.203,599.661,198.786,495.099,38.623,161.333,38.623,331.718,322.563,339.003,17.816,15.082,17.816 +1305,36.805,199.982,487.545,325.645,606.182,202.707,490.135,43.550,156.111,43.550,330.596,321.864,338.114,18.048,14.781,18.048 +1306,36.837,204.665,482.706,319.189,611.865,207.112,485.417,47.925,150.803,47.925,330.619,321.397,337.923,17.856,14.635,17.856 +1307,36.868,208.619,478.796,312.409,617.210,210.982,481.834,52.125,145.644,52.125,330.563,321.175,338.260,18.067,14.521,18.067 +1308,36.900,212.399,475.405,305.635,622.036,214.809,479.029,56.376,140.404,56.376,330.045,321.255,338.750,18.819,14.622,18.819 +1309,36.934,216.826,472.747,298.632,626.592,219.055,476.674,60.428,135.401,60.428,330.292,321.058,339.323,19.106,14.488,19.106 +1310,36.969,221.785,469.408,292.394,630.124,224.095,474.173,64.140,130.601,64.140,329.660,321.166,340.250,20.445,14.860,20.445 +1311,37.002,226.035,467.761,286.680,633.109,228.099,472.816,67.797,125.762,67.797,330.169,320.491,341.089,19.556,14.762,19.556 +1312,37.036,230.712,465.563,280.555,635.883,232.762,471.570,71.157,121.576,71.157,329.191,321.012,341.886,19.491,16.382,19.491 +1313,37.070,235.070,464.290,277.175,639.586,237.146,471.810,74.562,116.131,74.562,329.153,321.087,344.755,18.863,16.516,18.863 +1314,37.104,240.198,461.807,269.898,640.263,242.004,470.145,77.778,112.949,77.778,327.273,321.701,344.335,19.607,16.326,19.607 +1315,37.137,244.144,460.244,267.600,642.200,245.780,470.289,80.754,108.435,80.754,326.011,321.287,346.366,17.514,16.444,17.514 +1316,37.171,248.793,457.472,264.696,638.281,249.919,467.692,83.713,105.255,83.713,321.799,311.882,342.362,17.125,16.752,17.125 +1317,37.204,253.152,453.750,261.559,635.513,253.864,465.601,86.561,102.779,86.561,316.391,304.725,340.135,17.248,17.906,17.248 +1318,37.235,257.103,450.479,258.134,631.027,257.185,463.009,89.621,101.395,89.621,310.980,295.363,336.040,17.152,17.934,17.152 +1319,37.268,262.267,444.590,254.532,627.912,261.720,461.438,91.860,100.646,91.860,299.524,290.196,333.239,17.445,18.215,17.445 +1320,37.300,266.858,432.305,250.065,627.228,264.616,460.700,94.514,100.713,94.514,277.348,289.407,334.315,17.236,17.368,17.236 +1321,37.333,274.065,410.799,245.626,626.928,268.207,461.010,96.654,100.972,96.654,233.731,290.228,334.833,17.332,18.012,17.332 +1322,37.366,282.528,389.329,242.176,624.148,271.069,459.990,99.211,100.934,99.211,190.165,284.111,333.332,17.474,18.588,17.474 +1323,37.397,289.163,389.939,236.168,628.755,274.340,463.031,101.464,101.634,101.464,190.849,295.940,340.010,17.497,17.688,17.497 +1324,37.428,283.429,441.016,232.636,622.293,278.606,460.958,103.593,102.308,103.593,294.206,284.951,335.240,18.846,17.711,18.846 +1325,37.459,284.603,454.660,227.969,623.376,282.098,463.301,106.168,102.450,106.168,319.640,289.280,337.634,19.201,17.678,19.201 +1326,37.491,287.599,459.812,223.051,621.787,285.939,464.562,109.257,102.645,109.257,328.274,288.532,338.338,18.683,17.495,18.683 +1327,37.522,290.100,466.604,220.188,612.213,291.711,462.681,112.329,102.339,112.329,339.466,272.769,330.985,19.508,17.859,19.508 +1328,37.553,295.319,467.947,214.135,614.827,295.696,467.165,115.769,101.310,115.769,338.607,282.799,336.871,19.905,17.847,19.905 +1329,37.584,300.541,471.077,208.581,614.014,300.748,470.718,120.059,99.462,120.059,341.206,286.876,340.378,18.448,17.919,18.448 +1330,37.617,306.468,474.622,203.946,603.431,308.426,471.734,124.136,97.125,124.136,342.250,272.008,335.272,19.486,17.861,19.486 +1331,37.649,312.146,478.317,198.251,602.984,312.931,477.336,128.660,93.576,128.660,342.020,279.268,339.509,19.053,18.090,19.053 +1332,37.680,312.146,478.317,198.251,602.984,312.931,477.336,128.660,93.576,128.660,342.020,279.268,339.509,19.053,18.090,19.053 +1333,37.709,318.876,483.355,191.373,601.468,318.263,484.003,133.379,91.123,133.379,343.270,285.259,345.054,21.151,17.938,21.151 +1334,37.744,323.974,487.344,185.288,587.405,324.572,486.813,138.383,87.614,138.383,343.476,269.599,341.874,19.340,18.026,19.340 +1335,37.786,333.775,498.803,177.480,595.140,329.154,501.603,148.782,79.695,148.782,345.578,314.570,356.383,18.970,18.246,18.970 +1336,37.819,338.445,505.320,173.606,587.221,333.401,507.694,154.799,76.090,154.799,345.747,315.555,356.896,18.735,17.962,18.735 +1337,37.852,342.087,513.292,169.932,576.923,337.274,514.937,161.134,72.575,161.134,346.619,314.681,356.791,19.525,17.313,19.525 +1338,37.887,345.702,523.278,167.045,566.126,340.726,524.344,167.905,68.810,167.905,346.980,312.893,357.160,17.600,17.709,17.600 +1339,37.919,347.951,534.463,165.269,554.239,343.024,534.912,174.785,64.960,174.785,347.658,310.941,357.553,16.728,18.167,16.728 +1340,37.951,348.465,545.903,165.147,541.759,344.156,545.737,2.203,61.056,2.203,349.434,309.743,358.059,17.218,17.396,17.218 +1341,37.984,348.510,558.383,166.721,528.714,343.904,557.599,9.652,57.208,9.652,349.693,308.285,359.037,17.430,17.324,17.430 +1342,38.017,346.530,571.466,170.101,515.815,341.853,569.965,17.788,53.294,17.788,350.344,307.404,360.167,17.187,16.840,17.187 +1343,38.048,346.530,571.466,170.101,515.815,341.853,569.965,17.788,53.294,17.788,350.344,307.404,360.167,17.187,16.840,17.187 +1344,38.078,342.841,585.905,175.676,503.694,337.397,583.253,25.979,49.252,25.979,348.347,306.517,360.459,18.025,16.494,18.025 +1345,38.109,341.034,601.341,183.000,492.000,331.724,594.899,34.681,45.000,34.681,339.058,305.470,361.702,17.522,15.556,17.522 +1346,38.141,379.156,658.503,191.513,480.556,323.086,605.994,43.122,41.210,43.122,209.921,303.662,363.557,17.205,15.767,17.205 +1347,38.174,326.276,633.003,203.300,470.600,312.847,615.818,51.995,36.870,51.995,320.135,303.600,363.754,18.635,16.200,18.635 +1348,38.205,307.028,634.419,216.444,462.020,301.022,623.149,61.944,32.530,61.944,338.410,303.256,363.950,19.458,18.104,19.458 +1349,38.236,290.705,639.083,230.581,455.060,287.192,628.929,70.914,28.272,70.914,344.156,303.423,365.644,22.753,19.879,22.753 +1350,38.270,272.571,641.167,245.004,451.053,270.893,631.857,79.788,23.570,79.788,346.138,304.108,365.059,26.485,20.825,26.485 +1351,38.302,262.443,641.070,259.961,449.261,262.536,631.188,90.541,19.326,90.541,344.022,305.528,363.788,27.829,20.152,27.829 +1352,38.335,245.488,639.146,275.364,449.781,247.245,629.196,100.019,15.018,100.019,342.936,307.586,363.144,26.437,19.741,26.437 +1353,38.370,227.855,634.103,289.891,453.387,231.351,624.007,109.100,10.477,109.100,339.396,309.916,360.765,20.689,19.592,20.689 +1354,38.404,213.989,627.224,303.315,458.981,219.309,617.384,118.399,5.947,118.399,336.215,312.269,358.588,21.903,18.836,21.903 +1355,38.437,198.994,618.995,315.554,467.029,207.082,608.522,127.678,1.569,127.678,330.108,313.376,356.573,19.700,16.405,19.700 +1356,38.469,186.253,609.768,325.956,476.660,197.853,598.816,136.647,176.987,136.647,322.109,316.562,354.015,19.104,14.979,19.104 +1357,38.502,172.960,600.718,334.895,487.171,190.499,588.608,145.376,172.805,145.376,310.291,318.271,352.918,19.123,15.185,19.123 +1358,38.534,153.797,593.073,341.755,498.713,185.602,577.928,154.537,169.216,154.537,279.629,319.681,350.083,17.326,14.501,17.326 +1359,38.567,106.910,592.221,346.902,510.544,182.450,567.816,162.096,166.319,162.096,189.421,320.624,348.190,15.972,14.012,15.972 +1360,38.599,153.792,562.577,350.550,522.472,181.074,557.275,169.003,163.600,169.003,290.421,321.444,346.006,16.783,13.626,16.783 +1361,38.631,170.637,548.451,351.563,533.890,180.767,547.740,175.982,160.249,175.982,322.383,322.009,342.693,17.882,16.647,17.882 +1362,38.661,175.242,539.054,351.974,545.511,181.779,539.425,3.244,156.371,3.244,327.438,321.571,340.533,16.597,16.147,16.597 +1363,38.692,178.036,529.674,350.465,557.213,182.900,530.519,9.856,151.750,9.856,329.447,321.237,339.322,17.304,15.988,17.304 +1364,38.724,181.658,521.351,347.546,568.269,185.060,522.356,16.456,146.663,16.456,330.578,321.196,337.672,17.324,15.858,17.324 +1365,38.756,184.658,512.809,342.963,578.838,187.565,514.038,22.913,141.254,22.913,330.418,320.936,336.730,17.995,15.762,17.995 +1366,38.787,187.787,505.312,337.670,588.615,190.625,506.854,28.514,135.554,28.514,330.020,321.066,336.479,17.878,15.358,17.878 +1367,38.819,191.054,498.659,331.614,597.241,193.863,500.559,34.083,129.991,34.083,329.754,320.985,336.537,17.661,15.136,17.661 +1368,38.850,194.587,492.508,325.722,605.108,197.767,495.092,39.094,124.259,39.094,329.169,322.339,337.365,17.511,15.131,17.511 +1369,38.882,198.173,486.809,319.570,612.188,201.871,490.413,44.256,118.376,44.256,328.235,323.137,338.563,18.695,15.221,18.695 +1370,38.913,198.173,486.809,319.570,612.188,201.871,490.413,44.256,118.376,44.256,328.235,323.137,338.563,18.695,15.221,18.695 +1371,38.943,202.024,481.717,313.000,618.000,205.626,485.805,48.621,113.199,48.621,329.443,323.802,340.341,18.241,16.282,18.241 +1372,38.974,206.902,476.844,307.997,623.884,211.053,482.430,53.388,107.103,53.388,328.804,324.744,342.722,18.672,16.395,18.672 +1373,39.006,212.185,473.106,303.544,628.410,216.398,479.712,57.472,101.113,57.472,328.795,324.548,344.464,18.979,17.347,18.979 +1374,39.039,216.729,468.732,299.900,619.351,218.853,472.691,61.793,95.328,61.793,326.116,298.781,335.102,19.980,18.087,19.980 +1375,39.071,221.577,464.595,294.126,614.968,222.720,467.097,65.458,89.421,65.458,322.840,284.046,328.342,19.207,18.514,19.207 +1376,39.105,225.746,458.516,286.938,612.008,227.155,462.244,69.286,82.875,69.286,314.484,272.876,322.456,19.124,17.241,19.124 +1377,39.138,221.765,426.490,280.644,621.015,233.277,463.712,72.814,77.661,72.814,250.627,285.377,328.551,17.403,17.493,17.403 +1378,39.170,237.502,455.246,277.470,634.175,240.698,468.099,76.034,71.686,76.034,313.592,308.646,340.083,17.770,17.590,17.770 +1379,39.202,244.698,463.416,277.557,643.849,246.206,471.757,79.749,65.772,79.749,332.898,327.562,349.849,17.723,17.372,17.723 +1380,39.234,249.469,463.297,272.383,644.651,250.408,471.300,83.307,60.482,83.307,333.345,326.954,349.461,17.290,16.611,17.290 +1381,39.266,254.462,464.587,266.879,644.993,254.820,470.947,86.779,55.129,86.779,336.156,326.220,348.898,17.012,16.341,17.012 +1382,39.298,259.067,463.985,261.522,644.026,259.044,470.001,90.218,49.821,90.218,335.998,324.967,348.029,17.198,15.365,17.198 +1383,39.329,263.603,463.707,256.054,643.389,263.258,469.469,93.424,44.474,93.424,336.535,323.180,348.080,18.147,15.166,18.147 +1384,39.361,269.260,463.415,249.923,642.141,268.619,468.973,96.582,39.174,96.582,337.148,321.062,348.338,21.397,15.648,21.397 +1385,39.393,274.909,463.795,243.201,639.964,273.973,468.770,100.658,33.793,100.658,337.739,320.894,347.864,21.309,15.813,21.309 +1386,39.424,279.265,463.941,236.049,637.143,278.102,468.591,104.036,28.460,104.036,337.852,319.476,347.438,20.858,15.455,20.858 +1387,39.457,284.786,464.930,229.252,633.884,283.444,469.046,108.052,23.051,108.052,338.377,318.158,347.034,21.128,15.917,21.128 +1388,39.488,290.217,465.789,222.254,630.599,288.535,469.964,111.938,17.819,111.938,338.530,317.195,347.533,21.064,15.606,21.064 +1389,39.521,295.238,467.103,215.095,626.552,293.277,471.131,115.961,12.475,115.961,338.964,315.633,347.925,19.672,15.951,19.672 +1390,39.552,301.312,469.263,208.376,622.517,298.878,473.450,120.174,7.182,120.174,339.028,313.444,348.715,20.346,15.636,20.346 +1391,39.584,306.707,471.832,201.639,618.112,303.716,476.174,124.559,2.045,124.559,339.047,311.373,349.592,18.668,15.098,18.668 +1392,39.616,312.763,475.934,195.779,613.003,309.521,479.921,129.116,177.184,129.116,339.747,310.461,350.026,18.570,15.047,18.570 +1393,39.648,319.609,480.020,189.678,607.081,315.331,484.448,134.010,172.420,134.010,338.690,310.189,351.003,18.396,15.704,18.396 +1394,39.679,319.609,480.020,189.678,607.081,315.331,484.448,134.010,172.420,134.010,338.690,310.189,351.003,18.396,15.704,18.396 +1395,39.708,325.853,484.471,183.973,601.502,320.136,489.490,138.715,168.089,138.715,337.232,309.273,352.447,17.961,15.113,17.961 +1396,39.740,332.623,491.125,178.708,594.749,325.708,496.128,144.114,164.501,144.114,336.743,309.715,353.813,18.810,15.070,18.810 +1397,39.773,342.235,493.950,174.556,588.119,329.633,501.363,149.534,161.866,149.534,326.065,309.604,355.306,16.884,14.251,16.884 +1398,39.803,366.828,492.714,170.004,581.143,333.298,508.128,155.311,159.928,155.311,283.923,308.675,357.730,17.311,12.843,17.311 +1399,39.835,408.686,491.200,166.113,572.549,336.885,516.616,160.507,158.414,160.507,206.965,308.424,359.297,16.534,13.726,16.534 +1400,39.868,385.856,514.315,163.475,563.106,339.677,525.386,166.519,156.768,166.519,265.305,306.998,360.281,16.305,13.264,16.305 +1401,39.900,367.237,531.234,161.028,553.004,341.160,534.259,173.383,154.642,173.383,309.679,307.794,362.184,17.463,13.255,17.463 +1402,39.932,360.023,544.154,159.611,541.269,341.315,544.041,0.345,151.952,0.345,326.018,307.765,363.435,17.150,13.998,17.150 +1403,39.963,354.557,557.072,159.951,528.767,340.795,555.233,7.613,148.815,7.613,337.744,307.147,365.513,17.513,14.994,17.513 +1404,39.994,349.393,570.613,162.740,516.889,338.820,567.619,15.815,145.620,15.815,344.506,307.579,366.482,18.970,15.160,18.970 +1405,40.025,343.679,582.215,167.212,504.328,335.073,578.352,24.176,142.383,24.176,348.040,307.597,366.908,17.690,15.441,17.690 +1406,40.057,336.963,594.780,174.773,493.547,330.131,590.392,32.713,138.504,32.713,349.872,307.521,366.110,18.051,15.959,18.051 +1407,40.088,327.841,606.807,184.500,482.500,322.698,602.245,41.572,135.000,41.572,351.945,306.884,365.694,19.178,16.971,19.178 +1408,40.119,317.292,617.078,195.757,472.728,313.350,612.253,50.757,131.560,50.757,352.437,307.350,364.898,18.204,17.711,18.204 +1409,40.151,304.348,625.219,208.465,464.064,301.795,620.713,60.467,128.509,60.467,354.244,306.903,364.602,20.934,17.956,20.934 +1410,40.185,291.282,632.000,222.184,456.710,289.354,626.759,69.806,125.695,69.806,354.397,307.577,365.565,19.903,17.670,19.903 +1411,40.217,274.322,637.376,237.300,452.647,273.020,631.165,78.155,122.504,78.155,351.406,308.317,364.098,26.245,17.472,26.245 +1412,40.249,264.114,639.521,252.546,451.642,264.033,632.307,89.359,119.176,89.359,347.135,309.050,361.564,26.043,16.771,26.043 +1413,40.280,264.114,639.521,252.546,451.642,264.033,632.307,89.359,119.176,89.359,347.135,309.050,361.564,26.043,16.771,26.043 +1414,40.309,247.015,640.574,268.117,453.020,248.297,631.694,98.213,115.731,98.213,341.401,309.543,359.345,24.050,16.508,24.050 +1415,40.340,228.159,648.066,283.300,456.209,234.715,628.119,108.196,112.543,108.196,314.976,310.762,356.970,21.137,17.130,21.137 +1416,40.373,207.136,647.306,296.587,461.902,220.018,621.310,116.358,109.213,116.358,295.635,311.849,353.661,16.742,17.298,16.742 +1417,40.406,203.017,622.651,308.695,469.711,209.039,614.205,125.487,106.887,125.487,330.266,312.661,351.012,19.120,19.514,19.120 +1418,40.437,194.930,609.382,319.330,479.329,199.103,605.104,134.284,104.294,134.284,336.017,313.865,347.970,18.481,19.554,18.481 +1419,40.469,187.349,597.444,328.601,489.716,191.029,594.660,142.892,101.478,142.892,336.828,314.974,346.057,17.940,19.908,17.940 +1420,40.502,181.778,586.132,335.104,501.489,184.915,584.402,151.128,98.565,151.128,335.949,315.818,343.112,19.871,17.889,19.871 +1421,40.534,177.005,573.889,340.836,514.030,180.268,572.627,158.846,95.749,158.846,334.792,316.922,341.788,19.796,17.736,19.796 +1422,40.567,174.497,562.776,345.268,526.436,178.434,561.859,166.881,92.990,166.881,332.955,317.873,341.041,19.771,18.691,19.771 +1423,40.599,173.743,550.926,347.500,539.000,177.951,550.505,174.289,90.000,174.289,331.248,320.000,339.706,17.911,17.000,17.911 +1424,40.630,174.465,540.309,349.135,550.582,179.577,540.446,1.542,87.492,1.542,329.311,321.393,339.539,17.040,18.231,17.040 +1425,40.661,175.405,530.658,348.807,562.381,181.291,531.507,8.205,84.806,8.205,328.524,323.032,340.416,17.263,18.017,17.263 +1426,40.692,177.703,521.337,347.586,571.564,184.026,523.007,14.797,81.793,14.797,327.995,320.882,341.074,17.658,18.929,17.658 +1427,40.727,181.003,514.146,345.361,581.722,187.205,516.450,20.384,78.977,20.384,328.743,322.432,341.975,18.025,18.841,18.025 +1428,40.758,183.800,505.900,342.772,589.933,191.095,509.548,26.565,76.154,26.565,326.913,322.824,343.226,18.783,18.038,18.783 +1429,40.789,187.746,499.355,339.118,598.318,195.082,503.876,31.645,73.551,31.645,327.104,324.605,344.338,18.274,18.113,18.274 +1430,40.820,190.863,493.499,334.500,606.000,198.803,499.416,36.693,71.565,36.693,325.187,325.398,344.991,18.458,17.393,18.458 +1431,40.851,193.351,488.371,330.103,612.274,202.039,495.926,41.009,69.444,41.009,322.938,325.960,345.965,18.406,17.556,18.406 +1432,40.884,196.956,483.050,325.652,617.532,206.220,492.371,45.174,67.906,45.174,319.645,326.087,345.929,17.620,17.522,17.620 +1433,40.915,199.969,477.453,320.366,622.260,209.752,488.855,49.371,67.671,49.371,316.500,326.136,346.548,19.212,17.493,19.212 +1434,40.946,199.969,477.453,320.366,622.260,209.752,488.855,49.371,67.671,49.371,316.500,326.136,346.548,19.212,17.493,19.212 +1435,40.975,202.062,472.149,316.123,626.241,213.116,486.543,52.477,67.426,52.477,310.773,326.691,347.071,17.295,17.264,17.295 +1436,41.006,205.203,468.321,311.453,629.622,216.193,484.473,55.768,68.356,55.768,308.112,326.812,347.185,17.771,17.232,17.771 +1437,41.039,206.934,462.726,307.759,631.717,218.868,482.458,58.836,69.550,58.836,301.317,326.069,347.439,17.864,17.183,17.864 +1438,41.072,211.264,460.659,304.177,633.440,222.077,480.354,61.232,71.400,61.232,302.471,325.431,347.407,17.325,17.315,17.325 +1439,41.104,214.527,458.252,299.711,633.502,224.227,477.824,63.638,74.320,63.638,302.327,322.213,346.014,17.627,17.178,17.627 +1440,41.137,218.935,458.489,291.457,613.055,222.434,466.208,65.614,77.692,65.614,307.541,277.313,324.489,17.912,17.355,17.912 +1441,41.169,223.473,460.144,289.351,609.672,224.603,462.866,67.461,81.469,67.461,314.928,269.238,320.823,19.462,17.702,19.462 +1442,41.201,226.827,460.718,287.988,609.420,227.039,461.271,68.929,86.941,68.929,319.129,267.633,320.313,20.279,17.814,20.279 +1443,41.234,228.358,461.560,287.925,614.959,228.926,463.130,70.096,92.203,70.096,322.349,276.642,325.689,18.546,17.526,18.546 +1444,41.266,231.076,461.608,286.864,621.904,232.289,465.159,71.142,98.584,71.142,324.436,290.408,331.942,21.286,17.649,21.286 +1445,41.299,231.401,462.892,282.667,636.953,234.169,471.390,71.957,105.195,71.957,327.011,320.381,344.885,19.139,16.561,19.139 +1446,41.329,232.520,463.708,281.107,637.456,234.914,471.329,72.559,112.380,72.559,328.692,321.353,344.668,19.018,16.209,19.018 +1447,41.360,233.635,464.189,277.934,636.070,235.512,470.290,72.897,120.713,72.897,329.082,320.861,341.848,19.336,16.471,19.336 +1448,41.392,234.143,464.850,277.634,635.732,235.757,470.171,73.129,128.360,73.129,330.056,320.772,341.178,18.747,15.976,18.747 +1449,41.423,234.464,465.213,278.328,635.787,236.049,470.535,73.421,135.690,73.421,329.787,318.993,340.892,19.073,13.749,19.073 +1450,41.454,235.450,465.484,278.857,634.743,236.764,469.947,73.585,143.955,73.585,330.643,318.862,339.948,20.228,14.063,20.228 +1451,41.485,235.278,466.212,280.187,634.016,236.424,470.117,73.646,152.140,73.646,331.038,318.059,339.179,18.635,14.044,18.635 +1452,41.518,235.537,466.548,281.656,633.724,236.568,470.057,73.623,160.412,73.623,332.166,318.510,339.479,18.836,13.983,18.836 +1453,41.550,235.941,466.723,283.314,633.524,236.971,470.229,73.623,168.832,73.623,332.166,318.488,339.473,19.514,14.152,19.514 +1454,41.581,235.312,466.908,285.321,633.705,236.413,470.630,73.520,177.302,73.520,332.737,319.447,340.500,18.655,13.686,18.655 +1455,41.612,235.312,466.908,285.321,633.705,236.413,470.630,73.520,177.302,73.520,332.737,319.447,340.500,18.655,13.686,18.655 +1456,41.641,235.226,466.883,287.230,633.728,236.355,470.642,73.279,5.771,73.279,333.806,320.209,341.655,18.796,14.305,18.796 +1457,41.673,234.679,466.520,288.587,634.177,236.046,470.972,72.929,14.191,72.929,333.563,322.337,342.878,18.788,14.498,18.788 +1458,41.706,234.007,466.312,289.791,634.603,235.513,471.108,72.565,22.642,72.565,334.441,323.924,344.494,19.065,14.945,19.065 +1459,41.740,233.207,466.577,291.634,635.951,234.978,472.085,72.174,31.023,72.174,335.115,323.447,346.687,19.118,14.976,19.118 +1460,41.772,232.050,465.650,291.721,636.934,234.326,472.479,71.565,39.806,71.565,333.936,325.470,348.333,19.290,15.108,19.290 +1461,41.803,230.785,465.748,292.591,637.143,233.371,473.198,70.858,47.710,70.858,332.826,326.314,348.598,18.730,15.794,18.730 +1462,41.836,229.800,464.850,292.963,637.517,233.000,473.617,69.948,56.099,69.948,330.385,328.116,349.049,19.069,16.640,19.069 +1463,41.868,226.304,459.860,291.573,638.914,232.062,474.566,68.616,64.618,68.616,317.879,328.817,349.465,17.922,17.542,17.922 +1464,41.900,214.284,434.971,292.696,638.835,230.650,475.488,68.004,73.413,68.004,261.999,328.053,349.393,17.402,16.843,17.402 +1465,41.932,222.422,459.650,290.455,617.581,225.486,466.973,67.291,81.607,67.291,312.150,285.516,328.027,18.701,17.304,18.701 +1466,41.964,223.431,465.304,294.522,616.500,224.663,468.071,65.989,90.934,65.989,321.965,283.174,328.023,19.640,18.655,19.640 +1467,41.995,222.290,468.659,294.845,636.056,226.474,477.564,64.835,99.263,64.835,325.366,324.358,345.044,18.972,18.240,18.972 +1468,42.026,221.848,471.052,296.382,634.443,225.300,477.890,63.211,108.122,63.211,328.258,323.187,343.576,19.416,17.176,19.416 +1469,42.058,219.446,472.641,297.883,631.934,222.586,478.461,61.652,116.715,61.652,328.416,322.016,341.643,18.392,15.705,18.392 +1470,42.089,217.783,473.899,300.257,629.041,220.574,478.751,60.096,125.538,60.096,328.818,321.308,340.012,20.202,15.577,20.202 +1471,42.122,215.201,475.633,302.675,625.751,217.620,479.526,58.154,134.222,58.154,329.017,319.679,338.184,19.613,14.992,19.613 +1472,42.155,212.619,477.256,306.044,622.253,214.688,480.336,56.113,142.898,56.113,330.073,319.803,337.495,19.254,14.279,19.254 +1473,42.187,209.997,478.871,310.112,619.016,211.994,481.579,53.594,151.548,53.594,330.965,319.073,337.694,18.268,13.959,18.268 +1474,42.218,207.080,480.641,314.564,615.574,209.136,483.200,51.226,159.905,51.226,331.888,319.874,338.453,17.855,14.568,17.855 +1475,42.249,204.548,482.842,319.866,611.884,206.694,485.269,48.511,168.499,48.511,333.158,321.835,339.638,18.290,14.542,18.290 +1476,42.281,204.548,482.842,319.866,611.884,206.694,485.269,48.511,168.499,48.511,333.158,321.835,339.638,18.290,14.542,18.290 +1477,42.310,200.743,485.215,324.731,608.967,203.888,488.437,45.694,176.600,45.694,332.316,322.797,341.321,18.126,14.173,18.126 +1478,42.340,197.997,488.044,329.153,605.739,201.563,491.344,42.783,3.879,42.783,332.967,323.292,342.685,18.129,16.065,18.129 +1479,42.373,194.768,490.890,333.808,601.962,199.243,494.568,39.415,11.310,39.415,332.712,325.161,344.296,17.494,16.866,17.494 +1480,42.405,190.473,493.910,338.205,598.306,197.062,498.708,36.064,18.060,36.064,329.150,326.348,345.452,18.223,17.072,18.223 +1481,42.437,184.786,496.137,341.263,596.115,195.412,502.816,32.152,23.643,32.152,321.166,326.953,346.268,16.763,15.079,16.763 +1482,42.469,121.259,468.297,345.076,592.071,193.615,507.393,28.383,29.148,28.383,182.527,325.765,347.013,16.482,15.233,16.482 +1483,42.502,153.584,495.555,348.591,586.953,191.482,512.984,24.697,34.457,24.697,263.862,327.558,347.288,16.834,14.982,16.834 +1484,42.534,168.193,510.439,351.276,581.810,189.740,518.436,20.364,40.236,20.364,301.020,327.375,346.986,18.054,14.974,18.054 +1485,42.566,174.076,521.485,353.299,575.271,187.470,525.072,14.995,46.123,14.995,318.608,326.066,346.340,17.974,16.357,17.974 +1486,42.598,176.124,530.014,354.256,568.435,185.664,531.720,10.141,53.205,10.141,325.461,326.198,344.845,17.895,16.921,17.895 +1487,42.630,175.220,539.035,354.557,559.383,183.504,539.648,4.236,59.744,4.236,327.473,324.997,344.087,17.766,17.420,17.766 +1488,42.661,174.930,547.271,353.475,550.011,182.073,547.088,178.531,67.218,178.531,328.251,323.155,342.541,18.071,17.573,18.071 +1489,42.692,175.444,557.120,350.758,539.208,180.674,556.345,171.573,74.358,171.573,330.944,321.129,341.518,17.806,19.298,17.806 +1490,42.724,176.608,566.895,347.388,527.393,180.752,565.760,164.678,81.435,164.678,333.108,319.327,341.701,19.197,18.580,19.197 +1491,42.754,178.789,576.200,342.440,515.063,182.106,574.832,157.587,88.825,157.587,334.843,316.036,342.021,18.594,19.129,18.594 +1492,42.786,182.539,585.817,336.628,502.288,185.457,584.147,150.225,96.459,150.225,337.004,315.625,343.728,18.720,20.286,18.720 +1493,42.818,187.616,596.314,329.780,490.065,191.043,593.736,143.054,104.184,143.054,337.807,315.060,346.383,18.970,20.573,18.970 +1494,42.850,192.847,607.883,320.785,478.724,197.899,602.885,135.310,111.114,135.310,335.148,313.398,349.362,19.309,19.960,19.309 +1495,42.881,192.847,607.883,320.785,478.724,197.899,602.885,135.310,111.114,135.310,335.148,313.398,349.362,19.309,19.960,19.309 +1496,42.909,193.088,625.698,311.129,469.069,205.143,609.717,127.030,118.087,127.030,312.184,314.237,352.220,16.134,17.751,16.134 +1497,42.941,198.842,647.991,300.383,460.770,216.185,617.449,119.590,125.194,119.590,285.399,313.953,355.643,18.200,17.394,18.200 +1498,42.973,224.185,635.507,287.558,454.633,228.615,623.693,110.556,132.614,110.556,332.748,312.741,357.983,21.067,16.573,21.067 +1499,43.005,239.223,637.727,274.040,449.949,241.268,628.170,102.080,140.143,102.080,342.718,312.537,362.266,21.776,15.578,21.776 +1500,43.038,256.084,639.938,259.907,447.932,256.736,630.220,93.841,147.661,93.841,344.701,310.526,364.182,26.883,15.613,26.883 +1501,43.070,268.747,640.815,246.324,448.450,267.886,630.376,85.283,154.730,85.283,345.220,309.555,366.167,23.169,16.513,23.169 +1502,43.103,281.287,640.426,233.254,451.140,278.500,629.603,75.562,162.112,75.562,345.863,308.323,368.215,23.520,16.939,23.520 +1503,43.136,297.302,637.068,220.748,455.864,292.768,625.868,67.964,169.695,67.964,345.045,306.520,369.212,19.709,16.994,19.709 +1504,43.167,309.978,631.332,209.412,464.187,304.003,621.213,59.441,177.226,59.441,343.115,305.514,366.617,19.787,14.204,19.787 +1505,43.200,323.595,623.965,199.036,472.090,315.132,613.632,50.681,4.970,50.681,339.417,303.723,366.129,18.000,14.640,18.000 +1506,43.236,336.585,616.696,189.181,480.681,323.629,604.756,42.663,12.462,42.663,330.665,304.574,365.901,18.168,15.580,18.168 +1507,43.277,356.579,613.216,181.810,491.118,330.946,595.500,34.651,19.385,34.651,301.747,303.362,364.065,18.231,14.115,18.231 +1508,43.308,404.168,620.183,175.302,501.384,336.585,584.479,27.848,26.131,27.848,209.971,303.216,362.840,16.449,13.772,16.449 +1509,43.340,348.403,577.582,171.254,511.103,340.487,574.597,20.662,32.619,20.662,344.582,305.172,361.503,16.878,15.599,16.878 +1510,43.375,348.436,565.262,167.969,521.752,342.966,563.917,13.820,40.038,13.820,348.743,305.363,360.007,17.479,16.531,17.479 +1511,43.408,349.004,553.969,166.321,533.320,344.430,553.419,6.862,48.233,6.862,349.256,307.006,358.470,17.595,16.873,17.595 +1512,43.441,348.511,542.638,165.850,544.286,344.476,542.587,0.716,56.540,0.716,349.110,308.689,357.181,17.136,16.497,17.136 +1513,43.473,347.940,533.370,165.739,556.106,343.206,533.818,174.596,65.443,174.596,348.041,310.858,357.553,17.113,19.080,17.113 +1514,43.505,346.241,524.249,167.266,566.203,341.351,525.238,168.559,73.091,168.559,347.526,312.832,357.504,19.789,17.597,19.789 +1515,43.538,343.463,516.390,168.702,575.643,338.376,517.921,163.256,81.457,163.256,347.598,314.383,358.221,20.296,18.174,20.296 +1516,43.570,340.462,510.420,170.652,583.972,335.321,512.489,158.076,89.488,158.076,347.818,316.068,358.901,20.024,16.339,20.024 +1517,43.604,337.529,504.571,172.722,591.031,331.818,507.439,153.335,98.054,153.335,346.598,317.768,359.379,19.648,18.532,19.648 +1518,43.637,334.460,499.094,175.304,596.794,328.363,502.746,149.077,105.803,149.077,345.054,316.457,359.267,18.363,17.066,18.363 +1519,43.670,331.757,493.806,177.457,601.636,324.557,498.862,144.919,113.593,144.919,341.296,316.758,358.892,18.647,16.548,18.647 +1520,43.705,332.495,485.881,179.764,605.353,320.956,495.146,141.237,121.827,141.237,328.591,315.861,358.189,17.627,14.092,17.627 +1521,43.738,343.290,468.583,182.202,608.840,317.631,492.046,137.559,129.616,137.559,287.979,315.729,357.517,18.213,13.203,18.213 +1522,43.771,369.000,432.500,185.736,611.608,313.532,487.968,135.000,137.759,135.000,198.697,314.408,355.584,16.263,12.424,16.263 +1523,43.805,321.166,473.497,189.453,613.353,310.994,484.815,131.950,144.819,131.950,323.254,314.917,353.689,16.964,14.176,16.964 +1524,43.839,313.766,475.621,192.816,615.611,308.417,482.219,129.036,152.700,129.036,335.852,313.052,352.839,17.425,13.759,17.425 +1525,43.871,310.165,474.229,196.360,617.206,305.964,479.920,126.431,160.919,126.431,336.944,311.809,351.091,18.697,13.807,18.697 +1526,43.904,307.307,472.552,199.796,618.460,303.954,477.452,124.380,168.759,124.380,338.506,310.845,350.381,19.026,14.676,19.026 +1527,43.938,304.590,471.195,203.794,620.008,301.876,475.448,122.542,176.618,122.542,339.159,310.463,349.248,19.140,14.293,19.140 +1528,43.970,302.459,469.773,207.264,621.454,300.071,473.786,120.759,4.254,120.759,339.379,311.371,348.718,19.643,14.332,19.643 +1529,44.003,299.970,468.102,211.487,623.193,297.830,471.925,119.234,11.913,119.234,339.578,314.371,348.340,18.469,14.627,18.469 +1530,44.038,298.547,467.761,214.594,625.320,296.560,471.536,117.759,19.473,117.759,339.995,315.624,348.525,19.655,14.689,19.655 +1531,44.071,296.932,467.219,217.425,627.153,294.950,471.196,116.484,26.652,116.484,339.436,316.631,348.324,19.309,14.891,19.309 +1532,44.105,295.234,467.159,219.526,629.223,293.326,471.166,115.463,33.826,115.463,339.991,317.844,348.867,19.648,15.373,19.648 +1533,44.138,294.349,467.516,221.364,631.161,292.506,471.542,114.590,40.623,114.590,340.636,319.213,349.493,20.483,16.183,20.483 +1534,44.171,293.722,467.439,222.226,632.995,291.681,472.088,113.703,47.415,113.703,340.352,319.865,350.506,21.506,16.394,21.506 +1535,44.203,291.972,467.701,222.772,634.729,289.906,472.515,113.227,54.349,113.227,340.608,320.387,351.086,19.822,16.290,19.822 +1536,44.235,291.746,468.765,223.026,636.208,289.837,473.321,112.738,60.994,112.738,342.224,321.104,352.103,21.247,16.418,21.247 +1537,44.268,291.634,468.433,221.912,637.741,289.212,474.269,112.535,67.741,112.535,340.928,321.881,353.564,21.263,17.924,21.263 +1538,44.300,291.148,469.028,221.097,637.902,288.823,474.651,112.460,74.024,112.460,341.313,321.290,353.483,20.662,18.003,20.662 +1539,44.332,292.314,469.008,215.936,614.963,293.485,466.184,112.521,80.181,112.521,340.388,274.401,334.272,22.575,18.305,22.575 +1540,44.363,292.466,469.346,216.623,610.596,294.654,464.215,113.088,86.009,113.088,341.668,267.466,330.512,21.565,18.142,21.565 +1541,44.395,293.186,468.484,217.724,610.983,295.038,464.265,113.712,90.754,113.712,340.061,268.187,330.846,20.297,17.498,20.297 +1542,44.426,293.849,468.785,217.073,611.956,295.647,464.862,114.624,95.839,114.624,341.543,274.150,332.913,19.469,18.020,19.469 +1543,44.458,295.856,466.753,215.662,614.527,296.058,466.332,115.618,99.462,115.618,337.711,281.944,336.777,19.357,17.591,19.357 +1544,44.489,297.997,467.440,211.577,616.168,297.371,468.656,117.229,103.134,117.229,338.107,289.101,340.841,19.010,17.302,19.010 +1545,44.521,301.333,467.727,210.537,613.110,300.675,468.902,119.249,104.931,119.249,337.032,286.328,339.727,19.230,16.555,19.230 +1546,44.552,303.071,469.412,207.636,611.245,302.812,469.837,121.338,106.470,121.338,339.562,286.464,340.556,18.647,16.486,18.647 +1547,44.583,306.444,470.786,201.406,614.970,303.957,474.496,123.843,107.784,123.843,338.637,300.056,347.570,18.349,16.493,18.349 +1548,44.614,306.444,470.786,201.406,614.970,303.957,474.496,123.843,107.784,123.843,338.637,300.056,347.570,18.349,16.493,18.349 +1549,44.643,309.480,473.860,201.865,600.136,310.923,471.936,126.870,107.776,126.870,340.800,273.501,335.990,18.200,16.254,18.200 +1550,44.674,313.495,476.816,196.600,593.700,315.357,474.598,130.030,108.435,130.030,340.953,268.477,335.161,18.959,16.760,18.959 +1551,44.707,317.328,480.931,193.724,592.772,319.162,479.005,133.603,106.368,133.603,343.103,272.289,337.784,18.931,17.646,18.931 +1552,44.739,321.604,486.359,190.224,583.160,325.180,483.116,137.793,104.931,137.793,344.004,261.334,334.350,19.328,18.036,19.328 +1553,44.771,326.090,491.052,183.571,585.165,326.999,490.343,142.043,103.191,142.043,345.128,275.473,342.823,18.658,18.286,18.658 +1554,44.802,330.385,496.077,180.129,573.923,332.178,494.881,146.310,101.232,146.310,345.023,263.778,340.713,18.305,18.727,18.305 +1555,44.836,335.877,503.964,176.870,566.910,337.260,503.201,151.113,98.130,151.113,345.581,262.054,342.421,22.101,18.102,22.101 +1556,44.869,339.307,509.560,171.168,562.205,338.507,509.903,156.743,96.992,156.743,347.045,267.795,348.785,18.238,19.580,18.238 +1557,44.900,343.338,517.357,167.713,560.604,340.155,518.372,162.312,93.480,162.312,347.558,281.453,354.241,18.406,20.125,18.406 +1558,44.932,346.520,526.147,164.733,567.483,340.487,527.380,168.457,91.292,168.457,348.131,313.304,360.446,18.036,19.799,18.036 +1559,44.964,348.944,535.865,165.242,555.439,343.631,536.333,174.971,88.452,174.971,348.087,309.319,358.755,16.791,17.912,16.791 +1560,44.995,350.014,545.986,164.790,545.482,344.534,545.831,1.618,86.379,1.618,348.398,311.200,359.364,17.219,17.737,17.219 +1561,45.025,349.338,557.562,166.469,533.564,344.754,556.865,8.653,83.729,8.653,350.250,310.199,359.524,17.258,18.023,17.258 +1562,45.057,347.320,568.618,169.061,521.225,343.171,567.411,16.224,81.293,16.224,351.519,309.437,360.161,17.441,17.793,17.441 +1563,45.088,343.391,581.015,173.665,509.080,339.633,579.358,23.800,78.842,23.800,352.216,308.289,360.430,17.492,18.204,17.492 +1564,45.122,337.644,592.372,179.019,496.649,333.838,589.998,31.954,76.414,31.954,352.552,307.782,361.525,17.927,17.666,17.927 +1565,45.155,329.940,604.353,186.134,485.737,325.911,600.961,40.092,73.856,40.092,351.738,307.001,362.272,18.844,18.857,18.844 +1566,45.188,320.278,615.083,194.986,476.001,316.424,610.733,48.459,71.440,48.459,351.129,306.740,362.753,18.976,19.278,18.976 +1567,45.219,309.910,625.520,206.134,467.757,305.868,619.222,57.303,69.001,57.303,347.713,306.500,362.680,18.242,19.530,18.242 +1568,45.252,324.969,696.161,219.292,460.669,294.667,625.962,66.652,67.310,66.652,210.341,305.307,363.261,18.732,17.824,18.732 +1569,45.285,283.489,652.067,233.602,456.212,277.677,632.078,73.788,64.440,73.788,320.723,305.980,362.357,25.123,18.317,25.123 +1570,45.316,270.501,642.960,248.928,453.769,269.618,633.145,84.855,61.579,84.855,341.311,305.808,361.019,24.979,20.269,24.979 +1571,45.347,270.501,642.960,248.928,453.769,269.618,633.145,84.855,61.579,84.855,341.311,305.808,361.019,24.979,20.269,24.979 +1572,45.376,255.711,641.182,264.353,453.588,256.239,633.332,93.849,59.036,93.849,344.030,306.639,359.766,25.859,20.923,25.859 +1573,45.408,239.298,636.530,280.227,455.688,240.660,630.624,102.981,55.369,102.981,346.586,306.999,358.707,21.586,21.139,21.586 +1574,45.440,225.875,630.353,295.402,459.926,228.058,624.906,111.841,52.565,111.841,344.647,308.298,356.383,20.301,21.801,20.301 +1575,45.472,214.099,623.171,309.137,466.411,217.175,618.071,121.092,49.658,121.092,342.816,309.692,354.726,22.311,21.958,22.311 +1576,45.503,202.220,613.370,319.572,476.351,205.481,609.498,130.109,47.490,130.109,340.546,311.755,350.671,20.664,17.569,20.664 +1577,45.535,192.832,603.730,330.250,485.753,197.452,599.679,138.759,44.621,138.759,337.631,313.995,349.920,21.477,16.905,21.477 +1578,45.569,183.867,591.794,338.775,496.749,190.035,587.826,147.249,42.089,147.249,334.066,316.710,348.734,18.921,16.877,18.921 +1579,45.602,177.468,580.429,345.886,507.803,185.610,576.679,155.273,39.251,155.273,330.852,318.732,348.781,20.198,16.932,20.198 +1580,45.634,172.651,567.844,351.024,518.520,182.722,564.801,163.189,35.957,163.189,327.946,321.213,348.989,18.278,16.760,18.278 +1581,45.666,169.091,556.460,354.154,529.769,181.682,554.433,170.853,33.690,170.853,322.892,322.835,348.398,17.102,16.086,17.102 +1582,45.698,165.893,545.193,355.914,541.487,181.872,544.743,178.386,31.130,178.386,316.156,324.820,348.128,17.078,15.433,17.078 +1583,45.729,162.618,535.026,355.934,552.019,182.876,536.643,4.564,29.055,4.564,306.818,325.478,347.465,18.341,15.443,18.341 +1584,45.761,155.675,523.109,355.189,562.246,184.739,528.896,11.260,27.431,11.260,288.092,326.069,347.362,16.717,15.325,16.717 +1585,45.792,143.394,508.518,353.295,571.398,187.163,521.649,16.699,26.405,16.699,255.452,326.471,346.843,16.475,15.646,16.475 +1586,45.822,118.078,487.330,350.906,580.154,189.856,516.317,21.991,26.147,21.991,191.654,326.490,346.474,16.387,15.179,16.387 +1587,45.854,119.651,474.217,348.434,588.579,193.207,511.309,26.761,26.139,26.761,182.029,326.050,346.786,16.255,14.837,16.255 +1588,45.885,178.106,494.820,344.596,595.259,196.464,505.854,31.007,26.068,31.007,303.205,326.951,346.043,16.876,14.314,16.876 +1589,45.916,190.074,495.298,341.008,600.867,199.365,501.927,35.509,25.292,35.509,322.708,327.439,345.536,16.823,15.450,16.823 +1590,45.947,190.074,495.298,341.008,600.867,199.365,501.927,35.509,25.292,35.509,322.708,327.439,345.536,16.823,15.450,16.823 +1591,45.976,195.943,492.270,336.780,606.139,202.603,497.813,39.772,24.108,39.772,327.524,326.837,344.855,17.296,16.222,17.296 +1592,46.008,200.443,488.581,332.260,610.653,205.754,493.676,43.815,22.036,43.815,329.822,326.638,344.541,18.186,16.994,18.186 +1593,46.040,204.368,484.442,327.010,615.106,208.971,489.495,47.668,19.235,47.668,331.028,326.386,344.698,18.593,16.299,18.593 +1594,46.073,208.144,481.583,321.460,618.611,211.601,485.909,51.379,15.822,51.379,333.425,325.680,344.499,17.786,16.249,17.786 +1595,46.105,212.115,478.469,315.598,621.674,214.814,482.327,55.028,11.944,55.028,334.489,324.981,343.906,18.095,15.823,18.095 +1596,46.138,215.607,474.760,309.241,624.069,218.010,478.711,58.690,7.773,58.690,333.952,324.137,343.201,18.743,15.466,18.743 +1597,46.171,219.482,471.540,303.272,626.228,221.628,475.588,62.066,3.260,62.066,333.506,322.730,342.670,19.420,15.778,19.420 +1598,46.203,223.484,469.108,297.908,627.889,225.260,472.990,65.421,178.719,65.421,333.622,322.188,342.161,19.395,15.290,19.395 +1599,46.235,228.044,466.967,292.096,629.741,229.510,470.688,68.505,173.865,68.505,333.847,321.127,341.846,20.322,15.516,20.322 +1600,46.267,232.164,465.281,286.718,631.482,233.480,469.196,71.417,168.981,71.417,333.321,321.234,341.582,20.379,15.656,20.379 +1601,46.300,236.473,464.149,281.350,632.987,237.588,468.093,74.205,164.004,74.205,332.959,319.363,341.157,20.142,15.496,20.142 +1602,46.331,239.716,463.336,276.201,634.632,240.718,467.717,77.106,158.910,77.106,332.261,319.993,341.249,18.486,15.189,18.486 +1603,46.362,243.633,462.705,271.181,635.821,244.462,467.302,79.768,153.778,79.768,331.829,318.882,341.171,18.147,14.541,18.147 +1604,46.393,247.446,462.302,265.869,637.522,248.143,467.390,82.203,148.501,82.203,331.656,318.653,341.928,17.698,14.511,17.698 +1605,46.425,251.336,462.159,260.966,638.785,251.848,467.915,84.920,143.168,84.920,330.453,319.400,342.011,17.376,14.186,17.376 +1606,46.456,254.834,462.358,256.116,639.973,255.087,468.294,87.563,137.816,87.563,331.253,318.786,343.135,17.410,13.824,17.410 +1607,46.487,258.500,461.000,251.284,640.466,258.500,468.233,90.000,132.544,90.000,330.000,319.864,344.466,17.000,13.877,17.000 +1608,46.519,262.573,460.096,246.397,641.285,262.174,468.734,92.646,127.164,92.646,328.897,320.021,346.191,17.397,13.907,17.397 +1609,46.551,266.652,458.394,241.408,641.190,265.645,469.016,95.417,122.055,95.417,326.046,320.439,347.386,17.216,14.733,17.216 +1610,46.582,270.950,455.850,236.634,641.293,268.996,469.529,98.130,116.896,98.130,321.592,321.135,349.228,17.395,15.743,17.395 +1611,46.614,270.950,455.850,236.634,641.293,268.996,469.529,98.130,116.896,98.130,321.592,321.135,349.228,17.395,15.743,17.395 +1612,46.643,277.071,445.405,234.479,641.555,272.286,469.884,101.059,110.556,101.059,301.584,322.331,351.470,17.273,17.907,17.273 +1613,46.674,295.235,391.559,231.082,635.796,276.174,467.806,104.036,105.297,104.036,190.633,311.623,347.821,17.705,17.544,17.705 +1614,46.705,283.755,460.358,227.072,626.839,282.364,465.227,105.945,99.866,105.945,331.039,297.620,341.166,19.780,17.134,19.780 +1615,46.739,286.457,463.565,222.503,617.964,286.821,462.540,109.544,94.086,109.544,338.149,283.421,335.973,19.460,17.669,19.460 +1616,46.772,292.062,466.380,216.616,613.918,293.081,464.018,113.334,88.493,113.334,340.998,280.087,335.854,21.371,17.599,21.371 +1617,46.805,296.727,467.855,210.314,612.282,297.396,466.529,116.744,83.157,116.744,341.667,281.659,338.697,20.948,17.792,20.948 +1618,46.837,300.906,470.361,209.508,629.810,297.818,475.651,120.271,77.087,120.271,343.063,322.900,355.313,20.005,17.260,20.005 +1619,46.870,306.442,472.786,205.000,626.345,302.791,478.194,124.023,71.854,124.023,341.962,321.925,355.012,20.077,16.426,20.077 +1620,46.902,311.717,476.999,200.922,622.314,308.172,481.542,127.960,66.743,127.960,342.399,320.652,353.923,20.561,16.365,20.561 +1621,46.934,316.585,481.530,197.169,618.226,313.224,485.240,132.180,61.390,132.180,342.938,318.676,352.950,20.032,16.361,20.032 +1622,46.967,321.716,485.171,192.613,611.896,318.323,488.379,136.600,55.939,136.600,343.070,316.768,352.409,18.196,16.324,18.196 +1623,46.997,327.110,490.642,188.414,605.834,323.682,493.391,141.276,50.509,141.276,342.957,314.763,351.745,18.325,16.571,18.325 +1624,47.028,331.743,495.859,183.408,598.108,328.175,498.271,145.944,45.134,145.944,343.080,313.252,351.693,18.181,16.682,18.181 +1625,47.060,336.409,502.333,178.906,589.600,332.848,504.281,151.314,39.681,151.314,343.887,311.263,352.004,18.257,16.005,18.257 +1626,47.091,340.389,509.740,174.539,580.283,336.944,511.214,156.832,34.335,156.832,345.472,309.011,352.965,19.178,16.186,19.178 +1627,47.123,344.844,517.624,170.360,569.756,340.229,519.038,162.970,29.079,162.970,344.895,308.093,354.549,18.537,16.186,18.537 +1628,47.154,348.050,526.759,167.632,558.260,342.748,527.772,169.189,24.216,169.189,344.657,306.952,355.453,17.681,16.791,17.681 +1629,47.186,351.189,536.486,165.509,547.200,343.903,536.947,176.381,19.808,176.381,342.770,305.413,357.371,18.090,15.727,18.090 +1630,47.218,355.947,547.612,164.897,535.877,343.990,547.047,2.705,16.018,2.705,334.902,305.498,358.843,16.611,14.638,16.611 +1631,47.249,385.528,564.286,165.566,524.588,343.227,557.125,9.609,13.211,9.609,275.393,304.621,361.199,16.847,13.584,16.847 +1632,47.280,385.528,564.286,165.566,524.588,343.227,557.125,9.609,13.211,9.609,275.393,304.621,361.199,16.847,13.584,16.847 +1633,47.309,413.825,589.920,167.961,512.551,340.682,567.932,16.731,10.660,16.731,209.952,303.343,362.704,16.515,13.377,16.515 +1634,47.341,364.727,591.395,172.277,500.975,337.022,578.849,24.362,7.779,24.362,303.571,303.736,364.398,16.792,14.104,16.792 +1635,47.372,347.152,600.213,178.645,488.991,330.989,589.788,32.822,4.131,32.822,326.849,302.379,365.317,18.597,15.271,18.597 +1636,47.404,335.035,610.239,186.500,478.500,323.711,600.368,41.077,0.000,41.077,336.975,303.000,367.020,17.802,15.000,17.802 +1637,47.437,322.670,619.578,196.279,469.359,314.446,609.919,49.586,175.978,49.586,341.883,303.867,367.255,18.801,14.581,18.801 +1638,47.470,308.906,629.057,207.863,462.060,302.957,619.113,59.108,171.838,59.108,344.019,304.056,367.193,20.874,14.229,20.874 +1639,47.502,294.840,636.065,220.627,454.957,290.550,625.491,67.921,167.809,67.921,345.800,304.240,368.622,19.974,17.353,19.974 +1640,47.534,279.086,640.856,234.777,450.742,276.419,629.986,76.215,163.610,76.215,345.623,305.022,368.007,25.471,18.002,25.471 +1641,47.565,267.398,642.064,249.826,449.033,266.757,631.055,86.668,159.596,86.668,343.340,306.275,365.396,24.541,16.812,24.541 +1642,47.596,251.774,642.137,264.953,449.396,252.939,631.285,96.129,155.883,96.129,342.434,308.078,364.263,25.071,16.296,25.071 +1643,47.628,235.104,638.993,280.486,452.474,237.956,628.329,104.971,152.144,104.971,339.667,310.153,361.745,20.588,15.337,20.588 +1644,47.659,220.134,634.606,294.739,457.783,225.495,622.812,114.444,148.690,114.444,331.870,311.968,357.781,21.766,14.366,21.766 +1645,47.690,202.617,629.741,307.827,464.573,212.851,614.612,124.077,145.430,124.077,318.451,313.757,354.982,19.733,15.099,19.733 +1646,47.721,174.030,634.630,319.070,473.028,202.517,604.936,133.811,142.021,133.811,269.452,315.480,351.751,16.533,14.403,16.533 +1647,47.754,154.430,624.472,328.471,483.188,193.380,594.059,142.017,138.731,142.017,250.590,316.174,349.423,16.066,14.404,16.066 +1648,47.786,177.006,589.034,335.930,494.917,187.034,583.341,150.417,135.339,150.417,323.218,318.234,346.280,18.521,14.276,18.521 +1649,47.818,176.345,573.398,341.121,506.368,181.693,571.281,158.409,132.436,158.409,332.754,318.449,344.257,18.791,14.718,18.791 +1650,47.849,176.345,573.398,341.121,506.368,181.693,571.281,158.409,132.436,158.409,332.754,318.449,344.257,18.791,14.718,18.791 +1651,47.878,174.306,560.850,344.442,518.810,178.563,559.827,166.477,129.401,166.477,332.986,319.440,341.743,18.510,15.179,18.510 +1652,47.909,173.338,549.423,346.074,531.589,177.063,549.056,174.359,126.240,174.359,332.334,319.981,339.820,17.249,15.169,17.249 +1653,47.940,173.901,539.052,345.961,544.687,176.955,539.151,1.860,123.170,1.860,332.085,321.171,338.195,16.686,15.259,16.686 +1654,47.971,175.587,529.677,344.990,556.749,178.533,530.131,8.762,120.189,8.762,331.179,320.893,337.139,17.493,15.592,17.493 +1655,48.002,178.250,520.750,342.542,568.699,181.130,521.535,15.255,117.300,15.255,330.300,322.025,336.270,17.103,15.823,17.103 +1656,48.035,181.637,512.418,339.718,579.744,184.911,513.712,21.577,114.297,21.577,329.444,322.684,336.484,17.842,15.937,17.842 +1657,48.072,185.220,506.076,336.249,589.930,188.909,507.991,27.440,111.251,27.440,328.732,322.370,337.045,17.716,16.051,17.716 +1658,48.105,189.429,499.837,331.440,599.132,193.305,502.344,32.905,108.737,32.905,327.877,323.190,337.109,17.532,17.029,17.532 +1659,48.139,194.291,494.001,326.914,606.620,198.206,497.101,38.367,105.911,38.367,327.796,321.835,337.784,18.196,16.771,18.196 +1660,48.172,198.728,489.113,323.682,613.929,203.507,493.573,43.025,102.529,43.025,326.879,321.708,339.953,17.789,17.138,17.789 +1661,48.203,203.146,484.413,318.580,619.927,208.055,489.815,47.742,99.806,47.742,326.652,321.943,341.249,18.037,17.761,18.037 +1662,48.235,208.023,479.682,313.899,617.296,211.134,483.740,52.524,97.253,52.524,326.807,306.509,337.033,18.729,17.874,18.729 +1663,48.268,213.053,475.669,308.551,610.866,213.523,476.394,57.036,95.274,57.036,327.331,285.739,329.060,20.336,17.924,20.336 +1664,48.300,217.085,470.716,302.353,610.222,217.301,471.101,60.784,93.302,60.784,324.992,278.287,325.875,19.346,17.932,19.346 +1665,48.331,221.605,466.535,296.153,612.444,221.935,467.233,64.739,91.736,64.739,324.451,277.418,325.995,20.707,17.537,20.707 +1666,48.362,225.222,462.388,290.193,610.996,225.487,463.042,67.984,90.788,67.984,321.431,272.126,322.841,19.356,17.962,19.356 +1667,48.394,229.494,459.815,284.929,612.984,229.847,460.863,71.350,90.585,71.350,321.283,272.118,323.495,19.246,17.530,19.246 +1668,48.425,232.999,455.803,280.275,613.476,233.819,458.745,74.417,91.123,74.417,316.937,271.242,323.046,19.008,17.742,19.008 +1669,48.456,236.749,453.760,276.311,614.973,237.650,457.716,77.164,92.217,77.164,315.719,272.570,323.833,18.204,18.257,18.204 +1670,48.491,241.495,454.694,272.626,618.356,242.110,458.125,79.830,94.399,79.830,319.232,276.721,326.204,18.416,17.870,18.416 +1671,48.522,245.135,453.921,269.676,619.959,245.765,458.420,82.022,97.189,82.022,317.503,277.602,326.589,17.567,18.118,17.567 +1672,48.554,249.040,454.593,265.722,628.446,249.794,462.079,84.244,100.886,84.244,319.205,293.544,334.253,17.291,18.054,17.291 +1673,48.585,252.657,456.161,261.878,631.691,253.148,463.635,86.244,105.422,86.244,321.555,298.572,336.534,17.336,16.754,17.336 +1674,48.617,255.647,458.363,254.517,639.527,255.920,467.611,88.305,111.400,88.305,325.094,315.125,343.599,17.229,16.394,17.229 +1675,48.649,258.500,459.500,250.418,641.651,258.500,468.825,90.000,117.306,90.000,327.000,319.417,345.651,17.000,16.052,17.000 +1676,48.680,258.500,459.500,250.418,641.651,258.500,468.825,90.000,117.306,90.000,327.000,319.417,345.651,17.000,16.052,17.000 +1677,48.709,261.098,460.071,248.736,642.183,260.850,469.159,91.562,122.856,91.562,328.396,320.020,346.580,17.321,14.316,17.321 +1678,48.741,263.593,460.588,245.707,640.411,263.142,468.804,93.142,130.101,93.142,328.153,318.324,344.610,17.280,13.929,17.280 +1679,48.774,265.685,461.634,243.394,639.233,265.155,468.273,94.564,137.726,94.564,330.981,317.367,344.299,18.261,14.059,18.261 +1680,48.805,267.965,461.657,241.076,637.922,267.323,467.652,96.116,145.578,96.116,332.135,316.438,344.194,19.176,13.475,19.176 +1681,48.837,270.507,461.701,239.025,636.523,269.800,467.000,97.595,153.759,97.595,333.515,316.190,344.207,21.014,14.275,21.014 +1682,48.869,273.444,461.421,237.066,635.109,272.571,466.492,99.768,162.099,99.768,334.103,315.599,344.394,20.461,13.933,20.461 +1683,48.901,276.081,461.426,234.959,633.757,275.101,466.211,101.577,170.538,101.577,334.620,315.317,344.387,20.855,13.974,20.855 +1684,48.933,278.600,461.381,233.453,633.032,277.541,465.829,103.392,179.091,103.392,336.591,315.056,345.736,21.170,13.601,21.170 +1685,48.969,281.143,462.039,231.813,632.202,280.014,466.131,105.430,7.754,105.430,337.331,316.479,345.820,20.741,14.289,20.741 +1686,49.009,283.713,462.752,229.536,631.685,282.454,466.743,107.515,16.444,107.515,338.070,317.326,346.441,19.827,14.724,19.827 +1687,49.042,287.252,463.912,227.430,631.520,285.816,467.939,109.627,25.155,109.627,338.824,318.016,347.376,20.472,15.218,20.472 +1688,49.075,291.262,465.703,224.764,631.613,289.649,469.713,111.917,33.831,111.917,340.192,318.675,348.837,21.711,15.014,21.711 +1689,49.111,294.249,467.433,221.962,631.869,292.342,471.645,114.359,42.634,114.359,340.732,318.569,349.978,20.730,14.971,20.730 +1690,49.143,298.623,469.317,218.499,632.178,296.110,474.264,116.931,51.116,116.931,340.781,318.597,351.880,22.303,15.267,22.303 +1691,49.175,301.282,471.306,213.549,630.416,298.590,476.033,119.664,59.578,119.664,341.595,320.894,352.475,20.250,16.179,20.250 +1692,49.207,304.416,473.809,208.551,629.186,301.402,478.536,122.518,68.348,122.518,342.677,321.619,353.889,19.299,15.805,19.299 +1693,49.238,308.385,476.698,203.129,626.877,304.939,481.489,125.724,76.675,125.724,343.151,321.398,354.954,19.428,17.515,19.428 +1694,49.271,311.909,479.806,196.859,623.977,307.950,484.695,129.005,86.299,129.005,343.727,321.075,356.308,18.715,19.005,18.715 +1695,49.304,316.005,482.625,192.768,600.691,316.477,482.111,132.614,94.814,132.614,343.444,282.275,342.049,18.163,18.555,18.163 +1696,49.335,320.433,485.792,186.530,608.772,316.957,489.088,136.526,102.958,136.526,344.408,307.979,353.989,17.588,18.628,17.588 +1697,49.369,325.929,489.475,187.365,589.039,326.227,489.231,140.639,111.529,140.639,342.094,278.310,341.323,18.531,17.265,18.531 +1698,49.403,332.865,491.392,174.701,599.881,323.000,498.360,144.768,120.043,144.768,335.246,316.927,359.401,18.016,15.895,18.016 +1699,49.435,341.628,494.321,170.193,591.259,327.205,502.814,149.511,128.601,149.511,326.876,315.001,360.352,18.298,15.926,18.298 +1700,49.468,351.706,498.267,166.767,581.718,331.373,507.893,154.666,136.873,154.666,315.737,313.021,360.729,18.649,16.278,18.649 +1701,49.500,363.607,504.146,164.255,572.324,335.215,514.405,160.133,145.472,160.133,300.560,311.231,360.937,17.869,15.245,17.869 +1702,49.532,377.707,512.380,162.305,562.594,338.544,522.336,165.735,154.359,165.735,280.632,309.583,361.449,16.624,12.513,16.624 +1703,49.563,395.681,522.808,162.028,552.519,341.369,530.702,171.730,162.342,171.730,251.462,308.401,361.228,16.501,13.851,16.501 +1704,49.594,412.958,537.777,162.252,541.973,342.754,540.198,178.025,170.789,178.025,220.421,306.936,360.912,16.370,13.099,16.370 +1705,49.625,419.250,556.542,163.499,531.449,343.300,550.124,4.830,178.641,4.830,209.030,305.270,361.471,16.280,14.193,16.280 +1706,49.656,418.042,576.802,166.232,520.745,342.875,561.021,11.857,6.813,11.857,208.688,305.012,362.299,16.378,14.305,16.378 +1707,49.686,413.378,597.902,170.459,510.263,340.490,572.828,18.983,14.797,18.983,208.111,304.682,362.271,16.847,14.867,16.847 +1708,49.719,405.480,619.027,175.823,500.730,336.733,584.229,26.847,22.730,26.847,208.447,304.085,362.552,16.688,14.994,16.688 +1709,49.750,405.480,619.027,175.823,500.730,336.733,584.229,26.847,22.730,26.847,208.447,304.085,362.552,16.688,14.994,16.688 +1710,49.779,394.757,640.008,182.949,490.737,330.936,595.644,34.804,30.500,34.804,207.330,303.554,362.781,16.693,15.509,16.693 +1711,49.810,376.229,655.677,191.617,481.562,323.219,606.454,42.879,37.836,42.879,218.163,303.722,362.840,16.802,15.404,16.802 +1712,49.842,344.061,654.056,201.390,473.616,313.642,615.951,51.399,45.470,51.399,265.024,302.701,362.539,17.390,14.646,17.390 +1713,49.874,319.295,653.165,212.825,466.365,302.340,624.015,59.816,52.409,59.816,295.119,304.366,362.563,18.285,17.313,18.285 +1714,49.905,299.229,652.468,240.979,489.682,296.448,645.113,69.288,61.056,69.288,314.280,238.920,330.006,20.601,18.410,20.601 +1715,49.937,281.684,652.641,249.983,485.323,280.689,647.972,77.963,68.459,77.963,321.407,242.673,330.954,25.349,18.432,25.349 +1716,49.970,266.409,651.876,259.854,484.024,266.272,648.647,87.559,75.793,87.559,323.028,244.980,329.493,24.361,18.505,24.361 +1717,50.003,249.219,646.632,270.275,485.601,249.026,648.226,96.905,83.056,96.905,331.213,242.834,328.001,24.867,18.422,24.867 +1718,50.036,232.920,641.363,280.549,486.004,232.559,642.665,105.484,90.431,105.484,330.277,248.068,327.574,21.358,18.330,21.358 +1719,50.071,219.361,631.943,290.152,484.019,218.824,633.123,114.499,97.224,114.499,333.107,261.485,330.515,21.597,18.220,21.597 +1720,50.108,206.111,622.875,300.458,486.355,206.086,622.913,123.435,104.954,123.435,332.007,269.840,331.915,20.087,18.027,20.087 +1721,50.140,195.380,611.162,309.368,490.534,195.171,611.393,132.248,112.380,132.248,333.111,277.131,332.488,18.398,16.209,18.398 +1722,50.172,187.508,601.294,319.064,494.751,188.763,600.270,140.752,119.699,140.752,332.094,287.507,335.333,20.308,16.118,20.308 +1723,50.205,181.334,589.338,326.214,502.498,182.746,588.479,148.696,127.924,148.696,331.204,291.887,334.511,19.952,15.080,19.952 +1724,50.237,176.456,578.010,332.300,512.294,178.379,577.176,156.557,135.248,156.557,329.862,294.178,334.056,19.234,13.928,19.234 +1725,50.272,174.214,566.462,345.736,515.493,180.944,564.510,163.826,142.815,163.826,329.831,319.418,343.846,18.651,14.203,18.651 +1726,50.304,172.369,556.360,337.029,534.180,173.635,556.162,171.112,150.154,171.112,327.095,291.848,329.658,18.154,13.338,18.154 +1727,50.337,173.572,546.242,351.443,537.898,180.724,546.013,178.167,157.891,178.167,327.472,321.455,341.783,16.751,14.910,16.751 +1728,50.371,174.228,537.145,352.778,548.750,182.176,537.833,4.946,165.285,4.946,325.859,322.391,341.815,16.630,14.215,16.630 +1729,50.405,176.283,528.146,352.521,559.682,184.292,529.721,11.129,173.355,11.129,325.371,323.357,341.697,16.873,13.973,16.873 +1730,50.439,178.634,519.841,352.014,569.927,187.065,522.412,16.958,1.359,16.958,325.641,324.265,343.270,16.973,13.297,16.973 +1731,50.472,180.939,511.845,349.449,579.296,189.773,515.531,22.652,9.432,22.652,324.687,326.168,343.833,16.837,13.753,16.837 +1732,50.505,183.410,504.070,346.535,587.798,193.118,509.182,27.771,17.432,27.771,322.807,326.729,344.751,16.826,14.148,16.826 +1733,50.538,184.425,495.682,343.172,596.098,196.855,503.629,32.593,25.613,32.593,316.664,326.100,346.170,16.712,13.948,16.712 +1734,50.570,178.594,482.161,338.600,603.344,200.130,498.552,37.275,33.579,37.275,293.176,326.998,347.304,16.936,13.785,16.936 +1735,50.604,141.408,439.373,333.644,610.121,203.118,494.731,41.894,42.028,41.894,182.625,327.270,348.427,16.913,14.550,16.913 +1736,50.636,165.490,447.537,327.883,615.346,207.138,489.971,45.535,50.150,45.535,229.198,327.903,348.112,16.996,14.696,16.996 +1737,50.669,191.212,465.205,321.732,620.627,209.726,487.085,49.764,58.392,49.764,291.261,329.133,348.585,17.088,15.657,17.088 +1738,50.701,202.010,468.372,316.138,625.293,213.731,484.028,53.181,66.644,53.181,309.803,328.938,348.917,17.388,16.045,17.388 +1739,50.732,209.142,469.269,310.581,629.115,217.380,481.843,56.768,74.650,56.768,318.461,328.552,348.527,18.575,16.828,18.575 +1740,50.765,215.181,468.994,301.553,608.700,215.793,470.050,59.878,83.290,59.878,323.487,280.068,325.928,19.486,17.409,19.486 +1741,50.796,219.995,468.447,299.016,629.601,223.788,475.868,62.928,92.291,62.928,325.583,315.747,342.251,19.649,19.345,19.649 +1742,50.827,224.003,467.483,292.636,636.213,227.769,475.889,65.869,100.641,65.869,327.245,324.903,345.667,19.243,17.148,19.243 +1743,50.859,228.573,467.011,287.332,637.771,231.542,474.581,68.587,108.905,68.587,328.323,324.485,344.587,19.970,16.213,19.970 +1744,50.893,231.997,466.491,281.455,637.418,234.117,472.726,71.222,117.897,71.222,329.155,322.531,342.327,19.068,16.064,19.068 +1745,50.924,235.314,465.474,277.966,638.047,237.095,471.622,73.845,125.538,73.845,329.650,321.657,342.450,18.642,13.950,18.642 +1746,50.956,238.719,464.835,274.158,637.732,240.049,470.272,76.253,133.831,76.253,330.340,320.383,341.536,18.143,13.649,18.143 +1747,50.987,242.231,463.654,271.037,637.635,243.312,469.059,78.690,141.886,78.690,330.456,319.416,341.480,18.631,13.850,18.631 +1748,51.020,245.326,462.713,267.710,636.734,246.098,467.622,81.069,150.350,81.069,330.896,318.773,340.835,17.979,14.119,17.979 +1749,51.052,248.378,461.688,264.730,636.800,248.955,466.658,83.382,158.347,83.382,331.648,317.915,341.654,17.276,13.903,17.276 +1750,51.083,251.565,461.495,262.240,636.304,251.889,465.912,85.799,166.629,85.799,332.528,318.479,341.385,17.349,13.971,17.349 +1751,51.114,251.565,461.495,262.240,636.304,251.889,465.912,85.799,166.629,85.799,332.528,318.479,341.385,17.349,13.971,17.349 +1752,51.143,254.919,460.538,259.673,635.974,255.074,464.925,87.979,174.699,87.979,333.428,317.697,342.208,17.460,13.991,17.460 +1753,51.176,258.068,460.983,257.111,636.204,258.048,465.090,90.279,2.759,90.279,334.020,318.642,342.234,17.346,14.164,17.346 +1754,51.207,261.535,460.455,253.776,636.310,261.340,464.606,92.688,10.491,92.688,335.429,319.494,343.740,17.544,14.895,17.544 +1755,51.238,264.899,460.748,251.065,636.721,264.544,465.118,94.641,17.625,94.641,335.494,320.053,344.262,19.074,16.371,19.074 +1756,51.271,269.007,460.940,247.812,637.285,268.451,465.527,96.911,25.327,96.911,336.747,320.304,345.987,20.516,15.773,20.516 +1757,51.304,273.713,462.188,244.383,638.026,272.910,466.789,99.904,32.347,99.904,337.841,320.975,347.183,20.546,16.868,20.546 +1758,51.336,276.588,463.090,240.374,638.654,275.519,468.077,102.095,39.837,102.095,338.110,321.756,348.310,20.604,16.545,20.604 +1759,51.369,280.212,464.151,235.974,638.651,278.800,469.369,105.141,46.881,105.141,338.373,321.908,349.183,18.204,16.489,18.204 +1760,51.400,285.447,466.175,231.127,639.099,283.691,471.606,107.916,54.105,107.916,339.666,322.160,351.082,21.048,16.533,21.048 +1761,51.433,290.021,467.945,226.961,637.891,288.084,473.109,110.556,60.503,110.556,340.473,322.487,351.503,22.940,17.030,22.940 +1762,51.465,293.695,469.703,221.233,636.612,291.449,474.790,113.827,67.286,113.827,341.668,321.932,352.790,21.217,16.990,21.217 +1763,51.497,298.095,471.527,214.822,634.196,295.388,476.831,117.043,73.872,117.043,341.670,320.902,353.580,21.644,17.650,21.644 +1764,51.529,303.063,473.447,208.987,631.176,299.889,478.821,120.564,80.134,120.564,342.336,320.322,354.821,22.001,18.505,22.001 +1765,51.559,307.492,475.810,201.165,603.641,309.184,473.339,124.389,86.553,124.389,343.067,272.133,337.076,21.236,18.028,21.236 +1766,51.590,312.185,477.559,197.390,599.432,313.488,475.917,128.435,92.420,128.435,342.036,271.687,337.842,19.173,18.097,19.173 +1767,51.621,317.034,481.645,192.742,600.464,317.048,481.630,132.743,97.989,132.743,343.321,284.666,343.280,19.763,17.999,19.763 +1768,51.653,322.194,484.995,188.109,594.407,321.636,485.508,137.369,103.449,137.369,342.473,283.972,343.988,18.881,18.246,18.881 +1769,51.686,326.583,490.512,184.400,583.800,327.801,489.573,142.383,108.435,142.383,345.283,275.118,342.207,18.078,17.076,18.078 +1770,51.718,332.258,494.795,178.010,584.295,329.546,496.541,147.222,112.649,147.222,343.382,291.464,349.834,19.153,17.309,19.153 +1771,51.749,332.258,494.795,178.010,584.295,329.546,496.541,147.222,112.649,147.222,343.382,291.464,349.834,19.153,17.309,19.153 +1772,51.778,337.005,501.615,168.079,586.012,329.531,505.489,152.608,117.216,152.608,343.955,313.995,360.792,21.244,17.074,21.244 +1773,51.811,341.658,509.245,163.615,575.243,333.358,512.461,158.819,121.342,158.819,344.118,311.968,361.919,21.866,16.009,21.866 +1774,51.843,346.151,518.688,159.842,564.608,336.392,521.190,165.624,125.452,165.624,343.453,311.547,363.603,19.374,16.279,19.374 +1775,51.873,349.858,530.392,158.102,553.667,339.297,531.750,172.670,128.835,172.670,343.728,310.464,365.022,17.244,15.662,17.244 +1776,51.904,351.000,543.090,157.900,542.057,340.461,543.127,179.801,132.049,179.801,344.033,308.982,365.112,17.222,15.681,17.222 +1777,51.937,350.861,555.089,159.329,529.779,340.795,553.839,7.074,135.535,7.074,345.808,307.637,366.095,18.232,15.688,18.232 +1778,51.969,349.318,568.851,162.806,517.581,339.785,566.217,15.446,138.559,15.446,347.301,307.522,367.080,17.350,15.081,17.350 +1779,52.000,345.610,582.604,168.669,506.464,337.004,578.845,23.597,141.277,23.597,347.684,306.563,366.467,18.410,15.294,18.410 +1780,52.032,339.522,596.173,175.473,493.754,331.207,590.924,32.262,144.782,32.262,347.452,306.795,367.119,18.382,14.850,18.382 +1781,52.064,331.667,608.666,184.876,482.804,324.430,602.339,41.166,147.829,41.166,348.256,305.900,367.481,19.009,14.390,19.009 +1782,52.095,320.361,619.865,196.118,472.214,314.247,612.533,50.170,151.206,50.170,347.749,305.012,366.842,19.617,14.416,19.617 +1783,52.127,307.847,629.004,208.807,462.712,302.810,620.411,59.621,154.767,59.621,347.251,305.832,367.171,19.307,14.265,19.307 +1784,52.158,293.463,636.083,222.436,454.337,289.641,626.008,69.228,158.580,69.228,347.142,305.780,368.693,20.151,16.241,20.151 +1785,52.189,275.864,640.895,237.553,449.532,273.523,630.078,77.790,162.051,77.790,346.005,305.470,368.139,27.216,17.245,27.216 +1786,52.220,263.718,641.996,253.338,446.870,263.475,629.949,88.847,165.579,88.847,342.394,306.874,366.492,26.035,17.350,26.035 +1787,52.251,247.050,640.150,268.999,446.993,248.701,628.597,98.130,169.177,98.130,341.957,308.646,365.298,24.749,17.290,24.749 +1788,52.282,247.050,640.150,268.999,446.993,248.701,628.597,98.130,169.177,98.130,341.957,308.646,365.298,24.749,17.290,24.749 +1789,52.311,231.732,636.268,284.918,450.289,235.190,624.818,106.809,173.395,106.809,338.985,309.636,362.906,22.336,15.988,22.336 +1790,52.342,216.870,629.446,299.442,455.898,222.357,618.251,116.114,176.987,116.114,334.484,311.832,359.419,21.603,15.400,21.603 +1791,52.375,203.023,621.016,312.567,463.936,210.481,610.531,125.422,1.245,125.422,331.524,313.187,357.259,20.503,14.192,20.503 +1792,52.407,192.413,611.902,324.631,473.557,202.064,601.995,134.246,5.194,134.246,327.390,316.241,355.052,21.574,14.395,21.574 +1793,52.439,182.133,600.513,334.605,484.864,193.778,591.724,142.958,9.353,142.958,324.381,317.127,353.560,19.141,13.976,19.141 +1794,52.472,175.313,589.567,342.846,497.071,188.797,582.117,151.079,13.606,151.079,321.122,319.445,351.932,21.215,13.694,21.215 +1795,52.504,169.564,576.370,349.183,510.415,184.545,570.588,158.895,18.135,158.895,318.405,320.664,350.522,19.231,13.702,19.231 +1796,52.537,166.907,564.599,353.844,523.249,183.561,560.723,166.897,22.457,166.897,314.490,322.226,348.689,17.985,14.084,17.985 +1797,52.568,166.263,552.430,356.487,536.572,183.113,550.874,174.726,27.104,174.726,314.065,323.367,347.909,17.112,14.117,17.112 +1798,52.600,166.552,542.010,357.485,549.103,184.232,542.471,1.494,31.774,1.494,311.364,324.680,346.735,17.255,14.243,17.255 +1799,52.632,168.277,531.592,356.863,561.155,185.920,534.155,8.267,36.453,8.267,310.441,325.622,346.097,17.686,14.696,17.686 +1800,52.663,171.247,520.708,354.827,572.054,188.253,525.260,14.985,41.152,14.985,310.810,326.244,346.018,17.905,15.167,17.905 +1801,52.694,174.865,511.955,352.205,581.774,190.795,518.088,21.056,45.771,21.056,312.887,326.825,347.027,18.021,15.079,18.021 +1802,52.725,179.100,504.300,347.959,590.854,193.654,511.577,26.565,50.638,26.565,314.391,327.586,346.936,17.441,15.064,17.441 +1803,52.756,183.810,496.796,342.602,599.058,196.677,504.822,31.952,55.545,31.952,317.042,328.124,347.372,17.928,15.564,17.928 +1804,52.788,188.825,490.905,336.528,606.202,199.755,499.116,36.917,60.581,36.917,320.004,328.805,347.345,17.398,15.941,17.398 +1805,52.821,193.838,485.769,330.366,612.606,203.124,494.075,41.811,65.556,41.811,322.807,328.808,347.724,17.652,16.221,17.652 +1806,52.854,197.932,480.629,324.864,618.007,206.927,490.030,46.265,70.115,46.265,321.983,329.012,348.004,17.470,16.667,17.470 +1807,52.885,202.859,477.062,312.952,603.618,204.683,479.282,50.593,75.256,50.593,323.854,288.443,329.601,17.829,16.898,17.829 +1808,52.916,208.072,473.635,307.095,600.555,207.521,472.851,54.873,80.272,54.873,325.396,273.721,323.480,19.411,17.291,19.411 +1809,52.947,208.072,473.635,307.095,600.555,207.521,472.851,54.873,80.272,54.873,325.396,273.721,323.480,19.411,17.291,19.411 +1810,52.976,213.081,470.424,303.697,608.359,213.724,471.477,58.593,85.236,58.593,324.960,282.022,327.427,19.326,17.440,19.326 +1811,53.012,217.898,468.448,299.000,612.000,218.365,469.335,62.230,90.000,62.230,325.603,282.000,327.608,18.825,18.000,18.825 +1812,53.053,228.895,464.525,288.238,632.733,231.623,471.729,69.257,100.643,69.257,325.832,313.908,341.239,21.151,17.202,21.151 +1813,53.084,233.804,464.114,281.742,639.790,236.575,472.882,72.463,105.509,72.463,327.128,323.580,345.519,19.785,16.754,19.785 +1814,53.116,233.804,464.114,281.742,639.790,236.575,472.882,72.463,105.509,72.463,327.128,323.580,345.519,19.785,16.754,19.785 +1815,53.148,238.180,463.186,274.737,640.327,240.315,471.525,75.641,110.886,75.641,326.914,323.868,344.130,18.825,15.305,18.825 +1816,53.181,242.682,462.775,269.843,640.970,244.211,470.542,78.860,115.530,78.860,328.506,322.884,344.338,18.206,14.909,18.206 +1817,53.212,247.200,462.400,264.280,640.898,248.236,469.649,81.870,120.500,81.870,328.946,321.908,343.592,17.536,14.541,17.536 +1818,53.243,251.610,460.673,259.782,640.800,252.352,468.860,84.826,124.931,84.826,327.377,320.728,343.819,17.656,14.015,17.656 +1819,53.275,255.980,460.856,254.773,640.491,256.241,468.052,87.925,129.440,87.925,330.146,320.351,344.547,17.481,13.976,17.481 +1820,53.308,259.805,460.022,249.667,639.697,259.680,467.380,90.971,133.958,90.971,330.207,319.637,344.924,17.404,13.703,17.404 +1821,53.339,264.315,459.594,244.044,638.336,263.800,466.795,94.086,138.814,94.086,330.586,318.528,345.025,17.954,13.923,17.954 +1822,53.371,269.984,459.942,238.763,636.659,269.175,466.311,97.237,143.427,97.237,332.804,318.415,345.644,20.707,13.575,20.707 +1823,53.404,274.143,459.587,233.382,634.915,272.917,466.154,100.579,147.947,100.579,332.943,317.468,346.303,19.844,13.569,19.844 +1824,53.437,279.091,460.633,228.909,633.435,277.555,466.853,103.867,152.152,103.867,333.958,317.075,346.771,20.173,13.630,20.173 +1825,53.472,283.536,461.942,223.503,631.192,281.799,467.542,107.234,156.623,107.234,335.424,315.917,347.150,19.531,13.662,19.531 +1826,53.507,288.874,463.401,218.862,629.171,286.760,468.970,110.792,160.758,110.792,335.828,315.911,347.741,19.822,13.699,19.822 +1827,53.540,294.760,465.523,214.144,626.322,292.408,470.718,114.349,164.922,114.349,336.656,314.605,348.062,21.167,14.276,21.167 +1828,53.573,299.516,467.810,209.345,623.642,296.885,472.736,118.106,168.965,118.106,337.534,313.790,348.703,20.097,14.376,20.097 +1829,53.607,304.516,470.453,204.580,620.126,301.551,475.169,122.152,172.906,122.152,337.518,312.690,348.660,18.239,14.832,18.239 +1830,53.640,310.699,474.882,199.779,616.659,307.540,479.176,126.336,176.703,126.336,338.541,312.461,349.202,19.946,14.429,19.946 +1831,53.673,316.467,479.490,194.540,611.718,313.181,483.301,130.774,0.531,130.774,339.399,311.061,349.462,20.732,14.518,20.732 +1832,53.707,321.000,483.000,190.277,606.731,317.636,486.364,135.000,4.198,135.000,340.825,311.145,350.339,18.385,15.015,18.385 +1833,53.740,326.993,489.199,185.086,600.753,323.283,492.271,140.377,7.853,140.377,341.628,310.406,351.261,19.265,14.928,19.265 +1834,53.773,331.047,494.745,180.596,594.019,327.469,497.210,145.437,11.310,145.437,343.055,310.256,351.743,18.007,15.101,18.007 +1835,53.806,336.463,500.828,176.703,586.334,332.168,503.232,150.767,14.763,150.767,342.652,308.548,352.498,18.886,15.289,18.886 +1836,53.839,341.020,508.216,173.139,577.495,336.704,510.061,156.852,18.004,156.852,344.422,308.611,353.810,17.870,15.549,17.870 +1837,53.871,345.145,516.630,169.799,567.921,340.248,518.113,163.156,21.448,163.156,344.907,308.245,355.139,17.605,15.424,17.605 +1838,53.904,347.812,526.287,167.825,557.528,343.062,527.117,170.085,24.677,170.085,346.066,307.305,355.711,17.951,15.939,17.951 +1839,53.939,350.574,537.250,165.886,547.270,344.442,537.614,176.607,27.115,176.607,345.342,306.869,357.629,16.856,15.716,16.856 +1840,53.971,351.377,548.890,165.766,535.457,344.900,548.469,3.721,30.124,3.721,346.220,307.139,359.201,16.510,15.590,16.510 +1841,54.003,351.044,561.262,167.533,523.217,343.827,559.807,11.397,33.111,11.397,345.373,306.820,360.097,17.087,15.587,17.087 +1842,54.036,348.659,574.331,171.186,511.742,341.286,571.750,19.290,35.811,19.290,345.122,306.888,360.747,16.989,15.398,16.989 +1843,54.069,345.288,588.776,176.125,499.843,336.237,584.044,27.597,38.601,27.597,341.378,306.102,361.804,18.147,15.216,18.147 +1844,54.103,345.512,606.360,183.441,488.767,330.107,595.163,36.011,41.001,36.011,324.301,305.352,362.387,17.247,15.999,17.247 +1845,54.135,376.123,660.425,192.527,478.449,321.065,606.446,44.433,43.713,44.433,208.579,304.202,362.787,16.872,15.822,16.872 +1846,54.167,333.728,647.694,203.299,469.743,310.212,616.580,52.918,45.939,52.918,285.211,304.177,363.213,18.376,16.134,18.376 +1847,54.199,308.237,642.611,215.601,463.283,298.888,624.352,62.888,48.945,62.888,321.630,304.698,362.655,18.450,16.201,18.450 +1848,54.230,287.719,641.920,229.388,458.194,284.034,630.988,71.370,51.271,71.370,339.320,304.693,362.394,24.659,15.934,24.659 +1849,54.262,270.149,641.902,245.807,453.646,268.692,633.385,80.296,52.853,80.296,344.769,305.190,362.050,27.237,20.362,27.237 +1850,54.293,261.423,640.718,260.731,452.846,261.591,633.082,91.261,56.310,91.261,345.070,306.195,360.347,27.651,21.356,27.651 +1851,54.323,244.009,637.640,275.927,454.483,245.153,631.367,100.337,57.995,100.337,346.318,307.081,359.071,23.140,21.836,23.140 +1852,54.354,230.032,632.895,290.178,458.917,231.926,627.421,109.085,59.421,109.085,344.993,308.016,356.578,21.325,21.445,21.325 +1853,54.387,216.602,624.461,303.230,464.451,219.005,619.969,118.142,61.742,118.142,343.527,309.456,353.716,19.502,21.140,19.502 +1854,54.421,205.638,615.865,315.732,471.903,208.688,611.818,127.003,64.163,127.003,342.187,311.859,352.323,20.393,22.529,20.393 +1855,54.455,194.967,605.527,324.681,482.657,198.037,602.530,135.684,66.541,135.684,340.136,312.365,348.717,18.664,18.555,18.664 +1856,54.488,187.430,594.859,332.648,493.498,190.660,592.522,144.118,69.274,144.118,338.191,314.383,346.164,18.859,18.150,18.859 +1857,54.521,181.096,583.516,339.726,504.582,185.120,581.387,152.115,71.166,152.115,336.046,316.587,345.151,18.823,18.151,18.823 +1858,54.553,177.234,571.993,344.927,516.110,181.656,570.364,159.775,73.593,159.775,334.495,318.790,343.920,19.508,18.290,19.508 +1859,54.584,174.827,560.914,348.342,528.175,179.643,559.801,166.988,75.745,166.988,333.091,320.138,342.977,20.534,18.232,20.534 +1860,54.615,174.827,560.914,348.342,528.175,179.643,559.801,166.988,75.745,166.988,333.091,320.138,342.977,20.534,18.232,20.534 +1861,54.643,173.727,550.890,349.956,540.147,179.174,550.372,174.571,78.007,174.571,331.025,321.423,341.967,18.726,18.970,18.726 +1862,54.675,173.995,541.187,350.135,551.669,179.618,541.328,1.432,80.181,1.432,330.197,322.210,341.445,17.520,18.987,17.520 +1863,54.708,175.436,531.458,349.505,562.635,181.602,532.321,7.965,82.304,7.965,328.516,323.867,340.968,17.529,19.204,17.529 +1864,54.740,177.712,523.649,347.512,571.234,183.626,525.123,13.989,84.632,13.989,328.153,321.216,340.343,18.151,18.790,18.151 +1865,54.772,180.514,515.726,344.522,580.548,186.329,517.851,20.072,87.166,20.072,327.822,321.448,340.205,18.532,18.136,18.532 +1866,54.805,183.738,508.876,340.000,589.500,189.058,511.386,25.253,90.000,25.253,327.916,321.000,339.682,17.713,18.000,17.713 +1867,54.838,187.388,502.982,336.856,596.463,192.686,506.081,30.324,91.848,30.324,327.881,321.413,340.157,18.339,17.926,18.339 +1868,54.870,190.384,497.738,332.200,603.363,195.669,501.443,35.024,94.343,35.024,327.694,322.350,340.602,19.604,17.974,19.604 +1869,54.901,195.031,491.262,327.823,609.310,200.417,495.746,39.772,96.459,39.772,327.133,322.037,341.150,18.193,17.792,18.193 +1870,54.932,198.745,486.683,322.662,614.287,203.807,491.545,43.847,99.051,43.847,327.452,321.862,341.490,17.888,17.688,17.888 +1871,54.964,202.874,482.807,314.898,617.914,206.665,487.004,47.911,102.693,47.911,328.081,322.463,339.392,17.787,17.340,17.787 +1872,54.994,206.598,479.229,311.557,621.996,210.546,484.195,51.509,104.534,51.509,328.765,322.379,341.452,17.304,16.348,17.304 +1873,55.026,210.645,475.452,306.548,625.046,214.384,480.801,55.047,107.354,55.047,329.004,322.256,342.056,18.245,16.345,18.245 +1874,55.056,214.221,472.868,300.651,627.432,217.446,478.243,59.036,110.556,59.036,328.934,322.214,341.473,21.094,15.566,21.094 +1875,55.088,217.872,470.262,296.113,629.456,220.933,475.948,61.699,113.629,61.699,328.687,321.972,341.604,19.167,15.689,19.167 +1876,55.121,222.840,467.923,292.100,631.300,225.524,473.530,64.421,116.565,64.421,329.671,321.547,342.104,20.647,14.758,20.647 +1877,55.154,226.027,466.570,287.317,632.521,228.355,472.132,67.291,120.188,67.291,329.376,321.176,341.435,19.238,14.852,19.238 +1878,55.185,229.897,465.173,283.428,633.784,231.978,470.885,69.980,123.756,69.980,329.181,320.898,341.339,19.697,14.694,19.697 +1879,55.216,233.354,464.570,279.886,635.154,235.146,470.220,72.403,127.204,72.403,329.631,320.437,341.484,18.861,14.558,18.861 +1880,55.247,233.354,464.570,279.886,635.154,235.146,470.220,72.403,127.204,72.403,329.631,320.437,341.484,18.861,14.558,18.861 +1881,55.275,236.714,464.131,276.234,636.407,238.251,469.815,74.870,130.824,74.870,329.685,320.514,341.462,18.296,14.069,18.296 +1882,55.308,240.180,463.388,272.790,636.797,241.454,468.972,77.144,134.825,77.144,329.726,319.619,341.181,18.754,14.276,18.754 +1883,55.339,243.181,463.183,269.630,637.298,244.185,468.514,79.327,138.743,79.327,330.305,319.089,341.154,18.135,13.967,18.135 +1884,55.371,246.102,462.535,266.088,637.817,246.936,468.101,81.481,142.842,81.481,330.106,319.199,341.362,17.685,13.775,17.685 +1885,55.404,249.198,462.192,263.144,637.629,249.778,467.278,83.498,147.119,83.498,331.300,318.394,341.537,17.519,13.869,17.519 +1886,55.437,252.041,461.807,259.771,637.737,252.438,467.023,85.654,151.486,85.654,331.097,317.794,341.559,17.517,14.038,17.517 +1887,55.469,254.920,461.446,256.871,637.344,255.112,466.514,87.834,155.987,87.834,331.406,317.904,341.549,17.063,14.169,17.063 +1888,55.502,257.500,461.000,253.974,637.105,257.500,466.053,90.000,160.476,90.000,332.000,316.959,342.105,17.000,13.916,17.000 +1889,55.533,260.750,460.527,250.493,636.691,260.572,465.376,92.098,165.194,92.098,333.436,317.506,343.139,17.270,14.221,17.270 +1890,55.564,263.878,460.706,248.065,636.055,263.557,465.208,94.086,169.919,94.086,334.006,316.176,343.034,18.097,14.046,18.097 +1891,55.595,267.155,460.231,245.214,635.417,266.657,464.875,96.123,174.697,96.123,334.373,316.517,343.713,19.071,14.028,19.071 +1892,55.627,271.627,460.942,241.988,635.079,270.930,465.452,98.778,179.726,98.778,334.986,316.011,344.113,19.606,13.335,19.606 +1893,55.658,274.366,461.381,238.796,634.433,273.582,465.563,100.620,4.743,100.620,336.265,316.402,344.776,20.763,14.161,20.763 +1894,55.688,279.125,462.271,235.635,633.866,278.136,466.372,103.563,9.908,103.563,337.145,317.154,345.581,20.986,14.221,20.986 +1895,55.720,282.911,462.974,232.484,633.197,281.722,467.093,106.095,15.024,106.095,337.914,317.315,346.488,21.119,14.445,21.119 +1896,55.753,285.950,464.150,229.016,632.456,284.582,468.253,108.435,20.136,108.435,338.047,317.309,346.697,20.871,14.490,20.871 +1897,55.786,289.072,465.440,224.922,631.522,287.522,469.393,111.413,25.526,111.413,339.093,317.941,347.585,18.893,15.336,18.893 +1898,55.816,289.072,465.440,224.922,631.522,287.522,469.393,111.413,25.526,111.413,339.093,317.941,347.585,18.893,15.336,18.893 +1899,55.845,293.499,467.225,220.795,630.489,291.641,471.354,114.228,30.793,114.228,339.326,318.124,348.382,19.789,14.621,19.789 +1900,55.877,297.873,469.163,216.551,629.012,295.779,473.236,117.216,36.176,117.216,340.369,318.206,349.528,20.301,14.817,20.301 +1901,55.907,301.648,471.408,212.432,627.382,299.314,475.364,120.542,41.496,120.542,340.968,317.575,350.155,19.007,15.095,19.007 +1902,55.940,306.728,474.980,207.563,625.175,304.217,478.707,123.959,46.975,123.959,341.965,317.717,350.953,20.821,15.498,20.821 +1903,55.972,311.403,477.655,202.980,622.331,308.324,481.653,127.593,52.515,127.593,341.375,318.633,351.467,20.230,15.506,20.230 +1904,56.003,315.252,480.574,198.247,618.596,312.137,484.103,131.433,57.995,131.433,342.984,318.423,352.398,18.124,16.112,18.124 +1905,56.036,320.481,484.452,192.900,613.800,316.978,487.890,135.546,63.435,135.546,343.679,318.863,353.496,18.882,16.100,18.882 +1906,56.067,325.309,489.576,187.744,608.677,321.531,492.735,140.095,68.983,140.095,344.166,318.127,354.016,19.901,16.635,19.901 +1907,56.099,330.549,495.363,182.322,602.917,326.027,498.563,144.716,74.185,144.716,344.090,318.127,355.169,21.234,16.753,21.234 +1908,56.131,334.015,499.012,177.844,595.706,329.164,501.907,149.165,79.641,149.165,344.717,317.788,356.016,19.250,16.681,19.250 +1909,56.162,338.046,504.937,172.412,569.963,336.058,505.881,154.598,84.860,154.598,346.226,281.741,350.627,19.106,16.932,19.106 +1910,56.194,342.144,512.584,170.044,550.503,341.418,512.841,160.498,90.294,160.498,346.690,259.074,348.231,17.458,17.097,17.458 +1911,56.225,344.765,521.460,168.494,541.055,343.826,521.687,166.399,96.297,166.399,348.008,258.404,349.939,17.966,17.460,17.966 +1912,56.255,347.877,531.506,167.439,531.091,345.302,531.825,172.942,101.768,172.942,347.660,258.532,352.849,16.153,20.966,16.153 +1913,56.287,349.488,541.417,167.967,523.651,346.067,541.444,179.549,107.879,179.549,349.068,264.974,355.909,16.196,20.293,16.196 +1914,56.317,349.280,552.922,167.862,517.155,344.741,552.429,6.196,113.199,6.196,350.176,273.511,359.307,17.224,21.403,17.224 +1915,56.348,349.280,552.922,167.862,517.155,344.741,552.429,6.196,113.199,6.196,350.176,273.511,359.307,17.224,21.403,17.224 +1916,56.377,348.127,565.484,168.041,512.963,342.153,564.020,13.770,119.249,13.770,350.222,287.613,362.522,16.749,18.043,16.749 +1917,56.409,344.922,577.699,167.071,511.536,338.296,575.103,21.389,124.004,21.389,350.997,309.803,365.230,16.442,16.797,16.442 +1918,56.441,340.700,590.031,173.172,499.327,334.075,586.296,29.418,129.094,29.418,350.536,308.311,365.747,16.819,16.298,16.819 +1919,56.473,334.190,602.254,180.184,487.690,327.534,597.123,37.623,134.465,37.623,350.217,307.585,367.025,16.815,15.741,16.815 +1920,56.505,325.003,613.997,189.734,477.099,318.864,607.611,46.130,139.606,46.130,349.438,307.289,367.155,17.326,16.041,17.326 +1921,56.537,313.984,624.362,201.254,467.855,308.629,616.725,54.964,144.440,54.964,348.418,306.776,367.072,17.966,15.631,17.966 +1922,56.568,301.642,632.431,213.459,458.781,296.938,622.811,63.941,149.550,63.941,346.636,306.238,368.053,17.972,16.317,17.972 +1923,56.600,286.897,638.830,227.992,452.355,283.403,627.866,72.326,154.381,72.326,345.087,306.410,368.100,22.825,16.863,22.825 +1924,56.631,270.656,642.787,242.505,448.569,268.738,630.442,81.167,159.179,81.167,342.504,307.225,367.489,24.770,17.088,24.770 +1925,56.662,260.338,643.604,257.942,447.280,260.657,630.312,91.373,164.120,91.373,339.238,307.688,365.830,25.267,16.442,25.267 +1926,56.693,242.898,641.616,272.865,448.327,245.311,628.415,100.359,168.690,100.359,337.377,309.079,364.216,22.255,15.885,22.255 +1927,56.725,228.041,636.514,287.840,451.115,232.471,623.421,108.695,173.418,108.695,334.279,310.899,361.924,20.442,15.856,20.442 +1928,56.756,212.667,629.305,301.924,456.748,219.309,616.555,117.516,178.059,117.516,331.041,312.498,359.795,17.296,15.415,17.296 +1929,56.788,200.072,620.822,314.001,464.478,208.652,609.081,126.158,2.545,126.158,328.732,314.445,357.817,16.738,15.474,16.738 +1930,56.821,190.540,612.039,324.773,474.287,200.823,601.573,134.493,7.038,134.493,325.982,315.665,355.329,19.072,14.250,19.072 +1931,56.857,182.452,601.437,334.768,484.191,194.434,592.318,142.730,11.560,142.730,324.196,317.316,354.310,20.395,15.030,20.395 +1932,56.887,175.743,590.049,342.546,495.610,189.128,582.427,150.341,16.119,150.341,321.754,319.235,352.558,19.745,14.917,19.745 +1933,56.918,171.191,579.249,348.417,507.893,185.648,573.300,157.634,20.616,157.634,319.559,320.224,350.825,21.217,15.568,21.217 +1934,56.949,171.191,579.249,348.417,507.893,185.648,573.300,157.634,20.616,157.634,319.559,320.224,350.825,21.217,15.568,21.217 +1935,56.978,168.774,566.824,352.995,519.911,183.553,562.816,164.827,25.474,164.827,318.905,321.246,349.531,17.896,15.607,17.896 +1936,57.009,168.020,556.226,356.259,531.713,183.283,553.989,171.663,30.541,171.663,317.906,321.908,348.757,18.125,15.262,18.125 +1937,57.040,169.390,546.797,357.859,542.799,183.857,546.298,178.025,35.595,178.025,319.086,323.636,348.039,17.197,16.049,17.197 +1938,57.071,171.321,535.159,357.408,554.034,184.900,536.060,3.796,41.252,3.796,319.421,324.074,346.639,22.964,15.893,22.964 +1939,57.104,175.054,530.148,355.956,564.073,185.746,531.915,9.382,46.865,9.382,324.677,324.052,346.351,17.776,16.035,17.776 +1940,57.137,175.908,523.019,353.220,573.078,186.808,525.863,14.621,52.921,14.621,323.353,325.211,345.882,18.848,16.516,18.848 +1941,57.169,179.245,516.854,349.945,580.739,188.433,520.043,19.142,58.912,19.142,325.518,324.996,344.970,19.612,17.657,19.612 +1942,57.199,181.526,510.978,346.414,587.659,189.889,514.602,23.429,65.175,23.429,327.109,324.908,345.337,18.871,17.954,18.871 +1943,57.229,184.092,505.444,341.853,593.539,191.478,509.291,27.512,71.732,27.512,327.918,324.146,344.574,18.699,18.042,18.699 +1944,57.260,186.324,501.294,332.718,575.853,186.040,501.124,30.964,78.799,30.964,329.106,277.707,328.446,19.036,17.706,19.036 +1945,57.290,189.039,495.840,331.189,579.520,189.087,495.874,34.752,86.424,34.752,328.753,277.646,328.870,19.971,17.528,19.971 +1946,57.321,190.833,493.591,329.474,598.999,194.632,496.481,37.266,93.013,37.266,329.231,308.993,338.776,20.276,17.029,20.276 +1947,57.351,194.388,490.107,325.689,608.769,199.072,494.093,40.400,99.972,40.400,329.196,321.962,341.496,19.265,16.797,19.265 +1948,57.381,194.388,490.107,325.689,608.769,199.072,494.093,40.400,99.972,40.400,329.196,321.962,341.496,19.265,16.797,19.265 +1949,57.410,197.436,487.877,321.464,611.802,201.099,491.319,43.225,107.418,43.225,330.389,323.156,340.443,21.219,15.547,21.219 +1950,57.442,201.750,483.750,318.631,612.638,204.817,486.817,45.000,114.758,45.000,330.219,321.626,338.894,24.042,14.613,24.042 +1951,57.473,202.048,484.122,316.832,614.084,204.923,487.203,46.975,121.924,46.975,329.803,321.075,338.231,19.690,14.593,19.690 +1952,57.504,203.881,482.792,315.120,615.659,206.672,485.982,48.814,129.105,48.814,329.535,321.408,338.011,20.225,14.636,20.225 +1953,57.536,206.314,481.825,313.923,616.773,208.658,484.651,50.336,136.356,50.336,330.451,321.104,337.794,19.655,14.247,19.655 +1954,57.567,208.444,480.354,313.514,617.306,210.709,483.208,51.569,143.606,51.569,330.610,320.030,337.896,20.350,13.867,20.350 +1955,57.597,209.672,480.014,313.039,617.479,211.597,482.535,52.646,150.884,52.646,331.286,320.525,337.631,19.646,13.326,19.646 +1956,57.628,210.752,479.182,313.093,617.943,212.664,481.783,53.688,158.422,53.688,331.926,319.950,338.382,20.891,13.686,20.891 +1957,57.658,211.923,479.125,313.450,618.817,213.746,481.680,54.487,165.906,54.487,332.812,320.632,339.088,22.188,13.550,22.188 +1958,57.688,212.158,479.090,313.720,619.505,214.041,481.775,54.953,173.585,54.953,333.438,320.478,339.995,21.332,13.230,21.332 +1959,57.719,212.740,478.878,314.547,620.303,214.775,481.802,55.152,1.212,55.152,334.220,321.203,341.346,20.643,13.055,20.643 +1960,57.749,212.740,478.878,314.547,620.303,214.775,481.802,55.152,1.212,55.152,334.220,321.203,341.346,20.643,13.055,20.643 +1961,57.778,213.909,477.563,315.130,620.470,216.066,480.705,55.536,8.890,55.536,334.963,323.358,342.586,24.899,14.146,24.899 +1962,57.808,211.855,478.286,315.969,621.257,214.491,482.124,55.525,16.631,55.525,334.966,324.222,344.277,20.735,14.447,20.735 +1963,57.839,211.138,477.944,316.717,622.190,214.360,482.594,55.277,24.257,55.277,334.765,324.918,346.079,20.888,14.739,20.888 +1964,57.870,210.688,477.281,317.551,622.719,214.679,482.928,54.747,32.005,54.747,333.233,326.055,347.063,20.638,14.840,20.638 +1965,57.901,209.348,476.208,318.205,623.360,214.564,483.343,53.833,39.872,53.833,330.721,326.748,348.398,19.163,15.693,19.163 +1966,57.932,206.760,474.327,318.089,624.049,214.229,484.121,52.671,47.603,52.671,323.857,328.337,348.492,17.906,15.540,17.906 +1967,57.963,166.903,426.215,319.340,623.907,213.500,485.406,51.789,54.773,51.789,197.922,328.084,348.587,17.838,15.424,17.838 +1968,57.993,198.472,470.628,319.700,623.877,211.777,487.299,51.407,62.567,51.407,305.478,327.912,348.138,18.728,15.542,18.728 +1969,58.023,202.660,477.408,320.280,623.254,211.421,487.777,49.802,70.589,49.802,320.331,327.715,347.481,19.363,16.510,19.363 +1970,58.054,202.968,481.911,317.375,602.715,203.950,483.014,48.311,78.275,48.311,326.698,287.902,329.651,19.043,16.885,19.043 +1971,58.085,201.761,485.372,320.412,600.505,202.102,485.733,46.736,86.941,46.736,328.333,287.178,329.325,21.161,17.875,21.161 +1972,58.115,201.761,485.372,320.412,600.505,202.102,485.733,46.736,86.941,46.736,328.333,287.178,329.325,21.161,17.875,21.161 +1973,58.144,199.816,487.163,322.811,617.074,205.051,492.369,44.845,95.194,44.845,328.104,324.480,342.870,21.278,17.383,21.278 +1974,58.179,197.421,490.294,324.078,612.767,201.786,494.271,42.337,103.897,42.337,328.597,323.052,340.408,20.895,16.292,20.895 +1975,58.218,192.060,496.420,327.768,603.629,195.417,498.937,36.870,120.069,36.870,329.000,321.620,337.391,20.600,14.530,20.600 +1976,58.248,192.060,496.420,327.768,603.629,195.417,498.937,36.870,120.069,36.870,329.000,321.620,337.391,20.600,14.530,20.600 +1977,58.276,190.108,498.839,330.893,598.025,193.079,500.830,33.818,128.047,33.818,330.032,320.309,337.185,19.939,14.586,19.939 +1978,58.307,187.435,502.952,334.305,591.724,190.051,504.505,30.687,136.042,30.687,331.046,320.382,337.131,19.968,14.217,19.968 +1979,58.341,184.765,506.945,337.925,584.663,187.475,508.324,26.969,143.812,26.969,331.336,320.253,337.418,20.045,14.319,20.045 +1980,58.375,182.336,511.387,341.581,577.461,185.259,512.623,22.924,151.540,22.924,332.116,320.429,338.463,19.341,15.102,19.341 +1981,58.407,179.898,516.782,345.922,570.675,183.865,518.121,18.655,159.102,18.655,332.332,321.286,340.706,18.642,14.931,18.642 +1982,58.439,177.627,522.462,349.451,563.165,182.682,523.752,14.313,166.399,14.313,332.237,322.330,342.672,18.410,14.924,18.410 +1983,58.471,175.605,528.409,352.487,555.990,182.571,529.550,9.302,172.711,9.302,329.795,322.996,343.911,17.627,14.752,17.627 +1984,58.504,164.817,534.458,354.885,549.260,182.432,535.771,4.263,177.971,4.263,310.629,322.400,345.957,17.517,14.353,17.517 +1985,58.536,103.458,543.982,356.511,542.289,182.724,543.027,179.310,2.911,179.310,189.022,321.855,347.566,17.035,13.626,17.035 +1986,58.567,138.599,555.356,356.224,533.888,182.841,550.485,173.717,7.914,173.717,259.296,323.148,348.316,17.290,13.804,17.290 +1987,58.597,159.374,564.239,355.098,525.098,183.637,558.734,167.217,13.725,167.217,299.546,322.354,349.307,20.922,14.173,20.922 +1988,58.628,168.746,573.908,352.100,516.285,184.875,568.276,160.754,19.290,160.754,315.866,321.667,350.034,21.999,14.347,21.999 +1989,58.657,176.074,584.153,347.881,506.704,187.764,578.489,154.146,25.560,154.146,324.807,319.826,350.788,22.581,15.572,22.581 +1990,58.687,183.044,593.787,341.938,496.496,191.798,588.196,147.435,31.961,147.435,331.016,318.000,351.789,22.054,17.439,22.054 +1991,58.718,190.583,603.613,334.617,486.306,197.545,597.836,140.319,38.157,140.319,335.316,315.651,353.410,23.321,20.950,23.321 +1992,58.749,190.583,603.613,334.617,486.306,197.545,597.836,140.319,38.157,140.319,335.316,315.651,353.410,23.321,20.950,23.321 +1993,58.777,199.618,611.868,325.095,476.888,204.331,606.745,132.606,44.703,132.606,340.737,313.973,354.659,23.957,22.363,23.957 +1994,58.809,208.118,619.170,314.110,469.512,211.472,614.351,124.834,51.340,124.834,343.280,311.723,355.023,22.143,22.645,22.143 +1995,58.840,218.650,626.097,301.603,462.838,220.971,621.505,116.808,59.036,116.808,345.666,309.726,355.957,22.308,22.466,22.308 +1996,58.872,231.250,632.750,288.432,457.185,233.094,627.219,108.435,65.225,108.435,345.953,309.125,357.614,23.717,21.302,23.717 +1997,58.904,241.596,637.848,273.980,454.039,242.883,630.869,100.452,72.121,100.452,344.880,308.599,359.074,23.707,19.464,23.707 +1998,58.936,254.412,647.120,259.246,452.756,254.770,632.443,91.397,78.453,91.397,330.121,308.277,359.484,27.065,17.183,27.065 +1999,58.967,274.948,691.777,245.480,453.275,267.912,632.473,83.234,84.806,83.234,241.745,307.188,361.186,23.782,16.659,23.782 +2000,58.997,282.267,637.934,231.911,455.601,280.299,630.755,74.673,91.317,74.673,348.539,307.172,363.428,24.811,16.490,24.811 +2001,59.028,296.146,631.440,218.906,460.782,294.128,626.574,67.479,97.787,67.479,353.388,307.565,363.921,21.336,16.877,21.336 +2002,59.058,307.121,624.107,207.103,466.900,304.948,620.421,59.482,104.136,59.482,355.324,308.270,363.882,23.006,17.160,23.006 +2003,59.088,317.860,616.705,196.124,474.858,314.912,613.099,50.732,110.666,50.732,355.108,308.642,364.424,20.192,17.252,20.192 +2004,59.120,326.808,607.822,185.618,483.299,323.040,604.323,42.879,117.795,42.879,355.824,308.650,366.107,19.890,18.611,19.890 +2005,59.151,335.342,599.940,177.770,493.512,329.647,595.953,34.992,123.797,34.992,352.434,308.971,366.337,21.792,16.835,21.792 +2006,59.182,335.342,599.940,177.770,493.512,329.647,595.953,34.992,123.797,34.992,352.434,308.971,366.337,21.792,16.835,21.792 +2007,59.209,342.987,588.739,171.226,503.689,335.518,584.793,27.848,129.950,27.848,349.407,309.074,366.302,18.601,15.817,18.601 +2008,59.240,348.706,578.627,166.121,513.099,338.865,574.916,20.659,136.618,20.659,345.855,308.535,366.890,19.297,14.688,19.297 +2009,59.272,353.735,568.559,161.877,522.171,340.521,565.255,14.036,143.065,14.036,340.277,308.804,367.520,19.160,14.921,19.160 +2010,59.304,358.889,557.585,160.015,531.191,341.681,555.291,7.595,149.036,7.595,331.797,308.869,366.516,18.106,15.092,18.106 +2011,59.335,365.684,544.449,160.033,540.419,342.140,543.789,1.606,155.078,1.606,317.156,308.286,364.261,23.243,13.942,23.243 +2012,59.368,379.689,534.520,160.586,548.915,341.695,536.894,176.424,160.523,176.424,286.878,308.024,363.013,17.840,13.107,17.840 +2013,59.399,416.535,518.026,162.334,556.856,341.072,529.817,171.119,165.586,171.119,208.779,306.321,361.538,17.383,12.306,17.383 +2014,59.430,371.651,514.639,164.173,563.523,339.238,522.284,166.729,170.385,166.729,293.109,306.610,359.713,17.262,12.122,17.262 +2015,59.461,348.214,512.183,167.016,569.198,337.801,515.437,162.646,175.510,162.646,336.275,307.096,358.093,18.732,13.592,18.732 +2016,59.491,342.562,507.650,170.084,574.815,336.018,510.349,157.584,1.790,157.584,341.800,306.382,355.957,21.204,15.118,21.204 +2017,59.522,338.432,503.373,173.325,581.344,333.887,505.625,153.635,8.569,153.635,344.828,306.526,354.973,21.075,14.941,21.075 +2018,59.553,335.249,498.926,177.111,587.369,331.293,501.236,149.712,15.988,149.712,343.995,307.552,353.156,21.656,14.787,21.656 +2019,59.583,335.249,498.926,177.111,587.369,331.293,501.236,149.712,15.988,149.712,343.995,307.552,353.156,21.656,14.787,21.656 +2020,59.612,331.723,495.097,181.252,592.989,328.810,497.015,146.634,23.600,146.634,345.068,308.743,352.042,19.535,15.151,19.535 +2021,59.642,328.903,491.369,184.789,598.708,325.783,493.677,143.491,31.405,143.491,343.866,310.783,351.628,19.531,15.103,19.531 +2022,59.672,326.206,488.861,188.251,603.848,323.269,491.270,140.648,39.130,140.648,343.980,312.191,351.578,19.162,15.199,19.162 +2023,59.704,323.387,486.264,190.863,608.829,320.050,489.269,137.996,46.985,137.996,343.029,313.526,352.010,19.251,14.891,19.251 +2024,59.737,320.516,484.439,193.769,613.468,317.302,487.555,135.881,54.613,135.881,343.722,315.496,352.676,18.622,15.471,18.622 +2025,59.769,317.968,483.049,195.520,617.146,314.628,486.526,133.843,62.223,133.843,343.784,317.640,353.427,18.717,15.318,18.717 +2026,59.801,315.656,481.880,196.341,619.687,312.269,485.623,132.138,69.571,132.138,344.284,318.480,354.382,19.174,15.608,19.174 +2027,59.832,313.571,480.418,192.303,601.815,313.892,480.042,130.601,77.005,130.601,344.160,279.201,343.171,18.981,16.415,18.981 +2028,59.864,312.117,479.037,194.464,595.590,314.346,476.330,129.472,85.030,129.472,343.554,265.823,336.540,19.117,16.243,19.117 +2029,59.894,310.935,477.462,199.764,557.965,323.231,461.986,128.468,92.726,128.468,343.439,188.691,303.907,19.156,16.267,19.156 +2030,59.924,310.503,475.459,200.641,597.801,312.432,472.958,127.648,100.384,127.648,340.579,268.786,334.261,19.410,15.908,19.410 +2031,59.955,310.913,472.053,198.922,608.135,308.394,475.399,126.966,108.712,126.966,335.395,290.010,343.771,19.226,13.963,19.226 +2032,59.987,315.969,464.745,202.414,603.702,309.860,472.953,126.656,115.974,126.656,317.610,279.955,338.075,18.713,12.425,18.713 +2033,60.017,338.300,434.100,194.139,620.300,303.993,479.843,126.870,123.210,126.870,242.200,318.144,356.556,17.800,12.878,17.800 +2034,60.048,338.300,434.100,194.139,620.300,303.993,479.843,126.870,123.210,126.870,242.200,318.144,356.556,17.800,12.878,17.800 +2035,60.077,336.984,436.618,194.272,618.805,304.762,479.374,127.003,130.549,127.003,248.622,316.715,355.698,17.824,12.571,17.824 +2036,60.108,314.865,467.302,194.502,617.502,305.689,479.346,127.304,137.904,127.304,324.271,315.968,354.555,17.954,12.870,17.954 +2037,60.140,313.658,471.545,194.086,616.402,306.997,480.204,127.569,145.305,127.569,331.744,314.267,353.594,19.267,13.282,19.267 +2038,60.174,314.034,474.012,193.984,614.982,308.693,480.739,128.454,153.134,128.454,335.747,313.080,352.925,19.186,13.428,19.186 +2039,60.206,315.115,475.743,194.048,613.725,310.427,481.431,129.491,160.463,129.491,337.472,312.248,352.214,19.014,14.288,19.014 +2040,60.238,316.090,478.295,193.664,613.539,311.930,483.141,130.649,167.065,130.649,339.176,311.507,351.951,19.604,14.843,19.604 +2041,60.271,317.883,480.209,193.144,611.648,314.161,484.312,132.217,174.715,132.217,340.164,310.542,351.244,19.874,14.862,19.874 +2042,60.301,319.052,482.491,192.086,610.128,315.842,485.831,133.859,1.718,133.859,341.479,310.340,350.744,19.311,14.923,19.311 +2043,60.331,320.965,484.464,190.463,608.446,317.688,487.650,135.807,8.627,135.807,341.708,310.488,350.848,19.140,14.898,19.140 +2044,60.361,323.189,486.711,188.315,605.593,320.006,489.572,138.042,15.653,138.042,342.440,310.845,351.000,19.007,15.467,19.007 +2045,60.392,325.675,488.817,186.255,602.974,322.360,491.559,140.412,22.526,140.412,343.174,310.918,351.780,19.103,15.354,19.103 +2046,60.424,327.920,492.060,183.769,599.342,324.884,494.337,143.130,29.258,143.130,344.200,311.311,351.790,19.200,16.188,19.200 +2047,60.456,330.707,494.809,181.218,595.753,327.378,497.039,146.185,35.958,146.185,344.729,311.802,352.742,19.658,16.322,19.658 +2048,60.487,333.669,499.128,178.338,591.456,330.240,501.161,149.342,42.594,149.342,345.454,311.565,353.425,20.677,16.267,20.677 +2049,60.518,336.699,503.393,175.624,587.142,332.913,505.311,153.130,48.814,153.130,346.098,312.790,354.585,20.933,16.557,20.933 +2050,60.548,336.699,503.393,175.624,587.142,332.913,505.311,153.130,48.814,153.130,346.098,312.790,354.585,20.933,16.557,20.933 +2051,60.577,339.733,507.753,172.472,580.979,335.393,509.558,157.416,55.251,157.416,346.310,312.438,355.712,21.547,17.114,21.547 +2052,60.608,342.356,513.509,170.001,574.843,338.028,514.928,161.854,61.673,161.854,347.551,312.365,356.660,21.888,17.701,21.888 +2053,60.639,345.025,519.992,167.882,567.642,340.436,521.078,166.682,68.127,166.682,347.851,312.346,357.281,22.203,17.713,22.203 +2054,60.670,347.119,527.350,166.177,559.969,342.659,527.990,171.829,74.342,171.829,349.457,312.348,358.470,22.624,18.040,22.624 +2055,60.703,348.951,536.372,164.666,551.913,344.165,536.580,177.510,80.910,177.510,350.408,311.676,359.990,22.110,17.932,22.110 +2056,60.734,350.108,544.906,163.659,542.903,344.630,544.624,2.946,86.666,2.946,350.668,310.871,361.639,23.124,18.600,23.124 +2057,60.765,349.757,555.518,164.564,533.228,344.645,554.632,9.834,92.862,9.834,351.808,310.512,362.183,25.960,18.327,25.960 +2058,60.796,348.133,566.539,165.475,523.232,342.785,564.992,16.128,98.940,16.128,352.731,309.742,363.865,24.572,19.924,24.572 +2059,60.826,345.059,577.862,168.635,512.765,339.962,575.693,23.056,105.202,23.056,353.495,308.812,364.574,26.155,19.856,26.155 +2060,60.856,339.908,590.086,174.285,502.299,335.456,587.658,28.610,111.580,28.610,354.590,308.271,364.732,21.309,17.058,21.309 +2061,60.887,333.690,600.806,180.263,491.923,329.261,597.594,35.957,117.629,35.957,354.368,307.299,365.310,21.902,16.674,21.902 +2062,60.921,327.014,610.003,187.820,481.729,322.601,605.662,44.529,124.019,44.529,353.611,307.006,365.990,25.664,16.639,25.664 +2063,60.951,318.323,618.751,197.432,472.553,314.415,613.692,52.322,130.166,52.322,353.632,306.241,366.417,25.671,16.279,25.671 +2064,60.982,318.323,618.751,197.432,472.553,314.415,613.692,52.322,130.166,52.322,353.632,306.241,366.417,25.671,16.279,25.671 +2065,61.009,307.250,626.567,207.621,463.736,303.577,620.196,60.033,136.956,60.033,352.239,305.582,366.948,23.266,16.444,23.266 +2066,61.041,295.470,633.012,219.275,456.369,292.450,625.375,68.429,143.315,68.429,351.720,305.973,368.145,23.271,16.959,23.271 +2067,61.072,280.317,637.945,232.470,451.302,278.103,629.313,75.613,149.612,75.613,349.712,305.723,367.535,26.402,17.236,26.402 +2068,61.105,269.557,639.169,246.309,447.696,268.733,629.710,85.022,156.038,85.022,347.558,306.838,366.548,26.770,17.972,26.770 +2069,61.138,252.284,638.989,260.817,447.013,252.764,629.171,92.802,162.624,92.802,345.006,306.390,364.667,27.065,17.094,27.065 +2070,61.170,239.252,636.512,275.937,448.665,241.289,627.119,102.241,169.426,102.241,344.263,308.249,363.486,24.302,16.646,24.302 +2071,61.200,226.287,631.798,290.433,452.472,229.681,622.723,110.510,176.269,110.510,342.110,308.367,361.489,23.353,16.573,23.353 +2072,61.230,213.922,625.293,304.033,458.394,218.766,616.558,119.014,3.094,119.014,339.366,310.520,359.343,23.075,17.299,23.075 +2073,61.262,203.284,616.836,316.340,466.571,209.067,609.227,127.235,9.994,127.235,337.859,312.177,356.973,22.738,17.224,22.738 +2074,61.292,194.545,608.551,326.963,476.622,201.410,601.762,135.322,16.844,135.322,335.219,313.498,354.530,23.000,16.754,23.000 +2075,61.322,187.180,599.240,336.149,487.949,194.840,593.495,143.130,23.590,143.130,333.600,315.157,352.749,23.400,16.388,23.400 +2076,61.352,181.581,588.874,343.331,499.759,189.585,584.351,150.533,30.700,150.533,332.555,316.265,350.941,23.167,16.713,23.167 +2077,61.382,181.581,588.874,343.331,499.759,189.585,584.351,150.533,30.700,150.533,332.555,316.265,350.941,23.167,16.713,23.167 +2078,61.411,177.428,578.118,348.618,511.567,185.834,574.636,157.499,37.950,157.499,330.860,317.578,349.057,22.648,17.859,22.648 +2079,61.442,175.733,567.263,352.135,523.383,183.349,565.128,164.340,45.190,164.340,331.759,318.906,347.578,20.797,17.337,20.797 +2080,61.474,174.893,557.184,353.835,535.213,182.188,556.023,170.955,52.561,170.955,330.794,320.220,345.568,20.066,18.088,20.066 +2081,61.505,174.747,545.152,354.014,545.931,181.705,544.875,177.721,60.078,177.721,330.335,321.859,344.262,23.181,18.026,23.181 +2082,61.537,174.698,538.439,352.893,556.069,181.636,538.711,2.246,67.706,2.246,329.727,322.719,343.612,24.021,17.996,24.021 +2083,61.568,176.720,527.576,350.464,565.016,182.949,528.600,9.331,75.784,9.331,329.779,323.307,342.405,24.169,18.987,24.169 +2084,61.598,178.789,519.641,347.636,572.910,184.592,521.154,14.621,83.056,14.621,329.663,323.723,341.657,25.410,19.052,25.410 +2085,61.629,181.601,512.181,345.059,579.501,187.063,514.122,19.566,90.567,19.566,329.942,323.083,341.535,26.718,17.989,26.718 +2086,61.659,183.963,506.296,340.796,586.338,189.036,508.576,24.206,97.640,24.206,329.478,323.468,340.601,26.860,18.565,26.860 +2087,61.689,187.078,500.632,337.450,591.544,191.779,503.157,28.250,105.068,28.250,329.638,323.184,340.310,26.493,18.458,26.493 +2088,61.720,190.569,495.753,333.381,596.326,194.544,498.259,32.233,112.582,32.233,330.095,323.537,339.492,27.602,19.610,27.602 +2089,61.750,190.569,495.753,333.381,596.326,194.544,498.259,32.233,112.582,32.233,330.095,323.537,339.492,27.602,19.610,27.602 +2090,61.779,193.512,492.512,330.335,600.150,197.017,495.036,35.763,120.305,35.763,330.586,322.262,339.224,25.966,17.965,25.966 +2091,61.810,196.879,488.974,327.377,603.555,200.177,491.667,39.230,128.062,39.230,330.068,321.439,338.585,26.969,16.059,26.969 +2092,61.841,199.937,486.728,324.500,607.500,202.984,489.504,42.333,135.000,42.333,330.339,321.026,338.585,26.613,16.971,26.613 +2093,61.871,202.750,484.250,322.084,610.372,205.614,487.114,45.000,142.326,45.000,330.926,321.010,339.027,26.163,16.902,26.163 +2094,61.903,205.693,482.904,320.006,613.307,208.262,485.700,47.425,149.582,47.425,331.546,320.743,339.140,25.092,16.862,25.092 +2095,61.933,208.704,480.986,318.001,615.459,211.034,483.753,49.888,157.051,49.888,332.054,320.780,339.288,26.012,15.679,26.012 +2096,61.964,211.075,480.052,316.328,617.642,213.096,482.645,52.058,164.105,52.058,333.297,320.872,339.873,25.209,16.165,25.209 +2097,61.994,213.183,478.461,314.836,619.453,215.340,481.418,53.893,170.681,53.893,332.984,321.399,340.305,24.599,16.710,24.599 +2098,62.024,215.664,477.047,313.382,621.839,217.856,480.258,55.675,177.455,55.675,333.804,321.527,341.580,25.073,16.495,25.073 +2099,62.055,217.179,476.067,311.786,623.694,219.347,479.461,57.432,4.302,57.432,334.572,322.121,342.627,24.224,16.454,24.224 +2100,62.086,219.537,475.176,310.924,625.771,221.688,478.741,58.891,10.784,58.891,335.655,323.376,343.982,24.623,16.326,24.623 +2101,62.116,219.537,475.176,310.924,625.771,221.688,478.741,58.891,10.784,58.891,335.655,323.376,343.982,24.623,16.326,24.623 +2102,62.145,220.802,474.039,309.466,627.331,223.091,478.025,60.137,16.958,60.137,335.788,324.019,344.979,23.660,16.780,23.660 +2103,62.176,221.916,473.046,308.091,628.722,224.292,477.410,61.429,22.834,61.429,335.987,324.852,345.925,22.956,16.686,22.956 +2104,62.207,223.165,471.674,306.362,630.027,225.665,476.483,62.534,28.202,62.534,336.076,325.234,346.915,23.132,16.540,23.132 +2105,62.237,224.385,471.544,304.689,631.415,226.626,476.064,63.631,33.163,63.631,337.629,325.646,347.719,22.629,16.585,22.629 +2106,62.270,225.666,470.159,302.975,632.435,228.074,475.226,64.573,37.598,64.573,337.061,326.804,348.281,23.185,17.244,23.185 +2107,62.301,226.794,469.821,301.152,633.617,229.099,474.888,65.538,41.254,65.538,337.501,326.330,348.634,23.189,17.140,23.189 +2108,62.331,227.225,469.119,299.141,634.832,229.679,474.786,66.584,44.336,66.584,336.587,326.776,348.939,22.529,16.773,22.529 +2109,62.362,228.589,470.171,297.516,636.382,230.600,475.010,67.436,46.507,67.436,338.911,326.942,349.392,21.332,17.746,21.332 +2110,62.392,230.051,469.368,295.810,637.221,232.167,474.705,68.369,48.089,68.369,337.581,326.971,349.064,21.749,17.650,21.749 +2111,62.423,231.507,469.185,294.307,638.295,233.526,474.570,69.444,48.859,69.444,337.781,326.712,349.284,21.887,18.074,21.887 +2112,62.456,232.958,469.081,292.781,639.255,234.924,474.616,70.438,48.958,70.438,337.270,325.958,349.017,21.476,17.862,21.476 +2113,62.489,234.800,468.400,291.275,639.920,236.752,474.255,71.565,48.327,71.565,336.466,325.952,348.810,22.136,18.001,22.136 +2114,62.521,236.373,468.640,289.906,640.752,238.057,474.001,72.553,46.953,72.553,338.014,326.245,349.252,21.642,17.675,21.642 +2115,62.552,237.848,467.835,288.250,640.750,239.450,473.344,73.788,45.000,73.788,337.271,325.269,348.747,21.273,17.678,21.273 +2116,62.582,237.848,467.835,288.250,640.750,239.450,473.344,73.788,45.000,73.788,337.271,325.269,348.747,21.273,17.678,21.273 +2117,62.610,239.519,468.071,286.700,641.195,240.812,472.877,74.944,42.585,74.944,338.967,325.636,348.920,20.900,17.164,20.900 +2118,62.641,240.559,467.466,284.764,641.267,241.771,472.406,76.225,39.640,76.225,338.310,324.971,348.483,20.114,16.822,20.114 +2119,62.673,242.256,466.446,282.665,641.046,243.350,471.353,77.433,36.234,77.433,338.307,324.444,348.362,20.646,17.269,20.646 +2120,62.705,243.691,465.563,280.381,640.550,244.646,470.278,78.559,32.530,78.559,338.331,324.274,347.954,20.921,16.982,20.921 +2121,62.738,244.296,464.128,278.073,640.112,245.227,469.249,79.695,28.579,79.695,337.557,323.145,347.966,19.856,17.259,19.856 +2122,62.770,245.104,463.548,275.540,639.624,245.896,468.453,80.838,24.520,80.838,337.477,323.097,347.414,19.076,17.606,19.076 +2123,62.800,246.114,462.619,273.024,639.204,246.781,467.346,81.970,20.108,81.970,338.129,322.096,347.677,19.134,17.753,19.134 +2124,62.832,247.841,461.703,270.684,638.772,248.452,466.689,83.019,15.642,83.019,336.973,321.283,347.019,19.933,17.834,19.933 +2125,62.863,248.760,461.494,268.575,638.559,249.275,466.437,84.048,11.058,84.048,336.451,320.637,346.390,18.718,17.749,18.718 +2126,62.892,250.595,461.381,266.216,638.547,251.022,466.324,85.061,6.320,85.061,335.859,319.920,345.783,19.225,17.622,19.225 +2127,62.922,252.021,461.309,264.088,638.651,252.371,466.372,86.055,1.502,86.055,335.204,318.310,345.354,18.577,16.984,18.577 +2128,62.953,253.782,461.614,262.331,638.409,254.020,466.238,87.054,176.861,87.054,335.482,317.893,344.742,18.549,16.340,18.549 +2129,62.984,255.610,461.568,260.274,638.383,255.775,466.205,87.955,171.924,87.955,335.179,317.489,344.459,18.667,16.142,18.667 +2130,63.013,255.610,461.568,260.274,638.383,255.775,466.205,87.955,171.924,87.955,335.179,317.489,344.459,18.667,16.142,18.667 +2131,63.042,257.517,461.947,258.251,638.689,257.601,466.766,88.995,166.770,88.995,334.177,317.277,343.816,18.646,16.465,18.646 +2132,63.073,259.000,461.500,255.950,638.850,259.000,466.925,90.000,161.565,90.000,333.000,316.860,343.850,18.000,16.128,18.000 +2133,63.107,260.803,461.526,253.446,639.453,260.692,467.216,91.123,156.339,91.123,333.308,316.991,344.692,18.800,16.276,18.800 +2134,63.140,261.713,461.526,250.848,639.610,261.508,467.290,92.045,151.052,92.045,333.644,317.321,345.181,18.667,16.562,18.667 +2135,63.172,263.010,461.527,248.188,639.850,262.694,467.403,93.082,145.644,93.082,334.185,317.831,345.954,18.696,16.411,18.696 +2136,63.204,265.009,460.885,245.525,639.927,264.516,467.291,94.399,140.218,94.399,334.320,318.172,347.169,19.021,16.212,19.021 +2137,63.235,266.290,459.956,243.250,640.250,265.571,467.501,95.440,135.000,95.440,333.017,318.198,348.175,19.341,16.263,19.341 +2138,63.265,268.048,459.594,240.568,640.072,267.119,467.487,96.710,129.631,96.710,333.114,319.713,349.010,19.629,16.520,19.629 +2139,63.301,269.339,458.168,238.117,640.208,268.040,467.584,97.853,124.114,97.853,331.175,320.912,350.187,19.505,16.345,19.505 +2140,63.343,272.069,456.433,235.670,640.172,270.165,467.726,99.570,118.768,99.570,328.658,321.481,351.562,18.856,16.122,18.856 +2141,63.377,274.767,451.942,233.724,640.297,271.596,468.194,101.041,113.421,101.041,319.224,322.215,352.341,18.146,16.745,18.146 +2142,63.411,281.118,433.971,232.083,640.575,273.388,468.753,102.529,107.601,102.529,282.118,323.563,353.380,17.788,18.163,17.788 +2143,63.448,283.718,438.746,229.917,640.589,276.352,469.769,103.357,102.011,103.357,290.081,323.170,353.852,19.112,17.939,19.112 +2144,63.480,280.694,462.214,228.140,640.285,278.480,470.485,104.984,96.582,104.984,336.960,323.469,354.085,19.894,18.225,19.894 +2145,63.512,282.298,465.586,225.896,640.027,280.592,471.256,106.739,91.109,106.739,342.903,322.346,354.745,20.895,18.319,20.895 +2146,63.542,286.675,467.003,224.135,639.560,284.629,472.802,109.440,86.040,109.440,342.472,323.886,354.770,21.467,18.164,21.467 +2147,63.573,290.038,468.529,222.037,638.656,287.958,473.804,111.523,80.824,111.523,343.742,323.529,355.083,21.894,18.544,21.894 +2148,63.605,293.487,469.555,219.877,637.869,291.011,475.186,113.728,75.132,113.728,342.806,323.818,355.109,22.162,17.962,22.162 +2149,63.637,296.279,470.911,217.151,636.018,293.737,476.098,116.109,69.015,116.109,343.059,322.655,354.611,21.218,17.561,21.218 +2150,63.668,299.783,472.564,214.569,633.468,297.266,477.179,118.610,63.560,118.610,343.098,321.567,353.611,21.548,17.815,21.548 +2151,63.700,303.318,473.977,210.739,630.489,300.588,478.465,121.310,58.166,121.310,342.646,319.377,353.152,21.623,17.185,21.623 +2152,63.731,307.314,475.695,206.987,626.852,304.384,480.013,124.160,52.796,124.160,341.954,318.210,352.390,21.987,17.573,21.987 +2153,63.762,311.007,477.361,202.722,622.108,308.011,481.287,127.341,47.331,127.341,341.767,316.419,351.644,21.572,17.996,21.572 +2154,63.793,315.061,479.913,197.975,617.357,311.925,483.555,130.732,41.902,130.732,341.880,315.311,351.492,22.165,17.737,22.165 +2155,63.823,318.857,482.819,193.335,612.157,315.685,486.081,134.193,36.416,134.193,342.266,314.014,351.366,21.769,18.192,21.769 +2156,63.855,322.530,485.649,188.447,606.107,319.311,488.536,138.117,31.159,138.117,343.194,312.641,351.843,20.081,17.433,20.081 +2157,63.886,326.798,489.516,183.603,599.722,323.320,492.248,141.843,25.844,141.843,343.677,311.309,352.523,21.118,17.395,21.118 +2158,63.916,326.798,489.516,183.603,599.722,323.320,492.248,141.843,25.844,141.843,343.677,311.309,352.523,21.118,17.395,21.118 +2159,63.945,330.307,493.956,178.952,592.836,326.756,496.349,146.023,20.706,146.023,344.416,310.161,352.981,20.425,17.263,20.425 +2160,63.976,334.554,499.097,174.576,585.635,330.313,501.468,150.791,15.562,150.791,344.297,308.916,354.015,20.151,16.767,20.151 +2161,64.007,339.294,505.039,170.870,577.958,333.963,507.423,155.906,10.848,155.906,343.677,308.084,355.356,20.372,16.166,20.372 +2162,64.039,343.681,512.031,167.970,569.992,337.376,514.176,161.211,6.684,161.211,343.393,307.350,356.713,21.091,15.682,21.091 +2163,64.071,349.464,520.334,166.700,561.353,341.023,522.183,167.647,3.136,167.647,340.052,307.634,357.334,21.164,15.566,21.164 +2164,64.104,359.262,528.641,164.548,553.424,342.768,530.661,173.019,0.671,173.019,326.095,305.085,359.331,20.459,13.718,20.459 +2165,64.135,421.166,538.388,163.926,544.215,344.103,541.304,177.833,178.716,177.833,206.080,304.125,360.316,18.117,14.387,18.117 +2166,64.167,412.188,555.822,163.968,534.937,344.442,551.076,4.008,176.765,4.008,226.496,304.814,362.320,18.426,13.179,18.426 +2167,64.198,376.332,567.222,165.963,524.619,343.824,561.154,10.574,174.508,10.574,296.951,304.059,363.089,18.822,13.553,18.822 +2168,64.228,362.655,577.258,168.019,513.277,341.671,569.782,19.610,171.514,19.610,320.536,304.640,365.087,26.040,14.784,26.040 +2169,64.258,352.462,588.159,172.370,502.385,337.735,580.637,27.055,168.064,27.055,332.650,304.229,365.723,25.846,14.302,25.846 +2170,64.290,343.669,599.404,178.470,491.097,332.006,591.234,35.010,164.438,35.010,337.930,304.368,366.409,27.357,14.462,27.357 +2171,64.323,333.980,610.414,185.952,479.990,324.184,601.272,43.025,160.801,43.025,340.818,304.294,367.617,26.269,15.886,26.269 +2172,64.355,322.381,620.291,195.152,470.004,314.430,610.413,51.170,156.982,51.170,342.974,304.629,368.336,25.080,17.704,25.080 +2173,64.386,309.957,628.557,206.342,461.202,303.703,617.908,59.577,153.313,59.577,344.161,304.563,368.861,23.293,18.557,23.293 +2174,64.416,309.957,628.557,206.342,461.202,303.703,617.908,59.577,153.313,59.577,344.161,304.563,368.861,23.293,18.557,23.293 +2175,64.445,295.898,634.842,219.167,454.693,291.548,623.869,68.378,149.982,68.378,344.280,305.766,367.888,22.278,18.222,22.278 +2176,64.476,279.795,640.022,233.057,450.071,277.045,628.413,76.675,146.565,76.675,343.497,306.752,367.358,24.788,17.974,24.788 +2177,64.508,267.276,641.513,248.026,448.535,266.633,630.092,86.781,143.067,86.781,341.754,307.811,364.631,27.238,16.874,27.238 +2178,64.540,248.251,641.812,263.660,448.946,249.271,629.636,94.788,139.529,94.788,338.083,308.899,362.520,24.584,16.213,24.584 +2179,64.571,234.210,641.164,279.267,451.777,237.869,627.100,104.585,136.005,104.585,331.132,310.583,360.197,22.560,15.976,22.560 +2180,64.603,215.505,640.916,293.193,456.608,224.259,621.605,114.386,132.901,114.386,315.070,312.272,357.475,20.839,15.982,20.839 +2181,64.634,184.946,658.110,306.300,464.164,213.760,615.524,124.083,129.685,124.083,251.604,313.555,354.439,19.968,15.997,19.968 +2182,64.664,178.261,633.079,317.200,472.900,202.365,606.188,131.872,126.870,131.872,279.574,314.800,351.799,18.388,15.800,18.388 +2183,64.695,188.393,604.172,325.894,482.742,195.409,598.325,140.194,124.445,140.194,330.207,316.531,348.473,22.534,16.338,22.534 +2184,64.726,183.009,589.264,334.409,494.338,187.656,586.404,148.392,121.242,148.392,335.553,316.424,346.468,18.802,16.204,18.802 +2185,64.757,179.102,577.483,339.782,506.796,182.670,575.899,156.060,118.496,156.060,335.468,317.793,343.274,19.725,16.296,19.725 +2186,64.788,176.733,565.979,344.100,518.827,179.801,565.072,163.530,115.682,163.530,334.938,318.021,341.337,20.088,16.517,20.088 +2187,64.820,175.232,554.937,346.102,530.682,178.088,554.476,170.819,113.318,170.819,333.531,318.152,339.317,20.910,16.498,20.910 +2188,64.849,175.232,554.937,346.102,530.682,178.088,554.476,170.819,113.318,170.819,333.531,318.152,339.317,20.910,16.498,20.910 +2189,64.878,175.481,543.455,347.639,543.179,178.624,543.348,178.047,110.433,178.047,331.557,318.939,337.846,22.862,16.610,22.862 +2190,64.909,176.141,533.803,346.374,554.299,179.071,534.048,4.764,108.250,4.764,330.936,319.712,336.815,22.505,16.489,22.505 +2191,64.941,178.475,522.702,345.895,565.700,182.165,523.465,11.689,105.173,11.689,330.247,320.656,337.782,25.495,16.391,25.495 +2192,64.974,181.036,514.815,343.441,575.762,185.093,516.144,18.148,102.680,18.148,329.543,321.927,338.081,25.968,16.659,25.968 +2193,65.007,184.355,506.695,341.175,584.787,189.136,508.788,23.643,99.739,23.643,329.073,322.074,339.511,26.452,16.645,26.452 +2194,65.041,187.689,500.014,337.455,592.620,192.655,502.793,29.233,97.184,29.233,329.074,321.873,340.455,26.668,16.633,26.668 +2195,65.074,191.881,494.082,333.306,600.025,196.799,497.440,34.321,94.728,34.321,329.253,321.878,341.162,27.556,16.605,27.556 +2196,65.106,195.671,489.037,328.750,606.489,200.470,492.876,38.660,92.468,38.660,329.995,321.736,342.288,25.769,16.493,25.769 +2197,65.140,199.669,484.467,323.877,603.996,202.537,487.146,43.052,90.363,43.052,329.023,306.026,336.872,25.576,15.664,25.576 +2198,65.172,203.984,480.935,318.821,595.383,203.101,479.978,47.275,87.990,47.275,329.191,277.356,326.586,25.782,16.832,25.782 +2199,65.203,207.586,477.170,313.258,597.550,206.374,475.672,51.019,86.121,51.019,327.812,273.457,323.958,25.311,17.046,25.311 +2200,65.234,211.302,474.489,307.954,598.863,209.473,471.934,54.407,84.632,54.407,327.351,267.734,321.066,23.879,17.119,23.879 +2201,65.264,214.720,471.897,303.040,600.166,212.742,468.758,57.789,83.509,57.789,326.050,263.599,318.631,23.141,17.081,23.141 +2202,65.296,218.723,469.445,298.958,602.627,216.943,466.273,60.690,83.027,60.690,325.372,262.954,318.097,23.161,17.246,23.161 +2203,65.325,222.300,467.600,295.196,603.770,220.474,463.947,63.435,83.326,63.435,325.124,260.615,316.956,22.361,17.181,22.361 +2204,65.356,225.190,464.722,292.488,605.553,224.221,462.563,65.830,84.094,65.830,321.548,260.301,316.814,22.835,16.841,22.835 +2205,65.387,227.924,464.314,289.798,604.014,226.284,460.271,67.920,86.000,67.920,322.879,254.497,314.153,21.182,17.021,21.182 +2206,65.417,227.924,464.314,289.798,604.014,226.284,460.271,67.920,86.000,67.920,322.879,254.497,314.153,21.182,17.021,21.182 +2207,65.450,230.934,463.315,288.089,606.416,229.599,459.688,69.788,88.660,69.788,323.532,257.140,315.801,21.612,16.925,21.612 +2208,65.480,233.482,463.158,286.631,609.468,232.381,459.876,71.454,92.121,71.454,325.078,261.524,318.156,21.671,16.544,21.671 +2209,65.511,234.859,462.543,284.848,613.872,234.284,460.671,72.897,96.340,72.897,326.509,270.336,322.592,21.027,16.013,21.027 +2210,65.542,236.755,461.929,283.085,618.017,236.609,461.417,74.083,101.094,74.083,327.748,278.077,326.682,21.932,15.297,21.932 +2211,65.572,237.551,462.390,279.000,630.000,238.528,466.061,75.097,106.504,75.097,330.068,302.270,337.666,21.237,15.128,21.237 +2212,65.604,238.088,461.853,272.736,637.967,239.782,468.630,75.964,112.857,75.964,330.576,321.068,344.547,20.616,14.744,20.616 +2213,65.636,238.866,461.937,271.220,637.458,240.275,467.856,76.608,119.008,76.608,332.144,320.715,344.314,20.707,14.382,20.707 +2214,65.665,239.537,461.737,270.568,636.786,240.803,467.292,77.152,125.171,77.152,332.343,320.008,343.738,20.628,12.931,20.628 +2215,65.696,240.322,462.495,270.176,636.475,241.333,467.140,77.721,131.792,77.721,333.682,320.061,343.191,20.364,12.516,20.364 +2216,65.726,241.041,462.570,270.346,636.046,241.982,467.037,78.111,138.724,78.111,333.325,318.996,342.454,19.932,12.952,19.932 +2217,65.757,242.380,463.202,271.197,635.595,243.165,467.063,78.503,145.641,78.503,333.594,318.134,341.474,20.462,12.930,20.462 +2218,65.788,243.380,463.337,272.093,635.249,244.128,467.119,78.811,152.911,78.811,333.009,317.529,340.720,20.471,13.196,20.471 +2219,65.820,244.043,463.625,273.511,635.266,244.762,467.362,79.103,160.120,79.103,333.014,317.227,340.623,19.991,13.292,19.991 +2220,65.850,244.043,463.625,273.511,635.266,244.762,467.362,79.103,160.120,79.103,333.014,317.227,340.623,19.991,13.292,19.991 +2221,65.878,244.641,464.068,274.906,635.299,245.303,467.584,79.346,167.602,79.346,333.439,316.823,340.594,19.937,13.939,19.937 +2222,65.909,245.305,464.258,276.162,635.541,245.951,467.737,79.475,175.126,79.475,333.920,318.318,340.997,20.609,13.617,20.609 +2223,65.941,245.061,464.673,277.145,636.158,245.707,468.187,79.579,2.490,79.579,334.629,318.525,341.775,19.523,13.248,19.523 +2224,65.973,244.997,464.593,278.077,636.753,245.712,468.477,79.574,10.075,79.574,334.811,320.289,342.710,19.969,13.931,19.969 +2225,66.005,244.987,465.228,278.434,637.551,245.593,468.570,79.716,17.577,79.716,337.465,321.261,344.258,20.551,14.098,20.551 +2226,66.038,243.916,465.288,278.428,638.466,244.604,469.071,79.695,25.201,79.695,337.736,322.541,345.426,19.051,14.211,19.051 +2227,66.069,244.000,465.000,278.572,639.332,244.782,469.303,79.695,32.735,79.695,337.915,323.734,346.662,20.393,14.240,20.393 +2228,66.101,243.369,464.852,278.570,640.147,244.216,469.454,79.579,40.276,79.579,338.824,324.968,348.183,19.704,14.595,19.704 +2229,66.133,243.134,464.754,278.149,641.063,244.065,469.754,79.450,47.974,79.450,339.137,325.711,349.307,19.833,14.646,19.833 +2230,66.164,242.830,464.315,278.249,641.954,243.945,470.228,79.319,55.491,79.319,338.183,326.527,350.217,19.965,14.884,19.965 +2231,66.195,242.588,463.955,277.100,643.200,243.923,470.819,78.996,63.435,78.996,337.103,326.913,351.088,19.551,15.205,19.551 +2232,66.225,242.188,463.781,270.732,628.434,242.065,463.209,77.887,71.089,77.887,336.297,294.809,335.125,19.613,16.853,19.613 +2233,66.255,226.392,391.053,270.289,616.646,240.179,457.919,78.350,78.425,78.350,186.530,270.446,323.074,18.073,16.737,18.073 +2234,66.287,237.744,448.497,273.407,614.885,239.675,457.631,78.060,86.547,78.060,302.988,268.537,321.660,18.085,17.795,18.085 +2235,66.317,240.676,457.246,276.849,620.198,241.430,460.656,77.538,94.830,77.538,319.868,279.118,326.853,20.872,16.322,20.872 +2236,66.347,240.676,457.246,276.849,620.198,241.430,460.656,77.538,94.830,77.538,319.868,279.118,326.853,20.872,16.322,20.872 +2237,66.376,240.664,461.082,274.459,641.935,242.954,471.036,77.045,102.529,77.045,326.797,323.335,347.225,20.429,14.751,20.429 +2238,66.407,240.465,463.062,275.001,640.634,242.329,470.791,76.443,110.136,76.443,329.637,322.097,345.539,20.677,14.396,20.677 +2239,66.439,239.789,463.920,274.264,638.796,241.321,469.963,75.774,118.301,75.774,331.034,321.643,343.503,20.766,13.817,20.766 +2240,66.471,238.973,464.774,275.635,637.430,240.292,469.721,75.069,125.854,75.069,332.063,320.624,342.304,21.064,13.690,21.064 +2241,66.503,237.338,465.200,277.336,636.408,238.652,469.863,74.261,133.152,74.261,331.899,319.856,341.588,20.563,12.812,20.563 +2242,66.534,235.718,465.654,278.859,634.877,236.908,469.664,73.465,140.778,73.465,332.276,319.224,340.641,20.087,13.543,20.087 +2243,66.564,234.302,465.493,281.348,633.314,235.496,469.301,72.582,148.408,72.582,332.455,318.652,340.435,20.561,13.207,20.561 +2244,66.594,233.246,465.923,283.619,631.892,234.355,469.267,71.642,156.038,71.642,332.682,318.819,339.728,21.174,13.910,21.174 +2245,66.624,231.804,466.216,286.858,630.608,232.925,469.395,70.572,163.652,70.572,333.206,319.242,339.947,21.510,14.035,21.510 +2246,66.655,230.479,466.945,290.046,629.624,231.551,469.802,69.444,171.027,69.444,334.269,319.411,340.371,21.770,14.557,21.770 +2247,66.685,229.149,467.841,293.846,629.219,230.350,470.837,68.157,178.329,68.157,334.816,320.243,341.272,21.787,14.465,21.787 +2248,66.715,229.149,467.841,293.846,629.219,230.350,470.837,68.157,178.329,68.157,334.816,320.243,341.272,21.787,14.465,21.787 +2249,66.743,228.164,468.716,297.358,628.744,229.438,471.689,66.801,5.452,66.801,335.751,321.688,342.222,22.847,14.672,22.847 +2250,66.775,226.503,469.769,300.769,628.751,228.054,473.151,65.368,12.164,65.368,336.053,322.256,343.494,23.265,15.720,23.265 +2251,66.808,224.752,470.876,304.232,628.435,226.646,474.716,63.741,19.058,63.741,335.800,323.839,344.363,23.437,16.068,23.437 +2252,66.842,223.032,472.217,307.539,628.273,225.330,476.542,62.026,25.494,62.026,335.335,324.340,345.129,23.563,16.394,23.563 +2253,66.875,221.267,473.773,310.507,628.034,223.834,478.250,60.164,31.418,60.164,335.782,325.338,346.103,23.651,16.336,23.651 +2254,66.907,219.191,475.574,313.512,627.146,221.889,479.950,58.346,36.775,58.346,336.481,326.205,346.762,23.616,16.259,23.616 +2255,66.942,216.923,475.885,315.890,626.409,220.693,481.539,56.310,41.143,56.310,333.097,326.808,346.690,24.407,16.314,24.407 +2256,66.974,212.759,478.571,318.000,626.000,217.186,484.316,52.386,45.000,52.386,333.024,326.683,347.529,23.154,15.556,23.154 +2257,67.006,205.278,474.868,319.200,625.146,214.543,486.529,51.532,48.621,51.532,317.484,326.353,347.270,18.383,16.222,18.383 +2258,67.039,159.372,425.771,321.397,623.686,212.036,488.808,50.123,51.633,50.123,182.968,326.098,347.249,17.709,17.543,17.709 +2259,67.071,181.471,459.841,323.964,620.942,209.500,490.634,47.690,54.137,47.690,263.550,327.020,346.830,17.729,16.609,17.729 +2260,67.102,191.161,477.378,326.718,617.895,206.474,492.855,45.306,57.265,45.306,303.371,326.738,346.916,18.256,16.463,18.256 +2261,67.134,194.779,482.003,329.731,614.201,206.358,492.473,42.122,61.098,42.122,315.082,327.015,346.304,25.960,16.333,25.960 +2262,67.165,194.371,488.646,332.518,609.671,202.566,495.188,38.602,65.659,38.602,324.996,326.394,345.968,25.059,16.313,25.059 +2263,67.196,192.518,493.090,335.557,604.151,199.326,497.840,34.898,71.162,34.898,328.508,325.729,345.111,26.818,17.325,26.818 +2264,67.228,189.044,497.926,337.555,598.350,195.281,501.669,30.964,76.373,30.964,328.934,324.539,343.482,27.611,18.288,27.611 +2265,67.261,185.823,503.775,340.251,591.034,191.341,506.508,26.354,82.117,26.354,329.596,322.874,341.912,25.978,17.860,25.978 +2266,67.293,182.772,509.421,342.999,583.475,188.126,511.530,21.495,88.586,21.495,329.421,321.297,340.929,26.419,16.958,26.419 +2267,67.325,179.906,516.284,345.076,574.506,184.750,517.703,16.325,94.399,16.325,329.565,320.361,339.659,26.474,16.797,26.474 +2268,67.356,177.542,523.963,346.572,565.604,181.798,524.764,10.654,100.305,10.654,330.305,320.652,338.968,25.143,16.547,25.143 +2269,67.387,176.106,532.745,347.588,555.171,179.760,533.052,4.812,106.164,4.812,330.850,318.958,338.184,24.536,16.509,24.536 +2270,67.425,175.417,542.232,347.287,544.089,178.406,542.142,178.277,112.380,178.277,331.512,317.926,337.493,23.125,16.263,23.125 +2271,67.465,175.236,552.119,346.606,532.518,177.956,551.737,172.001,118.301,172.001,333.870,318.121,339.365,22.786,16.052,22.786 +2272,67.498,176.251,563.067,344.547,520.161,179.254,562.264,165.038,124.439,165.038,334.902,317.002,341.119,20.513,16.070,20.513 +2273,67.530,177.914,575.006,340.961,507.679,182.053,573.302,157.620,130.651,157.620,334.897,317.151,343.849,18.439,15.611,18.439 +2274,67.564,178.525,587.804,336.662,497.099,186.253,583.413,150.396,136.325,150.396,329.050,317.651,346.828,17.923,15.156,17.923 +2275,67.595,129.210,640.245,331.327,485.635,192.146,592.294,142.696,142.125,142.696,192.457,316.179,350.699,17.765,14.384,17.765 +2276,67.625,168.229,633.702,323.444,475.910,200.363,602.653,135.984,147.995,135.984,263.797,316.091,353.164,20.141,14.098,20.141 +2277,67.656,193.921,629.425,313.564,466.558,208.373,610.348,127.147,154.259,127.147,308.402,315.349,356.268,21.111,13.367,21.111 +2278,67.686,210.153,632.720,302.449,459.355,218.308,617.769,118.610,160.401,118.610,324.662,313.800,358.723,21.708,13.360,21.708 +2279,67.716,210.153,632.720,302.449,459.355,218.308,617.769,118.610,160.401,118.610,324.662,313.800,358.723,21.708,13.360,21.708 +2280,67.744,225.281,636.695,289.751,452.441,230.177,623.193,109.933,166.759,109.933,332.938,312.639,361.664,21.849,15.403,21.849 +2281,67.776,239.483,640.099,276.612,448.170,242.183,626.971,101.622,173.346,101.622,337.336,310.676,364.142,21.966,16.141,21.966 +2282,67.808,253.953,641.998,262.500,446.500,254.577,628.885,92.726,0.000,92.726,338.854,309.000,365.110,23.117,17.000,23.117 +2283,67.840,269.665,641.922,248.226,446.969,268.378,629.305,84.174,6.340,84.174,341.512,307.662,366.878,23.308,18.442,23.308 +2284,67.871,283.424,639.994,234.266,450.144,280.286,628.058,75.267,12.865,75.267,342.852,306.412,367.535,23.261,18.601,23.261 +2285,67.902,299.510,635.797,221.141,455.611,294.468,623.924,66.991,19.872,66.991,341.371,305.523,367.169,22.582,17.982,22.582 +2286,67.933,314.444,631.090,209.040,463.420,306.509,618.105,58.570,26.259,58.570,335.198,304.567,365.632,23.133,16.884,23.133 +2287,67.963,333.069,632.094,197.880,472.910,316.470,611.709,50.845,32.793,50.845,312.445,304.324,365.021,23.363,15.222,23.363 +2288,67.993,381.370,654.881,188.678,482.651,324.869,603.293,42.397,38.621,42.397,210.822,303.915,363.840,20.324,15.045,20.324 +2289,68.023,339.947,597.385,181.961,492.979,333.654,592.811,36.012,43.858,36.012,347.242,304.165,362.801,23.679,15.815,23.679 +2290,68.054,344.272,586.495,176.348,504.086,338.825,583.557,28.346,50.820,28.346,349.075,305.213,361.454,25.118,18.150,25.118 +2291,68.085,344.272,586.495,176.348,504.086,338.825,583.557,28.346,50.820,28.346,349.075,305.213,361.454,25.118,18.150,25.118 +2292,68.113,349.416,572.748,171.523,516.379,343.650,570.644,20.043,57.291,20.043,348.323,305.107,360.599,25.019,16.914,25.019 +2293,68.144,349.630,560.769,167.807,528.193,345.468,559.810,12.980,64.606,12.980,351.904,306.889,360.445,24.345,16.669,24.345 +2294,68.175,349.898,549.848,165.975,539.690,345.852,549.407,6.219,71.866,6.219,351.604,309.260,359.744,23.489,17.525,23.489 +2295,68.206,349.487,539.646,165.216,550.364,344.594,539.662,179.808,79.205,179.808,349.042,311.119,358.827,21.863,17.561,21.863 +2296,68.237,347.951,530.547,163.525,560.498,342.147,531.190,173.679,86.154,173.679,349.845,312.111,361.525,21.560,20.131,21.560 +2297,68.268,345.616,522.020,165.735,569.482,339.975,523.225,167.942,93.814,167.942,348.584,314.036,360.119,20.867,17.761,20.867 +2298,68.298,342.694,513.757,165.180,577.350,335.784,515.929,162.548,100.366,162.548,347.854,316.000,362.342,20.627,20.345,20.627 +2299,68.329,340.703,506.641,166.946,583.483,332.449,510.042,157.602,107.802,157.602,344.144,315.868,362.001,18.956,19.165,18.956 +2300,68.359,339.452,498.990,169.622,589.292,329.101,504.276,152.944,115.121,152.944,338.146,315.835,361.391,17.878,14.900,17.878 +2301,68.391,339.520,490.784,172.606,594.755,325.431,499.461,148.374,121.849,148.374,327.103,315.658,360.196,17.525,13.308,17.525 +2302,68.424,345.368,478.074,175.149,599.315,321.783,495.258,143.924,128.833,143.924,301.218,315.785,359.580,18.659,12.806,18.659 +2303,68.457,375.537,443.530,178.653,603.137,318.330,490.970,140.332,135.535,140.332,209.599,314.708,358.236,17.348,11.683,17.348 +2304,68.488,338.077,465.615,183.195,606.387,315.346,486.925,136.848,141.911,136.848,293.912,314.695,356.228,17.418,12.210,17.418 +2305,68.518,338.077,465.615,183.195,606.387,315.346,486.925,136.848,141.911,136.848,293.912,314.695,356.228,17.418,12.210,17.418 +2306,68.546,319.921,476.811,187.217,608.883,312.949,484.205,133.315,148.794,133.315,333.610,314.688,353.935,18.460,13.644,18.460 +2307,68.576,314.921,476.548,190.580,612.924,309.769,482.637,130.236,155.225,130.236,336.947,312.338,352.898,19.848,13.480,19.848 +2308,68.609,310.965,474.896,195.421,615.699,307.157,479.846,127.569,161.896,127.569,339.121,312.128,351.613,19.450,13.325,19.450 +2309,68.641,308.445,474.079,200.173,617.865,305.554,478.174,125.218,168.690,125.218,339.763,311.825,349.789,20.616,13.924,20.616 +2310,68.674,305.904,472.553,204.639,620.126,303.410,476.414,122.869,175.280,122.869,339.430,311.335,348.622,21.063,14.053,21.063 +2311,68.706,303.456,471.460,208.568,622.368,301.300,475.086,120.735,1.822,120.735,339.540,311.383,347.976,21.930,14.638,21.930 +2312,68.738,301.335,470.797,212.207,624.573,299.422,474.241,119.055,8.262,119.055,339.659,312.818,347.538,22.145,15.191,22.145 +2313,68.769,299.087,469.344,216.065,626.313,297.296,472.793,117.451,14.477,117.451,339.588,313.628,347.362,21.517,15.390,21.517 +2314,68.800,296.696,468.127,218.869,628.208,294.898,471.845,115.821,20.754,115.821,339.476,314.965,347.735,20.994,15.346,20.994 +2315,68.831,294.062,467.164,221.005,630.014,292.227,471.200,114.444,26.826,114.444,339.236,316.636,348.102,20.607,15.703,20.607 +2316,68.862,292.940,467.039,222.921,631.526,291.239,470.949,113.499,32.869,113.499,340.472,317.308,349.001,21.691,16.217,21.691 +2317,68.891,291.283,466.788,224.290,632.769,289.740,470.509,112.521,38.743,112.521,341.852,318.432,349.909,22.035,15.660,22.035 +2318,68.922,289.801,465.525,225.258,633.715,288.055,469.932,111.615,44.573,111.615,341.316,319.656,350.797,21.558,15.465,21.558 +2319,68.954,288.183,465.613,225.639,634.967,286.511,469.982,110.947,50.194,110.947,342.329,320.092,351.686,21.283,15.877,21.283 +2320,68.983,287.192,465.641,225.676,636.540,285.309,470.701,110.410,55.751,110.410,341.650,321.248,352.448,21.338,16.550,21.338 +2321,69.014,287.192,465.641,225.676,636.540,285.309,470.701,110.410,55.751,110.410,341.650,321.248,352.448,21.338,16.550,21.338 +2322,69.042,285.867,465.370,225.971,637.188,284.054,470.397,109.832,61.082,109.832,342.519,321.190,353.207,19.924,16.698,19.924 +2323,69.075,285.627,465.110,225.744,637.330,283.730,470.396,109.747,66.420,109.747,342.185,321.623,353.418,19.548,17.049,19.548 +2324,69.108,285.389,465.710,225.659,638.123,283.529,470.918,109.654,71.313,109.654,342.794,321.950,353.854,19.238,16.967,19.238 +2325,69.141,285.427,466.533,204.265,556.059,295.564,438.388,109.807,75.964,109.807,343.122,152.070,283.293,19.191,17.463,19.191 +2326,69.176,286.248,466.818,210.459,558.257,296.453,438.755,109.983,80.538,109.983,343.110,158.809,283.389,19.479,17.262,19.479 +2327,69.208,287.393,467.145,219.910,609.056,290.031,460.123,110.589,84.560,110.589,343.162,263.000,328.159,19.421,17.255,19.421 +2328,69.241,289.153,467.893,220.294,614.565,290.991,463.166,111.251,87.831,111.251,343.599,275.106,333.456,20.815,17.609,20.815 +2329,69.274,291.072,469.202,218.901,629.991,290.262,471.159,112.479,90.326,112.479,343.862,306.069,348.097,21.507,17.289,21.507 +2330,69.306,292.718,469.771,217.121,635.985,290.538,474.704,113.839,92.291,113.839,343.603,320.584,354.389,21.165,18.225,21.165 +2331,69.337,295.002,469.808,214.510,634.438,292.491,475.070,115.509,93.590,115.509,343.169,320.190,354.830,20.616,18.466,20.616 +2332,69.368,297.434,470.666,211.555,632.692,294.846,475.642,117.474,94.304,117.474,344.311,320.202,355.529,20.619,18.367,20.619 +2333,69.399,300.074,472.049,208.151,630.701,297.305,476.911,119.664,94.332,119.664,344.323,320.128,355.515,20.624,18.417,20.624 +2334,69.430,302.952,473.712,204.107,628.507,299.941,478.498,122.177,93.784,122.177,344.700,320.152,356.009,20.695,18.318,20.695 +2335,69.461,305.575,475.099,200.231,625.463,302.517,479.461,125.032,92.750,125.032,345.878,319.784,356.533,19.070,18.459,19.070 +2336,69.491,309.300,476.900,196.360,621.985,305.898,481.274,127.875,91.345,127.875,345.561,318.382,356.642,19.471,17.990,19.471 +2337,69.523,313.471,479.705,191.455,618.982,309.452,484.247,131.503,89.569,131.503,346.065,320.036,358.195,19.009,18.924,19.009 +2338,69.554,317.493,483.472,187.772,614.065,313.653,487.289,135.170,87.856,135.170,346.477,318.189,357.305,19.006,18.190,19.006 +2339,69.583,317.493,483.472,187.772,614.065,313.653,487.289,135.170,87.856,135.170,346.477,318.189,357.305,19.006,18.190,19.006 +2340,69.612,321.820,486.836,183.984,610.073,317.422,490.652,139.044,85.885,139.044,346.460,318.759,358.105,18.382,18.269,18.382 +2341,69.643,326.180,491.240,179.849,604.574,321.514,494.740,143.130,83.526,143.130,346.800,318.699,358.465,19.400,18.428,19.400 +2342,69.674,330.706,496.072,177.176,597.877,326.318,498.841,147.750,81.511,147.750,347.584,317.247,357.962,19.945,18.423,19.945 +2343,69.706,334.838,502.341,172.865,591.827,329.861,504.928,152.536,78.690,152.536,347.540,316.139,358.759,20.729,20.200,20.729 +2344,69.738,339.192,509.364,171.040,583.872,334.599,511.245,157.730,76.665,157.730,347.838,315.149,357.765,21.408,17.882,21.408 +2345,69.769,343.637,516.744,168.962,575.151,338.733,518.204,163.418,74.358,163.418,347.690,314.042,357.924,21.963,17.796,21.963 +2346,69.801,346.793,525.205,167.404,565.206,342.171,526.066,169.448,71.966,169.448,348.553,312.483,357.957,22.862,17.669,22.862 +2347,69.833,348.900,534.631,166.370,554.486,344.445,534.955,175.832,69.444,175.832,349.115,311.329,358.048,23.573,17.673,23.573 +2348,69.864,350.562,545.655,166.416,543.551,345.932,545.440,2.656,67.011,2.656,349.552,310.152,358.823,23.531,17.742,23.531 +2349,69.894,349.926,557.121,167.467,532.042,345.659,556.357,10.154,64.654,10.154,350.703,309.173,359.374,25.769,17.552,25.769 +2350,69.924,348.388,567.230,169.303,519.789,343.886,565.854,16.991,62.262,16.991,351.433,307.765,360.848,26.300,17.458,26.300 +2351,69.955,345.088,579.215,173.444,507.862,340.664,577.189,24.600,59.657,24.600,352.072,307.149,361.804,26.456,17.366,26.456 +2352,69.985,339.690,592.944,139.504,435.283,306.811,571.475,33.143,57.265,33.143,350.560,161.326,429.095,26.503,17.124,26.503 +2353,70.015,339.690,592.944,139.504,435.283,306.811,571.475,33.143,57.265,33.143,350.560,161.326,429.095,26.503,17.124,26.503 +2354,70.043,332.815,604.922,185.826,485.412,327.069,599.887,41.226,54.540,41.226,348.065,306.203,363.347,26.324,17.263,26.324 +2355,70.075,332.508,625.493,194.696,475.181,318.375,609.057,49.308,52.125,49.308,320.940,305.655,364.293,24.758,17.015,24.758 +2356,70.109,319.021,638.335,206.158,466.566,306.098,618.770,56.555,49.135,56.555,317.270,305.856,364.165,21.597,16.816,21.597 +2357,70.143,299.938,633.316,219.012,459.513,295.986,624.381,66.140,46.469,66.140,344.287,305.044,363.827,23.127,18.596,23.127 +2358,70.174,282.896,635.887,232.818,454.005,281.060,629.460,74.055,43.264,74.055,350.544,305.501,363.913,24.862,19.190,24.862 +2359,70.207,268.353,637.563,246.773,452.418,267.668,632.303,82.577,40.426,82.577,351.543,305.428,362.153,23.980,17.227,23.980 +2360,70.238,253.490,636.573,262.268,451.552,253.668,631.722,92.106,37.569,92.106,351.020,305.465,360.729,25.093,18.474,25.093 +2361,70.271,240.649,634.617,277.677,453.779,241.696,629.792,102.236,34.380,102.236,349.408,306.580,359.281,23.879,18.244,23.879 +2362,70.301,226.431,629.855,292.322,458.852,228.215,625.183,110.901,31.608,110.901,346.510,308.038,356.513,20.728,17.230,20.728 +2363,70.331,214.132,623.501,306.364,465.252,216.999,618.521,119.927,28.426,119.927,343.340,309.730,354.832,21.133,17.169,21.133 +2364,70.361,203.291,614.527,319.092,473.122,207.096,609.797,128.808,25.241,128.808,341.245,311.738,353.387,20.983,16.966,20.983 +2365,70.393,193.924,604.371,329.971,482.121,198.821,599.881,137.478,22.203,137.478,339.213,314.221,352.502,20.289,17.402,20.289 +2366,70.424,185.950,593.738,338.569,492.802,192.031,589.571,145.582,19.250,145.582,336.420,316.570,351.162,20.837,17.173,20.837 +2367,70.456,179.900,582.300,345.130,504.053,186.941,578.779,153.435,16.172,153.435,334.069,318.680,349.814,21.913,16.414,21.913 +2368,70.487,175.526,571.216,350.105,515.559,183.570,568.400,160.710,13.459,160.710,332.238,320.655,349.284,23.219,17.049,23.219 +2369,70.517,175.526,571.216,350.105,515.559,183.570,568.400,160.710,13.459,160.710,332.238,320.655,349.284,23.219,17.049,23.219 +2370,70.545,172.318,558.852,353.486,526.495,181.926,556.841,168.179,10.991,168.179,328.646,322.406,348.278,24.060,17.005,24.060 +2371,70.575,168.251,550.158,355.162,536.992,181.520,549.169,175.737,9.147,175.737,321.524,323.176,348.135,18.588,16.583,18.588 +2372,70.608,155.639,539.941,448.302,559.820,228.312,542.772,2.231,8.531,2.231,295.516,135.830,440.973,18.051,13.103,18.051 +2373,70.639,102.860,521.480,232.684,538.586,122.066,524.224,8.130,5.477,8.130,184.272,76.089,223.074,17.961,12.000,17.961 +2374,70.671,170.212,519.888,,,,,11.721,,,314.209,,,23.032,, +2375,70.703,179.673,511.497,491.152,585.113,253.051,536.721,18.970,3.013,18.970,326.616,42.257,481.801,26.154,12.719,26.154 +2376,70.737,184.213,505.414,466.187,586.519,241.693,531.234,24.190,3.066,24.190,328.844,86.198,454.871,26.639,13.570,26.639 +2377,70.768,189.488,500.625,443.500,587.500,232.301,524.493,29.138,0.000,29.138,332.266,123.000,430.300,26.690,13.000,26.690 +2378,70.799,194.225,495.418,437.488,586.709,230.105,519.454,33.818,177.614,33.818,333.081,126.890,419.454,26.868,13.696,26.868 +2379,70.830,197.998,490.736,426.941,587.047,226.654,513.358,38.290,172.600,38.290,332.708,135.331,405.726,27.016,13.935,27.016 +2380,70.860,202.165,487.275,416.562,586.299,223.569,506.909,42.530,168.232,42.530,333.683,141.789,391.774,26.280,14.032,26.280 +2381,70.891,205.679,483.804,405.723,585.317,221.047,500.050,46.591,163.856,46.591,332.978,147.927,377.706,25.603,14.611,25.603 +2382,70.924,208.977,480.347,393.276,583.908,218.851,492.278,50.389,159.286,50.389,332.624,155.788,363.599,24.546,14.203,24.546 +2383,70.955,212.602,476.738,392.836,577.607,218.969,485.468,53.897,154.058,53.897,332.176,136.830,353.786,24.261,14.655,24.261 +2384,70.986,216.247,474.101,228.356,672.649,218.259,477.244,57.372,145.045,57.372,332.563,138.123,340.026,23.996,16.145,23.996 +2385,71.016,216.247,474.101,228.356,672.649,218.259,477.244,57.372,145.045,57.372,332.563,138.123,340.026,23.996,16.145,23.996 +2386,71.045,219.895,472.091,301.001,628.600,222.400,476.544,60.642,142.443,60.642,331.907,320.587,342.127,23.587,18.866,23.587 +2387,71.077,223.351,470.086,296.031,631.881,225.905,475.261,63.728,137.107,63.728,331.422,320.124,342.963,22.540,19.464,22.540 +2388,71.109,227.360,467.332,293.937,635.617,230.385,474.332,66.628,132.397,66.628,331.273,320.792,346.524,22.806,24.563,22.806 +2389,71.142,230.736,465.595,287.078,636.215,233.166,472.056,69.392,126.384,69.392,331.456,321.344,345.261,22.085,20.042,22.085 +2390,71.175,233.986,464.707,282.638,638.148,236.088,471.189,72.031,121.340,72.031,332.722,322.108,346.351,21.235,19.573,21.235 +2391,71.207,237.824,462.953,278.356,640.214,239.913,470.585,74.694,115.942,74.694,331.697,322.825,347.520,21.941,19.589,21.941 +2392,71.238,240.325,460.474,274.486,641.053,242.351,469.437,77.260,110.638,77.260,330.578,323.748,348.956,20.305,19.324,20.305 +2393,71.271,243.360,458.480,270.397,642.928,245.360,469.480,79.695,105.213,79.695,327.897,325.030,350.258,20.035,19.553,20.035 +2394,71.302,245.768,456.987,266.543,644.691,247.536,469.969,82.246,100.349,82.246,325.174,325.658,351.377,19.041,19.504,19.041 +2395,71.332,248.307,450.040,263.310,645.837,250.225,470.077,84.531,95.511,84.531,312.158,326.152,352.414,17.823,19.550,17.823 +2396,71.362,249.983,407.698,260.000,645.500,253.387,469.536,86.849,90.000,86.849,228.260,325.000,352.123,17.735,20.000,17.735 +2397,71.396,256.580,458.524,257.890,646.129,256.765,469.509,89.037,85.426,89.037,331.256,325.121,353.228,17.880,20.335,17.880 +2398,71.427,259.824,461.854,252.396,646.981,259.604,470.449,91.469,79.540,91.469,336.120,325.469,353.316,18.148,20.212,18.148 +2399,71.460,263.369,463.146,250.022,646.906,262.873,470.340,93.945,74.784,93.945,339.642,324.684,354.063,18.577,19.237,18.577 +2400,71.493,266.686,463.925,246.749,645.461,266.031,469.977,96.177,69.775,96.177,340.905,325.161,353.080,19.053,18.767,19.053 +2401,71.524,271.014,464.264,230.948,620.282,271.842,459.049,99.019,64.058,99.019,341.863,270.621,331.301,19.016,18.665,19.016 +2402,71.555,274.686,465.024,204.700,585.762,278.609,445.961,101.627,58.392,101.627,342.580,189.003,303.656,19.187,17.426,19.187 +2403,71.586,278.217,465.169,168.718,550.820,285.669,435.746,104.213,53.471,104.213,341.234,96.576,280.531,18.639,16.726,18.639 +2404,71.616,278.217,465.169,168.718,550.820,285.669,435.746,104.213,53.471,104.213,341.234,96.576,280.531,18.639,16.726,18.639 +2405,71.644,282.341,465.189,153.500,549.000,290.047,439.930,106.966,45.000,106.966,341.154,82.731,288.337,18.854,14.849,18.854 +2406,71.677,286.321,465.350,,,,,109.895,,,341.496,,,18.645,, +2407,71.711,290.416,465.906,,,,,112.946,,,340.898,,,18.626,, +2408,71.746,294.510,467.759,,,,,116.180,,,340.817,,,18.510,, +2409,71.779,299.107,468.994,,,,,119.511,,,341.223,,,18.341,, +2410,71.812,303.696,471.277,270.414,648.313,304.813,469.558,123.014,24.075,123.014,341.371,69.466,337.271,18.367,12.899,18.367 +2411,71.844,308.498,474.484,113.482,587.889,297.630,489.111,126.613,17.526,126.613,341.786,128.031,378.229,18.139,13.451,18.139 +2412,71.874,313.286,477.954,106.469,591.375,297.303,496.661,130.512,12.440,130.512,342.740,128.197,391.951,18.189,14.030,18.189 +2413,71.906,318.351,481.838,103.435,594.509,297.312,503.091,134.711,8.276,134.711,342.917,135.627,402.730,18.556,13.800,18.556 +2414,71.940,323.490,486.213,185.787,603.088,320.041,489.214,138.977,4.194,138.977,342.917,308.079,352.060,18.288,16.190,18.288 +2415,71.971,330.634,489.682,180.003,598.398,323.850,494.672,143.666,179.804,143.666,337.828,308.022,354.672,19.168,18.249,19.168 +2416,72.002,338.508,494.013,175.545,591.620,328.120,500.377,148.505,175.872,148.505,331.167,308.075,355.532,18.843,18.570,18.843 +2417,72.034,347.304,498.095,171.712,584.713,331.427,505.988,153.565,172.827,153.565,320.662,308.100,356.124,20.615,18.257,20.615 +2418,72.065,361.543,502.317,236.701,563.360,367.041,500.195,158.895,172.589,158.895,300.467,168.572,288.682,21.179,15.084,21.179 +2419,72.096,368.401,511.494,236.892,553.351,373.152,510.219,164.976,170.538,164.976,295.406,161.440,285.567,21.348,13.481,21.348 +2420,72.127,416.369,515.577,236.396,541.428,377.836,522.675,169.563,169.695,169.563,206.629,157.330,284.993,19.540,14.758,19.540 +2421,72.160,358.367,536.711,243.488,528.166,383.472,534.838,175.732,169.261,175.732,328.549,139.632,278.198,19.602,17.346,19.602 +2422,72.191,352.438,545.769,243.734,517.911,382.873,547.614,3.468,165.579,3.468,342.342,137.775,281.361,25.015,19.564,25.015 +2423,72.224,350.102,555.253,244.340,502.689,380.076,560.543,10.008,164.055,10.008,348.324,136.811,287.450,26.068,17.170,26.068 +2424,72.255,347.570,567.136,245.087,487.810,372.946,575.210,17.650,161.259,17.650,349.940,136.923,296.681,26.422,16.775,26.422 +2425,72.287,347.570,567.136,245.087,487.810,372.946,575.210,17.650,161.259,17.650,349.940,136.923,296.681,26.422,16.775,26.422 +2426,72.315,343.316,579.178,238.017,476.293,360.060,587.135,25.416,158.199,25.416,352.683,156.541,315.606,26.084,16.898,26.084 +2427,72.345,337.385,591.423,177.182,493.079,332.851,588.400,33.690,154.826,33.690,353.899,304.604,364.797,26.348,17.404,26.348 +2428,72.378,329.658,602.852,185.664,482.246,325.753,599.358,41.820,151.928,41.820,354.500,304.353,364.980,25.338,17.176,25.338 +2429,72.412,319.621,613.689,129.292,511.567,312.770,605.215,51.044,147.995,51.044,354.566,150.202,376.360,25.612,16.536,25.612 +2430,72.444,308.021,622.812,136.052,512.121,306.650,620.479,59.556,145.491,59.556,354.305,132.001,359.718,23.625,15.914,23.625 +2431,72.478,295.162,629.928,161.476,499.711,296.643,633.850,69.308,141.528,69.308,354.876,159.476,346.492,28.563,15.616,28.563 +2432,72.511,275.491,636.564,177.229,500.475,278.035,646.342,75.414,140.194,75.414,353.312,156.717,333.104,36.311,15.621,36.311 +2433,72.543,270.119,636.975,186.692,507.520,270.975,658.375,87.709,137.603,87.709,351.039,137.423,308.206,37.170,16.343,37.170 +2434,72.574,254.101,637.703,325.338,390.335,259.133,598.061,97.234,135.535,97.234,348.897,138.547,428.818,36.705,17.895,36.705 +2435,72.607,232.196,634.383,331.318,397.298,241.579,594.901,103.369,133.091,103.369,344.834,158.681,425.996,28.484,17.691,28.484 +2436,72.640,191.554,687.525,337.657,405.771,235.723,591.089,114.609,130.855,114.609,209.728,176.233,421.867,19.641,17.989,19.641 +2437,72.674,168.911,675.245,306.130,464.394,210.832,613.040,123.977,128.333,123.977,203.026,313.748,353.050,19.776,18.498,19.776 +2438,72.714,177.740,629.192,349.998,429.360,219.749,584.285,133.091,125.910,133.091,281.249,206.144,404.235,18.634,18.070,18.634 +2439,72.746,138.495,637.690,358.363,438.401,214.779,579.146,142.496,123.471,142.496,206.869,206.053,399.189,18.707,18.558,18.707 +2440,72.777,179.585,588.023,356.451,462.080,202.299,575.044,150.255,121.390,150.255,327.452,236.690,379.774,19.473,18.447,19.473 +2441,72.814,111.472,601.535,366.098,464.994,201.398,569.102,160.168,118.999,160.168,189.310,216.493,380.503,16.562,18.877,16.562 +2442,72.846,175.723,562.945,371.994,470.564,198.430,557.368,166.201,117.181,166.201,331.754,203.110,378.518,19.457,19.210,19.457 +2443,72.878,192.762,546.012,376.171,473.048,214.233,543.956,174.531,115.067,174.531,292.778,183.470,335.918,24.653,18.496,24.653 +2444,72.907,183.500,539.500,379.587,474.030,203.293,539.500,0.000,113.106,0.000,313.000,161.108,352.587,25.000,19.180,25.000 +2445,72.940,175.340,529.488,379.111,475.985,191.714,531.253,6.155,110.666,6.155,327.844,142.917,360.782,23.959,18.746,23.959 +2446,72.973,178.208,518.388,319.050,648.850,180.898,519.092,14.676,108.435,14.676,327.479,152.106,333.040,25.889,17.709,25.889 +2447,73.003,180.774,513.962,321.754,650.520,188.498,516.896,20.797,106.504,20.797,327.510,173.365,344.035,18.733,18.288,18.733 +2448,73.035,127.316,477.836,323.048,651.125,195.722,512.835,27.096,104.470,27.096,199.002,194.249,352.680,17.929,18.335,17.929 +2449,73.066,126.677,461.071,323.237,648.867,200.713,508.372,32.574,102.899,32.574,182.069,218.340,357.782,18.258,18.513,18.258 +2450,73.096,132.016,447.535,323.413,652.082,206.611,505.913,38.047,101.206,38.047,174.689,230.631,364.135,18.215,22.848,18.215 +2451,73.127,140.126,436.524,319.932,652.905,210.864,502.023,42.797,99.462,42.797,172.271,244.461,365.082,18.099,20.879,18.099 +2452,73.158,148.773,425.990,315.249,652.948,214.534,498.013,47.603,97.853,47.603,169.595,256.434,364.652,17.916,18.446,17.916 +2453,73.191,156.600,416.026,310.901,653.876,218.343,494.234,51.710,96.416,51.710,166.023,265.922,365.308,18.011,17.999,18.011 +2454,73.223,165.322,408.354,306.065,654.280,222.242,490.572,55.305,95.173,55.305,164.628,276.495,364.625,17.962,18.017,17.962 +2455,73.254,165.322,408.354,306.065,654.280,222.242,490.572,55.305,95.173,55.305,164.628,276.495,364.625,17.962,18.017,17.962 +2456,73.282,174.850,402.361,300.162,655.476,225.452,487.996,59.421,94.033,59.421,165.454,282.203,364.390,18.079,19.164,18.079 +2457,73.313,185.000,397.500,295.495,656.588,228.967,485.434,63.435,93.366,63.435,169.047,286.035,365.673,17.441,19.143,17.441 +2458,73.345,194.560,394.974,289.230,657.928,232.427,483.330,66.801,93.228,66.801,173.456,286.729,365.713,17.595,21.192,17.595 +2459,73.377,203.546,392.842,284.252,659.581,235.705,482.429,70.253,93.684,70.253,175.907,288.206,366.274,17.593,21.149,17.593 +2460,73.408,211.950,391.165,280.534,660.704,239.027,481.424,73.301,95.735,73.301,178.826,288.861,367.292,17.624,20.191,17.624 +2461,73.443,219.758,389.313,276.603,660.646,242.222,480.105,76.103,97.520,76.103,179.965,291.618,367.026,17.513,23.008,17.513 +2462,73.475,226.846,386.731,269.139,658.694,245.012,477.559,78.690,99.330,78.690,179.446,294.594,364.700,17.847,21.533,17.847 +2463,73.511,233.450,385.850,266.923,657.859,247.790,476.667,81.027,103.702,81.027,180.033,297.617,363.918,17.780,22.321,17.780 +2464,73.544,239.681,385.247,260.708,655.913,250.107,475.174,83.387,106.583,83.387,180.458,300.362,361.515,17.794,19.757,17.794 +2465,73.575,245.504,385.921,256.911,653.447,252.390,473.719,85.515,112.135,85.515,182.928,302.867,359.063,17.632,17.725,17.632 +2466,73.608,251.141,387.930,253.714,650.829,254.712,472.209,87.574,117.539,87.574,188.128,304.251,356.836,17.425,17.576,17.425 +2467,73.641,255.829,389.503,251.308,647.038,257.084,470.443,89.112,123.690,89.112,191.070,309.800,352.970,17.812,17.196,17.812 +2468,73.674,260.702,390.477,250.985,642.487,259.338,468.250,91.005,130.170,91.005,193.146,319.043,348.714,17.629,17.932,17.629 +2469,73.710,265.362,389.018,225.609,663.220,261.002,479.128,92.770,136.909,92.770,190.745,255.383,371.176,17.770,18.398,17.770 +2470,73.743,270.621,387.052,224.706,656.898,263.183,476.310,94.764,144.211,94.764,187.185,263.745,366.320,17.855,19.034,17.855 +2471,73.775,275.748,385.195,243.379,640.489,266.558,467.397,96.379,151.004,96.379,183.762,315.276,349.190,17.790,18.989,17.790 +2472,73.808,281.336,383.195,240.678,639.690,269.060,467.377,98.297,158.334,98.297,179.064,314.949,349.209,17.832,19.045,17.832 +2473,73.841,287.036,382.275,238.304,638.737,271.763,467.478,100.162,166.185,100.162,175.830,314.579,348.951,17.866,19.310,17.866 +2474,73.874,293.115,382.240,236.351,637.978,274.667,467.771,102.171,174.428,102.171,173.922,314.531,348.918,18.036,18.910,18.036 +2475,73.907,299.246,383.567,234.006,636.826,277.912,468.016,104.178,2.070,104.178,174.640,314.445,348.843,18.044,18.530,18.044 +2476,73.940,305.397,385.352,230.972,635.404,280.986,468.349,106.390,10.305,106.390,175.733,315.107,348.758,18.002,19.588,18.002 +2477,73.971,311.617,387.547,248.375,641.553,283.961,469.310,108.687,19.683,108.687,176.501,272.833,349.128,18.068,19.911,18.068 +2478,74.002,317.927,390.439,255.000,649.500,286.355,472.000,111.161,26.565,111.161,178.782,248.204,353.699,18.230,18.783,18.230 +2479,74.032,323.901,394.549,262.168,661.617,288.280,476.134,113.587,34.992,113.587,182.826,213.820,360.871,18.303,18.678,18.303 +2480,74.063,329.596,400.036,258.727,670.239,289.829,480.201,116.384,43.668,116.384,189.155,201.027,368.128,18.142,19.202,18.142 +2481,74.094,336.985,402.839,245.353,672.387,291.285,483.767,119.454,49.899,119.454,187.775,138.570,373.656,18.153,20.492,18.153 +2482,74.127,345.338,405.424,231.972,669.176,294.133,486.497,122.276,56.674,122.276,183.516,134.502,375.294,18.289,19.218,18.289 +2483,74.159,356.298,406.143,219.064,666.526,296.784,489.608,125.491,67.166,125.491,173.321,128.107,378.341,18.309,17.366,18.309 +2484,74.191,369.285,406.229,211.681,679.191,296.646,496.562,128.804,75.324,128.804,159.298,201.559,391.131,18.631,17.067,18.631 +2485,74.224,259.763,542.076,198.260,671.036,244.433,558.632,132.797,81.518,132.797,182.571,211.686,227.696,18.942,19.087,18.942 +2486,74.255,271.361,531.602,185.461,653.999,257.321,544.815,136.736,91.507,136.736,215.761,236.208,254.320,18.848,15.758,18.848 +2487,74.286,271.361,531.602,185.461,653.999,257.321,544.815,136.736,91.507,136.736,215.761,236.208,254.320,18.848,15.758,18.848 +2488,74.314,287.420,519.999,169.495,678.903,262.265,540.521,140.793,99.660,140.793,253.789,172.645,318.718,19.168,16.298,19.168 +2489,74.345,308.907,508.783,154.836,671.196,280.119,528.610,145.443,107.393,145.443,298.201,168.470,368.112,19.400,16.200,19.400 +2490,74.378,333.196,501.078,140.986,659.833,301.832,518.944,150.333,115.388,150.333,346.798,167.624,418.990,19.226,17.502,19.226 +2491,74.410,338.137,507.425,126.038,649.692,302.537,523.704,155.426,123.690,155.426,347.524,158.644,425.814,19.770,17.473,19.770 +2492,74.443,342.092,514.895,166.018,575.872,336.189,516.952,160.780,130.574,160.780,347.662,312.382,360.164,20.341,18.849,20.341 +2493,74.475,345.535,522.422,147.549,579.770,330.022,526.092,166.691,138.814,166.691,347.977,267.353,379.859,21.074,18.438,21.074 +2494,74.508,348.643,532.305,163.531,556.237,342.334,533.140,172.461,145.611,172.461,347.849,309.013,360.577,21.533,17.971,21.533 +2495,74.541,349.954,541.720,163.045,545.550,343.523,541.811,179.189,153.130,179.189,348.163,307.253,361.025,21.842,17.579,21.842 +2496,74.572,349.960,552.896,163.128,533.317,343.257,552.226,5.711,161.222,5.711,348.761,306.148,362.234,22.289,18.595,22.289 +2497,74.606,349.096,564.360,165.666,521.305,342.294,562.824,12.724,168.845,12.724,348.925,305.166,362.871,22.435,18.489,22.435 +2498,74.637,346.096,574.911,169.332,509.398,339.677,572.504,20.556,176.309,20.556,349.602,303.659,363.313,22.706,18.478,22.706 +2499,74.666,342.352,586.042,174.865,498.761,336.101,582.526,29.358,3.417,29.358,348.848,302.596,363.192,27.073,18.340,27.073 +2500,74.697,335.655,598.885,181.501,488.142,329.559,594.212,37.476,10.701,37.476,348.711,302.659,364.073,26.533,18.306,26.533 +2501,74.728,327.396,609.152,190.576,477.765,322.246,603.955,45.257,17.916,45.257,349.998,302.672,364.631,25.614,18.114,25.614 +2502,74.759,316.549,619.192,201.451,468.954,312.356,613.427,53.973,24.918,53.973,349.889,302.359,364.145,25.071,18.131,25.071 +2503,74.790,303.725,627.326,213.782,461.743,300.823,621.618,63.045,31.866,63.045,351.115,302.942,363.923,25.731,17.789,25.731 +2504,74.823,292.813,633.836,226.928,456.848,290.860,627.687,72.380,38.493,72.380,351.448,302.992,364.352,33.526,17.569,33.526 +2505,74.855,276.959,637.757,241.815,453.674,275.958,631.746,80.538,45.429,80.538,350.334,303.420,362.522,34.195,17.510,34.195 +2506,74.886,256.013,638.680,256.245,451.970,255.750,632.839,87.423,52.319,87.423,349.636,304.609,361.329,32.877,17.978,32.877 +2507,74.917,256.013,638.680,256.245,451.970,255.750,632.839,87.423,52.319,87.423,349.636,304.609,361.329,32.877,17.978,32.877 +2508,74.946,249.270,637.378,282.480,471.719,248.813,640.122,99.462,58.970,99.462,348.855,262.734,343.292,33.866,18.209,33.866 +2509,74.979,229.506,632.002,298.646,485.476,227.613,638.582,106.049,65.433,106.049,347.246,244.415,333.552,27.383,18.345,27.383 +2510,75.011,218.253,624.913,308.066,492.814,215.199,630.904,117.009,71.796,117.009,343.855,245.667,330.407,21.802,18.872,21.802 +2511,75.044,206.298,616.296,317.388,502.728,202.220,621.953,125.789,78.906,125.789,342.071,243.135,328.125,21.770,20.377,21.770 +2512,75.075,196.262,605.767,325.315,510.906,192.034,610.093,134.341,85.914,134.341,340.283,245.945,328.184,21.764,23.155,21.764 +2513,75.111,188.240,596.320,331.706,519.070,185.089,598.683,143.130,91.081,143.130,338.000,251.880,330.123,21.200,23.222,21.200 +2514,75.144,182.260,585.307,332.703,531.655,177.551,587.879,151.352,97.334,151.352,336.960,247.915,326.228,21.249,19.768,21.249 +2515,75.177,177.410,573.874,334.728,539.801,173.387,575.416,159.029,103.782,159.029,335.417,254.457,326.801,19.964,19.827,19.964 +2516,75.210,174.622,563.157,336.200,546.762,171.687,563.865,166.452,110.493,166.452,333.924,264.873,327.885,19.291,19.775,19.291 +2517,75.243,172.939,552.451,338.309,551.646,172.123,552.542,173.660,117.096,173.660,332.178,278.172,330.536,19.215,19.772,19.215 +2518,75.280,172.944,542.414,348.480,544.944,178.223,542.474,0.655,124.796,0.655,329.990,318.872,340.548,18.930,20.265,18.930 +2519,75.311,174.078,532.396,348.941,555.109,179.900,533.120,7.087,131.748,7.087,329.190,319.130,340.924,19.263,20.032,19.263 +2520,75.344,176.470,523.743,348.269,565.101,182.351,525.132,13.285,138.668,13.285,329.239,320.134,341.324,18.992,20.392,18.992 +2521,75.378,179.336,515.406,346.750,574.402,185.745,517.640,19.220,145.670,19.220,327.858,320.391,341.434,19.795,20.726,19.795 +2522,75.411,182.534,508.593,344.298,583.152,189.091,511.619,24.775,152.879,24.775,327.354,320.720,341.797,19.347,20.080,19.347 +2523,75.444,188.670,498.706,341.858,592.593,195.526,502.679,30.092,160.821,30.092,327.538,321.375,343.384,27.856,22.463,27.856 +2524,75.475,192.719,492.760,338.235,599.559,199.808,497.726,35.012,167.471,35.012,326.297,321.925,343.606,27.510,21.368,27.510 +2525,75.508,196.971,487.824,334.057,606.131,203.869,493.521,39.550,174.806,39.550,326.286,322.036,344.178,27.226,20.733,27.226 +2526,75.542,201.388,483.597,329.965,612.263,208.016,489.982,43.926,1.591,43.926,326.918,322.376,345.324,27.073,19.409,27.073 +2527,75.575,205.353,479.584,325.007,617.458,211.762,486.693,47.964,9.118,47.964,326.758,324.038,345.902,26.734,18.845,26.734 +2528,75.610,209.566,476.448,320.024,621.849,215.295,483.738,51.843,17.622,51.843,328.063,324.561,346.607,26.622,19.364,26.622 +2529,75.642,213.382,474.081,314.713,626.024,218.416,481.410,55.513,24.057,55.513,329.665,325.419,347.447,25.681,17.986,25.681 +2530,75.674,217.353,471.787,309.719,629.869,221.885,479.310,58.928,32.421,58.928,331.013,326.268,348.577,25.311,17.875,25.311 +2531,75.708,221.466,470.491,304.466,633.083,225.246,477.663,62.212,39.130,62.212,332.643,326.890,348.858,25.175,17.289,25.175 +2532,75.740,225.836,469.766,299.121,636.353,228.776,476.157,65.293,47.045,65.293,335.797,327.611,349.867,24.294,17.717,24.294 +2533,75.772,229.155,468.138,294.264,639.023,232.074,475.435,68.199,54.593,68.199,334.252,327.703,349.970,22.098,17.666,22.098 +2534,75.805,232.097,466.941,289.674,641.830,235.119,475.126,69.738,62.241,69.738,333.111,328.677,350.562,21.809,17.279,21.809 +2535,75.838,234.504,458.753,282.306,643.709,239.009,473.116,72.587,69.269,72.587,321.360,329.701,351.465,20.567,23.053,20.567 +2536,75.870,221.163,389.985,281.145,642.263,240.403,470.791,76.608,78.294,76.608,186.362,329.338,352.491,18.113,23.977,18.113 +2537,75.901,237.128,436.402,274.914,643.244,243.553,470.008,79.177,85.718,79.177,283.657,328.253,352.087,18.301,21.987,18.301 +2538,75.932,244.842,451.305,266.547,644.900,247.562,470.263,81.835,91.945,81.835,312.823,326.661,351.126,18.717,23.021,18.717 +2539,75.963,250.216,455.589,265.621,645.117,251.606,469.834,84.428,101.179,84.428,323.003,326.348,351.630,19.347,23.545,19.347 +2540,75.994,253.631,455.832,259.154,644.180,254.310,468.470,86.923,107.526,86.923,326.120,325.473,351.434,19.058,19.975,19.058 +2541,76.025,256.765,457.929,253.926,642.964,256.888,467.921,89.293,115.796,89.293,330.000,322.955,349.986,18.764,17.932,18.764 +2542,76.059,260.319,458.554,249.824,642.396,260.046,467.702,91.710,123.366,91.710,331.539,321.439,349.843,19.021,17.416,19.021 +2543,76.091,264.947,458.188,246.332,641.046,264.264,467.069,94.399,131.082,94.399,331.866,319.658,349.679,18.944,17.723,18.944 +2544,76.125,268.268,457.819,242.362,639.778,267.272,466.457,96.573,138.540,96.573,332.675,318.413,350.066,20.097,17.840,20.097 +2545,76.157,272.544,459.024,237.752,639.388,271.102,467.405,99.762,146.094,99.762,333.286,317.558,350.295,19.477,18.436,19.477 +2546,76.189,276.365,460.359,233.337,639.176,274.472,468.877,102.529,153.301,102.529,332.880,316.178,350.333,19.090,18.129,19.090 +2547,76.221,280.396,461.282,229.824,637.446,278.227,469.308,105.118,161.075,105.118,333.258,315.000,349.885,19.098,18.135,19.098 +2548,76.250,280.396,461.282,229.824,637.446,278.227,469.308,105.118,161.075,105.118,333.258,315.000,349.885,19.098,18.135,19.098 +2549,76.280,285.197,462.050,225.803,635.506,282.631,469.824,108.268,168.616,108.268,333.919,314.382,350.291,19.010,19.074,19.010 +2550,76.311,290.007,462.872,221.391,633.527,286.992,470.575,111.371,175.764,111.371,334.762,313.770,351.305,19.435,18.246,19.435 +2551,76.344,294.362,465.308,217.092,631.744,291.033,472.595,114.553,2.987,114.553,334.945,312.879,350.968,19.494,17.541,19.494 +2552,76.376,298.867,466.751,212.514,629.120,295.170,473.750,117.848,10.115,117.848,336.144,313.750,351.975,19.452,18.506,19.452 +2553,76.411,303.956,469.006,208.260,625.513,300.175,475.171,121.522,17.003,121.522,337.963,314.003,352.427,19.026,17.822,19.026 +2554,76.442,308.412,472.147,203.104,622.495,304.439,477.748,125.353,23.782,125.353,339.644,314.138,353.379,19.100,17.418,19.100 +2555,76.477,312.515,476.421,197.407,619.612,308.215,481.680,129.274,30.514,129.274,340.258,314.154,353.843,18.850,18.129,18.850 +2556,76.511,317.321,480.728,192.070,614.760,312.955,485.329,133.497,37.064,133.497,341.508,313.827,354.195,18.605,18.514,18.605 +2557,76.542,322.457,484.507,187.688,609.197,317.904,488.610,137.976,44.119,137.976,342.659,313.962,354.918,18.857,18.905,18.857 +2558,76.575,327.336,489.785,182.832,602.880,322.763,493.273,142.660,50.389,142.660,343.964,313.816,355.467,19.327,19.924,19.327 +2559,76.608,331.840,496.457,177.292,597.614,326.784,499.656,147.672,56.889,147.672,345.447,314.759,357.412,19.076,19.921,19.076 +2560,76.640,336.062,503.659,172.374,590.041,330.825,506.327,153.000,63.083,153.000,346.615,313.483,358.370,19.398,20.220,19.398 +2561,76.671,340.443,511.580,170.226,581.103,335.850,513.380,158.591,69.444,158.591,347.965,313.787,357.832,19.645,17.673,19.645 +2562,76.704,344.246,520.273,167.307,571.896,339.500,521.585,164.539,75.619,164.539,348.900,313.350,358.748,19.850,17.585,19.850 +2563,76.738,347.179,530.491,164.920,562.440,342.152,531.296,170.910,81.870,170.910,349.672,313.107,359.853,19.907,17.536,19.907 +2564,76.771,348.467,541.187,163.603,551.861,343.300,541.399,177.643,88.065,177.643,349.609,312.194,359.950,19.967,17.463,19.967 +2565,76.802,349.132,551.894,163.925,539.603,344.194,551.487,4.705,94.122,4.705,351.363,310.573,361.273,20.199,17.657,20.199 +2566,76.839,348.630,562.595,165.963,526.531,343.685,561.522,12.233,100.169,12.233,352.081,310.171,362.201,20.969,17.647,20.969 +2567,76.882,345.809,574.148,169.056,514.387,341.157,572.460,19.942,106.183,19.942,353.279,310.315,363.176,21.222,17.761,21.222 +2568,76.914,340.316,586.958,174.273,502.243,336.109,584.779,27.378,112.188,27.378,353.850,309.213,363.327,21.899,18.294,21.899 +2569,76.947,335.220,596.540,181.288,490.517,331.436,593.702,36.870,118.038,36.870,354.600,308.293,364.059,26.600,17.409,26.600 +2570,76.983,316.527,617.662,200.901,470.137,313.602,613.640,53.973,130.736,53.973,354.741,307.065,364.687,25.365,16.974,25.365 +2571,77.016,316.527,617.662,200.901,470.137,313.602,613.640,53.973,130.736,53.973,354.741,307.065,364.687,25.365,16.974,25.365 +2572,77.046,303.240,626.349,147.922,522.360,306.367,632.436,62.809,137.911,62.809,354.314,130.059,340.627,23.633,15.225,23.633 +2573,77.080,290.531,632.516,290.680,408.240,285.043,615.135,72.474,143.130,72.474,354.733,146.000,391.188,29.410,16.000,29.410 +2574,77.113,271.057,637.172,309.948,412.197,267.682,618.677,79.658,149.744,79.658,353.477,148.426,391.077,29.247,16.124,29.247 +2575,77.145,259.000,636.500,256.852,450.428,259.000,631.214,90.000,156.153,90.000,351.000,307.866,361.572,28.000,15.681,28.000 +2576,77.178,239.890,634.777,187.406,477.170,238.016,648.013,98.058,164.055,98.058,350.863,130.630,324.126,29.555,15.934,29.555 +2577,77.210,227.193,630.779,200.188,472.737,222.311,646.002,107.781,171.363,107.781,348.439,131.079,316.465,24.361,14.505,24.361 +2578,77.244,215.114,623.720,214.376,468.717,206.547,639.685,118.217,177.455,118.217,344.942,133.091,308.705,20.868,13.009,20.868 +2579,77.275,203.753,614.548,226.315,465.858,191.763,630.259,127.349,4.485,127.349,342.833,133.453,303.306,20.815,13.195,20.815 +2580,77.309,194.710,605.141,239.615,465.423,179.706,619.386,136.490,11.310,136.490,340.279,136.693,298.901,20.875,13.140,20.875 +2581,77.342,187.001,594.782,418.823,517.801,213.767,576.162,145.176,16.390,145.176,338.106,143.566,403.319,20.487,15.068,20.487 +2582,77.376,181.494,582.998,343.533,505.334,186.635,580.416,153.327,23.749,153.327,336.303,317.797,347.810,19.755,15.341,19.755 +2583,77.408,177.820,571.503,349.178,517.881,183.751,569.482,161.191,30.774,161.191,333.925,318.818,346.458,19.817,15.716,19.817 +2584,77.442,175.198,559.981,352.312,530.380,181.659,558.695,168.741,38.019,168.741,332.617,321.096,345.793,18.639,15.914,18.639 +2585,77.474,173.819,549.350,353.111,543.371,180.761,548.876,176.094,45.211,176.094,330.732,321.755,344.649,18.615,16.334,18.615 +2586,77.507,174.085,539.406,352.380,555.340,180.792,539.764,3.061,53.130,3.061,330.918,323.400,344.350,18.722,16.600,18.722 +2587,77.539,175.757,528.296,350.830,566.094,182.637,529.535,10.204,60.945,10.204,330.036,324.215,344.019,19.172,17.095,19.172 +2588,77.571,178.394,518.500,348.212,575.896,185.131,520.507,16.587,68.607,16.587,330.154,325.329,344.214,20.350,17.749,20.350 +2589,77.604,181.404,510.622,344.382,585.029,187.929,513.334,22.567,75.964,22.567,329.845,325.725,343.977,19.620,18.675,19.620 +2590,77.635,185.333,503.525,339.619,593.986,191.503,506.848,28.301,83.443,28.301,329.432,325.032,343.448,20.386,18.636,20.386 +2591,77.666,189.605,497.085,335.205,601.486,195.447,500.968,33.606,90.979,33.606,330.039,325.089,344.069,19.778,19.672,19.778 +2592,77.697,194.019,491.488,329.521,607.711,199.283,495.718,38.790,98.297,38.790,329.844,325.123,343.349,18.874,19.172,18.874 +2593,77.728,201.638,484.561,323.456,614.274,206.169,488.880,43.628,105.973,43.628,330.310,325.818,342.830,25.999,19.580,25.999 +2594,77.761,206.198,480.418,318.374,619.300,210.584,485.337,48.270,113.282,48.270,330.266,323.536,343.446,25.919,20.888,25.919 +2595,77.793,211.145,477.690,313.701,624.324,215.237,483.050,52.643,120.522,52.643,330.595,322.615,344.080,24.938,22.404,24.938 +2596,77.825,216.378,473.660,308.762,627.922,220.338,479.722,56.842,128.057,56.842,330.379,321.884,344.862,25.316,23.824,25.316 +2597,77.857,220.855,470.725,303.077,630.578,224.403,477.068,60.781,135.327,60.781,330.228,320.342,344.763,24.630,23.152,24.630 +2598,77.888,225.275,468.237,297.647,633.489,228.484,475.009,64.644,142.394,64.644,330.672,320.038,345.660,24.225,23.189,24.225 +2599,77.919,229.447,465.631,292.236,636.056,232.523,473.374,68.336,149.207,68.336,329.806,319.677,346.470,23.752,22.985,23.752 +2600,77.950,229.447,465.631,292.236,636.056,232.523,473.374,68.336,149.207,68.336,329.806,319.677,346.470,23.752,22.985,23.752 +2601,77.978,233.873,463.383,287.197,637.952,236.646,471.802,71.768,156.448,71.768,329.523,319.457,347.250,22.493,23.529,22.493 +2602,78.010,238.328,461.394,281.831,638.925,240.602,470.134,75.414,163.657,75.414,329.409,319.242,347.469,21.949,22.475,21.949 +2603,78.043,242.038,460.295,276.438,641.120,243.916,469.722,78.735,170.695,78.735,329.674,319.101,348.898,20.548,23.305,20.548 +2604,78.076,246.472,459.504,270.990,641.772,247.765,468.849,82.122,177.546,82.122,330.082,318.479,348.949,19.911,22.351,19.911 +2605,78.109,250.398,458.837,265.456,643.098,251.199,468.593,85.301,4.247,85.301,330.598,318.573,350.174,19.769,22.552,19.769 +2606,78.143,255.643,457.578,260.339,642.342,255.865,467.155,88.673,10.795,88.673,331.328,319.635,350.488,18.435,21.348,18.435 +2607,78.178,260.566,458.484,255.130,642.923,260.242,467.432,92.075,16.873,92.075,333.216,319.734,351.123,19.154,19.769,19.154 +2608,78.209,265.415,459.169,249.889,642.420,264.646,467.498,95.274,23.129,95.274,334.348,319.987,351.076,19.333,17.782,19.333 +2609,78.242,270.362,460.380,243.913,643.154,269.123,468.652,98.518,29.466,98.518,335.892,320.214,352.621,19.178,19.481,19.178 +2610,78.278,275.480,461.456,238.673,641.362,273.940,468.596,102.171,35.599,102.171,338.031,320.734,352.637,19.186,17.861,19.186 +2611,78.308,280.377,462.825,232.104,640.812,278.325,470.123,105.709,41.239,105.709,338.492,320.892,353.655,19.283,18.858,19.283 +2612,78.340,285.662,466.151,226.583,639.924,283.491,472.329,109.365,47.406,109.365,340.869,321.076,353.966,19.326,19.390,19.326 +2613,78.373,290.819,468.067,220.757,637.089,288.538,473.399,113.162,54.048,113.162,342.715,321.151,354.313,19.317,19.944,19.317 +2614,78.405,295.929,470.419,214.761,634.200,293.414,475.339,117.077,60.110,117.077,343.450,321.124,354.502,19.469,20.234,19.469 +2615,78.438,301.662,472.482,208.717,631.167,298.611,477.527,121.159,65.080,121.159,344.183,322.311,355.975,18.946,20.012,18.946 +2616,78.471,307.304,475.574,201.524,626.801,303.690,480.634,125.538,70.931,125.538,344.209,320.677,356.646,19.065,19.439,19.065 +2617,78.503,312.066,479.873,194.745,621.562,308.571,484.026,130.085,76.386,130.085,346.185,320.682,357.043,19.172,19.150,19.172 +2618,78.535,317.750,484.250,188.467,616.005,313.615,488.385,135.000,81.733,135.000,345.775,319.187,357.470,18.385,19.022,18.385 +2619,78.565,323.645,488.975,182.888,608.874,319.219,492.667,140.165,86.987,140.165,346.727,318.769,358.254,19.090,18.185,19.090 +2620,78.596,328.592,494.945,177.620,601.020,324.249,497.921,145.586,91.891,145.586,347.938,318.355,358.468,19.175,17.533,19.175 +2621,78.628,333.546,502.247,172.468,592.737,328.944,504.754,151.427,96.860,151.427,348.518,317.642,358.998,18.892,17.916,18.892 +2622,78.660,338.261,510.033,168.425,582.908,333.775,511.906,157.338,101.957,157.338,350.158,316.177,359.881,19.602,17.690,19.602 +2623,78.692,342.692,518.695,165.253,572.325,337.820,520.097,163.940,106.674,163.940,350.420,315.028,360.561,19.336,17.970,19.336 +2624,78.726,346.067,528.850,163.108,561.137,340.990,529.679,170.716,111.604,170.716,350.967,313.636,361.255,18.931,17.818,18.931 +2625,78.758,348.384,540.227,162.127,549.555,343.033,540.416,177.971,116.378,177.971,351.524,312.167,362.232,19.059,17.619,19.059 +2626,78.790,348.743,551.962,162.893,537.447,343.662,551.474,5.477,121.159,5.477,352.356,310.929,362.566,20.154,17.433,20.154 +2627,78.822,347.475,564.529,116.612,591.288,327.197,559.645,13.540,126.327,13.540,352.935,144.993,394.649,20.885,15.307,20.885 +2628,78.854,344.311,577.165,114.872,575.075,326.953,570.341,21.463,131.186,21.463,353.983,142.519,391.285,20.172,14.769,20.172 +2629,78.884,344.311,577.165,114.872,575.075,326.953,570.341,21.463,131.186,21.463,353.983,142.519,391.285,20.172,14.769,20.172 +2630,78.913,339.043,589.942,116.996,556.654,325.154,581.970,29.855,136.469,29.855,354.241,143.586,386.269,20.554,14.355,20.554 +2631,78.946,330.963,602.641,117.729,541.663,320.059,594.057,38.211,141.147,38.211,355.020,137.104,382.775,21.081,15.013,21.081 +2632,78.978,323.892,611.047,122.923,524.885,316.835,603.206,48.013,146.310,48.013,354.774,134.792,375.873,26.536,15.254,26.536 +2633,79.009,312.034,621.224,130.647,508.847,307.877,614.770,57.216,151.587,57.216,354.682,134.426,370.035,25.236,15.976,25.236 +2634,79.043,297.651,630.085,141.903,495.380,296.267,626.830,66.959,157.457,66.959,355.687,136.151,362.761,24.879,14.917,24.879 +2635,79.075,279.980,635.773,233.741,455.139,278.831,631.482,75.016,160.900,75.016,355.124,306.103,364.009,28.721,16.268,28.721 +2636,79.110,268.788,637.445,167.192,471.843,268.934,639.553,86.030,167.196,86.030,352.927,136.696,348.703,28.625,15.292,28.625 +2637,79.141,247.109,636.374,182.262,464.694,246.826,640.602,93.826,173.199,93.826,350.891,137.767,342.416,28.538,14.138,28.538 +2638,79.174,232.711,632.307,195.450,459.527,230.835,639.964,103.761,178.059,103.761,349.449,134.990,333.682,25.948,12.738,25.948 +2639,79.206,220.227,626.184,210.550,456.706,215.374,636.732,114.707,3.608,114.707,346.280,135.676,323.059,19.990,12.327,19.990 +2640,79.237,207.469,617.479,224.518,455.893,199.378,629.346,124.287,9.360,124.287,343.673,135.458,314.947,20.543,12.415,20.543 +2641,79.268,197.413,607.498,396.941,497.261,213.736,590.475,133.798,12.700,133.798,340.988,163.121,388.159,20.170,14.880,20.170 +2642,79.300,188.811,596.750,401.772,513.330,209.052,581.434,142.887,19.573,142.887,338.790,172.279,389.555,19.739,15.808,19.739 +2643,79.331,182.142,585.339,342.354,502.872,187.395,582.493,151.548,25.201,151.548,336.402,317.219,348.351,19.312,15.648,19.312 +2644,79.362,177.654,573.561,348.080,516.193,183.426,571.432,159.752,31.185,159.752,334.888,318.989,347.193,19.402,15.917,19.402 +2645,79.393,174.647,561.848,351.638,529.637,181.307,560.424,167.937,37.171,167.937,332.386,321.397,346.007,18.655,16.147,18.655 +2646,79.426,173.777,549.839,353.409,542.651,180.923,549.335,175.962,43.452,175.962,330.730,322.667,345.058,18.167,15.895,18.167 +2647,79.458,174.521,539.135,353.282,555.829,181.691,539.543,3.257,49.399,3.257,330.116,323.118,344.479,18.653,16.487,18.653 +2648,79.491,176.028,528.255,351.339,568.267,183.245,529.643,10.886,55.491,10.886,330.030,323.746,344.728,18.923,16.841,18.923 +2649,79.523,178.723,519.195,348.132,579.228,185.902,521.447,17.413,61.991,17.413,329.124,325.235,344.172,18.858,17.113,18.858 +2650,79.555,182.440,509.803,343.690,589.224,189.483,512.977,24.257,68.199,24.257,328.385,326.267,343.834,19.146,17.084,19.146 +2651,79.585,182.440,509.803,343.690,589.224,189.483,512.977,24.257,68.199,24.257,328.385,326.267,343.834,19.146,17.084,19.146 +2652,79.614,187.161,501.672,339.011,597.997,193.744,505.537,30.417,75.012,30.417,328.900,326.593,344.169,19.834,18.262,19.834 +2653,79.646,191.647,495.078,333.247,606.191,197.816,499.611,36.310,81.320,36.310,329.178,326.612,344.490,18.748,18.435,18.748 +2654,79.678,196.478,488.849,326.935,613.524,202.377,494.127,41.820,87.597,41.820,329.044,325.678,344.876,18.278,18.159,18.278 +2655,79.710,205.439,480.860,320.867,619.491,210.575,486.418,47.255,93.814,47.255,330.036,325.877,345.172,26.426,19.091,26.426 +2656,79.743,210.883,476.742,313.488,624.856,215.327,482.516,52.416,100.166,52.416,330.767,326.727,345.339,24.829,19.279,24.829 +2657,79.777,216.773,472.934,306.801,628.804,220.596,478.886,57.282,105.895,57.282,331.306,325.000,345.454,24.990,19.713,24.990 +2658,79.809,221.922,470.124,299.916,632.760,225.322,476.535,62.059,112.299,62.059,331.419,324.236,345.932,23.643,20.121,23.643 +2659,79.840,227.750,467.157,293.262,635.731,230.751,474.079,66.560,118.563,66.560,331.267,322.988,346.356,23.617,21.500,23.617 +2660,79.872,233.153,465.064,286.464,638.632,235.705,472.442,70.923,124.494,70.923,331.691,322.304,347.306,22.835,21.383,22.835 +2661,79.904,238.001,463.343,279.624,640.254,240.025,471.046,75.280,130.400,75.280,331.505,321.272,347.434,20.794,20.821,20.794 +2662,79.935,243.418,461.865,272.707,641.692,244.905,469.872,79.475,136.406,79.475,331.728,319.863,348.016,20.244,20.851,20.244 +2663,79.967,248.890,460.459,265.453,642.147,249.800,468.678,83.684,142.265,83.684,331.737,319.427,348.276,19.431,20.284,19.431 +2664,80.000,254.549,459.331,258.589,642.031,254.868,467.883,87.870,148.196,87.870,331.217,318.322,348.333,18.657,20.131,18.657 +2665,80.031,260.573,458.591,251.965,641.928,260.260,467.456,92.024,154.169,92.024,331.570,317.610,349.312,18.857,19.962,18.857 +2666,80.063,267.140,458.789,245.056,641.153,266.184,467.539,96.239,159.788,96.239,332.159,316.963,349.764,19.571,19.628,19.571 +2667,80.094,273.600,459.165,238.248,639.531,271.998,467.834,100.471,165.784,100.471,332.309,316.030,349.941,19.485,18.211,19.485 +2668,80.128,279.728,460.106,231.542,637.478,277.515,468.565,104.660,171.384,104.660,332.613,315.520,350.099,19.186,18.067,19.186 +2669,80.160,287.099,461.909,224.843,634.904,284.246,470.065,109.279,176.532,109.279,333.133,314.453,350.415,19.353,17.695,19.353 +2670,80.193,294.235,464.153,218.539,632.599,290.674,472.200,113.875,1.602,113.875,334.141,313.437,351.740,19.713,17.273,19.713 +2671,80.225,301.032,467.108,212.154,629.428,296.832,474.808,118.610,6.733,118.610,335.037,313.428,352.577,19.473,16.828,19.473 +2672,80.256,307.334,470.540,205.488,625.455,302.560,477.776,123.417,11.776,123.417,336.113,313.029,353.451,19.138,17.296,19.138 +2673,80.288,313.857,474.873,198.908,619.400,308.877,481.139,128.480,17.312,128.480,337.316,312.534,353.323,19.490,17.185,19.490 +2674,80.318,320.099,480.489,191.690,614.776,314.386,486.410,133.972,21.801,133.972,338.688,311.968,355.142,19.406,17.270,19.406 +2675,80.349,320.099,480.489,191.690,614.776,314.386,486.410,133.972,21.801,133.972,338.688,311.968,355.142,19.406,17.270,19.406 +2676,80.380,325.500,486.758,185.100,608.300,319.726,491.685,139.527,26.565,139.527,341.031,311.708,356.211,19.241,17.441,19.241 +2677,80.412,331.173,493.482,179.582,598.889,325.538,497.345,145.567,32.125,145.567,341.933,311.222,355.599,19.119,17.588,19.119 +2678,80.445,336.990,500.982,179.931,596.049,331.498,503.935,151.731,36.254,151.731,341.759,294.338,354.232,19.102,17.687,19.102 +2679,80.478,341.272,510.181,176.597,586.556,336.868,511.938,158.253,41.424,158.253,343.539,290.981,353.022,19.328,17.952,19.328 +2680,80.511,345.321,520.215,178.142,581.881,342.934,520.845,165.213,46.032,165.213,344.888,275.778,349.825,19.230,18.305,19.230 +2681,80.543,347.283,531.637,176.921,573.242,347.205,531.648,172.451,50.545,172.451,348.388,269.630,348.546,19.182,18.114,19.182 +2682,80.576,349.000,543.500,175.783,562.846,349.391,543.500,0.000,54.946,0.000,348.000,267.065,347.217,19.000,17.778,19.000 +2683,80.611,349.266,556.677,178.084,554.669,351.760,557.025,7.943,59.300,7.943,349.705,258.118,344.669,19.417,17.949,19.417 +2684,80.642,347.844,569.713,180.632,543.229,351.520,570.802,16.504,63.886,16.504,351.027,255.837,343.360,20.703,17.870,20.703 +2685,80.674,343.977,583.817,184.847,532.851,348.368,585.833,24.659,68.102,24.659,351.092,251.802,341.428,20.027,17.675,20.027 +2686,80.706,337.578,596.390,197.024,541.875,349.664,604.426,33.623,72.300,33.623,352.507,207.781,323.479,20.771,17.594,20.771 +2687,80.739,331.066,606.958,206.912,551.147,348.360,623.341,43.452,75.964,43.452,352.316,167.107,304.672,26.440,17.220,26.440 +2688,80.772,320.048,617.963,212.794,539.438,334.856,637.212,52.431,80.311,52.431,352.413,172.456,303.841,24.754,17.190,24.754 +2689,80.805,306.663,627.680,220.681,534.982,319.260,651.301,61.928,84.428,61.928,351.588,165.458,298.048,23.824,17.090,23.824 +2690,80.837,291.450,635.850,229.299,529.410,300.026,661.579,71.565,88.431,71.565,349.748,165.102,295.506,28.777,17.007,28.777 +2691,80.868,277.344,639.731,239.388,509.495,280.065,659.219,82.052,92.420,82.052,347.172,197.035,307.819,29.114,16.943,29.114 +2692,80.899,255.500,644.500,253.188,478.966,255.500,645.983,90.000,96.203,90.000,337.000,255.214,334.034,27.000,16.533,27.000 +2693,80.930,225.524,706.637,266.416,479.800,235.103,643.549,98.633,100.452,98.633,205.566,255.257,333.188,27.895,16.995,27.895 +2694,80.962,214.871,656.956,279.367,482.737,221.433,637.597,108.726,104.421,108.726,289.642,257.370,330.523,22.585,16.907,22.585 +2695,80.993,206.460,632.956,300.250,462.250,214.976,617.889,119.476,108.435,119.476,320.291,313.382,354.906,20.288,17.076,20.288 +2696,81.026,196.701,619.371,313.186,470.578,204.690,609.464,128.884,112.659,128.884,326.984,314.302,352.439,20.590,17.507,20.590 +2697,81.058,185.617,609.441,324.671,480.333,196.317,599.750,137.834,116.983,137.834,321.725,315.715,350.598,20.110,18.041,20.110 +2698,81.089,181.918,594.391,334.417,491.646,189.892,589.100,146.435,121.255,146.435,329.475,316.577,348.614,19.524,18.768,19.524 +2699,81.122,176.900,582.041,342.149,503.892,185.363,578.061,154.817,125.538,154.817,328.181,317.705,346.886,19.214,19.878,19.214 +2700,81.152,176.900,582.041,342.149,503.892,185.363,578.061,154.817,125.538,154.817,328.181,317.705,346.886,19.214,19.878,19.214 +2701,81.181,174.706,570.384,347.469,516.109,182.830,567.863,162.759,130.503,162.759,328.147,317.805,345.161,19.398,18.693,19.398 +2702,81.212,172.449,557.790,351.250,528.750,181.458,556.340,170.858,135.000,170.858,325.786,318.905,344.037,19.224,18.385,19.224 +2703,81.243,172.076,546.902,352.910,541.216,181.407,546.606,178.182,139.653,178.182,324.503,319.747,343.174,18.594,18.832,18.594 +2704,81.276,173.143,536.252,352.876,552.935,182.328,537.126,5.440,144.324,5.440,324.105,320.264,342.558,18.772,18.871,18.772 +2705,81.310,175.093,524.867,351.449,563.760,184.333,526.880,12.295,148.861,12.295,323.358,320.701,342.272,20.944,19.526,20.944 +2706,81.343,177.552,516.797,349.223,574.959,186.797,519.931,18.726,154.148,18.726,323.463,321.644,342.987,19.680,19.455,19.680 +2707,81.377,180.723,508.175,345.538,584.415,189.867,512.418,24.887,159.179,24.887,322.866,322.088,343.027,19.480,18.773,19.480 +2708,81.410,184.454,500.614,341.202,593.436,193.315,505.856,30.610,164.335,30.610,323.157,322.399,343.748,19.538,19.624,19.538 +2709,81.445,188.484,493.897,336.315,601.682,197.044,500.123,36.027,169.397,36.027,323.568,322.875,344.736,19.410,20.041,19.410 +2710,81.477,192.814,488.453,330.971,608.716,200.832,495.378,40.815,174.262,40.815,323.955,323.386,345.145,19.574,19.281,19.574 +2711,81.512,200.878,480.117,325.496,614.630,208.062,487.591,46.138,179.725,46.138,325.205,323.020,345.938,26.050,16.774,26.050 +2712,81.543,206.435,475.743,319.899,620.688,213.057,483.923,51.009,4.876,51.009,325.999,323.980,347.048,26.833,18.539,26.833 +2713,81.576,211.741,472.334,314.056,625.694,217.789,481.096,55.381,10.408,55.381,326.082,324.330,347.376,25.545,18.687,25.545 +2714,81.609,217.655,469.784,308.276,630.030,222.646,478.345,59.759,15.893,59.759,328.522,324.439,348.340,24.892,18.501,24.892 +2715,81.639,223.201,467.876,302.328,633.936,227.476,476.568,63.812,21.532,63.812,329.121,324.745,348.494,23.743,18.573,23.743 +2716,81.670,228.489,466.320,296.319,637.381,232.003,474.939,67.818,27.245,67.818,330.789,324.824,349.404,22.895,18.365,22.895 +2717,81.701,233.974,464.666,290.485,640.253,236.919,473.568,71.697,32.989,71.697,331.396,324.976,350.148,22.932,18.468,22.932 +2718,81.733,239.107,464.129,284.347,642.188,241.225,472.186,75.270,39.094,75.270,334.097,325.677,350.758,21.472,17.899,21.472 +2719,81.764,244.019,464.077,278.000,644.000,245.422,471.321,79.039,45.000,79.039,336.688,325.269,351.446,20.815,16.971,20.815 +2720,81.796,248.559,463.949,271.951,644.939,249.402,470.414,82.569,51.340,82.569,338.912,325.622,351.951,20.004,17.179,20.004 +2721,81.828,252.907,463.075,265.288,645.733,253.393,470.178,86.088,57.633,86.088,337.673,325.960,351.914,19.263,17.809,19.263 +2722,81.860,257.362,463.008,258.876,647.070,257.413,470.518,89.615,63.838,89.615,338.093,327.324,353.114,18.416,18.959,18.416 +2723,81.892,262.384,463.235,252.556,646.607,262.013,469.702,93.284,69.600,93.284,341.357,327.111,354.312,18.993,19.660,18.993 +2724,81.923,266.945,462.469,243.953,646.148,266.070,469.968,96.654,74.899,96.654,340.011,326.864,355.111,19.236,21.685,19.236 +2725,81.955,272.123,462.790,239.266,644.500,270.802,470.007,100.372,81.296,100.372,339.968,326.161,354.640,18.909,21.586,18.909 +2726,81.985,277.124,465.026,232.622,642.994,275.694,470.716,104.107,87.203,104.107,343.426,324.932,355.161,19.437,22.071,19.437 +2727,82.016,277.124,465.026,232.622,642.994,275.694,470.716,104.107,87.203,104.107,343.426,324.932,355.161,19.437,22.071,19.437 +2728,82.046,282.658,466.411,222.885,640.465,280.830,472.021,108.048,91.822,108.048,344.413,325.344,356.215,19.155,22.052,19.155 +2729,82.080,289.014,465.994,217.780,636.969,286.351,472.576,112.029,98.101,112.029,342.022,323.853,356.222,19.022,19.233,19.022 +2730,82.113,295.008,468.528,211.658,633.300,292.064,474.511,116.196,104.511,116.196,342.610,322.343,355.947,18.761,17.506,18.761 +2731,82.147,301.879,469.750,205.360,629.134,297.647,476.932,120.510,110.480,120.510,339.292,320.925,355.964,19.077,17.494,19.077 +2732,82.179,308.348,472.787,199.310,624.159,303.440,479.779,125.068,116.281,125.068,338.910,320.208,355.996,18.949,17.213,18.949 +2733,82.212,314.825,476.609,193.628,618.894,309.341,483.215,129.699,122.112,129.699,339.440,318.214,356.611,18.916,16.420,18.916 +2734,82.245,321.500,480.500,187.970,612.864,314.777,487.223,135.000,127.721,135.000,337.997,316.980,357.014,18.385,16.541,18.385 +2735,82.277,328.751,485.830,181.792,605.306,320.456,492.818,139.887,133.078,139.887,335.354,316.255,357.045,18.999,17.246,18.999 +2736,82.312,334.914,492.195,177.115,598.274,325.683,498.546,145.472,138.814,145.472,335.439,313.448,357.849,18.797,16.180,18.797 +2737,82.343,340.381,499.958,172.495,589.890,330.523,505.360,151.276,144.386,151.276,335.930,312.243,358.412,18.822,15.204,18.822 +2738,82.378,345.657,508.554,168.373,580.499,334.884,513.020,157.486,149.792,157.486,335.994,310.961,359.318,18.863,15.171,18.863 +2739,82.410,348.349,518.980,165.110,570.064,338.490,521.804,164.019,155.308,164.019,339.421,309.833,359.932,18.640,15.561,18.640 +2740,82.445,350.573,529.806,163.034,559.097,341.214,531.289,170.991,160.532,170.991,341.720,308.748,360.672,18.826,15.686,18.826 +2741,82.477,351.478,541.311,162.441,546.765,342.822,541.585,178.189,165.964,178.189,343.587,308.020,360.909,18.840,16.250,18.840 +2742,82.510,350.985,553.258,163.243,534.853,343.321,552.474,5.835,171.119,5.835,346.466,306.623,361.873,19.207,15.469,19.207 +2743,82.543,349.494,565.956,165.484,522.751,342.168,564.184,13.593,176.424,13.593,347.868,305.529,362.944,19.647,14.908,19.647 +2744,82.574,346.135,579.151,170.003,510.361,339.301,576.429,21.718,1.332,21.718,348.744,304.267,363.456,20.163,14.112,20.163 +2745,82.606,339.444,591.515,176.476,499.246,334.356,588.558,30.160,5.633,30.160,350.991,303.473,362.760,20.517,13.922,20.517 +2746,82.638,331.952,603.566,184.733,488.010,327.547,600.033,38.733,10.042,38.733,351.700,304.071,362.994,20.981,12.914,20.981 +2747,82.674,323.538,612.566,210.723,482.133,324.890,614.102,48.652,14.444,48.652,353.076,270.710,348.984,25.344,12.897,25.344 +2748,82.717,311.267,622.173,223.126,475.173,312.786,624.577,57.724,18.905,57.724,354.082,268.512,348.395,24.030,13.025,24.030 +2749,82.750,297.253,630.649,235.952,469.459,298.228,632.994,67.445,23.471,67.445,354.906,267.901,349.827,24.820,12.878,24.820 +2750,82.782,280.180,636.068,249.679,466.024,280.763,638.334,75.562,27.626,75.562,353.917,268.829,349.237,28.362,13.240,28.362 +2751,82.818,268.823,637.233,263.938,464.399,268.935,639.041,86.466,32.005,86.466,352.860,269.557,349.236,28.810,13.674,28.810 +2752,82.850,247.329,636.694,264.095,455.932,247.544,633.569,93.921,36.027,93.921,350.440,305.629,356.705,28.481,14.190,28.481 +2753,82.880,237.292,634.279,285.721,464.148,237.572,633.230,104.942,40.236,104.942,349.389,288.912,351.559,26.410,14.446,26.410 +2754,82.912,221.551,627.349,300.750,467.750,222.515,625.168,113.850,45.000,113.850,346.452,292.035,351.220,19.909,15.556,19.909 +2755,82.944,209.384,619.379,305.981,470.762,210.776,617.242,123.082,48.069,123.082,344.299,310.329,349.400,20.262,15.913,20.262 +2756,82.976,198.844,610.567,318.810,478.407,201.393,607.742,132.061,52.696,132.061,341.755,311.620,349.365,20.136,17.007,20.136 +2757,83.009,190.282,600.178,327.731,489.346,192.921,598.019,140.711,56.310,140.711,339.486,314.238,346.305,19.771,16.918,19.771 +2758,83.043,183.506,589.006,336.340,500.215,186.962,586.930,148.993,60.642,148.993,337.342,315.783,345.405,19.247,16.941,19.247 +2759,83.074,178.983,577.460,342.776,511.577,182.955,575.770,156.958,64.754,156.958,335.759,317.540,344.392,18.954,17.472,18.954 +2760,83.109,175.505,566.339,346.899,523.821,180.212,565.046,164.646,68.663,164.646,333.543,319.373,343.306,18.832,17.494,18.832 +2761,83.140,173.781,554.871,349.228,535.897,178.812,554.196,172.360,72.688,172.360,332.521,320.643,342.672,18.445,17.482,18.445 +2762,83.173,173.500,544.424,349.860,547.510,178.912,544.395,179.698,76.584,179.698,331.032,321.583,341.858,18.137,17.625,18.137 +2763,83.205,175.203,534.154,349.459,558.757,180.411,534.727,6.271,80.538,6.271,330.844,322.222,341.323,18.373,17.755,18.373 +2764,83.236,177.249,524.742,347.887,569.292,182.669,525.988,12.950,84.644,12.950,330.316,323.581,341.439,19.199,17.704,19.199 +2765,83.267,180.166,516.077,345.217,579.047,185.800,518.027,19.093,88.819,19.093,329.291,324.158,341.215,20.172,17.563,20.172 +2766,83.299,183.284,509.675,341.612,588.326,188.685,512.129,24.444,92.936,24.444,329.635,323.703,341.500,18.704,17.951,18.704 +2767,83.329,187.753,502.474,337.628,596.076,192.833,505.417,30.090,96.892,30.090,329.730,324.233,341.471,19.068,17.957,19.068 +2768,83.360,191.723,496.356,333.088,603.440,196.840,499.973,35.256,100.886,35.256,329.433,324.364,341.965,19.260,18.394,19.260 +2769,83.394,196.159,491.531,328.189,610.050,200.829,495.466,40.113,104.956,40.113,330.242,324.525,342.456,18.920,19.197,18.920 +2770,83.429,203.044,484.390,322.226,616.392,207.470,488.763,44.659,108.914,44.659,330.226,325.730,342.670,26.444,19.641,26.444 +2771,83.462,207.286,480.709,317.207,620.517,211.408,485.451,49.000,113.199,49.000,330.125,323.539,342.692,25.458,19.171,25.458 +2772,83.493,211.820,477.260,312.106,624.530,215.626,482.335,53.130,117.728,53.130,330.600,322.949,343.288,25.000,19.247,25.000 +2773,83.526,216.240,474.423,306.804,627.876,219.653,479.679,57.008,122.171,57.008,330.979,322.447,343.512,24.622,19.578,24.622 +2774,83.557,220.281,471.323,302.350,631.635,223.851,477.699,60.751,126.769,60.751,330.715,321.813,345.330,24.186,22.271,24.186 +2775,83.588,224.668,468.730,297.449,634.212,227.957,475.546,64.245,131.091,64.245,331.063,321.069,346.199,23.875,22.741,23.875 +2776,83.619,224.668,468.730,297.449,634.212,227.957,475.546,64.245,131.091,64.245,331.063,321.069,346.199,23.875,22.741,23.875 +2777,83.648,228.493,466.452,292.339,635.862,231.455,473.673,67.694,135.744,67.694,330.712,320.449,346.322,22.678,22.423,22.678 +2778,83.680,232.497,464.299,287.053,637.457,235.089,471.848,71.046,140.528,71.046,331.051,320.351,347.015,21.992,22.568,21.992 +2779,83.711,236.391,462.683,281.870,638.534,238.604,470.512,74.215,145.271,74.215,330.637,319.833,346.909,21.449,21.910,21.449 +2780,83.745,240.343,461.248,277.046,639.831,242.184,469.429,77.320,150.255,77.320,331.024,319.265,347.796,20.756,22.326,20.756 +2781,83.777,244.333,459.849,272.273,640.743,245.803,468.504,80.362,155.105,80.362,330.923,318.620,348.480,20.239,22.847,20.239 +2782,83.812,248.264,458.950,267.433,641.204,249.285,467.806,83.418,160.201,83.418,330.843,318.321,348.671,19.486,22.581,19.486 +2783,83.844,252.313,457.947,262.880,642.044,252.932,467.458,86.273,165.275,86.273,330.667,317.965,349.728,18.784,22.679,18.784 +2784,83.877,256.693,457.974,258.076,641.958,256.840,467.435,89.112,170.593,89.112,330.115,317.459,349.041,18.471,21.763,18.471 +2785,83.909,261.218,458.049,253.704,640.678,260.870,466.760,92.291,176.082,92.291,330.696,316.765,348.131,18.985,18.368,18.985 +2786,83.943,265.988,458.635,249.074,640.481,265.216,467.121,95.194,1.409,95.194,331.180,316.372,348.221,18.922,17.855,18.922 +2787,83.973,270.987,459.498,244.800,640.691,269.792,467.757,98.236,6.759,98.236,332.769,316.525,349.460,19.078,18.338,19.078 +2788,84.004,275.706,460.543,240.191,640.374,274.052,468.779,101.352,12.458,101.352,333.007,317.041,349.806,19.412,18.110,19.412 +2789,84.036,279.838,461.830,235.339,639.424,277.842,469.615,104.381,18.034,104.381,334.015,317.171,350.089,19.274,18.332,19.274 +2790,84.067,284.701,462.928,230.446,638.340,282.237,470.675,107.640,23.654,107.640,334.695,317.279,350.953,19.187,18.176,19.187 +2791,84.098,289.493,464.725,225.019,636.421,286.783,471.737,111.125,29.427,111.125,336.719,317.259,351.754,18.995,18.358,18.995 +2792,84.130,294.217,466.946,218.949,634.435,291.159,473.572,114.775,35.066,114.775,338.040,317.787,352.635,19.067,18.243,19.067 +2793,84.162,299.195,469.246,213.098,631.670,295.842,475.406,118.560,41.129,118.560,339.587,317.302,353.615,19.190,18.682,19.190 +2794,84.194,303.922,472.043,207.632,628.054,300.523,477.387,122.452,47.095,122.452,341.301,317.822,353.967,19.040,19.484,19.040 +2795,84.226,308.981,475.370,201.778,624.063,305.408,480.174,126.639,53.366,126.639,342.630,317.405,354.604,19.193,19.609,19.193 +2796,84.257,313.605,479.225,195.501,620.273,309.768,483.652,130.914,58.791,130.914,344.443,317.253,356.160,18.943,19.078,18.943 +2797,84.290,318.728,483.638,189.434,615.059,314.516,487.752,135.674,64.058,135.674,345.094,316.288,356.870,18.700,18.665,18.700 +2798,84.321,324.202,488.609,183.522,608.080,319.838,492.210,140.473,69.955,140.473,346.462,317.474,357.777,18.874,18.522,18.874 +2799,84.352,324.202,488.609,183.522,608.080,319.838,492.210,140.473,69.955,140.473,346.462,317.474,357.777,18.874,18.522,18.874 +2800,84.380,329.371,494.381,178.912,602.147,324.732,497.548,145.685,75.964,145.685,347.581,314.569,358.815,18.853,18.190,18.853 +2801,84.414,334.095,501.456,174.489,594.542,329.530,503.978,151.087,82.528,151.087,348.574,312.829,359.004,18.958,17.506,18.958 +2802,84.446,338.676,509.073,170.321,591.406,332.823,511.576,156.849,88.386,156.849,348.873,301.162,361.604,19.448,17.035,19.448 +2803,84.480,342.505,518.268,166.512,582.728,336.769,520.032,162.897,94.325,162.897,350.330,300.034,362.332,19.336,17.069,19.336 +2804,84.513,346.133,527.782,163.872,571.704,340.244,528.863,169.592,100.305,169.592,350.444,299.275,362.419,19.049,17.173,19.049 +2805,84.546,348.472,538.562,163.745,556.072,343.363,538.889,176.338,106.270,176.338,350.459,308.281,360.698,19.049,16.797,19.049 +2806,84.577,349.205,550.162,163.569,543.328,344.080,549.848,3.508,111.801,3.508,350.874,309.183,361.143,19.228,16.527,19.228 +2807,84.612,348.743,561.781,165.166,531.086,343.926,560.822,11.266,117.371,11.266,352.426,307.816,362.250,20.607,16.287,20.607 +2808,84.646,346.216,573.903,168.325,517.925,341.708,572.364,18.853,122.369,18.853,353.819,307.711,363.346,19.758,17.421,19.758 +2809,84.680,341.707,586.100,174.316,505.211,337.685,584.071,26.773,128.144,26.773,353.747,308.293,362.756,20.287,16.553,20.287 +2810,84.713,335.122,598.119,181.267,493.663,331.521,595.575,35.240,133.662,35.240,354.227,306.441,363.045,20.638,16.854,20.638 +2811,84.747,325.761,609.225,133.147,531.088,319.995,603.750,43.523,139.399,43.523,355.141,156.515,371.044,21.056,14.426,21.056 +2812,84.778,317.640,617.020,137.773,515.973,314.293,612.557,53.130,144.689,53.130,355.200,152.665,366.358,25.800,15.266,25.800 +2813,84.812,304.715,625.559,212.703,462.714,302.431,621.254,62.049,149.944,62.049,354.457,306.133,364.205,23.886,17.092,23.886 +2814,84.844,288.102,633.161,227.006,457.241,286.687,629.102,70.787,155.833,70.787,355.258,306.225,363.857,28.129,15.533,28.129 +2815,84.877,276.535,635.724,241.718,453.556,275.907,631.654,81.241,160.741,81.241,354.219,306.516,362.455,28.587,14.149,28.587 +2816,84.909,259.500,637.000,256.930,451.781,259.500,632.391,90.000,166.181,90.000,352.000,307.527,361.219,27.000,15.697,27.000 +2817,84.941,245.957,635.749,272.304,452.932,246.714,631.318,99.689,171.067,99.689,351.307,308.387,360.296,28.106,15.244,28.106 +2818,84.973,228.827,630.828,287.279,456.778,230.184,626.439,107.186,175.778,107.186,348.723,309.226,357.911,23.421,14.149,23.421 +2819,85.004,217.215,624.339,301.970,463.020,219.352,620.184,117.222,0.567,117.222,345.755,310.084,355.100,20.025,13.069,20.025 +2820,85.035,206.205,616.689,314.286,471.314,209.018,612.836,126.133,5.290,126.133,343.202,312.441,352.745,20.563,13.111,20.563 +2821,85.067,196.851,607.372,325.835,480.706,200.612,603.574,134.726,10.171,134.726,340.145,314.033,350.834,20.029,13.790,20.029 +2822,85.099,188.982,597.316,334.852,491.413,193.377,593.983,142.829,15.041,142.829,338.375,315.831,349.409,19.536,13.947,19.536 +2823,85.130,183.042,586.786,342.177,502.792,188.196,583.905,150.803,19.759,150.803,336.160,317.980,347.970,19.179,13.852,19.179 +2824,85.163,178.366,576.407,347.656,514.442,184.439,573.989,158.286,24.553,158.286,334.258,319.875,347.332,19.526,14.733,19.526 +2825,85.196,175.722,565.919,351.459,526.190,182.253,564.240,165.585,29.814,165.585,333.217,321.252,346.703,19.316,15.374,19.316 +2826,85.227,174.232,555.452,353.389,537.872,181.313,554.524,172.539,34.992,172.539,331.279,322.450,345.563,18.969,15.074,18.969 +2827,85.258,173.470,544.818,354.186,548.956,181.554,544.752,179.526,40.400,179.526,329.013,323.670,345.183,18.305,15.668,18.305 +2828,85.289,174.695,535.609,353.555,559.465,182.465,536.408,5.873,46.042,5.873,329.479,323.981,345.102,18.463,15.991,18.463 +2829,85.320,176.000,527.500,351.488,569.610,183.793,529.059,11.310,51.340,11.310,328.887,325.154,344.782,19.023,16.554,19.023 +2830,85.350,176.000,527.500,351.488,569.610,183.793,529.059,11.310,51.340,11.310,328.887,325.154,344.782,19.023,16.554,19.023 +2831,85.379,178.288,519.404,349.371,577.714,186.119,521.780,16.879,57.704,16.879,328.551,326.182,344.919,18.590,16.739,18.590 +2832,85.413,180.966,512.591,345.800,585.600,188.308,515.537,21.861,63.435,21.861,328.689,326.466,344.510,19.129,16.994,19.129 +2833,85.447,183.900,506.200,341.959,593.015,191.087,509.793,26.565,69.734,26.565,328.255,326.544,344.325,19.230,17.232,19.230 +2834,85.480,187.789,500.055,337.773,599.311,194.298,504.010,31.283,76.225,31.283,328.973,326.931,344.204,19.656,17.307,19.656 +2835,85.512,191.100,495.740,333.638,604.608,197.006,499.920,35.291,82.875,35.291,329.535,326.335,344.008,19.060,17.489,19.060 +2836,85.544,194.280,491.689,329.697,609.498,200.074,496.389,39.049,89.474,39.049,328.925,325.087,343.846,18.726,18.577,18.726 +2837,85.577,197.674,488.532,325.874,613.540,202.986,493.392,42.460,96.170,42.460,329.140,325.321,343.540,18.535,19.320,18.535 +2838,85.611,201.112,485.890,321.387,617.452,205.779,490.652,45.579,103.461,45.579,329.624,325.709,342.958,18.455,18.871,18.455 +2839,85.643,206.942,480.642,318.041,620.199,211.201,485.471,48.588,110.206,48.588,330.547,324.125,343.427,26.109,19.636,26.109 +2840,85.674,210.366,478.396,314.608,622.318,214.131,483.087,51.244,117.570,51.244,330.919,322.948,342.948,26.224,19.368,26.224 +2841,85.706,212.418,476.660,311.047,624.492,216.088,481.665,53.746,124.756,53.746,330.250,322.046,342.662,24.945,18.980,24.945 +2842,85.738,215.040,474.778,309.689,627.622,219.165,480.900,56.032,132.075,56.032,329.760,321.546,344.524,25.055,23.423,25.055 +2843,85.770,217.104,472.949,305.694,627.476,220.609,478.589,58.134,139.399,58.134,329.454,320.840,342.735,24.514,18.981,24.514 +2844,85.801,219.427,470.968,304.808,630.468,223.507,478.101,60.231,146.659,60.231,328.816,320.360,345.252,24.964,23.304,24.964 +2845,85.833,221.365,469.245,302.605,631.734,225.458,476.958,62.049,153.905,62.049,328.299,319.820,345.763,24.608,23.185,24.608 +2846,85.865,223.384,467.565,300.511,632.534,227.417,475.695,63.614,161.474,63.614,327.819,320.025,345.968,24.429,22.701,24.429 +2847,85.896,224.994,466.271,298.623,633.652,228.964,474.828,65.109,169.287,65.109,327.916,320.663,346.782,24.245,22.440,24.245 +2848,85.929,226.550,465.132,297.070,634.282,230.349,473.851,66.457,176.868,66.457,328.435,320.724,347.456,23.940,21.724,23.940 +2849,85.961,228.141,464.554,295.781,635.548,231.789,473.500,67.820,4.106,67.820,329.108,321.542,348.430,24.062,21.248,24.062 +2850,85.993,229.119,464.226,293.816,636.383,232.529,473.066,68.902,11.757,68.902,329.910,322.695,348.861,22.905,19.570,22.905 +2851,86.024,230.542,464.751,292.120,638.066,233.644,473.322,70.106,19.597,70.106,331.394,323.685,349.623,23.640,19.596,23.640 +2852,86.055,231.795,464.418,290.662,639.163,234.842,473.211,70.885,27.007,70.885,331.548,324.324,350.162,22.997,19.072,22.997 +2853,86.086,233.104,464.462,289.632,640.022,235.981,473.124,71.626,35.175,71.626,332.347,325.340,350.602,22.381,18.380,22.381 +2854,86.118,233.104,464.462,289.632,640.022,235.981,473.124,71.626,35.175,71.626,332.347,325.340,350.602,22.381,18.380,22.381 +2855,86.148,234.369,465.020,288.574,640.870,236.941,473.089,72.324,43.531,72.324,334.135,326.105,351.074,22.029,17.219,22.029 +2856,86.179,235.561,466.403,286.963,641.829,237.748,473.526,72.929,51.340,72.929,335.769,327.028,350.672,22.032,17.648,22.032 +2857,86.210,235.749,465.308,285.880,643.099,238.395,473.909,72.897,59.511,72.897,333.346,328.294,351.345,22.277,17.573,22.277 +2858,86.242,235.322,462.634,283.692,644.339,238.844,474.054,72.860,67.218,72.860,327.980,329.166,351.880,20.103,20.228,20.103 +2859,86.275,215.839,394.198,281.928,644.568,238.454,474.222,74.219,74.663,74.219,185.182,329.422,351.498,18.200,21.575,18.200 +2860,86.307,232.825,451.716,283.649,643.813,239.065,474.201,74.490,83.517,74.490,304.045,329.109,350.715,18.599,23.101,18.599 +2861,86.338,236.648,459.234,279.167,643.501,240.416,473.071,74.768,90.249,74.768,320.567,327.040,349.248,21.386,21.052,21.386 +2862,86.371,237.897,462.047,281.146,643.606,240.884,473.142,74.932,99.276,74.932,327.158,326.997,350.138,21.392,22.538,21.392 +2863,86.402,238.438,462.715,279.332,642.307,240.899,471.923,75.036,106.144,75.036,329.997,325.682,349.059,21.472,19.767,21.472 +2864,86.433,238.268,463.129,278.669,640.849,240.396,471.108,75.069,114.567,75.069,331.225,323.253,347.742,21.064,18.293,21.064 +2865,86.465,238.308,462.990,279.096,640.242,240.363,470.742,75.150,122.518,75.150,331.492,322.123,347.531,22.144,20.448,22.144 +2866,86.497,238.021,462.658,279.504,639.504,240.013,470.113,75.038,130.329,75.038,332.254,320.969,347.687,22.254,20.671,22.254 +2867,86.530,237.210,462.224,280.051,638.999,239.310,469.974,74.837,138.166,74.837,331.535,320.296,347.594,21.691,21.505,21.691 +2868,86.561,236.726,461.699,280.840,638.495,238.949,469.776,74.610,146.113,74.610,330.818,319.789,347.573,21.789,22.079,21.789 +2869,86.593,235.600,461.774,281.704,638.413,237.967,470.256,74.407,153.741,74.407,329.839,319.347,347.450,21.571,21.906,21.571 +2870,86.625,235.420,461.871,282.938,638.311,237.911,470.520,73.930,161.719,73.930,329.396,319.084,347.397,22.161,22.221,22.161 +2871,86.659,234.961,461.659,284.709,638.121,237.630,470.683,73.526,169.426,73.526,329.009,319.560,347.830,22.470,22.229,22.470 +2872,86.690,234.341,462.357,286.606,638.425,237.140,471.455,72.897,176.853,72.897,329.229,319.782,348.268,21.909,21.270,21.909 +2873,86.720,234.341,462.357,286.606,638.425,237.140,471.455,72.897,176.853,72.897,329.229,319.782,348.268,21.909,21.270,21.909 +2874,86.750,234.137,463.116,288.410,638.731,237.066,472.270,72.255,4.180,72.255,329.158,320.411,348.380,23.049,20.835,23.049 +2875,86.781,233.378,464.543,289.983,639.631,236.381,473.516,71.498,11.120,71.498,330.153,321.429,349.078,22.859,19.537,22.859 +2876,86.813,232.552,466.006,291.598,639.737,235.493,474.427,70.747,17.999,70.747,331.287,322.852,349.128,22.842,19.844,22.842 +2877,86.844,231.360,466.148,293.305,639.593,234.581,474.957,69.918,24.744,69.918,330.821,323.861,349.580,23.096,18.037,23.096 +2878,86.877,230.458,466.901,294.750,639.586,233.832,475.653,68.921,31.048,68.921,330.987,324.994,349.745,23.524,18.286,23.524 +2879,86.909,229.047,467.793,296.131,638.983,232.468,476.219,67.902,37.405,67.902,331.326,325.874,349.514,23.526,18.130,23.526 +2880,86.941,227.267,466.953,297.837,638.145,231.328,476.471,66.894,43.531,66.894,328.913,326.866,349.610,23.608,17.980,23.608 +2881,86.974,226.562,467.472,298.994,637.614,230.610,476.453,65.742,48.270,65.742,330.349,326.938,350.052,23.998,17.972,23.998 +2882,87.006,222.500,465.500,300.071,636.945,228.396,477.292,63.435,52.306,63.435,323.335,327.664,349.704,23.702,18.092,23.702 +2883,87.040,219.157,462.948,301.165,636.387,226.967,477.627,61.986,55.654,61.986,316.763,328.166,350.017,23.367,18.164,23.367 +2884,87.072,213.339,454.865,302.039,635.668,226.021,477.850,61.113,58.355,61.113,297.304,328.480,349.808,21.557,18.254,21.557 +2885,87.105,182.581,404.330,303.260,634.789,223.203,479.271,61.540,60.555,61.540,179.264,328.582,349.749,18.027,18.358,18.027 +2886,87.137,182.815,411.177,305.271,633.604,222.025,479.794,60.255,62.850,60.255,191.634,328.776,349.693,18.109,18.412,18.109 +2887,87.169,202.561,451.660,306.690,632.478,220.029,480.727,58.997,64.983,58.997,281.596,328.884,349.419,18.278,18.365,18.278 +2888,87.199,207.418,465.132,308.905,631.127,218.189,481.952,57.366,67.620,57.366,309.146,328.913,349.092,18.350,18.222,18.350 +2889,87.230,210.418,469.917,311.595,630.072,218.809,482.078,55.394,70.769,55.394,319.462,329.548,349.012,23.878,18.115,23.878 +2890,87.263,210.280,474.040,314.154,627.682,217.011,483.015,53.130,74.578,53.130,325.600,329.420,348.038,26.000,18.150,26.000 +2891,87.294,207.715,476.961,316.858,624.738,214.137,484.748,50.481,79.066,50.481,326.523,328.104,346.710,26.513,17.919,26.513 +2892,87.327,204.342,481.030,319.786,621.470,210.358,487.610,47.564,84.049,47.564,327.432,327.292,345.263,24.924,17.788,24.924 +2893,87.360,199.412,486.998,323.227,617.493,204.899,492.362,44.349,89.409,44.349,328.824,325.117,344.170,19.042,17.762,19.042 +2894,87.392,196.206,490.868,326.910,612.536,201.402,495.357,40.830,94.970,40.830,329.425,324.991,343.158,19.174,18.712,19.174 +2895,87.423,193.184,495.445,330.149,607.126,197.811,498.939,37.057,101.030,37.057,330.015,324.179,341.610,18.958,18.158,18.958 +2896,87.454,189.561,499.827,333.760,600.927,194.224,502.856,33.008,106.945,33.008,329.759,323.355,340.879,19.014,18.108,19.014 +2897,87.485,189.561,499.827,333.760,600.927,194.224,502.856,33.008,106.945,33.008,329.759,323.355,340.879,19.014,18.108,19.014 +2898,87.514,186.156,504.804,336.867,594.317,190.760,507.327,28.729,112.714,28.729,329.370,323.455,339.871,19.331,18.020,19.331 +2899,87.546,183.424,510.555,340.791,586.069,187.757,512.501,24.176,118.580,24.176,329.981,321.631,339.481,19.498,18.978,19.498 +2900,87.578,180.339,516.893,343.917,576.791,184.790,518.447,19.244,124.946,19.244,329.503,319.908,338.931,19.459,19.139,19.459 +2901,87.614,177.684,523.766,347.071,567.942,182.533,524.975,13.991,131.348,13.991,330.097,319.083,340.090,19.949,18.047,19.949 +2902,87.645,175.671,531.724,349.543,558.097,180.926,532.502,8.420,137.726,8.420,330.468,319.385,341.094,19.316,17.960,19.316 +2903,87.677,173.414,540.018,351.383,547.838,180.218,540.309,2.454,144.071,2.454,329.041,319.311,342.661,19.182,17.908,19.182 +2904,87.716,170.613,549.232,334.481,548.335,171.285,549.188,176.269,150.078,176.269,324.463,278.081,325.810,20.109,19.205,20.109 +2905,87.757,106.362,590.517,287.432,535.905,151.721,575.915,162.156,162.897,162.156,187.582,73.080,282.885,18.784,7.426,18.784 +2906,87.790,175.593,582.457,,,,,155.191,,,329.096,,,19.584,, +2907,87.825,181.478,589.503,,,,,147.748,,,335.261,,,19.330,, +2908,87.863,189.691,600.948,,,,,139.844,,,339.130,,,19.346,, +2909,87.895,197.360,609.129,,,,,131.930,,,340.728,,,18.644,, +2910,87.927,206.428,619.954,,,,,123.633,,,344.468,,,18.524,, +2911,87.961,218.078,627.063,,,,,115.356,,,346.321,,,18.879,, +2912,87.993,231.601,631.830,389.935,514.646,229.170,639.934,106.699,26.996,106.699,349.319,71.115,332.399,20.210,7.095,20.210 +2913,88.024,246.512,635.922,,,,,98.720,,,351.406,,,23.037,, +2914,88.058,261.377,637.029,,,,,90.343,,,349.964,,,24.850,, +2915,88.091,273.185,639.702,304.823,532.155,278.778,676.059,81.254,48.814,81.254,350.112,48.353,276.542,24.785,9.501,24.785 +2916,88.125,290.050,639.335,287.640,548.963,302.017,679.223,73.301,54.689,73.301,341.082,60.454,257.794,23.275,10.404,23.275 +2917,88.158,332.322,692.818,266.178,558.239,322.821,672.572,64.861,60.803,64.861,210.403,58.667,255.133,21.595,8.396,21.595 +2918,88.189,318.963,630.856,244.957,570.233,339.341,661.586,56.449,66.801,56.449,330.341,61.583,256.595,20.993,9.454,20.993 +2919,88.220,322.274,621.200,216.624,575.606,345.686,647.661,48.498,74.291,48.498,349.637,58.361,278.974,21.322,10.258,21.322 +2920,88.250,322.274,621.200,216.624,575.606,345.686,647.661,48.498,74.291,48.498,349.637,58.361,278.974,21.322,10.258,21.322 +2921,88.281,329.958,611.783,164.522,408.752,299.333,585.778,40.336,80.340,40.336,354.338,126.584,434.690,27.330,10.341,27.330 +2922,88.313,334.809,603.300,168.435,422.486,309.284,587.040,32.498,88.152,32.498,353.880,135.188,414.407,21.374,10.962,21.374 +2923,88.345,341.693,589.418,170.346,476.138,329.714,583.883,24.799,95.833,24.799,353.338,221.910,379.729,28.177,12.109,28.177 +2924,88.380,344.590,582.002,162.055,536.124,339.134,580.302,17.303,102.567,17.303,352.979,312.812,364.409,27.848,18.178,27.848 +2925,88.412,344.969,573.330,158.700,549.391,339.269,572.305,10.193,110.086,10.193,351.964,313.461,363.547,26.046,20.227,26.046 +2926,88.445,343.437,563.092,160.471,547.981,339.309,562.831,3.619,116.764,3.619,350.564,290.260,358.838,25.578,21.320,25.578 +2927,88.478,344.183,553.658,165.023,555.491,342.105,553.754,177.349,123.038,177.349,349.783,282.516,353.944,25.177,21.444,25.177 +2928,88.512,344.809,542.625,170.771,562.414,344.531,542.667,171.400,130.130,171.400,348.955,279.275,349.518,24.023,20.454,24.023 +2929,88.544,341.524,534.723,172.481,575.133,341.415,534.751,165.670,136.695,165.670,347.121,283.907,347.346,23.821,18.268,23.821 +2930,88.576,339.285,528.669,173.040,586.220,337.108,529.431,160.718,143.130,160.718,342.620,289.000,347.234,22.760,18.400,22.760 +2931,88.608,352.764,516.110,174.757,595.884,334.145,524.420,155.946,149.840,155.946,308.575,294.557,349.352,19.737,18.391,19.737 +2932,88.640,347.249,506.882,174.464,603.703,328.311,517.153,151.526,156.371,151.526,309.911,306.168,353.000,19.100,18.609,19.100 +2933,88.671,330.792,507.445,173.849,610.513,322.637,512.792,146.749,162.759,146.749,336.514,313.195,356.017,20.934,19.398,20.934 +2934,88.701,324.211,506.774,176.574,617.686,318.427,511.225,142.418,169.571,142.418,340.094,313.049,354.691,20.542,19.537,20.542 +2935,88.733,318.748,503.281,180.403,622.040,314.401,507.111,138.621,176.209,138.621,341.449,311.972,353.036,20.528,19.091,20.528 +2936,88.764,314.500,498.500,185.067,625.992,310.519,502.481,135.000,2.545,135.000,340.825,312.714,352.086,19.799,19.070,19.799 +2937,88.797,311.368,494.828,189.885,628.631,308.062,498.530,131.760,9.230,131.760,341.586,313.661,351.511,20.034,19.741,20.034 +2938,88.828,307.269,493.906,193.470,634.611,304.018,497.912,129.058,15.038,129.058,341.292,314.678,351.610,19.763,20.223,19.763 +2939,88.861,302.695,492.732,197.068,638.374,299.893,496.585,126.027,22.130,126.027,340.772,315.694,350.298,19.924,19.626,19.924 +2940,88.895,300.615,490.077,201.765,640.583,297.906,494.141,123.690,28.369,123.690,340.586,316.836,350.354,19.969,19.552,19.969 +2941,88.927,299.023,488.514,206.902,643.184,296.468,492.683,121.504,34.423,121.504,340.463,317.920,350.243,19.775,19.705,19.775 +2942,88.959,296.900,487.800,209.920,645.736,294.393,492.187,119.745,40.305,119.745,340.351,319.330,350.456,20.218,19.460,20.218 +2943,88.990,293.834,488.554,212.009,649.549,291.502,492.946,117.967,46.123,117.967,341.242,320.466,351.188,19.986,19.601,19.986 +2944,89.019,293.834,488.554,212.009,649.549,291.502,492.946,117.967,46.123,117.967,341.242,320.466,351.188,19.986,19.601,19.986 +2945,89.048,292.104,487.062,214.537,651.171,289.646,492.030,116.318,51.340,116.318,340.804,322.343,351.890,19.479,18.741,19.479 +2946,89.081,291.236,485.184,217.360,651.908,288.763,490.529,114.829,56.659,114.829,341.108,323.153,352.888,20.007,18.643,20.007 +2947,89.114,289.495,484.408,218.831,653.016,287.087,489.929,113.562,61.756,113.562,341.504,324.011,353.551,20.049,19.446,20.049 +2948,89.147,287.235,484.350,219.061,654.974,284.704,490.435,112.584,67.324,112.584,341.080,325.992,354.262,19.937,20.900,19.937 +2949,89.178,284.995,484.314,219.059,656.481,282.433,490.807,111.535,71.847,111.535,340.780,326.708,354.741,19.584,19.410,19.584 +2950,89.211,283.672,482.423,218.902,655.489,281.121,489.119,110.854,76.881,110.854,340.910,327.083,355.241,19.446,18.933,19.446 +2951,89.242,282.882,481.535,219.245,655.660,280.245,488.691,110.225,81.396,110.225,340.273,326.754,355.525,19.409,17.654,19.409 +2952,89.274,281.583,480.625,218.225,656.062,278.651,488.726,109.895,85.426,109.895,338.594,327.195,355.824,18.645,17.026,18.645 +2953,89.307,281.055,480.438,216.995,656.500,277.833,489.371,109.832,88.649,109.832,336.721,327.051,355.714,18.999,16.745,18.999 +2954,89.338,281.392,478.889,216.251,656.949,277.610,489.469,109.671,91.302,109.671,334.250,328.256,356.721,18.778,16.950,18.778 +2955,89.370,283.267,477.457,216.772,654.488,279.298,488.348,110.020,92.911,110.020,331.832,325.901,355.014,19.324,17.130,19.324 +2956,89.401,284.513,478.675,215.289,655.591,280.270,489.843,110.807,94.028,110.807,332.147,327.738,356.041,19.200,16.340,19.200 +2957,89.433,286.047,480.306,213.545,654.884,281.854,490.677,112.011,94.554,112.011,333.306,327.353,355.679,19.055,16.505,19.055 +2958,89.465,287.978,481.983,211.832,654.412,283.811,491.661,113.298,94.332,113.298,334.825,326.640,355.898,19.072,16.438,19.072 +2959,89.497,290.970,483.115,210.799,652.398,286.933,491.747,115.067,93.428,115.067,336.494,325.913,355.552,18.628,16.666,18.628 +2960,89.529,294.487,484.689,208.713,650.107,290.424,492.573,117.266,91.909,117.266,337.190,324.187,354.928,18.961,16.624,18.961 +2961,89.560,296.949,487.273,205.000,648.500,293.000,494.250,119.511,90.000,119.511,339.137,323.000,355.172,19.326,16.000,19.326 +2962,89.592,299.363,490.033,201.349,646.946,295.564,496.091,122.090,87.725,122.090,341.418,322.699,355.718,19.358,17.006,19.358 +2963,89.624,303.226,491.422,198.638,644.701,298.946,497.592,124.751,83.836,124.751,341.077,324.461,356.094,19.452,19.443,19.452 +2964,89.655,306.894,492.872,194.835,640.771,302.497,498.560,127.703,80.754,127.703,342.338,322.728,356.717,19.562,19.809,19.562 +2965,89.685,306.894,492.872,194.835,640.771,302.497,498.560,127.703,80.754,127.703,342.338,322.728,356.717,19.562,19.809,19.562 +2966,89.715,309.828,496.114,190.248,637.498,305.447,501.161,130.964,77.532,130.964,343.581,322.581,356.947,19.317,20.230,19.317 +2967,89.748,312.946,499.976,185.462,634.092,308.345,504.668,134.444,73.811,134.444,343.748,322.367,356.889,19.469,21.406,19.469 +2968,89.779,316.705,502.504,181.111,628.987,311.737,506.972,138.033,70.688,138.033,344.070,321.240,357.433,19.631,20.980,19.631 +2969,89.812,320.857,506.241,177.569,622.828,316.020,509.998,142.165,66.801,142.165,344.859,319.731,357.109,19.047,21.666,19.047 +2970,89.847,324.979,510.460,173.600,616.200,320.060,513.719,146.470,63.435,146.470,345.589,318.416,357.392,20.308,21.466,20.308 +2971,89.881,329.078,516.521,170.103,609.580,324.106,519.268,151.080,60.154,151.080,345.582,316.916,356.943,20.823,21.158,20.823 +2972,89.914,333.068,522.893,167.308,601.461,328.286,525.010,156.128,56.310,156.128,345.834,315.070,356.293,21.348,20.524,21.348 +2973,89.946,337.393,529.671,166.097,592.537,333.160,531.075,161.651,52.193,161.651,346.915,314.250,355.835,21.525,20.038,21.525 +2974,89.977,341.612,537.251,164.769,582.928,337.329,538.200,167.506,48.366,167.506,347.525,312.666,356.300,22.134,19.350,22.134 +2975,90.009,344.862,547.233,163.706,572.747,340.454,547.714,173.774,44.576,173.774,347.972,310.427,356.841,22.629,18.091,22.629 +2976,90.041,347.000,556.500,162.824,562.401,341.912,556.500,0.000,40.983,0.000,348.000,308.470,358.176,25.000,19.569,25.000 +2977,90.073,348.985,568.123,164.059,550.584,342.957,567.370,7.125,36.787,7.125,347.049,306.796,359.198,24.559,19.524,24.559 +2978,90.105,349.943,579.260,166.105,538.701,342.454,577.351,14.300,32.542,14.300,345.406,305.712,360.863,25.878,18.875,25.878 +2979,90.136,353.437,593.895,169.223,527.584,339.783,588.387,21.967,28.179,21.967,332.398,305.181,361.845,24.884,18.070,24.884 +2980,90.168,361.641,617.957,173.204,516.035,333.195,602.897,27.897,23.651,27.897,299.708,304.220,364.080,20.847,16.816,20.847 +2981,90.199,335.829,617.245,179.433,504.769,327.921,611.287,36.998,19.395,36.998,345.579,304.306,365.383,23.741,17.371,23.741 +2982,90.230,325.126,625.421,187.581,493.455,320.404,620.636,45.379,14.960,45.379,354.192,303.979,367.639,25.942,18.868,25.942 +2983,90.264,313.456,634.314,197.359,483.567,309.955,629.580,53.514,10.521,53.514,356.918,303.763,368.694,24.664,20.282,24.664 +2984,90.295,300.785,642.223,208.037,476.146,298.099,637.259,61.587,6.023,61.587,357.830,303.796,369.118,23.488,20.382,23.488 +2985,90.327,286.401,649.362,220.088,471.173,284.468,644.027,70.086,1.507,70.086,357.545,304.289,368.893,24.009,18.494,24.009 +2986,90.359,270.198,653.165,233.978,465.590,268.918,646.926,78.403,176.934,78.403,356.576,304.742,369.314,26.273,20.934,26.273 +2987,90.391,259.123,654.057,248.911,464.828,258.938,647.945,88.259,172.470,88.259,354.444,305.555,366.674,24.505,18.415,24.505 +2988,90.422,244.067,653.313,264.024,465.111,244.845,647.360,97.446,167.628,97.446,354.390,307.174,366.396,24.874,18.048,24.874 +2989,90.453,244.067,653.313,264.024,465.111,244.845,647.360,97.446,167.628,97.446,354.390,307.174,366.396,24.874,18.048,24.874 +2990,90.482,229.058,650.581,279.109,468.705,230.862,644.378,106.217,163.217,106.217,351.396,308.422,364.315,22.521,17.097,22.521 +2991,90.514,215.604,644.389,293.293,473.483,218.544,638.193,115.382,158.199,115.382,347.987,310.297,361.704,23.108,15.598,23.108 +2992,90.545,207.955,630.593,306.247,479.980,212.888,623.330,124.179,153.631,124.179,324.519,311.731,342.077,21.540,15.453,21.540 +2993,90.578,203.582,616.453,317.199,488.635,212.682,606.519,132.494,149.610,132.494,288.105,313.844,315.048,20.222,15.215,20.222 +2994,90.614,179.697,623.008,325.950,498.693,209.818,598.623,141.009,145.733,141.009,228.769,314.829,306.278,19.616,15.856,19.616 +2995,90.644,175.791,609.027,332.945,509.124,200.590,593.427,147.829,142.537,147.829,255.249,316.571,313.843,19.346,16.151,19.346 +2996,90.676,184.392,598.062,334.938,512.848,194.955,592.025,150.255,139.217,150.255,297.311,316.388,321.643,19.597,17.133,19.597 +2997,90.709,187.230,597.035,334.000,513.000,194.664,592.792,150.285,135.000,150.285,304.010,315.370,321.130,20.971,16.971,20.971 +2998,90.741,188.365,596.290,332.748,513.633,193.636,593.289,150.347,129.661,150.347,308.478,316.258,320.607,20.990,17.752,20.990 +2999,90.773,188.055,596.206,331.849,514.567,192.770,593.505,150.195,123.638,150.195,308.969,315.627,319.837,21.811,17.651,21.811 +3000,90.804,188.658,595.433,331.026,515.001,192.016,593.524,150.381,116.845,150.381,311.581,315.777,319.308,21.120,18.424,21.120 +3001,90.835,189.346,594.387,330.866,515.090,192.033,592.860,150.385,109.898,150.385,312.075,316.188,318.257,20.508,18.558,20.508 +3002,90.867,189.462,594.544,330.922,516.313,191.891,593.153,150.193,102.575,150.193,312.069,315.852,317.667,22.307,18.379,22.307 +3003,90.897,189.546,594.743,331.395,517.358,191.947,593.380,150.405,95.042,150.405,312.076,316.418,317.599,21.384,17.842,21.384 +3004,90.928,189.853,594.897,332.052,518.134,192.170,593.580,150.376,87.397,150.376,312.450,316.491,317.781,21.869,18.436,21.869 +3005,90.959,190.261,594.621,333.591,518.663,192.834,593.160,150.405,79.809,150.405,312.452,316.532,318.370,21.878,18.203,21.878 +3006,90.989,190.856,594.798,335.121,519.438,193.845,593.103,150.440,72.378,150.440,311.583,317.194,318.458,21.889,18.310,21.889 +3007,91.019,190.856,594.798,335.121,519.438,193.845,593.103,150.440,72.378,150.440,311.583,317.194,318.458,21.889,18.310,21.889 +3008,91.048,190.505,595.725,336.464,519.815,194.374,593.547,150.616,64.938,150.616,311.097,317.588,319.976,21.944,17.733,21.944 +3009,91.079,190.473,595.741,337.400,520.203,194.640,593.377,150.433,57.407,150.433,310.973,318.142,320.554,22.380,17.942,22.380 +3010,91.112,190.798,595.026,338.717,519.512,195.440,592.400,150.496,49.708,150.496,310.519,318.451,321.186,21.414,17.776,21.414 +3011,91.146,190.663,595.169,339.353,518.808,195.856,592.220,150.410,42.332,150.410,310.123,318.577,322.065,21.504,17.803,21.504 +3012,91.180,190.407,595.999,339.545,518.436,195.931,592.888,150.616,34.959,150.616,310.657,318.763,323.337,21.564,17.947,21.564 +3013,91.210,189.570,595.512,339.417,517.657,195.259,592.305,150.589,27.715,150.589,311.412,318.988,324.473,20.574,18.089,20.574 +3014,91.242,189.379,595.167,339.151,516.268,195.253,591.826,150.376,20.583,150.376,311.359,319.288,324.875,21.869,18.423,21.869 +3015,91.274,188.710,595.258,339.193,515.195,195.218,591.585,150.562,13.503,150.562,310.914,319.177,325.860,21.927,17.638,21.927 +3016,91.304,187.290,595.015,338.625,513.904,194.833,590.763,150.589,6.497,150.589,308.688,319.264,326.006,21.936,17.375,21.936 +3017,91.334,186.531,594.555,337.996,513.229,194.196,590.246,150.656,179.804,150.656,308.596,318.036,326.183,20.595,16.616,20.595 +3018,91.364,184.039,595.569,337.388,512.110,194.041,589.953,150.682,172.852,150.682,303.265,318.276,326.207,21.201,16.930,21.201 +3019,91.395,179.167,597.808,336.805,511.143,194.103,589.707,151.526,166.319,151.526,291.809,318.208,325.791,19.756,16.780,19.756 +3020,91.428,167.784,604.524,336.390,510.541,194.300,590.154,151.545,159.444,151.545,265.397,317.767,325.716,18.741,15.801,18.741 +3021,91.460,125.550,627.591,336.228,510.468,194.432,589.524,151.074,153.267,151.074,167.286,316.647,324.688,18.104,15.981,18.104 +3022,91.492,173.004,600.341,335.156,510.212,193.956,588.556,150.642,146.774,150.642,274.873,317.826,322.951,19.120,15.829,19.120 +3023,91.523,183.890,595.059,333.938,510.426,193.432,589.721,150.777,140.360,150.777,300.806,317.139,322.673,19.273,15.946,19.273 +3024,91.553,185.867,594.472,331.801,511.845,191.730,591.167,150.589,133.924,150.589,308.483,316.940,321.943,20.574,15.949,20.574 +3025,91.583,185.867,594.472,331.801,511.845,191.730,591.167,150.589,133.924,150.589,308.483,316.940,321.943,20.574,15.949,20.574 +3026,91.612,185.674,595.017,330.210,513.118,190.281,592.420,150.589,127.669,150.589,311.096,316.372,321.674,20.574,16.151,20.574 +3027,91.644,186.683,595.530,329.816,513.972,190.578,593.333,150.578,121.403,150.578,311.587,316.425,320.531,21.441,16.073,21.441 +3028,91.676,188.340,594.786,330.307,514.409,191.348,593.083,150.496,115.253,150.496,312.455,316.415,319.369,22.285,16.604,22.285 +3029,91.707,188.783,595.267,331.137,516.208,191.544,593.695,150.347,108.699,150.347,312.943,315.918,319.297,21.365,16.569,21.365 +3030,91.739,189.098,596.327,331.332,518.352,191.311,595.068,150.376,102.479,150.376,314.189,315.961,319.280,21.869,16.694,21.869 +3031,91.771,190.433,596.950,332.667,519.801,192.851,595.582,150.496,96.183,150.496,312.455,315.943,318.012,21.907,16.909,21.907 +3032,91.801,192.092,595.872,334.557,519.500,194.328,594.612,150.589,89.715,150.589,312.950,315.031,318.083,21.176,17.388,21.176 +3033,91.832,192.423,595.970,335.956,520.061,195.074,594.478,150.629,83.589,150.629,312.459,316.391,318.544,21.568,17.854,21.568 +3034,91.864,192.189,596.595,336.455,521.400,194.975,595.036,150.777,77.565,150.777,312.462,316.824,318.846,21.123,18.434,21.123 +3035,91.894,191.463,596.203,336.772,521.407,194.587,594.459,150.827,71.654,150.827,312.361,316.867,319.517,20.651,18.246,20.651 +3036,91.930,191.456,595.784,337.720,521.040,195.227,593.675,150.777,65.480,150.777,310.998,317.798,319.638,21.507,17.718,21.507 +3037,91.971,190.981,594.137,338.261,519.346,195.021,591.868,150.682,59.452,150.682,311.542,318.153,320.809,21.583,17.605,21.583 +3038,92.003,189.527,594.610,337.863,519.102,194.015,592.090,150.682,53.409,150.682,312.031,318.804,322.325,21.965,17.956,21.965 +3039,92.035,188.442,594.087,337.812,518.212,193.328,591.364,150.873,47.291,150.873,312.450,318.735,323.638,20.765,17.748,20.765 +3040,92.072,188.220,593.283,338.264,517.042,193.347,590.404,150.682,40.941,150.682,312.796,319.757,324.555,21.094,17.756,21.094 +3041,92.108,188.881,592.083,339.091,514.869,194.205,589.120,150.897,34.778,150.897,313.229,320.152,325.415,21.258,18.161,21.258 +3042,92.141,187.889,591.090,338.886,512.879,193.720,587.829,150.784,28.644,150.784,313.203,320.034,326.564,21.509,18.098,21.509 +3043,92.173,187.168,591.693,337.853,512.625,192.871,588.500,150.760,21.975,150.760,314.069,320.343,327.142,21.990,17.636,21.990 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-233427.csv b/chaos_pdl/data/raw/metrics-20250919-233427.csv new file mode 100644 index 0000000..e6d8581 --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-233427.csv @@ -0,0 +1,2492 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.001,235.007,459.900,315.946,621.011,238.837,466.704,60.622,104.725,60.622,328.964,334.251,344.581,23.154,21.476,23.154 +1,0.037,234.422,462.442,315.952,622.219,238.210,469.158,60.581,115.894,60.581,327.600,331.457,343.021,22.857,23.023,22.857 +2,0.069,235.223,461.049,317.427,619.824,238.774,467.335,60.535,127.227,60.535,328.468,329.197,342.908,23.685,24.372,23.685 +3,0.101,234.782,459.837,318.992,617.688,238.501,466.339,60.232,138.541,60.232,327.698,328.119,342.680,23.477,26.235,23.477 +4,0.133,233.735,461.401,320.412,617.911,237.619,468.045,59.689,149.645,59.689,326.937,327.735,342.328,23.468,26.512,23.468 +5,0.165,233.186,461.688,322.336,616.905,237.089,468.202,59.068,160.821,59.068,327.558,327.083,342.746,24.137,27.144,24.137 +6,0.198,232.140,461.914,324.591,615.155,235.972,468.113,58.273,171.911,58.273,328.763,327.812,343.340,23.481,27.812,23.481 +7,0.229,231.316,464.264,326.948,614.766,234.965,469.921,57.171,2.366,57.171,329.694,328.587,343.159,24.152,28.521,24.152 +8,0.261,230.320,465.621,329.270,614.277,233.982,471.059,56.047,13.120,56.047,330.927,331.688,344.038,24.452,27.306,24.452 +9,0.295,229.040,465.766,331.936,612.962,233.053,471.450,54.782,23.372,54.782,331.353,332.860,345.269,24.653,24.429,24.653 +10,0.326,226.803,466.146,334.491,612.289,231.922,473.025,53.348,32.835,53.348,328.766,334.004,345.914,25.053,21.784,25.053 +11,0.359,220.970,466.219,336.493,612.366,229.168,475.903,49.749,41.222,49.749,321.620,334.800,346.997,24.718,20.042,24.718 +12,0.390,173.167,413.699,337.968,611.528,226.847,477.702,50.013,48.840,50.013,180.821,335.463,347.889,17.894,19.324,17.894 +13,0.422,211.829,464.415,339.387,610.403,225.149,479.294,48.164,56.716,48.164,307.822,335.621,347.761,18.463,19.284,18.463 +14,0.454,217.351,470.353,340.912,608.573,225.302,478.592,46.019,64.895,46.019,324.724,335.643,347.624,25.427,19.605,25.427 +15,0.485,215.683,473.483,342.904,605.240,222.659,480.128,43.603,73.946,43.603,327.448,335.030,346.716,25.621,19.828,25.621 +16,0.516,213.241,476.897,345.472,601.887,219.808,482.536,40.653,83.355,40.653,328.869,333.222,346.182,25.919,20.888,25.919 +17,0.548,210.286,480.895,348.498,597.545,216.532,485.672,37.405,92.603,37.405,329.845,331.521,345.572,25.373,23.112,25.373 +18,0.578,207.274,483.896,351.633,591.370,213.327,487.972,33.955,102.758,33.955,330.352,329.509,344.948,25.780,24.843,25.780 +19,0.609,203.322,488.301,354.518,585.257,209.572,491.944,30.239,112.620,30.239,329.963,327.615,344.432,25.914,25.615,25.914 +20,0.640,203.322,488.301,354.518,585.257,209.572,491.944,30.239,112.620,30.239,329.963,327.615,344.432,25.914,25.615,25.914 +21,0.669,199.493,493.448,357.376,578.595,205.957,496.576,25.821,123.016,25.821,329.691,326.826,344.052,25.930,26.474,25.930 +22,0.701,196.516,498.680,361.029,569.947,202.892,501.175,21.371,133.421,21.371,330.956,324.278,344.648,25.994,27.087,25.994 +23,0.733,193.232,505.217,364.441,561.782,200.419,507.346,16.504,143.723,16.504,330.466,324.605,345.457,26.136,27.358,26.136 +24,0.765,188.985,511.674,367.058,552.664,198.025,513.560,11.786,153.951,11.786,328.446,324.297,346.914,25.205,25.506,25.205 +25,0.796,183.513,518.887,369.315,542.606,196.490,520.351,6.438,164.116,6.438,322.340,325.822,348.459,25.163,23.373,25.163 +26,0.828,159.503,529.717,371.007,532.564,195.437,529.196,179.170,173.920,179.170,279.130,326.308,351.005,19.969,19.493,19.969 +27,0.862,182.904,540.752,371.184,521.511,195.383,539.561,174.548,3.521,174.548,328.371,327.166,353.442,19.224,24.277,19.224 +28,0.895,186.863,550.461,370.107,513.506,195.709,548.608,168.170,14.621,168.170,337.705,327.517,355.780,19.893,24.653,19.893 +29,0.929,189.698,560.108,366.757,503.616,196.692,557.762,161.454,24.707,161.454,342.155,327.348,356.910,19.279,23.722,19.279 +30,0.962,193.043,570.488,361.561,494.358,198.658,567.818,154.573,34.651,154.573,344.894,324.889,357.328,19.188,21.509,19.188 +31,0.996,197.897,580.566,356.434,483.524,202.951,577.302,147.144,43.727,147.144,347.584,320.947,359.617,19.566,24.350,19.566 +32,1.029,203.713,590.751,348.409,473.819,208.064,587.064,139.720,55.098,139.720,349.160,317.046,360.567,18.956,24.680,18.956 +33,1.063,211.157,600.538,338.535,464.613,214.743,596.542,131.900,65.695,131.900,350.997,313.247,361.736,18.908,24.342,18.908 +34,1.097,220.600,609.415,327.111,455.987,223.421,605.229,123.977,76.350,123.977,353.322,310.961,363.418,19.416,23.933,19.416 +35,1.130,230.457,619.195,313.857,449.454,233.469,613.003,115.937,86.927,115.937,350.702,309.413,364.472,19.388,21.486,19.388 +36,1.163,237.202,640.063,299.805,444.542,243.655,619.230,107.210,97.853,107.210,323.341,308.015,366.959,20.609,19.573,20.609 +37,1.196,253.622,633.507,285.463,440.016,255.368,622.296,98.853,107.482,98.853,346.787,308.411,369.479,24.945,21.187,24.945 +38,1.228,269.053,630.983,271.849,438.653,269.181,623.885,91.038,117.165,91.038,356.304,309.087,370.501,22.232,20.252,22.232 +39,1.264,283.046,630.764,258.554,439.580,282.182,624.370,82.299,127.569,82.299,359.676,310.221,372.580,25.899,19.145,25.899 +40,1.296,299.024,626.718,245.144,442.259,297.513,621.232,74.604,137.740,74.604,361.530,311.583,372.909,22.971,19.214,22.971 +41,1.329,313.801,620.534,231.832,447.121,311.626,615.635,66.055,147.871,66.055,362.072,311.636,372.792,23.272,18.915,23.272 +42,1.363,326.005,613.152,220.116,454.003,323.336,608.929,57.701,157.703,57.701,362.227,311.449,372.218,23.912,18.691,23.912 +43,1.397,336.806,603.468,209.562,461.556,333.924,600.094,49.497,167.593,49.497,363.348,310.417,372.223,24.633,18.439,24.633 +44,1.430,346.225,593.586,201.022,470.059,342.674,590.449,41.462,177.709,41.462,362.257,308.593,371.733,25.591,19.385,25.591 +45,1.463,354.115,582.577,193.797,479.456,349.766,579.677,33.690,6.650,33.690,360.278,308.043,370.733,26.348,21.335,26.348 +46,1.496,364.824,576.814,188.520,489.434,353.709,571.337,26.234,17.328,26.234,343.971,307.402,368.754,20.002,20.956,20.002 +47,1.529,373.435,564.880,184.651,501.650,358.499,559.356,20.298,28.198,20.298,334.292,306.944,366.141,23.807,20.557,23.807 +48,1.561,367.998,550.009,182.440,512.667,361.426,548.583,12.249,38.157,12.249,351.611,307.057,365.062,25.222,21.624,25.222 +49,1.594,365.461,538.952,180.519,524.176,360.533,538.453,5.782,47.902,5.782,351.166,308.092,361.072,24.470,21.166,24.470 +50,1.629,364.017,529.282,180.343,535.778,359.671,529.309,179.641,57.160,179.641,350.037,311.235,358.730,23.630,21.089,23.630 +51,1.660,364.046,521.925,180.328,546.087,359.595,522.401,173.891,67.001,173.891,352.589,313.192,361.539,20.416,21.675,20.416 +52,1.694,361.299,514.030,181.843,555.629,357.127,514.894,168.303,77.229,168.303,351.285,316.387,359.806,20.124,22.015,20.124 +53,1.726,357.936,506.619,181.679,564.960,353.115,508.066,163.301,86.611,163.301,351.043,319.099,361.110,19.731,19.801,19.731 +54,1.759,354.287,500.154,182.377,572.540,349.165,502.173,158.486,96.100,158.486,350.935,321.444,361.946,19.761,21.238,19.761 +55,1.790,350.955,494.297,183.929,578.778,345.517,496.942,154.052,104.871,154.052,350.119,324.014,362.213,19.465,20.040,19.465 +56,1.822,346.788,489.544,185.994,584.151,341.885,492.382,149.931,113.540,149.931,350.452,324.840,361.784,20.041,19.933,20.041 +57,1.853,343.868,484.809,188.389,588.374,338.731,488.241,146.250,122.183,146.250,348.914,324.986,361.271,19.679,19.970,19.679 +58,1.884,341.016,480.698,190.946,591.454,335.781,484.636,143.043,130.576,143.043,346.811,324.639,359.912,19.368,21.922,19.368 +59,1.913,352.213,466.156,193.733,594.176,333.452,481.790,140.194,137.062,140.194,309.721,323.575,358.565,18.949,19.790,18.949 +60,1.944,358.268,453.853,197.380,597.465,330.729,478.665,137.981,144.917,137.981,283.041,322.368,357.179,18.088,20.078,18.088 +61,1.974,358.268,453.853,197.380,597.465,330.729,478.665,137.981,144.917,137.981,283.041,322.368,357.179,18.088,20.078,18.088 +62,2.003,340.492,464.511,200.491,599.438,328.717,476.198,135.216,152.928,135.216,322.470,320.715,355.651,19.126,20.104,19.126 +63,2.034,334.637,465.956,203.804,601.403,326.982,474.173,132.969,161.815,132.969,331.650,319.428,354.110,18.874,20.929,18.874 +64,2.066,329.866,465.898,207.592,603.627,324.672,471.929,130.732,171.619,130.732,336.470,318.632,352.388,19.239,22.852,19.239 +65,2.097,326.484,465.291,211.499,606.027,322.618,470.105,128.768,2.622,128.768,338.763,317.675,351.112,19.565,24.791,19.565 +66,2.128,324.150,464.382,214.601,608.771,320.642,469.022,127.093,12.711,127.093,339.219,319.125,350.853,19.299,26.133,19.299 +67,2.160,321.669,463.257,217.060,612.026,318.197,468.131,125.461,23.199,125.461,339.786,320.256,351.755,19.268,26.261,19.268 +68,2.193,319.733,462.481,219.423,614.615,316.313,467.538,124.077,33.690,124.077,340.010,321.449,352.220,19.051,26.626,19.051 +69,2.224,317.677,462.170,221.224,617.233,314.352,467.300,122.949,44.029,122.949,340.712,323.185,352.938,19.378,25.380,19.378 +70,2.255,316.413,461.890,223.684,617.805,313.641,466.344,121.891,54.638,121.891,341.755,325.729,352.246,19.151,21.335,19.151 +71,2.285,315.087,461.545,224.208,619.474,312.175,466.376,121.082,65.082,121.082,341.784,327.624,353.064,19.266,21.616,19.266 +72,2.316,314.324,461.909,223.537,621.490,311.224,467.124,120.735,74.414,120.735,342.862,330.108,354.996,18.956,21.394,18.956 +73,2.348,313.280,461.925,222.525,621.539,310.331,467.020,120.069,85.282,120.069,343.665,330.353,355.438,19.085,19.555,19.085 +74,2.380,312.823,462.185,221.378,621.489,309.995,467.134,119.745,95.231,119.745,344.568,330.821,355.969,19.473,19.552,19.473 +75,2.412,313.442,460.548,220.769,620.846,309.809,466.948,119.583,105.255,119.583,340.869,330.651,355.588,19.440,20.523,19.440 +76,2.446,314.939,458.758,219.702,619.549,310.342,466.838,119.638,114.542,119.638,336.516,329.801,355.108,18.807,20.930,18.807 +77,2.478,339.109,417.313,219.428,618.598,310.416,466.500,120.256,125.124,120.256,240.562,328.031,354.450,18.067,20.115,18.067 +78,2.509,339.109,417.313,219.428,618.598,310.416,466.500,120.256,125.124,120.256,240.562,328.031,354.450,18.067,20.115,18.067 +79,2.539,321.347,448.988,218.344,616.832,311.089,466.258,120.708,135.300,120.708,313.472,326.005,353.645,18.186,19.628,18.186 +80,2.570,318.819,454.980,218.111,614.877,312.269,465.961,120.816,145.125,120.816,326.683,324.405,352.255,19.647,19.913,19.647 +81,2.601,318.501,457.657,217.837,613.373,313.413,465.915,121.638,155.045,121.638,331.954,322.603,351.354,19.537,21.346,19.537 +82,2.633,319.145,459.514,217.647,612.149,314.845,466.229,122.634,165.353,122.634,334.654,321.331,350.601,19.015,23.022,19.015 +83,2.666,320.194,461.135,217.376,611.179,316.514,466.642,123.753,176.100,123.753,337.267,320.030,350.514,19.167,24.851,19.167 +84,2.702,321.626,462.348,216.388,610.067,318.118,467.332,125.134,6.009,125.134,338.360,319.655,350.550,19.234,25.700,19.234 +85,2.736,323.421,463.932,214.827,609.379,319.889,468.671,126.693,15.796,126.693,339.385,320.450,351.207,18.789,27.171,18.789 +86,2.769,325.744,466.195,213.292,608.899,322.265,470.544,128.660,25.907,128.660,341.083,320.662,352.223,19.209,26.240,19.209 +87,2.802,327.627,467.532,210.959,607.757,323.806,472.033,130.330,35.538,130.330,341.191,321.192,352.999,19.114,26.156,19.114 +88,2.833,330.386,469.895,208.500,606.500,326.308,474.303,132.774,45.000,132.774,342.071,321.026,354.083,18.900,25.456,18.900 +89,2.865,333.000,472.000,207.032,602.910,329.531,475.470,135.000,54.567,135.000,343.654,322.830,353.467,18.385,21.780,18.385 +90,2.898,335.477,474.780,203.100,601.200,331.503,478.402,137.654,63.435,137.654,344.483,324.230,355.237,18.805,21.466,18.805 +91,2.929,338.552,478.134,198.753,597.619,334.365,481.581,140.528,73.072,140.528,346.052,324.229,356.897,19.162,19.882,19.162 +92,2.961,341.335,481.733,194.443,593.508,337.069,484.866,143.700,82.208,143.700,347.943,324.408,358.528,19.128,19.742,19.128 +93,2.995,344.467,485.904,190.513,588.991,340.089,488.737,147.095,91.095,147.095,349.656,324.208,360.086,19.409,19.060,19.409 +94,3.030,347.939,490.590,186.542,582.683,343.204,493.220,150.945,99.964,150.945,349.954,324.051,360.788,19.426,19.485,19.426 +95,3.063,351.378,495.600,183.051,576.027,346.470,497.895,154.949,108.778,154.949,351.423,323.209,362.259,19.743,19.693,19.743 +96,3.096,354.116,501.644,179.898,568.447,349.505,503.373,159.444,117.300,159.444,353.464,322.111,363.314,19.546,19.378,19.546 +97,3.130,357.400,508.375,177.359,559.849,352.421,509.781,164.233,125.972,164.233,353.814,320.626,364.161,19.689,20.115,19.689 +98,3.163,359.536,516.031,175.843,550.772,355.105,516.863,169.364,134.119,169.364,355.864,318.334,364.882,19.961,20.341,19.961 +99,3.196,362.389,523.683,174.301,539.898,356.878,524.147,175.186,142.900,175.186,355.447,317.022,366.509,21.167,21.796,21.167 +100,3.229,361.717,531.656,174.972,529.334,357.128,531.549,1.332,150.495,1.332,355.137,314.918,364.317,23.552,21.899,23.552 +101,3.261,363.350,541.032,176.683,518.655,358.778,540.413,7.712,157.574,7.712,357.508,313.084,366.735,25.527,21.187,25.527 +102,3.293,363.034,552.583,179.688,507.180,358.537,551.417,14.534,164.564,14.534,359.163,311.371,368.455,25.275,20.983,25.275 +103,3.325,361.046,564.183,184.164,494.790,356.335,562.284,21.949,171.347,21.949,359.683,310.125,369.840,25.832,20.310,25.832 +104,3.358,355.348,577.030,190.606,484.120,351.927,575.006,30.606,177.138,30.606,362.288,307.816,370.240,25.905,18.477,25.905 +105,3.389,348.959,589.951,198.861,472.905,345.297,586.998,38.884,3.308,38.884,361.811,306.471,371.220,25.437,19.517,25.437 +106,3.420,340.461,600.347,208.759,462.233,337.221,596.867,47.045,8.326,47.045,362.641,305.647,372.150,25.187,21.816,25.187 +107,3.451,328.891,610.350,219.806,454.393,326.476,606.806,55.739,13.496,55.739,363.460,305.369,372.036,23.692,20.381,23.692 +108,3.481,316.401,618.656,232.831,447.036,314.429,614.533,64.440,18.970,64.440,363.482,305.161,372.622,22.985,20.569,22.985 +109,3.512,301.400,625.012,246.722,441.876,300.132,620.650,73.793,23.962,73.793,364.068,305.416,373.153,22.432,20.916,22.432 +110,3.543,301.400,625.012,246.722,441.876,300.132,620.650,73.793,23.962,73.793,364.068,305.416,373.153,22.432,20.916,22.432 +111,3.571,287.664,628.786,261.564,439.385,287.108,623.981,83.392,28.996,83.392,362.944,305.950,372.618,27.511,20.359,27.511 +112,3.602,267.169,628.567,277.418,437.622,267.281,623.302,91.219,34.114,91.219,361.174,307.024,371.707,25.250,23.262,25.250 +113,3.633,255.189,626.919,293.379,439.635,256.361,621.574,102.369,38.830,102.369,360.349,308.128,371.292,26.468,23.921,26.468 +114,3.664,238.162,619.953,308.868,444.612,240.064,615.159,111.642,43.452,111.642,357.485,309.294,367.800,20.110,23.918,20.110 +115,3.698,224.650,611.905,322.930,451.965,227.275,607.565,121.163,47.944,121.163,355.148,311.588,365.292,20.060,25.333,20.060 +116,3.730,212.958,602.169,335.869,461.097,216.557,597.947,130.451,53.569,130.451,352.000,313.209,363.095,19.643,24.310,19.643 +117,3.763,203.621,590.905,346.548,471.971,207.964,587.209,139.603,58.671,139.603,349.044,315.088,360.450,19.893,24.438,19.893 +118,3.796,196.631,579.150,355.300,484.100,201.655,576.058,148.393,63.435,148.393,346.297,317.074,358.096,19.785,24.597,19.785 +119,3.829,191.795,567.021,361.530,497.577,197.110,564.753,156.894,68.552,156.894,343.629,319.381,355.185,20.088,24.233,20.088 +120,3.862,188.880,554.549,365.992,510.654,194.525,553.052,165.138,73.120,165.138,341.532,321.358,353.211,19.800,25.342,19.800 +121,3.895,187.825,542.569,368.332,523.924,193.783,541.839,173.010,78.503,173.010,338.857,322.399,350.864,19.638,24.465,19.638 +122,3.928,188.000,529.500,369.300,536.968,194.650,529.500,0.000,83.946,0.000,336.000,324.423,349.300,23.000,24.951,23.000 +123,3.960,189.968,518.336,368.365,549.480,196.699,519.196,7.275,89.519,7.275,334.667,325.106,348.239,25.453,25.377,25.453 +124,3.992,192.549,509.688,366.033,560.699,199.484,511.374,13.671,94.485,13.671,332.704,326.429,346.978,25.185,25.432,25.185 +125,4.025,196.577,500.729,361.895,571.415,202.968,503.088,20.266,99.834,20.266,331.884,327.950,345.510,26.079,25.079,26.079 +126,4.056,201.294,491.977,357.705,580.855,207.724,495.251,26.980,104.931,26.980,330.557,328.649,344.989,25.941,25.766,25.941 +127,4.087,206.458,484.514,351.971,589.306,212.421,488.456,33.471,110.136,33.471,329.757,329.014,344.055,25.252,25.318,25.252 +128,4.118,211.613,478.185,345.782,597.339,217.382,482.891,39.214,115.201,39.214,328.788,330.259,343.678,26.039,25.016,26.039 +129,4.149,216.891,473.021,339.700,603.238,222.178,478.204,44.433,120.368,44.433,328.095,329.670,342.904,25.525,24.907,25.525 +130,4.180,222.229,468.518,333.633,608.949,227.151,474.259,49.399,125.362,49.399,327.999,329.333,343.123,24.839,25.754,24.839 +131,4.211,227.799,464.780,326.980,613.756,232.103,470.791,54.395,130.314,54.395,328.163,329.427,342.949,24.542,25.486,24.542 +132,4.243,232.921,461.755,320.522,618.022,236.820,468.281,59.139,135.250,59.139,327.747,328.829,342.951,23.125,26.123,23.125 +133,4.273,232.921,461.755,320.522,618.022,236.820,468.281,59.139,135.250,59.139,327.747,328.829,342.951,23.125,26.123,23.125 +134,4.302,238.660,458.931,313.969,621.160,241.974,465.594,63.559,140.136,63.559,327.820,329.059,342.702,23.217,25.908,23.217 +135,4.333,243.758,456.675,307.009,623.512,246.439,463.266,67.865,145.342,67.865,328.285,328.556,342.516,22.781,26.728,22.781 +136,4.366,248.950,454.715,300.935,626.028,251.246,461.773,71.980,149.833,71.980,328.295,328.090,343.139,21.803,26.515,21.803 +137,4.397,253.559,453.235,294.266,627.506,255.332,460.328,75.964,154.654,75.964,328.636,327.486,343.258,19.888,26.732,19.888 +138,4.430,259.082,452.133,288.070,628.874,260.346,459.294,79.992,159.109,79.992,329.091,327.027,343.636,19.927,26.345,19.927 +139,4.462,264.152,451.219,281.772,629.530,264.923,458.496,83.951,163.578,83.951,329.078,326.806,343.714,19.434,25.969,19.434 +140,4.495,268.744,450.422,275.617,630.055,269.082,457.970,87.440,168.111,87.440,329.297,326.372,344.409,18.847,27.039,18.847 +141,4.529,274.351,450.091,269.453,630.153,274.175,457.575,91.348,172.342,91.348,330.309,325.849,345.282,18.865,27.059,18.865 +142,4.562,280.369,450.630,263.026,629.411,279.707,457.581,95.440,176.367,95.440,331.310,324.870,345.275,18.867,26.867,18.867 +143,4.594,285.442,450.816,257.000,628.500,284.333,457.642,99.230,0.000,99.230,332.230,324.000,346.061,18.927,27.000,18.927 +144,4.628,291.295,451.916,250.719,627.214,289.775,458.471,103.055,4.497,103.055,332.948,324.201,346.407,19.088,26.704,19.088 +145,4.660,296.976,452.954,243.887,625.250,295.011,459.338,107.103,8.569,107.103,333.861,324.623,347.220,19.042,27.268,19.042 +146,4.694,302.579,454.612,237.445,622.757,300.289,460.517,111.194,12.155,111.194,335.308,324.151,347.974,19.066,27.493,19.066 +147,4.725,307.954,456.653,231.073,620.248,305.309,462.282,115.165,16.133,115.165,336.640,324.189,349.080,19.299,27.064,19.299 +148,4.757,313.973,459.620,224.992,617.021,311.055,464.760,119.578,20.445,119.578,337.979,322.797,349.800,19.415,26.857,19.415 +149,4.788,320.141,462.460,218.653,612.776,316.795,467.367,124.287,24.094,124.287,338.979,322.273,350.857,19.153,26.547,19.153 +150,4.818,326.353,466.412,212.423,608.177,322.662,470.954,129.094,27.181,129.094,340.326,321.158,352.032,19.209,26.134,19.209 +151,4.850,332.081,470.579,206.058,602.540,328.028,474.769,134.043,30.160,134.043,341.615,320.671,353.275,18.443,25.740,18.443 +152,4.882,338.016,475.836,200.401,596.157,333.730,479.534,139.205,33.864,139.205,342.946,319.243,354.267,18.875,25.730,18.875 +153,4.913,343.103,481.736,195.168,589.121,338.968,484.701,144.364,37.216,144.364,345.243,317.605,355.420,19.276,25.675,19.276 +154,4.944,348.722,488.492,191.597,579.120,345.097,490.578,150.076,40.333,150.076,346.046,316.510,354.411,19.410,21.761,19.410 +155,4.975,348.722,488.492,191.597,579.120,345.097,490.578,150.076,40.333,150.076,346.046,316.510,354.411,19.410,21.761,19.410 +156,5.004,353.639,496.438,187.443,570.431,349.986,498.062,156.038,43.561,156.038,347.858,315.519,355.852,19.799,22.109,19.799 +157,5.037,358.188,505.175,183.764,560.861,354.080,506.475,162.440,46.618,162.440,348.957,313.543,357.575,19.515,21.812,19.515 +158,5.068,361.810,515.101,181.637,550.460,357.659,515.905,169.046,49.715,169.046,350.305,313.692,358.761,19.889,22.202,19.889 +159,5.100,364.344,525.563,180.796,538.724,360.101,525.851,176.117,52.275,176.117,351.025,312.592,359.530,20.527,21.296,20.527 +160,5.131,365.221,535.112,180.638,527.007,360.290,534.791,3.731,55.074,3.731,349.670,311.553,359.554,24.925,21.211,24.925 +161,5.163,366.840,547.813,182.644,514.449,361.814,546.800,11.395,57.393,11.395,353.808,309.923,364.061,25.700,21.698,25.700 +162,5.195,364.332,561.060,185.935,502.098,359.298,559.282,19.458,60.068,19.458,354.344,308.465,365.021,25.684,20.589,25.684 +163,5.228,360.048,574.462,191.211,489.874,355.228,571.916,27.834,62.650,27.834,355.794,307.660,366.696,26.041,19.847,26.041 +164,5.261,353.640,588.480,198.839,478.151,348.665,584.749,36.870,65.225,36.870,355.200,307.030,367.638,25.600,19.835,25.600 +165,5.294,342.901,602.594,208.434,467.322,338.276,597.728,46.454,67.736,46.454,354.523,306.187,367.949,23.998,20.074,23.998 +166,5.326,331.769,613.846,219.088,458.241,327.565,607.731,55.491,70.017,55.491,354.441,306.202,369.283,23.794,19.650,23.794 +167,5.363,319.520,626.943,231.661,450.328,314.294,615.967,64.537,72.728,64.537,345.839,305.257,370.151,22.314,19.010,22.314 +168,5.394,315.387,679.604,245.902,444.763,299.012,622.293,74.055,75.285,74.055,251.370,305.596,370.579,22.939,18.435,22.939 +169,5.429,289.040,649.910,260.998,441.450,286.598,624.922,84.419,77.586,84.419,319.971,305.436,370.184,28.451,18.169,28.451 +170,5.460,269.964,637.536,276.808,440.852,270.788,625.288,93.851,79.634,93.851,344.298,306.428,368.849,28.263,19.134,28.263 +171,5.493,251.961,630.210,292.836,442.600,253.867,622.397,103.711,81.968,103.711,351.737,307.166,367.821,25.733,19.688,25.733 +172,5.525,234.052,621.379,308.699,447.333,236.813,614.937,113.199,84.401,113.199,350.719,308.462,364.738,20.352,20.724,20.352 +173,5.556,221.375,611.376,323.440,454.779,224.427,606.698,123.125,86.795,123.125,351.503,310.466,362.673,19.754,22.293,19.754 +174,5.586,209.803,600.634,335.758,463.944,213.743,596.382,132.822,89.012,132.822,348.559,312.040,360.152,20.268,22.824,20.268 +175,5.617,200.448,588.852,346.455,475.528,205.156,585.172,141.984,91.685,141.984,345.747,313.364,357.698,19.727,22.696,19.727 +176,5.648,194.610,575.508,354.291,487.660,198.966,573.100,151.064,93.991,151.064,344.593,316.046,354.547,19.581,22.295,19.581 +177,5.680,190.439,562.543,362.049,500.949,195.539,560.660,159.731,96.419,159.731,342.896,317.932,353.770,19.641,25.526,19.641 +178,5.712,187.967,550.225,365.986,514.731,193.710,549.018,168.134,98.842,168.134,339.554,320.150,351.290,20.007,25.801,20.007 +179,5.746,187.561,537.846,368.160,528.533,193.801,537.396,175.872,101.592,175.872,336.578,321.837,349.090,20.298,26.148,20.298 +180,5.779,188.471,524.539,368.138,541.781,195.149,524.900,3.094,104.281,3.094,333.918,323.538,347.295,24.829,26.025,24.829 +181,5.812,190.868,514.013,366.477,554.243,197.548,515.250,10.491,106.699,10.491,332.823,325.086,346.410,24.983,26.149,24.983 +182,5.846,194.408,504.208,363.091,565.882,201.013,506.294,17.526,109.290,17.526,331.144,326.103,344.998,25.847,25.862,25.847 +183,5.879,198.829,494.877,359.168,576.482,205.544,497.929,24.444,112.433,24.444,329.966,327.229,344.719,25.904,26.085,25.904 +184,5.910,204.840,486.135,353.436,586.672,211.042,489.996,31.903,115.067,31.903,329.340,329.247,343.952,26.396,25.348,26.396 +185,5.943,210.456,479.567,347.195,595.338,216.201,484.047,37.942,117.979,37.942,328.900,329.706,343.470,26.132,25.334,26.132 +186,5.973,210.456,479.567,347.195,595.338,216.201,484.047,37.942,117.979,37.942,328.900,329.706,343.470,26.132,25.334,26.132 +187,6.002,215.910,473.935,340.824,602.294,221.295,479.087,43.727,120.964,43.727,328.174,329.277,343.079,24.915,25.382,24.915 +188,6.034,221.833,469.122,333.885,608.923,226.826,474.903,49.185,123.690,49.185,327.532,329.492,342.810,24.150,25.239,24.150 +189,6.065,228.372,464.906,326.480,614.360,232.563,470.828,54.713,126.870,54.713,328.317,329.600,342.827,24.576,25.200,24.576 +190,6.097,233.903,461.444,319.039,618.870,237.620,467.845,59.859,129.936,59.859,328.173,329.563,342.977,22.931,24.964,22.931 +191,6.129,240.139,458.311,311.383,622.760,243.365,465.146,64.733,133.063,64.733,328.017,329.262,343.135,22.948,25.018,22.948 +192,6.161,246.080,455.985,304.057,625.580,248.724,463.103,69.624,136.123,69.624,327.965,328.977,343.152,22.284,24.758,22.284 +193,6.194,251.825,454.003,296.216,627.664,253.832,461.144,74.300,139.764,74.300,328.716,328.785,343.551,20.997,25.016,20.997 +194,6.225,257.691,452.469,288.742,629.158,259.144,459.828,78.835,143.036,78.835,328.711,328.212,343.713,20.357,24.440,20.357 +195,6.256,263.437,451.158,280.928,630.128,264.324,458.789,83.367,146.735,83.367,328.854,327.574,344.218,19.450,24.897,19.450 +196,6.286,268.866,450.419,273.674,630.319,269.200,458.100,87.510,149.300,87.510,329.124,327.040,344.501,18.721,24.882,18.721 +197,6.317,275.122,450.098,266.300,630.100,274.888,457.573,91.790,153.435,91.790,330.464,326.019,345.422,18.866,25.491,18.866 +198,6.348,281.875,450.393,259.155,629.664,280.997,457.939,96.639,157.557,96.639,331.003,325.481,346.198,18.846,24.533,18.846 +199,6.380,287.778,450.618,251.933,627.773,286.392,457.967,100.680,161.222,100.680,331.546,324.497,346.502,19.059,24.446,19.059 +200,6.411,294.229,451.741,244.688,625.623,292.312,458.803,105.189,165.303,105.189,332.306,323.611,346.940,19.013,25.022,19.013 +201,6.443,294.229,451.741,244.688,625.623,292.312,458.803,105.189,165.303,105.189,332.306,323.611,346.940,19.013,25.022,19.013 +202,6.473,301.372,453.726,237.618,622.832,299.026,460.177,109.983,169.992,109.983,333.968,322.893,347.697,19.138,25.025,19.138 +203,6.504,307.003,455.592,230.746,619.526,304.246,461.660,114.444,174.144,114.444,334.932,321.799,348.261,19.366,24.053,19.366 +204,6.535,314.048,458.428,224.006,615.821,310.768,464.279,119.275,178.919,119.275,335.815,320.264,349.229,19.349,24.166,19.349 +205,6.567,320.556,462.084,217.053,611.160,316.952,467.370,124.287,3.576,124.287,337.364,319.252,350.160,19.416,24.639,19.416 +206,6.597,327.182,465.886,210.496,605.523,323.200,470.722,129.472,8.664,129.472,338.877,319.389,351.407,18.935,25.251,18.935 +207,6.629,333.500,471.500,204.200,599.281,329.480,475.520,135.000,13.191,135.000,340.825,318.190,352.197,18.385,25.527,18.385 +208,6.662,339.452,476.955,198.186,592.447,335.214,480.472,140.315,18.616,140.315,342.897,317.503,353.911,19.108,25.248,19.108 +209,6.697,345.000,483.479,193.139,584.579,340.877,486.247,146.125,24.201,146.125,345.005,316.073,354.938,19.096,25.314,19.096 +210,6.729,350.479,491.241,187.950,575.800,346.091,493.563,152.117,29.211,152.117,346.550,315.775,356.481,19.759,25.209,19.759 +211,6.763,355.630,499.881,185.095,564.962,351.718,501.415,158.587,34.592,158.587,348.239,314.070,356.643,19.623,22.653,19.623 +212,6.795,359.880,509.446,182.214,554.970,355.850,510.504,165.285,40.179,165.285,350.137,312.692,358.470,19.754,22.496,19.754 +213,6.829,363.361,520.135,180.717,543.842,358.903,520.746,172.200,45.530,172.200,350.345,310.518,359.344,20.480,21.252,20.480 +214,6.863,364.500,531.000,180.537,532.671,359.768,531.000,0.000,51.340,0.000,349.000,311.254,358.463,20.000,21.240,20.000 +215,6.895,365.915,541.389,181.452,520.342,361.149,540.753,7.595,58.039,7.595,352.018,310.154,361.635,25.375,21.623,25.375 +216,6.927,364.928,554.758,184.300,507.600,360.426,553.507,15.524,63.435,15.524,354.628,308.130,363.974,25.373,22.361,25.373 +217,6.958,362.124,568.222,187.597,495.595,356.870,565.887,23.962,69.734,23.962,354.965,307.725,366.464,25.891,20.537,25.891 +218,6.990,355.693,582.723,193.330,483.757,350.874,579.545,33.408,76.569,33.408,356.963,306.806,368.508,25.807,20.469,25.807 +219,7.020,346.723,595.899,202.485,472.552,342.724,592.248,42.397,83.587,42.397,357.716,306.007,368.545,25.076,18.604,25.076 +220,7.052,337.144,606.789,212.519,462.033,333.405,602.181,50.942,90.739,50.942,358.127,306.104,369.995,24.702,18.908,24.702 +221,7.083,323.627,616.427,224.178,453.237,320.829,611.547,60.164,98.036,60.164,359.574,305.884,370.824,22.988,19.105,22.988 +222,7.114,308.973,623.822,237.069,446.294,306.924,618.373,69.394,105.376,69.394,359.664,306.810,371.308,22.120,19.525,22.120 +223,7.146,290.702,629.820,251.503,441.431,289.342,623.520,77.821,113.273,77.821,359.056,307.653,371.946,26.259,19.064,26.259 +224,7.178,279.071,630.570,266.673,438.796,278.879,623.911,88.353,121.938,88.353,357.456,308.676,370.779,26.219,19.221,26.219 +225,7.211,257.836,628.985,282.164,438.566,258.540,622.613,96.304,130.462,96.304,358.234,310.219,371.055,26.831,18.976,26.831 +226,7.243,243.481,624.770,298.113,441.133,245.394,618.164,106.151,139.648,106.151,355.663,311.937,369.418,23.257,19.384,23.257 +227,7.274,243.481,624.770,298.113,441.133,245.394,618.164,106.151,139.648,106.151,355.663,311.937,369.418,23.257,19.384,23.257 +228,7.302,230.870,617.196,313.158,445.933,233.784,611.320,116.378,148.878,116.378,353.748,313.853,366.865,19.840,18.817,19.840 +229,7.335,218.746,608.251,327.080,452.980,222.509,602.968,125.463,158.621,125.463,352.695,315.489,365.666,19.849,18.927,19.849 +230,7.367,208.859,597.921,339.285,461.454,213.519,593.121,134.155,168.408,134.155,350.770,317.718,364.150,19.434,19.793,19.434 +231,7.398,200.982,587.321,349.540,472.183,206.531,583.089,142.669,178.625,142.669,347.981,319.220,361.938,19.585,19.874,19.585 +232,7.431,194.901,575.928,358.595,483.419,201.571,572.199,150.791,9.284,150.791,345.480,321.559,360.764,19.306,21.778,19.306 +233,7.463,190.882,564.703,364.983,496.273,198.078,561.855,158.405,20.144,158.405,343.176,323.130,358.653,19.739,22.081,19.739 +234,7.496,189.015,553.581,368.266,510.318,195.688,551.896,165.825,31.608,165.825,341.247,325.727,355.011,19.636,21.095,19.636 +235,7.530,187.676,542.946,371.139,522.454,195.221,541.988,172.763,42.064,172.763,338.740,326.526,353.953,19.589,21.457,19.589 +236,7.562,187.944,530.455,372.193,534.466,196.032,530.373,179.421,53.531,179.421,336.044,327.405,352.220,23.070,23.041,23.070 +237,7.594,189.259,522.458,371.146,545.930,197.271,523.140,4.865,64.359,4.865,334.281,327.505,350.363,24.274,23.764,24.274 +238,7.626,191.606,513.382,368.731,556.457,199.027,514.825,11.004,75.530,11.004,333.940,328.152,349.060,25.058,24.551,25.058 +239,7.657,194.347,505.968,364.593,565.541,201.075,507.968,16.557,87.397,16.557,332.249,327.707,346.288,25.181,22.749,25.181 +240,7.689,197.705,498.302,361.312,573.922,204.196,500.939,22.109,98.531,22.109,332.051,328.376,346.063,25.449,24.822,25.449 +241,7.721,201.438,491.725,357.219,580.898,207.675,494.927,27.181,109.983,27.181,330.582,328.073,344.603,25.942,25.631,25.942 +242,7.751,205.275,485.224,352.612,587.320,211.482,489.194,32.603,122.005,32.603,328.790,328.705,343.526,26.380,26.394,26.380 +243,7.782,209.060,480.420,348.850,592.240,214.989,484.867,36.870,133.625,36.870,328.200,327.652,343.024,26.200,26.783,26.200 +244,7.815,213.072,476.263,345.482,596.910,218.860,481.279,40.914,145.159,40.914,327.516,327.757,342.834,25.895,27.294,25.895 +245,7.847,217.143,472.843,341.988,601.320,222.488,478.123,44.648,156.930,44.648,328.161,328.006,343.187,25.499,27.260,25.499 +246,7.880,220.613,469.847,338.615,605.077,225.832,475.673,48.145,168.690,48.145,327.634,328.691,343.278,24.362,27.064,24.362 +247,7.912,224.497,467.606,335.501,608.186,229.063,473.361,51.572,179.776,51.572,328.855,329.021,343.549,24.317,27.648,24.317 +248,7.943,228.358,465.811,331.452,611.627,232.222,471.251,54.620,11.777,54.620,330.467,332.691,343.813,23.774,27.184,23.774 +249,7.974,228.358,465.811,331.452,611.627,232.222,471.251,54.620,11.777,54.620,330.467,332.691,343.813,23.774,27.184,23.774 +250,8.002,232.385,464.208,328.169,615.980,236.087,470.036,57.572,24.061,57.572,331.322,333.752,345.130,24.379,24.535,24.379 +251,8.035,235.623,462.715,324.846,619.415,239.170,468.923,60.255,35.565,60.255,332.041,333.864,346.341,23.939,21.695,23.939 +252,8.067,237.203,459.153,320.797,622.689,241.815,468.099,62.728,47.133,62.728,327.065,334.888,347.194,23.010,20.462,23.010 +253,8.099,237.065,454.694,315.426,625.352,243.334,467.363,63.672,58.462,63.672,318.877,337.520,347.148,20.808,19.033,20.808 +254,8.131,223.691,417.078,311.041,628.305,244.812,467.240,67.166,70.145,67.166,239.431,336.535,348.287,17.802,18.889,17.802 +255,8.163,242.399,450.149,306.703,630.244,248.381,465.977,69.298,82.278,69.298,314.713,337.555,348.555,20.503,20.171,20.503 +256,8.196,247.405,453.664,299.816,630.442,250.921,464.018,71.241,92.810,71.241,324.745,335.774,346.614,21.600,22.592,21.600 +257,8.229,250.076,453.561,296.031,630.255,252.840,462.613,73.020,104.081,73.020,326.968,334.215,345.896,21.516,22.847,21.516 +258,8.262,252.341,453.091,292.900,629.200,254.563,461.253,74.774,116.565,74.774,327.322,331.385,344.240,21.211,22.361,21.211 +259,8.295,254.537,453.279,291.627,629.104,256.308,460.583,76.373,129.245,76.373,329.163,329.782,344.195,20.939,23.375,20.939 +260,8.327,256.604,452.809,289.610,628.759,258.125,459.961,78.000,141.189,78.000,328.686,328.286,343.310,20.617,24.884,20.617 +261,8.359,257.997,452.348,288.168,628.792,259.325,459.478,79.445,153.004,79.445,328.959,326.944,343.464,19.210,26.109,19.210 +262,8.390,260.330,451.971,287.131,628.984,261.476,459.188,80.977,164.839,80.977,328.820,326.348,343.435,20.117,26.988,20.117 +263,8.422,262.128,451.684,286.419,628.728,263.067,458.682,82.360,176.359,82.360,329.161,325.868,343.282,19.774,28.433,19.774 +264,8.453,263.975,452.335,285.016,629.300,264.665,458.577,83.689,8.347,83.689,331.289,327.708,343.850,19.407,29.147,19.407 +265,8.484,265.668,452.795,282.925,631.476,266.236,459.214,84.943,19.864,84.943,333.237,329.430,346.126,19.049,27.742,19.049 +266,8.514,267.363,453.607,281.309,632.814,267.768,459.802,86.260,31.318,86.260,334.639,330.649,347.055,18.816,26.710,18.816 +267,8.545,268.923,453.136,279.247,633.833,269.223,459.912,87.469,42.117,87.469,334.822,331.503,348.388,18.634,24.662,18.634 +268,8.576,270.724,454.038,277.260,634.303,270.854,460.126,88.781,52.853,88.781,336.371,333.209,348.549,18.677,22.464,18.677 +269,8.606,270.724,454.038,277.260,634.303,270.854,460.126,88.781,52.853,88.781,336.371,333.209,348.549,18.677,22.464,18.677 +270,8.635,272.000,453.500,274.251,635.127,272.000,460.563,90.000,63.065,90.000,335.000,334.102,349.127,18.000,21.816,18.000 +271,8.667,274.687,452.409,270.897,636.374,274.460,460.660,91.574,72.449,91.574,334.984,336.514,351.492,18.663,20.457,18.663 +272,8.698,276.873,451.829,267.437,635.954,276.402,460.460,93.122,80.981,93.122,334.158,335.780,351.444,18.536,22.669,18.536 +273,8.730,279.393,448.591,263.431,635.500,278.431,460.608,94.574,89.606,94.574,326.955,335.109,351.064,18.182,23.109,18.182 +274,8.764,290.396,377.135,259.113,635.261,280.580,460.574,96.710,97.043,96.710,183.967,334.890,351.997,17.877,23.072,17.877 +275,8.796,288.987,420.802,253.794,633.824,282.969,460.347,98.653,104.036,98.653,271.784,333.972,351.783,17.967,20.373,17.967 +276,8.830,289.312,438.613,251.000,632.000,285.324,460.153,100.491,112.649,100.491,306.638,331.693,350.449,17.881,20.622,17.881 +277,8.864,291.402,444.745,247.480,630.297,288.075,459.941,102.348,121.729,102.348,319.081,330.309,350.193,18.648,20.244,18.648 +278,8.897,292.792,448.407,244.222,628.091,290.131,459.529,103.457,131.760,103.457,326.365,327.680,349.236,19.875,20.007,19.875 +279,8.929,294.766,450.892,242.286,626.642,292.372,459.657,105.279,141.927,105.279,330.392,326.096,348.563,19.208,21.570,19.208 +280,8.962,297.563,451.758,240.369,625.197,295.107,459.694,107.199,153.083,107.199,331.962,324.251,348.577,19.037,22.497,19.037 +281,8.999,299.693,452.935,238.615,623.683,297.324,459.860,108.886,164.256,108.886,333.373,322.816,348.013,18.948,24.758,18.948 +282,9.031,302.136,453.997,237.039,622.601,299.722,460.377,110.726,176.285,110.726,334.175,321.142,347.818,19.161,26.347,19.161 +283,9.063,304.884,454.998,234.611,621.181,302.434,460.853,112.714,8.256,112.714,335.468,322.602,348.163,19.049,27.558,19.049 +284,9.097,307.278,456.705,232.203,621.174,304.656,462.382,114.791,20.136,114.791,336.573,322.786,349.079,19.076,26.664,19.076 +285,9.129,310.681,458.536,229.341,620.763,307.889,463.965,117.216,31.122,117.216,338.514,323.802,350.724,19.488,26.506,19.488 +286,9.161,313.643,460.308,225.917,620.088,310.583,465.694,119.604,43.363,119.604,339.740,324.086,352.129,19.405,26.415,19.405 +287,9.194,316.924,462.423,223.184,617.674,314.074,466.929,122.307,55.088,122.307,341.309,325.895,351.972,19.191,21.159,19.191 +288,9.226,319.589,464.326,219.415,616.267,316.652,468.554,124.783,67.080,124.783,343.286,328.253,353.582,19.076,23.156,19.076 +289,9.256,323.670,467.175,212.483,613.503,320.093,471.743,128.066,78.311,128.066,344.308,327.917,355.913,19.199,20.328,19.199 +290,9.286,327.121,469.375,207.248,610.487,323.002,474.138,130.855,89.669,130.855,345.106,327.052,357.700,19.277,18.537,19.277 +291,9.317,330.545,472.578,201.688,605.438,326.427,476.789,134.361,101.155,134.361,346.603,327.704,358.384,18.925,19.567,18.925 +292,9.349,334.481,476.211,196.823,599.926,330.373,479.921,137.911,112.590,137.911,348.022,326.462,359.092,18.912,19.618,18.912 +293,9.380,339.374,479.683,192.154,593.269,334.502,483.540,141.633,123.690,141.633,347.006,324.777,359.434,19.438,19.415,19.438 +294,9.412,344.555,483.639,188.000,586.000,338.742,487.591,145.793,135.000,145.793,345.919,322.441,359.978,19.319,19.799,19.319 +295,9.444,353.215,486.877,185.086,578.084,343.376,492.499,150.255,145.561,150.255,337.126,321.220,359.792,18.357,20.359,18.357 +296,9.476,353.215,486.877,185.086,578.084,343.376,492.499,150.255,145.561,150.255,337.126,321.220,359.792,18.357,20.359,18.357 +297,9.504,419.582,464.411,182.323,570.461,347.394,497.890,155.120,157.249,155.120,201.422,317.473,360.568,18.407,19.783,18.407 +298,9.536,385.418,491.474,180.631,562.129,351.086,503.725,160.362,168.845,160.362,287.434,315.751,360.338,19.007,20.728,19.007 +299,9.568,372.682,506.574,179.500,553.000,354.937,511.158,165.515,0.000,165.515,323.997,313.000,360.652,19.558,20.000,19.558 +300,9.598,369.635,517.071,178.867,543.630,357.762,518.922,171.135,11.889,171.135,337.099,311.900,361.131,19.861,21.683,19.861 +301,9.629,367.294,526.770,179.465,533.610,359.441,527.111,177.510,21.982,177.510,344.457,309.947,360.178,21.110,22.289,21.110 +302,9.662,366.183,535.744,180.115,524.077,359.936,535.330,3.793,33.690,3.793,347.822,309.800,360.343,24.008,21.633,24.008 +303,9.695,367.388,546.410,182.294,514.190,361.621,545.340,10.505,44.640,10.505,352.273,307.625,364.002,25.603,21.239,25.603 +304,9.726,364.693,558.050,185.245,504.756,359.891,556.530,17.565,54.504,17.565,354.182,308.409,364.256,25.247,20.461,25.247 +305,9.757,361.566,569.859,188.493,494.274,356.481,567.488,24.996,65.313,24.996,355.163,307.254,366.383,25.916,20.553,25.916 +306,9.788,355.804,582.797,193.864,483.785,351.178,579.745,33.408,76.050,33.408,357.229,307.051,368.313,25.807,19.781,25.807 +307,9.819,347.093,595.069,201.371,473.385,343.193,591.570,41.894,86.496,41.894,358.496,307.465,368.976,25.134,19.026,25.134 +308,9.849,338.091,605.153,210.034,463.562,334.501,600.910,49.764,96.654,49.764,359.379,307.696,370.496,24.135,19.600,24.135 +309,9.881,326.763,614.713,221.192,454.980,323.676,609.759,58.069,107.074,58.069,359.450,308.054,371.124,22.927,19.173,22.927 +310,9.912,313.166,621.928,233.535,447.558,310.864,616.591,66.670,117.467,66.670,360.047,308.254,371.673,21.663,18.745,21.663 +311,9.944,296.846,627.476,246.661,442.042,295.393,622.039,75.043,127.508,75.043,361.695,308.874,372.951,23.961,19.199,23.961 +312,9.974,296.846,627.476,246.661,442.042,295.393,622.039,75.043,127.508,75.043,361.695,308.874,372.951,23.961,19.199,23.961 +313,10.004,280.292,630.443,261.305,438.895,279.567,624.376,83.184,137.998,83.184,360.454,309.655,372.675,26.928,18.908,26.928 +314,10.035,270.450,629.786,276.217,437.462,270.845,623.631,93.674,148.178,93.674,359.928,310.910,372.262,27.494,19.150,27.494 +315,10.068,254.721,627.217,291.573,438.966,256.062,621.155,102.472,158.654,102.472,358.698,311.966,371.117,25.490,19.110,25.490 +316,10.099,239.297,621.114,306.330,442.713,241.460,615.470,110.963,169.107,110.963,356.971,313.411,369.060,20.186,19.390,20.186 +317,10.131,226.917,613.670,320.000,448.500,229.869,608.459,119.533,0.000,119.533,355.230,314.000,367.207,19.866,19.000,19.866 +318,10.163,216.087,605.179,332.728,456.048,219.957,600.207,127.894,9.958,127.894,353.454,315.532,366.055,19.543,21.541,19.543 +319,10.196,207.326,595.359,343.456,465.733,211.838,591.021,136.123,20.911,136.123,350.907,316.972,363.425,18.991,21.666,18.991 +320,10.228,199.910,585.066,352.274,476.498,205.242,581.204,144.090,31.535,144.090,347.828,319.369,360.997,19.383,22.567,19.383 +321,10.259,194.635,574.321,359.359,488.154,200.259,571.295,151.711,42.479,151.711,346.229,320.538,359.002,19.794,23.947,19.794 +322,10.290,190.875,563.673,364.656,500.328,197.006,561.323,159.027,54.246,159.027,343.619,321.433,356.750,19.904,24.443,19.904 +323,10.321,188.670,553.188,367.515,512.512,194.980,551.631,166.133,64.323,166.133,340.766,322.527,353.765,19.681,25.339,19.681 +324,10.351,187.792,542.839,368.906,523.897,194.029,542.059,172.875,75.735,172.875,338.987,323.292,351.558,19.473,25.396,19.473 +325,10.383,187.988,532.974,368.660,534.544,194.278,532.900,179.321,86.987,179.321,336.119,323.552,348.700,18.580,25.438,18.580 +326,10.414,188.603,522.233,368.055,544.874,195.326,522.782,4.667,98.326,4.667,334.418,324.423,347.908,25.141,25.943,25.141 +327,10.447,190.768,514.276,366.548,553.706,197.387,515.480,10.305,110.556,10.305,333.085,324.906,346.540,24.955,26.334,24.955 +328,10.479,193.155,506.947,363.980,562.086,199.687,508.781,15.680,121.784,15.680,331.605,325.613,345.173,25.117,26.664,25.117 +329,10.511,196.239,499.686,361.540,569.411,202.739,502.162,20.854,133.124,20.854,330.764,325.697,344.676,26.121,27.105,26.121 +330,10.542,196.239,499.686,361.540,569.411,202.739,502.162,20.854,133.124,20.854,330.764,325.697,344.676,26.121,27.105,26.121 +331,10.570,200.200,492.100,359.065,575.976,206.821,495.411,26.565,144.182,26.565,329.596,326.567,344.402,25.938,26.713,25.938 +332,10.600,203.703,486.834,356.135,582.293,210.359,490.845,31.075,155.193,31.075,328.575,327.426,344.117,26.409,26.877,26.409 +333,10.632,207.399,482.435,352.937,586.226,213.260,486.577,35.248,167.098,35.248,328.801,328.504,343.155,25.709,28.504,25.709 +334,10.665,210.929,478.202,350.121,593.311,217.421,483.483,39.123,176.169,39.123,327.759,329.205,344.496,25.415,25.973,25.415 +335,10.697,215.174,474.772,346.715,597.707,220.917,480.089,42.790,6.009,42.790,328.781,331.013,344.433,25.987,26.381,25.987 +336,10.732,219.146,472.338,343.463,602.396,224.280,477.721,46.353,15.829,46.353,330.077,332.945,344.954,25.104,25.051,25.104 +337,10.765,222.970,469.376,339.319,607.493,228.118,475.431,49.624,25.346,49.624,329.388,334.526,345.284,25.420,22.784,25.420 +338,10.799,225.534,466.612,335.413,611.883,231.010,473.832,52.815,33.622,52.815,328.044,335.041,346.168,23.461,21.178,23.461 +339,10.832,228.964,463.524,330.917,616.173,234.569,471.823,55.963,40.937,55.963,327.067,334.819,347.095,23.603,20.643,23.603 +340,10.865,232.221,459.868,326.192,619.865,238.304,470.007,59.036,47.437,59.036,323.789,335.707,347.439,23.838,19.766,23.838 +341,10.897,233.506,457.625,321.026,623.097,240.033,469.191,60.562,53.344,60.562,321.123,336.602,347.683,22.393,19.664,22.393 +342,10.931,237.140,454.648,315.677,625.775,243.497,467.555,63.778,58.357,63.778,318.882,337.191,347.659,20.914,19.251,20.914 +343,10.964,238.671,446.922,310.348,628.315,246.881,466.142,66.869,63.060,66.869,306.336,337.215,348.136,20.169,19.130,20.169 +344,10.996,242.423,443.456,305.186,630.339,250.351,464.832,69.651,67.366,69.651,302.894,336.924,348.493,20.495,19.380,20.495 +345,11.029,243.647,432.553,300.500,632.000,253.506,463.949,72.567,71.565,72.567,283.008,336.783,348.823,20.077,19.290,20.077 +346,11.061,236.883,385.873,295.778,634.176,255.715,463.889,76.430,75.784,76.430,189.355,337.395,349.868,17.866,20.887,17.866 +347,11.092,243.013,380.267,289.489,635.404,258.918,462.976,79.114,78.865,79.114,181.747,337.515,350.196,17.827,22.165,17.827 +348,11.124,249.840,377.880,286.127,635.803,261.888,462.212,81.870,83.105,81.870,180.171,336.987,350.548,18.102,21.328,18.102 +349,11.154,257.574,387.243,281.466,635.643,264.985,461.346,84.289,86.775,84.289,201.197,335.820,350.143,17.811,21.192,17.811 +350,11.185,264.851,405.679,274.500,635.500,268.169,460.985,86.566,90.000,86.566,238.351,335.000,349.162,17.908,23.000,17.908 +351,11.215,270.424,421.909,273.806,636.318,271.150,461.117,88.939,95.485,88.939,272.009,336.007,350.439,17.923,25.212,17.923 +352,11.246,274.597,431.596,266.053,635.669,273.830,460.369,91.528,99.111,91.528,293.322,335.375,350.889,17.754,21.368,17.754 +353,11.278,278.251,436.237,262.008,634.875,276.744,460.048,93.621,104.253,93.621,303.102,334.954,350.818,17.914,20.678,17.914 +354,11.309,278.251,436.237,262.008,634.875,276.744,460.048,93.621,104.253,93.621,303.102,334.954,350.818,17.914,20.678,17.914 +355,11.337,281.277,441.228,258.815,633.493,279.425,459.748,95.711,110.556,95.711,312.641,332.514,349.867,18.110,20.131,18.110 +356,11.369,284.313,444.583,254.703,632.105,282.313,459.385,97.696,117.225,97.696,319.850,331.425,349.723,18.561,19.389,18.561 +357,11.401,287.132,446.789,251.586,630.713,284.997,459.317,99.671,124.743,99.671,323.728,329.640,349.145,18.978,19.986,18.978 +358,11.434,289.043,448.777,248.482,628.983,287.088,458.943,100.886,132.990,100.886,327.839,327.809,348.543,20.320,20.171,20.320 +359,11.465,291.411,450.283,246.104,627.766,289.367,459.185,102.926,141.757,102.926,329.707,326.551,347.974,19.110,21.565,19.110 +360,11.498,293.798,450.868,243.969,626.253,291.674,458.939,104.744,151.064,104.744,331.198,324.692,347.890,19.189,22.342,19.189 +361,11.530,296.432,452.024,241.761,624.829,294.295,459.187,106.614,160.366,106.614,332.544,323.490,347.494,19.034,24.300,19.034 +362,11.563,299.034,453.016,239.713,623.731,296.853,459.532,108.511,170.186,108.511,333.948,322.684,347.690,19.299,25.225,19.299 +363,11.596,302.114,454.057,237.475,622.907,299.739,460.332,110.726,0.591,110.726,334.757,321.138,348.177,19.161,26.298,19.161 +364,11.629,305.378,455.512,234.745,621.358,302.952,461.213,113.051,10.620,113.051,335.739,322.751,348.131,19.069,27.705,19.069 +365,11.661,307.753,456.915,231.908,621.069,305.167,462.431,115.121,20.674,115.121,337.284,322.924,349.467,19.273,26.744,19.273 +366,11.694,311.383,458.623,228.340,620.134,308.475,464.148,117.759,30.192,117.759,338.225,323.769,350.714,19.235,26.449,19.235 +367,11.725,314.510,460.339,224.719,618.826,311.411,465.652,120.256,40.764,120.256,339.681,324.093,351.982,19.219,26.379,19.219 +368,11.757,318.098,462.585,222.052,616.141,315.196,467.029,123.136,50.755,123.136,340.941,324.786,351.556,18.876,21.434,18.876 +369,11.788,321.830,465.146,217.424,614.199,318.625,469.536,126.135,60.642,126.135,342.151,325.969,353.022,19.152,21.354,19.152 +370,11.819,325.804,467.968,212.364,612.008,322.148,472.425,129.362,70.145,129.362,343.562,327.313,355.092,19.311,21.006,19.311 +371,11.850,329.046,471.158,206.496,608.178,325.340,475.174,132.709,80.838,132.709,345.753,327.000,356.682,18.935,20.031,18.935 +372,11.881,333.238,474.625,201.500,604.000,329.236,478.435,136.404,90.000,136.404,347.137,326.000,358.189,19.065,19.000,19.065 +373,11.912,337.136,478.186,195.632,598.024,332.766,481.857,139.970,100.305,139.970,348.028,326.645,359.443,19.020,19.677,19.020 +374,11.944,340.819,482.868,190.709,591.709,336.618,485.909,144.097,110.171,144.097,350.089,325.508,360.461,19.217,19.406,19.217 +375,11.974,340.819,482.868,190.709,591.709,336.618,485.909,144.097,110.171,144.097,350.089,325.508,360.461,19.217,19.406,19.217 +376,12.003,345.783,488.001,186.732,584.550,341.043,490.887,148.671,119.567,148.671,349.924,324.228,361.024,19.609,18.843,19.609 +377,12.035,350.107,493.244,182.957,576.465,344.839,495.923,153.039,129.151,153.039,349.787,322.183,361.607,19.624,18.872,19.624 +378,12.067,354.286,499.730,179.277,566.906,348.664,501.997,158.044,139.399,158.044,350.617,320.081,362.742,19.836,20.608,19.836 +379,12.098,357.789,507.103,177.191,557.485,352.330,508.721,163.486,149.036,163.486,352.165,318.130,363.552,19.493,20.580,19.493 +380,12.131,360.795,515.328,176.086,547.466,355.358,516.372,169.126,158.199,169.126,352.765,315.868,363.837,19.719,20.241,19.719 +381,12.164,365.971,524.684,176.471,537.118,358.175,525.393,174.806,167.471,174.806,348.382,314.332,364.039,20.189,19.958,20.189 +382,12.197,367.141,534.973,177.955,526.258,358.524,534.800,1.146,176.496,1.146,344.171,312.761,361.408,20.416,19.942,20.416 +383,12.230,384.044,548.018,179.719,515.637,359.735,544.626,7.943,6.089,7.943,315.502,310.081,364.590,20.983,19.622,20.983 +384,12.262,433.376,575.467,182.566,504.478,358.530,555.697,14.797,15.642,14.797,211.592,307.648,366.419,21.106,19.722,21.106 +385,12.295,426.157,595.976,187.856,493.630,355.993,567.086,22.380,25.292,22.380,215.124,307.269,366.882,20.180,20.159,20.180 +386,12.326,389.097,599.273,193.470,483.843,352.502,576.679,31.691,34.287,31.691,282.164,306.230,368.179,23.684,19.341,23.684 +387,12.357,367.651,605.741,201.045,474.386,346.118,587.971,39.531,43.152,39.531,312.541,304.992,368.378,23.767,18.922,23.767 +388,12.388,353.502,615.911,210.052,465.402,337.738,598.639,47.616,52.090,47.616,322.205,304.866,368.974,23.421,18.831,23.421 +389,12.419,337.473,622.863,220.232,457.531,327.408,607.896,56.080,60.772,56.080,333.096,304.785,369.168,23.311,18.295,23.311 +390,12.450,322.372,630.322,231.558,450.665,315.251,615.433,64.440,69.467,64.440,336.496,305.245,369.504,22.279,18.498,22.279 +391,12.482,306.822,636.851,244.191,445.546,302.243,621.484,73.407,78.283,73.407,338.310,305.933,370.380,22.125,18.546,22.125 +392,12.515,286.416,640.660,257.473,442.110,283.870,625.106,80.703,86.900,80.703,338.192,306.796,369.714,26.968,18.498,26.968 +393,12.549,270.500,637.500,271.007,440.706,270.500,624.853,90.000,95.609,90.000,343.000,307.272,368.294,25.000,19.522,25.000 +394,12.580,252.729,638.135,284.975,440.747,255.037,622.731,98.522,104.207,98.522,337.670,308.998,368.823,26.454,19.634,26.454 +395,12.613,238.824,632.797,299.212,443.303,243.520,618.451,108.126,113.091,108.126,337.374,310.542,367.564,20.806,19.581,20.806 +396,12.644,225.856,625.904,312.215,447.748,233.017,612.149,117.504,121.633,117.504,333.774,312.493,364.789,19.829,19.160,19.829 +397,12.676,225.856,625.904,312.215,447.748,233.017,612.149,117.504,121.633,117.504,333.774,312.493,364.789,19.829,19.160,19.829 +398,12.705,213.093,616.121,324.695,454.088,221.861,604.001,125.882,130.236,125.882,333.554,314.691,363.472,19.773,19.613,19.773 +399,12.736,203.873,604.938,335.812,461.783,213.547,595.016,134.275,139.105,134.275,333.781,316.282,361.497,19.135,19.620,19.135 +400,12.768,197.433,592.120,345.655,470.661,206.557,585.069,142.306,147.742,142.306,336.979,318.839,360.041,18.991,19.991,18.991 +401,12.802,192.464,579.850,354.125,480.964,201.289,574.736,149.906,156.741,149.906,338.107,320.652,358.506,18.926,20.180,18.926 +402,12.833,188.144,568.254,361.294,491.763,197.968,564.150,157.323,165.530,157.323,335.921,322.842,357.215,18.904,20.115,18.904 +403,12.865,186.219,556.684,366.658,503.052,196.085,553.947,164.497,174.193,164.497,335.466,324.479,355.942,18.949,20.201,18.949 +404,12.897,184.683,546.475,370.384,514.964,195.398,544.798,171.107,3.366,171.107,333.299,325.966,354.990,19.202,20.083,19.202 +405,12.930,185.295,535.662,372.359,526.328,196.106,535.246,177.797,12.771,177.797,331.294,328.039,352.932,19.255,22.275,19.255 +406,12.962,186.289,524.794,372.747,537.855,196.959,525.387,3.180,22.080,3.180,331.045,329.645,352.418,23.963,21.951,23.963 +407,12.994,188.436,516.413,371.218,549.885,198.641,517.983,8.746,31.701,8.746,330.192,331.361,350.842,24.709,19.894,24.709 +408,13.026,191.324,508.706,369.415,559.900,201.154,511.164,14.036,40.972,14.036,329.848,331.797,350.115,25.466,20.366,25.466 +409,13.063,194.977,502.235,366.522,569.303,203.770,505.250,18.925,50.612,18.925,330.865,332.521,349.457,25.973,20.111,25.973 +410,13.095,198.368,496.133,363.005,577.650,206.947,499.918,23.806,60.054,23.806,329.559,332.547,348.312,25.887,20.966,25.887 +411,13.127,202.344,490.647,359.293,584.701,210.058,494.801,28.301,69.353,28.301,330.515,333.216,348.038,26.414,22.648,26.414 +412,13.157,206.610,484.284,354.170,591.063,213.743,488.999,33.471,79.144,33.471,329.757,332.785,346.858,25.804,22.050,25.804 +413,13.188,210.616,480.933,348.070,596.498,216.155,485.177,37.461,88.668,37.461,330.879,331.329,344.835,25.555,19.971,25.555 +414,13.219,214.178,477.046,343.880,600.840,219.464,481.643,41.009,98.130,41.009,330.189,331.775,344.200,25.886,21.779,25.886 +415,13.250,216.784,473.614,339.781,604.412,222.139,478.845,44.326,108.258,44.326,328.823,331.088,343.795,24.839,23.536,24.839 +416,13.280,220.155,470.626,335.880,607.374,225.243,476.138,47.291,117.979,47.291,327.948,330.064,342.950,25.153,25.031,25.153 +417,13.310,222.824,468.305,332.657,609.621,227.587,474.006,50.123,127.694,50.123,328.021,329.426,342.877,24.033,26.256,24.033 +418,13.341,222.824,468.305,332.657,609.621,227.587,474.006,50.123,127.694,50.123,328.021,329.426,342.877,24.033,26.256,24.033 +419,13.370,225.743,465.919,329.601,611.652,230.288,471.938,52.948,137.348,52.948,327.604,328.401,342.689,24.233,26.718,24.233 +420,13.401,228.556,463.878,326.903,613.652,232.967,470.233,55.231,146.902,55.231,327.293,328.125,342.764,24.433,26.839,24.433 +421,13.432,231.296,462.494,324.165,614.712,235.224,468.677,57.572,156.961,57.572,327.261,328.260,341.912,24.379,28.242,24.379 +422,13.465,233.430,461.422,322.523,617.081,237.355,468.105,59.574,165.899,59.574,327.682,328.396,343.182,23.008,27.718,23.008 +423,13.498,236.341,460.903,320.633,618.532,239.674,467.027,61.437,175.030,61.437,329.604,328.543,343.548,23.849,27.072,23.849 +424,13.532,238.529,460.231,318.795,619.864,241.613,466.298,63.056,4.102,63.056,330.128,329.592,343.738,23.370,28.600,23.370 +425,13.565,240.334,459.998,317.157,620.820,243.020,465.674,64.676,12.977,64.676,331.337,331.067,343.896,22.089,27.554,22.089 +426,13.596,242.612,460.058,314.712,623.433,244.995,465.433,66.095,22.187,66.095,333.635,332.983,345.394,22.421,26.077,22.421 +427,13.628,243.790,459.123,312.750,625.276,246.400,465.421,67.490,30.440,67.490,332.523,333.568,346.157,21.822,25.029,21.822 +428,13.660,245.728,458.301,311.604,626.132,248.262,464.802,68.703,38.351,68.703,332.683,333.742,346.638,22.361,22.432,22.361 +429,13.693,247.058,457.525,309.721,627.784,249.739,464.890,69.993,45.716,69.993,331.495,334.533,347.171,22.407,21.132,22.407 +430,13.724,248.043,456.175,307.250,629.035,250.936,464.565,70.974,52.341,70.974,329.935,335.218,347.686,22.004,21.211,22.004 +431,13.755,249.335,455.160,304.558,630.277,252.186,464.168,72.435,57.948,72.435,329.443,335.805,348.339,21.242,20.078,21.242 +432,13.786,249.471,454.248,301.819,631.572,252.566,464.237,72.784,62.965,72.784,327.915,336.326,348.830,20.584,19.801,20.584 +433,13.817,251.343,452.193,298.646,632.069,254.577,463.462,73.985,67.184,73.985,324.997,337.369,348.444,20.149,19.522,20.149 +434,13.848,252.145,446.747,295.712,632.927,256.377,462.935,75.347,70.887,75.347,315.362,337.395,348.826,19.784,19.580,19.784 +435,13.880,251.425,436.175,293.992,634.455,257.703,463.295,76.967,74.699,76.967,294.193,337.849,349.869,18.772,20.183,18.772 +436,13.912,248.824,412.596,291.319,634.824,259.463,462.848,78.046,77.905,78.046,246.959,337.272,349.691,19.293,20.115,19.293 +437,13.942,248.824,412.596,291.319,634.824,259.463,462.848,78.046,77.905,78.046,246.959,337.272,349.691,19.293,20.115,19.293 +438,13.970,245.590,379.267,289.222,635.201,260.098,462.690,80.134,81.066,80.134,180.551,336.824,349.900,17.777,21.366,17.777 +439,14.002,250.121,389.171,286.552,635.600,261.476,462.347,81.180,83.950,81.180,201.996,337.034,350.100,17.940,21.199,17.940 +440,14.033,257.458,421.900,284.735,635.489,262.853,461.977,82.333,87.248,82.333,268.882,335.910,349.760,17.973,21.264,17.973 +441,14.065,260.655,433.070,280.690,635.498,263.993,461.437,83.290,90.426,83.290,292.512,335.125,349.638,17.877,21.066,17.877 +442,14.098,262.610,438.836,280.549,635.459,264.887,461.218,84.193,95.194,84.193,304.868,334.892,349.863,17.908,22.181,17.908 +443,14.131,264.598,442.582,278.865,635.811,266.286,461.146,84.806,99.462,84.806,312.892,336.032,350.173,19.013,23.016,19.013 +444,14.163,265.656,446.161,276.397,634.711,266.831,460.559,85.333,104.676,85.333,319.814,334.964,348.706,18.896,20.522,18.896 +445,14.197,266.240,447.676,275.321,633.432,267.176,459.909,85.625,110.872,85.625,322.740,332.546,347.278,18.857,20.482,18.857 +446,14.229,267.007,449.595,274.784,632.621,267.733,459.454,85.790,117.878,85.790,326.662,331.524,346.434,19.567,20.683,19.567 +447,14.260,267.115,449.594,274.123,631.180,267.772,458.677,85.865,125.112,85.865,326.810,329.998,345.024,19.539,21.013,19.539 +448,14.291,266.723,450.693,275.160,631.138,267.313,458.797,85.840,133.995,85.840,328.659,328.320,344.911,18.823,22.004,18.823 +449,14.321,266.617,450.660,276.035,630.476,267.192,458.467,85.786,142.156,85.786,328.730,327.492,344.387,18.791,23.417,18.791 +450,14.353,266.397,450.662,277.080,629.906,266.973,458.150,85.601,150.471,85.601,329.028,326.431,344.050,18.791,24.679,18.791 +451,14.383,266.290,450.820,278.077,629.701,266.866,458.168,85.515,158.962,85.515,329.029,325.738,343.769,18.825,25.488,18.825 +452,14.415,265.928,451.131,279.530,629.857,266.524,458.282,85.236,167.328,85.236,329.774,325.391,344.125,18.934,25.852,18.934 +453,14.448,265.851,450.802,281.042,629.557,266.471,458.156,85.183,175.668,85.183,329.277,325.340,344.038,18.905,26.651,18.905 +454,14.480,265.535,451.397,282.253,629.794,266.165,458.482,84.920,4.289,84.920,329.899,326.707,344.126,19.014,27.573,19.014 +455,14.512,265.309,452.435,283.276,630.471,265.903,458.850,84.703,13.016,84.703,332.099,328.146,344.984,19.143,27.692,19.143 +456,14.543,265.309,452.435,283.276,630.471,265.903,458.850,84.703,13.016,84.703,332.099,328.146,344.984,19.143,27.692,19.143 +457,14.571,264.990,452.992,284.218,631.625,265.625,459.458,84.394,22.297,84.394,333.324,329.288,346.320,19.166,27.284,19.166 +458,14.602,264.629,453.746,284.574,632.544,265.297,460.167,84.068,30.964,84.068,333.982,331.164,346.892,19.286,26.754,19.286 +459,14.634,263.848,453.847,285.713,633.162,264.586,460.556,83.723,39.579,83.723,334.264,331.615,347.763,18.757,24.993,18.757 +460,14.665,263.694,453.888,286.831,633.254,264.483,460.619,83.313,48.094,83.313,334.570,333.001,348.126,19.446,22.156,19.446 +461,14.698,263.077,454.115,287.112,633.937,263.959,461.168,82.875,56.602,82.875,334.398,334.495,348.613,19.722,20.789,19.722 +462,14.731,261.853,452.855,287.167,634.655,263.039,461.699,82.360,65.087,82.360,331.410,335.172,349.256,18.916,20.030,18.916 +463,14.765,260.752,451.503,286.992,634.857,262.334,461.721,81.198,73.845,81.198,329.059,338.195,349.740,19.057,20.502,19.057 +464,14.798,248.315,378.302,285.293,635.883,261.322,462.414,81.209,81.604,81.209,179.964,336.991,350.189,17.952,22.202,17.952 +465,14.831,256.986,440.919,285.500,635.000,260.520,462.122,80.538,90.000,80.538,306.275,336.000,349.266,18.084,21.000,18.084 +466,14.866,258.213,448.512,287.213,634.180,260.604,461.821,79.813,99.162,79.813,321.653,335.694,348.696,19.923,22.898,19.923 +467,14.899,257.518,450.917,285.993,632.387,259.488,461.116,79.071,106.991,79.071,325.605,333.501,346.380,19.915,21.837,19.915 +468,14.931,256.685,451.528,286.629,630.582,258.509,460.316,78.275,115.672,78.275,326.901,331.471,344.854,20.599,21.646,20.599 +469,14.964,255.250,452.551,289.417,629.645,257.019,460.471,77.410,125.134,77.410,328.104,330.242,344.335,19.777,22.202,19.777 +470,14.997,254.565,453.393,291.965,628.946,256.327,460.662,76.373,134.433,76.373,328.927,328.221,343.886,20.939,24.068,20.939 +471,15.030,253.200,453.400,294.440,627.920,255.080,460.580,75.324,143.130,75.324,328.860,327.600,343.705,21.052,25.200,21.052 +472,15.062,251.795,453.785,297.171,627.128,253.837,461.002,74.202,151.887,74.202,328.294,326.770,343.296,21.239,26.316,21.239 +473,15.095,249.693,454.368,300.156,626.280,251.904,461.580,72.954,160.594,72.954,328.131,326.493,343.218,20.646,27.106,20.646 +474,15.127,248.069,454.974,303.248,625.429,250.432,462.112,71.681,169.216,71.681,328.241,326.745,343.281,21.007,27.318,21.007 +475,15.158,246.550,456.342,306.991,624.312,248.872,462.801,70.224,177.327,70.224,329.569,326.718,343.298,21.231,27.441,21.231 +476,15.189,244.841,457.649,309.945,623.535,247.237,463.773,68.629,5.921,68.629,330.105,328.181,343.256,21.500,27.600,21.500 +477,15.220,243.303,458.931,312.798,623.347,245.789,464.796,67.033,13.851,67.033,331.518,330.552,344.259,22.539,28.330,22.539 +478,15.250,240.956,459.905,315.910,622.694,243.744,465.945,65.225,22.023,65.225,331.824,332.419,345.128,22.210,25.749,22.210 +479,15.280,238.902,461.306,319.476,621.924,241.945,467.358,63.311,29.567,63.311,332.294,333.394,345.842,22.510,24.438,22.510 +480,15.311,236.139,461.650,322.819,620.570,239.952,468.621,61.324,36.529,61.324,330.262,334.012,346.152,22.883,22.500,22.883 +481,15.341,236.139,461.650,322.819,620.570,239.952,468.621,61.324,36.529,61.324,330.262,334.012,346.152,22.883,22.500,22.883 +482,15.370,233.889,462.752,325.997,619.503,238.119,469.883,59.329,42.628,59.329,330.450,334.848,347.033,23.655,20.660,23.655 +483,15.402,227.255,461.197,328.560,618.495,234.804,472.202,55.555,47.911,55.555,320.655,335.813,347.345,22.737,19.941,22.737 +484,15.433,208.547,439.826,330.710,617.223,233.344,473.130,53.330,52.431,53.330,264.401,336.073,347.445,21.251,19.633,21.251 +485,15.466,207.324,446.725,333.424,615.374,229.603,475.889,52.624,56.988,52.624,274.338,336.217,347.738,18.134,19.547,18.134 +486,15.499,216.750,465.201,336.172,613.177,227.179,477.675,50.102,61.699,50.102,315.214,336.001,347.732,18.979,19.370,18.979 +487,15.533,218.586,469.711,339.860,609.851,226.399,478.136,47.161,67.496,47.161,324.478,335.769,347.458,24.504,20.153,24.504 +488,15.566,215.820,473.477,342.608,605.968,222.858,480.256,43.926,73.374,43.926,327.373,335.148,346.917,24.912,19.896,24.912 +489,15.597,212.817,477.307,346.306,601.275,219.519,482.978,40.236,80.218,40.236,328.843,334.071,346.401,25.955,21.170,25.955 +490,15.631,209.471,481.711,348.935,595.618,215.410,486.059,36.209,86.730,36.209,330.194,331.944,344.915,25.949,19.711,25.949 +491,15.663,205.505,486.576,352.624,589.447,211.362,490.228,31.941,93.468,31.941,330.928,330.031,344.732,25.490,21.385,25.490 +492,15.696,201.642,491.888,356.776,582.044,207.725,495.032,27.332,101.094,27.332,331.028,328.509,344.724,25.563,23.936,25.563 +493,15.727,197.358,497.559,360.400,573.800,203.932,500.266,22.380,108.435,22.380,331.144,326.980,345.362,25.891,25.298,25.891 +494,15.757,193.854,504.701,363.569,564.743,200.645,506.773,16.966,115.346,16.966,331.298,324.870,345.498,26.165,26.113,26.165 +495,15.787,190.986,512.122,365.849,555.351,197.787,513.513,11.560,123.009,11.560,332.190,324.226,346.073,25.718,26.535,25.718 +496,15.817,188.202,520.494,367.272,544.531,195.197,521.199,5.750,130.831,5.750,333.035,322.990,347.095,25.548,26.412,25.548 +497,15.848,186.002,532.779,368.416,533.089,194.173,532.713,179.540,138.299,179.540,332.126,322.380,348.468,18.674,25.569,18.674 +498,15.880,182.735,543.342,367.680,521.003,193.579,541.958,172.725,145.840,172.725,328.842,322.302,350.706,19.691,23.760,19.691 +499,15.910,174.070,556.819,365.921,508.835,194.674,551.752,166.185,153.236,166.185,310.647,322.015,353.083,19.453,21.002,19.453 +500,15.940,174.070,556.819,365.921,508.835,194.674,551.752,166.185,153.236,166.185,310.647,322.015,353.083,19.453,21.002,19.453 +501,15.969,131.076,586.609,362.626,496.317,196.594,560.832,158.523,161.003,158.523,215.434,322.862,356.247,18.489,20.259,18.489 +502,16.001,192.470,576.197,358.302,484.863,200.777,571.662,151.365,167.502,151.365,340.781,322.578,359.710,19.546,22.369,19.546 +503,16.035,199.585,586.077,352.022,475.277,205.634,581.626,143.656,175.452,143.656,346.855,321.530,361.875,19.323,19.903,19.323 +504,16.067,207.590,595.580,343.880,465.894,212.133,591.145,135.686,2.862,135.686,350.835,320.450,363.534,19.074,19.176,19.074 +505,16.099,216.341,605.346,333.551,457.105,220.126,600.406,127.451,10.784,127.451,353.022,318.091,365.470,19.475,21.144,19.475 +506,16.132,227.370,613.928,321.330,450.167,230.096,609.045,119.173,17.913,119.173,355.209,316.215,366.393,19.718,20.895,19.718 +507,16.164,239.247,620.842,308.700,442.619,241.489,614.862,110.556,25.887,110.556,356.975,313.954,369.750,19.546,24.661,19.546 +508,16.198,255.085,626.072,294.370,439.467,256.227,620.911,102.472,33.977,102.472,360.228,310.668,370.800,25.274,23.652,25.274 +509,16.230,267.039,628.765,278.343,439.726,267.266,624.447,93.013,42.166,93.013,361.447,308.481,370.096,24.650,19.048,24.650 +510,16.261,282.502,629.722,264.653,440.116,282.039,624.723,84.710,50.356,84.710,360.808,305.237,370.848,25.723,20.615,25.723 +511,16.292,296.269,631.180,250.292,443.567,294.338,623.486,75.915,57.995,75.915,354.594,303.159,370.458,24.495,18.974,24.495 +512,16.323,337.690,688.724,236.047,448.081,309.431,618.077,68.199,65.821,68.199,218.006,303.581,370.184,20.426,18.190,20.426 +513,16.354,324.664,618.977,224.083,454.658,320.824,612.242,60.306,72.497,60.306,354.122,305.549,369.626,23.189,20.008,23.189 +514,16.384,336.488,607.713,212.543,462.411,332.705,602.968,51.437,80.690,51.437,357.486,305.124,369.622,25.076,18.992,25.076 +515,16.414,345.194,597.325,203.000,471.489,341.391,593.739,43.320,89.384,43.320,358.660,305.154,369.113,24.597,18.246,24.597 +516,16.446,353.422,585.591,194.479,481.870,349.187,582.582,35.391,97.265,35.391,358.508,308.981,368.898,26.317,18.764,26.317 +517,16.477,358.732,573.791,187.575,492.741,354.366,571.501,27.674,105.654,27.674,358.719,311.808,368.579,25.685,19.211,25.685 +518,16.508,358.732,573.791,187.575,492.741,354.366,571.501,27.674,105.654,27.674,358.719,311.808,368.579,25.685,19.211,25.685 +519,16.537,362.195,562.103,182.455,503.859,357.602,560.393,20.417,113.716,20.417,357.931,314.758,367.732,26.013,20.534,26.013 +520,16.568,364.458,550.972,178.968,514.763,359.820,549.869,13.384,121.727,13.384,358.596,316.421,368.132,25.516,21.303,25.516 +521,16.599,363.758,540.339,176.180,524.823,358.672,539.739,6.729,129.531,6.729,355.724,317.536,365.966,24.974,20.690,24.974 +522,16.630,362.000,533.000,174.683,534.201,356.842,533.000,0.000,137.643,0.000,354.000,317.968,364.317,20.000,21.212,20.000 +523,16.663,362.244,522.869,174.540,542.350,356.937,523.387,174.432,145.814,174.432,356.089,317.901,366.753,20.388,22.444,20.388 +524,16.697,360.365,514.827,175.944,550.378,354.821,515.936,168.690,153.159,168.690,353.009,317.120,364.317,20.200,21.801,20.200 +525,16.728,369.945,503.454,178.806,558.172,352.837,508.544,163.431,159.643,163.431,326.215,317.866,361.914,19.376,20.439,19.376 +526,16.759,379.857,489.525,181.952,565.830,349.915,501.054,158.942,168.408,158.942,295.870,315.759,360.041,18.465,20.295,18.465 +527,16.790,360.409,489.355,185.519,572.258,347.339,495.804,153.736,175.764,153.736,328.744,314.509,357.892,19.788,20.906,19.788 +528,16.821,352.505,485.398,189.604,578.802,344.145,490.330,149.465,3.504,149.465,336.705,314.065,356.117,19.854,21.653,19.854 +529,16.851,345.671,482.154,193.852,585.304,340.606,485.640,145.462,11.094,145.462,342.490,315.156,354.787,19.643,23.590,19.643 +530,16.883,341.291,478.407,197.981,591.121,337.039,481.757,141.766,19.231,141.766,342.998,316.241,353.823,19.518,24.659,19.518 +531,16.915,337.038,475.235,201.500,597.000,333.080,478.744,138.440,26.565,138.440,343.235,317.522,353.815,18.791,25.491,18.791 +532,16.947,333.683,471.701,205.423,602.115,329.505,475.850,135.198,33.690,135.198,342.257,318.675,354.032,18.576,25.794,18.576 +533,16.978,329.885,469.395,209.048,606.371,325.997,473.661,132.348,41.070,132.348,342.181,320.972,353.724,18.993,26.021,18.993 +534,17.009,329.885,469.395,209.048,606.371,325.997,473.661,132.348,41.070,132.348,342.181,320.972,353.724,18.993,26.021,18.993 +535,17.038,326.470,467.232,213.744,609.107,323.247,471.122,129.639,48.270,129.639,342.132,322.379,352.234,18.897,22.228,18.897 +536,17.070,323.513,465.868,216.375,613.033,320.236,470.172,127.288,54.866,127.288,342.341,324.578,353.162,19.211,21.717,19.211 +537,17.105,319.984,464.595,219.363,615.736,317.155,468.652,124.886,61.849,124.886,343.273,326.588,353.166,19.123,21.602,19.123 +538,17.137,317.284,463.249,222.100,618.656,314.382,467.753,122.800,68.714,122.800,342.953,329.256,353.668,19.427,22.072,19.427 +539,17.168,314.812,461.882,222.966,621.009,311.620,467.185,121.042,74.694,121.042,342.645,330.295,355.023,19.246,20.864,19.246 +540,17.202,312.572,461.352,224.353,622.292,309.640,466.563,119.370,81.254,119.370,343.127,330.800,355.085,19.399,20.072,19.399 +541,17.233,310.612,460.727,225.582,623.882,307.726,466.139,118.072,87.374,118.072,343.412,330.661,355.681,18.941,19.502,18.941 +542,17.263,308.926,460.447,226.338,624.017,306.430,465.388,116.796,92.839,116.796,344.334,330.883,355.404,19.367,19.266,19.367 +543,17.296,308.122,459.346,226.885,624.779,305.217,465.279,116.086,97.787,116.086,342.181,331.614,355.393,18.730,19.578,18.730 +544,17.327,307.924,458.038,227.321,624.632,304.603,465.026,115.417,102.375,115.417,339.180,331.902,354.653,19.109,21.085,19.109 +545,17.360,307.450,458.333,226.855,624.241,304.394,464.839,115.159,105.725,115.159,340.109,331.873,354.487,18.761,20.784,18.761 +546,17.391,308.471,456.344,227.050,623.850,304.560,464.676,115.145,108.435,115.145,335.640,331.723,354.049,18.548,20.239,18.548 +547,17.422,309.959,454.060,226.430,623.743,304.828,464.898,115.336,111.054,115.336,330.246,330.908,354.229,18.534,20.344,18.534 +548,17.453,313.975,447.277,225.676,623.293,305.431,464.918,115.844,113.408,115.844,315.401,330.626,354.604,18.309,20.551,18.309 +549,17.483,329.050,419.032,224.484,622.231,306.240,464.861,116.460,115.523,116.460,252.242,330.184,354.626,18.211,20.178,18.211 +550,17.515,345.083,392.200,223.243,621.627,306.930,465.454,117.512,117.646,117.512,189.153,329.318,354.341,17.923,20.669,17.923 +551,17.548,347.610,393.060,221.828,620.765,308.119,465.808,118.496,119.925,118.496,189.154,329.185,354.706,17.954,20.403,17.954 +552,17.580,350.072,394.814,220.339,619.533,309.463,466.286,119.604,122.442,119.604,190.134,328.492,354.540,17.962,20.169,17.962 +553,17.610,342.456,414.074,218.374,618.113,310.848,466.753,120.964,125.028,120.964,231.866,328.100,354.735,18.007,20.074,18.007 +554,17.641,342.456,414.074,218.374,618.113,310.848,466.753,120.964,125.028,120.964,231.866,328.100,354.735,18.007,20.074,18.007 +555,17.670,336.668,429.620,216.644,616.675,312.805,467.584,122.152,127.999,122.152,265.118,327.400,354.800,18.045,20.464,18.045 +556,17.702,333.538,439.692,214.667,614.596,314.657,468.014,123.690,131.775,123.690,286.780,326.345,354.857,17.750,20.006,17.750 +557,17.735,332.199,446.612,212.445,612.470,316.429,468.941,125.232,135.490,125.232,299.780,325.306,354.451,18.093,20.028,18.093 +558,17.766,331.030,453.140,210.367,610.363,318.431,469.988,126.790,140.421,126.790,312.193,324.308,354.270,18.071,20.019,18.071 +559,17.798,331.312,457.866,208.236,607.823,320.960,471.129,127.972,145.856,127.972,320.575,323.424,354.226,20.208,19.625,20.208 +560,17.832,332.232,462.063,206.501,605.074,323.542,472.386,130.090,152.592,130.090,326.777,321.992,353.766,19.571,19.531,19.571 +561,17.864,332.948,464.621,204.802,602.607,325.388,473.126,131.634,159.749,131.634,331.019,320.614,353.778,19.516,19.893,19.516 +562,17.897,334.861,467.707,203.402,599.644,328.162,474.685,133.831,168.166,133.831,333.743,319.109,353.089,19.073,21.971,19.073 +563,17.928,336.191,470.727,202.019,596.835,330.679,476.077,135.855,176.716,135.855,337.495,317.142,352.858,18.784,21.604,18.784 +564,17.959,337.847,473.551,200.260,594.217,332.948,477.962,137.999,6.170,137.999,339.609,316.830,352.793,19.383,23.646,19.383 +565,17.989,339.987,476.911,198.326,592.144,335.563,480.556,140.507,15.101,140.507,342.281,316.612,353.746,19.157,24.934,19.157 +566,18.020,342.191,480.256,195.849,588.835,338.261,483.188,143.273,24.305,143.273,344.833,317.216,354.639,19.452,24.636,19.452 +567,18.051,345.323,483.722,194.782,584.104,341.877,486.030,146.190,33.896,146.190,345.286,316.469,353.582,19.667,21.867,19.667 +568,18.084,348.500,487.893,191.973,580.950,344.610,490.185,149.490,42.825,149.490,346.138,315.625,355.167,19.708,21.788,19.708 +569,18.116,352.000,493.000,189.925,576.656,348.039,494.981,153.435,52.753,153.435,347.038,317.381,355.896,19.677,21.440,19.677 +570,18.148,354.516,497.714,186.792,571.579,350.279,499.514,156.980,62.021,156.980,348.092,317.756,357.299,19.881,20.726,19.881 +571,18.179,357.410,503.715,183.750,565.250,352.911,505.231,161.378,71.565,161.378,349.445,317.809,358.940,19.272,20.871,19.272 +572,18.210,357.410,503.715,183.750,565.250,352.911,505.231,161.378,71.565,161.378,349.445,317.809,358.940,19.272,20.871,19.272 +573,18.238,360.062,510.267,181.333,558.556,355.453,511.431,165.828,81.091,165.828,351.207,317.800,360.716,19.861,20.779,19.861 +574,18.269,361.847,517.971,179.382,550.535,357.356,518.699,170.789,90.409,170.789,352.450,317.056,361.549,19.475,20.985,19.475 +575,18.300,363.104,525.027,177.703,542.042,358.408,525.347,176.100,99.599,176.100,353.429,317.456,362.844,21.337,21.177,21.337 +576,18.332,363.161,534.531,176.797,532.295,358.068,534.394,1.548,108.825,1.548,352.331,316.866,362.522,19.912,20.759,19.912 +577,18.366,364.241,541.282,177.654,522.379,359.478,540.641,7.667,117.992,7.667,355.657,315.936,365.269,25.386,21.495,25.386 +578,18.398,363.192,551.682,179.450,511.477,358.990,550.643,13.891,127.140,13.891,358.730,314.610,367.385,24.968,20.887,24.968 +579,18.432,361.757,561.970,182.690,500.241,357.167,560.252,20.519,136.196,20.519,359.084,313.461,368.885,25.747,20.493,25.747 +580,18.464,357.528,574.261,187.106,488.652,352.938,571.772,28.474,145.101,28.474,360.358,311.877,370.801,25.939,19.214,25.939 +581,18.498,352.060,584.188,193.841,478.224,348.370,581.569,35.362,153.997,35.362,362.611,310.798,371.661,25.702,18.984,25.702 +582,18.530,344.230,595.599,202.265,468.448,340.872,592.438,43.264,162.646,43.264,362.601,309.013,371.824,24.973,18.672,24.973 +583,18.563,335.592,604.530,212.178,459.661,332.886,601.258,50.412,171.304,50.412,363.596,307.914,372.088,23.327,18.642,23.327 +584,18.593,324.890,613.496,223.000,451.500,322.326,609.321,58.438,0.000,58.438,363.130,306.000,372.929,22.422,19.000,22.422 +585,18.624,312.607,620.434,235.555,445.650,310.737,616.126,66.534,8.997,66.534,363.235,306.466,372.628,21.759,19.795,21.759 +586,18.655,298.034,625.940,248.773,441.238,296.860,621.677,74.604,17.103,74.604,364.618,305.996,373.461,22.538,20.880,22.538 +587,18.685,286.818,628.852,262.932,437.665,286.194,623.252,83.642,26.250,83.642,362.772,306.361,374.042,26.505,23.712,26.505 +588,18.716,269.039,628.581,276.597,437.639,269.132,623.334,91.016,34.077,91.016,361.103,306.806,371.597,22.245,23.094,22.245 +589,18.748,253.445,626.245,291.176,439.746,254.238,621.413,99.321,41.894,99.321,360.709,307.506,370.501,25.804,23.930,25.804 +590,18.781,241.800,621.777,305.104,443.913,243.387,617.189,109.081,50.133,109.081,358.153,308.311,367.862,19.900,24.578,19.900 +591,18.814,229.151,615.186,317.858,449.695,231.435,610.851,117.778,58.671,117.778,355.921,309.740,365.722,19.978,23.992,19.978 +592,18.846,218.123,606.923,329.695,457.334,220.978,603.030,126.254,67.457,126.254,353.904,311.303,363.562,19.676,24.344,19.676 +593,18.877,218.123,606.923,329.695,457.334,220.978,603.030,126.254,67.457,126.254,353.904,311.303,363.562,19.676,24.344,19.676 +594,18.907,208.785,597.753,339.713,466.205,212.350,594.123,134.477,75.426,134.477,350.840,313.168,361.015,19.366,24.544,19.366 +595,18.938,201.298,587.337,347.985,476.115,205.106,584.406,142.421,83.541,142.421,348.939,314.519,358.550,19.862,23.941,19.862 +596,18.968,195.312,576.783,355.380,486.630,199.989,574.096,150.117,92.203,150.117,345.828,315.459,356.617,19.308,25.020,19.308 +597,18.999,191.322,566.390,359.761,497.546,196.137,564.392,157.463,99.972,157.463,343.070,317.796,353.498,19.717,23.919,19.717 +598,19.032,187.847,555.848,364.500,508.500,194.203,554.082,164.476,108.435,164.476,339.372,319.390,352.567,19.752,25.931,19.752 +599,19.065,186.610,545.407,366.900,519.200,193.258,544.369,171.128,116.565,171.128,337.436,320.652,350.893,19.423,25.938,19.423 +600,19.098,186.647,535.749,367.950,529.938,193.417,535.484,177.754,125.251,177.754,335.683,322.703,349.233,19.103,26.003,19.103 +601,19.130,187.466,524.086,368.108,539.547,194.746,524.514,3.366,133.888,3.366,333.306,323.403,347.891,24.898,26.144,24.898 +602,19.163,189.270,515.378,367.628,548.518,197.158,516.693,9.462,142.343,9.462,330.771,324.857,346.764,24.660,25.742,24.660 +603,19.195,190.971,508.618,366.276,556.997,199.335,510.709,14.036,150.990,14.036,329.121,326.447,346.365,25.466,25.179,25.466 +604,19.226,194.000,501.961,364.488,564.968,202.318,504.806,18.886,159.677,18.886,328.244,327.483,345.826,25.970,24.729,25.970 +605,19.256,197.761,493.851,362.145,572.209,206.104,497.702,24.775,168.456,24.775,327.424,328.494,345.802,25.912,24.290,25.912 +606,19.287,200.887,487.930,359.617,579.270,209.862,492.999,29.454,177.039,29.454,325.027,329.594,345.642,26.420,23.985,26.420 +607,19.318,204.165,483.251,356.716,584.558,212.861,489.010,33.515,5.299,33.515,324.531,330.754,345.391,25.802,24.540,25.802 +608,19.350,208.288,479.434,353.517,590.392,216.199,485.461,37.304,14.311,37.304,325.748,332.564,345.639,25.567,23.700,25.567 +609,19.382,212.429,476.427,350.068,596.139,219.585,482.623,40.888,23.545,40.888,326.967,334.053,345.898,25.602,20.204,25.602 +610,19.415,211.438,472.676,346.543,601.717,221.369,481.642,42.078,32.535,42.078,319.990,334.550,346.749,24.608,19.841,24.608 +611,19.447,209.606,462.876,342.125,606.997,225.347,478.716,45.181,41.292,45.181,301.953,335.656,346.615,22.154,19.405,22.154 +612,19.478,172.041,414.003,338.368,611.435,226.372,478.212,49.764,50.454,49.764,179.866,335.604,348.086,17.793,19.639,17.793 +613,19.509,172.041,414.003,338.368,611.435,226.372,478.212,49.764,50.454,49.764,179.866,335.604,348.086,17.793,19.639,17.793 +614,19.537,215.090,458.221,334.046,614.768,229.026,476.221,52.253,59.478,52.253,302.158,336.109,347.686,18.187,19.652,18.187 +615,19.568,224.104,460.740,330.311,617.461,232.959,473.245,54.699,68.806,54.699,317.264,336.088,347.911,22.269,20.265,22.269 +616,19.599,228.860,461.168,325.891,620.024,235.596,471.471,56.821,77.781,56.821,322.877,335.808,347.495,23.403,20.194,23.403 +617,19.631,232.172,461.067,321.434,621.886,237.579,470.000,58.815,86.634,58.815,325.833,335.009,346.718,23.549,19.437,23.549 +618,19.663,234.766,460.239,318.089,622.609,239.426,468.479,60.511,95.711,60.511,326.839,334.332,345.771,23.622,20.796,23.622 +619,19.696,236.562,460.065,312.906,623.350,240.276,467.102,62.176,104.121,62.176,328.254,334.465,344.169,22.748,22.323,22.748 +620,19.728,238.660,458.931,311.916,623.125,242.162,465.972,63.559,113.806,63.559,327.820,331.927,343.547,23.217,22.765,23.217 +621,19.760,240.229,458.255,310.711,623.466,243.506,465.259,64.926,123.254,64.926,328.092,330.659,343.557,23.217,23.744,23.217 +622,19.791,241.516,457.487,309.316,623.702,244.669,464.563,65.980,132.397,65.980,327.852,329.525,343.345,22.865,25.109,22.865 +623,19.823,242.383,457.137,308.413,623.525,245.281,463.956,66.975,141.827,66.975,328.282,328.570,343.099,21.904,26.521,21.904 +624,19.855,243.750,456.457,307.664,623.297,246.512,463.244,67.855,151.060,67.855,327.940,327.802,342.596,22.607,27.211,22.607 +625,19.886,244.674,456.256,307.400,623.611,247.345,463.073,68.603,160.190,68.603,328.122,327.543,342.765,22.593,27.633,22.593 +626,19.917,245.448,456.140,307.552,623.870,248.055,462.998,69.179,169.103,69.179,328.355,327.537,343.029,22.485,27.920,22.485 +627,19.947,245.902,456.780,307.589,624.040,248.211,462.994,69.616,177.510,69.616,330.029,327.647,343.286,21.278,27.930,21.278 +628,19.978,247.019,456.946,307.726,624.469,249.208,462.972,70.036,6.340,70.036,330.720,329.086,343.543,22.186,27.718,22.186 +629,20.009,247.019,456.946,307.726,624.469,249.208,462.972,70.036,6.340,70.036,330.720,329.086,343.543,22.186,27.718,22.186 +630,20.037,247.458,457.232,307.835,625.459,249.633,463.294,70.267,15.136,70.267,331.708,330.911,344.588,22.110,28.667,22.110 +631,20.070,247.367,457.579,307.848,626.483,249.585,463.830,70.463,23.728,70.463,332.282,332.112,345.546,21.098,26.820,21.098 +632,20.101,247.532,457.520,308.092,626.973,249.839,464.028,70.484,31.661,70.484,332.278,332.936,346.088,21.345,25.166,21.345 +633,20.133,247.562,457.508,308.590,627.503,249.972,464.336,70.560,39.202,70.560,332.265,333.926,346.748,21.467,23.048,21.467 +634,20.165,247.222,457.128,308.465,628.095,249.877,464.643,70.544,46.197,70.544,331.325,334.581,347.266,21.261,21.778,21.261 +635,20.198,247.195,457.139,308.260,628.916,249.973,464.982,70.498,52.446,70.498,331.333,335.402,347.974,21.209,20.540,21.209 +636,20.230,246.695,455.638,307.597,629.313,250.023,465.046,70.519,57.923,70.519,328.168,336.335,348.126,21.202,19.914,21.202 +637,20.262,245.095,452.910,306.383,629.339,249.644,464.930,69.268,62.586,69.268,321.992,337.248,347.696,21.078,19.460,21.078 +638,20.292,241.970,444.446,305.707,630.126,249.721,465.178,69.503,66.730,69.503,303.951,336.931,348.218,19.732,19.420,19.732 +639,20.323,220.337,385.947,305.608,630.614,248.729,465.800,70.427,70.787,70.427,179.188,336.244,348.690,18.007,19.687,18.007 +640,20.355,235.426,429.273,305.148,630.686,248.519,465.825,70.292,74.697,70.292,270.947,336.793,348.601,17.957,19.464,17.957 +641,20.385,240.834,446.094,305.417,631.016,248.231,466.266,69.864,79.084,69.864,305.761,337.923,348.732,18.089,19.722,18.089 +642,20.417,243.541,451.294,305.930,630.347,248.905,465.569,69.408,83.884,69.408,318.114,337.248,348.613,21.336,19.886,21.336 +643,20.450,243.786,453.729,306.281,629.509,248.366,465.400,68.575,89.301,68.575,322.773,335.170,347.847,22.330,19.450,22.330 +644,20.483,243.044,456.117,306.557,628.409,246.926,465.486,67.490,95.515,67.490,326.398,335.207,346.680,22.746,19.873,22.746 +645,20.517,241.031,456.992,307.356,627.286,244.940,465.811,66.095,101.925,66.095,326.539,335.799,345.832,22.015,21.537,22.015 +646,20.549,239.699,458.499,309.946,624.155,243.090,465.615,64.519,109.179,64.519,327.994,332.381,343.761,22.512,21.682,22.512 +647,20.581,237.357,459.510,313.249,622.599,240.975,466.570,62.862,117.216,62.862,327.773,330.942,343.638,22.538,22.385,22.538 +648,20.612,235.538,460.643,316.680,620.363,239.188,467.208,60.927,124.796,60.927,328.002,329.826,343.025,23.725,24.162,23.725 +649,20.642,235.538,460.643,316.680,620.363,239.188,467.208,60.927,124.796,60.927,328.002,329.826,343.025,23.725,24.162,23.725 +650,20.671,232.975,461.795,320.102,617.991,236.847,468.201,58.851,132.944,58.851,327.547,328.546,342.518,24.057,25.099,24.057 +651,20.702,229.871,463.442,324.106,615.475,234.045,469.761,56.550,140.889,56.550,327.298,327.571,342.443,23.506,26.583,23.506 +652,20.736,226.988,465.111,328.396,612.645,231.544,471.398,54.077,148.921,54.077,326.881,327.225,342.410,23.798,26.949,23.798 +653,20.768,224.134,467.095,332.988,609.331,228.890,473.058,51.426,157.027,51.426,327.638,326.945,342.893,24.188,27.240,24.188 +654,20.800,221.360,469.624,337.445,606.059,226.319,475.234,48.526,165.132,48.526,328.259,327.290,343.235,25.294,26.840,25.294 +655,20.832,218.107,472.875,342.094,602.303,223.436,478.273,45.370,173.318,45.370,328.082,328.091,343.253,24.707,26.131,24.707 +656,20.865,214.725,475.588,346.945,597.818,220.599,480.889,42.056,1.353,42.056,328.447,328.357,344.272,25.810,26.308,25.810 +657,20.898,210.259,478.545,351.545,592.780,217.334,484.167,38.472,9.293,38.472,327.222,330.441,345.295,26.241,25.623,26.241 +658,20.929,204.580,481.662,356.009,587.473,214.081,488.235,34.680,17.393,34.680,323.251,332.341,346.357,26.062,22.006,26.062 +659,20.961,185.266,479.437,359.673,583.258,210.735,493.085,28.186,25.201,28.186,289.944,333.239,347.736,22.457,19.906,22.457 +660,20.991,189.215,491.890,362.996,578.007,206.962,500.479,25.828,33.440,25.828,309.016,333.408,348.447,18.890,19.728,18.890 +661,21.023,194.668,499.419,365.973,571.530,204.871,503.263,20.647,41.760,20.647,327.845,333.514,349.652,26.107,20.433,26.107 +662,21.053,192.546,506.693,368.050,564.039,201.773,509.276,15.642,50.050,15.642,330.605,332.256,349.769,25.384,20.443,25.384 +663,21.084,190.829,513.781,370.169,555.270,199.245,515.331,10.433,57.995,10.433,333.545,330.719,350.660,25.601,23.320,25.601 +664,21.115,189.423,522.298,370.642,545.938,196.734,522.892,4.646,66.218,4.646,335.738,328.376,350.407,25.235,24.552,25.235 +665,21.151,187.872,534.132,370.023,535.436,194.847,533.949,178.499,74.427,178.499,336.199,325.561,350.154,18.819,25.677,18.819 +666,21.183,187.495,543.966,367.858,524.546,193.361,543.157,172.147,82.304,172.147,338.963,322.340,350.806,19.266,26.730,19.266 +667,21.216,188.517,554.479,366.006,512.573,194.268,552.976,165.349,92.083,165.349,340.857,319.443,352.746,19.514,25.928,19.514 +668,21.250,190.388,565.227,361.818,500.559,195.997,562.991,158.268,100.521,158.268,342.227,317.275,354.304,19.520,25.717,19.520 +669,21.281,193.774,576.292,355.453,488.692,199.149,573.306,150.945,109.502,150.945,343.155,315.957,355.454,19.329,23.193,19.329 +670,21.313,192.566,591.931,347.887,477.209,204.111,583.330,143.318,118.443,143.318,328.599,315.556,357.393,19.255,21.909,19.255 +671,21.344,192.566,591.931,347.887,477.209,204.111,583.330,143.318,118.443,143.318,328.599,315.556,357.393,19.255,21.909,19.255 +672,21.373,187.126,614.659,339.232,466.168,210.274,591.749,135.297,125.967,135.297,294.856,314.818,359.992,18.685,20.184,18.685 +673,21.405,207.275,615.776,329.167,456.683,218.858,600.829,127.771,133.589,127.771,325.196,314.898,363.015,19.182,21.228,19.182 +674,21.436,224.956,615.254,318.544,448.956,228.825,608.508,119.833,140.029,119.833,350.529,314.584,366.082,19.936,20.872,19.936 +675,21.469,237.517,620.627,306.756,443.024,239.885,614.621,111.516,147.804,111.516,355.417,314.611,368.329,19.635,20.153,19.635 +676,21.502,249.572,626.081,293.726,439.402,250.896,619.991,102.272,155.400,102.272,358.667,314.311,371.131,23.962,19.039,23.962 +677,21.535,263.108,629.259,279.776,437.759,263.481,623.230,93.545,163.209,93.545,360.168,313.498,372.248,25.632,19.060,25.632 +678,21.566,282.020,629.301,265.687,438.170,281.646,623.631,86.230,170.910,86.230,360.853,312.071,372.218,25.406,18.959,25.406 +679,21.597,293.393,627.162,250.938,440.733,292.266,622.522,76.355,178.717,76.355,363.269,310.124,372.817,25.002,18.309,25.002 +680,21.629,310.144,621.618,236.974,444.740,308.291,617.045,67.937,6.170,67.937,363.081,308.634,372.950,21.971,20.395,21.971 +681,21.660,324.059,614.265,223.859,451.849,321.625,610.208,59.036,13.241,59.036,362.719,307.485,372.182,23.495,19.812,23.495 +682,21.692,336.914,605.925,212.781,459.500,333.103,601.330,50.332,21.318,50.332,360.021,306.375,371.962,24.632,21.176,24.632 +683,21.723,347.938,599.217,202.885,470.587,341.358,593.329,41.827,29.476,41.827,352.420,305.757,370.079,20.345,19.152,20.345 +684,21.754,373.968,597.045,194.279,482.439,350.501,580.629,34.975,37.528,34.975,311.308,305.830,368.586,22.958,19.298,22.958 +685,21.785,362.771,571.429,188.842,493.660,356.307,568.359,25.408,44.697,25.408,352.323,304.807,366.635,25.495,21.363,25.495 +686,21.817,364.970,558.526,184.730,505.615,359.781,556.870,17.696,52.280,17.696,353.801,306.728,364.696,25.559,21.326,25.559 +687,21.850,366.226,546.020,181.751,518.357,361.739,545.202,10.335,60.345,10.335,354.646,308.960,363.768,25.799,22.074,25.799 +688,21.883,364.848,535.079,179.692,530.616,359.877,534.787,3.366,68.039,3.366,350.277,311.037,360.237,24.252,21.915,24.252 +689,21.915,364.019,525.833,180.056,542.032,359.562,526.094,176.660,74.774,176.660,351.328,314.076,360.259,21.438,21.467,21.438 +690,21.946,361.897,516.903,180.580,553.272,357.534,517.658,170.181,81.841,170.181,352.016,317.208,360.871,20.427,21.011,20.427 +691,21.976,361.897,516.903,180.580,553.272,357.534,517.658,170.181,81.841,170.181,352.016,317.208,360.871,20.427,21.011,20.427 +692,22.005,358.486,508.171,180.346,563.502,353.353,509.614,164.298,89.138,164.298,351.607,319.189,362.270,19.706,20.163,19.706 +693,22.036,354.454,500.279,182.069,572.307,349.231,502.326,158.603,95.711,158.603,351.121,321.795,362.342,19.792,20.498,19.792 +694,22.069,350.163,493.348,185.123,580.417,345.143,495.879,153.241,102.395,153.241,350.648,323.993,361.892,20.056,19.480,20.056 +695,22.102,345.819,487.161,188.017,587.178,340.634,490.364,148.293,108.970,148.293,349.253,325.405,361.443,19.768,19.771,19.768 +696,22.133,341.175,481.974,191.428,592.966,336.298,485.556,143.696,115.201,143.696,348.585,326.161,360.687,19.341,19.587,19.341 +697,22.165,337.013,477.422,194.855,597.715,332.215,481.524,139.470,121.249,139.470,347.192,326.193,359.818,19.112,20.921,19.112 +698,22.198,333.773,472.678,198.539,601.294,328.487,477.847,135.637,126.304,135.637,343.648,326.596,358.435,18.674,20.953,18.674 +699,22.230,361.311,434.455,202.584,605.001,324.571,474.628,132.444,130.655,132.444,248.187,325.719,357.066,18.190,19.712,18.190 +700,22.261,346.532,440.802,207.294,608.757,321.042,471.930,129.314,135.871,129.314,275.390,324.729,355.856,18.045,19.951,18.045 +701,22.292,329.405,453.757,211.274,611.100,317.852,469.572,126.150,141.132,126.150,315.130,324.221,354.301,18.248,19.744,18.248 +702,22.323,321.575,456.801,215.750,613.250,314.784,467.354,122.762,147.529,122.762,327.463,323.429,352.561,19.540,19.634,19.540 +703,22.353,316.475,456.497,220.506,615.513,311.454,465.234,119.884,154.264,119.884,331.069,322.427,351.223,19.302,21.190,19.302 +704,22.383,311.863,455.975,225.513,617.539,308.149,463.237,117.080,162.204,117.080,333.696,321.345,350.010,19.816,24.098,19.816 +705,22.414,307.623,455.187,230.553,619.801,304.636,461.789,114.349,169.951,114.349,334.508,321.036,349.001,19.578,25.103,19.578 +706,22.446,303.828,454.431,235.570,621.767,301.355,460.612,111.801,177.739,111.801,334.809,321.302,348.122,19.312,26.164,19.312 +707,22.476,303.828,454.431,235.570,621.767,301.355,460.612,111.801,177.739,111.801,334.809,321.302,348.122,19.312,26.164,19.312 +708,22.505,300.138,453.725,240.372,624.152,297.942,459.962,109.400,6.340,109.400,334.756,321.908,347.981,19.225,26.945,19.225 +709,22.536,296.804,453.216,244.536,625.753,294.938,459.317,107.010,14.818,107.010,335.041,323.618,347.800,19.273,27.534,19.273 +710,22.567,293.363,453.302,248.391,628.038,291.781,459.277,104.834,23.609,104.834,336.129,325.637,348.491,19.192,26.809,19.192 +711,22.597,290.583,453.448,252.235,630.116,289.208,459.464,102.875,31.430,102.875,336.855,326.760,349.199,18.940,26.499,18.940 +712,22.629,287.257,453.298,256.069,631.918,286.077,459.592,100.620,40.030,100.620,337.002,328.028,349.809,19.289,25.575,19.289 +713,22.660,284.894,453.355,258.815,633.322,283.875,459.842,98.931,48.136,98.931,337.402,330.101,350.535,18.699,24.866,18.699 +714,22.693,282.340,453.111,263.099,633.763,281.530,459.695,97.017,56.157,97.017,336.767,331.993,350.033,19.026,20.399,19.026 +715,22.724,279.593,453.512,265.482,634.768,279.000,460.092,95.152,64.328,95.152,337.157,333.637,350.369,19.038,20.760,19.038 +716,22.755,276.625,452.321,267.960,636.039,276.195,460.451,93.033,72.474,93.033,335.272,335.912,351.555,18.557,20.176,18.557 +717,22.785,274.095,451.413,269.250,636.215,273.932,460.586,91.018,80.232,91.018,333.018,336.244,351.369,18.424,20.865,18.424 +718,22.818,271.355,419.027,272.159,636.017,272.031,460.953,89.076,88.815,89.076,266.223,334.425,350.087,18.094,23.140,18.094 +719,22.850,268.014,432.865,276.333,636.467,269.104,461.198,87.797,96.953,87.797,294.129,336.507,350.836,18.102,25.809,18.102 +720,22.882,266.084,444.619,275.647,634.912,267.284,460.621,85.711,104.036,85.711,316.760,335.184,348.855,18.772,20.616,18.772 +721,22.913,264.078,450.015,278.152,632.859,265.136,459.999,83.951,112.068,83.951,326.457,332.399,346.538,19.329,20.614,19.329 +722,22.944,261.410,450.870,281.137,631.372,262.657,459.602,81.870,120.288,81.870,327.673,331.187,345.314,19.516,20.739,19.516 +723,22.973,261.410,450.870,281.137,631.372,262.657,459.602,81.870,120.288,81.870,327.673,331.187,345.314,19.516,20.739,19.516 +724,23.003,259.185,451.940,285.145,630.349,260.557,459.738,80.020,129.357,80.020,328.747,329.767,344.583,20.074,22.284,20.074 +725,23.035,256.491,452.757,289.494,629.494,258.085,460.249,77.989,137.571,77.989,328.831,328.465,344.151,20.374,24.542,20.374 +726,23.069,253.972,453.375,293.563,627.833,255.744,460.420,75.879,145.947,75.879,328.634,327.316,343.163,20.890,25.667,20.890 +727,23.101,250.867,454.015,298.419,626.888,252.990,461.277,73.701,154.041,73.701,328.278,326.519,343.409,20.807,26.713,20.807 +728,23.133,248.227,454.756,302.822,625.503,250.660,462.000,71.434,162.221,71.434,327.921,326.376,343.204,21.861,27.035,21.861 +729,23.166,244.935,456.483,307.736,623.894,247.510,463.201,69.027,170.385,69.027,328.819,326.981,343.208,21.445,27.903,21.445 +730,23.199,242.400,458.260,312.542,622.113,245.039,464.359,66.604,177.849,66.604,329.885,327.370,343.177,22.615,27.788,22.615 +731,23.232,239.441,459.763,317.509,620.406,242.435,465.881,63.932,5.440,63.932,329.969,328.845,343.592,23.478,27.732,23.478 +732,23.263,236.399,461.933,322.102,618.682,239.513,467.586,61.148,13.325,61.148,331.478,330.796,344.386,24.019,27.349,24.019 +733,23.294,233.159,464.022,326.636,616.462,236.625,469.610,58.184,20.735,58.184,331.329,332.760,344.480,24.393,25.318,24.393 +734,23.324,229.203,465.555,331.230,614.522,233.604,471.877,55.161,27.358,55.161,330.292,333.695,345.697,25.104,24.214,25.104 +735,23.355,224.625,466.902,336.381,611.181,230.445,474.322,51.896,33.412,51.896,327.269,334.211,346.130,24.083,21.218,24.083 +736,23.386,216.850,468.061,340.381,608.650,226.162,477.907,46.596,38.374,46.596,319.843,334.689,346.946,24.584,20.185,24.584 +737,23.418,188.252,446.319,344.169,605.396,223.733,479.899,43.423,42.850,43.423,249.767,334.942,347.472,22.009,19.877,22.009 +738,23.450,197.864,465.677,347.901,602.026,219.353,484.885,41.792,46.957,41.792,290.172,335.504,347.816,18.835,19.382,18.835 +739,23.483,205.527,479.243,351.515,597.296,216.398,487.677,37.804,51.506,37.804,320.379,335.309,347.898,20.408,19.554,20.408 +740,23.516,205.206,483.423,355.253,591.681,214.229,489.423,33.622,56.821,33.622,326.435,334.788,348.107,26.351,19.765,26.351 +741,23.549,202.339,489.611,358.856,585.074,210.303,493.992,28.811,62.745,28.811,329.939,333.716,348.118,26.067,19.988,26.067 +742,23.580,198.908,496.210,362.608,577.381,206.630,499.588,23.629,68.962,23.629,331.305,332.415,348.163,25.881,21.826,25.881 +743,23.610,198.908,496.210,362.608,577.381,206.630,499.588,23.629,68.962,23.629,331.305,332.415,348.163,25.881,21.826,25.881 +744,23.638,195.439,504.021,365.712,568.444,202.747,506.391,17.969,75.203,17.969,332.954,330.640,348.319,25.580,24.098,25.580 +745,23.669,191.971,511.359,367.393,558.940,199.141,512.947,12.488,81.347,12.488,333.745,328.436,348.433,25.103,24.436,25.103 +746,23.701,189.329,523.004,368.574,548.497,196.062,523.742,6.259,87.563,6.259,334.818,325.514,348.366,19.265,25.381,19.265 +747,23.734,187.501,532.165,368.415,537.102,194.187,532.142,179.796,94.128,179.796,335.048,323.180,348.420,18.818,25.521,18.818 +748,23.766,187.220,542.744,367.831,525.052,193.404,541.965,172.819,101.041,172.819,337.880,321.043,350.347,19.953,26.213,19.953 +749,23.800,187.941,553.765,365.474,512.796,193.953,552.262,165.964,107.840,165.964,339.550,318.793,351.943,19.403,25.877,19.403 +750,23.832,189.403,565.288,361.378,500.098,195.959,562.700,158.459,114.775,158.459,339.605,317.646,353.701,19.582,24.655,19.582 +751,23.865,191.139,577.934,355.043,487.658,199.275,573.388,150.809,122.245,150.809,336.956,317.369,355.595,19.423,22.907,19.423 +752,23.896,186.354,598.602,347.356,475.064,205.238,584.270,142.804,129.289,142.804,311.040,316.408,358.454,20.135,21.319,20.135 +753,23.926,157.868,648.491,337.904,463.446,212.029,592.852,134.229,136.309,134.229,205.759,316.269,361.055,18.719,20.056,18.719 +754,23.956,216.732,608.846,327.310,454.113,221.392,602.459,126.114,142.104,126.114,348.725,316.093,364.536,19.491,22.356,19.491 +755,23.987,228.863,616.382,316.026,447.044,232.044,610.300,117.616,149.534,117.616,353.444,315.569,367.172,19.621,19.774,19.621 +756,24.018,241.967,622.468,303.159,441.493,243.882,616.839,108.794,156.181,108.794,358.297,315.270,370.188,19.271,19.558,19.271 +757,24.050,254.221,627.236,289.156,438.659,255.172,621.285,99.083,163.104,99.083,359.349,314.455,371.402,25.120,19.071,25.120 +758,24.082,269.415,629.027,274.180,437.851,269.494,623.452,90.807,169.992,90.807,360.147,312.408,371.298,22.153,19.001,22.153 +759,24.114,284.065,628.677,259.408,439.124,283.299,623.782,81.101,177.188,81.101,362.353,311.509,372.262,26.520,19.002,26.520 +760,24.144,302.327,624.865,243.998,443.532,301.074,620.782,72.933,3.641,72.933,363.852,309.220,372.392,21.954,17.809,21.954 +761,24.175,302.327,624.865,243.998,443.532,301.074,620.782,72.933,3.641,72.933,363.852,309.220,372.392,21.954,17.809,21.954 +762,24.204,316.977,618.280,230.183,448.530,315.007,614.314,63.587,10.676,63.587,363.564,307.703,372.421,22.983,19.742,22.983 +763,24.235,330.536,609.622,217.921,456.173,327.896,605.920,54.503,17.613,54.503,362.453,306.013,371.547,24.114,20.954,24.114 +764,24.265,343.020,600.623,207.180,465.166,338.627,596.112,45.751,25.641,45.751,358.445,305.472,371.038,25.021,20.338,25.021 +765,24.297,366.899,603.346,197.987,476.723,345.877,587.357,37.255,32.082,37.255,316.551,305.390,369.374,19.686,18.413,19.686 +766,24.330,364.161,581.436,190.832,488.087,353.120,574.983,30.305,38.807,30.305,342.344,305.333,367.920,23.882,18.776,23.882 +767,24.362,364.753,564.039,186.278,499.792,358.471,561.626,21.011,45.891,21.011,352.370,305.565,365.830,25.896,20.837,25.896 +768,24.392,366.189,551.318,183.131,513.032,361.491,550.210,13.271,53.200,13.271,354.611,308.203,364.264,25.287,22.200,25.287 +769,24.424,365.455,538.974,180.350,525.550,360.510,538.476,5.746,62.103,5.746,351.157,309.274,361.098,25.025,21.939,25.025 +770,24.455,364.048,529.563,180.010,538.140,359.542,529.669,178.660,69.632,178.660,350.349,312.511,359.363,21.053,20.804,21.053 +771,24.485,362.560,518.920,180.580,550.217,358.279,519.532,171.870,77.670,171.870,351.856,315.416,360.505,20.648,21.605,20.648 +772,24.516,359.352,509.527,181.453,561.388,354.715,510.741,165.324,85.601,165.324,351.294,318.521,360.882,19.992,20.938,19.992 +773,24.549,354.648,501.142,182.892,571.550,350.144,502.859,159.136,93.225,159.136,351.858,321.729,361.499,19.799,19.645,19.799 +774,24.580,350.164,493.350,184.565,580.206,344.964,495.972,153.243,100.939,153.243,350.648,324.177,362.294,20.057,20.808,20.057 +775,24.610,345.289,486.773,188.230,587.580,340.352,489.870,147.901,108.293,147.901,349.919,325.408,361.577,19.700,20.260,19.700 +776,24.640,345.289,486.773,188.230,587.580,340.352,489.870,147.901,108.293,147.901,349.919,325.408,361.577,19.700,20.260,19.700 +777,24.669,339.994,481.065,192.125,594.266,335.307,484.645,142.627,115.241,142.627,348.860,326.107,360.656,19.824,20.300,19.824 +778,24.701,335.740,475.406,196.703,599.317,330.693,479.984,137.785,123.354,137.785,345.210,326.450,358.837,19.188,21.823,19.188 +779,24.733,339.077,461.697,202.034,603.956,326.136,475.496,133.162,129.659,133.162,319.353,325.851,357.190,18.761,20.770,18.761 +780,24.766,341.855,445.828,208.099,608.789,320.871,471.564,129.193,137.470,129.193,288.820,324.900,355.233,18.159,20.567,18.159 +781,24.798,325.213,456.211,213.383,611.767,316.775,468.473,124.531,145.138,124.531,323.543,323.832,353.313,19.787,19.435,19.787 +782,24.831,317.088,457.120,219.438,614.794,312.123,465.522,120.579,152.403,120.579,331.809,322.989,351.328,19.527,20.303,19.527 +783,24.863,311.130,456.324,225.664,617.533,307.663,463.181,116.820,159.001,116.820,334.123,322.220,349.490,19.521,23.953,19.521 +784,24.894,305.957,454.767,232.362,620.617,303.080,461.479,113.199,167.391,113.199,333.650,321.708,348.255,19.171,25.090,19.171 +785,24.925,300.900,453.394,238.827,622.742,298.667,459.641,109.669,174.369,109.669,334.186,321.498,347.453,19.246,25.833,19.246 +786,24.955,296.057,452.605,244.571,625.638,294.139,459.129,106.390,2.179,106.390,333.859,321.490,347.460,19.074,27.127,19.074 +787,24.986,291.294,451.916,250.770,627.378,289.784,458.434,103.050,9.462,103.050,333.400,323.866,346.781,19.116,27.455,19.116 +788,25.016,286.721,452.006,256.796,629.177,285.663,457.958,100.081,16.783,100.081,335.167,325.382,347.257,18.750,27.719,18.750 +789,25.049,282.719,452.276,261.762,631.299,281.926,458.592,97.159,23.860,97.159,335.015,327.949,347.746,18.962,27.471,18.962 +790,25.080,278.309,452.341,267.231,632.457,277.850,458.673,94.145,30.530,94.145,335.497,329.108,348.194,18.936,26.526,18.936 +791,25.111,278.309,452.341,267.231,632.457,277.850,458.673,94.145,30.530,94.145,335.497,329.108,348.194,18.936,26.526,18.936 +792,25.139,274.067,452.417,272.885,633.309,273.942,459.098,91.071,37.225,91.071,335.035,329.802,348.400,18.614,26.184,18.614 +793,25.174,269.755,453.094,278.437,634.041,269.992,460.011,88.042,43.573,88.042,334.591,331.794,348.433,18.468,24.613,18.468 +794,25.205,265.965,453.716,283.268,634.271,266.551,460.600,85.135,49.574,85.135,335.108,332.889,348.927,19.059,24.134,19.059 +795,25.236,262.267,454.308,288.015,633.990,263.235,461.326,82.147,55.138,82.147,334.693,334.573,348.861,19.710,22.809,19.710 +796,25.267,258.628,454.542,292.817,633.606,260.070,462.178,79.306,60.010,79.306,333.513,335.281,349.054,20.416,20.666,20.416 +797,25.299,254.792,453.507,297.083,632.960,257.085,463.089,76.541,64.191,76.541,329.325,336.370,349.030,20.955,20.152,20.955 +798,25.332,249.206,451.016,300.367,631.469,253.144,463.784,72.860,67.521,72.860,321.586,337.617,348.309,19.371,19.819,19.371 +799,25.364,221.945,386.731,304.476,631.008,249.263,465.649,70.907,70.540,70.907,181.619,336.260,348.646,17.955,20.077,17.955 +800,25.395,233.972,437.299,309.222,629.081,245.871,466.733,67.989,73.824,67.989,285.017,336.525,348.515,17.950,20.073,17.950 +801,25.427,235.371,451.656,313.526,626.881,242.964,467.878,64.916,77.229,64.916,312.020,336.686,347.842,19.270,19.934,19.270 +802,25.458,234.619,457.436,317.877,624.630,240.806,468.925,61.699,81.142,61.699,321.169,336.202,347.266,23.299,19.890,23.299 +803,25.489,231.554,461.720,322.272,621.130,236.899,470.279,58.020,85.711,58.020,326.163,335.159,346.345,24.268,19.720,24.268 +804,25.522,226.735,465.424,327.248,617.005,232.006,472.683,54.009,91.095,54.009,327.542,334.168,345.484,23.226,19.652,23.226 +805,25.553,223.107,469.023,332.558,612.187,228.107,474.930,49.752,96.843,49.752,329.018,332.653,344.495,25.087,20.374,25.087 +806,25.584,217.543,473.007,338.163,606.583,222.945,478.476,45.356,102.804,45.356,328.847,331.456,344.220,24.234,22.029,24.234 +807,25.615,213.018,477.229,343.853,599.957,218.606,482.019,40.601,108.550,40.601,328.975,329.512,343.696,25.272,23.720,25.272 +808,25.645,208.031,482.347,349.155,593.304,214.023,486.620,35.494,114.874,35.494,329.211,328.955,343.928,25.518,25.312,25.518 +809,25.676,208.031,482.347,349.155,593.304,214.023,486.620,35.494,114.874,35.494,329.211,328.955,343.928,25.518,25.312,25.518 +810,25.705,203.136,487.831,354.041,585.224,209.543,491.560,30.201,121.012,30.201,329.175,327.559,344.003,26.188,25.766,26.188 +811,25.736,198.851,494.645,358.899,575.806,205.332,497.617,24.631,127.476,24.631,330.103,325.775,344.363,26.016,26.745,26.016 +812,25.770,194.550,502.850,362.989,565.938,201.286,505.095,18.435,134.016,18.435,331.090,324.050,345.290,25.931,27.041,25.931 +813,25.802,190.823,511.038,366.270,555.031,198.206,512.669,12.461,140.323,12.461,331.369,323.560,346.492,25.318,25.967,25.318 +814,25.834,186.635,520.679,368.401,543.381,195.619,521.597,5.830,146.862,5.830,330.142,323.717,348.203,24.503,25.442,24.503 +815,25.867,182.502,533.594,368.771,530.546,194.320,533.367,178.903,153.642,178.903,325.304,323.792,348.945,19.157,24.217,19.157 +816,25.899,170.837,546.821,368.526,518.071,194.104,543.439,171.729,159.722,171.729,305.494,324.220,352.515,19.243,20.953,19.243 +817,25.930,131.441,571.849,366.188,504.784,195.418,553.285,163.820,166.487,163.820,221.810,324.543,355.043,18.725,19.959,18.725 +818,25.961,189.608,568.832,362.415,492.886,198.483,564.931,156.276,172.131,156.276,338.742,323.864,358.131,19.443,21.374,19.443 +819,25.992,196.321,579.784,356.990,481.915,202.775,575.793,148.276,179.029,148.276,345.898,322.208,361.075,19.363,19.523,19.363 +820,26.022,203.293,590.661,348.877,471.243,208.584,586.201,139.874,5.651,139.874,348.878,321.399,362.718,19.214,19.903,19.214 +821,26.053,212.132,600.986,338.628,461.245,216.207,596.337,131.234,12.027,131.234,352.206,319.657,364.570,19.103,20.407,19.103 +822,26.084,222.539,610.706,326.447,453.118,225.631,605.862,122.546,18.591,122.546,354.494,317.183,365.986,19.613,20.792,19.613 +823,26.117,234.699,618.500,313.646,444.657,237.220,612.697,113.480,25.677,113.480,356.501,314.814,369.155,19.975,24.784,19.975 +824,26.151,250.914,625.418,298.761,440.438,252.309,620.093,104.676,32.593,104.676,360.116,311.305,371.125,23.770,23.839,23.770 +825,26.189,261.811,627.985,283.414,438.473,262.202,622.927,94.412,39.560,94.412,360.933,308.552,371.080,25.772,23.531,25.772 +826,26.220,281.298,629.295,267.453,439.080,280.978,624.149,86.444,47.175,86.444,360.790,306.520,371.102,24.636,21.627,24.636 +827,26.250,294.604,629.991,251.344,442.479,292.979,623.270,76.403,53.858,76.403,357.194,304.821,371.024,25.741,19.753,25.741 +828,26.282,317.526,641.224,236.017,448.552,308.054,618.756,67.141,60.709,67.141,320.878,302.868,369.643,20.706,18.209,20.706 +829,26.312,328.785,620.129,222.767,455.388,323.128,610.739,58.931,67.264,58.931,347.792,304.085,369.717,21.840,19.544,21.840 +830,26.343,328.785,620.129,222.767,455.388,323.128,610.739,58.931,67.264,58.931,347.792,304.085,369.717,21.840,19.544,21.840 +831,26.372,339.543,605.603,210.412,464.729,335.388,600.769,49.313,73.459,49.313,356.515,304.685,369.264,25.435,18.978,25.435 +832,26.404,349.293,592.972,200.133,475.364,345.187,589.496,40.247,81.254,40.247,358.146,305.787,368.907,26.201,18.399,26.201 +833,26.436,356.857,579.770,191.476,487.465,352.390,577.052,31.316,88.647,31.316,357.611,307.339,368.069,25.647,17.869,25.647 +834,26.468,361.818,566.171,185.199,500.674,357.416,564.322,22.785,95.847,22.785,357.305,311.162,366.854,26.225,19.722,26.225 +835,26.500,364.193,552.925,180.471,513.695,359.695,551.752,14.613,103.168,14.613,356.757,314.128,366.054,25.612,21.017,25.612 +836,26.534,364.189,540.382,177.245,526.276,359.278,539.805,6.700,110.338,6.700,354.846,317.306,364.736,25.048,20.802,25.048 +837,26.566,362.958,528.689,174.818,537.976,356.898,528.780,179.142,118.217,179.142,352.275,319.281,364.395,23.890,22.910,23.890 +838,26.597,361.185,519.227,175.566,549.391,355.899,519.973,171.964,124.641,171.964,354.671,320.655,365.349,20.724,21.451,20.724 +839,26.629,357.765,509.508,176.841,559.303,352.677,510.868,165.040,131.634,165.040,354.224,321.220,364.758,19.917,21.260,19.917 +840,26.660,354.875,500.110,179.378,568.363,348.735,502.531,158.480,138.166,158.480,350.202,321.474,363.401,20.126,21.583,20.126 +841,26.691,352.902,490.458,183.784,576.394,344.714,494.761,152.281,144.197,152.281,342.364,321.660,360.864,19.445,21.047,19.445 +842,26.722,400.654,447.269,189.359,585.244,339.533,487.131,146.889,151.172,146.889,212.826,320.126,358.767,18.427,20.075,18.427 +843,26.753,349.695,469.703,195.025,591.775,335.015,481.622,140.928,157.595,140.928,318.403,319.613,356.221,18.971,21.061,18.971 +844,26.784,338.027,468.561,201.342,597.929,330.074,476.383,135.476,164.560,135.476,331.710,319.082,354.019,19.297,21.270,19.297 +845,26.816,329.681,465.711,208.381,603.696,324.661,471.602,130.437,171.552,130.437,336.443,318.781,351.921,19.577,22.760,19.577 +846,26.848,322.568,462.978,215.077,609.776,318.815,468.228,125.559,178.409,125.559,338.052,318.377,350.959,19.671,24.157,19.671 +847,26.879,316.304,459.783,222.435,614.688,313.075,465.158,120.995,5.377,120.995,337.172,319.353,349.711,19.764,26.096,19.764 +848,26.910,316.304,459.783,222.435,614.688,313.075,465.158,120.995,5.377,120.995,337.172,319.353,349.711,19.764,26.096,19.764 +849,26.938,310.252,457.377,229.395,619.001,307.485,462.890,116.647,11.821,116.647,336.768,321.316,349.105,19.356,26.928,19.356 +850,26.969,304.286,455.999,236.276,623.152,301.976,461.596,112.426,18.925,112.426,336.692,323.216,348.803,19.016,27.135,19.016 +851,27.002,298.650,454.550,243.030,626.497,296.727,460.319,108.435,25.233,108.435,337.099,325.151,349.261,19.290,26.701,19.290 +852,27.034,292.759,453.541,249.985,629.191,291.227,459.515,104.381,30.964,104.381,336.871,326.362,349.206,18.728,27.097,18.728 +853,27.067,286.925,453.252,256.454,631.713,285.779,459.499,100.401,37.435,100.401,336.655,328.023,349.357,19.043,26.242,19.043 +854,27.100,282.200,453.100,262.635,633.455,281.417,459.558,96.911,43.178,96.911,336.777,329.660,349.788,19.193,25.648,19.193 +855,27.132,276.819,452.355,270.258,633.465,276.453,459.115,93.094,48.871,93.094,335.321,331.232,348.861,18.729,22.162,18.729 +856,27.164,271.816,453.514,276.437,634.324,271.892,460.143,89.341,54.200,89.341,335.185,333.054,348.444,18.884,21.761,18.884 +857,27.196,266.739,453.631,282.244,634.653,267.268,460.741,85.741,59.128,85.741,334.828,334.080,349.088,18.884,21.691,18.884 +858,27.227,262.162,453.821,287.660,634.666,263.235,461.640,82.185,63.322,82.185,333.695,335.414,349.480,19.601,21.172,19.601 +859,27.257,256.976,453.009,292.900,633.613,258.893,462.515,78.593,66.744,78.593,329.492,336.142,348.888,19.433,20.304,19.433 +860,27.287,251.107,449.321,297.582,632.219,255.022,463.119,74.160,69.444,74.160,319.908,337.664,348.593,20.024,20.131,20.024 +861,27.317,223.800,385.400,303.441,631.357,250.376,465.127,71.565,72.013,71.565,180.882,336.192,348.961,17.709,20.208,17.709 +862,27.349,235.363,439.660,308.008,629.423,246.089,466.580,68.274,74.168,68.274,290.436,336.536,348.392,18.003,20.060,18.003 +863,27.380,235.550,452.299,314.463,626.559,243.033,467.916,64.398,77.339,64.398,313.231,336.463,347.866,20.723,19.931,20.723 +864,27.410,235.550,452.299,314.463,626.559,243.033,467.916,64.398,77.339,64.398,313.231,336.463,347.866,20.723,19.931,20.723 +865,27.440,233.124,458.522,319.733,623.626,239.349,469.484,60.408,80.665,60.408,322.253,335.862,347.464,22.780,19.816,22.780 +866,27.471,229.406,463.192,324.762,619.523,234.841,471.254,56.012,84.508,56.012,326.964,335.108,346.410,24.282,19.908,24.282 +867,27.502,224.080,467.142,331.184,614.502,229.746,474.234,51.376,89.552,51.376,327.655,333.107,345.809,24.199,19.609,24.199 +868,27.533,219.305,471.466,336.587,608.546,224.695,477.147,46.500,94.456,46.500,329.007,332.486,344.669,25.440,19.771,25.440 +869,27.566,214.140,476.700,342.951,601.905,219.659,481.532,41.203,99.866,41.203,329.441,331.288,344.111,25.939,21.889,25.939 +870,27.597,208.602,482.299,349.153,594.042,214.419,486.485,35.735,105.186,35.735,330.034,329.424,344.368,25.441,24.058,25.441 +871,27.628,203.622,488.455,354.570,585.404,209.781,492.008,29.982,110.695,29.982,329.950,328.060,344.171,26.152,25.341,26.152 +872,27.658,198.382,496.198,359.395,575.882,204.926,499.061,23.629,115.942,23.629,330.332,326.908,344.618,26.282,26.224,26.282 +873,27.689,194.124,504.494,363.420,565.114,200.734,506.551,17.281,121.724,17.281,331.632,325.206,345.478,25.824,26.539,25.824 +874,27.719,190.450,513.628,366.393,553.917,197.339,514.935,10.739,127.535,10.739,332.690,324.127,346.714,25.155,27.039,25.155 +875,27.750,187.553,523.676,367.916,540.973,194.772,524.144,3.710,133.433,3.710,333.273,322.707,347.740,25.288,25.915,25.288 +876,27.782,185.492,537.370,368.536,527.942,193.965,536.818,176.269,139.230,176.269,332.576,321.925,349.559,20.370,25.455,20.370 +877,27.814,181.365,550.827,366.579,514.050,193.947,548.311,168.690,145.152,168.690,326.337,321.546,351.998,19.808,23.462,19.808 +878,27.844,181.365,550.827,366.579,514.050,193.947,548.311,168.690,145.152,168.690,326.337,321.546,351.998,19.808,23.462,19.808 +879,27.873,170.851,567.477,362.931,499.987,195.603,558.591,160.253,150.695,160.253,301.979,321.609,354.577,18.800,19.792,18.800 +880,27.904,178.523,581.706,357.578,486.508,199.735,570.652,152.475,156.926,152.475,309.883,322.094,357.723,19.447,20.180,19.447 +881,27.934,198.447,586.691,350.760,474.269,205.375,581.627,143.835,161.830,143.835,344.290,321.302,361.452,19.183,21.985,19.183 +882,27.966,207.961,596.952,341.860,463.847,212.724,592.216,135.166,167.935,135.166,350.736,319.949,364.170,19.471,19.991,19.471 +883,27.998,218.129,607.002,330.799,454.661,221.897,601.828,126.062,173.766,126.062,353.348,318.366,366.148,19.546,19.932,19.546 +884,28.030,229.927,616.203,318.000,447.500,232.757,610.620,116.881,0.000,116.881,355.554,316.000,368.072,19.734,19.000,19.734 +885,28.061,243.037,623.246,303.318,442.276,244.679,617.879,107.017,5.856,107.017,358.926,314.530,370.151,22.051,19.615,22.051 +886,28.092,256.798,627.166,287.631,438.792,257.484,621.790,97.271,11.634,97.271,359.845,311.813,370.684,26.297,20.597,26.297 +887,28.123,276.551,628.960,271.483,438.885,276.499,624.445,89.349,17.255,89.349,362.181,309.838,371.211,25.123,20.952,25.123 +888,28.153,292.617,627.332,256.054,439.275,291.721,622.250,79.992,24.341,79.992,362.458,308.193,372.779,26.473,21.671,26.473 +889,28.186,306.936,623.850,240.571,444.348,305.176,618.989,70.093,31.329,70.093,362.068,306.620,372.408,21.429,20.278,21.429 +890,28.218,322.192,617.877,226.700,451.581,319.204,612.533,60.794,37.304,60.794,359.012,304.612,371.256,22.840,19.166,22.840 +891,28.250,339.892,617.809,214.751,460.766,330.022,605.370,51.569,43.152,51.569,338.094,303.533,369.852,20.776,18.147,20.776 +892,28.280,356.139,607.420,204.037,471.087,341.901,593.618,44.109,48.652,44.109,328.886,303.468,368.545,22.420,18.798,22.420 +893,28.310,356.139,607.420,204.037,471.087,341.901,593.618,44.109,48.652,44.109,328.886,303.468,368.545,22.420,18.798,22.420 +894,28.338,356.016,585.515,196.121,481.792,350.433,581.697,34.371,54.728,34.371,354.012,304.583,367.539,25.623,20.988,25.623 +895,28.369,360.645,571.201,188.779,494.687,356.226,569.057,25.877,60.631,25.877,356.409,306.359,366.232,26.213,19.744,26.213 +896,28.401,364.568,558.221,184.239,506.783,359.781,556.692,17.718,67.598,17.718,354.756,308.081,364.808,25.762,21.158,25.762 +897,28.436,365.683,545.541,181.231,520.041,361.530,544.824,9.794,75.158,9.794,355.346,310.285,363.775,25.469,20.792,25.469 +898,28.470,364.273,533.523,178.983,533.453,359.359,533.330,2.242,82.179,2.242,350.632,313.376,360.467,24.505,20.364,24.505 +899,28.503,363.555,523.628,179.370,545.942,359.145,524.014,175.001,89.018,175.001,353.150,316.194,362.003,21.004,22.042,21.004 +900,28.536,360.509,513.674,179.318,557.583,355.513,514.728,168.089,95.793,168.089,352.279,319.318,362.493,20.441,20.878,20.441 +901,28.569,356.310,504.449,179.823,567.844,350.858,506.274,161.497,102.958,161.497,351.968,322.373,363.466,19.597,21.440,19.597 +902,28.601,351.399,496.107,182.698,576.590,346.401,498.408,155.286,109.160,155.286,351.788,323.839,362.792,19.928,20.741,19.928 +903,28.634,346.506,488.786,186.201,584.858,341.427,491.792,149.378,115.445,149.378,350.167,325.289,361.970,19.827,20.514,19.827 +904,28.667,341.694,481.972,190.888,591.931,336.544,485.733,143.862,121.608,143.862,347.767,325.858,360.520,19.292,19.785,19.292 +905,28.701,337.608,475.166,195.749,597.410,331.643,480.444,138.497,128.157,138.497,342.638,325.817,358.566,19.319,21.118,19.319 +906,28.734,382.569,416.640,201.636,603.612,325.952,475.435,133.919,133.932,133.919,193.873,324.089,357.119,17.928,20.911,17.928 +907,28.766,336.418,452.371,208.107,608.631,320.883,471.490,129.094,140.782,129.094,305.837,324.282,355.106,17.996,20.295,17.996 +908,28.798,323.762,457.038,214.299,612.189,316.326,468.063,124.001,147.095,124.001,326.481,323.679,353.078,19.842,20.100,19.842 +909,28.830,315.999,456.716,220.762,615.499,311.243,465.029,119.772,153.204,119.772,331.921,322.902,351.076,19.487,20.729,19.487 +910,28.862,309.690,455.264,227.718,618.572,306.161,462.647,115.545,159.121,115.545,332.650,322.307,349.017,19.478,23.869,19.478 +911,28.893,303.664,453.746,234.882,622.015,300.926,460.698,111.496,166.329,111.496,333.649,321.885,348.594,19.277,24.344,19.277 +912,28.924,297.872,453.096,241.669,624.354,295.873,459.371,107.671,172.875,107.671,334.135,322.242,347.304,19.073,26.419,19.073 +913,28.954,292.538,452.005,248.953,626.520,290.959,458.384,103.904,178.919,103.904,333.462,322.094,346.606,19.088,26.844,19.088 +914,28.984,287.071,451.194,255.615,628.223,285.867,457.851,100.253,5.161,100.253,332.542,322.847,346.073,18.854,26.820,18.854 +915,29.015,282.379,451.122,262.098,629.984,281.561,457.872,96.911,11.454,96.911,332.806,325.382,346.406,19.073,27.936,19.073 +916,29.047,277.109,451.837,268.472,631.209,276.759,458.050,93.229,17.176,93.229,334.258,327.182,346.703,18.570,27.672,18.570 +917,29.077,277.109,451.837,268.472,631.209,276.759,458.050,93.229,17.176,93.229,334.258,327.182,346.703,18.570,27.672,18.570 +918,29.106,272.314,452.504,274.962,632.248,272.354,459.110,89.651,23.334,89.651,333.091,328.666,346.302,18.573,27.888,18.573 +919,29.136,267.310,453.611,281.138,632.564,267.709,459.674,86.228,28.850,86.228,334.647,330.423,346.798,18.849,26.922,18.849 +920,29.168,262.764,453.726,287.318,632.741,263.668,460.674,82.593,34.177,82.593,333.345,331.464,347.359,19.595,26.321,19.595 +921,29.206,258.423,455.196,293.975,631.922,259.655,461.526,78.983,39.423,78.983,334.733,332.521,347.629,20.318,25.700,20.318 +922,29.237,253.919,456.172,300.366,630.639,255.619,462.706,75.417,44.009,75.417,334.074,333.827,347.579,21.283,22.262,21.283 +923,29.267,248.783,456.557,306.352,628.905,251.258,464.090,71.811,48.302,71.811,331.697,334.504,347.555,20.955,21.911,20.955 +924,29.301,244.041,457.285,311.906,627.470,247.467,465.829,68.152,51.640,68.152,329.616,335.474,348.024,21.563,20.505,21.563 +925,29.333,237.854,458.831,317.004,625.417,242.567,468.166,63.211,54.233,63.211,326.932,335.942,347.846,21.910,19.955,21.910 +926,29.366,228.737,451.747,321.923,622.385,239.253,469.543,59.421,56.310,59.421,305.942,337.258,347.285,20.858,19.415,20.858 +927,29.397,187.729,401.082,327.444,619.910,234.324,472.916,57.031,57.995,57.031,176.749,336.125,347.995,18.049,19.716,18.049 +928,29.429,213.243,453.080,332.283,616.423,230.077,475.640,53.270,59.452,53.270,291.614,336.153,347.912,18.177,19.765,18.177 +929,29.461,215.852,466.657,337.822,611.826,226.123,478.493,49.048,61.557,49.048,316.480,336.146,347.822,18.934,19.711,18.934 +930,29.492,215.151,471.725,343.706,606.424,224.029,480.439,44.468,64.453,44.468,322.440,335.947,347.320,24.833,20.666,24.833 +931,29.523,211.534,477.605,347.932,600.737,219.210,483.932,39.495,67.380,39.495,327.347,335.154,347.242,26.017,19.615,26.017 +932,29.553,206.666,483.373,353.016,593.340,214.314,488.573,34.216,71.323,34.216,328.720,333.958,347.216,26.329,19.801,26.329 +933,29.585,202.289,490.487,358.964,584.735,209.876,494.586,28.383,75.530,28.383,330.793,332.806,348.039,25.471,23.239,25.471 +934,29.616,197.908,497.946,361.196,575.554,204.702,500.746,22.401,79.909,22.401,331.688,331.011,346.386,25.486,20.767,25.486 +935,29.647,193.925,506.764,366.015,565.148,201.083,508.809,15.945,84.289,15.945,333.237,328.860,348.127,25.137,24.876,25.137 +936,29.677,193.925,506.764,366.015,565.148,201.083,508.809,15.945,84.289,15.945,333.237,328.860,348.127,25.137,24.876,25.137 +937,29.706,190.592,515.860,367.484,553.949,197.312,516.966,9.340,88.014,9.340,334.214,326.428,347.835,25.123,25.430,25.123 +938,29.738,187.647,528.761,368.491,541.575,194.393,529.025,2.246,92.891,2.246,335.409,323.799,348.912,19.377,25.230,19.377 +939,29.769,187.515,539.670,368.326,528.613,193.659,539.125,174.936,97.765,174.936,337.488,321.885,349.825,19.380,25.762,19.380 +940,29.801,188.009,551.743,366.223,515.375,193.868,550.413,167.213,102.265,167.213,339.653,319.537,351.670,19.684,25.662,19.684 +941,29.833,189.908,563.886,361.560,501.825,195.465,561.771,159.163,107.049,159.163,341.219,317.690,353.111,19.808,23.889,19.808 +942,29.865,193.360,576.452,355.983,488.793,199.303,573.155,150.986,111.801,150.986,342.276,316.053,355.869,19.335,23.583,19.335 +943,29.897,193.619,593.155,346.584,475.838,204.707,584.656,142.530,117.384,142.530,329.664,315.809,357.605,19.669,21.279,19.669 +944,29.927,193.056,615.079,336.816,464.264,212.395,594.672,133.461,121.884,133.461,304.250,314.604,360.480,19.036,20.640,19.036 +945,29.957,197.359,640.679,324.726,454.172,222.432,604.323,124.592,127.304,124.592,275.038,314.233,363.364,19.416,19.999,19.416 +946,29.988,230.743,619.463,311.671,446.212,234.175,612.290,115.570,131.139,115.570,350.617,313.823,366.520,19.573,21.719,19.573 +947,30.018,244.867,624.846,297.855,440.871,246.584,618.700,105.604,136.284,105.604,357.370,312.843,370.132,22.447,19.458,22.447 +948,30.050,258.774,629.099,282.784,438.108,259.489,622.457,96.139,141.248,96.139,358.204,312.809,371.566,25.926,19.045,25.926 +949,30.081,274.840,630.120,267.347,438.029,274.509,624.162,86.820,146.094,86.820,360.555,312.851,372.489,25.183,18.749,25.183 +950,30.113,290.694,628.282,252.035,440.271,289.566,623.057,77.821,150.832,77.821,362.488,312.361,373.179,25.626,18.784,25.626 +951,30.143,290.694,628.282,252.035,440.271,289.566,623.057,77.821,150.832,77.821,362.488,312.361,373.179,25.626,18.784,25.626 +952,30.172,308.199,622.789,237.143,445.205,306.421,618.092,69.266,155.833,69.266,362.387,311.793,372.432,21.906,18.505,21.906 +953,30.205,322.923,614.950,223.356,451.588,320.466,610.687,60.036,160.787,60.036,362.830,311.477,372.671,24.205,18.772,24.205 +954,30.236,335.514,605.434,211.235,459.941,332.307,601.479,50.964,165.964,50.964,362.199,310.931,372.383,25.444,18.918,25.444 +955,30.267,345.391,593.634,200.746,469.584,342.179,590.736,42.061,171.158,42.061,363.683,309.983,372.334,26.034,19.389,26.034 +956,30.299,354.010,581.910,192.403,480.575,349.783,579.127,33.362,176.112,33.362,361.161,309.781,371.284,26.455,19.102,26.455 +957,30.331,359.511,569.508,186.024,492.124,354.971,567.381,25.110,0.979,25.110,359.807,308.246,369.834,25.799,18.348,25.799 +958,30.363,365.381,560.182,182.095,503.048,357.659,557.768,17.354,5.689,17.354,351.607,308.862,367.788,21.476,21.503,21.476 +959,30.395,436.296,559.872,179.312,514.638,359.943,545.990,10.305,9.403,10.305,211.443,308.254,366.652,20.930,21.051,20.930 +960,30.427,377.155,536.243,178.072,526.636,358.935,534.996,3.918,13.612,3.918,325.498,309.429,362.022,23.261,20.580,23.261 +961,30.459,368.313,525.219,178.912,537.267,359.168,525.826,176.200,18.285,176.200,342.905,309.275,361.236,20.862,21.566,20.862 +962,30.490,363.201,515.589,180.187,548.584,357.474,516.647,169.533,24.228,169.533,348.631,310.692,360.278,20.410,22.524,20.410 +963,30.521,359.174,506.248,183.086,559.622,354.495,507.652,163.301,30.041,163.301,348.457,311.326,358.228,19.731,22.685,19.731 +964,30.552,354.767,498.018,187.063,569.235,350.952,499.619,157.230,36.347,157.230,347.846,312.829,356.120,19.955,21.549,19.955 +965,30.583,350.111,490.475,190.903,579.381,346.144,492.623,151.565,42.541,151.565,346.625,314.889,355.647,19.603,22.537,19.603 +966,30.614,345.038,483.791,195.497,588.132,341.024,486.486,146.127,48.958,146.127,345.289,317.324,354.959,19.654,21.695,19.654 +967,30.644,345.038,483.791,195.497,588.132,341.024,486.486,146.127,48.958,146.127,345.289,317.324,354.959,19.654,21.695,19.654 +968,30.673,339.835,478.177,200.664,595.496,336.086,481.206,141.066,55.654,141.066,344.688,320.047,354.327,19.297,21.563,19.297 +969,30.705,334.208,473.560,205.367,603.535,330.311,477.289,136.259,61.798,136.259,344.324,323.536,355.111,18.839,20.729,18.839 +970,30.736,328.431,469.828,210.032,609.579,324.818,473.892,131.634,67.834,131.634,344.473,326.465,355.348,19.350,20.820,19.350 +971,30.768,322.800,466.674,214.477,614.585,319.457,471.050,127.373,74.291,127.373,344.567,328.023,355.581,18.829,20.396,18.829 +972,30.801,317.357,463.938,218.962,618.924,314.259,468.660,123.269,80.591,123.269,344.531,329.286,355.826,19.098,20.334,19.098 +973,30.834,312.709,460.996,223.649,622.491,309.449,466.815,119.264,86.503,119.264,342.160,330.156,355.499,19.343,19.691,19.343 +974,30.866,307.094,460.112,228.328,625.449,304.654,465.220,115.533,92.490,115.533,343.638,331.600,354.959,19.247,19.460,19.247 +975,30.898,302.778,457.400,232.835,627.898,300.205,463.767,112.001,98.686,112.001,341.099,333.917,354.834,19.087,20.320,19.087 +976,30.930,299.631,452.372,237.533,628.636,296.347,462.180,108.517,104.095,108.517,332.347,332.762,353.034,18.520,20.481,18.520 +977,30.964,305.423,412.316,243.037,630.344,291.770,461.242,105.593,110.801,105.593,250.364,331.793,351.955,17.965,20.587,17.965 +978,30.995,291.854,441.227,247.742,630.869,287.756,460.126,102.236,116.966,102.236,312.012,330.961,350.689,17.991,20.343,17.991 +979,31.026,286.471,446.055,252.424,630.951,284.362,459.240,99.090,122.735,99.090,322.498,330.163,349.202,18.959,19.768,18.959 +980,31.057,281.442,448.252,257.683,630.954,280.376,458.584,95.891,128.884,95.891,326.805,329.520,347.578,19.042,19.988,19.042 +981,31.087,276.791,449.159,263.250,631.250,276.354,458.184,92.770,135.000,92.770,328.922,328.098,346.993,18.962,21.920,18.962 +982,31.118,272.508,450.474,269.297,630.970,272.543,458.464,89.754,140.599,89.754,329.001,327.526,344.981,18.403,23.568,18.403 +983,31.150,267.865,450.393,274.933,630.396,268.307,458.121,86.730,147.245,86.730,329.263,326.679,344.744,18.513,24.036,18.513 +984,31.182,264.011,451.509,280.990,629.957,264.791,458.674,83.788,153.159,83.788,329.645,325.624,344.060,19.389,25.091,19.389 +985,31.214,259.919,452.013,286.966,629.231,261.126,459.258,80.538,159.283,80.538,329.127,325.858,343.816,19.892,26.489,19.892 +986,31.244,255.435,452.959,293.016,628.159,257.029,460.130,77.471,165.273,77.471,328.975,326.006,343.668,19.741,27.274,19.741 +987,31.274,255.435,452.959,293.016,628.159,257.029,460.130,77.471,165.273,77.471,328.975,326.006,343.668,19.741,27.274,19.741 +988,31.302,251.537,453.990,299.039,626.902,253.575,461.232,74.280,170.991,74.280,328.536,326.279,343.584,20.954,27.522,20.954 +989,31.336,247.786,455.765,305.231,625.329,250.159,462.631,70.935,176.553,70.935,328.996,326.913,343.525,22.128,27.264,22.128 +990,31.369,243.346,457.893,311.383,623.187,245.987,464.263,67.479,1.818,67.479,329.911,327.629,343.703,21.990,27.827,21.990 +991,31.403,239.146,460.162,317.649,620.737,242.116,466.237,63.947,7.306,63.947,330.426,328.694,343.950,22.599,27.239,22.599 +992,31.437,234.751,462.430,323.288,617.953,238.137,468.333,60.160,12.529,60.160,330.693,330.710,344.305,23.198,26.899,23.198 +993,31.470,230.731,465.346,328.971,614.671,234.266,470.649,56.310,17.565,56.310,331.988,332.303,344.734,24.129,26.605,24.129 +994,31.503,225.967,468.026,335.064,611.069,230.365,473.738,52.407,22.175,52.407,330.955,333.360,345.375,24.654,24.410,24.654 +995,31.536,221.135,470.380,340.689,606.186,226.641,476.540,48.205,26.014,48.205,328.804,334.079,345.329,25.789,21.839,25.789 +996,31.568,214.559,472.420,346.268,601.517,222.615,480.184,43.939,29.010,43.939,324.087,334.310,346.464,25.177,20.599,25.177 +997,31.601,204.473,474.847,350.974,596.712,217.862,485.052,37.313,31.061,37.313,313.439,334.428,347.108,24.135,19.636,24.135 +998,31.633,173.324,462.050,355.821,591.165,214.858,488.780,32.764,32.709,32.764,249.109,333.947,347.891,22.446,19.507,22.446 +999,31.665,180.462,478.758,359.701,584.204,209.660,495.707,30.135,34.136,30.135,280.861,334.801,348.382,18.761,19.276,18.761 +1000,31.698,192.932,494.865,363.661,577.068,206.460,501.187,25.046,35.602,25.046,319.222,333.864,349.086,19.186,19.221,19.186 +1001,31.730,193.287,501.426,367.242,568.542,204.048,505.169,19.179,37.747,19.179,327.124,333.456,349.911,25.666,19.488,25.666 +1002,31.762,190.906,509.557,369.848,559.179,200.896,511.955,13.496,40.236,13.496,330.067,332.367,350.615,25.165,19.965,25.165 +1003,31.794,188.900,519.158,371.248,548.829,197.879,520.259,6.992,43.279,6.992,333.024,331.244,351.115,24.720,20.403,24.720 +1004,31.828,187.500,529.500,372.101,537.434,196.051,529.500,0.000,46.701,0.000,335.000,329.227,352.101,23.000,21.778,23.000 +1005,31.859,187.523,542.685,371.530,524.975,195.170,541.729,172.875,50.477,172.875,338.739,327.390,354.152,19.349,23.218,19.349 +1006,31.890,188.945,554.376,368.911,512.565,195.630,552.627,165.343,53.973,165.343,341.736,325.185,355.558,19.513,24.336,19.513 +1007,31.920,191.545,565.990,364.051,500.200,197.360,563.581,157.490,57.628,157.490,343.925,322.212,356.513,19.442,24.350,19.442 +1008,31.950,195.841,577.889,357.379,487.876,200.886,574.897,149.333,61.607,149.333,346.252,319.547,357.983,19.246,23.752,19.246 +1009,31.981,202.675,589.182,349.343,475.842,206.796,585.841,140.964,65.266,140.964,349.393,316.666,360.004,19.272,24.941,19.272 +1010,32.011,202.675,589.182,349.343,475.842,206.796,585.841,140.964,65.266,140.964,349.393,316.666,360.004,19.272,24.941,19.272 +1011,32.040,210.603,600.185,339.190,464.911,214.377,596.032,132.258,69.228,132.258,350.733,314.127,361.958,19.215,24.665,19.215 +1012,32.072,221.105,609.728,326.711,455.740,223.776,605.671,123.362,73.051,123.362,353.950,311.794,363.663,19.855,23.449,19.855 +1013,32.103,232.931,619.151,313.157,448.761,235.336,613.861,114.444,76.827,114.444,353.388,309.612,365.008,20.194,22.581,20.194 +1014,32.135,245.803,627.448,297.769,443.631,247.635,620.463,104.701,80.776,104.701,353.088,307.923,367.531,22.596,20.298,22.596 +1015,32.167,258.251,640.699,281.552,441.240,259.717,624.115,95.049,85.135,95.049,334.876,306.530,368.174,26.251,18.571,26.251 +1016,32.200,282.334,663.506,265.831,440.978,280.905,625.321,87.856,89.297,87.856,293.132,306.100,369.556,25.319,18.238,25.319 +1017,32.232,292.623,631.249,250.480,442.901,290.991,623.895,77.493,92.816,77.493,355.877,306.269,370.944,25.490,19.386,25.490 +1018,32.262,309.486,624.197,235.912,447.258,307.314,618.533,69.015,96.613,69.015,358.838,306.886,370.971,22.152,20.040,22.152 +1019,32.292,323.777,616.629,222.882,454.109,320.891,611.638,59.964,100.469,59.964,359.334,307.405,370.865,23.670,19.325,23.670 +1020,32.323,336.437,606.721,210.485,462.509,332.773,602.188,51.050,104.381,51.050,359.348,308.780,371.006,25.321,20.069,25.321 +1021,32.353,346.522,595.680,200.818,472.777,342.487,592.007,42.310,108.083,42.310,359.137,310.247,370.050,25.333,18.566,25.333 +1022,32.384,354.231,582.654,192.069,483.828,350.176,579.951,33.690,111.801,33.690,360.000,311.968,369.746,26.348,18.570,26.348 +1023,32.417,359.980,570.310,185.306,495.623,355.183,568.018,25.541,115.506,25.541,358.345,314.023,368.979,26.292,19.098,26.292 +1024,32.449,362.758,557.943,180.923,508.014,358.371,556.539,17.745,119.131,17.745,358.378,315.384,367.591,25.639,20.857,25.639 +1025,32.479,362.758,557.943,180.923,508.014,358.371,556.539,17.745,119.131,17.745,358.378,315.384,367.591,25.639,20.857,25.639 +1026,32.508,364.623,546.018,177.521,519.977,359.769,545.140,10.242,122.713,10.242,357.771,317.242,367.636,25.049,20.559,25.049 +1027,32.538,363.061,534.567,175.241,531.054,357.618,534.274,3.079,126.793,3.079,353.672,318.600,364.574,24.161,21.231,24.161 +1028,32.569,362.360,525.375,174.496,541.569,356.811,525.740,176.231,130.498,176.231,354.800,319.547,365.923,21.552,21.830,21.552 +1029,32.600,360.068,516.404,175.453,551.492,354.969,517.337,169.636,133.919,169.636,355.095,319.796,365.463,20.278,21.663,20.278 +1030,32.631,356.586,507.662,177.161,560.748,351.839,509.049,163.713,137.079,163.713,354.444,320.493,364.335,19.833,22.538,19.833 +1031,32.662,354.554,499.414,179.845,568.993,348.558,501.832,158.039,139.608,158.039,350.244,320.624,363.175,19.820,22.159,19.820 +1032,32.694,351.765,492.116,183.320,576.387,345.093,495.537,152.855,141.520,152.855,346.686,321.419,361.682,19.509,21.156,19.509 +1033,32.725,351.239,483.965,187.115,582.650,341.432,490.042,148.213,142.583,148.213,336.831,322.650,359.907,19.227,19.825,19.227 +1034,32.757,402.778,437.782,190.492,589.037,336.940,484.987,144.360,143.785,144.360,197.270,321.593,359.294,18.309,20.335,18.309 +1035,32.788,382.541,439.862,194.995,594.492,333.107,480.774,140.389,145.235,140.389,229.471,322.365,357.807,18.064,19.416,18.064 +1036,32.818,348.186,459.248,199.052,599.081,329.244,477.243,136.469,147.058,136.469,304.355,322.297,356.609,18.089,19.452,18.089 +1037,32.851,337.928,461.141,203.489,602.982,325.802,474.376,132.497,149.657,132.497,319.002,322.199,354.903,18.908,19.323,18.908 +1038,32.882,330.453,461.176,208.054,606.591,322.168,471.410,128.991,153.072,128.991,327.405,321.605,353.739,19.357,19.417,19.357 +1039,32.912,323.940,459.937,213.239,610.066,317.980,468.351,125.311,157.109,125.311,331.748,321.311,352.370,19.551,20.247,19.551 +1040,32.942,323.940,459.937,213.239,610.066,317.980,468.351,125.311,157.109,125.311,331.748,321.311,352.370,19.551,20.247,19.551 +1041,32.969,318.188,459.172,218.347,613.078,313.934,466.012,121.884,162.160,121.884,334.621,321.244,350.731,19.690,22.551,19.690 +1042,33.002,313.620,457.612,223.806,616.132,310.068,464.109,118.671,167.400,118.671,334.730,320.835,349.539,19.533,23.893,19.533 +1043,33.036,309.202,456.032,229.031,619.246,306.145,462.424,115.560,172.875,115.560,335.319,320.754,349.492,19.455,24.559,19.455 +1044,33.068,305.021,455.050,234.407,621.184,302.459,461.198,112.620,177.709,112.620,334.385,321.183,347.705,19.154,25.340,19.154 +1045,33.101,300.953,453.743,239.938,623.429,298.764,459.821,109.799,3.814,109.799,334.805,321.353,347.725,19.232,26.142,19.232 +1046,33.133,297.030,452.778,244.238,625.532,295.041,459.242,107.103,9.700,107.103,334.229,322.914,347.754,19.042,27.018,19.042 +1047,33.164,293.102,452.735,249.082,627.476,291.496,458.952,104.482,15.826,104.482,334.712,323.756,347.553,18.929,27.416,18.929 +1048,33.197,289.265,452.712,253.288,629.267,287.984,458.784,101.908,21.934,101.908,335.538,325.724,347.948,19.370,26.851,19.370 +1049,33.232,285.874,452.553,257.491,630.965,284.807,458.823,99.660,27.816,99.660,335.850,327.517,348.570,18.815,26.609,18.815 +1050,33.263,283.063,452.682,261.750,632.628,282.209,459.227,97.431,33.606,97.431,335.980,328.100,349.181,19.099,26.404,19.099 +1051,33.294,279.687,453.029,265.766,633.497,279.117,459.459,95.069,39.500,95.069,336.164,329.569,349.074,18.821,25.547,18.821 +1052,33.325,276.343,452.372,269.627,634.397,275.994,459.635,92.752,45.630,92.752,335.190,330.953,349.732,18.565,25.796,18.565 +1053,33.356,273.198,452.975,274.922,633.870,273.150,459.421,90.428,51.520,90.428,335.968,332.339,348.860,18.634,21.879,18.634 +1054,33.386,270.081,453.576,277.899,634.742,270.294,460.344,88.201,57.081,88.201,335.557,333.505,349.100,18.462,21.151,18.462 +1055,33.417,266.952,453.643,281.302,635.080,267.461,460.948,86.009,62.939,86.009,334.698,334.981,349.345,19.070,20.211,19.070 +1056,33.448,264.034,453.832,284.559,635.198,264.889,461.475,83.616,68.725,83.616,334.285,335.779,349.666,19.452,19.882,19.452 +1057,33.478,264.034,453.832,284.559,635.198,264.889,461.475,83.616,68.725,83.616,334.285,335.779,349.666,19.452,19.882,19.452 +1058,33.508,259.812,450.345,287.583,635.147,261.736,462.164,80.754,74.539,80.754,325.827,338.462,349.777,18.432,19.953,18.432 +1059,33.538,242.077,379.385,290.823,635.030,258.788,462.940,78.690,80.417,78.690,179.642,337.356,350.062,18.043,20.387,18.043 +1060,33.569,250.585,443.128,294.930,633.504,255.510,463.376,76.329,86.609,76.329,307.572,336.306,349.249,17.936,21.082,17.936 +1061,33.600,249.935,450.206,296.528,632.406,253.818,463.520,73.740,91.813,73.740,320.440,335.433,348.178,21.120,21.287,21.120 +1062,33.632,247.426,454.314,300.662,630.308,250.785,464.129,71.107,98.183,71.107,326.003,335.588,346.751,21.639,20.107,21.639 +1063,33.663,244.214,455.924,303.602,627.666,247.529,464.252,68.292,103.431,68.292,327.204,334.737,345.131,22.434,21.776,22.434 +1064,33.695,240.926,457.930,308.288,624.863,244.199,465.074,65.387,109.502,65.387,328.211,332.374,343.926,22.830,21.307,22.830 +1065,33.726,236.853,459.932,313.600,622.284,240.403,466.704,62.333,116.274,62.333,328.263,330.979,343.557,22.417,21.872,22.417 +1066,33.758,233.030,461.892,319.218,619.004,236.884,468.345,59.156,122.356,59.156,328.095,329.874,343.128,23.120,23.847,23.120 +1067,33.789,229.508,464.068,324.710,615.852,233.729,470.266,55.744,128.333,55.744,328.089,328.780,343.087,24.404,25.594,24.404 +1068,33.820,225.278,466.625,329.982,611.473,229.826,472.483,52.173,134.484,52.173,327.584,327.485,342.415,25.013,26.219,25.013 +1069,33.851,220.821,469.378,335.605,606.835,225.938,475.125,48.320,140.380,48.320,327.200,326.886,342.590,25.226,26.897,25.226 +1070,33.884,216.230,473.724,341.038,601.808,221.723,479.076,44.256,146.310,44.256,326.876,326.441,342.214,24.187,26.903,24.187 +1071,33.915,212.139,477.642,346.449,595.817,217.680,482.287,39.976,152.428,39.976,328.772,326.612,343.234,25.343,27.663,25.343 +1072,33.945,207.789,481.890,351.767,589.161,214.045,486.335,35.395,158.151,35.395,328.303,326.639,343.652,25.936,27.361,25.936 +1073,33.975,207.789,481.890,351.767,589.161,214.045,486.335,35.395,158.151,35.395,328.303,326.639,343.652,25.936,27.361,25.936 +1074,34.004,203.388,487.343,356.762,582.385,210.308,491.432,30.579,163.496,30.579,328.639,327.092,344.714,26.180,26.385,26.180 +1075,34.036,198.190,493.062,361.218,574.093,206.521,497.059,25.626,168.735,25.626,327.111,327.517,345.593,26.661,24.435,26.661 +1076,34.069,192.269,499.411,365.203,565.772,203.235,503.449,20.214,173.454,20.214,323.681,328.207,347.053,25.738,23.860,25.738 +1077,34.101,184.668,506.371,368.506,556.623,200.480,510.583,14.917,177.357,14.917,315.703,327.713,348.430,27.120,21.423,27.120 +1078,34.132,168.798,515.158,370.504,546.804,197.958,518.714,6.953,0.300,6.953,290.603,327.074,349.355,23.267,19.466,23.267 +1079,34.164,114.150,524.118,371.646,536.423,196.298,527.769,2.545,3.240,2.545,186.660,327.834,351.118,18.471,19.648,18.471 +1080,34.195,181.744,537.732,371.719,526.079,195.292,536.920,176.572,5.159,176.572,326.373,328.283,353.518,19.196,21.150,19.196 +1081,34.227,185.811,548.184,370.845,514.913,195.731,546.394,169.771,7.595,169.771,335.684,327.303,355.843,20.052,23.393,20.052 +1082,34.257,188.944,558.651,367.962,504.192,196.867,556.152,162.489,11.310,162.489,340.982,326.337,357.599,19.527,21.573,19.527 +1083,34.287,192.711,569.882,363.092,492.662,199.492,566.714,154.954,15.255,154.954,344.166,325.389,359.134,19.508,21.576,19.508 +1084,34.317,197.764,580.821,356.799,481.459,203.516,577.094,147.058,19.142,147.058,347.581,323.262,361.288,19.028,20.955,19.028 +1085,34.349,204.459,591.813,347.726,471.158,209.116,587.727,138.736,23.100,138.736,349.752,321.566,362.143,19.267,20.646,19.267 +1086,34.380,213.134,602.059,338.407,460.157,217.330,597.132,130.419,27.150,130.419,352.625,318.463,365.569,19.305,24.048,19.305 +1087,34.411,213.134,602.059,338.407,460.157,217.330,597.132,130.419,27.150,130.419,352.625,318.463,365.569,19.305,24.048,19.305 +1088,34.439,223.587,611.433,326.134,451.930,226.837,606.201,121.849,31.218,121.849,354.564,316.423,366.883,19.936,23.738,19.936 +1089,34.471,235.698,619.146,312.527,445.384,237.949,613.846,113.009,35.096,113.009,356.905,313.279,368.421,19.531,23.949,19.531 +1090,34.502,251.332,625.482,298.060,440.689,252.629,620.378,104.261,38.972,104.261,360.153,310.822,370.686,23.277,24.389,23.277 +1091,34.535,262.164,627.975,282.814,439.177,262.509,623.301,94.210,44.170,94.210,360.864,308.451,370.237,25.814,23.342,25.814 +1092,34.567,281.160,629.553,267.431,439.352,280.846,624.543,86.424,47.911,86.424,361.295,306.752,371.334,24.577,21.856,24.577 +1093,34.598,293.156,629.230,252.286,442.305,291.801,623.434,76.840,51.766,76.840,358.833,305.366,370.737,25.026,19.494,25.026 +1094,34.630,310.504,629.095,237.674,447.542,306.533,619.192,68.153,56.149,68.153,348.556,304.536,369.894,20.796,18.585,20.796 +1095,34.660,358.672,678.132,224.569,454.246,320.697,612.308,60.018,60.255,60.018,217.912,304.381,369.897,20.555,19.101,20.555 +1096,34.692,337.342,610.623,213.966,462.270,332.211,604.017,52.162,63.783,52.162,352.227,304.582,368.957,24.644,20.403,24.644 +1097,34.723,347.037,597.002,203.592,472.332,342.751,593.047,42.699,67.237,42.699,356.605,305.989,368.269,25.201,19.871,25.201 +1098,34.753,354.599,584.892,194.471,483.175,350.139,581.842,34.364,71.723,34.364,357.574,306.121,368.383,25.090,19.845,25.090 +1099,34.785,360.449,572.089,188.387,494.372,355.863,569.811,26.415,75.256,26.415,356.862,307.530,367.103,26.195,19.494,26.195 +1100,34.816,363.898,559.899,184.093,506.137,359.338,558.345,18.821,79.354,18.821,355.801,309.667,365.436,25.830,20.395,25.830 +1101,34.847,366.013,548.039,180.994,517.992,361.405,547.098,11.541,82.750,11.541,355.769,311.577,365.175,26.004,20.678,26.004 +1102,34.878,366.013,548.039,180.994,517.992,361.405,547.098,11.541,82.750,11.541,355.769,311.577,365.175,26.004,20.678,26.004 +1103,34.905,364.598,537.089,179.056,529.343,359.792,536.701,4.611,86.491,4.611,351.842,313.698,361.484,24.453,20.344,24.453 +1104,34.936,363.536,528.012,178.246,540.986,358.630,528.185,177.985,89.781,177.985,351.627,316.017,361.445,21.890,19.683,21.890 +1105,34.968,362.186,518.856,178.607,551.537,357.199,519.575,171.798,93.442,171.798,352.572,317.989,362.650,20.455,20.519,20.455 +1106,35.000,359.434,510.303,179.169,561.021,353.994,511.684,165.750,97.165,165.750,351.954,320.506,363.180,19.846,21.454,19.846 +1107,35.032,355.482,502.387,181.404,569.840,350.373,504.223,160.226,100.125,160.226,351.551,322.435,362.409,19.805,19.653,19.805 +1108,35.063,351.647,495.613,183.567,577.754,346.405,498.070,154.891,103.379,154.891,350.949,323.805,362.527,20.148,20.709,20.148 +1109,35.095,347.020,489.698,186.726,584.658,342.272,492.435,150.040,106.460,150.040,350.670,324.998,361.632,19.896,19.900,19.896 +1110,35.126,342.929,484.206,190.274,590.950,338.143,487.484,145.592,109.455,145.592,349.327,326.109,360.928,19.541,19.566,19.541 +1111,35.157,338.680,479.723,193.919,596.467,334.087,483.393,141.375,112.094,141.375,348.419,326.638,360.178,19.378,19.871,19.378 +1112,35.188,334.549,475.774,197.482,600.944,330.136,479.811,137.545,114.346,137.545,347.318,327.239,359.279,19.434,20.019,19.434 +1113,35.219,330.664,472.722,200.925,604.964,326.518,477.004,134.086,115.984,134.086,346.664,327.416,358.585,19.033,20.275,19.033 +1114,35.250,327.952,469.149,204.991,608.237,323.411,474.353,131.103,117.364,131.103,343.659,327.907,357.472,19.161,21.190,19.161 +1115,35.280,324.610,467.102,208.098,610.812,320.557,472.206,128.454,117.553,128.454,343.924,328.769,356.959,19.140,21.278,19.140 +1116,35.310,324.610,467.102,208.098,610.812,320.557,472.206,128.454,117.553,128.454,343.924,328.769,356.959,19.140,21.278,19.140 +1117,35.339,322.256,464.859,210.930,612.984,318.032,470.637,126.172,117.013,126.172,341.928,329.146,356.243,18.929,20.159,18.929 +1118,35.371,319.831,463.027,213.761,615.121,315.612,469.237,124.193,116.222,124.193,340.797,329.647,355.813,18.692,20.031,18.692 +1119,35.403,318.393,460.842,215.954,617.211,313.627,468.337,122.454,114.913,122.454,338.310,329.795,356.074,18.926,19.815,18.926 +1120,35.436,315.511,461.497,218.248,618.667,311.844,467.571,121.122,113.019,121.122,341.263,330.376,355.452,18.737,20.053,18.737 +1121,35.470,314.344,460.472,219.839,619.820,310.553,467.062,119.908,110.872,119.908,340.086,330.764,355.291,19.124,20.274,19.124 +1122,35.502,313.332,459.510,221.450,620.650,309.549,466.285,119.181,108.435,119.181,339.936,331.090,355.456,19.197,20.239,19.197 +1123,35.535,311.537,461.097,222.304,621.719,308.646,466.357,118.791,105.255,118.791,343.479,331.177,355.482,18.609,21.137,18.609 +1124,35.566,311.267,461.510,222.927,622.486,308.520,466.547,118.610,100.939,118.610,344.295,331.240,355.770,18.675,19.958,18.675 +1125,35.596,311.457,461.111,223.372,622.651,308.511,466.503,118.650,96.261,118.650,343.412,331.182,355.701,18.844,19.713,18.844 +1126,35.626,312.373,460.929,223.494,622.500,309.212,466.619,119.055,91.074,119.055,342.767,331.148,355.785,19.231,19.115,19.231 +1127,35.657,312.866,461.718,222.981,622.330,309.852,467.018,119.624,85.108,119.624,343.710,330.530,355.905,19.431,20.003,19.431 +1128,35.688,314.215,461.647,222.706,621.158,311.001,467.074,120.633,78.745,120.633,342.525,330.455,355.141,19.045,20.147,19.045 +1129,35.719,316.119,462.774,222.057,620.323,313.004,467.779,121.891,72.350,121.891,343.340,330.795,355.131,19.132,20.791,19.132 +1130,35.751,317.640,463.286,221.336,618.520,314.545,468.027,123.136,66.077,123.136,342.616,328.772,353.940,18.876,21.306,18.876 +1131,35.783,319.637,463.868,219.683,615.803,316.703,468.115,124.636,59.496,124.636,342.990,326.570,353.314,19.010,21.747,19.010 +1132,35.813,322.721,465.051,217.681,613.208,319.520,469.366,126.567,52.461,126.567,341.654,324.794,352.400,19.332,22.044,19.332 +1133,35.844,322.721,465.051,217.681,613.208,319.520,469.366,126.567,52.461,126.567,341.654,324.794,352.400,19.332,22.044,19.332 +1134,35.872,325.114,466.195,213.659,611.358,321.425,470.859,128.333,45.431,128.333,342.206,322.506,354.100,19.063,25.955,19.063 +1135,35.903,327.803,467.408,210.990,608.245,323.842,472.068,130.365,38.264,130.365,341.463,321.100,353.695,19.125,26.121,19.125 +1136,35.935,330.585,469.426,207.798,604.357,326.768,473.557,132.735,31.201,132.735,342.363,320.025,353.612,19.225,25.974,19.225 +1137,35.966,334.358,471.887,204.581,600.083,330.214,475.943,135.610,24.087,135.610,341.641,319.126,353.237,18.797,25.734,18.797 +1138,35.998,337.717,474.872,200.798,595.340,333.478,478.632,138.424,16.699,138.424,342.075,318.190,353.407,19.365,24.712,19.365 +1139,36.029,341.311,477.380,197.061,590.228,336.460,481.272,141.257,8.461,141.257,341.388,316.950,353.827,19.345,22.586,19.345 +1140,36.064,347.393,479.382,193.073,584.296,339.952,484.648,144.717,1.123,144.717,336.681,316.214,354.913,19.353,21.839,19.353 +1141,36.095,355.570,482.044,188.804,579.821,342.928,489.739,148.671,173.350,148.671,327.381,316.867,356.981,19.609,20.685,19.609 +1142,36.126,366.506,483.331,184.946,574.296,345.556,494.199,152.582,165.903,152.582,311.700,317.483,358.903,18.519,20.494,18.519 +1143,36.155,421.411,468.279,181.217,568.303,348.295,499.747,156.714,157.891,156.714,201.940,317.720,361.140,18.441,20.064,18.441 +1144,36.186,357.171,503.562,178.456,561.613,351.025,505.651,161.222,151.042,161.222,349.814,319.164,362.796,19.201,22.279,19.201 +1145,36.218,359.469,510.864,176.153,554.493,353.593,512.325,166.031,143.616,166.031,352.636,318.802,364.745,19.660,22.330,19.660 +1146,36.249,360.659,518.753,175.460,547.438,355.920,519.472,171.369,136.169,171.369,355.641,318.334,365.226,19.765,21.007,19.765 +1147,36.278,362.025,527.443,175.568,539.163,357.457,527.697,176.820,127.917,176.820,355.341,318.460,364.491,20.191,20.611,20.191 +1148,36.308,362.025,527.443,175.568,539.163,357.457,527.697,176.820,127.917,176.820,355.341,318.460,364.491,20.191,20.611,20.191 +1149,36.338,362.991,534.479,176.458,529.653,358.143,534.215,3.115,120.500,3.115,353.620,317.647,363.330,23.890,20.219,23.890 +1150,36.370,364.502,544.336,178.569,519.782,360.060,543.608,9.310,112.681,9.310,356.908,315.925,365.911,24.638,20.767,24.638 +1151,36.403,363.832,555.113,181.988,509.297,359.578,553.887,16.074,104.931,16.074,357.132,313.897,365.987,24.902,21.257,24.902 +1152,36.436,361.821,566.183,185.684,498.144,357.177,564.223,22.874,96.930,22.874,357.302,310.938,367.384,25.957,18.757,25.957 +1153,36.467,357.797,578.138,191.489,486.989,353.136,575.409,30.343,89.356,30.343,357.541,308.127,368.344,25.196,17.853,25.196 +1154,36.499,351.420,589.464,199.064,476.886,347.452,586.355,38.089,81.404,38.089,358.557,306.472,368.639,25.611,18.051,25.611 +1155,36.530,343.006,602.019,207.236,467.080,338.508,597.291,46.432,73.142,46.432,356.589,305.842,369.640,24.582,19.140,24.582 +1156,36.561,333.656,612.746,218.580,458.504,329.208,606.524,54.439,66.453,54.439,354.205,304.743,369.502,24.533,21.409,24.533 +1157,36.591,352.116,679.827,228.325,451.512,316.003,614.676,61.001,59.421,61.001,221.446,303.398,370.427,21.011,18.353,21.011 +1158,36.621,308.595,626.777,241.247,445.811,305.961,619.553,69.963,52.576,69.963,355.418,303.632,370.797,21.320,19.198,21.320 +1159,36.652,294.597,627.990,254.702,441.314,293.609,623.007,78.786,45.390,78.786,361.421,304.107,371.580,25.690,20.568,25.690 +1160,36.684,277.989,629.334,268.944,438.134,277.648,624.222,86.186,37.747,86.186,362.263,305.653,372.509,23.747,22.931,23.747 +1161,36.716,261.677,627.939,283.036,437.438,262.090,622.426,94.276,30.052,94.276,361.011,307.864,372.068,26.450,23.772,26.450 +1162,36.746,251.361,625.972,297.183,438.660,252.959,619.669,104.229,22.620,104.229,359.650,310.231,372.654,23.769,25.231,23.769 +1163,36.777,251.361,625.972,297.183,438.660,252.959,619.669,104.229,22.620,104.229,359.650,310.231,372.654,23.769,25.231,23.769 +1164,36.806,236.718,619.883,310.077,444.885,238.882,614.670,112.539,15.255,112.539,356.925,311.794,368.213,19.871,20.435,19.871 +1165,36.837,225.048,612.731,322.438,450.442,228.078,607.637,120.745,8.043,120.745,354.826,314.097,366.680,19.960,19.782,19.960 +1166,36.868,215.299,604.031,333.949,457.210,219.108,599.309,128.895,1.077,128.895,353.274,316.151,365.408,19.777,19.403,19.777 +1167,36.899,206.472,594.940,342.907,465.092,211.273,590.415,136.689,174.151,136.689,350.303,318.431,363.497,19.328,20.255,19.328 +1168,36.929,198.565,585.697,350.803,473.925,205.134,580.983,144.337,167.229,144.337,345.364,320.289,361.534,19.251,20.806,19.251 +1169,36.959,191.495,576.693,356.498,483.717,200.336,571.954,151.805,160.208,151.805,338.582,322.009,358.644,18.717,22.589,18.717 +1170,36.990,125.025,590.359,361.405,494.781,196.873,562.628,158.895,153.726,158.895,201.822,322.024,355.851,18.560,19.965,18.560 +1171,37.020,177.456,557.615,364.809,505.980,194.563,553.089,165.182,147.265,165.182,317.874,322.111,353.264,19.591,21.029,19.591 +1172,37.052,183.571,545.787,367.049,517.560,193.525,544.286,171.425,140.572,171.425,331.004,322.307,351.138,20.263,23.585,20.263 +1173,37.084,185.675,535.963,368.068,529.008,193.495,535.618,177.474,133.898,177.474,333.734,322.680,349.389,19.584,25.560,19.584 +1174,37.115,187.902,525.067,367.954,539.584,194.591,525.385,2.726,126.719,2.726,334.288,324.605,347.683,24.877,26.196,24.877 +1175,37.145,189.850,517.550,367.107,549.088,196.489,518.498,8.130,120.069,8.130,333.047,324.990,346.459,24.607,26.509,24.607 +1176,37.176,189.850,517.550,367.107,549.088,196.489,518.498,8.130,120.069,8.130,333.047,324.990,346.459,24.607,26.509,24.607 +1177,37.212,191.681,510.905,365.638,557.714,198.479,512.450,12.804,113.552,12.804,332.121,325.357,346.066,24.866,26.091,24.866 +1178,37.242,194.472,504.491,363.662,566.169,201.089,506.559,17.354,107.199,17.354,332.040,327.094,345.906,25.831,25.838,25.831 +1179,37.273,197.951,498.199,361.155,573.819,204.182,500.730,22.109,100.911,22.109,332.428,328.329,345.880,25.825,24.915,25.825 +1180,37.303,200.761,493.332,358.841,580.565,207.439,496.586,25.974,94.399,25.974,330.920,330.025,345.778,25.932,24.313,25.932 +1181,37.336,204.548,488.110,356.865,586.454,211.111,491.965,30.434,88.091,30.434,331.844,331.383,347.068,25.909,24.420,25.909 +1182,37.369,206.769,484.346,353.793,591.682,213.778,489.019,33.690,82.108,33.690,330.047,333.053,346.893,25.239,22.664,25.239 +1183,37.400,209.691,480.724,350.634,596.344,216.626,485.907,36.777,76.185,36.777,329.595,333.746,346.911,25.671,20.775,25.671 +1184,37.433,211.976,478.099,348.539,599.809,218.992,483.913,39.650,70.507,39.650,329.174,334.710,347.397,25.366,20.263,25.366 +1185,37.464,213.317,474.476,346.268,602.915,221.605,481.930,41.966,65.225,41.966,324.893,335.596,347.187,25.794,19.277,25.794 +1186,37.496,214.995,472.765,345.015,604.931,223.176,480.631,43.877,60.729,43.877,325.262,335.775,347.959,24.896,20.286,24.896 +1187,37.527,211.181,469.852,343.507,606.517,222.585,481.432,45.437,56.876,45.437,315.436,335.882,347.941,18.881,20.326,18.881 +1188,37.558,207.500,463.661,342.100,607.926,223.499,480.565,46.577,53.448,46.577,301.503,336.006,348.052,18.443,19.390,18.443 +1189,37.588,190.799,443.836,341.135,608.566,224.288,480.041,47.231,50.560,47.231,248.750,336.245,347.388,17.875,19.394,17.875 +1190,37.619,168.127,416.543,340.786,609.285,224.950,479.542,47.951,47.711,47.951,178.173,335.663,347.853,17.894,19.698,17.894 +1191,37.651,204.021,453.384,340.500,609.000,226.908,477.422,46.406,45.000,46.406,280.862,335.876,347.243,22.391,19.092,22.391 +1192,37.683,214.479,464.440,339.990,609.070,226.734,477.389,46.577,41.820,46.577,311.320,335.751,346.979,22.995,19.415,22.995 +1193,37.715,217.357,469.014,340.490,608.739,225.974,478.184,46.779,38.125,46.779,321.952,335.308,347.119,24.293,19.457,24.293 +1194,37.745,217.357,469.014,340.490,608.739,225.974,478.184,46.779,38.125,46.779,321.952,335.308,347.119,24.293,19.457,24.293 +1195,37.774,219.305,469.586,340.626,608.072,226.479,477.477,47.726,34.032,47.726,325.506,335.063,346.834,24.822,19.975,24.822 +1196,37.805,221.065,469.885,340.448,607.193,226.964,476.558,48.521,29.055,48.521,328.260,334.899,346.074,24.572,21.271,24.572 +1197,37.837,221.047,470.348,340.763,606.376,226.607,476.598,48.349,22.865,48.349,328.945,333.878,345.676,24.762,22.014,24.762 +1198,37.869,221.132,471.179,340.741,605.428,226.027,476.624,48.043,15.593,48.043,330.316,332.908,344.959,25.098,24.618,25.098 +1199,37.901,220.478,470.938,341.132,604.519,225.745,476.677,47.454,8.310,47.454,328.836,331.660,344.416,25.533,25.027,25.533 +1200,37.932,219.429,471.567,341.501,603.740,224.648,477.115,46.753,0.292,46.753,329.357,329.077,344.592,24.701,26.525,24.701 +1201,37.963,218.303,472.191,342.028,602.737,223.698,477.749,45.855,173.157,45.855,328.715,328.801,344.206,24.778,25.299,24.778 +1202,37.994,217.250,473.243,342.533,601.625,222.551,478.499,44.750,165.069,44.750,328.854,328.198,343.784,24.782,26.217,24.782 +1203,38.025,215.133,474.331,343.415,599.977,220.815,479.701,43.386,156.727,43.386,327.798,327.478,343.435,24.271,26.502,24.271 +1204,38.055,214.140,475.547,344.504,598.507,219.830,480.633,41.792,148.201,41.792,327.754,327.638,343.017,25.812,27.027,25.812 +1205,38.087,211.883,477.447,345.867,596.431,217.651,482.280,39.963,139.560,39.963,328.132,327.249,343.183,25.336,26.638,25.336 +1206,38.120,209.669,479.854,347.745,594.279,215.611,484.475,37.875,130.972,37.875,328.371,327.207,343.426,24.908,26.724,24.908 +1207,38.151,207.972,482.124,349.755,592.163,214.037,486.443,35.455,122.619,35.455,328.863,328.486,343.754,26.276,26.313,26.276 +1208,38.183,205.637,485.331,352.119,589.097,211.770,489.265,32.678,113.806,32.678,329.499,329.074,344.072,25.302,25.483,25.302 +1209,38.213,203.600,488.700,355.572,585.155,209.880,492.289,29.745,105.186,29.745,330.677,328.900,345.142,25.923,25.837,25.923 +1210,38.244,203.600,488.700,355.572,585.155,209.880,492.289,29.745,105.186,29.745,330.677,328.900,345.142,25.923,25.837,25.923 +1211,38.271,200.752,492.914,358.481,580.669,207.294,496.138,26.232,96.520,26.232,331.374,329.427,345.960,25.935,24.952,25.935 +1212,38.302,198.007,498.138,361.788,575.469,204.862,500.967,22.426,87.739,22.426,332.129,329.533,346.961,25.838,24.678,25.838 +1213,38.335,195.850,503.450,364.660,569.689,202.700,505.734,18.435,79.380,18.435,333.304,330.245,347.746,25.614,23.650,25.614 +1214,38.368,193.096,508.356,367.314,562.716,200.721,510.337,14.560,70.750,14.560,333.065,330.492,348.821,25.530,23.288,25.530 +1215,38.400,191.150,514.581,369.972,554.980,199.060,515.998,10.157,62.650,10.157,334.146,330.172,350.217,24.958,23.308,24.958 +1216,38.432,189.061,521.324,371.518,546.128,197.258,522.069,5.194,54.284,5.194,334.982,330.034,351.444,25.078,22.552,25.078 +1217,38.463,188.000,532.000,371.976,537.005,195.988,532.000,0.000,46.017,0.000,336.000,329.610,351.976,18.000,21.327,18.000 +1218,38.494,187.566,540.532,371.136,527.125,195.106,539.800,174.457,37.524,174.457,337.713,329.243,352.863,19.041,20.145,19.041 +1219,38.525,187.928,549.686,370.443,515.985,195.638,548.120,168.518,29.497,168.518,339.673,327.938,355.407,19.967,20.934,19.967 +1220,38.555,189.344,558.954,367.667,504.639,196.774,556.573,162.229,21.280,162.229,341.576,326.981,357.180,19.461,22.638,19.461 +1221,38.586,192.304,568.844,363.827,493.716,199.187,565.744,155.754,13.627,155.754,344.295,324.951,359.392,19.510,21.616,19.510 +1222,38.617,196.317,578.534,357.726,483.277,202.402,574.872,148.965,5.807,148.965,346.422,323.096,360.625,19.541,20.370,19.541 +1223,38.647,201.355,588.543,350.433,473.243,207.127,584.007,141.843,177.825,141.843,347.553,321.452,362.234,19.489,19.543,19.489 +1224,38.677,201.355,588.543,350.433,473.243,207.127,584.007,141.843,177.825,141.843,347.553,321.452,362.234,19.489,19.543,19.489 +1225,38.705,208.058,597.608,341.394,463.882,212.904,592.678,134.508,170.251,134.508,350.023,320.103,363.848,18.924,20.037,18.924 +1226,38.738,217.082,606.174,331.171,455.447,220.858,601.174,127.060,162.676,127.060,353.011,318.262,365.543,19.551,19.890,19.551 +1227,38.770,226.830,614.563,319.384,448.669,229.960,608.985,119.291,155.153,119.291,354.345,316.807,367.138,19.740,20.196,19.740 +1228,38.804,237.581,621.354,306.757,443.322,240.061,615.036,111.431,147.758,111.431,354.848,314.923,368.422,19.574,19.831,19.574 +1229,38.837,248.764,626.544,293.683,440.117,250.199,620.188,102.724,140.423,102.724,357.421,313.579,370.452,23.757,19.015,23.757 +1230,38.868,261.682,629.167,279.633,438.281,262.153,623.051,94.412,133.140,94.412,358.865,312.060,371.133,25.541,19.454,25.541 +1231,38.900,279.244,630.530,265.982,438.849,278.999,624.365,87.730,125.873,87.730,359.431,310.626,371.772,24.377,19.214,24.377 +1232,38.931,290.059,629.423,251.560,441.206,288.830,623.508,78.256,118.863,78.256,360.062,309.833,372.144,25.659,19.412,25.659 +1233,38.961,306.988,625.004,237.949,445.877,305.045,619.527,70.469,111.679,70.469,360.555,308.812,372.178,21.893,19.924,21.893 +1234,38.992,320.623,618.640,225.227,451.821,317.751,613.218,62.084,104.642,62.084,359.597,308.082,371.868,23.272,20.623,23.272 +1235,39.023,333.058,610.129,214.386,459.985,329.599,605.402,53.807,97.621,53.807,359.069,307.548,370.782,24.782,20.319,24.782 +1236,39.053,343.002,600.078,205.554,469.018,339.473,596.452,45.774,90.671,45.774,359.330,306.167,369.450,25.635,18.624,25.635 +1237,39.087,351.346,589.269,197.068,478.493,347.264,586.094,37.875,83.746,37.875,358.892,306.889,369.236,26.136,19.718,26.136 +1238,39.119,357.751,577.852,190.906,488.903,353.431,575.336,30.208,76.562,30.208,357.889,307.822,367.886,26.216,19.573,26.216 +1239,39.152,362.479,566.869,186.678,499.172,357.647,564.821,22.969,69.179,22.969,355.567,308.384,366.064,25.615,21.630,25.615 +1240,39.184,364.906,555.582,183.716,509.330,360.399,554.290,15.993,62.176,15.993,355.084,308.085,364.463,25.470,21.889,25.470 +1241,39.214,365.620,544.746,181.888,519.650,361.719,544.102,9.375,55.251,9.375,354.918,309.588,362.825,25.207,21.948,25.207 +1242,39.245,365.620,544.746,181.888,519.650,361.719,544.102,9.375,55.251,9.375,354.918,309.588,362.825,25.207,21.948,25.207 +1243,39.272,365.256,534.358,180.896,528.838,360.408,534.091,3.159,47.939,3.159,349.345,309.578,359.057,25.157,22.570,25.157 +1244,39.303,364.704,526.649,180.437,537.557,359.822,526.889,177.190,40.467,177.190,349.610,309.883,359.385,21.588,22.881,21.588 +1245,39.336,363.078,518.435,180.595,546.015,358.532,519.103,171.644,33.071,171.644,350.728,310.644,359.918,20.239,22.490,20.239 +1246,39.368,361.433,510.724,181.640,553.576,356.259,511.986,166.293,25.594,166.293,348.349,312.141,359.001,19.857,22.433,19.857 +1247,39.401,360.066,503.137,183.243,561.228,353.391,505.391,161.338,18.239,161.338,344.046,313.053,358.137,20.003,23.053,20.003 +1248,39.432,358.811,495.563,185.079,567.533,350.178,499.258,156.826,10.253,156.826,338.510,313.583,357.291,19.980,21.790,19.980 +1249,39.464,357.258,488.498,187.140,574.263,346.740,493.959,152.564,2.473,152.564,333.596,314.614,357.300,19.884,20.682,19.884 +1250,39.496,355.611,482.004,189.216,579.914,343.258,489.525,148.663,174.738,148.663,328.235,316.424,357.160,19.607,21.331,19.607 +1251,39.529,352.750,476.490,191.595,585.124,339.613,485.722,144.899,166.853,144.899,324.401,317.732,356.515,20.210,21.494,20.210 +1252,39.560,350.130,471.207,194.106,590.776,335.870,482.427,141.804,158.944,141.804,320.533,319.709,356.821,19.029,19.918,19.029 +1253,39.590,350.645,463.545,196.841,595.618,332.377,479.410,139.028,151.091,139.028,308.669,321.581,357.060,18.359,19.899,18.359 +1254,39.620,357.197,450.228,199.267,599.852,329.003,477.247,136.219,142.883,136.219,278.898,323.402,356.999,18.110,19.439,18.110 +1255,39.650,382.398,416.341,201.910,603.911,325.851,475.294,133.807,134.697,133.807,193.852,323.903,357.230,18.042,19.978,18.042 +1256,39.682,333.315,463.034,204.879,607.042,323.717,474.067,131.023,126.416,131.023,327.398,327.404,356.646,18.823,20.224,18.823 +1257,39.712,333.315,463.034,204.879,607.042,323.717,474.067,131.023,126.416,131.023,327.398,327.404,356.646,18.823,20.224,18.823 +1258,39.741,325.505,467.275,207.030,609.740,321.196,472.612,128.914,119.002,128.914,343.103,328.785,356.822,19.108,21.380,19.108 +1259,39.773,323.057,466.024,210.228,613.088,318.913,471.515,127.042,111.181,127.042,343.191,329.105,356.950,19.277,20.024,19.277 +1260,39.806,320.419,465.518,213.126,615.530,316.946,470.393,125.463,103.134,125.463,344.918,329.872,356.891,19.380,19.444,19.380 +1261,39.838,318.138,464.906,215.696,617.473,315.101,469.407,124.005,95.168,124.005,345.818,330.365,356.677,19.265,19.578,19.265 +1262,39.870,316.595,464.129,218.463,619.356,313.604,468.774,122.775,87.224,122.775,345.179,329.728,356.228,19.062,19.256,19.062 +1263,39.901,316.042,462.740,220.901,620.137,312.822,467.941,121.759,79.177,121.759,343.345,329.648,355.579,19.475,20.150,19.475 +1264,39.933,314.779,461.868,223.960,620.808,311.772,466.879,120.964,70.998,120.964,342.654,329.838,354.344,18.693,21.565,18.693 +1265,39.964,313.865,461.258,225.626,620.425,311.101,466.007,120.195,63.176,120.195,341.920,327.826,352.910,19.190,21.741,19.190 +1266,39.995,313.533,460.529,226.812,620.039,310.806,465.326,119.613,55.114,119.613,340.984,326.717,352.020,19.409,22.012,19.409 +1267,40.026,313.328,459.783,225.874,620.674,310.175,465.410,119.264,46.606,119.264,340.415,324.890,353.316,19.448,25.948,19.448 +1268,40.057,312.884,459.544,226.391,620.093,309.816,465.057,119.097,38.157,119.097,339.459,324.356,352.078,19.641,26.173,19.641 +1269,40.087,313.218,459.343,226.342,619.053,310.200,464.765,119.097,30.192,119.097,338.783,323.408,351.193,19.254,26.590,19.254 +1270,40.119,313.875,459.211,225.604,617.745,310.840,464.613,119.320,22.109,119.320,338.116,322.932,350.509,19.265,26.578,19.265 +1271,40.150,314.319,459.033,224.941,616.235,311.350,464.265,119.578,14.036,119.578,337.603,321.602,349.636,19.392,27.164,19.392 +1272,40.181,315.276,458.905,223.309,615.805,311.972,464.588,120.174,6.054,120.174,337.439,321.018,350.586,19.039,25.795,19.039 +1273,40.212,316.149,459.081,221.915,614.484,312.688,464.880,120.833,178.620,120.833,336.464,320.244,349.969,19.217,24.788,19.217 +1274,40.242,316.149,459.081,221.915,614.484,312.688,464.880,120.833,178.620,120.833,336.464,320.244,349.969,19.217,24.788,19.217 +1275,40.270,317.584,459.200,219.483,613.400,313.669,465.576,121.546,170.218,121.546,335.545,320.784,350.509,19.578,23.651,19.578 +1276,40.302,319.614,459.323,217.313,612.483,315.034,466.448,122.735,162.324,122.735,334.429,321.613,351.369,19.047,21.841,19.047 +1277,40.335,321.703,458.638,214.965,611.727,315.907,467.313,123.747,155.508,123.747,331.445,322.430,352.312,18.909,20.708,18.909 +1278,40.368,324.584,458.309,212.673,610.791,317.368,468.617,124.992,149.216,124.992,327.857,323.443,353.023,19.662,19.851,19.662 +1279,40.399,328.715,455.722,210.639,610.187,318.487,469.682,126.227,143.427,126.227,319.549,324.374,354.160,19.183,19.818,19.183 +1280,40.431,335.685,450.477,208.708,609.669,319.771,470.937,127.875,138.576,127.875,303.550,324.547,355.390,17.980,20.025,17.980 +1281,40.463,351.431,435.307,207.250,608.750,321.446,471.955,129.289,135.000,129.289,261.668,324.562,356.372,18.082,19.799,18.082 +1282,40.494,376.554,411.411,204.633,606.991,322.986,473.437,130.815,131.186,130.815,192.955,325.583,356.869,18.026,19.755,18.026 +1283,40.525,332.952,466.544,202.350,604.773,325.123,475.121,132.390,127.975,132.390,333.829,326.536,357.056,18.449,19.896,18.449 +1284,40.556,331.734,472.254,200.124,602.740,327.144,476.919,134.534,124.667,134.534,344.459,326.789,357.546,18.258,20.938,18.258 +1285,40.586,334.649,474.392,197.632,600.670,329.644,479.084,136.848,120.606,136.848,345.208,326.721,358.929,18.968,20.996,18.968 +1286,40.616,336.672,478.076,194.799,597.424,332.482,481.630,139.699,115.624,139.699,348.813,326.495,359.801,18.883,20.175,18.883 +1287,40.646,336.672,478.076,194.799,597.424,332.482,481.630,139.699,115.624,139.699,348.813,326.495,359.801,18.883,20.175,18.883 +1288,40.674,340.155,481.220,192.213,593.839,335.643,484.630,142.918,110.294,142.918,349.237,326.300,360.547,19.146,19.838,19.146 +1289,40.706,343.301,485.439,189.666,589.066,339.125,488.215,146.385,104.644,146.385,350.566,325.751,360.595,19.707,19.418,19.707 +1290,40.738,347.726,489.758,186.401,583.563,342.629,492.654,150.396,98.842,150.396,349.759,324.563,361.484,19.266,20.816,19.266 +1291,40.771,351.495,494.902,184.872,577.519,346.673,497.211,154.406,92.911,154.406,350.542,321.957,361.235,19.955,19.534,19.955 +1292,40.804,355.431,500.707,182.927,570.365,350.374,502.642,159.050,86.808,159.050,350.355,320.008,361.183,19.772,19.390,19.772 +1293,40.837,358.594,507.830,181.661,561.560,354.071,509.123,164.055,80.605,164.055,350.956,318.603,360.364,19.505,20.527,19.505 +1294,40.869,361.942,515.200,179.970,552.711,356.948,516.165,169.063,75.124,169.063,351.223,316.343,361.395,20.083,23.316,20.083 +1295,40.901,364.176,522.939,180.271,542.577,359.731,523.343,174.806,68.046,174.806,352.003,313.640,360.929,21.095,21.555,21.095 +1296,40.933,364.546,530.944,180.223,532.284,359.721,530.872,0.862,61.308,0.862,349.261,311.494,358.913,23.373,21.302,23.373 +1297,40.964,365.462,540.241,181.497,521.699,361.187,539.716,7.007,54.980,7.007,352.476,310.406,361.091,25.529,20.970,25.529 +1298,40.995,367.310,551.864,183.762,510.080,361.519,550.468,13.548,48.777,13.548,352.630,308.554,364.543,25.405,21.923,25.405 +1299,41.026,365.628,563.316,186.554,498.777,358.701,560.732,20.462,42.036,20.462,351.101,306.755,365.888,25.744,20.638,25.744 +1300,41.057,371.917,582.552,190.984,488.414,354.328,572.798,29.012,35.430,29.012,327.322,306.189,367.546,23.746,19.690,23.746 +1301,41.088,358.471,593.891,197.817,476.981,346.955,585.857,34.897,28.260,34.897,341.135,305.789,369.218,19.735,19.162,19.735 +1302,41.121,344.659,598.310,205.869,466.024,340.113,593.882,44.240,21.501,44.240,358.065,305.794,370.756,24.850,21.061,24.850 +1303,41.152,334.480,606.172,215.244,457.674,331.721,602.679,51.698,14.756,51.698,363.072,305.902,371.973,23.793,20.441,23.793 +1304,41.185,322.467,614.717,225.837,450.619,320.360,611.055,60.079,8.061,60.079,363.953,306.457,372.402,22.871,19.450,22.871 +1305,41.217,309.918,621.744,238.027,445.278,308.285,617.634,68.328,1.273,68.328,363.390,306.302,372.236,21.399,17.840,21.399 +1306,41.247,297.087,626.463,251.062,441.145,296.042,621.844,77.255,174.540,77.255,362.869,308.132,372.340,24.953,18.087,24.953 +1307,41.277,297.087,626.463,251.062,441.145,296.042,621.844,77.255,174.540,77.255,362.869,308.132,372.340,24.953,18.087,24.953 +1308,41.305,278.551,629.689,264.643,438.655,278.033,624.339,84.472,167.705,84.472,361.473,309.428,372.221,26.393,17.963,26.393 +1309,41.337,263.425,629.359,278.949,437.851,263.755,623.359,93.143,160.953,93.143,360.105,311.191,372.123,26.509,18.612,26.509 +1310,41.371,252.737,626.802,293.514,439.500,254.165,620.961,103.736,154.100,103.736,359.202,312.644,371.229,25.472,18.614,25.472 +1311,41.404,236.673,620.746,307.253,443.394,239.265,614.461,112.414,147.319,112.414,354.534,313.523,368.132,19.784,19.010,19.784 +1312,41.437,223.876,614.020,319.173,448.992,227.794,607.527,121.109,140.618,121.109,350.727,314.224,365.895,19.884,21.319,19.884 +1313,41.471,209.893,609.828,329.800,456.812,218.136,599.936,129.806,134.715,129.806,337.121,315.387,362.873,19.590,21.727,19.590 +1314,41.503,181.043,616.375,340.086,466.666,209.442,590.410,137.564,128.890,137.564,282.876,315.509,359.835,19.125,19.995,19.125 +1315,41.537,189.288,589.871,348.996,477.850,202.791,580.577,145.458,122.919,145.458,324.571,317.109,357.356,19.769,21.500,19.769 +1316,41.569,191.547,573.568,356.622,489.742,198.225,570.200,153.236,115.346,153.236,340.362,317.402,355.319,19.643,23.545,19.643 +1317,41.599,189.250,561.547,362.514,502.167,195.209,559.447,160.585,107.969,160.585,341.028,318.171,353.663,19.922,25.554,19.922 +1318,41.630,187.944,550.581,366.077,514.421,193.747,549.343,167.952,100.620,167.952,339.781,320.109,351.648,19.845,25.616,19.845 +1319,41.661,187.281,539.935,368.209,526.631,193.416,539.349,174.538,92.337,174.538,338.091,321.630,350.419,20.048,25.673,20.048 +1320,41.693,188.024,529.977,369.171,538.281,194.609,530.132,1.345,85.314,1.345,336.236,324.453,349.410,18.755,24.769,18.755 +1321,41.723,189.947,519.676,369.304,549.105,197.009,520.501,6.667,77.661,6.667,334.683,327.231,348.902,24.470,25.460,24.470 +1322,41.754,192.502,510.591,368.205,559.427,199.993,512.294,12.804,70.292,12.804,333.584,329.344,348.949,25.841,23.985,25.841 +1323,41.788,194.999,503.878,366.400,568.300,203.050,506.489,17.969,63.435,17.969,331.977,330.938,348.903,25.580,22.808,25.580 +1324,41.820,197.821,496.161,363.601,576.601,206.667,500.007,23.499,56.392,23.499,329.627,332.828,348.918,25.479,21.307,25.479 +1325,41.852,200.929,488.539,360.414,583.784,210.880,494.156,29.441,49.304,29.441,325.702,333.632,348.556,25.437,20.774,25.437 +1326,41.884,197.201,481.960,356.683,590.180,212.567,492.253,33.818,41.858,33.818,311.480,334.415,348.469,18.181,20.150,18.181 +1327,41.914,180.415,458.983,352.823,595.323,217.354,486.006,36.188,34.955,36.188,256.222,334.654,347.759,22.335,20.116,22.335 +1328,41.944,180.415,458.983,352.823,595.323,217.354,486.006,36.188,34.955,36.188,256.222,334.654,347.759,22.335,20.116,22.335 +1329,41.971,211.416,474.739,348.679,599.243,220.305,482.517,41.186,28.361,41.186,323.326,334.381,346.950,25.211,19.904,25.211 +1330,42.004,218.612,472.359,344.053,602.889,224.285,478.229,45.978,21.615,45.978,329.416,334.247,345.743,24.897,22.558,24.897 +1331,42.038,222.452,469.469,339.300,606.749,227.461,475.325,49.451,14.281,49.451,329.725,332.806,345.138,24.577,24.879,24.577 +1332,42.071,226.569,467.090,334.398,610.268,230.873,472.739,52.696,7.565,52.696,330.066,331.395,344.270,24.886,25.611,24.886 +1333,42.104,229.362,464.435,329.513,613.451,233.591,470.633,55.692,0.699,55.692,329.068,329.158,344.073,23.799,27.108,23.799 +1334,42.138,232.804,462.619,324.797,616.115,236.494,468.670,58.627,174.560,58.627,329.544,328.940,343.718,23.594,26.262,23.594 +1335,42.175,235.871,460.396,320.216,618.692,239.537,467.060,61.180,167.735,61.180,328.275,328.544,343.486,23.541,26.766,23.541 +1336,42.207,238.786,458.606,315.673,620.532,242.226,465.581,63.741,161.342,63.741,327.358,327.964,342.913,23.162,27.008,23.162 +1337,42.241,241.582,457.186,311.058,622.517,244.735,464.278,66.038,154.581,66.038,327.551,327.867,343.074,22.642,26.792,22.642 +1338,42.272,244.292,456.593,306.949,624.219,247.003,463.405,68.299,147.995,68.299,328.504,328.069,343.166,22.062,25.970,22.062 +1339,42.304,246.937,455.739,302.909,625.885,249.422,462.706,70.366,141.450,70.366,328.535,328.587,343.329,21.653,25.295,21.653 +1340,42.337,249.366,454.583,299.000,627.500,251.750,462.030,72.255,135.000,72.255,328.358,328.805,343.997,21.601,23.335,21.601 +1341,42.370,251.756,454.006,295.339,628.555,253.869,461.442,74.131,129.144,74.131,328.708,330.281,344.168,21.264,23.231,21.264 +1342,42.402,253.899,453.141,292.232,629.678,255.911,461.132,75.867,122.961,75.867,328.146,330.982,344.627,20.888,21.999,20.888 +1343,42.437,255.782,451.829,288.933,630.719,257.770,460.795,77.501,116.328,77.501,326.916,331.416,345.283,20.598,20.494,20.598 +1344,42.468,257.162,450.787,286.718,631.964,259.121,460.847,78.983,110.844,78.983,325.977,332.989,346.474,19.527,20.727,19.527 +1345,42.501,259.094,449.298,284.717,633.491,261.117,461.101,80.272,105.945,80.272,323.847,334.610,347.797,19.966,20.879,19.966 +1346,42.533,260.192,447.017,283.255,634.635,262.357,461.329,81.399,101.802,81.399,320.015,335.792,348.965,19.617,20.892,19.617 +1347,42.564,261.039,444.449,283.138,635.398,263.397,461.745,82.235,98.584,82.235,314.544,336.192,349.456,19.411,22.444,19.411 +1348,42.594,261.911,442.021,282.041,635.222,264.268,461.275,83.019,96.203,83.019,310.842,335.243,349.636,19.183,21.439,19.183 +1349,42.624,261.900,438.578,281.747,635.520,264.383,461.543,83.830,94.523,83.830,303.475,335.770,349.671,17.949,22.348,17.949 +1350,42.654,262.294,434.767,279.156,635.467,264.979,461.142,84.188,92.217,84.188,296.706,335.523,349.730,17.919,22.332,17.919 +1351,42.686,262.542,432.801,278.957,635.499,265.309,461.168,84.428,91.642,84.428,292.659,335.378,349.664,17.915,21.335,17.915 +1352,42.718,262.634,430.654,278.549,635.501,265.523,460.989,84.560,91.463,84.560,288.978,335.325,349.923,18.014,21.249,18.014 +1353,42.750,262.822,432.136,278.812,635.510,265.572,461.001,84.560,91.796,84.560,291.965,335.431,349.956,18.109,20.617,18.109 +1354,42.780,262.915,436.121,280.938,635.555,265.337,461.145,84.472,93.377,84.472,299.921,335.596,350.204,17.916,22.901,17.916 +1355,42.811,262.915,436.121,280.938,635.555,265.337,461.145,84.472,93.377,84.472,299.921,335.596,350.204,17.916,22.901,17.916 +1356,42.840,262.607,437.337,280.414,635.456,265.020,461.197,84.226,94.268,84.226,301.887,335.708,349.849,17.886,21.552,17.886 +1357,42.871,262.480,441.513,281.249,635.314,264.640,461.384,83.797,96.509,83.797,309.438,335.188,349.413,18.305,21.918,18.305 +1358,42.904,262.329,444.978,282.417,635.533,264.314,461.452,83.130,98.858,83.130,316.805,336.048,349.991,19.366,23.162,19.366 +1359,42.940,261.683,446.876,281.955,634.885,263.619,461.390,82.405,101.952,82.405,319.506,335.593,348.792,19.494,20.930,19.494 +1360,42.973,260.507,448.544,282.736,633.925,262.406,461.078,81.384,105.945,81.384,322.531,334.885,347.884,19.714,20.604,19.714 +1361,43.009,259.137,450.048,284.225,632.273,260.954,460.650,80.272,110.659,80.272,324.664,332.755,346.176,19.797,20.892,19.797 +1362,43.042,257.457,451.226,286.256,631.149,259.246,460.367,78.930,116.003,78.930,326.953,331.843,345.582,19.799,20.759,19.799 +1363,43.077,255.988,452.511,288.519,630.012,257.752,460.516,77.570,122.276,77.570,327.897,330.809,344.291,20.659,21.004,20.659 +1364,43.109,253.794,453.176,291.929,629.054,255.710,460.840,75.964,128.853,75.964,328.151,329.672,343.951,20.373,22.887,20.373 +1365,43.142,251.579,453.998,295.000,628.000,253.579,461.138,74.358,135.000,74.358,328.871,328.098,343.701,20.222,24.042,20.222 +1366,43.175,249.920,454.802,298.856,627.064,252.090,461.728,72.607,141.194,72.607,328.995,327.981,343.511,21.534,25.051,21.534 +1367,43.208,247.220,455.354,302.396,625.705,249.649,462.324,70.780,147.670,70.780,328.517,327.253,343.278,21.233,25.702,21.233 +1368,43.241,244.934,456.201,306.327,624.180,247.594,463.068,68.824,154.330,68.824,328.173,326.999,342.900,21.892,26.361,21.892 +1369,43.273,242.224,457.115,310.480,622.823,245.235,464.125,66.750,160.844,66.750,327.873,326.753,343.131,22.398,26.549,22.398 +1370,43.305,239.544,458.693,314.655,621.314,242.771,465.470,64.537,167.735,64.537,328.211,327.014,343.222,23.001,27.318,23.001 +1371,43.338,236.716,460.414,319.038,619.384,240.101,466.829,62.181,174.369,62.181,329.015,327.567,343.523,22.814,27.290,22.814 +1372,43.371,233.738,462.031,323.456,617.354,237.487,468.440,59.673,0.747,59.673,329.038,327.233,343.889,23.343,27.328,23.343 +1373,43.408,230.982,464.163,328.236,614.658,234.896,470.171,56.921,7.690,56.921,329.685,329.759,344.026,23.961,27.042,23.961 +1374,43.440,228.010,466.219,332.550,612.106,232.216,472.005,53.987,14.765,53.987,330.330,331.658,344.636,24.834,25.726,24.834 +1375,43.473,224.231,468.718,336.787,609.299,228.926,474.498,50.916,21.623,50.916,330.380,333.669,345.274,24.730,24.195,24.730 +1376,43.506,219.562,470.361,341.779,605.908,226.029,477.408,47.457,28.478,47.457,326.747,334.390,345.877,24.635,21.196,24.635 +1377,43.539,210.063,471.045,346.366,602.690,221.784,481.561,41.897,35.122,41.897,315.749,334.511,347.244,23.504,20.088,23.504 +1378,43.571,160.402,438.418,350.305,599.047,217.700,486.166,39.806,41.910,39.806,199.097,335.004,348.268,18.053,20.064,18.053 +1379,43.603,203.036,481.795,354.056,594.079,214.466,490.047,35.828,48.918,35.828,319.947,334.907,348.143,19.062,20.545,19.062 +1380,43.636,203.335,485.760,357.371,588.571,212.640,491.479,31.576,55.886,31.576,326.444,334.773,348.287,26.402,20.538,26.402 +1381,43.668,200.400,492.200,360.593,581.953,208.828,496.414,26.565,63.089,26.565,329.149,333.222,347.994,25.938,21.232,25.938 +1382,43.700,197.339,499.070,363.445,574.474,204.956,502.074,21.523,70.017,21.523,331.623,332.174,347.999,26.166,22.213,26.166 +1383,43.732,194.500,506.180,366.407,565.808,201.647,508.277,16.348,76.608,16.348,333.687,330.106,348.583,25.448,24.783,25.448 +1384,43.764,191.756,513.423,368.007,556.396,198.733,514.755,10.810,84.094,10.810,333.951,327.597,348.158,25.698,24.970,25.698 +1385,43.797,188.970,522.481,368.470,546.036,195.658,523.051,4.872,91.420,4.872,334.854,324.247,348.279,24.393,25.100,24.393 +1386,43.827,187.504,534.158,368.381,534.556,194.041,533.990,178.526,98.427,178.526,335.455,322.297,348.534,18.909,25.683,18.909 +1387,43.859,186.977,544.786,367.651,522.972,193.442,543.846,171.736,105.945,171.736,337.735,320.187,350.801,20.334,26.236,20.334 +1388,43.890,187.749,555.295,364.865,510.729,193.967,553.628,164.993,113.097,164.993,339.481,318.415,352.355,19.363,25.160,19.363 +1389,43.921,189.013,566.691,361.035,498.607,196.276,563.715,157.714,120.411,157.714,338.586,318.006,354.285,19.431,24.485,19.431 +1390,43.952,189.686,580.080,354.634,486.104,199.872,574.271,150.306,127.648,150.306,332.778,317.052,356.230,19.614,22.622,19.614 +1391,43.984,174.619,606.239,347.523,474.546,204.591,583.052,142.275,133.589,142.275,283.103,316.966,358.890,18.774,20.218,18.774 +1392,44.014,195.364,609.858,338.747,463.788,212.393,592.925,135.162,139.399,135.162,313.277,316.610,361.306,18.942,19.958,18.942 +1393,44.045,195.364,609.858,338.747,463.788,212.393,592.925,135.162,139.399,135.162,313.277,316.610,361.306,18.942,19.958,18.942 +1394,44.075,215.534,607.772,329.205,455.099,220.351,601.360,126.917,143.673,126.917,348.604,316.218,364.642,19.287,21.634,19.287 +1395,44.106,227.301,615.568,317.907,447.609,230.766,609.250,118.740,149.982,118.740,352.846,315.791,367.258,19.629,19.665,19.629 +1396,44.138,239.868,621.715,305.588,442.353,242.117,615.611,110.225,156.501,110.225,356.027,315.392,369.036,19.705,19.059,19.705 +1397,44.172,251.951,626.832,291.745,439.182,253.095,620.756,100.665,162.669,100.665,358.817,314.382,371.181,24.881,18.923,24.881 +1398,44.205,270.945,629.315,277.354,437.820,271.268,623.734,93.312,168.996,93.312,360.728,312.972,371.909,26.666,18.978,26.666 +1399,44.238,281.044,629.434,262.760,438.582,280.412,624.210,83.101,175.290,83.101,362.286,311.170,372.810,26.684,19.164,26.684 +1400,44.271,297.772,626.382,247.499,442.035,296.540,621.846,74.798,1.586,74.798,363.356,309.324,372.758,22.541,18.505,22.541 +1401,44.304,313.457,619.822,233.538,447.201,311.736,615.992,65.796,7.214,65.796,363.626,308.488,372.025,22.461,18.699,22.461 +1402,44.336,327.644,611.966,221.018,453.298,324.883,607.762,56.711,13.241,56.711,362.193,307.199,372.252,24.071,20.957,24.071 +1403,44.368,340.007,602.526,209.655,462.633,336.381,598.511,47.911,19.335,47.911,360.734,306.620,371.555,25.734,20.925,25.734 +1404,44.400,350.103,595.314,200.400,473.200,343.709,590.090,39.250,26.565,39.250,353.353,305.894,369.867,19.825,19.677,19.825 +1405,44.432,398.419,606.614,192.393,485.166,351.504,578.247,31.159,32.905,31.159,258.988,305.949,368.637,19.244,19.508,19.244 +1406,44.463,365.206,567.509,187.333,496.721,357.649,564.333,22.794,38.804,22.794,350.023,306.570,366.418,26.039,21.515,26.039 +1407,44.495,366.325,554.295,183.250,509.250,360.323,552.678,15.075,45.000,15.075,352.116,306.177,364.548,25.707,21.213,25.707 +1408,44.526,365.611,541.915,181.286,521.820,361.220,541.329,7.595,50.802,7.595,353.009,308.397,361.869,25.309,21.105,25.309 +1409,44.557,364.032,531.725,180.383,534.430,359.765,531.683,0.564,56.626,0.564,350.160,311.213,358.694,21.835,21.348,21.835 +1410,44.587,364.252,521.848,180.390,546.019,359.624,522.344,173.884,62.870,173.884,352.163,312.644,361.472,20.774,21.036,20.774 +1411,44.618,361.182,512.553,181.886,556.822,356.643,513.568,167.400,67.797,167.400,350.664,315.279,359.967,20.081,21.162,20.081 +1412,44.649,357.427,503.810,184.187,567.221,352.830,505.356,161.405,73.835,161.405,349.435,318.123,359.133,19.381,20.810,19.381 +1413,44.681,352.871,496.182,186.496,577.001,348.134,498.322,155.683,78.939,155.683,348.997,320.682,359.392,19.899,20.396,19.899 +1414,44.711,352.871,496.182,186.496,577.001,348.134,498.322,155.683,78.939,155.683,348.997,320.682,359.392,19.899,20.396,19.899 +1415,44.741,347.980,489.346,189.515,585.160,343.351,491.997,150.201,84.472,150.201,348.917,322.975,359.586,20.077,19.682,20.077 +1416,44.772,342.948,483.543,193.143,592.989,338.350,486.733,145.248,89.752,145.248,348.554,324.045,359.748,19.467,19.108,19.467 +1417,44.805,338.030,478.606,196.731,598.717,333.513,482.323,140.548,94.551,140.548,347.457,326.356,359.156,19.167,19.515,19.167 +1418,44.837,332.920,474.263,200.521,604.169,328.641,478.383,136.081,99.508,136.081,347.194,327.648,359.075,18.888,20.206,18.888 +1419,44.871,327.842,471.068,204.850,608.837,324.186,475.152,131.838,104.095,131.838,347.437,328.639,358.400,19.266,20.095,19.266 +1420,44.904,323.737,467.155,209.096,612.540,319.743,472.246,128.121,108.122,128.121,344.410,329.183,357.352,19.306,20.183,19.306 +1421,44.937,319.767,464.111,213.432,615.571,315.875,469.741,124.654,111.884,124.654,342.733,329.795,356.422,19.212,21.145,19.212 +1422,44.969,316.930,460.615,217.512,618.005,312.442,467.924,121.551,114.193,121.551,337.983,329.980,355.137,18.793,19.949,18.793 +1423,45.001,318.756,448.716,221.300,620.400,309.121,466.234,118.811,116.565,118.811,314.824,329.596,354.810,18.488,19.677,18.488 +1424,45.032,342.700,390.600,225.248,622.416,305.642,464.717,116.565,119.083,116.565,188.277,329.750,354.007,17.889,19.567,17.889 +1425,45.063,316.586,432.100,229.271,624.284,302.554,463.552,114.044,121.675,114.044,284.408,329.460,353.289,17.927,20.352,17.927 +1426,45.094,307.658,442.156,232.738,625.517,299.623,462.463,111.588,124.992,111.588,308.772,329.004,352.450,18.022,20.645,18.022 +1427,45.125,302.213,446.268,236.260,626.399,297.060,461.359,108.853,128.488,108.853,319.774,328.605,351.667,19.504,20.294,19.504 +1428,45.155,297.905,448.664,240.171,627.131,294.309,460.728,106.595,133.264,106.595,324.690,327.133,349.868,19.453,20.390,19.453 +1429,45.188,292.891,450.091,244.663,627.747,290.581,459.435,103.891,138.400,103.891,329.576,327.199,348.827,18.914,21.427,18.914 +1430,45.220,289.121,449.830,249.135,628.189,287.382,458.460,101.389,144.462,101.389,330.272,325.958,347.879,19.056,21.855,19.056 +1431,45.251,285.451,449.967,253.957,628.828,284.175,458.024,98.997,151.082,98.997,330.541,325.266,346.855,18.791,23.101,18.791 +1432,45.281,282.524,450.427,258.747,629.709,281.613,457.944,96.911,157.457,96.911,331.393,324.686,346.536,19.193,24.745,19.193 +1433,45.312,282.524,450.427,258.747,629.709,281.613,457.944,96.911,157.457,96.911,331.393,324.686,346.536,19.193,24.745,19.193 +1434,45.340,279.053,450.316,263.513,629.788,278.497,457.452,94.456,164.110,94.456,331.644,324.446,345.959,18.774,25.133,18.774 +1435,45.373,275.641,450.079,268.203,630.292,275.364,457.600,92.108,171.085,92.108,330.623,324.193,345.676,18.589,27.023,18.589 +1436,45.404,272.450,450.012,273.104,630.340,272.487,457.663,89.728,177.455,89.728,330.053,324.657,345.355,18.445,27.195,18.445 +1437,45.438,268.859,450.619,277.787,630.497,269.200,458.190,87.427,4.069,87.427,329.880,325.809,345.038,18.588,27.758,18.588 +1438,45.471,265.868,452.225,281.818,630.441,266.415,458.635,85.118,11.211,85.118,332.122,328.484,344.988,18.959,27.289,18.959 +1439,45.505,262.925,453.702,286.729,631.294,263.720,459.909,82.703,18.587,82.703,333.321,329.203,345.838,19.524,27.739,19.524 +1440,45.538,259.465,454.022,290.810,630.959,260.570,460.451,80.248,25.831,80.248,333.285,330.475,346.332,19.141,27.610,19.141 +1441,45.570,256.909,455.273,295.566,630.679,258.240,461.456,77.853,32.609,77.853,333.926,331.788,346.576,20.284,26.150,20.284 +1442,45.601,253.872,456.187,300.153,630.535,255.560,462.641,75.343,39.289,75.343,334.086,333.013,347.427,21.210,23.993,21.210 +1443,45.631,249.990,456.469,304.974,629.067,252.223,463.649,72.731,46.226,72.731,332.203,333.920,347.241,20.781,21.169,20.781 +1444,45.662,246.632,456.316,308.976,628.518,249.771,464.926,69.966,52.936,69.966,329.621,335.193,347.950,22.314,20.390,22.314 +1445,45.693,239.851,453.906,311.992,627.300,245.555,466.677,65.934,59.442,65.934,319.533,337.367,347.507,20.230,19.688,20.230 +1446,45.723,210.944,406.294,315.884,625.932,241.455,468.704,63.947,66.236,63.947,208.944,336.690,347.882,17.808,19.486,17.808 +1447,45.755,230.616,455.925,320.267,623.627,238.567,470.177,60.843,73.589,60.843,314.981,336.569,347.621,19.552,20.381,19.552 +1448,45.787,230.033,461.346,324.057,620.990,236.273,471.160,57.548,80.417,57.548,323.814,335.717,347.074,23.069,19.939,23.069 +1449,45.819,227.168,465.121,327.975,617.023,232.558,472.565,54.097,87.492,54.097,327.552,334.686,345.934,24.018,20.119,24.018 +1450,45.850,223.528,468.240,332.072,612.927,228.718,474.490,50.293,94.514,50.293,328.813,333.174,345.061,24.849,20.594,24.849 +1451,45.881,219.324,472.310,336.456,607.888,224.292,477.525,46.390,101.650,46.390,329.102,331.804,343.508,24.838,21.567,24.838 +1452,45.910,219.324,472.310,336.456,607.888,224.292,477.525,46.390,101.650,46.390,329.102,331.804,343.508,24.838,21.567,24.838 +1453,45.939,215.009,475.484,341.776,602.094,220.225,480.220,42.239,108.800,42.239,329.742,329.837,343.834,25.767,23.807,25.767 +1454,45.972,210.124,479.971,346.640,596.263,215.862,484.419,37.790,116.003,37.790,329.247,329.212,343.767,25.529,25.407,25.529 +1455,46.006,205.616,484.743,351.711,588.812,211.834,488.783,33.014,122.984,33.014,328.755,327.419,343.585,26.369,26.176,26.369 +1456,46.039,201.444,490.721,356.635,580.464,207.783,494.086,27.960,130.333,27.960,329.597,325.543,343.950,25.473,27.083,25.473 +1457,46.073,197.385,497.180,360.981,571.708,204.142,500.000,22.652,137.506,22.652,330.072,324.839,344.715,25.978,27.239,25.978 +1458,46.109,193.316,504.956,364.557,562.080,200.603,507.159,16.821,144.563,16.821,330.438,324.444,345.665,25.778,26.644,25.778 +1459,46.141,189.602,512.971,367.239,551.688,197.850,514.568,10.954,151.390,10.954,329.910,324.582,346.712,25.241,25.698,25.241 +1460,46.173,183.999,522.010,369.132,540.325,195.747,522.992,4.782,157.932,4.782,324.873,324.960,348.451,24.163,24.246,24.163 +1461,46.205,175.511,534.933,369.955,529.349,194.894,534.434,178.525,163.344,178.525,311.489,324.992,350.268,19.148,21.760,19.148 +1462,46.237,132.390,552.092,369.384,517.467,194.469,542.752,171.444,167.775,171.444,227.904,325.058,353.461,18.640,19.970,18.640 +1463,46.268,181.682,556.947,366.943,505.720,195.694,553.190,164.993,172.585,164.993,326.386,325.977,355.400,19.314,21.096,19.314 +1464,46.299,189.329,566.955,363.933,494.869,198.274,563.259,157.548,176.619,157.548,339.083,324.616,358.442,19.508,21.599,19.508 +1465,46.329,195.260,577.350,358.572,484.047,201.971,573.478,150.018,2.106,150.018,345.175,323.370,360.672,19.656,20.053,19.656 +1466,46.360,201.907,588.109,351.250,473.765,207.252,583.909,141.843,8.185,141.843,348.957,321.737,362.553,19.489,21.254,19.489 +1467,46.391,209.802,598.441,341.691,463.806,214.155,593.851,133.488,13.293,133.488,351.590,319.966,364.241,19.373,20.662,19.373 +1468,46.421,219.527,608.168,330.166,454.979,222.990,603.224,125.012,18.536,125.012,353.745,317.822,365.818,19.374,21.517,19.374 +1469,46.453,230.994,616.250,317.073,448.211,233.424,611.318,116.235,24.590,116.235,355.568,315.823,366.565,19.412,20.421,19.412 +1470,46.485,243.449,623.438,303.398,441.541,245.194,617.665,106.821,30.018,106.821,358.798,313.328,370.862,21.860,23.859,21.860 +1471,46.516,256.711,626.932,288.890,438.653,257.416,621.688,97.660,35.690,97.660,360.612,310.266,371.194,25.710,23.725,25.710 +1472,46.546,256.711,626.932,288.890,438.653,257.416,621.688,97.660,35.690,97.660,360.612,310.266,371.194,25.710,23.725,25.710 +1473,46.575,275.500,629.500,272.807,438.932,275.500,624.466,90.000,42.039,90.000,361.000,308.094,371.068,25.000,20.661,25.000 +1474,46.605,289.946,628.676,257.241,441.089,289.159,623.955,80.538,47.911,80.538,361.678,306.249,371.250,25.975,20.444,25.975 +1475,46.637,306.703,627.879,241.998,445.513,304.131,620.357,71.127,53.344,71.127,355.184,304.811,371.084,21.797,18.936,21.797 +1476,46.670,351.692,678.301,227.574,451.956,317.405,613.883,61.975,59.036,61.975,224.346,304.410,370.295,20.645,18.179,20.645 +1477,46.702,335.675,613.106,216.318,460.383,330.219,605.678,53.702,64.916,53.702,350.624,305.083,369.057,24.471,21.370,24.471 +1478,46.734,345.730,598.327,204.264,471.086,341.419,594.199,43.755,70.060,43.755,356.482,305.861,368.419,25.127,19.588,25.127 +1479,46.766,354.273,585.462,194.650,482.339,349.633,582.220,34.946,76.083,34.946,357.180,306.578,368.501,25.509,19.585,25.509 +1480,46.797,360.444,572.091,187.690,494.547,355.619,569.695,26.409,81.304,26.409,356.880,307.983,367.656,26.223,19.619,26.223 +1481,46.828,363.610,559.154,183.248,507.402,359.124,557.673,18.279,86.775,18.279,356.090,310.142,365.538,25.710,19.209,25.710 +1482,46.859,365.451,546.172,179.692,520.118,360.961,545.340,10.498,92.111,10.498,356.531,312.562,365.662,25.866,19.636,25.866 +1483,46.889,363.943,534.661,177.786,532.791,358.924,534.394,3.039,97.250,3.039,351.885,316.176,361.936,24.373,20.499,24.373 +1484,46.920,363.338,524.745,177.261,544.496,358.086,525.123,175.890,102.362,175.890,352.964,318.655,363.496,21.412,20.874,21.412 +1485,46.951,360.584,515.254,177.084,555.341,355.088,516.315,169.073,108.015,169.073,353.151,320.711,364.347,20.525,22.159,20.525 +1486,46.980,356.783,506.005,178.743,565.392,351.428,507.679,162.646,112.714,162.646,352.859,322.618,364.079,19.686,21.752,19.686 +1487,47.011,356.783,506.005,178.743,565.392,351.428,507.679,162.646,112.714,162.646,352.859,322.618,364.079,19.686,21.752,19.686 +1488,47.041,352.837,497.672,181.534,574.017,347.353,500.056,156.510,117.216,156.510,351.157,323.396,363.116,19.740,20.428,19.740 +1489,47.072,348.022,490.566,185.206,582.128,342.952,493.400,150.797,121.809,150.797,350.359,324.153,361.974,19.871,19.997,19.871 +1490,47.105,343.286,483.998,188.970,588.978,338.177,487.499,145.582,125.870,145.582,348.503,324.539,360.890,19.447,20.695,19.447 +1491,47.138,339.742,477.624,193.682,594.908,333.836,482.448,140.757,129.634,140.757,344.125,325.213,359.377,19.220,21.455,19.220 +1492,47.173,339.422,468.736,198.276,599.799,329.496,478.228,136.280,131.947,136.280,330.247,325.344,357.716,18.676,20.082,18.676 +1493,47.206,379.368,414.717,203.750,605.250,324.633,474.281,132.580,135.000,132.580,194.669,324.562,356.457,18.110,19.799,18.110 +1494,47.238,338.890,448.012,208.497,609.055,320.388,471.140,128.660,138.180,128.660,295.949,324.886,355.184,17.960,19.808,17.960 +1495,47.271,326.348,453.951,213.446,612.341,316.397,468.475,124.418,141.856,124.418,318.531,324.244,353.742,19.432,19.888,19.432 +1496,47.303,318.871,455.306,218.997,615.512,312.392,466.182,120.784,146.592,120.784,326.861,323.927,352.180,19.796,19.750,19.796 +1497,47.335,311.767,455.416,224.742,618.311,307.630,463.550,116.959,151.736,116.959,332.790,323.131,351.041,19.463,21.650,19.463 +1498,47.367,306.268,454.263,230.915,620.891,303.031,461.761,113.348,157.423,113.348,333.025,322.696,349.359,19.749,23.507,19.749 +1499,47.397,301.343,453.166,237.179,623.377,298.737,460.381,109.855,164.055,109.855,333.087,322.385,348.430,19.255,25.549,19.255 +1500,47.428,296.415,452.365,243.369,625.323,294.381,459.220,106.524,170.981,106.524,333.203,322.220,347.503,19.129,26.588,19.129 +1501,47.463,291.578,451.722,249.880,626.728,290.041,458.271,103.201,177.528,103.201,332.902,322.434,346.355,18.859,26.271,18.859 +1502,47.495,286.960,451.082,255.879,628.284,285.777,457.759,100.049,3.892,100.049,332.690,323.362,346.253,18.821,26.442,18.821 +1503,47.526,282.888,451.171,261.731,629.906,282.047,457.850,97.174,10.840,97.174,333.029,324.926,346.492,18.955,27.876,18.955 +1504,47.557,278.310,451.380,267.146,631.222,277.836,458.059,94.062,17.776,94.062,333.580,326.682,346.972,18.758,27.405,18.758 +1505,47.587,273.913,452.433,272.203,632.224,273.822,458.578,90.843,24.817,90.843,335.008,328.822,347.301,18.454,27.424,18.454 +1506,47.618,269.694,453.084,278.189,632.691,269.921,459.315,87.917,31.487,87.917,334.652,329.654,347.123,18.570,26.137,18.570 +1507,47.648,265.642,453.802,283.503,633.360,266.216,460.183,84.857,38.157,84.857,335.245,330.815,348.058,18.904,25.668,18.904 +1508,47.679,265.642,453.802,283.503,633.360,266.216,460.183,84.857,38.157,84.857,335.245,330.815,348.058,18.904,25.668,18.904 +1509,47.708,261.426,454.445,288.500,633.500,262.398,461.156,81.764,45.000,81.764,335.048,332.340,348.611,18.843,25.456,18.843 +1510,47.739,257.818,454.940,294.378,632.598,259.260,462.083,78.589,51.340,78.589,333.612,334.056,348.185,20.099,22.021,20.099 +1511,47.772,253.638,455.745,299.543,631.914,255.591,463.243,75.401,57.918,75.401,333.109,335.172,348.605,20.565,20.411,20.565 +1512,47.805,247.433,453.722,303.472,630.514,251.110,464.457,71.089,64.320,71.089,325.432,336.912,348.127,19.954,19.786,19.954 +1513,47.839,220.925,400.952,308.186,629.591,246.753,466.444,68.477,70.974,68.477,207.818,336.488,348.619,17.898,19.722,17.898 +1514,47.872,235.793,451.490,313.446,627.011,243.405,467.751,64.916,78.035,64.916,311.962,336.423,347.869,20.176,20.239,20.176 +1515,47.904,235.014,459.211,317.848,624.154,240.314,468.903,61.327,84.668,61.327,324.737,335.807,346.830,22.524,20.245,22.524 +1516,47.937,231.197,462.238,322.288,620.051,236.232,470.151,57.529,91.273,57.529,326.574,334.184,345.332,24.159,19.640,24.159 +1517,47.968,227.147,465.955,327.391,615.984,231.848,472.313,53.522,98.264,53.522,328.837,333.329,344.651,24.721,20.461,24.721 +1518,48.000,222.144,469.628,333.100,610.891,226.994,475.246,49.198,105.202,49.198,329.184,331.616,344.029,24.372,22.835,24.372 +1519,48.032,217.514,472.955,338.331,605.528,222.743,478.152,44.822,111.975,44.822,328.805,331.259,343.550,25.601,23.525,25.601 +1520,48.063,212.403,477.352,344.175,598.820,218.098,482.135,40.023,119.030,40.023,328.303,328.975,343.176,25.973,25.120,25.973 +1521,48.094,207.294,482.717,350.064,591.273,213.455,487.023,34.946,125.987,34.946,328.352,326.955,343.385,25.450,26.779,25.450 +1522,48.124,203.031,488.446,355.132,582.917,209.255,492.003,29.745,132.969,29.745,329.188,325.566,343.526,26.047,26.923,26.047 +1523,48.155,198.682,495.361,359.925,573.910,205.223,498.291,24.126,139.944,24.126,329.860,324.966,344.195,25.973,26.882,25.973 +1524,48.187,193.904,503.259,364.134,563.757,201.425,505.708,18.034,146.768,18.034,329.554,324.518,345.373,25.895,26.276,25.895 +1525,48.219,189.580,511.622,366.967,552.925,198.124,513.421,11.889,153.332,11.889,329.256,324.686,346.719,25.185,25.226,25.185 +1526,48.249,184.028,521.180,369.265,541.518,195.901,522.236,5.080,159.661,5.080,324.941,325.017,348.781,25.322,24.549,25.322 +1527,48.278,184.028,521.180,369.265,541.518,195.901,522.236,5.080,159.661,5.080,324.941,325.017,348.781,25.322,24.549,25.322 +1528,48.307,174.496,533.811,370.172,529.799,195.008,533.362,178.744,164.726,178.744,309.364,325.126,350.399,19.000,21.527,19.000 +1529,48.338,114.837,554.289,369.646,517.697,194.633,542.554,171.634,168.906,171.634,192.227,325.373,353.536,18.681,19.934,18.681 +1530,48.372,184.180,556.468,367.348,505.717,195.926,553.293,164.870,173.220,164.870,331.458,325.463,355.793,19.319,21.381,19.319 +1531,48.405,189.737,567.495,363.963,494.668,198.544,563.793,157.203,177.421,157.203,339.455,324.527,358.561,19.654,20.358,19.654 +1532,48.440,195.901,578.146,358.069,482.902,202.430,574.274,149.331,2.472,149.331,345.772,322.692,360.953,19.593,20.844,19.593 +1533,48.472,202.751,589.075,350.422,472.529,207.911,584.895,140.988,8.442,140.988,349.647,321.710,362.930,19.278,21.007,19.278 +1534,48.507,210.992,599.668,340.018,462.623,215.148,595.113,132.383,13.392,132.383,351.744,320.331,364.075,19.124,20.197,19.124 +1535,48.540,221.312,609.217,328.336,453.944,224.444,604.497,123.561,18.677,123.561,354.449,317.519,365.778,19.548,20.681,19.548 +1536,48.572,233.114,617.781,314.533,447.382,235.362,612.863,114.567,24.179,114.567,356.020,315.068,366.834,20.034,20.144,20.034 +1537,48.604,246.223,624.161,300.802,440.728,247.698,618.614,104.888,29.604,104.888,359.637,312.194,371.116,22.669,23.791,22.669 +1538,48.636,259.855,627.680,285.475,438.173,260.367,622.405,95.539,34.931,95.539,360.992,309.992,371.591,26.361,23.502,26.361 +1539,48.669,276.465,629.363,269.903,438.464,276.188,624.385,86.820,41.055,86.820,361.997,308.079,371.968,24.629,22.866,24.629 +1540,48.700,291.653,628.897,253.389,441.663,290.477,623.722,77.187,46.736,77.187,360.888,305.801,371.501,26.018,21.161,26.018 +1541,48.731,310.888,626.565,237.651,447.165,307.708,618.535,68.396,51.953,68.396,352.979,304.696,370.252,21.035,18.558,21.035 +1542,48.764,360.398,677.252,223.653,454.402,320.938,611.832,58.903,57.301,58.903,217.308,303.850,370.106,20.728,18.389,20.728 +1543,48.796,339.586,607.004,212.538,463.470,334.961,601.535,49.777,62.949,49.777,354.624,304.587,368.949,24.194,20.920,24.194 +1544,48.827,349.595,593.805,201.222,474.909,345.105,589.960,40.580,67.834,40.580,356.415,306.022,368.239,25.905,19.551,25.905 +1545,48.858,356.985,580.080,192.145,486.873,352.511,577.334,31.538,73.711,31.538,357.492,306.719,367.991,26.329,19.135,26.329 +1546,48.889,362.318,566.752,185.337,499.699,357.199,564.575,23.038,78.212,23.038,355.962,308.663,367.087,26.082,21.740,26.082 +1547,48.921,364.785,553.637,181.714,512.971,360.098,552.398,14.803,84.207,14.803,355.377,310.955,365.073,25.073,20.114,25.073 +1548,48.951,365.044,540.365,179.772,525.955,360.613,539.829,6.896,89.068,6.896,353.471,314.024,362.398,25.970,21.070,25.970 +1549,48.981,363.489,530.037,178.125,538.681,358.566,530.094,179.332,93.945,179.332,351.209,316.249,361.056,22.019,21.260,22.019 +1550,49.011,363.489,530.037,178.125,538.681,358.566,530.094,179.332,93.945,179.332,351.209,316.249,361.056,22.019,21.260,22.019 +1551,49.041,362.280,519.275,178.075,550.746,357.072,519.993,172.152,98.868,172.152,352.524,319.405,363.038,20.864,20.504,20.864 +1552,49.072,358.555,509.523,179.128,561.900,353.608,510.828,165.223,103.822,165.223,353.240,321.376,363.473,20.077,20.870,20.077 +1553,49.106,354.139,500.525,180.950,571.983,348.918,502.570,158.611,108.531,158.611,352.215,323.187,363.429,19.996,20.859,19.996 +1554,49.139,349.006,492.634,184.495,580.708,344.149,495.166,152.464,112.793,152.464,351.278,324.464,362.231,19.819,20.243,19.819 +1555,49.172,343.924,485.591,188.428,588.463,339.087,488.779,146.616,117.138,146.616,349.714,325.193,361.301,19.528,20.656,19.528 +1556,49.206,338.334,479.799,193.118,595.371,334.019,483.260,141.273,121.002,141.273,349.059,326.018,360.121,19.349,20.887,19.349 +1557,49.238,334.219,473.523,198.607,601.260,329.123,478.396,136.280,124.475,136.280,344.386,326.475,358.487,18.949,21.286,18.949 +1558,49.269,333.493,464.383,203.909,606.175,324.436,474.571,131.634,126.597,131.634,329.608,327.222,356.871,19.017,19.571,19.017 +1559,49.300,369.203,406.157,209.154,610.988,319.001,470.935,127.776,129.327,127.776,192.071,326.258,355.978,18.021,19.627,18.021 +1560,49.332,332.500,441.000,215.160,615.044,314.438,468.094,123.690,131.987,123.690,289.553,326.158,354.679,18.028,20.218,18.028 +1561,49.365,319.087,449.307,220.646,618.147,309.830,465.706,119.442,135.196,119.442,315.519,325.986,353.183,18.721,20.137,18.721 +1562,49.396,310.661,451.487,226.627,620.394,305.103,463.304,115.189,139.341,115.189,324.988,325.397,351.105,19.739,19.724,19.739 +1563,49.428,304.204,451.665,233.047,622.966,300.392,461.432,111.318,144.462,111.318,328.961,324.912,349.929,19.404,20.692,19.404 +1564,49.459,298.243,451.521,240.003,625.212,295.590,459.949,107.475,149.642,107.475,330.986,324.284,348.657,19.077,22.065,19.077 +1565,49.490,292.180,450.767,246.648,627.136,290.246,458.790,103.557,155.624,103.557,331.243,323.509,347.750,19.339,23.725,19.339 +1566,49.523,286.593,450.622,253.533,628.071,285.363,457.725,99.828,161.917,99.828,332.140,323.516,346.557,18.977,24.250,18.977 +1567,49.555,281.511,450.271,260.615,629.552,280.707,457.711,96.170,168.275,96.170,331.044,323.391,346.010,18.863,26.086,18.863 +1568,49.587,276.488,450.117,267.832,629.793,276.148,457.360,92.690,174.375,92.690,330.763,323.684,345.266,18.604,25.928,18.604 +1569,49.618,270.846,450.548,274.988,629.761,271.007,457.836,88.727,0.315,88.727,329.363,324.089,343.942,19.306,26.555,19.306 +1570,49.648,266.236,451.723,281.392,630.164,266.781,458.495,85.396,6.710,85.396,330.989,326.922,344.576,18.792,27.224,18.792 +1571,49.678,266.236,451.723,281.392,630.164,266.781,458.495,85.396,6.710,85.396,330.989,326.922,344.576,18.792,27.224,18.792 +1572,49.708,261.543,453.436,288.080,630.268,262.448,459.574,81.617,13.379,81.617,332.806,328.528,345.214,19.672,28.050,19.672 +1573,49.741,256.983,454.754,294.825,629.669,258.291,460.860,77.905,20.353,77.905,332.942,330.159,345.432,20.464,27.174,20.464 +1574,49.773,252.100,455.899,301.541,628.897,253.971,462.464,74.095,26.811,74.095,332.543,330.964,346.196,21.003,26.602,21.003 +1575,49.807,247.383,457.804,308.344,627.507,249.761,464.401,70.178,33.111,70.178,332.587,332.823,346.613,21.747,25.092,21.747 +1576,49.839,242.179,459.585,315.172,624.790,245.115,466.219,66.132,39.407,66.132,332.206,333.928,346.716,21.899,22.344,21.899 +1577,49.873,236.956,460.523,321.798,622.674,241.347,468.766,61.955,45.674,61.955,328.642,334.580,347.321,23.698,20.530,23.698 +1578,49.906,225.236,456.017,326.555,619.352,235.647,471.394,55.899,51.654,55.899,309.828,336.750,346.968,21.193,20.005,21.193 +1579,49.938,209.294,448.390,332.568,615.958,229.880,475.651,52.943,58.069,52.943,279.380,336.339,347.701,18.339,19.778,18.339 +1580,49.971,218.582,467.508,338.580,610.995,227.378,477.341,48.189,64.938,48.189,321.121,336.012,347.509,24.389,20.567,24.389 +1581,50.003,215.067,473.583,343.571,605.476,222.575,480.647,43.254,71.307,43.254,326.704,335.241,347.322,25.659,20.092,25.659 +1582,50.035,210.735,479.569,348.495,598.638,217.511,484.852,37.948,78.012,37.948,329.341,334.053,346.525,25.806,20.817,25.806 +1583,50.066,205.943,486.083,354.409,590.672,212.681,490.366,32.441,84.500,32.441,330.867,332.123,346.835,25.581,23.395,25.581 +1584,50.097,201.400,492.700,358.719,581.549,207.997,495.999,26.565,91.259,26.565,331.385,329.206,346.137,25.938,24.533,25.938 +1585,50.129,196.671,500.377,361.981,571.635,203.124,502.796,20.556,97.853,20.556,332.046,327.691,345.828,25.515,24.731,25.515 +1586,50.161,192.382,508.971,365.186,560.788,199.151,510.663,14.036,104.621,14.036,332.516,325.456,346.470,25.466,25.915,25.466 +1587,50.191,189.247,521.478,367.372,548.735,195.883,522.325,7.275,111.448,7.275,333.527,323.137,346.906,19.290,26.626,19.290 +1588,50.222,187.500,531.500,368.206,536.140,194.103,531.500,0.000,117.937,0.000,335.000,321.232,348.206,19.000,26.223,19.000 +1589,50.254,186.186,542.951,367.157,523.219,193.124,542.061,172.694,125.096,172.694,336.044,320.820,350.033,19.685,25.850,19.685 +1590,50.285,185.793,555.468,364.826,509.344,194.161,553.232,165.041,131.754,165.041,335.094,319.795,352.418,19.897,24.686,19.897 +1591,50.315,183.684,570.318,360.220,495.592,196.889,564.769,157.209,137.741,157.209,326.106,319.183,354.753,20.189,22.233,20.189 +1592,50.346,183.684,570.318,360.220,495.592,196.889,564.769,157.209,137.741,157.209,326.106,319.183,354.753,20.189,22.233,20.189 +1593,50.375,165.886,595.270,353.974,482.466,200.367,574.218,148.595,142.734,148.595,277.029,319.006,357.829,19.065,19.740,19.065 +1594,50.407,194.894,595.523,345.868,470.511,207.059,585.640,140.906,147.407,140.906,329.315,318.750,360.662,19.403,21.049,19.403 +1595,50.440,209.785,601.084,336.843,460.275,215.016,595.316,132.211,151.805,132.211,348.173,318.056,363.746,19.351,20.580,19.351 +1596,50.473,221.082,610.243,325.701,451.488,224.828,604.569,123.433,157.574,123.433,353.057,317.383,366.656,19.672,20.101,19.672 +1597,50.506,233.823,618.287,312.631,444.795,236.445,612.503,114.386,162.992,114.386,355.703,316.287,368.403,19.782,19.283,19.782 +1598,50.537,247.034,624.998,298.286,440.419,248.522,619.168,104.319,168.616,104.319,358.974,314.968,371.007,23.004,18.975,23.004 +1599,50.568,260.928,628.371,282.718,438.222,261.402,622.615,94.708,174.393,94.708,359.489,313.029,371.040,26.487,19.235,26.487 +1600,50.598,281.044,629.568,267.000,438.000,280.715,623.816,86.724,0.000,86.724,361.069,310.000,372.592,24.361,18.000,24.361 +1601,50.629,292.967,627.270,251.653,440.465,291.822,622.446,76.645,5.711,76.645,362.759,309.656,372.675,25.248,19.702,25.248 +1602,50.661,310.042,621.660,237.204,444.913,308.235,617.200,67.941,10.620,67.941,363.080,308.622,372.703,21.425,20.517,21.425 +1603,50.692,324.366,613.739,223.849,451.528,321.983,609.817,58.716,15.945,58.716,363.288,307.138,372.467,23.602,21.978,23.602 +1604,50.723,337.385,604.494,211.837,460.888,334.115,600.650,49.615,21.615,49.615,361.276,306.374,371.369,24.890,20.155,24.890 +1605,50.754,349.413,598.197,201.657,471.822,342.236,592.019,40.721,27.992,40.721,350.975,306.055,369.914,19.830,19.418,19.830 +1606,50.785,412.605,619.495,193.434,483.850,350.493,580.199,32.320,33.756,32.320,221.480,306.196,368.478,19.402,19.365,19.402 +1607,50.816,365.328,569.254,187.803,495.501,357.188,565.680,23.703,38.804,23.703,348.838,306.112,366.616,26.062,20.888,26.062 +1608,50.847,365.328,569.254,187.803,495.501,357.188,565.680,23.703,38.804,23.703,348.838,306.112,366.616,26.062,20.888,26.062 +1609,50.875,366.055,555.305,183.328,508.190,360.137,553.639,15.720,44.246,15.720,352.722,306.290,365.019,25.732,21.267,25.732 +1610,50.906,366.182,542.670,181.582,520.929,361.415,541.997,8.032,49.399,8.032,352.399,308.692,362.025,25.332,22.235,25.332 +1611,50.938,364.063,530.620,180.530,534.072,359.881,530.566,0.739,54.878,0.739,350.216,311.069,358.582,25.043,21.384,25.043 +1612,50.969,364.217,521.500,180.132,546.286,359.444,522.019,173.800,60.124,173.800,352.165,312.453,361.767,20.938,21.973,20.938 +1613,51.000,361.043,512.007,182.631,557.045,356.736,512.995,167.074,65.082,167.074,350.254,314.634,359.092,20.132,21.059,20.132 +1614,51.031,356.732,502.731,185.051,567.891,352.583,504.175,160.812,70.017,160.812,349.547,317.479,358.333,19.709,21.188,19.709 +1615,51.063,352.329,494.915,187.347,577.967,347.619,497.145,154.665,74.973,154.665,348.462,320.024,358.885,20.076,20.146,20.076 +1616,51.093,346.842,488.063,191.178,586.802,342.610,490.598,149.075,79.261,149.075,348.825,322.442,358.691,19.734,20.209,19.734 +1617,51.125,341.592,482.028,194.979,594.502,337.257,485.202,143.794,83.895,143.794,347.988,324.784,358.734,19.091,19.525,19.091 +1618,51.155,336.565,476.586,199.555,601.025,332.087,480.516,138.731,88.508,138.731,346.285,326.228,358.201,19.358,19.644,19.358 +1619,51.188,330.648,472.692,203.988,607.432,326.628,476.846,134.066,92.564,134.066,346.690,327.702,358.252,19.032,19.488,19.032 +1620,51.219,325.564,468.494,208.747,612.029,321.609,473.296,129.472,96.642,129.472,345.234,329.017,357.678,19.389,19.832,19.389 +1621,51.249,320.242,465.478,213.704,616.128,316.736,470.417,125.362,100.305,125.362,344.802,329.865,356.915,19.362,19.856,19.362 +1622,51.279,320.242,465.478,213.704,616.128,316.736,470.417,125.362,100.305,125.362,344.802,329.865,356.915,19.362,19.856,19.362 +1623,51.307,315.179,462.960,218.528,619.507,312.020,468.103,121.564,103.459,121.564,343.812,330.571,355.885,18.978,20.016,18.978 +1624,51.339,311.405,459.620,223.378,622.255,307.986,466.051,117.997,106.189,117.997,340.715,331.319,355.281,19.135,21.066,19.135 +1625,51.371,307.687,456.963,227.768,624.401,304.163,464.562,114.883,107.526,114.883,337.539,331.847,354.291,18.595,19.875,18.595 +1626,51.403,306.192,449.370,231.933,626.490,300.551,463.383,111.927,108.864,111.927,323.652,331.730,353.863,18.463,19.983,18.463 +1627,51.434,324.449,383.894,235.978,628.176,296.765,462.333,109.440,110.259,109.440,186.878,331.335,353.240,18.083,20.840,18.083 +1628,51.466,307.900,413.530,240.629,629.551,293.380,461.447,106.858,111.578,106.858,252.219,331.844,352.356,17.980,19.607,17.980 +1629,51.497,296.930,433.988,244.716,630.664,290.223,460.675,104.107,113.199,104.107,296.873,331.811,351.908,18.026,19.959,18.026 +1630,51.528,290.957,439.898,249.293,631.640,286.820,460.254,101.487,115.641,101.487,309.309,331.075,350.854,18.080,20.194,18.080 +1631,51.558,285.923,444.370,253.386,631.710,283.623,459.421,98.686,118.496,98.686,319.309,331.127,349.759,18.411,19.686,18.411 +1632,51.589,281.493,447.257,257.707,631.947,280.275,459.068,95.891,122.260,95.891,324.815,330.498,348.563,18.939,19.647,18.939 +1633,51.620,277.095,448.689,262.519,631.756,276.580,458.474,93.013,126.573,93.013,327.967,329.814,347.564,18.974,20.181,18.974 +1634,51.650,273.000,449.000,267.857,631.115,273.000,458.058,90.000,131.336,90.000,328.000,328.873,346.115,18.000,21.740,18.000 +1635,51.681,273.000,449.000,267.857,631.115,273.000,458.058,90.000,131.336,90.000,328.000,328.873,346.115,18.000,21.740,18.000 +1636,51.710,268.686,449.808,273.375,630.838,269.126,458.240,87.013,136.621,87.013,328.284,327.760,345.171,19.278,22.738,19.278 +1637,51.742,264.354,451.100,279.400,630.700,265.174,458.989,84.068,143.130,84.068,328.660,327.400,344.524,19.286,24.400,19.286 +1638,51.774,260.360,451.622,285.314,629.676,261.558,459.114,80.910,148.867,80.910,329.173,326.727,344.346,19.788,25.587,19.788 +1639,51.805,256.432,452.864,291.363,628.271,257.950,459.860,77.754,154.799,77.754,329.013,326.161,343.331,20.386,26.240,20.386 +1640,51.837,252.279,453.818,297.344,626.939,254.235,460.899,74.554,160.907,74.554,328.353,325.838,343.047,21.180,27.659,21.180 +1641,51.869,248.015,454.825,303.685,625.449,250.499,462.155,71.281,166.535,71.281,327.973,326.216,343.450,21.932,26.970,21.932 +1642,51.899,243.994,457.022,309.887,623.088,246.655,463.550,67.818,172.915,67.818,329.108,326.953,343.207,22.490,27.887,22.490 +1643,51.929,239.336,459.561,316.462,621.192,242.451,466.027,64.277,178.315,64.277,329.469,327.182,343.823,22.542,27.576,22.542 +1644,51.963,235.292,461.836,322.367,617.712,238.603,467.710,60.590,4.427,60.590,330.120,328.958,343.608,23.493,26.862,23.493 +1645,51.993,231.105,464.260,328.593,614.774,234.967,470.130,56.659,10.763,56.659,330.539,330.390,344.592,24.293,26.582,24.293 +1646,52.023,226.409,467.805,334.455,611.105,230.691,473.404,52.595,16.837,52.595,330.733,331.998,344.831,24.532,25.528,24.532 +1647,52.055,220.918,470.464,340.603,606.421,226.458,476.680,48.296,23.325,48.296,328.952,333.400,345.604,24.970,22.536,24.970 +1648,52.086,214.869,472.590,346.376,601.221,222.644,480.016,43.685,29.345,43.685,324.882,334.248,346.384,25.676,20.647,25.676 +1649,52.117,193.227,466.864,351.485,597.021,217.960,485.381,36.822,35.074,36.822,285.800,334.417,347.593,22.142,19.746,22.142 +1650,52.146,193.227,466.864,351.485,597.021,217.960,485.381,36.822,35.074,36.822,285.800,334.417,347.593,22.142,19.746,22.142 +1651,52.175,194.500,480.000,356.156,590.892,212.645,492.096,33.690,41.238,33.690,304.808,334.613,348.422,18.860,19.676,18.860 +1652,52.206,200.035,489.029,360.434,583.604,210.309,494.577,28.369,47.675,28.369,325.442,334.315,348.795,25.957,20.345,25.957 +1653,52.238,197.033,497.222,363.769,575.803,206.059,500.983,22.620,53.865,22.620,329.154,333.485,348.711,26.231,20.139,26.231 +1654,52.270,194.242,505.640,367.200,566.103,202.245,508.019,16.557,60.440,16.557,332.638,332.031,349.336,25.751,22.083,25.751 +1655,52.300,191.224,514.354,369.431,555.530,198.823,515.753,10.433,66.125,10.433,334.529,329.884,349.982,24.618,24.615,24.618 +1656,52.337,188.950,523.621,370.189,544.504,196.030,524.084,3.740,72.646,3.740,336.048,327.387,350.239,25.090,25.115,25.090 +1657,52.367,187.851,536.759,369.630,532.477,194.497,536.398,176.887,79.846,176.887,336.862,324.052,350.174,19.498,25.020,19.498 +1658,52.398,187.771,548.268,367.536,519.997,193.741,547.161,169.495,85.914,169.495,339.523,321.253,351.667,19.990,25.293,19.990 +1659,52.429,189.455,559.395,364.082,507.118,194.908,557.617,161.940,92.622,161.940,341.519,318.628,352.990,19.469,25.706,19.469 +1660,52.459,193.128,571.345,359.066,494.120,198.003,568.972,154.049,99.866,154.049,344.311,316.167,355.156,19.902,25.101,19.902 +1661,52.489,197.402,583.330,350.572,481.256,202.223,580.061,145.861,106.390,145.861,344.818,314.728,356.468,19.691,21.783,19.691 +1662,52.522,198.333,600.412,342.224,470.310,209.072,590.612,137.617,113.199,137.617,329.814,314.216,358.893,19.189,21.928,19.189 +1663,52.553,202.483,617.188,330.989,459.273,216.672,599.477,128.699,119.129,128.699,316.405,313.050,361.792,19.524,20.318,19.524 +1664,52.583,215.583,628.684,318.721,450.497,227.588,608.383,120.598,124.570,120.598,317.410,312.933,364.580,19.371,20.614,19.371 +1665,52.613,215.583,628.684,318.721,450.497,227.588,608.383,120.598,124.570,120.598,317.410,312.933,364.580,19.371,20.614,19.371 +1666,52.640,236.239,622.284,305.707,443.866,239.151,615.053,111.935,128.660,111.935,351.722,312.816,367.313,19.450,21.240,19.450 +1667,52.673,252.916,627.599,292.500,440.000,254.424,621.255,103.373,135.000,103.373,357.251,311.834,370.293,24.506,19.092,24.506 +1668,52.706,264.007,629.870,277.463,437.851,264.344,623.405,92.987,140.404,92.987,359.025,312.303,371.971,26.225,18.836,26.225 +1669,52.738,279.491,629.815,262.657,438.479,278.893,624.099,84.023,146.654,84.023,361.109,312.314,372.603,26.286,18.343,26.286 +1670,52.770,295.698,627.059,247.682,441.311,294.355,621.892,75.430,152.505,75.430,362.353,312.230,373.030,24.486,18.605,24.486 +1671,52.802,312.519,620.850,233.484,446.719,310.568,616.292,66.824,158.339,66.824,362.535,311.970,372.451,23.006,18.397,23.006 +1672,52.834,325.693,612.924,220.782,453.497,323.297,609.109,57.868,164.219,57.868,363.592,311.140,372.603,23.586,18.451,23.586 +1673,52.865,337.450,603.356,209.132,462.044,334.340,599.759,49.155,169.893,49.155,362.624,310.621,372.134,24.729,18.153,24.729 +1674,52.896,347.384,591.953,199.827,471.334,343.833,588.920,40.503,175.426,40.503,362.397,309.172,371.738,26.233,18.979,26.233 +1675,52.926,355.388,580.504,192.034,482.023,350.911,577.695,32.098,1.302,32.098,360.285,308.307,370.856,25.782,18.768,25.782 +1676,52.955,361.828,568.674,186.385,492.923,355.801,565.980,24.082,7.125,24.082,355.762,308.846,368.963,25.748,22.574,25.748 +1677,52.986,384.887,564.292,182.989,505.050,358.768,556.598,16.414,11.889,16.414,311.904,309.119,366.361,21.371,20.086,21.371 +1678,53.017,378.428,547.087,180.050,516.850,360.589,543.925,10.053,18.435,10.053,328.752,308.638,364.986,23.269,20.555,23.269 +1679,53.048,367.155,532.661,179.278,528.364,359.400,532.384,2.053,23.600,2.053,344.782,308.858,360.302,24.988,21.761,24.988 +1680,53.079,367.155,532.661,179.278,528.364,359.400,532.384,2.053,23.600,2.053,344.782,308.858,360.302,24.988,21.761,24.988 +1681,53.107,365.346,524.197,179.878,540.062,359.657,524.666,175.282,29.476,175.282,349.453,309.466,360.871,20.881,21.499,20.881 +1682,53.139,362.335,514.701,181.600,550.431,357.777,515.598,168.860,35.032,168.860,349.884,310.980,359.175,20.241,22.117,20.241 +1683,53.173,358.888,505.765,184.134,560.890,354.785,507.024,162.945,40.267,162.945,349.304,312.463,357.888,19.642,21.958,19.642 +1684,53.205,354.571,498.048,187.202,570.824,350.778,499.642,157.198,45.339,157.198,348.526,314.000,356.756,19.946,21.874,19.946 +1685,53.237,350.516,490.836,191.201,579.361,346.677,492.888,151.876,50.492,151.876,347.055,316.033,355.761,19.631,21.183,19.631 +1686,53.268,345.795,484.654,195.465,588.304,341.833,487.241,146.864,55.472,146.864,346.152,320.036,355.616,19.364,20.919,19.364 +1687,53.298,340.883,479.350,199.464,595.514,336.786,482.542,142.087,60.164,142.087,345.125,322.362,355.513,19.633,20.883,19.633 +1688,53.329,335.810,475.047,203.287,601.919,331.732,478.763,137.667,64.704,137.667,344.745,324.020,355.780,19.220,21.135,19.220 +1689,53.360,330.711,471.302,207.411,607.654,326.778,475.447,133.497,69.217,133.497,344.706,326.185,356.134,18.955,21.053,18.955 +1690,53.391,325.607,468.525,211.638,612.171,322.195,472.658,129.536,73.863,129.536,345.226,327.325,355.945,19.232,20.646,19.232 +1691,53.422,321.124,465.417,215.701,616.061,317.674,470.179,125.916,78.453,125.916,344.169,328.694,355.929,19.218,20.543,19.218 +1692,53.454,316.396,463.164,219.872,619.645,313.210,468.179,122.421,82.681,122.421,343.915,329.941,355.798,19.689,20.183,19.689 +1693,53.485,312.433,461.346,223.838,622.540,309.407,466.763,119.186,86.556,119.186,343.043,330.148,355.454,19.199,19.936,19.199 +1694,53.515,308.498,459.518,227.500,624.500,305.684,465.217,116.274,90.000,116.274,342.159,331.000,354.872,19.080,19.000,19.080 +1695,53.546,308.498,459.518,227.500,624.500,305.684,465.217,116.274,90.000,116.274,342.159,331.000,354.872,19.080,19.000,19.080 +1696,53.574,305.020,457.981,231.404,627.048,302.250,464.327,113.582,93.037,113.582,341.102,332.858,354.950,19.035,19.715,19.035 +1697,53.605,301.924,456.340,234.857,628.892,299.129,463.555,111.174,95.377,111.174,339.304,334.100,354.780,18.959,19.959,18.959 +1698,53.637,299.043,455.979,238.184,629.771,296.752,462.614,109.047,97.070,109.047,340.201,334.145,354.239,18.860,19.971,18.860 +1699,53.671,296.514,455.081,240.540,630.936,294.297,462.284,107.103,97.883,107.103,338.934,335.446,354.007,18.674,20.283,18.674 +1700,53.703,294.425,453.961,243.161,631.879,292.190,462.055,105.436,98.105,105.436,336.699,334.884,353.494,18.408,19.938,18.408 +1701,53.734,293.176,450.794,245.471,632.286,290.510,461.462,104.036,97.956,104.036,331.304,334.735,353.295,18.190,20.340,18.190 +1702,53.765,291.244,450.271,247.540,633.005,288.789,461.231,102.629,97.477,102.629,330.810,335.553,353.274,18.330,19.799,18.330 +1703,53.797,289.639,449.920,249.491,633.229,287.401,460.950,101.470,96.561,101.470,330.242,334.967,352.753,18.408,20.326,18.408 +1704,53.828,288.513,447.760,251.143,633.967,286.042,461.071,100.517,95.339,100.517,325.646,335.808,352.723,18.312,20.472,18.312 +1705,53.859,286.577,450.917,252.862,634.058,284.910,460.696,99.673,93.849,99.673,332.724,335.395,352.565,18.226,20.425,18.226 +1706,53.889,285.516,451.299,254.016,634.485,284.039,460.747,98.881,91.773,98.881,333.454,335.428,352.579,18.340,22.144,18.340 +1707,53.921,284.856,449.820,258.000,635.000,283.267,460.673,98.326,90.000,98.326,330.359,336.000,352.296,18.534,24.000,18.534 +1708,53.952,283.788,452.211,258.024,634.658,282.642,460.502,97.869,86.953,97.869,335.035,335.696,351.775,18.998,21.620,18.998 +1709,53.982,283.166,453.047,259.092,635.639,282.116,460.761,97.745,83.350,97.745,337.200,336.385,352.771,18.779,21.567,18.779 +1710,54.012,283.166,453.047,259.092,635.639,282.116,460.761,97.745,83.350,97.745,337.200,336.385,352.771,18.779,21.567,18.779 +1711,54.042,283.192,453.059,259.225,635.373,282.183,460.629,97.595,78.996,97.595,337.216,335.767,352.490,19.296,20.150,19.296 +1712,54.073,283.825,453.116,259.544,635.269,282.757,460.561,98.168,73.977,98.168,337.427,335.437,352.469,18.802,20.406,18.802 +1713,54.106,284.323,453.806,259.349,634.558,283.340,460.433,98.436,68.147,98.436,338.124,333.696,351.522,19.084,20.661,19.084 +1714,54.138,284.796,453.759,259.333,633.824,283.818,459.963,98.955,62.074,98.955,338.544,332.824,351.106,18.834,20.616,18.834 +1715,54.171,285.248,453.385,259.245,632.953,284.232,459.585,99.310,55.437,99.310,337.689,331.983,350.254,19.025,20.551,19.025 +1716,54.203,285.886,453.875,257.036,633.468,284.822,460.027,99.806,48.918,99.806,338.792,330.945,351.278,19.002,25.029,19.002 +1717,54.233,287.078,453.681,255.997,632.448,285.937,459.842,100.491,41.987,100.491,337.812,329.428,350.343,19.119,25.941,19.119 +1718,54.264,288.231,453.348,254.894,631.427,287.019,459.429,101.275,34.509,101.275,337.519,328.175,349.919,19.217,26.472,19.217 +1719,54.294,289.552,452.972,253.126,630.214,288.184,459.309,102.182,27.661,102.182,335.941,327.084,348.909,19.270,26.736,19.270 +1720,54.324,291.560,452.804,250.998,628.506,290.110,458.924,103.325,20.244,103.325,335.482,326.890,348.062,18.975,27.102,18.975 +1721,54.355,292.842,451.967,249.276,627.221,291.188,458.497,104.213,12.155,104.213,334.228,324.708,347.701,18.791,27.628,18.791 +1722,54.386,294.398,452.335,246.960,626.043,292.640,458.742,105.350,4.198,105.350,333.562,323.552,346.850,18.946,26.864,18.946 +1723,54.416,296.241,452.463,243.940,624.675,294.356,458.804,106.557,175.815,106.557,333.493,323.112,346.722,18.963,26.296,18.963 +1724,54.446,296.241,452.463,243.940,624.675,294.356,458.804,106.557,175.815,106.557,333.493,323.112,346.722,18.963,26.296,18.963 +1725,54.476,298.822,452.750,240.820,624.485,296.575,459.623,108.104,167.845,108.104,333.587,323.369,348.051,19.321,25.658,19.321 +1726,54.507,300.447,452.679,237.345,623.100,297.907,459.957,109.235,158.860,109.235,332.557,324.083,347.974,19.196,25.680,19.196 +1727,54.540,302.913,452.729,234.473,622.949,299.831,460.820,110.854,152.447,110.854,332.233,324.837,349.549,19.135,22.704,19.135 +1728,54.572,306.471,452.382,230.750,621.750,302.440,461.955,112.834,144.462,112.834,329.412,325.842,350.185,19.403,20.227,19.403 +1729,54.603,310.621,449.969,227.803,621.756,304.480,463.414,114.546,136.865,114.546,322.209,326.971,351.772,19.496,20.781,19.496 +1730,54.633,316.700,442.600,224.821,621.063,305.969,464.061,116.565,128.845,116.565,305.447,328.267,353.436,17.889,20.229,17.889 +1731,54.664,347.840,393.271,221.889,620.630,308.418,465.844,118.511,120.895,118.511,189.457,329.107,354.635,18.030,20.447,18.030 +1732,54.696,315.589,460.078,218.202,618.721,311.293,467.359,120.544,112.958,120.544,338.427,330.519,355.336,18.660,20.884,18.660 +1733,54.727,317.068,463.598,215.930,617.569,313.861,468.541,122.975,105.359,122.975,344.858,330.216,356.643,18.935,19.849,18.935 +1734,54.758,320.580,466.034,213.067,615.644,317.201,470.722,125.789,97.703,125.789,345.354,329.947,356.910,18.940,19.867,18.940 +1735,54.789,323.722,468.090,210.500,613.000,320.478,472.180,128.418,90.000,128.418,346.900,328.000,357.342,19.182,19.000,19.182 +1736,54.820,328.359,469.546,207.695,609.473,324.268,474.166,131.532,82.200,131.532,344.821,327.829,357.163,19.485,19.896,19.485 +1737,54.851,332.000,473.000,204.742,605.515,328.057,476.943,135.000,74.427,135.000,345.068,326.098,356.221,18.385,20.324,18.385 +1738,54.882,336.663,475.865,202.233,600.738,332.537,479.524,138.434,66.280,138.434,344.802,324.607,355.831,19.312,20.197,19.312 +1739,54.912,336.663,475.865,202.233,600.738,332.537,479.524,138.434,66.280,138.434,344.802,324.607,355.831,19.312,20.197,19.312 +1740,54.941,340.719,479.006,199.105,594.707,336.649,482.204,141.843,58.440,141.843,344.969,322.450,355.321,19.546,21.580,19.546 +1741,54.973,345.301,483.445,195.032,587.560,341.044,486.322,145.954,50.220,145.954,345.051,318.429,355.326,19.349,21.748,19.349 +1742,55.006,349.125,488.833,191.353,579.825,345.256,491.051,150.164,41.941,150.164,346.422,316.343,355.340,19.709,21.754,19.709 +1743,55.039,353.160,494.503,187.577,571.385,349.130,496.412,154.654,33.690,154.654,347.273,314.792,356.192,20.072,22.188,20.072 +1744,55.072,357.120,501.039,184.260,562.893,352.595,502.707,159.762,25.796,159.762,347.877,313.517,357.523,19.651,22.539,19.651 +1745,55.104,363.850,507.796,180.917,554.237,355.230,510.123,164.890,18.283,164.890,341.714,312.437,359.571,19.569,22.144,19.569 +1746,55.135,368.819,515.799,178.776,544.598,357.474,517.734,170.318,11.125,170.318,338.324,311.617,361.342,19.958,22.880,19.958 +1747,55.167,387.434,523.873,177.510,535.888,358.554,525.839,176.105,5.001,176.105,304.724,310.439,362.618,20.327,22.128,20.327 +1748,55.198,381.179,536.215,177.972,525.446,358.541,535.619,1.507,178.958,1.507,316.259,312.203,361.549,20.467,20.669,20.467 +1749,55.230,364.950,545.598,177.978,516.160,358.877,544.762,7.838,173.850,7.838,353.958,310.864,366.218,20.932,22.092,20.932 +1750,55.260,363.813,553.611,179.956,506.483,358.528,552.192,15.027,167.800,15.027,357.691,311.214,368.634,25.325,21.318,25.325 +1751,55.289,360.641,564.770,183.723,495.140,355.972,562.858,22.267,160.821,22.267,360.036,311.232,370.128,25.453,20.286,25.453 +1752,55.322,355.508,577.793,189.557,485.117,351.546,575.431,30.801,154.048,30.801,361.551,311.257,370.775,25.388,18.599,25.388 +1753,55.353,349.953,588.765,196.936,475.117,346.234,585.825,38.333,147.435,38.333,362.072,311.002,371.554,25.484,18.598,25.484 +1754,55.384,341.783,599.897,205.855,464.979,338.081,596.010,46.397,140.856,46.397,361.414,310.640,372.150,24.931,19.587,24.931 +1755,55.414,330.477,610.466,216.426,456.416,327.379,606.041,55.008,134.301,55.008,361.609,309.810,372.412,23.348,19.694,23.348 +1756,55.445,330.477,610.466,216.426,456.416,327.379,606.041,55.008,134.301,55.008,361.609,309.810,372.412,23.348,19.694,23.348 +1757,55.475,318.500,619.000,228.668,449.631,315.993,613.986,63.435,127.936,63.435,360.901,309.425,372.114,22.361,18.832,22.361 +1758,55.508,304.584,625.794,241.684,444.113,302.802,620.248,72.195,121.482,72.195,361.124,308.836,372.775,22.030,18.791,22.030 +1759,55.541,291.228,629.617,255.159,440.409,290.281,623.370,81.374,114.993,81.374,359.683,308.345,372.320,26.456,19.742,26.456 +1760,55.572,275.500,632.000,269.100,439.200,275.500,624.600,90.000,108.435,90.000,356.000,308.322,370.800,25.000,20.555,25.000 +1761,55.604,259.493,642.747,283.477,440.945,262.583,624.108,99.414,102.400,99.414,330.437,308.580,368.226,25.813,19.249,25.813 +1762,55.634,239.787,635.683,298.298,443.767,244.654,619.385,106.628,95.456,106.628,333.231,308.747,367.249,22.598,18.601,22.598 +1763,55.665,230.348,619.390,312.894,449.390,233.385,613.165,116.008,88.375,116.008,350.256,309.159,364.109,19.486,20.850,19.486 +1764,55.697,219.921,609.361,326.060,455.920,222.820,605.160,124.607,81.870,124.607,352.731,310.420,362.938,19.778,22.769,19.778 +1765,55.728,210.330,599.696,337.840,464.133,213.993,595.744,132.825,75.440,132.825,350.651,312.589,361.428,19.749,24.260,19.749 +1766,55.760,202.769,589.393,347.711,473.802,206.933,585.995,140.786,69.044,140.786,349.261,314.749,360.009,19.320,24.797,19.320 +1767,55.791,196.502,579.136,355.711,484.573,201.664,575.974,148.505,62.560,148.505,346.101,317.519,358.207,19.624,24.457,19.624 +1768,55.822,192.392,568.377,362.328,495.442,198.192,565.783,155.898,56.203,155.898,344.397,320.612,357.103,19.890,24.368,19.890 +1769,55.854,189.566,557.572,367.236,506.535,196.105,555.583,163.080,49.834,163.080,342.323,323.271,355.994,19.518,24.166,19.518 +1770,55.884,188.156,547.589,370.491,517.487,195.393,546.286,169.792,43.771,169.792,340.153,325.498,354.860,20.329,22.646,20.329 +1771,55.914,187.750,537.616,371.555,528.776,195.535,537.116,176.323,37.476,176.323,336.783,328.262,352.385,19.426,20.660,19.426 +1772,55.947,187.599,526.868,372.092,538.086,196.590,527.154,1.818,31.737,1.818,333.530,330.712,351.520,23.655,20.480,23.655 +1773,55.977,187.599,526.868,372.092,538.086,196.590,527.154,1.818,31.737,1.818,333.530,330.712,351.520,23.655,20.480,23.655 +1774,56.008,187.467,520.197,371.995,547.021,198.043,521.692,8.046,26.295,8.046,330.209,330.945,351.571,18.932,20.673,18.932 +1775,56.041,186.101,511.890,370.682,554.314,199.951,515.197,13.431,21.326,13.431,321.817,331.961,350.295,18.582,22.267,18.582 +1776,56.073,122.632,483.533,368.862,561.807,202.081,509.475,18.083,16.871,18.083,182.419,331.217,349.573,18.159,21.971,18.159 +1777,56.105,183.076,494.632,366.148,568.108,204.750,502.748,20.528,12.360,20.528,301.850,331.567,348.137,24.910,21.840,24.910 +1778,56.137,196.200,490.100,362.930,574.590,208.290,496.145,26.565,6.754,26.565,319.758,330.898,346.792,25.938,22.174,25.938 +1779,56.168,202.033,486.605,359.009,581.305,210.937,491.909,30.784,0.759,30.784,325.197,330.156,345.925,25.864,23.336,25.864 +1780,56.199,206.121,482.602,355.074,587.256,213.774,487.890,34.641,174.437,34.641,326.863,329.654,345.469,25.744,24.527,25.744 +1781,56.231,210.154,479.304,350.762,592.658,216.665,484.423,38.175,167.242,38.175,328.060,328.754,344.626,25.498,26.389,25.498 +1782,56.261,213.928,476.449,346.350,596.950,219.421,481.300,41.448,159.775,41.448,328.733,328.420,343.389,25.183,26.521,25.183 +1783,56.291,216.426,473.055,341.892,601.184,221.974,478.494,44.433,152.071,44.433,327.507,327.991,343.045,24.825,26.708,24.825 +1784,56.322,219.922,470.497,337.871,605.012,225.055,476.046,47.231,144.077,47.231,327.445,328.277,342.562,25.161,26.608,25.161 +1785,56.354,222.300,468.431,333.637,608.614,227.142,474.142,49.708,136.790,49.708,327.903,328.291,342.877,24.143,26.680,24.143 +1786,56.384,225.208,466.839,330.146,611.817,229.795,472.736,52.125,128.660,52.125,327.844,329.370,342.787,24.031,25.612,24.031 +1787,56.414,227.848,465.020,327.041,614.730,232.334,471.268,54.324,120.466,54.324,328.158,330.476,343.543,24.557,24.844,24.557 +1788,56.445,227.848,465.020,327.041,614.730,232.334,471.268,54.324,120.466,54.324,328.158,330.476,343.543,24.557,24.844,24.557 +1789,56.475,229.846,463.769,324.067,617.452,234.269,470.403,56.310,112.954,56.310,328.383,331.971,344.328,23.297,23.400,23.297 +1790,56.507,231.845,462.484,320.721,619.748,236.147,469.394,58.096,105.141,58.096,328.395,333.467,344.676,23.720,20.294,23.720 +1791,56.540,233.409,461.410,319.268,621.602,237.915,469.079,59.566,97.545,59.566,327.640,334.043,345.431,23.010,20.713,23.010 +1792,56.572,234.759,460.074,318.328,623.001,239.497,468.590,60.909,89.563,60.909,327.029,334.090,346.520,22.543,19.358,22.543 +1793,56.603,235.059,457.557,317.627,624.706,240.942,468.668,62.103,82.134,62.103,322.427,335.856,347.570,21.939,20.196,21.939 +1794,56.634,231.866,452.052,317.089,625.250,240.480,469.150,63.260,74.678,63.260,309.462,336.266,347.752,18.202,20.650,18.202 +1795,56.664,214.694,413.673,316.294,625.957,241.567,468.761,63.997,67.223,63.997,225.503,336.302,348.089,17.844,19.709,17.844 +1796,56.697,235.785,452.348,315.571,625.870,243.390,467.634,63.549,59.534,63.549,313.499,336.813,347.645,20.686,19.672,20.686 +1797,56.728,241.008,458.137,315.766,625.904,245.023,466.932,65.462,52.150,65.462,328.654,335.650,347.989,23.039,19.625,23.039 +1798,56.758,241.902,458.655,315.500,625.000,245.284,466.263,66.038,45.000,66.038,330.495,334.461,347.147,23.251,20.506,23.251 +1799,56.790,242.247,459.552,315.673,624.325,245.130,466.092,66.211,37.569,66.211,332.193,334.243,346.488,21.939,22.254,21.939 +1800,56.823,242.821,459.171,314.396,624.492,245.616,465.563,66.385,30.735,66.385,332.392,333.570,346.345,22.830,24.276,22.830 +1801,56.854,242.475,459.385,314.162,623.952,245.151,465.508,66.387,23.245,66.387,332.276,332.467,345.641,21.810,25.425,21.810 +1802,56.885,242.669,459.085,314.164,623.255,245.329,465.140,66.285,15.005,66.285,331.667,331.424,344.895,22.797,26.776,22.797 +1803,56.915,242.066,458.580,313.947,622.704,244.889,464.945,66.077,7.496,66.077,330.490,330.337,344.417,22.990,27.395,22.990 +1804,56.945,242.066,458.580,313.947,622.704,244.889,464.945,66.077,7.496,66.077,330.490,330.337,344.417,22.990,27.395,22.990 +1805,56.974,241.438,458.381,314.000,622.000,244.352,464.841,65.722,0.000,65.722,329.619,328.000,343.793,23.099,26.000,23.099 +1806,57.008,240.726,459.090,314.421,621.787,243.598,465.286,65.131,173.660,65.131,329.886,327.761,343.544,22.690,26.614,22.690 +1807,57.041,239.364,458.761,314.780,621.076,242.574,465.472,64.440,166.608,64.440,328.181,327.419,343.059,22.279,26.636,22.279 +1808,57.074,238.602,458.705,315.397,620.726,242.067,465.684,63.593,159.444,63.593,327.373,327.481,342.956,23.207,26.685,23.207 +1809,57.108,237.077,459.650,316.119,620.184,240.617,466.493,62.650,152.387,62.650,326.987,327.543,342.396,22.634,26.310,22.634 +1810,57.140,236.073,459.967,317.277,619.403,239.641,466.524,61.446,145.491,61.446,327.858,327.969,342.787,23.446,26.112,23.446 +1811,57.173,234.194,461.095,318.865,618.913,237.954,467.650,60.164,138.576,60.164,327.822,328.605,342.937,22.847,26.068,22.847 +1812,57.204,232.751,461.912,320.461,618.265,236.754,468.488,58.671,131.987,58.671,327.529,328.908,342.926,24.103,25.569,24.103 +1813,57.235,230.526,463.233,322.935,617.147,234.777,469.772,56.976,124.651,56.976,327.622,329.825,343.221,23.267,24.981,23.267 +1814,57.265,228.384,464.594,325.367,615.928,232.878,471.039,55.107,118.250,55.107,327.785,330.585,343.499,23.572,23.797,23.572 +1815,57.296,226.607,466.285,328.118,614.949,231.303,472.533,53.069,111.730,53.069,328.396,332.217,344.027,24.812,23.580,24.812 +1816,57.326,223.991,467.926,331.213,612.378,228.820,473.842,50.774,105.219,50.774,328.867,332.141,344.140,24.995,22.364,24.995 +1817,57.357,221.296,470.605,335.692,610.262,226.470,476.391,48.196,98.807,48.196,329.673,332.400,345.195,24.334,23.494,24.334 +1818,57.388,218.424,472.617,338.312,607.046,223.973,478.246,45.409,93.215,45.409,328.180,332.880,343.988,25.405,20.013,25.405 +1819,57.420,215.657,475.759,343.827,603.935,221.627,481.211,42.405,87.180,42.405,329.814,332.828,345.985,25.750,22.313,25.750 +1820,57.450,211.943,478.761,348.008,599.625,218.534,484.085,38.928,81.498,38.928,329.697,333.914,346.643,25.732,21.926,25.732 +1821,57.480,211.943,478.761,348.008,599.625,218.534,484.085,38.928,81.498,38.928,329.697,333.914,346.643,25.732,21.926,25.732 +1822,57.509,208.057,482.290,352.267,594.561,215.387,487.498,35.395,76.057,35.395,329.204,333.971,347.187,26.279,21.586,26.279 +1823,57.541,204.621,486.721,356.574,588.801,212.260,491.364,31.293,70.866,31.293,329.979,333.943,347.859,25.887,21.537,25.887 +1824,57.573,200.800,492.400,360.665,582.202,208.906,496.453,26.565,65.879,26.565,330.044,333.321,348.170,25.938,21.482,25.938 +1825,57.604,197.190,498.776,364.145,574.869,205.419,502.068,21.801,61.157,21.801,331.095,333.051,348.822,25.812,20.997,25.812 +1826,57.635,193.438,505.070,367.664,566.222,202.576,507.824,16.771,56.617,16.771,330.745,332.276,349.833,25.773,21.339,25.773 +1827,57.667,190.990,512.657,369.834,557.129,199.762,514.437,11.470,52.232,11.470,332.429,331.697,350.330,24.927,20.774,24.927 +1828,57.698,188.714,520.476,371.717,546.857,197.474,521.366,5.801,48.122,5.801,334.242,330.615,351.853,25.368,21.644,25.368 +1829,57.730,187.963,532.744,372.140,535.869,196.032,532.687,179.592,44.326,179.592,336.020,329.622,352.160,18.804,20.779,18.804 +1830,57.761,187.541,542.784,371.026,524.969,195.004,541.863,172.965,40.101,172.965,338.492,328.590,353.531,19.402,20.693,19.402 +1831,57.792,188.618,553.471,368.841,513.076,195.475,551.756,165.964,36.334,165.964,341.005,327.782,355.142,19.645,20.644,19.645 +1832,57.822,191.171,564.374,364.953,500.855,197.325,561.975,158.703,33.311,158.703,343.548,326.450,356.758,20.024,20.821,20.024 +1833,57.854,195.163,575.073,359.951,488.729,200.689,572.029,151.144,29.578,151.144,346.760,324.346,359.378,19.554,20.637,19.554 +1834,57.884,201.016,586.181,352.643,476.829,206.071,582.409,143.270,25.619,143.270,348.612,322.889,361.227,19.707,21.176,19.707 +1835,57.914,208.195,596.191,343.765,466.582,212.502,591.908,135.161,21.965,135.161,350.748,320.147,362.895,18.807,20.531,18.807 +1836,57.943,208.195,596.191,343.765,466.582,212.502,591.908,135.161,21.965,135.161,350.748,320.147,362.895,18.807,20.531,18.807 +1837,57.974,217.320,606.240,333.065,457.304,220.859,601.522,126.870,18.232,126.870,353.600,317.813,365.396,19.600,20.158,19.600 +1838,58.008,228.282,614.614,320.592,449.580,230.971,609.615,118.284,14.490,118.284,355.438,316.283,366.789,19.688,20.060,19.688 +1839,58.042,241.079,621.709,306.690,443.495,243.028,616.313,109.861,10.690,109.861,356.862,314.582,368.335,20.141,20.129,20.141 +1840,58.075,256.269,627.154,292.228,440.281,257.285,622.075,101.310,6.809,101.310,359.873,313.312,370.233,24.907,18.258,24.907 +1841,58.107,267.255,629.028,276.995,438.598,267.369,623.807,91.254,2.956,91.254,360.308,310.980,370.751,25.235,18.225,25.235 +1842,58.139,286.597,628.898,261.503,439.155,286.057,623.883,83.861,178.970,83.861,362.502,311.201,372.590,26.706,17.720,26.706 +1843,58.172,300.265,625.945,245.989,442.375,298.957,621.278,74.345,174.894,74.345,363.424,310.071,373.118,22.650,18.022,22.650 +1844,58.203,315.108,619.578,231.162,447.990,313.112,615.311,64.930,170.711,64.930,363.142,311.026,372.564,22.482,17.925,22.482 +1845,58.234,328.704,610.967,217.931,455.213,326.029,607.027,55.830,166.541,55.830,363.115,311.162,372.640,23.837,18.869,23.837 +1846,58.264,340.138,600.729,206.252,464.786,336.949,597.319,46.927,162.239,46.927,362.802,311.786,372.140,25.136,18.184,25.136 +1847,58.294,349.732,588.759,196.458,475.396,345.996,585.818,38.208,157.932,38.208,362.092,312.537,371.602,26.177,18.460,26.177 +1848,58.325,356.266,576.399,188.500,487.000,352.254,574.111,29.704,153.435,29.704,361.566,313.049,370.802,25.867,18.336,25.867 +1849,58.356,361.130,563.873,182.560,499.760,356.675,562.105,21.649,148.955,21.649,360.081,314.364,369.668,26.151,19.115,26.151 +1850,58.388,363.471,551.526,178.546,512.261,358.820,550.380,13.836,144.345,13.836,358.737,315.848,368.318,25.660,19.996,25.660 +1851,58.420,363.209,539.755,175.595,524.219,358.244,539.196,6.419,140.412,6.419,356.364,317.135,366.357,25.079,21.460,25.079 +1852,58.451,361.977,530.054,175.250,536.750,357.139,530.111,179.332,135.000,179.332,354.232,318.905,363.909,22.019,19.799,22.019 +1853,58.481,361.977,530.054,175.250,536.750,357.139,530.111,179.332,135.000,179.332,354.232,318.905,363.909,22.019,19.799,22.019 +1854,58.510,362.227,520.017,175.872,548.240,356.994,520.693,172.642,130.314,172.642,355.761,320.092,366.316,20.863,20.680,20.863 +1855,58.543,358.748,510.954,176.643,558.241,353.367,512.289,166.070,126.027,166.070,354.090,321.656,365.178,19.958,21.909,19.958 +1856,58.575,354.839,502.322,179.993,568.699,349.913,504.122,159.925,120.665,159.925,353.038,322.959,363.526,20.048,19.289,20.048 +1857,58.606,350.904,494.708,183.077,577.794,345.712,497.225,154.140,115.899,154.140,351.445,324.312,362.984,19.934,19.790,19.934 +1858,58.638,346.521,487.735,187.472,586.063,341.339,490.876,148.776,110.937,148.776,349.725,325.599,361.845,19.642,19.881,19.642 +1859,58.670,340.995,482.092,192.276,594.004,336.386,485.479,143.688,105.843,143.688,349.342,326.785,360.782,19.339,19.487,19.339 +1860,58.702,336.085,477.037,197.541,600.585,331.676,480.904,138.746,100.886,138.746,347.787,327.726,359.518,19.362,19.716,19.362 +1861,58.734,330.816,472.849,203.235,606.575,326.813,476.964,134.206,95.799,134.206,346.665,328.459,358.147,19.041,19.595,19.041 +1862,58.765,325.756,468.960,208.772,611.990,321.979,473.487,129.833,90.818,129.833,345.955,328.152,357.747,19.471,19.627,19.471 +1863,58.796,320.711,465.848,214.852,616.047,317.539,470.244,125.818,85.830,125.818,345.802,329.240,356.645,19.044,19.937,19.044 +1864,58.827,316.057,462.673,220.752,620.283,312.775,467.958,121.840,80.811,121.840,343.458,329.961,355.901,19.163,20.121,19.163 +1865,58.858,310.974,460.617,227.126,623.729,308.175,465.856,118.111,75.285,118.111,342.997,331.398,354.878,19.367,20.741,19.367 +1866,58.889,306.207,458.765,233.570,626.091,303.844,463.929,114.584,70.907,114.584,342.039,331.436,353.397,19.369,22.171,19.369 +1867,58.922,301.829,456.879,239.044,627.862,299.708,462.337,111.237,65.898,111.237,340.804,330.608,352.516,18.995,22.148,18.995 +1868,58.953,297.688,456.078,244.701,629.490,295.977,461.295,108.153,60.791,108.153,340.618,330.435,351.598,19.020,22.043,19.020 +1869,58.983,293.166,454.485,249.878,630.546,291.661,460.170,104.826,55.305,104.826,339.029,330.395,350.791,18.936,21.440,18.936 +1870,59.013,293.166,454.485,249.878,630.546,291.661,460.170,104.826,55.305,104.826,339.029,330.395,350.791,18.936,21.440,18.936 +1871,59.041,288.778,453.922,255.361,631.443,287.629,459.488,101.662,50.086,101.662,338.488,330.456,349.855,19.043,22.022,19.043 +1872,59.075,285.238,453.327,258.759,633.311,284.214,459.814,98.973,46.169,98.973,337.555,329.645,350.689,19.183,24.729,19.183 +1873,59.109,281.042,452.293,263.770,633.692,280.301,459.284,96.049,41.231,96.049,336.296,329.813,350.357,18.703,25.375,18.703 +1874,59.141,276.955,452.303,269.103,633.521,276.575,459.151,93.180,36.724,93.180,335.316,329.999,349.033,18.582,26.081,18.582 +1875,59.174,273.000,452.500,274.107,633.328,273.000,459.164,90.000,32.039,90.000,335.000,330.189,348.328,18.000,26.694,18.000 +1876,59.207,269.300,452.600,278.811,632.399,269.597,459.145,87.397,27.339,87.397,333.883,330.080,346.986,19.344,26.927,19.344 +1877,59.239,265.139,452.823,283.664,631.818,265.767,459.367,84.516,22.329,84.516,333.594,329.836,346.743,19.120,26.512,19.120 +1878,59.271,261.306,453.402,288.581,630.835,262.268,459.846,81.511,17.435,81.511,332.968,329.836,346.000,19.589,27.754,19.589 +1879,59.301,257.524,453.805,293.600,629.300,258.828,460.246,78.551,12.529,78.551,332.043,329.083,345.185,20.135,27.659,20.135 +1880,59.332,253.169,454.735,298.286,628.012,254.845,461.194,75.455,8.073,75.455,331.415,329.503,344.762,19.662,27.203,19.662 +1881,59.364,249.772,455.547,303.397,626.678,251.911,462.297,72.420,3.521,72.420,330.350,328.348,344.510,21.813,27.010,21.813 +1882,59.395,245.614,456.410,308.500,624.500,248.265,463.363,69.125,0.000,69.125,329.165,327.000,344.047,22.235,27.000,22.235 +1883,59.426,241.359,458.464,313.562,622.334,244.294,464.986,65.772,175.737,65.772,329.523,327.805,343.828,22.616,27.173,22.616 +1884,59.457,237.178,460.170,318.878,619.694,240.606,466.679,62.222,171.373,62.222,329.007,327.684,343.721,23.641,26.647,23.641 +1885,59.490,232.816,462.307,323.828,616.218,236.540,468.388,58.517,167.593,58.517,329.045,327.567,343.308,24.010,26.760,24.010 +1886,59.521,227.745,464.971,329.002,612.878,232.165,471.191,54.601,163.474,54.601,327.918,327.272,343.179,23.753,26.864,23.753 +1887,59.554,223.372,467.694,334.196,608.533,228.229,473.604,50.583,159.775,50.583,327.748,327.037,343.047,25.155,26.718,25.155 +1888,59.584,218.757,471.276,339.446,603.879,224.025,476.779,46.254,155.695,46.254,328.019,326.829,343.256,25.316,26.665,25.316 +1889,59.614,213.831,475.943,344.668,598.377,219.509,480.997,41.673,151.928,41.673,327.856,326.706,343.061,25.158,26.471,25.158 +1890,59.644,213.831,475.943,344.668,598.377,219.509,480.997,41.673,151.928,41.673,327.856,326.706,343.061,25.158,26.471,25.158 +1891,59.674,208.960,480.720,349.688,592.605,215.165,485.374,36.870,148.109,36.870,328.400,326.377,343.913,25.600,27.075,25.600 +1892,59.707,204.541,486.317,354.277,585.088,210.824,490.202,31.736,144.462,31.736,329.055,326.075,343.829,25.491,26.272,25.491 +1893,59.741,200.151,492.686,358.683,577.354,206.694,495.926,26.342,141.340,26.342,330.074,325.466,344.677,25.493,26.706,25.493 +1894,59.774,196.232,500.377,362.276,568.751,202.829,502.832,20.410,138.013,20.410,330.774,324.968,344.852,26.090,26.759,26.090 +1895,59.807,192.255,508.501,365.245,559.231,199.229,510.282,14.323,134.444,14.323,331.535,323.949,345.930,25.501,26.265,25.501 +1896,59.840,188.862,519.947,367.299,549.193,196.029,520.989,8.271,130.914,8.271,332.609,323.536,347.093,19.116,26.600,19.116 +1897,59.874,187.436,529.818,368.111,538.258,194.114,530.001,1.572,127.999,1.572,334.956,323.016,348.316,19.408,26.153,19.408 +1898,59.906,186.631,540.324,367.907,526.160,193.562,539.636,174.330,124.592,174.330,335.718,321.536,349.647,20.008,25.917,20.008 +1899,59.939,186.921,551.867,365.576,514.047,193.683,550.342,167.289,121.464,167.289,337.469,320.219,351.333,19.701,24.940,19.701 +1900,59.969,189.159,563.583,362.042,501.852,195.552,561.180,159.397,118.926,159.397,339.775,318.473,353.436,19.530,24.576,19.530 +1901,60.001,192.477,575.809,356.218,489.106,199.121,572.222,151.639,115.959,151.639,340.346,316.723,355.447,19.429,22.892,19.429 +1902,60.033,196.726,588.655,348.198,477.531,204.147,583.155,143.457,112.834,143.457,338.775,315.151,357.247,19.135,21.343,19.135 +1903,60.064,201.250,604.250,338.990,467.082,211.477,594.023,135.000,109.892,135.000,330.926,313.886,359.852,19.092,21.690,19.092 +1904,60.096,212.328,614.588,327.775,457.716,220.537,603.468,126.435,107.464,126.435,334.262,312.174,361.904,19.641,20.493,19.641 +1905,60.126,223.896,626.517,314.980,450.140,231.567,611.872,117.646,104.470,117.646,330.879,311.192,363.944,19.868,19.709,19.868 +1906,60.157,233.654,646.195,300.702,444.645,242.570,618.570,107.888,101.650,107.888,308.691,310.086,366.747,21.032,19.366,21.032 +1907,60.189,243.537,699.212,285.738,440.782,254.595,622.563,98.210,99.211,98.210,213.845,308.057,368.730,25.458,19.155,25.458 +1908,60.221,272.000,636.000,270.660,440.518,272.000,625.259,90.000,96.566,90.000,348.000,307.688,369.482,24.000,19.583,24.000 +1909,60.252,290.941,631.724,255.549,441.770,289.836,624.018,81.840,93.814,81.840,354.969,306.653,370.539,26.446,19.291,26.446 +1910,60.281,305.619,627.454,240.328,445.542,303.301,620.404,71.796,91.325,71.796,356.722,305.311,371.565,21.613,19.567,21.613 +1911,60.312,305.619,627.454,240.328,445.542,303.301,620.404,71.796,91.325,71.796,356.722,305.311,371.565,21.613,19.567,21.613 +1912,60.342,320.671,619.910,226.766,452.536,317.610,614.075,62.313,88.798,62.313,357.325,305.290,370.504,22.673,18.639,22.673 +1913,60.375,333.995,609.626,214.186,461.288,330.536,605.044,52.946,86.186,52.946,358.190,305.921,369.673,24.237,19.091,24.237 +1914,60.412,345.373,597.632,203.719,470.755,341.365,593.787,43.809,83.706,43.809,357.895,306.005,369.004,25.806,18.951,25.806 +1915,60.444,354.303,585.345,194.371,482.706,349.744,582.174,34.818,81.076,34.818,357.593,307.611,368.700,25.727,19.570,25.727 +1916,60.475,360.547,571.864,187.871,494.907,355.837,569.555,26.117,78.335,26.117,356.862,308.065,367.353,25.815,19.928,25.815 +1917,60.508,364.358,558.342,184.131,507.328,359.778,556.863,17.899,75.801,17.899,355.111,309.243,364.738,26.154,21.795,26.154 +1918,60.540,366.068,545.360,181.690,520.037,361.806,544.618,9.866,73.202,9.866,354.676,310.427,363.328,26.044,22.506,26.044 +1919,60.574,364.659,533.485,179.725,532.663,359.720,533.290,2.263,70.253,2.263,349.873,311.849,359.758,24.340,22.396,24.340 +1920,60.605,364.348,523.422,180.267,544.451,359.644,523.839,174.932,67.640,174.932,351.547,313.466,360.992,21.037,21.704,21.037 +1921,60.637,361.270,513.263,182.259,555.781,357.047,514.167,167.920,65.007,167.920,350.613,314.567,359.252,20.375,21.562,20.375 +1922,60.669,357.453,503.360,185.096,566.214,353.266,504.773,161.350,62.113,161.350,349.139,316.343,357.976,19.897,21.547,19.897 +1923,60.702,353.180,494.884,189.003,576.403,348.889,496.894,154.904,59.230,154.904,347.554,317.979,357.030,20.210,21.199,20.210 +1924,60.735,347.881,487.305,193.077,585.115,343.620,489.865,148.998,56.310,148.998,346.255,318.675,356.197,19.711,20.524,19.711 +1925,60.767,342.344,480.616,198.606,592.430,338.505,483.468,143.393,53.291,143.393,344.996,319.021,354.560,19.105,21.301,19.105 +1926,60.798,336.517,474.802,204.043,599.373,332.793,478.161,137.948,50.086,137.948,343.548,319.954,353.579,19.597,21.093,19.597 +1927,60.829,330.547,470.152,208.467,606.642,326.454,474.561,132.867,46.637,132.867,342.112,321.299,354.145,18.736,25.486,18.736 +1928,60.860,324.625,465.818,214.568,611.929,320.866,470.638,127.951,43.668,127.951,341.343,321.827,353.569,18.970,26.205,18.970 +1929,60.892,318.642,462.278,220.985,616.428,315.267,467.408,123.331,40.280,123.331,340.345,322.679,352.626,18.991,25.990,18.991 +1930,60.923,312.565,459.382,227.352,620.209,309.537,464.874,118.867,37.042,118.867,338.878,323.613,351.421,19.525,26.506,19.525 +1931,60.954,306.882,457.034,233.702,623.194,304.329,462.631,114.516,33.425,114.516,338.485,324.212,350.788,19.328,26.490,19.328 +1932,60.985,301.391,455.217,240.008,625.630,299.232,461.028,110.376,30.256,110.376,337.446,325.141,349.845,18.990,26.273,18.990 +1933,61.015,301.391,455.217,240.008,625.630,299.232,461.028,110.376,30.256,110.376,337.446,325.141,349.845,18.990,26.273,18.990 +1934,61.043,295.484,453.971,246.321,627.850,293.758,459.868,106.314,27.096,106.314,336.798,326.059,349.087,19.078,26.563,19.078 +1935,61.075,290.073,452.856,252.879,629.108,288.766,458.796,102.404,23.051,102.404,335.927,326.028,348.091,19.278,26.998,19.278 +1936,61.108,284.712,452.002,259.262,630.270,283.761,458.276,98.616,19.737,98.616,334.755,325.846,347.446,18.846,27.131,18.846 +1937,61.141,279.685,451.625,265.700,630.772,279.118,458.149,94.970,15.333,94.970,333.177,325.922,346.275,18.712,27.657,18.712 +1938,61.178,274.445,450.934,271.288,631.075,274.292,457.998,91.239,11.174,91.239,332.074,327.293,346.204,18.569,27.796,18.569 +1939,61.210,269.346,451.117,277.472,630.724,269.662,458.299,87.483,7.253,87.483,330.823,326.854,345.202,19.234,27.722,19.234 +1940,61.242,264.094,451.762,284.410,629.785,264.855,458.768,83.797,2.886,83.797,330.164,326.098,344.259,19.299,27.142,19.299 +1941,61.272,258.959,452.217,290.490,628.604,260.232,459.393,79.934,178.512,79.934,329.214,325.358,343.790,19.710,26.757,19.710 +1942,61.305,254.147,453.588,296.455,627.493,255.895,460.580,75.964,174.920,75.964,329.121,326.380,343.534,20.858,27.005,20.858 +1943,61.336,248.706,454.903,302.683,625.583,250.976,461.925,72.087,170.608,72.087,328.498,326.659,343.257,20.741,26.905,20.741 +1944,61.369,243.857,456.460,308.962,623.348,246.686,463.488,68.076,166.171,68.076,327.952,326.709,343.103,22.210,27.487,22.210 +1945,61.400,238.737,458.875,315.069,620.734,242.058,465.626,63.806,161.395,63.806,327.769,326.680,342.815,22.765,27.015,22.765 +1946,61.432,233.196,461.385,321.264,617.288,237.088,467.992,59.496,156.737,59.496,327.384,326.954,342.721,23.176,27.355,23.176 +1947,61.463,228.123,464.155,327.573,613.205,232.553,470.452,54.871,151.783,54.871,327.455,326.846,342.855,24.526,26.865,24.526 +1948,61.493,222.944,468.129,333.675,608.766,227.825,473.967,50.102,146.659,50.102,327.401,327.022,342.622,25.103,26.821,25.103 +1949,61.524,217.670,472.334,339.609,603.138,223.095,477.791,45.169,141.789,45.169,326.686,326.884,342.077,25.435,26.548,25.435 +1950,61.557,211.985,477.434,345.439,596.935,217.793,482.296,39.929,136.668,39.929,327.780,326.270,342.928,25.096,26.474,25.096 +1951,61.588,206.766,483.380,351.076,590.010,212.907,487.578,34.364,131.566,34.364,328.866,326.295,343.743,25.518,26.779,25.518 +1952,61.619,202.131,489.844,355.743,582.064,208.456,493.294,28.610,126.682,28.610,329.211,326.414,343.621,26.097,26.342,26.097 +1953,61.649,197.447,497.494,360.029,573.444,203.926,500.168,22.426,121.686,22.426,330.486,326.581,344.503,25.838,26.610,25.838 +1954,61.680,197.447,497.494,360.029,573.444,203.926,500.168,22.426,121.686,22.426,330.486,326.581,344.503,25.838,26.610,25.838 +1955,61.710,193.434,506.481,364.137,563.063,200.043,508.369,15.945,116.350,15.945,331.863,324.713,345.611,25.412,26.548,25.412 +1956,61.741,190.372,515.739,366.743,552.288,196.912,516.814,9.335,111.161,9.335,333.416,323.932,346.672,24.939,26.262,24.939 +1957,61.774,188.026,526.343,368.293,540.800,194.776,526.610,2.261,105.803,2.261,334.371,323.083,347.882,24.008,26.197,24.008 +1958,61.807,187.562,539.693,368.197,528.536,193.639,539.148,174.872,100.491,174.872,337.413,321.533,349.616,19.511,26.075,19.511 +1959,61.840,188.167,551.735,366.422,515.664,193.936,550.423,167.196,94.865,167.196,339.967,319.971,351.800,19.680,25.292,19.680 +1960,61.871,190.751,563.656,362.608,502.977,195.757,561.745,159.109,89.176,159.109,342.960,318.140,353.677,19.791,24.868,19.791 +1961,61.902,195.203,575.657,356.449,490.005,199.312,573.366,150.857,84.094,150.857,346.272,316.758,355.681,19.300,23.255,19.300 +1962,61.933,201.408,587.676,349.120,477.878,205.235,584.722,142.334,78.857,142.334,348.702,315.528,358.371,19.429,23.592,19.429 +1963,61.963,209.892,598.346,340.441,466.367,213.233,594.824,133.488,73.202,133.488,351.776,313.985,361.486,19.373,25.053,19.373 +1964,61.994,220.031,608.577,328.765,456.688,222.843,604.474,124.422,67.845,124.422,353.621,311.990,363.569,19.605,24.413,19.605 +1965,62.025,232.546,617.473,315.590,448.953,234.685,612.973,115.427,62.272,115.427,355.776,310.091,365.740,20.165,24.149,20.165 +1966,62.056,245.566,624.070,301.232,443.176,246.839,619.460,105.433,56.653,105.433,359.236,308.951,368.803,22.939,23.595,22.939 +1967,62.088,259.181,627.675,285.661,439.775,259.652,623.160,95.954,50.906,95.954,361.109,307.535,370.188,26.275,23.138,26.275 +1968,62.119,275.038,629.317,270.000,439.000,274.757,624.635,86.559,45.000,86.559,361.790,306.884,371.171,25.713,22.627,25.713 +1969,62.149,294.743,627.233,253.172,441.404,293.832,622.746,78.528,39.065,78.528,362.456,306.566,371.612,25.893,20.306,25.893 +1970,62.180,294.743,627.233,253.172,441.404,293.832,622.746,78.528,39.065,78.528,362.456,306.566,371.612,25.893,20.306,25.893 +1971,62.210,309.452,622.548,238.144,445.947,307.674,618.039,68.484,32.770,68.484,361.508,305.891,371.202,21.889,20.609,21.889 +1972,62.242,323.980,614.920,224.488,452.013,321.447,610.688,59.096,26.299,59.096,362.026,305.916,371.892,23.058,21.419,23.058 +1973,62.274,337.531,604.844,211.980,460.629,334.025,600.680,49.906,19.280,49.906,360.594,306.564,371.480,25.372,20.832,25.372 +1974,62.306,346.936,592.963,201.323,470.848,343.450,589.939,40.941,11.776,40.941,361.567,306.910,370.797,25.528,20.866,25.528 +1975,62.339,354.890,580.871,192.416,482.231,350.820,578.288,32.403,3.905,32.403,360.788,307.922,370.429,25.902,19.889,25.902 +1976,62.371,359.832,567.697,185.200,493.719,355.498,565.749,24.198,175.465,24.198,360.213,309.851,369.718,26.036,19.944,26.036 +1977,62.403,362.949,555.944,180.083,505.856,358.063,554.492,16.557,166.846,16.557,358.726,312.181,368.920,25.466,21.179,25.466 +1978,62.436,365.187,544.211,176.768,517.929,359.153,543.222,9.310,157.874,9.310,355.921,314.218,368.149,25.819,21.988,25.819 +1979,62.468,362.472,533.613,175.191,529.934,357.446,533.395,2.482,148.373,2.482,354.404,316.294,364.467,24.139,21.562,24.139 +1980,62.499,362.398,525.516,174.518,540.956,356.890,525.893,176.084,138.417,176.084,354.908,318.233,365.950,20.687,22.218,20.687 +1981,62.531,360.267,516.857,175.423,551.651,355.027,517.784,169.967,128.264,169.967,354.873,320.314,365.515,20.383,21.531,20.383 +1982,62.562,357.838,508.344,178.197,561.837,352.645,509.796,164.383,118.217,164.383,353.250,321.774,364.035,19.997,20.095,19.997 +1983,62.593,354.729,501.178,181.533,571.011,349.726,503.093,159.057,107.592,159.057,352.003,322.913,362.716,20.132,18.972,20.132 +1984,62.625,351.148,494.615,185.279,579.100,346.187,497.020,154.146,97.334,154.146,350.164,323.382,361.191,19.909,19.021,19.909 +1985,62.657,347.349,488.681,189.732,585.909,342.892,491.292,149.634,86.987,149.634,349.629,322.921,359.959,19.993,19.762,19.993 +1986,62.691,343.571,483.428,194.353,591.931,339.150,486.477,145.414,76.405,145.414,347.395,323.098,358.137,19.503,20.094,19.503 +1987,62.722,339.890,478.850,199.237,596.939,335.699,482.186,141.476,65.581,141.476,345.753,323.181,356.467,19.574,21.005,19.574 +1988,62.753,336.492,474.492,203.578,600.202,332.441,478.167,137.785,55.105,137.785,343.935,321.299,354.875,19.531,21.394,19.531 +1989,62.784,332.524,471.524,206.591,604.349,328.380,475.758,134.387,43.452,134.387,342.326,319.839,354.175,19.057,25.599,19.057 +1990,62.814,332.524,471.524,206.591,604.349,328.380,475.758,134.387,43.452,134.387,342.326,319.839,354.175,19.057,25.599,19.057 +1991,62.844,328.854,468.310,210.125,606.785,325.032,472.678,131.186,33.275,131.186,341.576,320.598,353.185,19.191,26.518,19.191 +1992,62.876,325.240,465.663,213.515,608.737,321.858,469.947,128.290,22.190,128.290,341.217,320.154,352.134,19.374,26.194,19.374 +1993,62.907,322.462,463.188,216.673,610.558,318.927,468.128,125.587,10.437,125.587,338.520,319.596,350.668,19.204,26.010,19.204 +1994,62.939,319.243,460.938,218.996,612.677,315.589,466.549,123.078,179.261,123.078,336.934,318.206,350.327,19.224,24.514,19.224 +1995,62.970,316.480,458.774,220.789,614.071,312.748,465.043,120.763,167.196,120.763,335.595,321.085,350.187,19.334,23.536,19.334 +1996,63.002,314.306,456.033,222.561,616.349,309.821,464.243,118.648,155.450,118.648,331.930,322.839,350.641,19.079,21.718,19.079 +1997,63.035,312.452,452.985,224.652,618.898,307.120,463.601,116.668,144.623,116.668,327.820,324.808,351.580,19.291,20.061,19.291 +1998,63.066,311.501,448.350,227.087,621.555,304.616,463.236,114.821,133.363,114.821,319.678,327.600,352.479,19.650,19.952,19.650 +1999,63.098,315.519,432.537,229.938,624.461,302.117,463.232,113.587,121.827,113.587,286.295,329.455,353.282,17.981,20.772,17.981 +2000,63.130,317.441,420.268,232.491,626.497,300.179,463.124,111.938,109.944,111.938,261.257,331.059,353.662,17.895,20.268,17.895 +2001,63.161,301.537,454.717,235.143,628.525,298.497,462.920,110.338,100.008,110.338,337.102,334.073,354.600,18.905,21.318,18.905 +2002,63.192,298.882,457.089,238.699,630.507,296.851,462.928,109.179,88.657,109.179,342.401,333.377,354.764,18.972,19.213,18.972 +2003,63.223,297.632,456.557,243.268,630.942,295.780,462.190,108.199,77.781,108.199,341.562,333.592,353.422,19.013,22.211,19.013 +2004,63.254,296.143,455.476,245.566,630.327,294.385,461.237,106.966,66.747,106.966,339.906,331.419,351.953,19.162,22.015,19.162 +2005,63.284,294.811,454.660,247.957,630.123,293.114,460.600,105.945,54.866,105.945,338.456,329.818,350.812,18.956,21.596,18.956 +2006,63.314,294.811,454.660,247.957,630.123,293.114,460.600,105.945,54.866,105.945,338.456,329.818,350.812,18.956,21.596,18.956 +2007,63.343,293.523,454.199,248.485,630.531,291.856,460.392,105.068,44.119,105.068,338.300,328.189,351.128,18.941,25.366,18.941 +2008,63.375,292.856,453.449,249.855,629.646,291.261,459.651,104.421,32.276,104.421,337.091,326.715,349.900,18.761,26.344,18.761 +2009,63.408,291.853,452.858,250.759,628.604,290.351,459.052,103.627,21.801,103.627,335.465,325.338,348.212,18.848,26.926,18.848 +2010,63.441,291.228,451.514,251.290,627.734,289.671,458.258,102.995,9.324,102.995,333.692,324.359,347.533,19.113,26.894,19.113 +2011,63.475,290.370,451.132,250.980,626.937,288.894,457.837,102.416,177.917,102.416,332.861,322.623,346.594,19.066,25.892,19.066 +2012,63.508,289.655,451.063,250.296,627.620,288.141,458.202,101.970,165.203,101.970,332.569,323.763,347.165,19.178,25.722,19.178 +2013,63.543,289.617,450.852,249.923,628.008,288.068,458.337,101.689,155.323,101.689,332.476,324.766,347.763,19.180,23.675,19.180 +2014,63.575,288.807,449.655,249.262,628.173,287.080,458.373,101.199,143.973,101.199,330.046,326.215,347.823,19.171,21.615,19.171 +2015,63.608,288.544,449.181,249.384,629.391,286.661,458.978,100.878,133.152,100.878,328.820,328.337,348.772,19.148,21.157,19.148 +2016,63.640,289.079,446.688,249.692,630.462,286.602,459.568,100.886,123.690,100.886,323.344,330.047,349.577,19.074,19.969,19.074 +2017,63.674,288.972,441.233,250.973,631.760,285.568,459.672,100.460,114.444,100.460,313.517,331.622,351.018,18.276,20.442,18.276 +2018,63.705,290.848,425.177,251.816,633.396,284.652,460.417,99.972,106.756,99.972,280.543,333.801,352.104,17.966,19.604,17.966 +2019,63.737,297.689,378.365,252.747,634.333,283.956,460.764,99.462,98.434,99.462,185.606,334.791,352.677,17.919,22.202,17.919 +2020,63.769,285.073,451.760,254.551,634.988,283.698,460.907,98.543,90.730,98.543,334.458,336.164,352.958,18.560,23.075,18.560 +2021,63.800,284.171,453.227,258.224,635.036,283.094,460.653,98.256,83.737,98.256,337.288,335.376,352.295,18.962,22.523,18.962 +2022,63.832,283.830,453.690,258.720,635.302,282.826,460.718,98.130,74.650,98.130,338.280,335.302,352.478,19.375,20.705,19.375 +2023,63.863,284.497,453.326,259.465,634.286,283.463,460.228,98.516,65.308,98.516,337.426,332.944,351.385,19.145,20.302,19.145 +2024,63.895,284.609,453.337,260.660,633.157,283.664,459.601,98.584,55.281,98.584,337.423,331.787,350.092,19.142,20.892,19.142 +2025,63.927,284.997,452.795,259.334,633.652,283.887,459.891,98.896,45.607,98.896,336.572,329.568,350.936,18.883,25.050,18.883 +2026,63.957,285.268,452.737,258.920,632.191,284.233,459.156,99.162,35.106,99.162,336.713,328.426,349.717,18.789,25.822,18.789 +2027,63.988,285.730,452.122,257.942,630.627,284.651,458.594,99.462,24.487,99.462,335.045,327.314,348.168,18.906,27.122,18.906 +2028,64.019,286.736,451.519,256.604,629.049,285.610,457.991,99.866,12.965,99.866,333.858,326.194,346.996,19.105,27.756,19.105 +2029,64.049,287.183,450.664,255.480,627.718,285.985,457.313,100.222,1.614,100.222,332.716,323.435,346.227,19.021,26.975,19.021 +2030,64.080,287.183,450.664,255.480,627.718,285.985,457.313,100.222,1.614,100.222,332.716,323.435,346.227,19.021,26.975,19.021 +2031,64.110,287.842,451.134,252.973,627.838,286.552,457.931,100.749,170.538,100.749,332.539,323.866,346.376,19.076,25.646,19.076 +2032,64.141,288.942,450.788,250.704,627.729,287.482,458.091,101.310,158.962,101.310,332.221,324.589,347.114,19.023,24.267,19.023 +2033,64.176,289.995,450.138,248.545,627.972,288.175,458.678,102.031,147.995,102.031,330.208,325.949,347.671,19.192,22.578,19.192 +2034,64.209,291.419,449.388,246.494,628.075,289.243,458.990,102.769,136.521,102.769,329.013,327.519,348.704,19.232,20.755,19.232 +2035,64.240,293.928,446.601,244.294,628.999,290.571,460.102,103.962,125.403,103.962,322.320,329.804,350.145,18.927,19.731,18.927 +2036,64.272,298.299,433.880,243.487,629.994,291.137,460.735,104.931,114.305,104.931,296.054,331.621,351.643,18.036,20.109,18.036 +2037,64.303,298.071,442.043,242.095,631.022,292.556,461.793,105.602,103.076,105.602,312.120,333.698,353.131,18.347,19.877,18.347 +2038,64.335,295.548,455.859,241.455,631.425,293.629,462.231,106.756,92.793,106.756,340.792,333.774,354.103,18.615,21.121,18.615 +2039,64.368,297.304,456.459,242.782,631.186,295.411,462.274,108.034,82.171,108.034,341.584,334.317,353.814,19.040,22.402,19.040 +2040,64.399,298.961,456.438,241.341,629.225,297.108,461.741,109.259,71.677,109.259,341.775,331.404,353.010,18.915,21.378,18.915 +2041,64.430,301.463,456.534,240.218,627.467,299.459,461.795,110.854,60.578,110.854,340.554,329.945,351.815,19.135,21.792,19.135 +2042,64.461,303.902,456.637,238.186,625.545,301.730,461.918,112.362,49.214,112.362,339.577,327.329,350.997,18.988,21.928,18.988 +2043,64.492,306.134,456.948,234.667,624.370,303.522,462.824,113.962,38.047,113.962,338.313,325.137,351.174,19.292,26.399,19.292 +2044,64.524,308.420,457.246,231.408,621.249,305.817,462.701,115.509,27.408,115.509,338.184,323.899,350.273,19.237,26.896,19.237 +2045,64.556,311.237,457.682,228.082,618.500,308.386,463.169,117.459,15.593,117.459,337.353,322.357,349.721,19.262,27.037,19.262 +2046,64.587,314.312,458.872,224.444,615.768,311.295,464.208,119.476,4.205,119.476,337.097,320.488,349.357,19.190,25.637,19.190 +2047,64.617,317.794,459.345,219.755,613.244,313.937,465.586,121.713,173.797,121.713,335.566,320.352,350.240,19.249,24.551,19.249 +2048,64.647,317.794,459.345,219.755,613.244,313.937,465.586,121.713,173.797,121.713,335.566,320.352,350.240,19.249,24.551,19.249 +2049,64.677,321.454,460.181,214.873,610.557,316.644,467.275,124.136,162.121,124.136,334.268,321.340,351.410,19.444,21.920,19.444 +2050,64.709,326.940,460.080,210.493,608.987,319.592,469.877,126.870,152.307,126.870,329.000,322.151,353.494,19.600,20.003,19.600 +2051,64.743,336.230,454.669,206.872,607.145,322.015,471.877,129.560,142.696,129.560,310.597,323.627,355.238,18.034,20.227,18.034 +2052,64.775,379.597,414.043,203.282,604.803,324.755,474.369,132.274,134.507,132.274,193.393,324.605,356.450,18.028,19.972,18.028 +2053,64.807,333.200,471.719,199.227,601.799,327.854,477.121,134.697,126.336,134.697,342.991,326.264,358.192,18.863,21.577,18.863 +2054,64.840,335.453,476.006,196.341,599.153,330.870,480.133,137.996,117.759,137.996,346.896,326.535,359.230,19.251,20.679,19.251 +2055,64.872,339.181,479.707,193.321,595.439,334.389,483.508,141.576,108.699,141.576,347.928,326.352,360.161,19.450,20.154,19.450 +2056,64.903,343.124,483.994,190.119,590.600,338.138,487.415,145.550,99.211,145.550,348.768,325.665,360.861,19.532,20.916,19.532 +2057,64.934,347.122,489.137,188.618,584.496,342.923,491.587,149.744,89.626,149.744,350.478,323.072,360.200,19.795,19.294,19.795 +2058,64.965,351.977,494.368,186.756,577.408,347.344,496.590,154.381,79.695,154.381,349.212,321.099,359.490,19.552,20.125,19.552 +2059,64.999,355.940,500.841,184.736,568.748,351.540,502.508,159.254,69.702,159.254,349.495,317.898,358.905,19.837,20.724,19.837 +2060,65.031,359.539,508.239,183.143,559.025,355.528,509.353,164.476,59.317,164.476,350.453,315.378,358.779,19.592,20.890,19.592 +2061,65.062,362.231,516.619,181.310,549.014,358.299,517.317,169.944,49.316,169.944,351.622,313.251,359.608,20.090,21.925,20.090 +2062,65.093,364.868,524.787,180.179,537.404,359.828,525.138,176.023,38.693,176.023,350.032,310.627,360.135,21.323,22.875,21.323 +2063,65.124,367.104,533.497,179.461,526.342,359.458,533.181,2.370,28.193,2.370,344.946,309.715,360.251,23.766,22.320,23.766 +2064,65.155,382.267,547.460,180.086,515.668,360.353,543.661,9.834,17.745,9.834,320.317,308.700,364.798,23.463,21.334,23.463 +2065,65.187,364.681,558.481,182.300,503.721,358.148,556.716,15.124,7.491,15.124,353.636,308.864,367.170,21.186,24.296,21.186 +2066,65.218,360.844,565.984,185.772,493.179,356.259,564.035,23.025,176.579,23.025,359.274,308.883,369.239,25.861,20.892,25.861 +2067,65.248,355.640,578.871,190.834,483.346,351.389,576.269,31.477,165.911,31.477,360.930,309.959,370.899,25.881,18.596,25.881 +2068,65.278,355.640,578.871,190.834,483.346,351.389,576.269,31.477,165.911,31.477,360.930,309.959,370.899,25.881,18.596,25.881 +2069,65.308,349.060,589.450,197.914,473.512,345.442,586.542,38.797,155.576,38.797,362.318,310.104,371.601,24.833,18.402,24.833 +2070,65.342,340.375,601.364,207.153,464.499,336.944,597.621,47.490,145.257,47.490,361.513,310.476,371.669,25.125,17.879,25.125 +2071,65.373,330.252,610.762,217.372,456.361,327.330,606.517,55.460,134.828,55.460,361.756,309.728,372.064,24.049,18.253,24.049 +2072,65.407,317.644,619.452,229.845,449.393,315.255,614.567,63.941,124.439,63.941,360.931,309.226,371.806,22.419,18.285,22.419 +2073,65.440,303.712,626.278,242.160,443.910,301.882,620.423,72.646,113.749,72.646,360.316,307.766,372.584,21.714,19.405,21.714 +2074,65.472,286.845,631.368,255.542,441.045,285.654,624.295,80.438,103.086,80.438,357.066,306.858,371.412,26.137,20.335,26.137 +2075,65.505,275.500,648.000,269.879,440.121,275.500,625.061,90.000,93.691,90.000,324.000,306.910,369.879,25.000,18.961,25.000 +2076,65.537,260.157,636.265,284.902,441.012,262.077,623.879,98.814,82.983,98.814,343.340,306.610,368.408,26.153,19.255,26.153 +2077,65.568,244.028,624.653,300.178,443.658,245.539,619.444,106.176,72.553,106.176,357.250,307.513,368.097,22.427,21.915,22.427 +2078,65.598,232.656,617.268,314.422,447.976,234.785,612.807,115.514,61.966,115.514,356.234,308.946,366.118,20.121,23.695,20.121 +2079,65.629,221.121,609.257,326.813,454.244,223.975,604.998,123.829,51.266,123.829,354.713,311.559,364.967,19.637,24.340,19.637 +2080,65.660,211.537,600.534,337.939,461.801,215.530,596.104,132.026,40.267,132.026,351.500,315.928,363.428,19.580,24.552,19.580 +2081,65.693,203.838,590.307,347.517,470.737,208.369,586.500,139.954,29.971,139.954,350.171,318.922,362.008,19.344,22.613,19.344 +2082,65.726,197.684,580.290,355.465,480.598,203.088,576.859,147.582,19.855,147.582,347.668,321.643,360.470,19.644,21.241,19.644 +2083,65.759,192.553,570.114,361.905,490.449,199.488,566.867,154.904,9.782,154.904,343.680,323.265,358.993,20.210,21.646,20.210 +2084,65.791,187.503,559.970,365.995,501.064,196.649,556.997,161.991,179.312,161.991,337.450,324.085,356.684,19.447,21.710,19.447 +2085,65.823,116.606,563.418,368.422,510.546,195.269,548.069,168.959,170.224,168.959,193.976,325.168,354.268,18.385,20.156,18.385 +2086,65.854,173.843,540.970,369.204,522.062,194.161,539.217,175.068,160.017,175.068,310.951,324.827,351.739,19.547,21.103,19.547 +2087,65.885,183.938,530.257,369.315,533.177,194.641,530.462,1.096,150.255,1.096,327.978,324.847,349.389,18.724,23.443,18.724 +2088,65.915,188.065,519.449,368.264,544.025,196.058,520.389,6.710,140.332,6.710,331.479,324.575,347.576,24.361,25.721,24.361 +2089,65.945,188.065,519.449,368.264,544.025,196.058,520.389,6.710,140.332,6.710,331.479,324.575,347.576,24.361,25.721,24.361 +2090,65.974,190.904,512.481,366.449,554.215,197.871,513.874,11.310,129.987,11.310,332.221,325.458,346.431,25.691,26.421,25.691 +2091,66.008,193.612,506.114,363.877,563.715,200.197,508.030,16.220,119.745,16.220,331.721,326.583,345.438,25.436,26.295,25.436 +2092,66.039,196.723,499.148,361.672,571.807,203.617,501.838,21.318,110.376,21.318,330.551,327.376,345.353,25.425,26.034,25.425 +2093,66.072,200.153,493.991,358.958,579.555,206.704,497.120,25.530,100.620,25.530,331.315,329.139,345.833,25.495,25.432,25.495 +2094,66.104,204.575,488.073,356.710,586.062,210.992,491.848,30.466,91.102,30.466,331.845,330.189,346.736,25.909,24.572,25.909 +2095,66.136,207.159,483.593,353.193,592.250,214.173,488.339,34.086,81.607,34.086,329.803,332.921,346.742,25.774,21.748,25.774 +2096,66.168,209.855,480.109,350.598,597.177,217.234,485.747,37.381,72.429,37.381,328.674,334.560,347.247,24.954,20.545,24.954 +2097,66.201,211.683,475.966,348.200,600.900,220.148,483.238,40.665,63.435,40.665,325.290,335.410,347.609,25.266,19.230,25.266 +2098,66.233,209.715,473.084,346.237,603.836,220.607,483.336,43.264,55.333,43.264,318.223,335.706,348.140,19.019,19.793,19.019 +2099,66.264,176.180,434.847,344.111,605.998,222.411,481.642,45.347,47.968,45.347,216.431,335.817,347.993,17.716,19.082,17.716 +2100,66.294,214.203,466.761,341.991,607.511,225.774,478.481,45.367,40.426,45.367,314.003,335.595,346.941,23.071,19.510,23.071 +2101,66.325,221.465,469.103,339.780,608.284,227.622,476.307,49.478,32.692,49.478,327.440,335.090,346.394,24.151,21.040,24.151 +2102,66.358,224.530,468.476,337.092,609.909,229.412,474.554,51.226,24.179,51.226,330.329,333.760,345.921,24.462,22.956,24.462 +2103,66.389,226.395,467.216,334.422,610.303,230.703,472.900,52.842,14.365,52.842,330.046,332.797,344.310,24.094,25.801,24.094 +2104,66.421,227.892,465.938,331.874,611.744,232.118,471.801,54.219,4.145,54.219,329.261,329.889,343.714,23.665,26.713,23.665 +2105,66.452,229.244,464.519,329.404,613.534,233.485,470.702,55.554,174.346,55.554,329.092,329.054,344.087,23.730,27.115,23.730 +2106,66.483,230.118,463.422,326.725,614.532,234.324,469.818,56.664,164.113,56.664,328.054,328.012,343.364,23.363,27.152,23.363 +2107,66.514,230.118,463.422,326.725,614.532,234.324,469.818,56.664,164.113,56.664,328.054,328.012,343.364,23.363,27.152,23.363 +2108,66.543,231.076,462.681,323.966,615.415,235.135,469.070,57.577,153.768,57.577,327.181,327.799,342.319,23.273,27.027,23.273 +2109,66.575,231.991,462.236,322.054,616.882,235.938,468.650,58.393,142.667,58.393,327.692,328.251,342.753,23.322,26.482,23.322 +2110,66.607,232.807,462.105,320.455,618.238,236.682,468.538,58.941,131.634,58.941,327.896,329.109,342.917,23.178,25.578,23.178 +2111,66.640,233.596,461.569,319.563,619.435,237.570,468.266,59.315,120.885,59.315,328.117,330.824,343.691,23.938,24.302,23.938 +2112,66.674,233.499,461.648,317.932,620.298,237.424,468.321,59.534,109.628,59.534,328.143,332.771,343.627,23.019,22.928,23.019 +2113,66.706,233.534,461.630,318.704,621.278,237.769,468.838,59.563,99.703,59.563,328.147,333.732,344.866,23.011,19.918,23.011 +2114,66.739,233.519,460.828,320.308,622.002,238.488,469.234,59.411,89.421,59.411,326.759,334.135,346.289,24.265,19.423,24.265 +2115,66.771,231.829,459.208,322.482,621.907,238.257,469.948,59.098,79.114,59.098,322.255,336.148,347.288,23.994,20.244,23.994 +2116,66.802,225.174,455.065,324.318,621.570,235.485,471.976,58.627,68.920,58.627,308.324,336.293,347.939,18.429,19.626,18.429 +2117,66.834,189.623,400.492,326.230,620.436,234.815,472.464,57.875,58.392,57.875,177.886,336.143,347.854,17.942,19.457,17.942 +2118,66.865,227.043,460.849,328.396,618.649,234.856,472.181,55.415,48.434,55.415,319.832,335.837,347.361,22.827,19.354,22.827 +2119,66.897,229.352,463.925,330.784,615.866,234.630,471.749,55.995,38.157,55.995,327.620,334.691,346.495,23.489,21.174,23.489 +2120,66.928,228.529,465.831,331.809,614.349,233.007,472.195,54.866,28.673,54.866,330.666,333.922,346.229,24.140,22.181,24.140 +2121,66.960,227.050,466.835,333.609,611.656,231.440,472.741,53.374,17.628,53.374,330.160,332.915,344.878,24.353,24.503,24.353 +2122,66.992,224.732,468.108,335.294,609.119,229.238,473.800,51.633,7.253,51.633,329.332,331.075,343.851,23.489,25.882,23.489 +2123,67.023,222.408,468.731,337.036,607.332,227.449,474.684,49.741,177.489,49.741,328.495,328.605,344.096,24.221,25.572,24.221 +2124,67.055,220.567,470.395,339.157,605.239,225.781,476.110,47.620,168.024,47.620,328.143,327.768,343.614,25.106,26.561,25.106 +2125,67.086,217.562,472.449,341.086,602.458,222.932,477.877,45.310,158.356,45.310,328.055,327.741,343.324,24.706,26.940,24.706 +2126,67.118,214.697,474.705,343.168,599.683,220.269,479.854,42.737,147.724,42.737,328.001,327.338,343.174,25.037,26.433,25.037 +2127,67.149,212.000,477.302,345.708,596.629,217.772,482.123,39.867,137.726,39.867,328.148,327.121,343.189,25.986,26.503,25.986 +2128,67.180,212.000,477.302,345.708,596.629,217.772,482.123,39.867,137.726,39.867,328.148,327.121,343.189,25.986,26.503,25.986 +2129,67.210,208.858,480.830,348.585,593.177,214.859,485.295,36.649,127.875,36.649,328.412,327.581,343.370,25.289,26.049,25.289 +2130,67.242,206.139,484.419,351.429,589.766,212.267,488.434,33.232,118.179,33.232,329.220,329.170,343.872,25.873,25.468,25.873 +2131,67.273,203.290,488.819,355.750,584.750,209.725,492.469,29.567,108.435,29.567,330.292,328.561,345.088,25.926,25.931,25.926 +2132,67.306,200.404,493.872,359.247,579.382,207.039,497.041,25.530,98.931,25.530,330.965,328.822,345.669,25.926,25.078,25.926 +2133,67.338,197.489,499.594,361.887,572.993,203.761,502.031,21.232,89.523,21.232,332.724,328.105,346.182,25.448,22.208,25.448 +2134,67.370,194.405,506.005,366.530,565.635,201.720,508.151,16.348,79.809,16.348,333.405,329.681,348.653,25.729,24.572,25.729 +2135,67.401,191.288,513.058,369.124,557.423,199.273,514.655,11.310,70.442,11.310,333.594,329.942,349.880,24.711,24.128,24.711 +2136,67.433,189.661,520.382,370.999,548.047,197.571,521.237,6.170,61.336,6.170,334.699,329.371,350.610,24.372,23.352,24.372 +2137,67.464,188.021,531.281,372.091,538.044,196.061,531.357,0.537,52.386,0.537,336.088,329.063,352.170,18.530,22.712,18.530 +2138,67.496,187.485,539.913,371.594,527.400,195.233,539.128,174.218,43.234,174.218,337.716,328.421,353.291,20.981,20.755,20.981 +2139,67.527,188.073,550.495,370.027,516.203,195.444,548.927,167.989,33.934,167.989,340.069,327.575,355.140,19.853,20.547,19.853 +2140,67.559,189.809,560.469,367.307,503.956,196.989,558.025,161.200,25.463,161.200,342.143,326.921,357.313,19.255,22.099,19.255 +2141,67.593,193.126,571.197,363.041,491.863,200.002,567.863,154.134,16.557,154.134,344.438,324.503,359.722,19.932,21.166,19.932 +2142,67.625,197.775,581.629,356.215,480.455,203.887,577.628,146.788,7.923,146.788,346.729,323.010,361.340,19.502,20.641,19.502 +2143,67.656,204.409,591.740,347.983,469.932,209.466,587.360,139.105,179.542,139.105,349.785,320.086,363.167,19.552,18.663,19.552 +2144,67.689,212.045,601.433,337.413,460.425,216.288,596.547,130.972,171.399,130.972,351.448,319.234,364.393,19.154,18.678,19.154 +2145,67.720,222.118,610.635,325.563,451.711,225.594,605.264,122.905,163.366,122.905,353.657,317.714,366.453,19.458,19.036,19.458 +2146,67.751,233.976,618.353,312.223,444.991,236.531,612.732,114.444,155.596,114.444,355.705,315.567,368.054,19.780,19.157,19.780 +2147,67.782,246.003,624.966,297.817,440.708,247.623,618.911,104.975,147.969,104.975,357.708,314.182,370.243,22.692,18.839,22.692 +2148,67.813,246.003,624.966,297.817,440.708,247.623,618.911,104.975,147.969,104.975,357.708,314.182,370.243,22.692,18.839,22.692 +2149,67.843,263.316,629.108,283.121,438.478,264.096,623.206,97.527,140.667,97.527,359.351,312.539,371.257,26.038,18.531,26.038 +2150,67.876,278.230,630.507,267.688,438.240,278.073,624.090,88.594,133.122,88.594,359.260,310.832,372.098,25.115,18.780,25.115 +2151,67.909,290.181,629.181,252.189,440.865,288.988,623.364,78.413,126.027,78.413,360.469,310.408,372.343,25.872,18.527,25.872 +2152,67.940,308.222,623.864,237.619,446.183,306.347,618.786,69.740,119.168,69.740,360.619,309.356,371.447,22.244,18.276,22.244 +2153,67.972,322.631,617.080,223.873,453.171,319.853,612.158,60.565,112.175,60.565,359.960,309.384,371.263,23.129,18.380,23.129 +2154,68.004,335.655,607.280,211.735,462.156,332.281,603.054,51.397,105.218,51.397,359.829,308.465,370.643,24.421,18.678,24.421 +2155,68.035,346.660,596.185,201.319,472.844,342.491,592.372,42.444,98.427,42.444,358.386,308.741,369.685,25.418,18.832,25.418 +2156,68.066,355.331,583.249,193.041,484.119,350.752,580.202,33.640,91.685,33.640,358.057,308.337,369.056,26.290,18.904,26.290 +2157,68.098,361.036,570.223,187.070,496.273,356.223,567.968,25.110,84.945,25.110,356.553,308.537,367.183,25.799,19.777,25.799 +2158,68.130,364.470,557.470,183.212,508.939,359.777,556.029,17.077,78.311,17.077,355.400,309.480,365.219,25.261,20.902,25.261 +2159,68.161,365.952,544.610,181.215,520.775,361.402,543.874,9.179,71.694,9.179,353.912,310.224,363.130,25.116,22.150,25.116 +2160,68.192,364.633,532.215,179.963,532.962,359.758,532.064,1.779,65.454,1.779,349.608,311.093,359.362,25.100,22.268,25.100 +2161,68.225,364.274,522.879,180.667,544.288,359.848,523.300,174.560,58.610,174.560,351.837,312.345,360.728,21.048,21.616,21.048 +2162,68.258,361.133,512.893,182.861,555.288,357.339,513.723,167.661,52.292,167.661,350.890,313.564,358.658,20.301,22.232,20.301 +2163,68.288,357.456,503.311,184.799,564.759,353.342,504.710,161.219,45.939,161.219,349.113,312.036,357.804,19.512,21.975,19.512 +2164,68.319,352.922,495.036,188.422,573.561,349.209,496.776,154.904,39.491,154.904,348.150,314.313,356.351,20.152,22.108,20.152 +2165,68.349,352.922,495.036,188.422,573.561,349.209,496.776,154.904,39.491,154.904,348.150,314.313,356.351,20.152,22.108,20.152 +2166,68.378,348.103,487.346,191.538,583.192,343.626,490.020,149.148,33.690,149.148,346.267,315.070,356.695,19.913,25.239,19.913 +2167,68.409,342.708,480.956,196.351,590.436,338.556,484.029,143.499,27.451,143.499,344.880,315.813,355.211,19.678,24.813,19.678 +2168,68.443,337.374,474.919,201.607,596.463,333.303,478.549,138.275,21.541,138.275,342.631,317.526,353.539,19.405,25.530,19.405 +2169,68.476,331.846,469.683,206.974,602.159,327.864,473.906,133.311,14.432,133.311,340.886,317.806,352.495,18.979,25.970,18.979 +2170,68.509,325.944,465.336,212.674,607.487,322.211,470.040,128.433,9.728,128.433,339.499,318.469,351.510,19.688,25.626,19.688 +2171,68.541,320.149,461.612,218.533,611.930,316.699,466.755,123.853,3.270,123.853,338.111,318.252,350.497,19.357,25.073,19.357 +2172,68.573,314.668,458.443,223.962,616.221,311.255,464.483,119.469,178.282,119.469,336.226,320.186,350.102,19.257,25.309,19.257 +2173,68.605,308.830,456.042,229.785,619.777,305.768,462.537,115.241,172.875,115.241,334.894,320.630,349.257,19.318,25.551,19.318 +2174,68.635,303.046,453.791,235.639,622.634,300.392,460.652,111.142,167.638,111.142,334.157,322.014,348.869,19.302,25.411,19.302 +2175,68.666,297.554,452.103,241.417,624.770,295.340,459.236,107.241,161.834,107.241,333.219,322.861,348.156,19.035,24.259,19.035 +2176,68.698,291.859,451.176,247.168,626.927,290.107,458.587,103.299,156.571,103.299,332.174,323.897,347.406,19.021,23.856,19.021 +2177,68.729,286.701,450.130,253.359,628.724,285.351,458.061,99.660,152.904,99.660,331.131,324.775,347.222,19.297,23.312,19.297 +2178,68.761,281.290,449.741,259.261,629.925,280.427,457.941,96.009,148.438,96.009,330.019,326.114,346.510,18.634,23.055,18.634 +2179,68.792,275.438,449.566,265.348,630.706,275.158,457.853,91.941,144.230,91.941,329.590,326.886,346.174,18.837,23.504,18.837 +2180,68.824,270.644,450.355,271.053,630.926,270.869,458.341,88.386,138.594,88.386,329.067,327.548,345.044,18.894,23.510,18.894 +2181,68.855,265.300,450.651,277.250,630.750,266.026,458.563,84.753,135.000,84.753,329.095,327.390,344.985,19.113,22.627,19.113 +2182,68.886,260.014,451.780,283.783,630.444,261.262,459.605,80.937,130.934,80.937,328.661,329.030,344.509,19.411,22.825,19.411 +2183,68.917,255.268,452.629,289.849,629.120,257.025,460.228,76.984,127.405,76.984,328.293,329.612,343.892,20.695,22.616,20.695 +2184,68.947,255.268,452.629,289.849,629.120,257.025,460.228,76.984,127.405,76.984,328.293,329.612,343.892,20.695,22.616,20.695 +2185,68.976,250.110,454.195,297.019,628.163,252.462,461.826,72.865,124.958,72.865,328.195,330.237,344.164,21.443,22.223,21.443 +2186,69.009,245.052,456.122,303.727,626.321,247.906,463.480,68.797,121.185,68.797,328.228,330.831,344.013,22.271,21.793,22.271 +2187,69.041,239.536,458.313,310.813,623.864,243.057,465.690,64.486,118.166,64.486,327.519,330.996,343.868,22.562,22.241,22.562 +2188,69.074,234.559,461.292,317.712,620.832,238.425,467.991,60.010,115.017,60.010,328.550,331.240,344.019,23.756,22.775,23.756 +2189,69.106,228.916,464.602,324.508,617.003,233.260,470.887,55.349,111.991,55.349,328.882,332.006,344.162,23.832,22.486,23.832 +2190,69.137,223.879,468.475,330.921,612.316,228.420,473.979,50.477,108.935,50.477,329.608,332.054,343.879,25.089,22.163,25.089 +2191,69.170,217.861,472.685,338.225,606.356,223.223,478.111,45.343,106.215,45.343,328.854,331.040,344.111,24.702,23.040,24.702 +2192,69.202,212.559,477.969,344.135,599.797,217.993,482.526,39.987,103.219,39.987,329.833,330.847,344.018,25.334,22.502,25.334 +2193,69.233,207.385,483.815,350.457,592.586,213.290,487.850,34.349,100.713,34.349,330.382,330.117,344.685,25.495,23.104,25.495 +2194,69.263,202.254,490.482,356.382,584.056,208.730,493.984,28.402,98.326,28.402,330.722,329.515,345.446,25.548,24.133,25.548 +2195,69.294,197.632,498.028,361.213,574.521,204.439,500.797,22.135,95.553,22.135,331.300,328.562,345.996,25.826,24.136,25.826 +2196,69.325,193.583,507.301,364.948,564.047,200.244,509.151,15.524,92.862,15.524,332.949,326.892,346.775,25.105,24.370,25.105 +2197,69.358,190.827,516.660,367.873,552.512,197.302,517.663,8.802,90.356,8.802,334.683,325.068,347.788,24.948,24.273,24.948 +2198,69.388,188.134,527.460,368.994,540.462,194.646,527.634,1.522,87.818,1.522,336.227,323.680,349.255,23.849,24.563,23.849 +2199,69.420,187.618,540.891,368.540,527.593,193.684,540.250,173.962,84.872,173.962,338.238,323.214,350.436,20.128,25.998,20.128 +2200,69.451,188.537,553.152,366.567,514.164,194.336,551.727,166.192,82.553,166.192,340.495,321.494,352.438,19.644,25.476,19.644 +2201,69.481,188.537,553.152,366.567,514.164,194.336,551.727,166.192,82.553,166.192,340.495,321.494,352.438,19.644,25.476,19.644 +2202,69.510,191.266,565.390,362.879,501.021,196.526,563.258,157.938,80.248,157.938,343.745,319.626,355.097,19.499,25.255,19.499 +2203,69.543,196.145,577.598,356.218,488.385,200.540,575.019,149.593,77.800,149.593,346.034,317.792,356.228,19.545,23.933,19.545 +2204,69.576,202.783,589.190,348.550,475.857,206.648,586.044,140.860,75.379,140.860,349.255,315.359,359.224,19.411,24.695,19.411 +2205,69.609,211.266,600.187,338.617,464.549,214.662,596.401,131.891,73.034,131.891,351.666,313.870,361.838,19.242,24.852,19.242 +2206,69.640,222.110,610.541,326.349,455.138,224.810,606.364,122.881,70.514,122.881,354.301,311.794,364.249,19.638,24.293,19.638 +2207,69.674,234.836,618.582,312.530,447.785,236.712,614.279,113.552,67.909,113.552,356.454,310.134,365.842,20.097,23.808,20.097 +2208,69.706,251.268,626.490,297.636,442.572,252.621,621.252,104.483,65.526,104.483,357.699,308.447,368.519,24.238,22.992,24.238 +2209,69.739,262.400,629.993,281.371,440.311,262.774,624.395,93.814,62.993,93.814,358.604,306.838,369.826,26.608,21.210,26.608 +2210,69.770,279.236,631.525,265.652,440.429,278.623,625.168,84.492,60.444,84.492,357.488,306.014,370.262,27.103,20.813,27.103 +2211,69.802,297.888,631.139,248.847,443.654,295.745,622.893,75.430,57.863,75.430,353.506,305.154,370.546,24.234,19.237,24.234 +2212,69.834,317.407,630.187,233.606,449.542,311.613,617.357,65.695,55.305,65.695,341.940,304.527,370.096,20.873,18.341,20.873 +2213,69.866,361.024,662.785,219.933,457.078,324.720,609.367,55.800,52.643,55.800,240.535,304.425,369.708,21.143,18.634,21.143 +2214,69.897,354.545,615.459,207.932,466.969,338.441,597.813,47.616,50.135,47.616,321.466,304.853,369.246,22.747,19.107,22.747 +2215,69.927,356.162,593.684,198.144,478.409,347.307,586.650,38.459,47.463,38.459,345.628,305.241,368.247,25.035,19.302,25.035 +2216,69.958,361.386,575.271,190.451,490.498,355.024,571.904,27.886,44.403,27.886,352.682,305.483,367.077,26.045,19.511,26.045 +2217,69.990,366.123,561.211,185.103,502.259,359.073,558.757,19.188,41.634,19.188,350.820,306.604,365.748,25.666,21.675,25.666 +2218,70.021,367.495,547.391,181.908,515.604,361.505,546.256,10.733,38.536,10.733,352.136,307.349,364.327,25.166,22.324,25.166 +2219,70.052,365.118,534.922,180.247,528.064,359.892,534.682,2.628,35.640,2.628,349.055,308.993,359.519,22.190,22.541,22.190 +2220,70.082,364.869,523.070,180.161,541.139,359.758,523.533,174.822,32.735,174.822,350.644,310.094,360.907,21.334,22.892,21.334 +2221,70.113,364.869,523.070,180.161,541.139,359.758,523.533,174.822,32.735,174.822,350.644,310.094,360.907,21.334,22.892,21.334 +2222,70.145,361.488,512.169,181.683,553.417,356.735,513.238,167.330,29.588,167.330,349.464,311.442,359.206,20.466,22.470,20.466 +2223,70.177,357.348,501.855,184.812,564.346,352.836,503.479,160.201,26.378,160.201,347.827,313.062,357.417,20.135,23.293,20.135 +2224,70.210,352.300,492.600,188.116,575.049,347.536,494.982,153.435,22.989,153.435,346.143,314.086,356.795,20.125,24.103,20.125 +2225,70.241,346.390,484.601,193.116,584.267,341.976,487.468,146.998,19.584,146.998,344.604,315.349,355.130,19.568,24.577,19.568 +2226,70.273,340.492,477.330,198.736,592.424,336.113,480.900,140.816,15.945,140.816,342.595,316.479,353.894,19.710,24.862,19.710 +2227,70.304,334.250,471.250,204.947,599.488,330.115,475.385,135.000,12.529,135.000,340.825,317.478,352.522,19.092,25.272,19.092 +2228,70.335,327.237,466.242,211.239,606.387,323.402,470.925,129.316,8.427,129.316,339.630,318.524,351.737,19.455,25.390,19.455 +2229,70.366,320.275,461.709,218.605,612.064,316.797,466.865,124.000,4.194,124.000,338.127,318.565,350.567,19.286,25.066,19.286 +2230,70.396,313.529,458.162,225.502,616.323,310.451,463.771,118.755,0.725,118.755,336.415,319.164,349.211,19.648,25.542,19.648 +2231,70.427,306.530,455.615,232.825,620.816,303.864,461.666,113.776,176.269,113.776,335.339,320.818,348.565,19.474,25.815,19.474 +2232,70.459,299.695,453.247,239.916,623.705,297.500,459.697,108.796,171.254,108.796,334.006,321.829,347.631,19.412,25.394,19.412 +2233,70.491,292.936,451.615,247.101,626.438,291.167,458.622,104.171,167.005,104.171,332.540,323.048,346.995,18.989,25.934,18.989 +2234,70.521,286.065,450.514,254.537,628.698,284.833,457.860,99.523,163.740,99.523,332.096,323.760,346.992,19.101,25.240,19.101 +2235,70.552,279.930,450.126,261.904,629.561,279.264,457.676,95.042,159.550,95.042,330.334,324.322,345.492,18.751,25.251,18.751 +2236,70.582,273.500,450.034,269.300,630.100,273.426,457.558,90.562,153.435,90.562,330.102,325.124,345.149,18.568,24.597,18.568 +2237,70.616,266.678,451.153,276.900,630.200,267.212,458.358,85.764,150.255,85.764,329.726,326.087,344.176,18.763,24.311,18.763 +2238,70.648,266.678,451.153,276.900,630.200,267.212,458.358,85.764,150.255,85.764,329.726,326.087,344.176,18.763,24.311,18.763 +2239,70.680,261.047,451.888,284.400,629.891,262.134,459.078,81.404,145.646,81.404,329.903,326.996,344.445,19.695,24.579,19.695 +2240,70.711,254.995,453.292,291.804,628.499,256.659,460.335,76.707,141.170,76.707,329.008,327.660,343.480,20.400,24.738,20.400 +2241,70.744,249.007,454.699,299.194,626.650,251.308,461.782,72.010,136.532,72.010,328.298,327.595,343.194,21.756,24.540,21.756 +2242,70.777,243.031,456.880,307.033,624.384,245.955,463.822,67.153,131.403,67.153,328.295,328.871,343.360,22.519,24.317,22.519 +2243,70.810,236.514,459.853,314.846,621.386,240.133,466.706,62.166,126.416,62.166,327.836,329.264,343.337,22.610,24.115,22.610 +2244,70.843,231.042,463.392,322.162,617.176,234.961,469.411,56.933,121.648,56.933,328.457,329.787,342.821,24.143,23.654,24.143 +2245,70.875,224.514,467.521,330.000,612.500,229.196,473.420,51.565,116.565,51.565,328.149,330.044,343.211,24.168,23.702,24.168 +2246,70.907,219.004,472.136,336.717,606.993,224.085,477.400,46.015,111.584,46.015,328.297,331.129,342.929,25.513,23.155,25.513 +2247,70.938,212.804,477.897,344.806,600.091,218.494,482.695,40.139,106.504,40.139,329.599,330.182,344.485,25.319,25.035,25.319 +2248,70.968,207.043,484.238,350.923,591.885,212.971,488.230,33.953,101.310,33.953,330.352,329.671,344.646,25.483,23.730,25.483 +2249,71.000,202.181,491.428,357.433,583.104,208.519,494.748,27.646,96.340,27.646,331.512,329.859,345.822,26.069,24.958,26.069 +2250,71.033,197.198,499.943,362.612,573.012,203.972,502.533,20.925,91.169,20.925,332.193,328.217,346.697,25.412,24.689,25.412 +2251,71.066,192.979,509.508,366.246,561.882,199.673,511.160,13.861,86.121,13.861,333.957,327.485,347.748,25.205,24.114,25.205 +2252,71.097,189.445,522.615,368.992,549.662,196.444,523.417,6.540,80.356,6.540,334.737,327.166,348.827,19.433,25.910,19.433 +2253,71.128,188.404,533.557,369.918,536.131,194.830,533.432,178.891,75.411,178.891,337.150,325.750,350.004,19.177,25.042,19.177 +2254,71.160,188.179,545.964,369.025,522.704,194.326,544.996,171.051,70.396,171.051,339.633,324.498,352.079,19.912,24.635,19.912 +2255,71.192,189.819,558.336,366.615,508.901,195.715,556.479,162.521,65.638,162.521,342.237,322.770,354.600,19.511,25.266,19.511 +2256,71.224,193.629,571.240,361.457,494.744,198.896,568.667,153.970,60.751,153.970,345.301,321.501,357.024,19.873,24.430,19.873 +2257,71.254,199.103,583.492,354.282,481.321,204.002,580.085,145.184,56.023,145.184,347.600,319.250,359.533,19.395,24.337,19.395 +2258,71.284,206.979,595.461,344.576,469.212,211.152,591.430,135.988,50.749,135.988,350.149,317.249,361.752,19.357,24.988,19.357 +2259,71.314,206.979,595.461,344.576,469.212,211.152,591.430,135.988,50.749,135.988,350.149,317.249,361.752,19.357,24.988,19.357 +2260,71.344,217.130,606.216,332.674,458.304,220.461,601.752,126.726,45.785,126.726,353.014,315.418,364.153,19.164,24.950,19.164 +2261,71.377,229.708,615.382,319.159,448.977,232.210,610.539,117.320,41.332,117.320,355.992,313.647,366.894,19.782,24.200,19.782 +2262,71.409,243.098,622.685,304.138,442.314,244.674,617.604,107.236,36.666,107.236,359.434,312.199,370.075,21.702,23.957,21.702 +2263,71.442,257.142,626.895,288.056,438.410,257.806,621.614,97.167,32.005,97.167,360.449,310.261,371.094,26.052,23.532,26.052 +2264,71.473,277.361,628.938,271.191,438.569,277.276,624.299,88.949,27.286,88.949,362.343,309.470,371.622,25.216,20.710,25.216 +2265,71.504,290.480,628.289,254.243,440.311,289.413,623.348,77.821,22.681,77.821,362.565,308.227,372.674,26.048,20.850,26.048 +2266,71.535,309.388,621.576,238.286,444.660,307.743,617.397,68.518,17.969,68.518,363.364,307.091,372.346,22.297,21.287,22.297 +2267,71.566,324.544,613.619,223.053,452.404,322.245,609.849,58.620,13.218,58.620,363.302,307.313,372.133,23.523,20.309,23.523 +2268,71.596,338.077,602.742,209.966,461.735,335.030,599.262,48.798,8.297,48.798,362.461,307.600,371.712,25.753,20.595,25.753 +2269,71.627,348.706,590.357,198.686,473.167,345.059,587.374,39.277,3.191,39.277,361.792,308.027,371.215,26.297,19.990,26.297 +2270,71.658,356.107,576.878,190.005,485.624,352.363,574.719,29.971,177.828,29.971,361.667,308.650,370.311,25.971,19.662,25.971 +2271,71.690,361.777,563.340,183.186,498.663,356.807,561.412,21.197,172.345,21.197,358.464,311.308,369.125,26.129,20.536,26.129 +2272,71.721,364.345,550.100,178.537,511.653,359.418,548.977,12.842,166.306,12.842,359.198,312.616,369.304,25.545,22.050,25.545 +2273,71.751,363.974,537.237,175.788,524.767,358.099,536.729,4.941,159.444,4.941,353.534,314.373,365.328,25.685,21.887,25.685 +2274,71.781,363.974,537.237,175.788,524.767,358.099,536.729,4.941,159.444,4.941,353.534,314.373,365.328,25.685,21.887,25.685 +2275,71.810,362.945,527.715,174.897,537.252,357.069,527.965,177.563,152.190,177.563,353.042,316.387,364.805,21.109,21.928,21.109 +2276,71.843,361.617,517.220,175.645,549.399,355.577,518.231,170.502,144.368,170.502,352.969,318.638,365.217,20.618,21.583,20.618 +2277,71.876,357.847,507.737,177.181,560.587,352.047,509.401,163.994,136.131,163.994,352.336,320.438,364.403,19.899,22.009,19.899 +2278,71.907,353.745,499.419,180.613,571.227,348.314,501.631,157.834,127.262,157.834,351.401,322.795,363.129,20.134,20.039,20.134 +2279,71.938,348.861,492.336,184.507,580.504,344.072,494.857,152.241,118.124,152.241,351.359,324.414,362.183,19.748,20.072,19.748 +2280,71.968,344.582,485.781,189.319,589.108,339.644,488.992,146.967,108.684,146.967,349.422,325.725,361.203,19.658,19.674,19.658 +2281,71.999,339.740,480.241,194.744,596.436,335.093,483.860,142.087,99.028,142.087,348.023,326.484,359.803,19.633,19.697,19.633 +2282,72.031,334.751,475.592,200.680,602.964,330.710,479.294,137.503,89.353,137.503,347.873,326.104,358.836,19.290,19.428,19.290 +2283,72.062,330.113,471.224,206.624,608.196,326.130,475.456,133.264,79.403,133.264,345.510,326.927,357.133,19.147,19.951,19.147 +2284,72.093,325.651,467.679,212.954,612.821,321.931,472.243,129.174,68.474,129.174,343.860,327.587,355.637,19.266,21.370,19.266 +2285,72.124,321.099,464.647,219.118,615.029,318.113,468.841,125.446,59.036,125.446,342.712,325.676,353.010,19.221,22.809,19.221 +2286,72.155,316.557,461.678,223.507,618.187,313.548,466.538,121.759,47.911,121.759,341.240,323.988,352.671,19.070,24.442,19.070 +2287,72.186,312.190,459.293,227.955,620.775,309.258,464.729,118.346,37.954,118.346,339.521,323.633,351.875,19.327,26.446,19.327 +2288,72.216,308.003,457.031,232.587,621.831,305.428,462.508,115.178,27.378,115.178,338.243,323.896,350.348,18.935,26.878,18.935 +2289,72.246,308.003,457.031,232.587,621.831,305.428,462.508,115.178,27.378,115.178,338.243,323.896,350.348,18.935,26.878,18.935 +2290,72.276,304.159,455.361,236.529,622.902,301.797,461.148,112.203,16.348,112.203,336.347,323.528,348.848,18.857,27.456,18.857 +2291,72.307,300.089,453.551,240.718,624.160,297.889,459.897,109.120,5.315,109.120,334.422,322.677,347.855,19.023,26.814,19.023 +2292,72.339,295.979,452.077,244.245,625.513,293.983,458.924,106.253,174.144,106.253,333.439,322.794,347.704,19.237,26.374,19.237 +2293,72.370,292.032,451.353,247.343,626.470,290.331,458.394,103.583,161.847,103.583,332.454,323.530,346.941,19.212,25.500,19.212 +2294,72.401,288.414,450.156,250.817,628.202,286.853,458.282,100.870,152.241,100.870,330.782,325.231,347.333,19.296,22.822,19.296 +2295,72.433,284.729,449.323,253.921,629.292,283.451,458.145,98.243,140.711,98.243,329.398,327.243,347.226,19.419,21.038,19.419 +2296,72.465,281.284,448.734,257.250,630.796,280.286,458.466,95.856,129.242,95.856,327.997,329.215,347.563,19.130,19.699,19.130 +2297,72.495,278.142,445.728,261.903,632.682,277.315,458.958,93.576,118.009,93.576,322.184,331.528,348.696,18.838,20.231,18.838 +2298,72.527,274.348,442.544,266.436,634.827,274.020,459.919,91.081,107.051,91.081,315.283,334.670,350.040,18.261,20.440,18.261 +2299,72.560,270.099,432.373,270.295,635.932,270.747,460.862,88.698,95.492,88.698,293.038,336.295,350.030,17.904,26.263,17.904 +2300,72.591,262.091,377.595,276.404,636.223,267.768,461.336,86.121,85.340,86.121,182.276,336.005,350.141,17.891,21.402,17.891 +2301,72.621,263.578,450.632,282.719,635.944,264.849,461.532,83.350,75.655,83.350,328.671,337.886,350.617,19.006,20.637,19.006 +2302,72.651,260.818,453.066,288.748,634.410,262.141,461.664,81.254,64.687,81.254,332.169,335.098,349.566,19.539,19.741,19.539 +2303,72.682,260.818,453.066,288.748,634.410,262.141,461.664,81.254,64.687,81.254,332.169,335.098,349.566,19.539,19.741,19.539 +2304,72.713,257.471,454.400,294.289,632.835,259.010,462.143,78.759,53.973,78.759,332.801,334.449,348.589,19.397,20.954,19.397 +2305,72.744,254.233,455.808,298.681,630.837,255.866,462.412,76.115,43.466,76.115,333.949,333.325,347.555,19.699,22.493,19.699 +2306,72.776,251.417,456.423,302.811,629.292,253.387,463.002,73.332,33.007,73.332,333.224,332.361,346.958,21.357,24.291,21.357 +2307,72.808,247.884,457.394,307.126,626.928,250.125,463.735,70.536,21.943,70.536,332.270,331.844,345.720,22.057,26.225,22.057 +2308,72.841,243.895,458.250,311.502,623.800,246.394,464.310,67.586,10.081,67.586,331.422,330.200,344.534,22.277,27.218,22.277 +2309,72.873,239.658,459.116,315.988,621.300,242.822,465.756,64.518,179.045,64.518,329.074,328.088,343.783,22.253,27.396,22.253 +2310,72.903,235.853,460.806,320.001,618.881,239.411,467.297,61.271,169.216,61.271,328.520,327.493,343.323,23.235,26.523,23.235 +2311,72.934,231.334,462.604,323.971,616.154,235.480,469.192,57.816,158.552,57.816,327.459,326.993,343.027,23.364,26.859,23.364 +2312,72.965,227.002,464.835,328.258,612.805,231.558,471.151,54.200,148.173,54.200,327.337,327.317,342.913,23.772,26.778,23.772 +2313,72.996,222.833,467.998,332.647,609.615,227.767,473.957,50.374,137.490,50.374,327.283,327.051,342.755,24.284,26.599,24.284 +2314,73.031,218.676,471.535,337.220,605.540,223.722,476.821,46.323,126.870,46.323,328.337,328.200,342.952,24.595,25.400,24.595 +2315,73.065,214.732,475.639,341.800,601.900,220.174,480.543,42.024,116.565,42.024,328.536,330.044,343.187,25.789,24.597,25.789 +2316,73.098,210.218,480.646,347.521,596.426,216.050,485.113,37.451,105.642,37.451,329.426,329.950,344.117,25.556,23.727,25.556 +2317,73.129,206.099,485.866,352.468,589.997,211.985,489.626,32.570,95.528,32.570,330.875,330.039,344.845,25.404,22.122,25.404 +2318,73.161,201.806,492.082,357.345,583.094,208.128,495.339,27.255,85.365,27.255,331.453,331.264,345.676,25.538,20.931,25.538 +2319,73.195,198.097,498.561,363.253,574.682,205.212,501.431,21.969,75.750,21.969,332.593,331.323,347.936,25.973,22.646,25.973 +2320,73.228,193.872,506.403,367.020,565.098,201.692,508.622,15.843,65.934,15.843,332.674,331.208,348.931,26.091,21.568,26.091 +2321,73.260,190.546,514.986,370.308,554.462,199.069,516.469,9.866,56.310,9.866,333.130,331.156,350.432,24.716,22.188,24.716 +2322,73.292,188.352,524.612,371.800,542.786,196.686,525.110,3.419,46.975,3.419,335.016,330.437,351.714,24.133,21.347,24.133 +2323,73.323,187.190,537.161,371.966,530.545,195.620,536.621,176.332,37.304,176.332,335.849,329.839,352.745,20.381,20.530,20.381 +2324,73.354,187.373,548.691,370.659,517.073,195.682,547.117,169.276,28.142,169.276,338.111,329.008,355.023,19.941,20.835,19.941 +2325,73.385,189.500,560.000,367.826,503.558,197.138,557.454,161.565,19.063,161.565,341.842,326.418,357.944,19.290,22.625,19.290 +2326,73.415,193.258,572.003,362.212,490.241,200.304,568.511,153.642,10.722,153.642,343.924,324.221,359.651,19.753,20.918,19.753 +2327,73.446,193.258,572.003,362.212,490.241,200.304,568.511,153.642,10.722,153.642,343.924,324.221,359.651,19.753,20.918,19.753 +2328,73.477,198.911,583.484,354.520,478.011,204.803,579.402,145.290,2.318,145.290,347.281,321.668,361.617,19.332,19.858,19.332 +2329,73.509,206.431,594.842,344.604,466.534,211.299,590.235,136.577,174.244,136.577,350.294,320.501,363.698,19.351,19.558,19.351 +2330,73.542,216.108,605.157,332.614,456.407,219.957,600.163,127.621,166.393,127.621,352.659,318.708,365.269,19.615,18.960,19.615 +2331,73.573,227.722,614.758,319.047,448.050,230.791,609.126,118.590,158.737,118.590,354.509,316.829,367.338,19.765,19.094,19.765 +2332,73.603,241.296,622.851,303.744,442.115,243.503,616.552,109.312,151.370,109.312,355.739,314.686,369.088,19.867,19.293,19.867 +2333,73.634,254.167,627.751,287.662,438.725,255.133,621.521,98.814,144.189,98.814,358.638,313.417,371.245,26.459,18.765,26.459 +2334,73.665,273.000,630.500,271.293,438.236,273.000,624.118,90.000,137.220,90.000,359.000,311.551,371.764,26.000,18.820,26.000 +2335,73.695,286.713,629.999,255.119,440.178,285.626,623.935,79.840,130.236,79.840,360.194,310.992,372.515,26.298,18.732,26.298 +2336,73.728,305.822,625.049,239.789,445.018,304.022,619.772,71.171,123.319,71.171,361.115,309.808,372.266,22.111,18.249,22.111 +2337,73.762,320.809,618.065,225.200,452.100,318.076,612.986,61.712,116.565,61.712,359.841,309.472,371.375,22.972,18.336,22.972 +2338,73.793,334.519,608.323,212.358,461.449,331.180,604.013,52.239,109.799,52.239,360.034,309.364,370.939,24.420,18.517,24.420 +2339,73.825,346.105,596.275,201.674,471.889,342.083,592.531,42.945,103.073,42.945,358.957,309.485,369.948,25.883,18.606,25.883 +2340,73.857,354.929,583.369,192.928,483.937,350.518,580.412,33.837,96.317,33.837,358.619,309.321,369.239,26.263,18.936,26.263 +2341,73.887,360.993,569.874,186.551,496.506,356.174,567.622,25.048,89.610,25.048,356.917,309.068,367.558,26.258,19.095,26.258 +2342,73.917,364.442,556.343,183.134,509.618,359.998,555.016,16.618,83.057,16.618,355.642,310.335,364.919,25.754,21.377,25.754 +2343,73.947,364.442,556.343,183.134,509.618,359.998,555.016,16.618,83.057,16.618,355.642,310.335,364.919,25.754,21.377,25.754 +2344,73.976,365.662,543.093,181.076,522.515,361.434,542.459,8.539,76.416,8.539,354.091,310.965,362.640,25.872,22.158,25.872 +2345,74.009,364.549,531.125,180.181,534.966,359.704,531.063,0.730,69.857,0.730,349.226,311.582,358.918,24.119,21.923,24.119 +2346,74.042,364.222,520.886,180.927,546.769,359.790,521.407,173.290,63.252,173.290,352.276,312.598,361.201,20.973,21.482,20.973 +2347,74.074,360.373,510.513,183.198,558.386,356.431,511.486,166.130,56.730,166.130,350.726,314.276,358.849,20.232,21.514,20.232 +2348,74.105,356.126,500.975,186.236,568.818,352.252,502.442,159.263,50.347,159.263,349.240,314.982,357.526,20.194,21.322,20.194 +2349,74.137,351.525,491.974,189.958,577.440,347.410,494.085,152.850,43.831,152.850,347.029,314.785,356.279,19.964,21.584,19.964 +2350,74.169,345.797,484.452,194.035,586.893,341.563,487.229,146.737,37.972,146.737,345.916,315.826,356.043,19.780,25.322,19.780 +2351,74.200,339.968,477.809,198.996,594.382,335.732,481.247,140.937,31.608,140.937,344.016,317.603,354.928,19.265,26.205,19.265 +2352,74.232,333.827,472.341,204.955,600.967,330.069,476.059,135.311,25.168,135.311,343.007,318.496,353.580,19.226,25.669,19.226 +2353,74.263,327.659,467.052,210.943,606.780,323.883,471.560,129.944,19.120,129.944,340.602,319.153,352.363,19.386,25.826,19.386 +2354,74.294,321.152,462.651,217.414,611.384,317.754,467.527,124.875,12.619,124.875,338.899,320.091,350.786,19.491,26.348,19.491 +2355,74.325,314.923,459.107,224.186,616.169,311.758,464.604,119.932,6.710,119.932,337.405,319.619,350.090,19.565,25.413,19.565 +2356,74.356,308.335,456.335,231.007,620.116,305.514,462.328,115.211,1.023,115.211,335.743,320.145,348.990,19.601,25.978,19.601 +2357,74.386,302.284,454.172,237.450,622.937,299.911,460.474,110.642,174.883,110.642,334.639,321.029,348.106,19.229,25.584,19.229 +2358,74.416,295.954,452.146,243.940,625.570,293.947,459.068,106.170,169.177,106.170,333.269,322.440,347.683,19.130,25.653,19.130 +2359,74.447,295.954,452.146,243.940,625.570,293.947,459.068,106.170,169.177,106.170,333.269,322.440,347.683,19.130,25.653,19.130 +2360,74.478,289.714,451.067,250.658,627.657,288.202,458.302,101.808,163.496,101.808,332.126,323.470,346.908,19.086,25.213,19.086 +2361,74.512,284.036,450.121,257.428,629.028,282.991,457.757,97.792,158.749,97.792,330.895,324.286,346.311,19.085,23.870,19.085 +2362,74.544,277.490,450.176,264.400,630.300,277.049,457.670,93.366,153.435,93.366,331.133,325.124,346.149,18.615,25.044,18.615 +2363,74.577,271.735,450.432,270.926,630.544,271.835,458.216,89.261,149.036,89.261,329.037,326.190,344.605,18.786,25.210,18.786 +2364,74.608,265.682,451.093,277.747,630.407,266.318,458.404,85.030,143.931,85.030,330.016,327.024,344.693,18.929,24.189,18.929 +2365,74.643,259.966,451.851,284.665,630.032,261.211,459.463,80.713,137.726,80.713,328.809,328.130,344.235,19.521,23.678,19.521 +2366,74.676,254.501,453.025,291.704,628.710,256.325,460.509,76.306,134.421,76.306,328.185,328.252,343.591,20.729,23.340,20.729 +2367,74.707,248.680,454.788,299.467,627.326,251.124,462.211,71.775,129.472,71.775,328.272,329.206,343.902,21.232,23.385,21.232 +2368,74.738,243.083,457.284,306.601,625.070,245.988,464.195,67.203,124.992,67.203,328.592,330.069,343.587,22.085,23.020,22.085 +2369,74.769,236.955,459.902,313.855,622.029,240.458,466.637,62.518,120.561,62.518,328.270,330.478,343.453,22.755,22.446,22.755 +2370,74.800,231.744,463.026,321.076,618.282,235.607,469.097,57.529,116.095,57.529,329.105,330.560,343.496,24.083,22.781,24.083 +2371,74.832,226.034,466.964,328.650,614.156,230.529,472.797,52.377,112.019,52.377,328.998,331.472,343.725,24.762,23.217,24.762 +2372,74.863,220.124,471.159,335.684,608.383,225.195,476.604,47.035,107.916,47.035,328.594,331.689,343.474,25.246,22.414,25.246 +2373,74.894,214.355,476.431,342.471,601.618,219.684,481.133,41.424,104.036,41.424,329.355,330.819,343.570,25.847,22.071,25.847 +2374,74.925,208.514,482.581,349.389,594.159,214.356,486.754,35.538,100.154,35.538,330.260,330.590,344.619,25.458,22.948,25.458 +2375,74.955,203.510,489.264,355.208,585.577,209.551,492.664,29.371,96.170,29.371,331.145,329.512,345.010,25.929,22.625,25.929 +2376,74.986,198.354,497.424,360.542,575.981,204.748,500.124,22.887,92.386,22.887,332.182,328.548,346.063,25.595,23.230,25.595 +2377,75.016,194.295,506.075,365.686,564.984,201.274,508.096,16.149,88.620,16.149,332.962,328.290,347.494,26.132,24.860,26.132 +2378,75.047,194.295,506.075,365.686,564.984,201.274,508.096,16.149,88.620,16.149,332.962,328.290,347.494,26.132,24.860,26.132 +2379,75.078,190.517,516.253,368.300,553.331,197.649,517.387,9.039,84.632,9.039,333.914,327.036,348.358,24.981,24.483,24.981 +2380,75.111,188.171,527.005,369.647,540.649,194.998,527.184,1.507,80.727,1.507,336.226,325.688,349.885,24.781,24.875,24.781 +2381,75.142,187.684,541.102,369.170,527.698,193.993,540.414,173.781,76.590,173.781,338.356,324.037,351.047,19.965,26.122,19.965 +2382,75.175,188.691,553.783,367.013,513.753,194.593,552.283,165.732,73.153,165.732,341.016,322.314,353.196,19.671,24.770,19.671 +2383,75.207,191.675,566.529,362.932,500.151,197.082,564.267,157.294,69.444,157.294,343.770,320.693,355.491,19.673,24.813,19.673 +2384,75.238,196.480,578.967,356.591,486.856,201.408,575.969,148.680,65.854,148.680,346.248,319.032,357.784,19.439,24.229,19.439 +2385,75.268,203.696,590.589,348.251,474.132,207.851,587.064,139.692,62.071,139.692,349.344,316.346,360.242,19.304,24.845,19.304 +2386,75.300,213.013,601.794,337.775,462.901,216.404,597.828,130.527,58.223,130.527,352.414,314.599,362.850,19.557,25.059,19.557 +2387,75.329,224.393,611.844,324.765,453.452,226.980,607.573,121.206,54.372,121.206,354.986,312.718,364.972,19.787,24.398,19.787 +2388,75.361,237.464,619.784,310.271,445.947,239.280,615.233,111.754,50.347,111.754,357.283,311.133,367.082,19.830,24.596,19.830 +2389,75.394,254.851,626.160,294.704,440.938,255.869,621.650,102.724,46.548,102.724,360.410,309.294,369.656,25.708,24.186,25.708 +2390,75.426,270.890,628.946,278.638,438.854,271.160,624.172,93.236,43.191,93.236,361.328,308.041,370.891,26.618,23.345,26.618 +2391,75.458,282.522,629.293,261.946,440.091,281.932,624.960,82.244,38.928,82.244,363.003,307.676,371.750,27.023,20.137,27.023 +2392,75.489,300.930,625.358,246.319,443.105,299.716,621.182,73.791,34.831,73.791,363.108,306.876,371.807,22.465,20.357,22.465 +2393,75.519,317.177,619.237,232.048,448.402,314.990,614.744,64.045,30.793,64.045,361.737,306.115,371.730,23.559,21.137,23.559 +2394,75.549,331.099,610.732,218.438,456.136,327.900,606.229,54.605,26.662,54.605,360.460,305.907,371.508,24.112,20.317,24.112 +2395,75.580,331.099,610.732,218.438,456.136,327.900,606.229,54.605,26.662,54.605,360.460,305.907,371.508,24.112,20.317,24.112 +2396,75.611,343.042,600.012,206.808,465.821,338.955,595.885,45.282,22.358,45.282,359.185,306.612,370.803,24.424,20.419,24.424 +2397,75.643,353.366,587.730,197.085,476.675,348.027,583.813,36.263,18.185,36.263,356.913,306.738,370.156,25.655,20.956,25.655 +2398,75.676,359.727,575.774,189.500,488.437,353.606,572.601,27.396,13.610,27.396,355.070,308.222,368.858,22.114,21.034,22.114 +2399,75.708,365.061,563.035,183.560,501.026,357.502,560.423,19.063,9.162,19.063,351.610,308.879,367.605,21.525,20.955,21.525 +2400,75.739,373.408,550.724,180.286,513.742,360.261,548.179,10.954,4.353,10.954,339.696,311.307,366.479,21.472,20.122,21.472 +2401,75.770,384.523,537.310,178.006,526.365,358.807,535.847,3.257,179.613,3.257,310.579,312.081,362.095,21.177,19.337,21.177 +2402,75.801,436.679,518.749,177.053,538.408,358.135,523.872,176.269,174.987,176.269,205.867,312.344,363.288,20.760,20.186,20.760 +2403,75.833,431.289,499.516,177.648,549.957,355.440,513.964,169.216,170.218,169.216,208.349,313.988,362.774,19.834,20.933,19.834 +2404,75.863,412.335,486.053,179.977,561.118,351.777,505.321,162.350,165.244,162.350,234.160,316.284,361.259,19.015,19.876,19.015 +2405,75.895,395.320,475.969,183.231,571.356,347.427,497.255,156.038,160.263,156.038,255.461,317.835,360.280,18.682,19.738,18.682 +2406,75.926,383.368,466.702,187.344,581.090,342.471,490.558,149.744,155.037,149.744,264.532,319.164,359.225,18.427,19.617,18.427 +2407,75.958,375.862,456.067,192.031,589.482,337.016,484.241,144.048,149.744,144.048,262.333,320.894,358.308,18.147,19.579,18.147 +2408,75.989,374.485,440.983,197.541,597.257,331.330,479.062,138.576,144.462,138.576,241.933,323.052,357.040,17.996,20.111,17.996 +2409,76.020,354.752,443.566,203.039,604.045,325.337,474.764,133.315,139.135,133.315,270.164,324.542,355.922,18.169,19.544,18.169 +2410,76.051,347.670,435.894,209.178,610.147,319.904,471.110,128.254,133.668,128.254,265.783,325.477,355.476,18.076,19.465,18.076 +2411,76.081,347.670,435.894,209.178,610.147,319.904,471.110,128.254,133.668,128.254,265.783,325.477,355.476,18.076,19.465,18.076 +2412,76.113,342.901,424.918,215.552,615.434,314.348,468.095,123.476,128.157,123.476,251.257,327.333,354.785,18.014,19.714,18.014 +2413,76.145,337.514,413.675,222.127,620.259,308.630,465.666,119.055,122.905,119.055,235.343,328.716,354.295,18.066,19.853,18.066 +2414,76.177,337.168,389.452,228.741,624.345,303.102,463.779,114.624,117.474,114.624,190.373,330.116,353.896,17.954,20.087,17.954 +2415,76.209,326.613,384.245,235.402,627.658,297.694,462.327,110.323,111.490,110.323,186.820,331.084,353.349,17.991,19.855,17.991 +2416,76.243,315.641,381.460,242.035,630.445,292.409,461.481,106.189,105.772,106.189,185.966,332.415,352.617,17.968,19.776,17.968 +2417,76.273,294.261,429.007,249.023,632.948,287.579,460.883,101.838,100.069,101.838,287.490,334.598,352.629,18.258,19.554,18.258 +2418,76.304,284.876,444.642,255.075,634.506,282.704,460.549,97.775,94.289,97.775,320.082,334.760,352.191,18.304,22.312,18.304 +2419,76.335,278.896,443.290,264.503,635.500,277.743,460.283,93.879,89.634,93.879,317.356,335.089,351.422,18.196,23.083,18.196 +2420,76.367,273.000,450.500,270.637,635.927,273.000,460.463,90.000,83.431,90.000,331.000,337.070,350.927,18.000,20.188,18.000 +2421,76.397,267.274,449.811,278.390,635.918,268.093,460.930,85.789,78.179,85.789,328.247,338.161,350.544,19.212,20.600,19.212 +2422,76.428,262.352,451.282,285.621,635.647,263.758,462.002,82.524,72.518,82.524,328.402,338.069,350.026,19.619,19.917,19.619 +2423,76.461,257.263,452.352,292.845,633.638,259.288,462.339,78.538,66.801,78.538,328.721,336.144,349.101,20.437,19.433,20.437 +2424,76.493,252.305,454.108,300.401,631.727,254.879,463.398,74.514,61.113,74.514,329.463,335.769,348.744,21.189,19.202,21.189 +2425,76.524,246.783,455.612,307.693,629.497,250.168,465.099,70.366,55.568,70.366,328.194,335.641,348.338,21.856,19.328,21.856 +2426,76.555,241.518,458.098,315.231,625.968,245.313,466.675,66.136,50.013,66.136,329.163,335.444,347.921,21.914,20.613,21.914 +2427,76.585,236.440,460.067,322.102,621.882,240.922,468.439,61.837,44.579,61.837,328.191,333.849,347.183,23.884,20.672,23.884 +2428,76.615,230.648,463.228,328.862,617.320,235.771,471.146,57.095,39.036,57.095,327.729,334.698,346.591,23.360,20.825,23.360 +2429,76.646,230.648,463.228,328.862,617.320,235.771,471.146,57.095,39.036,57.095,327.729,334.698,346.591,23.360,20.825,23.360 +2430,76.676,225.304,466.880,335.309,612.286,230.899,474.144,52.400,33.785,52.400,327.970,334.216,346.307,24.288,20.378,24.288 +2431,76.709,219.438,470.478,341.772,605.919,225.917,477.510,47.340,28.496,47.340,326.757,334.391,345.880,24.784,21.168,24.784 +2432,76.741,214.034,475.357,347.522,599.114,220.909,481.576,42.130,23.241,42.130,326.948,334.045,345.490,25.252,21.466,25.252 +2433,76.772,207.893,479.971,353.539,590.992,216.000,485.995,36.617,17.157,36.617,325.844,332.912,346.043,26.163,22.676,26.163 +2434,76.802,200.877,485.369,358.832,582.285,211.253,491.566,30.844,12.095,30.844,322.264,331.824,346.436,26.127,22.420,26.127 +2435,76.834,194.571,492.714,363.164,573.282,206.786,498.436,25.102,6.888,25.102,319.743,330.516,346.721,27.534,22.348,27.534 +2436,76.864,187.920,500.756,367.076,562.140,202.665,505.733,18.652,2.353,18.652,316.509,328.709,347.633,26.861,21.379,26.861 +2437,76.896,180.434,509.939,369.438,551.430,199.133,513.879,11.901,177.739,11.901,310.559,327.613,348.777,26.832,19.800,26.832 +2438,76.928,173.816,524.044,370.564,539.504,196.258,525.211,2.977,172.735,2.977,304.680,327.196,349.626,23.205,19.915,23.205 +2439,76.958,166.492,536.841,370.375,526.907,194.995,535.330,176.964,168.123,176.964,294.072,325.960,351.160,18.996,19.948,18.996 +2440,76.989,156.131,553.287,368.311,514.177,194.526,545.915,169.131,163.488,169.131,275.111,324.428,353.304,18.714,19.554,18.714 +2441,77.019,119.137,583.446,364.531,501.273,195.726,557.071,160.998,159.070,160.998,193.541,323.154,355.547,18.829,19.198,18.829 +2442,77.050,128.328,605.200,358.534,488.012,199.167,569.309,153.130,154.747,153.130,198.983,321.261,357.808,19.256,19.488,19.256 +2443,77.081,128.328,605.200,358.534,488.012,199.167,569.309,153.130,154.747,153.130,198.983,321.261,357.808,19.256,19.488,19.256 +2444,77.111,190.736,590.607,350.309,476.163,204.251,581.013,144.631,150.422,144.631,326.439,320.138,359.586,19.486,19.627,19.486 +2445,77.143,204.675,598.128,340.759,465.158,211.372,591.597,135.721,146.031,135.721,343.106,318.402,361.816,19.402,19.764,19.402 +2446,77.176,215.451,608.225,328.757,455.144,220.402,601.590,126.727,141.856,126.727,347.786,316.437,364.344,19.406,21.123,19.406 +2447,77.207,228.062,616.962,315.753,447.726,231.486,610.420,117.626,137.922,117.626,351.673,314.701,366.441,19.550,19.493,19.550 +2448,77.238,241.753,624.113,300.944,442.020,243.846,617.631,107.894,133.919,107.894,355.696,312.726,369.319,21.124,19.849,21.124 +2449,77.269,255.689,628.531,285.055,438.626,256.637,621.829,98.053,130.014,98.053,357.214,311.765,370.754,25.734,20.386,25.734 +2450,77.300,276.000,631.000,269.360,438.264,276.000,624.132,90.000,126.238,90.000,358.000,310.733,371.736,26.000,19.939,26.000 +2451,77.329,287.706,629.933,254.042,440.665,286.589,624.008,79.319,122.565,79.319,360.340,310.159,372.398,26.718,18.676,26.718 +2452,77.361,306.367,624.720,238.683,445.101,304.539,619.460,70.836,118.826,70.836,361.496,309.525,372.632,22.147,19.686,22.147 +2453,77.393,321.135,617.884,224.806,452.350,318.388,612.826,61.500,115.201,61.500,359.853,309.608,371.365,22.870,19.321,22.870 +2454,77.425,334.331,608.085,212.688,461.273,331.149,603.968,52.293,111.653,52.293,360.287,309.742,370.693,24.587,18.578,24.587 +2455,77.456,345.444,596.497,202.377,471.590,341.794,593.059,43.280,107.885,43.280,359.515,310.226,369.544,25.931,18.548,25.931 +2456,77.486,353.972,584.401,193.151,483.300,349.762,581.510,34.481,104.604,34.481,359.180,310.983,369.394,25.715,18.952,25.715 +2457,77.517,360.143,571.087,186.426,495.681,355.618,568.889,25.902,101.079,25.902,358.287,311.806,368.349,26.363,19.106,26.363 +2458,77.547,360.143,571.087,186.426,495.681,355.618,568.889,25.902,101.079,25.902,358.287,311.806,368.349,26.363,19.106,26.363 +2459,77.578,363.635,557.942,182.256,508.430,359.130,556.505,17.694,97.516,17.694,356.781,313.092,366.238,25.875,20.296,25.875 +2460,77.609,365.297,545.583,179.153,521.116,360.614,544.764,9.918,94.000,9.918,356.137,313.402,365.645,25.303,19.812,25.303 +2461,77.640,363.845,533.223,178.632,534.013,359.252,533.031,2.386,90.444,2.386,351.653,314.099,360.846,25.436,20.441,25.436 +2462,77.672,363.810,523.713,178.715,545.352,358.812,524.128,175.250,86.874,175.250,352.441,315.731,362.471,21.280,20.979,21.280 +2463,77.703,361.350,513.859,180.494,556.709,356.441,514.874,168.311,83.349,168.311,351.521,318.043,361.547,20.463,20.634,20.463 +2464,77.735,357.633,504.348,183.213,567.237,352.743,505.946,161.900,79.732,161.900,350.075,319.310,360.364,19.724,20.386,19.724 +2465,77.767,353.162,495.939,186.618,576.726,348.342,498.121,155.645,76.232,155.645,348.912,319.933,359.494,19.975,20.242,19.975 +2466,77.797,347.938,488.606,191.085,585.347,343.510,491.187,149.760,72.602,149.760,347.958,321.303,358.209,19.944,20.122,19.944 +2467,77.829,343.021,481.742,196.291,593.040,338.530,484.965,144.337,68.940,144.337,346.089,322.219,357.145,19.270,20.187,19.270 +2468,77.861,337.779,476.012,202.135,599.937,333.529,479.691,139.118,65.084,139.118,344.843,323.932,356.086,19.026,20.836,19.026 +2469,77.892,331.664,471.706,208.232,606.228,327.986,475.504,134.086,61.271,134.086,343.858,324.817,354.432,19.010,21.741,19.010 +2470,77.925,326.015,467.466,213.787,610.720,322.721,471.490,129.306,57.435,129.306,343.073,324.345,353.474,19.425,20.963,19.425 +2471,77.955,320.253,463.742,219.735,615.081,317.174,468.168,124.817,53.344,124.817,341.711,324.625,352.494,19.412,21.866,19.412 +2472,77.985,314.819,460.707,225.246,619.134,311.897,465.636,120.666,49.254,120.666,340.992,325.061,352.453,18.841,24.069,18.841 +2473,78.015,314.819,460.707,225.246,619.134,311.897,465.636,120.666,49.254,120.666,340.992,325.061,352.453,18.841,24.069,18.841 +2474,78.044,309.300,458.400,230.873,623.135,306.460,464.079,116.565,45.556,116.565,339.435,325.350,352.135,18.783,25.139,18.783 +2475,78.077,303.963,456.740,237.115,625.643,301.677,462.249,112.535,41.009,112.535,339.395,325.957,351.324,19.477,25.886,19.477 +2476,78.110,299.186,454.861,242.833,627.563,297.150,460.840,108.800,37.304,108.800,338.035,326.392,350.666,18.953,26.552,18.953 +2477,78.141,293.792,453.503,249.056,628.914,292.189,459.463,105.055,32.969,105.055,337.335,326.741,349.679,19.155,26.189,19.155 +2478,78.176,288.960,452.485,254.906,630.170,287.693,458.728,101.470,29.055,101.470,336.335,326.935,349.076,19.231,26.807,19.231 +2479,78.208,284.330,452.190,259.988,630.708,283.460,458.278,98.130,24.636,98.130,335.734,327.983,348.033,18.809,27.038,18.809 +2480,78.240,279.331,451.200,266.084,630.767,278.803,457.660,94.667,19.911,94.667,334.174,327.731,347.136,18.713,27.311,18.713 +2481,78.270,274.695,450.435,271.877,630.468,274.539,457.190,91.325,14.708,91.325,333.073,327.480,346.586,18.515,28.243,18.515 +2482,78.300,270.040,450.625,277.638,630.554,270.298,457.760,87.936,10.008,87.936,331.614,326.774,345.893,19.051,27.516,19.051 +2483,78.331,265.618,451.134,283.783,629.936,266.314,458.281,84.443,5.080,84.443,330.719,326.358,345.080,19.659,27.403,19.659 +2484,78.362,260.412,451.675,289.000,629.000,261.574,458.908,80.870,0.000,80.870,329.927,326.000,344.578,19.606,28.000,19.606 +2485,78.393,255.976,452.228,294.497,627.468,257.606,459.543,77.435,175.389,77.435,328.870,326.279,343.858,20.232,27.057,20.232 +2486,78.425,251.973,453.087,300.332,626.020,254.104,460.449,73.856,170.287,73.856,328.462,326.521,343.791,21.587,27.110,21.587 +2487,78.456,246.902,455.771,305.801,624.851,249.450,462.824,70.137,165.217,70.137,328.071,326.772,343.069,21.853,27.463,21.853 +2488,78.488,241.995,456.904,311.393,622.066,245.079,463.925,66.286,159.775,66.286,327.576,326.543,342.914,22.282,27.261,22.282 +2489,78.519,237.343,456.747,317.441,617.377,240.896,463.524,62.339,154.134,62.339,328.306,326.960,343.609,23.163,26.694,23.163 +2490,78.550,232.415,459.377,323.295,613.847,236.452,465.869,58.125,148.570,58.125,327.755,327.565,343.046,23.770,26.689,23.770 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-233552.csv b/chaos_pdl/data/raw/metrics-20250919-233552.csv new file mode 100644 index 0000000..6dca0df --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-233552.csv @@ -0,0 +1,2054 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.001,233.446,461.139,346.009,601.983,238.346,467.192,51.009,28.635,51.009,329.441,333.921,345.016,24.872,21.425,24.872 +1,0.031,237.299,458.496,340.782,605.573,241.599,464.579,54.744,25.334,54.744,329.869,332.861,344.769,23.822,23.037,23.822 +2,0.060,237.299,458.496,340.782,605.573,241.599,464.579,54.744,25.334,54.744,329.869,332.861,344.769,23.822,23.037,23.822 +3,0.088,241.352,456.322,335.391,609.070,245.044,462.321,58.392,21.181,58.392,330.574,332.357,344.663,23.191,24.698,23.191 +4,0.119,245.758,453.935,329.768,611.283,248.819,459.640,61.783,16.504,61.783,330.843,332.241,343.792,23.190,25.959,23.190 +5,0.150,249.595,451.651,324.596,613.968,252.414,457.735,65.136,11.592,65.136,330.792,330.302,344.203,22.439,27.379,22.439 +6,0.179,253.135,449.435,319.450,615.789,255.798,456.168,68.422,6.546,68.422,329.207,328.435,343.688,22.155,27.264,22.155 +7,0.207,256.850,448.050,313.993,617.260,259.039,454.616,71.565,1.488,71.565,329.509,326.409,343.351,21.187,27.731,21.187 +8,0.237,259.799,446.614,308.557,618.428,261.708,453.454,74.407,176.505,74.407,328.786,326.041,342.989,19.712,27.026,19.712 +9,0.268,263.396,444.747,302.991,619.441,265.040,452.099,77.400,171.180,77.400,328.115,325.399,343.182,19.553,26.800,19.553 +10,0.298,263.396,444.747,302.991,619.441,265.040,452.099,77.400,171.180,77.400,328.115,325.399,343.182,19.553,26.800,19.553 +11,0.326,267.556,443.990,297.344,620.348,268.798,451.238,80.272,165.677,80.272,328.297,325.020,343.004,19.628,26.779,19.628 +12,0.356,271.129,443.991,292.124,621.465,272.000,451.055,82.972,160.062,82.972,328.948,324.570,343.183,19.075,26.045,19.075 +13,0.388,274.479,444.232,286.571,622.610,275.046,451.593,85.601,154.269,85.601,328.031,324.326,342.795,18.714,25.365,18.714 +14,0.422,278.400,444.384,281.109,623.885,278.623,451.881,88.290,147.529,88.290,329.003,324.886,344.004,18.917,24.773,18.917 +15,0.456,282.539,444.072,275.778,624.353,282.373,452.207,91.169,141.843,91.169,328.217,325.311,344.490,18.751,22.972,18.751 +16,0.488,286.440,444.138,270.330,624.843,285.818,452.897,94.062,136.169,94.062,327.660,326.067,345.223,19.100,21.295,19.100 +17,0.521,290.140,443.238,264.954,625.038,288.992,453.576,96.340,130.213,96.340,325.331,326.849,346.136,19.105,19.862,19.105 +18,0.553,294.988,441.323,260.416,625.098,292.913,454.082,99.236,124.548,99.236,322.175,327.555,348.029,19.163,19.916,19.163 +19,0.584,300.216,437.600,255.752,625.086,296.340,455.145,102.458,118.980,102.458,313.453,328.101,349.390,18.371,20.537,18.371 +20,0.616,309.161,422.512,251.096,624.616,299.861,456.170,105.446,113.044,105.446,280.857,329.063,350.697,17.933,19.778,17.933 +21,0.647,318.094,414.714,246.510,623.654,304.030,457.418,108.229,106.790,108.229,261.853,329.303,351.774,18.064,20.105,18.064 +22,0.679,310.412,451.996,241.928,622.283,307.823,458.669,111.209,101.421,111.209,338.426,330.069,352.742,18.548,19.990,18.548 +23,0.711,314.034,454.925,237.547,621.153,311.518,460.461,114.444,95.664,114.444,341.636,329.557,353.798,19.200,19.327,19.200 +24,0.741,319.233,455.796,233.500,619.000,316.006,461.871,117.979,90.000,117.979,341.186,328.000,354.944,19.097,19.000,19.097 +25,0.772,323.493,459.073,228.792,615.421,320.659,463.680,121.608,84.289,121.608,343.939,327.367,354.757,19.130,19.801,19.130 +26,0.805,328.694,460.723,224.327,612.135,324.998,465.950,125.259,78.690,125.259,342.160,326.337,354.963,19.134,20.200,19.134 +27,0.838,333.551,463.597,220.013,607.379,329.996,467.959,129.174,72.864,129.174,343.860,325.113,355.114,19.237,19.948,19.237 +28,0.870,339.035,467.085,215.880,602.417,335.273,471.050,133.493,67.094,133.493,344.019,323.647,354.950,18.843,20.213,18.843 +29,0.902,344.336,471.007,212.106,596.512,340.522,474.462,137.830,61.125,137.830,343.933,321.880,354.225,19.130,21.248,19.130 +30,0.932,344.336,471.007,212.106,596.512,340.522,474.462,137.830,61.125,137.830,343.933,321.880,354.225,19.130,21.248,19.130 +31,0.962,349.975,475.813,207.302,589.063,346.084,478.789,142.595,55.342,142.595,344.658,318.949,354.455,19.298,21.610,19.298 +32,0.994,355.045,481.205,202.591,580.852,351.018,483.774,147.461,49.256,147.461,345.132,315.527,354.686,19.157,21.148,19.157 +33,1.026,359.983,488.387,198.479,572.432,356.075,490.394,152.819,43.329,152.819,346.546,312.944,355.333,19.619,21.508,19.619 +34,1.058,364.156,495.655,194.896,562.858,360.431,497.140,158.270,37.336,158.270,348.184,311.243,356.205,19.333,22.000,19.333 +35,1.088,368.362,504.031,191.696,552.541,364.123,505.237,164.120,31.399,164.120,348.765,310.074,357.581,19.577,21.926,19.577 +36,1.119,370.278,513.396,189.426,542.123,365.116,514.289,170.194,25.890,170.194,345.251,308.609,355.729,20.194,21.704,20.194 +37,1.151,371.836,522.342,188.463,530.168,364.006,522.757,176.964,20.898,176.964,335.695,307.850,351.378,21.545,23.627,21.545 +38,1.182,380.178,531.981,188.404,519.821,364.018,531.030,3.366,16.699,3.366,319.565,306.409,351.940,25.074,22.222,25.074 +39,1.213,426.024,554.858,189.700,509.056,364.707,544.430,9.652,13.381,9.652,232.525,306.016,356.920,21.038,21.746,21.038 +40,1.244,375.226,558.789,192.718,497.974,366.283,556.086,16.821,10.111,16.821,347.223,305.874,365.910,21.103,21.679,21.103 +41,1.274,368.638,568.191,197.262,486.822,363.513,565.666,26.232,5.856,26.232,356.530,304.786,367.957,25.935,22.140,25.935 +42,1.305,362.346,578.731,203.593,475.500,358.513,576.175,33.690,2.134,33.690,360.278,303.609,369.491,25.239,20.048,25.239 +43,1.337,354.419,590.790,211.958,465.495,350.996,587.678,42.274,177.580,42.274,360.889,304.615,370.139,25.629,19.166,25.629 +44,1.369,343.457,601.708,221.793,455.822,340.684,598.275,51.072,172.950,51.072,362.221,305.752,371.047,24.236,19.628,24.236 +45,1.400,343.457,601.708,221.793,455.822,340.684,598.275,51.072,172.950,51.072,362.221,305.752,371.047,24.236,19.628,24.236 +46,1.428,331.541,611.142,233.662,448.287,329.203,607.135,59.744,168.408,59.744,361.419,305.963,370.699,22.674,18.211,22.674 +47,1.458,317.582,618.496,246.996,441.986,315.824,613.977,68.749,163.940,68.749,360.789,306.871,370.486,21.747,18.142,21.747 +48,1.490,304.110,623.669,261.141,437.377,302.988,618.206,78.391,159.554,78.391,359.945,307.584,371.100,26.474,18.715,26.474 +49,1.526,288.849,625.902,276.153,434.832,288.597,619.894,87.600,155.260,87.600,358.817,309.124,370.842,26.438,18.521,26.438 +50,1.560,268.356,624.032,290.710,434.474,268.918,617.833,95.178,151.155,95.178,356.707,310.441,369.156,26.706,19.164,26.706 +51,1.592,254.479,621.080,305.318,437.183,256.147,614.696,104.642,146.964,104.642,355.160,312.068,368.356,23.561,18.860,23.561 +52,1.627,242.307,614.489,318.895,441.362,245.082,608.473,114.760,142.872,114.760,352.078,313.402,365.327,20.470,20.036,20.470 +53,1.659,229.127,608.089,331.269,448.170,233.734,601.147,123.573,138.608,123.573,346.125,314.579,362.788,19.849,21.540,19.849 +54,1.690,211.176,607.378,341.740,456.736,224.216,593.097,132.397,135.162,132.397,321.209,315.392,359.887,19.265,19.971,19.265 +55,1.724,187.312,606.550,352.033,467.029,216.374,582.786,140.726,130.968,140.726,281.508,316.279,356.590,19.330,19.883,19.330 +56,1.757,198.982,579.438,360.774,478.795,210.434,572.475,148.699,127.461,148.699,327.451,317.231,354.256,19.837,21.617,19.837 +57,1.789,198.040,565.688,367.192,491.462,206.207,562.134,156.484,123.690,156.484,333.815,318.953,351.628,19.333,23.575,19.333 +58,1.823,197.026,553.569,372.225,503.745,203.889,551.597,163.963,119.236,163.963,335.725,319.651,350.007,20.027,25.267,20.027 +59,1.857,196.060,542.014,375.189,515.304,202.899,540.925,170.945,115.463,170.945,334.500,319.914,348.350,20.467,25.452,20.467 +60,1.890,196.615,532.171,376.431,527.672,203.146,531.934,177.922,111.801,177.922,333.579,321.439,346.650,19.697,25.812,19.697 +61,1.922,197.870,522.661,376.436,539.306,204.715,523.195,4.463,108.122,4.463,331.178,322.271,344.909,19.049,26.179,19.049 +62,1.956,200.368,511.476,374.964,549.991,206.862,512.657,10.305,104.381,10.305,330.938,324.030,344.138,24.776,25.806,24.776 +63,1.991,203.051,504.043,372.846,560.269,209.618,505.892,15.732,101.310,15.732,330.070,325.357,343.715,25.514,25.299,25.514 +64,2.024,206.931,496.172,370.183,569.496,213.389,498.755,21.801,97.667,21.801,329.795,327.107,343.705,25.255,25.272,25.255 +65,2.057,210.521,489.543,365.889,577.751,216.797,492.747,27.051,94.236,27.051,328.785,328.101,342.879,25.126,22.937,25.126 +66,2.090,214.449,483.781,363.038,585.526,221.188,487.993,32.005,90.735,32.005,328.069,329.127,343.962,25.016,23.934,25.016 +67,2.123,218.559,478.991,358.642,592.016,224.894,483.659,36.384,87.436,36.384,328.166,330.743,343.904,25.592,22.694,25.592 +68,2.156,222.871,474.812,354.067,598.044,228.835,479.989,40.956,84.261,40.956,328.121,332.246,343.917,24.680,21.765,24.680 +69,2.189,225.910,470.048,348.956,603.507,232.552,476.640,44.780,81.384,44.780,325.261,333.077,343.977,25.066,19.714,25.066 +70,2.224,230.038,466.940,344.596,607.981,236.231,473.963,48.594,78.690,48.594,325.652,333.594,344.381,24.874,19.612,24.874 +71,2.258,232.850,463.292,340.710,611.569,239.444,471.675,51.809,76.574,51.809,323.792,334.229,345.124,24.323,19.730,24.323 +72,2.291,235.324,461.054,336.315,614.915,241.911,470.276,54.462,74.862,54.462,322.471,334.693,345.137,23.482,19.828,23.482 +73,2.328,237.947,457.488,333.575,617.201,245.055,468.657,57.529,74.438,57.529,319.211,334.719,345.689,23.316,20.194,23.316 +74,2.360,240.023,454.580,330.398,619.247,247.398,467.264,59.826,74.240,59.826,316.872,334.736,346.216,22.940,19.998,22.940 +75,2.393,240.952,451.811,327.479,621.006,248.953,466.746,61.821,74.839,61.821,312.233,334.953,346.118,21.502,20.313,21.502 +76,2.426,243.200,450.900,324.000,622.500,250.700,465.900,63.435,75.964,63.435,312.155,334.699,345.696,21.019,19.645,21.019 +77,2.459,245.538,450.376,321.836,623.429,252.316,464.858,64.916,78.035,64.916,314.197,334.615,346.177,21.274,19.650,21.274 +78,2.492,247.510,449.773,319.920,624.513,253.929,464.215,66.038,80.727,66.038,314.960,335.376,346.568,22.033,19.739,22.033 +79,2.525,248.860,449.854,318.097,625.093,254.832,463.860,66.909,84.106,66.909,315.804,334.763,346.256,21.963,19.516,21.963 +80,2.557,251.113,452.674,316.391,625.473,255.568,463.424,67.490,88.232,67.490,322.702,333.489,345.976,22.280,19.238,22.280 +81,2.591,251.426,452.485,314.449,624.971,255.602,462.695,67.751,93.013,67.751,322.890,333.013,344.951,22.213,20.445,22.213 +82,2.626,251.741,453.073,314.214,624.907,255.621,462.618,67.878,98.531,67.878,324.204,333.519,344.813,22.391,19.977,22.391 +83,2.659,251.608,453.698,313.464,623.501,255.045,462.069,67.677,103.775,67.677,324.947,332.026,343.046,21.852,21.655,21.852 +84,2.692,251.381,454.461,313.662,622.244,254.409,461.709,67.324,110.204,67.324,326.226,330.297,341.937,21.974,21.127,21.974 +85,2.727,250.923,454.535,315.362,621.612,254.058,461.860,66.829,117.759,66.829,326.037,329.190,341.973,22.428,21.424,22.428 +86,2.758,250.247,455.185,316.973,620.481,253.202,461.880,66.189,124.574,66.189,327.056,328.177,341.693,22.612,22.999,22.612 +87,2.790,249.024,455.690,318.658,619.531,252.070,462.316,65.308,131.685,65.308,326.730,327.445,341.315,22.255,24.726,22.255 +88,2.825,247.947,455.852,320.899,618.454,251.198,462.652,64.448,138.705,64.448,326.181,326.620,341.255,23.051,25.403,23.051 +89,2.859,246.711,456.629,323.374,617.268,250.027,463.206,63.249,145.899,63.249,326.442,325.932,341.174,22.978,26.273,22.978 +90,2.891,245.202,457.268,325.985,615.958,248.765,463.976,62.027,153.295,62.027,325.704,325.588,340.894,23.203,26.909,23.203 +91,2.925,243.498,458.065,328.951,614.694,247.303,464.817,60.597,160.560,60.597,325.810,325.831,341.312,23.378,27.125,23.378 +92,2.959,241.838,459.397,332.020,613.300,245.701,465.835,59.036,168.000,59.036,326.705,326.229,341.721,23.667,27.209,23.667 +93,2.992,240.090,461.085,335.107,611.762,243.983,467.140,57.265,175.156,57.265,327.459,326.947,341.857,23.974,26.701,23.974 +94,3.025,238.012,462.646,338.466,609.751,242.023,468.446,55.333,2.626,55.333,328.050,327.756,342.153,24.313,26.697,24.313 +95,3.060,235.808,464.390,342.020,608.039,240.133,470.181,53.248,10.037,53.248,328.387,330.021,342.841,24.673,26.230,24.673 +96,3.093,233.421,466.469,345.627,605.679,237.929,472.029,50.964,17.580,50.964,328.967,331.747,343.282,25.213,24.474,25.213 +97,3.124,230.595,468.302,349.011,603.618,235.795,474.166,48.437,25.031,48.437,328.271,333.174,343.944,25.436,22.329,25.436 +98,3.157,224.500,468.500,353.021,600.968,232.997,476.997,45.000,32.285,45.000,321.026,333.479,345.060,25.456,20.266,25.456 +99,3.192,201.540,455.453,355.735,599.103,230.366,479.931,40.337,39.352,40.337,269.766,333.928,345.400,22.442,19.827,22.442 +100,3.227,209.703,471.451,358.774,595.307,225.922,484.654,39.149,46.882,39.149,303.948,334.085,345.775,18.533,19.543,18.533 +101,3.260,215.830,478.752,361.728,591.194,224.859,485.215,35.595,54.507,35.595,323.755,334.096,345.962,25.062,19.968,25.062 +102,3.293,213.494,483.537,364.489,586.506,221.724,488.623,31.717,62.140,31.717,326.458,333.342,345.806,25.863,20.094,25.863 +103,3.326,210.747,488.849,367.427,580.345,218.309,492.811,27.654,70.096,27.654,328.348,331.914,345.422,25.383,21.480,25.383 +104,3.359,207.623,494.232,370.541,573.337,215.150,497.467,23.253,77.705,23.253,329.057,330.160,345.443,25.302,23.813,25.302 +105,3.391,205.144,500.591,372.899,565.703,211.951,502.869,18.500,84.999,18.500,330.780,327.810,345.136,25.252,24.930,25.252 +106,3.422,201.990,507.267,374.381,557.046,208.663,508.862,13.445,92.974,13.445,331.036,324.757,344.758,24.953,24.992,24.953 +107,3.455,199.443,514.854,375.478,547.182,205.988,515.777,8.022,100.539,8.022,331.210,323.061,344.428,24.709,26.019,24.709 +108,3.489,197.084,523.408,376.449,537.007,203.918,523.682,2.298,108.853,2.298,332.174,321.574,345.853,24.175,26.336,24.175 +109,3.523,196.131,534.937,376.500,526.000,203.045,534.470,176.135,116.565,176.135,333.402,319.758,347.262,19.415,25.938,19.415 +110,3.554,195.761,543.951,374.793,514.745,202.822,542.680,169.792,124.772,169.792,334.052,319.832,348.400,20.355,25.409,20.355 +111,3.588,194.860,555.825,372.420,502.842,204.405,552.920,163.072,132.469,163.072,330.676,318.274,350.632,20.049,24.299,20.049 +112,3.620,190.511,569.450,368.335,490.973,206.993,562.230,156.346,139.374,156.346,316.764,318.777,352.752,19.690,22.390,19.690 +113,3.653,142.956,611.426,363.084,479.621,210.497,570.902,149.036,145.469,149.036,198.081,318.547,355.611,18.522,19.696,18.522 +114,3.685,207.734,586.739,356.123,468.900,215.820,580.422,142.001,151.260,142.001,337.915,319.245,358.438,19.159,21.270,19.159 +115,3.719,216.858,594.913,348.447,459.720,222.499,589.151,134.393,156.631,134.393,345.064,318.275,361.192,18.973,20.105,18.973 +116,3.751,226.329,603.398,338.865,451.401,230.613,597.595,126.435,163.179,126.435,349.396,317.705,363.820,19.368,20.012,19.368 +117,3.782,237.010,611.164,327.808,444.944,240.155,605.302,118.217,169.695,118.217,352.185,316.627,365.490,19.815,19.856,19.815 +118,3.813,248.841,617.901,315.549,440.316,250.970,612.006,109.855,176.578,109.855,354.301,314.054,366.836,19.961,18.843,19.961 +119,3.845,260.725,622.794,301.477,437.404,261.724,617.451,100.589,3.264,100.589,357.702,311.976,368.573,24.510,18.981,24.510 +120,3.876,274.472,624.982,286.991,435.097,274.665,619.467,92.000,9.593,92.000,358.340,310.067,369.376,25.404,20.637,25.404 +121,3.907,288.586,625.152,272.978,436.315,288.097,620.814,83.568,15.846,83.568,361.333,307.818,370.064,25.500,20.362,25.500 +122,3.938,303.929,623.352,259.278,438.128,302.717,618.674,75.473,22.567,75.473,361.672,306.303,371.338,24.953,21.970,24.953 +123,3.971,319.711,618.424,245.690,443.674,317.874,613.995,67.475,30.211,67.475,360.373,304.769,369.962,22.503,20.401,22.503 +124,4.003,333.316,613.121,233.410,450.776,330.237,607.971,59.126,36.607,59.126,357.218,303.598,369.217,23.602,18.830,23.602 +125,4.035,350.858,614.372,222.362,459.175,340.018,601.004,50.961,43.363,50.961,334.110,302.236,368.532,20.283,18.014,20.283 +126,4.066,350.858,614.372,222.362,459.175,340.018,601.004,50.961,43.363,50.961,334.110,302.236,368.532,20.283,18.014,20.283 +127,4.096,361.080,600.964,212.714,468.589,350.448,590.654,44.123,49.745,44.123,338.087,302.713,367.708,23.054,19.781,23.054 +128,4.127,364.077,583.681,205.741,478.176,358.546,579.787,35.140,56.416,35.140,353.354,303.419,366.882,25.901,20.487,25.901 +129,4.158,368.212,571.213,198.913,489.545,363.775,568.902,27.516,62.688,27.516,355.746,304.167,365.752,25.595,19.460,25.595 +130,4.191,372.416,559.726,193.745,500.213,367.556,557.921,20.376,68.916,20.376,355.686,305.919,366.056,25.766,20.460,25.766 +131,4.223,371.811,547.955,191.088,511.353,367.165,546.840,13.496,75.964,13.496,349.437,307.778,358.993,25.438,20.858,25.438 +132,4.256,369.932,536.902,188.747,522.112,365.069,536.306,6.992,81.955,6.992,343.680,310.136,353.477,25.760,19.992,25.760 +133,4.289,368.082,529.582,186.466,532.961,362.834,529.515,0.728,88.472,0.728,342.125,312.422,352.621,21.176,20.233,21.176 +134,4.321,367.960,521.049,187.363,543.026,363.265,521.463,174.963,94.057,174.963,344.806,315.053,354.232,20.565,20.664,20.565 +135,4.354,368.424,512.590,187.639,551.642,363.538,513.498,169.477,99.997,169.477,349.875,317.331,359.814,20.132,20.424,20.132 +136,4.386,366.555,505.141,187.557,559.455,361.454,506.575,164.291,106.299,164.291,352.842,319.196,363.439,19.704,21.677,19.704 +137,4.417,363.166,498.462,190.080,566.929,358.562,500.198,159.341,111.656,159.341,352.543,320.321,362.383,20.217,19.395,20.217 +138,4.449,359.960,492.710,191.663,572.858,355.119,494.976,154.916,117.284,154.916,351.427,321.108,362.116,19.675,19.552,19.675 +139,4.480,356.317,487.486,194.261,578.313,351.820,489.997,150.819,122.816,150.819,350.946,321.564,361.246,19.797,19.738,19.797 +140,4.511,353.958,482.606,196.651,582.617,348.621,486.044,147.213,127.747,147.213,347.415,321.365,360.111,19.279,20.865,19.279 +141,4.542,351.308,478.426,199.716,586.288,345.916,482.350,143.957,132.241,143.957,345.404,321.003,358.741,19.334,21.410,19.334 +142,4.575,350.974,473.240,202.430,589.435,343.346,479.380,141.170,135.367,141.170,337.977,321.065,357.562,18.734,19.536,18.734 +143,4.607,401.259,423.876,204.822,592.796,340.440,476.585,139.086,138.918,139.086,196.227,320.218,357.190,18.288,19.559,18.288 +144,4.640,377.339,437.995,207.636,595.178,338.545,474.364,136.848,142.674,136.848,249.912,320.030,356.265,18.056,19.622,18.056 +145,4.677,353.463,455.441,210.075,597.082,336.519,472.511,134.789,146.889,134.789,306.872,319.567,354.976,18.176,19.447,18.176 +146,4.709,345.157,459.882,212.485,598.848,334.990,471.019,132.390,151.952,132.390,323.841,318.645,354.002,20.002,19.286,20.002 +147,4.742,340.881,460.259,215.375,600.397,333.149,469.235,130.741,157.341,130.741,328.789,317.922,352.483,19.452,19.836,19.452 +148,4.776,337.445,460.299,217.986,601.413,331.636,467.448,129.094,164.208,129.094,332.856,317.311,351.279,19.403,21.510,19.403 +149,4.808,334.241,460.453,220.945,603.648,329.766,466.281,127.522,171.209,127.522,335.758,317.036,350.454,19.560,22.903,19.560 +150,4.841,331.939,460.016,223.939,605.550,328.177,465.158,126.193,178.815,126.193,336.965,316.118,349.707,19.447,24.650,19.447 +151,4.874,330.252,459.431,225.985,607.133,326.833,464.305,125.047,6.411,125.047,337.775,316.949,349.684,19.439,25.592,19.439 +152,4.907,328.711,459.177,227.349,608.619,325.520,463.883,124.136,13.963,124.136,338.406,318.685,349.778,19.051,26.118,19.051 +153,4.939,327.738,458.657,229.138,610.655,324.397,463.714,123.450,21.801,123.450,338.100,319.025,350.221,18.832,25.997,18.832 +154,4.973,326.772,458.352,230.007,612.098,323.437,463.506,122.905,29.358,122.905,338.742,320.086,351.018,18.866,26.093,18.866 +155,5.006,326.185,458.347,230.675,613.618,322.812,463.658,122.421,37.439,122.421,339.386,321.064,351.969,19.232,25.917,19.232 +156,5.039,325.667,458.634,231.034,614.451,322.340,463.905,122.256,45.939,122.256,339.620,321.887,352.086,19.221,24.919,19.221 +157,5.072,325.485,459.148,232.262,614.070,322.703,463.554,122.276,53.616,122.276,340.688,323.632,351.109,19.046,20.762,19.046 +158,5.105,325.638,459.497,231.502,614.623,322.831,463.908,122.471,61.172,122.471,341.913,324.989,352.370,19.097,21.223,19.097 +159,5.135,326.005,459.709,230.185,615.146,322.845,464.589,122.917,68.646,122.917,341.851,327.232,353.480,18.720,21.050,18.720 +160,5.170,326.692,460.962,227.794,614.811,323.704,465.444,123.690,76.594,123.690,344.191,326.956,354.965,18.860,20.070,18.860 +161,5.205,327.470,461.411,225.649,613.985,324.202,466.204,124.287,84.289,124.287,343.635,327.666,355.238,19.116,19.602,19.116 +162,5.237,328.659,461.845,223.420,612.560,325.183,466.761,125.259,91.790,125.259,343.553,327.309,355.595,19.050,18.928,19.050 +163,5.269,329.777,462.996,221.017,611.171,326.438,467.533,126.347,99.522,126.347,345.077,327.158,356.344,19.391,18.834,19.391 +164,5.299,329.777,462.996,221.017,611.171,326.438,467.533,126.347,99.522,126.347,345.077,327.158,356.344,19.391,18.834,19.391 +165,5.329,331.719,463.731,218.395,608.968,327.961,468.576,127.794,107.103,127.794,343.907,326.729,356.170,19.094,18.969,19.094 +166,5.360,334.324,464.168,215.785,606.132,330.009,469.432,129.338,114.775,129.338,342.651,325.469,356.264,19.435,20.115,19.435 +167,5.392,337.447,465.204,213.432,603.076,332.597,470.746,131.186,121.708,131.186,341.388,324.880,356.118,18.626,20.404,18.626 +168,5.425,344.563,462.145,210.806,599.981,334.910,472.383,133.315,129.352,133.315,327.810,323.442,355.952,18.356,20.028,18.356 +169,5.458,395.250,417.728,208.332,596.425,337.401,473.925,135.830,136.915,135.830,194.567,321.273,355.869,18.034,19.891,18.034 +170,5.489,383.983,437.293,205.974,592.668,340.486,475.957,138.366,144.615,138.366,239.752,320.022,356.147,18.021,20.138,18.021 +171,5.521,370.306,457.125,203.480,588.411,343.628,478.566,141.212,152.199,141.212,287.652,318.107,356.104,18.272,19.959,18.272 +172,5.554,365.814,468.024,201.027,583.229,347.121,481.460,144.293,159.611,144.293,310.012,316.848,356.053,18.803,19.958,18.803 +173,5.587,365.774,475.023,198.741,577.835,350.598,484.819,147.160,167.471,147.160,319.935,314.983,356.061,20.111,20.175,20.111 +174,5.622,365.811,482.660,196.716,572.510,354.175,489.125,150.945,174.583,150.945,329.654,313.533,356.277,19.426,19.997,19.426 +175,5.654,367.983,488.664,194.578,565.653,357.590,493.536,154.885,1.909,154.885,333.464,311.494,356.419,19.524,20.855,19.524 +176,5.685,369.578,495.634,192.692,559.840,360.655,499.041,159.102,9.382,159.102,338.102,311.370,357.205,20.145,21.234,20.145 +177,5.717,370.925,503.426,190.932,552.512,363.759,505.499,163.869,16.189,163.869,343.251,310.873,358.170,19.189,21.840,19.189 +178,5.749,370.892,511.521,189.917,545.347,365.436,512.603,168.789,23.078,168.789,345.946,309.486,357.071,19.521,21.583,19.521 +179,5.780,369.637,519.192,189.293,537.134,364.573,519.713,174.127,30.129,174.127,342.104,308.730,352.285,21.066,22.039,21.066 +180,5.811,369.028,526.530,189.688,528.047,364.361,526.556,179.685,36.529,179.685,340.022,308.000,349.357,23.961,22.232,23.961 +181,5.841,370.302,535.542,190.603,518.760,365.399,535.041,5.839,43.191,5.839,341.231,306.404,351.090,24.124,22.155,24.124 +182,5.873,372.216,545.665,191.893,509.745,366.814,544.505,12.124,49.790,12.124,345.590,306.001,356.641,25.007,20.494,25.007 +183,5.912,373.711,557.412,194.859,500.725,368.839,555.754,18.800,55.545,18.800,354.571,306.751,364.864,25.056,20.097,25.056 +184,5.944,369.332,568.861,198.277,490.620,364.722,566.600,26.131,61.834,26.131,355.525,305.465,365.794,25.070,19.867,25.070 +185,5.977,364.269,580.846,203.379,480.448,359.427,577.618,33.690,68.199,33.690,355.840,304.540,367.479,24.962,20.055,24.962 +186,6.011,357.273,591.263,210.641,470.909,352.973,587.544,40.855,74.567,40.855,356.533,303.990,367.903,24.735,18.965,24.735 +187,6.044,347.478,601.650,219.183,462.307,344.020,597.673,48.991,80.744,48.991,357.585,304.480,368.125,24.147,18.994,24.147 +188,6.076,337.333,610.454,228.802,453.956,334.118,605.544,56.782,86.897,56.782,357.286,304.420,369.024,23.713,18.882,23.713 +189,6.108,324.609,618.449,239.877,447.047,321.899,612.642,64.983,93.073,64.983,356.674,304.850,369.491,22.111,18.872,22.111 +190,6.140,311.023,624.584,252.055,441.748,309.095,618.059,73.536,99.058,73.536,356.885,305.590,370.495,22.406,19.321,22.406 +191,6.173,293.767,627.847,264.661,438.044,292.638,620.877,80.805,105.195,80.805,355.786,306.525,369.909,26.653,20.123,26.653 +192,6.208,280.000,628.000,278.749,436.503,280.000,620.752,90.000,111.656,90.000,354.000,307.527,368.497,22.000,19.777,22.000 +193,6.242,263.039,626.224,293.228,436.835,264.107,618.704,98.083,117.582,98.083,353.120,309.031,368.312,26.726,19.407,26.726 +194,6.276,251.415,621.829,307.736,439.498,253.888,614.256,108.088,124.077,108.088,349.745,310.655,365.679,19.748,19.318,19.748 +195,6.310,237.870,614.928,320.654,443.788,241.487,607.726,116.673,130.073,116.673,347.941,312.771,364.059,19.705,20.285,19.705 +196,6.343,226.397,607.008,333.218,450.182,231.445,599.893,125.357,136.292,125.357,344.538,314.195,361.984,19.577,19.677,19.577 +197,6.376,216.471,597.592,344.680,458.240,223.010,590.783,133.838,143.130,133.838,340.870,316.800,359.750,19.352,19.600,19.352 +198,6.408,208.878,587.204,354.501,467.355,216.351,581.366,142.001,149.632,142.001,339.146,318.515,358.112,19.233,19.885,19.233 +199,6.440,202.085,576.570,362.912,477.798,211.238,571.241,149.789,156.438,149.789,335.005,320.656,356.186,18.990,19.808,18.990 +200,6.472,196.652,565.962,369.546,488.986,207.573,561.417,157.405,163.301,157.405,331.078,322.883,354.738,18.906,19.635,18.906 +201,6.503,191.719,555.189,374.471,500.334,205.562,551.344,164.476,170.083,164.476,324.063,324.739,352.798,18.414,19.474,18.414 +202,6.534,191.020,543.881,377.509,511.675,204.406,541.822,171.254,176.906,171.254,324.262,324.310,351.349,18.627,19.107,18.627 +203,6.565,191.020,543.881,377.509,511.675,204.406,541.822,171.254,176.906,171.254,324.262,324.310,351.349,18.627,19.107,18.627 +204,6.594,191.333,533.348,377.817,522.370,203.915,532.843,177.698,3.540,177.698,323.181,324.051,348.365,18.417,20.373,18.417 +205,6.625,193.717,523.785,379.720,533.224,205.726,524.596,3.865,10.209,3.865,324.288,327.261,348.360,18.404,21.773,18.404 +206,6.658,194.676,514.997,380.583,543.948,208.156,517.273,9.583,17.281,9.583,321.579,331.675,348.922,18.338,22.259,18.338 +207,6.689,198.035,507.158,378.346,555.040,210.196,510.436,15.083,25.046,15.083,322.740,331.482,347.928,18.613,20.168,18.613 +208,6.725,201.110,499.976,375.702,564.474,212.835,504.279,20.152,32.208,20.152,322.287,332.852,347.267,18.603,19.174,18.603 +209,6.757,206.031,492.332,372.634,573.154,216.607,497.139,24.444,39.560,24.444,323.759,333.022,346.994,23.918,19.609,23.918 +210,6.789,210.205,485.505,368.533,580.969,220.261,491.146,29.291,47.102,29.291,323.459,333.264,346.521,25.654,19.377,25.654 +211,6.820,214.192,480.462,364.446,587.683,223.620,486.746,33.690,54.605,33.690,323.668,333.623,346.328,25.516,20.058,25.516 +212,6.853,217.803,476.766,360.135,593.693,226.705,483.625,37.614,62.190,37.614,323.271,333.436,345.747,25.115,20.897,25.115 +213,6.886,222.580,473.695,354.871,599.048,229.812,480.023,41.186,69.567,41.186,325.772,333.565,344.991,25.305,19.936,25.305 +214,6.921,225.679,470.251,349.997,603.117,232.509,476.979,44.569,76.921,44.569,325.260,333.472,344.436,25.115,19.993,25.115 +215,6.955,229.641,468.696,345.053,606.642,235.010,474.613,47.779,84.401,47.779,327.465,333.031,343.445,24.342,19.729,24.342 +216,6.988,232.331,465.857,340.268,609.492,237.460,472.107,50.631,92.045,50.631,326.673,331.467,342.843,24.005,19.916,24.005 +217,7.020,235.355,463.638,336.203,611.784,240.049,469.962,53.415,99.462,53.415,326.627,331.264,342.377,23.733,20.385,23.733 +218,7.051,237.952,461.640,332.582,614.335,242.560,468.431,55.840,107.204,55.840,326.144,331.871,342.559,23.435,22.527,23.435 +219,7.084,240.530,460.188,329.120,614.981,244.483,466.556,58.173,114.842,58.173,326.496,329.511,341.485,22.852,22.720,22.852 +220,7.115,243.319,458.970,326.469,616.430,246.937,465.321,60.330,122.338,60.330,326.713,328.804,341.332,22.923,24.034,22.923 +221,7.146,245.424,457.414,323.735,617.278,248.896,464.023,62.289,129.987,62.289,326.025,327.757,340.956,22.669,24.666,22.669 +222,7.178,247.507,456.304,321.306,618.199,250.705,462.869,64.026,137.454,64.026,326.518,326.989,341.122,22.313,25.210,22.313 +223,7.210,249.497,455.421,319.283,618.689,252.475,462.016,65.695,145.081,65.695,326.094,326.544,340.568,22.137,26.084,22.137 +224,7.244,251.329,454.523,317.493,619.423,254.134,461.210,67.240,152.700,67.240,326.308,326.181,340.811,21.909,27.347,21.909 +225,7.275,253.212,453.744,316.358,620.114,255.924,460.680,68.646,159.854,68.646,326.097,325.947,340.990,22.051,27.203,22.051 +226,7.307,254.824,453.246,314.996,620.982,257.393,460.301,69.990,167.050,69.990,326.368,326.047,341.384,21.965,27.324,21.965 +227,7.339,256.206,453.114,313.972,621.726,258.561,459.995,71.102,174.127,71.102,327.375,326.188,341.919,21.317,27.995,21.317 +228,7.372,257.625,453.089,312.952,622.208,259.751,459.677,72.121,0.855,72.121,328.186,326.232,342.031,21.091,27.728,21.091 +229,7.405,258.973,453.269,311.546,623.406,260.876,459.520,73.072,7.595,73.072,330.011,328.295,343.078,20.922,28.415,20.922 +230,7.436,260.068,453.202,310.442,624.167,261.856,459.400,73.909,14.444,73.909,330.653,329.899,343.556,20.787,27.570,20.787 +231,7.466,260.068,453.202,310.442,624.167,261.856,459.400,73.909,14.444,73.909,330.653,329.899,343.556,20.787,27.570,20.787 +232,7.496,261.258,453.613,309.436,625.224,262.850,459.439,74.710,21.332,74.710,332.323,330.303,344.403,20.618,26.622,20.618 +233,7.527,262.227,453.219,308.148,626.169,263.859,459.510,75.455,27.784,75.455,331.881,331.472,344.880,20.798,26.665,20.798 +234,7.559,263.027,452.984,307.662,627.005,264.711,459.780,76.083,33.851,76.083,331.291,331.173,345.293,20.590,25.684,20.590 +235,7.591,263.848,452.977,306.727,627.726,265.429,459.700,76.759,39.588,76.759,332.222,331.881,346.035,20.556,24.142,20.556 +236,7.624,264.542,452.552,306.067,627.929,266.091,459.452,77.347,44.803,77.347,332.142,332.358,346.285,20.371,21.403,20.371 +237,7.657,265.269,452.369,304.545,628.962,266.843,459.753,77.965,49.764,77.965,331.603,333.013,346.703,20.300,21.903,20.300 +238,7.689,266.000,452.000,303.065,629.589,267.539,459.693,78.690,53.973,78.690,331.436,333.493,347.128,20.004,21.027,20.004 +239,7.722,266.940,452.078,301.571,630.087,268.331,459.441,79.299,57.702,79.299,332.717,333.789,347.703,19.985,20.808,19.985 +240,7.754,267.769,451.329,300.071,630.399,269.189,459.435,80.064,60.682,80.064,330.996,333.924,347.456,19.851,20.540,19.851 +241,7.785,268.916,451.411,298.198,630.884,270.166,459.272,80.969,62.784,80.969,331.848,333.686,347.769,19.706,20.174,19.706 +242,7.817,270.047,450.919,296.662,631.163,271.189,458.960,81.919,64.315,81.919,331.906,333.774,348.148,19.514,19.976,19.514 +243,7.849,271.340,450.574,294.656,631.660,272.371,458.948,82.983,65.056,82.983,331.407,333.905,348.282,19.316,20.201,19.316 +244,7.880,272.780,450.228,292.730,631.625,273.647,458.681,84.144,65.078,84.144,330.982,333.907,347.977,19.054,20.492,19.054 +245,7.911,274.375,451.254,290.702,631.903,274.957,458.402,85.347,64.247,85.347,334.070,333.267,348.412,18.810,20.104,18.810 +246,7.942,276.575,450.166,288.707,631.873,277.015,457.927,86.760,62.939,86.760,333.108,333.200,348.656,19.365,20.250,19.365 +247,7.974,278.470,450.565,286.286,631.564,278.702,457.748,88.152,60.998,88.152,333.568,332.664,347.941,18.893,21.513,18.893 +248,8.006,280.503,450.517,283.966,631.521,280.535,457.263,89.721,58.196,89.721,335.055,332.210,348.546,18.366,21.014,18.366 +249,8.040,282.800,450.381,281.502,631.106,282.634,456.974,91.450,55.146,91.450,335.019,331.540,348.209,18.728,20.838,18.728 +250,8.072,285.151,449.786,278.865,630.607,284.771,456.628,93.180,51.661,93.180,334.373,330.932,348.077,18.693,20.855,18.693 +251,8.105,287.657,450.254,274.391,631.099,287.078,456.953,94.939,47.767,94.939,335.736,329.479,349.183,18.720,24.528,18.720 +252,8.135,290.184,450.433,271.624,630.808,289.404,457.062,96.710,43.815,96.710,335.919,328.954,349.267,18.695,25.090,18.695 +253,8.165,290.184,450.433,271.624,630.808,289.404,457.062,96.710,43.815,96.710,335.919,328.954,349.267,18.695,25.090,18.695 +254,8.194,292.544,450.198,268.565,629.422,291.593,456.669,98.366,39.880,98.366,335.451,328.156,348.532,18.885,25.430,18.885 +255,8.227,295.929,450.240,265.176,628.255,294.742,456.596,100.574,35.676,100.574,335.406,327.471,348.338,19.241,26.078,19.241 +256,8.259,298.183,450.271,261.949,627.086,296.800,456.565,102.391,30.530,102.391,335.166,325.817,348.054,19.297,26.481,19.297 +257,8.293,301.603,450.741,258.100,625.300,300.061,456.629,104.676,26.565,104.676,335.425,325.124,347.598,19.140,26.386,19.140 +258,8.325,304.676,450.848,254.393,623.497,302.909,456.710,106.771,21.413,106.771,335.139,324.198,347.385,19.202,26.414,19.202 +259,8.356,308.090,451.167,250.153,621.507,306.049,457.071,109.069,17.266,109.069,334.854,323.208,347.348,19.323,26.790,19.323 +260,8.390,312.034,451.914,246.313,619.359,309.718,457.704,111.801,12.308,111.801,334.809,321.367,347.282,19.312,26.717,19.312 +261,8.423,315.264,452.842,241.899,617.345,312.663,458.648,114.128,6.789,114.128,334.793,319.813,347.517,19.156,26.763,19.156 +262,8.455,319.114,454.319,237.014,614.473,316.298,459.870,116.896,1.548,116.896,335.043,318.532,347.492,19.181,25.477,19.181 +263,8.487,323.431,455.246,232.481,611.615,320.096,461.082,119.745,177.101,119.745,334.894,318.010,348.337,19.101,24.285,19.101 +264,8.521,327.586,457.491,227.284,608.449,323.896,463.211,122.829,172.057,122.829,335.224,318.611,348.838,19.246,23.678,19.246 +265,8.553,332.590,458.612,222.147,605.088,327.750,465.264,126.043,165.964,126.043,333.936,318.449,350.389,19.572,23.041,19.572 +266,8.585,337.876,460.702,216.962,600.963,331.879,467.962,129.560,160.710,129.560,332.620,318.222,351.454,19.140,20.387,19.140 +267,8.617,345.809,461.071,211.838,597.331,335.974,471.561,133.152,155.624,133.152,324.553,318.713,353.312,20.062,19.740,20.062 +268,8.648,357.059,459.155,207.085,593.268,339.604,475.155,137.490,150.461,137.490,307.639,319.124,354.997,18.245,20.098,18.245 +269,8.679,406.017,430.153,202.502,588.414,343.804,479.405,141.633,145.138,141.633,198.200,319.011,356.898,18.164,20.080,18.164 +270,8.709,355.956,479.235,197.664,581.778,348.260,484.482,145.713,139.485,145.713,339.842,320.403,358.472,18.665,20.540,18.665 +271,8.741,357.076,486.483,193.590,576.082,351.650,489.552,150.503,134.613,150.503,347.887,318.989,360.356,19.755,21.490,19.755 +272,8.772,360.361,493.499,189.900,568.704,355.558,495.686,155.519,129.023,155.519,351.489,319.520,362.045,19.860,21.712,19.860 +273,8.803,364.245,500.823,187.798,561.371,359.361,502.517,160.872,123.854,160.872,352.413,318.675,362.752,20.054,20.761,20.054 +274,8.835,367.871,508.954,185.825,552.726,362.944,510.116,166.732,118.713,166.732,354.215,317.947,364.340,19.640,22.155,19.640 +275,8.865,367.871,508.954,185.825,552.726,362.944,510.116,166.732,118.713,166.732,354.215,317.947,364.340,19.640,22.155,19.640 +276,8.895,367.583,518.148,186.097,543.864,362.907,518.744,172.731,112.396,172.731,347.708,316.458,357.135,20.431,20.904,20.431 +277,8.927,367.478,525.880,186.241,533.279,362.631,525.945,179.236,106.775,179.236,343.249,314.547,352.944,23.905,20.780,23.905 +278,8.958,368.777,535.744,187.266,522.107,364.024,535.235,6.116,100.521,6.116,344.741,312.795,354.302,24.254,22.726,24.254 +279,8.991,370.623,547.551,190.449,510.781,366.434,546.572,13.147,95.440,13.147,350.422,310.547,359.026,24.316,20.574,24.316 +280,9.023,371.362,561.124,194.076,498.514,366.888,559.367,21.448,90.302,21.448,356.577,307.043,366.191,25.629,17.768,25.629 +281,9.055,367.771,572.577,199.519,486.682,363.059,570.022,28.460,83.991,28.460,356.261,305.784,366.982,25.208,17.535,25.208 +282,9.086,360.535,585.927,206.157,476.075,356.242,582.664,37.235,77.661,37.235,357.190,304.579,367.975,25.159,19.446,25.159 +283,9.116,352.500,596.500,215.300,465.751,348.513,592.513,45.000,72.719,45.000,356.382,303.347,367.659,24.042,18.843,24.042 +284,9.147,342.762,609.040,226.394,456.886,338.280,602.918,53.791,67.490,53.791,352.671,302.853,367.846,24.350,20.091,24.350 +285,9.177,352.707,662.603,236.845,449.590,324.529,611.790,60.990,63.638,60.990,252.541,302.327,368.747,21.275,18.991,21.275 +286,9.209,318.117,629.158,249.750,443.750,313.646,616.738,70.201,59.036,70.201,342.408,301.838,368.809,21.415,18.007,21.415 +287,9.242,298.746,626.639,264.137,439.186,297.504,620.623,78.331,54.416,78.331,356.584,302.476,368.871,26.069,20.002,26.069 +288,9.274,287.012,626.428,278.772,437.198,286.862,621.171,88.359,49.122,88.359,357.741,303.485,368.260,26.075,21.050,26.075 +289,9.307,266.892,623.427,294.355,436.676,267.399,618.807,96.266,43.636,96.266,358.676,305.586,367.971,26.609,23.311,26.609 +290,9.338,253.269,619.658,309.816,439.234,254.728,614.630,106.182,38.089,106.182,357.125,308.015,367.598,21.994,24.080,21.994 +291,9.370,240.375,613.167,324.109,444.387,242.962,607.902,116.167,32.709,116.167,353.352,311.236,365.084,20.186,23.846,20.186 +292,9.400,240.375,613.167,324.109,444.387,242.962,607.902,116.167,32.709,116.167,353.352,311.236,365.084,20.186,23.846,20.186 +293,9.428,228.538,604.380,337.680,451.242,232.119,599.318,125.281,27.597,125.281,351.298,313.663,363.700,19.985,23.928,19.985 +294,9.458,218.904,593.947,349.321,460.140,223.148,589.585,134.219,22.504,134.219,349.355,316.843,361.527,19.913,23.532,19.913 +295,9.491,210.695,583.098,359.190,471.036,215.772,579.251,142.849,17.710,142.849,346.590,319.709,359.329,19.426,21.502,19.426 +296,9.523,204.169,571.993,367.455,482.353,210.772,568.350,151.113,13.039,151.113,342.381,321.553,357.464,19.776,21.464,19.776 +297,9.555,199.625,560.519,373.638,494.015,207.510,557.509,159.106,7.975,159.106,338.816,323.723,355.696,20.146,21.907,20.146 +298,9.588,195.393,549.388,377.245,506.126,205.501,547.040,166.921,3.205,166.921,332.341,325.003,353.095,19.550,22.381,19.550 +299,9.620,187.704,538.818,377.505,517.407,203.856,537.316,174.685,179.293,174.685,317.050,323.198,349.493,18.756,19.715,18.756 +300,9.652,165.500,525.500,378.414,529.364,204.707,525.500,0.000,174.581,0.000,269.000,323.961,347.414,21.000,20.698,21.000 +301,9.685,190.122,516.755,378.805,541.392,206.845,518.696,6.621,170.651,6.621,313.192,326.982,346.861,26.288,21.624,26.288 +302,9.716,198.235,505.559,376.578,552.265,209.597,508.399,14.036,166.329,14.036,321.845,327.426,345.268,25.224,22.900,25.224 +303,9.748,203.732,496.877,373.362,562.576,212.809,500.255,20.410,161.917,20.410,325.042,327.299,344.413,25.501,24.561,25.501 +304,9.778,209.037,489.916,369.101,571.749,216.431,493.581,26.369,157.923,26.369,326.502,326.839,343.007,25.194,26.038,25.194 +305,9.809,213.515,483.663,364.182,580.368,220.191,487.771,31.608,153.712,31.608,326.644,326.484,342.321,25.746,26.897,25.746 +306,9.840,218.180,478.260,359.009,587.844,224.305,482.854,36.870,148.878,36.870,326.200,326.710,341.513,25.000,26.328,25.000 +307,9.873,222.800,473.600,353.330,594.549,228.429,478.603,41.634,144.846,41.634,325.704,326.789,340.766,24.748,26.405,24.748 +308,9.905,227.340,469.219,347.376,600.579,232.699,474.822,46.273,140.937,46.273,324.780,326.889,340.289,24.381,26.377,24.381 +309,9.937,232.168,465.386,341.564,605.762,236.949,471.181,50.477,137.121,50.477,325.751,326.826,340.775,24.530,26.485,24.530 +310,9.969,236.605,462.384,335.385,610.362,240.951,468.519,54.689,133.191,54.689,325.628,327.101,340.664,23.529,25.666,23.529 +311,10.000,236.605,462.384,335.385,610.362,240.951,468.519,54.689,133.191,54.689,325.628,327.101,340.664,23.529,25.666,23.529 +312,10.030,241.417,460.007,329.351,614.515,245.152,466.142,58.671,129.289,58.671,326.675,327.947,341.039,23.063,25.118,23.063 +313,10.061,245.761,457.501,323.126,617.739,249.138,463.988,62.501,124.919,62.501,326.459,328.432,341.085,22.686,24.166,22.686 +314,10.093,250.129,455.165,317.018,620.705,253.251,462.189,66.038,121.477,66.038,326.129,329.131,341.503,22.439,22.661,22.439 +315,10.125,254.009,453.187,311.004,622.968,256.833,460.737,69.489,118.113,69.489,325.730,329.355,341.852,21.528,20.975,21.528 +316,10.158,258.084,451.397,305.522,625.237,260.648,459.730,72.897,114.399,72.897,325.332,330.214,342.769,21.101,20.580,21.101 +317,10.193,262.059,449.735,300.283,627.111,264.345,458.880,75.964,111.431,75.964,324.998,330.550,343.850,20.616,20.688,20.616 +318,10.228,265.785,448.552,295.417,628.460,267.704,458.339,78.906,108.841,78.906,324.603,330.806,344.549,19.992,20.812,19.992 +319,10.263,269.283,446.381,290.738,629.767,270.943,457.867,81.777,106.991,81.777,322.717,331.881,345.928,19.400,20.774,19.400 +320,10.294,272.840,443.771,286.252,630.931,274.217,457.810,84.401,105.484,84.401,318.727,332.680,346.940,19.280,20.791,19.280 +321,10.327,276.110,441.807,282.110,631.161,276.943,457.427,86.947,104.837,86.947,316.244,332.121,347.527,18.454,20.652,18.454 +322,10.360,279.673,439.428,278.120,631.299,279.925,457.589,89.204,104.931,89.204,311.012,332.385,347.336,18.526,20.742,18.526 +323,10.393,282.931,439.060,274.754,631.352,282.483,457.179,91.414,106.098,91.414,312.374,332.150,348.622,18.056,20.641,18.056 +324,10.426,286.302,437.675,271.302,630.614,285.104,456.835,93.576,107.879,93.576,310.207,331.133,348.602,18.152,20.416,18.152 +325,10.459,289.371,438.132,267.540,629.642,287.584,456.755,95.484,110.450,95.484,310.604,330.166,348.022,18.172,19.343,18.172 +326,10.492,292.360,439.939,264.263,628.897,290.185,456.586,97.444,113.587,97.444,314.857,329.420,348.434,18.576,19.400,18.576 +327,10.528,294.708,440.849,261.481,628.036,292.234,456.517,98.973,117.613,98.973,316.708,328.729,348.433,18.612,19.944,18.612 +328,10.561,296.926,442.220,258.453,626.788,294.348,456.283,100.389,122.471,100.389,319.770,327.724,348.366,19.148,19.711,19.148 +329,10.595,299.740,444.701,255.746,625.385,297.194,456.478,102.200,128.418,102.200,323.603,326.421,347.703,19.971,19.533,19.971 +330,10.628,301.499,446.353,253.652,624.142,299.028,456.486,103.707,134.519,103.707,326.407,324.640,347.266,19.667,19.977,19.667 +331,10.662,303.787,447.689,251.207,622.634,301.359,456.443,105.503,141.340,105.503,328.932,324.061,347.100,19.540,20.303,19.540 +332,10.693,305.193,448.358,249.727,622.033,302.700,456.667,106.699,148.878,106.699,329.875,322.607,347.226,19.348,22.484,19.348 +333,10.725,307.700,449.400,247.694,620.728,305.176,456.974,108.435,156.371,108.435,331.090,321.342,347.057,19.290,23.763,19.290 +334,10.756,309.894,450.560,245.927,619.437,307.456,457.216,110.113,164.476,110.113,332.796,320.477,346.973,19.283,25.105,19.283 +335,10.787,312.423,451.375,243.988,617.901,309.914,457.620,111.884,173.157,111.884,333.150,319.230,346.609,19.421,25.299,19.421 +336,10.819,315.099,452.373,241.508,616.596,312.542,458.147,113.886,1.157,113.886,334.652,319.258,347.283,19.214,25.146,19.214 +337,10.849,317.764,453.848,239.090,615.851,315.045,459.425,115.994,9.898,115.994,335.371,320.109,347.782,19.024,26.717,19.024 +338,10.880,321.048,455.526,236.200,614.900,318.143,460.890,118.443,18.435,118.443,336.696,320.339,348.896,19.051,26.247,19.051 +339,10.911,323.926,457.049,233.037,613.410,320.908,462.139,120.666,26.980,120.666,338.031,320.705,349.866,19.252,26.233,19.252 +340,10.942,327.326,458.900,229.462,612.054,323.960,464.020,123.326,35.362,123.326,338.961,320.494,351.216,18.817,26.228,18.817 +341,10.973,330.828,461.279,225.700,610.276,327.240,466.193,126.135,44.029,126.135,340.318,321.052,352.487,18.998,25.932,18.998 +342,11.005,334.384,463.965,223.189,606.337,331.278,467.784,129.130,52.779,129.130,341.537,321.587,351.382,19.169,21.485,19.169 +343,11.036,338.001,467.133,219.056,604.088,334.682,470.772,132.374,61.091,132.374,342.982,323.632,352.834,19.260,21.571,19.260 +344,11.067,338.001,467.133,219.056,604.088,334.682,470.772,132.374,61.091,132.374,342.982,323.632,352.834,19.260,21.571,19.260 +345,11.095,341.820,470.229,213.274,600.397,337.981,473.977,135.699,69.444,135.699,344.361,322.565,355.092,19.272,20.131,19.272 +346,11.126,346.000,474.000,208.125,595.955,341.682,477.701,139.399,78.269,139.399,345.353,322.449,356.727,19.307,19.513,19.307 +347,11.157,349.947,478.232,203.312,590.451,345.434,481.579,143.435,86.547,143.435,346.782,322.043,358.019,19.510,19.138,19.510 +348,11.189,353.814,483.339,198.616,584.138,349.269,486.219,147.646,94.865,147.646,348.573,321.561,359.334,19.655,18.889,19.655 +349,11.223,357.781,489.193,194.564,577.103,353.289,491.566,152.148,103.241,152.148,350.442,321.170,360.601,19.768,19.239,19.768 +350,11.254,361.445,495.507,190.826,569.022,356.882,497.439,157.058,111.492,157.058,351.740,319.947,361.649,19.514,19.267,19.514 +351,11.286,364.980,502.777,188.054,560.031,360.453,504.233,162.160,119.745,162.160,352.898,318.521,362.408,20.089,19.970,20.089 +352,11.318,367.951,510.775,185.818,550.594,363.064,511.830,167.811,128.019,167.811,352.870,317.057,362.870,19.666,20.068,19.666 +353,11.349,367.115,520.005,184.001,539.470,362.057,520.585,173.457,136.736,173.457,347.913,314.968,358.096,20.311,21.246,20.311 +354,11.380,366.495,527.181,184.422,528.719,361.722,527.200,179.779,144.744,179.779,345.063,313.284,354.609,22.969,20.978,22.969 +355,11.410,367.613,536.466,186.046,518.005,363.287,535.960,6.661,152.455,6.661,347.543,311.383,356.255,24.403,20.212,24.403 +356,11.442,369.755,547.638,188.596,506.192,365.253,546.554,13.543,160.602,13.543,353.133,309.634,362.395,24.702,20.153,24.702 +357,11.473,369.898,561.233,192.942,494.212,365.604,559.532,21.615,168.690,21.615,359.927,308.098,369.165,24.891,20.004,24.891 +358,11.504,366.050,571.373,198.865,482.363,362.014,569.185,28.460,176.379,28.460,360.434,306.463,369.616,25.684,20.187,25.684 +359,11.536,359.313,584.433,206.626,472.341,355.754,581.749,37.020,4.351,37.020,360.967,304.403,369.882,25.000,19.509,25.000 +360,11.566,359.313,584.433,206.626,472.341,355.754,581.749,37.020,4.351,37.020,360.967,304.403,369.882,25.000,19.509,25.000 +361,11.596,351.500,595.500,215.836,462.797,347.908,591.908,45.000,11.165,45.000,359.210,303.965,369.369,24.042,20.370,24.042 +362,11.627,341.240,605.320,226.549,453.927,338.381,601.509,53.130,19.242,53.130,360.800,303.397,370.329,23.600,20.486,23.600 +363,11.659,329.172,613.970,238.115,447.291,326.864,609.708,61.566,26.935,61.566,360.472,302.812,370.165,22.645,20.365,22.645 +364,11.690,315.368,620.745,250.687,442.496,313.802,616.403,70.178,34.380,70.178,360.777,303.496,370.010,21.429,19.590,21.429 +365,11.723,298.310,625.331,264.161,439.191,297.379,620.868,78.215,41.572,78.215,360.145,303.779,369.263,26.431,19.354,26.431 +366,11.755,287.013,625.420,278.859,436.903,286.874,621.033,88.179,48.366,88.179,359.804,304.279,368.582,25.242,22.007,25.242 +367,11.786,267.690,624.970,293.583,437.605,268.188,619.900,95.606,56.195,95.606,357.619,305.084,367.807,26.657,23.028,26.657 +368,11.818,254.708,620.946,307.242,440.600,255.940,616.230,104.642,62.949,104.642,356.040,306.330,365.789,23.186,22.587,23.186 +369,11.849,242.744,614.779,320.293,445.138,244.776,610.233,114.085,70.253,114.085,353.119,308.012,363.079,20.051,23.240,20.051 +370,11.881,231.358,607.511,332.147,451.786,234.083,603.258,122.649,77.221,122.649,350.785,309.651,360.886,19.653,23.546,19.653 +371,11.913,221.591,598.380,342.891,459.510,224.974,594.479,130.932,84.523,130.932,348.117,311.216,358.444,19.423,23.740,19.423 +372,11.944,212.952,588.892,352.060,468.939,217.215,585.182,138.967,91.809,138.967,344.759,312.160,356.061,19.594,23.557,19.594 +373,11.975,206.864,578.601,358.228,478.266,211.076,575.836,146.720,98.746,146.720,343.041,314.454,353.119,19.641,21.212,19.641 +374,12.007,201.725,568.088,365.889,489.045,207.351,565.360,154.134,106.101,154.134,339.394,316.332,351.899,19.605,24.614,19.605 +375,12.040,198.149,557.875,370.708,499.590,204.652,555.675,161.309,113.448,161.309,336.815,317.748,350.543,19.850,24.715,19.850 +376,12.072,196.217,547.310,373.918,510.343,203.266,545.782,167.770,120.735,167.770,334.147,320.375,348.572,20.360,25.205,20.360 +377,12.102,195.325,537.424,375.997,520.894,202.881,536.706,174.573,128.428,174.573,332.493,321.882,347.672,19.154,25.476,19.154 +378,12.132,195.325,537.424,375.997,520.894,202.881,536.706,174.573,128.428,174.573,332.493,321.882,347.672,19.154,25.476,19.154 +379,12.160,195.936,528.482,377.180,530.733,204.064,528.576,0.666,135.900,0.666,330.001,321.905,346.258,19.173,25.453,19.173 +380,12.193,197.036,519.592,377.098,540.166,205.440,520.545,6.470,143.569,6.470,328.636,324.013,345.552,19.053,25.555,19.053 +381,12.228,199.201,509.462,376.315,549.071,208.020,511.265,11.560,151.144,11.560,326.913,325.472,344.915,25.139,24.988,25.139 +382,12.261,201.276,502.252,374.507,556.818,210.337,504.951,16.587,158.979,16.587,325.382,326.455,344.290,25.652,25.101,25.652 +383,12.296,204.422,494.468,372.836,565.007,213.912,498.350,22.249,166.597,22.249,324.152,327.742,344.659,26.042,24.708,26.042 +384,12.330,207.734,489.041,370.483,572.337,217.189,493.801,26.725,174.218,26.725,323.304,328.862,344.474,25.821,24.319,25.821 +385,12.362,211.244,484.091,367.504,577.327,220.111,489.388,30.849,1.414,30.849,322.609,329.369,343.267,25.647,25.215,25.647 +386,12.393,214.557,479.694,364.397,583.587,223.074,485.581,34.651,9.537,34.651,323.256,331.767,343.962,25.429,24.284,25.429 +387,12.424,218.552,476.434,361.105,589.303,226.254,482.485,38.157,17.710,38.157,324.469,333.574,344.059,25.162,22.959,25.162 +388,12.457,221.517,472.354,357.840,594.387,229.674,479.590,41.576,26.105,41.576,322.312,333.621,344.119,25.760,20.196,25.760 +389,12.488,220.991,469.604,354.485,599.765,231.128,478.867,42.421,33.973,42.421,317.774,333.942,345.236,24.730,19.526,24.730 +390,12.521,219.111,460.870,350.164,604.495,234.486,476.346,45.189,41.795,45.189,301.249,334.769,344.879,22.865,19.361,22.865 +391,12.552,180.747,410.950,346.626,608.314,235.437,475.894,49.899,49.988,49.899,176.010,334.950,345.820,17.794,19.520,17.794 +392,12.584,221.572,453.115,342.766,611.385,237.783,473.994,52.172,58.195,52.172,292.942,334.759,345.810,18.027,19.500,18.027 +393,12.617,230.375,458.940,339.365,613.842,239.982,472.348,54.377,66.571,54.377,312.813,334.847,345.802,18.626,20.186,18.626 +394,12.648,236.846,458.769,335.192,616.084,243.895,469.343,56.310,74.710,56.310,320.062,334.600,345.477,23.297,19.493,23.297 +395,12.679,240.101,458.943,331.834,617.585,245.760,468.021,58.062,82.737,58.062,323.521,334.033,344.914,23.684,20.063,23.684 +396,12.710,242.084,458.614,328.169,618.980,246.985,467.003,59.704,90.843,59.704,324.920,332.155,344.353,23.119,19.807,23.119 +397,12.741,243.925,457.499,324.929,619.399,248.349,465.497,61.049,99.319,61.049,325.196,332.577,343.477,23.216,20.040,23.216 +398,12.772,245.341,457.197,321.289,619.037,249.016,464.199,62.308,106.699,62.308,325.561,331.312,341.378,22.664,22.222,22.664 +399,12.804,246.900,456.800,320.811,619.392,250.359,463.719,63.435,115.769,63.435,326.019,329.291,341.490,22.361,22.172,22.361 +400,12.834,246.900,456.800,320.811,619.392,250.359,463.719,63.435,115.769,63.435,326.019,329.291,341.490,22.361,22.172,22.361 +401,12.863,248.015,455.815,320.008,619.324,251.360,462.793,64.390,124.256,64.390,326.175,328.388,341.651,22.753,23.577,22.753 +402,12.895,248.827,455.762,319.206,619.230,251.886,462.361,65.129,132.510,65.129,326.720,327.235,341.267,22.225,24.449,22.225 +403,12.925,249.684,455.352,318.677,618.951,252.635,461.948,65.898,140.964,65.898,326.116,326.594,340.569,22.244,25.717,22.244 +404,12.959,250.270,454.841,318.691,618.823,253.235,461.580,66.251,149.331,66.251,325.852,326.179,340.577,22.444,27.064,22.444 +405,12.992,250.820,454.794,318.787,618.985,253.693,461.509,66.836,157.521,66.836,326.165,325.764,340.773,22.051,27.593,22.051 +406,13.025,251.146,454.727,319.251,619.032,254.012,461.508,67.091,165.604,67.091,326.268,325.993,340.990,22.034,27.929,22.034 +407,13.058,251.647,454.777,320.083,619.216,254.469,461.509,67.256,173.405,67.256,327.021,326.565,341.621,22.331,27.597,22.331 +408,13.089,251.626,455.285,320.959,619.302,254.350,461.786,67.270,0.707,67.270,327.941,326.197,342.039,22.024,27.492,22.024 +409,13.121,251.788,456.062,321.162,619.687,254.350,462.151,67.180,8.383,67.180,329.022,328.703,342.235,22.106,27.555,22.106 +410,13.153,252.039,456.621,321.856,620.002,254.472,462.344,66.969,16.054,66.969,330.469,330.501,342.907,22.349,27.115,22.349 +411,13.183,251.424,456.899,322.490,620.822,254.087,463.046,66.582,23.499,66.582,330.533,331.700,343.931,21.982,25.917,21.982 +412,13.215,250.953,457.182,323.359,621.601,253.861,463.780,66.218,30.220,66.218,330.470,332.194,344.891,22.195,25.095,22.195 +413,13.247,250.472,456.964,324.797,620.930,253.524,463.732,65.731,36.670,65.731,330.351,333.206,345.201,22.538,22.668,22.538 +414,13.277,249.435,456.990,325.333,621.230,252.825,464.352,65.276,42.414,65.276,329.441,333.506,345.649,22.514,21.620,22.514 +415,13.308,248.474,456.695,326.074,621.473,252.428,465.052,64.680,47.429,64.680,327.293,333.617,345.782,22.540,20.723,22.540 +416,13.341,247.665,455.866,326.451,621.435,252.087,465.043,64.269,51.611,64.269,325.965,334.852,346.338,23.129,20.099,23.129 +417,13.375,244.821,455.385,326.754,621.373,250.462,466.087,62.207,54.978,62.207,321.693,335.393,345.890,21.637,19.674,21.637 +418,13.407,240.269,447.938,326.833,621.475,250.185,466.237,61.548,57.783,61.548,304.382,335.796,346.009,20.837,19.540,20.837 +419,13.440,225.374,422.688,327.765,621.134,249.822,466.424,60.796,60.390,60.796,245.939,335.136,346.149,20.994,19.640,20.994 +420,13.471,206.822,393.506,328.775,620.859,247.409,467.917,61.390,62.791,61.390,176.936,335.032,346.457,17.877,19.365,17.877 +421,13.502,227.789,435.855,329.576,620.430,246.311,468.569,60.482,65.033,60.482,271.158,335.232,346.347,17.961,19.647,17.961 +422,13.532,227.789,435.855,329.576,620.430,246.311,468.569,60.482,65.033,60.482,271.158,335.232,346.347,17.961,19.647,17.961 +423,13.561,233.730,449.793,331.155,619.050,245.021,468.875,59.387,67.775,59.387,301.870,335.175,346.214,18.099,19.480,18.099 +424,13.593,236.479,455.688,333.503,617.675,244.933,469.154,57.882,71.323,57.882,313.961,334.905,345.760,21.446,20.321,21.446 +425,13.625,237.207,459.992,334.998,616.408,243.726,469.691,56.094,74.809,56.094,321.994,334.594,345.366,23.484,19.518,23.484 +426,13.688,235.565,462.089,336.945,614.010,241.547,470.315,53.973,79.249,53.973,324.303,333.808,344.645,24.189,19.288,24.189 +427,13.737,227.411,469.707,346.169,603.787,232.824,475.268,45.778,96.147,45.778,326.788,330.856,342.308,25.095,20.879,25.095 +428,13.770,224.394,473.070,349.915,599.701,229.776,478.003,42.510,102.362,42.510,326.989,329.641,341.590,25.493,22.400,25.493 +429,13.800,220.487,476.573,354.700,594.900,226.443,481.392,38.977,108.435,38.977,326.887,328.244,342.209,25.186,25.298,25.186 +430,13.832,220.487,476.573,354.700,594.900,226.443,481.392,38.977,108.435,38.977,326.887,328.244,342.209,25.186,25.298,25.186 +431,13.868,212.904,484.667,362.110,582.664,219.412,488.578,31.000,120.902,31.000,326.364,326.195,341.549,25.355,26.224,25.355 +432,13.899,212.904,484.667,362.110,582.664,219.412,488.578,31.000,120.902,31.000,326.364,326.195,341.549,25.355,26.224,25.355 +433,13.928,209.600,489.800,366.020,575.399,216.088,493.044,26.565,127.528,26.565,327.360,324.979,341.867,25.938,26.309,25.938 +434,13.960,206.498,495.528,369.859,567.318,213.131,498.207,21.991,134.119,21.991,328.101,323.316,342.408,25.677,26.693,25.677 +435,13.992,203.027,502.269,373.127,558.880,210.092,504.419,16.928,140.770,16.928,328.888,323.587,343.658,25.705,26.616,25.705 +436,14.026,199.647,509.780,375.775,549.989,207.718,511.431,11.560,147.349,11.560,328.271,323.735,344.748,25.183,26.207,25.183 +437,14.060,195.357,520.393,377.461,538.992,205.341,521.420,5.871,154.259,5.871,325.955,323.859,346.028,19.271,25.382,19.271 +438,14.092,189.500,529.000,378.575,528.804,204.787,529.000,0.000,160.436,0.000,317.000,324.499,347.575,20.000,22.428,20.000 +439,14.123,166.126,542.045,378.129,517.437,204.233,537.463,173.143,166.645,173.143,273.322,325.058,350.086,18.644,19.977,18.644 +440,14.160,189.899,550.765,376.975,505.779,205.322,547.179,166.914,173.463,166.914,321.468,326.675,353.137,19.378,21.474,19.378 +441,14.192,198.297,560.074,374.004,496.037,207.124,556.853,159.955,179.534,159.955,336.440,324.062,355.233,19.487,20.658,19.487 +442,14.226,203.115,570.329,369.752,485.965,210.190,566.661,152.592,7.204,152.592,341.654,323.744,357.594,19.563,21.509,19.563 +443,14.260,208.517,580.379,363.042,475.410,214.477,576.212,145.039,13.496,145.039,344.489,322.249,359.033,19.509,21.315,19.509 +444,14.292,215.256,590.123,354.574,465.942,219.816,585.887,137.107,19.885,137.107,348.285,320.888,360.732,19.294,21.389,19.294 +445,14.326,223.695,599.726,344.440,456.136,227.583,594.930,129.036,26.966,129.036,350.464,318.483,362.811,19.503,23.986,19.503 +446,14.359,233.550,608.530,333.022,449.240,236.540,603.538,120.923,33.959,120.923,352.257,314.272,363.894,19.540,23.664,19.540 +447,14.393,245.114,615.376,320.002,442.925,247.172,610.412,112.510,41.082,112.510,354.470,311.463,365.218,19.758,24.159,19.758 +448,14.425,257.483,621.473,305.924,439.866,258.556,616.978,103.416,48.053,103.416,357.297,307.428,366.539,22.238,23.565,22.238 +449,14.457,270.155,624.674,291.731,437.346,270.530,620.025,94.611,56.310,94.611,358.256,305.362,367.584,25.562,22.465,25.562 +450,14.488,288.190,628.361,276.600,437.700,287.887,621.411,87.510,63.435,87.510,354.144,303.211,368.057,25.454,20.125,25.454 +451,14.520,305.193,640.015,261.664,440.577,301.468,620.383,79.258,70.017,79.258,328.185,302.784,368.149,25.494,18.454,25.494 +452,14.551,319.377,631.886,248.195,444.459,314.146,616.681,71.017,76.165,71.017,336.457,304.151,368.617,21.015,18.811,21.015 +453,14.582,329.098,616.710,235.615,449.549,325.924,610.644,62.379,82.747,62.379,355.516,303.389,369.209,23.253,19.010,23.253 +454,14.614,340.632,607.957,224.000,457.000,337.145,603.138,54.105,90.000,54.105,357.549,304.000,369.445,24.174,18.000,24.174 +455,14.644,350.595,597.532,213.746,465.407,346.735,593.531,46.028,97.063,46.028,357.967,305.496,369.086,24.561,19.444,24.561 +456,14.674,359.023,586.776,205.694,475.310,355.000,583.627,38.053,104.550,38.053,358.452,307.861,368.670,25.482,18.213,25.482 +457,14.706,365.543,575.298,198.137,485.858,360.966,572.621,30.327,111.881,30.327,358.109,310.483,368.713,25.786,18.395,25.786 +458,14.737,369.652,563.600,192.908,496.505,365.106,561.674,22.961,119.075,22.961,358.079,311.785,367.954,25.793,19.862,25.793 +459,14.767,369.652,563.600,192.908,496.505,365.106,561.674,22.961,119.075,22.961,358.079,311.785,367.954,25.793,19.862,25.793 +460,14.794,370.943,551.698,189.176,507.092,366.679,550.480,15.945,126.193,15.945,356.313,313.266,365.184,25.549,20.510,25.549 +461,14.826,368.727,540.880,185.878,516.935,363.883,540.092,9.238,133.500,9.238,349.010,314.144,358.827,25.169,21.613,25.169 +462,14.859,367.014,531.183,184.222,526.485,362.000,530.934,2.851,140.545,2.851,345.518,314.673,355.558,24.567,22.105,24.567 +463,14.892,367.439,523.894,183.921,535.088,361.635,524.212,176.858,147.600,176.858,344.458,314.837,356.084,20.581,22.212,20.581 +464,14.926,367.862,515.615,184.858,543.681,362.565,516.437,171.174,154.041,171.174,348.844,313.978,359.566,20.260,21.401,20.260 +465,14.959,374.179,505.752,187.780,550.907,363.872,508.359,165.806,159.664,165.806,341.036,315.431,362.298,19.729,20.471,19.729 +466,14.992,398.831,487.909,190.147,559.459,360.492,500.960,161.200,167.101,161.200,279.221,312.930,360.219,18.852,19.756,18.852 +467,15.025,373.619,488.636,193.362,566.227,357.866,495.652,155.993,173.817,155.993,323.485,312.745,357.975,20.304,20.265,20.304 +468,15.059,365.303,484.282,197.052,571.791,354.869,489.893,151.730,0.924,151.730,331.872,312.121,355.566,19.916,20.771,19.916 +469,15.091,359.011,480.309,201.208,577.839,351.860,484.825,147.724,7.125,147.724,337.172,312.443,354.087,19.847,21.210,19.847 +470,15.123,352.516,477.780,204.916,584.347,348.154,480.943,144.053,13.646,144.053,342.546,312.877,353.322,19.288,24.384,19.288 +471,15.155,348.539,474.158,208.490,590.026,344.542,477.436,140.648,20.807,140.648,342.851,314.386,353.191,19.548,24.940,19.548 +472,15.185,345.039,470.727,211.828,594.860,340.973,474.448,137.534,27.150,137.534,342.105,316.250,353.128,19.054,25.280,19.054 +473,15.217,341.486,468.481,215.377,599.686,337.430,472.582,134.680,33.503,134.680,340.860,317.005,352.396,18.764,25.861,18.764 +474,15.248,338.251,465.827,218.539,603.738,334.190,470.348,131.939,39.472,131.939,340.879,318.535,353.034,19.167,25.882,19.167 +475,15.279,335.311,463.863,221.602,606.915,331.417,468.573,129.582,45.796,129.582,340.966,320.377,353.188,19.146,25.080,19.146 +476,15.309,332.194,462.739,225.329,609.037,329.084,466.811,127.373,51.340,127.373,341.764,321.874,352.012,19.336,21.708,19.336 +477,15.341,329.439,461.676,227.995,611.371,326.586,465.680,125.461,57.688,125.461,341.895,323.510,351.728,19.156,21.670,19.156 +478,15.375,327.155,460.433,229.774,613.851,324.227,464.816,123.751,63.258,123.751,342.244,325.121,352.786,18.886,21.204,18.886 +479,15.407,325.036,459.944,231.617,616.371,322.093,464.602,122.276,68.749,122.276,342.245,327.651,353.266,18.957,21.281,18.957 +480,15.438,323.040,459.232,232.160,617.530,320.220,463.953,120.849,73.946,120.849,343.012,328.012,354.009,19.187,20.893,19.187 +481,15.468,321.867,457.991,232.822,618.348,318.715,463.489,119.825,79.548,119.825,341.460,328.162,354.135,18.877,20.279,18.877 +482,15.497,321.867,457.991,232.822,618.348,318.715,463.489,119.825,79.548,119.825,341.460,328.162,354.135,18.877,20.279,18.877 +483,15.527,320.326,458.020,233.340,619.420,317.409,463.288,118.971,84.536,118.971,342.583,328.656,354.628,18.920,19.468,18.920 +484,15.559,319.831,457.300,233.560,619.499,316.782,462.982,118.213,89.262,118.213,341.633,329.089,354.530,19.341,19.209,19.341 +485,15.592,319.027,457.428,233.542,619.561,316.213,462.749,117.874,93.338,117.874,342.497,328.134,354.537,19.432,19.251,19.432 +486,15.624,318.881,457.614,233.295,619.852,315.977,463.100,117.897,97.017,117.897,342.026,329.056,354.442,18.871,19.453,18.871 +487,15.657,319.553,457.199,232.322,619.144,316.468,463.001,117.997,99.967,117.997,341.598,328.976,354.741,19.157,20.069,19.157 +488,15.687,320.430,456.600,231.549,618.469,316.903,463.077,118.576,102.236,118.576,339.830,328.414,354.579,19.298,19.899,19.298 +489,15.719,321.257,457.958,229.990,617.745,318.042,463.680,119.332,103.912,119.332,341.769,328.396,354.895,19.221,20.428,19.221 +490,15.750,322.523,459.038,228.257,616.463,319.463,464.224,120.541,104.755,120.541,342.888,328.143,354.930,19.198,20.200,19.198 +491,15.780,324.399,460.062,226.056,615.015,321.229,465.133,122.005,104.845,122.005,343.121,327.999,355.082,18.974,20.287,18.974 +492,15.811,326.983,460.970,223.802,613.577,323.414,466.291,123.854,104.265,123.854,342.799,327.678,355.613,18.930,19.745,18.930 +493,15.841,329.348,462.937,220.957,611.257,326.018,467.520,125.995,103.134,125.995,344.746,327.016,356.077,18.960,19.899,18.960 +494,15.873,332.342,464.784,217.558,608.712,328.785,469.258,128.489,101.310,128.489,345.324,326.729,356.756,19.152,20.592,19.152 +495,15.910,336.249,467.235,214.694,605.951,332.315,471.676,131.532,99.051,131.532,345.142,326.486,357.008,18.907,19.760,18.907 +496,15.956,339.624,469.660,211.470,602.328,335.716,473.645,134.440,96.429,134.440,346.576,325.448,357.739,18.960,19.790,18.960 +497,15.990,343.505,472.796,208.245,598.078,339.535,476.390,137.847,93.576,137.847,347.288,324.741,357.998,19.135,19.213,19.135 +498,16.023,347.782,476.695,204.341,593.499,343.344,480.205,141.667,90.320,141.667,347.295,323.056,358.611,19.027,19.056,19.027 +499,16.062,352.065,480.692,201.309,587.485,347.626,483.750,145.433,87.245,145.433,347.905,321.783,358.686,19.708,19.256,19.708 +500,16.093,356.332,485.779,198.247,581.423,351.791,488.424,149.776,84.106,149.776,348.461,320.702,358.972,19.303,19.336,19.303 +501,16.123,360.613,491.560,195.270,574.212,355.835,493.849,154.404,80.768,154.404,348.458,319.102,359.054,19.522,19.403,19.522 +502,16.155,364.688,498.030,193.201,566.006,360.070,499.776,159.286,77.344,159.286,349.140,316.829,359.014,19.768,20.322,19.768 +503,16.186,368.655,505.416,190.693,557.196,363.920,506.713,164.682,74.476,164.682,350.997,314.963,360.817,19.398,22.643,19.398 +504,16.219,369.462,514.179,189.214,547.822,364.558,515.025,170.218,69.874,170.218,346.780,313.023,356.733,19.947,22.126,19.947 +505,16.250,368.856,522.055,189.178,537.145,364.235,522.351,176.328,66.909,176.328,342.029,311.070,351.290,22.440,20.993,22.440 +506,16.281,369.151,530.751,189.136,526.430,364.402,530.530,2.663,62.784,2.663,341.027,308.685,350.535,24.021,21.851,24.021 +507,16.313,370.578,540.986,190.806,515.316,366.041,540.240,9.340,58.975,9.340,344.717,307.674,353.913,24.805,22.293,24.805 +508,16.344,372.923,552.817,193.501,504.469,368.219,551.452,16.180,55.528,16.180,351.980,306.960,361.778,25.308,20.499,25.308 +509,16.375,371.634,565.948,197.625,492.737,365.954,563.424,23.962,52.142,23.962,352.630,304.513,365.060,25.181,19.990,25.181 +510,16.407,368.419,578.784,203.495,481.670,361.501,574.592,31.218,48.349,31.218,350.398,303.447,366.575,25.060,20.524,25.060 +511,16.437,373.381,602.421,210.279,471.738,354.129,586.195,40.126,44.341,40.126,317.157,302.752,367.512,23.638,18.709,23.638 +512,16.467,373.381,602.421,210.279,471.738,354.129,586.195,40.126,44.341,40.126,317.157,302.752,367.512,23.638,18.709,23.638 +513,16.495,353.268,608.952,219.640,461.357,342.996,598.042,46.723,40.030,46.723,338.184,302.821,368.154,21.065,18.346,21.065 +514,16.528,338.503,610.303,230.249,452.908,334.889,604.939,56.035,36.027,56.035,356.168,302.761,369.105,23.257,18.674,23.257 +515,16.560,324.594,616.598,242.192,445.598,322.482,612.163,64.537,32.082,64.537,359.983,302.848,369.808,22.228,19.981,22.228 +516,16.593,310.607,622.430,255.095,440.384,309.230,617.786,73.483,28.072,73.483,361.256,303.941,370.944,22.586,20.000,22.586 +517,16.625,292.664,625.053,269.480,436.749,291.974,620.711,80.974,23.532,80.974,361.632,305.069,370.426,26.979,21.102,26.979 +518,16.659,278.000,625.500,283.509,435.474,278.000,620.237,90.000,19.440,90.000,359.000,306.916,369.526,24.000,21.190,24.000 +519,16.690,262.261,622.859,299.037,436.866,263.079,617.704,99.025,15.290,99.025,358.042,308.021,368.480,26.462,20.291,26.462 +520,16.722,250.457,618.337,313.714,440.410,252.376,612.888,109.392,11.107,109.392,354.563,310.268,366.118,20.435,20.143,20.435 +521,16.754,237.405,610.948,327.423,446.115,240.090,605.992,118.451,7.125,118.451,353.072,313.188,364.347,20.106,19.722,20.106 +522,16.784,226.205,602.275,340.083,452.794,230.021,597.263,127.284,2.770,127.284,350.633,314.745,363.233,19.864,20.073,19.864 +523,16.814,216.716,592.237,350.983,461.762,221.577,587.512,135.812,178.649,135.812,347.325,318.218,360.882,19.597,19.405,19.597 +524,16.845,208.904,581.866,359.971,471.188,214.983,577.474,144.152,174.710,144.152,344.538,319.872,359.538,19.543,20.062,19.543 +525,16.875,202.046,571.645,367.038,481.734,210.270,567.283,152.057,170.822,152.057,338.540,321.744,357.157,19.742,21.162,19.742 +526,16.907,197.027,561.359,371.956,492.794,206.958,557.700,159.775,167.945,159.775,333.359,323.233,354.526,18.569,20.882,18.569 +527,16.938,125.910,566.456,375.989,504.458,205.190,548.072,166.945,165.793,166.945,189.706,323.319,352.473,18.608,19.904,18.608 +528,16.968,125.910,566.456,375.989,504.458,205.190,548.072,166.945,165.793,166.945,189.706,323.319,352.473,18.608,19.904,18.608 +529,16.997,176.321,541.714,377.774,515.370,204.353,538.396,173.251,162.541,173.251,293.396,324.575,349.851,19.098,20.156,19.098 +530,17.029,188.000,527.500,378.570,527.188,204.785,527.500,0.000,159.558,0.000,314.000,324.910,347.570,23.000,21.926,23.000 +531,17.060,194.584,519.920,377.993,538.094,205.830,521.115,6.062,155.762,6.062,323.368,325.009,345.986,18.885,24.458,18.885 +532,17.091,199.309,508.907,376.351,549.117,208.157,510.770,11.889,150.368,11.889,326.887,325.472,344.971,25.030,24.984,25.030 +533,17.122,202.650,502.124,373.629,559.405,210.481,504.561,17.281,145.191,17.281,327.749,325.149,344.152,24.805,26.454,24.805 +534,17.153,207.269,493.877,369.882,568.271,214.088,496.822,23.356,139.715,23.356,327.853,325.498,342.708,25.226,26.634,25.226 +535,17.184,210.830,487.885,365.661,576.635,217.393,491.406,28.217,133.866,28.217,326.996,325.429,341.892,25.188,26.501,25.188 +536,17.215,215.182,481.973,360.878,584.402,221.351,486.069,33.582,128.660,33.582,326.452,326.247,341.262,25.526,26.550,25.526 +537,17.248,219.264,477.184,356.106,591.245,225.090,481.737,38.012,122.905,38.012,326.538,327.136,341.326,25.067,26.125,25.067 +538,17.279,223.709,473.280,350.991,597.740,229.162,478.246,42.325,116.996,42.325,326.314,328.693,341.064,24.887,25.336,24.887 +539,17.309,227.825,469.795,345.871,603.541,233.058,475.259,46.236,111.523,46.236,326.221,330.181,341.353,24.443,24.318,24.443 +540,17.341,232.158,466.434,340.980,608.272,236.992,472.201,50.029,105.524,50.029,327.116,331.022,342.166,24.727,22.910,24.727 +541,17.373,235.832,463.808,335.858,612.065,240.271,469.833,53.616,100.204,53.616,327.446,331.296,342.413,23.686,20.806,23.686 +542,17.405,239.261,460.907,331.444,615.717,243.944,468.115,56.989,94.222,56.989,325.695,332.090,342.887,23.389,19.691,23.389 +543,17.435,242.729,458.000,327.558,619.022,247.619,466.521,60.154,88.678,60.154,324.466,332.350,344.115,23.533,19.064,23.533 +544,17.466,242.729,458.000,327.558,619.022,247.619,466.521,60.154,88.678,60.154,324.466,332.350,344.115,23.533,19.064,23.533 +545,17.495,245.392,454.261,324.096,621.989,251.063,465.453,63.130,83.333,63.130,320.193,334.167,345.287,22.896,19.671,22.896 +546,17.526,245.274,449.759,320.503,624.465,252.225,465.297,65.898,77.932,65.898,312.304,335.386,346.348,18.425,19.888,18.425 +547,17.560,237.589,419.590,316.428,626.185,255.061,464.063,68.552,72.072,68.552,251.103,335.188,346.668,17.884,19.617,17.884 +548,17.593,252.478,443.912,312.859,627.061,259.105,462.244,70.125,66.666,70.125,307.562,335.885,346.549,20.358,19.571,20.358 +549,17.626,259.343,451.414,310.000,628.272,262.240,461.422,73.856,61.489,73.856,326.263,334.392,347.101,21.057,19.397,21.057 +550,17.658,263.029,452.977,306.985,629.010,264.916,460.647,76.180,56.381,76.180,331.279,333.934,347.077,20.808,19.842,20.808 +551,17.690,265.937,452.628,303.915,628.854,267.336,459.452,78.408,50.995,78.408,332.663,333.290,346.594,20.120,21.296,20.120 +552,17.722,268.618,452.059,300.211,629.313,269.719,458.720,80.618,45.984,80.618,333.059,331.766,346.563,19.698,21.103,19.698 +553,17.753,271.337,451.772,295.727,630.237,272.187,458.515,82.819,40.855,82.819,333.045,330.899,346.636,19.242,24.878,19.242 +554,17.783,273.964,450.771,292.111,630.042,274.565,457.520,84.904,35.618,84.904,333.245,329.909,346.797,18.544,25.637,18.544 +555,17.813,277.099,450.147,288.292,629.650,277.437,456.810,87.094,30.411,87.094,332.993,329.105,346.336,19.092,26.247,19.092 +556,17.845,279.673,450.038,284.137,629.271,279.781,456.615,89.061,25.201,89.061,332.250,328.769,345.407,18.522,27.198,18.522 +557,17.876,282.652,449.390,280.568,628.704,282.507,455.789,91.297,19.747,91.297,333.028,327.536,345.829,18.569,27.053,18.569 +558,17.909,285.597,448.859,277.139,627.947,285.210,455.423,93.366,14.149,93.366,332.249,325.741,345.400,18.556,27.354,18.556 +559,17.940,288.384,448.117,273.325,627.113,287.722,455.236,95.315,8.940,95.315,330.642,324.449,344.942,18.571,27.116,18.571 +560,17.973,291.431,447.815,269.523,626.133,290.512,454.905,97.386,3.514,97.386,330.714,322.297,345.012,19.026,26.485,19.026 +561,18.004,294.691,447.954,264.993,624.772,293.548,454.726,99.580,178.363,99.580,331.119,322.268,344.853,19.105,26.218,19.105 +562,18.035,294.691,447.954,264.993,624.772,293.548,454.726,99.580,178.363,99.580,331.119,322.268,344.853,19.105,26.218,19.105 +563,18.063,297.966,448.414,260.538,623.882,296.562,455.081,101.889,174.382,101.889,331.574,321.481,345.201,19.056,25.614,19.056 +564,18.094,301.318,448.961,255.819,622.648,299.658,455.507,104.231,169.046,104.231,332.073,321.422,345.579,19.168,25.526,19.168 +565,18.125,304.918,449.523,251.217,621.509,302.879,456.336,106.663,164.055,106.663,331.880,321.286,346.103,19.212,25.274,19.212 +566,18.157,309.092,450.238,246.582,619.719,306.658,457.136,109.440,159.444,109.440,331.988,321.044,346.617,19.304,23.759,19.304 +567,18.190,312.690,450.276,242.036,618.183,309.592,458.021,111.801,155.614,111.801,330.909,321.190,347.593,19.312,22.490,19.312 +568,18.222,317.210,451.212,237.173,616.320,313.389,459.492,114.775,151.645,114.775,330.427,321.446,348.665,19.416,21.204,19.416 +569,18.254,321.466,451.550,232.620,614.192,316.674,460.818,117.337,148.109,117.337,328.823,321.604,349.690,19.505,20.038,19.505 +570,18.286,326.795,451.422,228.108,611.776,320.366,462.445,120.256,145.216,120.256,325.429,321.726,350.950,19.507,19.652,19.507 +571,18.317,331.895,451.897,223.831,609.276,323.666,464.457,123.232,143.065,123.232,321.663,321.803,351.694,19.094,19.467,19.094 +572,18.348,339.233,450.279,219.950,606.918,327.116,466.553,126.670,141.554,126.670,312.592,321.744,353.170,18.535,20.232,18.535 +573,18.379,346.589,449.462,215.901,603.499,330.712,468.703,129.531,141.180,129.531,304.192,320.934,354.084,18.091,19.603,18.091 +574,18.409,356.943,446.871,212.267,600.101,334.353,471.329,132.728,141.633,132.728,288.273,320.773,354.861,18.213,19.895,18.213 +575,18.440,375.862,437.391,208.494,596.148,337.857,474.171,135.939,142.696,135.939,249.795,320.218,355.572,17.988,19.848,17.988 +576,18.470,389.201,436.399,204.723,591.546,341.499,477.350,139.354,144.090,139.354,230.589,319.313,356.327,18.060,19.327,18.060 +577,18.501,389.201,436.399,204.723,591.546,341.499,477.350,139.354,144.090,139.354,230.589,319.313,356.327,18.060,19.327,18.060 +578,18.531,408.554,433.057,200.862,586.295,345.159,480.936,142.938,146.014,142.938,198.403,318.421,357.289,18.170,18.987,18.170 +579,18.563,415.579,441.385,197.599,580.775,348.895,485.033,146.793,147.812,146.793,198.648,317.558,358.046,18.377,19.590,18.377 +580,18.594,420.528,451.854,194.238,574.158,352.734,489.583,150.903,150.154,150.903,204.074,316.546,359.243,18.418,19.310,18.418 +581,18.625,371.487,488.238,191.557,567.025,356.547,495.169,155.113,152.433,155.113,326.878,315.896,359.816,18.723,19.176,18.723 +582,18.657,368.475,498.197,189.259,559.052,359.964,501.308,159.924,154.841,159.924,342.182,316.260,360.307,18.975,19.378,18.975 +583,18.689,370.536,506.370,186.836,550.754,363.294,508.292,165.136,157.033,165.136,347.903,314.507,362.891,19.267,20.886,19.267 +584,18.720,368.585,515.525,185.112,541.736,362.958,516.436,170.801,158.591,170.801,347.805,312.734,359.206,20.071,21.753,20.071 +585,18.751,367.969,523.379,184.679,531.804,362.049,523.669,177.190,159.386,177.190,343.256,311.568,355.111,22.580,22.060,22.580 +586,18.782,367.158,532.499,185.317,521.334,362.573,532.182,3.960,159.510,3.960,345.972,310.744,355.164,23.981,21.722,23.981 +587,18.812,369.268,543.447,187.218,509.957,364.282,542.473,11.051,159.050,11.051,349.866,310.160,360.027,24.682,22.051,24.682 +588,18.842,371.190,556.002,191.035,498.586,366.790,554.522,18.587,158.199,18.587,359.550,308.997,368.835,25.332,20.798,25.332 +589,18.873,367.000,568.500,195.951,486.544,362.689,566.345,26.565,156.644,26.565,360.007,308.573,369.646,25.044,19.071,25.044 +590,18.906,361.150,581.268,203.340,475.546,357.365,578.627,34.902,155.584,34.902,361.371,308.037,370.602,24.985,18.493,24.985 +591,18.939,352.509,593.395,212.338,465.062,349.081,590.123,43.668,154.514,43.668,361.053,307.358,370.531,24.331,18.456,24.331 +592,18.975,341.912,604.263,222.990,455.468,338.995,600.466,52.472,153.677,52.472,361.735,307.254,371.312,23.608,18.605,23.608 +593,19.008,329.417,613.682,235.511,447.548,326.935,609.131,61.390,152.819,61.390,360.895,307.285,371.262,22.586,18.801,22.586 +594,19.041,315.039,620.599,248.994,441.423,313.316,615.743,70.470,151.832,70.470,361.284,307.478,371.589,21.645,18.302,21.645 +595,19.074,301.421,624.666,263.745,437.141,300.433,618.973,80.149,150.945,80.149,359.299,308.480,370.856,26.643,18.649,26.643 +596,19.104,285.858,626.477,278.575,435.132,285.779,620.060,89.293,150.368,89.293,357.170,309.212,370.006,26.047,18.692,26.047 +597,19.134,264.394,624.230,294.046,435.579,265.169,618.180,97.306,149.772,97.306,357.383,310.600,369.581,27.544,18.872,27.544 +598,19.165,264.394,624.230,294.046,435.579,265.169,618.180,97.306,149.772,97.306,357.383,310.600,369.581,27.544,18.872,27.544 +599,19.194,251.690,619.236,309.599,438.506,253.658,613.196,108.045,149.230,108.045,354.145,312.312,366.851,20.234,19.126,20.234 +600,19.228,237.795,612.838,323.766,443.787,241.125,606.521,117.795,148.815,117.795,350.707,314.014,364.989,20.141,19.204,20.141 +601,19.260,225.577,603.679,336.713,451.216,230.052,597.771,127.142,148.478,127.142,347.628,315.573,362.452,20.173,19.845,20.173 +602,19.294,214.594,594.076,348.166,460.667,221.040,587.897,136.212,147.969,136.212,341.770,317.364,359.630,19.376,21.086,19.376 +603,19.326,197.683,589.321,357.666,471.771,214.105,577.943,145.285,148.419,145.285,316.985,319.371,356.942,19.497,19.482,19.497 +604,19.361,139.778,600.588,365.526,483.637,208.940,566.722,153.911,148.040,153.911,200.322,320.335,354.340,19.021,19.108,19.021 +605,19.394,182.852,562.074,371.556,496.592,205.227,554.647,161.637,148.478,161.637,305.150,321.733,352.299,19.309,20.527,19.309 +606,19.426,188.576,546.607,375.323,510.027,203.625,543.816,169.492,148.517,169.492,319.351,322.586,349.962,19.990,21.723,19.990 +607,19.458,191.677,533.655,377.482,523.291,203.655,532.856,176.186,148.627,176.186,324.147,323.630,348.157,22.417,23.448,22.417 +608,19.489,195.343,522.707,377.841,535.565,204.926,523.176,2.804,148.861,2.804,327.440,324.642,346.629,24.558,24.269,24.558 +609,19.521,199.090,511.227,376.411,547.351,207.376,512.753,10.437,149.178,10.437,328.163,325.161,345.013,24.793,24.680,24.793 +610,19.552,202.746,502.336,373.969,558.303,210.573,504.718,16.928,149.689,16.928,327.474,325.861,343.837,25.414,25.859,25.414 +611,19.583,207.513,493.471,370.324,568.284,214.521,496.567,23.839,149.906,23.839,327.671,326.220,342.993,24.867,25.514,24.867 +612,19.615,211.900,486.300,365.902,577.593,218.722,490.198,29.745,150.489,29.745,326.583,326.724,342.297,24.931,26.091,24.931 +613,19.646,216.784,479.803,360.851,585.824,223.222,484.392,35.480,151.113,35.480,326.082,326.832,341.894,25.348,26.479,25.348 +614,19.676,222.034,474.296,355.199,593.007,227.814,479.262,40.671,151.805,40.671,326.251,327.061,341.492,25.541,26.622,25.541 +615,19.709,226.987,469.973,349.437,599.379,232.397,475.529,45.764,152.560,45.764,325.259,326.991,340.768,24.643,26.676,24.643 +616,19.740,231.943,465.547,343.200,604.900,236.840,471.525,50.684,153.435,50.684,325.698,326.913,341.153,24.350,26.833,24.350 +617,19.771,236.916,461.861,336.984,609.515,241.371,468.250,55.109,154.502,55.109,325.551,327.048,341.128,23.506,26.939,23.506 +618,19.800,236.916,461.861,336.984,609.515,241.371,468.250,55.109,154.502,55.109,325.551,327.048,341.128,23.506,26.939,23.506 +619,19.829,242.117,459.049,330.418,613.719,245.978,465.613,59.534,155.556,59.534,325.710,326.739,340.941,23.069,27.145,23.069 +620,19.861,247.063,456.480,323.978,617.108,250.450,463.331,63.693,156.666,63.693,325.586,326.577,340.872,22.431,27.114,22.431 +621,19.893,251.919,454.192,317.486,619.465,254.712,461.018,67.751,158.066,67.751,326.087,326.265,340.837,21.834,27.349,21.834 +622,19.926,256.846,452.390,311.306,622.182,259.219,459.569,71.715,159.096,71.715,326.366,326.093,341.488,21.145,27.026,21.145 +623,19.959,261.648,451.075,305.069,623.787,263.474,458.151,75.530,160.427,75.530,326.934,326.111,341.550,20.521,26.738,20.521 +624,19.991,266.539,449.831,298.900,625.200,267.879,456.924,79.299,161.565,79.299,327.781,325.398,342.219,19.938,26.247,19.938 +625,20.023,271.115,448.923,292.647,626.156,272.022,456.178,82.875,163.301,82.875,327.824,324.895,342.447,19.101,26.723,19.101 +626,20.055,275.862,448.290,286.502,626.507,276.318,455.593,86.424,164.962,86.424,327.798,324.335,342.433,18.901,26.695,18.901 +627,20.086,281.000,447.500,280.571,626.795,281.000,454.898,90.000,166.541,90.000,329.000,323.805,343.795,18.000,26.899,18.000 +628,20.116,286.100,447.200,274.401,626.538,285.614,454.731,93.691,167.969,93.691,329.251,323.377,344.344,18.510,25.750,18.510 +629,20.146,291.509,447.762,268.174,625.480,290.607,454.677,97.431,169.919,97.431,330.591,322.499,344.539,18.970,25.861,18.970 +630,20.178,296.363,447.948,262.117,623.862,295.075,454.745,100.731,171.741,100.731,330.758,322.443,344.593,19.258,25.108,19.258 +631,20.218,301.842,449.108,255.980,622.817,300.133,455.686,104.560,173.746,104.560,332.135,321.582,345.727,19.106,25.559,19.106 +632,20.252,307.400,450.300,249.831,620.356,305.338,456.485,108.435,175.486,108.435,332.988,320.975,346.028,19.290,24.608,19.290 +633,20.287,312.822,451.747,243.571,618.131,310.238,458.046,112.306,178.091,112.306,333.203,319.489,346.819,19.168,25.486,19.168 +634,20.320,318.419,453.943,237.500,615.500,315.484,459.862,116.372,0.000,116.372,334.949,319.000,348.162,19.161,25.000,19.161 +635,20.354,324.255,456.426,231.537,611.265,321.070,461.810,120.606,2.891,120.606,335.922,317.908,348.435,19.105,24.302,19.105 +636,20.388,329.976,459.534,225.678,607.218,326.488,464.512,125.018,5.711,125.018,337.282,317.417,349.439,19.182,25.174,19.182 +637,20.420,336.060,463.032,220.136,602.069,332.268,467.614,129.611,8.326,129.611,338.256,316.531,350.150,19.154,24.568,19.154 +638,20.453,341.651,467.571,214.227,596.406,337.625,471.676,134.444,11.725,134.444,339.409,315.595,350.908,18.974,24.903,18.974 +639,20.484,347.388,472.618,208.479,589.679,343.201,476.211,139.375,14.744,139.375,341.227,315.623,352.262,19.514,23.871,19.514 +640,20.515,352.673,478.766,203.434,582.707,348.629,481.637,144.630,17.580,144.630,343.880,314.333,353.801,19.465,24.625,19.465 +641,20.546,358.223,485.515,199.301,574.433,354.043,487.904,150.255,21.194,150.255,344.941,312.893,354.568,19.473,23.728,19.473 +642,20.578,363.144,493.325,195.487,565.854,358.782,495.264,156.038,24.702,156.038,346.233,311.431,355.781,19.596,21.604,19.596 +643,20.610,367.424,501.825,192.761,556.188,363.098,503.210,162.246,28.610,162.246,347.671,310.216,356.757,19.532,21.788,19.532 +644,20.642,370.393,511.334,190.442,545.599,365.737,512.283,168.480,32.050,168.480,347.330,308.992,356.833,20.084,22.155,20.084 +645,20.673,369.454,520.703,189.286,534.903,364.434,521.102,175.452,36.439,175.452,341.308,308.382,351.380,22.293,22.375,22.293 +646,20.705,370.139,530.703,189.682,524.293,364.602,530.469,2.420,41.225,2.420,338.965,306.204,350.050,24.443,21.733,24.443 +647,20.736,371.514,542.056,191.413,512.765,366.295,541.145,9.898,46.532,9.898,343.719,305.739,354.315,24.595,21.243,24.595 +648,20.767,371.514,542.056,191.413,512.765,366.295,541.145,9.898,46.532,9.898,343.719,305.739,354.315,24.595,21.243,24.595 +649,20.795,373.940,554.967,194.502,501.765,368.630,553.320,17.223,52.012,17.223,352.052,305.115,363.171,25.455,20.687,25.455 +650,20.827,370.008,568.524,198.379,491.076,365.090,566.163,25.641,57.901,25.641,354.659,304.744,365.571,24.666,19.399,24.666 +651,20.861,364.615,581.077,204.044,479.937,359.539,577.693,33.690,64.390,33.690,355.008,304.063,367.209,24.962,18.765,24.962 +652,20.895,356.229,592.481,211.850,469.550,351.965,588.671,41.785,71.565,41.785,356.265,303.262,367.703,24.623,18.341,24.623 +653,20.927,346.402,603.582,220.763,460.469,342.534,598.941,50.194,79.114,50.194,356.583,303.213,368.666,23.943,18.545,23.943 +654,20.962,334.255,612.454,230.996,452.408,331.168,607.383,58.671,87.357,58.671,357.055,303.415,368.928,22.989,18.949,22.989 +655,20.995,321.097,619.959,242.545,445.314,318.569,613.975,67.097,95.886,67.097,356.912,304.202,369.903,21.783,19.197,21.783 +656,21.027,307.971,624.882,255.711,440.469,306.400,618.598,75.964,105.313,75.964,357.255,305.746,370.210,24.739,18.727,24.739 +657,21.060,289.272,627.274,269.246,437.085,288.509,621.056,83.002,115.145,83.002,357.369,306.949,369.896,26.817,18.585,26.817 +658,21.093,275.958,626.940,282.581,435.405,276.170,619.728,91.685,124.875,91.685,354.435,308.519,368.864,26.312,19.068,26.312 +659,21.124,260.204,624.128,297.363,436.395,261.431,617.379,100.305,135.659,100.305,355.266,309.774,368.985,25.670,18.725,25.670 +660,21.156,249.489,618.771,312.115,439.423,251.773,612.471,109.924,146.310,109.924,353.103,312.019,366.506,20.425,19.137,20.425 +661,21.186,237.464,611.676,325.503,444.212,240.616,605.801,118.207,157.452,118.207,351.712,313.847,365.045,19.948,19.152,19.948 +662,21.218,227.175,603.529,337.989,451.448,231.040,598.257,126.242,168.541,126.242,350.194,315.569,363.268,19.576,18.939,19.576 +663,21.249,218.676,594.218,349.000,460.000,223.109,589.638,134.061,0.000,134.061,348.661,316.000,361.411,19.449,18.000,19.449 +664,21.280,211.554,584.802,358.471,468.648,216.988,580.511,141.702,10.886,141.702,346.877,318.888,360.725,19.835,21.944,19.835 +665,21.310,205.882,575.304,366.041,479.495,212.173,571.500,148.841,22.655,148.841,343.845,320.771,358.549,19.344,22.549,19.344 +666,21.343,202.136,565.193,370.601,492.269,207.842,562.618,155.712,34.439,155.712,342.059,322.045,354.579,19.128,20.453,19.128 +667,21.375,199.613,555.789,375.750,502.250,206.394,553.620,162.262,45.000,162.262,339.673,322.441,353.912,20.201,23.335,20.201 +668,21.407,197.897,546.495,377.609,513.601,204.569,545.140,168.515,56.739,168.515,338.095,323.394,351.711,19.565,23.467,19.565 +669,21.437,197.276,537.445,378.551,523.887,203.978,536.715,173.784,67.816,173.784,336.387,323.651,349.871,21.005,25.307,21.005 +670,21.466,197.276,537.445,378.551,523.887,203.978,536.715,173.784,67.816,173.784,336.387,323.651,349.871,21.005,25.307,21.005 +671,21.495,197.494,529.189,377.903,533.517,204.415,529.134,179.543,79.919,179.543,333.053,323.877,346.896,20.936,24.483,20.936 +672,21.527,198.650,520.438,376.674,541.619,205.048,520.903,4.160,91.848,4.160,332.522,323.348,345.352,25.660,24.858,25.660 +673,21.560,200.203,512.784,375.460,549.467,206.789,513.881,9.462,103.392,9.462,331.100,324.315,344.453,24.824,26.034,24.824 +674,21.594,201.870,506.052,373.569,556.243,208.638,507.780,14.323,115.346,14.323,329.618,323.966,343.588,24.780,26.541,24.780 +675,21.627,204.232,500.793,371.520,562.561,210.842,502.963,18.178,127.708,18.178,328.590,324.965,342.503,25.894,27.264,25.894 +676,21.659,207.014,494.284,369.717,567.255,213.578,497.055,22.891,139.627,22.891,328.047,325.273,342.298,25.611,26.874,25.611 +677,21.690,209.367,489.755,368.296,572.461,216.379,493.237,26.407,151.427,26.407,326.940,326.014,342.599,25.610,26.837,25.610 +678,21.723,211.589,486.089,366.647,577.156,218.815,490.206,29.678,163.301,29.678,326.348,327.577,342.981,25.429,26.340,25.429 +679,21.755,213.856,482.447,365.164,581.381,221.431,487.313,32.718,175.009,32.718,325.539,327.983,343.546,25.373,25.984,25.373 +680,21.785,215.594,479.163,363.292,584.339,223.634,484.869,35.362,6.442,35.362,323.204,330.433,342.922,25.360,26.765,25.360 +681,21.815,217.920,476.957,361.626,588.610,225.889,483.122,37.730,18.521,37.730,323.664,333.001,343.814,25.234,23.260,25.234 +682,21.846,215.106,473.508,359.996,593.007,227.160,482.862,37.810,30.534,37.810,314.427,333.415,344.942,23.814,19.962,23.814 +683,21.876,165.985,428.056,357.430,597.177,227.888,482.761,41.468,42.287,41.468,180.449,333.711,345.671,17.705,19.671,17.705 +684,21.908,217.698,470.015,354.602,600.788,229.740,481.289,43.112,54.080,43.112,312.651,334.450,345.642,18.794,19.666,18.794 +685,21.939,224.984,469.906,351.567,603.026,232.724,477.494,44.433,66.038,44.433,323.811,334.353,345.488,25.231,19.901,25.231 +686,21.970,227.120,470.464,348.516,604.605,233.094,476.537,45.474,77.781,45.474,327.444,333.299,344.482,24.368,19.640,24.368 +687,22.001,227.120,470.464,348.516,604.605,233.094,476.537,45.474,77.781,45.474,327.444,333.299,344.482,24.368,19.640,24.368 +688,22.029,228.093,469.665,346.500,605.000,233.565,475.429,46.488,90.000,46.488,327.555,332.000,343.451,24.538,21.000,24.538 +689,22.062,228.870,469.296,344.946,604.883,233.890,474.694,47.077,101.889,47.077,327.186,330.441,341.929,24.451,22.610,24.451 +690,22.094,229.091,468.701,343.958,604.206,233.892,473.927,47.425,114.209,47.425,326.612,329.160,340.804,24.232,23.706,24.232 +691,22.126,229.014,468.337,344.454,603.578,233.979,473.778,47.620,126.556,47.620,325.963,327.225,340.695,24.367,26.559,24.367 +692,22.158,228.669,468.058,345.165,602.327,233.784,473.650,47.550,138.724,47.550,325.090,326.052,340.246,24.315,26.747,24.315 +693,22.190,228.533,468.430,346.809,601.371,233.679,474.011,47.322,151.098,47.322,325.460,326.048,340.641,24.413,27.914,24.413 +694,22.222,228.220,469.202,348.661,600.658,233.455,474.773,46.782,162.970,46.782,325.972,326.728,341.260,24.495,27.470,24.495 +695,22.252,227.309,469.684,350.431,599.643,232.765,475.348,46.073,174.701,46.073,326.573,327.747,342.301,24.599,27.073,24.599 +696,22.284,226.415,470.584,352.856,597.688,232.040,476.242,45.167,5.942,45.167,326.657,329.695,342.612,24.726,26.866,24.726 +697,22.315,225.801,472.155,354.495,597.268,231.551,477.718,44.050,17.103,44.050,326.967,332.243,342.969,24.905,25.218,24.905 +698,22.345,222.776,471.621,356.560,596.385,230.742,478.991,42.773,27.483,42.773,322.452,333.310,344.157,24.903,20.512,24.903 +699,22.378,206.946,463.175,357.586,596.742,228.959,481.230,39.359,36.347,39.359,288.475,334.181,345.416,22.666,19.042,22.666 +700,22.410,206.228,467.516,358.775,596.218,226.647,484.493,39.742,45.282,39.742,292.945,333.799,346.053,18.402,19.172,18.402 +701,22.442,217.017,475.331,360.089,594.230,227.177,483.227,37.853,54.728,37.853,320.386,334.093,346.122,25.700,19.435,25.700 +702,22.473,216.453,479.466,360.701,591.882,224.650,485.322,35.538,64.426,35.538,325.145,333.318,345.292,25.342,19.342,25.342 +703,22.503,215.300,483.333,363.288,588.162,222.557,488.014,32.822,75.303,32.822,327.824,332.316,345.096,25.589,22.327,25.589 +704,22.534,215.300,483.333,363.288,588.162,222.557,488.014,32.822,75.303,32.822,327.824,332.316,345.096,25.589,22.327,25.589 +705,22.563,212.654,486.731,365.162,583.274,219.559,490.676,29.745,85.914,29.745,328.816,330.301,344.721,24.931,23.939,24.931 +706,22.594,210.095,490.283,365.922,577.492,216.366,493.405,26.463,96.009,26.463,328.701,327.402,342.713,25.178,23.188,25.178 +707,22.627,207.229,494.691,368.904,570.941,213.774,497.440,22.775,107.447,22.775,328.778,325.775,342.976,25.859,25.513,25.859 +708,22.659,204.280,499.735,371.265,563.918,211.136,502.066,18.778,118.664,18.778,328.549,324.422,343.032,25.639,26.429,25.639 +709,22.691,201.829,505.726,373.438,555.583,208.593,507.473,14.490,130.515,14.490,329.305,323.347,343.277,25.162,27.216,25.162 +710,22.722,198.651,512.628,375.736,547.066,206.566,513.996,9.811,141.701,9.811,328.596,323.124,344.662,24.145,26.415,24.145 +711,22.753,194.883,521.891,377.211,537.375,204.729,522.718,4.806,153.125,4.806,326.446,323.809,346.207,19.017,25.141,19.017 +712,22.783,185.503,529.837,378.628,527.690,204.788,529.679,179.532,163.994,179.532,309.128,324.997,347.701,19.999,21.695,19.999 +713,22.813,124.127,546.200,378.367,517.561,204.114,537.162,173.553,175.396,173.553,189.714,323.851,350.705,18.695,20.631,18.695 +714,22.843,195.367,548.074,377.989,510.094,205.254,545.934,167.788,6.455,167.788,332.584,325.130,352.816,19.599,25.182,19.599 +715,22.876,199.200,557.100,375.897,499.980,206.956,554.514,161.565,16.945,161.565,338.680,326.479,355.032,19.922,23.384,19.922 +716,22.907,202.555,566.478,371.180,491.409,208.626,563.642,154.960,28.098,154.960,342.295,325.063,355.696,19.390,21.829,19.390 +717,22.938,206.786,576.059,364.446,483.412,211.211,573.290,147.967,39.104,147.967,344.710,321.748,355.150,19.494,20.885,19.494 +718,22.968,206.786,576.059,364.446,483.412,211.211,573.290,147.967,39.104,147.967,344.710,321.748,355.150,19.494,20.885,19.494 +719,22.997,211.837,585.841,358.053,472.727,216.341,582.177,140.872,49.699,140.872,346.388,317.689,358.001,19.083,24.704,19.083 +720,23.029,218.962,594.964,349.083,463.656,222.625,591.094,133.423,61.928,133.423,348.310,313.588,358.966,18.987,24.824,18.987 +721,23.060,226.749,604.262,338.272,455.477,230.028,599.718,125.816,73.560,125.816,349.406,310.439,360.614,19.345,24.025,19.345 +722,23.092,236.853,612.285,325.803,448.438,239.517,607.281,118.031,85.601,118.031,350.179,308.397,361.518,19.509,21.935,19.509 +723,23.124,244.381,628.879,312.582,442.905,250.042,613.545,110.262,97.485,110.262,330.788,307.742,363.478,19.814,20.322,19.814 +724,23.154,260.463,633.764,298.111,438.036,263.929,618.512,102.804,108.052,102.804,335.845,308.037,367.127,23.315,21.220,23.315 +725,23.186,271.793,626.896,285.820,435.674,272.245,619.479,93.493,118.496,93.493,353.722,308.452,368.583,25.502,20.264,25.502 +726,23.218,287.582,627.228,273.136,435.789,287.135,620.524,86.186,129.958,86.186,357.074,309.591,370.512,24.412,18.997,24.412 +727,23.249,299.628,625.581,260.488,437.830,298.335,619.612,77.778,140.877,77.778,359.134,310.153,371.348,25.622,18.826,25.622 +728,23.281,314.571,620.940,247.952,441.290,312.705,615.707,70.379,151.984,70.379,360.955,310.114,372.067,21.093,18.876,21.093 +729,23.311,327.479,614.178,236.135,446.941,325.221,609.867,62.361,162.911,62.361,361.587,309.085,371.321,22.913,18.860,22.913 +730,23.343,338.728,606.412,225.918,453.753,336.224,602.903,54.485,173.737,54.485,362.341,307.774,370.963,24.091,18.426,24.091 +731,23.375,349.126,597.803,217.020,460.752,345.609,594.042,46.918,4.611,46.918,360.071,305.589,370.369,25.286,20.048,25.286 +732,23.406,358.158,589.112,209.468,469.463,353.539,585.317,39.401,15.164,39.401,357.772,304.591,369.729,25.196,20.909,25.196 +733,23.435,377.309,589.628,202.839,480.338,358.749,577.940,32.202,27.084,32.202,324.012,304.154,367.880,19.545,19.142,19.545 +734,23.466,377.309,589.628,202.839,480.338,358.749,577.940,32.202,27.084,32.202,324.012,304.154,367.880,19.545,19.142,19.545 +735,23.495,373.520,571.961,198.169,490.489,364.299,567.330,26.667,37.725,26.667,345.255,303.638,365.891,25.042,20.595,25.042 +736,23.528,374.449,557.685,194.423,501.316,368.705,555.747,18.637,48.778,18.637,352.950,304.320,365.076,25.640,21.280,25.640 +737,23.561,371.653,546.269,190.768,512.637,366.784,545.196,12.429,59.490,12.429,347.827,306.492,357.798,25.493,21.138,25.493 +738,23.594,370.311,536.377,189.477,522.140,365.294,535.806,6.499,69.756,6.499,342.368,308.664,352.468,25.607,22.717,25.607 +739,23.627,368.131,528.376,188.360,532.293,363.830,528.307,0.920,81.355,0.920,342.165,311.629,350.766,24.206,20.305,24.206 +740,23.661,367.943,521.243,187.471,541.558,363.222,521.600,175.677,91.693,175.677,344.042,313.484,353.511,22.510,20.129,22.510 +741,23.694,367.815,514.853,186.182,549.098,362.770,515.665,170.860,102.575,170.860,349.095,317.256,359.314,20.039,21.690,20.039 +742,23.727,368.547,508.152,186.271,555.822,362.795,509.562,166.226,112.645,166.226,353.079,318.845,364.924,19.701,21.765,19.701 +743,23.760,365.287,502.272,187.858,561.725,360.132,503.949,161.975,122.196,161.975,352.551,319.375,363.393,20.256,20.404,20.256 +744,23.792,361.992,497.239,188.968,565.924,357.513,499.034,158.158,132.192,158.158,353.012,318.925,362.664,20.229,20.372,20.229 +745,23.824,360.365,492.511,190.845,569.567,355.414,494.831,154.891,141.616,154.891,350.525,317.964,361.461,19.610,21.895,19.610 +746,23.855,378.416,478.014,193.434,572.889,353.628,491.162,152.057,149.365,152.057,303.510,317.130,359.628,19.051,19.798,19.051 +747,23.886,379.205,471.301,196.521,576.553,351.638,487.290,149.886,158.682,149.886,294.197,315.169,357.933,18.408,19.904,18.408 +748,23.917,363.409,476.445,199.301,579.023,350.497,484.817,147.041,168.503,147.041,325.450,313.995,356.228,19.842,20.761,19.842 +749,23.948,356.295,476.767,202.482,581.285,348.979,481.905,144.919,179.534,144.919,336.123,313.030,354.002,19.553,21.292,19.553 +750,23.979,351.593,476.268,205.473,584.652,347.272,479.534,142.911,9.994,142.911,342.177,313.275,353.009,19.732,24.365,19.732 +751,24.009,349.063,475.067,207.810,589.224,345.354,478.049,141.203,21.801,141.203,344.194,314.011,353.712,19.347,25.069,19.347 +752,24.041,347.465,473.320,209.577,592.885,343.291,476.855,139.737,33.690,139.737,343.111,315.347,354.050,19.607,25.794,19.607 +753,24.072,346.028,472.031,212.750,593.750,342.630,475.032,138.547,45.000,138.547,342.809,316.077,351.874,19.312,21.213,19.312 +754,24.103,344.818,471.300,213.346,596.769,341.090,474.696,137.663,56.310,137.663,343.201,319.507,353.286,18.956,21.356,18.956 +755,24.132,344.818,471.300,213.346,596.769,341.090,474.696,137.663,56.310,137.663,343.201,319.507,353.286,18.956,21.356,18.956 +756,24.162,343.552,471.419,212.729,599.328,339.753,474.976,136.888,66.967,136.888,345.021,322.093,355.430,19.198,20.505,19.198 +757,24.193,342.900,470.817,211.462,600.308,338.570,474.933,136.444,78.690,136.444,345.065,323.592,357.013,19.460,19.612,19.460 +758,24.226,341.762,471.573,209.826,600.498,337.723,475.439,136.252,89.623,136.252,346.554,323.079,357.737,19.288,19.263,19.288 +759,24.258,341.869,471.664,208.970,599.775,337.774,475.567,136.382,100.595,136.382,346.552,325.145,357.865,19.445,18.740,19.445 +760,24.291,342.691,471.582,207.348,598.332,338.246,475.773,136.680,111.371,136.680,346.416,324.599,358.634,19.436,19.192,19.436 +761,24.323,344.301,471.071,206.028,596.018,338.959,475.992,137.344,122.619,137.344,343.655,323.500,358.182,19.121,21.090,19.121 +762,24.355,348.078,469.852,205.237,593.506,340.418,476.705,138.180,132.483,138.180,336.692,322.200,357.249,18.553,20.471,18.553 +763,24.386,400.520,426.954,204.953,591.622,341.682,477.139,139.538,143.945,139.538,201.979,319.301,356.644,18.148,20.509,18.148 +764,24.416,361.039,464.123,203.976,588.383,343.718,478.205,140.889,154.872,140.889,311.220,317.278,355.865,18.445,19.758,18.445 +765,24.447,355.716,471.847,203.195,584.734,345.874,479.507,142.105,166.446,142.105,329.508,315.793,354.451,19.989,20.945,19.989 +766,24.476,356.327,475.261,202.568,582.110,348.144,481.168,144.175,177.580,144.175,334.047,313.776,354.233,19.325,21.122,19.325 +767,24.507,356.115,479.923,201.902,579.139,350.742,483.506,146.310,8.746,146.310,340.863,313.542,353.780,19.415,22.809,19.415 +768,24.538,357.065,483.589,200.551,576.785,352.904,486.105,148.841,19.265,148.841,344.860,313.500,354.586,19.861,23.792,19.861 +769,24.568,357.065,483.589,200.551,576.785,352.904,486.105,148.841,19.265,148.841,344.860,313.500,354.586,19.861,23.792,19.861 +770,24.597,359.345,487.412,199.317,573.079,355.634,489.418,151.601,29.887,151.601,346.152,313.450,354.590,19.613,21.546,19.613 +771,24.628,361.799,491.634,197.750,569.623,358.204,493.328,154.770,40.544,154.770,347.392,312.814,355.338,19.579,21.268,19.579 +772,24.661,364.276,496.190,196.139,565.576,360.788,497.585,158.199,50.942,158.199,348.736,314.038,356.248,19.869,21.233,19.869 +773,24.694,366.865,501.662,193.394,560.721,362.747,503.012,161.844,60.824,161.844,349.139,314.005,357.806,20.001,20.489,20.001 +774,24.727,369.288,507.665,191.250,554.750,365.199,508.676,166.112,71.565,166.112,351.423,314.014,359.847,19.437,20.239,19.437 +775,24.759,368.946,514.676,189.137,548.031,364.469,515.422,170.538,81.501,170.538,347.539,314.679,356.616,19.399,20.383,19.399 +776,24.790,368.111,522.311,187.519,540.102,363.485,522.704,175.145,91.660,175.145,344.328,314.332,353.614,20.313,20.079,20.313 +777,24.820,368.038,528.038,186.556,531.724,362.828,528.005,0.363,101.514,0.363,342.069,314.577,352.489,23.088,20.469,23.088 +778,24.851,367.705,538.332,186.414,522.253,363.271,537.896,5.618,111.483,5.618,346.166,313.632,355.077,20.524,20.090,20.524 +779,24.883,369.682,545.929,187.845,512.235,364.921,544.871,12.529,121.373,12.529,350.126,312.677,359.880,24.947,20.637,24.947 +780,24.913,371.568,555.538,190.221,501.454,366.782,553.994,17.879,131.348,17.879,358.272,311.366,368.330,25.236,20.029,25.236 +781,24.944,368.389,565.761,194.049,490.561,363.919,563.723,24.513,141.340,24.513,360.002,310.161,369.828,24.836,18.741,24.836 +782,24.975,363.780,576.320,199.955,480.252,359.774,573.870,31.449,151.390,31.449,360.984,308.540,370.374,24.888,18.755,24.888 +783,25.007,357.184,587.599,207.472,470.395,353.528,584.615,39.226,161.438,39.226,361.308,307.377,370.748,24.979,18.743,24.979 +784,25.038,349.389,596.323,216.311,461.576,346.619,593.441,46.146,171.486,46.146,362.744,305.630,370.738,24.206,18.820,24.206 +785,25.068,349.389,596.323,216.311,461.576,346.619,593.441,46.146,171.486,46.146,362.744,305.630,370.738,24.206,18.820,24.206 +786,25.096,339.752,605.392,226.484,453.494,337.334,602.084,53.832,1.834,53.832,362.551,303.485,370.746,23.567,18.620,23.567 +787,25.126,328.165,613.273,237.764,446.663,326.226,609.648,61.867,11.482,61.867,362.658,303.781,370.881,22.658,20.718,22.658 +788,25.158,316.101,619.734,250.085,441.268,314.495,615.409,69.624,21.961,69.624,362.114,303.423,371.341,21.427,21.256,21.427 +789,25.190,300.344,624.150,262.814,438.420,299.365,619.861,77.142,32.296,77.142,361.252,303.710,370.050,26.016,20.638,26.016 +790,25.222,290.049,625.274,275.787,437.459,289.796,621.299,86.351,41.987,86.351,360.754,303.859,368.719,24.588,20.143,24.588 +791,25.253,271.441,624.740,290.080,437.043,271.729,620.003,93.479,51.766,93.479,357.981,304.366,367.472,26.620,22.636,26.620 +792,25.284,260.505,622.977,304.090,439.537,261.703,617.949,103.392,61.327,103.392,356.418,305.586,366.756,23.301,23.195,23.301 +793,25.315,245.750,616.923,317.330,444.025,247.790,611.948,112.306,70.346,112.306,352.750,307.142,363.504,20.259,23.745,20.259 +794,25.345,233.656,609.592,329.224,450.232,236.322,605.143,120.933,79.695,120.933,350.891,308.756,361.265,20.095,22.897,20.095 +795,25.376,222.177,601.607,340.595,457.974,226.346,596.527,129.376,88.636,129.376,346.019,310.364,359.163,19.399,23.232,19.399 +796,25.408,212.291,592.470,350.412,466.928,218.493,586.829,137.714,97.001,137.714,339.767,312.077,356.533,19.723,23.786,19.723 +797,25.438,205.009,581.454,358.042,476.738,211.936,576.744,145.784,105.313,145.784,337.353,314.335,354.107,19.615,22.677,19.615 +798,25.468,201.213,569.443,365.470,487.638,207.684,566.221,153.526,113.464,153.526,338.085,316.432,352.543,19.339,24.314,19.339 +799,25.499,201.213,569.443,365.470,487.638,207.684,566.221,153.526,113.464,153.526,338.085,316.432,352.543,19.339,24.314,19.339 +800,25.529,197.344,558.377,370.711,498.543,204.856,555.772,160.875,121.128,160.875,335.002,318.489,350.902,20.671,24.258,20.671 +801,25.565,195.154,547.007,374.012,510.110,203.269,545.307,168.168,128.660,168.168,332.084,320.625,348.666,20.666,23.895,20.666 +802,25.598,194.805,536.263,376.635,521.673,203.256,535.578,175.371,135.654,175.371,330.913,321.118,347.871,19.370,24.906,19.370 +803,25.631,194.966,525.594,377.350,532.455,204.183,525.742,0.920,142.459,0.920,328.070,323.267,346.505,24.206,24.576,24.206 +804,25.662,197.522,513.352,377.124,543.206,206.914,514.770,8.584,148.921,8.584,326.098,324.820,345.095,25.429,25.260,25.429 +805,25.693,200.346,505.090,375.715,553.458,209.448,507.465,14.621,154.898,14.621,326.171,325.682,344.984,25.074,25.160,25.074 +806,25.727,204.213,497.428,373.083,562.736,212.755,500.607,20.410,160.599,20.410,325.630,326.825,343.859,25.501,24.622,25.501 +807,25.758,208.415,489.660,369.961,571.838,216.972,493.915,26.440,165.907,26.440,324.254,327.904,343.366,25.492,25.080,25.492 +808,25.789,213.350,483.743,366.077,579.983,220.846,488.378,31.729,170.929,31.729,325.777,328.619,343.403,25.347,25.285,25.347 +809,25.820,217.900,478.300,361.505,587.060,224.876,483.532,36.870,175.357,36.870,325.400,328.679,342.840,25.000,24.528,25.000 +810,25.850,222.745,473.662,356.528,593.714,229.028,479.247,41.634,179.080,41.634,325.870,329.118,342.684,24.914,26.647,24.914 +811,25.881,227.968,469.943,351.552,599.548,233.415,475.641,46.284,3.122,46.284,326.633,329.982,342.399,24.568,26.924,24.568 +812,25.912,232.855,466.435,345.269,604.846,237.344,471.936,50.787,7.125,50.787,328.217,331.173,342.419,24.333,26.171,24.333 +813,25.943,237.847,463.607,339.694,609.816,241.765,469.220,55.084,10.582,55.084,328.988,332.144,342.679,23.914,26.541,23.914 +814,25.975,242.351,460.686,333.998,614.035,245.924,466.666,59.146,13.858,59.146,329.431,332.255,343.363,23.357,26.612,23.357 +815,26.005,247.225,458.895,328.443,617.360,250.177,464.683,62.975,16.663,62.975,330.144,331.691,343.138,22.533,26.192,22.533 +816,26.036,247.225,458.895,328.443,617.360,250.177,464.683,62.975,16.663,62.975,330.144,331.691,343.138,22.533,26.192,22.533 +817,26.064,251.708,456.839,322.507,620.882,254.360,463.040,66.845,19.626,66.845,330.358,331.288,343.848,22.049,25.855,22.049 +818,26.095,256.335,455.121,316.536,623.134,258.477,461.170,70.498,22.261,70.498,331.275,331.683,344.109,21.602,26.158,21.602 +819,26.126,260.801,454.124,310.207,625.242,262.436,459.885,74.148,24.467,74.148,332.260,332.450,344.236,20.997,26.545,20.997 +820,26.157,264.847,452.582,304.334,627.346,266.263,459.043,77.638,26.423,77.638,331.875,330.931,345.104,20.031,26.510,20.031 +821,26.189,268.903,452.000,298.539,628.428,269.902,458.193,80.838,28.261,80.838,332.700,330.783,345.247,19.617,26.709,19.617 +822,26.223,273.590,450.869,292.617,629.538,274.205,457.373,84.602,29.854,84.602,333.201,330.552,346.266,18.618,26.727,18.618 +823,26.254,278.319,450.092,286.957,629.886,278.553,456.924,88.042,31.487,88.042,332.626,329.462,346.298,18.912,26.606,18.912 +824,26.287,282.983,449.880,280.985,630.078,282.809,456.468,91.517,32.771,91.517,334.015,328.962,347.195,18.537,26.413,18.537 +825,26.318,287.807,449.722,274.968,630.047,287.225,456.414,94.970,33.854,94.970,334.650,328.388,348.084,18.625,25.976,18.625 +826,26.349,292.344,450.325,268.904,629.055,291.436,456.591,98.246,35.161,98.246,335.165,327.940,347.827,18.847,26.033,18.847 +827,26.380,297.238,450.515,263.051,627.814,295.965,456.671,101.689,35.838,101.689,335.954,327.019,348.526,19.112,26.212,19.112 +828,26.410,302.857,451.262,257.088,626.208,301.156,457.356,105.593,36.607,105.593,336.312,326.396,348.966,19.264,26.147,19.264 +829,26.441,307.658,452.192,251.001,624.205,305.612,458.124,109.026,37.694,109.026,337.074,325.470,349.623,19.299,26.148,19.299 +830,26.471,313.051,453.822,245.029,621.818,310.674,459.414,113.025,37.794,113.025,338.130,324.329,350.284,19.097,26.093,19.097 +831,26.502,313.051,453.822,245.029,621.818,310.674,459.414,113.025,37.794,113.025,338.130,324.329,350.284,19.097,26.093,19.097 +832,26.531,318.487,455.717,238.708,618.744,315.675,461.259,116.906,39.053,116.906,338.106,323.445,350.535,19.406,26.022,19.406 +833,26.563,324.468,458.178,232.804,615.045,321.322,463.368,121.218,40.101,121.218,339.047,322.390,351.186,19.125,26.087,19.125 +834,26.595,330.027,460.807,226.706,610.676,326.515,465.741,125.446,40.601,125.446,339.798,321.274,351.911,19.152,26.357,19.152 +835,26.629,335.700,464.249,220.533,605.817,331.787,468.926,129.920,41.129,129.920,340.567,319.848,352.763,19.236,25.992,19.236 +836,26.661,341.518,468.515,214.730,600.104,337.192,472.873,134.790,41.399,134.790,340.859,318.813,353.142,19.043,25.682,19.043 +837,26.693,347.416,473.586,210.488,591.279,343.949,476.512,139.844,41.820,139.844,342.952,317.316,352.026,19.155,21.181,19.155 +838,26.726,352.849,479.356,205.001,584.805,349.070,482.001,145.008,42.346,145.008,344.733,315.752,353.959,19.580,21.976,19.580 +839,26.758,357.881,486.328,200.154,576.690,354.134,488.446,150.524,42.414,150.524,346.333,314.338,354.941,19.304,22.377,19.304 +840,26.788,362.744,493.846,196.604,567.167,359.217,495.387,156.398,42.589,156.398,347.799,312.919,355.497,19.359,20.994,19.359 +841,26.819,367.256,502.393,193.479,556.808,363.625,503.540,162.474,42.639,162.474,348.961,310.768,356.577,19.875,21.720,19.875 +842,26.849,369.979,512.551,190.770,546.550,365.786,513.373,168.915,42.809,168.915,347.712,309.347,356.259,20.324,21.985,20.324 +843,26.879,369.387,521.711,189.966,534.815,364.728,522.027,176.121,42.563,176.121,341.115,308.561,350.455,22.406,22.111,22.406 +844,26.911,370.177,531.667,189.989,522.924,364.877,531.336,3.576,42.589,3.576,339.525,307.029,350.145,24.889,22.228,24.889 +845,26.942,372.674,544.034,191.745,511.026,366.571,542.847,11.004,42.215,11.004,342.938,305.865,355.372,24.677,21.394,24.677 +846,26.974,374.904,557.806,195.120,498.557,368.466,555.626,18.712,41.669,18.712,351.391,304.693,364.985,25.328,20.767,25.328 +847,27.005,372.286,574.268,200.298,486.886,363.593,569.614,28.165,41.314,28.165,346.296,303.949,366.016,25.878,19.620,25.878 +848,27.036,372.286,574.268,200.298,486.886,363.593,569.614,28.165,41.314,28.165,346.296,303.949,366.016,25.878,19.620,25.878 +849,27.064,378.787,596.958,206.919,475.943,357.636,581.218,36.656,40.990,36.656,314.793,303.285,367.522,24.291,18.751,24.291 +850,27.095,363.739,611.272,216.410,464.828,346.491,594.774,43.727,40.143,43.727,319.910,302.826,367.647,20.800,18.144,20.800 +851,27.126,342.029,610.515,227.175,455.587,336.947,603.657,53.459,39.746,53.459,351.572,302.422,368.643,21.743,18.437,21.743 +852,27.158,327.330,616.059,239.776,447.658,324.919,611.322,63.020,38.884,63.020,358.329,302.853,368.959,22.474,18.732,22.474 +853,27.189,312.089,621.868,253.367,441.667,310.706,617.484,72.491,38.501,72.491,360.651,304.058,369.844,22.434,19.369,22.434 +854,27.222,293.213,625.465,268.398,437.975,292.506,621.179,80.638,37.185,80.638,360.682,304.226,369.371,27.627,19.807,27.627 +855,27.253,276.642,625.508,283.759,437.157,276.658,621.076,90.214,37.042,90.214,359.024,305.405,367.888,26.041,20.301,26.041 +856,27.284,265.291,623.593,300.825,436.941,266.389,618.276,101.672,35.496,101.672,358.244,307.702,369.103,27.251,23.825,27.251 +857,27.316,247.950,617.134,316.449,441.298,249.977,611.862,111.024,34.624,111.024,354.817,309.586,366.113,20.323,23.766,20.323 +858,27.349,234.291,609.361,331.154,448.269,237.355,604.205,120.723,33.690,120.723,351.947,311.741,363.942,20.130,23.575,20.130 +859,27.380,222.812,598.995,344.270,456.856,226.754,594.336,130.236,32.928,130.236,349.513,314.295,361.718,19.907,23.366,19.907 +860,27.410,213.753,587.628,355.522,467.264,218.369,583.674,139.418,32.005,139.418,347.632,317.893,359.787,19.830,23.214,19.830 +861,27.442,206.550,575.958,364.891,479.680,212.133,572.520,148.378,31.097,148.378,344.398,319.872,357.510,19.845,22.209,19.845 +862,27.473,201.462,563.410,370.788,492.719,207.403,560.882,156.949,30.745,156.949,341.142,324.812,354.057,19.480,20.582,19.480 +863,27.503,198.185,551.306,376.476,505.852,205.465,549.388,165.237,28.940,165.237,337.865,326.052,352.920,19.320,21.744,19.320 +864,27.534,198.185,551.306,376.476,505.852,205.465,549.388,165.237,28.940,165.237,337.865,326.052,352.920,19.320,21.744,19.320 +865,27.564,196.641,539.530,379.617,519.209,204.997,538.521,173.112,28.339,173.112,334.521,327.338,351.353,19.249,20.867,19.249 +866,27.595,195.969,527.695,380.415,531.474,205.678,527.617,179.540,28.056,179.540,329.981,329.880,349.400,23.959,20.229,23.959 +867,27.629,197.544,516.067,380.241,543.414,207.851,517.333,7.001,28.205,7.001,327.801,331.186,348.568,24.413,19.585,24.413 +868,27.661,199.435,507.118,378.229,554.901,210.271,509.761,13.707,28.811,13.707,325.436,332.042,347.743,23.767,19.671,23.767 +869,27.693,200.602,499.244,375.507,564.841,213.117,503.956,20.630,30.393,20.630,320.114,333.003,346.858,18.707,19.118,18.707 +870,27.725,198.539,488.855,372.099,574.057,216.470,497.674,26.188,32.425,26.188,306.761,333.249,346.726,18.329,18.942,18.329 +871,27.756,190.631,474.342,367.916,582.621,220.086,492.417,31.535,34.624,31.535,277.237,333.489,346.355,18.364,18.829,18.364 +872,27.786,157.244,438.768,363.439,589.762,223.746,487.666,36.327,37.196,36.327,180.963,333.593,346.051,17.961,19.317,17.961 +873,27.817,165.265,428.982,358.323,596.498,227.463,483.405,41.186,39.401,41.186,180.618,334.066,345.910,17.874,19.291,17.874 +874,27.847,206.947,453.056,352.911,602.219,233.079,477.812,43.452,41.767,43.452,273.111,334.499,345.105,22.925,19.294,22.925 +875,27.880,221.655,458.061,347.565,607.410,236.725,474.806,48.013,43.727,48.013,300.365,335.243,345.422,22.596,19.040,22.596 +876,27.912,230.614,459.464,341.887,611.622,240.209,471.829,52.190,45.269,52.190,314.250,334.501,345.552,22.937,19.520,22.937 +877,27.944,237.428,460.051,336.674,615.833,243.964,469.829,56.241,46.200,56.241,322.285,334.669,345.809,23.572,19.747,23.572 +878,27.976,244.888,458.133,330.978,619.046,249.397,466.536,61.783,46.460,61.783,326.846,334.042,345.918,23.018,19.696,23.018 +879,28.006,249.986,456.862,325.204,621.821,253.431,464.488,65.686,46.029,65.686,329.124,333.929,345.860,22.409,20.880,22.409 +880,28.036,249.986,456.862,325.204,621.821,253.431,464.488,65.686,46.029,65.686,329.124,333.929,345.860,22.409,20.880,22.409 +881,28.064,254.826,455.498,318.909,624.567,257.533,462.754,69.542,44.640,69.542,330.628,333.099,346.118,21.743,21.729,21.743 +882,28.095,259.609,454.161,312.423,626.498,261.667,461.061,73.388,42.652,73.388,331.686,332.756,346.086,20.971,22.564,20.971 +883,28.127,264.604,453.268,306.038,627.955,266.033,459.587,77.260,40.236,77.260,333.131,332.367,346.090,20.364,24.193,20.364 +884,28.159,268.903,452.000,298.978,629.869,270.021,458.929,80.838,37.161,80.838,332.700,331.397,346.739,19.617,25.401,19.617 +885,28.191,273.995,450.861,292.460,630.059,274.606,457.631,84.844,34.276,84.844,333.076,330.341,346.670,18.916,27.085,18.916 +886,28.224,279.268,450.050,285.319,629.804,279.419,456.874,88.727,30.750,88.727,332.385,329.621,346.037,18.573,27.055,18.573 +887,28.256,284.055,449.400,279.013,629.475,283.779,456.167,92.337,27.135,92.337,333.172,327.863,346.717,18.413,26.954,18.413 +888,28.290,289.557,449.572,272.178,628.090,288.886,455.751,96.203,23.418,96.203,333.838,326.558,346.270,18.608,26.524,18.608 +889,28.324,295.049,449.391,265.406,626.263,293.985,455.417,100.008,19.592,100.008,334.189,325.568,346.427,19.232,26.539,19.232 +890,28.358,300.692,449.803,258.573,624.236,299.164,455.963,103.932,15.503,103.932,333.497,324.008,346.190,19.156,27.256,19.156 +891,28.391,306.587,450.528,251.767,621.598,304.575,456.710,108.030,10.784,108.030,333.269,322.160,346.272,19.059,26.897,19.059 +892,28.423,312.530,452.149,244.576,618.529,310.169,457.920,112.249,6.843,112.249,334.501,320.739,346.973,19.184,26.569,19.184 +893,28.454,318.700,454.100,238.006,615.375,315.826,459.849,116.565,2.862,116.565,334.963,318.852,347.818,19.230,25.918,19.230 +894,28.485,324.783,456.364,230.957,610.754,321.486,461.881,120.854,178.042,120.854,335.608,318.361,348.463,19.154,24.071,19.154 +895,28.515,331.363,458.900,223.802,605.749,327.168,464.779,125.516,173.541,125.516,335.139,318.156,349.583,19.407,23.266,19.407 +896,28.547,338.227,462.470,216.878,599.861,333.064,468.537,130.400,168.799,130.400,334.688,317.508,350.621,19.363,21.532,19.363 +897,28.577,346.202,465.240,210.003,593.690,338.487,472.851,135.390,164.634,135.390,330.986,317.151,352.662,19.212,21.088,19.212 +898,28.609,358.943,465.753,203.963,587.399,343.867,478.168,140.528,159.969,140.528,315.810,316.800,354.870,20.161,19.906,20.161 +899,28.641,379.313,464.233,198.486,580.870,348.892,484.413,146.441,155.556,146.441,284.302,316.973,357.313,18.556,20.028,18.556 +900,28.671,376.310,479.759,193.244,572.053,353.990,491.604,152.045,150.202,152.045,308.866,316.913,359.404,18.724,19.262,18.724 +901,28.704,364.657,496.134,189.119,562.914,358.078,498.757,158.257,146.505,158.257,347.243,317.017,361.409,19.888,21.523,19.888 +902,28.735,364.657,496.134,189.119,562.914,358.078,498.757,158.257,146.505,158.257,347.243,317.017,361.409,19.888,21.523,19.888 +903,28.764,368.142,505.999,186.163,553.571,362.385,507.562,164.805,141.858,164.805,352.310,316.211,364.240,19.873,20.883,19.873 +904,28.794,367.511,516.078,184.036,542.452,362.116,516.859,171.761,137.377,171.761,348.918,315.066,359.820,20.962,22.555,20.962 +905,28.826,366.525,527.533,184.009,531.120,361.616,527.653,178.610,132.780,178.610,345.457,314.541,355.278,20.872,22.348,20.872 +906,28.858,368.049,536.525,186.353,520.410,363.577,536.002,6.667,127.258,6.667,346.666,313.782,355.671,24.637,20.575,24.637 +907,28.890,370.627,549.259,189.285,507.864,366.041,548.075,14.470,122.307,14.470,352.921,311.939,362.394,25.050,20.024,25.050 +908,28.922,369.509,563.647,193.765,494.909,365.048,561.735,23.199,117.261,23.199,357.810,310.441,367.516,25.211,18.924,25.211 +909,28.953,364.966,576.586,200.186,482.781,360.588,573.928,31.264,112.276,31.264,358.583,309.174,368.826,25.399,18.240,25.399 +910,28.985,357.099,589.937,209.151,471.014,353.095,586.539,40.323,107.281,40.323,358.494,307.528,368.999,24.609,17.739,24.609 +911,29.016,346.958,602.186,218.495,460.325,342.935,597.453,49.635,102.265,49.635,357.730,305.644,370.154,24.611,20.223,24.611 +912,29.046,334.104,612.844,230.721,451.728,330.850,607.463,58.841,96.814,58.841,357.577,304.138,370.153,23.025,19.565,23.025 +913,29.078,319.499,621.212,244.417,444.909,316.935,614.863,68.009,92.490,68.009,355.793,304.191,369.487,22.236,19.156,22.236 +914,29.110,302.594,629.514,258.974,440.541,300.434,620.374,76.701,87.718,76.701,350.311,303.556,369.095,26.223,19.159,26.223 +915,29.141,293.538,696.842,273.869,437.768,290.157,621.329,87.436,84.413,87.436,217.036,303.389,368.212,26.466,18.088,26.466 +916,29.171,267.554,632.594,289.827,438.358,268.630,620.520,95.090,80.248,95.090,342.406,305.120,366.649,26.785,18.664,26.785 +917,29.202,267.554,632.594,289.827,438.358,268.630,620.520,95.090,80.248,95.090,342.406,305.120,366.649,26.785,18.664,26.785 +918,29.232,253.608,621.529,306.801,440.923,255.097,616.062,105.233,75.763,105.233,353.808,306.338,365.141,23.325,21.758,23.325 +919,29.264,240.439,613.692,322.422,446.378,242.648,609.170,116.033,70.665,116.033,352.510,307.746,362.574,20.601,23.060,20.601 +920,29.295,228.007,603.938,337.050,453.978,230.936,599.850,125.618,65.879,125.618,350.705,309.686,360.762,20.177,24.493,20.177 +921,29.327,217.500,593.000,349.508,463.836,221.168,589.332,135.000,60.751,135.000,348.604,312.567,358.979,19.092,24.430,19.092 +922,29.361,208.980,581.552,359.830,475.797,213.722,578.132,144.201,55.751,144.201,345.033,315.691,356.728,19.831,24.007,19.831 +923,29.393,203.459,568.953,368.387,488.093,208.973,566.148,153.037,50.572,153.037,342.579,318.943,354.954,20.456,24.580,20.456 +924,29.425,199.850,556.550,374.653,500.895,206.160,554.447,161.565,45.644,161.565,340.261,321.848,353.563,20.555,24.342,20.555 +925,29.458,197.322,544.512,378.552,514.651,204.884,543.151,169.796,41.129,169.796,336.571,325.301,351.938,20.058,22.639,20.058 +926,29.490,196.905,532.266,380.013,528.336,204.878,531.830,176.868,36.469,176.868,334.157,328.034,350.127,22.528,20.874,22.528 +927,29.523,197.354,519.685,380.331,540.353,206.888,520.466,4.686,32.253,4.686,329.845,330.408,348.976,24.149,20.623,24.149 +928,29.556,198.284,509.402,378.933,552.018,209.644,511.793,11.889,27.862,11.889,324.673,331.990,347.890,23.640,20.883,23.640 +929,29.586,189.909,496.967,376.360,561.812,212.571,505.102,19.747,24.139,19.747,298.479,332.720,346.635,18.438,20.303,18.438 +930,29.617,192.563,484.462,372.466,572.004,217.096,495.603,24.424,19.537,24.424,292.228,332.495,346.115,23.314,21.706,23.314 +931,29.649,211.933,482.103,367.158,580.433,221.721,488.456,32.985,15.524,32.985,320.797,332.628,344.135,26.548,21.840,26.548 +932,29.680,218.816,476.103,360.744,589.348,226.391,482.140,38.550,11.119,38.550,324.396,332.206,343.769,25.392,23.152,25.392 +933,29.713,225.655,471.810,354.356,597.176,231.598,477.581,44.157,6.981,44.157,326.201,330.896,342.768,24.892,25.544,24.892 +934,29.746,231.377,467.308,347.358,603.798,236.401,473.209,49.591,2.911,49.591,327.220,329.693,342.722,24.623,26.508,24.623 +935,29.777,237.175,463.230,340.014,609.286,241.451,469.265,54.676,178.977,54.676,327.670,328.180,342.462,23.545,27.424,23.545 +936,29.808,242.798,459.788,332.385,613.836,246.426,465.989,59.671,176.055,59.671,327.670,327.945,342.038,22.988,26.489,22.988 +937,29.838,248.434,456.718,324.165,617.712,251.492,463.162,64.612,172.252,64.612,327.300,326.839,341.566,22.463,26.828,22.463 +938,29.868,248.434,456.718,324.165,617.712,251.492,463.162,64.612,172.252,64.612,327.300,326.839,341.566,22.463,26.828,22.463 +939,29.897,253.857,453.691,316.439,620.641,256.516,460.708,69.246,168.408,69.246,326.570,326.183,341.578,21.567,26.801,21.567 +940,29.928,259.514,451.706,308.481,623.096,261.574,458.806,73.824,164.745,73.824,326.920,326.090,341.707,20.814,27.101,20.814 +941,29.961,264.335,450.322,300.451,624.952,265.877,457.550,77.957,161.012,77.957,327.080,325.435,341.862,19.299,26.924,19.299 +942,29.994,270.668,448.956,292.468,626.018,271.613,456.199,82.569,157.420,82.569,327.573,324.845,342.181,19.013,26.229,19.013 +943,30.027,276.888,447.849,284.332,626.657,277.274,455.244,87.007,153.925,87.007,328.284,324.715,343.094,19.072,25.475,19.072 +944,30.058,282.607,447.041,276.347,626.749,282.454,454.870,91.123,148.700,91.123,328.270,324.634,343.931,18.585,25.032,18.585 +945,30.089,289.100,447.208,268.462,626.206,288.320,455.062,95.670,146.793,95.670,328.752,324.458,344.537,18.716,21.998,18.716 +946,30.120,294.718,447.044,260.640,625.020,293.343,455.183,99.590,143.130,99.590,329.315,324.600,345.824,19.608,21.200,19.608 +947,30.150,301.735,447.059,253.148,623.454,299.422,456.314,104.036,140.826,104.036,327.666,324.278,346.745,19.403,20.529,19.403 +948,30.180,309.119,447.733,245.938,621.496,305.679,457.831,108.812,138.576,108.812,327.039,323.798,348.374,19.857,20.157,19.857 +949,30.213,316.399,446.944,238.768,618.752,311.030,459.576,113.025,136.874,113.025,322.070,324.005,349.520,19.879,20.241,19.879 +950,30.244,324.077,446.823,232.301,615.785,316.399,461.777,117.181,135.651,117.181,317.215,323.280,350.834,20.316,19.846,20.316 +951,30.275,332.445,446.148,226.021,612.000,321.396,463.864,121.950,135.610,121.950,310.573,322.573,352.331,18.065,19.918,18.065 +952,30.306,343.157,444.464,219.857,607.328,326.698,466.733,126.469,136.245,126.469,297.755,322.073,353.138,18.216,19.887,18.216 +953,30.337,357.869,440.416,214.017,602.185,332.207,470.063,130.879,138.013,130.879,276.075,321.623,354.496,18.118,19.028,18.118 +954,30.369,357.869,440.416,214.017,602.185,332.207,470.063,130.879,138.013,130.879,276.075,321.623,354.496,18.118,19.028,18.118 +955,30.399,391.764,420.798,208.505,596.688,337.471,474.066,135.546,139.764,135.546,203.745,320.740,355.867,18.182,19.437,18.182 +956,30.430,404.233,427.486,202.890,589.660,342.667,478.597,140.301,142.487,140.301,196.940,319.852,356.975,18.292,20.111,18.292 +957,30.462,392.106,453.203,198.581,582.514,347.841,483.730,145.408,144.462,145.408,250.370,318.867,357.911,18.281,19.413,18.281 +958,30.494,364.534,483.282,194.130,573.927,352.727,489.920,150.658,147.144,150.658,331.741,318.147,358.832,18.543,19.828,18.543 +959,30.526,364.968,493.635,190.597,564.760,357.413,496.933,156.420,149.574,156.420,343.553,317.143,360.040,18.943,19.983,18.943 +960,30.558,367.464,502.656,187.280,555.234,361.107,504.624,162.795,151.699,162.795,348.726,315.209,362.037,19.605,20.996,19.605 +961,30.589,368.565,512.846,185.094,544.677,363.001,513.896,169.315,153.217,169.315,349.735,313.523,361.059,20.339,21.799,20.339 +962,30.620,366.454,522.707,184.315,533.107,361.887,522.974,176.653,153.812,176.653,346.572,312.631,355.721,22.552,22.066,22.552 +963,30.652,367.219,533.218,184.783,520.524,362.350,532.840,4.430,154.086,4.430,346.209,311.307,355.976,24.090,23.264,24.090 +964,30.683,369.024,545.894,187.300,507.600,364.465,544.881,12.529,153.435,12.529,352.729,310.366,362.068,24.730,21.913,24.730 +965,30.714,369.862,561.345,192.043,495.182,365.343,559.537,21.801,152.661,21.801,359.878,309.498,369.612,25.255,19.966,25.255 +966,30.745,365.077,573.615,198.699,482.740,361.084,571.334,29.745,151.841,29.745,360.693,308.297,369.890,25.303,18.295,25.303 +967,30.776,356.541,587.930,207.588,470.659,353.234,585.194,39.611,151.113,39.611,361.873,307.690,370.458,24.971,18.327,24.971 +968,30.807,346.566,600.004,218.275,459.602,343.399,596.385,48.814,150.505,48.814,361.049,307.233,370.668,23.988,18.199,23.988 +969,30.837,334.023,610.750,230.994,450.264,331.293,606.331,58.283,149.899,58.283,360.590,307.087,370.977,23.026,18.481,23.026 +970,30.868,334.023,610.750,230.994,450.264,331.293,606.331,58.283,149.899,58.283,360.590,307.087,370.977,23.026,18.481,23.026 +971,30.898,319.040,618.984,244.883,442.956,316.991,613.958,67.812,149.421,67.812,360.286,307.507,371.141,22.150,18.588,22.150 +972,30.930,300.230,624.761,260.293,437.986,298.996,619.459,76.899,148.958,76.899,360.157,308.183,371.045,27.431,18.508,27.431 +973,30.962,288.048,626.514,276.350,435.254,287.846,620.170,88.179,148.620,88.179,357.678,309.032,370.374,27.241,18.673,27.241 +974,30.994,266.144,624.848,292.326,435.402,266.880,618.282,96.401,148.431,96.401,355.937,310.655,369.152,26.841,18.806,26.841 +975,31.027,252.252,620.504,308.114,438.184,254.150,614.314,107.049,148.147,107.049,355.474,312.079,368.423,21.097,19.149,21.097 +976,31.058,238.502,612.737,322.756,443.308,241.551,606.752,116.996,148.022,116.996,351.557,313.866,364.991,20.628,19.950,20.628 +977,31.089,225.877,604.536,335.734,450.271,230.550,598.261,126.681,148.072,126.681,347.387,315.565,363.034,19.960,21.256,19.960 +978,31.120,214.719,594.210,347.598,460.266,221.102,588.026,135.909,147.901,135.909,341.725,317.467,359.500,19.303,21.895,19.303 +979,31.150,199.194,588.333,357.750,471.449,214.247,577.935,145.364,148.643,145.364,320.596,319.174,357.187,19.682,19.320,19.682 +980,31.181,137.399,601.345,365.707,483.878,208.865,566.544,154.036,148.646,154.036,195.426,320.361,354.406,19.107,19.069,19.107 +981,31.213,182.182,561.634,371.736,497.244,205.202,554.150,161.991,149.409,161.991,303.523,321.751,351.936,19.462,19.967,19.462 +982,31.246,188.485,545.784,375.612,510.694,203.767,543.123,170.124,149.868,170.124,318.697,323.124,349.721,19.652,21.616,19.652 +983,31.278,191.686,532.761,377.600,524.297,203.767,532.073,176.738,150.333,176.738,323.785,324.228,347.987,22.508,22.933,22.508 +984,31.310,195.330,519.594,377.711,537.075,205.406,520.411,4.635,150.913,4.635,325.957,324.992,346.175,24.299,23.855,24.299 +985,31.341,199.309,508.907,376.319,549.091,208.139,510.766,11.889,151.654,11.889,326.887,325.440,344.935,25.030,24.874,25.030 +986,31.372,203.346,501.004,373.499,560.414,211.129,503.542,18.060,152.447,18.060,327.630,326.148,344.002,25.256,25.788,25.256 +987,31.402,203.346,501.004,373.499,560.414,211.129,503.542,18.060,152.447,18.060,327.630,326.148,344.002,25.256,25.788,25.256 +988,31.430,208.605,491.232,369.550,570.605,215.759,494.646,25.514,153.289,25.514,327.170,326.914,343.023,25.495,26.167,25.495 +989,31.461,213.082,484.538,364.696,579.935,219.862,488.637,31.159,154.134,31.159,326.512,326.987,342.357,25.393,26.285,25.393 +990,31.495,218.752,478.169,359.401,588.360,224.872,482.831,37.304,155.004,37.304,326.544,327.133,341.929,24.961,26.676,24.961 +991,31.530,224.110,472.302,353.236,595.774,229.989,477.748,42.809,156.114,42.809,325.217,327.350,341.245,25.545,27.026,25.545 +992,31.561,229.365,468.024,347.035,602.084,234.494,473.711,47.956,157.230,47.956,326.089,327.230,341.406,24.315,26.888,24.315 +993,31.594,234.859,463.859,340.081,607.425,239.361,469.842,53.039,158.717,53.039,326.012,327.393,340.989,23.821,27.418,23.821 +994,31.626,240.225,460.173,333.535,612.241,244.382,466.793,57.875,159.734,57.875,325.541,326.891,341.175,23.240,26.830,23.240 +995,31.657,245.607,457.205,326.741,616.246,249.217,464.141,62.501,161.075,62.501,325.791,326.973,341.430,22.686,26.838,22.686 +996,31.689,250.990,454.655,319.629,619.305,253.967,461.663,66.991,162.759,66.991,326.304,326.731,341.532,22.015,26.972,22.015 +997,31.721,256.255,452.592,312.858,621.999,258.730,459.888,71.259,164.181,71.259,326.403,326.369,341.812,21.273,27.020,21.273 +998,31.753,261.562,451.095,305.853,623.912,263.436,458.324,75.466,165.964,75.466,326.932,325.725,341.867,20.543,26.921,20.543 +999,31.783,266.939,449.644,298.930,625.179,268.278,456.940,79.603,167.692,79.603,327.180,325.400,342.016,19.807,27.037,19.807 +1000,31.813,272.018,448.717,292.142,626.262,272.842,456.044,83.581,169.439,83.581,327.869,325.026,342.616,18.931,26.959,18.931 +1001,31.844,277.185,447.921,285.497,626.983,277.539,455.454,87.306,171.180,87.306,328.343,324.564,343.426,19.108,26.936,19.108 +1002,31.876,283.195,447.562,278.377,626.956,282.988,454.930,91.614,173.290,91.614,329.433,323.709,344.175,18.472,27.575,18.472 +1003,31.907,288.812,447.677,271.816,625.870,288.126,454.712,95.572,175.050,95.572,329.727,323.215,343.865,18.643,25.676,18.643 +1004,31.937,288.812,447.677,271.816,625.870,288.126,454.712,95.572,175.050,95.572,329.727,323.215,343.865,18.643,25.676,18.643 +1005,31.966,294.478,447.998,264.905,624.783,293.356,454.708,99.499,176.820,99.499,331.271,322.558,344.877,19.239,26.071,19.239 +1006,31.997,300.395,448.958,258.457,623.110,298.851,455.343,103.591,179.138,103.591,331.985,321.114,345.123,19.120,25.674,19.120 +1007,32.029,306.444,450.286,251.503,621.384,304.419,456.585,107.819,1.406,107.819,332.938,321.320,346.172,19.245,25.594,19.245 +1008,32.061,312.437,451.992,244.498,618.526,310.007,457.961,112.150,4.014,112.150,333.940,320.387,346.829,19.098,25.936,19.098 +1009,32.093,318.700,454.100,237.543,615.116,315.831,459.838,116.565,6.340,116.565,334.963,320.031,347.793,19.230,25.510,19.230 +1010,32.125,325.132,457.211,231.099,611.372,321.954,462.432,121.329,9.002,121.329,336.703,319.208,348.928,19.387,25.504,19.387 +1011,32.156,331.141,460.557,224.923,606.385,327.771,465.190,126.027,11.310,126.027,337.905,317.708,349.363,18.969,25.103,18.969 +1012,32.186,337.527,464.636,218.287,600.901,333.779,468.939,131.055,14.621,131.055,339.312,317.294,350.726,18.803,25.242,18.803 +1013,32.220,343.539,469.561,212.403,594.697,339.682,473.267,136.150,17.176,136.150,341.126,316.151,351.823,19.386,24.510,19.386 +1014,32.252,349.458,475.482,206.651,588.101,345.419,478.669,141.724,20.695,141.724,343.160,314.734,353.452,19.049,24.884,19.049 +1015,32.284,355.607,482.017,201.573,580.199,351.139,484.869,147.450,23.772,147.450,344.127,313.734,354.727,19.298,24.415,19.298 +1016,32.315,360.729,489.437,197.259,570.565,356.519,491.553,153.325,27.350,153.325,346.137,312.224,355.560,19.667,22.695,19.667 +1017,32.346,365.630,498.189,193.853,560.570,361.417,499.760,159.550,30.816,159.550,347.508,311.435,356.501,19.692,22.133,19.692 +1018,32.378,370.159,507.707,191.423,549.443,365.955,508.742,166.167,34.271,166.167,349.745,310.135,358.403,19.776,22.722,19.776 +1019,32.411,369.353,518.494,189.835,538.835,364.980,519.027,173.047,37.725,173.047,343.698,308.279,352.509,20.676,22.803,20.676 +1020,32.442,369.520,527.595,189.743,527.619,364.414,527.560,0.387,41.987,0.387,339.121,306.534,349.333,24.074,21.779,24.074 +1021,32.473,370.980,539.140,190.959,516.110,365.928,538.418,8.130,47.121,8.130,342.523,305.889,352.730,24.607,21.879,24.607 +1022,32.503,372.834,552.043,193.445,503.840,367.984,550.675,15.751,51.476,15.751,351.319,304.843,361.397,25.246,20.630,25.246 +1023,32.534,372.834,552.043,193.445,503.840,367.984,550.675,15.751,51.476,15.751,351.319,304.843,361.397,25.246,20.630,25.246 +1024,32.565,371.462,565.585,197.269,493.007,366.092,563.209,23.868,56.650,23.868,353.838,305.410,365.583,25.783,19.520,25.783 +1025,32.597,365.850,578.737,203.378,481.843,360.944,575.641,32.258,62.526,32.258,355.015,304.209,366.618,25.765,19.057,25.765 +1026,32.630,357.230,591.951,211.237,470.482,352.709,587.995,41.186,69.109,41.186,355.687,303.756,367.702,24.647,18.856,24.647 +1027,32.663,347.139,602.957,220.480,461.120,343.309,598.451,49.635,76.185,49.635,356.549,303.149,368.376,24.039,18.387,24.039 +1028,32.696,335.436,612.850,230.811,452.799,331.908,607.158,58.206,83.660,58.206,355.531,303.466,368.924,23.118,18.884,23.118 +1029,32.729,321.552,620.265,242.760,445.597,318.892,614.016,66.937,92.010,66.937,355.982,303.515,369.565,21.791,18.568,21.791 +1030,32.760,308.068,625.234,255.410,440.677,306.459,618.778,76.007,101.004,76.007,357.014,305.146,370.320,24.980,19.332,24.980 +1031,32.792,289.203,628.573,269.115,437.290,288.347,621.409,83.191,110.480,83.191,355.771,306.647,370.201,26.380,19.018,26.380 +1032,32.823,275.799,626.919,283.082,435.943,276.055,620.009,92.121,120.801,92.121,354.572,308.180,368.400,25.427,19.475,25.427 +1033,32.854,260.648,624.220,297.059,436.552,261.841,617.563,100.157,131.273,100.157,355.243,309.869,368.770,25.490,19.125,25.490 +1034,32.886,249.684,619.041,310.724,439.143,251.924,612.617,109.231,142.237,109.231,352.714,311.443,366.321,20.333,18.884,20.333 +1035,32.917,238.249,612.599,323.600,443.700,241.324,606.620,117.216,153.435,117.216,351.574,313.497,365.022,19.844,18.783,19.844 +1036,32.948,228.429,605.101,335.893,450.101,232.261,599.620,124.956,164.995,124.956,350.465,315.641,363.841,19.541,18.960,19.541 +1037,32.979,220.286,596.349,346.994,457.895,224.639,591.577,132.368,176.735,132.368,349.527,316.854,362.445,19.226,18.758,19.226 +1038,33.011,213.231,587.515,356.306,465.843,218.674,582.861,139.470,8.222,139.470,346.983,318.484,361.307,19.553,21.736,19.553 +1039,33.043,207.853,578.525,363.949,475.891,213.753,574.611,146.437,19.983,146.437,345.307,319.701,359.467,19.462,22.555,19.462 +1040,33.074,203.719,569.473,368.589,487.985,209.330,566.605,152.923,32.631,152.923,342.580,321.578,355.181,19.609,21.224,19.609 +1041,33.105,200.399,560.436,373.527,497.051,206.953,557.917,158.978,43.531,158.978,340.599,321.864,354.643,20.108,23.490,20.108 +1042,33.135,200.399,560.436,373.527,497.051,206.953,557.917,158.978,43.531,158.978,340.599,321.864,354.643,20.108,23.490,20.108 +1043,33.164,198.648,551.691,376.684,507.535,205.336,549.890,164.932,55.784,164.932,339.080,322.303,352.934,19.201,24.477,19.201 +1044,33.197,197.629,543.290,377.372,517.342,204.103,542.203,170.463,67.011,170.463,336.855,322.622,349.986,18.832,25.023,18.832 +1045,33.230,196.979,535.732,377.785,526.353,203.665,535.218,175.601,79.380,175.601,335.164,322.628,348.574,19.404,25.125,19.404 +1046,33.262,197.492,528.764,377.273,534.054,204.133,528.834,0.600,91.364,0.600,333.086,322.337,346.369,18.910,25.493,18.910 +1047,33.296,198.036,520.503,376.441,541.235,204.908,520.993,4.086,104.036,4.086,331.299,322.815,345.079,25.649,26.194,25.649 +1048,33.330,199.532,513.300,375.600,547.300,206.398,514.393,9.039,116.565,9.039,330.637,322.888,344.542,24.757,26.386,24.757 +1049,33.363,200.988,508.054,374.131,552.918,207.829,509.618,12.875,129.075,12.875,329.502,324.514,343.538,24.789,27.357,24.789 +1050,33.396,202.567,503.270,373.456,557.545,209.724,505.357,16.260,141.110,16.260,328.680,324.548,343.590,25.320,26.703,25.320 +1051,33.428,204.014,499.396,372.900,562.300,211.967,502.163,19.179,153.435,19.179,326.673,326.019,343.513,25.707,26.386,25.707 +1052,33.460,205.143,494.161,372.034,566.087,214.114,497.936,22.820,165.641,22.820,324.514,327.433,343.982,25.078,25.095,25.078 +1053,33.490,205.992,490.463,371.158,569.586,216.034,495.226,25.375,177.483,25.375,321.821,328.474,344.049,25.091,23.406,25.091 +1054,33.521,205.532,486.492,370.664,572.566,217.814,492.975,27.830,9.241,27.830,316.879,330.601,344.655,26.579,23.794,26.579 +1055,33.553,200.543,482.884,369.682,577.305,218.994,492.422,27.335,21.571,27.335,304.138,332.385,345.678,23.260,20.308,23.260 +1056,33.584,188.574,474.044,368.056,581.657,219.622,492.673,30.964,34.028,30.964,273.712,333.653,346.127,18.350,19.600,18.350 +1057,33.615,211.005,483.143,366.522,584.960,221.577,489.804,32.211,46.091,32.211,321.726,333.189,346.717,22.032,20.590,22.032 +1058,33.646,214.297,481.718,364.205,587.990,223.069,487.478,33.294,58.344,33.294,325.303,333.262,346.290,25.276,19.815,25.276 +1059,33.676,215.994,481.334,362.546,589.132,223.446,486.375,34.077,70.641,34.077,327.586,332.761,345.580,26.042,21.139,26.042 +1060,33.708,216.668,481.415,360.908,589.762,223.210,485.896,34.405,82.875,34.405,328.735,331.173,344.595,25.192,22.202,25.192 +1061,33.739,216.728,481.379,359.941,589.203,222.793,485.568,34.634,94.764,34.634,328.748,329.608,343.490,25.176,24.332,25.176 +1062,33.769,216.498,481.170,359.590,588.176,222.453,485.253,34.439,107.928,34.439,328.171,327.661,342.613,25.072,25.353,25.072 +1063,33.800,216.498,481.170,359.590,588.176,222.453,485.253,34.439,107.928,34.439,328.171,327.661,342.613,25.072,25.353,25.072 +1064,33.829,215.589,481.445,359.494,586.699,221.656,485.560,34.144,120.767,34.144,327.029,326.899,341.691,25.210,26.587,25.210 +1065,33.862,215.365,481.926,360.521,584.393,221.409,485.925,33.486,133.508,33.486,326.204,325.527,340.700,26.086,27.052,26.086 +1066,33.894,214.282,483.271,362.623,582.155,220.557,487.264,32.471,146.063,32.471,326.727,325.357,341.602,25.003,27.348,25.003 +1067,33.927,212.819,484.473,364.711,579.613,219.753,488.674,31.208,158.749,31.208,325.987,326.253,342.201,25.016,27.649,25.016 +1068,33.958,211.217,485.874,367.129,576.843,218.930,490.290,29.795,170.707,29.795,325.458,327.481,343.232,25.754,25.892,25.754 +1069,33.990,208.331,486.878,369.877,573.631,218.330,492.200,28.024,1.710,28.024,321.419,328.481,344.074,26.155,24.661,26.155 +1070,34.023,201.829,490.507,371.986,571.062,216.027,496.832,24.013,12.375,24.013,314.250,330.806,345.338,25.386,22.218,25.386 +1071,34.054,138.048,466.303,373.902,569.741,215.097,499.888,23.552,22.109,23.552,178.873,331.646,346.976,18.428,20.209,18.428 +1072,34.086,201.042,497.826,374.813,567.800,213.723,502.830,21.535,31.956,21.535,320.120,332.945,347.386,18.975,19.640,18.975 +1073,34.117,202.566,500.199,375.804,564.773,212.963,503.620,18.208,41.987,18.208,325.700,332.252,347.591,25.898,19.400,25.898 +1074,34.147,202.078,505.126,376.606,560.420,210.842,507.480,15.038,52.792,15.038,329.495,331.395,347.645,24.994,19.926,24.994 +1075,34.177,200.773,509.850,377.900,554.300,209.104,511.573,11.689,63.435,11.689,330.889,329.596,347.904,24.853,22.808,24.853 +1076,34.209,199.466,515.682,377.868,547.674,206.817,516.652,7.520,73.940,7.520,332.452,327.051,347.281,24.526,25.087,24.526 +1077,34.245,198.226,522.148,377.176,540.280,204.829,522.491,2.974,85.292,2.974,332.850,324.126,346.074,25.485,24.763,25.485 +1078,34.276,196.540,531.276,376.895,531.285,203.302,531.062,178.182,96.789,178.182,333.467,321.326,346.997,20.736,26.196,20.736 +1079,34.306,196.642,539.223,376.224,521.758,203.156,538.465,173.358,108.667,173.358,334.562,320.028,347.677,19.179,26.284,19.179 +1080,34.337,196.053,547.981,374.504,512.193,203.257,546.376,167.441,120.763,167.441,334.402,319.514,349.164,20.493,26.065,20.493 +1081,34.368,196.053,547.981,374.504,512.193,203.257,546.376,167.441,120.763,167.441,334.402,319.514,349.164,20.493,26.065,20.493 +1082,34.397,194.577,557.823,371.811,501.182,204.725,554.534,162.041,132.890,162.041,329.456,319.184,350.791,20.055,24.628,20.055 +1083,34.429,185.449,571.630,368.052,489.965,206.853,562.094,155.987,144.337,155.987,306.336,319.805,353.200,18.537,21.195,18.537 +1084,34.461,195.269,579.882,363.580,479.065,210.838,570.837,149.845,155.807,149.845,320.333,321.268,356.344,19.336,22.117,19.336 +1085,34.493,209.120,583.660,359.453,470.800,215.633,578.775,143.130,166.661,143.130,343.400,320.706,359.682,19.200,20.584,19.200 +1086,34.524,216.260,591.750,352.589,463.355,221.145,587.064,136.189,177.839,136.189,347.452,319.452,360.990,19.396,19.458,19.396 +1087,34.556,223.890,599.881,344.545,455.723,227.903,594.938,129.071,9.236,129.071,350.464,318.251,363.198,19.205,21.410,19.205 +1088,34.599,232.495,607.638,333.899,449.618,235.498,602.791,121.779,20.384,121.779,352.658,316.449,364.064,19.411,21.493,19.411 +1089,34.631,242.462,614.257,323.079,443.674,244.872,608.909,114.261,32.005,114.261,353.822,313.123,365.554,19.749,23.744,19.749 +1090,34.663,253.556,619.901,310.638,440.381,254.918,615.278,106.417,43.531,106.417,357.390,308.487,367.028,20.829,23.961,20.829 +1091,34.698,267.704,624.782,297.423,438.385,268.527,619.828,99.435,56.310,99.435,357.408,305.640,367.451,24.167,21.911,24.167 +1092,34.730,281.101,628.727,283.466,437.914,281.330,621.588,91.834,68.199,91.834,353.011,304.355,367.297,25.539,19.869,25.539 +1093,34.761,294.010,669.177,269.614,438.891,287.954,622.184,82.657,79.951,82.657,273.506,303.200,368.268,25.598,18.347,25.598 +1094,34.792,304.251,627.306,256.383,440.977,302.421,619.931,76.062,90.822,76.062,354.353,304.112,369.550,24.016,19.701,24.016 +1095,34.823,317.384,621.159,244.691,444.156,315.129,615.312,68.910,102.724,68.910,357.540,305.219,370.074,20.848,19.037,20.848 +1096,34.853,329.690,614.623,233.298,449.358,326.871,609.465,61.345,114.179,61.345,358.981,307.453,370.737,23.174,19.456,23.174 +1097,34.885,340.381,606.586,223.487,455.628,337.198,602.210,53.973,125.967,53.973,360.035,309.231,370.857,24.630,18.415,24.630 +1098,34.916,349.397,598.302,214.599,462.795,345.626,594.296,46.728,137.564,46.728,360.116,310.162,371.121,24.878,18.809,24.878 +1099,34.947,356.514,588.469,206.769,470.779,352.751,585.340,39.739,149.003,39.739,361.198,310.243,370.986,25.388,18.763,25.388 +1100,34.980,362.392,578.495,200.805,478.953,358.622,576.052,32.949,160.374,32.949,361.504,309.632,370.489,25.641,18.736,25.641 +1101,35.011,367.135,568.683,196.326,487.838,363.236,566.746,26.418,171.481,26.418,360.468,308.449,369.175,25.736,18.322,25.736 +1102,35.043,371.766,560.240,192.978,497.001,366.447,558.266,20.358,2.551,20.358,356.546,306.631,367.894,24.671,21.736,24.671 +1103,35.074,440.715,569.312,191.107,505.063,366.503,549.579,14.890,13.778,14.890,208.311,305.345,361.891,20.770,20.574,20.770 +1104,35.104,374.574,541.349,190.175,514.139,365.630,539.942,8.940,25.894,8.940,336.558,305.499,354.666,25.151,22.001,25.151 +1105,35.134,374.574,541.349,190.175,514.139,365.630,539.942,8.940,25.894,8.940,336.558,305.499,354.666,25.151,22.001,25.151 +1106,35.164,370.284,532.771,189.713,523.567,364.852,532.406,3.840,37.381,3.840,339.786,305.827,350.675,24.442,21.356,24.442 +1107,35.196,369.060,526.082,189.645,532.431,364.347,526.161,179.045,48.576,179.045,340.136,307.610,349.564,22.863,21.392,22.863 +1108,35.229,368.981,520.560,189.559,541.255,364.456,520.990,174.569,59.982,174.569,342.971,310.095,352.061,20.180,20.223,20.180 +1109,35.262,369.297,514.284,190.202,548.916,364.862,515.023,170.538,71.301,170.538,346.717,312.436,355.710,19.728,20.606,19.728 +1110,35.294,369.244,508.530,190.822,555.882,364.937,509.552,166.648,81.834,166.648,351.363,315.655,360.217,19.558,20.712,19.558 +1111,35.326,366.786,503.652,190.230,561.572,361.916,505.134,163.072,92.397,163.072,351.182,317.685,361.362,20.340,19.467,20.340 +1112,35.358,363.955,499.621,189.060,566.014,358.838,501.478,160.054,103.408,160.054,352.331,319.728,363.218,19.831,21.909,19.831 +1113,35.389,362.334,495.714,190.701,569.587,357.174,497.873,157.295,113.499,157.295,351.320,320.376,362.507,19.994,19.936,19.994 +1114,35.425,359.972,492.736,191.236,571.988,355.124,495.006,154.916,123.818,154.916,351.427,320.345,362.134,19.617,19.931,19.617 +1115,35.469,359.498,487.244,193.156,573.857,353.070,490.748,151.408,142.558,151.408,345.729,318.446,360.371,19.107,20.970,19.107 +1116,35.501,359.498,487.244,193.156,573.857,353.070,490.748,151.408,142.558,151.408,345.729,318.446,360.371,19.107,20.970,19.107 +1117,35.533,421.210,449.951,194.862,575.448,352.011,488.655,150.781,150.994,150.781,200.468,316.160,359.043,18.491,20.219,18.491 +1118,35.565,379.381,471.601,196.478,575.873,351.953,487.527,149.859,160.796,149.859,294.196,314.724,357.629,18.384,19.959,18.384 +1119,35.603,359.561,481.354,199.530,576.145,352.326,485.800,148.431,1.992,148.431,337.981,311.507,354.964,19.689,20.501,19.689 +1120,35.635,359.561,481.354,199.530,576.145,352.326,485.800,148.431,1.992,148.431,337.981,311.507,354.964,19.689,20.501,19.689 +1121,35.664,357.243,482.309,200.976,577.258,352.410,485.308,148.179,13.062,148.179,342.933,312.337,354.310,19.573,24.392,19.573 +1122,35.696,356.434,482.811,201.083,578.973,352.064,485.523,148.179,24.922,148.179,344.837,313.177,355.123,19.573,23.771,19.573 +1123,35.729,356.301,483.432,202.524,578.812,352.851,485.551,148.436,36.978,148.436,345.711,313.806,353.809,19.536,21.382,19.536 +1124,35.761,357.221,484.368,202.018,579.984,353.113,486.832,149.036,48.664,149.036,345.398,314.760,354.978,20.065,21.434,20.065 +1125,35.793,357.674,485.440,201.224,580.158,353.433,487.914,149.744,60.173,149.744,346.087,317.273,355.907,20.155,20.427,20.155 +1126,35.824,358.197,487.049,198.954,579.208,353.672,489.553,151.036,72.121,151.036,347.223,318.485,357.566,19.452,19.986,19.452 +1127,35.856,358.794,489.187,196.646,577.379,354.441,491.458,152.456,83.972,152.456,349.467,319.553,359.286,19.854,19.018,19.854 +1128,35.887,359.933,491.673,194.259,574.661,355.446,493.835,154.274,95.222,154.274,350.624,320.680,360.587,19.484,19.076,19.484 +1129,35.918,361.367,494.417,191.745,570.721,356.699,496.466,156.307,106.557,156.307,351.584,320.488,361.778,19.922,19.197,19.922 +1130,35.949,362.693,497.646,189.684,566.151,358.093,499.438,158.714,117.801,158.714,352.405,319.780,362.279,20.027,19.364,20.027 +1131,35.980,365.005,501.543,188.093,560.885,360.128,503.185,161.395,129.012,161.395,352.616,318.301,362.907,19.912,20.025,19.912 +1132,36.011,366.935,505.803,186.348,554.253,362.252,507.089,164.644,140.631,164.644,354.513,316.266,364.227,19.381,20.298,19.381 +1133,36.043,368.942,510.726,185.667,547.315,363.353,511.922,167.928,151.982,167.928,350.886,314.172,362.316,19.631,20.296,19.631 +1134,36.074,370.009,516.560,185.762,540.227,363.178,517.559,171.674,162.897,171.674,343.850,312.613,357.657,19.500,20.145,19.500 +1135,36.105,380.015,522.195,186.723,533.054,363.313,523.465,175.649,173.811,175.649,320.118,311.296,353.618,19.791,20.482,19.791 +1136,36.134,380.015,522.195,186.723,533.054,363.313,523.465,175.649,173.811,175.649,320.118,311.296,353.618,19.791,20.482,19.791 +1137,36.163,416.500,529.500,187.255,525.511,363.127,529.500,0.000,5.847,0.000,245.000,308.075,351.745,19.000,21.376,19.000 +1138,36.198,381.497,538.041,188.707,518.806,364.082,536.613,4.686,16.574,4.686,317.542,307.355,352.488,20.554,21.816,20.554 +1139,36.230,376.064,543.305,191.115,510.335,366.051,541.538,10.008,27.041,10.008,335.058,306.386,355.393,25.141,22.815,25.141 +1140,36.262,374.210,552.446,193.250,503.750,367.719,550.641,15.540,37.875,15.540,347.834,305.304,361.308,24.570,21.049,24.570 +1141,36.295,373.361,561.921,196.305,495.920,367.742,559.730,21.297,48.814,21.297,353.749,305.076,365.811,25.425,20.320,25.425 +1142,36.328,369.469,572.616,200.299,488.323,363.984,569.706,27.951,59.396,27.951,353.051,305.471,365.471,25.419,19.972,25.419 +1143,36.358,363.852,581.237,204.264,479.688,359.402,578.236,33.996,70.261,33.996,356.713,304.585,367.447,25.007,18.858,25.007 +1144,36.389,357.249,591.564,210.288,471.288,352.958,587.833,41.009,80.655,41.009,356.896,304.799,368.268,24.672,18.585,24.672 +1145,36.420,349.093,600.052,217.649,463.038,345.539,596.143,47.726,91.322,47.726,358.467,304.334,369.034,24.149,18.218,24.149 +1146,36.450,339.742,608.628,225.925,455.193,336.313,603.744,54.920,101.441,54.920,358.081,305.952,370.017,23.420,18.646,23.420 +1147,36.482,328.202,615.683,235.773,448.518,325.453,610.461,62.241,111.911,62.241,358.345,306.772,370.149,21.704,18.733,21.704 +1148,36.513,316.388,620.988,246.665,442.731,314.382,615.555,69.734,122.110,69.734,359.580,307.501,371.162,21.345,18.762,21.345 +1149,36.544,302.096,625.184,258.835,438.307,300.682,619.180,76.748,132.486,76.748,358.962,308.071,371.298,25.022,18.601,25.022 +1150,36.576,291.829,626.431,271.677,435.714,291.322,620.317,85.264,142.853,85.264,358.919,309.393,371.189,24.496,18.961,24.496 +1151,36.607,275.048,626.371,284.922,434.835,275.260,619.846,91.868,153.180,91.868,357.397,309.507,370.455,25.345,18.877,25.345 +1152,36.637,265.193,624.040,299.122,436.118,266.379,618.124,101.343,163.632,101.343,357.715,311.117,369.782,25.298,19.257,25.298 +1153,36.668,265.193,624.040,299.122,436.118,266.379,618.124,101.343,163.632,101.343,357.715,311.117,369.782,25.298,19.257,25.298 +1154,36.698,250.748,618.740,313.019,439.681,252.761,612.928,109.102,174.154,109.102,354.552,311.953,366.854,20.240,19.570,20.240 +1155,36.730,239.364,612.431,325.669,444.910,242.092,607.087,117.043,4.837,117.043,352.888,313.081,364.888,19.770,19.438,19.770 +1156,36.762,229.038,605.026,337.480,451.075,232.579,599.926,124.778,15.046,124.778,351.775,313.899,364.193,19.850,21.599,19.850 +1157,36.794,220.476,596.524,347.184,459.642,224.406,592.198,132.258,26.437,132.258,349.655,315.740,361.345,19.116,22.106,19.116 +1158,36.825,213.144,587.582,356.093,468.415,217.896,583.531,139.554,36.304,139.554,347.210,316.975,359.699,19.337,24.209,19.337 +1159,36.857,207.615,578.418,363.246,478.684,212.749,575.021,146.507,47.764,146.507,345.027,317.370,357.339,19.711,24.364,19.711 +1160,36.888,202.952,568.898,368.557,489.168,208.527,566.091,153.275,59.216,153.275,342.573,318.471,355.056,19.462,24.914,19.462 +1161,36.919,200.201,559.693,371.836,499.596,205.633,557.679,159.661,70.278,159.661,340.472,319.185,352.059,19.723,24.404,19.723 +1162,36.951,198.156,550.593,374.598,509.139,203.935,549.131,165.801,81.254,165.801,338.596,319.776,350.518,19.611,25.470,19.611 +1163,36.981,196.894,541.789,375.515,518.554,202.904,540.897,171.557,93.066,171.557,335.890,319.774,348.041,18.887,25.089,18.887 +1164,37.012,196.655,533.814,376.413,526.873,203.070,533.461,176.845,104.775,176.845,334.036,321.119,346.885,19.529,25.937,19.529 +1165,37.043,196.973,525.091,376.582,534.782,203.819,525.205,0.955,115.883,0.955,332.104,322.051,345.797,25.180,26.027,25.180 +1166,37.075,198.461,516.836,376.092,542.449,205.404,517.641,6.613,127.133,6.613,330.842,323.402,344.820,24.503,26.896,24.503 +1167,37.105,199.885,510.077,375.600,548.729,207.359,511.572,11.310,138.164,11.310,329.279,324.142,344.523,24.907,26.198,24.907 +1168,37.135,199.885,510.077,375.600,548.729,207.359,511.572,11.310,138.164,11.310,329.279,324.142,344.523,24.907,26.198,24.907 +1169,37.164,201.033,504.876,374.767,555.280,209.549,507.146,14.931,149.073,14.931,326.459,325.158,344.085,25.251,26.166,25.251 +1170,37.197,202.497,499.508,373.522,560.560,211.512,502.570,18.759,159.693,18.759,325.066,326.648,344.107,25.655,25.467,25.655 +1171,37.231,204.870,493.632,372.410,566.222,214.441,497.711,23.081,169.536,23.081,323.557,327.905,344.365,25.079,23.955,25.079 +1172,37.264,206.948,489.096,371.016,571.207,217.005,494.085,26.384,178.683,26.384,322.027,328.258,344.480,25.626,23.856,25.626 +1173,37.297,209.014,485.091,369.146,575.778,219.269,490.890,29.489,7.270,29.489,320.932,331.205,344.494,25.693,24.032,25.693 +1174,37.330,211.329,481.485,366.897,580.697,221.699,488.109,32.568,15.350,32.568,319.804,332.768,344.413,26.055,22.614,26.055 +1175,37.363,212.472,480.574,364.679,585.760,222.963,487.425,33.147,22.896,33.147,319.786,333.247,344.846,24.947,19.887,24.947 +1176,37.399,211.132,474.013,361.961,590.570,225.664,484.437,35.651,29.396,35.651,309.453,333.872,345.222,24.160,19.560,24.160 +1177,37.430,206.425,464.858,359.112,594.770,228.064,481.979,38.351,34.939,38.351,290.325,334.653,345.511,22.587,18.899,22.587 +1178,37.461,186.536,443.565,356.628,598.664,228.986,481.984,42.147,40.179,42.147,231.357,334.187,345.866,18.090,19.457,18.090 +1179,37.492,170.860,421.606,353.671,601.819,230.350,480.388,44.657,45.377,44.657,178.874,334.524,346.140,17.758,19.305,17.758 +1180,37.524,205.301,450.347,350.938,604.395,232.208,478.514,46.312,50.368,46.312,268.166,335.201,346.073,17.981,19.235,17.981 +1181,37.555,220.052,462.194,348.593,606.779,233.812,477.423,47.902,55.548,47.902,304.812,334.769,345.862,18.472,19.062,18.472 +1182,37.586,224.481,463.986,346.659,608.459,235.074,476.219,49.112,61.390,49.112,313.663,335.197,346.027,18.964,19.553,18.964 +1183,37.617,230.054,464.663,344.666,609.636,237.781,473.834,49.883,67.834,49.883,321.462,334.799,345.447,23.997,19.619,23.997 +1184,37.647,231.165,464.647,343.520,610.224,238.253,473.227,50.440,74.876,50.440,323.066,334.511,345.325,25.039,20.351,25.039 +1185,37.678,231.967,465.807,341.760,610.162,237.789,472.850,50.421,82.569,50.421,325.880,333.436,344.155,23.955,19.832,23.955 +1186,37.710,231.749,465.885,341.132,609.507,237.301,472.565,50.274,90.603,50.274,325.994,331.118,343.366,24.005,19.809,24.005 +1187,37.742,231.489,466.635,340.819,608.551,236.585,472.675,49.844,99.118,49.844,326.329,331.267,342.134,24.242,20.491,24.242 +1188,37.772,230.589,467.094,341.870,607.278,235.708,473.007,49.118,107.716,49.118,326.359,330.227,342.000,24.104,23.391,24.104 +1189,37.802,230.589,467.094,341.870,607.278,235.708,473.007,49.118,107.716,49.118,326.359,330.227,342.000,24.104,23.391,24.104 +1190,37.831,229.632,467.756,343.312,605.159,234.665,473.392,48.229,116.682,48.229,326.187,328.257,341.299,24.279,24.354,24.279 +1191,37.864,228.403,468.833,345.212,603.233,233.539,474.352,47.058,125.754,47.058,325.770,327.470,340.849,24.454,26.131,24.454 +1192,37.896,226.755,469.809,347.439,600.910,232.263,475.448,45.674,134.569,45.674,324.698,326.047,340.462,24.506,26.380,24.506 +1193,37.929,224.865,471.106,350.210,598.157,230.506,476.561,44.040,143.865,44.040,325.460,325.845,341.156,24.623,27.139,24.623 +1194,37.961,223.509,473.387,353.140,595.266,228.992,478.358,42.189,153.178,42.189,326.195,325.610,340.997,24.958,27.133,24.958 +1195,37.993,221.257,475.385,356.245,592.323,227.201,480.377,40.018,162.225,40.018,326.099,326.682,341.624,24.912,27.046,24.912 +1196,38.025,218.743,477.536,359.749,588.663,225.346,482.624,37.619,171.469,37.619,325.699,327.437,342.371,25.201,25.960,25.201 +1197,38.055,215.634,480.094,362.992,584.547,223.076,485.303,34.992,0.415,34.992,324.907,328.086,343.074,25.314,24.891,25.314 +1198,38.086,212.309,483.006,366.569,580.660,221.066,488.479,32.005,9.211,32.005,323.829,330.440,344.483,25.334,24.224,25.334 +1199,38.116,203.900,486.200,369.962,576.143,218.314,493.407,26.565,18.268,26.565,313.049,332.029,345.279,24.597,21.444,24.597 +1200,38.146,173.603,478.996,372.896,572.648,215.941,498.767,25.032,27.748,25.032,253.491,332.495,346.946,18.579,20.474,18.579 +1201,38.177,203.733,496.990,374.338,569.082,214.384,501.143,21.301,36.310,21.301,324.551,332.994,347.414,23.211,20.487,23.211 +1202,38.207,202.868,502.721,376.565,562.911,212.226,505.569,16.928,45.731,16.928,328.264,331.741,347.829,24.749,20.189,24.749 +1203,38.238,201.412,508.647,377.158,556.180,209.447,510.433,12.529,54.713,12.529,330.819,330.628,347.282,24.730,20.419,24.730 +1204,38.269,201.412,508.647,377.158,556.180,209.447,510.433,12.529,54.713,12.529,330.819,330.628,347.282,24.730,20.419,24.730 +1205,38.298,199.463,515.412,378.500,548.000,207.206,516.465,7.740,63.435,7.740,332.332,328.702,347.961,24.936,24.150,24.936 +1206,38.330,197.673,525.612,378.313,539.402,204.807,525.894,2.261,72.646,2.261,333.530,325.597,347.808,20.497,24.816,20.497 +1207,38.364,196.923,533.512,377.558,529.809,203.536,533.172,177.055,83.019,177.055,334.689,322.975,347.931,19.627,24.855,19.627 +1208,38.397,196.844,542.498,376.100,519.598,203.118,541.521,171.150,92.663,171.150,335.894,319.678,348.592,19.174,25.902,19.174 +1209,38.428,197.900,551.883,373.810,508.388,203.897,550.287,165.099,102.095,165.099,337.534,318.205,349.946,19.257,26.051,19.257 +1210,38.460,199.164,561.961,369.935,497.089,205.539,559.455,158.537,111.991,158.537,337.931,316.617,351.631,19.409,24.911,19.409 +1211,38.490,200.166,573.177,364.697,486.185,208.585,568.668,151.829,122.005,151.829,334.017,316.727,353.118,19.469,24.062,19.469 +1212,38.521,193.902,591.741,358.128,474.611,213.364,578.237,145.244,130.882,145.244,308.649,315.932,356.024,21.361,21.486,21.361 +1213,38.553,160.651,638.528,350.755,464.375,218.544,585.460,137.490,139.205,137.490,201.489,316.045,358.560,19.105,19.849,19.105 +1214,38.583,220.458,600.262,342.380,455.587,225.885,593.885,130.400,145.823,130.400,344.896,316.715,361.644,19.055,21.479,19.055 +1215,38.614,230.675,607.500,333.344,448.244,234.674,601.300,122.822,155.171,122.822,349.455,316.252,364.210,19.484,20.779,19.484 +1216,38.647,241.613,614.155,322.528,442.594,244.403,608.163,114.974,163.229,114.974,352.927,315.793,366.146,19.645,19.149,19.645 +1217,38.679,253.165,620.251,310.318,438.260,254.987,614.132,106.582,171.656,106.582,355.928,313.948,368.698,20.472,19.788,20.472 +1218,38.711,264.670,624.106,297.440,436.514,265.459,618.442,97.931,0.627,97.931,357.764,311.069,369.201,24.874,18.389,24.874 +1219,38.742,278.500,625.500,283.707,434.589,278.500,619.795,90.000,8.366,90.000,359.000,309.611,370.411,23.000,22.202,23.000 +1220,38.772,296.310,624.513,269.299,436.319,295.696,619.717,82.711,16.829,82.711,360.862,308.446,370.531,25.813,21.460,25.813 +1221,38.802,296.310,624.513,269.299,436.319,295.696,619.717,82.711,16.829,82.711,360.862,308.446,370.531,25.813,21.460,25.813 +1222,38.833,308.757,622.959,255.700,439.600,307.310,618.019,73.667,26.565,73.667,361.167,305.894,371.464,22.237,21.019,22.237 +1223,38.865,323.825,617.557,241.735,445.872,321.558,612.684,65.048,35.455,65.048,359.083,304.685,369.832,22.534,19.648,22.534 +1224,38.898,338.434,615.408,229.649,453.403,332.663,606.649,56.622,43.919,56.622,348.309,302.801,369.287,20.906,18.462,20.906 +1225,38.930,359.513,615.058,219.040,462.724,344.408,597.515,49.273,52.948,49.273,321.589,302.800,367.889,22.390,18.684,22.390 +1226,38.963,358.908,591.519,210.510,472.597,353.851,587.235,40.272,60.803,40.272,353.686,304.195,366.941,25.094,20.848,25.094 +1227,38.995,365.053,579.125,201.469,483.374,360.304,576.123,32.300,70.071,32.300,356.398,304.146,367.635,25.435,19.968,25.435 +1228,39.028,369.687,567.007,195.744,494.144,365.071,564.882,24.727,78.465,24.727,356.619,306.159,366.783,25.158,18.956,25.158 +1229,39.059,372.833,555.119,192.580,505.436,368.470,553.740,17.542,86.594,17.542,355.387,308.062,364.539,25.970,20.404,25.970 +1230,39.090,370.133,543.282,188.840,517.029,365.711,542.454,10.608,94.850,10.608,348.058,311.342,357.056,24.990,20.037,24.990 +1231,39.120,368.431,534.486,186.661,527.766,363.422,534.127,4.098,102.899,4.098,343.484,314.210,353.528,21.677,20.470,21.677 +1232,39.150,367.456,525.363,185.712,537.648,362.403,525.557,177.804,110.735,177.804,343.936,316.481,354.050,20.803,21.003,20.803 +1233,39.180,367.885,516.681,184.680,546.383,362.093,517.495,171.998,119.381,171.998,347.718,317.797,359.415,20.546,22.165,20.546 +1234,39.212,367.422,508.604,185.734,554.300,362.635,509.759,166.437,126.931,166.437,354.976,318.396,364.825,20.036,21.180,20.036 +1235,39.243,364.416,501.312,187.558,561.536,359.520,502.977,161.218,134.397,161.218,352.976,318.299,363.319,20.146,20.959,20.146 +1236,39.274,362.602,494.279,190.211,567.874,356.530,496.915,156.537,141.608,156.537,348.401,317.831,361.640,19.939,21.573,19.939 +1237,39.311,363.328,486.767,193.554,572.632,354.006,491.658,152.316,147.144,152.316,338.352,318.095,359.408,19.462,19.513,19.462 +1238,39.354,396.063,458.925,196.992,578.483,350.631,486.297,148.932,153.883,148.932,252.268,316.226,358.349,18.344,19.327,18.344 +1239,39.388,364.698,471.168,200.726,583.290,347.987,482.764,145.244,160.698,145.244,315.909,315.578,356.591,19.249,20.337,19.249 +1240,39.421,353.609,472.020,204.520,586.104,345.192,478.723,141.464,169.182,141.464,332.353,314.770,353.871,19.438,21.484,19.438 +1241,39.457,347.532,470.325,209.470,590.749,342.276,475.036,138.132,177.732,138.132,338.138,313.586,352.254,19.446,21.894,19.446 +1242,39.489,343.000,468.000,213.775,595.884,338.723,472.277,135.000,6.809,135.000,339.411,314.305,351.509,19.799,24.394,19.799 +1243,39.520,338.830,466.070,217.503,599.990,335.282,469.976,132.245,16.113,132.245,340.303,316.075,350.858,19.028,25.064,19.028 +1244,39.551,335.620,463.668,221.132,604.393,331.951,468.101,129.611,25.313,129.611,339.797,317.165,351.307,19.286,26.032,19.286 +1245,39.583,332.421,462.041,224.543,608.439,328.783,466.829,127.221,34.875,127.221,339.611,318.762,351.638,19.295,26.104,19.295 +1246,39.614,329.431,460.699,227.234,611.776,325.994,465.601,125.028,44.029,125.028,340.796,321.028,352.769,19.263,25.955,19.263 +1247,39.645,326.617,459.649,231.372,613.240,323.828,463.936,123.043,53.427,123.043,340.910,323.208,351.139,19.288,21.088,19.288 +1248,39.676,324.055,458.998,233.350,616.034,321.243,463.630,121.264,62.430,121.264,340.938,325.184,351.776,19.141,21.330,19.141 +1249,39.707,321.954,458.331,234.727,618.907,319.017,463.470,119.745,71.065,119.745,341.716,328.567,353.554,19.101,21.058,19.101 +1250,39.738,319.831,457.300,234.694,619.795,316.847,462.861,118.213,80.272,118.213,341.633,328.297,354.256,19.341,19.853,19.341 +1251,39.769,319.831,457.300,234.694,619.795,316.847,462.861,118.213,80.272,118.213,341.633,328.297,354.256,19.341,19.853,19.341 +1252,39.797,317.987,456.950,235.394,620.981,315.082,462.660,116.959,89.221,116.959,341.672,328.160,354.486,19.371,18.896,19.371 +1253,39.828,316.505,456.546,235.914,620.917,313.798,462.124,115.890,98.043,115.890,341.327,329.089,353.727,19.423,19.437,19.423 +1254,39.861,316.447,454.313,236.141,620.338,313.150,461.403,114.934,106.504,114.934,337.533,329.116,353.172,18.796,20.632,18.796 +1255,39.893,345.968,386.070,237.063,620.530,311.758,460.826,114.590,115.378,114.590,188.180,327.392,352.604,18.063,20.560,18.063 +1256,39.924,321.822,436.193,238.220,620.002,311.190,460.201,113.887,124.903,113.887,298.809,325.972,351.324,18.143,20.427,18.143 +1257,39.955,317.010,445.205,238.847,619.291,310.933,459.500,113.030,133.781,113.030,319.448,324.744,350.514,19.628,20.757,19.628 +1258,39.986,315.246,449.304,239.586,618.428,311.051,459.174,113.025,142.745,113.025,327.592,323.210,349.039,19.603,20.515,19.603 +1259,40.017,314.095,450.373,240.656,617.959,310.733,458.440,112.620,151.300,112.620,330.923,321.707,348.402,19.077,22.247,19.077 +1260,40.048,313.466,451.345,241.572,617.673,310.670,458.115,112.443,161.114,112.443,333.056,320.700,347.705,19.530,24.202,19.530 +1261,40.079,313.420,451.590,242.727,617.734,310.790,457.921,112.563,169.563,112.563,333.682,319.752,347.393,19.399,25.104,19.399 +1262,40.110,313.711,452.009,243.486,617.825,311.175,458.044,112.791,178.819,112.791,333.962,319.159,347.054,19.182,26.159,19.182 +1263,40.140,314.052,452.379,243.655,618.128,311.545,458.229,113.199,7.479,113.199,334.700,319.950,347.428,19.302,27.256,19.302 +1264,40.170,314.052,452.379,243.655,618.128,311.545,458.229,113.199,7.479,113.199,334.700,319.950,347.428,19.302,27.256,19.302 +1265,40.199,314.598,453.201,243.072,618.453,312.153,458.778,113.679,16.434,113.679,335.773,321.617,347.952,19.198,26.718,19.198 +1266,40.231,315.654,454.070,242.395,618.880,313.199,459.440,114.567,24.905,114.567,337.077,322.474,348.887,19.073,26.400,19.073 +1267,40.263,316.346,454.516,241.701,619.427,313.777,459.973,115.201,33.147,115.201,337.870,322.845,349.933,18.948,26.058,18.948 +1268,40.295,317.401,455.467,239.931,619.708,314.690,460.973,116.211,41.496,116.211,338.592,323.711,350.866,19.048,25.581,19.048 +1269,40.328,319.134,456.242,239.387,618.396,316.617,461.107,117.350,49.635,117.350,339.422,324.548,350.377,19.388,21.334,19.388 +1270,40.359,320.624,456.974,236.968,618.065,317.906,461.943,118.673,57.492,118.673,340.297,325.729,351.624,18.946,20.893,18.946 +1271,40.391,322.389,458.274,234.362,617.691,319.539,463.182,120.141,65.422,120.141,341.424,327.306,352.775,18.802,21.290,18.802 +1272,40.422,324.218,459.777,230.939,616.955,321.181,464.679,121.777,72.678,121.777,342.412,328.219,353.946,18.793,20.790,18.793 +1273,40.452,326.538,461.192,226.908,614.596,323.464,465.805,123.690,80.760,123.690,343.637,327.319,354.723,18.860,20.010,18.860 +1274,40.482,329.357,462.813,223.466,612.484,326.013,467.444,125.838,88.091,125.838,343.818,327.285,355.242,19.276,19.156,19.276 +1275,40.513,332.316,464.610,219.299,609.661,328.713,469.204,128.108,95.117,128.108,344.410,326.648,356.086,19.363,19.177,19.363 +1276,40.545,335.085,466.690,215.217,606.255,331.518,470.823,130.792,101.815,130.792,346.110,326.005,357.029,18.916,19.377,18.916 +1277,40.576,338.234,469.815,211.001,602.490,334.753,473.463,133.652,108.066,133.652,347.476,325.418,357.560,19.394,19.319,19.394 +1278,40.606,342.532,472.252,206.856,597.498,338.399,476.112,136.950,113.688,136.950,346.667,324.317,357.977,19.586,19.254,19.586 +1279,40.637,346.240,476.349,202.523,591.788,342.555,479.364,140.711,118.843,140.711,349.618,323.149,359.140,19.279,19.601,19.279 +1280,40.667,346.240,476.349,202.523,591.788,342.555,479.364,140.711,118.843,140.711,349.618,323.149,359.140,19.279,19.601,19.279 +1281,40.699,351.220,480.186,198.356,585.891,346.356,483.616,144.808,123.323,144.808,347.880,321.769,359.785,19.425,19.837,19.425 +1282,40.732,355.800,485.618,194.649,578.994,350.697,488.628,149.470,127.282,149.470,348.787,320.787,360.637,19.105,19.630,19.105 +1283,40.763,359.922,491.654,191.062,571.053,354.649,494.196,154.259,130.630,154.259,349.756,319.320,361.465,19.479,19.943,19.479 +1284,40.794,363.174,499.273,188.052,562.523,358.652,500.949,159.656,133.431,159.656,353.083,317.817,362.729,19.722,20.799,19.722 +1285,40.826,367.786,507.234,185.434,552.903,362.512,508.596,165.520,135.818,165.520,354.172,316.196,365.065,19.551,22.181,19.551 +1286,40.857,368.011,516.076,184.106,542.267,362.160,516.906,171.922,137.726,171.922,347.881,315.551,359.701,20.657,22.198,20.657 +1287,40.889,366.984,525.371,183.772,531.396,361.472,525.514,178.522,139.254,178.522,344.556,314.116,355.584,22.812,21.982,22.812 +1288,40.920,367.876,535.289,184.919,520.008,362.637,534.762,5.744,140.528,5.744,346.076,312.541,356.606,24.386,21.251,24.386 +1289,40.951,369.663,546.739,187.341,507.656,364.744,545.590,13.145,142.041,13.145,352.661,311.789,362.763,25.126,22.837,25.126 +1290,40.982,369.931,561.172,191.675,495.884,365.375,559.350,21.801,142.633,21.801,359.878,310.451,369.692,25.626,19.335,25.626 +1291,41.012,365.651,572.898,197.538,483.729,361.216,570.403,29.358,143.578,29.358,360.124,309.569,370.301,25.766,19.281,25.766 +1292,41.044,358.420,586.312,205.756,472.481,354.492,583.202,38.367,144.713,38.367,360.661,308.525,370.682,25.645,18.310,25.645 +1293,41.074,349.302,597.876,215.586,462.106,345.817,594.192,46.591,145.928,46.591,360.760,308.146,370.903,23.463,18.351,23.463 +1294,41.105,338.313,607.910,226.933,452.953,335.403,603.677,55.491,147.288,55.491,361.033,307.932,371.307,24.000,18.716,24.000 +1295,41.135,338.313,607.910,226.933,452.953,335.403,603.677,55.491,147.288,55.491,361.033,307.932,371.307,24.000,18.716,24.000 +1296,41.164,324.214,616.680,240.112,445.184,321.932,611.912,64.432,148.588,64.432,360.855,307.656,371.427,21.568,18.541,21.568 +1297,41.197,308.616,623.372,254.154,439.401,307.000,617.927,73.474,150.007,73.474,361.005,308.229,372.366,23.472,18.845,23.472 +1298,41.230,293.608,625.862,269.144,436.264,292.894,620.154,82.875,151.352,82.875,359.329,308.861,370.832,27.040,18.673,27.040 +1299,41.262,279.977,626.153,284.661,434.836,280.289,620.096,92.949,152.904,92.949,358.349,309.972,370.479,27.037,18.737,27.037 +1300,41.293,258.933,623.305,300.640,436.294,260.225,616.742,101.145,154.573,101.145,356.335,311.404,369.713,25.688,18.670,25.688 +1301,41.324,246.553,617.116,315.805,440.054,249.040,610.988,112.084,156.371,112.084,353.765,313.154,366.990,20.709,19.869,20.709 +1302,41.355,232.984,608.573,330.000,446.000,236.508,602.811,121.450,158.199,121.450,351.600,314.939,365.109,20.078,20.426,20.078 +1303,41.386,221.639,599.258,342.943,454.841,226.407,593.727,130.764,160.183,130.764,347.965,316.966,362.569,19.849,19.934,19.849 +1304,41.417,212.053,588.376,353.868,465.089,218.028,583.343,139.891,162.160,139.891,344.532,319.099,360.155,19.689,19.914,19.689 +1305,41.447,204.335,576.729,363.168,476.324,212.030,572.030,148.591,164.213,148.591,339.703,321.014,357.736,20.249,20.435,20.249 +1306,41.478,198.234,565.171,370.222,488.764,207.849,561.147,157.291,166.474,157.291,334.610,323.066,355.456,18.831,20.428,18.831 +1307,41.509,186.747,555.081,375.115,501.947,205.393,550.272,165.539,169.380,165.539,314.316,324.962,352.827,18.806,19.473,18.806 +1308,41.539,123.534,548.616,378.619,514.294,204.835,538.860,173.157,171.498,173.157,187.177,325.604,350.946,18.666,19.617,18.666 +1309,41.570,123.534,548.616,378.619,514.294,204.835,538.860,173.157,171.498,173.157,187.177,325.604,350.946,18.666,19.617,18.666 +1310,41.599,161.452,528.324,378.652,527.872,204.797,528.714,0.516,173.660,0.516,260.989,324.227,347.682,18.423,20.430,18.423 +1311,41.631,181.568,515.531,377.584,539.977,206.165,518.170,6.124,176.760,6.124,296.056,324.236,345.533,24.192,19.196,24.192 +1312,41.662,192.211,503.094,376.513,551.859,209.586,507.683,14.797,179.444,14.797,309.406,325.169,345.348,25.904,20.426,25.904 +1313,41.695,200.397,495.263,374.603,562.013,213.437,500.389,21.458,1.693,21.458,317.052,329.477,345.076,26.226,21.705,26.226 +1314,41.727,206.651,487.706,370.956,572.084,217.612,493.332,27.170,4.289,27.170,320.126,330.148,344.768,25.729,23.459,25.729 +1315,41.757,213.590,481.861,366.417,581.129,222.115,487.400,33.011,7.502,33.011,323.809,331.382,344.141,25.499,23.387,25.499 +1316,41.787,219.382,476.521,360.672,589.723,226.474,482.184,38.610,10.784,38.610,325.789,332.124,343.940,25.185,23.997,25.185 +1317,41.818,225.260,472.208,354.529,596.882,231.188,477.893,43.798,14.036,43.798,326.335,333.729,342.762,25.075,23.768,25.075 +1318,41.849,230.863,468.058,348.773,603.409,235.933,473.852,48.814,17.418,48.814,328.217,332.941,343.616,24.365,24.490,24.365 +1319,41.882,236.232,464.697,342.151,608.900,240.516,470.522,53.666,21.218,53.666,328.920,333.655,343.382,24.225,24.117,24.225 +1320,41.916,241.879,461.886,335.595,613.982,245.461,467.645,58.123,24.542,58.123,330.167,333.777,343.732,23.929,24.021,23.929 +1321,41.948,246.683,459.165,329.310,618.357,249.967,465.475,62.511,28.009,62.511,330.260,332.993,344.488,22.610,24.608,22.610 +1322,41.982,251.552,456.838,322.766,621.885,254.415,463.498,66.737,31.379,66.737,330.509,332.918,345.009,22.075,23.942,22.075 +1323,42.014,256.080,455.018,316.057,625.203,258.547,462.095,70.780,34.924,70.780,330.908,332.609,345.897,20.791,24.641,20.791 +1324,42.047,261.384,453.618,310.085,626.768,263.186,460.253,74.805,38.660,74.805,332.223,332.494,345.973,20.599,23.270,20.599 +1325,42.078,266.323,452.531,303.564,628.791,267.689,459.414,78.774,42.474,78.774,332.207,332.152,346.241,20.164,23.675,20.164 +1326,42.107,270.919,451.840,296.286,630.736,271.833,458.777,82.488,45.830,82.488,333.367,332.387,347.360,19.077,23.404,19.077 +1327,42.137,276.085,451.090,290.299,630.898,276.515,457.862,86.367,49.699,86.367,333.551,332.131,347.123,19.168,21.847,19.168 +1328,42.168,276.085,451.090,290.299,630.898,276.515,457.862,86.367,49.699,86.367,333.551,332.131,347.123,19.168,21.847,19.168 +1329,42.199,281.000,450.500,283.842,631.141,281.000,457.070,90.000,53.569,90.000,335.000,331.983,348.141,18.000,21.187,18.000 +1330,42.232,286.029,450.305,276.922,631.444,285.582,457.132,93.752,57.282,93.752,335.329,331.724,349.011,18.616,20.896,18.616 +1331,42.265,291.463,450.528,269.911,630.773,290.582,457.137,97.595,61.080,97.595,336.357,331.510,349.690,18.899,20.654,18.899 +1332,42.297,296.280,451.267,263.181,629.676,295.045,457.533,101.149,64.564,101.149,337.336,330.709,350.110,19.386,21.156,19.386 +1333,42.329,301.996,452.681,256.429,628.445,300.408,458.503,105.255,68.772,105.255,338.983,330.551,351.052,19.295,20.877,19.295 +1334,42.360,307.169,453.525,250.524,626.386,305.226,459.164,109.009,73.120,109.009,339.912,331.132,351.841,19.289,22.240,19.289 +1335,42.391,312.862,455.155,242.853,624.648,310.302,461.128,113.199,76.239,113.199,340.740,331.549,353.737,19.039,20.457,19.039 +1336,42.422,318.266,457.539,235.378,620.525,315.498,462.864,117.466,80.628,117.466,341.685,328.632,353.687,19.231,19.963,19.231 +1337,42.452,324.163,459.923,228.491,616.001,321.125,464.803,121.904,84.661,121.904,343.131,327.842,354.628,19.172,19.643,19.172 +1338,42.482,330.167,463.036,221.749,611.947,326.519,467.971,126.479,88.636,126.479,343.837,326.265,356.112,19.161,19.542,19.161 +1339,42.513,336.171,467.323,215.186,605.619,332.428,471.549,131.532,92.526,131.532,344.907,325.522,356.197,18.907,19.408,18.907 +1340,42.544,342.399,471.727,209.081,599.624,338.104,475.796,136.548,96.532,136.548,345.821,324.999,357.653,19.180,19.097,19.180 +1341,42.575,347.600,477.088,203.408,592.353,343.452,480.356,141.766,100.469,141.766,348.068,323.790,358.630,18.971,19.357,18.971 +1342,42.605,353.354,483.178,197.148,583.925,348.609,486.243,147.139,104.470,147.139,349.159,322.311,360.457,19.810,20.552,19.810 +1343,42.635,353.354,483.178,197.148,583.925,348.609,486.243,147.139,104.470,147.139,349.159,322.311,360.457,19.810,20.552,19.810 +1344,42.666,358.390,490.296,193.250,575.242,353.665,492.688,153.146,108.249,153.146,350.222,320.975,360.815,19.650,19.220,19.650 +1345,42.698,363.306,498.662,189.795,565.520,358.648,500.422,159.305,111.882,159.305,351.966,319.770,361.925,19.624,19.951,19.624 +1346,42.731,368.033,507.651,187.083,554.777,363.165,508.879,165.838,116.152,165.838,353.879,317.986,363.921,19.637,20.183,19.637 +1347,42.762,367.629,518.483,185.528,543.080,362.736,519.127,172.504,119.437,172.504,347.766,316.433,357.637,20.794,20.923,20.794 +1348,42.793,367.000,527.500,185.093,531.212,362.046,527.500,0.000,123.104,0.000,344.000,314.833,353.907,23.000,20.743,23.000 +1349,42.824,368.650,538.950,186.725,518.414,363.854,538.265,8.130,126.714,8.130,346.624,313.409,356.312,24.607,21.277,24.607 +1350,42.854,370.847,551.097,189.625,505.310,366.355,549.842,15.607,130.426,15.607,355.062,312.053,364.390,25.493,20.243,25.493 +1351,42.885,368.771,564.880,194.263,492.727,364.609,563.033,23.923,134.415,23.923,359.335,310.526,368.443,24.873,18.045,24.873 +1352,42.915,362.917,578.794,200.796,479.359,358.764,576.085,33.111,137.182,33.111,360.391,309.293,370.308,25.019,18.674,25.019 +1353,42.948,355.201,591.347,209.742,467.793,351.231,587.810,41.704,140.481,41.704,360.324,308.453,370.958,24.586,18.464,24.586 +1354,42.981,344.017,602.962,220.868,457.503,340.877,599.083,51.009,143.771,51.009,361.123,307.992,371.104,23.910,18.705,23.910 +1355,43.014,331.185,612.608,233.421,448.608,328.596,608.083,60.229,146.997,60.229,360.944,307.833,371.370,22.705,18.407,22.705 +1356,43.045,316.331,620.189,247.721,441.885,314.468,615.215,69.468,150.101,69.468,360.837,307.990,371.459,21.893,18.422,21.893 +1357,43.076,298.114,625.393,263.034,437.568,296.972,619.919,78.215,152.949,78.215,359.694,308.187,370.878,27.248,18.134,27.248 +1358,43.106,286.241,626.020,278.492,435.351,286.150,620.209,89.099,156.129,89.099,358.286,309.272,369.910,26.044,18.573,26.044 +1359,43.135,286.241,626.020,278.492,435.351,286.150,620.209,89.099,156.129,89.099,358.286,309.272,369.910,26.044,18.573,26.044 +1360,43.165,269.424,624.971,295.078,435.705,270.391,618.973,99.157,159.076,99.157,357.572,310.517,369.723,26.974,18.461,26.974 +1361,43.199,251.367,619.125,311.545,439.183,253.405,613.148,108.821,162.051,108.821,354.210,312.156,366.840,20.675,18.370,20.675 +1362,43.233,237.141,611.304,326.651,445.064,240.163,605.761,118.593,165.027,118.593,352.354,314.157,364.981,20.112,18.299,20.112 +1363,43.265,224.899,601.634,340.162,452.438,229.129,596.256,128.182,167.800,128.182,349.687,316.392,363.371,20.254,19.469,20.254 +1364,43.299,214.633,591.009,352.116,462.234,220.266,585.844,137.478,171.051,137.478,346.155,318.111,361.441,19.729,20.332,19.729 +1365,43.332,206.885,579.077,362.041,473.951,213.487,574.675,146.310,174.806,146.310,343.082,319.863,358.952,19.969,19.646,19.969 +1366,43.364,201.204,567.297,369.992,486.124,209.223,563.546,154.929,178.815,154.929,339.153,322.200,356.859,20.102,19.899,20.102 +1367,43.396,197.032,555.470,375.536,499.405,206.391,552.605,162.979,3.417,162.979,335.041,323.975,354.617,20.314,19.935,20.314 +1368,43.428,195.406,543.421,379.005,511.469,205.339,541.810,170.789,8.471,170.789,332.441,326.084,352.566,19.102,21.507,19.102 +1369,43.458,194.863,532.602,381.463,524.145,205.715,532.163,177.686,14.162,177.686,330.135,328.425,351.857,19.661,22.346,19.661 +1370,43.488,196.152,521.921,381.258,536.685,207.087,522.564,3.366,21.297,3.366,327.493,329.572,349.400,24.605,22.061,24.605 +1371,43.518,198.264,511.703,379.702,548.854,209.082,513.626,10.081,28.879,10.081,326.328,331.088,348.303,24.570,19.512,24.570 +1372,43.549,201.279,504.415,377.655,559.464,211.514,507.271,15.593,36.656,15.593,326.860,331.602,348.111,24.304,19.142,24.304 +1373,43.580,204.867,496.363,374.500,569.000,214.896,500.232,21.092,45.000,21.092,325.817,331.633,347.317,25.778,19.092,25.778 +1374,43.612,209.300,489.400,370.376,577.296,218.510,494.005,26.565,54.689,26.565,325.571,332.700,346.165,25.491,19.517,25.491 +1375,43.642,213.225,485.203,366.037,584.452,221.168,489.902,30.606,64.134,30.606,327.194,332.740,345.651,25.869,20.069,25.869 +1376,43.673,216.658,480.560,361.476,590.362,224.050,485.735,34.992,73.811,34.992,327.119,332.559,345.166,25.396,20.973,25.396 +1377,43.703,220.508,476.839,356.937,595.359,227.052,482.051,38.530,84.382,38.530,327.645,331.433,344.377,25.627,22.090,25.627 +1378,43.735,220.508,476.839,356.937,595.359,227.052,482.051,38.530,84.382,38.530,327.645,331.433,344.377,25.627,22.090,25.627 +1379,43.765,223.580,473.940,351.638,599.345,229.353,479.105,41.820,94.764,41.820,327.122,330.438,342.614,24.711,21.592,24.711 +1380,43.796,226.920,471.095,347.730,602.345,232.173,476.378,45.167,105.675,45.167,326.707,329.679,341.608,24.722,23.373,24.722 +1381,43.827,229.484,468.393,344.190,604.846,234.454,473.882,47.842,116.656,47.842,326.662,328.705,341.471,24.333,24.851,24.333 +1382,43.859,231.868,465.714,341.161,606.624,236.744,471.608,50.400,127.598,50.400,325.878,327.596,341.178,23.935,26.176,23.935 +1383,43.890,234.807,463.752,338.500,608.198,239.293,469.671,52.842,138.532,52.842,325.793,326.707,340.648,24.471,26.296,24.471 +1384,43.921,236.849,462.154,336.472,610.011,241.301,468.508,54.980,149.613,54.980,325.482,326.724,341.000,23.618,26.990,23.618 +1385,43.951,239.232,460.849,334.674,611.431,243.385,467.233,56.957,160.750,56.957,326.074,326.716,341.306,23.292,27.154,23.292 +1386,43.983,241.695,460.292,333.242,613.204,245.457,466.488,58.736,171.911,58.736,327.445,327.390,341.940,23.049,27.530,23.049 +1387,44.014,243.655,459.479,331.324,614.072,247.048,465.467,60.461,2.827,60.461,327.911,328.131,341.676,23.172,28.052,23.172 +1388,44.045,245.877,459.637,329.904,615.902,248.760,465.018,61.821,13.984,61.821,330.429,331.057,342.638,22.793,27.306,22.793 +1389,44.076,247.549,459.228,327.971,618.769,250.523,465.099,63.130,25.419,63.130,331.005,332.338,344.166,22.634,25.504,22.634 +1390,44.106,248.602,458.142,327.055,619.925,251.821,464.804,64.213,36.435,64.213,330.007,332.787,344.806,22.409,22.215,22.409 +1391,44.136,248.602,458.142,327.055,619.925,251.821,464.804,64.213,36.435,64.213,330.007,332.787,344.806,22.409,22.215,22.409 +1392,44.165,249.579,456.573,325.418,621.615,253.236,464.525,65.308,47.372,65.308,328.255,334.054,345.760,22.819,20.685,22.819 +1393,44.199,247.714,452.817,322.583,623.259,253.309,464.648,64.690,58.109,64.690,319.828,335.396,346.002,21.478,19.434,21.478 +1394,44.232,225.698,401.629,320.139,624.947,252.906,465.115,66.801,68.988,66.801,208.646,334.998,346.786,17.858,18.942,17.858 +1395,44.265,248.242,449.230,318.113,625.896,254.572,464.398,67.348,80.356,67.348,314.151,335.555,347.023,20.107,19.795,20.107 +1396,44.296,251.352,452.637,315.982,625.494,255.707,463.346,67.874,90.678,67.874,322.698,333.130,345.819,22.019,20.141,22.019 +1397,44.329,252.036,453.376,311.923,624.885,255.649,462.355,68.082,101.310,68.082,324.218,333.986,343.575,21.832,22.553,21.832 +1398,44.360,252.619,453.863,312.261,622.901,255.603,461.372,68.325,112.521,68.325,325.909,330.227,342.068,21.719,22.035,21.719 +1399,44.392,252.911,454.255,313.413,621.939,255.626,461.116,68.410,125.134,68.410,326.847,328.425,341.606,21.675,23.504,21.675 +1400,44.423,252.757,454.011,314.149,621.183,255.500,460.932,68.377,136.469,68.377,326.283,326.794,341.173,21.700,25.266,21.700 +1401,44.453,252.631,454.053,315.421,620.174,255.301,460.754,68.276,147.995,68.276,326.274,326.161,340.701,21.715,26.606,21.715 +1402,44.483,251.949,454.232,317.148,619.706,254.720,461.092,68.009,159.199,68.009,326.104,325.604,340.901,21.344,27.329,21.344 +1403,44.515,251.879,454.872,318.966,619.720,254.642,461.589,67.643,170.272,67.643,326.898,326.185,341.424,22.159,27.823,22.159 +1404,44.549,251.453,455.443,320.950,619.028,254.145,461.808,67.079,0.943,67.079,327.827,326.252,341.649,21.994,28.070,21.994 +1405,44.581,251.336,456.723,322.768,619.486,253.887,462.590,66.501,11.856,66.501,329.906,328.945,342.699,22.608,28.411,22.608 +1406,44.612,250.512,457.621,324.037,620.609,253.252,463.700,65.739,22.642,65.739,330.940,331.155,344.274,22.201,26.750,22.201 +1407,44.643,249.750,458.557,325.791,620.605,252.542,464.499,64.832,32.672,64.832,331.745,332.564,344.875,22.190,24.356,22.190 +1408,44.673,248.148,457.893,327.527,620.470,251.740,465.246,63.965,42.101,63.965,329.106,333.059,345.474,22.405,21.553,22.405 +1409,44.703,248.148,457.893,327.527,620.470,251.740,465.246,63.965,42.101,63.965,329.106,333.059,345.474,22.405,21.553,22.405 +1410,44.733,246.408,457.300,328.327,620.642,250.811,465.978,63.101,50.648,63.101,326.539,334.345,346.000,22.852,19.950,22.852 +1411,44.764,235.256,441.761,328.276,620.829,249.282,466.709,60.656,58.255,60.656,288.872,335.411,346.113,20.934,19.100,20.934 +1412,44.795,229.863,437.354,329.090,620.630,247.012,468.222,60.945,65.924,60.945,275.554,335.268,346.178,18.066,19.037,18.066 +1413,44.827,239.831,454.979,330.067,619.692,247.267,467.754,59.797,73.887,59.797,316.366,334.884,345.930,22.586,19.470,22.586 +1414,44.858,239.684,459.284,331.138,618.293,245.383,468.470,58.188,82.786,58.188,323.421,334.031,345.042,22.322,19.164,22.322 +1415,44.889,238.462,461.192,332.479,615.961,243.526,468.789,56.310,92.189,56.310,325.332,332.407,343.593,23.297,19.336,23.297 +1416,44.919,236.357,462.856,334.903,613.085,241.157,469.507,54.181,101.868,54.181,326.165,331.265,342.570,24.340,21.785,24.340 +1417,44.950,233.792,465.235,338.369,610.055,238.456,471.171,51.843,112.087,51.843,326.771,329.592,341.871,24.095,23.823,24.095 +1418,44.981,230.751,466.972,341.942,605.914,235.536,472.521,49.230,122.367,49.230,326.365,327.423,341.018,24.194,25.030,24.194 +1419,45.012,227.785,469.379,346.243,602.070,232.954,474.820,46.469,132.709,46.469,325.561,325.914,340.569,24.541,26.453,24.541 +1420,45.043,224.436,471.981,350.684,597.419,230.035,477.272,43.379,143.318,43.379,325.012,325.407,340.420,24.779,27.316,24.779 +1421,45.073,221.224,475.234,355.381,592.788,227.028,480.114,40.061,153.775,40.061,326.340,325.590,341.506,24.839,26.877,24.839 +1422,45.103,217.694,478.889,360.001,587.564,224.082,483.622,36.535,164.313,36.535,326.273,326.639,342.175,25.263,26.650,25.263 +1423,45.132,217.694,478.889,360.001,587.564,224.082,483.622,36.535,164.313,36.535,326.273,326.639,342.175,25.263,26.650,25.263 +1424,45.161,214.097,482.848,364.710,582.317,221.497,487.605,32.735,174.828,32.735,325.776,327.102,343.369,25.836,26.036,25.836 +1425,45.194,208.695,486.641,369.246,575.458,218.591,492.035,28.594,4.905,28.594,321.871,329.137,344.412,25.312,24.522,25.312 +1426,45.225,196.974,490.793,373.337,568.753,215.328,498.252,22.116,15.112,22.116,306.226,330.988,345.850,23.689,21.541,23.689 +1427,45.256,191.729,498.080,375.981,563.493,212.474,505.369,19.359,25.525,19.359,303.080,332.460,347.058,18.895,20.165,18.895 +1428,45.287,200.321,505.834,377.954,557.267,210.783,508.493,14.261,35.451,14.261,326.478,332.232,348.067,24.939,19.544,24.939 +1429,45.317,199.391,513.765,378.995,549.521,208.292,515.147,8.830,45.955,8.830,329.898,330.373,347.913,24.761,20.668,24.761 +1430,45.347,198.233,522.565,379.481,540.349,205.961,522.972,3.013,56.094,3.013,332.908,328.389,348.385,24.650,22.885,24.650 +1431,45.378,197.332,533.695,378.844,530.175,204.181,533.347,177.089,65.889,177.089,335.482,325.298,349.198,19.094,25.219,19.094 +1432,45.408,197.458,543.183,376.903,519.070,203.656,542.170,170.713,77.276,170.713,336.847,321.801,349.408,19.229,25.204,19.229 +1433,45.438,198.434,553.745,373.620,507.478,204.191,552.089,163.951,88.854,163.951,338.334,317.317,350.316,20.050,24.855,20.050 +1434,45.468,198.434,553.745,373.620,507.478,204.191,552.089,163.951,88.854,163.951,338.334,317.317,350.316,20.050,24.855,20.050 +1435,45.497,200.696,563.804,369.204,495.542,206.066,561.514,156.909,99.593,156.909,340.206,316.303,351.883,19.467,25.053,19.467 +1436,45.530,203.578,575.201,363.544,483.995,209.745,571.597,149.697,110.292,149.697,339.686,314.698,353.972,19.499,24.552,19.499 +1437,45.561,203.053,590.649,355.111,472.188,214.865,581.492,142.217,121.751,142.217,325.731,315.044,355.620,19.679,22.370,19.679 +1438,45.592,167.269,644.750,346.689,461.288,221.136,589.466,134.256,131.290,134.256,204.474,314.285,358.849,18.695,19.257,18.695 +1439,45.623,224.563,605.060,336.738,451.601,229.882,597.937,126.754,139.723,126.754,344.594,315.335,362.373,19.351,23.121,19.351 +1440,45.654,236.318,611.533,326.752,444.822,239.714,605.322,118.673,150.362,118.673,351.003,315.042,365.161,19.549,20.156,19.549 +1441,45.685,248.162,617.690,314.783,439.685,250.434,611.543,110.288,160.283,110.288,353.910,314.745,367.017,19.719,19.644,19.719 +1442,45.717,263.297,623.526,301.717,436.733,264.598,617.487,102.158,170.015,102.158,356.682,313.163,369.035,24.304,18.962,24.304 +1443,45.749,273.671,624.944,287.500,435.000,273.903,619.402,92.394,0.000,92.394,358.523,311.000,369.618,25.438,20.000,25.438 +1444,45.780,288.335,625.802,273.696,435.320,287.762,620.493,83.841,9.423,83.841,360.547,308.571,371.227,25.099,21.325,25.099 +1445,45.810,305.588,623.353,259.127,437.639,304.314,618.257,75.964,19.359,75.964,361.863,306.956,372.369,24.739,22.592,24.739 +1446,45.840,320.325,618.240,244.864,444.083,318.477,613.886,67.001,30.411,67.001,360.674,304.770,370.134,22.225,20.342,22.225 +1447,45.870,320.325,618.240,244.864,444.083,318.477,613.886,67.001,30.411,67.001,360.674,304.770,370.134,22.225,20.342,22.225 +1448,45.900,335.218,613.448,231.847,451.945,331.459,607.397,58.151,40.365,58.151,354.976,303.176,369.223,23.270,18.477,23.270 +1449,45.933,390.638,656.650,220.264,461.475,342.338,599.453,49.821,50.964,49.821,218.631,302.200,368.357,20.374,19.293,20.374 +1450,45.966,358.167,593.027,211.546,471.042,352.801,588.343,41.119,60.210,41.119,352.863,303.259,367.108,25.085,21.231,25.085 +1451,45.997,364.746,579.617,201.983,482.702,360.074,576.613,32.747,70.821,32.747,356.420,304.292,367.529,25.668,19.383,25.668 +1452,46.030,369.928,567.073,195.751,494.214,365.111,564.849,24.787,80.272,24.787,356.130,306.444,366.741,25.857,19.712,25.857 +1453,46.061,372.549,554.781,192.000,506.000,368.161,553.420,17.230,90.000,17.230,355.415,308.000,364.603,25.311,20.000,25.311 +1454,46.091,370.052,542.141,188.798,518.222,365.607,541.363,9.935,99.684,9.935,347.273,312.526,356.299,25.155,21.242,25.155 +1455,46.121,367.998,531.571,185.337,529.004,362.655,531.289,3.025,109.486,3.025,343.683,315.290,354.384,24.547,22.074,24.547 +1456,46.151,366.870,522.423,184.019,539.066,361.555,522.756,176.413,119.055,176.413,345.766,316.931,356.417,22.690,22.437,22.690 +1457,46.182,367.829,514.006,184.255,547.916,362.065,514.998,170.235,128.089,170.235,349.935,317.566,361.633,20.605,22.378,20.605 +1458,46.215,366.564,505.671,186.433,556.427,361.942,506.981,164.174,137.150,164.174,355.073,317.145,364.682,20.219,21.550,20.219 +1459,46.246,364.481,497.293,188.951,563.697,358.231,499.717,158.806,145.651,158.806,348.513,317.006,361.921,20.417,22.254,20.417 +1460,46.277,425.951,458.680,192.744,569.974,355.004,492.675,154.398,152.784,154.398,202.120,316.256,359.462,18.468,19.285,18.468 +1461,46.308,372.662,474.844,196.981,576.943,351.662,487.121,149.689,161.384,149.689,309.087,314.969,357.738,18.621,19.672,18.621 +1462,46.338,372.662,474.844,196.981,576.943,351.662,487.121,149.689,161.384,149.689,309.087,314.969,357.738,18.621,19.672,18.621 +1463,46.367,359.818,474.300,201.668,582.570,348.409,482.316,144.909,170.233,144.909,327.520,313.819,355.407,19.595,20.833,19.595 +1464,46.399,350.640,472.779,207.000,588.000,344.763,477.603,140.620,0.000,140.620,337.851,312.000,353.055,19.614,22.000,19.614 +1465,46.430,344.326,469.845,212.301,594.192,340.306,473.645,136.618,10.713,136.618,340.602,313.971,351.664,19.504,25.069,19.504 +1466,46.462,339.719,466.559,217.372,600.317,336.040,470.523,132.856,22.036,132.856,340.904,315.515,351.721,19.150,25.734,19.150 +1467,46.493,335.271,463.360,221.821,605.632,331.492,467.973,129.321,32.525,129.321,340.051,317.602,351.977,19.216,25.747,19.216 +1468,46.524,330.700,461.192,226.186,610.835,327.077,466.180,125.995,43.091,125.995,340.334,319.953,352.663,19.112,25.748,19.112 +1469,46.555,326.317,459.589,231.267,613.934,323.370,464.150,122.872,53.616,122.872,340.722,322.997,351.582,19.254,21.270,19.254 +1470,46.585,322.225,458.116,235.056,617.481,319.405,463.019,119.908,63.812,119.908,340.585,325.606,351.897,19.423,21.183,19.423 +1471,46.616,318.647,456.792,237.845,621.046,315.755,462.424,117.181,73.523,117.181,340.728,329.684,353.390,19.138,20.772,19.138 +1472,46.648,314.826,455.773,239.425,622.559,312.181,461.535,114.656,84.123,114.656,340.707,329.172,353.389,19.488,19.661,19.488 +1473,46.679,311.299,455.192,241.993,624.431,309.035,460.731,112.231,93.900,112.231,341.823,330.143,353.792,19.174,19.500,19.174 +1474,46.711,309.810,451.022,244.276,624.306,306.653,459.704,109.983,103.487,109.983,333.541,330.379,352.018,18.454,20.247,18.454 +1475,46.742,317.231,417.069,247.212,624.644,303.627,458.500,108.178,114.349,108.178,263.686,328.563,350.902,18.094,20.083,18.094 +1476,46.772,305.935,441.991,250.248,624.669,301.403,457.703,106.091,124.287,106.091,316.499,327.036,349.205,18.644,20.618,18.644 +1477,46.802,305.935,441.991,250.248,624.669,301.403,457.703,106.091,124.287,106.091,316.499,327.036,349.205,18.644,20.618,18.644 +1478,46.831,301.473,446.483,253.826,624.310,299.007,456.555,103.761,134.421,103.761,326.633,324.681,347.373,19.426,20.869,19.426 +1479,46.863,298.425,447.514,257.411,624.508,296.679,455.748,101.970,144.904,101.970,329.634,323.694,346.469,19.323,22.268,19.323 +1480,46.895,295.749,447.814,261.278,624.602,294.427,455.173,100.185,155.225,100.185,330.288,322.256,345.242,19.284,23.258,19.284 +1481,46.926,293.216,447.759,265.569,625.261,292.140,454.882,98.584,165.174,98.584,330.464,321.629,344.872,19.011,25.760,19.011 +1482,46.956,290.862,447.853,269.235,625.168,290.049,454.452,97.025,175.764,97.025,330.660,321.490,343.959,18.815,27.259,18.815 +1483,46.988,288.559,448.032,273.008,626.308,287.913,454.861,95.408,5.839,95.408,330.457,323.099,344.176,18.674,28.262,18.674 +1484,47.019,286.472,448.789,276.108,627.587,286.026,455.187,93.985,16.113,93.985,332.518,324.999,345.345,18.418,27.797,18.418 +1485,47.050,284.577,449.342,278.725,629.137,284.272,455.949,92.643,26.010,92.643,333.291,326.954,346.519,18.457,27.178,18.457 +1486,47.080,282.338,450.397,281.515,630.370,282.216,457.112,91.042,35.707,91.042,333.054,328.409,346.485,18.397,26.746,18.397 +1487,47.111,280.577,450.514,283.811,631.198,280.604,457.100,89.767,44.789,89.767,335.046,329.546,348.219,18.321,24.908,18.321 +1488,47.141,278.664,450.569,286.790,631.021,278.868,457.496,88.315,53.731,88.315,333.503,331.809,347.364,18.815,21.249,18.815 +1489,47.171,277.038,450.753,288.103,631.946,277.410,458.056,87.083,62.190,87.083,333.790,332.920,348.416,19.249,20.917,19.249 +1490,47.202,277.038,450.753,288.103,631.946,277.410,458.056,87.083,62.190,87.083,333.790,332.920,348.416,19.249,20.917,19.249 +1491,47.233,275.442,450.183,289.350,632.689,276.053,458.746,85.914,69.871,85.914,331.726,334.898,348.896,19.379,20.015,19.379 +1492,47.265,273.218,448.020,289.108,632.737,274.289,458.895,84.375,76.666,84.375,327.062,336.686,348.916,18.283,21.126,18.283 +1493,47.298,263.432,375.908,289.240,633.032,272.957,459.249,83.480,83.008,83.480,181.249,335.009,349.016,17.855,22.848,17.855 +1494,47.330,267.675,430.449,291.000,632.000,271.454,459.110,82.488,90.000,82.488,290.104,334.000,347.922,17.976,22.000,17.976 +1495,47.361,268.273,443.154,294.094,631.770,270.728,459.282,81.347,97.352,81.347,315.455,334.165,348.082,19.364,23.163,19.364 +1496,47.392,267.125,447.686,294.011,630.257,269.100,458.908,80.018,104.265,80.018,323.358,332.770,346.147,19.752,21.305,19.752 +1497,47.423,265.354,449.115,295.405,627.627,267.163,458.008,78.503,112.620,78.503,325.538,330.077,343.690,20.080,20.923,20.080 +1498,47.453,262.900,450.438,298.680,626.112,264.699,458.121,76.827,122.005,76.827,326.848,328.493,342.630,19.453,21.624,19.453 +1499,47.483,261.000,451.331,302.605,624.969,262.930,458.549,75.030,132.466,75.030,327.098,326.814,342.040,20.690,24.206,20.690 +1500,47.514,258.636,452.050,306.923,623.446,260.751,459.029,73.142,141.825,73.142,326.896,325.761,341.483,21.026,25.113,21.026 +1501,47.545,255.798,452.884,311.122,622.079,258.172,459.817,71.102,151.654,71.102,326.676,324.965,341.331,20.695,26.426,20.695 +1502,47.576,253.543,453.907,315.735,620.679,256.202,460.827,68.981,161.372,68.981,326.312,324.786,341.138,21.654,26.693,21.654 +1503,47.606,251.038,455.413,320.371,619.195,253.846,461.955,66.770,171.301,66.770,327.222,325.323,341.462,21.975,27.483,21.975 +1504,47.637,251.038,455.413,320.371,619.195,253.846,461.955,66.770,171.301,66.770,327.222,325.323,341.462,21.975,27.483,21.975 +1505,47.668,248.524,457.419,324.959,617.329,251.305,463.248,64.499,0.699,64.499,328.645,326.195,341.561,22.625,27.413,22.625 +1506,47.700,245.865,459.072,329.667,616.399,249.135,465.206,61.940,10.724,61.940,328.703,329.268,342.606,23.513,28.092,23.513 +1507,47.733,242.856,461.074,333.823,614.784,246.344,466.932,59.233,20.781,59.233,329.948,331.473,343.584,23.104,25.555,23.104 +1508,47.764,239.507,462.822,338.569,612.590,243.642,469.058,56.454,30.358,56.454,329.200,332.555,344.166,23.726,22.583,23.726 +1509,47.795,234.730,462.700,342.888,610.936,241.143,471.335,53.399,39.860,53.399,323.964,333.664,345.474,24.770,20.584,24.770 +1510,47.825,182.131,411.906,345.920,609.069,235.728,475.810,50.013,49.112,50.013,179.017,334.721,345.826,17.820,19.905,17.820 +1511,47.856,222.126,466.965,349.391,605.866,232.831,478.305,46.647,58.968,46.647,314.354,334.942,345.544,19.019,20.105,19.019 +1512,47.888,223.537,471.999,352.669,601.934,231.256,479.167,42.879,68.749,42.879,323.947,334.227,345.015,24.706,20.245,24.706 +1513,47.918,220.861,476.374,356.175,596.669,227.508,481.752,38.976,78.808,38.976,327.516,332.417,344.617,25.662,21.498,25.662 +1514,47.949,217.056,481.368,358.755,590.507,223.018,485.499,34.721,88.438,34.721,328.247,329.477,342.754,25.026,20.347,25.026 +1515,47.981,213.399,486.316,362.460,583.280,219.041,489.607,30.256,98.130,30.256,329.100,327.956,342.163,25.625,22.769,25.625 +1516,48.013,209.161,491.362,366.600,575.200,215.500,494.381,25.463,108.435,25.463,328.297,325.715,342.339,25.968,25.298,25.968 +1517,48.043,205.475,497.877,369.940,566.779,212.042,500.319,20.397,118.408,20.397,328.312,325.157,342.323,25.426,26.327,25.426 +1518,48.074,201.969,505.246,373.104,556.896,208.852,507.087,14.971,129.048,14.971,328.839,323.255,343.088,25.086,27.428,25.086 +1519,48.104,198.653,513.058,376.145,546.396,206.695,514.364,9.222,139.054,9.222,328.492,322.023,344.787,24.804,27.225,24.804 +1520,48.134,198.653,513.058,376.145,546.396,206.695,514.364,9.222,139.054,9.222,328.492,322.023,344.787,24.804,27.225,24.804 +1521,48.163,195.429,522.565,377.555,535.249,204.851,522.993,2.603,148.915,2.603,327.298,322.767,346.163,25.428,25.774,25.428 +1522,48.197,187.678,534.913,378.086,523.714,203.958,533.710,175.774,158.029,175.774,316.133,323.483,348.782,22.937,23.535,22.937 +1523,48.229,148.354,551.493,377.449,512.267,204.352,541.538,169.919,165.750,169.919,237.345,324.277,351.096,18.685,19.846,18.685 +1524,48.260,195.665,554.889,375.733,500.740,206.211,551.835,163.849,173.264,163.849,332.127,324.469,354.088,19.680,21.707,19.680 +1525,48.290,200.197,565.164,372.495,490.669,208.780,561.409,156.371,1.580,156.371,337.947,323.401,356.685,19.697,20.654,19.697 +1526,48.321,205.829,575.230,366.608,480.364,212.216,571.378,148.903,10.397,148.903,343.509,323.526,358.425,19.355,21.810,19.355 +1527,48.352,211.890,585.517,358.846,470.447,216.949,581.409,140.925,19.058,140.925,347.166,322.018,360.201,19.215,21.602,19.215 +1528,48.383,219.689,595.821,349.438,460.620,223.977,591.195,132.829,27.553,132.829,349.489,319.055,362.104,19.365,23.128,19.365 +1529,48.415,228.969,605.293,337.862,452.581,232.349,600.363,124.433,35.754,124.433,351.146,315.979,363.101,19.387,23.892,19.387 +1530,48.446,240.562,613.005,325.306,446.199,242.783,608.445,115.974,44.356,115.974,353.856,311.854,364.000,19.686,25.343,19.686 +1531,48.477,252.561,619.671,311.380,441.126,253.963,615.078,106.978,53.842,106.978,356.667,308.268,366.273,20.559,23.818,20.559 +1532,48.507,265.047,625.275,296.000,438.500,265.820,619.524,97.656,63.435,97.656,355.257,305.894,366.862,25.310,21.019,25.310 +1533,48.537,265.047,625.275,296.000,438.500,265.820,619.524,97.656,63.435,97.656,355.257,305.894,366.862,25.310,21.019,25.310 +1534,48.567,281.500,630.500,280.222,437.970,281.500,621.485,90.000,72.897,90.000,349.000,304.893,367.030,21.000,19.263,21.000 +1535,48.599,306.145,694.586,264.061,439.855,292.668,621.959,79.487,82.222,79.487,220.798,304.906,368.533,26.729,18.294,26.729 +1536,48.632,313.717,624.434,248.930,443.051,311.347,617.250,71.746,90.988,71.746,354.840,304.127,369.969,21.489,19.032,21.489 +1537,48.664,328.345,615.841,235.123,449.256,325.599,610.567,62.492,100.037,62.492,357.833,305.630,369.725,23.358,19.206,23.358 +1538,48.698,341.208,606.864,222.215,457.073,337.639,602.048,53.460,108.677,53.460,358.416,307.365,370.403,24.305,20.041,24.305 +1539,48.729,352.349,595.605,212.023,466.806,348.533,591.840,44.614,117.356,44.614,359.259,309.100,369.981,25.776,18.394,25.776 +1540,48.760,360.798,583.638,202.640,477.323,356.471,580.503,35.924,125.811,35.924,359.529,310.625,370.216,25.742,18.662,25.742 +1541,48.790,366.741,570.377,195.229,488.210,362.277,568.046,27.566,134.222,27.566,359.991,311.271,370.061,26.228,18.831,26.228 +1542,48.821,371.126,558.097,189.902,499.868,366.249,556.366,19.532,143.366,19.532,359.825,312.384,370.176,25.651,20.535,25.651 +1543,48.851,369.312,544.985,186.517,511.086,364.454,543.966,11.853,152.152,11.853,351.865,312.337,361.793,25.699,21.654,25.699 +1544,48.882,367.843,533.797,185.296,522.430,362.725,533.393,4.505,160.346,4.505,345.215,311.582,355.483,24.935,21.727,24.935 +1545,48.914,368.966,525.157,185.370,532.004,362.362,525.422,177.702,168.125,177.702,341.010,311.075,354.228,20.752,21.506,20.752 +1546,48.946,417.765,507.324,186.886,542.562,363.354,515.140,171.826,175.486,171.826,247.208,309.406,357.147,20.524,19.676,20.524 +1547,48.977,377.705,504.137,189.883,551.868,364.629,507.634,165.027,3.576,165.027,333.410,308.773,360.482,20.220,19.961,20.220 +1548,49.007,368.958,496.209,193.345,561.739,360.771,499.307,159.270,11.834,159.270,339.862,309.685,357.369,20.293,22.558,20.293 +1549,49.037,368.958,496.209,193.345,561.739,360.771,499.307,159.270,11.834,159.270,339.862,309.685,357.369,20.293,22.558,20.293 +1550,49.066,361.234,489.972,197.608,570.975,356.883,492.129,153.638,21.898,153.638,345.732,311.229,355.444,19.332,22.441,19.332 +1551,49.098,356.228,483.283,202.874,579.400,352.633,485.516,148.160,31.950,148.160,345.041,312.699,353.505,19.977,21.213,19.977 +1552,49.129,350.883,477.179,208.147,587.716,347.479,479.728,143.178,41.785,143.178,344.007,314.730,352.512,19.619,21.402,19.619 +1553,49.159,345.512,472.258,212.982,595.430,341.983,475.386,138.440,51.605,138.440,342.896,317.994,352.328,19.285,21.383,19.285 +1554,49.190,340.118,468.170,217.894,603.058,336.406,472.027,133.905,61.157,133.905,342.474,323.060,353.181,18.670,21.137,18.670 +1555,49.223,334.588,464.920,221.271,608.760,330.912,469.369,129.560,70.346,129.560,343.044,324.901,354.586,19.106,20.315,19.106 +1556,49.253,329.164,462.335,224.970,613.329,325.742,467.135,125.487,79.992,125.487,343.286,326.543,355.076,19.399,19.869,19.399 +1557,49.284,324.034,460.171,228.694,616.978,320.917,465.224,121.664,88.939,121.664,343.277,328.147,355.151,19.351,19.423,19.351 +1558,49.316,319.171,457.723,232.841,619.333,316.300,463.102,118.085,98.219,118.085,342.057,328.810,354.251,18.946,19.443,18.946 +1559,49.347,315.776,454.028,236.980,620.796,312.442,461.332,114.533,106.821,114.533,336.743,329.303,352.801,18.761,20.636,18.761 +1560,49.378,326.687,412.256,242.148,622.823,307.971,459.765,111.501,116.757,111.501,249.547,327.815,351.672,17.988,20.515,17.988 +1561,49.408,309.412,442.129,246.678,623.267,304.163,458.076,108.220,125.858,108.220,316.190,326.522,349.766,18.625,20.029,18.625 +1562,49.438,303.328,446.521,251.750,623.750,300.579,456.829,104.931,135.000,104.931,326.394,323.855,347.732,19.582,20.506,19.582 +1563,49.468,303.328,446.521,251.750,623.750,300.579,456.829,104.931,135.000,104.931,326.394,323.855,347.732,19.582,20.506,19.582 +1564,49.499,298.367,447.395,257.531,624.462,296.613,455.699,101.929,144.819,101.929,329.419,323.278,346.394,19.292,22.189,19.292 +1565,49.531,294.014,447.399,263.189,624.926,292.820,454.920,99.022,154.231,99.022,329.871,322.429,345.100,19.332,23.383,19.332 +1566,49.563,289.976,447.720,269.091,625.426,289.209,454.620,96.340,162.947,96.340,330.080,322.101,343.966,18.663,25.314,18.663 +1567,49.594,285.955,447.716,275.103,626.333,285.523,454.634,93.576,172.983,93.576,330.168,322.368,344.031,18.589,26.615,18.589 +1568,49.625,282.234,447.519,280.889,627.023,282.118,454.975,90.895,2.111,90.895,329.179,322.666,344.093,18.607,28.294,18.607 +1569,49.655,278.594,449.088,286.043,627.735,278.799,455.859,88.264,11.547,88.264,330.485,325.197,344.033,18.810,28.813,18.810 +1570,49.686,274.860,450.206,290.798,628.489,275.367,456.708,85.544,20.761,85.544,331.877,327.732,344.921,18.722,27.765,18.722 +1571,49.717,271.230,451.291,295.966,628.950,272.077,457.899,82.694,29.358,82.694,332.077,328.802,345.400,19.049,26.311,19.049 +1572,49.748,267.862,451.876,300.495,629.303,269.116,458.999,80.018,37.635,80.018,331.867,330.896,346.331,19.752,25.732,19.752 +1573,49.779,264.372,452.707,305.543,628.472,265.975,459.803,77.266,45.779,77.266,331.935,332.406,346.484,20.142,22.707,20.142 +1574,49.809,260.904,453.441,310.200,627.600,262.970,460.922,74.558,53.130,74.558,330.953,333.600,346.474,20.849,20.800,20.849 +1575,49.839,256.950,453.350,313.815,627.230,259.925,462.276,71.565,59.647,71.565,328.244,334.639,347.061,21.187,19.910,21.187 +1576,49.869,256.950,453.350,313.815,627.230,259.925,462.276,71.565,59.647,71.565,328.244,334.639,347.061,21.187,19.910,21.187 +1577,49.899,248.091,442.276,316.491,626.311,256.703,463.453,67.868,65.212,67.868,301.046,335.526,346.767,20.242,19.415,20.242 +1578,49.930,238.701,434.086,320.306,624.909,252.516,465.352,66.161,71.107,66.161,278.320,335.216,346.685,17.975,19.196,17.975 +1579,49.963,244.048,451.708,324.223,622.675,251.145,465.807,63.283,77.300,63.283,314.379,334.829,345.950,22.497,19.373,22.497 +1580,49.994,242.021,457.603,328.169,619.773,247.512,467.121,60.018,84.030,60.018,323.087,333.944,345.063,23.021,19.508,23.021 +1581,50.025,238.845,461.126,332.328,616.035,243.805,468.610,56.464,91.507,56.464,325.623,332.253,343.580,24.085,19.546,24.085 +1582,50.061,234.420,464.973,336.865,611.811,239.090,471.079,52.595,99.462,52.595,326.995,331.100,342.370,23.130,20.385,23.130 +1583,50.091,229.966,467.498,341.959,606.987,235.121,473.336,48.552,107.650,48.552,326.221,330.232,341.798,24.287,22.091,24.287 +1584,50.121,225.752,471.598,348.142,601.542,231.244,476.951,44.264,115.942,44.264,326.013,328.367,341.350,24.694,25.227,24.694 +1585,50.151,220.907,475.592,353.534,594.233,226.589,480.311,39.710,124.367,39.710,326.113,325.909,340.885,25.100,25.525,25.100 +1586,50.182,216.282,480.444,359.148,587.001,222.409,484.717,34.886,132.963,34.886,326.393,324.404,341.333,25.346,26.685,25.346 +1587,50.214,212.023,486.585,364.502,579.266,218.462,490.264,29.745,141.647,29.745,327.080,324.400,341.911,25.055,27.382,25.055 +1588,50.245,207.783,492.774,369.494,570.367,214.875,495.990,24.394,150.344,24.394,327.492,324.723,343.067,25.776,26.898,25.776 +1589,50.275,202.950,500.150,373.211,560.210,211.326,502.942,18.435,159.334,18.435,325.715,325.377,343.373,25.614,26.395,25.614 +1590,50.306,197.274,507.777,376.991,550.693,208.885,510.379,12.633,167.378,12.633,321.910,326.368,345.707,25.152,23.616,25.152 +1591,50.336,197.274,507.777,376.991,550.693,208.885,510.379,12.633,167.378,12.633,321.910,326.368,345.707,25.152,23.616,25.152 +1592,50.368,182.114,518.593,377.913,539.631,205.867,521.147,6.137,175.810,6.137,298.291,324.475,346.071,19.479,20.484,19.479 +1593,50.399,182.955,530.227,377.717,527.828,203.847,530.048,179.510,4.635,179.510,305.980,324.772,347.765,19.204,20.985,19.204 +1594,50.431,194.931,540.720,380.073,518.324,205.164,539.360,172.430,13.178,172.430,331.666,328.486,352.311,19.477,24.527,19.477 +1595,50.463,197.893,551.712,377.678,506.571,205.889,549.591,165.141,21.644,165.141,337.606,327.358,354.152,19.469,23.341,19.469 +1596,50.494,201.092,562.812,372.745,496.298,207.183,560.284,157.453,30.181,157.453,341.694,325.638,354.884,19.457,22.316,19.457 +1597,50.526,205.958,574.378,366.930,484.313,211.260,571.259,149.534,37.794,149.534,344.216,322.490,356.520,19.977,23.384,19.977 +1598,50.558,211.467,585.214,358.731,473.173,216.091,581.500,141.223,46.591,141.223,346.228,318.390,358.090,19.385,24.543,19.385 +1599,50.589,219.665,595.653,348.800,462.635,223.425,591.596,132.829,56.004,132.829,348.557,314.257,359.620,19.628,24.911,19.628 +1600,50.621,229.407,605.294,336.671,453.877,232.131,601.281,124.160,65.556,124.160,351.648,310.849,361.347,19.446,24.332,19.446 +1601,50.653,240.910,613.908,322.973,446.735,243.035,609.439,115.436,74.745,115.436,352.635,308.023,362.533,19.867,23.067,19.867 +1602,50.684,252.502,623.723,307.796,441.410,254.730,616.012,106.113,83.558,106.113,348.889,306.889,364.941,21.349,20.851,21.349 +1603,50.719,261.667,655.922,291.818,438.514,265.820,619.804,96.560,92.603,96.560,293.436,305.367,366.146,25.408,18.299,25.408 +1604,50.751,285.570,629.527,276.708,437.173,285.474,621.068,89.351,100.349,89.351,351.045,305.984,367.965,25.066,20.325,25.066 +1605,50.783,296.997,627.065,260.935,438.152,295.652,620.121,79.046,109.231,79.046,356.354,306.426,370.501,26.888,20.882,26.888 +1606,50.816,315.286,621.898,246.928,442.930,313.248,616.155,70.463,117.979,70.463,358.670,307.821,370.859,21.949,18.794,21.949 +1607,50.852,329.966,614.137,232.995,449.370,327.225,609.177,61.065,126.791,61.065,359.564,309.401,370.897,23.254,18.422,23.254 +1608,50.885,342.873,604.239,220.600,457.625,339.613,600.098,51.795,135.444,51.795,360.586,309.780,371.126,24.482,18.527,24.482 +1609,50.921,353.502,592.704,209.677,467.746,349.778,589.270,42.689,144.171,42.689,360.623,310.625,370.753,25.410,18.621,25.410 +1610,50.955,362.077,579.885,200.898,478.704,357.935,577.123,33.690,152.668,33.690,360.555,310.416,370.511,25.794,18.586,25.794 +1611,50.987,368.097,566.975,194.359,490.506,363.549,564.838,25.174,161.075,25.174,359.430,309.649,369.479,25.938,18.324,25.938 +1612,51.020,371.719,553.909,190.038,502.212,366.713,552.387,16.907,169.934,16.907,356.797,309.458,367.262,25.760,20.065,25.760 +1613,51.054,372.365,542.879,187.922,514.029,364.241,541.592,9.000,178.202,9.000,340.467,308.319,356.919,21.622,20.474,21.622 +1614,51.088,400.106,530.305,187.517,526.355,363.526,528.868,2.251,6.710,2.251,278.728,307.468,351.944,21.861,20.097,21.861 +1615,51.120,374.099,519.321,188.628,537.525,364.233,520.336,174.123,15.030,174.123,333.049,308.104,352.885,21.197,22.401,21.197 +1616,51.152,370.620,508.927,191.049,549.270,365.687,510.049,167.196,24.050,167.196,347.856,308.559,357.974,20.345,22.732,20.345 +1617,51.184,365.961,499.727,194.170,561.034,362.109,501.085,160.585,31.759,160.585,348.464,310.063,356.634,20.038,22.066,20.038 +1618,51.218,361.361,491.209,198.610,571.592,357.707,492.958,154.414,40.156,154.414,346.807,311.759,354.910,19.545,21.233,19.545 +1619,51.252,356.148,483.678,203.413,581.302,352.548,485.893,148.392,48.400,148.392,345.577,314.249,354.031,20.178,21.323,20.178 +1620,51.285,350.458,477.124,208.577,591.115,346.551,480.083,142.869,56.310,142.869,344.245,319.230,354.048,19.157,20.801,19.157 +1621,51.318,344.261,471.971,212.823,598.846,340.336,475.573,137.450,63.579,137.450,343.944,321.559,354.598,19.335,20.592,19.335 +1622,51.350,337.929,467.561,217.547,605.323,334.198,471.635,132.483,71.284,132.483,343.703,324.122,354.750,19.159,20.443,19.159 +1623,51.383,332.140,463.682,222.389,611.119,328.388,468.553,127.611,78.959,127.611,342.958,326.334,355.256,19.089,19.965,19.089 +1624,51.416,325.985,460.712,227.590,615.890,322.632,465.862,123.062,86.038,123.062,342.878,327.294,355.170,19.252,19.564,19.252 +1625,51.448,320.342,457.997,232.679,619.085,317.334,463.492,118.697,92.889,118.697,341.734,328.692,354.262,19.502,19.342,19.502 +1626,51.479,315.146,455.687,237.816,621.888,312.394,461.668,114.714,99.302,114.714,340.283,329.633,353.451,19.191,20.290,19.191 +1627,51.508,310.999,452.155,242.483,623.765,307.928,460.146,111.022,104.381,111.022,335.288,330.091,352.411,18.786,19.994,18.786 +1628,51.545,328.598,380.061,248.126,625.684,303.106,458.856,107.928,109.900,107.928,185.672,328.931,351.303,18.021,19.950,18.021 +1629,51.590,305.251,432.966,253.346,626.639,298.897,457.635,104.444,115.408,104.444,299.101,328.387,350.049,17.989,20.053,17.989 +1630,51.624,297.406,442.050,258.303,627.071,294.629,456.720,100.719,121.608,100.719,318.407,327.757,348.269,18.697,19.719,18.697 +1631,51.657,291.903,445.504,263.862,626.891,290.584,455.723,97.352,128.418,97.352,325.751,326.421,346.360,19.260,19.101,19.260 +1632,51.694,286.485,446.232,270.522,627.023,285.892,455.120,93.814,136.273,93.814,327.274,324.780,345.089,18.559,20.800,18.559 +1633,51.725,281.000,448.000,277.636,627.225,281.000,455.613,90.000,143.683,90.000,328.000,324.393,343.225,18.000,23.814,18.000 +1634,51.756,276.471,448.244,284.586,626.648,276.892,455.618,86.730,152.949,86.730,327.608,323.422,342.380,19.283,25.070,19.283 +1635,51.786,271.412,448.771,291.746,626.206,272.286,456.053,83.157,161.323,83.157,327.848,323.217,342.518,18.904,26.299,18.904 +1636,51.818,266.925,449.646,298.875,625.546,268.297,457.115,79.592,169.603,79.592,327.180,323.688,342.367,19.811,26.512,19.811 +1637,51.852,262.289,451.556,306.103,624.123,263.990,458.326,75.893,177.754,75.893,328.162,324.496,342.124,20.397,27.645,20.397 +1638,51.885,257.966,453.473,313.081,622.777,260.026,459.893,72.213,6.429,72.213,329.126,326.329,342.610,21.511,27.418,21.511 +1639,51.918,253.390,456.036,319.490,621.285,255.804,462.119,68.353,14.948,68.353,329.778,329.230,342.867,21.956,26.886,21.956 +1640,51.951,248.708,458.100,326.063,619.143,251.668,464.266,64.359,23.614,64.359,329.957,331.190,343.637,22.538,24.983,22.538 +1641,51.985,243.961,460.595,332.773,616.670,247.561,466.875,60.173,31.849,60.173,330.194,332.093,344.670,23.030,23.231,23.030 +1642,52.018,238.107,461.588,339.365,613.378,243.612,469.702,55.847,40.082,55.847,325.699,333.663,345.309,24.261,20.780,24.261 +1643,52.052,217.293,448.602,344.009,610.492,238.381,473.371,49.588,47.774,49.588,280.701,335.062,345.761,21.811,19.738,21.811 +1644,52.084,219.094,463.995,349.308,605.962,232.716,478.422,46.647,56.310,46.647,305.872,334.762,345.556,18.689,19.969,18.689 +1645,52.117,222.072,472.665,354.374,600.090,230.208,479.893,41.615,64.895,41.615,323.544,334.199,345.311,25.597,20.169,25.597 +1646,52.149,218.118,479.249,359.355,593.307,225.309,484.561,36.455,73.610,36.455,326.984,332.730,344.865,25.536,21.162,25.536 +1647,52.180,213.807,485.638,362.920,585.723,220.265,489.503,30.900,81.964,30.900,328.587,330.918,343.639,25.124,20.724,25.124 +1648,52.214,209.652,492.299,367.000,576.500,215.624,495.108,25.190,90.000,25.190,330.045,327.000,343.245,25.609,22.000,25.609 +1649,52.245,205.120,499.894,371.158,566.186,211.639,502.158,19.145,99.130,19.145,329.586,325.854,343.389,25.168,24.983,25.168 +1650,52.275,201.208,508.348,374.125,554.991,207.941,509.860,12.661,107.592,12.661,330.270,323.308,344.070,25.064,26.365,25.064 +1651,52.306,198.198,518.520,376.200,543.100,205.134,519.213,5.711,116.565,5.711,331.248,321.099,345.188,25.075,26.386,25.075 +1652,52.336,198.198,518.520,376.200,543.100,205.134,519.213,5.711,116.565,5.711,331.248,321.099,345.188,25.075,26.386,25.075 +1653,52.369,196.477,529.945,376.330,530.680,203.531,529.788,178.727,125.794,178.727,331.363,321.754,345.475,21.817,26.776,21.817 +1654,52.400,194.403,542.190,375.894,516.879,203.211,540.868,171.469,134.529,171.469,330.849,319.694,348.661,19.383,25.870,19.383 +1655,52.432,191.020,555.994,372.992,503.109,204.498,552.060,163.728,142.637,163.728,322.841,320.219,350.922,20.517,23.562,20.517 +1656,52.463,169.752,578.273,368.785,489.637,207.001,561.451,155.695,149.381,155.695,272.265,320.345,354.006,18.698,19.635,18.698 +1657,52.494,202.763,578.404,362.629,477.146,211.904,572.717,148.118,156.534,148.118,335.397,320.655,356.929,19.351,21.247,19.351 +1658,52.525,212.044,588.094,355.556,466.183,218.193,582.899,139.805,162.992,139.805,344.407,319.898,360.505,19.301,20.948,19.301 +1659,52.556,221.034,598.160,346.116,456.749,225.815,592.663,131.009,170.311,131.009,348.431,318.922,363.001,19.226,20.220,19.226 +1660,52.586,232.068,607.475,334.073,449.160,235.363,602.218,122.082,178.069,122.082,351.814,316.494,364.224,19.538,18.877,19.538 +1661,52.617,244.359,615.518,320.788,443.089,246.648,610.096,112.891,5.789,112.891,353.616,315.223,365.387,20.227,19.586,20.227 +1662,52.649,257.803,621.685,305.939,438.074,259.065,616.213,102.982,12.848,102.982,357.001,311.869,368.232,23.235,20.868,23.235 +1663,52.680,271.566,624.686,289.946,435.717,271.890,619.354,93.479,20.225,93.479,358.102,310.246,368.787,26.377,21.533,26.377 +1664,52.711,291.771,625.621,274.169,436.787,291.394,620.869,85.460,28.856,85.460,360.201,307.205,369.736,25.476,20.126,25.476 +1665,52.742,304.023,624.217,258.400,440.135,302.874,619.782,75.473,36.573,75.473,360.955,305.203,370.118,25.204,19.378,25.204 +1666,52.772,322.033,620.313,243.793,445.733,319.385,614.220,66.516,44.384,66.516,356.020,303.384,369.308,22.543,18.551,22.543 +1667,52.801,322.033,620.313,243.793,445.733,319.385,614.220,66.516,44.384,66.516,356.020,303.384,369.308,22.543,18.551,22.543 +1668,52.831,348.962,634.774,230.539,453.470,331.570,607.720,57.265,52.001,57.265,304.447,302.577,368.771,20.849,18.149,20.849 +1669,52.864,349.995,605.073,219.958,462.446,343.996,598.120,49.214,59.982,49.214,349.138,302.629,367.504,24.006,21.108,24.006 +1670,52.896,359.375,589.652,208.858,473.848,354.628,585.750,39.428,66.963,39.428,355.041,303.963,367.332,25.936,19.871,25.936 +1671,52.927,366.433,576.426,199.996,485.736,361.562,573.540,30.645,75.132,30.645,356.192,305.197,367.515,25.739,19.613,25.739 +1672,52.958,371.101,563.389,193.629,497.893,365.866,561.238,22.343,82.200,22.343,355.456,306.575,366.774,25.572,20.086,25.572 +1673,52.989,371.542,549.526,190.536,510.496,367.160,548.404,14.361,89.612,14.361,351.970,309.074,361.015,25.453,19.152,25.453 +1674,53.021,368.771,538.935,187.873,523.605,364.363,538.418,6.700,96.855,6.700,345.148,312.835,354.026,21.398,20.595,21.398 +1675,53.051,367.976,527.050,185.854,535.718,362.430,527.117,179.308,104.340,179.308,342.241,315.311,353.334,22.032,22.014,22.032 +1676,53.083,367.835,517.260,185.505,546.592,362.410,517.982,172.416,111.477,172.416,347.323,317.582,358.268,20.872,22.334,20.872 +1677,53.115,368.171,507.236,186.514,556.546,362.599,508.651,165.753,118.301,165.753,353.415,318.934,364.913,20.116,21.605,20.116 +1678,53.146,363.711,498.756,188.980,565.791,358.376,500.768,159.341,124.813,159.341,351.485,319.832,362.888,19.987,20.563,19.987 +1679,53.176,359.229,490.911,192.168,573.581,354.159,493.425,153.626,130.992,153.626,350.157,319.954,361.475,19.389,20.155,19.389 +1680,53.207,356.157,483.046,196.184,580.310,349.900,486.950,148.040,137.062,148.040,344.916,319.761,359.667,20.050,21.697,20.050 +1681,53.237,356.157,483.046,196.184,580.310,349.900,486.950,148.040,137.062,148.040,344.916,319.761,359.667,20.050,21.697,20.050 +1682,53.267,408.218,434.383,200.890,586.757,345.089,481.043,143.531,141.649,143.531,200.590,319.695,357.592,18.286,19.855,18.286 +1683,53.298,367.841,452.256,206.113,592.677,340.592,476.026,138.900,147.400,138.900,283.727,318.985,356.044,18.262,19.562,18.262 +1684,53.331,346.974,461.344,211.700,597.900,336.353,472.378,133.907,153.435,133.907,323.130,317.969,353.760,19.526,20.125,19.526 +1685,53.362,338.515,460.072,217.572,602.097,331.763,468.265,129.491,160.278,129.491,330.569,317.302,351.803,19.179,21.242,19.179 +1686,53.392,331.282,458.460,224.148,606.231,326.892,464.691,125.163,168.573,125.163,334.517,316.733,349.763,19.690,22.992,19.690 +1687,53.423,325.156,456.600,231.027,610.919,321.817,462.143,121.059,176.386,121.059,335.635,316.821,348.577,19.498,25.476,19.498 +1688,53.454,319.471,454.754,237.788,614.938,316.725,460.114,117.133,4.970,117.133,335.527,318.017,347.572,19.509,25.556,19.509 +1689,53.484,314.242,452.753,243.663,618.520,311.753,458.510,113.385,13.379,113.385,335.241,320.145,347.784,19.201,27.366,19.201 +1690,53.516,308.851,451.731,249.569,621.828,306.780,457.517,109.696,21.801,109.696,335.666,322.181,347.958,19.328,26.369,19.328 +1691,53.548,303.723,451.262,255.793,625.208,301.986,457.261,106.150,30.343,106.150,335.843,323.336,348.336,19.367,26.080,19.367 +1692,53.578,298.760,450.764,261.397,627.631,297.367,456.900,102.795,38.234,102.795,336.333,325.598,348.916,19.325,26.016,19.325 +1693,53.608,294.086,450.845,267.799,628.719,293.142,456.482,99.499,46.848,99.499,336.686,327.790,348.116,19.073,21.248,19.073 +1694,53.641,289.842,450.531,272.862,630.448,289.123,456.908,96.429,54.917,96.429,335.707,330.064,348.540,18.839,20.399,18.839 +1695,53.671,289.842,450.531,272.862,630.448,289.123,456.908,96.429,54.917,96.429,335.707,330.064,348.540,18.839,20.399,18.839 +1696,53.701,285.263,449.765,277.397,631.552,284.853,457.146,93.180,63.178,93.180,334.318,331.416,349.103,18.582,20.806,18.582 +1697,53.733,281.000,450.000,281.814,632.892,281.000,458.446,90.000,71.007,90.000,332.000,334.271,348.892,18.000,20.019,18.000 +1698,53.764,276.467,447.624,285.212,633.058,277.154,458.842,86.496,78.690,86.496,326.287,335.555,348.765,18.659,20.396,18.659 +1699,53.795,266.429,400.557,289.063,632.524,273.012,458.983,83.571,86.800,83.571,230.905,333.988,348.495,17.971,20.459,17.971 +1700,53.826,266.905,442.432,294.410,631.317,269.720,459.323,80.538,95.006,80.538,313.180,334.260,347.426,19.399,21.116,19.399 +1701,53.856,263.470,448.216,298.453,629.212,265.990,459.368,77.266,102.529,77.266,322.776,332.988,345.643,20.362,20.934,20.362 +1702,53.888,259.509,450.991,303.116,626.044,261.929,459.409,73.964,110.674,73.964,325.539,330.285,343.056,20.770,20.689,20.770 +1703,53.920,255.194,453.517,309.018,623.436,257.640,460.434,70.527,119.859,70.527,326.937,328.689,341.611,20.867,21.890,20.867 +1704,53.951,251.002,455.448,315.689,621.044,253.759,461.933,66.965,128.316,66.965,327.223,327.541,341.316,21.492,23.489,21.492 +1705,53.983,246.669,456.901,322.365,617.857,249.992,463.511,63.310,136.655,63.310,326.021,326.106,340.817,22.551,25.396,22.551 +1706,54.014,242.102,459.286,329.004,614.221,245.847,465.638,59.477,145.057,59.477,325.707,325.478,340.454,23.189,26.673,23.189 +1707,54.045,237.764,461.975,335.500,610.500,242.017,468.160,55.491,153.435,55.491,325.497,325.124,340.510,24.361,27.280,24.361 +1708,54.076,232.915,465.268,342.330,605.963,237.653,471.191,51.340,161.384,51.340,326.091,325.733,341.260,24.207,27.054,24.207 +1709,54.106,228.236,469.684,348.789,601.040,233.340,475.134,46.872,169.380,46.872,326.694,326.744,341.627,23.909,26.660,23.909 +1710,54.136,228.236,469.684,348.789,601.040,233.340,475.134,46.872,169.380,46.872,326.694,326.744,341.627,23.909,26.660,23.909 +1711,54.165,223.467,473.439,355.084,595.233,229.467,478.907,42.340,177.213,42.340,326.166,326.927,342.401,25.491,25.885,25.491 +1712,54.198,218.239,477.688,361.005,588.438,225.432,483.203,37.482,4.289,37.482,325.113,329.101,343.240,25.682,25.055,25.682 +1713,54.229,212.214,481.873,366.457,581.726,221.866,487.988,32.354,10.840,32.354,321.762,330.297,344.615,26.214,23.906,26.214 +1714,54.261,201.840,488.342,371.168,574.104,217.253,495.554,25.074,16.744,25.074,311.365,331.606,345.398,24.738,21.501,24.738 +1715,54.292,137.135,471.848,375.274,566.555,214.084,502.143,21.490,22.124,21.490,181.767,331.849,347.163,18.390,20.848,18.390 +1716,54.327,198.035,505.651,377.208,559.036,210.741,509.298,16.013,27.274,16.013,321.019,333.315,347.457,18.905,20.305,18.905 +1717,54.358,198.081,513.014,379.533,550.006,208.557,514.760,9.462,32.714,9.462,327.647,331.964,348.888,25.317,19.861,25.317 +1718,54.389,197.238,522.486,380.451,539.561,206.400,522.968,3.013,38.660,3.013,331.016,329.995,349.366,24.598,19.678,24.598 +1719,54.421,196.759,534.363,380.250,527.750,204.824,533.829,176.210,45.000,176.210,334.724,328.098,350.889,20.592,21.920,20.592 +1720,54.451,197.703,545.984,378.521,515.597,204.734,544.607,168.925,51.499,168.925,337.919,325.793,352.246,19.490,23.976,19.490 +1721,54.483,199.815,557.488,374.687,503.430,205.892,555.420,161.200,58.266,161.200,340.250,322.453,353.089,19.819,24.060,19.819 +1722,54.514,203.320,569.161,368.492,491.072,208.488,566.553,153.221,65.026,153.221,342.124,319.163,353.704,19.699,23.929,19.699 +1723,54.544,208.665,580.657,360.413,479.041,212.673,577.839,144.894,71.996,144.894,345.566,315.934,355.365,19.286,23.158,19.286 +1724,54.575,215.464,592.057,351.819,467.351,219.729,587.986,136.332,78.930,136.332,345.895,312.830,357.688,19.662,24.769,19.662 +1725,54.605,224.907,602.474,339.995,457.429,228.202,598.213,127.711,85.914,127.711,348.739,310.210,359.513,19.305,23.298,19.305 +1726,54.636,224.907,602.474,339.995,457.429,228.202,598.213,127.711,85.914,127.711,348.739,310.210,359.513,19.305,23.298,19.305 +1727,54.667,234.629,613.942,326.254,449.111,238.457,606.963,118.747,92.827,118.747,345.322,308.908,361.243,19.978,20.863,19.978 +1728,54.700,242.112,636.066,311.144,442.712,249.988,613.651,109.359,100.506,109.359,315.575,308.131,363.093,20.297,18.900,20.297 +1729,54.732,260.504,629.729,295.085,437.908,262.427,618.520,99.733,107.168,99.733,344.321,308.421,367.066,25.654,21.532,25.654 +1730,54.763,281.220,628.573,280.516,436.282,281.474,620.862,91.881,114.198,91.881,353.466,308.141,368.897,25.822,20.361,25.822 +1731,54.794,292.228,627.221,265.807,437.080,291.216,620.522,81.409,121.185,81.409,356.807,308.363,370.358,26.846,19.474,26.846 +1732,54.824,310.295,623.264,251.445,440.681,308.565,617.442,73.447,127.823,73.447,359.269,309.074,371.417,22.305,19.103,22.305 +1733,54.855,325.207,616.687,237.500,446.500,322.717,611.553,64.124,135.000,64.124,359.981,309.713,371.392,22.730,18.385,22.730 +1734,54.887,338.395,607.831,225.195,454.117,335.362,603.480,55.120,141.492,55.120,360.453,310.319,371.061,23.985,18.709,23.985 +1735,54.919,349.470,597.267,214.202,463.136,346.088,593.732,46.267,148.303,46.267,361.290,310.191,371.074,24.971,18.586,24.971 +1736,54.952,358.561,585.735,204.958,473.573,354.773,582.813,37.644,155.196,37.644,361.121,309.965,370.690,25.829,18.755,25.829 +1737,54.984,364.968,572.911,197.391,483.667,361.012,570.696,29.237,161.928,29.237,361.498,309.607,370.566,25.880,20.284,25.880 +1738,55.017,370.319,561.047,192.125,495.073,365.222,559.061,21.286,168.996,21.286,358.093,308.882,369.034,25.315,20.587,25.315 +1739,55.050,371.632,548.681,189.017,506.745,365.742,547.248,13.671,175.972,13.671,350.457,307.562,362.580,25.447,21.861,25.447 +1740,55.081,380.604,540.014,188.021,516.987,364.081,538.091,6.637,0.779,6.637,321.370,308.176,354.639,21.203,20.243,21.203 +1741,55.112,391.000,528.000,187.376,528.183,363.188,528.000,0.000,7.595,0.000,296.000,307.148,351.624,20.000,21.543,20.000 +1742,55.141,374.580,518.007,188.328,539.203,364.083,519.222,173.395,13.736,173.395,332.641,307.308,353.774,21.917,21.090,21.917 +1743,55.171,374.580,518.007,188.328,539.203,364.083,519.222,173.395,13.736,173.395,332.641,307.308,353.774,21.917,21.090,21.917 +1744,55.202,371.127,508.951,190.634,549.154,365.534,510.225,167.171,21.194,167.171,346.882,308.136,358.355,20.215,21.597,20.215 +1745,55.234,366.523,500.496,193.474,559.243,362.493,501.871,161.157,29.006,161.157,348.465,309.934,356.981,20.130,21.578,20.130 +1746,55.267,362.218,492.673,197.539,569.124,358.650,494.299,155.501,37.042,155.501,347.425,311.399,355.268,19.766,21.295,19.766 +1747,55.300,357.789,485.621,201.692,578.322,354.102,487.735,150.173,45.317,150.173,346.052,312.599,354.553,19.444,20.455,19.444 +1748,55.332,353.021,479.531,205.540,587.220,348.820,482.466,145.063,53.130,145.063,344.647,316.600,354.897,19.283,21.400,19.283 +1749,55.364,347.560,474.765,210.444,595.152,343.616,478.039,140.307,61.125,140.307,344.289,320.431,354.540,19.237,20.437,19.237 +1750,55.395,342.022,470.423,213.831,601.114,338.137,474.200,135.807,69.199,135.807,344.357,322.444,355.193,19.120,20.169,19.120 +1751,55.426,336.603,466.817,217.659,606.507,332.931,470.956,131.579,77.125,131.579,344.729,324.767,355.796,19.089,19.943,19.089 +1752,55.456,331.643,463.922,221.661,611.077,328.016,468.646,127.516,84.772,127.516,343.576,326.206,355.486,19.262,19.591,19.262 +1753,55.487,326.702,461.292,225.652,614.506,323.442,466.161,123.808,92.175,123.808,343.625,327.485,355.345,18.925,19.404,18.925 +1754,55.517,322.584,458.091,229.766,617.301,319.099,464.068,120.240,99.689,120.240,340.907,328.467,354.744,18.998,19.402,18.998 +1755,55.550,318.981,454.969,233.842,619.258,315.181,462.504,116.764,107.063,116.764,336.301,329.085,353.179,18.711,20.596,18.711 +1756,55.582,344.284,385.237,238.096,621.089,310.790,460.597,113.962,114.444,113.962,187.433,327.649,352.368,17.972,20.938,17.972 +1757,55.613,315.604,436.796,242.943,622.287,307.189,459.036,110.726,122.928,110.726,303.286,326.789,350.844,18.023,20.137,18.023 +1758,55.644,307.858,444.424,247.326,623.071,303.663,457.880,107.317,130.475,107.317,320.756,325.726,348.946,19.903,20.001,19.903 +1759,55.674,302.527,447.287,252.311,623.397,300.143,456.455,104.570,137.883,104.570,328.265,324.441,347.212,19.647,20.963,19.647 +1760,55.706,302.527,447.287,252.311,623.397,300.143,456.455,104.570,137.883,104.570,328.265,324.441,347.212,19.647,20.963,19.647 +1761,55.736,298.312,447.380,257.575,624.110,296.605,455.517,101.848,145.840,101.848,329.403,323.188,346.030,19.437,21.810,19.437 +1762,55.767,294.321,447.538,263.000,625.500,293.057,455.340,99.206,153.435,99.206,329.746,322.441,345.553,19.283,24.150,19.283 +1763,55.799,290.495,447.794,267.980,625.360,289.696,454.587,96.710,160.560,96.710,330.602,322.336,344.282,18.695,25.072,18.695 +1764,55.830,286.986,447.184,273.318,626.141,286.443,454.518,94.236,169.024,94.236,329.542,322.214,344.249,18.542,26.708,18.542 +1765,55.862,283.361,447.587,278.552,626.266,283.149,454.599,91.736,176.088,91.736,329.425,322.231,343.455,18.507,27.056,18.507 +1766,55.893,279.916,448.018,283.318,627.182,280.001,455.570,89.356,3.888,89.356,328.170,324.359,343.276,18.662,28.430,18.662 +1767,55.923,276.930,449.162,288.158,627.434,277.274,455.707,86.987,10.954,86.987,331.015,325.159,344.124,19.079,27.775,19.079 +1768,55.955,273.405,450.702,292.450,628.150,274.012,456.999,84.495,18.435,84.495,331.608,327.928,344.261,18.780,27.828,18.780 +1769,55.987,270.173,450.971,297.137,628.322,271.118,457.654,81.951,25.332,81.951,331.760,329.578,345.260,19.073,26.361,19.073 +1770,56.018,267.158,452.030,301.533,628.447,268.400,458.699,79.445,31.973,79.445,332.323,330.400,345.891,19.875,25.881,19.875 +1771,56.050,264.144,453.515,306.232,628.085,265.629,459.889,76.884,38.660,76.884,332.955,331.557,346.044,20.509,25.769,20.509 +1772,56.081,260.828,454.111,310.960,627.031,262.713,460.809,74.279,44.447,74.279,332.237,332.407,346.153,20.699,22.526,20.699 +1773,56.117,257.507,454.486,315.056,626.032,259.992,462.028,71.764,49.930,71.764,330.116,333.784,345.997,21.323,21.301,21.323 +1774,56.160,253.932,454.354,318.547,625.392,257.348,463.357,69.219,54.384,69.219,327.153,334.447,346.412,21.830,19.843,21.830 +1775,56.193,247.741,452.025,321.583,623.880,253.479,464.674,65.598,58.161,65.598,318.459,335.402,346.240,20.466,19.738,20.466 +1776,56.226,236.089,435.988,324.710,622.840,251.500,465.793,62.658,61.368,62.658,279.145,335.277,346.253,20.500,19.552,20.500 +1777,56.264,224.790,426.877,328.490,621.030,247.356,468.085,61.294,64.573,61.294,252.270,335.137,346.234,18.043,19.632,18.043 +1778,56.296,233.357,451.750,332.413,618.630,244.310,469.640,58.523,67.949,58.523,304.189,335.355,346.141,18.380,19.534,18.380 +1779,56.327,235.717,459.045,336.647,615.628,243.326,470.045,55.324,72.022,55.324,318.886,334.882,345.637,23.968,20.082,23.968 +1780,56.358,232.784,463.855,340.556,612.349,239.474,472.383,51.885,76.394,51.885,323.350,334.259,345.028,24.086,19.463,24.086 +1781,56.388,229.703,468.274,344.826,607.880,235.521,474.749,48.059,81.703,48.059,326.757,333.761,344.166,24.417,19.811,24.417 +1782,56.420,225.594,471.655,349.432,602.503,231.701,477.520,43.844,87.589,43.844,326.038,331.759,342.972,25.320,20.992,25.320 +1783,56.451,221.374,476.074,354.640,596.649,227.457,481.077,39.433,93.225,39.433,327.526,329.829,343.279,25.778,22.950,25.778 +1784,56.482,217.136,481.029,358.439,589.645,222.790,484.946,34.711,98.746,34.711,328.498,328.976,342.255,25.993,22.809,25.993 +1785,56.512,212.700,486.400,363.084,582.121,218.789,489.879,29.745,105.350,29.745,328.072,326.963,342.097,26.047,24.165,26.047 +1786,56.542,208.140,492.578,367.429,573.566,214.755,495.578,24.398,111.623,24.398,327.979,325.353,342.508,25.961,25.519,25.961 +1787,56.573,204.324,500.086,371.019,564.535,211.164,502.422,18.853,117.699,18.853,328.245,324.808,342.700,25.205,26.296,25.205 +1788,56.603,204.324,500.086,371.019,564.535,211.164,502.422,18.853,117.699,18.853,328.245,324.808,342.700,25.205,26.296,25.205 +1789,56.633,200.994,508.776,373.829,554.254,207.716,510.270,12.529,124.432,12.529,329.626,323.954,343.398,25.164,26.575,25.164 +1790,56.665,198.487,517.109,376.155,543.070,205.496,517.921,6.605,131.049,6.605,330.727,322.407,344.838,25.012,26.967,25.012 +1791,56.696,196.000,529.000,376.878,530.960,203.939,529.000,0.000,137.528,0.000,330.000,321.525,345.878,20.000,25.405,20.000 +1792,56.727,192.195,540.096,376.715,518.673,203.536,538.709,173.024,144.019,173.024,325.810,321.658,348.660,19.395,24.676,19.395 +1793,56.758,185.679,553.756,374.505,505.627,204.565,549.075,166.081,150.442,166.081,311.887,321.995,350.803,20.615,21.675,20.615 +1794,56.788,131.699,589.037,371.035,492.914,206.529,558.485,157.791,156.801,157.791,192.519,321.832,354.173,18.544,19.302,18.544 +1795,56.818,201.877,574.767,365.665,480.832,210.891,569.640,150.372,162.613,150.372,336.142,322.074,356.882,19.288,22.113,19.288 +1796,56.850,210.010,584.581,358.963,470.300,216.195,579.781,142.187,169.426,142.187,344.163,321.094,359.820,19.248,20.158,19.248 +1797,56.881,218.269,594.401,350.043,460.667,223.027,589.441,133.810,176.348,133.810,347.968,319.265,361.714,19.312,20.150,19.312 +1798,56.912,228.144,604.039,339.352,452.157,231.765,598.932,125.336,2.684,125.336,351.403,317.495,363.922,19.307,19.728,19.307 +1799,56.944,239.200,612.600,326.378,445.237,241.890,607.219,116.565,9.409,116.565,353.299,315.142,365.331,19.677,20.627,19.677 +1800,56.975,252.033,619.192,312.362,440.257,253.688,613.994,107.661,15.884,107.661,355.788,312.904,366.698,19.809,20.941,19.809 +1801,57.005,252.033,619.192,312.362,440.257,253.688,613.994,107.661,15.884,107.661,355.788,312.904,366.698,19.809,20.941,19.809 +1802,57.034,264.606,623.654,297.313,437.112,265.293,618.727,97.940,22.300,97.940,358.642,310.145,368.592,25.451,21.587,25.451 +1803,57.067,281.000,625.500,281.710,436.644,281.000,620.822,90.000,30.541,90.000,359.000,307.818,368.356,22.000,20.076,22.000 +1804,57.098,294.417,625.168,266.629,437.990,293.686,620.950,80.169,37.117,80.169,361.227,305.816,369.787,26.945,19.612,26.945 +1805,57.129,311.732,622.343,252.794,442.240,310.292,617.852,72.231,44.433,72.231,360.133,302.697,369.564,21.756,19.168,21.756 +1806,57.159,329.000,623.500,239.256,448.697,323.465,612.430,63.435,51.072,63.435,343.460,301.572,368.213,21.019,18.371,21.019 +1807,57.190,356.257,633.693,227.451,456.581,336.456,604.764,55.611,57.653,55.611,297.588,301.037,367.702,21.947,18.389,21.947 +1808,57.223,351.871,600.621,217.738,464.902,347.008,595.463,46.685,63.733,46.685,353.172,302.785,367.351,24.613,20.439,24.613 +1809,57.254,359.961,588.286,207.694,475.076,355.401,584.678,38.355,70.427,38.355,356.054,303.582,367.683,25.633,19.054,25.633 +1810,57.285,366.570,575.666,200.247,486.053,362.041,573.024,30.256,78.275,30.256,356.669,304.991,367.154,25.625,18.456,25.625 +1811,57.318,370.960,563.177,194.433,497.670,366.240,561.227,22.446,85.741,22.446,355.901,306.937,366.115,25.703,18.820,25.703 +1812,57.351,371.724,550.703,190.935,510.054,367.502,549.571,15.007,93.297,15.007,352.814,310.522,361.556,25.614,20.706,25.614 +1813,57.382,369.128,538.807,188.335,521.628,364.985,538.237,7.836,100.666,7.836,346.169,313.413,354.531,25.048,21.814,25.048 +1814,57.412,367.672,528.462,186.382,532.607,362.853,528.380,0.984,107.860,0.984,343.104,315.355,352.744,24.220,21.511,24.220 +1815,57.443,367.380,520.738,184.827,542.636,362.049,521.245,174.576,115.610,174.576,346.190,317.269,356.901,21.021,22.074,21.021 +1816,57.473,367.789,511.466,185.907,552.018,362.854,512.472,168.478,122.237,168.478,352.486,318.307,362.559,20.449,20.834,20.449 +1817,57.503,367.789,511.466,185.907,552.018,362.854,512.472,168.478,122.237,168.478,352.486,318.307,362.559,20.449,20.834,20.449 +1818,57.533,365.650,503.201,187.157,560.130,360.358,504.863,162.565,129.583,162.565,352.513,318.840,363.606,20.201,21.477,20.201 +1819,57.566,362.669,495.342,189.646,567.617,356.755,497.835,157.145,135.939,157.145,349.352,318.341,362.187,19.930,20.098,19.930 +1820,57.597,359.893,487.978,193.340,573.792,353.467,491.395,151.995,142.454,151.995,345.578,318.818,360.133,19.428,20.765,19.428 +1821,57.629,415.980,442.632,197.811,580.860,349.181,484.866,147.697,149.191,147.697,200.423,317.431,358.484,18.355,20.022,18.355 +1822,57.659,363.999,466.319,202.605,586.737,345.398,480.324,143.022,156.171,143.022,309.595,317.289,356.163,18.459,20.330,18.459 +1823,57.691,350.926,467.979,207.412,591.217,341.796,476.084,138.403,162.734,138.403,329.450,316.355,353.865,19.695,20.609,19.695 +1824,57.722,343.552,465.995,212.563,595.362,337.893,471.763,134.454,170.200,134.454,335.840,315.994,352.001,19.340,21.043,19.340 +1825,57.753,338.447,463.542,218.034,600.144,333.923,468.785,130.783,176.961,130.783,336.474,314.990,350.324,19.505,23.038,19.505 +1826,57.784,333.335,461.284,223.287,604.396,329.845,465.852,127.380,4.205,127.380,338.067,316.132,349.564,19.453,24.654,19.453 +1827,57.814,328.887,459.103,227.648,608.436,325.625,463.904,124.193,10.305,124.193,337.615,317.879,349.223,19.044,26.207,19.044 +1828,57.845,324.641,457.492,232.330,612.678,321.611,462.504,121.151,17.103,121.151,337.695,318.936,349.409,19.299,26.541,19.299 +1829,57.876,320.775,455.841,236.663,615.771,317.947,461.104,118.256,23.575,118.256,337.488,320.422,349.436,19.212,26.480,19.212 +1830,57.906,316.981,454.566,240.976,618.543,314.355,460.023,115.696,29.511,115.696,337.208,322.225,349.320,18.780,26.288,18.780 +1831,57.937,316.981,454.566,240.976,618.543,314.355,460.023,115.696,29.511,115.696,337.208,322.225,349.320,18.780,26.288,18.780 +1832,57.966,313.281,454.130,245.111,621.655,310.936,459.638,113.062,35.882,113.062,337.735,323.418,349.708,19.349,26.100,19.349 +1833,57.998,310.009,453.116,248.583,623.908,307.744,459.115,110.682,41.855,110.682,337.311,324.965,350.135,19.350,26.023,19.350 +1834,58.029,307.246,452.886,253.398,624.638,305.489,458.059,108.759,47.726,108.759,338.037,326.112,348.964,19.223,22.198,19.223 +1835,58.060,303.803,452.116,256.123,626.542,302.140,457.763,106.414,53.696,106.414,338.034,327.879,349.808,19.259,21.496,19.259 +1836,58.090,300.833,452.302,259.107,627.937,299.454,457.672,104.403,59.323,104.403,338.808,329.649,349.898,19.191,20.831,19.191 +1837,58.121,298.207,451.764,261.359,629.333,296.867,457.761,102.595,65.019,102.595,338.081,330.276,350.371,19.104,20.910,19.104 +1838,58.153,295.939,451.319,263.551,630.300,294.691,457.847,100.826,70.084,100.826,337.173,331.233,350.466,19.284,20.889,19.284 +1839,58.184,293.752,451.383,265.235,631.350,292.660,458.017,99.348,74.554,99.348,337.524,332.678,350.970,19.060,20.939,19.060 +1840,58.217,291.891,450.992,267.596,631.981,290.923,457.867,98.009,78.690,98.009,337.445,333.594,351.331,18.770,20.396,18.770 +1841,58.249,290.323,450.500,269.323,632.239,289.427,457.971,96.832,81.903,96.832,335.792,334.316,350.843,18.824,21.040,18.824 +1842,58.280,289.141,448.947,270.685,632.430,288.212,457.944,95.894,84.189,95.894,332.639,334.326,350.728,18.688,21.500,18.688 +1843,58.311,288.216,447.209,271.338,631.675,287.317,457.351,95.064,86.245,95.064,329.746,334.250,350.109,18.295,21.675,18.295 +1844,58.341,287.301,446.752,272.476,631.978,286.466,457.507,94.441,87.397,94.441,328.486,334.836,350.062,18.314,21.569,18.314 +1845,58.371,287.301,446.752,272.476,631.978,286.466,457.507,94.441,87.397,94.441,328.486,334.836,350.062,18.314,21.569,18.314 +1846,58.401,286.842,444.319,273.138,632.478,285.925,457.764,93.900,88.067,93.900,323.408,333.654,350.360,18.230,21.169,18.230 +1847,58.432,286.355,441.779,273.887,632.503,285.384,457.748,93.476,88.386,93.476,318.264,333.544,350.262,18.219,21.034,18.219 +1848,58.463,285.775,444.319,274.371,632.519,285.021,457.778,93.207,88.241,93.207,323.165,333.518,350.126,18.135,20.832,18.135 +1849,58.494,285.288,446.832,274.451,632.520,284.714,457.786,93.000,87.902,93.000,328.126,333.655,350.064,18.010,20.938,18.010 +1850,58.524,285.171,447.758,274.575,632.496,284.672,457.692,92.874,87.120,92.874,330.287,334.037,350.181,18.094,21.275,18.094 +1851,58.556,285.182,448.255,275.241,632.376,284.706,457.616,92.911,85.914,92.911,331.284,334.505,350.030,18.129,21.944,18.129 +1852,58.587,285.382,446.330,275.201,632.931,284.750,457.946,93.113,84.346,93.113,327.223,334.818,350.489,18.203,22.386,18.203 +1853,58.619,285.614,448.214,273.754,633.036,285.044,457.940,93.351,81.542,93.351,331.428,335.449,350.914,18.671,21.867,18.671 +1854,58.651,286.172,449.280,274.090,632.780,285.604,457.861,93.783,78.598,93.783,333.396,334.179,350.595,18.686,20.396,18.686 +1855,58.685,286.989,449.574,273.720,632.612,286.331,458.072,94.423,74.970,94.423,332.939,333.805,349.986,18.563,20.156,18.563 +1856,58.719,287.881,450.940,273.048,632.106,287.262,457.709,95.228,70.670,95.228,336.340,333.604,349.934,18.654,20.631,18.654 +1857,58.752,289.671,450.463,271.531,631.758,288.882,457.559,96.340,65.462,96.340,335.822,332.036,350.100,18.884,20.863,18.884 +1858,58.784,291.280,450.707,270.641,630.918,290.406,457.338,97.512,59.840,97.512,335.971,331.186,349.347,18.935,20.050,18.935 +1859,58.815,292.748,450.589,269.373,629.786,291.837,456.692,98.489,54.162,98.489,336.688,330.036,349.028,18.777,20.852,18.777 +1860,58.845,294.237,450.859,266.160,629.909,293.155,457.212,99.660,48.122,99.660,336.668,328.766,349.556,19.297,24.596,19.297 +1861,58.875,296.220,450.865,264.043,628.952,294.997,457.181,100.954,41.912,100.954,336.180,327.352,349.047,19.129,25.395,19.129 +1862,58.905,296.220,450.865,264.043,628.952,294.997,457.181,100.954,41.912,100.954,336.180,327.352,349.047,19.129,25.395,19.129 +1863,58.935,298.157,450.660,262.013,627.481,296.823,456.763,102.328,34.439,102.328,335.932,326.263,348.426,19.067,26.509,19.067 +1864,58.967,300.446,450.625,259.307,626.026,298.947,456.716,103.829,28.706,103.829,335.209,325.382,347.754,19.271,26.605,19.271 +1865,59.000,302.865,450.685,256.528,624.430,301.231,456.567,105.524,21.571,105.524,335.197,324.405,347.407,19.270,26.666,19.270 +1866,59.031,305.423,450.440,253.586,622.667,303.518,456.594,107.199,14.470,107.199,333.941,323.124,346.824,19.174,27.174,19.174 +1867,59.062,308.013,450.705,250.388,620.869,305.962,456.683,108.939,7.368,108.939,334.029,321.308,346.669,19.251,26.213,19.251 +1868,59.092,310.764,451.244,246.502,619.296,308.482,457.236,110.854,0.651,110.854,334.191,319.150,347.015,19.224,25.578,19.224 +1869,59.122,313.933,452.246,242.482,617.835,311.299,458.443,113.025,173.660,113.025,333.758,319.920,347.223,19.488,25.399,19.488 +1870,59.152,317.110,452.662,238.083,615.302,314.086,459.110,115.128,164.624,115.128,333.125,319.779,347.369,18.997,24.780,18.997 +1871,59.184,320.731,453.182,233.706,613.776,316.945,460.456,117.495,157.891,117.495,332.461,320.528,348.863,19.218,22.467,19.218 +1872,59.217,325.374,453.238,229.036,611.566,320.264,462.081,120.018,151.243,120.018,329.721,321.170,350.146,19.241,19.992,19.241 +1873,59.248,330.943,452.348,224.948,610.048,323.271,464.317,122.661,144.077,122.661,323.066,321.882,351.499,19.622,19.865,19.622 +1874,59.278,341.735,444.700,220.729,607.774,326.189,466.206,125.863,136.718,125.863,299.954,322.635,353.027,18.044,19.543,18.044 +1875,59.308,380.598,405.482,216.293,605.644,329.548,468.854,128.853,129.058,128.853,192.395,323.592,355.148,18.020,20.068,18.020 +1876,59.338,380.598,405.482,216.293,605.644,329.548,468.854,128.853,129.058,128.853,192.395,323.592,355.148,18.020,20.068,18.020 +1877,59.369,338.838,465.509,211.850,602.087,333.277,471.706,131.906,122.385,131.906,339.623,324.889,356.276,18.606,21.194,18.606 +1878,59.402,341.276,470.243,208.533,599.281,336.785,474.667,135.424,115.096,135.424,345.027,324.834,357.635,19.107,19.568,19.107 +1879,59.433,345.020,474.209,204.669,594.903,340.734,477.914,139.162,108.052,139.162,347.557,324.468,358.887,19.465,20.340,19.465 +1880,59.464,349.023,478.853,201.512,590.290,344.792,482.020,143.194,100.869,143.194,348.600,323.609,359.170,19.222,19.830,19.222 +1881,59.495,353.839,483.464,198.550,584.555,349.192,486.431,147.450,93.013,147.450,348.521,321.870,359.548,19.836,20.183,19.836 +1882,59.525,358.350,488.816,196.457,577.568,353.899,491.158,152.241,86.264,152.241,349.077,319.951,359.136,19.375,19.167,19.375 +1883,59.557,362.997,494.959,194.574,569.801,358.436,496.896,156.995,78.934,156.995,348.735,317.502,358.645,19.885,20.555,19.885 +1884,59.588,366.932,502.230,192.712,560.748,362.630,503.611,162.211,71.365,162.211,349.463,314.970,358.500,20.103,20.770,20.103 +1885,59.619,370.133,510.443,190.944,550.560,365.542,511.430,167.869,63.809,167.869,348.452,312.204,357.844,19.764,20.985,19.764 +1886,59.650,369.203,519.506,189.682,540.706,364.680,519.995,173.837,56.117,173.837,343.323,310.373,352.421,20.431,20.791,20.431 +1887,59.681,369.000,527.000,189.683,529.275,364.342,527.000,0.000,49.051,0.000,340.000,307.616,349.317,24.000,21.812,24.000 +1888,59.712,370.350,537.082,190.116,517.612,365.317,536.478,6.843,41.545,6.843,342.264,305.938,352.403,24.464,22.060,24.464 +1889,59.742,374.656,548.789,192.188,506.338,367.097,546.960,13.606,34.681,13.606,343.558,304.653,359.113,25.382,21.848,25.382 +1890,59.772,385.774,566.580,195.210,495.372,367.119,559.151,21.712,28.667,21.712,326.456,303.995,366.614,24.240,20.902,24.240 +1891,59.803,385.774,566.580,195.210,495.372,367.119,559.151,21.712,28.667,21.712,326.456,303.995,366.614,24.240,20.902,24.240 +1892,59.833,376.907,580.322,200.347,483.982,361.497,572.332,27.408,22.775,27.408,332.743,303.701,367.461,19.794,20.292,19.794 +1893,59.865,362.197,584.416,206.648,473.392,356.973,580.616,36.027,17.074,36.027,356.359,303.787,369.279,24.997,20.662,24.997 +1894,59.897,352.645,593.775,214.704,463.314,349.140,590.396,43.949,10.814,43.949,360.233,303.590,369.970,25.088,21.124,25.088 +1895,59.929,341.771,603.583,224.328,455.780,339.547,600.707,52.275,4.316,52.275,362.989,303.872,370.261,23.699,18.062,23.699 +1896,59.960,329.633,612.754,235.938,447.480,327.508,608.940,60.866,177.682,60.866,362.495,304.560,371.227,22.453,19.369,22.453 +1897,59.990,316.281,619.582,248.347,442.267,314.723,615.428,69.444,171.300,69.444,362.008,306.088,370.883,21.653,18.299,21.653 +1898,60.022,299.793,625.046,262.276,438.028,298.671,619.947,77.581,164.991,77.581,360.538,307.656,370.979,26.252,18.226,26.252 +1899,60.053,288.334,626.028,276.287,435.666,288.100,620.397,87.614,158.749,87.614,358.855,309.063,370.126,25.395,18.847,25.395 +1900,60.084,268.783,625.221,290.601,435.257,269.323,619.000,94.962,152.712,94.962,357.302,310.415,369.790,26.508,18.769,26.508 +1901,60.117,255.924,621.726,304.146,437.204,257.547,615.350,104.281,146.642,104.281,355.112,311.764,368.272,22.624,19.559,22.624 +1902,60.147,242.823,616.270,317.129,441.548,245.661,609.751,113.529,140.621,113.529,351.281,312.897,365.500,20.377,20.133,20.377 +1903,60.177,230.717,610.369,329.076,447.620,235.396,602.988,122.372,134.341,122.372,345.280,313.349,362.760,19.825,22.333,19.825 +1904,60.209,174.575,654.728,340.010,455.716,226.104,595.175,130.868,128.848,130.868,202.479,314.076,359.983,19.200,19.706,19.200 +1905,60.239,201.018,600.440,350.250,466.016,217.736,585.775,138.743,122.849,138.743,312.705,315.435,357.184,19.493,20.917,19.493 +1906,60.270,201.018,600.440,350.250,466.016,217.736,585.775,138.743,122.849,138.743,312.705,315.435,357.184,19.493,20.917,19.493 +1907,60.300,203.572,581.136,358.189,476.851,211.436,575.942,146.553,116.996,146.553,335.283,316.235,354.132,19.505,21.183,19.505 +1908,60.332,201.377,568.844,365.903,488.457,207.510,565.849,153.979,110.472,153.979,338.926,316.478,352.577,19.862,24.220,19.862 +1909,60.364,198.941,557.765,370.877,500.226,204.667,555.815,161.200,104.470,161.200,338.417,317.782,350.514,19.860,25.300,19.860 +1910,60.396,197.576,547.216,374.901,511.958,203.623,545.934,168.031,98.973,168.031,336.838,319.567,349.201,19.655,26.202,19.655 +1911,60.427,196.678,537.364,376.523,523.247,203.036,536.758,174.560,93.122,174.560,335.198,320.832,347.972,19.246,25.108,19.246 +1912,60.457,197.500,527.000,377.564,534.475,204.282,527.000,0.000,87.510,0.000,333.000,323.390,346.564,24.000,25.411,24.000 +1913,60.488,198.951,517.745,377.400,544.941,206.120,518.505,6.054,81.649,6.054,331.806,325.267,346.224,24.665,24.680,24.665 +1914,60.519,201.532,509.548,376.697,554.457,208.820,511.067,11.768,76.115,11.768,331.507,327.186,346.397,25.005,24.564,25.005 +1915,60.550,203.839,502.897,375.315,563.033,211.736,505.277,16.771,71.046,16.771,330.076,329.246,346.572,25.392,23.482,25.392 +1916,60.582,206.793,496.017,372.723,570.990,214.861,499.245,21.801,65.556,21.801,329.052,330.794,346.432,25.812,22.014,25.812 +1917,60.612,210.000,490.000,369.465,578.302,218.246,494.123,26.565,60.573,26.565,327.360,332.178,345.800,25.044,19.854,25.044 +1918,60.643,212.436,484.248,366.891,584.054,221.539,489.686,30.854,55.763,30.854,325.150,333.383,346.356,25.732,19.623,25.732 +1919,60.673,214.156,479.479,364.217,588.837,224.318,486.494,34.616,51.483,34.616,321.850,333.903,346.546,25.432,20.088,25.432 +1920,60.706,211.656,475.916,361.135,593.378,225.052,486.268,37.694,47.951,37.694,312.486,333.880,346.345,18.703,19.292,18.703 +1921,60.737,211.656,475.916,361.135,593.378,225.052,486.268,37.694,47.951,37.694,312.486,333.880,346.345,18.703,19.292,18.703 +1922,60.766,201.231,461.393,358.250,596.750,227.283,483.691,40.561,45.000,40.561,277.449,333.754,346.031,18.079,19.092,18.079 +1923,60.798,168.569,424.998,355.689,599.790,229.378,481.753,43.025,42.056,43.025,179.401,333.879,345.760,17.935,19.749,17.935 +1924,60.829,216.894,463.084,353.044,601.946,232.730,478.087,43.452,39.327,43.452,301.423,335.195,345.052,22.352,19.394,22.352 +1925,60.860,224.610,467.320,350.735,603.989,233.955,476.898,45.703,36.027,45.703,318.278,334.376,345.040,24.179,19.263,24.179 +1926,60.891,230.939,467.253,348.418,605.227,236.748,474.080,49.606,31.967,49.606,326.570,334.004,344.498,23.737,20.622,23.737 +1927,60.923,234.037,465.764,345.260,607.499,239.069,472.108,51.582,27.399,51.582,327.934,333.729,344.129,24.937,21.647,24.937 +1928,60.954,236.223,465.078,342.690,609.276,240.536,470.881,53.383,21.801,53.383,329.562,333.137,344.024,23.976,23.769,23.976 +1929,60.985,238.151,463.395,339.931,610.254,242.207,469.216,55.130,15.255,55.130,328.978,332.054,343.169,24.432,25.610,24.432 +1930,61.018,239.533,462.296,337.501,611.845,243.552,468.395,56.617,8.479,56.617,328.347,330.251,342.954,23.511,26.760,23.511 +1931,61.049,240.998,461.058,335.058,612.490,244.760,467.101,58.087,1.332,58.087,328.059,328.283,342.296,23.407,27.109,23.407 +1932,61.080,242.318,460.087,332.843,613.720,246.003,466.312,59.378,174.958,59.378,327.704,327.639,342.171,23.381,26.661,23.381 +1933,61.110,243.264,458.919,330.342,614.618,247.000,465.484,60.362,168.071,60.362,326.566,326.842,341.673,23.048,26.872,23.048 +1934,61.140,244.226,458.102,328.135,615.318,247.910,464.828,61.285,160.750,61.285,325.717,326.431,341.054,22.902,27.064,22.902 +1935,61.172,244.226,458.102,328.135,615.318,247.910,464.828,61.285,160.750,61.285,325.717,326.431,341.054,22.902,27.064,22.902 +1936,61.201,245.118,457.610,326.200,615.900,248.581,464.132,62.028,153.435,62.028,326.118,326.019,340.888,22.738,26.833,22.738 +1937,61.234,245.833,457.257,324.567,616.868,249.267,463.890,62.632,145.561,62.632,326.005,326.781,340.943,22.661,26.156,22.661 +1938,61.266,246.377,457.026,323.025,617.528,249.725,463.627,63.101,138.013,63.101,326.021,326.678,340.824,22.660,25.198,22.660 +1939,61.298,246.731,456.874,321.943,618.378,250.112,463.608,63.344,130.462,63.344,326.020,327.584,341.091,22.500,24.302,22.500 +1940,61.331,246.900,457.300,321.267,619.172,250.161,463.822,63.435,122.800,63.435,326.913,328.533,341.497,21.913,23.050,21.913 +1941,61.363,246.900,456.800,320.746,619.615,250.398,463.795,63.435,115.017,63.435,326.019,329.851,341.661,22.361,21.930,22.361 +1942,61.396,246.754,456.860,320.085,620.076,250.289,463.902,63.342,106.682,63.342,326.017,330.929,341.775,22.444,22.110,22.444 +1943,61.427,246.149,457.140,321.467,621.404,250.126,464.972,63.080,100.204,63.080,325.993,333.363,343.561,22.240,20.747,22.240 +1944,61.459,245.367,456.458,322.846,621.013,249.886,465.174,62.592,92.203,62.592,324.228,332.562,343.864,22.654,18.832,22.654 +1945,61.490,244.415,456.387,325.106,621.076,249.496,465.942,62.000,85.147,62.000,323.301,333.855,344.945,22.759,19.092,22.759 +1946,61.521,242.486,454.939,327.680,620.748,249.005,466.813,61.232,77.957,61.232,318.507,334.760,345.599,22.774,20.081,22.774 +1947,61.552,235.499,450.006,329.789,619.899,246.046,468.507,60.313,70.641,60.313,303.394,335.030,345.989,18.268,19.864,18.268 +1948,61.584,221.825,430.707,332.166,618.917,244.936,469.346,59.115,63.303,59.115,256.233,334.531,346.277,17.870,19.324,17.870 +1949,61.615,224.692,438.538,334.652,617.217,245.073,469.110,56.310,55.800,56.310,272.358,335.102,345.843,21.079,19.272,21.079 +1950,61.646,234.340,457.668,337.241,615.287,243.164,470.206,54.866,48.621,54.866,314.916,334.303,345.579,22.263,19.241,22.263 +1951,61.676,236.124,461.413,340.327,612.938,242.494,470.480,54.910,41.538,54.910,323.450,333.934,345.613,23.771,19.426,23.771 +1952,61.707,235.054,464.211,343.395,609.692,240.457,471.399,53.069,34.380,53.069,326.808,333.728,344.792,24.007,20.937,24.007 +1953,61.737,235.054,464.211,343.395,609.692,240.457,471.399,53.069,34.380,53.069,326.808,333.728,344.792,24.007,20.937,24.007 +1954,61.768,232.722,465.724,345.593,606.869,238.137,472.454,51.178,27.661,51.178,326.899,333.748,344.174,24.656,21.282,24.656 +1955,61.798,230.982,468.451,348.070,604.143,235.826,474.011,48.935,20.638,48.935,328.951,332.875,343.699,25.015,23.651,25.015 +1956,61.830,228.490,469.943,350.865,600.602,233.786,475.486,46.308,12.626,46.308,327.354,332.137,342.686,25.256,24.575,25.256 +1957,61.862,225.117,472.301,354.343,597.152,231.090,477.983,43.575,5.440,43.575,326.385,329.793,342.874,24.822,25.646,24.822 +1958,61.892,221.723,474.657,357.016,593.350,228.112,480.142,40.644,178.905,40.644,326.256,328.150,343.096,25.119,25.409,25.119 +1959,61.924,218.654,477.645,360.005,589.037,225.437,482.839,37.444,172.786,37.444,325.728,327.714,342.813,26.222,24.990,26.222 +1960,61.955,215.323,482.019,363.059,584.239,222.085,486.557,33.864,166.149,33.864,326.694,326.947,342.981,24.561,25.683,24.561 +1961,61.986,212.053,486.043,365.938,578.836,219.150,490.149,30.050,159.444,30.050,326.542,326.545,342.938,25.202,25.866,25.202 +1962,62.018,208.971,490.533,368.582,573.100,216.230,494.066,25.952,152.133,25.952,327.005,325.650,343.151,26.045,26.206,26.045 +1963,62.049,205.819,496.193,371.056,566.319,213.138,499.086,21.567,145.840,21.567,327.412,324.755,343.152,25.437,26.065,25.437 +1964,62.080,202.965,502.467,373.265,559.037,210.115,504.639,16.894,139.086,16.894,328.893,323.989,343.836,25.438,26.298,25.438 +1965,62.110,200.403,509.563,375.178,551.245,207.641,511.071,11.768,132.594,11.768,329.631,322.988,344.418,25.086,26.431,25.086 +1966,62.140,198.463,517.325,375.996,543.097,205.386,518.105,6.426,126.254,6.426,330.738,323.046,344.670,24.663,26.343,24.663 +1967,62.171,198.463,517.325,375.996,543.097,205.386,518.105,6.426,126.254,6.426,330.738,323.046,344.670,24.663,26.343,24.663 +1968,62.201,197.000,527.000,376.614,533.787,203.807,527.000,0.000,119.846,0.000,332.000,322.248,345.614,24.000,26.675,24.000 +1969,62.234,196.223,537.374,376.145,523.844,202.775,536.758,174.626,113.782,174.626,334.474,320.249,347.635,19.395,26.072,19.395 +1970,62.267,196.974,547.247,374.887,513.464,203.347,545.903,168.092,107.819,168.092,336.058,319.134,349.084,19.669,25.909,19.669 +1971,62.298,198.812,557.419,371.946,502.883,204.641,555.463,161.450,101.889,161.450,338.382,317.874,350.680,19.890,25.597,19.890 +1972,62.330,202.234,567.635,367.993,492.241,207.517,565.115,154.502,95.528,154.502,340.726,316.104,352.433,19.816,25.654,19.816 +1973,62.361,207.124,577.739,362.000,482.000,211.252,575.070,147.113,90.000,147.113,344.420,314.000,354.250,19.712,24.000,19.712 +1974,62.391,212.910,587.658,354.569,471.492,216.726,584.413,139.626,83.367,139.626,346.303,313.654,356.321,19.333,24.440,19.333 +1975,62.422,220.460,597.301,345.798,462.264,223.724,593.639,131.711,77.593,131.711,348.784,311.940,358.595,19.296,23.908,19.296 +1976,62.453,230.000,605.500,335.600,453.800,232.446,601.831,123.690,71.565,123.690,351.957,311.168,360.777,19.415,24.033,19.415 +1977,62.484,240.676,613.323,324.011,446.911,242.686,609.110,115.514,65.651,115.514,353.485,309.364,362.821,19.875,23.554,19.875 +1978,62.515,252.459,620.140,311.273,441.632,253.926,615.336,106.978,59.835,106.978,355.711,308.005,365.758,20.478,23.322,20.478 +1979,62.546,268.049,624.747,297.601,438.092,268.874,619.723,99.326,53.746,99.326,357.586,306.864,367.769,25.156,23.009,25.156 +1980,62.576,279.000,625.500,283.376,437.284,279.000,621.142,90.000,47.553,90.000,359.000,305.374,367.716,22.000,22.056,22.000 +1981,62.607,292.888,625.359,268.684,438.533,292.263,621.412,81.006,41.522,81.006,360.640,305.188,368.633,26.512,20.511,26.512 +1982,62.638,292.888,625.359,268.684,438.533,292.263,621.412,81.006,41.522,81.006,360.640,305.188,368.633,26.512,20.511,26.512 +1983,62.667,310.261,622.364,254.043,441.535,309.023,618.267,73.190,35.466,73.190,361.601,304.797,370.160,22.037,19.763,22.037 +1984,62.700,324.783,615.954,241.050,446.133,322.839,611.945,64.138,29.347,64.138,360.852,304.615,369.765,22.801,20.899,22.801 +1985,62.732,337.960,608.394,228.819,452.922,335.198,604.385,55.437,23.199,55.437,360.422,304.500,370.159,24.193,20.746,24.193 +1986,62.764,348.680,598.655,217.693,461.716,345.544,595.303,46.913,16.883,46.913,360.612,304.800,369.793,24.293,20.032,24.293 +1987,62.794,358.319,587.590,208.157,470.976,354.276,584.362,38.603,10.558,38.603,359.520,305.481,369.868,25.392,20.683,25.392 +1988,62.825,365.396,575.367,200.425,482.057,361.088,572.836,30.428,4.042,30.428,359.025,305.933,369.019,25.708,19.545,25.708 +1989,62.860,369.622,563.222,194.327,492.917,365.237,561.390,22.671,177.576,22.671,358.685,307.402,368.192,25.299,20.352,25.299 +1990,62.891,370.908,550.815,189.585,504.346,366.233,549.543,15.226,171.119,15.226,354.944,309.433,364.634,25.567,20.810,25.567 +1991,62.922,369.460,539.280,186.637,516.355,363.847,538.478,8.130,164.650,8.130,345.775,310.834,357.116,25.314,20.421,25.314 +1992,62.954,367.711,530.682,184.892,527.466,362.082,530.548,1.369,157.891,1.369,343.165,312.538,354.426,21.014,21.396,21.014 +1993,62.985,367.424,521.148,184.585,538.251,362.104,521.621,174.917,151.049,174.917,345.904,314.305,356.587,20.725,20.703,20.725 +1994,63.017,368.287,511.920,185.330,548.568,362.802,513.004,168.818,144.300,168.818,350.816,316.101,361.998,20.464,21.362,20.464 +1995,63.050,366.575,503.489,186.956,558.452,360.797,505.263,162.929,137.337,162.929,351.500,317.775,363.591,20.301,21.340,20.301 +1996,63.080,362.141,496.210,189.911,567.620,357.147,498.274,157.548,130.301,157.548,351.281,319.561,362.088,20.050,19.877,20.050 +1997,63.111,357.786,489.676,193.152,576.100,353.129,492.109,152.421,123.304,152.421,350.861,321.198,361.370,19.805,19.801,19.805 +1998,63.141,354.252,483.436,197.561,584.005,349.218,486.610,147.763,115.984,147.763,348.559,322.506,360.463,19.416,18.794,19.416 +1999,63.172,354.252,483.436,197.561,584.005,349.218,486.610,147.763,115.984,147.763,348.559,322.506,360.463,19.416,18.794,19.416 +2000,63.204,349.322,478.752,201.779,590.618,345.010,481.971,143.259,109.148,143.259,348.780,323.839,359.541,19.244,18.644,19.244 +2001,63.237,344.725,474.372,206.674,596.857,340.781,477.786,139.118,102.022,139.118,348.217,324.628,358.650,19.454,18.864,19.454 +2002,63.269,340.582,470.560,211.515,602.046,336.683,474.437,135.162,95.064,135.162,346.473,325.383,357.470,18.777,19.140,18.777 +2003,63.302,336.351,467.097,216.448,606.484,332.672,471.253,131.522,88.025,131.522,345.485,325.496,356.587,18.905,19.127,18.905 +2004,63.335,332.080,464.440,221.299,610.636,328.634,468.854,127.976,80.998,127.976,344.417,326.170,355.617,19.498,19.734,19.498 +2005,63.367,328.397,461.536,226.679,613.858,325.033,466.368,124.841,73.578,124.841,342.708,326.523,354.482,19.352,20.345,19.352 +2006,63.399,324.676,459.493,232.346,616.428,321.714,464.246,121.933,66.991,121.933,341.640,326.947,352.841,18.856,22.620,18.856 +2007,63.431,321.215,457.450,236.250,618.186,318.347,462.603,119.097,59.712,119.097,339.946,325.357,351.741,18.958,21.121,18.958 +2008,63.462,318.000,456.000,240.730,619.400,315.493,461.014,116.565,52.431,116.565,338.988,324.793,350.199,18.783,21.523,18.783 +2009,63.492,314.369,454.605,243.000,622.000,311.766,460.450,114.007,45.000,114.007,338.308,323.855,351.104,18.899,25.456,18.899 +2010,63.522,311.655,453.362,247.193,622.637,309.352,459.121,111.801,37.451,111.801,337.408,323.869,349.813,18.941,25.674,18.941 +2011,63.553,308.331,452.027,250.417,623.285,306.248,457.919,109.466,30.256,109.466,336.537,324.061,349.037,19.206,26.273,19.206 +2012,63.585,305.572,451.083,253.443,623.631,303.718,457.002,107.391,23.629,107.391,335.675,323.575,348.079,19.291,26.569,19.291 +2013,63.616,302.994,450.221,256.193,623.882,301.290,456.356,105.524,17.382,105.524,334.234,323.510,346.969,19.270,26.829,19.270 +2014,63.647,300.383,449.334,259.203,624.373,298.804,455.873,103.577,10.222,103.577,332.721,322.164,346.175,19.316,27.055,19.316 +2015,63.677,298.005,448.526,261.500,624.500,296.599,455.218,101.868,2.726,101.868,332.087,321.921,345.763,19.246,25.685,19.246 +2016,63.708,295.581,448.141,263.944,624.689,294.384,454.829,100.151,176.082,100.151,331.545,321.370,345.132,19.331,26.021,19.331 +2017,63.739,295.581,448.141,263.944,624.689,294.384,454.829,100.151,176.082,100.151,331.545,321.370,345.132,19.331,26.021,19.331 +2018,63.769,293.465,447.725,265.549,625.065,292.386,454.742,98.746,169.509,98.746,330.648,321.825,344.846,19.083,24.509,19.083 +2019,63.800,291.395,447.938,267.646,625.724,290.499,454.885,97.352,162.897,97.352,330.710,322.686,344.719,18.876,24.409,18.876 +2020,63.831,288.937,447.141,269.580,626.367,288.162,455.024,95.618,156.666,95.618,328.839,323.012,344.680,18.664,24.576,18.664 +2021,63.869,286.830,446.743,271.223,626.515,286.242,454.804,94.173,150.255,94.173,328.534,323.855,344.699,18.629,23.194,18.629 +2022,63.912,282.890,446.543,274.715,627.537,282.689,455.265,91.317,136.766,91.317,327.373,325.681,344.821,18.581,22.747,18.581 +2023,63.945,281.000,447.000,276.911,627.591,281.000,455.795,90.000,131.576,90.000,326.000,326.703,343.591,18.000,21.091,18.000 +2024,63.977,278.794,446.870,278.613,628.107,279.039,455.939,88.452,126.444,88.452,326.043,327.825,344.187,18.723,20.767,18.723 +2025,64.009,276.776,446.773,281.206,628.513,277.268,456.062,86.967,121.522,86.967,326.231,328.882,344.835,19.192,20.686,19.192 +2026,64.045,274.215,446.151,284.435,629.212,275.096,456.785,85.261,116.711,85.261,323.879,329.173,345.219,18.930,20.631,18.930 +2027,64.076,271.726,446.519,287.244,629.392,272.948,457.261,83.506,112.805,83.506,323.666,330.383,345.288,19.015,20.846,19.015 +2028,64.107,269.028,446.482,290.893,629.463,270.684,457.756,81.643,109.225,81.643,322.852,331.107,345.642,19.313,20.923,19.313 +2029,64.136,269.028,446.482,290.893,629.463,270.684,457.756,81.643,109.225,81.643,322.852,331.107,345.642,19.313,20.923,19.313 +2030,64.166,266.503,447.670,294.429,629.625,268.520,458.611,79.552,106.290,79.552,323.504,331.999,345.755,19.829,20.582,19.829 +2031,64.200,263.706,449.169,298.412,629.353,266.009,459.436,77.358,104.036,77.358,324.735,332.759,345.779,20.108,20.373,20.108 +2032,64.232,260.661,450.287,302.791,628.674,263.349,460.313,74.989,102.381,74.989,324.901,333.308,345.662,20.704,21.322,20.704 +2033,64.263,257.371,451.110,306.808,627.462,260.539,461.075,72.362,101.310,72.362,324.256,333.594,345.168,20.961,20.592,20.961 +2034,64.295,253.861,452.560,310.854,626.288,257.437,462.149,69.550,100.491,69.550,324.449,334.425,344.916,21.519,21.304,21.519 +2035,64.326,250.309,454.414,315.555,623.918,254.100,463.150,66.546,100.419,66.546,324.844,332.922,343.891,21.964,21.038,21.964 +2036,64.358,246.735,456.868,320.304,622.038,250.687,464.737,63.330,100.871,63.330,326.017,333.768,343.627,22.454,19.862,22.454 +2037,64.388,242.418,458.946,325.552,618.695,246.673,466.306,59.973,101.527,59.973,325.815,332.233,342.817,22.828,20.235,22.828 +2038,64.420,238.724,461.842,330.563,615.124,242.923,468.125,56.239,102.407,56.239,326.713,331.903,341.827,23.403,20.334,23.403 +2039,64.451,234.499,464.773,336.897,611.459,239.105,470.766,52.454,103.601,52.454,327.172,331.312,342.289,23.989,21.242,23.989 +2040,64.483,230.237,468.283,342.573,606.802,235.035,473.673,48.320,104.621,48.320,327.445,330.168,341.879,24.316,21.877,24.316 +2041,64.514,225.739,472.053,348.203,601.414,230.983,477.129,44.061,106.074,44.061,326.732,329.249,341.329,24.827,23.029,24.827 +2042,64.544,220.886,476.168,353.610,595.347,226.588,480.858,39.435,107.354,39.435,326.890,328.162,341.658,25.004,23.802,25.004 +2043,64.575,216.647,481.434,358.600,588.700,222.378,485.384,34.576,108.435,34.576,327.666,327.296,341.587,25.200,24.350,25.200 +2044,64.605,216.647,481.434,358.600,588.700,222.378,485.384,34.576,108.435,34.576,327.666,327.296,341.587,25.200,24.350,25.200 +2045,64.636,212.030,486.860,363.263,581.277,218.189,490.336,29.440,109.983,29.440,327.935,326.706,342.079,25.668,24.776,25.668 +2046,64.668,207.711,493.379,367.715,572.887,214.349,496.319,23.887,111.689,23.887,327.951,325.348,342.470,25.484,25.490,25.484 +2047,64.700,203.910,501.225,371.548,563.445,210.670,503.441,18.153,113.025,18.153,328.904,324.210,343.132,24.940,26.206,24.940 +2048,64.731,200.707,509.210,374.437,553.579,207.635,510.700,12.135,114.677,12.135,330.004,323.096,344.176,24.959,26.524,24.959 +2049,64.761,197.950,520.995,376.067,542.524,204.792,521.679,5.711,116.162,5.711,331.248,322.017,344.999,19.304,26.281,19.304 +2050,64.793,196.987,529.892,376.705,530.900,203.729,529.745,178.755,117.824,178.755,332.335,320.344,345.822,21.821,26.507,21.821 +2051,64.825,196.451,540.731,375.935,518.108,203.220,539.785,172.047,119.792,172.047,334.436,320.013,348.105,19.691,25.551,19.691 +2052,64.858,197.213,551.105,373.812,504.385,204.474,549.116,164.682,121.514,164.682,335.221,319.119,350.278,19.864,25.221,19.864 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-233725.csv b/chaos_pdl/data/raw/metrics-20250919-233725.csv new file mode 100644 index 0000000..4853ead --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-233725.csv @@ -0,0 +1,2766 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.001,202.673,565.869,369.294,490.536,207.996,563.377,154.920,66.038,154.920,342.177,317.397,353.933,20.508,24.470,20.508 +1,0.036,198.682,552.518,373.273,507.749,203.926,551.097,164.839,78.541,164.839,338.714,318.880,349.580,20.300,24.078,20.300 +2,0.067,197.289,537.512,376.594,523.034,203.547,536.911,174.516,93.302,174.516,334.590,320.621,347.163,19.614,24.997,19.614 +3,0.100,198.428,521.802,377.151,537.508,205.136,522.174,3.180,107.103,3.180,331.766,322.318,345.203,23.741,26.027,23.741 +4,0.133,201.154,510.170,374.633,552.972,207.821,511.549,11.689,120.757,11.689,329.876,324.159,343.491,25.731,26.397,25.731 +5,0.164,206.074,497.113,371.062,565.530,212.823,499.698,20.956,134.409,20.956,328.181,324.669,342.635,25.910,27.452,25.910 +6,0.199,212.508,485.862,366.060,577.170,219.136,489.649,29.745,147.597,29.745,326.707,326.187,341.976,25.303,26.798,25.303 +7,0.231,219.338,477.708,359.407,589.678,225.826,482.753,37.875,160.942,37.875,325.739,327.362,342.176,25.084,26.947,25.084 +8,0.264,227.613,470.347,351.339,599.007,232.901,475.793,45.843,173.568,45.843,326.627,328.429,341.810,24.476,26.642,24.476 +9,0.297,236.649,464.127,342.553,606.742,240.554,469.431,53.640,6.009,53.640,328.925,330.909,342.098,23.996,28.684,23.996 +10,0.329,245.355,460.638,331.597,616.141,248.431,466.162,60.893,18.869,60.893,330.343,332.724,342.989,23.179,26.016,23.179 +11,0.362,253.776,456.690,320.911,622.794,256.321,463.051,68.199,31.247,68.199,330.909,333.061,344.612,21.355,24.255,21.355 +12,0.393,262.920,452.667,309.565,626.530,264.724,459.651,75.510,43.152,75.510,331.154,332.669,345.581,21.246,22.798,21.246 +13,0.424,271.606,451.874,296.625,631.047,272.527,458.996,82.630,54.052,82.630,333.081,332.831,347.442,19.776,22.128,19.776 +14,0.454,280.440,451.021,283.563,632.208,280.497,458.098,89.538,64.514,89.538,334.102,332.853,348.258,18.943,21.304,18.943 +15,0.484,291.200,450.400,270.198,631.642,290.308,457.535,97.125,74.419,97.125,336.134,333.220,350.514,18.853,20.636,18.853 +16,0.516,301.030,452.482,258.508,629.826,299.407,458.812,104.381,83.428,104.381,338.560,333.325,351.629,19.125,24.451,19.125 +17,0.548,301.030,452.482,258.508,629.826,299.407,458.812,104.381,83.428,104.381,338.560,333.325,351.629,19.125,24.451,19.125 +18,0.580,311.739,454.386,242.793,624.480,309.136,460.837,111.975,91.604,111.975,339.248,329.403,353.160,19.426,19.061,19.426 +19,0.611,322.867,457.688,229.743,616.623,319.337,463.792,120.041,99.389,120.041,340.206,327.809,354.307,19.211,19.631,19.211 +20,0.643,332.976,464.404,217.787,607.937,329.242,469.138,128.267,106.455,128.267,343.947,326.066,356.006,19.121,19.642,19.121 +21,0.675,343.176,471.946,207.147,597.140,338.698,476.133,136.922,112.885,136.922,345.206,323.686,357.469,19.152,19.574,19.152 +22,0.707,352.372,481.362,198.103,583.956,347.965,484.350,145.858,118.835,145.858,349.223,321.485,359.872,19.672,19.882,19.672 +23,0.737,361.251,492.816,190.963,569.791,355.904,495.305,155.040,124.342,155.040,350.144,319.304,361.938,20.371,20.863,20.371 +24,0.769,368.112,506.242,186.006,553.326,362.657,507.730,164.745,129.417,164.745,353.542,316.816,364.849,21.225,22.181,21.225 +25,0.801,367.659,521.722,183.769,535.731,361.881,522.254,174.738,134.132,174.738,345.590,314.112,357.195,22.209,23.053,22.209 +26,0.833,367.606,537.942,186.225,519.321,362.995,537.516,5.280,138.540,5.280,346.129,312.018,355.390,22.508,22.461,22.508 +27,0.866,371.513,553.290,189.842,500.609,366.292,551.692,17.021,142.797,17.021,356.428,310.216,367.349,25.505,21.488,25.505 +28,0.898,366.110,572.249,198.292,483.700,361.955,569.912,29.358,146.578,29.358,360.287,308.689,369.822,25.929,18.433,25.929 +29,0.931,356.315,589.406,209.434,468.485,352.656,586.235,40.914,150.849,40.914,361.018,307.205,370.700,25.593,18.451,25.593 +30,0.963,342.508,603.941,223.926,455.014,339.661,600.211,52.651,155.298,52.651,361.891,306.052,371.276,24.434,18.642,24.434 +31,0.995,325.078,615.547,241.219,444.418,322.936,611.074,64.414,159.444,64.414,361.288,306.297,371.208,22.705,18.727,22.705 +32,1.028,302.842,624.413,259.979,438.151,301.516,619.205,75.719,163.811,75.719,360.663,306.443,371.411,29.091,18.247,29.091 +33,1.059,287.276,625.973,280.156,435.209,287.234,620.096,89.592,168.449,89.592,358.112,307.719,369.866,29.056,18.865,29.056 +34,1.089,265.876,623.580,301.175,436.855,267.062,618.029,102.060,172.660,102.060,357.252,309.242,368.605,28.427,17.994,28.427 +35,1.120,243.016,614.125,321.057,442.747,245.319,608.900,113.786,177.397,113.786,353.751,310.725,365.172,21.823,17.936,21.823 +36,1.150,227.696,602.899,339.434,451.728,231.490,597.821,126.764,2.203,126.764,350.607,313.537,363.285,21.215,19.409,21.215 +37,1.182,214.661,588.612,354.953,464.380,219.832,584.097,138.881,7.001,138.881,347.315,317.022,361.044,20.982,20.687,20.982 +38,1.214,214.661,588.612,354.953,464.380,219.832,584.097,138.881,7.001,138.881,347.315,317.022,361.044,20.982,20.687,20.982 +39,1.244,205.497,572.601,367.449,480.169,211.952,568.992,150.783,11.669,150.783,343.349,320.721,358.140,20.485,21.907,20.485 +40,1.277,199.558,555.681,375.800,497.825,207.312,553.200,162.255,16.746,162.255,338.415,324.997,354.698,20.458,22.135,20.458 +41,1.308,196.833,539.078,380.499,517.425,205.728,538.032,173.290,22.436,173.290,334.049,327.068,351.962,19.746,22.326,19.746 +42,1.339,197.105,523.086,381.102,537.094,206.994,523.822,4.254,27.836,4.254,329.396,329.753,349.227,19.887,19.954,19.887 +43,1.370,200.424,506.134,378.863,554.750,211.209,508.713,13.449,33.009,13.449,325.349,331.687,347.527,25.900,19.600,25.900 +44,1.401,205.303,491.531,373.280,572.524,217.174,497.032,24.864,38.660,24.864,320.590,332.494,346.758,23.325,19.209,23.325 +45,1.433,209.223,479.744,365.103,588.395,223.070,489.388,34.854,44.433,34.854,312.519,333.150,346.269,18.933,18.734,18.933 +46,1.465,212.388,462.541,354.267,601.432,230.812,480.521,44.301,49.891,44.301,294.117,334.427,345.605,18.840,18.945,18.840 +47,1.495,205.644,427.556,341.926,612.581,239.339,473.381,53.673,55.519,53.673,232.075,335.334,345.835,18.198,18.549,18.198 +48,1.528,213.736,400.435,328.160,621.689,248.802,467.970,62.560,60.945,62.560,193.798,335.288,345.989,18.211,19.037,18.211 +49,1.560,253.111,443.528,312.980,627.576,259.899,462.609,70.416,66.595,70.416,305.927,336.133,346.432,20.927,19.258,20.927 +50,1.590,267.419,448.155,298.250,631.767,269.624,460.201,79.628,72.745,79.628,323.343,336.874,347.833,19.634,19.729,19.634 +51,1.621,279.449,449.567,282.047,633.724,279.661,459.315,88.750,78.155,88.750,329.336,335.590,348.839,18.359,21.466,18.359 +52,1.652,291.826,448.650,269.161,631.701,290.629,457.791,97.457,84.594,97.457,332.011,333.915,350.450,18.720,24.930,18.720 +53,1.682,291.826,448.650,269.161,631.701,290.629,457.791,97.457,84.594,97.457,332.011,333.915,350.450,18.720,24.930,18.720 +54,1.712,303.388,452.317,253.000,629.000,301.278,459.648,106.052,90.000,106.052,336.938,332.000,352.196,19.025,22.000,19.025 +55,1.743,315.026,457.350,236.922,623.177,312.199,463.432,114.932,95.274,114.932,339.769,329.553,353.182,18.803,19.394,18.803 +56,1.775,326.885,461.423,223.593,613.637,323.290,466.814,123.690,100.784,123.690,341.973,327.353,354.932,19.137,19.460,19.137 +57,1.806,338.910,467.521,211.944,602.237,334.344,472.430,132.930,106.621,132.930,343.413,324.994,356.821,19.275,19.651,19.275 +58,1.836,348.835,478.353,201.276,590.706,344.137,481.996,142.206,112.109,142.206,347.132,323.105,359.023,19.417,20.324,19.417 +59,1.868,358.257,489.681,192.747,576.131,352.903,492.552,151.798,117.867,151.798,349.131,320.610,361.281,20.014,21.481,20.014 +60,1.898,365.791,502.379,187.730,559.976,360.278,504.223,161.506,123.147,161.506,351.019,318.180,362.645,21.145,21.188,21.145 +61,1.930,367.656,517.105,184.293,542.634,362.287,517.862,171.979,128.660,171.979,348.575,315.783,359.419,22.437,21.864,22.437 +62,1.962,367.444,531.481,184.702,524.697,362.197,531.207,2.984,134.153,2.984,344.679,312.758,355.187,24.540,22.959,24.540 +63,1.994,370.265,548.941,188.538,507.043,365.464,547.741,14.036,138.775,14.036,353.132,311.003,363.029,25.466,21.461,25.466 +64,2.026,368.037,569.399,195.553,489.724,363.401,567.101,26.362,143.397,26.362,359.156,309.194,369.504,25.501,18.817,25.501 +65,2.058,359.089,586.331,206.091,472.966,355.132,583.234,38.047,148.541,38.047,360.609,307.564,370.659,25.611,18.190,25.611 +66,2.092,345.914,601.034,219.900,458.300,342.876,597.444,49.764,153.435,49.764,361.904,306.341,371.311,24.487,18.336,24.487 +67,2.122,329.101,614.317,236.296,447.954,326.723,609.936,61.504,157.834,61.504,361.033,305.851,371.002,23.327,17.973,23.327 +68,2.153,307.979,624.357,254.932,440.385,306.463,619.292,73.339,162.688,73.339,361.767,306.508,372.341,25.769,18.325,25.769 +69,2.183,289.258,626.481,275.165,436.241,288.839,620.824,85.764,167.471,85.764,358.832,307.174,370.177,28.293,18.548,28.293 +70,2.215,289.258,626.481,275.165,436.241,288.839,620.824,85.764,167.471,85.764,358.832,307.174,370.177,28.293,18.548,28.293 +71,2.246,263.724,624.270,296.297,436.629,264.458,618.596,97.374,172.061,97.374,357.653,308.730,369.097,29.787,18.717,29.787 +72,2.277,247.592,617.537,316.862,440.899,249.900,611.738,111.705,176.228,111.705,354.500,310.907,366.982,21.378,19.825,21.378 +73,2.309,230.071,606.371,335.507,449.544,233.829,600.823,124.114,0.830,124.114,351.144,313.112,364.546,21.366,20.288,21.366 +74,2.341,216.595,592.575,351.651,462.389,221.501,587.904,136.403,5.356,136.403,348.069,316.612,361.617,20.722,20.566,20.722 +75,2.372,206.524,576.724,364.946,477.657,212.805,572.870,148.465,9.951,148.465,344.203,319.869,358.942,20.649,21.082,20.649 +76,2.402,199.606,559.791,374.568,494.651,207.660,556.860,160.001,14.670,160.001,339.094,323.193,356.237,20.274,22.235,20.274 +77,2.434,196.387,543.280,379.441,513.398,205.403,541.865,171.080,20.082,171.080,334.439,327.317,352.693,19.563,22.622,19.563 +78,2.466,196.512,526.726,380.972,533.129,206.458,526.880,0.891,26.154,0.891,329.287,329.166,349.181,22.355,20.453,22.355 +79,2.498,199.431,511.220,379.624,551.202,209.773,513.235,11.023,32.005,11.023,326.881,331.143,347.953,24.870,19.398,24.870 +80,2.530,203.901,497.307,375.023,568.585,214.996,501.516,20.772,39.151,20.772,323.090,332.175,346.823,25.406,18.735,25.406 +81,2.563,211.235,484.441,367.663,583.873,221.672,490.703,30.964,46.591,30.964,321.903,333.213,346.244,24.867,18.967,24.867 +82,2.595,218.348,473.328,358.648,596.895,228.991,482.276,40.054,54.737,40.054,318.199,334.192,346.007,24.318,19.093,24.318 +83,2.626,227.703,464.805,347.600,608.200,236.923,475.294,48.681,63.435,48.681,317.855,334.516,345.786,24.471,18.783,24.471 +84,2.656,237.232,458.401,335.877,617.038,244.886,470.089,56.781,72.734,56.781,317.626,334.667,345.568,23.506,19.950,23.506 +85,2.687,247.083,454.071,322.597,623.869,252.600,465.617,64.458,83.168,64.458,320.337,334.520,345.932,22.237,18.641,22.237 +86,2.718,256.840,451.410,306.287,628.202,260.268,461.919,71.932,94.040,71.932,322.606,334.216,344.713,21.084,24.504,21.084 +87,2.748,266.120,448.903,295.461,629.578,268.099,459.240,79.160,105.318,79.160,323.840,331.535,344.890,19.706,21.785,19.706 +88,2.779,266.120,448.903,295.461,629.578,268.099,459.240,79.160,105.318,79.160,323.840,331.535,344.890,19.706,21.785,19.706 +89,2.808,275.792,447.241,283.409,629.393,276.457,456.975,86.093,117.897,86.093,325.471,328.977,344.984,19.116,20.743,19.116 +90,2.840,284.997,447.118,271.915,627.794,284.579,455.926,92.713,130.956,92.713,326.913,326.454,344.549,18.591,20.462,18.591 +91,2.870,294.930,447.483,261.591,625.766,293.525,456.003,99.368,144.926,99.368,328.123,324.179,345.393,19.560,22.132,19.560 +92,2.902,304.840,449.329,251.539,622.370,302.660,456.799,106.268,158.523,106.268,330.961,321.640,346.525,19.602,24.973,19.602 +93,2.933,314.528,452.803,241.966,617.633,311.868,458.982,113.286,172.694,113.286,333.268,319.767,346.722,19.068,25.509,19.068 +94,2.965,324.260,457.327,232.202,611.952,321.202,462.535,120.426,6.925,120.426,335.744,319.631,347.822,19.559,27.643,19.559 +95,2.996,332.981,462.524,222.862,605.968,329.506,467.042,127.569,20.985,127.569,338.877,319.342,350.276,19.023,25.798,19.023 +96,3.029,342.250,469.250,214.400,599.065,338.084,473.416,135.000,35.096,135.000,340.825,317.613,352.609,19.092,26.094,19.092 +97,3.060,350.570,476.939,207.977,588.646,346.826,479.805,142.561,48.853,142.561,343.395,317.025,352.825,19.478,21.896,19.478 +98,3.090,358.133,486.735,200.431,579.319,353.863,489.159,150.422,62.435,150.422,346.064,317.668,355.884,19.744,20.205,19.744 +99,3.121,364.358,497.857,193.979,567.005,359.936,499.583,158.674,76.820,158.674,348.728,316.304,358.225,19.990,19.689,19.990 +100,3.151,369.272,510.187,189.565,553.516,364.734,511.227,167.089,90.437,167.089,351.067,315.060,360.379,21.139,20.557,21.139 +101,3.182,368.112,524.050,186.922,538.603,363.221,524.403,175.876,103.990,175.876,343.919,314.571,353.727,21.709,20.750,21.709 +102,3.214,368.112,524.050,186.922,538.603,363.221,524.403,175.876,103.990,175.876,343.919,314.571,353.727,21.709,20.750,21.709 +103,3.243,368.391,535.489,186.594,522.591,363.566,535.012,5.645,117.508,5.645,344.976,312.729,354.671,25.162,20.945,25.162 +104,3.276,370.492,550.862,189.452,506.087,366.229,549.699,15.255,131.074,15.255,355.208,310.902,364.046,25.786,20.742,25.786 +105,3.307,367.818,568.309,195.259,489.275,363.376,566.133,26.095,144.643,26.095,359.683,309.104,369.575,25.494,19.137,25.494 +106,3.338,359.949,583.667,204.532,474.320,356.275,580.967,36.304,158.049,36.304,361.742,306.773,370.861,25.048,19.224,25.048 +107,3.369,349.468,598.210,216.822,461.163,346.018,594.541,46.771,171.521,46.771,361.268,305.082,371.341,24.496,19.511,24.496 +108,3.400,335.661,609.819,231.883,450.279,333.122,605.879,57.200,5.249,57.200,361.894,303.295,371.268,23.200,21.134,23.200 +109,3.431,318.906,619.206,247.921,442.753,317.117,614.813,67.848,17.281,67.848,361.414,302.753,370.902,22.433,21.304,22.433 +110,3.462,298.229,625.665,264.939,438.784,297.234,621.011,77.934,31.517,77.934,360.387,303.525,369.905,27.799,20.588,27.799 +111,3.494,283.000,625.500,282.539,437.459,283.000,621.230,90.000,44.236,90.000,359.000,304.142,367.541,28.000,21.249,28.000 +112,3.526,260.106,623.789,300.910,439.557,260.996,618.836,100.193,57.435,100.193,356.963,304.869,367.026,27.636,22.706,27.636 +113,3.557,244.665,616.900,317.996,445.136,246.693,612.025,112.580,69.918,112.580,352.390,306.634,362.950,21.374,22.682,21.374 +114,3.588,229.841,607.252,333.026,453.435,232.777,602.896,123.980,82.972,123.980,349.427,308.459,359.934,20.515,22.351,20.515 +115,3.619,215.750,596.750,346.801,463.923,221.469,591.031,135.000,96.263,135.000,340.825,311.532,357.003,20.506,22.960,20.506 +116,3.649,215.750,596.750,346.801,463.923,221.469,591.031,135.000,96.263,135.000,340.825,311.532,357.003,20.506,22.960,20.506 +117,3.680,206.387,581.754,356.800,475.931,212.139,577.813,145.579,109.168,145.579,339.903,314.313,353.847,20.153,21.203,20.153 +118,3.713,198.229,567.366,365.686,490.076,206.373,563.724,155.907,122.550,155.907,333.153,317.979,350.997,20.071,21.755,20.071 +119,3.743,193.813,552.227,373.011,505.036,204.039,549.650,165.856,135.714,165.856,328.413,319.693,349.503,20.348,23.779,20.348 +120,3.773,192.243,536.993,376.993,520.329,203.946,536.042,175.357,149.265,175.357,324.019,322.744,347.502,20.203,23.742,20.203 +121,3.803,191.329,521.998,378.633,535.566,205.758,522.820,3.257,162.368,3.257,317.738,325.468,346.641,25.073,22.355,25.073 +122,3.835,194.129,504.954,376.917,550.264,209.523,508.878,14.300,175.466,14.300,313.087,326.513,344.860,26.410,20.846,26.410 +123,3.866,198.426,494.797,375.173,563.779,214.214,500.859,21.003,8.160,21.003,311.809,331.780,345.633,25.339,23.393,25.339 +124,3.897,202.473,481.346,369.034,579.353,220.473,491.356,29.078,22.329,29.078,304.013,332.445,345.205,24.309,20.053,24.309 +125,3.929,188.130,453.645,361.106,593.429,227.549,483.587,37.219,35.855,37.219,246.588,333.415,345.590,22.715,18.853,22.715 +126,3.961,202.856,447.723,351.337,604.924,232.680,479.393,46.718,49.418,46.718,258.466,334.182,345.471,18.235,19.024,18.235 +127,3.992,228.386,457.263,340.445,613.794,239.988,473.204,53.949,62.942,53.949,306.140,334.565,345.572,18.507,18.650,18.507 +128,4.023,242.506,454.760,328.489,621.003,249.366,467.293,61.305,76.293,61.305,317.071,334.440,345.646,22.761,19.430,22.761 +129,4.053,252.175,452.053,316.003,626.503,256.815,463.841,68.510,89.659,68.510,320.739,333.083,346.074,21.680,19.976,21.680 +130,4.089,261.472,450.467,301.210,628.723,264.038,460.339,75.426,102.137,75.426,324.240,332.947,344.639,20.305,23.358,20.305 +131,4.132,270.884,448.412,289.739,628.860,272.152,457.855,82.355,116.003,82.355,324.592,329.190,343.649,19.909,21.285,19.909 +132,4.165,279.607,447.908,278.455,627.882,279.760,456.359,88.963,129.996,88.963,326.037,327.263,342.943,18.581,20.762,18.581 +133,4.200,289.390,447.690,268.029,626.541,288.581,455.727,95.749,144.184,95.749,327.873,324.678,344.027,18.918,21.794,18.918 +134,4.240,299.186,448.704,257.826,623.805,297.586,455.941,102.468,157.949,102.468,330.157,322.931,344.978,19.303,23.840,19.303 +135,4.273,309.246,450.969,247.694,619.779,306.965,457.431,109.440,171.367,109.440,331.933,320.764,345.638,19.415,25.333,19.415 +136,4.303,318.800,454.900,237.841,614.904,316.103,460.293,116.565,4.764,116.565,334.516,319.891,346.575,19.230,27.405,19.230 +137,4.335,328.613,459.759,227.970,609.762,325.341,464.621,123.947,17.809,123.947,337.834,320.289,349.555,19.015,26.885,19.015 +138,4.366,337.797,465.761,219.029,603.118,334.023,470.066,131.244,30.964,131.244,340.257,318.473,351.708,19.065,25.896,19.065 +139,4.397,346.476,472.972,210.268,595.264,342.029,476.871,138.761,43.798,138.761,342.420,317.584,354.249,19.366,25.322,19.366 +140,4.428,354.562,482.333,204.419,584.212,350.837,484.778,146.706,56.642,146.706,345.027,318.668,353.938,19.562,21.570,19.562 +141,4.458,361.527,492.494,196.627,572.904,357.179,494.540,154.808,69.887,154.808,347.664,316.714,357.274,19.599,20.394,19.599 +142,4.489,367.127,504.447,191.400,559.800,362.755,505.765,163.223,81.870,163.223,350.183,315.652,359.317,20.444,20.082,20.444 +143,4.521,368.593,517.669,188.065,545.574,363.885,518.323,172.086,93.991,172.086,346.289,314.329,355.796,21.537,21.088,21.537 +144,4.551,368.205,529.648,186.664,529.634,363.066,529.495,1.710,106.333,1.710,342.355,313.484,352.638,24.437,20.641,24.437 +145,4.581,368.205,529.648,186.664,529.634,363.066,529.495,1.710,106.333,1.710,342.355,313.484,352.638,24.437,20.641,24.437 +146,4.610,369.825,544.278,187.845,513.240,364.967,543.317,11.192,118.794,11.192,349.277,311.976,359.181,25.679,20.992,25.679 +147,4.641,370.328,561.931,192.558,496.345,365.800,560.120,21.801,130.795,21.801,359.320,310.227,369.073,25.255,19.424,25.255 +148,4.673,364.661,577.002,200.357,480.473,360.127,574.201,31.711,143.007,31.711,359.711,308.402,370.370,25.950,18.943,25.950 +149,4.703,353.705,593.090,211.191,465.920,349.940,589.590,42.912,155.497,42.912,361.364,306.626,371.646,24.913,19.734,24.913 +150,4.734,340.533,605.894,225.324,454.470,337.836,602.238,53.589,167.586,53.589,362.323,305.221,371.410,23.772,18.992,23.772 +151,4.765,324.711,616.212,241.503,444.969,322.689,612.014,64.276,0.324,64.276,362.138,303.057,371.457,22.646,19.627,22.646 +152,4.797,308.382,623.029,259.287,438.997,307.273,618.591,75.964,12.061,75.964,362.591,303.399,371.740,26.921,21.121,26.921 +153,4.831,290.115,625.847,277.415,436.768,289.876,620.974,87.187,24.775,87.187,359.433,303.957,369.191,27.507,21.023,27.507 +154,4.862,265.810,624.362,295.863,437.180,266.372,619.505,96.603,37.117,96.603,359.232,305.601,369.012,28.619,23.211,28.619 +155,4.895,251.075,618.586,313.818,442.155,252.614,614.149,109.124,49.574,109.124,355.711,306.527,365.105,21.137,23.880,21.137 +156,4.925,235.240,610.180,329.697,449.898,237.742,605.887,120.232,62.676,120.232,352.209,308.269,362.146,21.040,23.839,21.040 +157,4.958,221.958,598.648,343.776,460.160,225.180,594.961,131.153,75.069,131.153,349.295,310.290,359.088,20.740,24.478,20.740 +158,4.989,211.207,585.789,354.799,472.484,215.268,582.575,141.644,86.947,141.644,345.109,311.890,355.466,20.049,23.274,20.049 +159,5.020,203.623,571.557,362.959,486.243,208.030,569.217,152.036,99.462,152.036,341.515,315.153,351.495,20.247,21.372,20.247 +160,5.051,198.371,556.734,370.810,500.724,204.528,554.740,162.054,111.801,162.054,336.730,317.539,349.672,20.367,23.583,20.367 +161,5.081,195.609,542.234,375.323,516.576,203.142,541.151,171.819,124.160,171.819,332.631,320.647,347.852,19.869,25.356,19.869 +162,5.112,195.609,542.234,375.323,516.576,203.142,541.151,171.819,124.160,171.819,332.631,320.647,347.852,19.869,25.356,19.869 +163,5.140,196.000,527.000,377.134,531.659,204.067,527.000,0.000,136.123,0.000,330.000,321.824,346.134,24.000,25.590,24.000 +164,5.171,198.928,513.529,376.650,545.901,207.256,514.879,9.211,147.695,9.211,327.479,324.268,344.352,25.291,24.754,25.291 +165,5.203,203.687,499.917,373.940,560.344,212.111,502.794,18.853,158.979,18.853,325.683,326.455,343.487,25.944,24.527,25.944 +166,5.233,209.600,487.811,369.264,573.952,218.238,492.391,27.937,169.695,27.937,323.722,328.076,343.275,26.357,24.150,26.357 +167,5.265,217.975,479.215,362.519,585.660,224.653,484.112,36.254,179.359,36.254,325.895,329.069,342.456,26.289,26.778,26.289 +168,5.297,226.205,472.301,354.595,596.889,231.618,477.593,44.351,9.620,44.351,327.522,331.944,342.662,25.299,26.052,25.299 +169,5.328,235.146,466.274,344.545,607.677,239.545,471.969,52.317,19.633,52.317,328.777,333.239,343.171,24.446,24.252,24.446 +170,5.359,243.724,460.737,333.641,616.244,247.572,467.399,59.986,28.768,59.986,328.489,333.530,343.876,23.123,23.152,23.123 +171,5.389,252.884,457.079,322.398,622.978,255.727,463.978,67.598,37.355,67.598,329.896,333.398,344.820,21.871,22.483,21.871 +172,5.419,262.074,453.901,309.888,627.630,263.927,460.951,75.273,45.385,75.273,331.195,333.063,345.775,20.509,22.988,20.509 +173,5.449,271.562,451.992,296.466,631.026,272.451,459.111,82.875,52.531,82.875,332.785,333.024,347.133,18.977,22.399,18.977 +174,5.480,271.562,451.992,296.466,631.026,272.451,459.111,82.875,52.531,82.875,332.785,333.024,347.133,18.977,22.399,18.977 +175,5.510,281.430,450.483,282.372,632.576,281.397,458.278,90.243,59.180,90.243,332.993,332.363,348.584,18.356,22.680,18.356 +176,5.542,292.280,452.040,268.635,631.668,291.400,458.203,98.130,65.263,98.130,337.431,331.269,349.882,18.950,21.127,18.950 +177,5.573,302.707,453.295,255.380,628.356,301.081,459.086,105.680,71.105,105.680,338.614,330.485,350.645,19.357,22.002,19.357 +178,5.604,313.791,455.872,242.333,624.794,311.105,461.993,113.691,75.870,113.691,340.062,331.550,353.429,19.380,21.117,19.380 +179,5.635,324.437,460.591,228.966,616.784,321.286,465.646,121.938,81.611,121.938,342.279,327.682,354.193,19.177,20.365,19.177 +180,5.668,335.468,466.273,217.538,607.588,331.439,471.013,130.365,86.549,130.365,343.216,325.615,355.659,18.972,19.472,18.972 +181,5.698,345.271,474.514,207.033,596.537,341.028,478.207,138.965,91.384,138.965,346.268,323.268,357.519,19.319,19.584,19.319 +182,5.731,354.311,484.309,197.543,584.106,349.368,487.411,147.882,95.802,147.882,348.327,321.495,359.998,19.486,20.488,19.486 +183,5.762,362.080,496.151,191.355,569.565,357.223,498.211,157.016,100.389,157.016,350.574,319.213,361.125,20.454,20.115,20.454 +184,5.792,368.849,509.370,188.005,554.130,363.862,510.564,166.527,104.487,166.527,352.078,317.034,362.335,21.212,20.402,21.212 +185,5.822,367.997,523.441,186.448,537.665,362.820,523.705,177.077,108.843,177.077,343.340,314.695,353.708,23.021,21.166,23.021 +186,5.853,368.955,537.986,186.093,519.541,363.497,537.292,7.242,113.962,7.242,345.449,312.625,356.453,25.195,22.541,25.195 +187,5.884,371.800,556.600,191.324,502.466,367.216,555.072,18.435,117.446,18.435,357.337,310.845,367.002,25.298,19.950,25.298 +188,5.914,371.800,556.600,191.324,502.466,367.216,555.072,18.435,117.446,18.435,357.337,310.845,367.002,25.298,19.950,25.298 +189,5.942,365.734,574.858,198.354,485.719,361.345,572.331,29.937,121.799,29.937,358.807,308.889,368.935,25.421,18.494,25.421 +190,5.974,356.035,591.173,209.171,470.451,352.229,587.845,41.166,126.142,41.166,359.828,307.834,369.939,24.930,18.592,24.930 +191,6.006,342.605,605.419,222.805,456.757,339.340,601.160,52.524,130.179,52.524,360.271,306.885,371.005,23.729,18.778,23.729 +192,6.037,325.505,617.010,239.132,446.620,323.091,612.066,63.979,134.465,63.979,360.012,306.263,371.015,23.018,18.212,23.018 +193,6.067,303.757,625.330,257.563,439.497,302.283,619.779,75.133,139.048,75.133,359.955,307.616,371.442,27.576,18.521,27.576 +194,6.098,288.311,627.032,276.638,435.859,288.132,620.475,88.442,143.366,88.442,356.602,308.804,369.722,28.180,18.930,28.180 +195,6.129,262.178,624.933,296.135,436.416,263.156,618.350,98.446,147.995,98.446,356.300,309.943,369.610,28.724,18.656,28.724 +196,6.161,247.048,618.119,315.221,440.510,249.634,611.665,111.835,152.382,111.835,352.636,312.234,366.540,20.787,19.300,20.787 +197,6.191,230.906,607.774,332.678,448.239,234.869,601.803,123.571,157.054,123.571,349.738,314.616,364.071,20.822,19.829,20.822 +198,6.222,217.750,594.750,348.042,459.586,222.864,589.636,135.000,161.804,135.000,346.482,317.188,360.947,20.506,19.770,20.506 +199,6.252,206.846,580.769,360.898,472.925,214.097,575.935,146.310,166.834,146.310,341.141,319.453,358.570,20.524,20.556,20.524 +200,6.283,199.209,565.311,370.630,488.898,208.190,561.521,157.123,171.745,157.123,336.298,322.299,355.792,20.188,20.531,20.188 +201,6.314,199.209,565.311,370.630,488.898,208.190,561.521,157.123,171.745,157.123,336.298,322.299,355.792,20.188,20.531,20.188 +202,6.342,195.616,549.234,377.433,505.768,205.686,547.042,167.723,176.892,167.723,332.579,324.043,353.191,19.796,20.269,19.796 +203,6.374,188.827,533.904,377.688,522.682,204.328,533.379,178.059,2.490,178.059,316.225,323.738,347.245,19.074,19.894,19.074 +204,6.404,145.030,511.790,379.111,539.415,206.644,520.592,8.130,7.595,8.130,222.314,325.321,346.793,19.092,21.146,19.092 +205,6.434,147.814,488.757,378.643,556.379,211.478,508.861,17.526,12.995,17.526,213.904,331.218,347.430,19.323,21.287,19.323 +206,6.467,192.931,484.319,372.915,571.738,217.552,495.664,24.742,18.595,24.742,291.663,332.375,345.881,23.848,20.657,23.848 +207,6.499,209.892,478.418,365.095,586.465,223.672,487.533,33.483,24.721,33.483,312.026,333.289,345.068,25.161,19.318,25.161 +208,6.533,221.504,470.103,355.944,598.749,231.438,479.375,43.025,30.596,43.025,317.765,334.079,344.944,25.002,19.207,25.002 +209,6.566,233.095,463.814,345.400,609.136,239.974,472.693,52.232,36.501,52.232,322.389,334.430,344.854,24.463,19.710,24.463 +210,6.601,243.423,459.615,334.059,617.761,248.179,467.938,60.255,42.600,60.255,326.211,334.172,345.382,23.194,20.568,23.194 +211,6.633,253.155,456.138,321.120,624.393,256.335,464.087,68.199,48.305,68.199,328.681,333.920,345.803,22.098,20.427,22.098 +212,6.667,262.432,452.522,308.073,629.087,264.640,461.264,75.822,54.184,75.822,328.664,333.865,346.697,20.422,20.281,20.422 +213,6.699,272.508,451.281,294.425,631.831,273.417,459.336,83.558,60.083,83.558,331.314,333.544,347.526,19.120,20.022,19.120 +214,6.732,282.709,449.919,280.385,632.829,282.550,458.374,91.081,66.121,91.081,332.016,333.032,348.930,18.808,21.141,18.808 +215,6.762,292.781,451.792,267.119,632.122,291.743,458.713,98.531,72.255,98.531,336.288,333.044,350.285,18.790,21.258,18.790 +216,6.793,303.406,452.964,254.462,628.793,301.547,459.411,106.086,77.856,106.086,338.173,332.106,351.593,19.324,22.225,19.324 +217,6.824,314.000,455.954,240.406,623.457,311.388,461.868,113.827,83.884,113.827,340.052,329.400,352.982,19.438,19.673,19.438 +218,6.854,324.121,460.905,228.251,616.496,321.174,465.658,121.805,89.683,121.805,343.139,327.056,354.325,18.921,18.552,18.921 +219,6.885,334.897,466.311,216.669,607.862,330.900,471.065,130.061,95.906,130.061,344.013,325.985,356.436,19.343,19.619,19.343 +220,6.915,334.897,466.311,216.669,607.862,330.900,471.065,130.061,95.906,130.061,344.013,325.985,356.436,19.343,19.619,19.343 +221,6.944,344.101,473.825,206.483,597.184,339.841,477.646,138.115,101.768,138.115,346.739,324.206,358.184,19.203,19.620,19.203 +222,6.975,353.091,483.098,197.479,584.993,348.145,486.352,146.659,107.776,146.659,348.325,322.298,360.166,19.742,20.448,19.742 +223,7.007,360.830,493.847,191.200,570.965,355.732,496.178,155.428,113.682,155.428,350.252,319.851,361.463,20.028,20.549,20.028 +224,7.038,367.489,506.577,186.760,556.148,362.179,508.057,164.431,119.638,164.431,352.754,317.530,363.779,21.068,20.980,21.068 +225,7.068,367.679,521.148,185.589,540.753,362.762,521.682,173.809,124.641,173.809,346.500,315.151,356.392,21.942,21.002,21.942 +226,7.098,367.686,533.462,184.858,522.876,362.451,533.065,4.338,131.186,4.338,345.208,313.636,355.708,24.763,22.577,24.763 +227,7.130,370.654,549.669,188.538,506.440,365.546,548.348,14.500,136.397,14.500,353.173,311.207,363.726,25.739,21.586,25.739 +228,7.161,367.685,568.586,195.120,490.020,363.335,566.450,26.154,141.280,26.154,359.669,309.381,369.362,25.951,18.920,25.951 +229,7.191,359.900,584.800,204.829,474.499,355.965,581.849,36.870,146.664,36.870,360.800,308.137,370.638,25.000,18.566,25.000 +230,7.222,348.186,599.621,217.553,461.101,344.949,596.039,47.891,152.053,47.891,361.407,306.990,371.062,24.325,18.630,24.325 +231,7.252,333.209,611.964,232.494,449.987,330.619,607.667,58.931,157.126,58.931,361.364,306.325,371.399,23.317,18.355,23.317 +232,7.282,333.209,611.964,232.494,449.987,330.619,607.667,58.931,157.126,58.931,361.364,306.325,371.399,23.317,18.355,23.317 +233,7.311,315.622,620.928,249.737,441.739,313.941,616.167,70.560,162.244,70.560,361.609,306.414,371.706,22.632,18.560,22.632 +234,7.342,298.561,625.482,268.685,437.058,297.880,620.142,82.732,167.371,82.732,359.845,307.172,370.612,29.653,18.633,29.653 +235,7.373,272.738,625.970,287.714,436.105,272.954,620.477,92.256,172.405,92.256,358.628,308.272,369.621,28.451,18.767,28.451 +236,7.404,255.321,621.450,306.603,438.728,256.729,615.842,104.098,177.354,104.098,356.288,309.640,367.854,24.756,18.526,24.756 +237,7.434,240.019,613.256,325.365,445.614,242.562,608.246,116.906,2.137,116.906,353.758,311.455,364.995,20.763,18.070,20.763 +238,7.465,225.538,602.030,341.696,454.497,229.369,597.158,128.187,6.934,128.187,350.756,314.547,363.151,20.479,19.733,20.479 +239,7.498,214.387,588.449,355.637,466.360,219.249,584.261,139.264,12.077,139.264,347.731,317.507,360.567,20.613,20.913,20.613 +240,7.533,205.370,574.410,366.452,480.532,211.713,570.744,149.971,16.521,149.971,343.575,320.845,358.228,20.343,21.628,20.343 +241,7.565,199.768,559.355,374.306,496.471,207.142,556.706,160.243,21.898,160.243,339.699,324.046,355.369,20.071,22.150,20.071 +242,7.598,197.192,544.720,379.010,513.912,205.308,543.317,170.194,27.096,170.194,335.872,326.514,352.344,20.535,21.573,20.535 +243,7.629,197.000,527.000,381.015,531.116,206.007,527.000,0.000,32.504,0.000,332.000,328.415,350.015,24.000,20.121,24.000 +244,7.659,199.044,515.558,380.395,547.401,208.520,516.865,7.853,38.260,7.853,329.740,329.692,348.872,25.141,19.803,25.141 +245,7.690,202.862,503.404,377.000,562.500,212.395,506.228,16.504,45.000,16.504,327.731,330.219,347.618,25.568,19.092,25.568 +246,7.720,208.279,491.632,371.933,576.239,218.035,496.253,25.346,51.667,25.346,325.060,332.337,346.649,25.923,20.395,25.923 +247,7.749,215.308,482.038,364.246,588.954,223.805,487.704,33.690,58.921,33.690,325.609,333.232,346.035,25.239,19.429,25.239 +248,7.780,215.308,482.038,364.246,588.954,223.805,487.704,33.690,58.921,33.690,325.609,333.232,346.035,25.239,19.429,25.239 +249,7.808,222.463,473.890,355.642,599.506,230.266,480.793,41.496,66.588,41.496,324.287,333.654,345.124,25.264,18.921,25.264 +250,7.839,230.075,467.883,346.074,608.379,236.470,475.086,48.403,75.107,48.403,325.627,334.058,344.892,24.243,19.112,24.243 +251,7.871,237.369,462.458,335.602,615.543,242.836,470.310,55.154,83.904,55.154,325.254,333.376,344.389,23.561,18.593,23.561 +252,7.902,244.927,458.078,324.893,620.850,249.347,466.286,61.699,93.302,61.699,325.165,332.774,343.810,22.689,18.892,22.689 +253,7.933,252.227,454.089,313.169,624.474,255.697,462.670,67.989,102.718,67.989,324.587,332.562,343.100,21.777,23.347,21.777 +254,7.965,259.746,451.639,303.509,626.147,262.094,459.829,73.999,113.199,73.999,325.541,330.236,342.580,20.759,21.534,20.759 +255,7.999,267.088,449.445,294.283,627.141,268.561,457.635,79.802,125.218,79.802,326.120,328.421,342.764,19.564,21.385,19.564 +256,8.033,275.144,448.600,285.000,627.500,275.751,456.420,85.559,135.000,85.559,326.880,325.976,342.565,19.185,21.920,19.185 +257,8.066,282.419,448.026,276.808,627.461,282.316,455.723,90.769,146.310,90.769,328.199,324.777,343.594,19.025,23.852,19.025 +258,8.098,290.502,448.115,268.227,626.304,289.658,455.485,96.530,158.552,96.530,329.457,323.303,344.295,18.823,24.598,18.823 +259,8.130,298.653,448.895,259.649,623.863,297.205,455.621,102.155,170.194,102.155,330.994,321.906,344.756,19.341,24.988,19.341 +260,8.165,307.530,451.159,251.405,621.472,305.551,457.186,108.178,1.560,108.178,333.270,321.426,345.957,19.626,27.340,19.626 +261,8.197,315.085,453.641,242.682,618.075,312.623,459.221,113.806,13.303,113.806,334.941,321.806,347.139,19.240,27.205,19.240 +262,8.228,323.277,457.387,234.020,614.624,320.242,462.658,119.932,24.775,119.932,337.274,321.557,349.439,19.407,26.401,19.407 +263,8.260,331.066,461.953,225.907,610.125,327.486,466.856,126.135,36.733,126.135,339.075,319.999,351.216,18.998,26.459,18.998 +264,8.290,338.893,467.032,219.515,602.161,335.656,470.574,132.421,48.532,132.421,341.371,319.824,350.969,18.824,21.365,18.824 +265,8.320,346.135,473.438,211.463,596.104,342.239,476.844,138.841,59.797,138.841,343.550,321.396,353.900,19.386,21.284,19.386 +266,8.350,346.135,473.438,211.463,596.104,342.239,476.844,138.841,59.797,138.841,343.550,321.396,353.900,19.386,21.284,19.386 +267,8.380,353.199,481.556,203.066,587.177,348.829,484.524,145.823,72.216,145.823,345.947,319.711,356.511,19.426,20.212,19.426 +268,8.411,359.365,490.287,196.595,576.815,354.877,492.589,152.850,83.367,152.850,348.466,318.967,358.553,19.599,19.150,19.599 +269,8.440,364.938,500.033,190.693,565.048,359.919,501.829,160.308,93.968,160.308,350.601,317.595,361.263,19.901,21.088,19.901 +270,8.470,368.663,511.756,187.486,552.069,363.838,512.795,167.842,105.986,167.842,351.464,317.165,361.336,20.692,20.146,20.692 +271,8.501,366.970,522.502,185.608,538.072,362.440,522.776,176.532,117.313,176.532,345.790,315.346,354.866,22.534,20.511,22.534 +272,8.534,367.828,534.245,186.072,523.260,363.196,533.852,4.853,128.720,4.853,345.474,313.289,354.771,25.014,21.368,25.014 +273,8.568,370.047,548.528,188.257,507.522,365.177,547.352,13.581,140.454,13.581,352.632,311.133,362.652,25.175,22.185,25.175 +274,8.600,369.595,563.515,193.792,492.431,365.001,561.585,22.791,151.020,22.791,359.296,308.869,369.260,25.171,19.205,25.171 +275,8.633,362.707,579.394,201.690,478.505,358.673,576.752,33.232,162.015,33.232,360.659,307.090,370.304,25.267,18.842,25.267 +276,8.666,353.866,592.957,212.224,465.650,350.310,589.649,42.930,173.290,42.930,361.411,305.131,371.123,25.695,19.571,25.695 +277,8.697,341.725,604.926,225.403,454.742,339.086,601.459,52.719,4.447,52.719,362.485,304.026,371.198,23.824,19.918,23.824 +278,8.728,327.333,614.779,239.889,446.330,325.364,610.965,62.694,14.685,62.694,362.415,303.202,371.001,22.503,20.534,22.503 +279,8.760,311.356,622.338,255.660,440.629,310.062,618.046,73.222,25.694,73.222,362.172,303.271,371.137,23.190,20.726,23.190 +280,8.789,294.523,625.989,271.631,438.154,294.028,621.610,83.558,36.741,83.558,360.804,303.995,369.620,28.609,20.079,28.609 +281,8.819,273.101,625.610,289.150,437.450,273.291,621.149,92.429,46.790,92.429,359.483,303.797,368.413,28.144,22.749,28.144 +282,8.849,273.101,625.610,289.150,437.450,273.291,621.149,92.429,46.790,92.429,359.483,303.797,368.413,28.144,22.749,28.144 +283,8.880,257.181,622.426,305.434,440.541,258.269,617.738,103.062,58.213,103.062,356.920,305.776,366.544,24.143,23.321,24.143 +284,8.912,243.136,615.201,320.850,445.762,245.142,610.797,114.487,68.091,114.487,353.463,307.327,363.142,20.688,23.154,20.688 +285,8.943,229.310,606.276,334.885,453.923,232.169,602.117,124.509,78.690,124.509,350.527,309.275,360.619,20.189,23.730,20.189 +286,8.975,218.151,595.126,347.327,463.989,221.912,591.281,134.363,89.736,134.363,346.634,310.070,357.390,19.813,23.419,19.813 +287,9.006,208.764,583.115,355.425,474.959,213.076,579.980,143.987,99.972,143.987,343.123,313.510,353.785,19.981,20.845,19.981 +288,9.037,201.700,570.388,364.418,487.278,207.800,567.324,153.329,110.854,153.329,338.115,315.990,351.768,19.737,22.161,19.737 +289,9.068,197.182,557.188,371.178,500.890,204.551,554.827,162.233,121.706,162.233,334.800,318.524,350.277,19.710,24.685,19.710 +290,9.099,194.941,543.749,375.187,514.132,203.405,542.390,170.880,132.589,170.880,331.036,320.341,348.180,19.635,24.102,19.635 +291,9.132,195.030,530.953,377.272,527.368,204.107,530.811,179.105,143.516,179.105,328.241,322.790,346.396,18.998,24.192,18.998 +292,9.164,195.738,517.360,377.669,540.405,206.352,518.539,6.340,154.546,6.340,324.006,324.772,345.366,25.068,24.403,25.068 +293,9.196,198.570,506.775,376.501,552.947,209.505,509.425,13.627,165.566,13.627,322.595,326.964,345.098,25.680,23.708,25.680 +294,9.228,203.180,494.561,373.628,564.909,214.450,499.185,22.306,176.169,22.306,320.061,328.140,344.424,25.810,22.984,25.810 +295,9.258,209.340,486.189,369.284,574.810,219.087,491.604,29.055,6.809,29.055,321.107,330.859,343.408,26.030,23.801,26.030 +296,9.288,215.674,478.762,364.292,585.636,224.625,485.289,36.098,18.346,36.098,321.789,332.978,343.946,26.227,21.757,26.227 +297,9.319,218.798,472.829,357.924,596.502,229.272,481.705,40.280,29.872,40.280,317.274,333.780,344.734,25.137,19.779,25.137 +298,9.350,223.064,463.315,349.882,605.290,235.356,476.250,46.459,40.932,46.459,309.176,334.719,344.864,23.007,19.132,23.007 +299,9.382,223.064,463.315,349.882,605.290,235.356,476.250,46.459,40.932,46.459,309.176,334.719,344.864,23.007,19.132,23.007 +300,9.411,191.634,406.851,341.523,613.266,239.807,473.376,54.090,51.892,54.090,181.650,335.030,345.921,18.070,19.409,18.070 +301,9.441,223.326,431.560,332.242,619.626,245.600,469.742,59.744,63.268,59.744,257.838,334.972,346.247,17.851,18.879,17.851 +302,9.471,242.751,447.461,322.764,624.066,251.524,466.468,65.225,74.320,65.225,304.027,334.881,345.894,18.019,19.205,18.019 +303,9.503,253.751,448.803,313.759,627.879,258.945,463.345,70.346,86.070,70.346,315.887,335.271,346.770,21.189,22.154,21.189 +304,9.536,261.122,447.457,304.894,630.013,264.631,461.328,75.801,97.510,75.801,318.202,333.650,346.817,20.429,25.385,20.429 +305,9.569,268.719,447.745,292.362,629.612,270.459,458.622,80.910,107.241,80.910,322.577,331.078,344.607,20.144,21.604,20.144 +306,9.600,275.627,447.246,283.651,629.028,276.296,456.806,85.996,119.055,85.996,325.464,329.266,344.631,19.073,20.397,19.073 +307,9.631,282.281,447.029,275.263,627.955,282.169,455.984,90.716,130.192,90.716,326.174,327.141,344.087,18.661,21.020,18.661 +308,9.663,289.525,447.656,267.802,626.889,288.687,455.872,95.826,142.172,95.826,327.991,325.391,344.508,18.719,22.181,18.719 +309,9.694,297.133,447.910,260.100,624.700,295.622,455.768,100.886,153.435,100.886,329.199,323.335,345.202,19.640,22.808,19.640 +310,9.725,304.199,449.775,252.755,622.141,302.258,456.536,106.015,164.055,106.015,331.601,321.698,345.670,19.268,25.686,19.268 +311,9.755,312.213,452.266,245.449,618.757,309.898,458.144,111.501,176.082,111.501,333.481,320.099,346.116,19.369,25.953,19.369 +312,9.785,319.618,455.078,238.042,615.118,316.873,460.475,116.966,7.209,116.966,335.042,320.643,347.153,19.092,27.328,19.092 +313,9.816,326.284,458.625,230.429,611.236,323.216,463.488,122.247,18.217,122.247,337.435,320.338,348.934,19.220,26.344,19.220 +314,9.848,326.284,458.625,230.429,611.236,323.216,463.488,122.247,18.217,122.247,337.435,320.338,348.934,19.220,26.344,19.220 +315,9.878,333.904,462.925,222.850,606.710,330.187,467.669,128.079,28.250,128.079,339.243,320.080,351.296,18.843,25.822,18.843 +316,9.909,340.984,468.469,215.894,600.743,337.079,472.499,134.091,39.207,134.091,341.635,318.796,352.859,18.899,25.999,18.899 +317,9.941,347.954,474.841,210.456,592.613,344.390,477.795,140.352,49.620,140.352,343.518,318.033,352.776,18.771,21.159,18.771 +318,9.971,354.430,482.135,204.072,585.165,350.369,484.812,146.617,59.657,146.617,345.027,319.379,354.755,19.736,20.670,19.736 +319,10.003,360.500,490.500,197.262,575.258,355.953,492.773,153.435,70.726,153.435,347.485,317.514,357.652,19.230,19.956,19.230 +320,10.035,365.583,500.235,192.770,564.622,361.042,501.838,160.560,80.538,160.560,349.517,316.797,359.148,20.025,20.057,20.025 +321,10.067,369.186,511.358,189.502,552.533,364.803,512.309,167.751,90.533,167.751,350.718,315.098,359.688,20.490,20.613,20.490 +322,10.099,368.105,523.312,187.040,539.600,363.292,523.697,175.426,100.477,175.426,344.260,314.577,353.917,21.372,20.690,21.372 +323,10.137,368.166,533.012,186.852,525.877,363.505,532.685,4.014,110.443,4.014,344.049,313.555,353.392,24.851,21.044,24.851 +324,10.182,370.037,546.228,188.620,511.535,365.572,545.247,12.388,120.368,12.388,350.985,311.821,360.128,25.801,20.768,25.801 +325,10.214,370.328,561.931,192.463,496.395,365.768,560.107,21.801,130.444,21.801,359.320,310.419,369.142,25.255,18.620,25.255 +326,10.247,364.779,575.868,199.297,482.272,360.537,573.322,30.964,140.347,30.964,360.319,308.955,370.214,25.382,18.749,25.382 +327,10.285,345.254,602.205,220.628,457.768,342.047,598.356,50.194,160.439,50.194,361.448,306.199,371.468,23.943,18.891,23.943 +328,10.316,345.254,602.205,220.628,457.768,342.047,598.356,50.194,160.439,50.194,361.448,306.199,371.468,23.943,18.891,23.943 +329,10.345,331.758,612.122,234.447,448.653,329.484,608.177,60.043,170.442,60.043,362.227,305.134,371.336,23.640,19.031,23.640 +330,10.377,315.759,620.805,249.973,441.429,314.064,616.186,69.857,0.807,69.857,362.438,304.097,372.278,21.938,20.068,21.938 +331,10.407,300.689,624.635,266.560,437.180,299.887,619.822,80.538,10.636,80.538,361.513,304.383,371.272,27.455,20.838,27.455 +332,10.438,279.500,625.500,283.388,436.113,279.500,620.556,90.000,20.772,90.000,359.000,304.906,368.887,23.000,21.537,23.000 +333,10.469,266.734,624.115,300.403,437.464,267.733,619.023,101.101,31.759,101.101,358.525,306.460,368.904,27.458,23.281,27.458 +334,10.500,248.808,617.640,316.679,442.304,250.660,612.774,110.839,42.374,110.839,355.196,307.599,365.609,20.742,23.874,20.742 +335,10.534,234.398,609.012,331.291,449.778,236.919,604.755,120.627,52.651,120.627,352.976,309.236,362.871,20.391,24.120,20.391 +336,10.566,222.599,599.220,344.100,459.700,225.895,595.363,130.508,63.435,130.508,349.708,310.813,359.855,20.175,24.597,20.175 +337,10.599,212.673,587.595,354.741,470.872,216.743,584.187,140.057,73.560,140.057,346.486,312.813,357.103,19.928,24.701,19.928 +338,10.632,205.479,574.998,362.465,483.153,209.841,572.415,149.372,84.289,149.372,343.477,314.432,353.615,19.857,22.985,19.857 +339,10.663,200.357,562.404,369.466,496.538,205.730,560.262,158.269,94.667,158.269,339.817,316.071,351.387,19.587,24.897,19.587 +340,10.695,197.820,549.560,374.049,510.013,203.724,548.201,167.032,104.744,167.032,336.985,318.727,349.102,20.200,25.551,20.200 +341,10.725,196.711,536.509,376.489,523.203,203.520,535.936,175.189,115.253,175.189,333.189,320.356,346.855,19.417,25.870,19.417 +342,10.755,197.418,523.388,376.682,536.713,204.413,523.692,2.490,125.803,2.490,331.339,323.282,345.343,24.716,26.166,24.716 +343,10.785,199.824,511.968,375.853,548.428,207.270,513.322,10.305,136.134,10.305,329.149,323.294,344.286,25.581,26.368,25.581 +344,10.817,203.461,502.122,373.490,559.974,211.027,504.521,17.592,146.124,17.592,327.377,325.340,343.250,25.249,25.590,25.249 +345,10.848,203.461,502.122,373.490,559.974,211.027,504.521,17.592,146.124,17.592,327.377,325.340,343.250,25.249,25.590,25.249 +346,10.877,208.580,491.775,369.800,570.813,216.093,495.333,25.346,156.181,25.346,325.821,326.734,342.447,25.923,26.283,25.923 +347,10.908,214.008,483.488,365.304,581.191,221.380,488.157,32.347,165.667,32.347,325.284,327.454,342.736,25.316,25.703,25.316 +348,10.939,220.432,476.963,359.599,590.545,226.899,482.160,38.784,174.596,38.784,326.071,328.843,342.664,25.042,25.629,25.042 +349,10.970,227.250,471.750,353.272,598.575,232.712,477.212,45.000,3.205,45.000,326.683,330.219,342.131,24.749,26.838,24.749 +350,11.001,233.764,466.591,345.574,605.809,238.274,472.211,51.248,12.127,51.248,328.293,331.968,342.705,24.299,26.454,24.299 +351,11.032,240.783,462.785,337.597,612.875,244.551,468.630,57.193,20.821,57.193,329.393,333.252,343.302,23.388,24.513,23.388 +352,11.067,247.655,459.677,329.084,619.257,250.865,465.937,62.850,28.789,62.850,330.168,333.531,344.238,23.044,24.517,23.044 +353,11.098,254.127,456.626,320.643,623.621,256.756,463.337,68.607,36.183,68.607,330.675,333.048,345.090,21.627,23.416,21.627 +354,11.130,260.903,454.367,311.781,627.169,262.827,461.242,74.369,43.253,74.369,331.682,332.746,345.961,20.902,23.527,20.902 +355,11.161,267.831,452.831,301.552,630.455,269.112,460.024,79.906,49.368,79.906,332.346,333.098,346.958,19.541,22.806,19.541 +356,11.192,275.342,451.127,291.429,632.002,275.938,458.907,85.620,55.054,85.620,331.938,332.935,347.544,19.322,22.329,19.322 +357,11.222,282.718,450.906,281.239,632.296,282.577,458.088,91.123,60.390,91.123,334.034,332.409,348.401,18.761,21.702,18.761 +358,11.252,290.369,451.010,270.740,632.121,289.507,458.281,96.759,65.016,96.759,335.040,332.027,349.683,18.831,20.933,18.831 +359,11.284,298.739,452.640,260.110,629.959,297.353,458.705,102.875,69.444,102.875,338.053,330.992,350.495,19.330,21.536,19.330 +360,11.316,298.739,452.640,260.110,629.959,297.353,458.705,102.875,69.444,102.875,338.053,330.992,350.495,19.330,21.536,19.330 +361,11.345,307.672,454.023,251.170,627.667,305.508,460.289,109.053,74.104,109.053,338.636,331.586,351.893,19.489,23.586,19.489 +362,11.376,315.227,456.754,240.427,624.226,312.522,462.599,114.839,76.412,114.839,341.040,332.017,353.921,19.442,21.103,19.442 +363,11.406,324.691,460.002,230.267,617.369,321.263,465.572,121.608,80.318,121.608,340.860,327.649,353.940,19.261,20.117,19.261 +364,11.436,332.250,464.848,220.740,610.679,328.680,469.408,128.047,83.323,128.047,343.969,326.453,355.551,18.969,19.889,18.969 +365,11.468,340.750,470.750,212.107,602.363,336.686,474.814,135.000,86.274,135.000,345.068,324.137,356.562,19.092,19.735,19.092 +366,11.501,348.566,477.523,204.110,592.967,343.978,481.104,142.023,89.114,142.023,346.532,322.147,358.173,19.533,19.446,19.533 +367,11.534,355.969,486.250,197.315,582.021,351.190,489.067,149.485,91.507,149.485,348.431,320.389,359.524,19.615,20.046,19.615 +368,11.567,362.240,496.306,191.469,569.957,357.345,498.360,157.233,94.653,157.233,350.703,319.386,361.319,19.842,20.931,19.842 +369,11.600,368.553,507.302,187.841,556.546,363.268,508.693,165.256,97.640,165.256,352.728,317.655,363.658,20.410,22.071,20.410 +370,11.632,368.127,520.614,186.130,542.523,362.959,521.205,173.480,100.154,173.480,345.806,315.649,356.211,21.404,21.479,21.404 +371,11.666,368.331,531.342,187.344,528.075,363.566,531.105,2.847,102.257,2.847,342.770,313.461,352.311,24.765,21.394,24.765 +372,11.698,370.491,545.419,188.916,512.730,365.635,544.397,11.889,104.125,11.889,348.982,311.423,358.905,25.545,23.043,25.545 +373,11.730,370.900,561.755,193.593,497.807,366.451,560.010,21.413,107.281,21.413,357.713,309.968,367.271,25.392,19.055,25.392 +374,11.760,365.366,577.446,200.969,483.201,361.011,574.785,31.430,109.604,31.430,358.426,308.355,368.634,25.219,18.118,25.219 +375,11.790,355.138,592.898,210.699,469.692,351.296,589.405,42.274,112.166,42.274,358.736,307.531,369.121,24.822,18.419,24.822 +376,11.821,343.177,605.980,222.817,458.146,339.814,601.608,52.431,114.775,52.431,359.059,306.751,370.090,23.840,18.089,23.840 +377,11.853,328.116,616.440,237.003,448.273,325.397,611.174,62.688,117.216,62.688,358.746,306.398,370.599,22.657,18.396,22.657 +378,11.886,311.394,623.800,252.560,441.186,309.684,617.951,73.698,119.932,73.698,359.199,306.863,371.387,23.922,18.908,23.922 +379,11.916,311.394,623.800,252.560,441.186,309.684,617.951,73.698,119.932,73.698,359.199,306.863,371.387,23.922,18.908,23.922 +380,11.946,289.285,628.221,269.291,437.230,288.455,621.643,82.811,122.499,82.811,357.465,307.474,370.725,28.146,18.967,28.146 +381,11.978,270.607,627.167,286.579,436.204,271.050,619.995,93.532,125.106,93.532,354.424,308.679,368.796,28.316,19.748,28.316 +382,12.009,254.339,623.185,303.791,438.447,256.241,615.813,104.465,127.933,104.465,352.015,310.213,367.241,24.143,19.428,24.143 +383,12.041,239.782,616.153,319.965,443.898,243.282,609.093,116.362,130.529,116.362,348.372,312.054,364.133,20.584,20.377,20.584 +384,12.075,224.091,608.078,334.590,451.694,230.492,599.483,126.674,133.739,126.674,339.981,314.128,361.415,20.171,19.995,20.171 +385,12.107,164.223,641.119,348.227,462.360,220.900,588.692,137.231,137.121,137.231,204.098,315.782,358.511,19.784,18.843,19.784 +386,12.139,159.519,610.801,358.803,474.766,212.685,576.364,147.068,139.970,147.068,229.056,318.288,355.746,19.781,18.806,19.781 +387,12.172,185.251,572.350,367.499,488.823,207.119,562.754,156.307,143.509,156.307,305.377,319.817,353.140,19.821,19.559,19.821 +388,12.205,188.114,554.306,373.820,503.753,204.704,550.014,165.495,146.810,165.495,316.351,321.750,350.624,20.263,21.538,20.263 +389,12.235,190.237,538.879,377.262,518.706,204.047,537.505,174.318,150.301,174.318,320.695,323.481,348.451,20.006,22.565,20.006 +390,12.267,193.401,524.625,378.397,533.318,205.163,524.945,1.562,153.741,1.562,323.262,324.261,346.795,24.455,23.162,24.455 +391,12.299,198.270,511.236,377.188,547.163,207.884,513.025,10.539,157.521,10.539,325.828,325.923,345.385,25.790,23.833,25.790 +392,12.330,203.000,500.500,374.298,560.873,212.115,503.538,18.435,161.131,18.435,324.766,327.023,343.982,26.247,24.794,26.247 +393,12.362,209.877,489.722,369.844,572.921,217.588,493.653,27.013,164.895,27.013,325.984,327.753,343.295,25.924,25.123,25.924 +394,12.393,215.769,481.846,364.019,584.096,222.837,486.558,33.690,168.690,33.690,326.164,328.298,343.151,26.071,25.299,26.071 +395,12.423,223.138,474.770,357.029,593.723,229.062,479.945,41.139,172.608,41.139,326.721,328.823,342.454,25.874,25.371,25.874 +396,12.453,230.104,469.267,349.169,602.130,235.037,474.700,47.764,176.332,47.764,327.453,328.544,342.129,24.384,26.049,24.384 +397,12.483,237.095,464.149,340.973,608.935,241.308,470.019,54.335,0.531,54.335,327.490,328.153,341.940,23.876,26.147,23.876 +398,12.515,237.095,464.149,340.973,608.935,241.308,470.019,54.335,0.531,54.335,327.490,328.153,341.940,23.876,26.147,23.876 +399,12.544,244.465,460.301,331.773,615.444,247.855,466.336,60.677,4.399,60.677,328.358,330.025,342.202,23.103,27.457,23.103 +400,12.575,251.533,456.776,322.179,620.036,254.197,462.972,66.727,8.949,66.727,328.802,330.688,342.290,22.037,26.912,22.037 +401,12.606,258.884,454.630,312.982,624.193,260.770,460.665,72.646,13.291,72.646,330.668,330.227,343.314,20.879,27.679,20.879 +402,12.638,266.041,452.600,302.998,627.060,267.330,458.963,78.541,18.138,78.541,330.680,330.740,343.664,19.813,27.051,19.813 +403,12.670,273.788,451.368,293.394,628.930,274.402,457.544,84.330,22.964,84.330,332.436,330.238,344.848,19.493,26.936,19.493 +404,12.701,281.000,450.500,283.373,629.744,281.000,456.872,90.000,27.506,90.000,333.000,329.692,345.744,18.000,26.777,18.000 +405,12.732,288.910,450.499,273.767,629.983,288.257,457.135,95.618,31.880,95.618,333.538,327.962,346.873,18.680,25.630,18.680 +406,12.764,296.846,450.780,264.168,628.395,295.580,457.203,101.155,36.027,101.155,334.973,327.171,348.068,19.263,25.880,19.263 +407,12.795,304.883,452.549,254.246,626.291,303.020,458.657,106.966,41.082,106.966,336.372,326.616,349.143,19.194,25.280,19.194 +408,12.826,313.252,454.834,244.853,623.133,310.809,460.592,112.989,45.616,112.989,338.272,325.357,350.782,19.360,25.120,19.360 +409,12.857,321.889,457.817,236.643,617.265,319.153,462.697,119.278,51.009,119.278,339.158,324.851,350.349,19.044,21.615,19.044 +410,12.888,329.975,461.853,227.766,611.632,326.795,466.334,125.362,55.582,125.362,340.619,323.694,351.608,19.362,21.143,19.362 +411,12.920,337.667,467.255,219.551,605.550,334.135,471.202,131.820,60.396,131.820,342.458,323.991,353.052,19.062,21.242,19.062 +412,12.951,345.434,473.114,211.082,597.281,341.353,476.742,138.366,65.556,138.366,343.974,322.684,354.895,19.184,20.442,19.184 +413,12.982,345.434,473.114,211.082,597.281,341.353,476.742,138.366,65.556,138.366,343.974,322.684,354.895,19.184,20.442,19.184 +414,13.010,352.699,480.626,203.613,587.786,348.308,483.675,145.222,70.761,145.222,345.774,320.062,356.465,19.530,20.360,19.530 +415,13.042,359.532,489.647,197.648,577.080,355.021,492.004,152.418,75.710,152.418,347.581,318.235,357.760,20.002,19.372,20.002 +416,13.072,365.080,499.474,193.044,565.400,360.621,501.098,159.990,80.390,159.990,349.435,316.803,358.927,19.814,19.892,19.814 +417,13.103,369.490,510.764,189.641,552.743,364.736,511.793,167.787,85.321,167.787,349.863,315.156,359.591,20.817,20.536,20.817 +418,13.135,368.284,523.831,188.147,539.036,363.807,524.163,175.764,90.769,175.764,343.577,312.146,352.556,21.349,19.300,21.349 +419,13.168,369.027,534.255,188.273,524.659,364.309,533.857,4.821,95.120,4.821,342.903,312.169,352.373,24.924,20.923,24.924 +420,13.202,371.020,548.786,190.378,510.230,366.507,547.682,13.745,99.462,13.745,350.676,310.714,359.968,24.717,22.851,24.717 +421,13.234,370.410,564.174,194.579,495.417,365.772,562.209,22.964,104.797,22.964,357.298,309.461,367.371,25.188,19.209,25.188 +422,13.268,364.142,579.221,201.615,481.398,359.774,576.416,32.712,109.640,32.712,358.464,308.287,368.848,25.174,18.578,25.174 +423,13.300,354.170,594.287,211.397,468.360,350.244,590.599,43.219,114.386,43.219,359.011,307.541,369.784,24.847,18.531,24.847 +424,13.334,342.295,606.145,223.630,457.233,339.088,601.899,52.938,119.249,52.938,359.412,306.913,370.052,23.599,18.288,23.599 +425,13.366,327.301,616.595,237.767,447.858,324.724,611.504,63.153,123.887,63.153,359.143,306.755,370.555,22.515,17.941,22.515 +426,13.398,311.077,623.899,253.107,440.983,309.417,618.163,73.860,128.508,73.860,359.756,307.189,371.699,23.635,18.750,23.635 +427,13.429,289.754,627.531,269.888,436.894,288.985,621.379,82.875,133.377,82.875,358.460,307.282,370.859,28.156,18.417,28.156 +428,13.459,271.766,626.833,286.834,435.934,272.098,620.399,92.949,138.240,92.949,357.072,308.925,369.958,28.477,18.595,28.477 +429,13.490,255.972,622.767,303.845,437.805,257.563,616.195,103.605,143.320,103.605,355.016,310.800,368.541,24.236,18.894,24.236 +430,13.521,242.279,615.430,320.132,442.717,245.119,609.351,115.043,148.717,115.043,352.023,312.638,365.442,20.533,19.213,20.533 +431,13.552,228.930,606.101,334.687,449.884,232.852,600.498,124.992,153.997,124.992,349.894,314.459,363.573,20.153,19.291,20.153 +432,13.582,228.930,606.101,334.687,449.884,232.852,600.498,124.992,153.997,124.992,349.894,314.459,363.573,20.153,19.291,20.153 +433,13.611,217.771,595.307,347.634,459.000,223.152,589.837,134.534,159.905,134.534,345.793,317.149,361.138,19.810,19.722,19.810 +434,13.641,209.016,583.474,358.731,470.357,215.435,578.773,143.781,166.759,143.781,343.421,319.395,359.333,19.828,20.385,19.828 +435,13.672,202.680,571.459,367.585,482.768,210.341,567.478,152.541,173.660,152.541,339.911,321.466,357.179,19.878,19.988,19.878 +436,13.703,198.324,559.074,374.505,495.823,207.261,555.937,160.658,1.481,160.658,336.484,323.254,355.428,19.996,19.545,19.996 +437,13.735,195.986,547.430,379.235,509.009,206.002,545.434,168.729,9.943,168.729,333.597,326.123,354.023,19.838,22.164,19.838 +438,13.766,196.346,535.734,381.183,521.892,205.602,535.105,176.112,18.853,176.112,333.590,327.991,352.145,18.966,22.158,18.966 +439,13.799,197.128,523.730,381.217,536.217,206.648,524.104,2.246,28.996,2.246,330.765,329.650,349.820,24.648,19.917,24.648 +440,13.831,198.827,514.127,380.160,548.661,208.648,515.638,8.746,38.884,8.746,329.204,330.323,349.078,25.394,19.912,25.394 +441,13.862,202.075,506.319,377.307,559.817,211.001,508.614,14.421,49.764,14.421,329.205,330.488,347.636,25.983,19.731,25.983 +442,13.893,206.123,498.631,373.938,569.392,214.282,501.662,20.376,60.255,20.376,329.090,331.049,346.498,25.632,20.838,25.632 +443,13.924,210.028,492.233,369.550,578.150,217.547,495.842,25.641,71.565,25.641,328.623,331.407,345.303,25.495,21.820,25.495 +444,13.955,214.444,485.195,364.603,585.548,221.434,489.478,31.492,83.047,31.492,328.140,330.164,344.536,25.359,23.000,25.359 +445,13.985,218.496,479.993,359.300,591.600,224.807,484.572,35.967,94.399,35.967,327.832,330.025,343.425,25.706,23.546,25.706 +446,14.015,218.496,479.993,359.300,591.600,224.807,484.572,35.967,94.399,35.967,327.832,330.025,343.425,25.706,23.546,25.706 +447,14.043,222.252,475.588,353.516,596.643,227.929,480.416,40.376,105.524,40.376,327.024,328.988,341.930,25.135,23.606,25.135 +448,14.075,226.102,471.799,348.958,601.049,231.416,477.002,44.390,118.166,44.390,326.665,328.352,341.540,24.860,25.906,24.860 +449,14.105,229.789,468.058,344.282,604.158,234.794,473.652,48.180,130.045,48.180,325.514,327.107,340.528,24.318,26.257,24.318 +450,14.137,233.640,465.136,340.421,607.311,238.329,471.096,51.809,141.885,51.809,325.197,326.714,340.362,24.124,26.515,24.124 +451,14.173,237.379,462.540,336.907,610.331,241.775,468.853,55.151,153.905,55.151,325.546,326.913,340.931,23.629,27.235,23.629 +452,14.205,241.267,460.760,333.576,613.282,245.257,467.236,58.364,165.833,58.364,326.123,326.948,341.337,23.330,27.299,23.330 +453,14.236,244.903,459.377,330.492,614.807,248.199,465.380,61.232,177.594,61.232,327.479,327.467,341.177,22.808,28.404,22.808 +454,14.268,248.461,458.234,326.739,618.010,251.387,464.254,64.075,9.574,64.075,329.069,329.312,342.454,22.409,28.834,22.409 +455,14.299,251.664,457.074,322.603,621.741,254.488,463.646,66.744,21.801,66.744,329.984,331.466,344.290,22.073,26.183,22.073 +456,14.332,254.932,456.595,319.084,623.863,257.339,462.940,69.228,33.899,69.228,331.150,332.266,344.723,21.569,24.158,21.569 +457,14.363,257.538,454.647,315.482,626.018,260.044,462.244,71.742,45.759,71.742,329.796,333.102,345.794,21.313,21.820,21.313 +458,14.394,260.266,453.573,310.997,628.322,262.620,461.770,73.974,57.404,73.974,329.813,334.012,346.870,20.767,19.892,20.767 +459,14.424,261.374,448.948,305.328,629.681,264.554,461.108,75.347,68.935,75.347,321.672,335.788,346.810,19.531,18.825,19.531 +460,14.454,253.154,396.750,301.759,631.537,266.368,461.168,78.408,81.235,78.408,216.492,335.668,348.011,17.934,23.341,17.934 +461,14.484,266.070,439.222,293.615,631.985,269.581,459.850,80.340,92.175,80.340,305.605,334.670,347.454,19.444,25.210,19.444 +462,14.516,270.430,446.105,290.276,631.076,272.137,458.769,82.321,103.815,82.321,320.816,332.759,346.372,19.843,21.236,19.843 +463,14.549,270.430,446.105,290.276,631.076,272.137,458.769,82.321,103.815,82.321,320.816,332.759,346.372,19.843,21.236,19.843 +464,14.579,273.303,447.667,286.500,629.485,274.293,457.486,84.242,115.887,84.242,324.974,329.605,344.712,19.514,20.295,19.514 +465,14.609,275.885,447.274,283.169,628.022,276.486,456.284,86.186,127.942,86.186,325.544,327.844,343.604,19.024,20.799,19.024 +466,14.639,278.212,448.329,281.656,627.787,278.500,456.260,87.917,140.194,87.917,327.184,325.726,343.057,18.642,23.303,18.642 +467,14.671,281.000,448.500,279.394,627.261,281.000,455.631,90.000,153.083,90.000,329.000,324.265,343.261,18.000,25.049,18.000 +468,14.702,283.520,448.544,277.724,627.192,283.318,455.537,91.660,164.946,91.660,329.499,323.370,343.490,18.601,26.293,18.601 +469,14.734,286.245,448.111,275.507,626.618,285.798,455.153,93.637,176.743,93.637,329.433,323.558,343.545,18.678,28.434,18.678 +470,14.767,289.097,448.313,273.091,626.673,288.419,455.226,95.599,8.696,95.599,330.357,324.102,344.249,18.675,28.492,18.675 +471,14.800,292.309,449.989,270.067,627.805,291.460,456.115,97.887,20.638,97.887,333.632,325.851,346.002,18.910,27.346,18.910 +472,14.832,294.617,450.757,266.982,628.827,293.559,457.001,99.620,32.071,99.620,335.035,326.483,347.702,18.783,26.146,18.783 +473,14.864,297.375,451.750,263.251,629.295,296.115,457.835,101.696,43.264,101.696,336.696,327.604,349.125,19.186,25.273,19.186 +474,14.895,300.735,452.059,260.740,627.968,299.290,457.839,104.036,54.273,104.036,336.882,328.866,348.798,18.918,21.235,18.918 +475,14.925,304.424,453.231,255.809,627.859,302.682,459.064,106.628,65.472,106.628,338.122,329.801,350.298,19.450,21.287,19.450 +476,14.955,307.398,454.422,251.082,627.631,305.403,460.240,108.925,75.364,108.925,339.622,331.599,351.922,19.243,22.642,19.243 +477,14.985,310.582,455.266,244.491,625.883,308.266,461.164,111.433,85.515,111.433,340.589,331.335,353.264,18.878,19.411,18.878 +478,15.017,314.397,456.595,238.879,622.948,311.958,461.983,114.355,94.764,114.355,341.729,329.608,353.556,19.315,19.516,19.315 +479,15.049,314.397,456.595,238.879,622.948,311.958,461.983,114.355,94.764,114.355,341.729,329.608,353.556,19.315,19.516,19.315 +480,15.077,318.905,457.855,232.971,619.618,315.965,463.519,117.436,104.036,117.436,340.799,328.636,353.563,19.541,20.130,19.541 +481,15.107,324.794,458.176,227.038,615.418,320.604,465.160,120.964,111.903,120.964,337.681,327.567,353.968,18.693,20.029,18.693 +482,15.138,331.437,458.719,221.777,610.930,325.512,467.246,124.793,118.980,124.793,333.612,326.055,354.378,18.549,19.891,18.549 +483,15.169,342.456,454.852,216.200,605.981,330.335,469.889,128.873,126.266,128.873,316.539,324.228,355.167,18.415,19.375,18.415 +484,15.201,390.707,414.251,211.019,600.408,335.090,473.141,133.363,133.374,133.363,193.426,321.985,355.429,18.095,19.523,18.095 +485,15.234,400.003,423.057,205.977,594.084,340.289,476.929,137.944,140.738,137.944,195.558,319.714,356.404,18.151,19.383,18.151 +486,15.267,393.819,444.543,201.706,586.915,345.449,481.396,142.696,148.178,142.696,234.955,318.235,356.574,18.295,19.382,18.295 +487,15.300,381.081,467.009,197.716,579.359,350.309,486.395,147.789,156.117,147.789,284.583,316.391,357.321,18.529,20.107,18.529 +488,15.332,377.855,480.623,194.430,570.324,355.234,492.145,153.008,165.311,153.008,306.770,314.096,357.542,18.717,19.929,18.717 +489,15.364,376.989,492.493,191.700,559.371,360.138,499.174,158.373,175.272,158.373,321.282,311.583,357.534,20.034,26.226,20.034 +490,15.394,376.362,502.444,190.100,553.360,363.364,506.252,163.673,5.024,163.673,331.950,309.707,359.039,19.824,21.149,19.824 +491,15.424,373.396,512.956,189.345,543.337,365.260,514.478,169.397,16.535,169.397,339.889,309.658,356.443,19.910,22.289,19.910 +492,15.453,370.541,522.738,189.378,534.304,364.636,523.212,175.406,27.072,175.406,339.317,307.774,351.166,20.514,22.360,20.514 +493,15.483,370.541,522.738,189.378,534.304,364.636,523.212,175.406,27.072,175.406,339.317,307.774,351.166,20.514,22.360,20.514 +494,15.512,370.084,529.922,190.097,525.668,364.746,529.749,1.858,39.472,1.858,338.698,306.502,349.379,24.571,22.522,24.571 +495,15.542,371.112,539.780,191.953,516.521,366.442,539.102,8.253,52.864,8.253,342.410,307.195,351.847,25.474,22.004,25.474 +496,15.573,373.003,551.430,193.076,506.788,368.012,550.083,15.106,64.799,15.106,350.006,305.722,360.347,25.516,21.503,25.516 +497,15.608,371.540,563.402,195.954,496.482,366.819,561.467,22.286,78.071,22.286,355.287,306.130,365.492,25.120,20.078,25.120 +498,15.653,360.387,586.540,206.192,475.425,356.027,583.195,37.488,104.092,37.488,357.968,306.814,368.959,25.052,18.811,25.052 +499,15.686,351.682,597.352,214.569,465.063,347.889,593.480,45.591,117.196,45.591,359.220,307.237,370.062,24.303,18.450,24.303 +500,15.719,340.928,606.720,224.299,455.749,337.789,602.439,53.746,129.856,53.746,360.194,307.543,370.811,23.547,18.581,23.547 +501,15.751,328.855,615.024,236.149,447.693,326.313,610.195,62.241,142.431,62.241,360.674,307.416,371.588,23.474,18.840,23.474 +502,15.786,315.337,621.205,249.503,441.577,313.563,616.179,70.560,154.947,70.560,361.276,307.318,371.936,21.911,18.813,21.911 +503,15.818,298.535,625.514,263.630,437.586,297.407,620.108,78.215,167.515,78.215,360.102,307.062,371.148,26.065,19.422,26.065 +504,15.848,298.535,625.514,263.630,437.586,297.407,620.108,78.215,167.515,78.215,360.102,307.062,371.148,26.065,19.422,26.065 +505,15.877,287.655,626.842,278.500,436.000,287.457,620.993,88.056,0.000,88.056,358.676,307.000,370.381,25.189,18.000,25.189 +506,15.908,268.983,625.134,293.307,435.895,269.508,619.344,95.178,12.165,95.178,358.067,307.306,369.695,25.800,21.453,25.800 +507,15.939,256.503,621.752,307.419,438.888,257.888,616.235,104.098,24.362,104.098,356.766,308.367,368.141,22.803,22.207,22.803 +508,15.970,244.268,615.971,320.628,443.676,246.493,610.772,113.166,36.573,113.166,354.268,309.789,365.576,20.089,23.549,20.089 +509,16.002,233.129,608.807,332.708,450.816,235.887,604.314,121.541,48.468,121.541,352.396,309.937,362.939,19.661,25.260,19.661 +510,16.034,223.540,600.190,343.446,458.962,226.776,596.282,129.634,61.928,129.634,350.207,311.059,360.354,19.697,24.471,19.697 +511,16.066,215.154,590.891,352.368,468.038,219.021,587.341,137.447,74.055,137.447,347.326,312.358,357.824,19.322,24.862,19.322 +512,16.097,208.515,581.166,358.336,477.544,212.530,578.359,145.037,86.186,145.037,344.729,314.036,354.527,19.373,22.683,19.373 +513,16.127,203.401,571.171,364.758,487.196,208.344,568.578,152.324,98.842,152.324,341.472,315.517,352.636,19.402,23.825,19.402 +514,16.158,199.109,561.406,369.676,497.263,205.407,559.002,159.106,111.251,159.106,337.490,317.192,350.971,19.569,24.646,19.569 +515,16.189,196.808,551.650,373.100,507.083,203.764,549.883,165.747,123.906,165.747,334.970,319.518,349.322,20.322,25.211,20.322 +516,16.219,194.495,542.049,375.889,516.477,203.385,540.809,172.063,136.305,172.063,330.472,320.542,348.424,19.556,24.655,19.556 +517,16.251,192.969,530.049,377.671,525.610,204.187,529.688,178.152,148.845,178.152,324.605,323.268,347.052,24.084,24.370,24.084 +518,16.282,192.969,530.049,377.671,525.610,204.187,529.688,178.152,148.845,178.152,324.605,323.268,347.052,24.084,24.370,24.084 +519,16.311,191.900,523.760,378.698,534.544,205.350,524.249,2.083,161.162,2.083,320.297,325.406,347.215,24.566,22.659,24.566 +520,16.342,188.525,511.850,378.206,543.430,207.473,514.974,9.360,173.731,9.360,307.770,325.655,346.177,26.142,20.946,26.142 +521,16.373,179.039,503.601,377.350,550.524,209.290,510.239,12.375,5.035,12.375,283.637,326.348,345.578,22.911,22.231,22.911 +522,16.403,134.622,480.678,377.708,559.368,212.275,506.898,18.658,18.500,18.658,183.128,330.467,347.049,18.284,21.393,18.284 +523,16.434,200.232,495.917,374.321,569.439,214.482,501.962,22.989,31.302,22.989,316.039,332.728,346.996,18.579,19.802,18.579 +524,16.467,208.081,490.710,371.260,577.286,218.113,495.604,26.003,43.958,26.003,324.587,333.134,346.911,25.494,19.744,25.494 +525,16.499,212.531,485.322,367.430,583.705,221.423,490.569,30.548,56.611,30.548,325.508,332.826,346.158,25.907,20.058,25.907 +526,16.532,215.769,482.346,362.891,589.424,223.445,487.463,33.690,69.057,33.690,326.718,332.413,345.168,25.239,19.901,25.239 +527,16.563,218.982,479.174,359.036,593.495,225.761,484.242,36.784,81.573,36.784,327.395,331.383,344.322,25.269,21.836,25.269 +528,16.594,222.123,476.843,355.354,596.606,227.889,481.641,39.764,94.485,39.764,328.030,330.338,343.032,25.355,23.594,25.355 +529,16.624,224.044,473.993,351.956,598.964,229.776,479.196,42.226,107.676,42.226,326.450,328.974,341.932,25.096,25.401,25.096 +530,16.655,226.158,471.751,348.792,600.774,231.356,476.849,44.444,120.928,44.444,326.668,327.735,341.230,24.851,25.970,24.851 +531,16.686,227.799,469.443,346.702,601.661,232.973,474.892,46.484,134.007,46.484,325.453,326.830,340.480,24.649,26.449,24.649 +532,16.715,227.799,469.443,346.702,601.661,232.973,474.892,46.484,134.007,46.484,325.453,326.830,340.480,24.649,26.449,24.649 +533,16.744,229.866,468.120,345.643,603.256,234.905,473.769,48.264,146.944,48.264,325.547,326.449,340.688,24.507,27.206,24.507 +534,16.774,231.749,467.056,344.730,604.365,236.520,472.708,49.834,159.924,49.834,326.019,326.792,340.812,24.363,27.858,24.363 +535,16.805,233.348,466.023,344.239,605.752,238.024,471.847,51.245,172.244,51.245,326.888,327.514,341.825,24.228,26.998,24.228 +536,16.837,234.940,465.547,343.569,606.886,239.388,471.323,52.397,4.574,52.397,327.360,329.746,341.941,24.088,28.389,24.088 +537,16.871,236.395,465.319,342.604,608.668,240.540,470.917,53.484,16.654,53.484,328.950,331.977,342.883,24.242,26.465,24.242 +538,16.905,237.323,464.703,341.989,610.792,241.741,470.861,54.341,28.426,54.341,329.114,333.031,344.270,24.167,22.559,24.167 +539,16.936,237.176,462.726,341.394,612.631,242.831,470.825,55.081,39.188,55.081,325.632,334.069,345.388,23.995,21.054,23.995 +540,16.968,232.873,457.181,339.078,614.306,242.808,470.869,54.028,48.848,54.028,311.437,335.653,345.264,21.747,19.470,21.747 +541,17.001,199.000,407.000,337.494,616.438,242.254,471.881,56.310,58.079,56.310,190.262,334.962,346.217,17.750,18.965,17.750 +542,17.032,233.197,457.072,335.676,617.253,242.636,471.446,56.706,67.574,56.706,311.505,335.166,345.896,18.439,19.045,18.439 +543,17.064,238.416,460.131,334.336,617.427,244.705,469.746,56.812,77.800,56.812,322.329,334.408,345.308,23.501,19.495,23.501 +544,17.094,238.675,461.075,332.773,616.993,244.148,469.346,56.505,88.472,56.505,324.240,332.389,344.074,23.313,18.873,23.313 +545,17.124,238.576,462.246,332.296,615.464,243.145,469.031,56.049,99.932,56.049,326.155,331.586,342.516,23.612,19.823,23.612 +546,17.154,237.944,463.042,333.746,614.096,242.351,469.412,55.324,111.386,55.324,326.474,329.860,341.966,23.714,23.402,23.714 +547,17.185,236.751,463.454,335.252,611.654,241.012,469.401,54.377,123.366,54.377,326.414,328.120,341.046,23.733,24.892,23.733 +548,17.216,236.751,463.454,335.252,611.654,241.012,469.401,54.377,123.366,54.377,326.414,328.120,341.046,23.733,24.892,23.733 +549,17.244,235.409,464.211,337.663,609.683,239.814,470.116,53.279,135.341,53.279,326.017,326.686,340.751,23.982,26.415,23.982 +550,17.275,233.703,464.991,340.420,607.445,238.463,471.066,51.923,147.509,51.923,325.033,325.885,340.469,24.142,27.173,24.142 +551,17.307,232.398,466.084,343.840,605.275,237.339,472.047,50.356,159.734,50.356,325.587,326.544,341.075,25.015,27.941,25.015 +552,17.338,230.571,468.319,347.148,603.471,235.535,473.947,48.587,171.754,48.587,326.928,326.832,341.936,24.559,27.596,24.559 +553,17.369,228.652,470.276,350.884,600.318,233.852,475.771,46.579,3.657,46.579,326.676,328.927,341.807,24.886,27.294,24.886 +554,17.400,226.545,471.929,354.157,598.008,232.129,477.379,44.301,15.660,44.301,327.564,331.569,343.169,25.557,25.643,25.557 +555,17.431,222.017,473.293,357.740,596.040,230.055,480.437,41.634,27.588,41.634,322.964,333.241,344.471,25.163,20.608,25.163 +556,17.462,160.791,432.915,360.341,594.804,226.150,485.565,38.853,39.318,38.853,178.205,333.928,346.061,17.825,21.095,17.825 +557,17.492,214.080,478.877,362.394,592.086,224.943,486.759,35.967,51.062,35.967,319.373,333.886,346.214,22.325,20.080,22.325 +558,17.523,214.658,483.794,364.163,588.194,222.601,488.885,32.661,62.949,32.661,326.671,333.200,345.541,24.933,20.427,24.933 +559,17.554,212.354,487.583,366.426,583.387,219.810,491.737,29.124,75.174,29.124,328.299,331.409,345.370,25.932,21.666,25.932 +560,17.584,209.739,492.641,368.936,576.902,216.576,495.869,25.278,87.089,25.278,329.624,328.897,344.745,25.545,24.392,25.545 +561,17.615,209.739,492.641,368.936,576.902,216.576,495.869,25.278,87.089,25.278,329.624,328.897,344.745,25.545,24.392,25.545 +562,17.644,206.767,497.819,370.341,569.720,213.099,500.258,21.073,99.335,21.073,329.830,326.184,343.402,25.631,24.750,25.631 +563,17.675,203.244,503.944,372.757,561.267,209.906,505.882,16.220,111.251,16.220,329.801,323.872,343.679,26.117,26.251,26.117 +564,17.706,200.646,510.761,374.614,552.436,207.321,512.077,11.155,124.183,11.155,330.274,323.395,343.882,25.868,26.744,25.868 +565,17.736,197.964,517.832,376.598,542.237,205.621,518.668,6.226,136.838,6.226,329.644,321.908,345.049,25.160,26.924,25.160 +566,17.767,194.000,527.000,377.825,532.004,204.412,527.000,0.000,148.722,0.000,326.000,322.439,346.825,24.000,25.272,24.000 +567,17.799,184.564,537.800,378.266,521.231,204.441,536.213,175.436,159.980,175.436,309.050,323.631,348.932,19.576,21.949,19.576 +568,17.831,125.422,559.015,378.504,510.526,205.122,543.589,169.046,170.608,169.046,190.655,325.346,353.012,18.432,20.652,18.432 +569,17.861,196.741,556.001,376.498,502.699,206.502,553.036,163.106,0.531,163.106,334.173,325.088,354.576,19.683,22.499,19.683 +570,17.892,201.138,564.876,373.273,492.109,208.764,561.553,156.453,11.395,156.453,340.471,324.589,357.107,19.470,22.797,19.470 +571,17.923,206.043,574.883,367.914,482.450,212.109,571.293,149.381,22.001,149.381,344.564,323.323,358.663,19.442,22.758,19.442 +572,17.954,211.302,584.827,360.426,473.332,216.399,580.844,142.001,32.535,142.001,346.435,320.596,359.372,19.356,22.806,19.356 +573,17.984,218.059,594.567,351.441,464.562,222.458,590.081,134.447,43.264,134.447,347.289,316.681,359.856,19.021,24.373,19.021 +574,18.015,218.059,594.567,351.441,464.562,222.458,590.081,134.447,43.264,134.447,347.289,316.681,359.856,19.021,24.373,19.021 +575,18.044,226.852,603.246,340.852,456.457,229.921,599.111,126.581,54.782,126.581,351.031,312.851,361.328,19.510,24.701,19.510 +576,18.075,236.981,611.352,328.888,449.405,239.307,607.083,118.590,66.801,118.590,352.916,309.752,362.639,19.699,24.160,19.699 +577,18.105,247.958,619.227,315.229,444.237,249.906,613.984,110.376,77.905,110.376,352.552,307.309,363.740,19.525,21.861,19.525 +578,18.136,261.049,634.675,300.016,440.006,264.366,619.693,102.482,90.360,102.482,335.600,306.044,366.289,24.297,19.842,24.297 +579,18.167,272.697,632.276,284.444,438.003,273.201,621.500,92.675,101.004,92.675,346.071,306.918,367.645,26.438,21.868,26.438 +580,18.201,291.112,628.186,270.758,437.269,290.561,621.121,85.544,112.751,85.544,355.494,307.626,369.668,23.552,20.705,23.552 +581,18.234,302.050,625.988,258.080,439.391,300.599,619.828,76.748,124.007,76.748,358.102,308.435,370.759,25.022,19.226,25.022 +582,18.268,317.440,620.565,245.500,443.500,315.461,615.402,69.024,135.000,69.024,360.053,309.713,371.110,21.753,18.385,21.753 +583,18.302,330.360,613.961,233.637,449.203,327.757,609.298,60.829,146.094,60.829,360.651,309.817,371.332,23.268,18.817,23.268 +584,18.334,341.594,605.514,222.829,456.095,338.572,601.531,52.810,157.109,52.810,361.643,308.987,371.644,24.417,19.244,24.417 +585,18.367,351.050,595.974,213.863,463.841,347.728,592.638,45.123,168.232,45.123,362.029,308.093,371.444,24.917,19.865,24.917 +586,18.400,359.242,585.632,206.060,473.155,355.456,582.743,37.349,179.061,37.349,360.971,306.139,370.494,25.480,18.768,25.480 +587,18.432,366.870,575.961,200.743,482.541,361.609,572.911,30.101,9.462,30.101,356.826,304.796,368.990,25.641,21.207,25.641 +588,18.463,412.687,585.466,196.684,492.642,365.203,564.839,23.480,20.854,23.480,263.121,304.420,366.662,20.029,20.737,20.029 +589,18.494,376.671,555.613,193.318,502.487,368.174,553.054,16.760,31.799,16.760,346.271,304.639,364.019,25.299,22.760,25.299 +590,18.525,371.836,543.495,191.191,513.859,366.564,542.517,10.513,43.282,10.513,344.591,304.301,355.316,25.807,21.119,25.807 +591,18.555,369.853,533.979,190.232,525.445,365.288,533.622,4.470,55.134,4.470,341.164,307.376,350.322,25.239,20.559,25.239 +592,18.585,369.011,526.000,189.654,535.327,364.336,526.099,178.781,67.845,178.781,340.327,309.383,349.678,23.442,20.365,23.442 +593,18.616,369.011,526.000,189.654,535.327,364.336,526.099,178.781,67.845,178.781,340.327,309.383,349.678,23.442,20.365,23.442 +594,18.644,368.760,519.262,189.487,545.267,364.374,519.766,173.446,79.586,173.446,344.478,313.230,353.309,20.943,20.861,20.943 +595,18.675,369.036,511.673,189.454,554.056,364.449,512.613,168.425,91.086,168.425,350.141,316.190,359.504,19.865,20.290,19.865 +596,18.706,366.726,505.169,188.648,561.389,361.585,506.681,163.610,103.291,163.610,351.974,319.276,362.692,19.808,22.100,19.808 +597,18.737,363.802,498.831,190.097,567.492,358.679,500.768,159.291,114.161,159.291,351.615,320.448,362.569,19.620,20.294,19.620 +598,18.767,360.864,493.459,191.130,571.879,355.552,495.912,155.209,125.491,155.209,350.544,320.495,362.247,19.484,20.476,19.484 +599,18.800,358.386,488.457,193.463,575.887,352.841,491.479,151.407,137.021,151.407,348.043,319.181,360.674,19.795,21.516,19.795 +600,18.831,417.660,445.311,196.937,579.441,350.288,486.559,148.523,146.976,148.523,200.577,317.854,358.569,18.275,20.542,18.275 +601,18.862,367.696,469.447,200.794,583.179,348.063,483.051,145.281,158.797,145.281,308.384,316.261,356.154,18.407,20.020,18.407 +602,18.893,354.599,473.346,204.704,585.626,346.355,479.748,142.164,171.027,142.164,332.759,314.784,353.635,19.238,21.315,19.238 +603,18.923,349.137,472.509,208.489,589.838,343.791,477.061,139.579,1.900,139.579,338.218,313.524,352.261,19.713,23.006,19.713 +604,18.954,345.546,471.093,212.110,593.543,341.616,474.707,137.391,14.172,137.391,340.855,314.814,351.532,19.347,25.718,19.347 +605,18.984,342.875,469.403,214.292,598.084,338.919,473.312,135.343,25.058,135.343,341.573,316.318,352.696,19.197,25.718,19.197 +606,19.015,342.875,469.403,214.292,598.084,338.919,473.312,135.343,25.058,135.343,341.573,316.318,352.696,19.197,25.718,19.197 +607,19.043,340.790,467.800,216.881,601.664,336.688,472.091,133.713,35.838,133.713,341.025,317.741,352.898,18.817,25.807,18.817 +608,19.074,338.654,466.832,220.437,602.782,335.540,470.278,132.105,47.215,132.105,341.676,319.975,350.966,19.131,21.486,19.131 +609,19.104,336.802,466.093,221.239,606.229,333.380,470.039,130.937,58.085,130.937,342.274,322.036,352.719,19.001,21.146,19.001 +610,19.139,335.033,465.861,221.373,608.849,331.581,470.003,129.806,67.913,129.806,343.651,325.308,354.435,19.334,21.138,19.334 +611,19.170,333.992,465.340,220.479,609.811,330.235,469.966,129.072,79.082,129.072,343.577,326.140,355.496,19.109,19.822,19.109 +612,19.202,333.135,465.114,219.763,610.013,329.485,469.690,128.577,89.409,128.577,344.530,326.106,356.238,19.042,19.566,19.042 +613,19.234,332.466,465.312,218.684,609.949,328.895,469.831,128.317,99.211,128.317,345.016,326.812,356.535,18.968,19.689,18.968 +614,19.270,332.504,465.419,217.751,608.916,328.996,469.846,128.389,108.642,128.389,344.879,326.363,356.176,19.016,19.476,19.016 +615,19.301,334.411,463.923,216.556,607.266,329.663,469.843,128.733,117.780,128.733,340.763,325.697,355.940,19.071,21.044,19.071 +616,19.335,339.109,460.444,215.509,605.452,331.068,470.218,129.447,125.106,129.447,330.390,324.425,355.703,18.699,20.096,18.699 +617,19.369,384.737,409.568,214.570,603.991,332.043,470.582,130.815,133.524,130.815,194.263,321.973,355.500,18.095,19.991,18.095 +618,19.401,353.243,449.619,213.194,601.383,333.700,471.334,131.987,141.843,131.987,296.128,320.649,354.558,18.136,19.602,18.136 +619,19.433,347.593,459.419,212.081,598.735,335.743,471.975,133.345,151.274,133.345,319.601,318.991,354.130,18.385,19.512,18.385 +620,19.464,346.046,465.025,211.100,595.800,337.889,473.224,134.854,161.565,134.854,329.507,317.176,352.638,19.173,19.922,19.173 +621,19.495,346.224,467.811,210.511,593.580,339.860,473.937,136.093,172.213,136.093,334.657,315.669,352.325,19.372,21.137,19.372 +622,19.525,346.764,470.896,210.420,591.673,342.052,475.162,137.842,3.907,137.842,338.844,314.249,351.556,19.364,24.022,19.364 +623,19.556,348.245,473.565,208.755,590.182,343.959,477.187,139.802,15.524,139.802,341.180,315.231,352.403,19.504,25.212,19.504 +624,19.587,350.056,476.636,207.000,589.000,346.145,479.686,142.046,27.408,142.046,343.976,314.923,353.896,19.176,25.252,19.176 +625,19.620,353.077,479.651,206.559,585.094,349.650,482.071,144.782,39.289,144.782,344.232,315.212,352.623,19.223,21.389,19.223 +626,19.652,355.590,482.419,203.993,582.591,351.738,484.893,147.291,51.163,147.291,345.063,316.088,354.220,19.175,21.665,19.175 +627,19.684,355.590,482.419,203.993,582.591,351.738,484.893,147.291,51.163,147.291,345.063,316.088,354.220,19.175,21.665,19.175 +628,19.713,358.010,486.398,200.763,580.083,353.706,488.862,150.201,62.526,150.201,346.188,317.624,356.106,19.706,20.087,19.706 +629,19.743,360.515,490.980,197.376,575.620,356.126,493.147,153.726,74.558,153.726,347.925,317.852,357.715,19.330,19.768,19.330 +630,19.773,363.056,495.935,193.955,570.362,358.428,497.863,157.380,85.962,157.380,349.385,318.326,359.412,19.308,19.903,19.308 +631,19.803,365.122,501.418,190.622,564.079,360.611,502.952,161.222,97.199,161.222,351.707,318.522,361.236,20.147,20.260,20.147 +632,19.834,368.612,507.972,187.847,556.454,363.558,509.255,165.750,108.635,165.750,353.415,318.441,363.845,19.908,20.053,19.908 +633,19.868,367.535,515.203,186.126,548.220,363.058,515.976,170.200,119.852,170.200,350.590,317.286,359.677,19.592,20.288,19.592 +634,19.901,367.007,522.579,184.921,538.991,362.253,522.979,175.192,131.168,175.192,346.561,315.424,356.101,20.209,20.472,20.209 +635,19.934,367.114,528.068,184.988,529.133,362.079,528.007,0.690,142.407,0.690,344.059,313.453,354.130,24.227,20.321,24.227 +636,19.967,367.616,536.410,186.453,518.930,363.502,535.955,6.309,153.622,6.309,347.416,311.271,355.694,25.063,20.044,25.063 +637,19.999,370.058,546.034,188.672,507.655,365.112,544.959,12.265,165.277,12.265,350.551,309.105,360.674,25.364,20.953,25.364 +638,20.032,371.904,556.851,192.570,497.536,367.436,555.351,18.560,176.158,18.560,358.921,306.392,368.348,25.935,19.523,25.935 +639,20.062,368.733,569.499,198.029,487.745,363.901,567.118,26.232,6.411,26.232,356.972,305.024,367.745,25.493,20.679,25.493 +640,20.092,364.205,580.608,204.255,478.207,359.386,577.476,33.024,17.819,33.024,356.842,304.173,368.337,24.189,20.367,24.189 +641,20.122,359.094,594.812,211.514,470.175,352.178,589.184,39.136,29.055,39.136,350.608,303.527,368.441,20.395,19.426,20.395 +642,20.153,353.568,608.598,219.822,462.215,344.021,598.503,46.596,39.611,46.596,340.930,302.420,368.718,20.601,18.941,20.601 +643,20.186,347.617,625.112,229.351,455.377,334.379,606.763,54.192,50.247,54.192,323.189,302.171,368.441,20.912,18.638,20.912 +644,20.218,350.943,665.741,239.333,449.253,323.363,613.339,62.241,60.742,62.241,250.246,301.677,368.678,21.191,18.001,21.191 +645,20.249,350.943,665.741,239.333,449.253,323.363,613.339,62.241,60.742,62.241,250.246,301.677,368.678,21.191,18.001,21.191 +646,20.277,338.003,689.365,250.120,444.621,313.568,617.808,71.147,71.295,71.147,217.568,302.934,368.796,21.558,19.264,21.558 +647,20.308,307.765,648.894,262.314,441.595,302.837,620.913,80.011,81.806,80.011,310.437,305.331,367.259,25.662,18.188,25.662 +648,20.339,289.757,638.027,274.724,439.053,289.197,622.407,87.944,92.472,87.944,336.250,304.709,367.510,25.271,18.961,25.271 +649,20.371,269.281,631.781,287.431,438.108,270.171,620.711,94.596,102.366,94.596,344.586,306.960,366.798,26.397,19.526,26.397 +650,20.402,255.984,625.661,301.162,439.489,257.916,617.563,103.416,112.834,103.416,349.846,309.087,366.497,23.675,19.791,23.675 +651,20.434,243.462,619.434,314.976,442.830,246.732,611.648,112.787,123.198,112.787,347.256,310.965,364.146,20.561,19.608,20.561 +652,20.467,232.318,611.363,327.731,447.307,236.573,604.391,121.399,133.229,121.399,346.810,313.426,363.146,19.964,20.081,19.964 +653,20.499,222.174,602.586,339.968,454.847,227.385,596.254,129.452,144.310,129.452,345.052,315.391,361.453,19.288,19.573,19.288 +654,20.531,214.028,592.486,350.506,462.934,220.066,586.940,137.428,154.312,137.428,343.508,317.587,359.904,19.295,20.305,19.295 +655,20.563,207.823,581.816,360.002,472.009,214.468,577.173,145.056,164.792,145.056,342.850,319.774,359.063,19.375,19.937,19.375 +656,20.594,202.910,571.420,367.959,482.977,210.465,567.461,152.345,175.544,152.345,340.370,321.441,357.429,19.359,19.681,19.359 +657,20.625,199.529,561.254,373.888,493.987,207.698,558.165,159.286,6.459,159.286,338.827,322.918,356.294,20.201,23.210,20.201 +658,20.656,197.416,551.163,378.042,505.649,206.185,548.982,166.032,16.917,166.032,336.400,325.975,354.471,19.660,23.138,19.660 +659,20.686,196.714,541.347,379.794,518.672,205.117,540.231,172.435,28.269,172.435,335.035,327.128,351.989,19.261,20.922,19.261 +660,20.717,196.714,541.347,379.794,518.672,205.117,540.231,172.435,28.269,172.435,335.035,327.128,351.989,19.261,20.922,19.261 +661,20.746,197.384,532.047,380.782,530.130,205.766,531.802,178.325,38.884,178.325,333.209,327.812,349.979,18.787,20.163,18.787 +662,20.776,198.658,522.238,380.656,540.287,206.938,522.711,3.270,50.194,3.270,332.287,328.287,348.874,24.646,22.406,24.646 +663,20.807,200.292,514.353,379.096,550.228,208.246,515.576,8.746,60.555,8.746,332.169,328.202,348.265,25.394,23.372,25.394 +664,20.839,202.493,507.917,376.278,559.073,210.058,509.757,13.671,71.847,13.671,330.761,328.561,346.332,25.185,23.538,25.185 +665,20.871,205.300,501.100,373.247,566.353,212.214,503.405,18.435,83.290,18.435,330.774,327.915,345.351,25.931,24.361,25.931 +666,20.903,208.984,494.255,369.564,573.087,215.179,496.996,23.864,94.667,23.864,330.394,327.441,343.942,25.994,24.775,25.994 +667,20.934,211.235,489.322,366.017,578.793,217.705,492.740,27.848,106.074,27.848,328.036,327.050,342.669,25.475,25.358,25.475 +668,20.966,214.090,484.479,362.545,583.783,220.377,488.347,31.608,117.440,31.608,327.430,327.384,342.193,25.877,26.062,25.877 +669,20.999,216.715,480.831,359.644,587.334,222.850,485.118,34.946,129.053,34.946,326.387,326.361,341.357,25.154,27.004,25.154 +670,21.030,219.742,477.560,357.180,590.919,225.582,482.170,38.290,140.254,38.290,326.470,326.112,341.350,25.488,27.040,25.488 +671,21.060,222.674,474.660,354.886,594.130,228.372,479.650,41.216,151.468,41.216,326.048,326.410,341.197,25.208,27.499,25.208 +672,21.091,225.260,472.228,352.877,597.259,230.865,477.595,43.760,162.372,43.760,326.252,327.330,341.772,24.942,26.783,24.942 +673,21.121,227.839,470.154,350.700,600.131,233.226,475.763,46.153,173.008,46.153,326.589,328.061,342.142,24.701,26.350,24.701 +674,21.152,230.416,468.406,348.773,601.962,235.402,474.023,48.411,3.284,48.411,326.862,329.409,341.884,24.448,28.118,24.448 +675,21.184,230.416,468.406,348.773,601.962,235.402,474.023,48.411,3.284,48.411,326.862,329.409,341.884,24.448,28.118,24.448 +676,21.213,233.451,467.365,346.908,604.953,237.870,472.721,50.477,13.577,50.477,328.894,331.514,342.780,25.070,26.260,25.070 +677,21.243,235.221,466.215,344.196,608.640,239.782,472.139,52.404,23.540,52.404,328.761,333.418,343.714,24.475,24.417,24.475 +678,21.274,236.770,464.253,342.464,611.056,241.762,471.144,54.080,32.568,54.080,327.748,333.708,344.766,23.881,21.567,23.881 +679,21.306,237.667,461.727,340.198,613.770,243.631,470.504,55.804,40.746,55.804,324.317,334.513,345.542,23.912,20.351,23.912 +680,21.338,236.694,459.574,337.379,616.108,244.103,470.430,55.685,48.094,55.685,319.525,335.004,345.812,22.786,19.808,22.786 +681,21.370,231.201,445.612,333.925,618.053,246.207,469.050,57.372,54.588,57.372,289.910,335.725,345.570,21.451,19.009,21.451 +682,21.402,204.215,395.377,331.370,620.295,246.509,469.391,60.255,60.998,60.255,175.757,334.993,346.248,17.861,19.355,17.861 +683,21.434,233.982,443.118,328.574,621.593,247.716,468.524,61.607,67.401,61.607,288.449,335.076,346.211,18.117,19.050,18.117 +684,21.466,241.157,452.385,326.513,622.412,249.006,467.577,62.676,74.516,62.676,312.074,334.874,346.273,18.642,19.899,18.642 +685,21.503,245.900,454.800,324.126,623.054,251.523,466.047,63.435,81.764,63.435,320.652,334.189,345.801,22.361,19.559,22.361 +686,21.548,247.050,456.011,321.850,623.990,251.861,465.808,63.848,89.591,63.848,323.845,334.070,345.674,22.430,18.314,22.430 +687,21.582,247.922,456.102,320.750,623.041,252.211,464.908,64.026,99.230,64.026,324.766,333.587,344.355,23.189,21.876,23.189 +688,21.615,247.884,457.095,318.988,620.996,251.309,464.127,64.033,106.734,64.033,325.689,330.835,341.332,22.348,22.821,22.348 +689,21.653,247.200,457.400,321.910,619.193,250.530,464.059,63.435,127.284,63.435,326.466,327.984,341.356,22.361,24.375,22.361 +690,21.685,246.566,457.910,323.659,618.249,249.945,464.520,62.923,137.139,62.923,326.018,326.409,340.865,22.683,25.854,22.683 +691,21.715,246.566,457.910,323.659,618.249,249.945,464.520,62.923,137.139,62.923,326.018,326.409,340.865,22.683,25.854,22.683 +692,21.743,245.624,458.041,325.402,617.126,249.141,464.727,62.252,147.315,62.252,325.650,326.196,340.759,22.806,26.636,22.806 +693,21.774,244.994,458.364,327.655,616.076,248.626,465.008,61.340,157.426,61.340,325.779,325.768,340.924,23.697,27.204,23.697 +694,21.805,243.601,459.511,330.293,615.105,247.221,465.873,60.362,167.593,60.362,326.940,325.945,341.578,23.048,27.444,23.048 +695,21.836,242.347,460.487,333.126,613.908,246.129,466.817,59.151,177.510,59.151,327.034,326.648,341.781,23.172,28.147,23.172 +696,21.870,241.094,462.010,335.805,613.126,244.895,468.068,57.894,7.722,57.894,328.079,329.309,342.383,23.768,28.250,23.768 +697,21.901,240.003,463.829,338.029,612.053,243.554,469.168,56.364,17.899,56.364,329.763,332.025,342.588,23.791,25.888,23.791 +698,21.934,237.438,464.251,341.299,611.267,241.989,470.685,54.724,27.922,54.724,328.479,332.877,344.241,24.416,22.888,24.416 +699,21.966,234.136,464.015,344.270,609.866,240.445,472.291,52.686,37.854,52.686,323.894,333.895,344.707,24.243,20.394,24.243 +700,21.998,211.002,443.757,345.729,609.788,238.028,474.492,48.674,47.239,48.674,263.591,334.952,345.445,21.739,19.626,21.739 +701,22.030,221.237,463.046,348.272,607.778,234.390,477.713,48.116,57.642,48.116,306.325,334.632,345.727,18.548,20.028,18.548 +702,22.061,226.080,469.517,349.936,605.526,233.859,477.446,45.549,67.659,45.549,323.221,334.461,345.437,24.727,19.880,24.727 +703,22.091,224.072,473.052,352.026,601.995,230.865,479.328,42.737,77.879,42.737,325.973,333.431,344.471,25.037,20.342,25.037 +704,22.121,221.894,476.308,354.499,597.966,228.043,481.411,39.688,88.025,39.688,327.506,330.597,343.489,25.899,21.056,25.899 +705,22.152,218.715,480.089,357.390,592.270,224.385,484.258,36.332,98.130,36.332,328.208,329.370,342.284,25.422,22.627,25.422 +706,22.184,218.715,480.089,357.390,592.270,224.385,484.258,36.332,98.130,36.332,328.208,329.370,342.284,25.422,22.627,25.422 +707,22.213,215.416,483.680,360.972,586.659,221.396,487.520,32.709,108.658,32.709,327.818,326.992,342.030,25.737,24.954,25.737 +708,22.244,211.555,487.672,364.197,580.389,218.085,491.262,28.800,119.148,28.800,327.048,326.252,341.952,25.936,26.285,25.936 +709,22.275,208.481,492.855,367.735,572.292,214.831,495.760,24.578,129.962,24.578,327.799,323.927,341.765,25.872,27.171,25.872 +710,22.306,205.175,499.018,371.363,564.334,212.013,501.505,19.983,140.361,19.983,327.902,323.541,342.455,25.374,27.183,25.374 +711,22.337,201.340,505.724,374.665,555.958,209.426,507.880,14.931,150.630,14.931,327.360,324.226,344.096,25.315,26.659,25.315 +712,22.370,197.172,511.549,377.247,546.703,207.736,513.454,10.226,160.665,10.226,323.971,325.161,345.441,25.811,25.891,25.811 +713,22.402,187.351,522.353,379.623,537.321,206.302,523.342,2.987,169.380,2.987,309.674,326.314,347.627,25.174,22.115,25.174 +714,22.434,122.981,531.774,378.645,527.822,204.769,530.496,179.105,177.049,179.105,184.196,322.016,347.793,18.357,20.159,18.357 +715,22.466,194.373,540.042,378.806,517.195,204.759,538.849,173.446,4.597,173.446,329.851,323.173,350.761,19.463,24.083,19.463 +716,22.496,196.701,549.465,379.267,509.498,206.090,547.344,167.268,13.742,167.268,335.268,327.664,354.519,19.761,23.220,19.761 +717,22.527,199.734,559.375,375.637,499.888,207.186,556.689,160.178,22.214,160.178,339.621,326.126,355.463,19.865,23.944,19.865 +718,22.558,203.306,569.629,369.907,489.965,209.268,566.628,153.273,31.584,153.273,342.560,324.741,355.909,19.618,21.556,19.618 +719,22.589,208.150,579.767,364.158,479.584,213.466,576.170,145.914,39.289,145.914,345.029,320.840,357.866,19.049,23.500,19.049 +720,22.620,214.257,590.053,355.541,469.797,218.696,586.080,138.165,48.366,138.165,347.125,316.819,359.039,19.509,24.498,19.509 +721,22.652,222.465,599.170,345.809,460.563,225.924,595.099,130.358,57.863,130.358,349.617,313.231,360.301,19.150,24.676,19.150 +722,22.683,222.465,599.170,345.809,460.563,225.924,595.099,130.358,57.863,130.358,349.617,313.231,360.301,19.150,24.676,19.150 +723,22.713,232.040,607.970,334.126,452.773,234.632,603.855,122.203,67.286,122.203,352.000,310.305,361.726,19.376,23.919,19.376 +724,22.743,242.864,616.276,320.947,446.435,245.073,611.317,114.011,77.005,114.011,352.117,308.282,362.975,19.606,22.786,19.606 +725,22.774,253.555,627.553,306.042,441.896,256.291,617.386,105.059,86.129,105.059,343.722,306.720,364.779,21.686,19.617,21.686 +726,22.805,258.861,697.019,290.683,438.354,266.789,620.516,95.916,96.340,95.916,213.484,305.343,367.310,25.485,19.326,25.485 +727,22.837,285.968,629.567,276.358,437.462,285.845,621.251,89.151,104.880,89.151,351.184,306.814,367.818,25.071,21.099,25.071 +728,22.870,300.895,626.851,262.020,438.783,299.814,620.343,80.566,114.331,80.566,357.402,307.630,370.598,26.632,19.824,26.632 +729,22.903,314.112,622.620,248.378,442.588,312.174,616.946,71.143,123.503,71.143,359.244,308.432,371.237,21.393,19.132,21.393 +730,22.936,328.216,615.601,235.306,448.612,325.673,610.748,62.347,132.485,62.347,360.154,309.484,371.113,22.982,18.721,22.982 +731,22.970,340.839,606.774,223.402,456.134,337.621,602.413,53.579,141.499,53.579,360.200,310.017,371.040,24.360,19.031,24.360 +732,23.004,351.041,595.984,212.784,465.119,347.522,592.450,45.129,150.412,45.129,360.624,310.337,370.598,24.925,18.564,24.925 +733,23.036,359.718,584.854,204.404,474.911,355.825,581.945,36.763,159.444,36.763,361.012,309.808,370.733,25.670,18.610,25.670 +734,23.069,366.305,572.611,197.698,485.470,362.049,570.288,28.624,168.465,28.624,360.096,308.678,369.794,26.116,18.636,26.116 +735,23.101,371.362,561.143,193.042,496.035,366.496,559.278,20.979,177.672,20.979,358.775,306.722,369.198,25.763,20.138,25.763 +736,23.133,376.260,552.282,190.615,505.694,365.935,549.750,13.778,6.050,13.778,340.272,306.417,361.534,21.479,22.304,21.479 +737,23.164,388.450,540.850,188.928,517.776,364.949,537.493,8.130,14.664,8.130,306.602,305.851,354.081,23.052,21.030,23.052 +738,23.195,371.530,527.919,189.102,527.604,364.106,527.856,0.488,23.318,0.488,335.150,306.340,350.000,24.416,22.436,24.416 +739,23.226,370.026,520.143,190.027,539.192,364.879,520.670,174.155,33.111,174.155,341.311,307.039,351.659,20.969,21.705,20.969 +740,23.256,369.646,511.434,191.611,550.461,365.835,512.238,168.089,42.754,168.089,348.931,308.561,356.722,20.441,21.876,20.441 +741,23.287,367.113,502.932,194.280,561.540,363.450,504.095,162.387,53.130,162.387,349.554,312.400,357.242,19.849,21.000,19.849 +742,23.318,363.560,495.141,196.600,570.700,359.220,496.981,157.029,63.435,157.029,347.561,314.838,356.989,19.505,20.125,19.505 +743,23.349,363.560,495.141,196.600,570.700,359.220,496.981,157.029,63.435,157.029,347.561,314.838,356.989,19.505,20.125,19.505 +744,23.377,359.084,488.788,199.137,579.352,354.553,491.213,151.849,73.142,151.849,346.953,318.370,357.231,20.032,20.185,20.032 +745,23.408,354.219,483.181,201.680,586.857,349.693,486.095,147.225,83.089,147.225,347.229,321.104,357.994,19.154,19.975,19.154 +746,23.439,348.961,478.664,204.046,593.002,344.769,481.854,142.730,92.663,142.730,348.054,322.674,358.589,19.254,19.328,19.254 +747,23.470,344.349,474.496,206.756,597.948,340.176,478.179,138.567,102.011,138.567,347.441,325.189,358.571,19.405,19.937,19.405 +748,23.504,340.411,470.423,210.351,601.635,336.127,474.753,134.694,111.084,134.694,345.131,325.164,357.315,19.012,19.707,19.012 +749,23.537,337.850,465.195,213.972,604.390,332.385,471.477,131.023,120.685,131.023,339.341,325.509,355.995,18.786,20.933,18.786 +750,23.570,378.193,404.432,218.746,607.786,328.197,468.428,127.999,130.077,127.999,191.982,323.436,354.402,18.125,20.465,18.125 +751,23.603,336.176,449.693,222.999,609.674,325.003,465.875,124.624,139.586,124.624,313.249,322.569,352.578,18.123,20.067,18.123 +752,23.635,327.697,453.945,227.709,611.370,321.833,463.585,121.312,149.226,121.312,327.787,320.865,350.353,19.378,19.954,19.378 +753,23.668,322.419,454.584,232.465,612.914,318.682,461.472,118.486,158.199,118.486,332.783,319.582,348.456,19.500,22.469,19.500 +754,23.703,318.362,453.874,237.622,614.350,315.609,459.548,115.887,167.110,115.887,334.024,318.861,346.636,19.303,27.391,19.303 +755,23.734,314.752,452.976,243.020,617.638,312.265,458.712,113.440,178.160,113.440,334.206,318.414,346.710,19.376,26.452,19.376 +756,23.765,311.375,452.223,247.298,619.972,309.112,458.086,111.098,7.815,111.098,334.002,319.903,346.570,19.049,27.526,19.049 +757,23.796,308.663,452.185,251.238,622.344,306.642,457.983,109.213,17.266,109.213,334.598,321.827,346.878,19.458,27.151,19.458 +758,23.826,304.899,451.960,254.726,624.521,303.181,457.649,106.798,26.970,106.798,335.625,323.816,347.509,19.399,26.626,19.399 +759,23.857,301.985,451.933,258.242,626.869,300.413,457.848,104.879,34.992,104.879,336.125,325.481,348.365,19.165,26.707,19.165 +760,23.888,299.374,451.774,261.250,628.769,297.931,457.991,103.069,44.256,103.069,336.533,326.748,349.298,19.343,24.701,19.343 +761,23.919,297.058,451.712,264.820,629.260,295.875,457.623,101.310,53.130,101.310,336.731,329.000,348.789,19.219,21.400,19.219 +762,23.950,297.058,451.712,264.820,629.260,295.875,457.623,101.310,53.130,101.310,336.731,329.000,348.789,19.219,21.400,19.219 +763,23.978,294.451,451.813,266.846,630.718,293.398,458.015,99.630,61.332,99.630,336.839,330.728,349.421,19.042,20.591,19.042 +764,24.009,292.220,451.960,268.281,631.701,291.334,458.164,98.130,69.057,98.130,337.573,332.056,350.107,18.809,20.408,18.809 +765,24.041,290.396,451.832,270.350,632.578,289.610,458.424,96.801,77.161,96.801,337.143,333.454,350.420,18.730,21.278,18.730 +766,24.072,288.867,450.144,270.277,632.967,288.051,458.475,95.592,83.201,95.592,334.046,334.401,350.787,18.596,21.845,18.596 +767,24.103,287.848,447.210,272.538,632.971,286.955,458.461,94.538,89.458,94.538,327.636,334.070,350.208,18.086,22.160,18.086 +768,24.134,291.255,374.714,271.273,632.944,285.611,458.437,93.857,94.399,93.857,182.328,333.783,350.153,17.982,22.319,17.982 +769,24.165,286.108,428.109,273.192,632.317,284.560,458.131,92.951,100.599,92.951,288.957,332.762,349.080,17.997,20.257,17.997 +770,24.197,284.067,440.054,274.187,631.600,283.456,457.778,91.975,106.928,91.975,312.607,331.883,348.077,18.265,20.423,18.265 +771,24.228,282.053,444.018,275.565,630.252,281.897,457.121,90.682,114.044,90.682,320.180,329.578,346.387,18.320,20.119,18.320 +772,24.259,280.492,446.478,277.041,629.092,280.546,456.527,89.689,121.884,89.689,324.990,328.490,345.088,18.369,19.904,18.369 +773,24.290,278.446,447.840,279.623,628.104,278.723,456.410,88.152,130.101,88.152,326.121,327.140,343.268,18.700,21.780,18.700 +774,24.320,276.934,448.320,283.109,627.630,277.345,456.169,87.000,140.064,87.000,327.337,325.605,343.056,19.013,22.931,19.013 +775,24.352,275.092,449.183,286.252,627.082,275.643,456.308,85.573,149.281,85.573,327.877,324.462,342.168,18.950,24.694,18.950 +776,24.383,275.092,449.183,286.252,627.082,275.643,456.308,85.573,149.281,85.573,327.877,324.462,342.168,18.950,24.694,18.950 +777,24.412,273.250,449.320,289.832,626.617,273.969,456.303,84.114,158.537,84.114,328.045,323.804,342.086,19.238,25.764,19.238 +778,24.442,270.789,449.396,293.594,626.435,271.745,456.659,82.504,167.856,82.504,327.702,323.791,342.352,19.151,26.693,19.151 +779,24.473,269.059,450.110,297.567,626.174,270.166,457.260,81.198,176.723,81.198,327.765,323.958,342.235,19.248,27.543,19.248 +780,24.507,267.298,451.361,300.907,626.443,268.510,457.986,79.629,6.218,79.629,329.604,325.649,343.075,19.423,28.450,19.423 +781,24.540,265.451,452.539,303.780,626.564,266.755,458.705,78.064,15.687,78.064,331.170,328.683,343.775,19.830,27.613,19.830 +782,24.571,263.988,453.489,307.125,626.813,265.493,459.681,76.342,25.750,76.342,331.730,330.036,344.474,21.033,27.275,21.033 +783,24.603,261.471,454.693,310.181,627.182,263.179,460.930,74.678,34.729,74.678,332.593,331.283,345.526,20.703,24.824,20.703 +784,24.636,259.117,454.892,313.913,626.091,261.200,461.625,72.812,43.905,72.812,331.301,332.523,345.396,20.981,21.146,20.981 +785,24.670,256.488,454.851,316.294,626.531,259.318,463.013,70.880,53.079,70.880,329.042,334.002,346.319,21.378,20.698,21.378 +786,24.701,250.917,450.269,317.699,625.964,256.560,463.984,67.634,61.833,67.634,316.457,336.001,346.119,20.411,19.510,20.411 +787,24.734,237.417,429.518,320.177,625.440,253.060,465.582,66.552,71.114,66.552,268.108,334.942,346.728,17.796,19.620,17.796 +788,24.764,246.020,452.577,323.300,623.873,252.429,465.853,64.231,80.967,64.231,316.746,334.857,346.231,22.265,20.780,22.265 +789,24.795,244.953,457.819,324.831,621.495,249.583,466.486,61.884,89.642,61.884,324.703,333.056,344.356,22.863,18.456,22.863 +790,24.826,242.616,460.261,328.166,618.528,246.778,467.274,59.315,99.400,59.315,326.907,331.755,343.219,23.588,20.865,23.588 +791,24.857,239.074,461.974,331.299,615.594,243.465,468.612,56.517,108.693,56.517,326.179,331.089,342.095,23.671,21.872,23.671 +792,24.888,235.691,464.029,336.045,611.104,240.123,470.018,53.499,118.361,53.499,326.038,328.346,340.940,23.874,23.401,23.874 +793,24.919,232.251,466.561,341.059,607.220,236.972,472.255,50.339,128.039,50.339,325.871,327.054,340.665,24.266,26.137,24.266 +794,24.952,228.625,469.483,346.015,602.653,233.631,474.844,46.966,137.490,46.966,325.563,325.085,340.233,24.771,26.292,24.771 +795,24.983,228.625,469.483,346.015,602.653,233.631,474.844,46.966,137.490,46.966,325.563,325.085,340.233,24.771,26.292,24.771 +796,25.010,224.903,472.545,351.220,597.617,230.179,477.533,43.394,147.191,43.394,326.383,325.357,340.905,24.997,27.079,24.997 +797,25.042,221.370,476.231,356.718,592.327,227.184,481.022,39.491,156.702,39.491,326.432,325.641,341.499,25.910,27.457,25.910 +798,25.072,217.000,480.500,361.873,586.486,223.703,485.253,35.340,165.905,35.340,326.100,326.460,342.534,25.377,26.771,25.377 +799,25.103,212.707,485.157,366.633,579.950,220.422,489.818,31.139,174.763,31.139,325.480,327.203,343.506,26.105,24.979,26.105 +800,25.134,206.837,489.312,370.997,572.561,217.359,494.529,26.375,2.793,26.375,321.133,328.731,344.621,26.070,24.556,26.070 +801,25.166,195.257,495.581,375.118,564.842,213.815,502.203,19.638,10.176,19.638,306.536,330.034,345.944,24.546,21.200,24.546 +802,25.197,132.291,485.566,378.292,557.551,211.348,508.582,16.232,17.103,16.232,183.277,330.553,347.955,18.328,21.468,18.328 +803,25.228,196.865,513.173,379.468,550.836,208.901,515.580,11.310,23.844,11.310,323.788,332.308,348.336,19.219,22.099,19.219 +804,25.259,197.106,519.041,380.896,542.694,207.402,520.006,5.356,30.770,5.356,329.026,330.828,349.709,25.015,20.202,25.015 +805,25.289,197.384,528.297,380.823,533.361,205.791,528.178,179.189,38.157,179.189,333.066,329.636,349.882,24.082,19.770,24.082 +806,25.320,197.101,540.924,380.104,521.978,205.021,539.897,172.610,45.909,172.610,335.893,326.822,351.866,19.494,22.490,19.494 +807,25.351,197.101,540.924,380.104,521.978,205.021,539.897,172.610,45.909,172.610,335.893,326.822,351.866,19.494,22.490,19.494 +808,25.379,198.804,551.262,377.501,511.024,205.381,549.590,165.735,53.584,165.735,339.061,324.264,352.633,19.630,24.392,19.630 +809,25.410,200.819,562.044,373.067,499.434,206.731,559.696,158.334,62.049,158.334,340.945,321.070,353.667,19.351,24.626,19.351 +810,25.440,204.604,573.186,366.337,488.159,209.446,570.488,150.873,70.201,150.873,343.163,317.493,354.249,19.687,23.861,19.687 +811,25.471,210.366,583.648,358.253,476.540,214.221,580.742,142.986,78.465,142.986,345.822,314.177,355.478,19.318,23.315,19.318 +812,25.504,216.683,595.182,349.455,466.242,221.212,590.624,134.818,87.019,134.818,344.397,311.463,357.248,19.085,23.915,19.085 +813,25.537,223.678,607.632,337.972,456.636,229.348,599.975,126.520,95.274,126.520,340.619,309.469,359.674,19.552,22.734,19.552 +814,25.570,232.027,622.882,324.585,448.174,239.976,607.986,118.087,104.621,118.087,327.882,309.511,361.651,19.787,20.404,19.787 +815,25.603,243.391,637.726,310.107,441.765,251.668,614.276,109.440,113.558,109.440,314.515,309.608,364.252,19.747,20.253,19.747 +816,25.636,261.523,625.983,296.235,437.441,262.835,618.432,99.858,120.964,99.858,352.747,309.555,368.074,25.316,20.751,25.316 +817,25.670,280.681,627.632,282.267,435.719,280.972,620.643,92.378,129.327,92.378,355.649,310.079,369.638,25.770,20.000,25.770 +818,25.701,291.005,627.419,268.262,437.149,290.166,621.419,82.042,137.502,82.042,358.940,310.158,371.056,26.878,18.451,26.878 +819,25.733,308.374,624.245,253.494,440.491,306.806,618.874,73.724,145.706,73.724,361.162,310.399,372.351,23.480,18.908,23.480 +820,25.763,324.227,617.214,239.673,445.832,321.963,612.414,64.753,153.890,64.753,360.919,309.959,371.535,22.618,18.797,22.618 +821,25.793,337.470,608.448,226.924,453.304,334.809,604.550,55.680,161.966,55.680,362.042,308.989,371.483,24.183,18.664,24.183 +822,25.824,349.046,598.229,215.866,462.161,345.841,594.818,46.786,170.395,46.786,361.995,308.096,371.356,25.085,19.416,25.085 +823,25.854,358.594,586.918,206.969,472.218,354.795,583.938,38.105,178.620,38.105,360.873,306.224,370.529,25.716,19.199,25.716 +824,25.887,366.670,575.189,200.165,482.951,361.661,572.332,29.700,6.483,29.700,357.596,305.127,369.130,25.861,20.640,25.861 +825,25.918,366.670,575.189,200.165,482.951,361.661,572.332,29.700,6.483,29.700,357.596,305.127,369.130,25.861,20.640,25.861 +826,25.948,379.897,568.759,195.331,493.851,365.358,562.943,21.801,14.783,21.801,335.737,305.245,367.053,20.426,21.326,20.426 +827,25.980,385.400,554.200,191.932,506.471,367.236,549.246,15.255,22.782,15.255,323.108,304.383,360.763,22.979,20.984,22.979 +828,26.011,372.027,538.270,189.801,518.301,365.300,537.432,7.101,30.619,7.101,339.477,305.593,353.035,25.409,21.831,25.409 +829,26.043,369.000,527.500,189.879,530.643,364.440,527.500,0.000,40.135,0.000,340.000,306.124,349.121,23.000,21.497,23.000 +830,26.076,369.135,518.896,190.491,543.008,365.025,519.379,173.290,49.209,173.290,343.922,308.267,352.199,20.856,22.347,20.856 +831,26.107,369.984,509.199,192.383,554.873,365.863,510.165,166.809,58.855,166.809,349.741,311.625,358.208,20.400,20.935,20.400 +832,26.139,366.088,500.252,194.416,565.409,361.711,501.785,160.699,67.891,160.699,348.567,314.564,357.843,20.007,20.556,20.007 +833,26.171,361.208,492.605,196.789,575.226,356.785,494.677,154.904,76.759,154.904,348.345,318.021,358.113,19.728,20.213,19.728 +834,26.204,356.465,485.718,199.475,583.832,351.509,488.652,149.378,86.108,149.378,347.111,320.891,358.629,19.669,19.201,19.669 +835,26.235,350.705,480.222,201.817,590.899,346.002,483.603,144.282,94.865,144.282,347.822,323.384,359.406,19.385,20.310,19.385 +836,26.271,345.818,474.871,205.738,596.700,341.081,478.931,139.399,103.392,139.399,346.329,325.010,358.806,19.524,19.919,19.524 +837,26.307,340.574,470.582,210.086,601.534,336.231,474.948,134.844,111.801,134.844,345.098,325.153,357.415,19.059,19.498,19.059 +838,26.339,337.485,464.710,214.545,605.027,331.872,471.301,130.414,120.493,130.414,338.445,325.708,355.759,19.163,21.035,19.163 +839,26.371,375.520,402.640,220.240,609.288,326.774,467.635,126.870,129.161,126.870,192.000,324.077,354.487,18.000,20.336,18.000 +840,26.404,332.720,449.251,225.528,611.582,322.667,464.872,122.764,137.755,122.764,314.724,322.884,351.878,18.333,20.365,18.333 +841,26.436,324.164,452.233,231.243,613.895,318.655,462.288,118.715,146.739,118.715,326.991,321.721,349.920,19.363,20.554,19.363 +842,26.470,317.979,452.639,237.041,616.024,314.428,460.175,115.226,154.829,115.226,331.274,320.360,347.935,19.387,22.601,19.387 +843,26.504,312.931,451.672,243.582,618.486,310.232,458.420,111.801,163.659,111.801,332.209,320.036,346.743,19.312,24.482,19.312 +844,26.536,307.984,451.000,249.689,620.550,305.919,457.126,108.622,173.047,108.622,332.717,319.753,345.647,19.375,25.809,19.375 +845,26.569,303.584,450.222,255.460,622.780,301.852,456.424,105.601,1.790,105.601,332.527,319.563,345.407,19.094,26.831,19.094 +846,26.604,299.222,449.774,261.350,624.791,297.808,456.089,102.619,10.739,102.619,332.238,321.781,345.182,18.949,27.950,18.949 +847,26.637,294.911,450.057,266.315,627.026,293.859,456.205,99.717,19.323,99.717,333.563,324.548,346.038,18.856,26.876,18.856 +848,26.672,290.798,450.366,271.258,628.965,290.038,456.606,96.946,27.451,96.946,334.159,326.139,346.731,18.543,26.346,18.543 +849,26.704,286.849,450.658,276.318,630.755,286.370,457.173,94.205,35.433,94.205,334.641,327.812,347.705,18.568,25.870,18.568 +850,26.734,283.287,450.873,280.925,631.606,283.102,457.726,91.548,43.487,91.548,334.040,329.082,347.751,18.561,25.767,18.561 +851,26.766,279.343,451.092,286.392,631.088,279.486,457.571,88.738,50.947,88.738,334.293,331.065,347.254,18.511,21.451,18.511 +852,26.796,276.307,451.172,290.253,632.030,276.776,458.505,86.338,58.023,86.338,333.366,332.734,348.062,19.049,21.385,19.049 +853,26.827,272.809,451.737,293.846,632.096,273.640,459.416,83.830,64.450,83.830,332.253,333.751,347.702,19.078,20.342,19.078 +854,26.858,269.211,450.155,297.177,632.297,270.746,460.201,81.314,70.145,81.314,327.904,335.778,348.228,19.235,19.882,19.235 +855,26.889,263.786,439.971,300.465,632.118,268.262,461.021,77.994,75.379,77.994,305.064,336.184,348.106,19.651,20.194,19.651 +856,26.919,253.633,416.506,302.434,631.512,264.508,461.705,76.472,79.672,76.472,254.957,336.215,347.935,17.764,21.018,17.764 +857,26.950,253.633,416.506,302.434,631.512,264.508,461.705,76.472,79.672,76.472,254.957,336.215,347.935,17.764,21.018,17.764 +858,26.978,256.236,443.854,307.715,629.943,261.594,462.403,73.887,85.475,73.887,308.902,335.641,347.517,18.125,21.171,18.125 +859,27.010,255.673,450.748,309.512,628.006,259.657,462.513,71.288,90.716,71.288,320.639,334.124,345.481,21.265,21.098,21.265 +860,27.041,252.485,453.615,313.331,625.722,256.274,463.126,68.274,97.306,68.274,323.857,333.043,344.333,21.658,20.473,21.658 +861,27.072,249.200,456.777,317.765,622.941,252.662,464.211,65.033,104.036,65.033,326.353,332.274,342.754,22.165,20.858,22.165 +862,27.102,245.447,458.328,323.284,619.113,249.107,465.104,61.624,111.623,61.624,326.110,329.808,341.514,23.583,21.633,23.583 +863,27.135,241.120,460.927,329.624,615.638,245.084,467.276,58.020,119.578,58.020,326.271,328.436,341.240,23.527,23.811,23.527 +864,27.168,236.640,463.587,335.450,611.350,240.873,469.475,54.293,127.875,54.293,326.303,326.792,340.807,23.853,25.347,23.853 +865,27.199,232.057,466.465,341.750,606.785,236.896,472.301,50.332,135.567,50.332,325.739,325.365,340.903,24.426,26.169,24.426 +866,27.229,227.359,469.766,347.569,601.280,232.709,475.324,46.091,143.887,46.091,325.372,325.409,340.801,24.690,26.954,24.690 +867,27.260,223.149,474.146,353.518,595.371,228.785,479.159,41.649,152.144,41.649,325.784,325.384,340.870,25.141,27.454,25.141 +868,27.291,218.765,478.982,359.421,589.052,224.831,483.538,36.911,160.157,36.911,326.794,325.927,341.967,25.564,26.943,25.564 +869,27.321,213.988,484.217,365.063,581.732,221.053,488.625,31.958,168.359,31.958,326.274,326.563,342.928,25.476,26.428,25.476 +870,27.353,208.329,489.849,370.094,573.457,217.446,494.463,26.843,176.326,26.843,323.301,327.252,343.737,26.186,23.795,26.186 +871,27.384,208.329,489.849,370.094,573.457,217.446,494.463,26.843,176.326,26.843,323.301,327.252,343.737,26.186,23.795,26.186 +872,27.412,200.296,495.460,374.964,564.495,214.186,500.882,21.323,4.165,21.323,315.985,329.603,345.806,26.243,22.654,26.243 +873,27.442,165.074,497.475,378.525,555.457,211.085,508.198,13.119,11.659,13.119,253.103,330.715,347.592,22.119,21.577,22.119 +874,27.472,195.627,516.526,380.137,547.137,208.158,518.502,8.960,20.610,8.960,323.309,330.880,348.680,19.264,24.672,19.264 +875,27.504,196.694,523.648,380.953,537.725,206.609,524.044,2.291,28.327,2.291,329.656,330.314,349.503,24.660,21.360,24.660 +876,27.537,197.142,536.479,380.293,527.282,205.227,535.838,175.471,36.254,175.471,334.171,329.175,350.391,19.197,20.536,19.197 +877,27.568,198.010,547.630,377.697,515.878,204.590,546.271,168.326,44.243,168.326,337.912,326.069,351.350,19.789,20.046,19.789 +878,27.600,200.003,558.649,374.813,503.025,206.175,556.490,160.721,52.595,160.721,340.592,323.444,353.669,19.505,23.971,19.505 +879,27.631,203.558,570.163,369.031,490.936,208.943,567.401,152.850,61.314,152.850,342.580,319.472,354.683,19.599,24.481,19.599 +880,27.662,209.067,581.214,360.715,479.467,213.055,578.392,144.713,70.017,144.713,345.584,315.771,355.354,19.565,23.409,19.565 +881,27.692,215.960,592.031,352.000,468.000,219.613,588.546,136.353,78.690,136.353,347.900,312.609,357.997,19.248,24.711,19.248 +882,27.722,223.930,603.275,340.186,458.396,227.713,598.403,127.825,87.274,127.825,346.792,309.506,359.128,19.657,22.593,19.657 +883,27.753,233.427,615.860,326.989,449.602,238.383,607.019,119.275,95.906,119.275,341.009,308.869,361.281,19.772,20.751,19.772 +884,27.784,236.465,647.725,312.577,443.390,249.055,613.609,110.256,104.638,110.256,290.637,308.501,363.368,19.712,18.874,19.712 +885,27.814,236.465,647.725,312.577,443.390,249.055,613.609,110.256,104.638,110.256,290.637,308.501,363.368,19.712,18.874,19.712 +886,27.843,263.067,628.584,297.437,438.299,265.051,619.367,102.147,111.400,102.147,348.801,308.444,367.656,24.094,21.842,24.094 +887,27.875,274.406,628.399,283.572,436.326,274.656,620.691,91.864,119.659,91.864,353.691,308.345,369.116,26.214,20.023,26.214 +888,27.906,289.622,627.614,268.941,436.955,288.836,621.372,82.824,127.439,82.824,358.333,309.240,370.916,26.899,19.354,26.899 +889,27.943,307.117,624.670,254.256,440.323,305.553,619.104,74.303,135.830,74.303,360.422,309.783,371.984,23.917,18.485,23.917 +890,27.988,338.153,608.667,226.552,453.658,335.198,604.336,55.699,151.987,55.699,360.912,310.001,371.399,24.885,18.568,24.885 +891,28.021,349.315,597.956,215.073,463.341,346.197,594.671,46.497,159.775,46.497,361.989,309.357,371.046,25.340,17.977,25.340 +892,28.055,358.605,585.482,205.657,473.422,355.314,582.963,37.421,167.735,37.421,362.552,308.703,370.841,25.769,18.694,25.769 +893,28.093,366.145,572.926,198.436,484.189,361.902,570.604,28.689,175.486,28.689,360.091,307.779,369.765,25.809,20.279,25.809 +894,28.123,373.539,560.996,193.086,497.581,366.880,558.530,20.323,3.468,20.323,354.087,306.891,368.288,25.667,21.839,25.667 +895,28.154,441.176,562.988,190.160,508.665,365.871,546.083,12.653,11.535,12.653,204.920,306.119,359.279,21.406,21.196,21.406 +896,28.186,376.358,534.539,188.865,522.071,364.530,533.589,4.592,19.592,4.592,328.316,306.535,352.048,24.964,21.684,24.964 +897,28.217,376.358,534.539,188.865,522.071,364.530,533.589,4.592,19.592,4.592,328.316,306.535,352.048,24.964,21.684,24.964 +898,28.244,370.257,524.674,189.254,534.122,364.296,524.970,177.157,27.440,177.157,338.626,307.330,350.562,21.189,21.795,21.189 +899,28.276,369.481,514.103,190.760,546.919,365.381,514.821,170.074,35.119,170.074,346.755,308.525,355.080,20.809,21.537,20.809 +900,28.306,367.676,504.085,193.956,557.983,364.263,505.110,163.279,43.247,163.279,349.508,310.044,356.635,20.258,22.235,20.258 +901,28.338,363.516,495.043,197.586,569.783,359.701,496.676,156.832,50.528,156.832,347.307,313.086,355.607,19.836,21.251,19.836 +902,28.369,358.540,487.178,201.642,580.326,354.390,489.500,150.774,57.642,150.774,345.790,316.919,355.300,19.761,20.673,19.761 +903,28.401,352.667,480.374,205.622,589.178,348.534,483.260,145.081,64.747,145.081,345.543,319.350,355.624,19.509,20.256,19.509 +904,28.432,346.545,474.703,209.946,597.177,342.395,478.235,139.593,72.232,139.593,345.010,321.689,355.909,19.489,20.204,19.489 +905,28.462,340.351,469.884,214.563,603.891,336.321,473.994,134.429,79.037,134.429,344.478,324.368,355.991,18.971,19.959,18.971 +906,28.492,334.307,466.016,219.518,609.499,330.590,470.522,129.514,85.646,129.514,344.092,326.264,355.775,19.263,19.360,19.263 +907,28.524,328.413,462.507,224.631,614.429,324.821,467.676,124.793,92.182,124.793,342.784,327.410,355.372,19.193,19.357,19.193 +908,28.555,322.249,460.380,229.907,617.845,319.542,464.975,120.500,98.162,120.500,343.755,328.381,354.422,19.180,19.632,19.180 +909,28.586,318.014,456.271,234.907,620.731,314.687,462.981,116.375,103.822,116.375,338.563,329.368,353.541,19.606,21.455,19.606 +910,28.617,318.014,456.271,234.907,620.731,314.687,462.981,116.375,103.822,116.375,338.563,329.368,353.541,19.606,21.455,19.606 +911,28.645,314.603,451.079,240.046,622.852,310.340,461.268,112.701,108.075,112.701,330.300,329.181,352.389,18.682,20.298,18.682 +912,28.676,326.897,399.352,245.692,625.004,305.390,459.840,109.573,112.946,109.573,222.844,328.537,351.240,18.007,20.192,18.007 +913,28.707,307.575,436.103,250.674,626.092,301.073,458.470,106.209,118.040,106.209,303.472,327.998,350.057,18.088,19.657,18.088 +914,28.739,300.253,443.612,256.093,626.732,297.166,457.504,102.529,123.346,102.529,319.756,327.286,348.217,18.548,20.057,18.548 +915,28.770,294.047,446.113,261.778,627.074,292.496,456.356,98.609,130.030,98.609,326.065,326.343,346.785,19.144,19.112,19.144 +916,28.802,288.463,447.309,268.497,627.093,287.716,455.678,95.102,136.782,95.102,328.088,324.867,344.891,18.800,20.870,18.800 +917,28.834,283.317,448.047,275.405,627.432,283.120,455.701,91.474,143.973,91.474,328.432,324.230,343.746,18.667,23.821,18.667 +918,28.864,278.141,448.844,282.378,627.208,278.410,456.002,87.847,152.802,87.847,328.144,323.469,342.469,18.896,25.102,18.896 +919,28.895,273.911,449.177,289.373,626.564,274.572,456.151,84.588,160.677,84.588,328.089,323.040,342.099,19.429,25.773,19.429 +920,28.926,268.648,450.155,296.538,626.192,269.803,457.350,80.882,168.690,80.882,327.317,323.396,341.891,19.321,27.260,19.321 +921,28.956,264.185,451.524,303.727,625.295,265.776,458.554,77.242,176.055,77.242,327.595,324.161,342.010,19.930,27.246,19.930 +922,28.986,259.636,453.495,310.799,623.807,261.522,459.867,73.516,4.086,73.516,329.078,325.741,342.368,20.841,27.145,20.841 +923,29.018,259.636,453.495,310.799,623.807,261.522,459.867,73.516,4.086,73.516,329.078,325.741,342.368,20.841,27.145,20.841 +924,29.046,255.442,455.633,317.316,622.638,257.725,461.794,69.669,12.288,69.669,329.915,329.056,343.056,22.169,28.374,22.169 +925,29.077,251.050,457.882,323.709,620.623,253.771,463.897,65.664,20.426,65.664,330.038,331.102,343.241,23.077,25.787,23.077 +926,29.107,245.789,460.384,330.679,618.094,249.136,466.576,61.607,28.351,61.607,330.056,331.670,344.133,23.134,24.450,23.134 +927,29.137,240.699,462.657,337.597,614.554,244.988,469.334,57.281,36.064,57.281,328.599,333.201,344.470,23.609,21.123,23.609 +928,29.169,230.906,462.604,343.460,611.520,239.668,473.405,50.954,43.787,50.954,317.482,333.979,345.298,22.963,20.540,22.963 +929,29.201,202.431,442.312,348.278,607.874,234.360,477.788,48.013,51.180,48.013,250.341,334.672,345.798,18.062,19.541,18.062 +930,29.233,222.420,471.154,353.932,602.333,231.831,479.980,43.163,59.610,43.163,319.720,334.637,345.522,24.301,20.741,24.301 +931,29.264,219.220,477.107,358.281,596.175,227.291,483.423,38.047,67.380,38.047,324.794,333.769,345.290,25.988,20.385,25.988 +932,29.295,214.865,483.738,363.152,588.577,222.416,488.566,32.598,75.630,32.598,326.968,332.077,344.893,25.520,21.800,25.520 +933,29.325,211.064,490.453,366.262,579.860,217.518,493.731,26.928,83.660,26.928,328.766,329.749,343.244,25.941,21.092,25.941 +934,29.356,206.393,498.322,370.826,570.073,213.118,500.856,20.647,91.790,20.647,329.595,326.372,343.969,26.337,24.269,26.337 +935,29.388,202.521,506.135,373.812,559.232,209.384,507.914,14.534,100.008,14.534,329.908,324.689,344.089,25.742,25.546,25.742 +936,29.420,199.466,515.632,375.900,547.300,206.223,516.567,7.880,108.435,7.880,330.935,322.552,344.577,25.254,25.931,25.254 +937,29.452,197.011,525.793,376.900,534.700,204.012,525.903,0.906,116.565,0.906,332.006,320.652,346.010,24.428,26.386,24.428 +938,29.482,197.011,525.793,376.900,534.700,204.012,525.903,0.906,116.565,0.906,332.006,320.652,346.010,24.428,26.386,24.428 +939,29.510,196.173,539.523,376.053,522.093,203.150,538.731,173.526,125.127,173.526,333.308,320.247,347.352,19.851,25.675,19.851 +940,29.542,194.624,551.981,373.970,507.971,204.134,549.589,165.881,133.380,165.881,330.104,318.591,349.715,19.866,24.475,19.866 +941,29.573,190.155,566.638,369.755,494.314,206.288,560.185,158.199,140.984,158.199,317.725,319.078,352.477,19.498,22.405,19.498 +942,29.605,141.127,610.218,364.355,481.273,210.091,569.989,149.744,147.381,149.744,196.222,318.749,355.902,18.787,19.237,18.787 +943,29.637,208.435,587.227,356.609,469.226,216.278,581.080,141.917,153.178,141.917,338.966,319.303,358.897,19.342,22.270,19.342 +944,29.671,218.338,596.533,347.850,459.086,223.663,590.859,133.184,160.115,133.184,346.577,318.507,362.140,19.390,20.748,19.390 +945,29.704,229.128,605.901,337.217,450.444,233.126,600.077,124.472,167.053,124.472,350.419,317.579,364.548,19.466,19.940,19.466 +946,29.736,241.375,614.251,324.317,443.668,244.165,608.386,115.439,174.289,115.439,353.362,315.526,366.353,19.716,20.100,19.716 +947,29.767,254.389,620.913,309.973,439.247,255.955,615.280,105.544,1.259,105.544,356.449,312.364,368.141,22.114,19.303,22.114 +948,29.797,268.092,625.113,294.294,436.605,268.661,619.598,95.895,8.811,95.895,358.226,310.507,369.314,25.792,20.357,25.792 +949,29.828,287.682,626.340,278.714,436.324,287.505,621.157,88.047,14.931,88.047,359.677,308.422,370.051,25.326,21.257,25.326 +950,29.858,299.724,625.230,263.373,438.016,298.636,620.290,77.581,22.479,77.581,361.067,306.391,371.185,26.037,21.603,26.037 +951,29.889,317.260,619.977,248.135,443.580,315.678,615.863,68.962,30.579,68.962,361.277,304.729,370.092,21.898,19.958,21.898 +952,29.920,333.038,614.679,234.550,450.885,329.815,609.165,59.693,37.569,59.693,356.674,303.270,369.446,23.553,18.901,23.553 +953,29.951,333.038,614.679,234.550,450.885,329.815,609.165,59.693,37.569,59.693,356.674,303.270,369.446,23.553,18.901,23.553 +954,29.978,356.686,620.664,222.250,460.250,340.842,601.310,50.696,45.000,50.696,318.520,301.935,368.544,20.547,18.385,20.547 +955,30.010,359.721,597.842,212.417,470.677,351.851,590.562,42.769,52.242,42.769,346.091,302.413,367.532,24.115,19.517,24.115 +956,30.041,366.073,580.841,204.015,482.586,360.822,577.444,32.905,58.912,32.905,353.854,304.229,366.363,26.224,20.301,26.224 +957,30.071,370.856,567.122,196.177,495.140,365.763,564.800,24.503,66.600,24.503,355.212,305.026,366.407,26.128,20.051,26.128 +958,30.101,372.796,553.920,192.850,507.251,368.434,552.631,16.456,73.706,16.456,353.397,307.044,362.493,25.257,21.161,25.257 +959,30.133,370.288,540.603,190.319,520.031,366.124,539.965,8.719,80.263,8.719,345.166,309.261,353.591,25.668,21.240,25.668 +960,30.163,368.652,530.221,187.727,532.857,363.561,530.107,1.281,87.455,1.281,341.272,312.536,351.457,22.918,22.112,22.918 +961,30.194,368.152,520.497,187.706,545.044,363.399,520.978,174.221,93.560,174.221,344.894,315.009,354.447,21.054,20.303,21.054 +962,30.224,368.800,510.604,187.203,555.629,363.328,511.827,167.400,100.429,167.400,351.663,318.147,362.877,20.586,21.637,20.586 +963,30.254,364.885,501.286,190.163,565.638,360.091,502.929,161.087,106.427,161.087,352.026,319.748,362.161,20.111,19.719,20.111 +964,30.285,360.326,493.262,192.227,574.095,355.252,495.627,155.011,112.659,155.011,350.630,321.228,361.825,19.641,19.917,19.641 +965,30.317,360.326,493.262,192.227,574.095,355.252,495.627,155.011,112.659,155.011,350.630,321.228,361.825,19.641,19.917,19.641 +966,30.346,355.471,486.388,195.908,581.949,350.637,489.252,149.349,118.748,149.349,349.501,322.271,360.739,19.436,19.769,19.436 +967,30.376,350.833,479.816,199.895,588.404,345.781,483.473,144.103,124.330,144.103,346.933,322.566,359.406,19.303,20.262,19.303 +968,30.407,347.619,473.161,204.434,593.624,341.402,478.526,139.208,129.401,139.208,341.359,322.806,357.783,19.115,21.057,19.115 +969,30.437,392.750,417.750,209.456,598.931,336.381,474.119,135.000,133.433,135.000,196.576,321.981,356.011,17.678,19.534,17.678 +970,30.469,354.957,443.896,215.154,603.674,331.958,470.433,130.914,138.443,130.914,284.139,321.228,354.373,18.137,19.569,18.137 +971,30.501,337.731,454.018,220.360,607.342,327.780,467.484,126.461,143.556,126.461,319.152,321.006,352.639,19.683,19.938,19.683 +972,30.533,329.406,454.844,225.998,610.409,323.271,464.512,122.400,149.630,122.400,327.713,320.031,350.613,19.614,19.707,19.614 +973,30.564,322.771,454.007,232.026,613.058,318.624,461.633,118.536,156.011,118.536,331.435,319.631,348.797,19.433,22.000,19.433 +974,30.594,317.065,452.871,238.960,616.590,313.927,459.691,114.709,163.856,114.709,332.726,319.110,347.742,19.357,24.115,19.357 +975,30.625,311.443,452.135,245.608,619.711,309.077,458.268,111.090,171.384,111.090,333.788,319.235,346.935,19.456,25.497,19.456 +976,30.656,306.500,450.658,252.518,622.102,304.494,456.992,107.571,179.349,107.571,332.907,319.127,346.195,19.273,25.714,19.273 +977,30.687,301.561,449.894,258.403,624.085,299.932,456.348,104.167,7.420,104.167,332.286,321.407,345.599,19.090,27.267,19.090 +978,30.718,296.617,449.950,264.334,626.253,295.425,456.199,100.803,15.333,100.803,333.013,323.729,345.736,19.104,27.066,19.104 +979,30.748,296.617,449.950,264.334,626.253,295.425,456.199,100.803,15.333,100.803,333.013,323.729,345.736,19.104,27.066,19.104 +980,30.776,292.214,450.045,270.093,628.445,291.332,456.416,97.878,23.318,97.878,333.770,325.388,346.633,18.777,26.584,18.777 +981,30.810,287.179,450.168,275.731,629.943,286.672,456.764,94.399,31.218,94.399,333.783,327.048,347.016,18.637,26.252,18.637 +982,30.843,282.991,450.886,281.214,630.967,282.843,457.409,91.302,39.123,91.302,334.050,328.586,347.100,18.609,25.932,18.609 +983,30.874,278.631,451.560,286.451,631.987,278.853,458.457,88.152,46.747,88.152,333.568,330.518,347.369,18.571,24.663,18.571 +984,30.905,274.905,451.677,292.094,631.711,275.504,458.775,85.183,54.211,85.183,333.190,332.375,347.437,19.280,21.657,19.280 +985,30.937,270.328,451.948,297.090,631.648,271.432,459.769,81.964,61.805,81.964,331.757,333.357,347.555,19.070,20.389,19.070 +986,30.969,265.000,449.530,301.137,630.948,267.346,460.597,78.032,69.248,78.032,324.684,335.183,347.310,19.389,19.740,19.389 +987,31.002,241.580,379.396,305.647,630.966,263.275,462.234,75.324,76.897,75.324,176.661,336.010,347.924,17.781,19.731,17.781 +988,31.033,254.818,446.423,310.296,629.229,260.232,463.101,72.016,84.472,72.016,311.871,335.016,346.939,20.158,20.196,20.158 +989,31.064,252.522,453.025,314.000,626.500,256.683,463.605,68.530,92.121,68.530,322.404,333.512,345.141,21.793,20.171,21.793 +990,31.094,249.217,456.585,319.040,623.275,252.877,464.391,64.878,100.125,64.878,326.644,333.264,343.888,22.553,19.864,22.553 +991,31.124,244.662,459.205,323.281,619.086,248.161,465.550,61.123,107.103,61.123,326.954,330.847,341.446,22.794,21.909,22.794 +992,31.154,240.130,461.838,331.005,615.245,244.159,468.088,57.196,115.931,57.196,326.608,328.781,341.480,23.467,23.836,23.467 +993,31.186,235.248,464.309,337.014,610.356,239.721,470.263,53.087,123.947,53.087,325.995,327.272,340.890,23.863,25.680,23.863 +994,31.217,235.248,464.309,337.014,610.356,239.721,470.263,53.087,123.947,53.087,325.995,327.272,340.890,23.863,25.680,23.863 +995,31.249,230.645,467.433,343.127,605.278,235.575,473.064,48.797,131.673,48.797,325.676,325.952,340.644,25.329,26.185,25.329 +996,31.279,225.500,471.488,349.344,599.260,230.932,476.788,44.293,139.662,44.293,325.384,325.385,340.563,25.000,26.515,25.000 +997,31.310,221.230,476.507,355.844,592.824,226.906,481.186,39.500,147.475,39.500,326.295,325.117,341.005,25.266,27.152,25.266 +998,31.341,216.265,481.613,361.584,585.371,222.644,485.984,34.425,155.426,34.425,326.123,324.994,341.587,25.507,27.319,25.507 +999,31.373,211.314,487.042,367.079,577.476,218.786,491.214,29.176,162.759,29.176,325.945,325.842,343.061,25.946,26.116,25.946 +1000,31.404,206.094,493.787,371.811,568.734,215.064,497.735,23.757,169.819,23.757,324.533,326.905,344.135,26.355,24.719,26.355 +1001,31.436,199.107,500.668,375.779,559.290,211.819,504.751,17.804,176.273,17.804,318.864,327.998,345.568,25.777,22.313,25.777 +1002,31.468,184.282,509.267,377.094,548.699,207.894,513.335,9.774,1.623,9.774,297.575,324.493,345.495,23.917,20.486,23.917 +1003,31.498,127.443,515.013,379.017,538.207,206.107,521.995,5.072,6.870,5.072,189.386,324.556,347.333,18.537,20.957,18.537 +1004,31.528,193.866,531.482,380.516,528.924,205.681,531.238,178.819,11.889,178.819,326.054,327.093,349.691,19.140,22.919,19.140 +1005,31.559,195.540,542.305,381.017,517.698,205.790,540.830,171.809,17.082,171.809,332.760,329.228,353.471,19.504,22.742,19.504 +1006,31.589,198.305,553.521,377.629,506.198,206.304,551.278,164.342,23.199,164.342,337.653,327.741,354.268,19.987,23.504,19.987 +1007,31.622,201.826,564.793,372.981,494.934,208.213,562.022,156.549,29.055,156.549,341.789,325.284,355.714,19.605,21.077,19.605 +1008,31.653,206.426,576.252,365.325,483.952,211.300,573.258,148.438,35.331,148.438,344.531,323.148,355.971,19.306,20.261,19.306 +1009,31.684,206.426,576.252,365.325,483.952,211.300,573.258,148.438,35.331,148.438,344.531,323.148,355.971,19.306,20.261,19.306 +1010,31.711,212.724,587.482,357.830,471.618,217.421,583.532,139.939,40.786,139.939,346.709,319.030,358.983,19.273,24.140,19.273 +1011,31.742,221.269,598.176,347.643,461.702,225.030,593.897,131.319,47.490,131.319,349.085,315.072,360.480,19.321,24.080,19.321 +1012,31.772,231.727,607.596,335.110,452.786,234.419,603.355,122.400,53.746,122.400,352.118,311.810,362.165,19.793,24.300,19.793 +1013,31.804,243.768,615.548,321.392,445.562,245.732,611.001,113.361,60.255,113.361,353.850,308.722,363.756,20.093,23.691,20.093 +1014,31.837,256.834,622.945,306.093,441.112,258.105,617.706,103.643,67.011,103.643,355.079,306.749,365.861,22.710,22.178,22.710 +1015,31.870,270.057,629.004,289.915,438.953,270.616,621.271,94.130,74.055,94.130,350.964,305.353,366.470,26.509,20.741,26.509 +1016,31.902,292.432,652.819,273.459,439.257,290.536,622.140,86.463,80.538,86.463,305.704,303.809,367.178,25.261,18.248,25.261 +1017,31.934,303.196,629.530,258.175,441.753,301.119,620.976,76.355,86.658,76.355,350.984,303.709,368.591,25.974,20.287,25.974 +1018,31.964,320.139,621.647,243.500,446.500,317.663,615.564,67.848,93.366,67.848,355.963,304.063,369.098,21.991,19.378,21.991 +1019,31.995,334.031,613.073,230.370,453.044,331.066,608.174,58.815,99.828,58.815,358.252,305.459,369.706,23.481,19.086,23.481 +1020,32.026,346.403,603.239,218.455,461.632,342.721,598.871,49.876,106.164,49.876,358.621,307.029,370.046,24.656,19.321,24.656 +1021,32.056,356.080,591.695,208.692,471.988,352.237,588.333,41.186,112.258,41.186,359.073,308.839,369.284,25.588,18.481,25.588 +1022,32.087,363.936,579.128,200.137,482.696,359.587,576.346,32.600,118.393,32.600,359.246,310.608,369.570,25.616,18.593,25.616 +1023,32.117,363.936,579.128,200.137,482.696,359.587,576.346,32.600,118.393,32.600,359.246,310.608,369.570,25.616,18.593,25.616 +1024,32.145,368.986,566.424,193.478,494.356,364.428,564.355,24.417,124.430,24.417,359.184,312.360,369.194,25.701,19.004,25.701 +1025,32.177,371.561,553.711,188.574,506.374,366.463,552.194,16.570,131.112,16.570,356.498,313.644,367.138,25.770,21.466,25.770 +1026,32.208,368.729,540.672,185.850,517.422,363.833,539.891,9.070,137.337,9.070,348.684,313.709,358.599,25.880,21.470,25.880 +1027,32.238,367.361,530.133,183.827,527.929,361.680,529.944,1.903,143.253,1.903,344.275,314.593,355.644,25.044,22.949,25.044 +1028,32.271,366.885,522.157,184.074,538.456,361.825,522.590,175.106,149.036,175.106,346.756,314.185,356.913,20.859,22.809,20.859 +1029,32.303,369.390,512.448,185.785,548.056,363.219,513.677,168.733,154.146,168.733,348.879,314.389,361.463,20.683,21.693,20.683 +1030,32.335,377.453,500.603,188.954,556.359,361.997,505.368,162.865,157.989,162.865,328.426,315.691,360.772,19.785,19.805,19.785 +1031,32.366,400.964,480.099,191.592,565.527,358.108,497.532,157.865,163.009,157.865,267.197,313.869,359.728,18.777,19.632,18.777 +1032,32.397,372.614,482.128,195.610,572.546,354.877,491.410,152.374,168.601,152.374,317.426,313.593,357.464,19.094,20.238,19.094 +1033,32.427,361.052,479.137,200.293,579.374,351.062,485.556,147.277,174.428,147.277,331.366,312.735,355.115,19.597,20.707,19.597 +1034,32.456,352.821,475.363,206.039,585.861,346.901,479.925,142.381,1.032,142.381,337.529,312.202,352.478,19.642,20.708,19.642 +1035,32.487,346.310,471.446,210.965,592.725,342.010,475.341,137.824,8.940,137.824,340.253,314.159,351.857,19.623,23.708,19.623 +1036,32.521,340.732,467.625,216.660,599.189,337.145,471.394,133.584,15.945,133.584,340.861,315.105,351.268,18.805,25.274,18.805 +1037,32.553,335.402,464.292,221.605,605.402,331.835,468.638,129.382,23.671,129.382,340.054,317.393,351.298,19.312,26.096,19.312 +1038,32.584,335.402,464.292,221.605,605.402,331.835,468.638,129.382,23.671,129.382,340.054,317.393,351.298,19.312,26.096,19.312 +1039,32.612,330.472,461.125,227.265,610.559,327.018,465.988,125.385,30.964,125.385,339.330,318.987,351.259,19.475,26.068,19.475 +1040,32.643,325.449,459.042,232.336,615.217,322.245,464.230,121.696,38.541,121.696,339.218,320.633,351.413,19.291,25.984,19.291 +1041,32.675,320.408,457.341,237.527,618.991,317.589,462.597,118.207,46.042,118.207,339.398,323.313,351.327,19.211,24.835,19.211 +1042,32.707,315.810,455.753,243.000,621.500,313.379,460.999,114.864,53.427,114.864,338.869,325.255,350.432,19.319,21.787,19.319 +1043,32.737,311.586,454.534,247.752,624.545,309.337,460.157,111.801,61.390,111.801,338.894,327.615,351.005,18.941,20.750,18.941 +1044,32.770,307.379,454.105,251.446,626.928,305.466,459.705,108.853,68.412,108.853,339.578,329.617,351.414,19.204,20.952,19.204 +1045,32.801,303.226,453.708,256.064,629.617,301.563,459.531,105.945,76.225,105.945,339.967,332.978,352.081,19.230,21.637,19.230 +1046,32.832,298.952,452.570,259.952,631.094,297.431,459.192,102.935,83.290,102.935,338.270,333.523,351.858,19.214,22.083,19.214 +1047,32.862,295.962,449.098,261.500,631.500,294.194,458.971,100.151,90.000,100.151,331.119,333.000,351.180,18.596,21.000,18.596 +1048,32.893,302.007,375.949,264.534,631.821,290.636,458.392,97.853,96.953,97.853,184.290,333.142,350.737,17.900,20.337,17.900 +1049,32.923,289.742,430.840,269.124,631.768,287.273,457.994,95.194,104.837,95.194,294.875,332.262,349.407,17.926,19.954,17.926 +1050,32.954,285.071,441.596,273.108,630.734,284.342,457.357,92.648,112.036,92.648,315.865,330.346,347.421,18.408,20.481,18.408 +1051,32.987,281.000,446.000,276.631,629.572,281.000,456.786,90.000,118.926,90.000,324.000,329.068,345.572,18.000,19.900,18.000 +1052,33.018,281.000,446.000,276.631,629.572,281.000,456.786,90.000,118.926,90.000,324.000,329.068,345.572,18.000,19.900,18.000 +1053,33.046,277.569,447.797,280.987,628.581,277.961,456.614,87.455,126.027,87.455,326.211,327.832,343.863,18.781,21.101,18.781 +1054,33.076,274.347,448.658,286.387,627.890,275.061,456.690,84.920,134.249,84.920,326.933,326.161,343.061,19.257,22.076,19.257 +1055,33.106,271.071,449.587,291.381,626.883,272.026,456.695,82.349,141.710,82.349,328.157,325.602,342.500,19.837,23.836,19.837 +1056,33.137,267.184,450.286,296.838,626.397,268.520,457.680,79.760,149.036,79.760,327.099,325.161,342.127,19.574,25.553,19.574 +1057,33.169,263.833,451.349,302.054,625.406,265.474,458.485,77.053,156.346,77.053,327.100,324.667,341.746,20.085,26.465,20.085 +1058,33.202,260.421,452.101,307.496,623.705,262.370,459.037,74.305,163.791,74.305,327.061,324.475,341.471,20.456,27.736,20.456 +1059,33.238,257.050,453.650,312.894,622.406,259.306,460.417,71.565,170.701,71.565,326.980,325.184,341.245,21.187,27.188,21.187 +1060,33.285,253.642,455.728,318.605,620.862,256.074,461.933,68.603,177.455,68.603,328.247,325.701,341.576,21.863,28.194,21.863 +1061,33.318,250.359,457.021,324.009,619.379,253.263,463.388,65.484,4.185,65.484,328.572,327.247,342.568,23.188,27.755,23.188 +1062,33.350,246.408,459.573,328.926,616.993,249.484,465.436,62.316,10.856,62.316,328.989,330.027,342.231,23.000,26.651,23.000 +1063,33.387,238.797,463.982,339.418,611.842,242.807,469.824,55.533,23.421,55.533,329.354,332.614,343.525,23.902,24.234,23.902 +1064,33.418,234.638,465.783,344.895,608.600,239.783,472.365,51.984,28.821,51.984,327.427,333.532,344.135,25.379,22.767,25.379 +1065,33.447,234.638,465.783,344.895,608.600,239.783,472.365,51.984,28.821,51.984,327.427,333.532,344.135,25.379,22.767,25.379 +1066,33.476,229.545,467.905,350.098,604.833,236.234,475.416,48.318,33.366,48.318,324.632,333.926,344.747,24.840,20.594,24.840 +1067,33.508,218.196,466.383,354.397,601.137,232.074,479.007,42.291,37.015,42.291,307.816,334.410,345.335,23.226,19.740,23.226 +1068,33.539,162.713,429.302,358.664,597.306,227.502,484.274,40.314,40.161,40.314,176.348,333.780,346.282,17.931,19.512,17.931 +1069,33.573,205.113,474.267,362.618,592.279,224.173,488.284,36.332,43.218,36.332,298.968,334.033,346.287,18.684,19.438,18.684 +1070,33.607,210.850,483.803,366.519,586.043,221.722,490.557,31.852,46.798,31.852,321.166,333.438,346.765,23.332,19.358,23.332 +1071,33.640,208.800,489.900,370.203,579.241,218.730,494.865,26.565,50.942,26.565,324.230,333.585,346.433,25.938,19.387,25.938 +1072,33.674,206.058,497.008,373.599,571.093,214.976,500.521,21.501,55.840,21.501,327.729,332.586,346.901,25.459,20.155,25.459 +1073,33.707,202.983,504.460,376.798,561.776,211.721,506.921,15.732,60.852,15.732,329.379,330.820,347.534,25.812,22.472,25.812 +1074,33.739,200.514,513.419,378.774,551.651,208.484,514.747,9.462,65.754,9.462,331.922,328.746,348.081,25.317,24.110,25.317 +1075,33.771,198.222,523.231,379.172,540.920,205.812,523.627,2.983,70.880,2.983,332.851,326.346,348.051,23.997,24.994,23.997 +1076,33.804,197.742,535.510,378.187,529.454,204.197,535.092,176.297,76.178,176.297,335.047,323.557,347.983,19.296,25.039,19.296 +1077,33.837,197.706,546.567,375.910,517.148,203.543,545.440,169.071,81.685,169.071,337.320,320.754,349.210,19.895,24.836,19.895 +1078,33.869,199.637,557.426,373.234,504.471,205.230,555.570,161.639,87.754,161.639,339.308,317.579,351.095,19.448,25.706,19.448 +1079,33.899,202.650,568.819,367.454,491.685,207.728,566.316,153.762,93.066,153.762,341.203,315.833,352.526,19.397,24.875,19.397 +1080,33.930,207.820,580.198,359.113,479.332,211.869,577.429,145.630,98.924,145.630,344.022,313.269,353.833,19.481,21.407,19.481 +1081,33.961,211.674,593.909,351.321,468.238,218.595,587.548,137.415,104.664,137.415,338.114,312.713,356.915,19.215,22.893,19.215 +1082,33.991,215.089,611.974,339.707,458.238,226.738,597.526,128.879,111.105,128.879,321.560,312.382,358.680,19.499,21.032,19.499 +1083,34.021,202.938,664.407,327.163,448.834,236.874,605.586,119.982,116.473,119.982,225.975,310.824,361.791,19.423,19.118,19.423 +1084,34.054,245.777,620.852,313.303,441.940,248.996,612.604,111.318,121.981,111.318,347.024,311.214,364.731,19.518,21.930,19.518 +1085,34.085,262.757,625.380,299.652,437.445,264.347,618.340,102.731,128.047,102.731,354.022,310.928,368.457,24.512,19.927,24.512 +1086,34.115,262.757,625.380,299.652,437.445,264.347,618.340,102.731,128.047,102.731,354.022,310.928,368.457,24.512,19.927,24.512 +1087,34.143,273.736,626.910,285.050,435.662,273.996,620.349,92.268,133.668,92.268,356.829,310.550,369.961,26.375,19.399,26.375 +1088,34.175,288.892,627.531,270.622,436.723,288.178,621.338,83.426,139.313,83.426,358.353,310.644,370.821,26.136,18.604,26.136 +1089,34.207,307.546,624.234,256.038,439.554,306.134,618.619,75.880,145.024,75.880,360.174,310.242,371.753,24.739,18.728,24.739 +1090,34.238,321.474,618.487,242.145,444.759,319.372,613.660,66.460,150.751,66.460,360.849,310.124,371.378,22.320,18.707,22.320 +1091,34.272,334.959,610.671,229.430,451.751,332.273,606.436,57.612,156.251,57.612,361.388,309.486,371.420,23.802,18.709,23.802 +1092,34.305,346.669,600.990,218.202,460.218,343.425,597.272,48.895,162.087,48.895,361.329,308.968,371.197,25.037,18.665,25.037 +1093,34.339,355.778,589.466,208.554,469.883,352.572,586.741,40.358,168.111,40.358,362.417,308.295,370.832,25.707,18.644,25.707 +1094,34.372,363.482,577.945,200.833,479.912,359.491,575.444,32.080,173.991,32.080,360.919,307.564,370.339,25.858,19.576,25.858 +1095,34.404,369.522,566.285,195.500,491.500,364.854,564.184,24.228,0.000,24.228,358.294,307.000,368.530,25.625,19.000,25.625 +1096,34.436,373.162,556.716,191.481,501.706,366.639,554.739,16.858,5.335,16.858,352.388,306.189,366.020,21.519,21.850,21.519 +1097,34.467,440.955,556.466,189.290,512.833,365.142,542.859,10.176,9.866,10.176,202.735,306.015,356.782,20.922,20.818,20.922 +1098,34.498,380.664,534.196,188.463,523.390,364.135,533.021,4.066,14.931,4.066,318.684,306.683,351.825,23.443,21.644,23.443 +1099,34.528,371.327,524.284,189.080,533.625,364.287,524.682,176.764,20.592,176.764,336.763,306.767,350.865,20.776,22.402,20.776 +1100,34.558,370.366,514.713,189.955,545.204,365.058,515.595,170.569,27.255,170.569,344.413,307.747,355.175,20.660,22.224,20.660 +1101,34.590,369.124,505.948,192.332,555.267,365.093,507.063,164.534,33.835,164.534,350.355,309.264,358.719,20.034,21.067,20.034 +1102,34.621,365.106,497.882,195.927,564.862,361.413,499.299,159.010,41.065,159.010,348.069,310.729,355.979,19.542,21.327,19.542 +1103,34.653,360.894,490.825,199.522,574.197,357.274,492.612,153.733,48.278,153.733,347.063,312.739,355.138,19.367,21.253,19.367 +1104,34.684,360.894,490.825,199.522,574.197,357.274,492.612,153.733,48.278,153.733,347.063,312.739,355.138,19.367,21.253,19.367 +1105,34.712,356.696,484.323,203.397,583.031,352.647,486.788,148.663,55.261,148.663,345.579,316.863,355.061,19.421,20.712,19.421 +1106,34.743,351.861,478.935,206.818,590.519,347.635,482.010,143.957,62.272,143.957,344.964,319.408,355.416,19.478,20.620,19.478 +1107,34.773,346.712,474.403,210.107,596.901,342.434,478.051,139.543,69.550,139.543,344.366,321.511,355.611,19.559,20.185,19.559 +1108,34.804,341.405,470.856,213.643,602.465,337.422,474.792,135.343,76.278,135.343,344.368,323.800,355.568,19.197,19.983,19.197 +1109,34.838,336.586,467.748,217.205,607.413,332.841,471.975,131.541,82.962,131.541,344.820,325.590,356.115,19.080,19.666,19.080 +1110,34.870,332.144,464.775,220.715,611.005,328.557,469.379,127.917,89.621,127.917,344.328,326.066,356.000,18.784,19.457,18.784 +1111,34.903,327.740,462.450,224.482,614.217,324.447,467.250,124.450,96.237,124.450,343.840,328.090,355.482,19.185,19.420,19.185 +1112,34.935,323.905,460.124,228.006,616.774,320.658,465.481,121.224,102.804,121.224,342.286,328.442,354.815,19.127,19.591,19.127 +1113,34.966,320.845,456.809,231.756,618.262,317.215,463.580,118.199,109.113,118.199,338.045,328.929,353.411,18.913,20.497,18.913 +1114,34.996,348.822,387.954,235.531,620.275,313.232,462.101,115.641,115.677,115.641,187.950,327.467,352.441,18.030,20.434,18.030 +1115,35.027,320.733,435.370,239.957,621.768,310.034,460.619,112.964,122.932,112.964,296.591,327.085,351.436,18.025,20.678,18.025 +1116,35.058,313.029,443.920,243.675,622.315,307.412,459.367,109.983,129.685,109.983,316.967,326.114,349.840,19.650,20.303,19.650 +1117,35.089,307.448,447.747,247.367,622.782,304.202,458.028,107.526,136.123,107.526,326.878,324.652,348.442,19.473,19.878,19.473 +1118,35.120,303.628,448.484,251.888,623.511,301.285,457.119,105.180,142.792,105.180,329.147,324.036,347.041,19.601,21.239,19.601 +1119,35.150,303.628,448.484,251.888,623.511,301.285,457.119,105.180,142.792,105.180,329.147,324.036,347.041,19.601,21.239,19.601 +1120,35.178,300.180,448.351,256.452,624.713,298.273,456.599,103.024,149.612,103.024,329.499,323.125,346.429,19.565,23.477,19.565 +1121,35.210,297.022,448.388,260.474,624.788,295.605,455.773,100.856,155.854,100.856,330.175,322.682,345.214,19.534,23.725,19.534 +1122,35.240,293.885,448.607,264.769,625.328,292.837,455.313,98.886,161.980,98.886,331.046,321.994,344.620,19.026,24.908,19.026 +1123,35.272,291.033,448.186,268.852,626.102,290.165,455.337,96.927,169.509,96.927,329.771,322.189,344.177,18.778,26.658,18.778 +1124,35.304,288.475,448.270,272.961,626.490,287.851,455.142,95.194,175.573,95.194,330.184,322.892,343.984,18.560,26.482,18.560 +1125,35.336,285.496,448.500,276.923,627.434,285.113,455.563,93.100,1.809,93.100,329.979,322.597,344.126,18.460,27.492,18.460 +1126,35.368,282.990,448.914,280.717,627.959,282.819,455.905,91.397,8.213,91.397,330.121,324.432,344.108,18.409,28.019,18.409 +1127,35.399,280.159,449.545,284.217,628.566,280.239,456.287,89.326,14.323,89.326,331.142,326.257,344.627,18.493,28.160,18.493 +1128,35.429,278.003,450.578,287.452,629.466,278.262,457.192,87.754,20.516,87.754,331.765,327.246,345.003,18.848,27.529,18.848 +1129,35.459,275.630,450.855,290.749,629.521,276.106,457.389,85.830,26.288,85.830,332.378,329.152,345.481,19.189,26.562,19.189 +1130,35.491,273.310,451.497,294.478,630.035,274.021,458.200,83.946,31.819,83.946,332.589,329.456,346.069,19.587,25.875,19.587 +1131,35.522,270.481,452.200,297.393,630.301,271.416,458.899,82.057,37.154,82.057,333.168,330.600,346.695,19.048,25.599,19.048 +1132,35.554,268.020,453.114,300.676,630.306,269.179,459.681,79.992,42.217,79.992,333.668,331.566,347.004,19.464,24.538,19.464 +1133,35.584,268.020,453.114,300.676,630.306,269.179,459.681,79.992,42.217,79.992,333.668,331.566,347.004,19.464,24.538,19.464 +1134,35.613,266.259,452.966,304.447,629.550,267.757,460.164,78.245,46.975,78.245,331.913,332.630,346.617,20.803,22.516,20.803 +1135,35.643,263.929,453.502,307.762,628.888,265.684,460.750,76.388,51.254,76.388,331.722,333.742,346.638,21.260,21.010,21.260 +1136,35.674,260.899,453.220,310.131,628.616,263.227,461.625,74.521,54.656,74.521,329.462,334.095,346.905,20.653,20.650,20.653 +1137,35.706,258.525,453.426,312.970,627.976,261.315,462.385,72.705,57.475,72.705,328.154,334.624,346.921,20.988,20.138,20.988 +1138,35.737,256.014,453.207,315.250,627.352,259.428,463.071,70.907,59.412,70.907,326.129,335.292,347.006,21.262,19.838,21.262 +1139,35.768,252.321,453.082,317.363,626.421,256.760,464.073,68.009,60.632,68.009,322.751,335.774,346.459,20.899,19.882,20.899 +1140,35.798,248.645,450.040,319.860,625.076,255.071,464.593,66.173,61.390,66.173,314.141,336.473,345.958,20.538,19.793,20.538 +1141,35.829,243.077,443.924,323.198,623.894,253.376,465.353,64.332,61.913,64.332,298.730,335.648,346.280,20.341,19.706,20.341 +1142,35.859,232.583,430.555,325.682,623.361,251.480,466.583,62.323,61.607,62.323,265.243,335.192,346.610,20.546,19.639,20.546 +1143,35.891,208.294,394.685,328.871,621.526,247.933,468.459,61.750,61.456,61.750,178.795,334.872,346.291,17.802,19.601,17.802 +1144,35.921,203.388,397.517,331.973,619.896,245.673,469.754,59.657,61.080,59.657,178.939,335.103,346.344,17.871,19.513,17.871 +1145,35.953,218.749,433.054,335.335,617.812,243.335,471.299,57.265,60.751,57.265,255.057,335.112,345.988,17.785,19.544,17.785 +1146,35.984,218.749,433.054,335.335,617.812,243.335,471.299,57.265,60.751,57.265,255.057,335.112,345.988,17.785,19.544,17.785 +1147,36.013,223.727,448.864,338.748,615.425,240.731,472.898,54.721,60.555,54.721,287.039,335.394,345.923,17.971,19.650,17.971 +1148,36.044,225.439,458.701,342.844,612.420,238.051,474.827,51.973,60.945,51.973,304.938,335.288,345.881,18.592,19.523,18.592 +1149,36.075,225.540,465.903,346.971,609.016,235.232,476.980,48.814,61.728,48.814,316.458,334.847,345.896,19.379,19.575,19.379 +1150,36.104,225.055,468.990,351.018,604.991,233.757,477.780,45.288,63.083,45.288,321.065,334.553,345.802,24.738,19.603,24.738 +1151,36.136,222.251,473.959,355.217,600.205,230.166,480.919,41.323,65.136,41.323,324.277,334.267,345.356,25.004,19.607,25.004 +1152,36.168,218.680,478.806,359.187,594.832,226.197,484.486,37.077,67.797,37.077,326.417,333.702,345.258,25.440,19.556,25.440 +1153,36.199,214.890,484.071,363.734,588.091,222.333,488.787,32.358,71.030,32.358,327.565,332.704,345.187,25.387,20.776,25.387 +1154,36.230,211.140,489.980,368.099,580.696,218.458,493.775,27.408,74.548,27.408,329.225,331.346,345.712,25.482,22.451,25.482 +1155,36.260,207.466,497.086,371.684,572.380,214.550,499.920,21.801,78.198,21.801,330.352,329.715,345.612,25.440,23.536,25.440 +1156,36.291,203.879,504.029,374.430,563.010,211.070,506.117,16.189,81.870,16.189,330.514,328.239,345.490,25.836,24.042,25.836 +1157,36.322,201.097,512.389,376.665,552.899,207.968,513.622,10.176,85.030,10.176,332.002,325.987,345.965,25.566,25.599,25.566 +1158,36.353,198.355,521.816,377.336,542.446,205.075,522.275,3.913,88.668,3.913,333.000,323.285,346.472,24.113,25.621,24.113 +1159,36.384,198.355,521.816,377.336,542.446,205.075,522.275,3.913,88.668,3.913,333.000,323.285,346.472,24.113,25.621,24.113 +1160,36.412,197.019,533.909,377.149,530.572,203.400,533.606,177.283,92.490,177.283,334.620,321.609,347.395,19.161,25.802,19.161 +1161,36.442,197.067,544.390,376.128,518.319,203.403,543.303,170.266,96.911,170.266,336.070,319.901,348.926,19.390,25.961,19.390 +1162,36.473,199.067,555.487,373.014,505.783,204.525,553.817,162.987,100.574,162.987,338.923,317.778,350.339,19.653,25.611,19.653 +1163,36.506,201.382,567.013,368.494,493.648,207.091,564.394,155.364,104.560,155.364,339.840,315.857,352.403,19.239,25.819,19.239 +1164,36.540,205.459,578.500,360.478,480.993,210.827,575.069,147.414,108.605,147.414,340.779,314.669,353.520,19.388,21.845,19.388 +1165,36.572,206.471,594.710,352.660,469.786,217.110,585.556,139.293,113.412,139.293,328.447,313.683,356.517,19.239,22.270,19.239 +1166,36.606,209.589,613.887,342.073,459.517,225.434,595.732,131.112,117.499,131.112,310.452,313.081,358.644,20.767,20.535,20.767 +1167,36.639,192.837,669.710,330.510,450.124,234.213,603.290,121.921,121.731,121.921,205.335,311.519,361.841,19.258,19.718,19.258 +1168,36.673,242.318,619.194,316.717,443.042,245.849,611.017,113.361,125.127,113.361,346.799,311.887,364.612,19.865,22.017,19.865 +1169,36.705,256.243,624.075,303.425,438.438,258.063,616.682,103.834,129.710,103.834,352.614,311.262,367.841,22.528,20.041,22.528 +1170,36.738,269.755,626.358,288.864,435.912,270.308,619.568,94.649,133.768,94.649,355.486,311.177,369.112,26.158,19.369,26.158 +1171,36.770,285.550,627.569,274.342,436.270,285.086,621.178,85.840,137.951,85.840,357.583,310.394,370.399,25.061,18.681,25.061 +1172,36.802,300.634,625.811,259.945,438.711,299.363,620.222,77.187,142.040,77.187,360.001,310.212,371.465,26.018,18.685,26.018 +1173,36.832,317.436,620.369,245.846,443.269,315.498,615.336,68.937,146.310,68.937,360.417,310.077,371.205,21.949,18.582,21.949 +1174,36.863,331.376,613.349,232.813,449.823,328.784,608.834,60.141,150.524,60.141,360.954,310.223,371.367,23.432,18.282,23.432 +1175,36.894,343.425,604.075,221.131,457.920,340.412,600.293,51.447,154.947,51.447,361.691,309.976,371.362,24.657,18.507,24.657 +1176,36.925,353.400,593.346,210.871,467.287,349.890,590.080,42.936,159.146,42.936,361.256,309.716,370.844,25.618,18.245,25.618 +1177,36.956,361.537,582.161,202.757,477.554,357.659,579.479,34.660,163.496,34.660,361.326,309.372,370.757,25.197,18.537,25.197 +1178,36.987,366.962,569.621,196.167,487.906,363.007,567.631,26.715,168.187,26.715,360.887,309.071,369.742,25.700,19.500,25.700 +1179,37.019,372.312,558.407,191.587,498.667,366.956,556.547,19.157,172.608,19.157,357.965,308.641,369.304,25.437,21.308,25.437 +1180,37.050,372.312,558.407,191.587,498.667,366.956,556.547,19.157,172.608,19.157,357.965,308.641,369.304,25.437,21.308,25.437 +1181,37.078,370.785,546.263,188.621,509.948,365.275,545.090,12.011,176.440,12.011,348.934,308.146,360.199,25.160,21.186,25.160 +1182,37.108,375.337,538.101,187.942,519.271,363.858,537.021,5.373,178.968,5.373,330.551,308.184,353.610,20.805,20.898,20.805 +1183,37.139,431.540,526.580,186.651,529.999,362.846,527.038,179.618,2.157,179.618,215.029,307.460,352.421,20.193,21.182,20.193 +1184,37.172,382.247,517.325,187.751,539.872,363.855,519.499,173.260,5.452,173.260,317.518,308.746,354.558,20.476,20.554,20.476 +1185,37.205,375.258,509.152,189.926,548.024,365.427,511.341,167.449,9.599,167.449,338.412,308.582,358.557,20.324,23.649,20.324 +1186,37.238,370.833,501.024,192.177,557.318,362.761,503.652,161.970,14.172,161.970,340.656,309.976,357.635,19.848,21.350,19.848 +1187,37.271,364.644,494.315,195.608,566.763,359.331,496.604,156.686,19.290,156.686,344.673,310.388,356.243,19.793,22.653,19.793 +1188,37.304,359.626,488.023,199.280,573.922,355.546,490.217,151.730,25.809,151.730,345.282,312.646,354.546,19.650,22.506,19.650 +1189,37.341,355.346,482.342,202.868,583.218,350.980,485.179,146.985,31.247,146.985,344.810,313.523,355.226,19.622,24.947,19.622 +1190,37.373,350.551,477.376,207.233,590.368,346.378,480.563,142.627,37.083,142.627,343.960,314.822,354.461,19.404,25.334,19.404 +1191,37.405,346.218,472.681,211.122,596.870,341.591,476.772,138.517,43.243,138.517,342.234,316.895,354.587,19.304,25.539,19.304 +1192,37.437,341.640,469.155,217.242,600.505,338.101,472.733,134.687,49.351,134.687,341.601,318.883,351.666,19.026,21.183,19.026 +1193,37.468,337.015,466.143,221.363,605.705,333.646,470.016,131.023,55.204,131.023,341.868,321.224,352.136,18.937,21.420,18.937 +1194,37.498,332.519,463.695,225.192,610.057,329.351,467.793,127.711,60.871,127.711,342.157,323.532,352.516,18.815,21.245,18.815 +1195,37.529,328.280,461.973,229.059,614.395,325.278,466.336,124.531,66.636,124.531,342.438,326.140,353.031,19.114,21.577,19.114 +1196,37.560,324.393,459.903,231.946,618.017,321.149,465.198,121.492,72.255,121.492,341.400,328.320,353.819,19.466,20.763,19.466 +1197,37.591,320.712,458.474,234.571,619.985,317.733,463.917,118.697,78.366,118.697,341.254,328.493,353.664,19.354,19.964,19.354 +1198,37.622,317.103,457.081,237.483,622.244,314.260,462.886,116.095,84.106,116.095,340.842,329.173,353.770,19.501,19.638,19.501 +1199,37.654,313.522,456.690,240.318,623.998,311.183,462.009,113.742,89.646,113.742,341.999,330.043,353.621,19.401,18.648,19.401 +1200,37.685,313.522,456.690,240.318,623.998,311.183,462.009,113.742,89.646,113.742,341.999,330.043,353.621,19.401,18.648,19.401 +1201,37.713,310.872,454.577,243.098,624.962,308.386,460.917,111.413,95.404,111.413,339.495,330.215,353.114,19.496,19.346,19.496 +1202,37.744,308.615,452.964,245.788,625.364,306.119,460.086,109.312,100.784,109.312,336.767,330.674,351.862,18.770,20.302,18.770 +1203,37.773,327.560,382.925,248.180,626.406,303.173,459.411,107.684,106.417,107.684,191.060,329.795,351.618,18.005,20.426,18.005 +1204,37.805,311.143,421.961,251.404,626.750,300.848,458.635,105.680,112.733,105.680,274.260,329.075,350.443,18.057,20.090,18.057 +1205,37.838,303.482,438.616,253.930,626.962,298.664,458.030,103.938,118.610,103.938,309.459,328.493,349.466,18.051,20.271,18.051 +1206,37.870,299.545,443.858,256.450,626.966,296.674,457.396,101.976,124.229,101.976,320.772,327.826,348.451,19.150,19.938,19.150 +1207,37.901,296.279,446.178,259.294,626.498,294.416,456.566,100.166,129.732,100.166,325.817,326.622,346.926,19.835,20.145,19.835 +1208,37.931,293.950,447.101,262.087,626.589,292.579,456.104,98.657,135.458,98.657,328.050,325.983,346.263,19.389,20.375,19.389 +1209,37.962,291.705,447.211,265.156,626.813,290.635,455.852,97.054,141.127,97.054,328.179,325.000,345.593,19.513,21.593,19.513 +1210,37.991,289.603,447.370,268.299,626.722,288.772,455.476,95.856,146.812,95.856,328.584,324.198,344.882,18.569,22.990,18.569 +1211,38.022,287.409,447.648,271.466,627.263,286.797,455.559,94.421,152.049,94.421,328.879,323.630,344.750,18.645,24.770,18.645 +1212,38.055,285.446,448.078,274.331,627.195,285.045,455.510,93.088,157.380,93.088,329.140,323.538,344.026,18.566,25.231,18.566 +1213,38.086,283.558,448.531,277.423,627.239,283.351,455.550,91.685,163.443,91.685,329.534,323.467,343.578,18.551,26.140,18.551 +1214,38.115,283.558,448.531,277.423,627.239,283.351,455.550,91.685,163.443,91.685,329.534,323.467,343.578,18.551,26.140,18.551 +1215,38.143,281.599,448.506,280.164,627.301,281.562,455.637,90.300,168.826,90.300,329.074,323.393,343.337,18.460,26.428,18.460 +1216,38.175,279.753,448.476,283.072,627.198,279.887,455.592,88.923,174.144,88.923,329.036,323.687,343.270,18.906,27.038,18.906 +1217,38.206,278.335,448.881,285.983,627.385,278.593,456.117,87.955,179.119,87.955,328.362,324.069,342.844,18.595,27.104,18.595 +1218,38.238,276.515,449.209,288.452,627.686,276.942,456.330,86.573,4.020,86.573,329.207,324.589,343.475,18.936,27.748,18.936 +1219,38.271,274.942,450.169,291.254,628.041,275.498,456.949,85.309,9.090,85.309,330.009,326.290,343.614,19.248,27.885,19.248 +1220,38.303,273.077,451.024,293.781,627.881,273.725,457.118,83.928,13.969,83.928,331.597,327.415,343.853,19.063,27.288,19.063 +1221,38.336,271.073,451.448,296.337,628.435,271.898,457.753,82.546,18.898,82.546,332.104,328.593,344.821,18.802,27.283,18.802 +1222,38.367,269.321,452.234,298.898,628.735,270.323,458.622,81.085,23.545,81.085,332.038,329.188,344.971,19.119,26.965,19.119 +1223,38.398,267.545,452.815,301.148,628.662,268.692,459.084,79.634,27.956,79.634,332.555,331.112,345.301,19.470,26.731,19.470 +1224,38.428,266.106,453.004,304.246,628.610,267.520,459.721,78.111,32.223,78.111,331.934,330.720,345.663,20.807,26.374,20.807 +1225,38.458,264.261,453.914,306.941,628.266,265.784,460.320,76.621,36.113,76.621,332.651,331.805,345.821,20.888,25.526,20.888 +1226,38.488,261.945,454.444,309.606,627.872,263.710,461.093,75.136,39.596,75.136,332.182,332.147,345.942,20.719,23.764,20.719 +1227,38.521,259.983,455.047,312.855,627.047,261.994,461.801,73.419,42.997,73.419,331.682,332.730,345.777,20.832,22.347,20.832 +1228,38.551,259.983,455.047,312.855,627.047,261.994,461.801,73.419,42.997,73.419,331.682,332.730,345.777,20.832,22.347,20.832 +1229,38.580,257.912,455.170,315.309,626.207,260.267,462.393,71.944,45.556,71.944,330.419,333.121,345.614,21.407,21.350,21.407 +1230,38.611,255.829,455.274,317.704,625.814,258.630,463.130,70.376,47.654,70.376,329.470,333.640,346.150,21.699,21.069,21.699 +1231,38.643,253.732,455.384,319.833,624.841,256.974,463.703,68.707,48.999,68.707,328.071,334.061,345.929,21.697,21.020,21.697 +1232,38.674,251.614,455.718,322.988,623.736,255.301,464.450,67.109,49.650,67.109,327.187,334.301,346.142,21.987,20.894,21.987 +1233,38.705,249.773,456.557,324.870,622.979,253.691,465.193,65.601,49.543,65.601,327.228,334.297,346.195,22.335,20.293,22.335 +1234,38.736,247.985,457.479,327.486,621.685,252.089,465.931,64.100,48.491,64.100,327.292,334.513,346.085,22.666,19.920,22.666 +1235,38.768,246.229,458.641,329.571,620.464,250.485,466.829,62.536,46.837,62.536,327.133,334.127,345.589,22.995,19.987,22.995 +1236,38.798,244.546,459.583,331.990,619.000,248.925,467.485,61.007,44.454,61.007,327.510,333.833,345.578,23.076,20.000,23.076 +1237,38.828,242.407,460.143,334.947,617.204,247.239,468.357,59.534,41.186,59.534,326.470,333.956,345.531,23.678,20.884,23.678 +1238,38.858,241.126,461.995,337.339,615.233,245.627,469.143,57.804,37.155,57.804,328.088,333.620,344.983,23.475,21.195,23.475 +1239,38.889,238.973,462.683,338.944,613.374,243.751,469.829,56.237,32.471,56.237,327.287,333.783,344.478,23.916,21.092,23.916 +1240,38.921,237.291,464.436,341.031,611.439,241.858,470.834,54.486,26.934,54.486,328.394,333.225,344.117,24.272,22.454,24.272 +1241,38.951,237.291,464.436,341.031,611.439,241.858,470.834,54.486,26.934,54.486,328.394,333.225,344.117,24.272,22.454,24.272 +1242,38.980,235.776,466.289,343.605,608.850,240.021,471.849,52.633,20.854,52.633,329.511,332.544,343.501,24.262,23.852,24.262 +1243,39.010,233.220,467.229,345.806,606.393,237.955,473.018,50.724,13.496,50.724,328.085,331.973,343.044,24.610,25.360,24.610 +1244,39.041,230.772,468.642,348.389,603.480,235.792,474.331,48.576,6.474,48.576,327.503,330.214,342.676,24.656,25.193,24.656 +1245,39.072,228.138,470.303,350.990,600.856,233.768,476.189,46.273,179.132,46.273,325.943,328.129,342.233,24.790,26.345,24.790 +1246,39.104,225.270,472.218,353.386,598.171,231.233,477.936,43.798,171.787,43.798,326.246,327.391,342.769,25.075,26.141,25.075 +1247,39.135,222.566,474.777,355.796,594.527,228.627,480.058,41.067,163.918,41.067,326.077,326.773,342.156,25.321,26.298,25.321 +1248,39.165,219.607,477.725,358.278,590.876,225.783,482.561,38.062,156.038,38.062,326.504,326.332,342.194,25.292,26.805,25.292 +1249,39.196,216.499,481.064,360.815,586.709,222.916,485.529,34.824,147.529,34.824,326.328,325.653,341.963,25.448,26.767,25.448 +1250,39.226,213.581,484.898,363.406,581.891,220.019,488.809,31.276,139.304,31.276,326.680,325.292,341.747,25.817,26.536,25.817 +1251,39.256,210.551,489.484,366.277,576.808,217.199,492.949,27.525,130.732,27.525,326.920,324.514,341.915,25.480,26.732,25.480 +1252,39.287,207.526,494.940,368.464,571.837,214.089,497.752,23.199,122.619,23.199,327.872,325.487,342.153,25.473,26.548,25.473 +1253,39.317,207.526,494.940,368.464,571.837,214.089,497.752,23.199,122.619,23.199,327.872,325.487,342.153,25.473,26.548,25.473 +1254,39.346,204.768,500.287,371.366,564.991,211.527,502.595,18.853,114.193,18.853,328.568,324.600,342.853,25.944,26.334,25.944 +1255,39.377,202.147,506.912,373.796,557.943,208.868,508.592,14.036,105.642,14.036,330.091,324.480,343.946,25.466,25.692,25.466 +1256,39.408,199.979,513.981,375.927,550.111,206.834,515.069,9.019,96.843,9.019,331.109,324.472,344.990,25.271,25.457,25.271 +1257,39.438,198.307,522.192,377.559,541.472,205.106,522.627,3.656,88.472,3.656,332.982,323.392,346.608,23.926,25.218,23.926 +1258,39.470,197.797,530.295,378.485,531.914,204.444,530.059,177.962,79.992,177.962,334.429,323.936,347.731,24.298,25.083,24.298 +1259,39.508,197.650,542.050,377.813,521.892,203.866,541.162,171.870,70.891,171.870,337.290,323.512,349.848,19.233,25.073,19.233 +1260,39.551,198.857,551.951,376.349,510.835,205.004,550.347,165.379,62.765,165.379,338.834,322.913,351.540,19.773,25.249,19.773 +1261,39.584,200.933,561.553,373.799,499.641,206.881,559.222,158.600,55.008,158.600,341.522,322.122,354.299,19.426,24.495,19.426 +1262,39.616,204.511,571.740,369.167,488.376,210.188,568.676,151.645,46.931,151.645,343.181,320.590,356.084,19.221,24.155,19.221 +1263,39.654,216.232,591.216,354.355,466.432,220.598,587.101,136.699,30.651,136.699,348.205,319.678,360.203,19.284,23.005,19.284 +1264,39.686,224.020,600.801,345.276,456.537,228.171,595.675,129.000,22.595,129.000,350.464,317.385,363.655,19.294,23.970,19.294 +1265,39.716,224.020,600.801,345.276,456.537,228.171,595.675,129.000,22.595,129.000,350.464,317.385,363.655,19.294,23.970,19.294 +1266,39.744,233.809,608.985,333.728,449.636,236.853,603.911,120.964,14.791,120.964,352.430,315.572,364.264,19.551,20.989,19.551 +1267,39.775,244.742,616.183,320.933,444.042,246.881,611.067,112.694,7.007,112.694,354.237,314.427,365.327,20.163,19.097,20.163 +1268,39.806,256.703,622.180,307.007,439.655,258.022,616.838,103.874,179.367,103.874,356.516,312.113,367.520,22.306,17.960,22.306 +1269,39.838,268.870,625.299,292.704,436.916,269.383,619.866,95.399,171.815,95.399,357.753,312.544,368.666,25.360,18.067,25.360 +1270,39.871,286.866,626.504,278.255,436.413,286.695,620.794,88.290,164.381,88.290,357.677,311.807,369.102,24.318,18.060,24.318 +1271,39.902,297.935,625.917,263.818,438.070,296.923,620.628,79.168,157.006,79.168,360.284,310.821,371.053,25.725,18.676,25.725 +1272,39.934,313.200,622.099,249.799,441.656,311.484,616.965,71.512,149.689,71.512,360.820,310.096,371.645,21.513,18.939,21.513 +1273,39.965,326.987,616.237,237.136,447.872,324.557,611.430,63.182,142.531,63.182,360.043,309.983,370.815,22.644,18.221,22.644 +1274,39.996,338.922,608.456,225.391,454.896,335.862,604.082,55.024,135.370,55.024,360.461,309.068,371.136,24.187,18.923,24.187 +1275,40.026,349.362,599.382,215.480,463.965,345.869,595.617,47.153,128.395,47.153,360.115,310.156,370.386,24.896,18.307,24.896 +1276,40.057,357.871,589.301,206.858,473.718,353.904,586.033,39.481,121.363,39.481,359.538,310.074,369.817,25.575,18.314,25.575 +1277,40.087,364.512,578.276,200.075,484.034,360.410,575.716,31.964,114.444,31.964,359.448,310.518,369.119,25.716,18.207,25.716 +1278,40.117,369.258,567.199,194.803,494.753,364.852,565.161,24.822,107.479,24.822,358.081,310.814,367.792,25.552,18.610,25.552 +1279,40.148,369.258,567.199,194.803,494.753,364.852,565.161,24.822,107.479,24.822,358.081,310.814,367.792,25.552,18.610,25.552 +1280,40.177,372.544,556.164,191.640,505.713,368.268,554.775,17.987,100.603,17.987,357.302,311.016,366.293,26.088,19.988,26.088 +1281,40.209,370.662,544.816,190.248,516.176,366.574,543.986,11.479,93.657,11.479,348.324,311.091,356.667,25.935,21.648,25.935 +1282,40.239,369.273,535.206,188.714,525.815,364.753,534.785,5.323,86.703,5.323,343.147,310.810,352.225,25.344,20.821,25.344 +1283,40.272,368.495,526.408,188.713,535.510,363.849,526.451,179.474,79.768,179.474,341.132,311.983,350.424,24.311,20.918,24.311 +1284,40.303,369.083,520.290,188.891,544.227,364.071,520.815,174.015,72.091,174.015,343.256,312.217,353.334,20.420,22.779,20.420 +1285,40.336,370.020,512.622,190.981,551.925,365.402,513.539,168.776,65.651,168.776,347.699,312.184,357.115,20.236,21.107,20.236 +1286,40.367,368.544,505.151,193.346,559.289,364.306,506.372,163.934,58.635,163.934,349.037,313.051,357.856,19.888,20.904,19.888 +1287,40.398,365.512,498.724,195.505,565.703,361.514,500.209,159.624,51.582,159.624,348.320,312.805,356.849,19.713,21.479,19.713 +1288,40.428,362.475,493.130,197.799,571.167,358.590,494.908,155.410,44.648,155.410,347.340,312.579,355.884,19.404,21.968,19.404 +1289,40.459,358.995,488.192,200.509,576.007,355.552,490.053,151.607,37.003,151.607,346.699,313.205,354.529,19.544,21.690,19.544 +1290,40.489,356.348,483.473,202.793,579.848,352.623,485.788,148.134,29.638,148.134,345.039,313.798,353.811,19.442,22.598,19.442 +1291,40.523,353.142,479.836,204.642,585.153,349.060,482.705,144.899,22.319,144.899,344.149,314.060,354.127,19.238,24.120,19.238 +1292,40.556,350.577,476.159,207.132,587.672,346.477,479.362,142.001,15.186,142.001,342.569,314.423,352.975,19.233,24.361,19.233 +1293,40.587,348.116,472.881,209.340,590.375,343.676,476.695,139.338,7.379,139.338,340.248,314.810,351.953,19.674,23.987,19.674 +1294,40.618,348.116,472.881,209.340,590.375,343.676,476.695,139.338,7.379,139.338,340.248,314.810,351.953,19.674,23.987,19.674 +1295,40.646,346.181,469.728,210.977,593.019,341.059,474.515,136.937,179.125,136.937,337.886,314.223,351.906,19.556,21.746,19.556 +1296,40.677,343.750,467.750,212.248,595.387,338.465,473.035,135.000,171.132,135.000,336.583,316.658,351.530,19.092,21.331,19.092 +1297,40.709,343.048,464.803,213.532,598.107,336.327,471.959,133.210,163.250,133.210,332.399,317.811,352.034,19.414,20.295,19.414 +1298,40.739,343.035,461.074,214.623,600.528,334.284,470.954,131.532,155.136,131.532,326.278,319.174,352.675,19.570,19.806,19.570 +1299,40.771,343.210,456.705,215.979,602.968,332.124,469.861,130.119,147.529,130.119,318.849,320.591,353.257,18.885,19.864,18.885 +1300,40.803,346.843,448.691,216.932,605.008,330.211,468.975,129.352,139.635,129.352,301.574,322.034,354.036,18.172,19.658,18.172 +1301,40.833,378.886,405.618,218.062,607.055,328.961,468.681,128.367,131.634,128.367,193.790,323.379,354.655,18.098,20.097,18.098 +1302,40.864,336.811,457.812,218.905,608.411,328.439,468.815,127.270,122.961,127.270,327.189,325.358,354.840,18.812,20.347,18.812 +1303,40.895,331.989,462.623,219.455,609.494,327.645,468.433,126.782,115.837,126.782,341.010,326.932,355.519,18.966,20.294,18.966 +1304,40.925,331.220,462.803,220.596,611.031,326.970,468.515,126.652,107.622,126.652,341.435,326.725,355.674,18.711,19.813,18.711 +1305,40.956,330.091,464.219,221.116,611.844,326.834,468.626,126.477,100.008,126.477,345.060,327.527,356.021,19.058,19.174,19.058 +1306,40.987,330.484,464.002,221.912,612.015,327.073,468.594,126.607,92.134,126.607,344.239,326.556,355.680,19.128,19.167,19.128 +1307,41.019,330.484,464.002,221.912,612.015,327.073,468.594,126.607,92.134,126.607,344.239,326.556,355.680,19.128,19.167,19.128 +1308,41.048,331.294,463.840,222.383,611.962,327.702,468.613,126.961,84.330,126.961,343.789,326.367,355.736,19.233,19.472,19.233 +1309,41.078,332.659,464.190,222.582,611.360,328.930,469.014,127.708,76.446,127.708,343.128,325.983,355.323,19.200,19.868,19.200 +1310,41.108,333.273,464.550,223.095,610.367,329.765,468.981,128.367,67.932,128.367,342.824,325.711,354.128,18.817,20.689,18.817 +1311,41.139,334.876,464.762,222.514,608.073,331.442,468.960,129.289,60.422,129.289,342.441,323.359,353.288,19.208,21.554,19.208 +1312,41.172,336.522,465.592,221.436,606.008,333.126,469.572,130.482,52.370,130.482,342.106,321.374,352.570,19.273,22.179,19.273 +1313,41.205,338.553,466.548,218.414,604.545,334.461,471.102,131.939,44.170,131.939,341.396,319.661,353.642,19.091,25.166,19.091 +1314,41.236,340.756,467.744,216.505,601.424,336.615,472.080,133.683,35.929,133.683,340.995,318.197,352.987,18.843,25.771,18.843 +1315,41.268,343.050,469.586,213.683,598.202,338.907,473.658,135.501,27.759,135.501,341.600,317.267,353.219,19.196,25.523,19.196 +1316,41.299,345.556,471.662,210.986,594.138,341.436,475.406,137.741,19.654,137.741,341.653,316.358,352.786,19.175,24.754,19.175 +1317,41.329,348.611,473.832,208.258,589.749,344.274,477.450,140.166,11.650,140.166,341.471,314.983,352.766,19.039,24.626,19.039 +1318,41.360,353.255,475.616,204.797,584.784,347.262,480.182,142.696,3.601,142.696,338.362,314.078,353.430,19.318,21.622,19.318 +1319,41.390,358.136,477.614,201.400,581.013,349.671,483.421,145.550,176.169,145.550,334.414,313.971,354.946,19.436,20.588,19.436 +1320,41.421,366.564,478.378,197.845,576.643,352.086,487.225,148.570,169.741,148.570,322.541,314.296,356.476,20.005,22.094,20.005 +1321,41.451,376.343,479.493,194.870,573.048,354.283,491.131,152.187,163.987,152.187,308.553,314.833,358.436,18.444,20.513,18.444 +1322,41.481,376.343,479.493,194.870,573.048,354.283,491.131,152.187,163.987,152.187,308.553,314.833,358.436,18.444,20.513,18.444 +1323,41.510,426.063,463.920,192.121,567.953,356.789,495.571,155.445,158.749,155.445,207.387,315.173,359.711,18.442,19.572,18.442 +1324,41.542,369.130,496.735,190.025,561.550,359.530,500.424,158.984,153.958,158.984,339.735,317.069,360.303,18.712,20.532,18.712 +1325,41.573,366.923,504.115,187.390,556.399,361.485,505.780,162.979,149.628,162.979,351.199,315.420,362.573,19.651,22.632,19.651 +1326,41.605,368.043,511.193,185.375,549.520,363.183,512.267,167.544,144.211,167.544,353.362,315.529,363.316,19.800,23.203,19.800 +1327,41.637,367.078,518.593,184.505,542.383,362.285,519.226,172.476,138.294,172.476,348.895,315.824,358.564,19.903,21.955,19.903 +1328,41.669,366.966,525.085,184.302,534.224,361.702,525.212,178.620,132.059,178.620,344.599,314.921,355.131,24.065,21.314,24.065 +1329,41.700,367.590,532.704,184.958,525.333,362.502,532.363,3.835,125.977,3.835,345.036,314.674,355.233,24.816,22.515,24.816 +1330,41.730,369.626,542.152,187.948,516.193,364.911,541.332,9.866,119.055,9.866,347.737,313.337,357.307,25.530,20.494,25.530 +1331,41.760,371.643,553.542,190.710,505.922,367.141,552.214,16.440,112.639,16.440,355.250,311.615,364.638,24.670,19.815,24.670 +1332,41.790,370.058,564.547,194.667,495.340,365.636,562.647,23.250,106.249,23.250,357.683,309.880,367.307,25.216,18.453,25.216 +1333,41.821,366.319,576.075,200.416,484.986,361.888,573.457,30.579,99.819,30.579,357.754,308.244,368.047,25.476,18.400,25.476 +1334,41.851,366.319,576.075,200.416,484.986,361.888,573.457,30.579,99.819,30.579,357.754,308.244,368.047,25.476,18.400,25.476 +1335,41.880,359.618,587.852,207.585,474.976,355.621,584.682,38.418,93.340,38.418,358.112,306.296,368.314,25.153,18.179,25.153 +1336,41.911,351.837,598.217,215.776,465.838,348.074,594.341,45.847,87.173,45.847,357.903,304.469,368.708,24.373,18.138,24.373 +1337,41.943,342.059,608.957,225.628,457.479,338.196,603.644,53.973,80.640,53.973,355.697,303.964,368.836,23.968,19.148,23.968 +1338,41.975,330.511,618.056,237.479,450.768,327.113,611.655,62.038,73.551,62.038,353.772,304.008,368.266,22.376,19.830,22.376 +1339,42.008,334.693,673.657,249.064,444.343,314.241,617.414,70.017,67.209,70.017,250.156,302.686,369.849,21.188,17.935,21.188 +1340,42.041,304.305,628.559,263.169,440.546,302.755,620.642,78.919,60.255,78.919,352.558,303.017,368.693,26.476,19.349,26.476 +1341,42.072,285.583,627.350,276.943,438.218,285.220,622.307,85.885,53.881,85.885,358.304,303.926,368.417,24.792,20.959,24.792 +1342,42.103,270.944,625.532,291.219,437.447,271.311,620.483,94.163,46.507,94.163,357.873,305.085,367.998,25.587,24.071,25.587 +1343,42.134,259.893,622.675,305.022,438.776,261.061,617.667,103.134,39.867,103.134,358.114,307.552,368.400,23.080,24.460,23.080 +1344,42.165,246.902,617.067,318.388,442.403,249.007,611.827,111.879,33.486,111.879,354.858,310.063,366.152,19.831,23.545,19.831 +1345,42.195,235.500,610.500,330.658,447.219,238.660,605.012,119.932,26.917,119.932,352.637,312.660,365.302,19.643,23.910,19.643 +1346,42.226,225.739,602.186,341.436,455.365,229.284,597.622,127.836,20.368,127.836,350.732,315.189,362.289,19.506,20.658,19.506 +1347,42.256,217.613,593.121,351.406,462.906,222.015,588.776,135.382,13.878,135.382,348.648,317.958,361.018,19.247,20.570,19.247 +1348,42.288,210.431,584.092,359.794,471.230,216.131,579.764,142.786,7.392,142.786,345.790,319.383,360.104,19.466,20.654,19.466 +1349,42.319,210.431,584.092,359.794,471.230,216.131,579.764,142.786,7.392,142.786,345.790,319.383,360.104,19.466,20.654,19.466 +1350,42.347,205.149,574.677,366.517,480.123,211.815,570.799,149.808,1.081,149.808,343.209,321.169,358.633,19.519,20.562,19.519 +1351,42.379,199.785,565.867,371.316,489.505,208.506,562.049,156.358,174.723,156.358,337.431,322.675,356.472,19.807,22.027,19.807 +1352,42.411,194.394,557.513,374.363,498.525,206.325,553.872,163.028,169.611,163.028,328.801,324.328,353.750,18.390,21.295,18.390 +1353,42.441,135.077,559.885,376.843,508.327,204.970,545.906,168.690,164.499,168.690,209.256,323.902,351.810,18.239,19.562,18.239 +1354,42.472,183.275,540.524,378.019,517.901,204.430,538.220,173.784,159.334,173.784,306.977,324.319,349.538,19.902,21.036,19.902 +1355,42.505,191.515,530.952,378.200,527.400,204.580,530.814,179.394,153.435,179.394,321.162,323.783,347.293,18.306,23.255,18.306 +1356,42.536,195.912,521.353,378.061,537.091,205.632,521.987,3.731,145.875,3.731,326.610,323.957,346.093,24.795,25.368,24.795 +1357,42.567,198.827,514.682,376.624,545.640,206.605,515.820,8.326,138.424,8.326,329.370,323.301,345.091,25.485,26.110,25.485 +1358,42.597,201.029,508.870,374.682,553.871,208.126,510.483,12.804,130.601,12.804,329.506,324.094,344.061,25.088,26.466,25.088 +1359,42.628,203.630,502.578,372.253,561.662,210.409,504.664,17.103,122.735,17.103,328.714,325.416,342.899,25.880,26.617,25.880 +1360,42.658,206.522,496.427,370.199,568.257,213.118,499.047,21.661,114.963,21.661,328.876,325.322,343.071,25.627,26.244,25.627 +1361,42.691,209.218,492.181,367.974,574.450,215.791,495.283,25.263,106.991,25.263,328.292,326.886,342.828,25.972,25.662,25.972 +1362,42.722,212.121,488.655,365.711,580.034,218.300,491.998,28.413,99.284,28.413,329.036,327.984,343.087,25.867,24.568,25.867 +1363,42.754,214.754,485.809,363.025,585.013,220.483,489.283,31.235,91.432,31.235,329.641,328.322,343.041,25.370,22.193,25.370 +1364,42.784,214.754,485.809,363.025,585.013,220.483,489.283,31.235,91.432,31.235,329.641,328.322,343.041,25.370,22.193,25.370 +1365,42.811,216.923,483.115,361.818,588.965,222.967,487.145,33.690,83.784,33.690,329.492,330.944,344.021,25.239,22.442,25.239 +1366,42.843,217.906,479.928,360.134,592.713,225.172,485.200,35.967,76.185,35.967,326.800,332.282,344.754,25.119,21.443,25.119 +1367,42.874,219.238,477.066,359.212,595.332,227.337,483.383,37.954,68.676,37.954,325.131,333.505,345.672,25.642,21.794,25.642 +1368,42.906,220.614,475.436,357.608,597.665,228.747,482.180,39.668,61.113,39.668,324.688,334.108,345.819,25.120,19.806,25.120 +1369,42.939,217.543,473.965,357.213,598.975,228.374,483.475,41.285,53.664,41.285,317.218,334.606,346.045,18.768,20.478,18.768 +1370,42.971,196.412,452.811,355.893,600.123,228.921,482.493,42.397,46.146,42.397,258.117,333.999,346.160,17.788,19.442,17.788 +1371,43.004,210.961,462.110,355.244,600.316,231.068,479.892,41.489,38.991,41.489,291.907,334.696,345.592,22.663,19.357,22.663 +1372,43.035,223.086,469.890,354.980,600.224,232.270,478.721,43.877,31.724,43.877,319.856,333.913,345.337,24.952,19.486,24.952 +1373,43.066,225.641,470.852,354.041,600.076,232.697,477.833,44.698,24.798,44.698,324.621,333.711,344.472,24.961,21.546,24.961 +1374,43.096,227.250,471.750,353.434,599.364,232.700,477.200,45.000,16.887,45.000,328.098,332.875,343.511,24.749,23.102,24.749 +1375,43.125,227.000,471.000,353.458,599.245,232.926,476.926,45.000,9.700,45.000,326.683,331.137,343.444,25.456,25.300,25.456 +1376,43.156,226.372,471.622,353.333,598.563,232.120,477.294,44.618,2.684,44.618,326.761,329.576,342.911,24.819,24.973,24.819 +1377,43.189,226.070,471.897,353.457,598.359,231.829,477.483,44.132,176.121,44.132,326.882,328.280,342.928,25.721,25.704,25.721 +1378,43.220,224.889,472.559,353.760,597.376,230.776,478.125,43.394,169.315,43.394,326.383,327.783,342.585,24.957,26.013,24.957 +1379,43.251,224.889,472.559,353.760,597.376,230.776,478.125,43.394,169.315,43.394,326.383,327.783,342.585,24.957,26.013,24.957 +1380,43.279,223.646,473.292,354.120,595.874,229.563,478.696,42.405,162.277,42.405,325.960,327.329,341.986,25.075,26.072,25.075 +1381,43.311,222.633,474.703,354.952,594.735,228.503,479.830,41.139,155.158,41.139,326.063,326.587,341.651,25.312,26.501,25.312 +1382,43.342,221.001,476.082,356.015,593.025,227.070,481.102,39.598,148.173,39.598,325.640,326.262,341.393,25.169,26.661,25.169 +1383,43.374,219.425,477.953,357.390,590.988,225.360,482.560,37.821,141.340,37.821,326.535,326.091,341.563,25.217,26.706,25.217 +1384,43.406,217.505,480.104,359.000,588.500,223.577,484.476,35.754,135.000,35.754,326.399,325.976,341.364,25.287,26.163,25.287 +1385,43.437,215.293,482.538,360.766,585.816,221.523,486.646,33.397,128.089,33.397,326.752,326.096,341.676,25.268,26.207,25.268 +1386,43.469,213.279,485.353,362.961,582.976,219.808,489.244,30.793,121.264,30.793,326.714,326.529,341.914,25.901,26.163,25.901 +1387,43.499,210.903,489.023,365.002,579.396,217.485,492.512,27.924,114.944,27.924,327.161,327.558,342.059,25.473,25.515,25.473 +1388,43.530,208.722,493.008,367.950,574.650,215.359,496.066,24.737,108.435,24.737,328.330,326.347,342.946,25.564,25.614,25.564 +1389,43.561,206.360,497.804,370.276,569.376,212.885,500.290,20.854,101.944,20.854,329.385,326.524,343.349,25.988,24.854,25.988 +1390,43.595,203.913,503.186,373.061,563.660,210.860,505.291,16.858,95.856,16.858,329.796,326.671,344.314,26.159,25.405,26.159 +1391,43.626,202.156,508.902,375.613,557.474,209.004,510.454,12.771,89.297,12.771,331.719,325.184,345.763,25.617,24.906,25.617 +1392,43.657,200.130,514.813,377.328,550.092,207.221,515.856,8.366,83.019,8.366,332.221,326.196,346.555,25.491,24.653,25.491 +1393,43.688,198.842,521.669,378.471,541.882,205.610,522.103,3.668,75.964,3.668,333.981,325.968,347.545,24.846,25.709,24.846 +1394,43.719,197.866,532.090,379.327,533.013,204.997,531.895,178.434,69.842,178.434,334.203,325.603,348.470,18.821,25.560,18.821 +1395,43.749,197.866,532.090,379.327,533.013,204.997,531.895,178.434,69.842,178.434,334.203,325.603,348.470,18.821,25.560,18.821 +1396,43.777,197.616,540.374,379.149,523.422,204.499,539.528,172.995,63.646,172.995,336.751,324.688,350.621,19.354,25.131,19.354 +1397,43.808,198.299,549.453,377.511,513.493,204.879,547.939,167.042,57.331,167.042,338.414,324.275,351.919,19.715,25.145,19.715 +1398,43.840,199.936,558.426,375.542,502.967,206.451,556.171,160.907,51.621,160.907,340.595,323.583,354.384,19.445,24.069,19.445 +1399,43.873,202.732,567.941,371.654,492.336,208.996,564.936,154.376,45.343,154.376,342.219,322.460,356.114,19.188,23.575,19.188 +1400,43.907,207.309,577.345,365.732,481.585,212.579,573.988,147.505,38.660,147.505,345.134,321.406,357.631,19.093,24.363,19.093 +1401,43.940,212.558,587.136,358.739,471.627,217.518,583.061,140.593,32.661,140.593,346.871,320.367,359.711,19.245,22.364,19.245 +1402,43.973,219.398,596.031,349.905,462.731,223.525,591.624,133.118,26.281,133.118,348.857,318.857,360.933,18.819,20.722,18.819 +1403,44.006,228.006,604.366,340.357,453.773,231.494,599.473,125.482,19.929,125.482,351.647,316.967,363.665,19.242,21.617,19.242 +1404,44.038,238.074,612.304,328.985,446.958,240.927,606.915,117.897,13.364,117.897,352.943,315.329,365.139,19.547,21.071,19.547 +1405,44.070,249.002,618.501,316.168,441.698,251.005,612.959,109.875,7.374,109.875,354.642,314.297,366.427,19.886,20.313,19.886 +1406,44.100,263.442,624.204,302.989,438.515,264.616,618.784,102.218,0.424,102.218,357.521,312.051,368.613,24.091,17.666,24.091 +1407,44.130,273.165,626.457,289.018,436.669,273.454,620.781,92.917,173.848,92.917,357.962,312.180,369.331,25.527,18.087,25.527 +1408,44.160,290.532,626.528,275.016,436.769,290.169,621.106,86.163,167.196,86.163,359.004,311.200,369.874,24.415,17.907,24.415 +1409,44.191,301.381,625.411,260.303,438.855,300.184,620.269,76.899,160.484,76.899,360.904,310.635,371.464,25.483,18.016,25.483 +1410,44.222,317.427,620.178,246.341,443.191,315.570,615.363,68.910,153.693,68.910,360.778,309.944,371.100,21.927,18.251,21.927 +1411,44.253,330.734,613.673,233.431,449.654,328.208,609.201,60.537,146.642,60.537,360.790,310.114,371.062,23.407,17.951,23.407 +1412,44.284,330.734,613.673,233.431,449.654,328.208,609.201,60.537,146.642,60.537,360.790,310.114,371.062,23.407,17.951,23.407 +1413,44.312,342.439,605.113,222.016,457.702,339.499,601.311,52.280,139.808,52.280,361.332,310.230,370.945,24.497,17.951,24.497 +1414,44.343,352.453,595.469,211.560,466.592,348.693,591.806,44.253,132.833,44.253,360.704,310.186,371.203,25.285,19.120,25.285 +1415,44.375,360.620,584.580,203.556,477.399,356.630,581.644,36.345,125.682,36.345,360.244,310.849,370.151,25.588,18.142,25.588 +1416,44.405,366.847,573.300,197.220,488.347,362.316,570.819,28.703,118.690,28.703,358.503,311.014,368.835,25.744,18.081,25.744 +1417,44.436,370.774,561.724,192.753,499.902,366.413,560.007,21.487,111.578,21.487,357.841,311.602,367.213,26.314,19.213,26.314 +1418,44.466,371.286,550.201,190.383,511.113,367.142,549.125,14.564,104.432,14.564,352.712,312.380,361.276,25.749,20.836,25.749 +1419,44.497,369.584,539.727,188.149,522.019,364.890,539.073,7.936,97.151,7.936,345.328,312.568,354.806,24.749,20.276,24.749 +1420,44.527,368.734,529.768,188.000,532.000,363.799,529.619,1.730,90.000,1.730,341.418,312.000,351.293,24.708,20.000,24.708 +1421,44.557,368.604,522.899,188.496,541.617,363.819,523.256,175.737,82.716,175.737,342.807,312.950,352.405,20.502,20.622,20.502 +1422,44.588,369.388,514.696,190.442,550.480,365.026,515.466,169.992,75.489,169.992,347.165,313.129,356.024,20.391,21.526,20.391 +1423,44.618,369.388,514.696,190.442,550.480,365.026,515.466,169.992,75.489,169.992,347.165,313.129,356.024,20.391,21.526,20.391 +1424,44.647,369.276,506.335,192.328,558.569,364.786,507.554,164.802,68.199,164.802,350.297,313.639,359.602,20.098,20.984,20.098 +1425,44.678,365.837,499.181,194.960,565.909,361.499,500.762,159.980,60.905,159.980,348.322,314.112,357.557,19.811,20.602,19.811 +1426,44.709,362.638,492.985,198.102,572.763,358.387,494.932,155.393,53.777,155.393,346.923,314.445,356.274,19.475,21.466,19.475 +1427,44.739,358.833,487.408,200.841,577.844,354.944,489.561,151.029,46.629,151.029,346.270,313.544,355.161,19.934,21.429,19.934 +1428,44.771,355.357,482.651,204.261,582.909,351.677,485.027,147.160,39.319,147.160,345.117,314.086,353.877,19.676,22.015,19.676 +1429,44.802,351.281,478.409,206.067,588.556,347.332,481.328,143.523,32.661,143.523,344.851,314.841,354.674,19.123,25.559,19.123 +1430,44.833,348.043,474.343,209.227,591.970,343.988,477.739,140.056,25.408,140.056,342.740,315.357,353.318,19.684,24.998,19.684 +1431,44.864,344.577,471.121,212.019,595.442,340.658,474.768,137.062,18.232,137.062,342.049,315.913,352.758,19.034,25.052,19.034 +1432,44.894,341.724,468.125,215.471,598.101,337.845,472.126,134.107,11.113,134.107,340.110,315.139,351.256,19.390,25.425,19.390 +1433,44.925,338.754,465.369,218.082,600.993,334.675,469.996,131.399,4.635,131.399,338.396,315.721,350.733,19.424,23.571,19.424 +1434,44.956,336.265,462.620,220.486,603.122,331.916,467.986,129.019,177.859,129.019,336.479,315.639,350.293,19.383,23.255,19.383 +1435,44.986,333.541,460.652,222.431,605.681,329.018,466.690,126.832,171.529,126.832,335.198,317.498,350.286,19.361,22.770,19.361 +1436,45.017,333.541,460.652,222.431,605.681,329.018,466.690,126.832,171.529,126.832,335.198,317.498,350.286,19.361,22.770,19.361 +1437,45.046,331.170,458.703,224.479,607.483,326.642,465.217,124.804,165.510,124.804,334.392,318.405,350.256,19.306,21.996,19.306 +1438,45.076,329.029,456.789,226.327,609.311,324.237,464.176,122.969,159.806,122.969,332.478,319.434,350.088,19.183,21.521,19.183 +1439,45.112,326.649,455.206,228.259,611.387,321.811,463.210,121.151,154.269,121.151,331.704,320.353,350.410,19.261,20.763,19.261 +1440,45.155,322.879,452.050,232.036,614.793,317.616,462.005,117.862,145.939,117.862,327.621,322.054,350.142,19.477,19.813,19.477 +1441,45.188,321.300,450.900,234.180,616.237,315.971,461.559,116.565,142.729,116.565,326.019,322.865,349.852,19.230,20.105,19.230 +1442,45.221,319.606,448.927,236.341,617.903,313.932,461.013,115.145,139.764,115.145,323.280,323.030,349.983,19.287,20.142,19.287 +1443,45.257,316.984,448.009,238.409,618.955,311.730,460.138,113.422,138.066,113.422,323.315,323.706,349.751,19.571,19.947,19.571 +1444,45.289,315.005,447.839,240.269,620.056,310.212,459.580,112.203,136.828,112.203,324.651,324.141,350.015,19.197,19.608,19.197 +1445,45.319,315.005,447.839,240.269,620.056,310.212,459.580,112.203,136.828,112.203,324.651,324.141,350.015,19.197,19.608,19.197 +1446,45.347,312.982,447.443,242.496,621.019,308.481,459.288,110.807,136.312,110.807,323.902,324.623,349.245,19.724,19.405,19.724 +1447,45.379,310.658,447.468,244.737,621.634,306.714,458.645,109.440,136.621,109.440,324.943,324.205,348.649,19.747,19.711,19.747 +1448,45.409,308.009,447.973,247.144,622.655,304.702,458.193,107.928,137.141,107.928,326.905,324.785,348.388,19.365,20.624,19.365 +1449,45.439,305.470,448.172,249.478,623.474,302.629,457.795,106.447,139.185,106.447,327.830,324.436,347.897,19.564,20.950,19.564 +1450,45.471,303.503,447.904,251.669,623.709,300.989,457.262,105.038,141.072,105.038,327.708,324.072,347.088,19.517,20.795,19.517 +1451,45.503,301.303,448.183,254.376,624.504,299.185,456.873,103.698,143.310,103.698,329.059,323.992,346.948,19.612,21.981,19.612 +1452,45.535,299.434,447.865,257.046,625.055,297.565,456.367,102.400,146.083,102.400,329.499,323.424,346.909,19.215,22.549,19.215 +1453,45.566,297.538,447.903,259.118,625.029,295.940,455.991,101.174,149.036,101.174,329.449,323.275,345.939,19.500,22.123,19.500 +1454,45.598,295.702,448.060,261.750,625.484,294.343,455.824,99.926,152.700,99.926,329.714,323.028,345.478,19.282,23.333,19.282 +1455,45.629,293.897,448.216,263.985,625.735,292.742,455.674,98.804,156.218,98.804,329.825,322.669,344.918,19.135,23.482,19.135 +1456,45.659,292.169,448.227,266.301,625.963,291.200,455.352,97.745,159.677,97.745,330.438,322.690,344.819,19.041,24.243,19.041 +1457,45.690,290.713,448.142,268.727,626.573,289.845,455.550,96.680,163.586,96.680,329.719,323.080,344.637,18.719,25.349,18.719 +1458,45.722,289.165,448.265,270.684,626.604,288.465,455.314,95.670,167.574,95.670,330.248,322.353,344.417,18.604,25.441,18.604 +1459,45.753,288.136,448.186,273.087,626.586,287.529,455.161,94.970,171.539,94.970,330.059,322.991,344.063,18.669,25.627,18.669 +1460,45.783,288.136,448.186,273.087,626.586,287.529,455.161,94.970,171.539,94.970,330.059,322.991,344.063,18.669,25.627,18.669 +1461,45.812,286.560,448.104,275.102,627.286,286.068,455.477,93.814,175.462,93.814,329.535,323.048,344.314,18.559,27.010,18.559 +1462,45.843,285.204,448.086,277.023,627.468,284.824,455.598,92.899,179.338,92.899,329.047,322.152,344.089,18.495,26.992,18.495 +1463,45.875,283.752,448.475,278.881,627.835,283.509,455.804,91.899,3.708,91.899,329.515,323.525,344.180,18.421,27.165,18.421 +1464,45.907,282.534,448.918,280.806,627.973,282.419,455.929,90.944,7.943,90.944,330.071,324.553,344.094,18.525,27.685,18.525 +1465,45.940,281.000,449.500,282.301,628.718,281.000,456.359,90.000,12.265,90.000,331.000,326.249,344.718,18.000,27.531,18.000 +1466,45.972,280.101,450.049,284.298,629.039,280.182,456.525,89.284,16.569,89.284,332.149,326.603,345.103,18.474,27.661,18.474 +1467,46.005,278.832,450.105,285.658,629.365,279.020,456.691,88.363,21.541,88.363,332.407,327.929,345.586,18.735,27.268,18.735 +1468,46.036,278.139,450.573,287.134,630.284,278.413,457.590,87.769,25.883,87.769,331.761,328.732,345.806,18.609,27.257,18.609 +1469,46.068,277.000,450.632,288.702,630.508,277.376,457.726,86.967,30.406,86.967,332.071,329.255,346.278,19.046,26.907,19.046 +1470,46.098,275.980,451.208,290.824,630.535,276.432,457.766,86.055,34.891,86.055,333.553,329.825,346.700,19.058,25.622,19.058 +1471,46.127,274.774,451.733,292.177,631.284,275.363,458.619,85.110,39.393,85.110,333.120,330.479,346.941,19.213,25.395,19.213 +1472,46.157,273.778,452.480,293.562,631.417,274.425,458.846,84.193,43.958,84.193,334.445,331.077,347.243,19.425,24.243,19.425 +1473,46.190,272.423,451.806,295.624,630.891,273.264,458.892,83.224,48.552,83.224,332.601,332.179,346.871,19.762,22.341,19.762 +1474,46.220,270.777,452.438,297.321,631.005,271.735,459.492,82.263,53.022,82.263,332.553,332.800,346.792,18.999,20.526,18.999 +1475,46.251,270.777,452.438,297.321,631.005,271.735,459.492,82.263,53.022,82.263,332.553,332.800,346.792,18.999,20.526,18.999 +1476,46.280,269.454,452.199,298.675,631.074,270.612,459.726,81.254,57.736,81.254,332.017,333.701,347.246,19.235,20.271,19.235 +1477,46.311,267.898,451.539,299.695,631.160,269.368,459.989,80.134,62.333,80.134,330.517,333.835,347.671,19.490,19.983,19.490 +1478,46.342,266.691,450.737,301.059,631.402,268.616,460.684,79.046,66.888,79.046,327.281,334.578,347.544,20.586,19.580,20.586 +1479,46.373,263.707,447.004,302.258,631.408,267.009,461.115,76.833,71.384,76.833,318.707,336.796,347.690,19.769,19.442,19.769 +1480,46.405,245.064,380.185,303.661,631.339,264.659,461.830,76.504,76.264,76.504,179.931,336.169,347.859,17.853,19.773,17.853 +1481,46.435,255.242,433.374,305.819,630.801,262.933,462.364,75.141,81.416,75.141,287.621,336.192,347.605,17.911,20.373,17.911 +1482,46.465,256.388,443.302,307.568,629.926,261.934,462.273,73.706,86.017,73.706,307.915,335.346,347.445,19.330,20.526,19.330 +1483,46.495,256.693,449.478,308.532,628.507,260.739,462.122,72.255,90.725,72.255,319.519,333.176,346.070,20.991,21.074,20.991 +1484,46.526,255.208,452.338,309.194,627.380,258.804,462.529,70.560,95.228,70.560,322.836,334.257,344.448,21.356,22.182,21.356 +1485,46.557,253.390,453.800,312.014,625.918,256.864,462.773,68.839,99.522,68.839,324.865,333.241,344.107,21.509,21.710,21.509 +1486,46.590,251.521,454.295,314.787,623.694,255.114,462.769,67.023,104.165,67.023,324.493,331.787,342.902,22.678,21.678,22.678 +1487,46.621,249.619,456.585,317.820,621.784,252.861,463.555,65.062,109.134,65.062,326.357,330.530,341.732,23.127,21.344,23.127 +1488,46.652,249.619,456.585,317.820,621.784,252.861,463.555,65.062,109.134,65.062,326.357,330.530,341.732,23.127,21.344,23.127 +1489,46.680,246.763,458.057,321.717,619.870,250.167,464.724,62.949,114.696,62.949,326.454,329.528,341.426,22.530,21.699,22.530 +1490,46.711,244.088,459.360,325.609,617.620,247.602,465.614,60.668,119.197,60.668,327.115,328.971,341.463,22.816,23.030,22.816 +1491,46.743,241.178,460.915,329.556,615.377,245.046,467.166,58.250,124.129,58.250,326.301,327.856,341.003,23.359,24.245,23.359 +1492,46.774,238.195,462.606,333.861,612.696,242.417,468.781,55.641,128.928,55.641,325.867,327.034,340.827,23.611,25.612,23.611 +1493,46.806,234.912,464.414,338.029,609.458,239.442,470.389,52.832,133.636,52.832,325.766,326.271,340.763,23.869,26.088,23.869 +1494,46.839,231.862,466.662,342.564,605.875,236.740,472.441,49.834,138.270,49.834,325.325,325.869,340.449,25.211,26.665,25.211 +1495,46.872,227.882,469.327,347.095,601.786,233.194,474.943,46.586,142.842,46.586,325.379,325.625,340.840,24.641,26.602,24.641 +1496,46.902,224.645,472.811,351.642,597.222,229.946,477.772,43.105,147.417,43.105,326.429,325.421,340.950,24.982,26.698,24.982 +1497,46.933,221.258,476.360,356.378,592.705,227.066,481.133,39.407,151.790,39.407,326.448,325.643,341.484,26.024,26.985,26.024 +1498,46.963,217.354,480.502,360.872,586.970,223.600,484.939,35.395,156.140,35.395,326.673,325.926,341.996,25.592,26.961,25.592 +1499,46.993,213.214,484.815,365.209,580.479,220.305,489.091,31.091,160.286,31.091,326.003,325.916,342.563,25.893,26.273,25.893 +1500,47.024,209.300,490.400,369.005,573.518,217.006,494.253,26.565,164.386,26.565,325.571,326.367,342.802,25.491,25.882,25.491 +1501,47.055,204.644,495.909,372.976,566.177,214.055,499.717,22.027,167.661,22.027,324.190,326.590,344.494,26.027,24.148,26.027 +1502,47.086,199.793,503.000,375.925,558.109,211.062,506.299,16.314,170.759,16.314,322.074,326.998,345.557,25.164,23.771,25.164 +1503,47.115,199.793,503.000,375.925,558.109,211.062,506.299,16.314,170.759,16.314,322.074,326.998,345.557,25.164,23.771,25.164 +1504,47.143,193.670,509.170,377.888,549.190,208.632,512.236,11.581,173.070,11.581,315.911,326.432,346.457,25.294,21.433,25.294 +1505,47.176,183.287,519.398,378.391,539.688,206.215,521.085,4.209,174.661,4.209,300.175,324.232,346.155,24.143,20.332,24.143 +1506,47.209,162.004,528.197,378.645,530.138,204.734,527.386,178.914,174.951,178.914,262.180,323.187,347.655,19.613,20.214,19.613 +1507,47.240,124.937,545.024,378.444,520.082,204.445,536.846,174.127,175.830,174.127,189.747,323.184,349.602,18.588,19.428,18.588 +1508,47.272,191.189,549.045,377.467,509.538,205.115,546.190,168.414,175.914,168.414,323.972,324.887,352.403,19.510,20.234,19.510 +1509,47.304,196.636,558.374,375.402,499.161,206.844,555.001,161.711,175.820,161.711,333.631,324.255,355.133,19.328,20.656,19.328 +1510,47.336,201.476,568.351,370.938,488.291,209.429,564.561,154.519,177.089,154.519,339.603,322.854,357.223,19.211,20.042,19.211 +1511,47.367,206.625,578.658,364.504,478.279,213.113,574.426,146.889,179.157,146.889,343.165,321.201,358.658,19.338,20.013,19.338 +1512,47.398,213.574,588.774,356.963,467.915,218.881,584.184,139.145,0.721,139.145,346.966,320.126,360.997,19.379,19.149,19.379 +1513,47.428,221.682,598.559,346.982,458.326,226.034,593.535,130.903,3.122,130.903,349.481,318.617,362.775,19.328,19.680,19.328 +1514,47.457,231.641,607.673,335.420,450.821,234.963,602.474,122.580,5.537,122.580,351.428,316.618,363.766,19.389,19.521,19.389 +1515,47.489,243.298,614.963,322.880,444.389,245.578,609.862,114.085,7.696,114.085,354.053,314.680,365.227,19.706,19.552,19.706 +1516,47.521,255.401,621.474,308.855,439.410,256.857,615.924,104.708,9.648,104.708,356.388,312.546,367.864,22.488,20.279,22.488 +1517,47.551,255.401,621.474,308.855,439.410,256.857,615.924,104.708,9.648,104.708,356.388,312.546,367.864,22.488,20.279,22.488 +1518,47.580,268.198,625.020,294.085,436.980,268.719,619.808,95.711,11.834,95.711,358.412,310.822,368.889,26.269,19.575,26.269 +1519,47.610,286.753,625.979,279.564,436.270,286.610,620.749,88.433,13.829,88.433,358.741,308.753,369.206,25.127,20.332,25.127 +1520,47.641,301.792,624.386,264.198,438.057,300.928,619.747,79.442,15.945,79.442,361.249,307.550,370.688,25.859,20.604,25.859 +1521,47.674,315.995,620.844,250.076,441.722,314.307,616.262,69.775,17.949,69.775,362.200,306.060,371.967,21.829,21.961,21.829 +1522,47.707,330.677,613.382,236.272,448.251,328.350,609.226,60.757,19.916,60.757,361.356,305.167,370.882,24.158,21.079,24.158 +1523,47.740,343.549,605.023,224.328,456.931,340.436,601.070,51.776,21.801,51.776,360.087,304.355,370.151,24.458,20.426,24.458 +1524,47.771,355.070,594.679,214.070,466.517,350.676,590.573,43.061,24.261,43.061,356.991,304.309,369.021,26.114,20.917,26.114 +1525,47.801,367.319,588.621,204.872,477.715,357.105,581.611,34.461,26.053,34.461,343.838,304.532,368.614,19.966,19.126,19.966 +1526,47.832,412.100,593.300,198.321,489.895,363.807,569.154,26.565,27.960,26.565,258.937,304.702,366.922,19.230,19.097,19.230 +1527,47.863,378.488,560.612,193.760,501.389,368.051,556.943,19.372,29.495,19.372,343.574,305.114,365.701,24.808,20.819,24.808 +1528,47.893,373.752,544.509,191.112,512.816,366.428,543.129,10.673,31.251,10.673,340.888,305.646,355.794,25.010,21.738,25.010 +1529,47.926,371.272,532.466,189.540,524.883,364.742,532.075,3.434,32.735,3.434,337.553,306.489,350.637,25.015,20.969,25.015 +1530,47.958,369.799,523.896,189.993,536.024,364.692,524.208,176.504,33.815,176.504,339.955,307.318,350.188,20.842,22.746,20.842 +1531,47.990,369.996,514.063,190.974,546.944,365.592,514.851,169.852,35.640,169.852,346.133,308.871,355.081,20.966,21.958,20.966 +1532,48.022,367.986,504.651,193.292,557.118,364.260,505.747,163.610,36.951,163.610,349.265,310.198,357.032,20.090,21.789,20.090 +1533,48.052,367.986,504.651,193.292,557.118,364.260,505.747,163.610,36.951,163.610,349.265,310.198,357.032,20.090,21.789,20.090 +1534,48.080,363.873,496.359,196.334,566.658,360.358,497.796,157.766,38.062,157.766,348.174,311.270,355.769,19.626,21.362,19.626 +1535,48.109,359.593,488.942,200.394,575.171,356.080,490.807,152.033,39.114,152.033,346.182,312.822,354.137,19.900,21.290,19.900 +1536,48.140,354.788,482.472,204.526,583.580,351.270,484.769,146.857,39.936,146.857,345.383,314.460,353.786,19.583,22.111,19.583 +1537,48.173,350.175,476.363,209.549,590.079,346.524,479.220,141.953,41.112,141.953,343.112,316.082,352.384,19.140,21.288,19.140 +1538,48.205,344.762,471.366,212.879,598.076,340.413,475.386,137.252,41.820,137.252,342.019,317.316,353.865,19.093,26.162,19.093 +1539,48.235,339.402,467.446,218.183,603.764,335.413,471.754,132.797,42.847,132.797,341.280,318.505,353.022,18.915,25.820,18.915 +1540,48.266,334.268,463.915,223.174,608.815,330.494,468.633,128.660,43.210,128.660,340.927,319.810,353.012,19.053,25.775,19.053 +1541,48.297,329.065,461.126,228.268,612.792,325.597,466.143,124.654,44.029,124.654,339.757,321.148,351.955,19.212,25.979,19.212 +1542,48.327,324.098,458.764,233.858,616.619,320.995,463.951,120.887,44.519,120.887,339.406,321.788,351.495,19.009,25.752,19.009 +1543,48.357,319.317,456.842,238.750,619.750,316.464,462.373,117.286,45.000,117.286,338.536,323.148,350.984,19.198,25.456,19.198 +1544,48.390,314.602,455.215,244.000,622.500,312.081,460.899,113.920,45.000,113.920,338.215,324.562,350.652,19.278,24.749,19.278 +1545,48.424,310.064,453.830,249.000,625.000,307.816,459.801,110.630,45.000,110.630,337.895,325.269,350.656,19.246,25.456,19.246 +1546,48.454,305.547,452.936,253.590,626.925,303.642,458.967,107.526,45.725,107.526,337.819,326.102,350.469,19.373,25.042,19.373 +1547,48.484,305.547,452.936,253.590,626.925,303.642,458.967,107.526,45.725,107.526,337.819,326.102,350.469,19.373,25.042,19.373 +1548,48.513,301.472,452.213,258.542,628.446,299.874,458.359,104.578,45.785,104.578,337.324,326.866,350.027,19.243,25.647,19.243 +1549,48.544,297.433,451.661,263.259,629.716,296.136,457.947,101.662,45.971,101.662,336.902,328.146,349.739,19.357,24.877,19.357 +1550,48.575,293.521,451.217,268.450,630.512,292.506,457.672,98.933,46.057,98.933,335.892,328.276,348.959,18.984,23.949,18.984 +1551,48.607,289.773,450.927,272.074,631.456,289.015,457.842,96.257,45.824,96.257,334.940,328.903,348.853,18.752,24.965,18.752 +1552,48.638,286.387,450.693,277.154,631.833,285.920,457.706,93.814,45.418,93.814,334.591,329.575,348.649,18.559,24.505,18.559 +1553,48.669,282.675,450.907,281.500,632.000,282.540,457.938,91.102,45.000,91.102,334.034,330.219,348.099,18.689,24.749,18.689 +1554,48.700,279.040,451.551,285.743,631.764,279.217,458.347,88.512,44.193,88.512,333.459,330.316,347.056,18.617,25.433,18.617 +1555,48.731,276.094,451.230,290.435,631.569,276.570,458.294,86.143,43.290,86.143,333.468,331.074,347.629,19.035,25.212,19.035 +1556,48.760,272.592,451.765,294.503,631.054,273.385,458.957,83.709,41.878,83.709,332.279,330.846,346.749,18.760,24.673,18.760 +1557,48.792,269.529,452.688,298.747,630.798,270.592,459.596,81.254,40.386,81.254,333.005,331.481,346.984,19.235,25.354,19.235 +1558,48.823,266.445,453.407,303.237,629.464,267.758,460.003,78.740,38.841,78.740,332.803,331.706,346.254,19.797,25.491,19.797 +1559,48.855,263.226,453.806,307.740,628.180,264.924,460.700,76.163,36.870,76.163,331.521,331.800,345.720,20.305,25.400,20.305 +1560,48.885,263.226,453.806,307.740,628.180,264.924,460.700,76.163,36.870,76.163,331.521,331.800,345.720,20.305,25.400,20.305 +1561,48.914,260.146,454.775,311.817,627.035,262.087,461.404,73.675,34.287,73.675,332.047,332.031,345.862,20.964,24.674,20.964 +1562,48.945,256.964,455.547,315.910,625.331,259.269,462.230,70.974,31.535,70.974,331.174,332.212,345.313,21.157,24.369,21.157 +1563,48.975,253.760,456.789,319.798,623.369,256.318,463.217,68.305,28.652,68.305,330.713,332.962,344.549,21.710,25.015,21.710 +1564,49.008,250.433,457.985,324.193,621.211,253.313,464.326,65.573,25.267,65.573,330.378,332.336,344.306,22.247,24.902,22.247 +1565,49.041,247.328,459.832,328.743,618.919,250.439,465.882,62.784,21.532,62.784,330.205,331.820,343.812,22.740,25.223,22.740 +1566,49.072,243.667,461.194,333.149,615.610,247.114,467.118,59.808,17.546,59.808,329.521,331.396,343.230,23.243,25.527,23.243 +1567,49.103,240.210,463.190,337.650,612.534,243.943,468.877,56.714,12.848,56.714,329.431,330.667,343.035,23.606,25.931,23.606 +1568,49.133,236.261,465.046,342.045,609.145,240.597,470.908,53.506,8.227,53.506,328.352,329.955,342.934,24.187,26.031,24.187 +1569,49.163,232.342,467.467,345.862,605.752,237.215,473.304,50.140,3.511,50.140,327.397,329.528,342.605,24.772,26.551,24.772 +1570,49.193,228.352,470.165,350.516,601.122,233.677,475.759,46.418,178.483,46.418,327.273,327.336,342.719,24.668,25.878,24.668 +1571,49.223,224.328,473.559,354.844,596.557,230.325,479.085,42.654,173.830,42.654,326.038,327.981,342.349,25.213,25.419,25.213 +1572,49.255,220.085,477.265,358.917,591.594,226.613,482.463,38.533,168.408,38.533,326.268,327.137,342.958,25.262,25.947,25.262 +1573,49.287,220.085,477.265,358.917,591.594,226.613,482.463,38.533,168.408,38.533,326.268,327.137,342.958,25.262,25.947,25.262 +1574,49.314,215.987,481.284,362.778,585.399,223.018,486.073,34.256,162.814,34.256,325.838,326.504,342.851,25.936,25.844,25.936 +1575,49.345,212.185,486.796,366.222,578.845,219.185,490.775,29.617,157.011,29.617,326.598,325.914,342.702,25.897,25.832,25.897 +1576,49.377,208.353,492.736,369.550,572.089,215.604,496.090,24.826,150.832,24.826,327.278,325.094,343.256,25.493,26.318,25.493 +1577,49.407,204.554,500.345,372.402,563.861,211.924,502.897,19.093,144.689,19.093,327.583,323.962,343.182,25.660,26.011,25.660 +1578,49.438,201.264,507.425,374.694,555.658,208.840,509.285,13.799,138.209,13.799,328.653,323.043,344.256,25.198,26.175,25.198 +1579,49.470,199.282,514.597,376.111,546.599,206.392,515.651,8.427,131.987,8.427,330.467,322.590,344.843,25.499,26.238,25.499 +1580,49.501,197.521,523.511,376.729,536.864,204.537,523.806,2.403,125.112,2.403,331.128,321.882,345.174,24.678,25.985,24.678 +1581,49.532,196.168,535.845,376.740,526.172,203.174,535.345,175.914,118.443,175.914,333.507,319.952,347.557,19.237,26.012,19.237 +1582,49.563,196.661,546.480,375.186,515.574,203.296,545.221,169.254,111.631,169.254,335.300,318.845,348.807,19.936,25.611,19.936 +1583,49.593,198.732,556.779,372.695,504.419,204.749,554.847,162.195,104.859,162.195,338.003,317.249,350.643,19.654,26.018,19.654 +1584,49.626,202.110,567.368,368.150,492.950,207.344,564.916,154.895,98.130,154.895,340.734,315.228,352.296,19.301,25.173,19.301 +1585,49.658,207.060,577.926,362.388,482.036,211.333,575.179,147.265,90.610,147.265,344.703,314.110,354.864,19.047,25.158,19.047 +1586,49.691,213.416,588.411,355.037,471.829,217.266,585.119,139.475,83.660,139.475,346.542,312.853,356.672,19.236,25.289,19.236 +1587,49.722,221.593,597.962,345.595,461.977,224.595,594.551,131.348,76.504,131.348,349.833,311.631,358.921,19.038,24.426,19.038 +1588,49.753,231.159,607.104,335.251,453.593,233.758,603.107,123.034,69.538,123.034,351.809,310.269,361.344,19.633,24.975,19.633 +1589,49.783,231.159,607.104,335.251,453.593,233.758,603.107,123.034,69.538,123.034,351.809,310.269,361.344,19.633,24.975,19.633 +1590,49.811,242.495,614.958,323.016,446.729,244.547,610.501,114.717,62.328,114.717,353.346,309.157,363.158,19.638,24.106,19.638 +1591,49.843,254.633,620.816,310.216,441.348,255.897,616.279,105.570,54.782,105.570,356.765,307.709,366.184,21.855,24.173,21.855 +1592,49.877,266.833,624.540,295.854,437.917,267.368,620.037,96.763,47.413,96.763,359.344,306.591,368.413,25.768,23.706,25.768 +1593,49.909,285.011,626.448,281.473,436.935,284.954,621.471,89.341,39.925,89.341,359.172,306.383,369.127,24.102,23.083,24.102 +1594,49.942,297.987,625.419,266.626,438.667,297.252,621.011,80.538,32.376,80.538,360.856,305.795,369.794,25.811,20.404,25.811 +1595,49.974,312.176,621.836,253.205,441.556,310.851,617.716,72.176,24.775,72.176,362.043,305.214,370.699,21.958,20.674,21.958 +1596,50.006,325.644,615.963,240.397,446.440,323.683,611.988,63.745,17.033,63.745,361.759,304.814,370.624,22.712,20.958,22.712 +1597,50.038,337.448,607.760,228.419,452.496,335.152,604.415,55.530,9.237,55.530,363.191,305.444,371.306,23.984,21.698,23.984 +1598,50.069,347.722,598.676,217.556,461.515,345.238,595.963,47.522,1.296,47.522,363.412,305.329,370.770,25.042,19.597,25.042 +1599,50.107,356.644,588.817,208.428,470.391,353.276,586.015,39.759,173.290,39.759,361.836,307.585,370.598,25.428,20.038,25.428 +1600,50.152,363.417,577.786,200.786,480.686,359.808,575.511,32.225,165.236,32.225,361.652,308.803,370.184,26.238,19.448,26.238 +1601,50.185,368.306,567.070,194.412,490.920,363.861,564.991,25.067,157.138,25.067,359.928,310.199,369.743,26.166,20.155,26.166 +1602,50.216,371.256,556.169,190.404,502.832,367.214,554.831,18.323,148.946,18.323,359.870,311.960,368.385,25.816,19.510,25.816 +1603,50.247,369.259,545.251,186.689,512.610,364.637,544.279,11.871,141.442,11.871,351.865,313.288,361.313,25.776,21.510,25.776 +1604,50.282,368.037,536.223,186.118,523.991,363.441,535.759,5.764,132.672,5.764,345.977,314.443,355.217,24.365,20.449,24.365 +1605,50.314,367.000,527.000,184.051,532.985,361.525,527.000,0.000,125.020,0.000,344.000,316.306,354.949,24.000,22.028,24.000 +1606,50.345,367.408,521.501,184.158,542.316,361.750,522.021,174.744,117.001,174.744,346.046,317.092,357.410,20.480,23.200,20.480 +1607,50.376,368.452,514.237,187.016,551.677,363.346,515.176,169.574,108.153,169.574,349.666,318.124,360.049,20.268,19.425,20.268 +1608,50.407,368.377,506.822,187.828,559.196,362.802,508.320,164.956,100.305,164.956,352.818,318.506,364.364,20.135,21.198,20.135 +1609,50.438,365.164,500.611,191.761,566.091,360.589,502.211,160.721,91.591,160.721,351.208,318.349,360.902,20.013,19.132,20.013 +1610,50.468,362.462,495.421,194.395,572.727,357.854,497.401,156.744,83.491,156.744,349.809,318.724,359.839,19.681,19.411,19.681 +1611,50.499,360.116,490.277,197.772,577.894,355.467,492.641,153.051,75.069,153.051,347.987,318.535,358.416,19.566,19.711,19.566 +1612,50.530,357.415,485.996,201.055,582.181,353.105,488.508,149.760,66.644,149.760,347.094,318.150,357.070,19.510,19.864,19.510 +1613,50.560,354.777,482.159,204.409,586.125,350.608,484.882,146.849,58.156,146.849,345.571,318.644,355.532,19.068,20.693,19.068 +1614,50.591,352.082,478.924,206.936,588.500,348.224,481.724,144.036,49.585,144.036,344.592,316.734,354.126,19.504,21.079,19.504 +1615,50.623,349.501,476.029,209.416,590.637,345.939,478.847,141.647,40.925,141.647,343.773,316.634,352.856,19.441,22.310,19.441 +1616,50.654,347.390,473.625,210.186,593.617,343.173,477.233,139.447,32.196,139.447,342.321,316.209,353.422,19.536,25.481,19.536 +1617,50.684,347.390,473.625,210.186,593.617,343.173,477.233,139.447,32.196,139.447,342.321,316.209,353.422,19.536,25.481,19.536 +1618,50.713,345.185,471.846,211.715,594.817,341.348,475.349,137.610,23.025,137.610,342.176,316.571,352.569,19.074,25.286,19.074 +1619,50.743,343.719,469.793,213.151,595.907,339.750,473.635,135.934,14.257,135.934,340.965,316.523,352.012,19.447,25.056,19.447 +1620,50.775,342.537,467.974,214.354,596.408,338.295,472.293,134.481,5.631,134.481,338.684,315.625,350.792,19.261,25.104,19.261 +1621,50.807,341.988,466.332,214.790,597.118,337.244,471.338,133.467,175.825,133.467,337.264,315.642,351.056,19.042,22.713,19.042 +1622,50.839,341.770,464.504,214.298,598.076,335.794,471.009,132.576,166.287,132.576,333.874,317.260,351.540,19.064,21.289,19.064 +1623,50.870,343.778,461.460,214.189,599.629,335.071,471.100,132.089,156.552,132.089,326.836,318.666,352.815,19.726,21.068,19.726 +1624,50.902,346.407,456.808,213.899,601.045,333.805,470.948,131.707,147.804,131.707,315.920,320.534,353.802,18.362,19.589,18.362 +1625,50.933,359.586,441.466,213.808,602.591,333.190,471.161,131.634,138.447,131.634,275.628,321.806,355.090,18.270,20.154,18.270 +1626,50.964,346.287,456.985,213.661,603.227,333.209,471.775,131.483,128.797,131.483,315.848,323.747,355.333,18.610,20.233,18.610 +1627,50.994,338.067,466.826,212.904,603.766,333.310,472.150,131.778,120.493,131.778,342.463,325.507,356.741,18.893,20.681,18.893 +1628,51.026,337.817,468.017,212.524,604.121,333.518,472.748,132.259,111.218,132.259,344.410,325.945,357.195,19.168,20.169,19.168 +1629,51.057,338.404,469.065,212.481,604.104,334.451,473.280,133.166,102.179,133.166,346.164,326.032,357.721,18.697,19.662,18.697 +1630,51.088,339.533,470.076,212.116,603.479,335.532,474.199,134.140,93.128,134.140,345.959,325.662,357.450,18.909,19.970,18.909 +1631,51.118,339.533,470.076,212.116,603.479,335.532,474.199,134.140,93.128,134.140,345.959,325.662,357.450,18.909,19.970,18.909 +1632,51.146,341.382,470.858,212.322,602.019,337.427,474.767,135.331,84.063,135.331,345.741,324.514,356.863,19.186,19.161,19.186 +1633,51.178,343.501,471.762,211.796,600.114,339.256,475.734,136.897,74.946,136.897,344.477,323.370,356.104,18.983,19.900,18.983 +1634,51.210,345.667,473.420,211.055,597.340,341.578,477.025,138.608,65.587,138.608,344.041,321.773,354.943,19.238,20.343,19.238 +1635,51.241,348.184,475.225,209.840,593.930,344.206,478.482,140.694,56.205,140.694,343.918,319.781,354.202,19.064,21.438,19.064 +1636,51.274,350.904,477.513,207.723,588.949,347.064,480.421,142.853,46.571,142.853,343.571,316.365,353.205,19.541,22.104,19.541 +1637,51.306,353.587,480.529,203.904,585.679,349.236,483.526,145.437,37.635,145.437,344.702,315.039,355.268,19.398,25.771,19.398 +1638,51.337,356.406,483.899,201.272,580.103,352.212,486.486,148.325,27.951,148.325,345.376,313.643,355.230,19.302,24.626,19.302 +1639,51.368,360.277,487.156,198.314,573.563,355.096,489.995,151.280,18.258,151.280,343.486,312.751,355.302,19.834,23.741,19.834 +1640,51.399,366.031,490.250,195.491,567.393,357.898,494.082,154.767,8.973,154.767,338.345,311.561,356.327,19.423,21.835,19.423 +1641,51.429,373.186,493.762,192.532,562.243,360.172,498.910,158.416,0.492,158.416,330.373,311.074,358.364,19.456,20.132,19.456 +1642,51.458,386.364,496.330,189.613,556.867,361.964,504.018,162.512,172.965,162.512,309.364,311.830,360.531,19.089,20.420,19.089 +1643,51.489,440.238,491.433,187.215,549.848,364.139,510.124,166.201,165.777,166.201,205.864,312.398,362.585,19.082,20.107,19.082 +1644,51.521,369.577,515.465,185.455,543.199,363.125,516.531,170.621,159.541,170.621,346.202,312.967,359.281,19.614,22.983,19.614 +1645,51.552,369.577,515.465,185.455,543.199,363.125,516.531,170.621,159.541,170.621,346.202,312.967,359.281,19.614,22.983,19.614 +1646,51.580,367.031,522.886,184.482,535.966,362.127,523.280,175.406,152.447,175.406,346.339,313.196,356.180,20.247,23.282,20.247 +1647,51.611,366.645,528.308,184.258,528.158,361.731,528.235,0.855,144.709,0.855,345.081,313.386,354.909,24.296,22.330,24.296 +1648,51.643,368.048,536.768,185.221,519.661,362.921,536.186,6.476,137.104,6.476,346.542,313.478,356.861,25.200,23.558,25.200 +1649,51.676,370.035,546.341,187.640,510.706,365.015,545.226,12.529,129.193,12.529,350.993,312.964,361.279,25.598,22.392,25.598 +1650,51.709,371.679,557.717,191.421,501.432,367.280,556.203,18.997,120.606,18.997,358.917,311.810,368.221,25.064,18.935,25.064 +1651,51.741,368.200,569.600,196.066,491.445,363.715,567.358,26.565,112.642,26.565,357.771,309.848,367.799,25.044,18.271,25.044 +1652,51.772,364.151,579.968,202.258,481.672,359.866,577.173,33.111,104.791,33.111,358.133,308.294,368.366,25.055,18.289,25.055 +1653,51.804,357.466,591.296,209.788,471.799,353.287,587.700,40.711,96.710,40.711,357.711,306.007,368.738,25.050,18.227,25.050 +1654,51.834,348.976,601.522,218.160,463.018,345.118,597.193,48.289,88.781,48.289,357.677,304.272,369.274,24.262,18.570,24.262 +1655,51.865,339.469,611.359,228.472,455.505,335.602,605.650,55.886,80.478,55.886,354.990,303.648,368.783,23.395,18.859,23.395 +1656,51.896,329.335,623.581,240.104,449.029,324.166,612.994,63.979,72.623,63.979,344.884,303.644,368.446,21.900,19.393,21.900 +1657,51.927,317.031,634.889,252.539,443.505,311.674,618.314,72.089,63.997,72.089,334.207,302.841,369.046,21.799,18.326,21.799 +1658,51.958,300.527,627.162,266.239,439.807,299.542,621.250,80.538,55.561,80.538,356.910,303.406,368.898,26.304,19.558,26.304 +1659,51.988,286.474,626.874,280.336,437.354,286.354,621.673,88.679,47.429,88.679,358.412,303.945,368.817,25.109,22.110,25.109 +1660,52.019,286.474,626.874,280.336,437.354,286.354,621.673,88.679,47.429,88.679,358.412,303.945,368.817,25.109,22.110,25.109 +1661,52.047,268.413,624.789,293.863,436.932,268.900,619.864,95.658,38.956,95.658,359.106,306.452,369.003,25.568,23.759,25.568 +1662,52.078,256.235,621.810,307.534,438.608,257.627,616.267,104.098,30.877,104.098,357.496,308.872,368.928,22.808,23.483,22.808 +1663,52.108,245.138,616.346,319.808,443.152,247.383,611.067,113.030,22.714,113.030,354.259,311.463,365.732,19.875,21.624,19.875 +1664,52.139,234.342,609.405,331.826,448.585,237.325,604.439,120.994,14.621,120.994,352.944,313.887,364.529,19.698,20.909,19.698 +1665,52.171,224.595,601.378,342.373,455.559,228.383,596.637,128.624,6.864,128.624,350.609,315.418,362.744,19.411,19.737,19.411 +1666,52.203,216.728,592.718,351.505,462.707,221.494,588.123,136.051,178.683,136.051,348.046,317.307,361.286,19.218,19.133,19.218 +1667,52.233,209.741,583.986,359.068,470.372,215.995,579.302,143.174,170.658,143.174,344.002,319.912,359.630,19.416,20.662,19.416 +1668,52.264,202.784,575.896,364.729,479.529,211.281,570.985,149.973,162.672,149.973,337.610,321.064,357.238,19.317,22.995,19.317 +1669,52.294,134.579,594.885,369.160,488.371,208.042,562.893,156.468,156.595,156.468,194.694,320.901,354.947,18.529,19.875,18.529 +1670,52.325,182.063,561.820,372.397,498.632,205.372,554.356,162.245,149.439,162.245,303.177,321.400,352.126,18.855,20.338,18.855 +1671,52.357,192.312,549.332,375.018,509.258,204.054,546.843,168.031,141.651,168.031,326.077,321.099,350.082,19.655,23.547,19.655 +1672,52.388,194.826,539.829,376.413,519.420,203.547,538.825,173.429,132.730,173.429,330.345,321.447,347.902,19.832,24.708,19.832 +1673,52.418,194.826,539.829,376.413,519.420,203.547,538.825,173.429,132.730,173.429,330.345,321.447,347.902,19.832,24.708,19.832 +1674,52.446,196.534,531.438,376.885,529.423,203.891,531.309,178.995,123.690,178.995,331.282,322.003,345.999,18.366,25.794,18.366 +1675,52.477,197.893,522.446,376.966,538.441,204.615,522.815,3.136,114.520,3.136,332.433,322.268,345.896,24.839,26.512,24.839 +1676,52.510,199.610,515.697,376.100,547.300,206.395,516.622,7.765,105.255,7.765,330.892,323.634,344.588,25.266,26.312,25.266 +1677,52.543,201.493,509.817,374.981,555.382,208.323,511.265,11.976,96.600,11.976,330.406,324.997,344.369,25.760,25.319,25.760 +1678,52.575,204.123,504.821,374.546,562.776,210.751,506.715,15.945,87.184,15.945,332.000,326.687,345.788,25.686,25.445,25.686 +1679,52.609,206.341,499.861,372.786,568.736,213.201,502.318,19.708,78.376,19.708,330.693,328.952,345.268,25.362,23.474,25.362 +1680,52.642,208.183,494.795,371.885,573.796,215.930,498.145,23.385,69.513,23.385,329.461,330.756,346.342,25.229,23.481,25.229 +1681,52.676,209.883,491.589,369.551,578.690,217.886,495.493,26.003,60.658,26.003,327.766,332.396,345.574,25.494,20.091,25.494 +1682,52.709,210.660,486.636,368.387,582.306,220.331,492.099,29.461,51.943,29.461,324.341,333.011,346.555,24.944,19.763,24.944 +1683,52.740,207.887,484.644,367.072,585.318,220.567,492.494,31.759,43.062,31.759,317.027,333.407,346.853,18.625,19.962,18.625 +1684,52.772,152.391,444.399,365.963,587.124,222.077,490.666,33.582,34.992,33.582,179.157,333.509,346.450,17.741,19.252,17.741 +1685,52.802,211.333,478.752,364.099,588.333,224.034,487.175,33.555,26.169,33.555,314.796,333.166,345.276,24.337,19.699,24.337 +1686,52.832,217.871,477.988,362.850,588.516,225.925,484.098,37.185,17.879,37.185,324.171,332.638,344.390,25.412,21.766,25.412 +1687,52.863,219.574,476.780,360.656,590.628,226.884,482.608,38.563,9.189,38.563,325.175,331.558,343.873,26.470,23.997,26.470 +1688,52.894,220.764,476.288,359.490,591.321,227.354,481.702,39.401,0.428,39.401,326.311,329.110,343.369,25.528,25.365,25.528 +1689,52.924,221.559,475.738,357.979,592.827,227.843,481.015,40.018,172.999,40.018,326.713,328.445,343.124,25.063,25.144,25.063 +1690,52.956,222.014,475.311,356.661,593.592,228.123,480.524,40.473,164.745,40.473,326.284,327.581,342.345,25.277,26.224,25.277 +1691,52.986,222.335,474.859,355.912,593.799,228.313,479.983,40.601,156.251,40.601,326.155,326.951,341.901,25.815,26.434,25.815 +1692,53.016,222.335,474.859,355.912,593.799,228.313,479.983,40.601,156.251,40.601,326.155,326.951,341.901,25.815,26.434,25.815 +1693,53.044,221.856,474.999,355.093,593.953,227.844,480.122,40.549,148.109,40.549,325.622,326.472,341.383,25.210,26.698,25.210 +1694,53.075,221.444,475.383,354.771,593.982,227.359,480.381,40.200,139.399,40.200,325.796,326.372,341.283,25.162,26.357,25.162 +1695,53.107,220.963,475.733,354.795,593.819,226.915,480.660,39.617,131.496,39.617,325.876,326.390,341.330,26.007,26.128,26.007 +1696,53.138,220.232,477.085,355.385,593.423,226.062,481.750,38.660,123.690,38.660,326.559,326.996,341.492,25.144,26.071,25.144 +1697,53.169,219.299,478.402,356.175,593.038,225.238,482.964,37.526,115.514,37.526,326.806,328.380,341.783,25.276,25.536,25.276 +1698,53.200,218.252,480.159,358.310,591.598,224.321,484.577,36.055,107.592,36.055,327.612,328.074,342.625,25.327,25.644,25.327 +1699,53.231,216.805,481.938,359.419,589.487,222.779,486.024,34.371,99.462,34.371,327.907,329.291,342.384,25.287,23.016,25.287 +1700,53.261,215.151,484.237,362.849,587.495,221.786,488.441,32.358,91.736,32.358,328.635,329.334,344.345,25.387,24.322,25.387 +1701,53.291,213.296,486.813,365.368,584.462,220.292,490.868,30.094,84.144,30.094,328.728,330.752,344.900,25.415,23.645,25.415 +1702,53.322,211.069,490.049,367.973,580.387,218.291,493.758,27.181,76.608,27.181,329.212,331.125,345.449,25.942,22.560,25.942 +1703,53.353,211.069,490.049,367.973,580.387,218.291,493.758,27.181,76.608,27.181,329.212,331.125,345.449,25.942,22.560,25.942 +1704,53.381,209.033,493.255,370.586,576.156,216.646,496.728,24.523,69.274,24.523,329.307,331.698,346.042,25.986,21.714,25.986 +1705,53.412,206.634,497.919,373.271,570.826,214.537,500.941,20.925,62.080,20.925,329.528,331.941,346.450,25.769,20.776,25.769 +1706,53.442,204.374,502.446,376.256,564.519,212.729,505.072,17.447,55.125,17.447,330.136,331.789,347.653,25.594,21.156,25.594 +1707,53.473,201.191,507.861,378.025,557.862,210.407,510.044,13.325,48.517,13.325,329.311,331.517,348.253,25.659,19.714,25.659 +1708,53.506,199.495,513.774,379.745,549.835,208.699,515.245,9.081,42.125,9.081,330.081,330.903,348.723,25.516,19.729,25.516 +1709,53.537,197.467,520.962,380.831,541.116,206.803,521.629,4.086,35.870,4.086,331.228,330.984,349.948,24.794,19.935,24.794 +1710,53.568,196.362,528.928,381.004,531.205,205.379,528.739,178.802,30.296,178.802,333.032,330.469,351.069,24.058,20.024,24.058 +1711,53.599,196.509,540.430,380.696,521.207,205.396,539.357,173.118,25.236,173.118,334.521,328.769,352.423,19.154,21.352,19.154 +1712,53.630,197.761,549.823,379.137,509.862,206.093,547.885,166.908,20.076,166.908,337.211,327.569,354.318,19.616,22.217,19.616 +1713,53.660,199.764,559.452,375.793,498.521,207.505,556.670,160.233,15.665,160.233,339.625,326.215,356.076,19.542,22.339,19.542 +1714,53.691,202.900,569.800,371.095,488.030,210.132,566.184,153.435,11.427,153.435,341.671,324.178,357.843,19.230,21.355,19.230 +1715,53.722,207.764,579.659,364.623,477.083,214.063,575.428,146.116,7.613,146.116,344.458,322.282,359.636,19.110,20.648,19.110 +1716,53.753,214.152,589.540,356.157,467.174,219.408,584.894,138.524,3.851,138.524,346.816,320.822,360.847,19.157,19.705,19.157 +1717,53.782,214.152,589.540,356.157,467.174,219.408,584.894,138.524,3.851,138.524,346.816,320.822,360.847,19.157,19.705,19.157 +1718,53.811,222.100,598.870,346.503,457.782,226.427,593.826,130.628,0.203,130.628,349.584,319.009,362.875,19.043,19.362,19.043 +1719,53.847,231.586,607.777,335.097,450.571,234.918,602.563,122.580,176.479,122.580,351.662,317.000,364.037,19.368,17.766,19.368 +1720,53.879,242.808,615.462,322.500,444.000,245.337,609.862,114.305,172.798,114.305,353.553,316.047,365.842,19.668,17.896,19.668 +1721,53.910,254.680,621.638,309.075,439.396,256.267,615.850,105.328,169.252,105.328,356.269,314.159,368.274,21.775,17.953,21.775 +1722,53.942,267.032,625.217,294.637,436.589,267.689,619.493,96.544,165.564,96.544,358.043,312.907,369.567,25.407,18.007,25.407 +1723,53.973,285.488,626.506,279.875,436.118,285.420,620.594,89.336,161.955,89.336,357.231,312.107,369.056,25.068,18.018,25.068 +1724,54.006,296.688,626.150,264.720,438.050,295.725,620.918,79.568,158.147,79.568,360.280,311.039,370.919,26.735,18.263,26.735 +1725,54.037,313.797,621.892,249.964,441.888,312.158,617.046,71.306,154.290,71.306,361.472,310.445,371.703,22.156,18.120,22.156 +1726,54.070,327.838,615.280,236.107,447.811,325.439,610.682,62.441,150.295,62.441,361.072,310.458,371.444,23.005,18.374,23.005 +1727,54.099,340.576,606.632,223.812,456.217,337.680,602.698,53.641,146.401,53.641,361.171,310.083,370.939,24.392,18.182,24.392 +1728,54.130,351.522,596.502,212.965,465.660,347.935,592.899,45.139,142.326,45.139,360.623,310.470,370.792,24.936,18.195,24.936 +1729,54.160,360.141,584.941,203.884,476.308,356.174,581.986,36.684,138.315,36.684,360.628,311.168,370.521,25.575,17.989,25.575 +1730,54.191,366.370,572.470,196.632,487.641,362.159,570.178,28.556,134.256,28.556,360.100,311.284,369.690,26.189,18.622,26.189 +1731,54.222,370.847,560.640,191.757,499.973,366.682,559.057,20.810,129.979,20.810,360.097,313.175,369.008,26.010,19.246,26.010 +1732,54.256,370.417,548.343,188.574,512.131,365.994,547.291,13.385,125.685,13.385,352.387,314.098,361.479,25.235,20.653,25.235 +1733,54.287,370.417,548.343,188.574,512.131,365.994,547.291,13.385,125.685,13.385,352.387,314.098,361.479,25.235,20.653,25.235 +1734,54.315,368.184,536.615,186.164,524.019,363.603,536.117,6.207,121.492,6.207,346.200,315.380,355.415,25.637,20.503,25.637 +1735,54.346,366.971,526.441,185.517,535.286,362.252,526.486,179.451,117.068,179.451,344.185,316.639,353.623,24.414,19.877,24.414 +1736,54.377,367.858,518.827,184.286,545.342,361.812,519.561,173.078,113.499,173.078,346.497,317.625,358.678,20.891,23.605,20.891 +1737,54.409,368.633,509.915,186.273,555.748,362.841,511.257,166.957,109.152,166.957,352.217,318.748,364.107,20.560,23.000,20.560 +1738,54.442,365.411,501.300,190.667,565.787,360.365,503.017,161.209,103.820,161.209,351.085,319.912,361.745,20.144,20.387,20.144 +1739,54.473,361.513,494.087,193.659,574.030,356.606,496.298,155.753,99.530,155.753,350.225,321.069,360.989,19.600,19.335,19.600 +1740,54.506,357.245,487.717,197.449,582.038,352.424,490.431,150.630,94.817,150.630,348.903,321.557,359.969,19.606,19.129,19.606 +1741,54.537,352.697,481.844,201.545,589.000,348.079,484.979,145.827,90.395,145.827,348.162,322.068,359.325,19.530,18.579,19.530 +1742,54.569,347.977,476.835,206.270,594.980,343.727,480.223,141.444,85.778,141.444,347.162,323.188,358.033,19.403,19.082,19.403 +1743,54.600,343.361,472.607,211.179,600.665,339.303,476.361,137.227,81.254,137.227,345.871,324.186,356.927,19.085,19.463,19.085 +1744,54.631,338.960,469.020,215.841,605.304,334.999,473.226,133.283,76.900,133.283,344.135,324.481,355.689,18.696,19.939,18.696 +1745,54.660,334.951,465.310,221.039,609.347,331.131,469.941,129.514,72.232,129.514,343.185,325.119,355.191,19.167,20.056,19.167 +1746,54.691,330.226,463.113,226.285,613.051,327.036,467.490,126.091,67.457,126.091,343.118,326.464,353.949,19.137,20.633,19.137 +1747,54.722,326.205,460.697,231.369,615.554,323.364,465.103,122.816,63.249,122.816,342.111,325.143,352.595,19.133,20.763,19.133 +1748,54.752,326.205,460.697,231.369,615.554,323.364,465.103,122.816,63.249,122.816,342.111,325.143,352.595,19.133,20.763,19.133 +1749,54.779,322.308,458.462,235.669,617.992,319.469,463.430,119.745,58.865,119.745,340.103,325.498,351.548,19.349,21.144,19.349 +1750,54.809,318.623,456.796,240.061,620.144,316.071,461.833,116.870,54.071,116.870,339.854,325.402,351.147,18.959,21.100,18.959 +1751,54.844,314.779,455.560,244.753,621.513,312.672,460.270,114.097,49.686,114.097,339.521,325.430,349.842,19.336,21.512,19.336 +1752,54.877,311.283,454.229,247.000,624.000,309.035,459.921,111.552,45.000,111.552,338.551,325.269,350.791,19.516,25.456,19.516 +1753,54.910,308.711,453.486,251.106,625.376,306.645,459.338,109.440,40.601,109.440,337.701,325.396,350.114,19.415,26.032,19.415 +1754,54.943,304.945,452.320,254.937,626.263,303.088,458.458,106.832,36.431,106.832,336.293,325.374,349.118,19.240,25.861,19.240 +1755,54.977,301.782,451.528,258.502,627.178,300.175,457.677,104.647,32.905,104.647,336.349,325.111,349.060,19.284,26.224,19.284 +1756,55.010,298.966,451.210,261.630,627.259,297.615,457.250,102.609,28.393,102.609,335.152,325.515,347.530,19.107,26.296,19.107 +1757,55.043,295.917,450.427,265.120,627.736,294.765,456.628,100.526,24.444,100.526,334.677,324.918,347.290,19.331,26.235,19.331 +1758,55.075,293.316,450.090,268.241,627.860,292.377,456.240,98.677,20.610,98.677,334.151,325.024,346.593,18.937,26.656,18.937 +1759,55.106,290.801,449.559,271.236,627.911,290.023,456.086,96.796,16.144,96.796,332.533,325.429,345.680,18.774,27.250,18.774 +1760,55.138,288.455,449.537,274.134,627.698,287.857,456.055,95.242,12.155,95.242,331.269,325.475,344.359,18.546,27.478,18.546 +1761,55.169,285.731,448.699,277.061,628.065,285.323,455.849,93.270,7.962,93.270,330.489,324.534,344.813,18.484,27.301,18.484 +1762,55.200,283.276,448.494,279.863,627.871,283.083,455.860,91.507,4.198,91.507,329.333,323.918,344.071,18.467,27.193,18.467 +1763,55.230,281.000,448.500,282.500,628.000,281.000,456.000,90.000,0.000,90.000,329.000,323.000,344.000,18.000,26.000,18.000 +1764,55.260,278.282,448.883,285.475,627.441,278.541,456.156,87.955,177.436,87.955,328.291,323.750,342.847,18.631,26.869,18.631 +1765,55.292,276.122,448.825,287.992,627.422,276.611,456.170,86.186,173.845,86.186,328.537,323.896,343.260,19.157,26.571,19.157 +1766,55.323,274.020,449.218,290.820,626.902,274.689,456.378,84.668,170.707,84.668,328.187,324.197,342.570,19.409,26.592,19.409 +1767,55.353,274.020,449.218,290.820,626.902,274.689,456.378,84.668,170.707,84.668,328.187,324.197,342.570,19.409,26.592,19.409 +1768,55.381,271.685,449.477,293.521,626.864,272.596,456.765,82.875,167.358,82.875,328.072,324.535,342.762,19.846,27.358,19.846 +1769,55.411,268.661,450.233,296.001,626.471,269.803,457.347,80.882,163.909,80.882,327.866,324.463,342.276,19.321,26.552,19.321 +1770,55.444,266.434,450.533,298.978,626.008,267.837,457.841,79.131,160.710,79.131,327.160,324.546,342.044,19.633,26.428,19.633 +1771,55.475,264.017,451.199,302.080,625.484,265.651,458.375,77.176,157.521,77.176,327.333,325.158,342.052,19.953,26.446,19.953 +1772,55.508,261.543,452.063,305.067,624.587,263.363,458.942,75.182,154.612,75.182,327.373,325.249,341.604,20.383,26.751,20.383 +1773,55.540,258.884,452.672,308.110,623.633,260.977,459.583,73.148,151.699,73.148,326.897,325.503,341.338,20.928,26.279,20.928 +1774,55.572,256.099,453.596,311.575,622.938,258.515,460.542,70.821,148.496,70.821,326.919,325.584,341.627,21.149,25.853,21.149 +1775,55.603,253.567,454.602,314.857,621.526,256.218,461.365,68.597,145.840,68.597,326.499,325.966,341.028,22.298,25.829,22.298 +1776,55.635,250.388,456.005,318.645,620.354,253.374,462.771,66.189,142.907,66.189,326.248,326.204,341.041,22.208,25.428,22.208 +1777,55.666,247.200,457.400,322.619,618.745,250.511,464.022,63.435,140.262,63.435,326.466,326.492,341.272,22.361,25.728,22.361 +1778,55.696,244.126,458.980,326.406,616.737,247.735,465.458,60.873,137.231,60.873,326.053,326.307,340.884,22.890,25.492,22.890 +1779,55.726,240.900,461.065,330.750,614.250,244.710,467.168,58.023,135.000,58.023,326.271,325.976,340.659,23.419,25.456,23.419 +1780,55.757,237.196,462.851,335.054,611.587,241.510,468.996,54.923,132.825,54.923,325.885,326.573,340.901,23.704,25.813,23.704 +1781,55.788,233.740,465.549,339.259,608.365,238.228,471.237,51.727,130.601,51.727,325.976,326.697,340.467,24.265,25.815,24.265 +1782,55.817,233.740,465.549,339.259,608.365,238.228,471.237,51.727,130.601,51.727,325.976,326.697,340.467,24.265,25.815,24.265 +1783,55.846,230.057,468.429,343.761,604.921,234.883,473.832,48.225,128.066,48.225,326.106,326.950,340.594,24.531,25.402,24.531 +1784,55.878,226.189,471.234,348.383,600.915,231.560,476.508,44.478,126.064,44.478,325.982,326.725,341.038,25.532,26.245,25.532 +1785,55.911,222.133,475.174,352.698,595.968,227.681,479.926,40.579,123.851,40.579,326.264,326.443,340.873,25.195,25.512,25.195 +1786,55.942,218.301,479.652,357.405,590.713,224.167,483.966,36.332,121.569,36.332,326.597,326.648,341.160,25.635,25.684,25.635 +1787,55.974,214.315,484.357,361.393,584.939,220.565,488.239,31.840,119.511,31.840,326.584,326.987,341.301,26.095,25.648,26.095 +1788,56.007,210.471,490.128,365.531,577.970,216.868,493.404,27.117,117.613,27.117,327.362,326.030,341.736,25.532,25.915,25.532 +1789,56.039,206.672,496.105,369.292,570.235,213.395,498.826,22.036,115.278,22.036,328.095,325.153,342.601,25.999,26.098,25.999 +1790,56.070,203.185,503.672,372.694,561.454,209.981,505.671,16.390,113.499,16.390,329.514,324.045,343.682,26.129,26.196,26.129 +1791,56.101,200.685,511.521,375.017,552.207,207.418,512.795,10.713,111.801,10.713,330.303,323.110,344.008,25.626,26.183,25.626 +1792,56.131,198.252,520.028,376.659,542.099,205.247,520.620,4.841,109.855,4.841,331.186,322.192,345.226,24.998,26.545,24.998 +1793,56.161,197.021,532.233,377.016,531.340,203.862,532.039,178.375,108.277,178.375,332.519,320.678,346.208,18.957,26.326,18.957 +1794,56.193,196.905,542.274,376.130,520.099,203.173,541.360,171.703,106.314,171.703,335.761,319.639,348.430,19.481,26.334,19.481 +1795,56.224,198.123,553.253,373.693,508.549,204.106,551.598,164.539,104.381,164.539,337.436,317.995,349.851,20.035,26.005,20.035 +1796,56.256,200.766,564.033,369.736,496.841,206.180,561.773,157.345,102.680,157.345,340.159,316.293,351.893,19.604,25.512,19.604 +1797,56.286,200.766,564.033,369.736,496.841,206.180,561.773,157.345,102.680,157.345,340.159,316.293,351.893,19.604,25.512,19.604 +1798,56.315,204.553,575.300,362.565,484.916,209.406,572.460,149.676,100.954,149.676,341.562,314.993,352.808,19.414,22.486,19.414 +1799,56.346,210.561,585.979,355.027,473.838,214.858,582.588,141.720,99.462,141.720,343.860,313.344,354.806,19.222,21.372,19.222 +1800,56.377,215.714,598.729,346.709,463.944,221.956,592.146,133.479,97.878,133.479,339.592,311.093,357.736,19.354,22.995,19.354 +1801,56.409,225.640,609.010,335.943,455.331,230.970,601.459,125.218,96.423,125.218,341.348,310.541,359.835,19.607,22.323,19.607 +1802,56.446,237.588,617.300,323.094,447.963,241.523,609.469,116.674,95.194,116.674,344.345,308.817,361.873,19.862,20.461,19.862 +1803,56.488,264.176,649.479,294.699,439.529,269.090,620.996,99.789,92.358,99.789,308.550,305.647,366.358,25.146,18.296,25.146 +1804,56.520,264.176,649.479,294.699,439.529,269.090,620.996,99.789,92.358,99.789,308.550,305.647,366.358,25.146,18.296,25.146 +1805,56.549,279.000,698.000,280.123,438.534,279.000,621.767,90.000,90.905,90.000,214.000,305.183,366.466,22.000,18.408,22.000 +1806,56.581,294.635,633.223,265.400,440.030,292.784,622.082,80.571,89.182,80.571,345.571,304.183,368.158,27.291,19.284,27.291 +1807,56.616,312.953,625.828,250.439,443.966,310.716,618.699,72.575,87.912,72.575,354.587,304.199,369.531,21.798,19.274,21.798 +1808,56.648,327.836,618.334,236.935,450.034,324.814,612.335,63.260,86.520,63.260,355.533,303.203,368.969,22.722,19.167,22.722 +1809,56.678,341.180,608.870,224.793,458.017,337.667,604.007,54.154,85.236,54.154,356.879,303.780,368.877,24.179,18.851,24.179 +1810,56.710,352.547,597.973,214.349,467.638,348.575,593.962,45.282,83.835,45.282,357.123,304.120,368.413,25.045,18.426,25.045 +1811,56.741,361.802,585.748,205.131,478.350,357.261,582.374,36.615,82.439,36.615,356.992,305.366,368.306,26.316,19.344,26.316 +1812,56.772,368.120,572.973,198.041,490.252,363.344,570.416,28.156,80.870,28.156,356.304,306.302,367.139,25.792,19.888,25.792 +1813,56.803,372.716,560.038,193.942,502.139,368.183,558.383,20.059,79.469,20.059,356.270,307.766,365.923,25.813,20.646,25.813 +1814,56.834,371.645,546.468,191.025,514.265,367.121,545.480,12.319,78.224,12.319,348.139,308.501,357.401,25.794,20.703,25.794 +1815,56.865,369.629,534.694,189.535,526.400,365.077,534.302,4.924,76.681,4.924,342.007,310.003,351.146,25.401,21.522,25.401 +1816,56.895,368.573,525.954,189.566,538.018,364.324,526.113,177.852,75.094,177.852,341.660,311.450,350.163,20.860,22.219,20.860 +1817,56.927,369.207,515.822,189.925,549.315,364.601,516.542,171.109,73.202,171.109,345.961,313.010,355.284,20.605,22.217,20.605 +1818,56.960,369.052,506.060,192.445,559.373,364.645,507.275,164.592,71.892,164.592,350.561,314.651,359.704,20.048,21.286,20.048 +1819,56.992,364.490,497.475,195.235,569.019,360.102,499.194,158.611,70.271,158.611,348.529,315.952,357.955,19.430,20.748,19.430 +1820,57.024,359.978,489.981,198.898,577.953,355.562,492.247,152.845,68.614,152.845,347.098,317.352,357.024,19.521,20.251,19.521 +1821,57.055,354.981,483.119,202.987,585.865,350.577,485.928,147.462,66.879,147.462,345.903,318.818,356.350,19.230,20.068,19.230 +1822,57.085,354.981,483.119,202.987,585.865,350.577,485.928,147.462,66.879,147.462,345.903,318.818,356.350,19.230,20.068,19.230 +1823,57.113,349.889,477.268,207.963,593.047,345.596,480.585,142.306,64.819,142.306,344.497,320.360,355.346,19.279,20.436,19.279 +1824,57.144,344.482,472.205,213.124,599.428,340.445,475.902,137.519,63.004,137.519,343.695,322.018,354.644,19.175,20.410,19.175 +1825,57.177,339.030,468.129,218.780,605.243,335.312,472.116,133.004,61.137,133.004,342.771,323.631,353.675,18.703,20.936,18.703 +1826,57.210,334.134,464.207,224.316,609.220,330.679,468.527,128.660,59.349,128.660,341.552,322.769,352.615,18.897,21.221,18.897 +1827,57.244,328.529,461.643,229.648,613.119,325.685,465.775,124.542,57.265,124.542,341.612,323.794,351.645,19.118,21.390,19.118 +1828,57.277,323.507,458.932,235.165,616.850,320.769,463.556,120.622,55.366,120.622,340.296,324.515,351.043,18.916,21.563,18.916 +1829,57.310,318.545,456.988,240.348,619.979,316.055,461.901,116.881,52.853,116.881,339.437,325.165,350.454,18.965,21.787,18.965 +1830,57.344,313.793,454.972,245.877,622.458,311.516,460.255,113.311,50.599,113.311,338.371,325.759,349.876,19.472,21.747,19.472 +1831,57.378,309.124,453.909,251.141,624.587,307.243,459.083,109.983,48.215,109.983,338.411,326.455,349.423,19.138,21.862,19.138 +1832,57.410,304.624,452.834,255.125,627.381,302.769,459.001,106.740,46.397,106.740,337.056,326.241,349.935,19.182,25.241,19.182 +1833,57.442,300.271,451.853,260.409,628.503,298.770,458.039,103.639,43.264,103.639,336.672,326.833,349.404,19.150,25.273,19.150 +1834,57.474,295.908,451.549,265.181,629.721,294.752,457.737,100.584,41.186,100.584,336.389,327.465,348.980,19.218,25.870,19.218 +1835,57.507,292.213,450.972,270.234,630.208,291.332,457.285,97.943,38.706,97.943,335.609,327.965,348.358,18.749,25.271,18.749 +1836,57.538,288.344,450.213,275.051,630.737,287.713,457.158,95.194,35.851,95.194,334.077,327.830,348.025,18.650,25.618,18.650 +1837,57.569,284.343,450.308,279.991,630.744,284.057,457.230,92.366,33.024,92.366,333.212,328.125,347.068,18.612,25.908,18.612 +1838,57.600,280.127,450.549,284.532,630.582,280.213,457.298,89.275,30.097,89.275,333.151,328.452,346.650,18.366,26.583,18.366 +1839,57.631,276.719,450.692,289.401,629.693,277.108,457.352,86.658,27.181,86.658,332.186,328.755,345.529,18.902,26.927,18.902 +1840,57.662,273.367,451.488,293.926,629.168,274.025,457.735,83.991,23.749,83.991,332.584,329.367,345.148,19.576,27.020,19.576 +1841,57.692,269.333,452.311,298.629,628.363,270.303,458.497,81.085,20.225,81.085,331.883,328.865,344.408,19.119,27.113,19.119 +1842,57.723,265.734,452.574,303.230,626.912,267.041,458.867,78.269,16.470,78.269,330.930,329.292,343.784,19.770,27.285,19.770 +1843,57.753,262.032,453.279,308.495,625.521,263.733,459.764,75.303,12.352,75.303,329.969,328.087,343.380,20.345,27.159,20.345 +1844,57.782,262.032,453.279,308.495,625.521,263.733,459.764,75.303,12.352,75.303,329.969,328.087,343.380,20.345,27.159,20.345 +1845,57.811,258.259,454.192,313.042,623.888,260.322,460.667,72.324,9.002,72.324,329.455,328.410,343.046,21.045,27.479,21.045 +1846,57.843,254.607,455.526,317.926,621.886,257.000,461.862,69.309,4.792,69.309,328.911,328.035,342.457,21.614,26.959,21.614 +1847,57.875,250.610,456.781,322.979,619.380,253.375,463.019,66.090,0.855,66.090,328.660,326.232,342.307,22.188,27.355,22.188 +1848,57.907,246.524,458.503,327.905,617.412,249.958,465.173,62.755,176.558,62.755,327.060,326.733,342.065,22.883,27.139,22.883 +1849,57.938,242.353,460.479,332.796,614.379,246.183,466.926,59.289,172.826,59.289,327.015,326.709,342.014,23.500,27.080,23.500 +1850,57.969,238.247,463.015,337.346,610.731,242.287,468.919,55.620,168.690,55.620,327.126,326.337,341.433,23.934,27.064,23.934 +1851,57.999,233.734,465.605,342.270,607.202,238.493,471.635,51.718,163.926,51.718,326.056,326.236,341.419,24.321,26.661,24.321 +1852,58.029,229.165,469.218,347.276,602.556,234.237,474.775,47.616,159.326,47.616,326.121,325.960,341.168,23.974,26.621,23.974 +1853,58.060,225.069,472.836,352.195,597.471,230.570,478.023,43.315,154.712,43.315,325.752,325.680,340.873,24.904,26.762,24.904 +1854,58.091,220.475,476.786,356.879,592.081,226.551,481.669,38.787,149.708,38.787,325.918,325.502,341.506,25.972,26.759,25.972 +1855,58.120,215.975,482.053,361.560,585.658,222.315,486.324,33.969,145.008,33.969,326.678,324.907,341.967,25.298,27.117,25.298 +1856,58.150,215.975,482.053,361.560,585.658,222.315,486.324,33.969,145.008,33.969,326.678,324.907,341.967,25.298,27.117,25.298 +1857,58.179,211.917,487.838,365.506,578.600,218.437,491.436,28.893,139.899,28.893,326.861,324.725,341.755,25.961,26.852,25.961 +1858,58.210,207.753,494.621,369.321,570.808,214.435,497.529,23.515,134.549,23.515,327.949,323.244,342.524,25.626,26.691,25.626 +1859,58.242,203.874,501.824,372.440,562.125,210.820,504.034,17.650,129.560,17.650,328.673,323.569,343.251,25.902,26.581,25.902 +1860,58.275,200.848,510.298,374.583,552.901,207.477,511.654,11.560,124.472,11.560,330.431,323.645,343.964,25.718,26.245,25.718 +1861,58.306,198.219,519.168,376.491,542.433,205.252,519.829,5.368,118.980,5.368,331.079,321.587,345.206,25.285,26.311,25.285 +1862,58.338,196.946,529.079,376.843,531.431,203.748,528.928,178.727,113.629,178.727,332.385,320.770,345.992,24.194,26.168,24.194 +1863,58.369,196.973,542.255,376.200,519.900,203.293,541.337,171.737,108.435,171.737,335.612,319.074,348.386,19.402,26.247,19.402 +1864,58.400,198.194,553.483,373.756,508.172,204.108,551.830,164.384,102.804,164.384,337.996,317.805,350.277,19.998,26.196,19.998 +1865,58.430,201.070,564.488,369.465,496.123,206.426,562.186,156.739,97.263,156.739,340.091,316.158,351.751,19.443,24.838,19.443 +1866,58.460,206.077,575.615,363.096,484.925,210.087,573.198,148.912,91.790,148.912,343.862,314.190,353.227,19.445,23.676,19.445 +1867,58.491,212.146,586.515,355.176,473.524,215.669,583.637,140.758,85.802,140.758,346.307,312.435,355.406,19.013,23.130,19.013 +1868,58.524,220.021,596.929,346.929,463.512,223.318,593.304,132.286,80.230,132.286,348.578,312.050,358.378,19.375,24.709,19.375 +1869,58.554,220.021,596.929,346.929,463.512,223.318,593.304,132.286,80.230,132.286,348.578,312.050,358.378,19.375,24.709,19.375 +1870,58.582,229.974,606.322,335.850,454.322,232.583,602.427,123.818,74.358,123.818,351.665,310.151,361.042,19.318,24.575,19.318 +1871,58.614,241.486,614.699,323.322,447.375,243.594,610.216,115.187,68.782,115.187,352.668,308.386,362.577,19.742,23.689,19.742 +1872,58.645,253.911,621.258,309.798,441.624,255.280,616.428,105.825,62.571,105.825,356.051,306.902,366.092,22.098,23.493,22.098 +1873,58.676,266.775,625.033,295.500,438.500,267.338,620.286,96.763,56.310,96.763,358.116,305.917,367.675,25.768,23.020,25.768 +1874,58.708,285.910,626.412,280.657,437.867,285.843,621.919,89.150,49.764,89.150,359.228,304.591,368.216,25.086,21.962,25.086 +1875,58.740,300.257,625.535,265.573,439.568,299.510,621.079,80.484,42.965,80.484,360.211,304.366,369.247,26.304,20.339,26.304 +1876,58.770,313.636,622.113,251.599,442.799,312.180,617.772,71.457,35.998,71.457,361.153,304.377,370.310,22.035,20.295,22.035 +1877,58.800,327.358,615.761,238.879,448.051,325.230,611.619,62.806,28.673,62.806,360.589,304.228,369.902,22.945,20.385,22.945 +1878,58.831,339.645,607.535,227.623,454.084,336.864,603.647,54.422,21.073,54.422,360.841,303.916,370.401,24.132,21.573,24.132 +1879,58.861,349.816,597.926,216.954,462.703,346.734,594.697,46.332,12.920,46.332,361.250,304.989,370.178,25.153,20.723,25.153 +1880,58.892,358.234,587.552,207.911,472.139,354.705,584.743,38.520,4.477,38.520,360.937,305.258,369.958,25.728,20.038,25.728 +1881,58.924,363.862,575.903,200.618,481.909,360.760,574.039,30.995,175.706,30.995,362.200,306.788,369.439,25.597,20.107,25.597 +1882,58.955,368.737,565.322,194.217,492.421,364.546,563.465,23.893,166.715,23.893,359.848,309.206,369.015,25.597,19.816,25.597 +1883,58.985,368.737,565.322,194.217,492.421,364.546,563.465,23.893,166.715,23.893,359.848,309.206,369.015,25.597,19.816,25.597 +1884,59.014,371.204,554.680,189.539,502.595,366.611,553.254,17.247,157.638,17.247,358.643,310.692,368.261,25.729,21.423,25.729 +1885,59.046,369.080,543.699,186.670,513.279,364.440,542.805,10.899,148.586,10.899,350.841,312.679,360.292,25.702,21.943,25.702 +1886,59.076,367.908,534.690,184.863,523.680,362.689,534.231,5.032,139.254,5.032,345.656,314.559,356.134,25.386,21.854,25.386 +1887,59.108,366.976,526.932,184.298,533.664,361.655,526.982,179.468,129.764,179.468,344.180,316.124,354.823,23.330,21.787,23.330 +1888,59.140,367.446,520.961,184.494,542.705,361.962,521.508,174.312,120.280,174.312,346.366,317.295,357.389,20.357,22.743,20.357 +1889,59.170,367.834,514.109,185.996,551.617,362.822,515.045,169.421,110.869,169.421,350.874,318.348,361.070,20.249,22.694,20.249 +1890,59.201,367.935,507.037,189.358,559.566,363.493,508.231,164.956,100.491,164.956,353.784,318.693,362.983,19.948,19.848,19.948 +1891,59.232,365.679,500.689,191.979,566.027,360.755,502.396,160.883,90.790,160.883,350.194,318.163,360.616,20.056,19.377,20.056 +1892,59.262,363.074,495.617,194.578,571.757,358.335,497.615,157.145,81.254,157.145,349.108,318.256,359.395,19.397,19.463,19.397 +1893,59.293,360.731,490.915,197.996,576.489,356.225,493.138,153.739,71.358,153.739,347.506,317.813,357.555,19.370,20.092,19.370 +1894,59.324,358.331,486.702,201.009,580.635,354.048,489.128,150.474,61.444,150.474,346.675,317.318,356.521,19.782,20.178,19.782 +1895,59.355,355.799,483.181,203.441,583.786,351.696,485.767,147.783,51.734,147.783,345.671,315.979,355.371,19.331,21.493,19.331 +1896,59.385,355.799,483.181,203.441,583.786,351.696,485.767,147.783,51.734,147.783,345.671,315.979,355.371,19.331,21.493,19.331 +1897,59.414,353.269,480.327,206.005,585.676,349.758,482.767,145.207,41.581,145.207,344.997,314.830,353.548,19.320,22.477,19.320 +1898,59.444,351.166,477.545,206.659,588.932,346.915,480.753,142.958,31.686,142.958,343.583,315.246,354.235,19.533,25.328,19.533 +1899,59.477,349.035,475.400,208.456,590.031,345.267,478.445,141.066,21.161,141.066,343.400,314.757,353.090,18.998,23.856,18.998 +1900,59.510,347.787,473.082,209.887,589.551,343.996,476.337,139.351,11.229,139.351,341.008,314.963,351.002,19.512,27.089,19.512 +1901,59.543,347.102,470.828,210.000,592.000,341.940,475.488,137.929,0.000,137.929,338.114,314.000,352.021,19.458,22.000,19.458 +1902,59.574,347.011,468.579,209.649,591.951,340.775,474.423,136.858,169.405,136.858,334.996,316.546,352.089,19.250,23.577,19.250 +1903,59.607,348.592,465.177,209.778,595.169,339.115,474.351,135.929,158.484,135.929,327.542,318.114,353.922,19.376,20.691,19.376 +1904,59.638,354.811,457.318,209.863,596.777,337.924,473.860,135.591,148.392,135.591,307.714,319.699,354.993,18.209,19.916,18.209 +1905,59.670,393.500,418.000,209.520,598.572,336.987,474.513,135.000,137.726,135.000,195.869,321.403,355.712,17.678,19.440,17.678 +1906,59.701,342.366,469.372,209.217,598.785,336.998,474.768,134.846,127.318,134.846,340.855,323.778,356.078,18.233,21.049,18.233 +1907,59.732,340.328,470.834,209.079,600.266,336.299,474.884,134.847,117.306,134.847,345.802,324.318,357.227,19.064,20.635,19.064 +1908,59.763,341.363,470.839,209.625,601.191,336.934,475.219,135.317,107.021,135.317,345.743,325.264,358.200,19.189,19.573,19.189 +1909,59.793,341.796,471.724,210.253,601.353,337.677,475.712,135.929,96.710,135.929,346.414,325.578,357.882,19.330,19.045,19.330 +1910,59.823,342.703,472.447,210.458,600.442,338.787,476.115,136.868,86.547,136.868,346.575,324.040,357.305,18.974,19.206,18.974 +1911,59.853,342.703,472.447,210.458,600.442,338.787,476.115,136.868,86.547,136.868,346.575,324.040,357.305,18.974,19.206,18.974 +1912,59.881,344.417,473.137,210.588,598.853,340.340,476.815,137.948,75.964,137.948,345.193,323.057,356.175,19.233,19.645,19.233 +1913,59.913,346.444,474.033,210.449,596.568,342.326,477.581,139.254,65.524,139.254,344.281,321.691,355.151,19.488,20.043,19.488 +1914,59.944,348.485,475.481,209.328,593.177,344.528,478.688,140.969,55.087,140.969,344.061,319.181,354.246,19.232,21.561,19.232 +1915,59.977,350.923,477.383,207.689,588.796,347.033,480.324,142.918,44.390,142.918,343.384,316.157,353.137,19.165,22.393,19.165 +1916,60.009,353.180,480.121,204.458,585.828,348.979,483.056,145.061,34.267,145.061,344.411,314.530,354.662,19.270,25.882,19.270 +1917,60.041,355.894,482.977,201.742,580.429,351.661,485.670,147.529,22.932,147.529,344.674,313.696,354.710,19.788,23.874,19.788 +1918,60.072,360.447,484.892,199.233,574.403,354.312,488.413,150.141,11.991,150.141,340.461,312.827,354.609,19.690,22.316,19.690 +1919,60.102,365.361,487.691,195.632,569.870,356.250,492.286,153.238,1.831,153.238,336.286,311.480,356.695,19.209,21.240,19.209 +1920,60.132,375.277,489.616,192.596,565.418,358.269,496.959,156.649,172.537,156.649,321.427,312.959,358.476,19.486,21.619,19.486 +1921,60.162,421.297,478.809,189.874,560.827,360.033,501.314,159.829,163.923,159.829,229.955,313.598,360.489,18.620,20.057,18.620 +1922,60.193,369.812,504.206,188.001,554.624,362.295,506.461,163.301,156.057,163.301,345.871,315.470,361.566,18.869,22.515,18.869 +1923,60.224,368.976,510.894,185.567,549.307,363.285,512.159,167.471,148.022,167.471,351.427,315.029,363.088,19.741,23.401,19.741 +1924,60.254,367.055,517.891,184.369,542.848,362.340,518.558,171.951,139.175,171.951,349.712,315.526,359.238,19.943,23.087,19.943 +1925,60.285,367.055,517.891,184.369,542.848,362.340,518.558,171.951,139.175,171.951,349.712,315.526,359.238,19.943,23.087,19.943 +1926,60.313,366.976,524.402,184.495,536.229,361.846,524.605,177.739,130.179,177.739,345.073,315.748,355.342,23.022,21.563,23.022 +1927,60.345,367.408,530.638,186.008,528.478,362.847,530.449,2.370,120.518,2.370,344.409,315.061,353.539,24.600,20.449,24.600 +1928,60.381,369.236,539.245,187.683,519.657,364.575,538.587,8.036,111.340,8.036,346.191,313.465,355.604,25.302,20.457,25.302 +1929,60.412,371.265,549.441,190.811,510.103,366.952,548.363,14.036,102.112,14.036,351.434,311.639,360.324,24.981,20.713,24.981 +1930,60.442,372.247,560.494,194.067,499.955,367.715,558.806,20.433,92.770,20.433,356.863,308.510,366.536,25.264,18.978,25.264 +1931,60.474,368.966,571.160,198.812,489.613,364.279,568.740,27.300,83.330,27.300,356.108,306.008,366.657,25.598,18.379,25.598 +1932,60.505,363.054,582.922,204.962,479.868,358.954,580.084,34.695,74.055,34.695,357.337,304.940,367.310,24.603,18.956,24.603 +1933,60.538,357.105,594.495,212.936,470.308,352.302,590.172,41.987,64.253,41.987,354.626,304.636,367.550,24.231,19.560,24.231 +1934,60.570,357.195,614.835,221.119,461.617,343.858,599.026,49.849,54.989,49.849,326.974,302.952,368.342,23.209,19.056,23.209 +1935,60.600,337.192,616.538,231.500,453.500,331.769,608.404,56.310,45.000,56.310,349.461,302.642,369.014,20.801,18.385,20.801 +1936,60.631,324.656,617.117,242.818,446.342,322.760,613.070,64.904,35.218,64.904,360.852,303.047,369.790,23.007,18.934,23.007 +1937,60.661,311.170,622.484,255.107,440.723,309.864,618.163,73.183,25.427,73.183,362.360,304.090,371.387,22.238,20.017,22.238 +1938,60.692,294.658,625.472,268.089,437.187,293.860,620.913,80.074,15.843,80.074,361.580,305.751,370.837,26.596,20.800,26.596 +1939,60.723,285.231,626.469,281.262,436.640,285.194,621.320,89.579,6.340,89.579,359.108,307.000,369.407,25.058,18.442,25.058 +1940,60.753,267.273,625.250,294.066,437.191,267.879,619.854,96.404,176.820,96.404,358.027,308.968,368.888,25.179,18.028,25.179 +1941,60.782,267.273,625.250,294.066,437.191,267.879,619.854,96.404,176.820,96.404,358.027,308.968,368.888,25.179,18.028,25.179 +1942,60.812,255.606,621.662,307.161,438.215,257.180,615.768,104.948,167.341,104.948,356.671,311.731,368.872,22.034,19.493,22.034 +1943,60.844,244.286,616.254,318.704,441.773,246.840,610.381,113.507,157.880,113.507,353.750,313.464,366.559,20.215,19.404,20.215 +1944,60.878,233.268,610.057,329.423,447.064,236.901,604.055,121.185,148.346,121.185,350.395,314.196,364.427,19.834,20.264,19.834 +1945,60.910,222.702,604.155,338.602,453.695,228.317,597.163,128.768,139.108,128.768,343.902,314.972,361.835,19.112,22.226,19.112 +1946,60.942,177.900,631.506,347.272,462.374,221.044,589.670,135.881,130.692,135.881,238.278,314.981,358.472,18.905,19.435,18.905 +1947,60.974,201.506,591.284,354.989,472.118,214.571,581.315,142.655,122.005,142.655,322.875,315.031,355.744,19.242,21.518,19.242 +1948,61.005,203.660,576.308,362.470,482.466,210.098,572.502,149.412,111.371,149.412,339.011,315.124,353.969,19.329,24.131,19.329 +1949,61.036,201.218,565.837,368.012,492.591,206.801,563.338,155.882,101.094,155.882,339.859,316.137,352.093,19.236,24.879,19.236 +1950,61.067,199.424,556.851,372.296,503.036,204.701,555.140,162.036,90.895,162.036,339.894,316.243,350.989,19.545,25.372,19.545 +1951,61.097,197.998,548.313,375.569,513.369,203.929,547.036,167.842,79.970,167.842,337.627,320.227,349.760,19.822,25.656,19.822 +1952,61.127,197.796,539.741,378.226,522.866,204.215,538.997,173.387,69.829,173.387,336.499,323.190,349.423,19.449,25.651,19.449 +1953,61.157,197.878,529.514,380.070,531.521,205.381,529.347,178.727,60.078,178.727,334.184,325.719,349.194,23.017,24.717,23.017 +1954,61.187,197.878,529.514,380.070,531.521,205.381,529.347,178.727,60.078,178.727,334.184,325.719,349.194,23.017,24.717,23.017 +1955,61.215,198.182,522.859,380.352,539.711,206.330,523.267,2.862,50.599,2.862,332.934,328.298,349.251,24.769,22.161,24.769 +1956,61.246,198.717,516.006,380.003,546.996,208.059,517.225,7.431,40.930,7.431,329.858,330.387,348.701,25.350,19.738,25.350 +1957,61.278,199.058,510.212,379.392,553.010,209.824,512.365,11.310,31.054,11.310,326.533,331.341,348.492,25.887,20.210,25.887 +1958,61.311,191.515,504.340,378.152,557.116,210.879,510.027,16.368,21.768,16.368,307.165,332.397,347.527,18.331,20.883,18.331 +1959,61.344,186.396,494.824,377.067,561.497,213.420,503.481,17.763,12.236,17.763,290.336,331.558,347.090,23.565,21.901,23.565 +1960,61.377,202.365,493.141,374.519,566.065,215.281,498.625,23.005,2.437,23.005,317.793,329.850,345.859,25.634,21.810,25.634 +1961,61.410,207.572,490.816,371.133,571.732,216.801,495.275,25.787,173.853,25.787,323.947,328.516,344.447,25.495,23.663,25.495 +1962,61.443,210.756,488.026,368.431,575.754,218.444,492.173,28.346,164.291,28.346,325.903,327.602,343.373,25.870,25.209,25.870 +1963,61.474,213.257,485.869,365.681,579.316,219.761,489.705,30.530,154.983,30.530,327.319,326.588,342.422,25.753,26.400,25.753 +1964,61.506,214.552,483.345,363.289,582.913,221.139,487.533,32.448,144.975,32.448,326.653,326.301,342.264,25.848,27.010,25.848 +1965,61.538,215.615,482.077,360.717,585.720,221.799,486.199,33.690,135.313,33.690,326.718,325.318,341.582,25.516,26.267,25.516 +1966,61.569,217.072,480.288,359.079,588.637,223.404,484.787,35.395,125.767,35.395,325.965,326.659,341.501,25.571,26.329,25.571 +1967,61.600,218.456,479.507,357.500,591.500,224.442,483.938,36.511,116.565,36.511,326.987,328.702,341.883,25.281,25.491,25.281 +1968,61.630,219.465,478.640,356.447,592.779,225.202,483.011,37.304,106.390,37.304,327.415,328.442,341.841,25.227,24.323,25.227 +1969,61.661,220.324,478.573,357.080,594.440,226.138,483.084,37.816,98.130,37.816,328.717,330.077,343.435,25.079,24.324,25.079 +1970,61.694,220.342,477.937,357.399,595.488,226.806,482.983,37.972,89.519,37.972,327.939,331.089,344.340,25.707,23.209,25.707 +1971,61.724,220.152,478.180,357.932,595.595,226.808,483.375,37.972,80.538,37.972,327.939,332.250,344.826,25.092,22.029,25.092 +1972,61.755,219.463,477.869,358.373,595.236,226.753,483.500,37.681,72.150,37.681,326.512,333.345,344.935,25.879,19.699,25.879 +1973,61.784,219.463,477.869,358.373,595.236,226.753,483.500,37.681,72.150,37.681,326.512,333.345,344.935,25.879,19.699,25.879 +1974,61.813,217.992,478.359,360.201,594.393,226.302,484.607,36.931,63.818,36.931,325.204,333.668,345.998,25.156,19.698,25.156 +1975,61.844,216.455,479.142,361.971,592.349,225.563,485.722,35.847,56.575,35.847,323.552,333.961,346.026,25.214,19.330,25.214 +1976,61.877,213.856,480.853,364.329,589.721,224.075,487.831,34.330,49.667,34.330,321.821,333.885,346.568,23.928,19.561,23.928 +1977,61.911,207.755,483.438,366.528,586.417,221.100,491.888,32.341,43.506,32.341,315.286,333.973,346.876,18.732,19.374,18.732 +1978,61.943,204.087,485.521,368.828,582.161,219.403,494.369,30.014,38.005,30.014,311.230,333.901,346.605,18.672,19.169,18.672 +1979,61.974,196.352,486.429,370.813,577.245,217.169,497.140,27.229,32.939,27.229,299.717,334.495,346.539,18.777,18.629,18.777 +1980,62.006,187.576,488.258,373.370,571.745,215.185,500.644,24.161,28.024,24.161,286.340,333.465,346.859,18.572,18.936,18.572 +1981,62.038,170.669,488.577,375.698,565.371,213.079,504.577,20.670,23.199,20.670,256.566,332.730,347.222,18.581,19.565,18.581 +1982,62.069,146.947,489.625,378.258,557.733,211.317,508.735,16.535,18.608,16.535,213.673,331.109,347.966,18.424,21.839,18.424 +1983,62.099,129.552,496.173,380.226,550.538,209.746,513.659,12.301,13.875,12.301,184.691,330.567,348.846,18.321,21.784,18.321 +1984,62.129,126.612,508.015,379.464,542.469,207.262,519.013,7.765,9.083,7.765,184.790,326.289,347.584,18.330,21.382,18.330 +1985,62.160,125.183,521.362,378.656,533.900,205.280,525.401,2.886,4.236,2.886,186.771,323.078,347.168,18.397,21.644,18.397 +1986,62.195,124.819,535.541,378.505,525.958,204.185,532.324,177.678,179.403,177.678,190.006,321.160,348.868,18.458,18.989,18.458 +1987,62.240,158.828,546.456,378.003,516.295,204.333,540.389,172.405,174.579,172.405,258.843,324.767,350.660,19.230,19.990,19.230 +1988,62.274,176.068,555.588,376.444,506.694,205.175,548.652,166.597,169.611,166.597,292.814,325.115,352.659,19.339,19.557,19.339 +1989,62.306,186.672,564.292,372.947,496.805,206.410,557.224,160.299,164.781,160.299,312.385,323.989,354.314,19.068,19.533,19.068 +1990,62.338,193.821,573.610,367.999,486.297,208.976,566.102,153.648,159.677,153.648,322.016,322.099,355.843,18.988,19.380,18.988 +1991,62.375,204.793,580.636,361.662,476.123,212.968,575.271,146.725,155.056,146.725,337.868,320.304,357.426,19.072,20.011,19.072 +1992,62.407,210.989,590.568,353.912,466.734,218.072,584.502,139.424,150.690,139.424,340.909,318.672,359.559,19.255,20.560,19.255 +1993,62.437,219.303,599.764,344.621,457.916,225.036,593.323,131.675,147.036,131.675,344.060,316.810,361.305,19.178,20.614,19.178 +1994,62.467,229.033,608.368,333.438,449.608,233.564,601.538,123.559,144.262,123.559,347.238,315.265,363.631,19.307,20.885,19.307 +1995,62.499,240.873,615.516,321.314,443.403,244.014,608.896,115.384,142.038,115.384,350.652,313.981,365.306,19.673,19.927,19.673 +1996,62.529,253.192,621.820,307.888,438.655,255.187,615.047,106.417,140.408,106.417,354.067,312.674,368.189,21.009,19.278,21.009 +1997,62.561,265.923,625.610,293.537,436.309,266.744,619.085,97.166,139.132,97.166,356.230,311.745,369.383,25.803,18.643,25.803 +1998,62.592,280.734,627.593,278.794,435.825,280.546,620.980,88.369,137.941,88.369,357.026,310.466,370.258,24.933,18.723,24.933 +1999,62.624,296.231,626.831,263.848,437.915,295.103,620.798,79.405,137.191,79.405,358.749,310.081,371.024,26.540,18.433,26.540 +2000,62.655,314.034,622.475,248.599,442.584,312.207,617.139,71.098,136.065,71.098,360.215,309.843,371.496,21.619,18.103,21.619 +2001,62.686,314.034,622.475,248.599,442.584,312.207,617.139,71.098,136.065,71.098,360.215,309.843,371.496,21.619,18.103,21.619 +2002,62.713,328.840,615.249,234.500,449.000,326.262,610.425,61.876,135.000,61.876,360.299,309.006,371.240,23.295,17.678,23.295 +2003,62.744,342.165,605.972,222.358,457.423,338.939,601.732,52.737,133.854,52.737,360.216,309.792,370.873,24.328,18.070,24.328 +2004,62.776,352.834,595.033,211.025,467.523,349.144,591.485,43.877,132.833,43.877,360.721,310.706,370.959,25.506,18.532,25.506 +2005,62.807,361.789,582.814,202.508,479.007,357.735,579.969,35.065,131.396,35.065,360.207,311.273,370.113,25.741,18.121,25.741 +2006,62.838,367.826,569.871,195.147,490.899,363.267,567.584,26.644,130.337,26.644,359.113,312.512,369.313,25.602,18.516,25.602 +2007,62.869,371.757,557.305,190.607,503.896,367.367,555.828,18.591,128.972,18.591,358.922,313.600,368.185,25.531,20.519,25.531 +2008,62.899,369.596,544.039,186.098,515.378,364.301,543.026,10.826,128.660,10.826,349.668,314.690,360.450,25.180,23.114,25.180 +2009,62.930,367.629,532.400,184.278,527.452,362.182,532.076,3.398,127.185,3.398,344.818,315.984,355.731,25.181,23.516,25.181 +2010,62.961,367.464,523.946,184.314,539.293,361.795,524.309,176.337,125.487,176.337,344.791,317.245,356.152,21.006,22.686,21.006 +2011,62.991,367.813,513.988,184.906,550.269,362.388,514.990,169.540,123.518,169.540,350.841,318.424,361.874,20.878,21.709,20.878 +2012,63.024,366.241,504.483,187.340,560.588,360.910,506.091,163.217,121.973,163.217,352.690,319.696,363.826,20.121,21.742,20.121 +2013,63.054,361.908,496.232,190.981,570.705,357.041,498.288,157.091,119.624,157.091,351.736,321.007,362.302,19.771,19.107,19.771 +2014,63.084,361.908,496.232,190.981,570.705,357.041,498.288,157.091,119.624,157.091,351.736,321.007,362.302,19.771,19.107,19.771 +2015,63.112,357.108,488.956,194.106,578.990,352.359,491.555,151.318,118.072,151.318,350.772,322.235,361.599,19.847,20.529,19.847 +2016,63.144,352.866,482.082,198.738,586.861,347.771,485.525,145.949,116.075,145.949,348.143,322.957,360.441,19.348,20.315,19.348 +2017,63.177,347.261,476.644,203.813,593.916,342.835,480.257,140.774,114.228,140.774,347.712,324.279,359.139,19.287,19.470,19.287 +2018,63.209,342.201,471.592,209.045,600.224,337.794,475.859,135.929,112.341,135.929,345.741,325.326,358.010,19.047,19.234,19.047 +2019,63.241,336.516,467.752,214.600,605.906,332.619,472.174,131.386,110.256,131.386,344.932,326.443,356.721,18.913,19.578,18.913 +2020,63.273,331.550,463.777,220.177,610.728,327.670,468.925,127.005,108.268,127.005,342.985,326.995,355.879,19.052,19.453,19.052 +2021,63.304,326.025,461.079,225.657,615.158,322.659,466.292,122.852,106.504,122.852,342.947,328.051,355.358,19.145,19.744,19.145 +2022,63.335,321.352,457.987,231.611,618.659,317.958,464.138,118.887,104.621,118.887,339.966,328.864,354.016,19.383,19.941,19.383 +2023,63.367,316.484,455.346,236.941,621.875,313.115,462.506,115.201,102.579,115.201,337.444,330.169,353.271,18.842,20.173,18.842 +2024,63.396,311.172,454.682,242.537,624.507,308.700,460.924,111.604,100.460,111.604,339.475,330.674,352.903,18.852,20.364,18.852 +2025,63.427,306.916,452.329,248.141,627.020,304.373,460.109,108.100,98.202,108.100,335.873,332.064,352.244,18.840,19.510,18.840 +2026,63.458,302.098,451.609,253.812,629.083,300.103,459.224,104.682,95.856,104.682,336.346,333.736,352.091,18.781,19.641,18.781 +2027,63.487,298.026,448.697,258.792,630.620,295.979,458.827,101.425,93.814,101.425,330.841,333.859,351.510,18.661,20.155,18.661 +2028,63.517,298.026,448.697,258.792,630.620,295.979,458.827,101.425,93.814,101.425,330.841,333.859,351.510,18.661,20.155,18.661 +2029,63.546,293.304,449.030,264.237,631.993,291.896,458.611,98.366,91.507,98.366,331.755,334.332,351.123,18.303,20.151,18.303 +2030,63.579,289.340,442.660,271.890,632.987,287.874,458.440,95.307,89.780,95.307,318.857,334.040,350.553,18.255,23.034,18.255 +2031,63.611,284.771,439.785,276.026,633.883,284.055,458.868,92.148,87.780,92.148,312.193,334.679,350.385,18.037,20.682,18.037 +2032,63.645,280.056,445.050,281.531,633.426,280.253,458.691,89.174,85.876,89.174,322.183,334.655,349.469,17.993,22.159,17.993 +2033,63.678,275.071,437.743,286.688,633.150,276.576,458.952,85.938,83.485,85.938,306.430,335.075,348.953,18.415,20.665,18.415 +2034,63.711,269.345,431.836,291.959,633.429,272.892,459.910,82.798,81.203,82.798,292.487,335.824,349.081,18.376,19.694,18.376 +2035,63.742,260.843,414.265,297.576,632.676,269.374,460.638,79.576,79.205,79.576,254.299,335.727,348.602,18.570,20.304,18.570 +2036,63.773,246.139,379.898,302.911,631.636,265.153,461.656,76.908,76.987,76.908,180.350,335.941,348.230,17.895,19.885,17.895 +2037,63.804,237.540,381.513,308.542,630.124,261.319,462.755,73.686,74.827,73.686,178.488,336.098,347.790,17.837,19.630,17.837 +2038,63.834,233.048,395.733,314.087,627.849,257.406,463.938,70.346,72.681,70.346,202.004,335.025,346.852,17.759,19.186,17.759 +2039,63.865,235.585,423.184,319.669,625.795,253.659,465.545,66.894,70.463,66.894,254.484,335.322,346.597,17.979,19.274,17.979 +2040,63.897,234.388,437.040,325.324,623.070,249.715,467.498,63.287,68.443,63.287,277.715,335.370,345.910,18.038,19.175,18.038 +2041,63.927,231.909,446.004,331.494,620.003,245.740,469.627,59.651,66.595,59.651,291.446,335.243,346.194,18.431,19.286,18.431 +2042,63.959,228.727,453.304,336.938,616.552,241.575,472.182,55.763,64.440,55.763,300.338,335.359,346.010,18.199,19.572,18.199 +2043,63.989,225.948,460.067,343.194,612.159,237.773,475.046,51.710,62.504,51.710,307.715,335.122,345.883,18.755,20.241,18.755 +2044,64.019,225.948,460.067,343.194,612.159,237.773,475.046,51.710,62.504,51.710,307.715,335.122,345.883,18.755,20.241,18.755 +2045,64.047,223.055,466.609,348.830,607.313,233.810,478.293,47.372,60.470,47.372,313.887,334.986,345.649,19.021,20.208,19.021 +2046,64.078,221.595,471.046,354.345,601.788,231.287,480.037,42.852,58.513,42.852,319.600,334.770,346.039,24.413,20.040,24.413 +2047,64.109,217.777,476.390,359.759,595.498,227.319,483.850,38.019,56.529,38.019,321.984,334.507,346.208,25.324,19.841,25.324 +2048,64.141,214.024,482.523,364.868,588.239,223.250,488.506,32.961,54.655,32.961,324.178,333.857,346.170,25.407,20.276,25.407 +2049,64.171,209.779,488.694,369.563,580.452,219.379,493.722,27.646,52.765,27.646,324.889,333.433,346.563,25.984,20.031,25.984 +2050,64.202,206.103,496.241,373.827,571.543,215.433,499.973,21.801,51.082,21.801,327.195,332.988,347.292,25.997,20.938,25.997 +2051,64.233,202.708,504.274,377.132,561.749,211.915,506.904,15.945,49.205,15.945,328.704,331.902,347.855,25.412,20.938,25.412 +2052,64.262,199.649,513.108,379.779,551.163,208.879,514.646,9.462,47.406,9.462,330.442,331.169,349.156,25.646,21.919,25.646 +2053,64.294,197.747,522.753,380.677,540.285,206.569,523.211,2.974,45.830,2.974,331.851,329.580,349.519,24.953,20.740,24.953 +2054,64.328,196.817,535.806,380.495,528.505,204.975,535.251,176.105,43.939,176.105,334.791,328.277,351.146,19.534,21.170,19.534 +2055,64.359,197.885,546.882,378.392,516.223,204.886,545.501,168.845,42.166,168.845,337.515,326.591,351.786,19.843,20.922,19.843 +2056,64.390,199.973,557.990,374.854,503.991,206.037,555.921,161.166,40.752,161.166,340.270,325.399,353.084,19.509,19.922,19.509 +2057,64.419,199.973,557.990,374.854,503.991,206.037,555.921,161.166,40.752,161.166,340.270,325.399,353.084,19.509,19.922,19.509 +2058,64.447,203.705,569.418,369.461,491.498,208.784,566.867,153.327,39.226,153.327,343.452,323.445,354.820,19.487,20.299,19.487 +2059,64.479,208.971,580.814,362.967,478.334,213.882,577.378,145.027,37.763,145.027,345.881,321.698,357.869,19.456,23.371,19.456 +2060,64.512,215.991,591.877,354.014,467.180,220.307,587.793,136.581,36.539,136.581,348.154,319.399,360.038,19.335,23.485,19.335 +2061,64.545,225.119,601.704,343.221,456.692,228.680,597.122,127.854,35.628,127.854,350.734,316.890,362.339,19.527,23.653,19.527 +2062,64.576,236.296,611.058,330.968,448.503,239.119,605.991,119.124,34.484,119.124,352.959,313.961,364.559,19.842,23.629,19.842 +2063,64.608,248.959,617.897,316.769,441.846,250.803,612.846,110.048,33.690,110.048,355.749,312.296,366.504,19.995,23.852,19.995 +2064,64.640,265.332,624.196,301.949,437.860,266.412,618.930,101.592,32.640,101.592,358.283,309.921,369.036,25.294,23.264,25.294 +2065,64.671,280.973,625.876,285.382,437.377,281.170,621.432,92.541,31.477,92.541,359.223,308.419,368.121,27.086,19.598,27.086 +2066,64.702,296.390,625.756,270.262,437.716,295.847,621.100,83.360,30.682,83.360,360.849,307.128,370.225,27.628,20.342,27.628 +2067,64.733,310.205,622.813,254.948,441.333,308.994,618.717,73.525,29.624,73.525,362.315,304.865,370.857,22.690,19.653,22.690 +2068,64.763,325.657,616.474,240.253,446.798,323.558,612.204,63.825,28.474,63.825,360.866,304.637,370.381,22.847,20.024,22.847 +2069,64.793,339.885,608.306,227.363,454.330,336.716,603.859,54.526,27.043,54.526,359.547,304.169,370.469,24.255,20.053,24.255 +2070,64.824,351.953,598.179,216.323,463.880,347.770,593.901,45.644,24.969,45.644,357.758,303.877,369.725,24.882,20.061,24.882 +2071,64.853,351.953,598.179,216.323,463.880,347.770,593.901,45.644,24.969,45.644,357.758,303.877,369.725,24.882,20.061,24.882 +2072,64.882,361.688,588.911,207.383,473.785,355.358,584.170,36.834,22.324,36.834,353.405,303.952,369.223,21.956,21.182,21.956 +2073,64.914,370.347,578.280,200.071,484.391,361.278,573.334,28.610,19.006,28.610,347.567,304.604,368.227,19.793,21.830,19.793 +2074,64.946,382.167,567.440,194.980,495.846,366.580,561.497,20.870,15.009,20.870,334.099,305.465,367.460,21.016,21.676,21.016 +2075,64.978,409.631,559.559,191.113,507.414,366.245,549.221,13.403,10.934,13.403,270.904,306.381,360.105,21.488,20.920,21.488 +2076,65.012,440.159,546.175,188.322,518.361,364.389,537.099,6.831,6.947,6.831,201.471,307.332,354.093,21.016,21.509,21.016 +2077,65.045,421.000,528.000,187.216,529.520,363.108,528.000,0.000,3.100,0.000,236.000,306.904,351.784,20.000,21.202,20.000 +2078,65.078,399.728,514.874,187.485,539.430,363.675,518.994,173.480,179.465,173.480,282.163,309.099,354.740,20.296,21.036,20.296 +2079,65.110,388.565,504.303,188.692,549.984,364.330,509.676,167.501,176.486,167.501,310.752,310.643,360.398,19.834,21.206,19.834 +2080,65.141,382.120,495.285,190.632,558.910,361.304,502.385,161.166,174.144,161.166,315.574,311.545,359.563,19.663,22.395,19.663 +2081,65.171,372.762,488.156,193.990,568.009,357.373,495.239,155.286,172.716,155.286,323.802,312.085,357.685,19.567,22.016,19.567 +2082,65.202,366.444,480.465,198.140,576.480,352.940,488.373,149.647,171.870,149.647,324.913,313.531,356.209,19.552,20.506,19.552 +2083,65.233,356.809,475.814,202.872,583.567,348.141,482.067,144.191,171.941,144.191,333.013,314.097,354.389,19.567,20.784,19.567 +2084,65.263,350.166,470.337,208.331,590.646,342.975,476.604,138.926,172.875,138.926,333.787,314.552,352.864,19.759,20.714,19.759 +2085,65.295,342.748,466.623,214.117,597.298,337.522,472.057,133.877,174.094,133.877,336.546,315.043,351.623,19.518,22.020,19.518 +2086,65.328,336.242,462.621,220.288,603.088,331.867,468.033,128.956,175.840,128.956,336.433,315.911,350.350,19.689,22.849,19.689 +2087,65.359,329.927,459.339,226.905,608.636,326.187,464.820,124.315,178.091,124.315,336.240,316.324,349.511,19.561,24.320,19.561 +2088,65.391,323.784,456.598,233.500,613.000,320.575,462.187,119.862,0.000,119.862,335.402,317.000,348.290,19.260,24.000,19.260 +2089,65.421,317.717,454.294,240.110,616.573,315.001,459.999,115.463,2.603,115.463,334.488,318.399,347.126,19.347,25.565,19.347 +2090,65.450,317.717,454.294,240.110,616.573,315.001,459.999,115.463,2.603,115.463,334.488,318.399,347.126,19.347,25.565,19.347 +2091,65.479,311.901,452.244,246.759,619.846,309.535,458.288,111.378,4.830,111.378,333.669,319.228,346.650,19.240,25.697,19.240 +2092,65.513,306.148,450.827,253.500,622.496,304.195,457.075,107.354,7.294,107.354,332.935,320.402,346.025,19.149,26.710,19.149 +2093,65.545,300.485,449.855,259.715,624.684,298.926,456.380,103.440,9.593,103.440,332.198,322.247,345.616,19.256,26.859,19.256 +2094,65.578,294.995,449.316,266.276,626.506,293.862,455.950,99.689,12.529,99.689,332.073,323.335,345.532,19.090,27.116,19.090 +2095,65.612,289.600,449.300,272.884,627.936,288.910,455.859,96.009,14.931,96.009,332.427,324.397,345.617,18.529,27.377,18.529 +2096,65.645,284.474,449.850,279.057,628.865,284.199,456.312,92.437,17.993,92.437,332.295,326.323,345.231,18.536,27.444,18.536 +2097,65.679,279.152,450.548,285.364,629.463,279.324,457.189,88.519,20.969,88.519,331.458,326.951,344.745,18.683,27.532,18.683 +2098,65.711,274.801,451.190,291.887,629.536,275.362,457.689,85.066,23.703,85.066,332.218,328.337,345.263,19.137,27.335,19.137 +2099,65.743,269.712,452.220,298.200,629.100,270.695,458.761,81.453,26.565,81.453,331.840,329.596,345.070,19.189,26.833,19.189 +2100,65.774,265.228,453.326,304.818,627.821,266.600,459.588,77.648,29.511,77.648,332.209,330.172,345.030,20.058,26.173,20.058 +2101,65.805,260.861,454.474,311.107,626.831,262.768,461.064,73.856,32.276,73.856,331.622,331.165,345.342,21.764,25.409,21.764 +2102,65.835,255.753,456.507,317.587,625.090,258.108,462.930,69.864,35.036,69.864,331.768,332.363,345.448,21.469,24.281,21.469 +2103,65.866,250.820,457.805,324.506,622.041,253.856,464.578,65.862,38.115,65.862,330.327,332.561,345.172,22.087,22.469,22.087 +2104,65.904,245.284,458.885,331.004,619.345,249.660,467.011,61.699,41.001,61.699,326.926,333.864,345.383,22.825,21.140,22.825 +2105,65.935,239.803,461.087,336.986,616.014,245.302,469.668,57.349,43.864,57.349,324.986,333.969,345.369,23.592,19.883,23.592 +2106,65.967,227.052,456.862,342.188,611.823,239.888,472.750,51.065,46.651,51.065,304.086,335.559,344.936,22.044,19.756,22.044 +2107,65.996,179.309,416.914,348.674,607.698,234.367,477.870,47.911,49.800,47.911,181.648,334.779,345.928,18.050,19.450,18.050 +2108,66.027,216.051,469.234,354.235,602.199,229.660,481.949,43.055,53.043,43.055,308.996,335.000,346.244,18.737,19.848,18.737 +2109,66.059,217.953,476.767,359.692,595.538,227.201,483.951,37.840,56.310,37.840,322.754,334.484,346.173,25.201,19.969,25.201 +2110,66.090,214.098,483.466,364.971,587.937,222.882,489.040,32.400,59.880,32.400,325.116,333.556,345.922,25.947,20.574,25.947 +2111,66.119,214.098,483.466,364.971,587.937,222.882,489.040,32.400,59.880,32.400,325.116,333.556,345.922,25.947,20.574,25.947 +2112,66.148,209.500,490.500,369.003,579.760,218.253,494.877,26.565,63.089,26.565,326.019,332.344,345.591,25.491,20.354,25.491 +2113,66.180,206.723,498.669,373.479,569.851,214.153,501.428,20.376,66.318,20.376,330.509,331.306,346.361,25.980,22.365,25.980 +2114,66.212,202.446,507.637,376.253,559.842,210.082,509.520,13.851,69.444,13.851,331.044,329.471,346.774,25.204,23.525,25.204 +2115,66.244,200.212,516.465,377.928,548.523,207.222,517.366,7.329,72.474,7.329,332.435,327.280,346.571,25.813,24.442,25.813 +2116,66.276,198.029,527.226,378.478,536.253,204.766,527.267,0.354,75.809,0.354,334.055,325.245,347.528,23.586,25.897,23.586 +2117,66.309,197.369,540.454,377.480,523.386,203.736,539.658,172.875,79.992,172.875,336.010,322.546,348.842,19.597,24.909,19.597 +2118,66.340,198.705,552.275,374.532,510.557,204.216,550.815,165.160,83.125,165.160,338.491,319.748,349.892,19.845,25.369,19.845 +2119,66.371,201.556,564.005,370.446,497.003,206.549,561.901,157.148,87.357,157.148,341.637,316.724,352.474,19.595,25.358,19.595 +2120,66.402,205.984,575.780,362.674,484.066,210.166,573.251,148.831,90.909,148.831,343.527,314.135,353.302,19.484,22.426,19.484 +2121,66.432,212.046,587.865,354.300,472.244,216.174,584.444,140.350,94.574,140.350,345.168,312.003,355.892,19.436,22.329,19.436 +2122,66.462,218.599,600.915,344.570,461.492,224.320,594.450,131.511,97.853,131.511,341.252,310.235,358.519,19.168,23.126,19.168 +2123,66.493,228.432,612.919,331.923,452.385,234.223,603.897,122.692,101.310,122.692,339.122,309.471,360.562,19.909,21.181,19.909 +2124,66.525,237.116,631.438,317.696,445.548,245.831,611.766,113.895,103.650,113.895,319.133,309.198,362.163,20.010,18.880,20.010 +2125,66.555,238.050,691.794,303.609,440.233,256.237,617.113,103.686,105.690,103.686,212.404,307.265,366.132,23.006,19.644,23.006 +2126,66.586,238.050,691.794,303.609,440.233,256.237,617.113,103.686,105.690,103.686,212.404,307.265,366.132,23.006,19.644,23.006 +2127,66.614,269.038,629.249,288.291,437.586,269.784,620.432,94.841,106.422,94.841,349.813,307.056,367.511,26.414,19.992,26.414 +2128,66.647,286.854,629.165,273.200,437.400,286.384,621.651,86.424,108.435,86.424,354.371,306.108,369.429,25.513,20.239,25.513 +2129,66.679,301.740,626.797,258.095,439.848,300.203,620.270,76.748,112.023,76.748,357.128,306.775,370.540,25.995,19.978,25.995 +2130,66.711,319.723,620.409,243.196,445.137,317.471,614.895,67.782,114.305,67.782,358.567,307.132,370.479,22.075,18.757,22.075 +2131,66.743,334.598,612.079,229.361,453.117,331.772,607.522,58.198,117.657,58.198,359.662,307.721,370.387,23.760,18.245,23.760 +2132,66.774,347.358,601.494,217.427,462.661,343.955,597.612,48.759,121.065,48.759,359.447,309.040,369.772,24.958,18.112,24.958 +2133,66.804,357.506,589.064,206.697,473.633,353.716,585.942,39.472,123.986,39.472,359.947,310.344,369.768,25.701,18.186,25.701 +2134,66.835,365.438,575.784,198.202,485.782,361.116,573.250,30.389,126.986,30.389,359.536,311.794,369.557,25.805,18.311,25.805 +2135,66.866,370.396,562.225,192.202,498.815,365.796,560.393,21.707,129.487,21.707,358.217,312.949,368.119,25.683,19.077,25.683 +2136,66.896,370.470,548.106,188.406,511.914,365.943,547.030,13.369,132.184,13.369,352.386,313.738,361.692,25.818,20.308,25.818 +2137,66.927,367.957,535.163,184.956,523.552,362.774,534.683,5.290,136.102,5.290,345.762,314.672,356.173,25.410,22.297,25.410 +2138,66.959,366.944,525.678,183.819,535.796,361.516,525.907,177.578,138.428,177.578,345.045,315.905,355.912,21.180,21.897,21.180 +2139,66.988,367.768,514.648,185.023,547.385,362.500,515.550,170.287,141.072,170.287,349.920,316.592,360.609,21.019,21.752,21.019 +2140,67.018,367.768,514.648,185.023,547.385,362.500,515.550,170.287,141.072,170.287,349.920,316.592,360.609,21.019,21.752,21.019 +2141,67.048,367.232,504.137,187.212,557.958,361.151,505.970,163.217,143.366,163.217,350.381,317.178,363.083,20.212,21.584,20.212 +2142,67.078,364.108,494.287,190.989,567.849,357.100,497.323,156.571,145.479,156.571,345.643,318.131,360.917,19.880,20.410,19.880 +2143,67.109,374.626,476.742,195.815,577.213,352.428,489.511,150.092,147.279,150.092,307.753,318.385,358.970,19.507,19.911,19.507 +2144,67.140,385.182,454.655,201.319,586.186,346.555,482.246,144.462,150.086,144.462,262.255,318.654,357.193,18.716,19.900,18.716 +2145,67.171,355.592,463.875,207.121,593.231,341.054,476.676,138.636,152.425,138.636,316.349,318.556,355.089,18.409,19.826,18.409 +2146,67.202,345.209,461.454,213.415,599.323,335.594,471.898,132.634,154.440,132.634,324.606,318.885,352.998,19.934,20.082,19.934 +2147,67.232,336.000,459.189,219.959,604.757,329.607,467.512,127.528,156.501,127.528,330.277,318.941,351.268,19.378,20.255,19.378 +2148,67.262,328.053,456.950,227.216,610.053,323.492,464.091,122.565,158.654,122.565,332.723,319.417,349.670,19.257,21.776,19.257 +2149,67.294,321.333,454.243,234.351,613.982,317.767,461.062,117.605,160.346,117.605,332.940,319.520,348.330,19.404,22.938,19.404 +2150,67.327,314.666,451.994,241.557,617.683,311.738,458.901,112.973,162.688,112.973,332.159,320.048,347.162,19.455,23.905,19.455 +2151,67.359,307.950,450.650,249.094,620.655,305.806,457.081,108.435,164.604,108.435,332.672,320.478,346.229,19.290,24.620,19.290 +2152,67.390,301.454,449.616,256.443,623.397,299.827,456.099,104.087,166.866,104.087,332.282,320.881,345.652,19.465,25.839,19.465 +2153,67.420,295.294,448.983,263.956,625.285,294.151,455.586,99.816,168.311,99.816,331.324,321.400,344.725,18.964,26.069,18.964 +2154,67.450,295.294,448.983,263.956,625.285,294.151,455.586,99.816,168.311,99.816,331.324,321.400,344.725,18.964,26.069,18.964 +2155,67.479,289.191,448.568,271.321,626.410,288.512,455.443,95.641,170.676,95.641,329.840,321.723,343.657,18.601,26.069,18.601 +2156,67.513,283.288,448.547,278.890,627.317,283.103,455.597,91.507,172.122,91.507,329.439,322.705,343.543,18.546,26.589,18.546 +2157,67.546,277.344,448.887,286.323,627.435,277.695,456.168,87.241,173.541,87.241,328.390,323.462,342.968,18.822,26.660,18.822 +2158,67.580,271.988,449.299,293.495,626.444,272.856,456.590,83.211,175.203,83.211,327.521,323.959,342.206,19.529,26.766,19.529 +2159,67.612,266.916,450.592,300.917,625.793,268.305,457.830,79.139,176.082,79.139,327.458,324.746,342.199,20.692,27.948,20.692 +2160,67.646,261.088,452.658,308.091,624.143,262.910,459.336,74.745,176.842,74.745,327.932,324.885,341.776,20.523,27.661,20.523 +2161,67.679,255.771,454.616,315.540,622.091,258.075,461.081,70.388,177.879,70.388,328.190,325.444,341.916,21.395,27.759,21.395 +2162,67.712,250.408,456.764,323.007,619.389,253.268,463.186,65.991,178.971,65.991,328.068,326.199,342.128,22.303,27.217,22.303 +2163,67.743,245.029,459.803,330.000,616.500,248.401,465.986,61.390,0.000,61.390,328.333,326.000,342.419,23.384,27.000,23.384 +2164,67.774,239.611,462.918,337.500,612.000,243.594,468.942,56.529,0.000,56.529,327.806,327.000,342.249,23.846,26.000,23.846 +2165,67.808,233.812,466.149,344.471,606.904,238.541,472.130,51.670,0.682,51.670,327.593,327.203,342.842,24.751,26.224,24.751 +2166,67.839,228.205,470.306,350.967,601.087,233.623,476.012,46.484,0.909,46.484,327.262,328.244,343.000,25.250,25.854,25.250 +2167,67.870,222.441,474.994,357.031,594.152,228.759,480.503,41.090,0.963,41.090,325.976,328.189,342.741,25.679,25.694,25.679 +2168,67.901,216.942,480.582,362.994,586.497,224.011,485.627,35.514,0.640,35.514,326.078,328.181,343.449,26.058,25.004,26.058 +2169,67.931,210.600,486.324,368.000,578.500,219.594,491.458,29.720,0.000,29.720,323.362,328.000,344.073,26.191,23.000,26.191 +2170,67.961,204.365,493.026,372.502,569.108,215.558,497.932,23.665,178.839,23.665,320.191,327.257,344.632,25.861,22.043,25.861 +2171,67.992,198.577,500.670,376.045,559.391,211.887,504.867,17.503,177.120,17.503,317.998,327.045,345.911,25.750,21.891,25.750 +2172,68.024,192.050,509.745,377.689,548.433,208.386,512.971,11.174,174.428,11.174,312.626,325.649,345.929,25.301,20.658,25.301 +2173,68.059,185.856,522.853,379.365,537.248,206.170,523.882,2.899,170.776,2.899,306.620,325.480,347.300,24.222,20.366,24.222 +2174,68.099,182.032,533.778,379.185,525.718,204.969,532.837,177.651,166.209,177.651,302.812,324.990,348.724,19.102,20.765,19.102 +2175,68.130,177.669,546.528,377.472,514.000,204.345,542.129,170.637,160.615,170.637,296.722,323.609,350.794,18.936,20.858,18.936 +2176,68.161,178.646,559.644,374.156,502.246,205.140,551.668,163.244,154.306,163.244,296.838,322.025,352.176,18.615,20.641,18.615 +2177,68.198,180.442,573.605,369.090,490.851,207.006,561.721,155.898,147.680,155.898,295.585,319.992,353.787,18.569,19.920,18.569 +2178,68.229,177.136,592.667,362.639,480.245,210.541,572.168,148.465,140.469,148.465,277.044,317.903,355.428,18.557,20.989,18.557 +2179,68.260,187.274,605.184,354.495,470.201,215.477,582.268,140.906,131.889,140.906,284.446,315.388,357.124,18.772,19.992,18.772 +2180,68.292,200.382,615.413,345.359,461.595,222.477,592.155,133.531,123.275,133.531,294.422,313.440,358.582,19.176,19.961,19.176 +2181,68.322,218.491,618.581,335.118,454.394,231.017,601.304,125.942,113.658,125.942,317.408,311.548,360.087,20.706,20.073,20.706 +2182,68.353,218.491,618.581,335.118,454.394,231.017,601.304,125.942,113.658,125.942,317.408,311.548,360.087,20.706,20.073,20.706 +2183,68.382,233.359,621.743,324.173,448.156,240.357,608.457,117.780,103.092,117.780,331.748,308.738,361.780,19.559,20.250,19.559 +2184,68.412,246.996,625.264,312.745,443.933,250.838,614.635,109.875,91.701,109.875,340.557,306.221,363.161,19.740,19.971,19.740 +2185,68.445,259.325,627.564,300.716,440.688,260.951,619.366,101.222,79.695,101.222,349.286,305.536,366.002,23.728,20.482,23.728 +2186,68.476,272.381,627.609,288.775,438.949,272.713,621.878,93.309,66.615,93.309,355.620,304.108,367.102,25.362,21.706,25.362 +2187,68.508,287.790,627.138,276.617,438.462,287.479,622.158,86.424,53.575,86.424,358.051,303.842,368.031,23.641,21.853,23.641 +2188,68.539,298.715,625.456,263.959,440.049,297.874,621.369,78.372,39.806,78.372,360.526,304.216,368.870,25.092,20.358,25.092 +2189,68.572,312.900,621.200,252.558,441.398,311.588,617.263,71.565,26.211,71.565,362.713,304.569,371.014,21.187,22.195,21.187 +2190,68.603,325.051,616.328,240.964,446.163,323.105,612.311,64.158,12.485,64.158,361.750,305.221,370.675,22.572,20.922,22.572 +2191,68.634,335.664,609.669,229.988,452.008,333.300,606.031,56.983,178.608,56.983,362.207,306.225,370.886,23.820,19.517,23.820 +2192,68.664,345.248,602.010,219.907,459.152,342.350,598.562,49.957,165.018,49.957,361.996,308.293,371.005,24.548,20.109,24.548 +2193,68.695,353.588,594.052,211.335,467.695,350.043,590.722,43.210,151.529,43.210,360.934,309.732,370.661,25.333,19.123,25.333 +2194,68.728,360.254,584.616,204.143,476.160,356.334,581.706,36.587,138.250,36.587,360.459,310.578,370.224,25.664,18.913,25.664 +2195,68.759,365.593,575.480,198.423,485.797,361.354,573.008,30.244,125.087,30.244,359.549,311.155,369.362,25.609,18.205,25.609 +2196,68.789,369.535,566.387,194.552,495.621,365.205,564.431,24.305,111.801,24.305,358.198,311.225,367.700,25.548,18.570,25.548 +2197,68.818,369.535,566.387,194.552,495.621,365.205,564.431,24.305,111.801,24.305,358.198,311.225,367.700,25.548,18.570,25.548 +2198,68.848,372.366,557.494,192.344,504.347,368.230,556.097,18.658,98.409,18.658,357.667,310.315,366.397,25.286,20.034,25.286 +2199,68.879,371.674,548.439,191.117,512.742,367.191,547.377,13.338,85.269,13.338,349.415,309.260,358.630,24.985,20.468,24.985 +2200,68.911,370.519,540.058,189.150,520.450,365.456,539.315,8.351,71.565,8.351,344.120,308.322,354.354,25.325,22.768,25.325 +2201,68.943,369.808,532.805,189.896,526.757,365.032,532.491,3.759,58.508,3.759,340.696,307.898,350.270,24.939,22.140,24.939 +2202,68.975,369.033,526.419,189.524,532.461,364.269,526.464,179.454,44.714,179.454,340.061,306.902,349.589,24.399,22.701,24.399 +2203,69.006,369.484,522.646,189.616,536.965,364.627,523.028,175.501,30.772,175.501,341.384,307.668,351.128,20.066,23.734,20.066 +2204,69.037,372.910,516.870,189.289,541.750,364.809,518.027,171.870,16.879,171.870,337.856,308.628,354.221,19.799,22.443,19.799 +2205,69.067,380.825,510.069,188.683,546.865,364.726,513.316,168.598,2.883,168.598,325.554,309.766,358.401,19.655,21.218,19.655 +2206,69.097,422.971,493.882,188.241,551.539,364.080,508.605,165.964,169.160,165.964,240.595,312.012,362.002,18.675,21.670,18.675 +2207,69.129,368.897,503.871,188.509,556.135,362.165,505.918,163.091,155.477,163.091,347.436,315.643,361.509,19.334,21.759,19.334 +2208,69.161,365.228,500.832,188.432,561.553,359.860,502.694,160.875,142.038,160.875,351.140,317.325,362.502,20.054,21.643,20.054 +2209,69.192,363.403,498.535,189.610,566.087,358.490,500.420,159.010,128.395,159.010,351.868,319.532,362.392,19.542,19.727,19.542 +2210,69.222,362.260,496.517,191.205,570.052,357.399,498.538,157.430,114.624,157.430,351.300,320.521,361.828,19.319,19.204,19.319 +2211,69.252,362.260,496.517,191.205,570.052,357.399,498.538,157.430,114.624,157.430,351.300,320.521,361.828,19.319,19.204,19.319 +2212,69.281,361.568,494.761,192.962,572.692,357.008,496.777,156.147,101.310,156.147,351.497,320.650,361.468,19.630,19.415,19.630 +2213,69.314,361.085,493.435,194.826,574.443,356.617,495.499,155.209,87.541,155.209,350.125,319.521,359.967,19.342,18.946,19.342 +2214,69.347,361.497,491.942,197.207,574.703,357.020,494.070,154.587,73.591,154.587,347.988,317.719,357.903,19.622,20.445,19.622 +2215,69.379,361.682,491.341,198.672,574.314,357.474,493.370,154.259,59.657,154.259,347.053,316.074,356.397,19.447,20.965,19.447 +2216,69.412,361.632,491.347,198.378,572.692,357.665,493.260,154.259,45.855,154.259,347.150,312.654,355.957,19.543,22.498,19.543 +2217,69.443,362.028,491.708,197.736,570.282,358.081,493.588,154.527,31.159,154.527,346.741,311.964,355.485,19.389,22.209,19.389 +2218,69.474,363.455,492.136,196.390,567.661,358.670,494.356,155.110,17.399,155.110,345.572,311.220,356.121,19.376,22.453,19.376 +2219,69.505,367.693,491.676,194.286,566.296,358.435,495.803,155.978,3.895,155.978,336.985,311.118,357.257,19.458,21.958,19.458 +2220,69.536,378.642,489.231,192.163,564.926,358.568,497.626,157.306,170.776,157.306,315.455,313.019,358.973,19.039,21.049,19.039 +2221,69.567,432.419,470.340,190.003,563.226,358.831,499.225,158.569,158.700,158.569,202.970,314.033,361.078,18.530,20.753,18.530 +2222,69.599,364.839,499.337,188.852,561.979,359.417,501.327,159.850,147.600,159.850,350.485,316.526,362.037,19.775,22.959,19.775 +2223,69.630,364.788,502.809,187.679,560.163,360.395,504.251,161.822,135.571,161.822,353.831,317.539,363.078,19.668,21.658,19.668 +2224,69.662,367.287,505.944,187.247,557.835,362.260,507.366,164.208,123.100,164.208,353.837,318.475,364.285,19.955,20.031,19.955 +2225,69.693,368.814,510.190,187.978,554.363,363.866,511.326,167.074,110.344,167.074,351.964,318.349,362.117,19.877,20.607,19.877 +2226,69.724,368.533,515.194,186.352,549.405,363.085,516.116,170.395,98.366,170.395,348.567,316.653,359.618,19.371,22.464,19.371 +2227,69.754,368.760,520.454,189.258,543.340,364.367,520.919,173.959,84.806,173.959,344.158,314.521,352.992,19.678,21.457,19.678 +2228,69.784,368.760,520.454,189.258,543.340,364.367,520.919,173.959,84.806,173.959,344.158,314.521,352.992,19.678,21.457,19.678 +2229,69.813,369.131,526.701,189.607,535.820,364.446,526.893,177.657,71.889,177.657,340.738,311.177,350.116,19.942,21.296,19.942 +2230,69.846,369.138,530.361,189.161,528.305,364.383,530.180,2.171,59.108,2.171,340.817,308.695,350.334,24.627,20.573,24.627 +2231,69.879,370.384,537.220,190.454,519.132,365.535,536.653,6.671,45.847,6.671,342.101,306.259,351.863,25.232,23.217,25.232 +2232,69.912,373.532,545.894,191.508,510.194,366.508,544.459,11.547,32.245,11.547,342.295,305.710,356.634,25.137,21.958,25.137 +2233,69.944,435.050,575.830,192.928,501.312,366.862,555.626,16.504,19.049,16.504,222.157,305.520,364.395,20.738,22.041,20.738 +2234,69.975,371.129,563.622,195.364,492.592,365.856,561.448,22.402,5.315,22.402,356.326,305.750,367.734,25.456,23.573,25.456 +2235,70.006,365.308,573.593,199.016,484.615,361.791,571.623,29.249,172.047,29.249,361.008,307.026,369.069,24.954,18.031,24.954 +2236,70.038,360.896,581.964,203.592,476.431,357.504,579.577,35.134,159.092,35.134,362.167,307.935,370.461,25.140,18.526,25.140 +2237,70.069,355.330,591.642,210.104,468.900,351.736,588.439,41.711,146.149,41.711,360.907,308.699,370.536,24.830,17.876,24.830 +2238,70.098,348.316,600.372,217.488,461.554,344.792,596.441,48.122,133.073,48.122,360.269,308.552,370.828,24.314,18.266,24.314 +2239,70.128,339.324,608.729,226.559,455.158,336.269,604.345,55.132,120.296,55.132,359.558,307.361,370.246,23.444,18.200,23.444 +2240,70.159,329.268,616.386,235.912,449.015,326.316,610.790,62.184,106.991,62.184,357.881,305.634,370.535,22.458,19.286,22.458 +2241,70.191,317.933,623.148,246.455,444.497,315.380,616.372,69.353,93.468,69.353,355.796,303.957,370.279,21.414,19.358,21.414 +2242,70.221,308.056,643.594,258.415,442.272,302.542,621.295,76.111,80.851,76.111,322.823,303.146,368.762,24.258,18.762,24.258 +2243,70.252,308.056,643.594,258.415,442.272,302.542,621.295,76.111,80.851,76.111,322.823,303.146,368.762,24.258,18.762,24.258 +2244,70.282,291.565,631.372,271.311,439.257,290.501,622.507,83.157,67.694,83.157,350.605,303.028,368.462,25.418,19.500,25.418 +2245,70.313,277.748,626.521,284.272,437.950,277.770,621.480,90.251,54.567,90.251,357.032,303.870,367.113,24.052,21.561,24.052 +2246,70.345,269.087,624.619,296.900,437.389,269.858,619.733,98.973,40.992,98.973,358.766,306.664,368.659,25.006,23.884,25.006 +2247,70.377,255.060,621.075,309.277,438.632,256.645,615.399,105.604,27.824,105.604,357.031,309.682,368.818,21.102,24.050,21.102 +2248,70.408,244.474,616.060,320.244,443.466,246.710,610.842,113.199,14.871,113.199,354.265,311.827,365.619,19.827,20.662,19.827 +2249,70.438,234.818,610.100,330.575,447.506,237.944,604.760,120.347,2.157,120.347,352.636,313.569,365.014,19.299,20.468,19.299 +2250,70.468,226.189,603.001,339.792,452.856,230.180,597.764,127.304,169.695,127.304,350.217,316.627,363.387,19.393,20.393,19.393 +2251,70.500,218.141,596.225,347.213,459.132,223.352,590.820,133.958,157.154,133.958,346.528,317.527,361.543,19.179,21.187,19.179 +2252,70.531,203.840,594.984,352.984,466.477,217.336,583.870,140.528,144.791,140.528,323.711,317.945,358.677,18.572,21.010,18.572 +2253,70.563,193.818,589.001,358.820,475.957,212.490,576.614,146.439,131.460,146.439,310.349,317.227,355.164,20.288,22.461,20.288 +2254,70.596,201.004,572.814,364.639,486.141,208.484,568.884,152.285,119.358,152.285,336.542,316.872,353.443,19.762,23.151,19.762 +2255,70.628,200.076,563.360,369.575,495.736,206.097,560.902,157.788,105.945,157.788,338.956,317.028,351.963,19.364,25.412,19.364 +2256,70.659,199.071,555.499,373.100,505.118,204.661,553.788,162.979,93.215,162.979,338.924,317.185,350.616,19.651,25.746,19.651 +2257,70.690,197.872,548.406,375.596,513.724,203.814,547.121,167.800,80.181,167.800,337.763,320.580,349.922,19.812,25.714,19.812 +2258,70.719,197.872,548.406,375.596,513.724,203.814,547.121,167.800,80.181,167.800,337.763,320.580,349.922,19.812,25.714,19.812 +2259,70.747,197.753,541.125,378.056,521.477,204.139,540.284,172.504,67.941,172.504,336.886,323.282,349.768,19.229,24.799,19.229 +2260,70.778,197.396,534.779,379.961,528.192,204.813,534.330,176.532,56.310,176.532,335.536,325.886,350.398,18.542,23.020,18.542 +2261,70.809,198.005,529.443,380.559,534.909,205.782,529.483,0.297,44.136,0.297,334.053,327.513,349.606,18.409,20.195,18.409 +2262,70.841,197.295,521.988,381.045,539.428,206.738,522.543,3.366,32.152,3.366,331.075,329.995,349.995,24.722,19.739,24.722 +2263,70.873,196.442,519.862,380.702,543.263,207.404,521.194,6.927,21.346,6.927,327.303,330.508,349.389,18.806,24.216,18.806 +2264,70.904,127.294,504.291,379.548,544.717,207.773,517.865,9.574,10.272,9.574,184.467,327.446,347.697,18.082,21.323,18.082 +2265,70.935,186.215,510.102,377.021,548.115,207.712,513.922,10.075,178.898,10.075,301.692,324.209,345.360,24.350,20.112,24.350 +2266,70.965,196.788,508.453,377.291,552.018,209.053,511.178,12.529,168.009,12.529,321.057,326.998,346.184,24.839,22.732,24.839 +2267,70.995,200.449,506.197,375.517,555.538,209.467,508.524,14.470,155.556,14.470,326.434,325.415,345.061,25.269,25.076,25.269 +2268,71.031,202.691,503.849,373.865,558.606,210.045,506.001,16.314,141.953,16.314,328.675,324.589,344.001,25.726,26.056,25.726 +2269,71.065,203.920,502.179,372.523,561.915,210.729,504.346,17.650,128.454,17.650,328.976,324.392,343.266,25.253,26.787,25.253 +2270,71.098,204.267,501.686,371.736,564.308,210.936,503.872,18.153,114.963,18.153,329.216,324.838,343.252,25.594,26.197,25.594 +2271,71.133,205.420,500.401,371.823,566.274,211.966,502.645,18.925,101.689,18.925,329.865,326.127,343.705,25.946,25.697,25.946 +2272,71.166,205.885,500.185,372.797,567.454,212.569,502.524,19.290,88.843,19.290,331.200,327.277,345.363,25.626,24.581,25.626 +2273,71.199,205.638,500.735,373.849,567.509,212.971,503.256,18.970,75.141,18.970,330.547,329.420,346.056,25.327,23.868,25.327 +2274,71.232,204.600,501.200,374.952,566.508,212.905,503.968,18.435,62.650,18.435,329.509,331.030,347.017,25.298,21.991,25.298 +2275,71.268,203.294,502.292,375.799,564.902,212.549,505.201,17.447,49.787,17.447,327.874,331.486,347.278,25.840,20.619,25.840 +2276,71.303,201.642,503.218,377.086,561.886,212.061,506.283,16.390,37.131,16.390,326.297,332.411,348.018,26.129,19.761,26.129 +2277,71.335,196.497,506.666,378.068,557.967,210.559,510.613,15.680,24.072,15.680,318.936,331.927,348.147,18.749,22.242,18.749 +2278,71.368,131.650,493.450,379.259,552.902,209.898,512.338,13.570,11.911,13.570,187.310,329.981,348.301,18.067,22.421,18.067 +2279,71.400,187.636,510.579,377.001,548.837,207.732,514.100,9.938,179.777,9.938,304.645,324.048,345.449,24.309,19.587,24.309 +2280,71.430,193.102,512.379,379.034,545.162,207.970,514.826,9.348,168.261,9.348,317.302,327.549,347.438,25.980,22.506,25.980 +2281,71.462,195.888,518.031,377.961,540.694,206.165,519.148,6.203,155.739,6.203,325.561,324.738,346.236,24.378,23.396,24.378 +2282,71.494,195.974,522.485,377.704,536.607,204.978,522.972,3.094,142.997,3.094,328.385,322.823,346.420,24.775,25.405,24.775 +2283,71.528,196.503,530.302,376.927,531.510,203.948,530.273,179.781,130.525,179.781,331.055,321.936,345.945,18.446,25.709,18.446 +2284,71.559,196.634,535.950,376.700,526.100,203.141,535.503,176.072,116.565,176.072,334.547,320.652,347.591,19.366,26.386,19.366 +2285,71.590,196.923,542.414,376.080,520.021,203.177,541.507,171.741,104.421,171.741,335.755,320.156,348.394,19.090,26.011,19.090 +2286,71.621,196.923,542.414,376.080,520.021,203.177,541.507,171.741,104.421,171.741,335.755,320.156,348.394,19.090,26.011,19.090 +2287,71.649,197.863,549.398,375.193,513.506,203.754,548.056,167.164,91.848,167.164,337.576,319.350,349.661,19.673,25.567,19.673 +2288,71.681,199.170,556.461,373.678,505.872,204.802,554.672,162.368,79.287,162.368,339.631,319.681,351.449,19.496,25.653,19.496 +2289,71.712,201.255,563.919,371.645,497.812,206.838,561.568,157.166,67.319,157.166,341.151,320.001,353.266,19.160,24.829,19.160 +2290,71.744,204.259,572.053,368.829,488.775,209.905,569.013,151.699,55.692,151.699,343.113,320.088,355.937,19.709,24.518,19.709 +2291,71.778,208.040,579.842,363.974,479.996,213.197,576.352,145.914,43.229,145.914,345.296,319.853,357.750,19.049,24.278,19.049 +2292,71.808,212.968,587.865,358.140,470.770,217.972,583.672,140.042,31.380,140.042,346.840,320.070,359.898,19.101,22.118,19.101 +2293,71.839,218.902,595.502,350.810,462.454,223.357,590.825,133.603,19.456,133.603,348.793,318.899,361.712,18.828,20.897,18.828 +2294,71.870,226.259,602.818,341.837,454.426,230.050,597.813,127.134,7.457,127.134,351.033,318.046,363.590,19.115,20.708,19.115 +2295,71.901,234.665,610.131,331.513,448.665,237.714,604.928,120.379,175.436,120.379,352.427,316.468,364.488,19.426,18.002,19.426 +2296,71.932,244.087,616.170,320.609,443.185,246.530,610.539,113.459,163.451,113.459,353.749,315.410,366.025,19.576,17.857,19.576 +2297,71.963,254.236,621.424,308.166,438.806,255.947,615.436,105.945,151.557,105.945,355.901,313.651,368.358,20.741,18.648,20.741 +2298,71.994,268.076,625.680,295.577,436.828,269.102,619.552,99.498,139.600,99.498,356.749,311.518,369.176,24.166,18.050,24.166 +2299,72.026,280.591,627.598,282.477,436.205,280.847,620.834,92.168,127.853,92.168,355.578,309.512,369.117,24.793,18.753,24.793 +2300,72.056,289.320,628.138,270.345,437.923,288.615,621.861,83.591,116.463,83.591,357.023,307.248,369.656,25.938,17.928,25.938 +2301,72.086,289.320,628.138,270.345,437.923,288.615,621.861,83.591,116.463,83.591,357.023,307.248,369.656,25.938,17.928,25.938 +2302,72.114,304.165,626.336,257.128,440.947,302.650,620.210,76.111,105.345,76.111,357.279,305.918,369.899,24.989,18.197,24.989 +2303,72.145,318.888,621.650,244.420,445.622,316.577,615.787,68.488,94.917,68.488,356.938,304.456,369.542,21.873,19.155,21.873 +2304,72.178,331.908,615.552,233.509,451.909,328.788,610.024,60.555,84.864,60.555,356.364,303.384,369.058,23.147,18.331,23.147 +2305,72.209,344.002,607.645,223.462,459.393,339.969,602.368,52.613,75.669,52.613,355.405,302.715,368.688,24.263,18.720,24.263 +2306,72.239,354.000,598.500,214.642,468.364,349.252,593.752,45.000,66.975,45.000,354.260,303.180,367.691,24.749,18.798,24.749 +2307,72.271,362.540,586.947,207.120,477.437,357.393,583.099,36.790,59.184,36.790,354.394,303.058,367.246,25.550,20.039,25.550 +2308,72.302,368.969,574.757,200.414,487.401,363.272,571.588,29.076,52.160,29.076,353.453,303.201,366.492,25.949,19.807,25.949 +2309,72.333,373.664,562.818,195.904,497.578,367.405,560.345,21.557,45.909,21.557,351.674,303.344,365.135,25.996,20.694,25.996 +2310,72.364,373.655,550.433,192.535,508.423,367.735,548.935,14.196,40.314,14.196,347.355,304.010,359.570,25.241,21.905,25.241 +2311,72.395,371.535,538.208,190.090,518.969,365.483,537.454,7.102,35.440,7.102,340.469,305.375,352.666,25.404,22.218,25.404 +2312,72.426,370.014,528.430,189.191,529.738,364.120,528.408,0.217,31.470,0.217,338.058,306.381,349.846,22.254,23.132,22.254 +2313,72.456,370.534,519.262,189.484,539.699,364.643,519.923,173.599,27.561,173.599,340.687,308.262,352.543,21.140,22.838,21.140 +2314,72.486,370.534,519.262,189.484,539.699,364.643,519.923,173.599,27.561,173.599,340.687,308.262,352.543,21.140,22.838,21.140 +2315,72.515,370.696,509.709,191.021,550.665,365.704,510.855,167.074,24.513,167.074,348.081,308.620,358.324,20.420,21.342,20.420 +2316,72.547,367.460,500.290,193.563,559.863,362.478,502.003,161.017,21.954,161.017,346.564,309.930,357.099,20.092,22.633,20.092 +2317,72.579,363.679,492.052,196.731,569.471,358.279,494.547,155.200,19.817,155.200,344.254,310.983,356.152,19.733,22.799,19.733 +2318,72.612,358.356,485.167,200.771,577.448,353.759,487.861,149.626,17.418,149.626,343.919,311.819,354.576,19.729,23.966,19.729 +2319,72.644,352.949,478.916,204.892,584.829,348.699,481.964,144.357,15.709,144.357,343.157,313.162,353.618,19.624,24.096,19.624 +2320,72.676,347.606,473.371,209.892,591.959,343.468,476.923,139.359,14.273,139.359,341.661,313.617,352.567,19.691,24.832,19.691 +2321,72.708,342.220,468.671,214.774,597.761,338.234,472.710,134.621,12.465,134.621,340.106,315.736,351.455,19.330,24.647,19.330 +2322,72.738,336.731,464.719,220.053,603.228,333.069,469.070,130.079,11.070,130.079,339.457,316.712,350.832,19.418,25.004,19.418 +2323,72.768,331.391,460.947,225.867,607.777,327.928,465.746,125.813,9.728,125.813,337.961,316.976,349.796,19.291,25.457,19.291 +2324,72.798,325.979,458.033,231.052,611.650,322.795,463.182,121.734,8.489,121.734,336.945,318.531,349.052,19.584,25.125,19.584 +2325,72.829,320.926,455.544,236.924,615.182,317.991,461.106,117.819,7.275,117.819,335.623,318.163,348.202,19.503,25.706,19.503 +2326,72.860,315.647,453.685,242.223,617.953,313.064,459.455,114.112,6.442,114.112,334.573,319.374,347.217,19.341,25.788,19.341 +2327,72.895,310.692,451.947,247.935,620.667,308.398,458.056,110.581,5.553,110.581,333.923,320.185,346.974,19.205,25.892,19.205 +2328,72.926,305.714,450.874,253.452,622.564,303.771,457.179,107.129,4.844,107.129,332.542,320.901,345.737,19.295,26.042,19.295 +2329,72.957,301.065,449.762,258.854,624.190,299.472,456.237,103.818,3.814,103.818,332.250,321.287,345.587,19.138,26.475,19.138 +2330,72.987,301.065,449.762,258.854,624.190,299.472,456.237,103.818,3.814,103.818,332.250,321.287,345.587,19.138,26.475,19.138 +2331,73.015,296.338,449.063,263.971,625.498,295.085,455.803,100.530,3.366,100.530,331.336,321.327,345.047,19.385,25.896,19.385 +2332,73.047,291.677,448.589,269.484,626.806,290.752,455.642,97.472,3.053,97.472,330.725,321.982,344.952,19.082,26.935,19.082 +2333,73.079,287.420,448.189,274.904,627.625,286.839,455.648,94.456,2.573,94.456,329.805,322.888,344.769,18.502,27.164,18.502 +2334,73.110,283.202,448.505,279.968,627.779,283.017,455.827,91.450,2.353,91.450,329.300,322.796,343.949,18.526,26.991,18.526 +2335,73.141,278.787,449.049,285.449,627.623,278.993,456.261,88.363,1.790,88.363,328.523,323.592,342.953,18.650,27.205,18.650 +2336,73.172,274.892,449.208,290.469,627.547,275.485,456.674,85.452,1.697,85.452,328.066,323.539,343.046,18.895,27.277,18.895 +2337,73.202,270.647,450.152,295.938,627.318,271.613,457.341,82.349,1.528,82.349,328.897,324.471,343.405,18.846,27.617,18.846 +2338,73.233,267.104,451.050,300.966,626.548,268.459,458.184,79.249,1.252,79.249,328.423,324.403,342.946,20.383,27.201,20.383 +2339,73.266,263.265,452.180,306.457,625.397,264.993,459.132,76.040,1.302,76.040,328.384,325.439,342.713,21.098,27.402,21.098 +2340,73.297,258.689,453.365,312.054,623.635,260.802,460.233,72.897,1.648,72.897,328.126,326.239,342.497,21.101,27.010,21.101 +2341,73.329,255.233,455.288,317.432,622.344,257.659,461.756,69.444,2.108,69.444,328.886,325.700,342.702,22.472,27.619,22.472 +2342,73.361,250.508,456.943,322.930,619.757,253.354,463.311,65.920,2.291,65.920,328.490,326.779,342.439,22.093,26.859,22.093 +2343,73.392,246.579,458.720,328.917,616.836,249.930,465.125,62.381,2.045,62.381,327.626,326.756,342.083,23.837,26.590,23.837 +2344,73.422,241.727,461.167,334.390,613.980,245.605,467.518,58.589,2.551,58.589,327.657,327.967,342.540,23.536,26.315,23.536 +2345,73.452,241.727,461.167,334.390,613.980,245.605,467.518,58.589,2.551,58.589,327.657,327.967,342.540,23.536,26.315,23.536 +2346,73.481,237.359,463.955,340.341,610.018,241.628,469.975,54.660,3.013,54.660,327.910,328.230,342.671,24.042,26.174,24.042 +2347,73.514,232.726,467.052,345.603,605.810,237.540,472.882,50.454,3.604,50.454,327.489,329.174,342.611,24.456,26.404,24.456 +2348,73.547,227.933,470.545,351.320,600.943,233.434,476.265,46.118,4.205,46.118,327.287,328.980,343.159,25.013,26.091,25.013 +2349,73.579,222.885,475.002,356.921,594.881,229.076,480.492,41.566,5.108,41.566,326.549,329.012,343.097,25.057,24.305,25.057 +2350,73.611,217.532,478.957,362.091,588.084,225.037,484.536,36.630,5.679,36.630,324.833,329.557,343.536,25.827,23.734,25.827 +2351,73.642,212.325,483.969,366.994,581.034,221.347,489.498,31.499,6.367,31.499,322.862,329.973,344.024,26.160,23.562,26.160 +2352,73.674,205.431,489.588,371.680,572.052,217.352,495.393,25.964,7.079,25.964,318.106,329.807,344.625,25.682,23.389,25.682 +2353,73.705,195.315,498.065,376.161,562.931,213.232,504.011,18.359,8.593,18.359,308.635,331.007,346.390,24.971,21.560,24.971 +2354,73.736,170.735,501.206,378.334,553.071,210.251,509.876,12.375,9.601,12.375,265.960,329.150,346.870,21.790,21.829,21.790 +2355,73.766,172.586,515.181,379.754,542.093,207.330,519.892,7.722,10.923,7.722,277.562,328.225,347.687,19.147,21.808,19.147 +2356,73.795,194.071,528.314,380.228,532.427,205.617,528.510,0.975,11.976,0.975,326.208,328.301,349.303,18.819,22.855,18.819 +2357,73.825,194.991,539.196,380.657,520.824,205.529,538.080,173.953,13.076,173.953,330.751,328.464,351.944,19.509,22.611,19.509 +2358,73.855,194.991,539.196,380.657,520.824,205.529,538.080,173.953,13.076,173.953,330.751,328.464,351.944,19.509,22.611,19.509 +2359,73.883,197.252,550.347,378.329,509.133,205.752,548.330,166.651,14.300,166.651,336.454,327.698,353.927,19.559,22.287,19.559 +2360,73.917,200.070,561.606,374.597,496.714,207.641,558.665,158.769,15.700,158.769,339.872,326.488,356.117,19.474,21.377,19.474 +2361,73.947,204.722,573.099,368.905,485.044,211.129,569.540,150.945,17.168,150.945,343.252,324.089,357.912,19.523,21.424,19.523 +2362,73.980,210.951,583.966,360.990,473.531,216.152,580.003,142.696,18.905,142.696,346.392,322.321,359.470,19.280,21.124,19.280 +2363,74.015,218.589,594.649,351.137,463.301,222.732,590.371,134.085,20.556,134.085,349.311,319.756,361.221,19.141,20.833,19.141 +2364,74.051,228.236,604.890,339.282,454.001,231.653,600.086,125.422,22.094,125.422,351.065,318.124,362.854,19.580,21.366,19.580 +2365,74.093,252.673,620.212,312.951,439.599,254.511,614.367,107.461,26.211,107.461,356.247,311.746,368.501,19.602,24.417,19.602 +2366,74.125,265.291,624.304,297.706,436.682,266.031,618.732,97.561,28.179,97.561,358.028,309.777,369.270,25.835,23.706,25.835 +2367,74.157,284.867,625.982,281.183,437.352,284.851,621.673,89.791,30.735,89.791,360.049,307.644,368.667,25.025,19.560,25.025 +2368,74.188,284.867,625.982,281.183,437.352,284.851,621.673,89.791,30.735,89.791,360.049,307.644,368.667,25.025,19.560,25.025 +2369,74.221,296.308,625.750,266.081,438.373,295.452,621.278,79.168,32.705,79.168,361.224,305.771,370.330,26.895,20.771,26.895 +2370,74.252,314.900,621.800,250.427,442.887,313.244,617.109,70.560,34.854,70.560,360.444,304.665,370.393,21.578,19.665,21.578 +2371,74.283,330.289,615.368,236.663,449.454,327.624,610.517,61.212,36.529,61.212,358.851,303.209,369.921,23.334,19.226,23.334 +2372,74.314,344.546,610.631,224.122,458.278,338.660,603.062,52.125,37.781,52.125,350.034,302.590,369.210,20.611,18.389,20.611 +2373,74.346,368.634,611.777,214.006,468.231,348.996,593.150,43.485,38.395,43.485,313.681,302.023,367.815,20.390,18.189,20.390 +2374,74.378,378.901,595.818,205.344,479.075,358.484,580.878,36.193,39.000,36.193,316.809,302.052,367.408,22.656,18.791,22.656 +2375,74.409,373.500,572.500,199.070,489.812,364.691,568.095,26.565,39.664,26.565,346.591,302.552,366.289,25.491,20.146,25.491 +2376,74.440,375.115,558.167,194.458,501.479,368.798,556.054,18.495,41.309,18.495,351.974,303.471,365.296,25.342,21.556,25.342 +2377,74.470,372.005,543.634,191.319,514.031,366.727,542.646,10.609,43.512,10.609,344.617,304.789,355.356,26.095,21.436,26.095 +2378,74.502,369.771,531.762,190.164,526.897,365.019,531.516,2.964,46.061,2.964,340.201,305.706,349.719,25.125,22.034,25.125 +2379,74.534,369.356,522.626,190.455,539.230,364.908,522.969,175.601,49.246,175.601,341.453,308.136,350.374,21.092,22.017,21.092 +2380,74.567,370.003,511.937,191.665,552.255,365.675,512.816,168.518,53.210,168.518,347.926,311.204,356.758,20.733,22.792,20.733 +2381,74.597,366.999,501.996,194.439,563.032,362.855,503.356,161.841,56.070,161.841,348.531,312.850,357.252,19.893,20.547,19.893 +2382,74.631,362.487,493.278,197.993,573.409,358.189,495.237,155.501,59.237,155.501,346.930,315.238,356.378,19.432,20.521,19.432 +2383,74.663,357.102,485.478,201.983,582.509,352.856,487.983,149.456,62.447,149.456,346.092,317.667,355.952,19.696,20.160,19.696 +2384,74.695,351.276,478.831,206.445,591.249,346.939,482.011,143.746,65.833,143.746,345.034,319.630,355.789,19.192,20.306,19.192 +2385,74.726,345.190,473.402,211.626,598.758,341.143,477.002,138.348,68.895,138.348,344.558,321.646,355.389,19.179,20.001,19.179 +2386,74.755,338.958,468.587,216.989,605.329,335.039,472.769,133.134,71.973,133.134,343.433,323.827,354.896,18.701,20.031,18.701 +2387,74.785,338.958,468.587,216.989,605.329,335.039,472.769,133.134,71.973,133.134,343.433,323.827,354.896,18.701,20.031,18.701 +2388,74.813,332.727,464.813,222.601,610.941,329.238,469.239,128.251,75.107,128.251,343.329,325.237,354.599,18.951,20.130,18.951 +2389,74.846,326.924,461.472,228.294,615.834,323.654,466.433,123.393,78.198,123.393,342.560,326.939,354.443,19.091,20.220,19.091 +2390,74.878,321.187,458.224,234.091,619.908,317.935,464.117,118.887,81.193,118.887,340.358,328.295,353.820,19.444,19.973,19.444 +2391,74.909,314.914,456.910,240.256,623.474,312.478,462.257,114.499,84.251,114.499,341.550,329.362,353.302,19.466,19.325,19.466 +2392,74.940,309.499,454.194,246.263,626.511,307.020,460.841,110.456,87.362,110.456,338.726,331.432,352.914,19.378,19.390,19.378 +2393,74.971,304.068,452.846,251.892,628.997,302.007,459.870,106.354,90.326,106.354,338.152,332.057,352.790,19.220,19.375,19.220 +2394,75.002,298.957,451.107,257.599,630.448,297.171,459.196,102.450,93.302,102.450,334.947,333.657,351.513,18.553,19.679,18.553 +2395,75.032,296.931,428.607,262.766,631.528,292.344,458.564,98.705,95.964,98.705,290.282,333.261,350.895,18.180,20.307,18.180 +2396,75.064,292.012,406.370,269.427,632.325,287.223,458.255,95.274,99.280,95.274,245.725,333.241,349.936,17.985,19.719,17.985 +2397,75.096,283.183,433.544,275.541,632.509,282.533,458.235,91.507,102.265,91.507,299.396,333.090,348.795,17.810,20.478,17.810 +2398,75.126,277.694,441.794,281.508,632.138,278.354,458.406,87.725,105.255,87.725,314.189,332.756,347.441,18.700,20.523,18.700 +2399,75.156,272.826,446.935,287.402,630.641,274.033,458.308,83.946,108.138,83.946,322.690,331.117,345.563,19.587,20.530,19.587 +2400,75.186,272.826,446.935,287.402,630.641,274.033,458.308,83.946,108.138,83.946,322.690,331.117,345.563,19.587,20.530,19.587 +2401,75.215,267.594,448.866,293.405,629.271,269.310,458.587,79.992,111.003,79.992,324.805,330.764,344.548,20.101,20.955,20.101 +2402,75.247,263.244,450.473,299.183,627.360,265.343,459.151,76.399,113.856,76.399,325.042,330.095,342.898,21.195,21.279,21.195 +2403,75.279,258.446,452.412,305.546,625.260,260.843,460.003,72.474,116.952,72.474,326.175,329.208,342.096,21.882,21.242,21.882 +2404,75.311,253.693,454.849,313.066,623.039,256.390,461.697,68.504,120.466,68.504,327.053,328.955,341.774,22.747,21.346,22.747 +2405,75.342,248.320,457.182,319.760,620.172,251.425,463.641,64.319,123.433,64.319,327.033,328.418,341.365,22.347,22.346,22.347 +2406,75.374,243.238,459.692,326.864,616.900,246.918,466.075,60.032,126.439,60.032,326.453,327.615,341.189,23.034,24.668,23.034 +2407,75.405,238.164,462.625,333.827,612.767,242.399,468.814,55.620,129.289,55.620,325.866,326.891,340.866,23.630,25.611,23.630 +2408,75.435,232.894,466.036,340.618,607.655,237.557,471.792,50.993,132.089,50.993,326.072,325.999,340.887,24.299,26.309,24.299 +2409,75.465,227.636,470.006,347.114,602.113,233.051,475.640,46.136,134.764,46.136,324.821,325.313,340.450,24.742,26.544,24.742 +2410,75.496,222.523,474.825,353.210,595.731,228.184,479.753,41.035,137.663,41.035,325.888,325.033,340.900,25.367,27.153,25.367 +2411,75.528,217.320,480.354,359.115,588.238,223.372,484.688,35.607,140.194,35.607,326.416,324.830,341.303,25.504,26.632,25.504 +2412,75.559,212.550,486.677,364.718,580.129,219.038,490.415,29.948,142.832,29.948,327.056,324.610,342.031,25.513,27.333,25.513 +2413,75.589,207.767,493.782,369.437,570.850,214.740,496.894,24.047,145.235,24.047,327.541,324.327,342.813,25.624,26.442,25.624 +2414,75.620,207.767,493.782,369.437,570.850,214.740,496.894,24.047,145.235,24.047,327.541,324.327,342.813,25.624,26.442,25.624 +2415,75.650,203.322,501.989,373.566,560.748,211.034,504.443,17.650,147.546,17.650,327.720,323.814,343.906,25.253,25.739,25.253 +2416,75.681,199.537,510.812,376.474,549.956,207.926,512.449,11.041,149.647,11.041,328.129,323.631,345.224,25.662,25.235,25.662 +2417,75.713,195.503,520.466,377.990,538.233,205.718,521.266,4.477,151.390,4.477,325.648,323.465,346.142,25.183,24.182,25.183 +2418,75.745,191.546,534.000,377.956,525.856,204.339,533.411,177.365,152.745,177.365,321.948,322.940,347.561,19.043,22.817,19.043 +2419,75.775,187.431,546.955,376.749,513.501,204.158,544.018,170.042,153.298,170.042,316.570,322.014,350.536,20.285,21.724,20.285 +2420,75.806,178.528,561.648,373.467,500.936,205.144,553.125,162.244,153.126,162.244,296.548,321.145,352.443,18.732,20.365,18.732 +2421,75.837,135.902,597.795,368.456,488.562,207.825,563.437,154.466,151.699,154.466,195.018,320.085,354.434,18.811,19.438,18.811 +2422,75.868,188.860,589.969,361.982,477.359,212.360,574.749,147.070,150.704,147.070,301.057,319.375,357.052,19.157,19.344,19.157 +2423,75.898,210.616,591.761,352.971,465.952,218.417,584.972,138.968,148.968,138.968,338.585,318.299,359.268,19.238,21.025,19.238 +2424,75.930,220.546,601.064,343.200,456.600,226.139,594.483,130.365,147.529,130.365,344.473,316.603,361.746,19.277,20.861,19.277 +2425,75.962,232.073,610.006,330.906,448.059,236.030,603.577,121.608,147.724,121.608,349.245,315.456,364.344,19.785,20.559,19.785 +2426,75.992,245.153,617.322,317.567,441.491,247.757,611.028,112.472,148.266,112.472,353.070,314.395,366.693,19.817,20.188,19.817 +2427,76.023,258.686,623.381,302.871,437.289,260.098,616.960,102.401,148.595,102.401,356.181,313.299,369.330,23.537,19.011,23.537 +2428,76.053,258.686,623.381,302.871,437.289,260.098,616.960,102.401,148.595,102.401,356.181,313.299,369.330,23.537,19.011,23.537 +2429,76.083,272.697,626.867,287.123,435.708,273.009,620.304,92.726,149.300,92.726,356.976,312.315,370.117,27.255,18.594,27.255 +2430,76.113,288.788,627.425,271.256,436.337,288.075,621.189,83.474,150.094,83.474,358.580,311.197,371.133,26.370,18.572,26.370 +2431,76.144,306.252,624.654,255.409,439.731,304.749,619.215,74.551,150.751,74.551,360.999,310.822,372.284,24.629,18.707,24.629 +2432,76.177,323.350,617.731,240.467,445.939,321.220,613.097,65.323,151.673,65.323,361.015,310.536,371.214,22.520,17.942,22.520 +2433,76.209,337.446,608.985,226.824,453.664,334.703,604.939,55.862,152.354,55.862,361.723,310.463,371.499,24.169,18.392,24.169 +2434,76.239,349.637,598.145,214.944,463.391,346.264,594.594,46.469,152.830,46.469,361.340,309.977,371.136,25.230,18.092,25.230 +2435,76.270,359.177,585.378,204.835,474.663,355.610,582.653,37.378,153.208,37.378,361.763,310.387,370.741,26.271,18.092,26.271 +2436,76.301,366.071,572.393,196.681,486.857,362.100,570.247,28.389,153.625,28.389,361.322,310.841,370.349,25.934,18.296,25.934 +2437,76.330,371.087,559.341,191.108,499.721,366.716,557.762,19.868,153.869,19.868,360.466,311.753,369.761,25.727,18.803,25.727 +2438,76.362,369.755,545.583,187.448,512.892,364.950,544.590,11.672,154.120,11.672,350.676,312.234,360.490,25.266,19.562,25.266 +2439,76.393,367.230,533.443,185.282,524.750,362.652,533.141,3.780,155.010,3.780,345.898,313.054,355.075,24.496,21.553,24.496 +2440,76.423,367.945,523.667,184.731,536.303,362.123,524.052,176.220,154.799,176.220,343.959,314.132,355.628,21.221,21.290,21.221 +2441,76.453,367.945,523.667,184.731,536.303,362.123,524.052,176.220,154.799,176.220,343.959,314.132,355.628,21.221,21.290,21.221 +2442,76.481,369.841,512.685,185.997,547.867,363.282,513.961,168.990,154.811,168.990,347.630,314.984,360.995,20.892,21.598,20.892 +2443,76.515,370.345,501.371,189.051,558.043,361.436,504.246,162.115,154.123,162.115,342.432,316.733,361.153,19.936,20.439,19.936 +2444,76.547,389.677,481.083,192.200,568.900,356.798,495.990,155.611,153.435,155.611,287.832,316.180,360.033,19.558,19.677,19.558 +2445,76.580,402.662,458.005,196.937,578.383,351.399,487.708,149.910,153.654,149.910,239.720,317.084,358.214,18.591,19.322,18.591 +2446,76.612,373.157,461.773,202.163,586.824,346.129,481.476,143.909,153.239,143.909,289.890,317.985,356.786,18.442,19.796,18.442 +2447,76.644,354.877,463.534,207.752,593.974,340.683,476.272,138.094,152.969,138.094,316.952,318.911,355.094,18.492,19.833,18.492 +2448,76.676,345.417,460.598,213.799,600.074,335.297,471.758,132.200,152.488,132.200,323.211,319.049,353.340,20.635,19.568,20.635 +2449,76.707,336.925,457.586,220.057,605.666,329.265,467.633,127.321,152.003,127.321,326.699,320.049,351.965,19.551,19.783,19.551 +2450,76.738,329.201,455.078,226.376,610.459,323.339,464.325,122.372,151.157,122.372,328.780,320.737,350.677,19.607,19.677,19.607 +2451,76.769,321.924,453.273,233.374,615.023,317.508,461.680,117.709,150.341,117.709,330.764,321.380,349.757,19.440,21.194,19.440 +2452,76.799,315.310,451.276,239.917,618.359,311.747,459.589,113.199,149.394,113.199,330.367,321.872,348.456,19.171,20.826,19.171 +2453,76.829,309.199,449.754,246.771,621.444,306.305,458.195,108.925,148.627,108.925,329.622,322.631,347.468,19.514,21.678,19.514 +2454,76.861,302.631,448.440,253.949,623.919,300.454,456.843,104.520,147.763,104.520,329.440,323.328,346.800,19.647,22.183,19.647 +2455,76.892,296.306,447.786,260.522,625.744,294.780,456.149,100.340,146.768,100.340,328.976,323.970,345.979,19.689,22.700,19.689 +2456,76.922,296.306,447.786,260.522,625.744,294.780,456.149,100.340,146.768,100.340,328.976,323.970,345.979,19.689,22.700,19.689 +2457,76.951,290.261,447.585,267.325,626.745,289.352,455.726,96.367,145.597,96.367,328.429,324.349,344.813,18.887,22.636,18.887 +2458,76.982,284.447,447.559,273.958,627.443,284.115,455.686,92.337,143.517,92.337,327.788,324.993,344.056,18.719,23.040,18.719 +2459,77.015,278.799,448.370,280.880,627.840,279.040,456.311,88.264,143.130,88.264,327.123,325.200,343.012,18.779,24.000,18.779 +2460,77.047,273.911,449.177,287.725,627.512,274.609,456.543,84.588,141.904,84.588,328.089,325.587,342.887,19.429,24.037,19.429 +2461,77.079,268.216,450.297,294.692,627.028,269.431,457.583,80.538,140.268,80.538,327.812,325.983,342.585,19.399,24.180,19.399 +2462,77.110,263.078,452.011,301.290,625.758,264.714,458.756,76.373,139.020,76.373,327.955,326.413,341.836,20.232,24.859,20.232 +2463,77.141,257.735,453.120,308.282,623.805,259.942,459.984,72.168,137.265,72.168,327.088,326.252,341.507,21.016,24.430,21.016 +2464,77.171,252.853,454.825,314.987,621.459,255.592,461.564,67.884,135.785,67.884,326.434,326.052,340.983,22.766,24.969,22.766 +2465,77.202,247.700,457.400,322.258,618.748,250.975,463.951,63.435,133.868,63.435,326.019,326.262,340.667,23.255,25.261,23.255 +2466,77.232,241.757,460.231,328.784,615.115,245.524,466.468,58.871,132.151,58.871,325.998,326.733,340.571,23.220,25.169,23.220 +2467,77.262,236.395,463.730,335.851,611.033,240.645,469.598,54.085,130.068,54.085,326.295,326.740,340.785,23.887,25.304,23.887 +2468,77.294,231.009,467.677,342.522,606.017,235.698,473.111,49.205,128.157,49.205,326.467,326.491,340.822,24.661,25.668,24.661 +2469,77.324,225.363,471.975,349.091,600.298,230.810,477.227,43.958,126.203,43.958,326.012,326.492,341.145,24.963,26.271,24.963 +2470,77.355,225.363,471.975,349.091,600.298,230.810,477.227,43.958,126.203,43.958,326.012,326.492,341.145,24.963,26.271,24.963 +2471,77.384,220.052,477.403,355.147,593.581,225.863,482.023,38.484,124.173,38.484,326.397,325.877,341.246,25.707,26.293,25.707 +2472,77.414,214.836,483.427,360.603,586.064,221.077,487.449,32.800,122.062,32.800,326.552,326.576,341.402,25.591,26.048,25.591 +2473,77.445,210.135,490.254,365.539,577.599,216.667,493.555,26.815,119.982,26.815,326.914,326.452,341.552,26.099,26.252,26.099 +2474,77.477,205.357,499.154,370.262,567.901,212.081,501.609,20.056,117.759,20.056,328.328,325.231,342.646,25.720,26.454,25.720 +2475,77.508,201.791,507.747,373.732,556.852,208.461,509.369,13.671,115.694,13.671,329.894,323.062,343.622,25.185,26.575,25.185 +2476,77.539,198.787,517.105,376.172,545.431,205.659,517.928,6.827,113.199,6.827,331.303,321.832,345.147,25.389,26.393,25.389 +2477,77.570,196.988,528.427,377.043,533.089,203.967,528.374,179.561,110.879,179.561,332.113,320.795,346.071,23.459,26.287,23.459 +2478,77.600,196.857,542.007,376.100,520.700,203.091,541.121,171.904,108.435,171.904,335.728,319.390,348.322,19.451,25.931,19.451 +2479,77.632,198.373,554.028,373.645,507.541,204.264,552.331,163.926,105.832,163.926,338.060,317.998,350.322,19.609,25.947,19.609 +2480,77.664,201.220,566.203,368.404,494.240,206.783,563.692,155.701,103.325,155.701,339.559,316.021,351.764,19.473,24.404,19.473 +2481,77.695,206.168,578.317,360.134,481.742,210.520,575.521,147.279,100.685,147.279,342.779,314.452,353.127,19.314,21.452,19.314 +2482,77.726,211.692,591.355,353.329,470.114,217.718,586.050,138.644,97.853,138.644,340.734,312.421,356.790,19.354,23.980,19.354 +2483,77.756,220.358,603.466,342.264,459.898,226.007,596.680,129.775,94.728,129.775,341.349,310.841,359.008,19.426,22.420,19.426 +2484,77.785,220.358,603.466,342.264,459.898,226.007,596.680,129.775,94.728,129.775,341.349,310.841,359.008,19.426,22.420,19.426 +2485,77.819,232.595,611.741,329.877,451.449,236.142,605.752,120.635,91.389,120.635,347.145,309.055,361.064,19.673,21.878,19.673 +2486,77.850,245.336,620.333,315.969,445.028,248.142,613.281,111.698,87.007,111.698,347.637,306.888,362.816,19.804,21.187,19.804 +2487,77.882,261.502,628.768,301.538,440.664,263.614,619.603,102.977,82.455,102.977,346.959,306.358,365.770,24.061,20.103,24.061 +2488,77.916,272.435,631.565,286.938,438.899,272.871,621.878,92.573,77.005,92.573,347.458,304.835,366.852,26.423,20.012,26.423 +2489,77.948,293.021,634.253,272.545,439.331,292.037,622.226,85.323,70.915,85.323,343.615,303.376,367.751,25.406,19.682,25.406 +2490,77.982,305.529,632.118,258.597,441.953,302.747,620.989,75.964,64.006,75.964,345.856,302.731,368.798,24.739,19.225,24.739 +2491,78.015,322.160,627.807,245.603,446.758,317.512,616.387,67.859,56.251,67.859,343.782,301.479,368.443,20.818,19.273,20.818 +2492,78.048,335.193,620.328,233.918,452.322,329.237,610.203,59.534,47.996,59.534,345.331,301.703,368.824,20.788,19.289,20.788 +2493,78.081,345.606,610.239,223.456,459.488,339.589,602.663,51.542,39.198,51.542,349.337,302.055,368.686,20.295,19.351,20.295 +2494,78.112,353.926,599.440,214.432,466.876,348.193,593.923,43.904,29.872,43.904,353.039,302.785,368.952,20.147,19.371,20.147 +2495,78.143,361.059,586.012,207.185,473.734,356.416,582.577,36.487,19.938,36.487,357.856,303.806,369.407,24.499,23.133,24.499 +2496,78.174,366.834,574.854,200.422,483.367,362.013,572.121,29.544,9.106,29.544,357.608,305.082,368.690,25.644,21.606,25.644 +2497,78.206,369.980,564.357,194.935,492.766,365.387,562.399,23.090,177.845,23.090,358.226,306.573,368.211,25.448,20.297,25.448 +2498,78.236,371.666,554.725,190.249,502.956,366.854,553.242,17.127,166.470,17.127,357.094,309.491,367.165,25.326,21.493,25.326 +2499,78.268,369.200,544.693,187.058,511.619,364.568,543.750,11.508,154.250,11.508,351.249,311.778,360.704,25.794,21.913,25.794 +2500,78.298,368.160,536.494,185.473,521.465,363.206,535.947,6.301,142.237,6.301,346.531,313.815,356.499,25.354,21.200,25.354 +2501,78.330,367.290,529.444,185.485,531.074,362.496,529.313,1.575,129.579,1.575,344.200,315.727,353.792,24.575,20.389,24.575 +2502,78.362,367.454,525.077,183.915,537.955,361.552,525.372,177.138,118.015,177.138,344.270,316.707,356.088,20.275,23.067,20.275 +2503,78.393,367.844,518.727,185.539,545.794,362.392,519.395,173.014,105.803,173.014,346.515,317.165,357.501,20.864,21.986,20.864 +2504,78.422,368.880,513.359,188.913,552.594,364.136,514.250,169.365,92.816,169.365,348.924,315.897,358.578,19.562,20.221,19.562 +2505,78.452,368.880,513.359,188.913,552.594,364.136,514.250,169.365,92.816,169.365,348.924,315.897,358.578,19.562,20.221,19.562 +2506,78.482,369.399,508.099,191.348,557.602,365.023,509.202,165.859,80.375,165.859,351.448,315.968,360.474,19.638,21.010,19.638 +2507,78.515,367.500,503.500,193.238,561.484,363.325,504.792,162.801,67.923,162.801,349.748,314.565,358.489,19.902,21.268,19.902 +2508,78.547,366.172,499.364,195.174,564.993,362.000,500.869,160.168,55.269,160.168,348.503,314.266,357.373,19.862,21.990,19.862 +2509,78.580,363.992,496.439,196.043,567.179,360.263,497.955,157.871,42.498,157.871,348.350,312.123,356.400,19.280,22.210,19.280 +2510,78.612,363.097,493.437,197.049,568.364,359.058,495.256,155.761,29.407,155.761,346.620,311.809,355.480,19.512,22.444,19.512 +2511,78.644,363.172,490.355,197.085,570.071,357.586,493.067,154.099,16.858,154.099,343.613,311.671,356.032,19.535,22.766,19.535 +2512,78.676,365.250,486.884,196.769,570.743,356.247,491.540,152.656,3.235,152.656,335.808,311.915,356.079,19.606,21.748,19.606 +2513,78.707,369.749,482.701,196.136,572.890,354.834,490.848,151.354,170.218,151.354,323.220,314.022,357.208,20.745,21.510,20.745 +2514,78.738,399.175,464.541,195.635,575.259,353.216,489.852,151.157,157.166,151.157,253.530,315.781,358.466,18.357,19.791,18.357 +2515,78.768,360.376,485.649,194.718,575.720,352.779,489.976,150.336,144.240,150.336,342.079,319.356,359.564,19.120,21.723,19.120 +2516,78.798,356.855,487.127,194.764,578.290,351.864,489.986,150.201,131.695,150.201,348.917,319.965,360.421,19.588,20.882,19.588 +2517,78.829,355.997,487.861,194.969,579.660,351.743,490.283,150.336,118.748,150.336,351.131,321.875,360.922,19.612,19.148,19.612 +2518,78.861,356.704,488.288,195.070,580.020,352.155,490.830,150.797,106.272,150.797,350.847,322.240,361.271,19.692,20.558,19.692 +2519,78.891,357.808,488.872,196.752,579.571,353.515,491.194,151.591,93.262,151.591,350.101,320.020,359.862,19.423,19.435,19.423 +2520,78.921,357.808,488.872,196.752,579.571,353.515,491.194,151.591,93.262,151.591,350.101,320.020,359.862,19.423,19.435,19.423 +2521,78.949,359.621,489.834,197.308,577.937,355.008,492.220,152.650,80.340,152.650,348.518,319.595,358.905,19.449,19.633,19.449 +2522,78.981,361.108,491.221,197.878,574.786,356.894,493.273,154.036,67.122,154.036,347.932,316.747,357.306,19.459,20.275,19.459 +2523,79.014,362.612,493.458,197.324,571.381,358.534,495.302,155.664,54.197,155.664,347.523,314.906,356.474,19.546,21.964,19.546 +2524,79.048,364.083,496.142,195.674,566.556,360.126,497.763,157.721,40.741,157.721,347.961,311.716,356.512,19.265,22.647,19.265 +2525,79.080,366.276,498.999,193.873,560.838,361.869,500.606,159.966,27.280,159.966,347.549,310.929,356.930,19.807,22.658,19.807 +2526,79.111,371.990,501.635,191.452,555.717,363.214,504.406,162.474,14.213,162.474,340.078,310.705,358.483,19.674,22.029,19.674 +2527,79.141,380.492,504.288,189.113,551.615,364.617,508.446,165.324,1.917,165.324,328.607,310.295,361.429,19.601,20.875,19.601 +2528,79.172,439.952,497.687,186.805,546.920,363.930,513.045,168.579,170.335,168.579,205.535,311.037,360.650,19.030,20.586,19.030 +2529,79.203,368.544,517.302,185.420,542.082,362.942,518.110,171.790,159.693,171.790,346.930,312.965,358.250,19.642,23.045,19.642 +2530,79.233,367.036,522.964,184.540,536.952,362.108,523.345,175.577,148.206,175.577,346.292,313.869,356.177,19.940,22.655,19.940 +2531,79.264,366.500,527.000,184.124,530.679,361.562,527.000,0.000,136.375,0.000,345.000,314.691,354.876,24.000,22.870,24.000 +2532,79.296,367.734,534.164,186.395,525.268,363.351,533.820,4.497,124.196,4.497,345.372,314.562,354.165,24.027,20.763,24.027 +2533,79.327,369.527,541.338,188.584,517.739,365.249,540.625,9.462,112.249,9.462,347.375,313.256,356.048,25.811,21.077,25.811 +2534,79.357,371.441,550.677,190.610,508.932,366.922,549.479,14.845,99.403,14.845,352.281,311.371,361.631,24.794,22.521,24.794 +2535,79.388,371.441,550.677,190.610,508.932,366.922,549.479,14.845,99.403,14.845,352.281,311.371,361.631,24.794,22.521,24.794 +2536,79.417,372.526,560.242,194.076,499.498,367.759,558.468,20.410,88.132,20.410,356.515,307.424,366.688,25.850,18.588,25.850 +2537,79.447,369.506,569.988,198.808,490.545,364.925,567.711,26.423,75.864,26.423,355.973,306.086,366.205,25.937,18.741,25.937 +2538,79.478,365.147,580.574,204.400,481.300,360.567,577.587,33.111,63.435,33.111,355.875,305.000,366.812,25.565,19.230,25.565 +2539,79.509,362.815,594.717,210.842,472.231,354.225,587.408,40.397,51.807,40.397,345.123,302.792,367.681,24.451,21.526,24.451 +2540,79.541,355.562,608.520,218.496,463.375,344.872,597.578,45.669,38.459,45.669,338.024,302.972,368.618,20.293,18.389,20.293 +2541,79.572,340.886,607.202,227.455,454.557,337.938,603.165,53.865,26.162,53.865,360.342,302.791,370.342,23.754,19.967,23.754 +2542,79.603,330.068,613.693,236.727,447.612,327.763,609.531,61.020,13.793,61.020,361.989,304.357,371.505,22.812,20.798,22.812 +2543,79.633,318.958,618.913,247.033,443.771,317.471,615.204,68.152,1.548,68.152,362.671,304.375,370.664,22.097,17.372,22.097 +2544,79.664,304.753,624.433,258.557,439.632,303.519,619.783,75.133,169.395,75.133,361.692,307.148,371.313,25.189,18.010,25.189 +2545,79.695,291.274,626.795,270.220,436.639,290.535,621.227,82.446,157.258,82.446,360.080,308.995,371.314,26.343,18.832,26.343 +2546,79.725,278.277,626.501,282.001,435.782,278.305,620.399,90.260,145.176,90.260,357.060,309.910,369.264,23.059,18.560,23.059 +2547,79.759,265.387,625.852,293.164,436.188,266.320,618.825,97.561,132.920,97.561,354.983,310.022,369.162,24.712,19.817,24.712 +2548,79.801,254.085,624.199,304.440,439.171,256.238,616.365,105.364,120.453,105.364,351.017,309.535,367.266,21.787,22.253,21.787 +2549,79.834,220.823,671.690,315.799,443.740,246.130,611.678,112.865,109.058,112.865,233.365,308.355,363.626,19.794,19.557,19.794 +2550,79.866,232.220,615.290,326.892,449.862,237.260,606.613,120.147,97.125,120.147,341.061,308.846,361.129,19.553,20.590,19.553 +2551,79.904,225.907,603.825,338.337,456.611,229.158,599.539,127.173,84.207,127.173,348.953,309.556,359.712,19.490,23.157,19.490 +2552,79.935,218.848,595.297,348.100,463.800,222.297,591.713,133.896,71.565,133.896,348.852,311.484,358.800,19.268,24.350,19.268 +2553,79.966,212.554,587.276,356.500,471.500,216.934,583.657,140.435,59.036,140.435,346.699,314.528,358.061,19.466,24.353,19.466 +2554,79.997,207.833,578.767,363.149,479.482,212.762,575.526,146.674,46.219,146.674,345.050,317.735,356.848,19.527,24.457,19.527 +2555,80.028,203.814,570.673,367.964,488.551,209.252,567.863,152.665,34.809,152.665,342.577,321.865,354.819,19.882,21.168,19.882 +2556,80.057,200.850,562.122,373.614,495.225,207.717,559.387,158.281,22.599,158.281,340.942,324.077,355.727,19.336,22.645,19.336 +2557,80.087,200.850,562.122,373.614,495.225,207.717,559.387,158.281,22.599,158.281,340.942,324.077,355.727,19.336,22.645,19.336 +2558,80.115,197.668,554.871,376.546,502.939,206.239,552.352,163.623,10.539,163.623,336.794,325.256,354.660,19.811,23.366,19.811 +2559,80.147,194.036,547.565,377.476,509.881,204.938,545.488,169.216,177.804,169.216,330.113,323.567,352.308,18.898,24.605,18.898 +2560,80.180,164.755,543.227,378.508,516.967,204.660,538.659,173.470,166.386,173.470,270.044,325.010,350.374,18.350,21.724,18.350 +2561,80.212,189.612,533.468,378.390,525.259,204.168,532.918,177.839,155.376,177.839,319.640,324.423,348.773,18.553,22.916,18.553 +2562,80.243,195.464,525.874,377.796,532.897,204.425,526.047,1.102,143.326,1.102,329.016,323.411,346.941,23.380,24.778,23.380 +2563,80.274,197.987,519.651,377.018,540.515,205.311,520.288,4.970,130.934,4.970,330.925,323.080,345.628,25.036,26.602,25.036 +2564,80.306,199.521,514.857,375.777,547.242,206.366,515.858,8.326,118.610,8.326,330.504,323.704,344.340,25.340,26.018,25.340 +2565,80.338,200.922,511.354,375.088,553.104,207.509,512.649,11.129,106.144,11.129,331.049,324.317,344.474,24.884,26.416,24.884 +2566,80.368,202.424,507.644,374.521,558.252,209.066,509.259,13.671,94.764,13.671,331.023,325.621,344.693,25.684,25.163,25.684 +2567,80.398,203.623,504.821,374.502,563.020,210.725,506.850,15.945,83.157,15.945,331.039,327.808,345.813,25.412,24.028,25.412 +2568,80.428,205.018,501.362,374.456,566.365,212.640,503.868,18.199,72.022,18.199,330.436,329.843,346.482,25.923,22.753,25.923 +2569,80.458,205.367,499.274,374.181,568.771,213.741,502.265,19.654,60.604,19.654,329.139,331.418,346.924,25.965,20.812,25.965 +2570,80.488,205.367,499.274,374.181,568.771,213.741,502.265,19.654,60.604,19.654,329.139,331.418,346.924,25.965,20.812,25.965 +2571,80.517,204.698,497.995,374.062,570.521,214.392,501.648,20.647,49.538,20.647,326.679,332.775,347.399,25.754,19.692,25.754 +2572,80.550,204.466,496.086,374.308,570.619,215.136,500.354,21.801,38.981,21.801,324.781,332.957,347.766,25.069,19.672,25.069 +2573,80.581,195.955,494.530,374.471,569.376,214.233,502.194,22.751,29.264,22.751,307.864,333.158,347.503,18.563,19.433,18.563 +2574,80.613,170.493,483.174,375.074,567.989,215.273,500.042,20.640,19.639,20.640,251.288,331.493,346.991,22.111,21.275,22.111 +2575,80.645,196.389,495.149,374.901,565.210,213.820,501.608,20.331,9.943,20.331,309.110,330.651,346.288,25.251,22.611,25.251 +2576,80.676,202.003,494.746,374.496,565.740,214.668,499.833,21.881,179.068,21.881,318.455,329.152,345.751,26.143,22.696,26.143 +2577,80.707,204.115,496.908,373.717,564.638,213.512,500.539,21.125,168.254,21.125,324.932,327.549,345.080,25.567,23.255,25.567 +2578,80.737,204.512,498.966,373.130,563.296,212.567,501.857,19.747,156.342,19.747,326.643,325.924,343.758,25.702,24.897,25.702 +2579,80.768,203.850,500.950,373.042,562.057,211.378,503.459,18.435,143.514,18.435,327.928,324.817,343.798,25.298,26.222,25.298 +2580,80.798,203.275,503.583,372.951,560.525,210.206,505.662,16.699,130.855,16.699,328.822,324.296,343.293,25.478,26.493,25.478 +2581,80.830,202.169,505.971,373.393,558.741,209.041,507.790,14.826,118.009,14.826,329.618,323.995,343.835,25.561,26.373,25.561 +2582,80.862,201.413,508.685,374.482,555.995,208.319,510.254,12.804,105.068,12.804,330.171,324.781,344.336,25.619,26.257,25.619 +2583,80.892,200.799,511.950,376.206,553.030,207.849,513.249,10.437,92.454,10.437,331.217,324.602,345.555,25.596,25.305,25.596 +2584,80.923,200.221,516.096,377.694,548.465,207.109,517.015,7.595,79.796,7.595,332.590,326.375,346.489,25.111,24.191,25.111 +2585,80.954,200.221,516.096,377.694,548.465,207.109,517.015,7.595,79.796,7.595,332.590,326.375,346.489,25.111,24.191,25.111 +2586,80.982,199.382,520.601,379.328,542.860,206.536,521.159,4.456,66.935,4.456,333.560,327.222,347.912,24.782,25.014,24.782 +2587,81.015,198.065,525.962,380.693,536.472,205.900,526.064,0.744,55.125,0.744,334.154,327.936,349.825,24.284,23.816,24.284 +2588,81.048,197.198,532.085,380.424,529.545,204.901,531.691,177.075,42.985,177.075,335.380,328.392,350.807,22.861,21.172,22.861 +2589,81.080,196.609,541.017,380.060,521.241,205.108,539.903,172.535,30.722,172.535,334.643,328.225,351.786,19.653,20.533,19.653 +2590,81.111,197.006,548.146,379.514,511.459,205.951,546.269,168.152,18.962,168.152,335.747,327.059,354.026,19.683,22.562,19.683 +2591,81.141,197.289,555.641,377.497,502.486,206.943,552.730,163.223,7.063,163.223,335.427,326.583,355.595,19.712,22.571,19.712 +2592,81.172,198.812,563.564,372.881,494.115,207.702,559.968,157.971,175.081,157.971,336.460,323.644,355.640,19.424,21.360,19.424 +2593,81.203,200.564,572.254,367.751,485.480,209.550,567.611,152.673,163.443,152.673,336.269,322.405,356.498,19.120,21.813,19.120 +2594,81.234,198.229,584.565,361.530,476.725,212.596,575.128,146.701,152.093,146.701,322.632,319.879,357.011,19.207,19.694,19.207 +2595,81.264,154.965,633.435,354.646,468.966,216.281,582.723,140.407,140.440,140.407,199.108,316.530,358.247,18.448,19.475,18.448 +2596,81.296,193.057,620.007,346.456,462.167,221.373,590.756,134.068,128.594,134.068,277.356,314.843,358.780,18.578,19.422,18.578 +2597,81.328,212.171,618.672,337.757,456.108,227.747,598.453,127.610,116.896,127.610,308.754,312.605,359.800,18.790,19.905,18.790 +2598,81.358,228.787,617.884,328.801,450.922,236.107,605.783,121.169,105.601,121.169,332.679,310.419,360.963,19.442,20.314,19.442 +2599,81.388,228.787,617.884,328.801,450.922,236.107,605.783,121.169,105.601,121.169,332.679,310.419,360.963,19.442,20.314,19.442 +2600,81.417,240.848,620.773,319.197,446.412,244.934,611.633,114.085,93.857,114.085,342.261,307.852,362.285,19.437,20.560,19.437 +2601,81.447,252.431,623.224,309.030,442.523,254.410,616.581,106.583,82.304,106.583,350.953,306.752,364.815,20.757,21.132,20.757 +2602,81.479,263.070,625.750,297.962,439.963,263.961,620.160,99.061,70.710,99.061,355.282,306.093,366.605,24.488,21.190,24.488 +2603,81.511,275.479,626.644,286.830,438.503,275.636,621.775,91.848,59.081,91.848,357.330,305.265,367.075,24.342,21.718,24.342 +2604,81.543,291.178,626.292,274.592,438.617,290.841,621.961,85.551,47.406,85.551,359.415,304.560,368.103,23.784,20.625,23.784 +2605,81.575,301.069,624.918,262.065,439.910,300.155,620.881,77.231,35.961,77.231,361.548,305.263,369.827,25.045,20.315,25.045 +2606,81.606,315.548,621.032,250.172,442.719,314.041,616.876,70.073,24.513,70.073,362.152,305.300,370.996,21.680,20.541,21.680 +2607,81.637,327.461,614.939,238.677,446.900,325.376,610.930,62.513,13.010,62.513,362.022,305.884,371.060,23.089,21.112,23.089 +2608,81.668,338.463,607.995,227.115,453.427,335.768,604.127,55.120,1.444,55.120,362.094,306.306,371.522,24.060,19.834,24.060 +2609,81.698,347.826,599.638,217.608,461.605,344.927,596.431,47.889,169.857,47.889,362.149,308.126,370.794,24.892,18.229,24.892 +2610,81.730,355.445,590.209,208.963,469.908,352.366,587.544,40.878,158.341,40.878,362.684,309.359,370.829,25.454,18.390,25.454 +2611,81.761,362.220,580.748,201.723,479.340,358.399,578.170,34.019,146.666,34.019,361.088,310.907,370.307,25.943,18.196,25.943 +2612,81.791,367.202,570.927,195.960,488.954,362.785,568.628,27.499,135.331,27.499,359.570,311.179,369.530,26.076,18.335,26.076 +2613,81.821,367.202,570.927,195.960,488.954,362.785,568.628,27.499,135.331,27.499,359.570,311.179,369.530,26.076,18.335,26.076 +2614,81.850,371.180,561.687,192.089,499.397,366.629,559.914,21.286,123.778,21.286,359.436,312.301,369.205,25.473,19.327,25.473 +2615,81.882,371.262,551.806,190.197,509.587,367.120,550.662,15.433,111.954,15.433,354.352,312.892,362.947,25.246,20.649,25.246 +2616,81.914,370.215,542.157,188.126,518.520,365.298,541.300,9.881,99.063,9.881,346.924,311.988,356.906,25.633,23.143,25.633 +2617,81.946,369.135,534.738,188.567,527.355,364.546,534.363,4.677,88.182,4.677,342.718,311.288,351.928,24.282,20.212,24.282 +2618,81.977,369.000,527.000,188.531,534.709,363.765,527.000,0.000,75.610,0.000,340.000,310.667,350.469,24.000,22.278,24.000 +2619,82.009,369.188,522.282,189.793,540.896,364.538,522.665,175.296,64.036,175.296,341.971,309.991,351.302,20.160,21.484,20.160 +2620,82.041,369.277,515.933,190.820,547.214,365.219,516.572,171.051,52.407,171.051,345.871,310.585,354.086,19.881,21.653,19.881 +2621,82.072,370.094,509.773,191.559,552.065,365.790,510.760,167.088,40.224,167.088,349.279,309.230,358.111,20.165,22.404,20.165 +2622,82.102,368.537,504.506,192.723,555.786,364.268,505.769,163.530,28.193,163.530,348.472,309.779,357.374,19.788,22.856,19.788 +2623,82.132,369.293,498.617,193.404,560.016,362.121,501.181,160.333,16.858,160.333,342.120,310.337,357.352,20.098,23.056,20.098 +2624,82.164,368.568,493.753,193.961,563.663,359.843,497.397,157.333,5.440,157.333,338.304,310.926,357.214,19.661,23.133,19.661 +2625,82.195,369.827,488.271,194.887,569.156,357.279,494.280,154.414,175.173,154.414,329.785,311.846,357.609,20.275,20.159,20.275 +2626,82.225,374.809,480.430,195.394,573.088,354.532,491.126,152.190,165.600,152.190,312.140,314.122,357.991,18.759,20.602,18.759 +2627,82.255,374.809,480.430,195.394,573.088,354.532,491.126,152.190,165.600,152.190,312.140,314.122,357.991,18.759,20.602,18.759 +2628,82.284,386.416,468.221,196.492,577.469,351.842,488.168,150.018,156.869,150.018,278.545,315.666,358.376,18.390,19.571,18.390 +2629,82.316,416.268,443.883,197.538,581.389,349.459,486.079,147.724,148.836,147.724,200.648,317.457,358.685,18.334,19.371,18.334 +2630,82.348,357.686,477.872,199.002,584.003,348.050,484.522,145.389,141.016,145.389,334.937,319.855,358.352,18.953,19.868,18.953 +2631,82.381,350.835,479.538,200.122,587.142,346.191,482.933,143.828,133.409,143.828,347.335,321.295,358.839,18.845,21.185,18.845 +2632,82.413,349.021,478.568,201.280,589.993,344.697,481.878,142.564,125.149,142.564,348.307,322.609,359.197,19.156,21.192,19.156 +2633,82.444,347.684,478.055,202.535,592.046,343.822,481.092,141.818,115.907,141.818,349.466,323.386,359.292,19.094,19.712,19.094 +2634,82.474,347.687,477.101,203.752,593.723,343.281,480.616,141.415,106.495,141.415,347.947,324.322,359.219,19.226,19.261,19.226 +2635,82.505,347.938,476.920,204.847,594.541,343.427,480.524,141.374,96.776,141.374,347.327,323.831,358.876,19.060,18.877,19.060 +2636,82.537,348.505,476.981,205.654,594.357,343.958,480.581,141.625,86.906,141.625,346.517,323.609,358.116,19.110,18.918,19.110 +2637,82.569,349.399,477.438,206.290,593.353,345.074,480.797,142.164,76.950,142.164,346.346,322.374,357.298,19.123,19.748,19.123 +2638,82.600,350.576,478.113,206.749,591.522,346.379,481.280,142.958,66.501,142.958,345.209,320.376,355.724,19.337,19.777,19.337 +2639,82.631,352.021,478.956,206.818,589.295,348.022,481.850,144.103,56.464,144.103,344.896,319.226,354.768,19.303,22.380,19.303 +2640,82.663,353.709,480.482,205.186,585.848,349.753,483.205,145.458,45.843,145.458,344.961,315.523,354.564,19.405,21.980,19.405 +2641,82.694,355.316,482.581,202.663,583.068,351.036,485.350,147.107,35.407,147.107,345.114,314.102,355.309,19.659,25.502,19.659 +2642,82.724,357.465,484.787,201.301,576.826,353.790,486.984,149.128,24.044,149.128,345.406,313.744,353.969,19.405,22.114,19.405 +2643,82.754,357.465,484.787,201.301,576.826,353.790,486.984,149.128,24.044,149.128,345.406,313.744,353.969,19.405,22.114,19.405 +2644,82.783,361.964,486.352,198.479,572.466,355.498,489.871,151.446,13.241,151.446,340.078,313.097,354.800,19.402,22.789,19.402 +2645,82.814,367.386,488.294,195.621,568.636,357.273,493.212,154.069,2.426,154.069,334.226,311.695,356.718,19.348,21.726,19.348 +2646,82.847,377.908,489.541,192.539,564.944,358.851,497.547,157.213,171.421,157.213,317.530,313.393,358.870,19.197,20.271,19.197 +2647,82.878,434.817,475.279,189.316,559.988,360.369,501.978,160.271,160.174,160.271,203.009,314.483,361.191,18.605,19.979,18.605 +2648,82.909,367.892,504.925,187.391,555.565,361.898,506.681,163.673,150.197,163.673,349.932,315.919,362.423,19.824,22.146,19.824 +2649,82.941,368.063,511.286,185.706,550.410,363.263,512.342,167.593,139.461,167.593,353.350,316.604,363.179,19.767,21.559,19.767 +2650,82.972,367.010,517.570,185.751,545.304,362.807,518.171,171.870,128.273,171.870,349.735,316.886,358.227,19.799,19.864,19.799 +2651,83.004,366.931,522.790,185.731,538.599,362.437,523.046,176.730,117.553,176.730,345.608,316.241,354.610,22.563,19.659,22.563 +2652,83.034,368.174,529.831,186.968,530.744,363.197,529.701,1.498,106.771,1.498,342.328,314.835,352.285,23.567,20.277,23.567 +2653,83.064,369.411,537.175,188.522,522.156,364.802,536.638,6.639,95.856,6.639,344.263,312.259,353.543,25.226,20.151,25.226 +2654,83.095,371.493,546.076,191.181,512.299,366.832,545.072,12.165,84.726,12.165,347.690,308.826,357.225,25.990,20.559,25.990 +2655,83.125,373.390,556.756,194.069,502.684,368.702,555.221,18.127,73.554,18.127,354.758,306.885,364.622,25.609,19.910,25.609 +2656,83.155,373.390,556.756,194.069,502.684,368.702,555.221,18.127,73.554,18.127,354.758,306.885,364.622,25.609,19.910,25.609 +2657,83.184,371.248,566.951,198.059,492.947,366.242,564.688,24.331,62.447,24.331,354.615,305.024,365.604,25.901,18.811,25.901 +2658,83.215,367.691,579.002,203.781,483.235,362.001,575.500,31.608,52.260,31.608,352.849,301.802,366.211,25.877,21.168,25.877 +2659,83.247,382.169,605.666,208.856,474.771,356.080,584.818,38.627,41.987,38.627,300.633,301.108,367.424,23.776,19.623,23.776 +2660,83.279,353.026,600.920,216.029,464.953,346.964,595.065,44.001,31.657,44.001,352.283,302.931,369.139,20.466,18.704,20.466 +2661,83.310,342.820,604.348,224.816,455.969,340.246,601.050,52.028,21.435,52.028,362.414,303.059,370.781,23.861,20.733,23.861 +2662,83.342,332.181,612.158,234.618,448.793,329.850,608.196,59.534,10.905,59.534,362.165,303.591,371.359,23.069,21.161,23.069 +2663,83.373,320.491,618.604,245.019,444.322,318.731,614.434,67.114,0.498,67.114,361.723,304.102,370.775,21.782,17.930,21.782 +2664,83.404,308.616,623.440,257.204,440.290,307.429,618.955,75.174,170.169,75.174,361.861,307.088,371.139,23.770,18.291,23.770 +2665,83.434,296.167,626.184,269.515,437.040,295.538,620.869,83.251,160.017,83.251,360.520,308.509,371.226,26.002,19.052,26.002 +2666,83.465,278.500,626.500,281.840,435.721,278.500,620.360,90.000,150.205,90.000,357.000,310.089,369.279,23.000,19.008,23.000 +2667,83.495,264.320,625.260,294.690,436.127,265.258,618.694,98.130,140.232,98.130,356.523,310.491,369.788,25.032,19.990,25.032 +2668,83.526,252.397,622.530,307.270,439.383,254.641,615.349,107.354,130.222,107.354,352.263,311.110,367.309,20.163,20.306,20.163 +2669,83.557,237.238,624.653,318.522,444.220,244.357,610.148,116.142,120.356,116.142,330.946,311.674,363.262,20.289,21.126,20.289 +2670,83.588,237.238,624.653,318.522,444.220,244.357,610.148,116.142,120.356,116.142,330.946,311.674,363.262,20.289,21.126,20.289 +2671,83.618,222.978,618.159,331.168,452.143,233.004,603.187,123.808,110.186,123.808,324.210,311.677,360.247,20.023,19.848,20.023 +2672,83.649,217.777,602.246,342.880,460.310,224.426,594.755,131.597,99.377,131.597,338.332,311.361,358.364,19.466,22.186,19.466 +2673,83.688,212.711,589.557,353.086,469.966,217.283,585.604,139.152,89.526,139.152,344.635,312.022,356.723,19.354,23.958,19.354 +2674,83.719,207.805,579.217,361.445,479.452,212.251,576.264,146.407,79.461,146.407,345.008,314.464,355.683,19.554,25.081,19.554 +2675,83.750,203.000,569.500,367.856,490.181,208.306,566.847,153.435,69.550,153.435,342.118,317.192,353.983,19.677,24.250,19.677 +2676,83.781,200.327,559.525,373.648,500.172,206.363,557.322,159.958,59.859,159.958,340.630,320.251,353.481,19.805,24.660,19.805 +2677,83.812,198.372,550.471,377.607,510.328,205.348,548.782,166.394,50.194,166.394,338.587,323.421,352.941,19.996,23.559,19.996 +2678,83.843,197.620,541.151,379.243,520.715,204.701,540.207,172.405,40.446,172.405,336.885,326.263,351.173,19.494,20.285,19.494 +2679,83.874,196.807,530.411,380.758,529.073,205.691,530.129,178.182,31.113,178.182,332.245,328.614,350.024,23.020,20.092,23.020 +2680,83.905,196.210,523.533,381.328,536.209,206.715,524.028,2.694,22.521,2.694,328.954,330.294,349.986,23.774,22.080,23.774 +2681,83.936,190.139,517.104,380.568,542.685,207.738,519.660,8.264,13.903,8.264,313.122,330.318,348.690,18.366,21.509,18.366 +2682,83.967,175.725,505.456,377.883,549.075,208.788,511.708,10.707,5.578,10.707,278.891,325.747,346.188,22.963,21.453,22.963 +2683,83.999,196.681,501.403,376.187,556.677,211.029,505.747,16.841,177.089,16.841,315.676,326.798,345.659,25.552,21.413,25.552 +2684,84.032,202.910,498.750,374.152,563.202,212.890,502.332,19.747,167.788,19.747,323.481,327.777,344.689,25.702,24.004,25.702 +2685,84.065,207.215,494.009,371.110,569.266,214.969,497.413,23.703,157.457,23.703,326.773,326.464,343.708,25.482,25.878,25.482 +2686,84.096,210.536,489.432,367.582,574.881,217.336,492.980,27.553,146.553,27.553,326.841,325.630,342.182,25.480,26.165,25.480 +2687,84.126,213.204,485.962,364.576,580.599,219.580,489.729,30.579,135.591,30.579,327.309,325.354,342.119,25.397,26.650,25.397 +2688,84.156,215.226,482.595,361.226,585.462,221.555,486.758,33.334,124.811,33.334,326.714,326.721,341.864,25.261,26.299,25.261 +2689,84.187,215.226,482.595,361.226,585.462,221.555,486.758,33.334,124.811,33.334,326.714,326.721,341.864,25.261,26.299,25.261 +2690,84.218,218.071,480.151,358.313,590.357,223.962,484.393,35.754,113.720,35.754,327.373,328.380,341.891,25.872,25.357,25.872 +2691,84.250,220.182,478.273,356.211,593.891,225.826,482.669,37.917,102.875,37.917,328.110,329.196,342.417,25.054,23.759,25.054 +2692,84.283,222.500,476.240,353.921,597.083,227.937,480.809,40.042,92.463,40.042,328.304,330.469,342.509,25.972,20.648,25.972 +2693,84.317,224.088,474.692,354.020,600.140,230.252,480.153,41.540,81.870,41.540,327.946,332.623,344.415,25.580,21.779,25.580 +2694,84.351,223.870,471.787,352.900,602.200,231.674,479.079,43.055,71.565,43.055,323.908,333.620,345.269,25.681,19.922,25.681 +2695,84.383,223.819,470.010,352.845,603.311,232.757,478.693,44.170,61.252,44.170,321.013,334.490,345.936,24.859,20.200,24.859 +2696,84.415,212.750,461.250,352.809,603.749,231.640,480.140,45.000,50.934,45.000,292.742,334.845,346.170,17.678,19.582,17.678 +2697,84.446,216.136,461.401,352.450,603.471,233.406,477.960,43.796,40.376,43.796,297.730,334.720,345.583,22.036,19.786,22.036 +2698,84.476,226.464,468.534,352.899,601.969,234.288,476.730,46.332,30.431,46.332,322.321,333.924,344.981,24.923,20.947,24.923 +2699,84.508,228.627,470.380,351.939,601.663,234.179,476.238,46.539,20.376,46.539,327.941,333.215,344.084,24.957,22.605,24.957 +2700,84.540,228.556,470.447,351.531,601.249,233.913,476.084,46.461,9.689,46.461,327.955,330.991,343.508,24.946,25.653,24.946 +2701,84.571,228.059,470.423,351.008,600.701,233.421,476.011,46.190,179.377,46.190,327.276,328.089,342.765,24.850,26.640,24.850 +2702,84.603,227.104,470.387,351.047,600.266,232.887,476.300,45.637,169.963,45.637,325.948,327.878,342.489,24.716,26.108,24.716 +2703,84.635,227.000,471.000,350.971,599.420,232.348,476.348,45.000,160.017,45.000,326.683,326.877,341.809,25.456,26.400,25.456 +2704,84.667,225.180,471.794,351.279,598.472,230.923,477.329,43.946,149.421,43.946,325.500,326.526,341.452,24.922,26.689,24.922 +2705,84.700,223.938,472.943,351.789,597.495,229.632,478.199,42.709,139.222,42.709,325.857,326.393,341.355,25.096,26.636,25.096 +2706,84.733,222.627,474.780,352.787,596.421,228.301,479.741,41.163,129.072,41.163,325.960,326.697,341.034,25.308,26.380,25.308 +2707,84.767,220.939,476.323,354.476,594.987,226.809,481.155,39.461,119.358,39.461,326.617,327.985,341.824,25.520,25.766,25.520 +2708,84.799,219.433,478.688,356.659,593.057,225.302,483.165,37.336,109.799,37.336,327.415,328.069,342.179,25.428,25.216,25.428 +2709,84.832,217.723,481.278,358.990,590.757,223.561,485.381,35.096,99.782,35.096,328.515,329.280,342.785,26.293,23.481,26.293 +2710,84.863,215.365,484.141,363.000,587.500,222.046,488.393,32.471,90.000,32.471,328.414,329.000,344.252,25.310,24.000,25.310 +2711,84.895,212.869,487.441,365.919,583.845,220.033,491.504,29.560,80.460,29.560,328.435,331.104,344.906,25.433,22.466,25.433 +2712,84.925,209.480,491.854,369.292,579.062,217.462,495.724,25.866,71.274,25.866,328.214,331.746,345.955,25.931,22.248,25.931 +2713,84.956,209.480,491.854,369.292,579.062,217.462,495.724,25.866,71.274,25.866,328.214,331.746,345.955,25.931,22.248,25.931 +2714,84.985,207.096,495.340,372.229,573.355,215.548,498.903,22.852,62.328,22.852,328.249,331.978,346.594,25.539,20.423,25.539 +2715,85.020,204.339,500.579,375.221,566.838,213.249,503.591,18.677,53.643,18.677,328.580,332.023,347.391,25.618,19.876,25.618 +2716,85.052,201.423,506.523,378.250,559.250,211.191,509.035,14.421,45.000,14.421,328.430,331.633,348.602,24.766,19.799,24.766 +2717,85.083,199.176,512.946,379.989,550.352,208.929,514.571,9.462,37.062,9.462,329.456,331.611,349.231,25.811,19.793,25.811 +2718,85.114,197.421,520.607,380.914,540.766,207.231,521.373,4.461,29.445,4.461,329.651,331.264,349.331,25.115,19.565,25.115 +2719,85.147,195.878,531.594,381.195,529.938,206.002,531.384,178.811,22.567,178.811,330.116,330.612,350.369,18.797,21.059,18.797 +2720,85.178,195.486,541.027,381.244,518.387,205.798,539.692,172.621,16.086,172.621,332.661,329.544,353.459,19.670,22.551,19.670 +2721,85.209,196.515,551.539,378.830,507.428,206.269,549.124,166.092,10.402,166.092,334.951,327.199,355.048,19.673,21.486,19.673 +2722,85.240,199.390,562.140,374.628,495.613,207.933,558.824,158.791,5.281,158.791,338.218,324.758,356.545,20.051,21.103,20.051 +2723,85.272,203.739,572.675,369.007,483.933,211.083,568.692,151.526,0.699,151.526,341.750,322.183,358.459,19.592,20.669,19.592 +2724,85.303,209.387,583.134,361.401,472.830,215.662,578.507,143.596,176.603,143.596,344.436,321.680,360.030,19.211,20.421,19.211 +2725,85.333,217.230,593.221,352.030,462.298,222.186,588.322,135.329,172.763,135.329,347.940,319.766,361.877,19.705,20.093,19.705 +2726,85.365,226.131,603.337,340.821,453.059,230.296,597.812,127.014,169.237,127.014,350.404,318.090,364.242,19.402,20.233,19.402 +2727,85.396,237.003,612.195,328.382,446.529,240.093,606.444,118.253,165.964,118.253,352.252,316.752,365.312,19.708,18.190,19.708 +2728,85.427,249.670,619.031,314.141,440.451,251.810,612.958,109.411,162.708,109.411,353.953,314.976,366.832,19.968,18.096,19.968 +2729,85.457,261.638,624.680,299.123,437.329,262.665,618.592,99.572,159.444,99.572,357.254,313.904,369.604,26.469,18.258,26.469 +2730,85.487,261.638,624.680,299.123,437.329,262.665,618.592,99.572,159.444,99.572,357.254,313.904,369.604,26.469,18.258,26.469 +2731,85.518,281.376,626.697,283.842,436.280,281.571,620.862,91.915,156.318,91.915,357.436,312.236,369.111,25.752,18.444,25.752 +2732,85.550,297.242,625.347,268.637,436.326,296.539,619.636,82.981,152.719,82.981,359.183,311.275,370.692,27.286,18.636,27.286 +2733,85.588,326.427,616.791,237.629,447.700,324.036,611.994,63.514,146.182,63.514,360.453,309.810,371.172,22.905,18.060,22.905 +2734,85.632,339.766,607.511,224.387,455.694,336.775,603.351,54.280,142.757,54.280,360.739,310.217,370.988,24.420,18.296,24.420 +2735,85.665,351.537,595.983,212.821,465.209,347.804,592.233,45.129,139.351,45.129,359.924,310.315,370.507,25.628,18.156,25.628 +2736,85.698,360.805,583.790,202.994,476.943,356.690,580.785,36.142,135.725,36.142,360.534,311.209,370.725,26.404,18.169,26.404 +2737,85.735,367.302,571.203,196.294,489.676,363.165,569.047,27.521,132.274,27.521,359.994,312.187,369.325,25.549,18.431,25.549 +2738,85.766,371.665,558.364,191.284,502.818,367.420,556.882,19.242,128.530,19.242,359.235,313.289,368.228,25.509,19.861,25.509 +2739,85.795,369.979,544.545,187.659,515.610,365.161,543.588,11.241,124.765,11.241,349.280,314.333,359.102,25.203,20.180,25.203 +2740,85.825,367.663,532.362,185.941,527.867,363.054,532.075,3.566,121.042,3.566,344.827,316.069,354.063,24.747,20.404,24.747 +2741,85.856,367.663,532.362,185.941,527.867,363.054,532.075,3.566,121.042,3.566,344.827,316.069,354.063,24.747,20.404,24.747 +2742,85.885,367.393,522.362,185.702,540.641,362.375,522.691,176.245,117.399,176.245,344.883,317.125,354.939,23.094,19.806,23.094 +2743,85.916,368.302,513.462,185.812,552.140,362.685,514.533,169.205,114.228,169.205,350.136,318.580,361.573,20.651,22.296,20.651 +2744,85.948,366.451,503.152,189.622,562.758,361.448,504.721,162.594,109.654,162.594,352.153,319.721,362.638,20.508,19.709,20.508 +2745,85.980,362.248,494.346,193.114,572.591,357.149,496.573,156.396,105.619,156.396,350.371,321.169,361.499,19.636,19.365,19.636 +2746,86.012,357.011,486.880,197.377,581.682,352.257,489.581,150.396,101.709,150.396,349.383,322.448,360.320,19.760,18.884,19.760 +2747,86.043,351.871,479.290,202.363,588.982,347.295,482.534,144.673,97.637,144.673,348.376,323.673,359.594,19.684,18.920,19.684 +2748,86.074,345.697,474.067,207.473,596.936,341.404,477.750,139.375,93.576,139.375,347.199,324.804,358.510,19.518,19.275,19.518 +2749,86.104,339.772,469.792,213.219,603.505,335.777,473.901,134.193,89.630,134.193,345.253,325.058,356.715,19.140,18.496,19.140 +2750,86.134,334.198,465.615,219.565,609.534,330.502,470.128,129.323,85.533,129.323,344.618,326.349,356.285,19.290,19.456,19.290 +2751,86.166,328.821,462.102,226.146,614.332,325.342,467.119,124.737,81.674,124.737,342.788,327.125,354.998,19.296,19.982,19.296 +2752,86.199,323.199,459.064,233.019,618.443,320.080,464.383,120.386,77.535,120.386,341.538,327.782,353.870,19.190,19.806,19.190 +2753,86.230,317.611,456.574,240.014,622.546,314.753,462.403,116.114,73.301,116.114,340.400,329.971,353.385,19.103,20.593,19.103 +2754,86.261,312.077,455.011,246.372,624.748,309.827,460.523,112.203,69.634,112.203,340.145,328.903,352.053,19.197,21.229,19.197 +2755,86.292,306.304,453.630,252.625,626.944,304.482,459.211,108.083,65.772,108.083,339.347,329.158,351.089,19.129,21.430,19.129 +2756,86.322,306.304,453.630,252.625,626.944,304.482,459.211,108.083,65.772,108.083,339.347,329.158,351.089,19.129,21.430,19.129 +2757,86.351,300.903,452.460,259.189,628.571,299.466,458.118,104.243,61.189,104.243,338.570,329.852,350.245,19.288,21.336,19.288 +2758,86.384,295.987,451.345,265.853,629.772,294.840,457.497,100.561,57.137,100.561,336.823,329.662,349.339,19.395,21.140,19.395 +2759,86.416,291.238,450.592,272.006,630.534,290.429,457.070,97.125,53.842,97.125,335.762,330.409,348.819,18.729,20.557,18.729 +2760,86.447,286.523,450.647,278.557,630.871,286.102,457.166,93.691,50.004,93.691,334.595,330.327,347.661,18.510,20.743,18.510 +2761,86.478,281.000,451.000,284.962,630.536,281.000,457.268,90.000,46.240,90.000,334.000,330.371,346.536,18.000,21.765,18.000 +2762,86.509,276.673,451.642,289.353,631.617,277.077,458.253,86.505,42.676,86.505,334.331,330.101,347.579,18.881,25.122,18.881 +2763,86.542,272.271,450.212,295.714,629.736,273.188,457.705,83.019,39.023,83.019,331.888,330.920,346.987,19.447,25.368,19.447 +2764,86.576,267.393,450.081,302.300,626.884,268.675,456.937,79.405,35.611,79.405,332.514,330.953,346.463,19.341,26.115,19.341 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-234121.csv b/chaos_pdl/data/raw/metrics-20250919-234121.csv new file mode 100644 index 0000000..3987061 --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-234121.csv @@ -0,0 +1,7318 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.001,201.887,501.796,377.079,561.884,212.682,505.141,17.216,34.297,17.216,325.049,332.370,347.652,25.158,19.774,25.158 +1,0.038,197.891,513.564,379.426,552.248,208.981,515.791,11.357,25.530,11.357,325.952,331.786,348.574,19.114,20.202,19.114 +2,0.071,195.507,521.943,381.325,539.569,207.278,523.017,5.216,17.117,5.216,326.022,331.657,349.661,19.157,22.698,19.157 +3,0.104,193.830,531.642,379.856,527.659,205.342,531.357,178.583,8.649,178.583,326.073,325.297,349.104,19.249,22.745,19.249 +4,0.138,192.348,542.975,377.531,516.902,204.097,541.283,171.802,0.387,171.802,326.535,323.080,350.276,19.376,20.324,19.376 +5,0.171,192.718,554.294,376.803,503.729,206.073,550.657,164.766,172.466,164.766,326.442,326.243,354.124,19.691,20.473,19.691 +6,0.203,195.612,566.206,371.065,492.162,207.569,561.166,157.143,164.358,157.143,328.972,323.903,354.924,19.392,20.530,19.392 +7,0.235,199.547,578.859,364.325,480.957,211.093,572.018,149.357,156.360,149.357,329.652,321.056,356.493,19.291,20.258,19.291 +8,0.269,206.055,590.065,355.948,469.600,216.384,581.813,141.378,148.465,141.378,331.718,318.982,358.159,19.396,20.649,19.396 +9,0.300,214.891,600.635,345.871,459.732,223.221,591.700,132.990,140.654,132.990,335.892,316.901,360.324,19.378,20.002,19.378 +10,0.333,226.820,608.964,334.009,452.044,231.966,601.496,124.571,132.859,124.571,343.788,314.212,361.927,19.527,19.924,19.527 +11,0.366,238.449,617.530,321.274,445.046,242.595,609.003,115.931,125.199,115.931,344.746,312.225,363.710,20.099,20.066,20.099 +12,0.399,251.851,624.074,307.188,440.359,254.440,615.632,107.049,117.544,107.049,348.412,310.072,366.072,20.358,20.194,20.358 +13,0.431,264.831,628.130,292.714,438.259,265.908,619.875,97.431,109.923,97.431,350.466,308.764,367.116,26.170,19.460,26.170 +14,0.463,284.500,629.500,278.174,437.868,284.500,621.434,90.000,102.388,90.000,351.000,306.841,367.132,25.000,19.275,25.000 +15,0.495,295.756,629.529,263.816,439.724,294.358,621.729,79.840,94.955,79.840,353.229,305.110,369.078,26.753,19.349,26.753 +16,0.526,313.607,625.626,249.991,444.413,311.355,618.626,72.168,87.483,72.168,354.562,303.410,369.270,21.795,18.740,21.795 +17,0.558,327.900,618.800,237.606,450.157,324.792,612.584,63.435,80.049,63.435,354.640,303.712,368.540,22.361,18.939,22.361 +18,0.590,341.273,610.161,226.630,457.490,337.329,604.605,54.632,72.624,54.632,354.456,303.644,368.082,23.754,19.633,23.754 +19,0.622,352.538,600.043,216.814,466.933,348.120,595.441,46.162,65.239,46.162,354.518,303.958,367.277,24.815,19.485,24.815 +20,0.654,362.081,588.896,208.032,475.745,356.318,584.414,37.875,57.680,37.875,352.928,303.176,367.531,25.347,19.782,25.347 +21,0.686,368.930,576.374,201.323,486.136,362.838,572.890,29.769,50.064,29.769,352.510,303.048,366.547,25.443,19.900,25.443 +22,0.718,373.557,564.129,196.318,496.954,367.168,561.533,22.116,42.316,22.116,351.392,303.645,365.185,25.508,20.892,25.508 +23,0.748,375.038,551.551,192.760,506.680,367.771,549.642,14.721,34.695,14.721,345.341,304.970,360.367,25.040,21.883,25.040 +24,0.781,372.998,539.326,190.283,517.013,365.614,538.326,7.714,26.966,7.714,338.309,306.365,353.211,25.125,22.000,25.125 +25,0.812,374.038,530.963,188.593,527.367,363.889,530.773,1.073,19.236,1.073,330.354,308.117,350.657,20.753,22.825,20.753 +26,0.843,377.081,520.696,188.393,537.500,364.087,521.914,174.644,11.121,174.644,326.661,308.866,352.763,21.002,21.360,21.002 +27,0.874,377.081,520.696,188.393,537.500,364.087,521.914,174.644,11.121,174.644,326.661,308.866,352.763,21.002,21.360,21.002 +28,0.904,380.772,509.832,188.764,546.872,364.710,513.058,168.644,3.270,168.644,325.554,309.809,358.318,20.281,21.565,20.281 +29,0.936,382.276,499.219,190.456,555.665,362.906,505.075,163.179,175.094,163.179,318.952,311.259,359.422,19.367,22.133,19.367 +30,0.967,387.132,486.075,192.112,564.623,358.719,497.471,158.146,167.101,158.146,298.035,313.681,359.261,18.970,21.400,18.970 +31,1.000,391.673,472.810,194.728,573.026,354.627,491.533,153.189,158.654,153.189,275.917,315.531,358.933,18.522,19.592,18.522 +32,1.035,416.930,445.655,197.585,580.523,350.222,486.464,148.543,150.255,148.543,202.179,317.777,358.580,18.385,19.101,18.385 +33,1.067,371.987,463.726,200.895,586.731,346.368,482.578,143.653,141.801,143.653,294.182,320.313,357.798,19.087,19.647,19.087 +34,1.099,350.320,471.764,205.046,593.017,342.223,478.656,139.593,133.423,139.593,335.904,322.591,357.170,19.072,19.934,19.072 +35,1.131,343.363,470.229,208.822,598.873,337.728,475.705,135.821,125.451,135.821,340.851,324.099,356.567,19.011,20.209,19.011 +36,1.164,338.574,467.250,213.197,603.819,333.803,472.503,132.245,117.597,132.245,342.395,325.225,356.587,19.164,20.564,19.164 +37,1.196,333.568,465.416,217.688,608.408,329.858,470.003,128.967,108.970,128.967,344.506,326.646,356.305,19.312,19.239,19.312 +38,1.227,330.067,463.102,221.983,612.591,326.268,468.357,125.867,100.729,125.867,343.003,327.489,355.972,19.510,19.464,19.510 +39,1.259,326.443,460.839,226.722,615.550,322.897,466.298,123.005,92.337,123.005,342.087,327.584,355.107,19.237,19.310,19.237 +40,1.290,322.610,459.599,231.591,618.541,319.633,464.676,120.386,84.207,120.386,342.758,328.358,354.528,18.951,19.581,18.951 +41,1.322,319.542,458.199,236.735,621.465,316.680,463.604,117.897,75.243,117.897,341.610,329.266,353.842,18.923,20.628,18.923 +42,1.354,316.333,456.985,241.495,621.932,314.091,461.674,115.560,67.507,115.560,341.399,327.612,351.792,19.023,21.741,19.023 +43,1.386,313.726,455.016,245.110,623.041,311.353,460.500,113.402,59.216,113.402,339.010,327.044,350.962,19.107,22.081,19.107 +44,1.418,311.179,454.394,248.672,624.107,309.040,459.849,111.413,50.194,111.413,338.199,326.238,349.918,19.058,21.894,19.058 +45,1.449,309.149,453.156,250.890,625.401,306.931,459.336,109.747,41.987,109.747,337.334,325.043,350.466,19.355,25.867,19.355 +46,1.479,306.091,452.230,253.604,625.307,304.155,458.287,107.726,33.111,107.726,336.246,324.738,348.963,18.964,26.148,18.964 +47,1.510,304.327,451.718,255.878,625.258,302.568,457.728,106.314,25.346,106.314,335.276,324.680,347.801,19.195,26.161,19.195 +48,1.542,304.327,451.718,255.878,625.258,302.568,457.728,106.314,25.346,106.314,335.276,324.680,347.801,19.195,26.161,19.195 +49,1.572,301.806,450.675,258.252,625.174,300.211,456.851,104.477,16.991,104.477,334.180,323.778,346.936,19.432,26.858,19.432 +50,1.603,300.033,449.472,260.104,624.814,298.481,456.158,103.069,8.601,103.069,332.202,322.948,345.930,19.099,26.522,19.099 +51,1.634,297.918,449.309,262.482,625.066,296.560,455.892,101.662,179.640,101.662,331.695,321.031,345.140,19.357,25.811,19.357 +52,1.667,296.132,448.665,263.270,625.390,294.855,455.644,100.373,171.870,100.373,331.129,322.016,345.318,19.520,26.304,19.520 +53,1.700,294.402,448.129,264.334,625.602,293.232,455.392,99.150,164.476,99.150,330.565,322.243,345.279,19.295,25.105,19.295 +54,1.731,292.720,448.454,265.652,626.486,291.685,455.794,98.025,156.318,98.025,330.486,323.064,345.311,19.103,24.228,19.103 +55,1.762,291.477,447.685,266.474,626.744,290.466,455.776,97.125,147.529,97.125,328.940,323.966,345.248,18.729,22.932,18.729 +56,1.794,289.646,447.372,267.729,626.975,288.803,455.634,95.826,140.194,95.826,328.579,325.086,345.190,18.739,21.638,18.739 +57,1.825,288.384,447.338,268.941,627.946,287.620,456.116,94.970,132.843,94.970,327.980,325.784,345.603,18.842,20.772,18.842 +58,1.856,286.652,446.139,270.221,628.556,285.997,456.303,93.691,126.416,93.691,325.452,327.826,345.823,18.832,19.485,18.832 +59,1.888,285.328,445.088,271.978,629.407,284.771,456.717,92.743,120.148,92.743,322.923,328.955,346.208,18.787,19.788,18.787 +60,1.920,283.056,444.547,274.123,630.329,282.769,457.169,91.302,114.444,91.302,321.372,329.884,346.623,18.450,20.359,18.450 +61,1.952,281.000,443.000,276.993,630.966,281.000,457.483,90.000,109.516,90.000,318.000,330.882,346.966,18.000,20.151,18.000 +62,1.982,279.022,441.902,279.751,632.021,279.413,457.936,88.603,105.329,88.603,316.004,332.579,348.082,18.385,20.405,18.385 +63,2.013,276.474,441.781,283.210,632.578,277.402,458.635,86.849,102.043,86.849,314.240,333.222,347.999,18.852,20.499,18.852 +64,2.044,273.536,442.112,286.070,632.512,274.978,458.961,85.110,99.404,85.110,313.907,333.729,347.728,18.387,21.066,18.387 +65,2.075,273.536,442.112,286.070,632.512,274.978,458.961,85.110,99.404,85.110,313.907,333.729,347.728,18.387,21.066,18.387 +66,2.104,270.614,441.941,290.321,632.183,272.709,459.222,83.089,97.878,83.089,312.832,334.013,347.647,18.681,21.045,18.681 +67,2.137,267.829,444.307,294.317,632.162,270.351,460.070,80.910,97.023,80.910,315.507,334.400,347.434,19.156,21.339,19.156 +68,2.170,264.768,446.033,298.180,631.435,267.700,460.485,78.530,96.740,78.530,317.700,334.752,347.194,19.672,20.737,19.672 +69,2.203,261.794,447.176,302.385,629.923,265.179,460.715,75.964,97.125,75.964,318.449,333.405,346.360,20.858,21.334,20.858 +70,2.235,258.579,450.956,306.310,628.830,261.828,461.646,73.091,98.130,73.091,323.441,333.896,345.787,21.125,21.496,21.125 +71,2.268,254.997,453.371,310.776,626.787,258.296,462.478,70.084,99.866,70.084,325.347,333.430,344.719,21.270,21.675,21.270 +72,2.299,251.046,454.422,315.050,624.581,254.836,463.313,66.907,102.121,66.907,324.597,333.011,343.926,22.306,21.168,22.306 +73,2.332,247.700,457.400,321.042,622.012,251.507,465.013,63.435,105.255,63.435,326.019,332.230,343.042,23.255,20.962,23.255 +74,2.368,243.508,459.800,326.157,618.230,247.284,466.300,59.845,108.199,59.845,326.945,331.112,341.980,23.939,21.004,23.939 +75,2.403,238.600,462.225,332.725,614.892,243.107,468.911,56.016,111.516,56.016,326.154,329.815,342.280,23.465,23.204,23.465 +76,2.438,234.711,465.431,338.186,610.387,239.159,471.129,52.019,115.017,52.019,326.958,328.944,341.414,24.919,23.259,24.919 +77,2.476,230.063,468.812,344.336,605.541,234.997,474.248,47.768,118.523,47.768,326.723,327.861,341.407,25.326,25.060,25.326 +78,2.506,224.873,472.799,349.851,599.848,230.235,477.852,43.304,122.125,43.304,326.708,326.998,341.443,25.087,25.860,25.087 +79,2.537,220.121,477.334,355.232,593.382,225.902,481.946,38.583,125.605,38.583,326.401,326.075,341.191,25.463,25.917,25.463 +80,2.571,215.634,482.545,360.805,586.279,221.863,486.679,33.573,129.094,33.573,326.733,325.192,341.685,25.394,26.533,25.394 +81,2.602,211.430,488.703,365.321,578.155,217.609,492.032,28.315,132.879,28.315,327.737,324.313,341.776,25.523,26.328,25.523 +82,2.634,207.199,495.633,369.869,569.448,213.862,498.420,22.701,136.610,22.701,328.219,323.517,342.664,25.559,26.428,25.559 +83,2.664,203.045,503.661,373.592,559.719,210.292,505.809,16.504,140.550,16.504,328.655,323.391,343.773,25.746,26.290,25.746 +84,2.695,199.776,511.516,376.304,548.926,207.581,512.969,10.539,144.462,10.539,329.028,323.517,344.907,25.790,25.574,25.790 +85,2.727,196.070,521.001,377.845,537.749,205.219,521.642,4.006,148.392,4.006,328.316,323.106,346.660,24.958,24.698,24.958 +86,2.757,191.526,534.507,377.736,525.385,204.194,533.848,177.023,152.600,177.023,322.125,322.978,347.495,19.410,23.890,19.410 +87,2.788,183.961,547.606,376.926,512.831,204.302,544.008,169.970,156.238,169.970,309.516,322.702,350.830,20.096,21.022,20.096 +88,2.819,128.456,578.297,374.017,500.164,205.545,553.159,161.940,160.115,161.940,191.035,322.689,353.203,18.663,19.368,18.663 +89,2.851,199.230,569.341,369.086,487.300,209.027,564.663,154.477,163.943,154.477,333.835,322.799,355.547,19.398,21.319,19.398 +90,2.882,206.253,580.125,363.174,475.969,213.708,575.167,146.375,167.975,146.375,340.870,321.630,358.777,19.299,20.719,19.299 +91,2.913,214.395,590.164,354.948,465.607,219.669,585.410,137.971,172.405,137.971,347.189,320.761,361.390,19.557,20.221,19.557 +92,2.944,223.608,600.119,344.944,456.597,227.607,595.263,129.472,176.424,129.472,350.683,318.940,363.264,19.525,19.025,19.525 +93,2.973,223.608,600.119,344.944,456.597,227.607,595.263,129.472,176.424,129.472,350.683,318.940,363.264,19.525,19.025,19.525 +94,3.005,234.169,609.708,332.984,448.932,237.383,604.306,120.753,0.647,120.753,352.248,316.149,364.820,19.757,19.298,19.757 +95,3.038,246.553,617.222,319.278,443.039,248.708,611.847,111.846,5.006,111.846,354.309,314.337,365.890,19.504,19.080,19.504 +96,3.071,262.142,623.608,304.685,438.381,263.420,618.054,102.961,9.367,102.961,357.301,312.184,368.700,23.087,20.120,23.087 +97,3.104,273.118,626.006,288.985,436.652,273.368,620.725,92.710,13.736,92.710,358.640,310.178,369.212,26.491,20.011,26.491 +98,3.136,292.719,626.224,273.624,436.714,292.266,620.947,85.096,18.083,85.096,359.711,308.307,370.304,25.678,21.651,25.678 +99,3.169,305.137,624.176,258.896,439.417,303.937,619.606,75.277,23.273,75.277,361.988,305.816,371.438,25.196,21.000,25.196 +100,3.200,321.747,618.734,245.012,444.632,319.811,614.252,66.641,28.443,66.641,360.987,304.052,370.751,23.177,20.663,23.177 +101,3.232,335.376,612.121,231.820,452.313,332.409,607.400,57.848,33.071,57.848,358.514,303.472,369.666,23.778,18.650,23.778 +102,3.263,349.382,608.303,220.796,461.251,342.298,600.062,49.318,37.117,49.318,347.202,302.389,368.937,20.553,18.146,20.553 +103,3.294,408.540,640.454,211.864,470.849,351.462,590.741,41.055,40.914,41.055,216.640,301.772,368.023,19.971,19.799,19.971 +104,3.325,367.808,584.781,204.176,481.343,359.626,579.189,34.352,44.363,34.352,347.280,301.987,367.100,24.631,19.334,24.631 +105,3.356,372.095,569.237,198.636,492.118,365.831,566.286,25.221,48.629,25.221,351.871,302.806,365.719,25.508,20.668,25.508 +106,3.387,374.324,556.316,194.626,504.321,369.178,554.688,17.562,53.543,17.562,352.433,305.238,363.228,25.382,21.260,25.382 +107,3.419,371.467,543.122,191.156,516.211,366.669,542.259,10.193,58.449,10.193,344.954,306.468,354.704,25.813,22.082,25.813 +108,3.450,369.807,532.004,189.214,528.188,364.604,531.713,3.201,63.997,3.201,340.202,308.212,350.626,24.931,21.921,24.931 +109,3.481,369.082,523.810,188.805,540.214,363.997,524.126,176.435,71.323,176.435,341.518,310.874,351.707,20.891,22.149,20.891 +110,3.511,369.307,514.251,190.607,550.970,364.983,515.009,170.061,75.885,170.061,347.152,313.594,355.932,20.652,21.177,20.652 +111,3.542,369.307,514.251,190.607,550.970,364.983,515.009,170.061,75.885,170.061,347.152,313.594,355.932,20.652,21.177,20.652 +112,3.573,367.724,505.309,191.708,561.239,363.199,506.615,163.905,81.320,163.905,350.405,316.357,359.824,19.945,20.360,19.945 +113,3.605,363.703,497.245,193.669,570.433,359.001,499.122,158.240,86.698,158.240,349.848,318.029,359.974,19.590,19.909,19.590 +114,3.636,358.981,490.514,196.262,578.992,354.326,492.902,152.845,92.038,152.845,349.403,320.473,359.866,19.529,19.472,19.529 +115,3.668,354.342,484.293,199.263,585.970,349.703,487.224,147.715,97.214,147.715,348.876,322.867,359.851,19.844,19.226,19.844 +116,3.700,349.374,479.020,202.531,592.397,344.825,482.453,142.958,102.426,142.958,348.221,324.206,359.618,19.337,19.747,19.337 +117,3.731,344.918,474.141,206.446,597.640,340.206,478.300,138.567,107.457,138.567,345.941,324.875,358.512,19.183,19.619,19.183 +118,3.762,340.292,469.828,210.905,602.048,335.833,474.385,134.377,112.416,134.377,344.487,325.541,357.238,18.960,19.390,18.960 +119,3.793,336.139,465.800,214.944,605.705,331.619,471.128,130.314,117.967,130.314,342.228,326.009,356.203,19.456,21.338,19.456 +120,3.824,336.453,456.477,219.720,609.138,327.606,468.368,126.652,122.121,126.652,325.036,325.738,354.678,18.688,20.455,18.688 +121,3.855,357.104,414.386,224.740,612.572,323.170,465.647,123.503,127.694,123.503,230.742,324.858,353.692,18.004,20.358,18.004 +122,3.886,330.326,444.440,229.362,614.834,319.201,463.512,120.256,132.739,120.256,307.793,323.817,351.952,18.139,20.388,18.139 +123,3.918,322.744,448.376,234.138,616.845,315.967,461.871,116.662,137.643,116.662,320.225,323.554,350.428,19.284,20.473,19.284 +124,3.949,317.389,449.954,238.662,618.367,312.792,460.279,114.001,142.633,114.001,326.539,323.023,349.144,19.584,20.491,19.584 +125,3.978,311.900,450.491,243.401,619.903,308.812,458.568,110.925,147.301,110.925,330.819,322.592,348.113,19.340,21.609,19.340 +126,4.009,311.900,450.491,243.401,619.903,308.812,458.568,110.925,147.301,110.925,330.819,322.592,348.113,19.340,21.609,19.340 +127,4.040,307.968,449.812,248.359,621.620,305.359,457.700,108.299,152.063,108.299,330.438,322.169,347.055,19.228,23.305,19.228 +128,4.071,303.938,449.465,252.724,622.690,301.922,456.643,105.686,156.801,105.686,331.420,321.701,346.329,19.427,23.898,19.427 +129,4.103,300.387,449.298,257.318,623.443,298.835,455.881,103.263,161.372,103.263,331.710,321.614,345.236,19.369,24.851,19.369 +130,4.135,296.877,448.861,261.581,623.484,295.692,455.031,100.878,165.353,100.878,331.161,321.540,343.728,19.368,27.288,19.368 +131,4.166,293.560,448.541,266.270,625.390,292.550,455.182,98.648,171.870,98.648,331.015,322.016,344.449,19.036,26.304,19.036 +132,4.198,290.424,448.274,270.611,626.284,289.649,455.124,96.454,176.451,96.454,330.642,322.180,344.430,18.691,27.057,18.691 +133,4.230,287.302,448.136,274.969,627.320,286.748,455.491,94.304,0.764,94.304,329.702,322.211,344.455,18.678,27.491,18.678 +134,4.267,284.201,448.508,278.795,627.754,283.918,455.761,92.231,5.194,92.231,329.607,324.208,344.124,18.350,27.613,18.350 +135,4.311,278.441,450.055,286.709,628.706,278.677,456.806,87.990,13.570,87.990,330.639,326.184,344.150,18.550,27.989,18.550 +136,4.343,278.441,450.055,286.709,628.706,278.677,456.806,87.990,13.570,87.990,330.639,326.184,344.150,18.550,27.989,18.550 +137,4.375,275.929,450.819,290.275,628.743,276.360,456.995,86.009,17.904,86.009,332.216,327.882,344.599,19.000,27.186,19.000 +138,4.412,270.215,451.903,297.603,628.879,271.153,458.389,81.773,25.514,81.773,331.934,330.062,345.041,19.103,26.705,19.103 +139,4.444,267.887,452.889,301.727,628.884,269.071,459.312,79.563,29.174,79.563,332.304,330.820,345.365,20.264,26.944,20.264 +140,4.475,267.887,452.889,301.727,628.884,269.071,459.312,79.563,29.174,79.563,332.304,330.820,345.365,20.264,26.944,20.264 +141,4.506,264.757,453.453,305.617,628.103,266.207,459.911,77.341,32.425,77.341,332.242,331.253,345.480,19.895,25.493,19.895 +142,4.538,262.039,454.523,309.435,627.792,263.796,461.109,75.069,35.505,75.069,331.998,332.001,345.630,20.420,25.256,20.420 +143,4.570,259.687,455.213,313.475,626.764,261.700,461.739,72.860,38.279,72.860,332.249,332.501,345.908,22.103,24.094,22.103 +144,4.602,256.412,456.065,317.680,625.125,258.781,462.728,70.427,40.657,70.427,331.345,333.099,345.490,21.252,22.170,21.252 +145,4.633,253.328,456.472,321.412,623.956,256.292,463.840,68.085,42.447,68.085,329.817,333.504,345.701,21.754,22.002,21.754 +146,4.663,250.471,457.635,325.092,622.403,253.812,465.082,65.833,43.550,65.833,329.104,333.316,345.429,22.517,20.929,22.517 +147,4.695,247.634,458.927,328.884,621.039,251.420,466.530,63.530,44.085,63.530,328.690,333.870,345.678,23.182,21.016,23.182 +148,4.726,244.463,459.575,332.306,618.702,248.817,467.429,60.994,43.824,60.994,327.607,333.945,345.566,23.180,20.923,23.180 +149,4.757,241.807,461.229,336.053,616.818,246.544,468.981,58.570,42.709,58.570,327.471,334.223,345.641,23.418,20.688,23.418 +150,4.788,238.384,461.742,339.350,614.175,244.035,470.170,56.160,40.689,56.160,325.084,334.178,345.377,23.653,20.147,23.653 +151,4.820,235.670,463.742,342.906,611.343,241.494,471.673,53.707,38.073,53.707,325.525,334.244,345.203,24.105,20.573,24.105 +152,4.851,233.062,466.048,346.445,608.352,239.004,473.440,51.200,34.490,51.200,325.963,334.044,344.931,24.590,20.423,24.590 +153,4.883,230.097,467.855,349.564,605.037,236.448,475.047,48.554,30.358,48.554,325.433,333.714,344.622,24.570,20.500,24.570 +154,4.913,227.770,470.738,352.533,601.432,233.701,476.856,45.892,25.508,45.892,327.274,334.103,344.315,24.924,21.340,24.924 +155,4.944,225.223,473.160,355.816,597.537,231.448,478.988,43.119,18.925,43.119,326.566,332.757,343.621,26.012,22.216,26.012 +156,4.975,225.223,473.160,355.816,597.537,231.448,478.988,43.119,18.925,43.119,326.566,332.757,343.621,26.012,22.216,26.012 +157,5.006,221.395,475.532,358.647,593.139,228.190,481.265,40.151,12.137,40.151,325.923,331.833,343.704,25.560,23.464,25.560 +158,5.040,218.304,478.598,361.818,588.671,225.512,484.060,37.152,4.788,37.152,325.551,330.111,343.637,25.769,24.542,25.769 +159,5.072,214.914,481.882,364.850,584.711,222.981,487.287,33.822,177.397,33.822,324.756,328.479,344.177,25.787,24.929,25.787 +160,5.105,211.899,485.816,367.091,579.503,219.939,490.506,30.256,169.743,30.256,325.285,327.538,343.900,25.553,24.732,25.553 +161,5.137,209.024,490.445,369.274,573.834,216.902,494.368,26.474,161.232,26.474,326.034,326.389,343.637,25.556,25.472,25.556 +162,5.170,206.459,496.099,371.549,568.147,213.963,499.177,22.306,152.133,22.306,327.723,324.918,343.943,25.834,26.155,25.834 +163,5.202,203.955,501.602,373.510,561.514,211.306,503.995,18.034,142.734,18.034,328.626,324.196,344.086,25.275,26.591,25.275 +164,5.234,201.166,508.289,374.943,554.470,208.462,509.991,13.134,133.568,13.134,329.483,323.312,344.467,25.352,26.402,25.352 +165,5.264,199.270,515.188,375.927,547.299,206.272,516.232,8.486,123.990,8.486,330.607,323.415,344.765,24.579,26.394,24.579 +166,5.294,197.566,522.815,376.885,538.681,204.645,523.210,3.190,115.201,3.190,331.489,321.743,345.669,23.786,26.559,23.786 +167,5.325,196.585,533.533,377.192,530.053,203.438,533.246,177.606,105.422,177.606,333.754,321.176,347.472,18.827,26.260,18.827 +168,5.355,197.213,542.452,376.223,520.574,203.212,541.571,171.642,95.856,171.642,336.323,320.294,348.450,19.216,25.711,19.216 +169,5.387,198.570,552.166,374.607,510.492,204.134,550.702,165.256,85.914,165.256,338.680,319.828,350.186,19.850,25.221,19.850 +170,5.419,200.603,561.763,371.856,500.149,205.976,559.652,158.552,76.931,158.552,340.755,318.930,352.300,19.413,25.535,19.413 +171,5.451,204.087,572.021,367.667,489.728,209.206,569.267,151.728,67.834,151.728,342.840,318.301,354.465,19.849,24.559,19.849 +172,5.482,209.074,581.401,362.176,478.700,213.800,578.039,144.574,58.325,144.574,345.378,317.672,356.978,19.641,24.553,19.641 +173,5.512,215.278,591.260,354.699,468.703,219.704,587.156,137.161,48.731,137.161,346.982,316.741,359.056,19.318,24.911,19.318 +174,5.543,215.278,591.260,354.699,468.703,219.704,587.156,137.161,48.731,137.161,346.982,316.741,359.056,19.318,24.911,19.318 +175,5.572,223.317,600.349,345.186,458.775,227.072,595.804,129.567,39.611,129.567,349.949,316.499,361.739,19.426,24.281,19.426 +176,5.603,232.887,608.620,334.912,450.309,236.068,603.485,121.779,30.784,121.779,352.455,315.034,364.536,19.411,23.616,19.411 +177,5.635,243.613,615.459,322.176,444.578,245.752,610.553,113.558,21.631,113.558,354.667,313.444,365.372,19.980,21.140,19.980 +178,5.666,255.310,621.583,309.353,439.644,256.780,616.082,104.964,12.880,104.964,356.673,312.484,368.060,22.229,20.488,22.229 +179,5.698,267.363,625.314,295.021,436.708,268.016,619.570,96.491,4.128,96.491,357.924,311.211,369.486,24.864,19.753,24.864 +180,5.729,285.215,626.957,280.590,436.617,285.172,621.298,89.564,175.416,89.564,358.104,310.489,369.421,25.014,18.325,25.014 +181,5.761,299.007,625.547,266.712,437.907,298.231,620.397,81.429,166.853,81.429,359.883,310.525,370.299,26.306,18.296,26.306 +182,5.793,310.992,622.737,252.573,440.950,309.512,617.906,72.970,158.453,72.970,361.640,310.109,371.745,21.897,18.834,21.897 +183,5.824,324.549,617.373,239.592,446.292,322.247,612.512,64.662,150.032,64.662,360.448,310.094,371.205,22.508,18.891,22.508 +184,5.856,336.620,609.947,228.106,453.499,333.928,605.857,56.652,141.818,56.652,361.098,310.033,370.890,23.734,18.056,23.734 +185,5.889,347.184,601.344,217.242,461.277,343.591,597.232,48.852,133.620,48.852,360.109,309.861,371.029,24.688,19.419,24.688 +186,5.921,356.162,591.749,208.716,471.225,352.209,588.287,41.219,125.514,41.219,359.635,310.150,370.144,25.444,18.223,25.444 +187,5.953,363.150,581.045,201.552,481.328,358.921,578.216,33.787,117.485,33.787,359.167,310.455,369.343,25.648,18.071,25.648 +188,5.983,368.234,570.061,196.068,491.728,363.811,567.840,26.668,109.398,26.668,358.219,310.630,368.119,25.498,18.254,25.498 +189,6.013,372.074,559.658,192.434,502.588,367.620,558.044,19.926,101.416,19.926,357.722,310.465,367.196,25.466,19.274,25.466 +190,6.044,371.435,548.414,189.717,512.661,366.646,547.268,13.456,92.862,13.456,350.404,309.963,360.251,25.698,21.174,25.698 +191,6.075,371.435,548.414,189.717,512.661,366.646,547.268,13.456,92.862,13.456,350.404,309.963,360.251,25.698,21.174,25.698 +192,6.105,369.941,538.714,189.242,522.731,365.316,538.117,7.358,85.255,7.358,343.860,310.923,353.187,24.577,20.719,24.577 +193,6.138,369.182,530.021,188.178,531.935,363.845,529.871,1.610,78.089,1.610,340.400,311.130,351.079,23.581,23.537,23.581 +194,6.170,369.145,523.639,188.623,540.657,363.924,523.993,176.127,68.339,176.127,341.588,311.066,352.053,20.587,22.292,20.587 +195,6.203,369.410,515.778,190.776,547.969,365.196,516.441,171.051,61.113,171.051,345.871,311.494,354.403,20.145,21.074,20.145 +196,6.235,369.974,508.472,192.818,555.363,365.975,509.452,166.226,52.821,166.226,349.984,312.001,358.218,19.867,21.715,19.867 +197,6.266,366.696,502.138,194.519,560.922,363.350,503.238,161.795,44.444,161.795,349.760,310.481,356.805,19.662,22.118,19.662 +198,6.296,364.444,496.089,196.161,566.520,360.452,497.717,157.818,35.951,157.818,347.592,311.437,356.215,19.410,22.182,19.410 +199,6.326,361.484,491.046,198.026,570.583,357.785,492.848,154.026,27.350,154.026,347.102,312.683,355.333,19.501,21.899,19.501 +200,6.357,359.935,485.885,199.748,575.882,354.477,488.970,150.524,19.440,150.524,342.396,313.184,354.935,19.796,23.797,19.796 +201,6.389,357.274,481.776,201.943,579.581,351.786,485.283,147.417,10.376,147.417,341.057,313.146,354.083,19.748,22.832,19.748 +202,6.420,356.190,477.281,203.581,583.122,349.063,482.350,144.576,1.614,144.576,336.431,313.326,353.922,19.424,22.343,19.424 +203,6.452,354.313,473.463,204.925,586.439,346.195,479.799,142.028,172.423,142.028,333.361,315.078,353.956,19.496,20.648,19.496 +204,6.482,352.645,469.945,206.235,589.896,343.391,477.771,139.776,163.625,139.776,330.020,316.760,354.259,19.734,20.121,19.734 +205,6.512,354.076,464.304,207.565,593.137,340.861,476.211,137.980,154.581,137.980,319.018,318.451,354.593,18.948,19.620,18.948 +206,6.543,354.076,464.304,207.565,593.137,340.861,476.211,137.980,154.581,137.980,319.018,318.451,354.593,18.948,19.620,18.948 +207,6.573,362.035,452.642,208.900,596.335,338.627,474.880,136.469,146.004,136.469,290.833,320.099,355.408,18.234,19.994,18.234 +208,6.606,394.000,416.500,210.015,598.946,336.767,473.733,135.000,136.948,135.000,194.454,321.370,356.333,17.678,19.557,17.678 +209,6.637,342.386,465.990,211.263,600.817,335.512,473.221,133.556,127.708,133.556,336.215,324.247,356.168,18.462,20.523,18.462 +210,6.668,338.673,467.826,212.443,603.113,334.098,472.818,132.497,119.659,132.497,342.963,325.218,356.506,19.101,20.988,19.101 +211,6.700,337.108,467.863,213.719,605.082,333.146,472.297,131.778,110.556,131.778,345.287,326.194,357.180,18.942,19.195,18.942 +212,6.730,336.386,467.868,214.937,606.487,332.631,472.121,131.437,101.725,131.437,345.895,326.569,357.242,18.871,19.509,18.871 +213,6.762,335.562,467.814,216.023,607.474,332.089,471.805,131.023,93.061,131.023,346.493,325.871,357.074,18.937,19.918,18.937 +214,6.793,336.007,467.267,217.561,607.740,332.338,471.486,131.009,84.207,131.009,345.084,325.979,356.266,18.931,19.480,18.931 +215,6.825,336.453,467.147,218.556,607.323,332.840,471.279,131.165,75.174,131.165,344.307,325.040,355.284,18.998,19.846,18.998 +216,6.857,337.756,467.162,219.267,606.557,333.972,471.405,131.722,66.168,131.722,343.054,324.310,354.426,18.883,20.332,18.883 +217,6.889,338.655,467.727,219.323,604.523,335.283,471.415,132.444,57.544,132.444,342.971,321.819,352.966,19.079,21.692,19.079 +218,6.921,339.921,467.548,218.385,602.386,336.325,471.379,133.195,48.451,133.195,341.965,319.817,352.473,18.659,21.785,18.659 +219,6.952,341.427,468.428,215.723,601.128,337.136,472.831,134.261,39.644,134.261,340.943,318.305,353.239,18.899,25.807,18.899 +220,6.983,343.159,469.672,214.006,598.398,339.046,473.702,135.587,30.069,135.587,341.652,317.429,353.167,19.272,25.917,19.272 +221,7.012,344.845,471.374,211.882,595.015,341.009,474.915,137.291,21.194,137.291,342.249,316.261,352.690,19.105,25.345,19.105 +222,7.044,347.636,472.812,209.582,591.189,343.320,476.551,139.100,11.689,139.100,340.868,314.984,352.290,19.248,23.907,19.248 +223,7.076,350.840,474.282,206.689,587.542,345.560,478.538,141.127,3.130,141.127,339.490,313.844,353.053,19.638,22.053,19.638 +224,7.107,350.840,474.282,206.689,587.542,345.560,478.538,141.127,3.130,141.127,339.490,313.844,353.053,19.638,22.053,19.638 +225,7.139,355.603,475.314,203.230,584.197,347.525,481.303,143.444,174.489,143.444,334.274,314.626,354.387,19.514,20.711,19.514 +226,7.171,365.053,474.518,199.977,580.899,349.890,484.764,145.954,166.987,145.954,319.477,315.255,356.077,20.446,21.097,20.446 +227,7.204,378.104,471.499,197.164,577.814,351.528,487.480,148.981,160.080,148.981,295.659,315.686,357.681,18.327,19.869,18.327 +228,7.238,422.422,454.074,194.360,574.165,353.717,491.012,151.736,153.981,151.736,203.459,316.255,359.468,18.392,19.293,18.392 +229,7.271,364.626,491.098,191.837,569.006,356.176,495.101,154.654,148.241,154.654,341.613,318.121,360.313,18.693,21.378,18.693 +230,7.303,363.828,497.069,189.505,565.007,358.268,499.293,158.199,142.660,158.199,350.221,317.227,362.197,19.312,22.229,19.312 +231,7.334,365.245,503.171,186.846,559.255,360.441,504.727,162.044,135.964,162.044,353.802,317.601,363.901,19.413,22.053,19.413 +232,7.367,367.797,509.648,185.966,553.375,363.098,510.768,166.597,128.847,166.597,354.706,317.970,364.368,19.828,20.574,19.828 +233,7.399,367.616,516.751,184.534,545.711,362.337,517.563,171.254,121.809,171.254,349.351,317.182,360.032,19.767,22.740,19.767 +234,7.430,367.546,524.706,184.826,537.920,362.146,525.055,176.295,114.727,176.295,344.739,316.115,355.561,20.274,22.636,20.274 +235,7.461,368.266,530.272,186.883,529.765,363.266,530.088,2.111,106.724,2.111,342.542,314.742,352.550,24.684,20.458,24.684 +236,7.492,369.214,542.110,188.281,519.922,364.368,541.469,7.542,98.627,7.542,345.006,312.854,354.783,20.673,22.651,20.673 +237,7.523,371.602,549.664,191.461,509.592,367.190,548.548,14.191,91.771,14.191,350.730,309.501,359.833,24.772,20.351,24.772 +238,7.554,372.599,560.915,194.616,499.422,367.960,559.163,20.695,84.129,20.695,356.623,307.668,366.541,25.653,19.017,25.653 +239,7.585,368.702,572.193,198.423,489.170,363.602,569.537,27.520,76.931,27.520,355.746,306.040,367.246,25.093,20.056,25.093 +240,7.616,363.682,583.738,205.536,478.791,358.863,580.385,34.836,68.714,34.836,356.024,304.558,367.766,24.735,19.253,24.735 +241,7.646,356.306,596.386,214.353,468.898,351.120,591.545,43.025,61.390,43.025,353.148,303.752,367.337,24.320,21.149,24.320 +242,7.676,356.306,596.386,214.353,468.898,351.120,591.545,43.025,61.390,43.025,353.148,303.752,367.337,24.320,21.149,24.320 +243,7.706,365.682,628.261,222.228,460.732,342.736,600.304,50.622,53.734,50.622,296.344,303.046,368.680,22.628,19.225,22.628 +244,7.738,335.775,617.366,233.183,452.331,330.533,609.161,57.426,45.341,57.426,349.672,301.992,369.145,21.044,18.464,21.044 +245,7.771,322.547,618.765,244.594,445.763,320.577,614.315,66.116,37.420,66.116,360.031,303.072,369.765,21.867,18.805,21.867 +246,7.803,307.670,623.874,257.262,440.775,306.416,619.526,73.917,29.560,73.917,361.693,303.871,370.744,23.892,19.448,23.892 +247,7.834,292.067,626.341,270.943,436.413,291.307,621.254,81.499,21.532,81.499,361.356,305.091,371.642,26.851,22.490,26.851 +248,7.867,278.000,625.500,284.093,435.623,278.000,620.311,90.000,13.775,90.000,359.000,307.012,369.377,24.000,21.518,24.000 +249,7.899,264.427,624.490,297.440,437.073,265.222,618.895,98.082,6.009,98.082,357.789,308.768,369.091,25.314,19.628,25.314 +250,7.930,253.041,620.512,310.962,439.626,254.734,614.935,106.887,178.409,106.887,356.506,310.380,368.165,21.086,19.076,21.086 +251,7.960,241.817,614.700,322.716,443.329,244.522,609.005,115.412,170.346,115.412,353.791,313.659,366.402,19.757,19.844,19.757 +252,7.990,231.168,607.302,333.448,448.231,234.837,601.690,123.179,162.681,123.179,351.398,315.572,364.810,19.347,20.828,19.347 +253,8.023,221.825,599.623,342.918,455.696,226.412,594.307,130.786,154.851,130.786,348.069,316.796,362.113,19.196,21.113,19.196 +254,8.055,212.877,592.683,350.618,463.603,219.566,586.708,138.225,147.734,138.225,341.559,317.592,359.496,19.430,22.122,19.430 +255,8.088,149.276,623.614,358.118,472.898,214.089,578.427,145.116,141.305,145.116,198.984,317.345,357.004,18.700,18.943,18.700 +256,8.119,193.395,578.557,364.104,483.113,209.631,569.701,151.390,134.363,151.390,317.160,316.906,354.149,19.553,21.110,19.553 +257,8.150,197.155,564.553,368.890,494.048,206.099,560.901,157.788,126.529,157.788,332.645,318.238,351.967,19.364,23.809,19.364 +258,8.181,197.619,554.383,372.592,504.596,204.206,552.486,163.930,117.646,163.930,336.415,318.224,350.126,19.887,25.056,19.887 +259,8.211,197.144,545.089,375.160,514.906,203.316,543.982,169.824,108.800,169.824,336.015,319.122,348.556,19.256,25.660,19.256 +260,8.242,197.144,545.089,375.160,514.906,203.316,543.982,169.824,108.800,169.824,336.015,319.122,348.556,19.256,25.660,19.256 +261,8.273,196.799,536.792,376.812,525.232,203.261,536.282,175.486,100.008,175.486,334.800,321.097,347.764,19.335,26.242,19.335 +262,8.303,197.511,528.920,377.361,535.007,204.191,528.987,0.573,91.061,0.573,333.083,322.204,346.444,18.769,25.348,18.769 +263,8.335,199.281,519.764,378.021,543.652,206.311,520.375,4.970,82.147,4.970,332.051,325.129,346.163,25.036,25.551,25.036 +264,8.367,200.823,513.492,377.728,551.563,208.119,514.691,9.335,73.811,9.335,331.902,327.323,346.688,25.629,25.310,25.629 +265,8.399,202.480,507.914,376.539,558.792,210.136,509.776,13.671,65.283,13.671,330.787,329.454,346.546,25.185,23.012,25.185 +266,8.430,204.476,502.304,374.978,565.197,212.335,504.810,17.684,57.619,17.684,330.105,331.027,346.603,25.255,20.804,25.255 +267,8.461,205.007,497.040,373.722,570.522,214.774,500.830,21.209,49.367,21.209,325.834,332.119,346.788,25.422,20.198,25.422 +268,8.492,206.889,491.818,372.347,575.012,217.404,496.780,25.263,40.601,25.263,323.770,332.880,347.023,24.641,20.391,24.641 +269,8.523,195.225,484.271,370.537,578.174,217.882,496.375,28.113,33.024,28.113,295.005,333.952,346.379,18.220,19.494,18.220 +270,8.555,198.955,479.499,369.049,580.894,220.885,491.451,28.591,24.869,28.591,295.850,332.872,345.800,23.042,19.547,23.042 +271,8.588,212.675,481.734,366.557,582.473,222.463,488.179,33.362,16.724,33.362,320.971,333.325,344.409,26.706,21.330,26.706 +272,8.621,215.628,480.105,364.506,585.323,223.991,485.968,35.032,8.461,35.032,323.752,330.986,344.181,25.451,22.954,25.451 +273,8.651,218.168,478.939,361.995,587.928,225.273,484.252,36.790,0.662,36.790,325.418,328.198,343.163,25.480,24.143,25.480 +274,8.682,219.488,477.380,360.071,590.597,226.388,482.805,38.175,173.246,38.175,325.870,328.677,343.427,25.205,25.558,25.205 +275,8.712,221.169,476.580,358.212,591.894,227.270,481.605,39.472,165.399,39.472,326.572,327.938,342.379,25.383,25.843,25.383 +276,8.743,221.169,476.580,358.212,591.894,227.270,481.605,39.472,165.399,39.472,326.572,327.938,342.379,25.383,25.843,25.383 +277,8.773,221.878,475.554,356.360,593.361,227.808,480.580,40.285,157.286,40.285,326.428,327.316,341.975,25.094,26.601,25.094 +278,8.805,222.449,474.907,354.960,594.582,228.290,479.980,40.977,149.534,40.977,326.094,326.876,341.567,25.233,26.821,25.233 +279,8.838,223.001,474.089,353.759,595.579,228.871,479.252,41.336,141.423,41.336,325.571,326.559,341.206,25.744,26.888,25.744 +280,8.872,222.848,474.208,352.891,596.328,228.686,479.363,41.446,133.668,41.446,325.472,326.266,341.046,24.920,26.534,24.920 +281,8.905,222.889,474.521,352.722,596.663,228.584,479.540,41.392,126.384,41.392,325.959,327.064,341.143,25.189,26.440,25.189 +282,8.936,222.718,474.988,352.658,596.906,228.247,479.786,40.952,118.664,40.952,326.810,328.329,341.452,24.937,25.118,24.937 +283,8.968,222.308,475.436,352.994,597.186,228.011,480.288,40.392,110.606,40.392,326.911,329.472,341.885,25.942,24.696,25.942 +284,8.999,221.776,476.585,354.007,596.242,227.326,481.149,39.432,103.536,39.432,327.526,329.440,341.897,25.779,22.595,25.779 +285,9.029,220.591,477.677,356.811,595.201,226.778,482.555,38.254,96.340,38.254,327.956,330.411,343.713,25.763,24.626,25.763 +286,9.061,219.036,479.425,358.574,593.956,225.540,484.281,36.745,88.781,36.745,328.194,330.287,344.428,25.098,22.888,25.098 +287,9.092,217.490,481.308,360.330,591.810,224.265,486.057,35.032,81.870,35.032,327.694,331.775,344.241,25.283,21.355,25.283 +288,9.123,215.835,483.313,363.333,588.776,223.008,487.962,32.953,74.908,32.953,328.078,332.656,345.173,25.827,21.523,25.827 +289,9.155,213.121,485.878,365.825,585.372,221.187,490.648,30.600,68.552,30.600,326.684,332.577,345.428,25.397,20.676,25.397 +290,9.187,210.690,489.409,368.931,581.036,219.172,493.852,27.646,62.103,27.646,327.083,332.928,346.232,25.563,20.639,25.563 +291,9.218,208.432,492.637,371.282,576.147,217.140,496.650,24.742,56.049,24.742,327.351,332.841,346.527,25.982,19.637,25.982 +292,9.249,205.659,497.737,374.195,570.428,214.771,501.221,20.925,50.563,20.925,327.742,332.744,347.253,25.412,19.500,25.412 +293,9.279,202.951,503.026,376.835,563.662,212.549,505.919,16.771,45.481,16.771,327.873,331.699,347.920,26.153,19.608,26.153 +294,9.309,200.753,509.112,378.815,555.795,210.278,511.229,12.529,40.746,12.529,328.867,331.565,348.382,24.839,19.675,24.839 +295,9.339,200.753,509.112,378.815,555.795,210.278,511.229,12.529,40.746,12.529,328.867,331.565,348.382,24.839,19.675,24.839 +296,9.368,198.873,516.096,380.283,547.470,208.303,517.382,7.765,36.469,7.765,329.901,331.425,348.936,24.275,19.580,24.275 +297,9.400,197.750,523.176,380.928,538.168,206.651,523.593,2.684,32.735,2.684,331.714,331.124,349.536,24.879,19.708,24.879 +298,9.432,196.809,534.505,380.799,528.019,205.237,534.044,176.866,29.403,176.866,334.375,330.768,351.257,18.997,20.225,18.997 +299,9.462,196.906,543.910,380.100,517.300,205.446,542.498,170.608,26.565,170.608,335.538,328.702,352.850,19.420,21.019,19.420 +300,9.493,198.415,553.953,377.526,506.299,206.213,551.725,164.055,24.075,164.055,338.182,327.556,354.402,19.917,22.184,19.917 +301,9.525,201.255,563.719,373.822,494.470,208.298,560.771,157.286,21.640,157.286,341.303,326.074,356.574,19.200,21.798,19.200 +302,9.556,205.452,574.178,368.362,483.814,211.649,570.613,150.086,19.374,150.086,343.945,323.276,358.243,19.307,21.469,19.307 +303,9.587,211.094,584.319,361.335,473.149,216.484,580.184,142.505,17.207,142.505,346.566,321.887,360.154,19.058,21.213,19.058 +304,9.618,218.234,593.776,352.322,463.661,222.623,589.331,134.635,15.083,134.635,348.610,319.693,361.102,19.366,20.229,19.366 +305,9.648,226.817,603.246,341.877,454.333,230.537,598.250,126.674,12.752,126.674,351.397,317.897,363.856,19.317,21.113,19.317 +306,9.678,237.129,611.528,329.717,447.329,240.011,606.205,118.434,10.513,118.434,352.742,315.815,364.848,19.663,20.333,19.663 +307,9.708,237.129,611.528,329.717,447.329,240.011,606.205,118.434,10.513,118.434,352.742,315.815,364.848,19.663,20.333,19.663 +308,9.737,248.912,618.285,316.660,441.380,250.964,612.689,110.136,8.130,110.136,354.989,313.955,366.908,19.810,20.648,19.810 +309,9.770,260.702,623.347,302.639,437.647,261.762,617.832,100.879,5.864,100.879,358.092,312.438,369.324,24.512,20.127,24.512 +310,9.802,274.165,626.026,287.943,436.967,274.362,620.960,92.226,3.366,92.226,358.623,310.757,368.763,25.408,17.910,25.408 +311,9.833,289.033,626.496,273.512,437.236,288.499,621.641,83.729,0.932,83.729,360.107,309.187,369.877,25.626,17.933,25.626 +312,9.864,304.763,624.538,258.039,439.853,303.527,619.818,75.328,178.334,75.328,361.474,308.422,371.234,24.484,17.963,24.484 +313,9.894,320.766,618.311,243.794,444.739,319.021,614.244,66.777,175.732,66.777,362.015,308.709,370.867,22.300,17.905,22.300 +314,9.926,334.366,610.450,230.659,451.715,332.144,606.907,57.920,173.019,57.920,362.424,308.228,370.788,24.081,17.948,24.081 +315,9.957,346.140,601.206,219.092,460.034,343.269,597.876,49.232,170.204,49.232,362.173,307.975,370.966,24.936,17.922,24.936 +316,9.988,355.694,589.884,209.101,469.450,352.541,587.170,40.717,167.330,40.717,362.699,308.487,371.020,26.292,18.817,26.292 +317,10.020,363.167,578.445,200.964,480.589,359.600,576.177,32.446,164.320,32.446,361.856,309.764,370.311,25.813,18.107,25.813 +318,10.051,368.815,566.339,194.549,492.119,364.468,564.353,24.554,161.274,24.554,359.582,310.252,369.140,26.069,18.075,26.069 +319,10.082,371.128,554.219,189.667,503.141,366.538,552.822,16.920,158.800,16.920,357.754,311.181,367.348,25.323,21.562,25.323 +320,10.113,369.304,541.903,187.013,516.027,364.443,541.075,9.660,154.983,9.660,348.372,312.452,358.234,25.757,19.996,25.757 +321,10.142,369.304,541.903,187.013,516.027,364.443,541.075,9.660,154.983,9.660,348.372,312.452,358.234,25.757,19.996,25.757 +322,10.172,368.457,531.801,184.805,526.129,362.235,531.508,2.699,152.241,2.699,342.515,313.727,354.973,24.179,21.657,24.179 +323,10.204,367.941,523.633,184.446,537.064,361.964,524.043,176.079,148.829,176.079,344.003,314.891,355.985,20.898,21.739,20.898 +324,10.236,368.340,514.106,185.149,547.215,362.701,515.114,169.863,145.253,169.863,349.405,316.228,360.861,20.487,21.858,20.487 +325,10.268,367.433,505.315,187.072,557.091,361.664,506.986,163.845,141.589,163.845,351.265,317.343,363.277,19.896,21.041,19.896 +326,10.298,363.598,497.459,189.451,566.222,357.965,499.698,158.320,138.032,158.320,350.214,318.800,362.338,19.537,20.722,19.537 +327,10.329,359.531,490.594,192.892,574.884,353.956,493.429,153.048,134.451,153.048,348.471,319.692,360.979,19.550,20.286,19.550 +328,10.363,355.918,483.967,196.820,582.275,350.036,487.640,148.018,130.655,148.018,346.298,321.488,360.167,19.724,20.359,19.724 +329,10.395,350.754,478.975,200.991,589.119,345.649,482.766,143.403,126.821,143.403,346.371,322.598,359.088,19.268,20.017,19.268 +330,10.426,346.490,474.026,205.149,595.096,341.196,478.612,139.096,122.939,139.096,344.190,323.975,358.198,19.105,20.284,19.105 +331,10.457,341.250,470.250,209.560,600.479,336.520,474.980,135.000,119.023,135.000,343.654,324.699,357.031,19.092,20.411,19.092 +332,10.489,336.740,466.961,214.084,605.474,332.400,471.924,131.166,115.036,131.166,343.649,325.802,356.835,18.813,20.410,18.813 +333,10.521,332.051,464.465,219.208,609.888,328.310,469.334,127.541,111.003,127.541,343.574,326.888,355.854,19.256,19.613,19.256 +334,10.552,327.632,462.048,224.042,613.861,324.218,467.065,124.240,106.858,124.240,343.304,328.056,355.440,19.096,19.140,19.096 +335,10.583,323.478,460.377,228.451,616.989,320.482,465.348,121.079,102.947,121.079,343.157,328.669,354.764,19.088,19.514,19.088 +336,10.613,319.633,458.709,232.981,619.919,316.874,463.897,118.009,98.881,118.009,342.536,329.348,354.288,19.517,19.513,19.517 +337,10.643,315.607,457.398,237.638,622.266,313.169,462.562,115.271,94.844,115.271,341.907,329.446,353.328,19.036,19.219,19.036 +338,10.673,315.607,457.398,237.638,622.266,313.169,462.562,115.271,94.844,115.271,341.907,329.446,353.328,19.036,19.219,19.036 +339,10.702,312.325,455.973,242.169,625.477,309.849,461.933,112.561,90.730,112.561,341.083,331.126,353.989,19.353,18.400,19.353 +340,10.735,309.126,454.400,246.731,626.928,306.758,460.876,110.090,86.634,110.090,339.344,331.016,353.134,19.214,19.202,19.214 +341,10.770,305.787,453.654,251.582,628.490,303.732,460.087,107.721,82.768,107.721,339.064,332.551,352.571,19.266,20.249,19.266 +342,10.801,302.571,453.054,255.909,629.327,300.869,459.226,105.422,78.830,105.422,339.060,332.416,351.865,19.213,21.252,19.213 +343,10.833,299.446,453.159,259.478,630.462,298.075,458.956,103.309,74.784,103.309,339.658,332.141,351.571,19.170,21.198,19.170 +344,10.863,296.772,452.064,263.127,630.613,295.537,458.306,101.197,71.048,101.197,337.914,331.462,350.640,19.110,21.157,19.110 +345,10.894,293.906,451.998,266.872,631.201,292.942,457.939,99.211,66.894,99.211,338.364,331.684,350.401,19.022,20.873,19.022 +346,10.925,291.546,451.406,270.161,631.674,290.665,458.015,97.595,62.812,97.595,336.357,331.448,349.692,19.032,20.298,19.032 +347,10.956,288.830,451.893,273.949,631.832,288.230,457.999,95.618,58.917,95.618,336.524,331.331,348.794,18.599,20.335,18.599 +348,10.987,286.622,450.703,277.674,631.480,286.159,457.525,93.879,55.037,93.879,334.588,331.216,348.262,18.584,20.704,18.584 +349,11.019,283.954,450.826,280.985,631.501,283.720,457.620,91.975,51.177,91.975,334.146,331.251,347.743,18.644,21.236,18.644 +350,11.050,281.000,451.000,283.360,632.085,281.000,458.042,90.000,47.603,90.000,334.000,330.745,348.085,18.000,24.370,18.000 +351,11.080,278.716,451.557,286.525,631.917,278.934,458.421,88.182,43.927,88.182,333.562,330.386,347.299,18.530,24.911,18.530 +352,11.110,278.716,451.557,286.525,631.917,278.934,458.421,88.182,43.927,88.182,333.562,330.386,347.299,18.530,24.911,18.530 +353,11.140,276.692,451.699,289.195,631.768,277.093,458.384,86.566,40.040,86.566,334.199,330.846,347.595,18.866,25.967,18.866 +354,11.172,274.404,451.279,292.678,630.899,275.048,458.430,84.852,36.334,84.852,332.348,330.625,346.709,19.094,25.373,19.094 +355,11.205,272.198,451.847,295.975,630.039,273.015,458.454,82.948,32.699,82.948,332.895,330.103,346.211,19.583,25.381,19.583 +356,11.237,269.803,452.654,298.665,629.703,270.794,459.013,81.142,29.055,81.142,333.019,330.334,345.891,19.787,26.225,19.787 +357,11.268,267.382,452.595,302.012,628.515,268.647,459.231,79.202,25.677,79.202,331.565,329.633,345.076,20.304,26.778,20.304 +358,11.298,264.627,453.652,305.561,627.350,265.983,459.629,77.213,22.276,77.213,332.384,329.621,344.643,19.940,26.535,19.940 +359,11.329,262.445,453.913,308.600,626.200,264.096,460.123,75.118,18.435,75.118,331.022,329.509,343.873,21.370,26.563,21.370 +360,11.358,259.411,454.638,312.324,624.654,261.246,460.649,73.025,15.038,73.025,330.975,329.495,343.545,20.770,27.128,20.770 +361,11.389,257.043,455.033,315.749,623.209,259.186,461.170,70.750,11.449,70.750,330.252,329.103,343.254,22.029,26.959,22.029 +362,11.427,253.804,456.170,319.080,621.880,256.283,462.449,68.459,8.306,68.459,329.202,329.392,342.704,21.932,27.143,21.932 +363,11.470,250.717,457.237,322.910,619.998,253.492,463.483,66.038,5.128,66.038,328.769,328.449,342.438,22.236,26.598,22.236 +364,11.503,247.500,458.500,327.407,617.816,250.704,464.908,63.435,2.291,63.435,327.808,327.738,342.136,22.808,26.619,22.808 +365,11.536,244.436,460.036,331.469,615.558,247.932,466.266,60.704,179.265,60.704,327.863,327.076,342.150,23.724,26.895,23.724 +366,11.574,240.749,461.659,335.122,612.905,244.646,467.817,57.674,176.326,57.674,327.392,327.124,341.967,23.429,26.377,23.429 +367,11.606,237.108,463.634,339.359,610.154,241.485,469.794,54.605,174.043,54.605,327.102,327.085,342.216,23.941,26.102,23.941 +368,11.635,233.687,466.449,343.912,606.917,238.337,472.247,51.271,171.399,51.271,327.355,327.385,342.219,24.299,26.497,24.299 +369,11.666,229.529,468.882,348.100,602.974,234.885,474.773,47.726,168.826,47.726,326.112,327.317,342.035,24.620,26.682,24.620 +370,11.697,225.934,472.496,352.516,598.564,231.509,477.877,43.985,166.192,43.985,326.263,326.694,341.760,24.990,26.294,24.990 +371,11.727,221.644,476.040,356.812,593.357,227.765,481.174,39.987,163.664,39.987,325.953,326.638,341.930,25.334,25.827,25.334 +372,11.758,217.548,480.238,361.138,587.410,223.975,484.857,35.707,161.417,35.707,326.633,326.359,342.464,25.325,25.707,25.325 +373,11.789,213.413,485.158,365.114,580.804,220.319,489.325,31.103,159.404,31.103,326.341,326.192,342.472,25.956,25.805,25.956 +374,11.823,209.541,490.901,368.922,573.942,216.901,494.551,26.377,157.150,26.377,326.501,325.774,342.931,25.632,25.878,25.632 +375,11.856,206.127,497.174,372.209,565.950,213.448,500.018,21.229,155.042,21.229,328.016,325.323,343.724,26.060,25.642,26.060 +376,11.889,201.558,505.288,375.092,557.182,210.001,507.591,15.255,153.118,15.255,327.143,324.727,344.646,25.347,25.569,25.347 +377,11.920,198.518,512.394,376.894,547.613,207.529,513.961,9.866,151.011,9.866,326.962,324.023,345.253,25.873,24.468,25.873 +378,11.951,195.544,521.329,378.136,537.229,205.306,521.966,3.731,149.250,3.731,327.348,323.463,346.914,24.795,24.466,24.795 +379,11.980,192.624,534.015,377.748,526.179,203.794,533.464,177.178,147.600,177.178,325.837,322.436,348.204,19.097,23.576,19.097 +380,12.010,191.767,545.087,376.351,514.780,203.785,543.066,170.458,145.840,170.458,325.362,321.474,349.735,19.222,22.844,19.222 +381,12.042,191.767,545.087,376.351,514.780,203.785,543.066,170.458,145.840,170.458,325.362,321.474,349.735,19.222,22.844,19.222 +382,12.072,190.127,557.594,373.461,503.137,204.957,553.155,163.339,144.137,163.339,320.580,320.712,351.540,19.741,22.125,19.741 +383,12.103,189.306,572.086,368.680,491.080,207.737,563.937,156.150,142.722,156.150,313.016,319.457,353.319,20.949,20.783,20.949 +384,12.135,178.195,593.188,362.112,479.372,210.731,572.670,147.763,140.974,147.763,278.696,318.302,355.626,18.830,20.019,18.830 +385,12.166,155.828,634.393,354.182,468.213,216.960,583.450,140.194,139.490,140.194,199.225,316.727,358.379,18.821,19.148,18.821 +386,12.197,215.622,603.005,343.725,458.519,224.360,593.307,132.022,138.127,132.022,333.965,315.980,360.073,19.331,20.571,19.331 +387,12.228,228.478,609.168,332.857,450.259,233.308,601.886,123.559,136.655,123.559,345.290,314.878,362.767,19.348,21.213,19.348 +388,12.258,241.049,616.120,320.517,443.518,244.168,609.450,115.067,135.796,115.067,350.578,312.707,365.303,19.621,19.807,19.621 +389,12.288,253.617,622.406,306.847,439.323,255.454,615.888,105.739,134.474,105.739,354.229,311.892,367.773,22.059,19.565,22.059 +390,12.320,266.669,626.427,292.088,436.108,267.506,619.371,96.763,133.603,96.763,355.557,311.276,369.767,25.650,20.138,25.650 +391,12.350,285.983,627.971,277.820,435.987,285.881,620.958,89.167,132.709,89.167,356.108,310.087,370.136,25.085,19.048,25.085 +392,12.380,297.238,626.941,262.697,438.229,296.053,620.867,78.969,131.795,78.969,358.915,309.827,371.292,26.285,18.785,26.285 +393,12.411,314.844,622.055,248.052,442.978,313.009,616.820,70.679,130.914,70.679,359.990,309.228,371.085,21.569,18.489,21.569 +394,12.442,314.844,622.055,248.052,442.978,313.009,616.820,70.679,130.914,70.679,359.990,309.228,371.085,21.569,18.489,21.569 +395,12.471,329.558,614.881,234.066,449.286,326.956,610.097,61.460,130.236,61.460,360.410,309.465,371.301,23.226,18.791,23.226 +396,12.503,342.634,605.742,221.738,458.048,339.360,601.491,52.398,129.491,52.398,360.098,309.454,370.829,24.532,18.736,24.532 +397,12.535,353.455,594.870,211.183,468.245,349.744,591.337,43.590,128.811,43.590,360.209,310.313,370.458,25.435,18.244,25.435 +398,12.567,362.080,582.578,202.042,479.427,357.860,579.638,34.862,128.234,34.862,359.982,311.102,370.268,25.713,18.352,25.713 +399,12.597,367.943,569.583,195.202,491.388,363.498,567.375,26.415,127.476,26.415,359.134,312.046,369.059,25.738,18.200,25.738 +400,12.628,371.770,556.719,190.793,504.219,367.660,555.345,18.487,126.781,18.487,359.234,313.398,367.902,26.007,19.728,26.007 +401,12.659,369.586,543.476,187.375,516.388,365.001,542.608,10.713,126.521,10.713,349.476,314.638,358.809,25.998,20.430,25.998 +402,12.691,368.100,532.800,184.152,527.483,362.064,532.445,3.366,126.548,3.366,343.700,315.826,355.793,24.252,23.090,24.252 +403,12.723,367.434,523.971,184.292,539.349,361.784,524.332,176.337,126.027,176.337,344.855,317.098,356.178,20.960,22.056,20.960 +404,12.755,367.886,513.871,184.942,549.868,362.408,514.859,169.772,125.172,169.772,350.593,318.186,361.726,20.591,22.312,20.591 +405,12.786,366.465,504.844,187.424,560.289,361.060,506.453,163.426,124.276,163.426,352.277,319.525,363.557,19.979,20.922,19.979 +406,12.817,362.499,496.666,190.430,569.454,357.407,498.774,157.514,123.207,157.514,351.605,320.396,362.628,19.456,20.689,19.456 +407,12.847,357.939,489.575,193.504,577.503,352.998,492.212,151.914,121.645,151.914,350.532,321.729,361.733,19.939,20.946,19.939 +408,12.878,353.376,483.507,197.746,585.353,348.642,486.591,146.921,119.954,146.921,349.388,322.620,360.687,19.603,20.060,19.603 +409,12.909,353.376,483.507,197.746,585.353,348.642,486.591,146.921,119.954,146.921,349.388,322.620,360.687,19.603,20.060,19.603 +410,12.938,348.421,478.314,202.187,591.836,344.212,481.571,142.259,117.607,142.259,348.963,323.493,359.608,19.260,19.690,19.260 +411,12.969,344.428,473.468,206.523,597.511,339.799,477.627,138.061,114.842,138.061,346.075,324.554,358.522,19.114,20.200,19.114 +412,12.999,339.298,470.348,211.184,602.876,335.472,474.292,134.140,111.391,134.140,346.677,325.732,357.666,18.867,19.605,18.867 +413,13.032,335.925,466.724,215.496,606.999,331.836,471.503,130.554,107.382,130.554,344.601,326.730,357.179,19.403,20.082,19.403 +414,13.063,331.483,464.809,219.893,610.863,328.074,469.264,127.427,102.732,127.427,345.170,327.339,356.390,19.351,20.006,19.351 +415,13.094,328.105,462.497,224.078,614.077,324.754,467.342,124.667,97.561,124.667,344.122,327.631,355.902,19.278,19.738,19.278 +416,13.125,324.844,461.013,228.203,616.974,321.739,465.944,122.196,91.839,122.196,343.633,328.409,355.288,18.931,19.348,18.931 +417,13.156,322.351,459.469,231.840,618.975,319.352,464.659,120.018,85.778,120.018,342.806,329.098,354.793,19.241,19.631,19.241 +418,13.187,319.728,458.263,235.649,620.875,316.861,463.661,117.967,79.114,117.967,341.656,329.123,353.880,19.618,20.131,19.618 +419,13.218,317.656,457.096,240.046,622.356,315.019,462.436,116.281,72.532,116.281,341.262,330.244,353.173,19.172,21.459,19.172 +420,13.248,315.361,456.551,242.664,622.477,313.104,461.441,114.775,65.807,114.775,340.694,328.156,351.466,19.137,21.337,19.137 +421,13.279,313.865,455.633,245.078,623.235,311.621,460.781,113.552,58.671,113.552,339.789,327.381,351.020,18.922,21.875,18.922 +422,13.309,313.865,455.633,245.078,623.235,311.621,460.781,113.552,58.671,113.552,339.789,327.381,351.020,18.922,21.875,18.922 +423,13.339,312.533,454.778,247.581,623.026,310.478,459.767,112.380,51.234,112.380,339.031,326.240,349.820,19.201,21.808,19.201 +424,13.371,311.032,453.846,248.306,624.156,308.812,459.556,111.251,43.668,111.251,338.421,324.787,350.675,19.106,25.580,19.106 +425,13.403,309.846,453.517,249.611,624.155,307.746,459.185,110.323,35.882,110.323,337.694,324.814,349.783,19.380,26.324,19.380 +426,13.434,309.353,452.907,250.516,623.554,307.300,458.612,109.799,28.610,109.799,336.725,324.502,348.851,19.345,26.656,19.345 +427,13.466,308.788,452.125,251.479,623.053,306.727,458.022,109.259,21.105,109.259,335.542,323.299,348.037,19.449,26.531,19.449 +428,13.496,307.584,451.360,252.071,622.418,305.581,457.392,108.367,12.475,108.367,334.248,322.027,346.961,19.259,27.624,19.259 +429,13.528,307.091,450.842,251.927,621.942,305.085,457.011,108.011,4.456,108.011,333.599,321.830,346.572,19.123,27.113,19.123 +430,13.559,307.130,450.689,251.816,621.658,305.117,456.912,107.928,176.842,107.928,333.229,320.836,346.309,19.365,26.332,19.365 +431,13.590,306.409,450.575,250.989,621.555,304.411,456.909,107.507,168.198,107.507,332.898,321.431,346.180,19.253,25.509,19.253 +432,13.621,306.455,450.085,250.055,621.646,304.266,457.055,107.432,159.146,107.432,331.933,321.998,346.544,19.283,24.208,19.283 +433,13.652,306.787,449.031,249.296,622.050,304.178,457.348,107.411,151.750,107.411,329.722,322.722,347.156,19.400,22.535,19.400 +434,13.682,307.815,449.072,248.178,622.397,304.888,458.119,107.928,143.310,107.928,328.500,323.803,347.516,19.673,21.195,19.673 +435,13.712,308.642,446.516,247.250,622.750,304.840,458.268,107.928,135.000,107.928,323.743,324.562,348.446,19.673,19.799,19.673 +436,13.742,308.642,446.516,247.250,622.750,304.840,458.268,107.928,135.000,107.928,323.743,324.562,348.446,19.673,19.799,19.673 +437,13.772,310.130,442.705,246.488,623.617,304.780,458.819,108.367,126.777,108.367,315.586,326.812,349.543,18.636,20.453,18.636 +438,13.803,314.364,433.145,245.994,624.678,305.223,459.572,109.079,118.610,109.079,294.869,328.094,350.795,18.063,20.431,18.063 +439,13.835,333.686,382.281,245.230,624.903,305.920,460.025,109.654,109.714,109.654,186.263,328.740,351.370,18.028,20.232,18.028 +440,13.866,310.472,451.393,244.290,624.746,307.229,460.269,110.072,101.830,110.072,333.276,330.854,352.176,18.677,20.660,18.677 +441,13.898,310.349,454.299,244.003,625.964,307.763,461.082,110.873,94.086,110.873,339.039,331.228,353.559,19.320,19.522,19.320 +442,13.929,311.902,455.440,243.449,625.898,309.417,461.528,112.203,85.986,112.203,341.071,331.291,354.222,19.197,19.286,19.197 +443,13.959,313.190,455.304,243.400,624.800,310.585,461.426,113.051,77.471,113.051,339.968,330.819,353.273,19.343,20.608,19.343 +444,13.990,314.815,456.284,242.824,623.522,312.415,461.583,114.362,70.174,114.362,340.817,329.273,352.452,18.838,22.571,18.838 +445,14.023,316.857,456.724,241.225,621.539,314.451,461.709,115.769,61.809,115.769,340.471,327.061,351.541,19.067,20.786,19.067 +446,14.054,319.223,457.067,239.710,619.233,316.779,461.803,117.300,53.471,117.300,339.826,325.619,350.486,19.206,21.220,19.206 +447,14.085,321.541,457.644,235.750,618.750,318.400,463.337,118.887,45.000,118.887,339.000,323.148,352.005,19.383,25.456,19.383 +448,14.116,324.251,458.255,233.360,615.648,321.038,463.642,120.816,36.293,120.816,338.375,321.759,350.920,19.015,25.729,19.015 +449,14.147,327.338,459.395,230.208,612.611,324.058,464.452,122.969,28.072,122.969,338.691,320.471,350.745,19.183,26.176,19.183 +450,14.177,330.503,460.978,227.103,609.226,327.236,465.597,125.272,20.556,125.272,338.852,318.703,350.168,19.196,26.100,19.196 +451,14.209,330.503,460.978,227.103,609.226,327.236,465.597,125.272,20.556,125.272,338.852,318.703,350.168,19.196,26.100,19.196 +452,14.239,333.451,462.506,223.093,605.541,330.006,466.967,127.674,11.470,127.674,338.774,317.729,350.046,18.946,26.077,18.946 +453,14.271,337.729,464.692,219.384,601.596,333.854,469.220,130.561,4.170,130.561,338.084,316.057,350.005,19.328,24.259,19.328 +454,14.301,341.615,465.957,214.546,597.568,336.717,471.170,133.215,175.333,133.215,337.236,316.234,351.543,18.888,21.724,18.888 +455,14.331,346.589,467.634,210.127,594.032,339.755,474.195,136.169,167.593,136.169,334.060,316.511,353.006,19.391,21.056,19.391 +456,14.362,353.607,468.446,205.776,590.350,342.811,477.747,139.254,160.942,139.254,326.133,316.931,354.633,19.908,20.107,19.908 +457,14.394,371.059,462.235,201.987,586.326,345.806,481.243,143.032,155.014,143.032,292.989,317.348,356.203,18.402,19.994,18.402 +458,14.424,413.946,442.174,198.389,581.887,348.995,485.142,146.514,149.708,146.514,202.218,317.654,357.971,18.220,19.484,18.220 +459,14.456,361.301,484.559,195.100,576.141,352.469,489.662,149.982,144.791,149.982,338.649,319.193,359.049,18.857,20.463,18.857 +460,14.487,360.836,491.968,191.835,571.200,355.228,494.668,154.290,140.254,154.290,348.387,318.294,360.836,19.155,22.241,19.155 +461,14.518,363.116,498.165,188.870,564.852,358.118,500.113,158.707,134.409,158.707,351.680,318.283,362.408,19.457,21.533,19.457 +462,14.548,366.475,505.218,186.241,557.295,361.106,506.799,163.595,128.290,163.595,352.823,318.167,364.017,19.804,22.968,19.804 +463,14.579,368.074,513.380,185.280,549.424,362.854,514.393,169.023,122.039,169.023,351.357,317.786,361.991,19.841,22.570,19.841 +464,14.609,367.546,522.005,185.890,541.090,362.710,522.447,174.782,115.133,174.782,345.853,316.316,355.566,20.272,20.308,20.272 +465,14.639,367.546,522.005,185.890,541.090,362.710,522.447,174.782,115.133,174.782,345.853,316.316,355.566,20.272,20.308,20.272 +466,14.668,368.135,528.830,186.340,531.119,362.839,528.723,1.163,108.520,1.163,342.234,314.966,352.829,24.442,20.095,24.442 +467,14.699,369.062,541.516,188.426,520.511,364.381,540.929,7.148,101.902,7.148,344.820,313.033,354.256,20.974,20.992,20.974 +468,14.730,371.299,550.029,190.989,509.407,367.003,548.920,14.470,95.240,14.470,351.735,310.448,360.608,24.769,19.847,24.769 +469,14.760,371.881,562.302,194.911,497.896,367.326,560.507,21.501,88.483,21.501,356.938,308.104,366.730,25.403,18.748,25.403 +470,14.791,367.935,574.221,199.580,487.068,363.048,571.491,29.186,82.011,29.186,356.571,306.036,367.767,25.649,19.580,25.649 +471,14.823,361.098,587.025,206.888,476.030,356.493,583.494,37.476,75.235,37.476,356.620,305.190,368.225,24.999,19.302,24.999 +472,14.858,352.887,599.610,216.579,466.554,348.280,594.861,45.872,67.540,45.872,354.359,304.224,367.591,24.714,19.007,24.714 +473,14.890,347.791,616.255,225.858,457.802,338.570,603.697,53.713,61.128,53.713,337.452,302.950,368.612,22.708,19.928,22.708 +474,14.923,332.555,626.865,238.330,449.663,324.697,612.642,61.082,53.842,61.082,336.345,302.306,368.843,21.375,18.384,21.375 +475,14.954,315.675,622.870,251.176,443.464,313.772,617.522,70.414,46.909,70.414,358.589,302.309,369.941,21.387,19.600,21.387 +476,14.984,298.234,625.658,264.885,439.238,297.309,621.179,78.331,39.806,78.331,360.331,304.088,369.478,26.272,20.230,26.272 +477,15.014,287.285,626.371,279.566,436.031,287.123,621.020,88.270,32.388,88.270,359.561,305.630,370.266,25.230,22.926,25.230 +478,15.045,268.356,624.780,293.421,437.212,268.823,620.019,95.606,25.514,95.606,359.102,306.885,368.671,25.760,20.408,25.760 +479,15.075,268.356,624.780,293.421,437.212,268.823,620.019,95.606,25.514,95.606,359.102,306.885,368.671,25.760,20.408,25.760 +480,15.105,255.627,621.403,307.600,439.200,256.998,616.115,104.525,18.435,104.525,356.977,309.903,367.903,22.907,20.871,22.907 +481,15.137,243.825,615.644,321.237,443.787,246.152,610.408,113.962,11.560,113.962,354.051,311.883,365.511,20.104,20.017,20.104 +482,15.168,232.505,608.052,334.021,449.242,235.802,602.854,122.389,4.683,122.389,352.345,313.816,364.655,19.805,20.188,19.805 +483,15.199,222.641,599.336,344.916,456.869,226.853,594.417,130.577,177.750,130.577,349.583,316.463,362.536,19.553,18.860,19.553 +484,15.230,214.101,590.115,353.904,464.297,219.755,585.124,138.567,170.865,138.567,345.983,318.625,361.066,19.768,20.907,19.768 +485,15.261,206.454,580.949,361.261,473.923,213.819,575.983,146.004,163.991,146.004,340.845,320.049,358.611,19.319,22.327,19.319 +486,15.290,197.163,573.335,366.578,483.674,209.454,567.152,153.295,158.372,153.295,328.241,321.442,355.758,18.502,21.159,18.502 +487,15.322,168.562,571.383,371.243,494.506,206.219,557.518,159.786,152.464,159.786,273.007,321.212,353.264,18.839,20.296,18.839 +488,15.353,188.519,553.175,374.539,505.822,204.482,549.280,166.288,146.735,166.288,318.162,321.721,351.024,19.714,22.328,19.714 +489,15.383,193.389,541.464,376.548,516.972,203.660,540.115,172.519,139.461,172.519,328.143,321.494,348.860,19.649,23.829,19.649 +490,15.414,196.029,531.681,377.167,528.149,204.008,531.485,178.596,131.722,178.596,330.415,322.038,346.378,18.798,25.613,18.798 +491,15.443,196.029,531.681,377.167,528.149,204.008,531.485,178.596,131.722,178.596,330.415,322.038,346.378,18.798,25.613,18.798 +492,15.473,197.922,521.705,377.034,539.000,205.135,522.170,3.691,123.395,3.691,330.796,322.826,345.251,24.852,26.587,24.852 +493,15.504,200.041,513.257,375.932,548.449,207.017,514.419,9.462,115.710,9.462,330.278,323.026,344.423,25.482,26.563,25.482 +494,15.537,202.110,507.554,373.753,557.769,208.785,509.200,13.851,107.176,13.851,329.847,324.820,343.597,25.204,25.900,25.204 +495,15.568,205.668,500.662,371.900,566.321,212.099,502.879,19.026,99.583,19.026,329.903,326.496,343.507,25.329,25.394,25.329 +496,15.599,209.269,493.843,369.745,574.020,215.695,496.733,24.214,91.562,24.214,330.298,328.096,344.391,25.990,24.445,25.990 +497,15.630,212.027,488.866,367.299,580.689,218.970,492.596,28.250,83.660,28.250,328.954,330.301,344.716,25.875,23.853,25.875 +498,15.660,215.024,484.843,364.246,586.685,221.880,489.114,31.921,75.819,31.921,328.700,331.807,344.855,25.338,21.679,25.338 +499,15.691,217.144,480.369,361.380,591.847,224.913,485.886,35.385,68.035,35.385,326.179,333.162,345.235,25.121,19.973,25.121 +500,15.723,219.270,475.935,359.080,595.888,228.033,482.970,38.758,60.444,38.758,323.286,334.264,345.760,26.074,20.108,26.074 +501,15.754,215.840,472.156,356.808,599.383,228.486,483.336,41.479,52.628,41.479,312.244,334.468,346.003,18.622,20.306,18.622 +502,15.786,169.999,422.440,354.395,602.107,230.540,481.201,44.145,45.173,44.145,177.432,334.479,346.169,17.771,18.671,17.771 +503,15.816,223.695,467.803,351.903,604.177,234.009,477.994,44.655,37.589,44.655,316.101,334.426,345.100,23.228,19.451,23.228 +504,15.846,230.710,467.380,349.567,605.233,237.082,474.671,48.851,30.593,48.851,325.295,333.922,344.661,25.303,21.149,25.303 +505,15.876,230.710,467.380,349.567,605.233,237.082,474.671,48.851,30.593,48.851,325.295,333.922,344.661,25.303,21.149,25.303 +506,15.905,233.360,467.018,346.109,607.084,238.305,473.124,50.993,23.155,50.993,328.185,334.041,343.899,24.812,22.784,24.812 +507,15.936,235.494,466.005,343.410,608.135,239.776,471.599,52.564,15.461,52.564,328.730,333.479,342.820,24.190,25.551,24.190 +508,15.966,236.899,464.573,341.678,609.830,241.292,470.638,54.083,7.869,54.083,328.251,330.460,343.229,24.055,26.552,24.055 +509,15.997,238.195,463.365,339.002,610.827,242.382,469.422,55.346,0.749,55.346,327.793,328.181,342.520,23.727,26.370,23.727 +510,16.029,239.878,462.413,336.881,611.921,243.833,468.373,56.432,173.706,56.432,327.809,327.982,342.115,24.267,26.465,24.267 +511,16.061,240.136,461.233,334.823,612.767,244.348,467.828,57.435,166.430,57.435,326.052,327.189,341.702,23.407,26.749,23.407 +512,16.091,240.913,460.554,333.071,613.370,245.008,467.149,58.158,159.228,58.158,325.824,326.669,341.351,23.196,26.857,23.196 +513,16.122,241.853,459.875,331.427,614.239,245.924,466.581,58.736,151.928,58.736,325.491,326.294,341.181,24.056,26.824,24.056 +514,16.154,241.998,459.909,330.195,614.853,245.949,466.521,59.133,144.926,59.133,325.684,326.878,341.089,23.136,26.555,23.136 +515,16.185,242.375,459.910,329.075,615.123,246.120,466.237,59.374,137.291,59.374,326.053,327.101,340.757,23.096,25.492,23.096 +516,16.215,242.442,459.880,328.311,615.771,246.219,466.284,59.470,131.035,59.470,326.060,327.396,340.929,23.191,24.836,23.191 +517,16.245,242.267,459.970,328.308,616.538,246.228,466.650,59.331,123.690,59.331,326.049,328.383,341.581,23.233,24.407,23.233 +518,16.275,242.267,459.970,328.308,616.538,246.228,466.650,59.331,123.690,59.331,326.049,328.383,341.581,23.233,24.407,23.233 +519,16.303,241.776,459.929,329.006,617.003,246.063,467.060,58.986,116.896,58.986,325.845,329.175,342.486,23.166,24.157,23.166 +520,16.334,241.472,460.676,329.072,617.027,245.616,467.430,58.465,110.298,58.465,326.459,330.784,342.307,23.148,22.278,23.148 +521,16.365,240.847,461.395,329.677,617.294,245.073,468.112,57.826,104.036,57.826,326.774,332.031,342.647,23.362,20.373,23.362 +522,16.396,239.326,461.200,331.509,616.435,244.197,468.668,56.889,97.539,56.889,325.102,332.191,342.934,23.344,20.017,23.344 +523,16.427,238.384,462.496,333.482,615.981,243.294,469.712,55.768,92.121,55.768,325.874,332.439,343.330,23.499,19.320,23.499 +524,16.460,236.815,463.546,336.266,615.014,242.048,470.840,54.345,86.634,54.345,326.181,333.130,344.135,23.652,19.554,23.652 +525,16.492,234.978,463.978,339.013,613.550,240.863,471.726,52.781,81.501,52.781,325.155,333.766,344.613,24.699,19.121,24.699 +526,16.523,232.060,465.371,342.486,611.544,238.717,473.529,50.784,77.074,50.784,324.015,334.516,345.074,24.212,19.685,24.212 +527,16.555,229.428,467.188,345.996,609.001,236.642,475.327,48.447,73.055,48.447,323.388,334.670,345.139,24.576,19.722,24.576 +528,16.586,226.613,469.521,349.834,605.693,234.112,477.244,45.845,69.775,45.845,324.007,334.742,345.537,24.765,20.248,24.765 +529,16.615,223.525,472.511,353.368,602.131,231.239,479.628,42.695,66.975,42.695,324.669,334.563,345.660,24.871,19.120,24.871 +530,16.645,219.965,475.832,357.963,597.718,228.509,482.835,39.341,64.960,39.341,323.798,334.260,345.892,25.395,20.488,25.395 +531,16.675,219.965,475.832,357.963,597.718,228.509,482.835,39.341,64.960,39.341,323.798,334.260,345.892,25.395,20.488,25.395 +532,16.704,216.815,480.045,361.600,592.700,225.273,486.076,35.489,63.435,35.489,325.026,333.621,345.802,25.263,19.230,25.263 +533,16.736,213.526,485.040,365.658,586.442,221.851,490.092,31.249,62.312,31.249,326.376,333.373,345.851,25.370,19.744,25.370 +534,16.772,209.900,490.700,369.321,579.899,218.408,494.954,26.565,61.821,26.565,326.913,332.948,345.938,25.491,19.802,25.491 +535,16.815,203.191,504.236,376.115,563.210,211.639,506.714,16.348,61.390,16.348,329.849,330.887,347.456,25.166,21.389,25.166 +536,16.848,200.970,511.715,378.851,553.533,209.245,513.277,10.692,61.232,10.692,331.417,329.628,348.260,25.466,24.080,25.466 +537,16.879,198.951,520.391,380.079,543.415,206.956,521.035,4.598,61.557,4.598,332.660,328.342,348.721,25.184,23.558,25.184 +538,16.911,198.951,520.391,380.079,543.415,206.956,521.035,4.598,61.557,4.598,332.660,328.342,348.721,25.184,23.558,25.184 +539,16.946,197.986,542.582,378.823,521.172,204.658,541.578,171.444,61.699,171.444,337.030,324.826,350.526,19.489,24.856,19.489 +540,16.976,197.986,542.582,378.823,521.172,204.658,541.578,171.444,61.699,171.444,337.030,324.826,350.526,19.489,24.856,19.489 +541,17.006,198.902,553.349,375.737,509.672,204.855,551.693,164.450,62.003,164.450,339.426,323.056,351.785,19.687,23.673,19.687 +542,17.039,201.366,564.012,371.904,497.788,206.983,561.619,156.926,62.289,156.926,341.277,320.803,353.488,19.567,24.100,19.567 +543,17.071,205.614,575.193,366.100,485.949,210.693,572.184,149.357,62.796,149.357,343.511,318.466,355.317,19.413,24.063,19.413 +544,17.103,211.567,585.835,358.549,474.485,215.889,582.382,141.379,63.004,141.379,346.546,316.218,357.610,19.122,24.512,19.122 +545,17.134,219.270,595.722,349.324,464.094,222.844,591.907,133.134,63.213,133.134,349.040,313.524,359.495,19.413,24.571,19.413 +546,17.164,228.973,605.374,338.100,455.200,231.769,601.360,124.858,63.435,124.858,351.629,311.708,361.414,19.302,24.150,19.302 +547,17.196,240.272,613.377,325.576,447.725,242.359,609.161,116.328,63.672,116.328,353.785,309.499,363.194,19.450,23.728,19.450 +548,17.228,252.569,620.337,311.954,442.553,253.990,615.834,107.513,63.905,107.513,355.939,307.724,365.384,19.615,22.818,19.615 +549,17.259,268.712,626.191,297.069,439.493,269.596,620.835,99.377,64.041,99.377,355.932,306.005,366.790,25.653,21.602,25.653 +550,17.290,280.500,628.000,281.766,438.659,280.500,622.329,90.000,64.537,90.000,356.000,305.124,367.341,21.000,20.336,21.000 +551,17.321,295.262,631.541,266.664,439.994,293.647,622.222,80.169,64.537,80.169,349.403,303.834,368.319,27.116,18.917,27.116 +552,17.351,318.834,640.952,251.392,444.116,311.565,618.469,72.082,64.942,72.082,321.559,302.965,368.818,21.542,18.047,21.542 +553,17.382,338.523,637.013,237.787,450.447,325.914,612.205,63.057,65.286,63.057,312.604,303.053,368.261,21.366,18.548,21.366 +554,17.412,342.218,610.559,226.047,457.822,337.751,604.317,54.414,65.184,54.414,352.926,302.977,368.278,23.494,19.863,23.494 +555,17.442,342.218,610.559,226.047,457.822,337.751,604.317,54.414,65.184,54.414,352.926,302.977,368.278,23.494,19.863,23.494 +556,17.472,354.000,598.500,214.859,468.331,349.298,593.798,45.000,64.824,45.000,354.260,303.862,367.561,24.749,19.697,24.749 +557,17.503,362.479,585.342,205.942,478.728,357.908,582.016,36.042,64.957,36.042,355.992,304.540,367.298,25.672,19.197,25.672 +558,17.535,368.775,572.067,198.881,490.389,364.119,569.628,27.653,64.983,27.653,355.768,304.719,366.279,26.203,19.271,26.203 +559,17.566,373.440,559.350,194.313,502.215,368.600,557.632,19.537,64.916,19.537,355.295,305.622,365.568,25.902,20.657,25.902 +560,17.597,371.615,545.673,191.585,514.250,367.153,544.738,11.825,64.687,11.825,347.062,306.989,356.180,26.182,22.832,26.182 +561,17.627,369.853,534.412,189.313,526.631,364.833,534.026,4.399,64.398,4.399,341.069,308.290,351.140,24.466,21.963,24.466 +562,17.660,369.106,525.239,189.166,538.236,364.171,525.473,177.282,64.303,177.282,340.945,310.046,350.827,20.964,21.925,20.964 +563,17.691,369.395,514.887,190.777,549.168,365.138,515.592,170.597,64.372,170.597,346.378,311.387,355.009,20.492,21.529,20.492 +564,17.724,368.448,505.319,193.038,559.546,364.168,506.537,164.114,64.179,164.114,349.304,313.110,358.206,20.217,21.372,20.217 +565,17.755,364.445,496.620,196.115,569.459,360.106,498.366,158.078,63.800,158.078,347.999,314.880,357.352,19.651,20.509,19.651 +566,17.786,359.814,489.098,199.606,578.200,355.435,491.400,152.272,63.352,152.272,346.746,316.641,356.641,19.383,20.138,19.383 +567,17.817,354.695,482.533,204.434,586.520,350.672,485.160,146.857,62.802,146.857,346.117,318.873,355.726,19.583,20.729,19.583 +568,17.847,349.418,476.625,208.966,593.724,345.304,479.865,141.782,62.122,141.782,344.639,320.763,355.110,19.072,20.785,19.072 +569,17.878,343.903,471.681,214.334,599.967,340.098,475.230,136.985,61.598,136.985,343.693,321.711,354.100,19.158,21.209,19.158 +570,17.908,343.903,471.681,214.334,599.967,340.098,475.230,136.985,61.598,136.985,343.693,321.711,354.100,19.158,21.209,19.158 +571,17.937,338.485,467.621,219.935,605.655,334.979,471.472,132.319,61.082,132.319,342.924,323.540,353.340,19.182,21.044,19.182 +572,17.967,333.148,464.166,224.660,610.048,329.862,468.379,127.958,60.164,127.958,342.131,323.485,352.818,19.319,20.947,19.319 +573,17.998,327.857,461.060,230.471,614.139,324.810,465.610,123.813,59.657,123.813,340.857,324.493,351.809,19.461,21.554,19.461 +574,18.029,322.489,459.053,235.762,617.841,319.891,463.561,119.960,58.655,119.960,340.947,325.338,351.354,19.212,21.375,19.212 +575,18.061,317.606,456.823,241.298,620.876,315.196,461.724,116.185,57.995,116.185,339.934,326.373,350.857,19.153,21.624,19.153 +576,18.091,312.734,455.139,246.583,623.616,310.552,460.375,112.620,56.622,112.620,339.231,326.774,350.576,19.462,21.358,19.462 +577,18.123,308.171,453.634,251.744,625.679,306.164,459.366,109.300,55.069,109.300,337.760,327.534,349.906,19.118,22.227,19.118 +578,18.154,303.539,452.859,256.973,627.441,301.920,458.481,106.063,54.293,106.063,337.898,328.283,349.599,19.032,21.315,19.032 +579,18.185,299.190,452.124,262.383,628.565,297.895,457.755,102.947,52.696,102.947,337.294,329.006,348.849,18.999,21.136,18.999 +580,18.215,294.943,451.382,267.176,629.775,293.880,457.504,99.850,51.597,99.850,336.173,329.366,348.600,19.338,21.790,19.338 +581,18.245,290.825,450.990,272.419,630.459,290.056,457.283,96.965,49.844,96.965,335.393,329.601,348.073,18.936,21.066,18.936 +582,18.276,287.166,451.173,276.069,631.938,286.667,457.790,94.316,47.891,94.316,335.630,330.020,348.903,18.683,24.268,18.683 +583,18.307,287.166,451.173,276.069,631.938,286.667,457.790,94.316,47.891,94.316,335.630,330.020,348.903,18.683,24.268,18.683 +584,18.336,283.150,450.869,281.252,631.758,282.981,457.789,91.406,46.115,91.406,334.071,329.697,347.917,18.657,24.708,18.657 +585,18.368,279.235,451.556,285.587,631.909,279.404,458.427,88.591,43.727,88.591,333.416,330.373,347.163,18.716,25.010,18.716 +586,18.398,276.181,451.721,290.452,631.485,276.617,458.250,86.186,41.241,86.186,334.458,330.564,347.544,19.024,25.267,19.024 +587,18.429,272.742,451.760,295.445,630.814,273.554,458.812,83.434,38.565,83.434,332.559,330.933,346.756,19.597,24.894,19.597 +588,18.461,269.361,452.850,299.773,630.316,270.445,459.485,80.720,35.636,80.720,333.202,330.844,346.649,20.048,25.964,20.048 +589,18.494,265.495,453.249,304.515,628.691,266.919,459.918,77.943,32.471,77.943,332.168,331.252,345.807,19.758,25.463,19.758 +590,18.524,262.165,454.248,309.003,627.102,263.839,460.594,75.213,29.249,75.213,331.916,331.308,345.041,20.373,25.861,20.373 +591,18.557,259.012,455.110,313.289,625.439,260.974,461.274,72.350,25.682,72.350,331.661,331.869,344.599,21.527,26.288,21.527 +592,18.588,255.164,456.438,318.068,623.349,257.404,462.411,69.444,21.638,69.444,331.226,331.636,343.984,21.536,25.397,21.536 +593,18.618,251.455,457.388,322.893,621.342,254.249,463.822,66.524,17.354,66.524,329.624,330.727,343.653,22.178,27.083,22.178 +594,18.647,248.296,459.100,327.802,618.367,251.260,464.996,63.315,12.848,63.315,329.623,330.000,342.820,23.418,26.324,23.418 +595,18.678,243.701,460.530,332.325,615.197,247.140,466.539,60.208,8.306,60.208,328.823,329.970,342.671,23.504,26.587,23.504 +596,18.709,243.701,460.530,332.325,615.197,247.140,466.539,60.208,8.306,60.208,328.823,329.970,342.671,23.504,26.587,23.504 +597,18.737,239.807,462.627,337.281,612.220,243.793,468.696,56.706,3.892,56.706,328.047,328.554,342.570,23.641,27.806,23.641 +598,18.769,236.078,464.816,341.977,608.582,240.531,470.762,53.171,178.559,53.171,327.394,328.123,342.250,24.958,26.878,24.958 +599,18.801,231.665,467.859,346.583,604.814,236.542,473.549,49.399,174.193,49.399,327.565,327.379,342.554,24.405,26.524,24.405 +600,18.831,227.323,471.175,351.224,600.159,232.650,476.565,45.341,169.077,45.341,327.355,327.157,342.512,24.727,26.270,24.727 +601,18.863,223.146,474.690,355.607,594.869,228.985,479.799,41.186,163.887,41.186,326.618,326.771,342.134,25.870,26.302,25.870 +602,18.893,218.218,479.035,359.930,588.823,224.724,483.876,36.656,158.488,36.656,326.024,326.094,342.243,25.205,26.375,25.205 +603,18.924,214.353,484.133,364.058,582.611,221.029,488.298,31.958,152.632,31.958,326.803,325.243,342.541,26.006,26.611,26.006 +604,18.955,210.000,490.500,367.819,575.459,217.019,494.010,26.565,146.781,26.565,326.913,324.777,342.609,25.938,26.600,25.938 +605,18.986,206.375,496.305,371.051,567.307,213.519,499.151,21.723,141.189,21.723,327.762,324.221,343.142,26.426,26.324,26.426 +606,19.016,202.785,504.984,373.750,558.750,209.760,506.941,15.680,135.000,15.680,329.290,322.441,343.779,25.387,26.163,25.387 +607,19.047,200.216,512.289,375.656,549.809,207.198,513.535,10.125,129.289,10.125,330.240,323.092,344.424,25.876,26.666,25.876 +608,19.077,200.216,512.289,375.656,549.809,207.198,513.535,10.125,129.289,10.125,330.240,323.092,344.424,25.876,26.666,25.876 +609,19.107,198.039,521.411,376.943,539.463,204.797,521.863,3.827,122.829,3.827,332.328,321.563,345.873,24.934,26.266,24.934 +610,19.139,197.024,533.995,377.200,528.600,203.871,533.658,177.178,116.565,177.178,333.025,320.205,346.735,19.293,26.833,19.293 +611,19.170,196.836,544.463,375.901,517.519,203.366,543.345,170.283,110.323,170.283,335.588,319.182,348.837,19.423,26.292,19.423 +612,19.202,199.006,555.313,372.971,506.118,204.412,553.671,163.106,104.036,163.106,338.908,317.964,350.207,19.683,25.709,19.683 +613,19.234,201.676,566.493,368.865,494.483,206.964,564.100,155.654,97.199,155.654,340.798,315.796,352.407,19.124,25.691,19.124 +614,19.265,206.568,577.492,362.727,483.059,211.020,574.690,147.819,91.245,147.819,343.883,314.187,354.404,19.396,24.451,19.396 +615,19.295,213.143,588.034,354.918,472.356,216.820,584.923,139.777,84.193,139.777,346.635,313.350,356.268,19.340,23.944,19.340 +616,19.326,221.395,597.791,345.977,462.396,224.391,594.402,131.476,77.661,131.476,349.813,311.601,358.861,19.215,25.125,19.215 +617,19.357,231.159,607.104,334.913,453.702,233.683,603.222,123.034,71.030,123.034,351.809,309.978,361.069,19.633,24.145,19.633 +618,19.388,242.682,614.536,322.769,446.612,244.510,610.503,114.383,64.093,114.383,354.307,308.583,363.162,19.816,24.081,19.816 +619,19.419,254.995,621.177,309.275,441.467,256.172,616.836,105.179,57.189,105.179,357.315,307.276,366.310,22.429,23.732,22.429 +620,19.449,268.011,624.772,294.918,438.069,268.492,620.322,96.170,50.029,96.170,359.124,306.526,368.075,25.715,23.295,25.715 +621,19.480,286.032,626.373,280.303,437.174,285.921,621.581,88.683,42.879,88.683,359.388,305.208,368.974,24.223,22.978,24.223 +622,19.510,297.747,625.848,264.743,439.463,296.861,621.434,78.651,35.613,78.651,360.463,304.927,369.467,26.082,20.472,26.082 +623,19.542,297.747,625.848,264.743,439.463,296.861,621.434,78.651,35.613,78.651,360.463,304.927,369.467,26.082,20.472,26.082 +624,19.571,315.054,621.052,250.572,442.589,313.562,616.874,70.346,28.369,70.346,361.763,304.852,370.636,21.593,21.118,21.593 +625,19.603,329.280,614.167,237.011,448.500,327.209,610.367,61.403,20.700,61.403,361.930,304.673,370.585,23.240,21.087,23.240 +626,19.634,341.986,605.333,224.747,456.099,339.252,601.760,52.586,12.949,52.586,361.528,305.211,370.527,24.382,20.900,24.382 +627,19.664,352.632,595.235,213.938,465.211,349.155,591.866,44.095,4.996,44.095,360.803,305.371,370.487,25.299,20.314,25.299 +628,19.695,360.708,583.344,204.746,475.883,357.238,580.848,35.725,176.847,35.725,361.624,306.472,370.173,26.060,19.140,26.060 +629,19.726,366.258,571.393,197.189,486.919,362.502,569.406,27.870,168.378,27.870,360.899,308.701,369.398,25.702,19.326,25.702 +630,19.757,371.236,559.956,191.641,498.388,366.598,558.240,20.300,160.071,20.300,359.821,310.386,369.711,25.879,20.133,25.879 +631,19.789,369.945,547.529,187.638,509.833,365.187,546.418,13.145,151.521,13.145,352.661,312.042,362.433,26.083,21.561,26.083 +632,19.820,368.145,537.224,185.289,521.381,363.040,536.655,6.359,142.869,6.359,346.425,314.006,356.698,24.655,21.731,24.655 +633,19.851,367.000,527.000,183.988,532.029,361.494,527.000,0.000,133.840,0.000,344.000,315.563,355.012,24.000,22.474,24.000 +634,19.881,367.382,520.387,183.633,542.544,361.554,521.006,173.932,124.965,173.932,346.681,317.204,358.401,20.534,24.092,20.534 +635,19.910,367.382,520.387,183.633,542.544,361.554,521.006,173.932,124.965,173.932,346.681,317.204,358.401,20.534,24.092,20.534 +636,19.940,367.840,512.229,185.814,552.909,362.885,513.258,168.267,115.974,168.267,352.749,318.473,362.870,20.207,22.544,20.207 +637,19.970,366.724,503.969,188.044,562.316,360.899,505.756,162.945,106.821,162.945,351.498,319.531,363.683,19.936,22.394,19.936 +638,20.001,363.007,497.292,191.524,570.570,357.971,499.319,158.076,97.595,158.076,351.167,320.034,362.025,19.470,21.675,19.470 +639,20.033,359.800,491.100,196.105,577.946,355.053,493.474,153.435,88.069,153.435,349.274,320.256,359.889,19.677,18.607,19.677 +640,20.064,356.524,485.521,200.123,583.878,351.877,488.289,149.224,78.906,149.224,347.770,320.255,358.588,19.433,19.492,19.433 +641,20.094,352.847,480.621,204.715,589.043,348.534,483.617,145.207,69.399,145.207,346.026,320.105,356.529,19.320,19.803,19.320 +642,20.127,349.194,476.356,209.375,594.053,345.139,479.576,141.551,60.025,141.551,344.660,320.755,355.018,18.981,20.952,18.981 +643,20.159,345.599,472.494,212.994,596.868,341.729,475.961,138.145,50.697,138.145,342.733,319.081,353.124,19.288,22.036,19.288 +644,20.193,342.000,469.500,215.421,600.866,337.889,473.611,135.000,41.009,135.000,341.533,318.247,353.161,19.092,25.755,19.092 +645,20.225,338.971,466.738,218.677,603.048,335.201,470.899,132.169,31.088,132.169,341.108,317.792,352.338,19.146,25.679,19.146 +646,20.258,335.871,464.043,221.759,605.103,332.202,468.493,129.514,21.801,129.514,339.789,317.539,351.324,19.358,26.369,19.358 +647,20.289,333.158,461.888,224.226,606.348,329.625,466.561,127.093,11.094,127.093,338.422,317.484,350.139,19.105,26.419,19.105 +648,20.320,330.441,459.901,226.503,607.865,326.943,464.915,124.902,1.348,124.902,337.187,317.289,349.414,19.225,24.664,19.225 +649,20.351,328.344,457.655,227.812,609.282,324.396,463.779,122.803,171.209,122.803,334.678,318.411,349.251,19.726,23.667,19.726 +650,20.381,326.019,456.125,229.034,611.176,321.911,462.929,121.122,160.594,121.122,333.930,319.559,349.827,19.286,22.176,19.286 +651,20.411,325.026,453.493,230.431,613.254,319.892,462.575,119.476,150.255,119.476,329.527,321.498,350.392,19.531,20.714,19.531 +652,20.443,325.026,453.493,230.431,613.254,319.892,462.575,119.476,150.255,119.476,329.527,321.498,350.392,19.531,20.714,19.531 +653,20.473,325.151,450.505,231.960,615.356,318.634,462.607,118.301,140.013,118.301,323.675,323.160,351.166,20.386,20.465,20.386 +654,20.505,325.898,442.474,233.505,617.504,315.852,462.047,117.170,130.280,117.170,307.812,325.317,351.812,18.076,20.197,18.076 +655,20.536,341.191,406.819,235.108,619.562,314.100,461.796,116.232,119.745,116.232,230.285,327.080,352.865,18.044,19.846,18.044 +656,20.567,318.294,451.246,236.787,620.986,313.252,462.123,114.869,109.481,114.869,328.601,328.938,352.578,18.621,20.484,18.621 +657,20.598,314.554,456.064,238.430,622.805,311.865,462.075,114.097,100.347,114.097,340.241,330.047,353.411,19.336,20.205,19.336 +658,20.628,313.295,456.451,241.000,624.000,311.034,461.644,113.532,90.000,113.532,342.305,330.000,353.632,19.239,18.000,19.239 +659,20.659,313.192,455.306,242.817,624.533,310.593,461.420,113.030,79.919,113.030,339.970,330.135,353.255,19.259,20.194,19.259 +660,20.695,312.966,456.216,245.514,624.780,310.823,461.283,112.932,70.852,112.932,341.041,329.586,352.044,19.376,23.210,19.376 +661,20.726,312.778,455.033,246.274,624.001,310.505,460.487,112.620,60.619,112.620,339.462,327.441,351.280,19.462,21.594,19.462 +662,20.757,312.837,454.891,246.874,622.985,310.715,459.983,112.620,49.667,112.620,339.000,326.075,350.034,19.462,22.380,19.462 +663,20.788,312.998,454.172,245.948,623.134,310.516,460.170,112.479,39.472,112.479,337.553,324.302,350.537,19.181,26.064,19.181 +664,20.818,313.496,453.946,245.769,621.654,311.047,459.764,112.834,29.745,112.834,336.445,322.738,349.070,19.015,26.171,19.015 +665,20.849,313.964,453.485,245.041,619.951,311.584,459.077,113.051,19.250,113.051,336.013,321.426,348.168,19.343,26.824,19.343 +666,20.880,314.791,453.279,243.444,618.846,312.214,459.202,113.516,9.162,113.516,334.732,320.376,347.650,18.999,26.369,18.999 +667,20.909,314.791,453.279,243.444,618.846,312.214,459.202,113.516,9.162,113.516,334.732,320.376,347.650,18.999,26.369,18.999 +668,20.939,315.800,453.253,241.497,617.263,313.182,459.102,114.116,179.265,114.116,334.478,319.140,347.293,19.256,25.357,19.256 +669,20.969,316.995,453.123,239.231,616.654,313.937,459.708,114.911,168.690,114.911,333.100,319.865,347.621,19.179,24.907,19.179 +670,21.000,318.696,453.028,236.549,615.827,315.168,460.329,115.793,158.962,115.793,332.213,320.497,348.431,19.085,22.759,19.085 +671,21.031,321.081,451.800,234.110,615.590,316.356,461.200,116.690,150.018,116.690,328.721,321.621,349.763,19.299,20.589,19.299 +672,21.063,324.050,450.593,232.078,615.221,317.826,462.263,118.072,141.274,118.072,324.177,322.813,350.629,19.588,19.842,19.588 +673,21.094,328.376,445.394,229.999,615.463,318.469,463.056,119.291,132.879,119.291,311.908,323.633,352.410,18.145,20.099,18.145 +674,21.125,342.781,424.732,228.375,615.276,319.617,463.982,120.548,126.384,120.548,262.188,325.243,353.340,18.128,19.745,18.128 +675,21.157,335.031,442.800,226.712,614.401,321.500,465.007,121.354,119.358,121.354,301.788,326.950,353.796,18.609,19.610,18.609 +676,21.188,326.386,460.812,224.524,613.795,322.936,466.155,122.852,113.342,122.852,342.106,327.999,354.827,18.828,21.495,18.828 +677,21.219,328.661,461.731,222.789,613.208,324.684,467.494,124.606,106.280,124.606,341.603,327.480,355.607,19.021,20.387,19.021 +678,21.249,330.740,464.180,220.949,611.568,327.235,468.854,126.870,98.631,126.870,344.200,327.296,355.885,18.600,19.844,18.600 +679,21.279,333.561,465.925,218.751,609.983,329.861,470.479,129.094,90.548,129.094,344.934,326.090,356.671,19.112,19.521,19.112 +680,21.309,333.561,465.925,218.751,609.983,329.861,470.479,129.094,90.548,129.094,344.934,326.090,356.671,19.112,19.521,19.112 +681,21.337,337.162,467.908,216.585,606.782,333.410,472.101,131.820,82.164,131.820,345.282,325.537,356.536,18.945,19.595,18.945 +682,21.370,340.901,469.923,214.342,602.900,337.037,473.828,134.694,73.639,134.694,345.109,324.154,356.095,19.020,19.674,19.020 +683,21.402,345.113,472.848,212.031,598.293,341.071,476.486,138.013,64.507,138.013,343.922,322.577,354.799,18.954,20.354,18.954 +684,21.432,349.352,476.314,209.155,593.040,345.361,479.494,141.442,56.050,141.442,344.363,320.332,354.568,19.402,21.558,19.402 +685,21.464,353.431,479.982,205.533,586.093,349.427,482.777,145.081,46.829,145.081,344.491,316.390,354.256,19.277,21.619,19.277 +686,21.495,357.069,484.956,202.042,578.838,353.592,487.037,149.090,37.488,149.090,346.261,314.242,354.367,19.395,21.956,19.395 +687,21.526,360.900,490.300,198.444,570.728,357.332,492.084,153.435,28.048,153.435,346.591,312.764,354.569,19.230,22.889,19.230 +688,21.558,365.575,496.171,194.220,562.918,360.426,498.243,158.078,19.079,158.078,345.566,312.136,356.668,19.278,23.264,19.278 +689,21.590,373.417,502.128,191.085,554.979,363.373,505.202,162.979,9.246,162.979,337.617,310.861,358.624,19.651,21.462,19.651 +690,21.621,387.386,508.128,188.003,546.601,364.568,512.900,168.190,179.725,168.190,312.826,310.035,359.449,19.808,19.702,19.808 +691,21.651,377.059,520.022,186.792,536.328,363.614,521.536,173.571,169.924,173.571,327.673,312.522,354.733,20.182,20.758,20.182 +692,21.681,368.500,529.000,185.293,528.386,362.147,529.000,0.000,161.395,0.000,341.000,311.506,353.707,20.000,22.295,20.000 +693,21.712,368.049,536.366,186.223,519.917,363.385,535.858,6.212,151.793,6.212,346.308,312.016,355.692,25.158,20.253,25.158 +694,21.742,368.049,536.366,186.223,519.917,363.385,535.858,6.212,151.793,6.212,346.308,312.016,355.692,25.158,20.253,25.158 +695,21.772,369.691,547.006,187.999,509.323,365.161,545.960,12.995,142.927,12.995,352.430,312.019,361.727,25.184,21.684,25.184 +696,21.803,371.344,559.001,192.010,499.389,367.196,557.505,19.832,132.600,19.832,360.207,311.006,369.025,25.707,19.426,25.707 +697,21.834,367.891,570.842,196.980,488.803,363.458,568.567,27.170,123.358,27.170,359.097,310.378,369.062,25.532,18.181,25.532 +698,21.865,362.439,582.733,203.696,478.309,358.218,579.774,35.028,113.962,35.028,359.232,308.868,369.544,24.987,18.378,24.987 +699,21.895,354.985,594.052,212.170,468.433,350.953,590.287,43.039,104.270,43.039,358.167,306.816,369.199,25.393,18.178,25.393 +700,21.926,344.939,605.049,221.355,459.406,341.302,600.503,51.340,94.667,51.340,358.575,304.355,370.218,23.895,19.039,23.895 +701,21.956,334.085,614.950,232.752,452.021,330.537,608.939,59.449,85.236,59.449,355.721,303.614,369.679,22.941,19.100,22.941 +702,21.987,322.638,626.558,245.348,446.917,318.344,616.070,67.733,76.065,67.733,345.732,303.657,368.397,21.525,18.711,21.525 +703,22.018,310.297,637.088,258.599,441.959,306.278,620.364,76.489,67.286,76.489,334.816,302.389,369.215,24.738,18.127,24.738 +704,22.049,289.303,628.578,273.211,438.868,288.618,622.496,83.568,58.033,83.568,356.155,302.946,368.396,26.382,20.054,26.382 +705,22.080,274.249,625.636,287.742,437.788,274.403,621.377,92.076,48.784,92.076,359.380,304.134,367.903,26.273,21.941,26.273 +706,22.110,274.249,625.636,287.742,437.788,274.403,621.377,92.076,48.784,92.076,359.380,304.134,367.903,26.273,21.941,26.273 +707,22.139,263.794,624.041,302.276,438.158,264.919,618.857,102.250,38.884,102.250,358.413,307.071,369.022,24.514,23.603,24.514 +708,22.172,248.562,618.096,316.771,441.404,250.680,612.551,110.901,29.604,110.901,355.053,309.843,366.927,20.262,23.772,20.262 +709,22.202,236.390,611.155,329.151,447.593,239.243,606.108,119.476,20.270,119.476,352.881,312.921,364.475,20.288,21.570,20.288 +710,22.233,225.790,602.337,341.412,454.439,229.499,597.559,127.818,11.348,127.818,351.261,315.559,363.359,19.711,21.075,19.711 +711,22.264,216.822,592.816,351.669,462.603,221.648,588.142,135.924,2.481,135.924,348.034,317.525,361.471,19.466,20.443,19.466 +712,22.294,209.653,582.838,360.018,471.665,215.534,578.552,143.915,173.660,143.915,344.885,319.920,359.439,19.354,20.540,19.354 +713,22.327,202.208,573.620,366.224,481.718,210.696,569.013,151.510,164.417,151.510,337.354,321.439,356.668,19.437,23.440,19.437 +714,22.359,131.552,588.530,371.153,492.949,206.997,559.572,159.001,156.171,159.001,192.630,321.566,354.255,18.643,19.576,18.643 +715,22.392,187.361,554.393,374.233,504.372,204.694,549.992,165.754,147.882,165.754,315.338,321.818,351.104,19.631,21.415,19.631 +716,22.425,193.414,542.031,376.505,516.733,203.652,540.633,172.222,139.028,172.222,328.327,321.724,348.994,19.768,24.340,19.768 +717,22.456,196.533,531.895,377.025,528.315,203.942,531.717,178.625,130.462,178.625,331.409,322.594,346.230,18.755,25.824,18.755 +718,22.487,198.320,521.558,376.794,539.677,205.024,522.028,4.014,120.964,4.014,331.728,323.446,345.168,23.924,26.411,23.924 +719,22.517,200.203,513.284,375.686,549.492,206.982,514.414,9.462,112.521,9.462,330.606,323.467,344.352,25.482,26.203,25.482 +720,22.548,202.574,506.405,373.673,559.281,209.373,508.188,14.697,103.496,14.697,329.715,325.244,343.773,25.292,25.788,25.292 +721,22.577,202.574,506.405,373.673,559.281,209.373,508.188,14.697,103.496,14.697,329.715,325.244,343.773,25.292,25.788,25.292 +722,22.607,206.363,499.810,371.553,567.835,212.533,502.025,19.747,95.389,19.747,330.697,326.757,343.808,25.364,24.627,25.364 +723,22.637,209.137,493.699,368.666,575.991,215.740,496.700,24.444,87.064,24.444,329.553,328.747,344.059,25.490,22.534,25.490 +724,22.668,213.220,487.327,366.236,582.954,220.096,491.230,29.578,78.906,29.578,328.929,331.030,344.743,25.926,21.878,25.926 +725,22.698,215.707,482.389,363.601,588.944,223.542,487.565,33.447,70.858,33.447,326.701,332.420,345.483,25.805,20.924,25.805 +726,22.729,218.200,478.400,360.570,594.210,226.593,484.695,36.870,63.289,36.870,324.800,333.634,345.782,25.200,19.732,25.200 +727,22.759,219.358,473.774,358.179,597.871,229.272,482.185,40.314,56.077,40.314,320.277,334.498,346.278,24.423,19.504,24.423 +728,22.798,211.838,465.473,355.393,600.961,229.546,482.074,43.152,49.574,43.152,297.697,334.721,346.243,18.238,19.200,18.238 +729,22.843,197.362,443.669,352.839,603.672,233.748,478.342,43.620,43.264,43.620,244.826,334.629,345.348,21.710,20.047,21.710 +730,22.876,224.684,466.715,350.693,605.437,234.827,477.237,46.048,37.349,46.048,316.192,334.423,345.422,24.193,19.518,24.193 +731,22.909,232.048,466.295,348.128,606.282,238.216,473.679,50.133,30.358,50.133,325.222,333.924,344.464,25.236,20.648,25.236 +732,22.946,237.247,464.822,341.679,609.749,241.375,470.547,54.207,14.400,54.207,329.037,331.583,343.152,24.094,26.505,24.094 +733,22.976,239.330,463.115,339.006,610.936,243.264,468.941,55.971,5.377,55.971,328.454,329.743,342.514,24.256,26.389,24.256 +734,23.007,239.330,463.115,339.006,610.936,243.264,468.941,55.971,5.377,55.971,328.454,329.743,342.514,24.256,26.389,24.256 +735,23.037,240.721,461.811,335.592,612.823,244.671,468.039,57.619,176.032,57.619,327.175,328.085,341.926,23.502,26.485,23.502 +736,23.069,242.042,460.376,332.642,614.127,245.953,466.883,58.994,167.196,58.994,326.538,327.246,341.721,23.190,26.595,23.190 +737,23.099,243.378,459.000,329.664,615.168,247.209,465.731,60.356,158.282,60.356,325.832,326.818,341.321,22.915,27.430,22.915 +738,23.131,245.083,458.318,326.938,616.601,248.737,465.018,61.390,147.995,61.390,325.779,326.585,341.042,23.623,26.394,23.623 +739,23.161,246.071,458.094,324.572,617.769,249.508,464.682,62.447,138.366,62.447,326.032,327.033,340.894,22.550,25.495,22.550 +740,23.194,247.016,457.483,322.281,619.024,250.361,464.144,63.334,128.660,63.334,326.461,328.277,341.368,22.514,24.207,22.514 +741,23.227,248.234,456.932,320.807,620.393,251.627,463.878,63.970,119.157,63.970,326.535,329.359,341.996,23.216,22.899,23.216 +742,23.259,248.325,456.696,318.700,621.400,251.747,463.861,64.470,108.435,64.470,326.143,331.090,342.025,22.290,21.820,22.290 +743,23.291,249.197,456.038,319.183,623.297,253.056,464.295,64.949,100.008,64.949,325.860,333.262,344.088,23.150,20.043,23.150 +744,23.322,248.586,455.071,320.245,624.035,253.208,465.051,65.152,90.721,65.152,322.872,334.062,344.870,22.137,19.558,22.137 +745,23.352,247.135,451.856,321.430,624.935,253.437,465.477,65.171,81.384,65.171,316.523,335.744,346.539,22.120,19.325,22.120 +746,23.382,240.449,442.139,322.605,624.466,251.625,466.354,65.225,72.063,65.225,293.271,335.216,346.609,18.019,19.451,18.019 +747,23.413,238.628,437.179,323.751,624.092,252.810,465.847,63.679,62.592,63.679,282.619,335.505,346.588,20.401,19.465,20.401 +748,23.443,238.628,437.179,323.751,624.092,252.810,465.847,63.679,62.592,63.679,282.619,335.505,346.588,20.401,19.465,20.401 +749,23.475,246.900,456.800,325.271,623.168,251.761,466.522,63.435,53.673,63.435,324.230,334.653,345.968,22.361,19.099,22.361 +750,23.508,248.996,458.218,327.250,621.701,252.553,465.669,64.477,44.493,64.477,329.469,333.804,345.981,23.349,20.624,23.349 +751,23.540,248.000,459.000,327.985,620.130,251.324,465.649,63.435,35.707,63.435,330.044,333.053,344.911,22.361,21.848,22.361 +752,23.572,247.603,459.703,328.315,619.379,250.750,465.865,62.949,26.878,62.949,330.149,332.742,343.989,22.530,23.729,22.530 +753,23.602,246.508,459.996,329.509,617.605,249.581,465.808,62.135,17.021,62.135,329.958,332.016,343.107,22.779,25.759,22.779 +754,23.632,245.326,459.922,330.856,616.075,248.612,465.885,61.140,7.645,61.140,328.851,330.286,342.467,24.118,26.381,24.118 +755,23.663,243.309,460.401,332.494,614.745,246.915,466.614,59.871,178.727,59.871,327.781,327.230,342.148,23.221,26.571,23.221 +756,23.694,241.428,460.851,333.694,613.719,245.386,467.302,58.469,170.238,58.469,326.826,327.002,341.963,23.414,26.620,23.414 +757,23.727,239.484,461.684,335.111,612.410,243.707,468.145,56.829,161.053,56.829,326.095,326.379,341.533,23.458,26.935,23.458 +758,23.759,237.627,462.467,336.605,610.748,242.030,468.771,55.069,152.319,55.069,325.725,326.201,341.104,24.569,26.712,24.569 +759,23.792,235.129,464.150,338.556,609.233,239.730,470.275,53.087,143.310,53.087,325.597,326.586,340.918,23.863,26.572,23.863 +760,23.825,232.933,466.098,340.960,607.461,237.617,471.878,50.981,134.433,50.981,325.923,326.107,340.804,24.286,26.267,24.286 +761,23.857,230.478,468.108,343.222,605.436,235.274,473.544,48.576,125.942,48.576,326.135,327.325,340.635,24.392,25.442,24.392 +762,23.889,227.532,470.108,346.524,603.500,232.935,475.704,46.010,117.121,46.010,326.113,328.687,341.671,24.700,25.486,24.700 +763,23.919,225.432,473.158,349.695,600.867,230.746,478.128,43.086,108.052,43.086,326.879,329.510,341.430,25.634,24.016,25.634 +764,23.949,222.236,476.052,354.155,597.615,228.167,481.033,40.023,99.951,40.023,327.415,329.961,342.906,25.973,24.157,25.973 +765,23.978,218.799,479.549,358.483,593.965,225.525,484.552,36.642,90.988,36.642,327.199,330.175,343.965,25.298,23.066,25.298 +766,24.009,218.799,479.549,358.483,593.965,225.525,484.552,36.642,90.988,36.642,327.199,330.175,343.965,25.298,23.066,25.298 +767,24.039,215.875,483.527,362.674,588.802,222.696,487.951,32.969,83.246,32.969,328.374,331.134,344.636,25.690,22.919,25.690 +768,24.071,212.477,488.219,366.408,583.160,219.508,492.112,28.968,74.854,28.968,329.163,331.877,345.236,25.513,21.577,25.513 +769,24.101,209.187,493.067,370.989,576.295,216.981,496.650,24.689,67.258,24.689,329.236,332.228,346.393,25.983,21.786,25.983 +770,24.132,205.556,499.259,374.254,568.851,213.973,502.274,19.708,59.657,19.708,328.810,331.987,346.689,25.966,20.712,25.966 +771,24.162,202.183,506.048,377.343,560.464,211.194,508.398,14.621,52.352,14.621,329.200,331.259,347.824,25.999,20.383,25.999 +772,24.192,199.657,513.464,379.615,550.886,208.790,514.965,9.335,45.215,9.335,330.266,330.251,348.778,25.304,20.207,25.304 +773,24.223,197.895,521.726,380.748,540.589,206.689,522.279,3.599,38.234,3.599,332.105,330.478,349.729,24.863,19.661,24.863 +774,24.254,196.760,533.972,380.609,529.273,205.562,533.551,177.265,31.457,177.265,332.481,330.696,350.105,19.249,20.122,19.249 +775,24.284,196.829,543.919,380.210,517.634,205.477,542.497,170.665,25.821,170.665,335.376,328.297,352.903,19.276,21.110,19.276 +776,24.314,198.678,554.721,377.774,504.641,206.796,552.321,163.532,19.409,163.532,338.032,326.493,354.961,19.789,22.441,19.789 +777,24.343,198.678,554.721,377.774,504.641,206.796,552.321,163.532,19.409,163.532,338.032,326.493,354.961,19.789,22.441,19.789 +778,24.374,201.434,565.581,372.825,492.216,208.843,562.316,156.214,13.965,156.214,340.458,326.203,356.652,19.411,21.227,19.411 +779,24.406,206.282,576.525,366.849,480.205,212.763,572.530,148.344,8.633,148.344,344.001,322.741,359.227,19.252,21.445,19.252 +780,24.437,212.574,587.188,358.086,469.706,217.786,582.845,140.194,3.814,140.194,346.852,320.888,360.422,18.949,19.756,18.949 +781,24.467,221.089,597.397,347.975,458.964,225.381,592.598,131.808,178.603,131.808,349.793,318.344,362.668,19.296,19.677,19.296 +782,24.498,231.039,606.888,335.976,450.280,234.471,601.647,123.225,173.660,123.225,351.948,317.932,364.478,19.575,19.546,19.575 +783,24.529,242.978,615.120,322.677,443.876,245.499,609.598,114.538,168.751,114.538,353.473,315.944,365.614,20.191,18.109,20.191 +784,24.561,255.279,621.942,308.038,439.132,256.837,616.018,104.744,164.055,104.744,355.934,314.006,368.185,22.701,17.857,22.701 +785,24.592,268.610,625.365,292.508,436.346,269.168,619.616,95.544,159.326,95.544,357.783,312.738,369.335,26.168,18.518,26.168 +786,24.623,288.072,626.942,276.852,436.132,287.853,621.050,87.873,154.134,87.873,358.607,311.717,370.398,25.280,18.596,25.280 +787,24.653,300.237,625.783,260.719,438.710,299.027,620.377,77.384,149.281,77.384,360.217,310.595,371.295,26.027,18.178,26.027 +788,24.683,318.041,620.311,245.398,443.857,316.082,615.301,68.643,144.493,68.643,360.067,310.031,370.826,21.880,18.000,21.880 +789,24.714,332.879,612.787,231.329,451.052,330.171,608.237,59.248,139.434,59.248,360.657,309.994,371.247,23.561,17.967,23.561 +790,24.744,332.879,612.787,231.329,451.052,330.171,608.237,59.248,139.434,59.248,360.657,309.994,371.247,23.561,17.967,23.561 +791,24.774,346.010,602.554,218.700,460.686,342.701,598.611,49.994,134.433,49.994,360.432,309.796,370.727,25.482,17.698,25.482 +792,24.806,356.212,591.133,208.324,471.678,352.492,587.914,40.878,129.472,40.878,360.314,310.498,370.154,25.644,18.072,25.644 +793,24.837,364.521,578.159,199.626,483.726,360.234,575.484,31.968,124.216,31.968,359.556,311.222,369.663,26.135,18.457,26.135 +794,24.869,369.729,565.007,193.444,496.638,365.275,563.078,23.418,119.083,23.418,358.459,312.075,368.166,25.770,18.988,25.770 +795,24.901,371.527,551.735,189.656,509.956,366.919,550.478,15.255,113.912,15.255,353.805,313.137,363.357,25.522,20.189,25.522 +796,24.933,369.169,538.441,187.591,522.878,364.597,537.851,7.352,108.716,7.352,345.715,314.330,354.934,25.466,20.894,25.466 +797,24.963,367.996,529.268,187.192,535.784,363.099,529.283,179.825,103.379,179.825,342.056,315.328,351.851,20.506,21.508,20.506 +798,24.994,368.453,518.134,187.505,547.572,363.381,518.785,172.689,98.070,172.689,345.990,316.639,356.218,21.320,19.809,21.320 +799,25.025,369.030,507.646,189.829,558.709,364.167,508.881,165.757,92.770,165.757,352.445,317.548,362.478,20.354,20.122,20.354 +800,25.056,364.217,498.615,193.253,569.379,359.727,500.317,159.244,87.483,159.244,350.686,317.704,360.289,19.750,19.970,19.750 +801,25.088,359.864,490.298,197.340,578.815,355.060,492.741,153.048,82.134,153.048,348.426,319.596,359.204,19.777,19.375,19.777 +802,25.119,354.457,483.116,202.490,587.152,350.034,485.978,147.095,76.842,147.095,347.138,320.262,357.674,19.656,20.107,19.656 +803,25.149,348.993,476.609,208.024,594.664,344.624,480.091,141.447,71.681,141.447,345.292,321.288,356.465,19.404,20.487,19.404 +804,25.180,343.044,471.437,214.317,601.641,339.122,475.195,136.219,66.264,136.219,344.328,322.666,355.192,19.103,20.347,19.103 +805,25.210,343.044,471.437,214.317,601.641,339.122,475.195,136.219,66.264,136.219,344.328,322.666,355.192,19.103,20.347,19.103 +806,25.239,337.035,466.788,220.975,607.062,333.555,470.783,131.060,60.855,131.060,342.815,323.531,353.411,19.364,20.773,19.364 +807,25.271,331.113,462.744,227.179,611.327,327.991,466.987,126.347,55.646,126.347,341.475,322.607,352.012,19.057,21.350,19.057 +808,25.301,325.330,459.349,233.765,615.200,322.495,463.933,121.734,50.250,121.734,339.866,323.166,350.645,19.304,21.200,19.304 +809,25.332,319.486,456.683,238.750,619.750,316.627,462.213,117.337,45.000,117.337,338.963,323.148,351.413,19.227,25.456,19.227 +810,25.363,313.884,454.527,245.265,622.571,311.376,460.394,113.143,39.472,113.143,337.459,323.802,350.220,19.021,26.064,19.021 +811,25.394,308.108,452.986,251.645,624.543,306.093,458.830,109.026,33.977,109.026,336.455,323.973,348.820,19.233,26.464,19.233 +812,25.425,302.577,451.442,257.806,626.159,300.931,457.548,105.092,29.168,105.092,335.401,324.809,348.049,19.180,26.744,19.180 +813,25.456,297.153,450.640,263.791,627.360,295.954,456.697,101.197,24.444,101.197,334.971,325.663,347.320,19.305,26.649,19.305 +814,25.486,292.235,450.120,270.062,628.204,291.385,456.307,97.824,19.983,97.824,333.908,325.596,346.399,19.073,26.485,19.073 +815,25.517,286.525,449.666,276.260,628.426,286.100,456.010,93.837,14.550,93.837,332.661,325.321,345.377,18.635,27.486,18.635 +816,25.548,281.000,449.000,282.522,628.370,281.000,456.185,90.000,9.533,90.000,330.000,325.029,344.370,18.000,27.403,18.000 +817,25.578,276.684,449.191,288.466,627.882,277.101,456.420,86.698,5.057,86.698,329.183,325.004,343.664,18.892,27.098,18.892 +818,25.608,276.684,449.191,288.466,627.882,277.101,456.420,86.698,5.057,86.698,329.183,325.004,343.664,18.892,27.098,18.892 +819,25.636,271.893,449.884,294.988,627.101,272.775,457.016,82.948,0.428,82.948,328.680,324.088,343.051,19.705,25.917,19.705 +820,25.666,266.633,450.664,300.548,626.195,268.035,458.048,79.254,176.082,79.254,327.490,324.500,342.521,19.585,27.333,19.585 +821,25.697,262.236,451.828,306.524,624.660,264.093,458.985,75.455,171.552,75.455,327.256,324.716,342.043,21.012,26.531,21.012 +822,25.729,257.059,453.316,312.477,622.894,259.459,460.541,71.623,167.471,71.623,326.348,325.070,341.575,21.100,27.333,21.100 +823,25.760,252.132,455.034,318.483,620.853,255.104,462.246,67.604,162.565,67.604,325.978,325.421,341.581,21.717,26.595,21.717 +824,25.793,247.163,457.421,324.390,617.949,250.580,464.283,63.527,158.537,63.527,325.581,325.331,340.913,22.673,26.933,22.673 +825,25.825,242.130,459.933,330.629,614.767,246.068,466.540,59.203,154.195,59.203,325.855,325.220,341.240,23.108,26.761,23.108 +826,25.856,237.266,462.647,336.538,610.692,241.761,469.037,54.871,150.255,54.871,325.154,325.715,340.780,24.859,26.792,24.859 +827,25.886,231.749,466.375,342.642,606.176,236.844,472.484,50.170,145.713,50.170,324.959,325.421,340.867,24.362,26.702,24.362 +828,25.917,226.548,470.498,348.522,600.947,232.133,476.140,45.288,141.981,45.288,325.279,325.751,341.157,24.738,26.628,24.738 +829,25.946,221.600,475.607,354.317,594.796,227.472,480.570,40.203,138.106,40.203,325.850,325.273,341.226,25.312,26.787,25.312 +830,25.977,216.794,480.922,359.413,587.883,222.882,485.157,34.824,134.384,34.824,326.649,324.688,341.483,26.019,26.488,26.019 +831,26.008,216.794,480.922,359.413,587.883,222.882,485.157,34.824,134.384,34.824,326.649,324.688,341.483,26.019,26.488,26.019 +832,26.037,211.925,487.344,364.636,579.765,218.360,490.941,29.202,130.400,29.202,327.302,324.853,342.044,25.951,26.459,25.951 +833,26.069,207.596,494.953,368.980,571.360,214.232,497.807,23.277,126.870,23.277,327.991,324.600,342.438,25.669,26.800,25.669 +834,26.100,203.539,503.072,372.232,561.962,210.203,505.092,16.858,123.232,16.858,329.187,324.807,343.116,26.159,26.305,26.159 +835,26.131,200.322,512.254,375.012,551.415,207.061,513.499,10.467,119.396,10.467,330.385,323.736,344.090,24.853,26.371,24.853 +836,26.162,198.003,521.949,377.029,539.504,204.786,522.368,3.540,116.095,3.540,332.354,321.177,345.945,25.107,26.337,25.107 +837,26.195,197.034,535.532,377.045,527.519,203.689,535.102,176.301,112.834,176.301,333.631,320.293,346.968,19.494,26.582,19.494 +838,26.227,197.416,547.095,375.437,514.995,203.597,545.867,168.768,108.988,168.768,336.521,319.050,349.125,19.826,26.304,19.826 +839,26.260,199.265,558.698,371.756,502.212,205.036,556.688,160.801,105.680,160.801,338.502,317.315,350.724,19.672,25.387,19.672 +840,26.292,202.779,571.000,365.000,489.279,207.827,568.380,152.569,102.475,152.569,340.507,315.529,351.883,19.602,21.792,19.602 +841,26.322,208.888,582.420,357.309,477.485,212.814,579.581,144.130,99.162,144.130,344.137,313.847,353.827,19.448,20.955,19.448 +842,26.353,215.590,594.643,349.590,466.509,220.427,589.889,135.495,95.957,135.495,343.641,312.330,357.207,19.537,23.542,19.537 +843,26.383,223.804,607.354,338.308,456.966,229.287,599.968,126.585,92.839,126.585,341.213,310.313,359.610,19.495,22.765,19.495 +844,26.414,237.049,615.068,325.500,449.000,240.433,608.574,117.525,90.000,117.525,347.004,308.000,361.649,19.735,21.000,19.735 +845,26.443,237.049,615.068,325.500,449.000,240.433,608.574,117.525,90.000,117.525,347.004,308.000,361.649,19.735,21.000,19.735 +846,26.472,250.729,622.913,310.731,443.103,253.209,615.499,108.500,86.682,108.500,347.843,306.934,363.479,19.918,19.909,19.918 +847,26.503,263.073,632.299,295.666,439.813,264.797,620.329,98.194,83.581,98.194,341.961,305.895,366.147,25.885,19.427,25.885 +848,26.536,281.500,642.000,279.778,439.123,281.500,622.561,90.000,80.595,90.000,328.000,304.961,366.877,21.000,18.212,21.000 +849,26.568,307.100,690.383,264.037,440.439,293.850,622.435,78.966,77.537,78.966,230.219,303.484,368.674,26.884,18.011,26.884 +850,26.599,320.871,635.224,248.939,445.240,314.837,617.485,71.217,74.539,71.217,331.105,303.724,368.580,21.833,18.374,21.833 +851,26.630,332.723,619.469,235.575,452.297,328.287,611.331,61.406,71.274,61.406,349.482,303.896,368.019,22.260,20.129,22.260 +852,26.662,346.068,607.048,222.966,460.914,341.664,601.523,51.444,68.199,51.444,353.747,303.983,367.877,24.242,19.684,24.242 +853,26.694,357.348,594.722,212.246,471.652,352.451,590.301,42.079,64.960,42.079,353.959,303.931,367.154,25.250,20.184,25.250 +854,26.728,365.603,580.564,203.235,483.483,360.850,577.501,32.803,61.802,32.803,355.525,304.364,366.833,26.621,19.527,26.621 +855,26.760,371.335,566.748,196.875,495.771,366.371,564.540,23.980,58.620,23.980,354.764,305.430,365.630,25.809,19.969,25.809 +856,26.794,373.339,552.663,193.197,508.636,368.453,551.311,15.468,55.349,15.468,350.439,306.489,360.578,25.149,21.255,25.149 +857,26.827,370.643,538.437,191.054,521.245,366.140,537.865,7.240,52.217,7.240,342.489,307.767,351.568,25.670,21.400,25.670 +858,26.860,369.029,526.431,189.819,533.230,364.413,526.476,179.438,48.888,179.438,340.072,307.342,349.303,24.469,21.233,24.469 +859,26.893,369.600,516.712,190.726,545.299,365.175,517.342,171.895,45.269,171.895,344.358,308.348,353.296,21.191,21.937,21.191 +860,26.925,369.260,505.948,193.192,556.562,365.467,506.989,164.650,41.955,164.650,350.637,310.102,358.504,20.345,22.152,20.345 +861,26.955,364.532,496.308,196.523,566.802,360.646,497.888,157.875,38.273,157.875,347.597,311.722,355.986,19.846,21.773,19.846 +862,26.985,359.054,487.836,201.090,576.415,355.566,489.746,151.285,34.531,151.285,346.286,312.931,354.238,19.836,21.472,19.836 +863,27.015,353.265,480.032,205.004,586.334,349.027,482.986,145.119,31.065,145.119,344.169,314.190,354.501,19.515,25.522,19.515 +864,27.046,346.992,473.650,210.637,593.756,343.120,476.988,139.231,27.096,139.231,342.949,315.769,353.173,19.274,25.279,19.274 +865,27.079,340.543,467.970,216.997,600.350,336.982,471.707,133.616,23.385,133.616,341.484,316.710,351.807,18.776,25.402,18.776 +866,27.115,333.983,463.454,223.341,606.513,330.625,467.720,128.211,19.069,128.211,339.974,317.259,350.832,18.858,25.927,18.858 +867,27.147,327.438,459.257,230.061,610.829,324.371,463.987,122.957,14.494,122.957,337.760,318.253,349.035,19.234,26.668,19.234 +868,27.177,327.438,459.257,230.061,610.829,324.371,463.987,122.957,14.494,122.957,337.760,318.253,349.035,19.234,26.668,19.234 +869,27.206,320.950,455.798,236.657,615.167,318.092,461.194,117.908,10.670,117.908,336.153,319.808,348.365,19.554,26.462,19.554 +870,27.238,314.455,453.123,244.120,618.851,311.960,458.955,113.164,6.474,113.164,334.696,319.150,347.383,19.156,25.975,19.156 +871,27.269,307.750,451.250,251.445,621.473,305.751,457.246,108.435,2.148,108.435,333.304,319.675,345.945,19.290,25.669,19.290 +872,27.299,301.378,449.714,258.017,623.861,299.757,456.244,103.938,177.368,103.938,332.016,320.719,345.472,19.340,25.973,19.340 +873,27.330,294.961,448.914,264.958,625.296,293.858,455.459,99.562,172.648,99.562,331.282,321.624,344.556,19.008,26.426,19.008 +874,27.361,288.636,448.289,271.831,626.670,287.990,455.296,95.270,168.503,95.270,330.196,322.217,344.268,18.673,25.395,18.673 +875,27.392,282.492,448.523,278.802,627.313,282.384,455.626,90.872,163.887,90.872,329.236,322.800,343.444,18.653,25.854,18.653 +876,27.423,276.642,448.818,285.644,627.264,277.060,456.031,86.682,159.044,86.682,328.434,323.651,342.885,18.896,25.910,18.896 +877,27.454,271.295,449.633,292.600,626.700,272.227,456.728,82.515,153.435,82.515,328.042,324.230,342.355,19.801,25.044,19.801 +878,27.484,265.198,450.829,299.237,625.880,266.703,458.003,78.152,149.216,78.152,327.302,324.978,341.961,19.827,25.371,19.827 +879,27.515,260.258,452.761,306.244,624.263,262.185,459.386,73.780,144.137,73.780,327.444,325.624,341.243,21.788,25.494,21.788 +880,27.545,254.047,454.460,313.326,622.059,256.617,461.215,69.167,139.226,69.167,326.538,326.052,340.992,21.562,25.706,21.562 +881,27.576,254.047,454.460,313.326,622.059,256.617,461.215,69.167,139.226,69.167,326.538,326.052,340.992,21.562,25.706,21.562 +882,27.605,248.562,457.059,320.410,619.440,251.661,463.547,64.463,133.479,64.463,326.223,326.981,340.602,22.157,24.021,22.157 +883,27.635,242.784,459.907,327.661,616.341,246.489,466.237,59.662,128.157,59.662,326.430,327.389,341.098,23.108,24.376,23.108 +884,27.665,237.105,463.384,334.841,612.364,241.429,469.488,54.689,122.775,54.689,326.206,327.637,341.167,23.869,24.752,23.869 +885,27.696,231.745,467.302,341.493,607.478,236.545,472.922,49.500,117.408,49.500,326.169,327.877,340.951,25.341,23.871,25.341 +886,27.729,225.891,472.417,348.502,602.204,231.167,477.512,44.000,112.135,44.000,327.378,329.416,342.045,24.976,24.570,24.976 +887,27.762,220.490,477.830,354.845,594.657,225.993,482.188,38.375,106.557,38.375,327.634,328.545,341.673,25.214,23.653,25.214 +888,27.795,215.275,484.336,361.049,587.010,221.157,488.066,32.385,101.449,32.385,328.329,328.297,342.258,25.495,23.845,25.495 +889,27.827,210.857,491.690,366.608,578.167,216.749,494.595,26.241,95.947,26.241,329.594,327.975,342.732,25.493,23.664,25.493 +890,27.860,206.452,499.643,372.500,568.500,213.150,502.038,19.679,90.000,19.679,330.620,327.000,344.847,26.002,25.000,26.002 +891,27.893,202.136,509.284,375.373,557.373,208.859,510.808,12.771,84.726,12.771,331.589,326.933,345.376,24.863,23.960,24.863 +892,27.927,199.190,519.035,377.792,545.444,206.089,519.718,5.656,79.061,5.656,332.937,325.984,346.803,25.536,24.455,25.536 +893,27.958,197.874,532.627,379.034,532.696,204.808,532.402,178.140,73.589,178.140,334.376,325.281,348.250,19.198,25.388,19.198 +894,27.989,197.943,544.247,377.860,519.355,204.161,543.183,170.293,68.131,170.293,337.843,323.299,350.459,19.636,25.044,19.636 +895,28.019,199.549,556.600,375.097,505.950,205.490,554.688,162.157,63.004,162.157,340.282,322.018,352.765,19.602,24.899,19.602 +896,28.049,203.222,568.917,370.071,492.269,208.823,566.166,153.838,57.894,153.838,342.141,320.655,354.621,19.416,24.349,19.416 +897,28.080,208.845,581.068,362.883,479.474,213.652,577.690,144.910,52.512,144.910,345.388,318.633,357.138,19.512,24.043,19.512 +898,28.110,208.845,581.068,362.883,479.474,213.652,577.690,144.910,52.512,144.910,345.388,318.633,357.138,19.512,24.043,19.512 +899,28.142,216.432,592.894,353.027,467.410,220.655,588.816,135.999,46.922,135.999,347.371,316.444,359.112,19.512,24.692,19.512 +900,28.174,226.520,603.262,341.652,456.387,229.891,598.748,126.754,41.987,126.754,350.608,315.603,361.875,19.564,24.231,19.564 +901,28.206,238.552,612.305,328.311,447.251,241.130,607.334,117.415,36.968,117.415,353.293,313.599,364.493,19.894,24.029,19.894 +902,28.236,252.459,619.660,313.578,440.671,254.194,614.337,108.060,32.167,108.060,355.842,311.853,367.039,19.924,23.840,19.924 +903,28.267,265.408,623.881,297.794,436.399,266.101,618.595,97.461,27.242,97.461,358.876,310.387,369.538,26.559,24.120,26.559 +904,28.297,285.522,625.948,280.960,436.565,285.469,621.283,89.343,22.068,89.343,360.183,308.629,369.514,25.124,20.714,25.124 +905,28.328,301.846,624.657,264.828,437.437,300.933,619.667,79.636,17.140,79.636,361.357,306.948,371.503,26.655,22.479,26.655 +906,28.359,316.846,619.845,248.242,442.883,315.329,615.862,69.146,12.222,69.146,362.537,306.326,371.060,21.894,20.513,21.894 +907,28.390,332.487,612.242,233.356,450.131,330.189,608.371,59.300,7.275,59.300,361.999,305.879,371.002,23.485,19.712,23.485 +908,28.420,345.827,601.016,220.105,459.498,343.256,598.009,49.457,2.396,49.457,362.702,306.569,370.615,25.674,19.464,25.674 +909,28.450,356.969,589.159,208.962,470.214,353.469,586.231,39.918,177.255,39.918,361.431,306.798,370.557,26.276,20.128,26.276 +910,28.480,364.526,575.338,199.690,482.756,361.056,573.288,30.572,172.126,30.572,361.903,308.321,369.963,26.366,19.664,26.366 +911,28.511,370.288,562.263,192.539,495.664,365.463,560.339,21.740,166.667,21.740,358.772,309.721,369.160,25.728,19.978,25.728 +912,28.543,370.288,562.263,192.539,495.664,365.463,560.339,21.740,166.667,21.740,358.772,309.721,369.160,25.728,19.978,25.728 +913,28.572,370.587,547.998,188.116,508.916,365.366,546.770,13.231,161.279,13.231,351.690,310.846,362.417,25.982,22.036,25.982 +914,28.603,367.508,535.514,185.432,522.185,362.904,535.092,5.242,155.225,5.242,346.572,312.827,355.818,24.704,22.070,24.704 +915,28.638,366.949,525.793,184.616,535.190,361.931,526.006,177.571,148.671,177.571,345.047,314.382,355.091,20.993,21.912,20.993 +916,28.682,366.594,505.194,187.232,558.724,361.289,506.745,163.696,133.995,163.696,352.246,317.703,363.300,20.114,20.441,20.114 +917,28.715,362.061,496.544,190.697,569.547,357.254,498.545,157.397,126.193,157.397,351.690,320.037,362.104,19.621,19.408,19.621 +918,28.745,357.176,489.071,194.582,579.013,352.597,491.567,151.408,117.956,151.408,350.756,321.702,361.187,19.879,19.862,19.879 +919,28.781,352.570,482.379,199.500,587.527,347.920,485.515,146.008,109.366,146.008,348.962,323.276,360.179,19.378,19.602,19.378 +920,28.812,352.570,482.379,199.500,587.527,347.920,485.515,146.008,109.366,146.008,348.962,323.276,360.179,19.378,19.602,19.378 +921,28.842,347.320,476.592,204.990,595.311,342.897,480.192,140.864,100.585,140.864,347.848,324.593,359.254,19.589,19.625,19.589 +922,28.874,342.262,471.637,211.276,601.994,337.972,475.767,136.081,91.507,136.081,345.727,324.388,357.636,19.422,18.862,19.422 +923,28.905,337.027,467.692,217.427,607.510,333.081,472.137,131.599,82.528,131.599,344.147,325.589,356.034,19.009,19.343,19.009 +924,28.935,332.115,464.033,224.072,611.977,328.547,468.705,127.373,72.474,127.373,342.790,325.724,354.549,19.105,20.527,19.105 +925,28.966,327.151,460.784,230.959,615.281,324.036,465.520,123.331,63.778,123.331,341.203,325.161,352.541,19.254,21.236,19.254 +926,28.997,322.298,458.182,236.411,617.970,319.448,463.203,119.583,53.858,119.583,339.624,324.511,351.171,19.064,21.877,19.064 +927,29.028,317.535,456.044,241.030,620.948,314.816,461.634,115.937,43.831,115.937,338.648,323.903,351.080,19.052,25.508,19.052 +928,29.059,312.920,454.139,246.346,622.231,310.595,459.755,112.486,33.690,112.486,337.234,323.668,349.391,19.377,26.071,19.377 +929,29.090,309.015,452.623,251.055,623.382,306.946,458.486,109.440,24.905,109.440,335.760,323.511,348.195,19.415,26.757,19.415 +930,29.121,304.239,450.712,255.674,623.817,302.431,457.005,106.030,13.917,106.030,333.382,322.804,346.476,19.287,27.341,19.287 +931,29.152,299.956,449.566,259.980,624.327,298.463,456.042,102.981,3.495,102.981,331.966,321.477,345.257,19.245,26.272,19.245 +932,29.182,295.611,448.872,264.241,625.230,294.442,455.495,100.008,173.480,100.008,331.351,321.592,344.801,19.001,26.854,19.001 +933,29.212,291.421,448.239,267.834,626.376,290.515,455.513,97.102,162.582,97.102,330.051,322.670,344.712,18.828,25.500,18.828 +934,29.242,291.421,448.239,267.834,626.376,290.515,455.513,97.102,162.582,97.102,330.051,322.670,344.712,18.828,25.500,18.828 +935,29.271,287.447,448.188,271.891,627.247,286.878,455.580,94.399,152.354,94.399,329.795,323.539,344.622,18.561,24.466,18.561 +936,29.301,283.376,448.036,275.286,627.736,283.173,455.843,91.488,140.906,91.488,328.461,325.289,344.081,18.695,22.750,18.695 +937,29.332,279.297,447.882,278.820,628.400,279.491,456.598,88.727,131.406,88.727,326.053,327.064,343.489,18.507,21.437,18.507 +938,29.363,275.861,447.342,283.257,629.275,276.509,457.011,86.165,120.256,86.165,325.275,329.172,344.658,19.030,20.299,19.030 +939,29.394,272.004,446.474,288.663,630.201,273.366,458.130,83.339,109.634,83.339,321.900,330.887,345.370,19.618,20.650,19.618 +940,29.427,267.302,444.862,293.706,631.189,269.762,459.522,80.473,98.908,80.473,316.793,333.490,346.524,19.248,23.342,19.248 +941,29.459,262.460,441.846,300.978,631.478,266.685,460.975,77.546,89.635,77.546,308.594,335.025,347.773,19.847,20.025,19.847 +942,29.490,251.800,424.592,305.960,630.558,262.174,462.313,74.624,79.599,74.624,269.423,335.771,347.665,17.814,21.197,17.814 +943,29.521,250.003,435.259,312.572,628.397,260.022,463.073,70.192,69.022,70.192,287.573,334.997,346.700,20.538,19.168,20.538 +944,29.551,251.080,453.311,319.044,625.974,255.814,464.519,67.104,59.237,67.104,322.335,335.124,346.669,21.085,19.048,21.085 +945,29.581,249.291,457.029,325.504,622.697,253.194,465.410,65.033,49.086,65.033,327.730,334.317,346.221,22.213,20.001,22.213 +946,29.611,245.651,459.958,331.134,619.101,249.465,467.027,61.649,39.043,61.649,329.170,333.585,345.233,23.073,20.585,23.073 +947,29.641,245.651,459.958,331.134,619.101,249.465,467.027,61.649,39.043,61.649,329.170,333.585,345.233,23.073,20.585,23.073 +948,29.669,241.910,462.804,335.645,615.744,245.675,468.840,58.042,29.489,58.042,330.290,333.047,344.519,23.593,23.184,23.593 +949,29.700,237.798,464.925,340.989,611.005,241.867,470.574,54.233,18.741,54.233,329.843,332.068,343.765,25.009,24.638,25.009 +950,29.732,232.683,467.677,346.245,605.853,237.400,473.368,50.347,7.820,50.347,328.140,330.141,342.924,25.047,26.387,25.047 +951,29.763,227.953,470.079,351.014,600.926,233.625,475.950,45.982,178.122,45.982,326.563,328.119,342.889,25.420,26.265,25.420 +952,29.795,223.318,474.511,355.659,595.326,229.268,479.778,41.513,169.131,41.513,326.559,327.121,342.452,24.933,26.154,24.933 +953,29.828,218.413,478.778,359.758,589.369,224.989,483.694,36.777,159.044,36.777,326.011,326.095,342.430,26.092,26.188,26.092 +954,29.861,213.909,484.533,363.824,582.706,220.664,488.719,31.785,149.036,31.785,326.500,325.161,342.393,25.610,26.754,25.610 +955,29.894,209.800,490.400,367.247,575.133,216.525,493.763,26.565,138.991,26.565,327.360,324.546,342.399,25.938,26.378,25.938 +956,29.927,205.740,498.527,370.557,567.239,212.379,501.017,20.556,128.928,20.556,328.535,324.192,342.717,25.749,26.300,25.749 +957,29.958,202.428,506.366,373.418,558.736,209.087,508.113,14.697,119.427,14.697,329.827,324.116,343.595,25.292,26.330,25.292 +958,29.989,199.886,514.464,375.760,548.632,206.615,515.488,8.657,109.747,8.657,330.800,323.143,344.414,25.464,25.991,25.464 +959,30.019,197.614,524.241,377.102,538.188,204.247,524.472,1.996,99.689,1.996,333.181,322.552,346.456,24.835,26.038,24.835 +960,30.049,197.386,537.148,377.074,527.477,203.566,536.629,175.197,89.497,175.197,334.929,321.067,347.331,19.519,25.894,19.519 +961,30.080,198.028,548.133,375.597,514.983,203.752,546.918,168.016,80.074,168.016,337.758,321.095,349.461,19.670,25.562,19.670 +962,30.111,198.028,548.133,375.597,514.983,203.752,546.918,168.016,80.074,168.016,337.758,321.095,349.461,19.670,25.562,19.670 +963,30.142,200.096,559.374,373.019,502.993,205.580,557.406,160.265,70.821,160.265,340.303,320.061,351.956,19.374,25.419,19.374 +964,30.174,203.855,570.763,368.894,490.591,209.213,567.970,152.464,61.876,152.464,342.645,319.411,354.730,19.318,24.284,19.318 +965,30.204,209.308,582.036,362.302,478.386,214.222,578.507,144.324,52.568,144.324,345.258,318.632,357.359,19.496,24.479,19.496 +966,30.235,216.565,593.034,353.253,466.688,221.023,588.720,135.939,42.833,135.939,347.363,317.146,359.770,19.286,24.956,19.286 +967,30.266,226.037,602.768,342.808,456.038,229.750,597.882,127.235,33.690,127.235,350.407,316.456,362.680,19.649,23.575,19.649 +968,30.296,237.095,611.510,329.860,447.910,239.871,606.382,118.434,24.416,118.434,352.742,314.656,364.405,19.741,21.542,19.741 +969,30.327,249.695,618.599,315.870,441.615,251.607,613.191,109.468,14.977,109.468,354.898,313.381,366.370,20.084,20.674,20.084 +970,30.360,266.259,624.649,300.868,438.364,267.244,619.645,101.143,5.541,101.143,358.521,311.834,368.722,26.090,18.072,26.090 +971,30.394,281.509,626.238,284.967,436.526,281.688,620.956,91.944,176.009,91.944,358.303,311.197,368.872,25.815,17.840,25.815 +972,30.427,291.922,626.587,269.115,437.480,291.171,621.599,81.439,166.487,81.439,360.614,310.931,370.702,27.146,17.675,27.146 +973,30.460,309.499,623.752,253.517,440.707,307.969,618.641,73.339,156.801,73.339,361.481,310.540,372.151,22.510,18.252,22.510 +974,30.493,325.160,616.736,238.889,446.780,322.970,612.191,64.265,147.144,64.265,360.935,310.097,371.025,23.266,18.026,23.266 +975,30.525,338.484,608.783,225.766,454.701,335.462,604.413,55.338,137.454,55.338,360.433,310.034,371.058,24.134,18.459,24.134 +976,30.556,350.028,598.661,214.725,464.559,346.466,594.897,46.579,127.626,46.579,360.073,309.610,370.439,24.982,18.101,24.982 +977,30.586,359.389,587.152,205.640,475.866,355.476,584.102,37.940,117.824,37.940,359.509,309.633,369.433,25.675,18.253,25.675 +978,30.617,366.645,574.575,198.335,487.932,362.280,572.099,29.570,107.953,29.570,358.217,309.611,368.254,26.247,18.537,26.247 +979,30.646,371.166,562.275,193.719,500.244,366.851,560.573,21.525,98.089,21.525,357.107,309.710,366.385,25.802,19.454,25.802 +980,30.677,371.166,562.275,193.719,500.244,366.851,560.573,21.525,98.089,21.525,357.107,309.710,366.385,25.802,19.454,25.802 +981,30.706,371.821,549.606,190.547,512.398,367.055,548.433,13.834,88.091,13.834,350.194,309.262,360.009,25.179,20.056,25.179 +982,30.737,369.895,537.110,189.121,523.828,365.177,536.575,6.472,77.856,6.472,343.244,309.683,352.741,25.478,21.644,25.478 +983,30.769,368.994,526.425,189.010,534.824,364.000,526.473,179.447,68.663,179.447,340.139,309.739,350.127,24.430,22.268,24.430 +984,30.799,369.485,518.296,190.692,545.381,365.059,518.862,172.721,58.179,172.721,343.722,309.825,352.645,20.754,21.607,20.754 +985,30.830,369.967,508.492,192.520,554.716,365.910,509.476,166.379,48.542,166.379,349.984,310.519,358.334,20.342,22.329,20.342 +986,30.863,365.973,499.724,194.766,563.147,362.203,501.070,160.346,38.459,160.346,349.117,310.297,357.123,19.911,22.491,19.911 +987,30.894,361.839,491.822,197.469,570.811,357.876,493.703,154.612,28.644,154.612,347.176,312.054,355.950,19.630,22.021,19.630 +988,30.927,357.706,484.517,201.036,578.583,353.179,487.225,149.115,19.552,149.115,344.379,312.187,354.929,19.578,23.920,19.578 +989,30.957,352.917,478.257,204.942,585.025,348.315,481.614,143.889,10.125,143.889,342.155,312.943,353.547,19.985,23.486,19.985 +990,30.987,349.030,471.837,209.017,591.179,343.245,476.862,139.021,0.526,139.021,337.280,314.097,352.606,19.721,21.825,19.721 +991,31.017,344.270,466.217,213.219,596.116,338.099,472.509,134.441,171.529,134.441,333.752,315.562,351.379,19.343,21.676,19.343 +992,31.048,338.095,462.504,217.624,601.907,332.665,469.002,129.881,163.106,129.881,334.568,317.531,351.505,19.781,20.455,19.781 +993,31.080,333.238,457.817,222.578,607.168,327.276,466.148,125.586,155.186,125.586,330.730,319.394,351.220,19.561,19.686,19.561 +994,31.110,333.238,457.817,222.578,607.168,327.276,466.148,125.586,155.186,125.586,330.730,319.394,351.220,19.561,19.686,19.561 +995,31.139,327.888,454.054,227.582,611.902,321.902,463.928,121.224,148.241,121.224,327.775,321.198,350.868,19.646,19.637,19.646 +996,31.171,322.251,450.895,233.254,616.054,316.574,462.000,117.077,141.736,117.077,325.247,322.957,350.190,19.533,19.883,19.533 +997,31.201,316.624,447.689,239.369,619.441,311.362,460.084,113.001,136.081,113.001,322.708,323.904,349.638,19.841,19.715,19.841 +998,31.232,311.017,445.881,245.485,622.918,306.363,459.176,109.290,130.764,109.290,321.148,325.712,349.320,19.396,20.006,19.396 +999,31.262,304.640,444.477,251.733,625.299,300.989,458.085,105.018,126.995,105.018,320.354,326.794,348.533,19.764,19.519,19.764 +1000,31.292,297.821,443.942,258.370,627.406,295.273,457.315,100.784,123.486,100.784,320.757,327.564,347.984,19.273,19.439,19.273 +1001,31.323,291.177,443.636,265.393,628.841,289.651,456.857,96.582,120.784,96.582,320.642,328.597,347.260,18.989,19.339,18.989 +1002,31.353,284.865,445.103,272.334,629.633,284.355,456.846,92.490,118.869,92.490,322.782,329.279,346.291,18.678,19.609,18.678 +1003,31.383,278.629,446.321,279.870,629.882,278.977,457.281,88.182,117.329,88.182,323.155,329.221,345.085,18.626,20.421,18.626 +1004,31.414,272.687,447.929,287.400,629.700,273.778,457.846,83.723,116.565,83.723,324.672,329.149,344.625,19.532,20.125,19.532 +1005,31.446,272.687,447.929,287.400,629.700,273.778,457.846,83.723,116.565,83.723,324.672,329.149,344.625,19.532,20.125,19.532 +1006,31.476,266.697,449.883,294.982,628.483,268.395,458.681,79.077,116.196,79.077,325.606,329.194,343.527,20.327,21.305,20.327 +1007,31.507,260.350,451.424,302.724,626.372,262.643,459.629,74.381,116.219,74.381,325.715,329.192,342.754,20.411,20.886,20.411 +1008,31.538,254.538,454.428,311.079,624.040,257.215,461.584,69.489,116.917,69.489,326.781,329.176,342.062,21.407,20.481,21.407 +1009,31.569,248.786,456.689,319.160,620.824,252.143,463.708,64.440,117.350,64.440,325.749,328.794,341.309,23.181,21.501,23.181 +1010,31.599,242.296,459.950,327.489,616.731,246.196,466.520,59.309,117.824,59.309,326.047,328.451,341.327,23.107,22.871,23.107 +1011,31.629,236.595,463.568,335.376,611.978,241.000,469.625,53.973,118.610,53.973,326.288,328.094,341.269,24.703,23.783,24.703 +1012,31.662,230.524,468.051,343.108,606.062,235.462,473.628,48.478,119.745,48.478,326.128,327.700,341.025,25.487,24.311,25.487 +1013,31.694,224.433,473.610,350.360,599.215,229.798,478.559,42.689,120.763,42.689,326.253,326.900,340.851,25.239,25.554,25.239 +1014,31.727,218.725,479.309,357.028,591.517,224.640,483.700,36.589,121.608,36.589,326.395,326.316,341.129,26.048,25.877,26.048 +1015,31.758,212.800,486.060,363.055,582.674,219.309,489.859,30.270,122.574,30.270,326.795,325.796,341.868,26.115,26.334,26.115 +1016,31.789,207.779,494.364,368.308,572.538,214.355,497.246,23.663,123.690,23.663,328.095,325.054,342.455,25.563,26.626,25.563 +1017,31.820,203.330,503.718,372.485,561.449,210.035,505.719,16.621,124.756,16.621,329.213,324.259,343.206,25.471,26.391,25.471 +1018,31.850,199.875,513.267,375.589,549.288,206.755,514.422,9.530,125.882,9.530,330.600,323.142,344.553,25.764,26.358,25.764 +1019,31.881,197.043,524.260,376.833,536.374,204.095,524.503,1.975,127.025,1.975,331.975,322.002,346.088,24.847,26.204,24.847 +1020,31.912,195.602,538.957,376.415,522.732,203.311,538.137,173.928,128.660,173.928,332.020,320.781,347.525,19.930,25.300,19.930 +1021,31.943,195.602,538.957,376.415,522.732,203.311,538.137,173.928,128.660,173.928,332.020,320.781,347.525,19.930,25.300,19.930 +1022,31.974,195.487,551.930,373.894,508.595,203.942,549.797,165.847,130.101,165.847,332.293,319.572,349.734,20.135,24.437,20.135 +1023,32.005,196.242,565.966,369.311,494.533,206.419,561.703,157.270,131.348,157.270,330.322,318.152,352.389,19.743,22.491,19.743 +1024,32.037,195.950,582.872,362.121,480.647,210.976,573.685,148.559,132.944,148.559,319.745,316.609,354.968,19.647,20.801,19.647 +1025,32.068,168.074,626.585,352.836,467.865,216.764,584.110,138.900,134.284,138.900,228.684,315.504,357.911,19.288,19.073,19.288 +1026,32.099,214.602,609.210,340.984,456.455,226.195,595.476,130.167,135.815,130.167,324.610,314.822,360.554,19.696,20.722,19.696 +1027,32.131,232.966,612.000,328.546,447.514,237.220,604.818,120.635,136.950,120.635,347.078,314.351,363.772,19.790,21.433,19.790 +1028,32.161,247.083,619.186,314.611,441.056,249.728,612.306,111.038,138.790,111.038,351.512,312.975,366.254,19.672,19.551,19.672 +1029,32.193,260.689,624.480,298.942,436.823,261.923,617.810,100.485,140.477,100.485,355.838,312.271,369.403,25.674,19.593,25.674 +1030,32.225,276.645,626.497,283.025,435.388,276.705,620.211,90.553,142.177,90.553,357.176,311.620,369.749,26.115,19.062,26.115 +1031,32.255,293.173,626.894,266.888,437.346,292.251,621.046,81.038,143.945,81.038,358.976,310.997,370.817,27.970,18.510,27.970 +1032,32.285,311.913,622.739,251.055,441.345,310.297,617.615,72.499,145.797,72.499,361.105,310.362,371.851,22.124,18.764,22.124 +1033,32.315,327.514,615.456,236.309,447.989,325.183,610.961,62.592,147.724,62.592,361.053,310.250,371.179,23.180,18.645,23.180 +1034,32.346,341.512,606.232,223.005,456.718,338.442,602.149,53.060,149.673,53.060,361.009,310.096,371.225,24.512,18.590,24.512 +1035,32.377,341.512,606.232,223.005,456.718,338.442,602.149,53.060,149.673,53.060,361.009,310.096,371.225,24.512,18.590,24.512 +1036,32.406,353.027,594.285,211.632,466.957,349.638,591.047,43.692,151.713,43.692,361.641,309.994,371.014,26.134,18.475,26.134 +1037,32.437,361.891,581.597,202.012,478.546,357.990,578.922,34.439,153.691,34.439,361.349,310.810,370.809,25.755,18.445,25.755 +1038,32.468,367.872,567.986,194.493,490.685,363.606,565.948,25.527,155.556,25.527,360.622,311.014,370.077,25.842,18.869,25.842 +1039,32.499,371.185,554.624,189.466,503.414,366.538,553.197,17.066,158.199,17.066,358.049,311.411,367.772,25.608,21.169,25.608 +1040,32.530,368.764,540.682,186.292,516.048,363.908,539.925,8.860,160.067,8.860,348.520,311.843,358.349,25.873,22.004,25.873 +1041,32.561,367.741,529.157,185.007,527.567,362.157,529.038,1.215,161.301,1.215,343.114,312.115,354.283,24.967,23.054,24.967 +1042,32.594,368.858,520.142,185.458,538.847,362.633,520.792,174.036,161.713,174.036,343.667,312.767,356.184,21.154,22.287,21.154 +1043,32.626,376.729,508.304,187.579,549.750,364.146,511.155,167.234,161.407,167.234,335.657,314.348,361.461,20.588,19.935,20.588 +1044,32.657,434.810,476.395,189.518,560.541,360.211,501.627,161.313,161.642,161.313,203.638,313.704,361.140,19.210,19.919,19.210 +1045,32.687,391.600,477.800,193.324,569.951,356.262,494.110,155.225,161.748,155.225,281.607,314.973,359.447,18.718,20.176,18.718 +1046,32.717,372.146,475.424,197.576,578.086,351.792,487.550,149.216,162.408,149.216,310.264,315.333,357.648,18.791,19.948,18.791 +1047,32.747,361.980,470.640,202.686,585.932,347.016,481.863,143.130,163.639,143.130,318.400,315.686,355.810,20.600,20.660,20.600 +1048,32.777,361.980,470.640,202.686,585.932,347.016,481.863,143.130,163.639,143.130,318.400,315.686,355.810,20.600,20.660,20.600 +1049,32.806,349.315,468.955,208.519,592.048,341.614,475.916,137.891,166.156,137.891,332.459,316.281,353.221,19.760,21.002,19.760 +1050,32.838,341.889,464.613,215.169,598.719,335.952,471.075,132.572,169.479,132.572,333.874,316.179,351.424,19.277,21.897,19.277 +1051,32.868,334.465,461.116,222.057,605.426,329.840,467.188,127.297,172.405,127.297,335.292,316.268,350.559,19.688,23.591,19.688 +1052,32.899,327.301,458.091,229.499,610.483,323.812,463.598,122.358,176.143,122.358,336.070,316.372,349.108,19.667,24.237,19.667 +1053,32.930,320.761,455.183,236.500,615.500,317.622,461.183,117.619,0.000,117.619,335.137,317.000,348.680,19.388,25.000,19.388 +1054,32.959,314.204,453.087,243.920,618.569,311.758,458.850,113.001,4.289,113.001,334.536,319.578,347.058,19.485,25.977,19.485 +1055,32.990,307.816,451.439,251.561,622.442,305.722,457.697,108.505,8.489,108.505,333.634,320.657,346.833,19.330,26.778,19.330 +1056,33.020,301.621,450.157,258.600,624.800,300.001,456.572,104.167,12.529,104.167,333.255,322.576,346.489,19.335,27.116,19.335 +1057,33.050,295.341,449.947,265.875,626.911,294.253,456.160,99.936,16.966,99.936,333.555,324.067,346.172,19.046,27.138,19.046 +1058,33.081,289.356,449.780,272.792,628.526,288.704,456.141,95.856,21.549,95.856,333.430,326.436,346.219,18.569,27.068,18.569 +1059,33.111,289.356,449.780,272.792,628.526,288.704,456.141,95.856,21.549,95.856,333.430,326.436,346.219,18.569,27.068,18.569 +1060,33.140,283.723,450.351,280.062,629.946,283.519,456.879,91.790,25.731,91.790,333.119,327.365,346.181,18.710,26.917,18.710 +1061,33.170,278.140,451.073,287.524,630.458,278.399,457.685,87.754,30.124,87.754,332.764,328.591,345.997,18.613,26.792,18.613 +1062,33.201,273.032,451.717,294.592,630.326,273.786,458.554,83.709,34.380,83.709,332.279,329.819,346.036,19.426,26.193,19.426 +1063,33.232,267.480,453.058,301.628,629.966,268.744,459.904,79.540,38.562,79.540,332.489,331.092,346.413,19.471,25.202,19.471 +1064,33.262,262.329,453.699,309.240,628.203,264.256,461.066,75.343,42.850,75.343,330.930,332.063,346.160,20.585,22.747,20.585 +1065,33.292,256.999,455.686,316.377,626.151,259.445,462.816,71.063,47.231,71.063,330.867,333.428,345.942,21.391,21.491,21.391 +1066,33.323,251.076,456.266,322.878,624.098,254.811,464.888,66.579,51.340,66.579,327.505,334.212,346.296,22.111,19.990,22.111 +1067,33.354,241.011,451.779,328.610,621.270,249.776,467.157,60.319,55.362,60.319,310.458,336.093,345.858,21.522,19.721,21.522 +1068,33.384,209.848,418.983,335.051,618.055,243.566,471.178,57.137,59.662,57.137,221.752,335.292,346.030,18.018,19.433,18.018 +1069,33.415,227.885,460.516,341.539,613.264,238.541,474.387,52.469,64.440,52.469,310.772,335.437,345.756,19.015,19.965,19.015 +1070,33.445,227.885,460.516,341.539,613.264,238.541,474.387,52.469,64.440,52.469,310.772,335.437,345.756,19.015,19.965,19.015 +1071,33.474,228.195,467.628,347.576,607.777,235.921,475.997,47.291,68.883,47.291,322.353,334.706,345.133,25.209,20.008,25.209 +1072,33.506,223.165,473.209,353.410,601.467,230.796,480.080,42.004,73.632,42.004,324.151,334.084,344.688,25.853,20.585,25.853 +1073,33.538,218.476,479.913,359.284,594.022,225.503,485.081,36.332,78.179,36.332,327.189,332.447,344.634,25.422,21.397,25.422 +1074,33.569,213.846,486.608,363.646,585.609,220.207,490.348,30.456,82.706,30.456,329.107,330.829,343.865,25.515,21.203,25.515 +1075,33.605,208.956,493.858,369.094,575.973,215.928,497.012,24.337,87.427,24.337,328.888,328.792,344.192,25.625,24.054,25.625 +1076,33.648,201.159,511.090,375.373,553.924,207.874,512.407,11.094,96.911,11.094,331.030,324.474,344.715,25.745,25.570,25.745 +1077,33.680,198.318,521.351,376.609,541.328,204.707,521.788,3.918,101.514,3.918,332.864,322.416,345.671,25.065,25.749,25.065 +1078,33.714,197.038,535.127,377.055,528.198,203.731,534.720,176.519,106.460,176.519,333.391,320.312,346.801,19.401,26.417,19.401 +1079,33.751,196.933,547.181,375.241,514.592,203.540,545.870,168.774,110.956,168.774,335.539,318.564,349.011,19.827,25.552,19.827 +1080,33.783,198.344,559.394,371.199,500.856,204.944,557.068,160.586,115.560,160.586,336.976,317.198,350.973,19.586,24.083,19.586 +1081,33.814,200.613,572.617,365.477,487.839,208.481,568.479,152.264,120.466,152.264,335.195,316.228,352.974,19.605,23.475,19.605 +1082,33.844,200.613,572.617,365.477,487.839,208.481,568.479,152.264,120.466,152.264,335.195,316.228,352.974,19.605,23.475,19.605 +1083,33.872,200.573,589.470,357.358,474.874,213.841,579.789,143.886,124.439,143.886,322.701,315.612,355.551,19.421,21.514,19.421 +1084,33.904,194.250,616.250,347.738,463.182,220.889,589.611,135.000,127.385,135.000,282.843,314.238,358.189,19.092,20.014,19.092 +1085,33.935,215.240,619.597,336.269,453.228,230.091,599.450,126.394,130.333,126.394,311.346,313.921,361.403,19.634,19.863,19.634 +1086,33.966,237.256,614.817,323.664,445.299,241.042,607.518,117.423,131.952,117.423,347.640,312.483,364.085,19.863,21.693,19.863 +1087,33.996,251.252,620.610,309.859,439.381,253.457,613.872,108.118,135.466,108.118,352.580,311.898,366.759,20.060,19.522,20.060 +1088,34.028,264.600,625.168,294.926,436.413,265.485,618.779,97.888,139.635,97.888,356.462,311.747,369.362,26.440,19.201,26.440 +1089,34.061,284.883,627.495,279.489,435.814,284.860,620.903,89.795,143.032,89.795,357.030,311.400,370.214,25.025,18.402,25.025 +1090,34.093,300.824,625.946,263.884,437.859,299.838,620.030,80.538,146.952,80.538,359.212,310.684,371.207,26.633,18.279,26.633 +1091,34.124,314.905,621.680,248.413,442.185,313.063,616.467,70.542,150.593,70.542,360.668,310.605,371.727,21.557,18.627,21.557 +1092,34.155,329.713,614.181,234.130,448.677,327.220,609.652,61.166,154.486,61.166,361.486,310.064,371.825,23.369,18.891,23.369 +1093,34.185,343.009,604.556,221.847,457.589,340.067,600.820,51.783,157.932,51.783,361.824,309.756,371.336,24.702,18.259,24.702 +1094,34.216,353.381,592.839,211.000,467.500,350.225,589.924,42.730,161.565,42.730,362.084,309.587,370.678,25.517,18.025,25.517 +1095,34.246,362.420,580.394,202.183,478.683,358.718,577.917,33.788,165.005,33.788,361.654,309.069,370.564,26.487,17.974,26.487 +1096,34.276,362.420,580.394,202.183,478.683,358.718,577.917,33.788,165.005,33.788,361.654,309.069,370.564,26.487,17.974,26.487 +1097,34.304,368.806,567.543,195.238,490.179,364.145,565.348,25.220,168.598,25.220,359.370,309.087,369.673,26.208,19.276,26.208 +1098,34.335,372.123,554.795,190.586,502.458,366.941,553.209,17.017,172.252,17.017,356.136,309.273,366.974,25.540,20.249,25.540 +1099,34.366,371.432,543.500,187.766,514.530,364.166,542.345,9.039,175.503,9.039,342.443,309.169,357.158,21.323,20.756,21.323 +1100,34.398,385.248,531.693,187.524,526.302,363.396,531.111,1.525,178.264,1.525,308.157,309.494,351.875,20.955,19.658,20.955 +1101,34.428,391.562,517.399,187.606,538.229,363.631,520.059,174.560,1.848,174.560,297.795,309.323,353.910,20.621,20.280,20.621 +1102,34.461,377.723,508.377,189.674,549.135,365.171,511.232,167.186,5.117,167.186,333.318,309.359,359.064,20.718,21.734,20.718 +1103,34.494,370.974,498.850,192.864,559.799,362.103,501.964,160.656,7.667,160.656,338.883,310.259,357.686,20.055,21.403,20.055 +1104,34.529,365.745,489.967,196.758,569.185,357.951,493.699,154.411,11.113,154.411,338.690,311.809,355.971,19.817,22.218,19.817 +1105,34.561,358.525,483.171,201.559,578.765,352.836,486.659,148.486,14.036,148.486,340.874,312.386,354.220,19.844,24.011,19.844 +1106,34.593,351.461,477.428,206.523,587.307,347.317,480.567,142.849,17.176,142.849,342.966,313.789,353.363,19.607,25.327,19.607 +1107,34.624,345.524,471.575,212.123,594.741,341.542,475.203,137.666,19.502,137.666,341.575,315.132,352.348,19.223,24.881,19.223 +1108,34.654,339.499,466.832,218.149,601.637,335.702,470.977,132.497,22.341,132.497,340.257,316.456,351.500,19.224,25.797,19.224 +1109,34.683,333.406,463.085,224.268,607.415,330.025,467.465,127.669,24.624,127.669,339.746,318.476,350.811,19.235,25.984,19.235 +1110,34.714,327.439,459.460,230.593,612.290,324.283,464.311,123.043,27.255,123.043,338.689,319.842,350.263,19.207,26.104,19.207 +1111,34.746,321.414,456.908,236.815,616.940,318.520,462.213,118.610,29.310,118.610,337.830,321.334,349.917,19.314,26.389,19.314 +1112,34.777,321.414,456.908,236.815,616.940,318.520,462.213,118.610,29.310,118.610,337.830,321.334,349.917,19.314,26.389,19.314 +1113,34.807,315.629,455.105,243.301,620.504,313.167,460.533,114.392,31.264,114.392,337.171,322.438,349.091,19.262,26.254,19.262 +1114,34.838,309.867,453.285,249.923,623.615,307.773,458.943,110.308,33.690,110.308,336.964,323.390,349.029,19.444,26.626,19.444 +1115,34.869,304.305,452.412,255.887,626.265,302.630,458.098,106.414,35.676,106.414,337.186,325.388,349.043,19.259,26.432,19.259 +1116,34.900,298.807,451.567,262.276,628.446,297.435,457.733,102.549,37.405,102.549,335.915,325.827,348.549,19.120,26.074,19.120 +1117,34.929,293.494,451.140,268.404,630.013,292.511,457.430,98.881,39.657,98.881,335.739,327.391,348.471,19.050,25.842,19.050 +1118,34.960,288.496,450.674,274.538,630.957,287.879,457.302,95.323,41.159,95.323,334.972,328.313,348.287,18.504,24.855,18.504 +1119,34.991,283.691,450.381,280.767,631.712,283.460,457.765,91.790,42.879,91.790,333.119,329.234,347.894,18.710,25.543,18.710 +1120,35.020,278.728,451.573,286.715,631.809,278.947,458.369,88.152,44.170,88.152,333.601,330.297,347.199,18.571,25.330,18.571 +1121,35.051,274.393,451.738,292.691,631.314,275.024,458.641,84.776,45.193,84.776,333.267,330.953,347.129,19.382,24.575,19.382 +1122,35.082,269.960,452.703,298.717,630.824,271.031,459.617,81.198,45.964,81.198,332.859,331.765,346.853,19.930,23.900,19.930 +1123,35.111,269.960,452.703,298.717,630.824,271.031,459.617,81.198,45.964,81.198,332.859,331.765,346.853,19.930,23.900,19.930 +1124,35.141,265.205,453.322,305.256,629.283,266.726,460.337,77.770,46.488,77.770,332.193,331.944,346.547,19.955,22.601,19.955 +1125,35.171,260.904,454.450,311.296,627.718,262.894,461.508,74.255,46.407,74.255,331.550,332.622,346.216,20.678,22.060,20.678 +1126,35.202,256.756,455.934,316.512,626.038,259.169,462.852,70.769,45.725,70.769,331.283,333.137,345.936,21.321,21.838,21.321 +1127,35.233,252.219,456.658,322.706,623.750,255.421,464.347,67.396,44.433,67.396,329.382,333.136,346.040,22.293,21.198,22.293 +1128,35.265,248.133,458.410,328.319,620.998,251.923,466.115,63.806,42.250,63.806,328.225,333.580,345.398,22.498,20.615,22.498 +1129,35.294,244.308,460.038,333.167,618.087,248.593,467.538,60.255,39.551,60.255,328.072,333.559,345.347,23.815,20.325,23.815 +1130,35.326,239.507,461.996,338.528,614.088,244.478,469.595,56.807,36.055,56.807,326.646,333.860,344.809,23.705,20.916,23.705 +1131,35.357,235.494,464.752,343.236,610.819,240.885,471.962,53.214,31.921,53.214,326.991,333.682,344.996,24.328,20.705,24.328 +1132,35.388,232.317,468.009,347.784,606.443,237.594,474.196,49.538,26.966,49.538,327.987,333.666,344.250,25.488,21.344,25.488 +1133,35.418,228.559,471.397,352.082,601.080,233.800,476.804,45.891,21.161,45.891,328.058,333.649,343.119,26.141,22.291,26.141 +1134,35.449,223.811,474.041,356.897,595.911,230.228,479.806,41.941,14.104,41.941,326.390,332.041,343.643,26.056,23.886,26.056 +1135,35.478,223.811,474.041,356.897,595.911,230.228,479.806,41.941,14.104,41.941,326.390,332.041,343.643,26.056,23.886,26.056 +1136,35.507,218.935,477.798,360.756,590.491,226.281,483.515,37.893,6.995,37.893,325.034,330.272,343.651,25.771,24.771,25.771 +1137,35.538,214.923,482.115,364.984,584.461,222.985,487.490,33.690,179.400,33.690,324.500,328.066,343.879,25.794,25.161,25.794 +1138,35.569,210.787,487.096,367.970,577.782,219.041,491.723,29.270,172.213,29.270,325.057,327.787,343.982,26.054,23.863,26.054 +1139,35.599,207.492,492.918,371.014,571.049,215.757,496.678,24.464,163.856,24.464,326.074,326.642,344.234,25.490,24.924,25.490 +1140,35.630,203.970,500.143,373.345,563.239,212.112,502.962,19.093,154.983,19.093,326.929,325.199,344.161,25.660,25.011,25.660 +1141,35.662,201.088,506.647,375.489,555.520,209.497,508.749,14.036,145.670,14.036,327.423,323.734,344.759,25.951,26.385,25.951 +1142,35.694,199.064,514.587,376.652,546.638,206.869,515.788,8.746,136.146,8.746,329.204,322.546,344.999,24.557,26.342,24.557 +1143,35.726,197.506,522.879,376.851,537.760,204.609,523.236,2.874,126.469,2.874,331.286,322.230,345.509,24.814,26.188,24.814 +1144,35.757,197.024,534.913,377.209,527.860,203.824,534.524,176.730,116.896,176.730,333.342,319.791,346.965,19.112,26.561,19.112 +1145,35.787,196.874,544.652,375.905,517.470,203.393,543.519,170.134,107.676,170.134,335.615,319.142,348.848,19.319,26.490,19.319 +1146,35.817,198.771,555.069,373.162,506.708,204.344,553.397,163.301,97.125,163.301,338.592,317.901,350.228,19.731,25.551,19.731 +1147,35.847,201.651,565.479,369.549,495.957,206.780,563.221,156.233,87.663,156.233,340.938,316.594,352.147,19.370,25.204,19.370 +1148,35.877,201.651,565.479,369.549,495.957,206.780,563.221,156.233,87.663,156.233,340.938,316.594,352.147,19.370,25.204,19.370 +1149,35.906,206.037,575.720,364.424,485.016,210.514,573.021,148.912,78.111,148.912,344.038,316.020,354.493,19.306,24.721,19.306 +1150,35.936,211.846,586.051,357.546,474.283,215.826,582.845,141.152,68.318,141.152,346.718,315.485,356.939,19.049,24.048,19.049 +1151,35.967,219.264,595.747,349.461,464.218,222.842,591.931,133.161,58.556,133.161,349.082,314.388,359.545,19.341,24.850,19.341 +1152,35.998,228.692,605.042,339.193,454.830,231.787,600.642,125.127,48.638,125.127,351.355,313.257,362.114,19.436,24.891,19.436 +1153,36.032,239.235,612.871,327.369,446.938,241.707,607.971,116.775,39.289,116.775,353.739,312.468,364.715,19.748,24.063,19.748 +1154,36.065,252.143,619.392,314.483,440.790,253.965,613.970,108.576,29.899,108.576,355.433,311.198,366.873,19.914,23.948,19.914 +1155,36.096,263.257,624.121,300.542,436.545,264.188,618.281,99.063,20.433,99.063,358.559,310.156,370.387,24.961,24.089,24.961 +1156,36.128,281.469,625.792,285.524,435.342,281.647,620.330,91.868,11.152,91.868,359.103,309.478,370.033,25.758,22.291,25.758 +1157,36.159,295.708,625.960,270.437,437.398,295.156,621.149,83.451,1.909,83.451,361.057,309.262,370.742,26.287,19.089,26.287 +1158,36.190,307.418,623.961,255.894,440.666,306.121,619.346,74.303,172.778,74.303,361.623,308.978,371.211,22.954,18.309,22.954 +1159,36.222,322.253,617.823,242.148,445.281,320.352,613.570,65.928,163.895,65.928,361.784,309.478,371.102,22.343,18.890,22.343 +1160,36.251,335.556,610.599,229.488,452.048,332.857,606.360,57.515,155.031,57.515,361.319,309.676,371.370,24.757,19.321,24.757 +1161,36.282,346.509,601.476,218.587,460.879,343.461,597.928,49.323,146.254,49.323,361.304,310.077,370.659,25.712,18.136,25.712 +1162,36.311,355.769,591.651,208.651,470.213,351.835,588.188,41.359,137.590,41.359,360.371,310.902,370.853,25.327,18.913,25.327 +1163,36.343,355.769,591.651,208.651,470.213,351.835,588.188,41.359,137.590,41.359,360.371,310.902,370.853,25.327,18.913,25.327 +1164,36.371,363.252,580.593,201.180,481.146,358.957,577.747,33.532,128.956,33.532,359.459,311.118,369.764,25.652,18.233,25.652 +1165,36.402,368.341,569.245,195.101,492.442,363.844,567.041,26.114,120.493,26.114,358.693,311.768,368.708,25.776,18.124,25.776 +1166,36.434,372.374,558.089,191.517,503.815,367.798,556.516,18.961,111.991,18.961,358.001,312.356,367.680,25.431,19.508,25.431 +1167,36.466,370.795,546.199,189.691,515.286,366.481,545.266,12.200,103.496,12.200,349.439,312.642,358.265,25.994,21.159,25.994 +1168,36.498,369.265,536.303,188.338,525.792,364.619,535.841,5.675,95.004,5.675,343.482,312.606,352.820,24.531,20.828,24.531 +1169,36.529,368.490,526.914,188.584,535.748,363.788,526.958,179.473,86.463,179.473,341.151,312.825,350.555,23.309,21.356,23.309 +1170,36.561,368.719,520.000,188.809,545.225,364.003,520.516,173.762,78.503,173.762,344.197,313.015,353.684,20.481,22.555,20.481 +1171,36.592,369.873,511.796,191.190,553.470,365.404,512.724,168.267,69.044,168.267,348.592,313.041,357.719,20.230,21.757,20.230 +1172,36.622,368.054,503.826,193.875,560.600,363.875,505.095,163.109,60.619,163.109,348.852,313.170,357.586,19.974,21.411,19.974 +1173,36.652,364.391,497.257,196.134,567.896,360.596,498.756,158.453,52.158,158.453,348.563,313.284,356.724,19.385,21.563,19.385 +1174,36.683,361.072,491.148,199.009,573.803,357.331,492.976,153.956,43.264,153.956,347.137,312.698,355.466,19.429,22.232,19.429 +1175,36.712,361.072,491.148,199.009,573.803,357.331,492.976,153.956,43.264,153.956,347.137,312.698,355.466,19.429,22.232,19.429 +1176,36.741,357.710,485.940,202.010,578.271,354.361,487.887,149.822,34.109,149.822,346.526,313.167,354.274,19.521,22.288,19.521 +1177,36.773,354.214,481.036,204.023,583.854,350.220,483.735,145.949,25.489,145.949,344.738,313.939,354.379,19.571,24.110,19.571 +1178,36.804,351.062,476.684,206.904,587.638,346.890,479.889,142.472,16.504,142.472,342.782,314.166,353.304,19.344,24.716,19.344 +1179,36.835,348.055,472.800,209.676,590.915,343.583,476.662,139.179,7.568,139.179,340.225,314.550,352.043,19.463,24.789,19.463 +1180,36.866,345.423,469.005,211.929,594.502,340.208,474.006,136.202,177.955,136.202,337.527,314.621,351.977,19.656,22.414,19.656 +1181,36.896,343.533,464.879,213.796,596.810,337.169,471.586,133.500,168.048,133.500,333.026,316.741,351.518,19.407,21.452,19.407 +1182,36.927,341.760,461.801,215.726,600.750,334.192,470.420,131.285,158.597,131.285,329.259,318.321,352.199,19.611,19.846,19.611 +1183,36.958,340.579,456.969,217.648,604.069,331.017,468.892,128.729,149.246,128.729,322.195,320.374,352.762,19.696,19.517,19.696 +1184,36.988,341.393,449.936,219.780,607.238,327.946,467.662,127.185,139.899,127.185,308.649,322.551,353.147,18.077,19.566,18.077 +1185,37.019,354.284,426.203,222.047,610.112,325.448,466.573,125.538,130.601,125.538,254.582,323.769,353.805,18.135,19.741,18.135 +1186,37.051,334.567,450.392,224.259,612.562,324.092,466.247,123.450,120.579,123.450,316.214,326.526,354.218,18.752,19.880,18.752 +1187,37.084,325.714,460.006,225.896,614.754,322.072,465.829,122.028,112.166,122.028,340.788,327.940,354.524,19.002,20.889,19.002 +1188,37.114,323.270,460.166,228.461,616.991,320.298,465.134,120.890,102.600,120.890,343.351,328.654,354.930,19.003,20.138,19.003 +1189,37.147,322.197,459.243,230.806,618.893,318.982,464.844,119.855,93.627,119.855,342.083,328.924,354.999,19.158,19.517,19.158 +1190,37.179,322.197,459.243,230.806,618.893,318.982,464.844,119.855,93.627,119.855,342.083,328.924,354.999,19.158,19.517,19.158 +1191,37.209,321.157,458.702,233.276,619.875,318.133,464.158,118.991,84.394,118.991,342.190,328.348,354.666,19.410,19.269,19.410 +1192,37.240,320.443,457.888,235.822,620.550,317.409,463.503,118.388,74.369,118.388,341.137,328.987,353.902,19.137,20.957,19.137 +1193,37.271,319.727,457.747,238.130,620.153,317.092,462.746,117.798,65.908,117.798,340.833,327.127,352.134,19.491,21.442,19.491 +1194,37.301,319.864,457.354,238.891,619.753,317.187,462.454,117.699,56.603,117.699,339.816,325.633,351.336,19.257,21.108,19.257 +1195,37.332,319.739,456.781,238.401,619.673,316.840,462.347,117.512,46.548,117.512,338.986,324.157,351.537,19.327,25.256,19.327 +1196,37.363,319.680,456.274,238.693,618.905,316.778,461.857,117.464,37.185,117.464,338.136,322.632,350.721,18.804,25.824,18.804 +1197,37.396,320.277,456.122,238.063,617.481,317.391,461.644,117.597,27.759,117.597,337.249,321.738,349.711,19.296,26.315,19.296 +1198,37.428,320.627,455.832,237.179,615.977,317.758,461.254,117.885,18.199,117.885,336.617,320.949,348.887,19.073,26.677,19.073 +1199,37.462,321.796,456.207,235.949,614.842,318.881,461.552,118.610,8.531,118.610,336.394,319.278,348.570,19.314,26.405,19.314 +1200,37.494,322.584,455.983,234.020,613.805,319.451,461.646,118.951,179.125,118.951,336.050,318.131,348.996,19.400,24.234,19.400 +1201,37.526,323.917,455.740,231.890,612.367,320.345,461.985,119.769,170.134,119.769,334.525,318.609,348.911,19.377,23.559,19.377 +1202,37.557,325.638,455.868,229.239,611.173,321.461,462.885,120.763,160.463,120.763,332.853,319.726,349.186,19.007,22.010,19.007 +1203,37.587,328.436,455.472,226.897,610.804,322.973,464.173,122.125,152.403,122.125,329.992,320.330,350.540,19.557,20.262,19.557 +1204,37.617,331.706,452.899,224.640,610.198,323.906,464.949,122.916,144.680,122.916,323.038,321.650,351.747,19.806,19.629,19.806 +1205,37.647,337.514,447.928,222.745,609.864,324.992,466.051,124.641,137.626,124.641,308.823,322.815,352.880,18.145,19.804,18.145 +1206,37.678,337.514,447.928,222.745,609.864,324.992,466.051,124.641,137.626,124.641,308.823,322.815,352.880,18.145,19.804,18.145 +1207,37.707,355.211,427.335,220.966,609.470,326.250,467.156,126.027,131.326,126.027,255.561,323.979,354.038,18.233,19.784,18.233 +1208,37.738,357.316,429.840,218.973,608.338,328.037,468.348,127.247,125.538,127.247,258.146,325.145,354.896,18.085,19.646,18.085 +1209,37.773,334.626,464.096,216.602,606.852,329.988,469.878,128.737,120.284,128.737,340.762,326.075,355.588,18.532,20.560,18.532 +1210,37.804,336.153,466.488,214.664,605.938,331.897,471.453,130.601,114.444,130.601,343.726,325.746,356.805,19.524,20.856,19.524 +1211,37.836,338.392,469.173,212.252,603.763,334.492,473.359,132.971,107.598,132.971,346.034,325.726,357.477,19.186,19.921,19.186 +1212,37.867,341.555,471.471,209.941,601.172,337.425,475.502,135.690,100.351,135.690,346.474,325.573,358.017,19.303,19.621,19.303 +1213,37.898,344.833,474.465,207.658,597.905,340.665,478.128,138.691,92.966,138.691,346.856,324.549,357.953,19.234,19.487,19.234 +1214,37.928,348.658,477.642,205.042,593.415,344.427,480.947,142.001,85.339,142.001,347.420,322.864,358.158,19.159,19.463,19.159 +1215,37.960,353.114,481.468,202.812,588.153,348.670,484.498,145.713,77.471,145.713,347.053,321.491,357.810,19.304,19.741,19.304 +1216,37.992,357.229,485.689,200.614,581.835,352.752,488.323,149.534,69.489,149.534,346.700,319.174,357.089,19.470,19.999,19.470 +1217,38.023,361.093,490.689,198.359,574.804,356.870,492.774,153.719,61.336,153.719,347.472,317.004,356.892,19.338,20.614,19.338 +1218,38.053,364.633,496.835,196.073,566.954,360.623,498.434,158.253,53.206,158.253,347.818,314.804,356.453,19.328,21.377,19.328 +1219,38.083,367.828,503.838,193.250,557.750,363.975,505.018,162.979,45.000,162.979,349.306,311.127,357.365,19.651,21.920,19.651 +1220,38.114,370.384,511.557,191.085,547.837,366.005,512.481,168.082,36.219,168.082,347.953,310.037,356.903,19.874,22.658,19.874 +1221,38.145,370.384,511.557,191.085,547.837,366.005,512.481,168.082,36.219,168.082,347.953,310.037,356.903,19.874,22.658,19.874 +1222,38.173,370.734,520.044,189.587,538.537,364.847,520.704,173.601,27.769,173.601,340.464,308.278,352.311,20.293,21.913,20.293 +1223,38.204,374.000,527.500,188.616,527.871,363.808,527.500,0.000,19.242,0.000,330.000,307.744,350.384,23.000,22.526,23.000 +1224,38.235,407.171,541.081,188.754,517.628,364.467,535.927,6.882,10.482,6.882,267.250,307.620,353.279,23.468,21.719,23.468 +1225,38.266,372.382,550.273,190.152,506.496,364.986,548.754,11.607,2.177,11.607,344.420,306.425,359.521,21.105,24.256,21.105 +1226,38.296,372.164,558.340,192.364,496.007,366.898,556.508,19.179,173.392,19.179,358.293,307.995,369.446,25.337,22.871,25.337 +1227,38.328,367.900,569.200,196.815,487.131,363.452,566.976,26.565,164.435,26.565,359.560,308.111,369.505,25.491,18.567,25.491 +1228,38.360,361.562,581.336,202.584,476.689,357.656,578.642,34.592,155.996,34.592,361.589,308.362,371.078,25.179,19.619,25.179 +1229,38.391,354.041,592.738,210.813,468.144,350.723,589.685,42.614,147.407,42.614,361.489,308.474,370.508,24.874,17.665,24.874 +1230,38.422,345.541,602.549,220.222,459.254,342.411,598.793,50.194,138.857,50.194,361.064,307.997,370.842,23.943,17.939,23.943 +1231,38.452,334.453,611.798,230.766,451.381,331.673,607.281,58.392,130.130,58.392,360.710,307.653,371.318,22.995,18.483,22.995 +1232,38.483,321.729,619.616,242.871,445.334,319.420,614.244,66.746,121.304,66.746,359.126,307.326,370.821,21.678,18.047,21.678 +1233,38.514,306.308,625.962,255.217,440.590,304.590,619.664,74.745,112.557,74.745,358.454,306.615,371.510,24.470,19.209,24.470 +1234,38.545,306.308,625.962,255.217,440.590,304.590,619.664,74.745,112.557,74.745,358.454,306.615,371.510,24.470,19.209,24.470 +1235,38.574,292.454,629.539,268.337,438.349,291.537,621.809,83.234,103.736,83.234,354.261,305.581,369.831,26.122,20.594,26.122 +1236,38.604,281.018,639.623,282.014,438.722,281.870,622.246,92.806,96.384,92.806,331.827,306.007,366.623,26.478,19.257,26.478 +1237,38.635,260.136,635.022,296.128,439.530,262.588,619.864,99.189,88.059,99.189,336.043,305.367,366.753,25.478,18.583,25.478 +1238,38.666,251.194,620.930,311.234,442.979,253.104,615.326,108.821,79.216,108.821,351.930,306.349,363.770,20.221,21.705,20.221 +1239,38.696,239.364,612.958,324.632,447.916,241.387,608.985,116.988,70.297,116.988,353.693,307.817,362.612,19.819,23.117,19.819 +1240,38.729,228.904,605.047,337.156,454.147,231.759,600.996,125.176,61.699,125.176,351.590,310.197,361.502,19.647,24.247,19.647 +1241,38.762,219.492,596.363,347.954,462.303,223.404,592.181,133.083,52.496,133.083,348.411,312.841,359.865,19.495,24.463,19.495 +1242,38.795,212.265,586.712,357.069,471.498,216.824,582.991,140.786,43.025,140.786,346.527,316.303,358.297,19.748,24.905,19.748 +1243,38.828,206.789,576.659,363.738,481.492,211.542,573.718,148.249,35.263,148.249,344.722,320.971,355.901,19.404,20.273,19.404 +1244,38.859,202.590,566.612,371.000,490.500,208.773,563.759,155.225,26.565,155.225,342.371,323.335,355.990,19.347,21.466,19.347 +1245,38.891,199.046,557.101,375.450,500.650,206.514,554.675,162.001,18.435,162.001,339.020,325.082,354.725,19.403,22.452,19.403 +1246,38.921,196.047,547.769,379.163,510.063,205.925,545.762,168.515,9.894,168.515,333.594,326.925,353.755,19.767,23.047,19.767 +1247,38.951,193.048,538.378,377.713,519.203,204.250,537.390,174.958,1.674,174.958,326.291,323.359,348.781,18.458,22.802,18.458 +1248,38.980,166.000,529.000,378.716,528.997,204.858,529.000,0.000,173.836,0.000,270.000,323.869,347.716,18.000,20.564,18.000 +1249,39.010,166.000,529.000,378.716,528.997,204.858,529.000,0.000,173.836,0.000,270.000,323.869,347.716,18.000,20.564,18.000 +1250,39.040,190.856,517.936,379.677,538.225,206.896,519.540,5.711,166.293,5.711,315.327,327.687,347.566,24.975,21.468,24.975 +1251,39.070,198.270,511.236,377.432,547.558,208.037,513.053,10.539,158.481,10.539,325.828,326.094,345.697,25.790,24.586,25.790 +1252,39.106,201.400,505.873,375.068,556.117,209.694,508.085,14.931,149.871,14.931,327.167,325.495,344.333,25.058,25.337,25.058 +1253,39.149,208.323,493.196,369.183,571.115,215.014,496.249,24.528,133.282,24.528,327.964,325.462,342.673,25.491,26.561,25.491 +1254,39.183,211.211,488.608,365.828,577.878,217.738,492.119,28.281,125.362,28.281,327.267,326.203,342.091,25.466,26.465,25.466 +1255,39.216,214.233,484.761,362.499,584.068,220.562,488.666,31.675,117.597,31.675,326.906,327.843,341.780,25.350,25.882,25.350 +1256,39.252,217.403,481.171,359.383,589.000,223.216,485.215,34.824,109.885,34.824,327.934,327.991,342.097,25.734,24.730,25.734 +1257,39.283,219.961,478.701,356.441,593.773,225.675,483.096,37.569,102.095,37.569,327.841,329.310,342.259,25.059,23.258,25.059 +1258,39.313,222.717,476.058,354.490,597.958,228.500,480.993,40.475,94.699,40.475,328.322,331.021,343.527,25.285,23.278,25.285 +1259,39.343,222.717,476.058,354.490,597.958,228.500,480.993,40.475,94.699,40.475,328.322,331.021,343.527,25.285,23.278,25.285 +1260,39.371,224.825,473.241,352.147,601.443,230.971,478.925,42.761,87.138,42.761,327.555,331.786,344.297,25.713,21.623,25.713 +1261,39.402,226.794,471.171,349.520,604.352,233.033,477.368,44.811,79.928,44.811,326.682,333.263,344.269,25.484,19.491,25.484 +1262,39.433,228.253,469.431,348.463,606.560,235.061,476.590,46.439,73.266,46.439,324.904,334.090,344.661,25.235,19.366,25.235 +1263,39.464,228.311,467.097,347.808,607.869,236.246,475.861,47.842,67.011,47.842,321.824,334.980,345.470,24.333,19.444,24.333 +1264,39.495,226.084,466.306,347.173,608.907,235.317,476.879,48.868,61.654,48.868,317.970,334.855,346.043,19.237,19.246,19.237 +1265,39.528,220.742,459.302,346.761,609.501,235.648,476.739,49.475,56.757,49.475,300.346,335.046,346.228,18.341,18.969,18.341 +1266,39.562,195.978,429.551,346.849,609.461,235.822,476.546,49.708,52.394,49.708,223.140,335.037,346.363,17.759,18.981,17.759 +1267,39.594,203.056,436.595,347.261,609.215,237.703,475.143,48.050,48.032,48.050,242.240,335.003,345.901,21.679,19.784,21.679 +1268,39.624,222.931,459.312,347.479,608.522,237.289,475.266,48.013,43.781,48.013,302.595,335.273,345.522,22.373,19.103,22.373 +1269,39.654,228.206,466.502,348.201,607.505,236.597,475.711,47.659,38.774,47.659,320.252,334.521,345.170,24.672,19.452,24.672 +1270,39.684,231.098,467.416,348.573,606.379,237.238,474.592,49.447,33.495,49.447,326.146,334.211,345.034,24.815,21.118,24.815 +1271,39.715,230.941,468.051,348.842,605.357,236.716,474.679,48.935,27.135,48.935,326.787,333.658,344.368,24.552,21.536,24.552 +1272,39.747,231.101,469.238,349.375,604.354,236.092,474.877,48.489,19.385,48.489,329.013,332.535,344.073,24.729,23.548,24.729 +1273,39.778,231.101,469.238,349.375,604.354,236.092,474.877,48.489,19.385,48.489,329.013,332.535,344.073,24.729,23.548,24.729 +1274,39.808,230.061,469.304,349.603,603.032,235.314,475.099,47.811,11.041,47.811,327.447,331.792,343.089,24.619,26.069,24.619 +1275,39.839,229.092,469.812,350.420,601.237,234.384,475.490,47.015,2.622,47.015,326.680,329.982,342.204,24.666,25.538,24.666 +1276,39.870,227.979,470.520,350.994,600.431,233.280,476.011,46.010,174.703,46.010,327.277,328.024,342.542,24.629,25.770,24.629 +1277,39.901,226.780,471.709,351.822,598.811,232.199,477.094,44.825,166.225,44.825,326.016,327.169,341.295,24.902,26.142,24.902 +1278,39.931,224.889,472.559,352.579,597.683,230.541,477.902,43.394,156.501,43.394,326.383,326.676,341.938,24.957,26.914,24.957 +1279,39.961,223.133,474.161,353.762,595.631,228.904,479.286,41.610,147.200,41.610,325.792,326.254,341.228,24.914,26.954,24.914 +1280,39.992,221.125,475.951,354.836,593.708,227.009,480.835,39.696,137.978,39.696,325.606,325.858,340.899,25.074,26.368,25.074 +1281,40.022,219.114,478.249,356.841,591.573,225.172,482.903,37.531,128.660,37.531,325.955,326.247,341.235,25.272,26.393,25.272 +1282,40.053,216.951,480.869,358.951,589.193,223.216,485.266,35.059,119.197,35.059,326.303,327.123,341.610,25.260,25.932,25.260 +1283,40.084,215.043,484.302,362.000,586.000,221.271,488.233,32.258,109.654,32.258,327.649,327.592,342.379,25.335,25.831,25.335 +1284,40.114,212.859,487.994,364.055,582.152,218.593,491.201,29.216,100.154,29.216,329.562,327.813,342.702,25.443,23.609,25.443 +1285,40.144,212.859,487.994,364.055,582.152,218.593,491.201,29.216,100.154,29.216,329.562,327.813,342.702,25.443,23.609,25.443 +1286,40.172,210.372,492.044,368.000,578.000,216.813,495.167,25.866,90.000,25.866,330.041,328.000,344.356,25.495,24.000,25.495 +1287,40.204,207.638,496.759,371.380,572.443,214.587,499.576,22.068,81.511,22.068,330.370,329.411,345.366,25.473,24.003,25.473 +1288,40.235,204.961,501.515,374.413,566.205,212.539,504.006,18.199,72.096,18.199,330.449,330.180,346.404,25.597,23.350,25.597 +1289,40.266,202.533,507.282,377.000,559.000,210.423,509.228,13.851,63.435,13.851,331.044,330.044,347.297,25.457,22.361,25.457 +1290,40.296,200.633,513.619,379.476,550.878,208.723,514.950,9.348,54.256,9.348,332.241,330.035,348.640,25.330,22.328,25.330 +1291,40.328,198.521,520.668,380.629,542.368,206.801,521.299,4.357,45.238,4.357,333.244,329.538,349.853,25.051,20.867,25.051 +1292,40.359,196.877,528.550,380.892,532.649,205.816,528.403,179.058,36.027,179.058,332.087,329.817,349.966,24.132,19.851,24.132 +1293,40.390,196.575,539.912,380.394,521.706,205.286,538.881,173.246,27.202,173.246,334.283,328.806,351.826,19.796,20.730,19.796 +1294,40.421,197.577,548.800,379.250,509.750,206.087,546.929,167.602,18.435,167.602,336.786,327.296,354.214,19.727,23.401,19.727 +1295,40.451,199.215,558.213,376.118,499.746,207.250,555.487,161.259,9.643,161.259,338.680,325.381,355.649,19.312,22.278,19.312 +1296,40.481,201.269,568.407,371.490,489.416,209.445,564.524,154.598,1.364,154.598,339.091,323.289,357.194,19.073,19.709,19.073 +1297,40.512,206.096,578.064,364.884,478.578,212.927,573.766,147.817,172.816,147.817,342.474,322.115,358.616,19.371,20.543,19.371 +1298,40.543,206.096,578.064,364.884,478.578,212.927,573.766,147.817,172.816,147.817,342.474,322.115,358.616,19.371,20.543,19.371 +1299,40.571,211.713,587.710,356.952,468.533,217.692,582.810,140.659,164.424,140.659,344.831,320.476,360.292,19.246,20.460,19.246 +1300,40.602,218.674,596.892,347.443,459.247,223.856,591.347,133.059,156.038,133.059,346.619,318.413,361.797,19.045,20.713,19.045 +1301,40.633,227.018,606.021,336.601,451.573,231.504,599.720,125.449,147.783,125.449,347.807,316.083,363.277,19.241,20.641,19.241 +1302,40.664,237.443,613.892,324.896,445.465,240.947,607.232,117.747,139.568,117.747,349.449,314.224,364.499,19.466,19.811,19.466 +1303,40.697,249.226,620.358,312.035,440.970,251.678,613.587,109.907,131.325,109.907,351.303,311.847,365.706,19.745,19.745,19.745 +1304,40.730,260.240,625.768,298.702,438.132,261.649,618.527,101.013,123.268,101.013,353.547,310.096,368.301,23.723,19.775,23.723 +1305,40.763,273.461,628.832,285.187,437.061,273.828,621.065,92.710,115.284,92.710,353.119,308.650,368.671,25.445,19.520,25.445 +1306,40.795,291.444,628.773,271.489,438.125,290.891,621.590,85.601,107.447,85.601,354.415,306.804,368.825,23.776,19.870,23.776 +1307,40.826,302.724,627.664,257.552,441.091,301.122,620.963,76.551,99.349,76.551,356.366,305.437,370.145,25.245,19.626,25.245 +1308,40.857,319.161,622.331,244.689,446.029,316.701,616.086,68.499,91.406,68.499,355.811,304.276,369.233,21.822,18.688,21.822 +1309,40.888,332.864,615.718,232.906,452.779,329.592,610.015,60.157,83.395,60.157,355.848,303.906,368.997,23.150,19.125,23.150 +1310,40.918,344.933,606.767,222.781,460.300,341.029,601.794,51.865,75.641,51.865,355.979,303.640,368.626,24.449,18.941,24.449 +1311,40.948,354.650,596.364,213.492,469.380,350.481,592.362,43.831,67.429,43.831,356.423,304.156,367.982,25.018,19.464,25.018 +1312,40.977,354.650,596.364,213.492,469.380,350.481,592.362,43.831,67.429,43.831,356.423,304.156,367.982,25.018,19.464,25.018 +1313,41.005,363.519,585.474,206.476,479.134,358.537,581.880,35.801,59.615,35.801,354.579,304.323,366.865,25.512,19.754,25.512 +1314,41.037,369.744,573.546,200.199,488.864,364.176,570.560,28.199,51.652,28.199,353.601,304.243,366.237,26.068,20.182,26.068 +1315,41.068,374.418,562.019,195.772,498.577,368.209,559.641,20.960,43.485,20.960,352.442,303.523,365.740,25.989,21.094,25.989 +1316,41.099,374.429,550.268,192.276,508.473,367.434,548.526,13.984,35.101,13.984,344.872,305.584,359.290,25.218,21.550,25.218 +1317,41.130,372.912,539.330,189.794,517.975,365.261,538.335,7.405,26.973,7.405,337.827,307.273,353.257,24.383,21.628,24.383 +1318,41.162,374.029,530.953,188.555,527.439,363.872,530.760,1.089,18.825,1.089,330.378,307.401,350.697,20.692,22.415,20.692 +1319,41.194,377.519,521.198,188.312,536.870,363.982,522.330,175.217,9.944,175.217,325.373,308.637,352.541,20.379,21.893,20.379 +1320,41.226,384.060,510.752,188.600,545.700,364.537,514.348,169.563,1.736,169.563,317.707,309.464,357.410,20.135,21.233,20.135 +1321,41.255,389.500,499.000,189.425,553.697,363.593,506.082,164.710,173.177,164.710,307.403,311.963,361.118,19.139,21.887,19.139 +1322,41.286,402.752,483.908,190.988,562.958,359.598,499.760,159.829,164.745,159.829,268.172,313.987,360.120,18.697,20.085,18.697 +1323,41.316,427.715,461.132,193.071,570.349,356.051,494.207,155.225,155.601,155.225,201.916,315.652,359.774,18.439,19.866,18.439 +1324,41.345,427.715,461.132,193.071,570.349,356.051,494.207,155.225,155.601,155.225,201.916,315.652,359.774,18.439,19.866,18.439 +1325,41.374,368.025,481.401,195.519,576.763,352.727,490.085,150.417,146.874,150.417,323.830,318.402,359.011,19.238,19.716,19.238 +1326,41.406,355.716,481.311,198.129,582.710,349.000,485.765,146.445,138.460,146.445,342.509,320.802,358.628,19.116,21.010,19.116 +1327,41.437,351.188,477.448,201.273,588.968,345.083,482.073,142.853,130.082,142.853,343.039,321.989,358.358,19.299,21.022,19.299 +1328,41.468,346.472,474.546,204.847,594.711,341.429,478.862,139.446,121.256,139.446,344.914,323.446,358.190,19.324,19.572,19.324 +1329,41.499,342.764,471.637,208.742,599.857,338.074,476.118,136.302,112.521,136.302,345.011,325.000,357.984,19.489,18.745,19.489 +1330,41.532,338.915,469.514,212.507,604.002,334.945,473.683,133.603,103.753,133.603,346.103,325.762,357.617,18.793,18.971,18.793 +1331,41.563,335.748,467.555,216.406,607.537,332.149,471.722,130.815,95.194,130.815,345.868,326.562,356.880,19.471,19.375,19.471 +1332,41.595,332.842,465.486,220.387,610.507,329.441,469.757,128.524,86.503,128.524,345.160,326.164,356.079,18.860,19.164,18.860 +1333,41.626,330.696,463.310,224.151,612.967,327.073,468.248,126.265,77.807,126.265,342.882,326.721,355.132,19.626,19.858,19.626 +1334,41.657,328.131,461.877,228.641,615.160,324.893,466.602,124.418,68.587,124.418,342.454,327.593,353.910,19.080,20.828,19.080 +1335,41.687,326.133,460.379,231.576,615.316,323.244,464.885,122.670,60.302,122.670,341.522,324.845,352.228,19.086,22.030,19.086 +1336,41.718,324.515,458.996,234.232,615.915,321.721,463.613,121.185,51.340,121.185,340.399,323.748,351.192,19.114,21.396,19.114 +1337,41.748,322.663,457.668,235.188,617.617,319.513,463.192,119.691,41.878,119.691,339.118,322.809,351.837,19.325,25.932,19.325 +1338,41.779,322.663,457.668,235.188,617.617,319.513,463.192,119.691,41.878,119.691,339.118,322.809,351.837,19.325,25.932,19.325 +1339,41.808,321.433,456.920,236.984,617.473,318.452,462.399,118.551,32.784,118.551,337.831,321.695,350.306,19.053,26.233,19.053 +1340,41.843,319.971,455.943,237.921,617.078,317.159,461.340,117.520,24.520,117.520,337.286,322.028,349.458,18.944,26.449,18.944 +1341,41.875,319.200,455.100,239.106,616.728,316.465,460.570,116.565,14.931,116.565,336.305,320.339,348.536,19.230,26.475,19.230 +1342,41.905,318.266,454.343,239.824,616.744,315.549,459.938,115.901,6.710,115.901,335.825,319.619,348.265,19.094,26.172,19.094 +1343,41.936,317.559,453.708,239.513,616.378,314.739,459.681,115.272,178.075,115.272,334.421,319.425,347.630,19.413,24.927,19.413 +1344,41.966,317.186,453.214,239.186,616.908,314.073,459.910,114.934,168.826,114.934,333.103,319.687,347.871,19.226,24.453,19.226 +1345,41.998,317.109,452.426,238.446,616.848,313.695,459.870,114.638,160.484,114.638,331.735,320.455,348.114,19.293,23.826,19.293 +1346,42.030,316.851,452.256,238.081,617.197,313.354,459.925,114.513,152.447,114.513,331.796,321.214,348.654,19.085,21.702,19.085 +1347,42.062,317.568,450.849,237.362,617.520,313.306,460.226,114.444,145.125,114.444,328.642,322.441,349.242,19.449,20.062,19.449 +1348,42.094,318.493,448.815,236.900,618.388,313.103,460.673,114.444,138.215,114.444,324.173,323.710,350.223,19.449,19.895,19.449 +1349,42.126,319.669,445.672,236.835,619.241,312.712,460.938,114.499,131.576,114.499,317.476,325.123,351.030,18.798,20.343,18.798 +1350,42.157,321.932,440.815,236.872,619.774,312.554,461.133,114.775,126.327,114.775,306.751,326.218,351.508,18.159,19.952,18.159 +1351,42.187,327.337,429.271,237.166,620.737,312.460,461.504,114.775,122.276,114.775,281.258,326.893,352.259,18.020,20.203,18.020 +1352,42.218,342.960,395.836,236.789,620.684,312.473,461.574,114.880,117.937,114.880,207.444,327.055,352.369,18.012,19.811,18.012 +1353,42.248,347.055,387.932,236.817,620.918,312.763,461.659,114.944,114.196,114.944,190.243,327.746,352.865,18.050,20.469,18.050 +1354,42.279,318.020,452.346,236.378,621.018,313.386,462.299,114.963,110.614,114.963,330.824,328.888,352.783,18.554,19.870,18.554 +1355,42.309,318.020,452.346,236.378,621.018,313.386,462.299,114.963,110.614,114.963,330.824,328.888,352.783,18.554,19.870,18.554 +1356,42.338,317.685,454.662,235.585,620.721,313.992,462.431,115.427,106.991,115.427,336.040,329.383,353.244,18.951,20.083,18.951 +1357,42.369,317.837,456.685,235.258,620.829,314.836,462.764,116.277,102.977,116.277,340.366,329.343,353.923,19.194,20.917,19.194 +1358,42.401,318.812,458.109,233.938,620.787,315.949,463.642,117.364,97.765,117.364,342.054,329.091,354.514,19.211,19.997,19.211 +1359,42.434,320.502,458.859,232.638,619.950,317.518,464.310,118.697,92.111,118.697,342.131,328.514,354.560,19.354,19.332,19.354 +1360,42.465,322.731,459.957,231.300,618.406,319.859,464.826,120.530,85.878,120.530,343.243,328.311,354.551,18.884,19.211,18.884 +1361,42.496,325.192,460.854,229.389,616.834,322.045,465.822,122.356,79.413,122.356,342.545,327.726,354.306,19.067,19.623,19.067 +1362,42.529,328.226,461.783,227.363,614.563,324.847,466.709,124.450,72.232,124.450,342.191,327.024,354.138,19.138,20.645,19.138 +1363,42.561,331.242,463.438,225.710,611.779,328.070,467.681,126.779,65.739,126.779,342.807,326.099,353.402,19.175,21.174,19.175 +1364,42.592,335.017,465.686,222.260,608.234,331.707,469.681,129.644,58.707,129.644,342.660,323.110,353.036,19.031,21.145,19.031 +1365,42.622,339.112,467.232,219.758,603.627,335.608,471.066,132.429,51.620,132.429,341.624,321.099,352.013,19.024,21.901,19.024 +1366,42.652,342.227,469.712,214.754,600.257,338.091,473.821,135.189,43.815,135.189,341.556,318.393,353.217,19.169,26.006,19.169 +1367,42.682,346.068,472.772,211.130,595.135,342.004,476.368,138.497,36.634,138.497,342.579,317.199,353.432,19.299,25.082,19.299 +1368,42.712,346.068,472.772,211.130,595.135,342.004,476.368,138.497,36.634,138.497,342.579,317.199,353.432,19.299,25.082,19.299 +1369,42.741,349.993,476.549,207.303,589.077,346.158,479.547,141.984,29.454,141.984,343.971,315.899,353.706,19.180,25.897,19.180 +1370,42.772,354.650,480.420,203.346,582.864,350.083,483.533,145.724,21.615,145.724,343.336,314.390,354.389,19.343,24.224,19.343 +1371,42.803,360.386,484.383,199.893,575.289,354.061,488.061,149.822,13.536,149.822,339.611,312.876,354.243,19.521,22.973,19.521 +1372,42.834,365.948,489.431,195.987,566.112,357.877,493.314,154.306,5.685,154.306,336.978,312.640,354.891,19.366,25.323,19.366 +1373,42.865,375.509,493.899,191.953,561.297,360.302,499.782,158.847,177.778,158.847,325.798,312.347,358.408,20.068,20.299,20.068 +1374,42.896,408.632,493.962,188.836,552.750,363.155,506.956,164.055,169.963,164.055,265.793,312.236,360.386,19.230,21.724,19.230 +1375,42.928,371.228,513.687,186.869,544.454,364.150,515.048,169.114,162.308,169.114,344.873,314.378,359.289,19.640,21.957,19.640 +1376,42.959,367.537,522.429,184.762,536.374,362.331,522.880,175.054,154.770,175.054,345.689,313.173,356.141,20.376,22.269,20.376 +1377,42.989,367.221,529.064,185.000,528.000,362.165,528.945,1.340,147.095,1.340,344.163,313.407,354.277,24.461,20.545,24.461 +1378,43.020,368.282,538.980,185.959,517.707,363.426,538.327,7.667,139.325,7.667,347.462,313.144,357.262,24.395,21.828,24.395 +1379,43.051,370.370,549.837,189.345,508.161,366.075,548.726,14.500,130.791,14.500,353.641,312.364,362.514,24.771,19.721,24.771 +1380,43.081,371.024,561.894,193.220,497.465,366.543,560.132,21.463,122.856,21.463,358.835,311.287,368.466,25.398,19.006,25.398 +1381,43.111,371.024,561.894,193.220,497.465,366.543,560.132,21.463,122.856,21.463,358.835,311.287,368.466,25.398,19.006,25.398 +1382,43.138,366.724,573.490,198.522,486.702,362.401,571.092,29.014,114.775,29.014,358.598,309.684,368.486,25.155,18.020,25.155 +1383,43.170,360.493,586.035,205.788,476.236,356.426,582.944,37.235,106.658,37.235,358.782,307.657,369.000,24.999,18.105,24.999 +1384,43.201,352.064,597.947,214.496,466.452,348.112,593.918,45.556,98.578,45.556,357.834,305.930,369.123,24.713,18.064,24.713 +1385,43.233,342.427,607.683,224.206,457.511,338.771,602.770,53.344,90.503,53.344,357.609,303.094,369.857,23.750,18.350,23.750 +1386,43.264,331.030,616.801,235.694,450.844,327.795,610.861,61.427,82.539,61.427,355.630,303.044,369.157,22.598,18.934,22.598 +1387,43.294,321.292,632.946,248.356,445.168,315.495,617.229,69.755,75.369,69.755,335.826,303.244,369.328,21.526,18.577,21.526 +1388,43.325,301.458,637.010,261.519,441.088,297.883,621.965,76.633,67.977,76.633,337.840,302.869,368.768,26.220,18.124,26.220 +1389,43.357,289.983,628.694,275.995,438.786,289.627,622.330,86.802,60.461,86.802,355.290,303.261,368.037,25.407,19.575,25.407 +1390,43.387,270.563,625.578,291.630,437.752,270.928,620.626,94.216,52.561,94.216,357.872,304.377,367.803,26.518,22.815,26.518 +1391,43.417,256.982,621.603,306.547,439.452,258.115,616.944,103.665,44.318,103.665,358.230,306.930,367.820,23.187,24.006,23.187 +1392,43.448,243.871,615.808,320.684,443.431,246.168,610.492,113.361,36.225,113.361,354.246,310.412,365.827,20.490,23.863,20.490 +1393,43.479,243.871,615.808,320.684,443.431,246.168,610.492,113.361,36.225,113.361,354.246,310.412,365.827,20.490,23.863,20.490 +1394,43.506,232.525,608.063,334.020,449.689,235.724,603.027,122.428,28.405,122.428,352.345,313.059,364.276,19.900,23.543,19.900 +1395,43.538,222.332,598.547,345.523,458.584,226.070,594.255,131.050,20.702,131.050,350.137,316.252,361.522,19.488,21.238,19.488 +1396,43.569,213.813,588.114,355.887,467.092,218.577,584.033,139.422,13.299,139.422,348.173,318.886,360.718,19.315,21.605,19.315 +1397,43.599,206.661,577.753,364.538,477.140,213.228,573.579,147.562,5.978,147.562,343.297,320.702,358.860,19.122,21.349,19.122 +1398,43.631,201.055,567.120,370.945,488.163,209.281,563.344,155.341,178.655,155.341,338.472,322.310,356.575,19.531,20.806,19.531 +1399,43.664,195.433,557.135,374.742,499.354,206.368,553.810,163.088,171.085,163.088,331.010,324.193,353.868,18.586,22.780,18.586 +1400,43.696,156.537,552.109,377.286,510.990,204.694,543.789,170.198,164.122,170.198,253.573,324.446,351.313,18.661,20.434,18.661 +1401,43.730,188.595,534.793,378.311,522.750,204.580,533.946,176.967,157.496,176.967,316.146,324.617,348.160,19.026,21.579,19.026 +1402,43.763,194.901,523.218,378.140,534.616,205.099,523.671,2.545,150.154,2.545,326.300,324.594,346.714,24.598,23.618,24.598 +1403,43.797,198.730,513.122,376.774,545.863,207.041,514.507,9.462,142.989,9.462,328.305,324.594,345.156,25.317,25.307,25.317 +1404,43.830,202.162,506.821,374.483,556.483,209.279,508.641,14.349,135.637,14.349,329.123,323.961,343.815,25.256,26.884,25.256 +1405,43.863,205.528,498.791,371.147,565.718,212.334,501.281,20.095,128.608,20.095,328.075,325.154,342.569,25.723,26.365,25.723 +1406,43.894,209.443,491.099,367.102,575.175,216.112,494.377,26.175,121.504,26.175,327.432,326.986,342.295,25.494,26.376,25.494 +1407,43.925,213.632,485.279,362.873,583.146,219.941,489.065,30.964,115.201,30.964,327.219,328.023,341.934,25.896,25.974,25.896 +1408,43.955,217.956,480.630,359.339,589.948,223.935,484.873,35.362,107.879,35.362,327.808,328.002,342.470,25.702,25.358,25.702 +1409,43.985,222.090,476.850,354.039,596.200,227.379,481.228,39.611,100.886,39.611,328.029,329.501,341.760,24.998,22.133,24.998 +1410,44.015,225.860,472.934,350.788,602.023,231.446,478.268,43.680,94.514,43.680,328.108,331.101,343.555,24.921,22.824,24.921 +1411,44.046,225.860,472.934,350.788,602.023,231.446,478.268,43.680,94.514,43.680,328.108,331.101,343.555,24.921,22.824,24.921 +1412,44.075,229.167,469.088,346.351,606.956,235.204,475.653,47.400,88.122,47.400,325.931,332.477,343.769,24.579,21.218,24.579 +1413,44.105,232.753,466.220,342.130,611.340,238.639,473.443,50.826,81.964,50.826,325.915,333.318,344.551,24.319,19.641,24.319 +1414,44.136,235.414,462.695,338.629,614.712,241.859,471.548,53.945,76.310,53.945,323.492,334.464,345.394,23.898,19.494,23.898 +1415,44.168,236.441,457.411,335.863,617.214,244.787,470.064,56.592,71.466,56.592,315.651,334.894,345.965,23.232,19.993,23.232 +1416,44.199,232.926,449.550,332.158,619.571,245.125,469.959,59.133,66.949,59.133,298.592,335.484,346.146,18.193,19.578,18.193 +1417,44.229,209.575,399.814,329.800,621.100,247.395,468.779,61.260,63.435,61.260,189.052,335.410,346.361,17.819,19.230,17.819 +1418,44.261,237.799,441.873,326.942,622.327,251.053,466.755,61.957,59.642,61.957,289.585,335.649,345.969,20.681,19.464,20.681 +1419,44.292,246.936,454.736,324.589,623.598,252.538,466.170,63.900,55.729,63.900,320.681,335.599,346.147,21.643,19.314,21.643 +1420,44.322,252.373,456.186,322.683,624.354,255.887,464.526,67.152,51.340,67.152,328.347,334.680,346.447,22.899,19.990,22.899 +1421,44.351,254.303,455.838,320.348,624.664,257.266,463.606,69.123,46.005,69.123,329.300,333.902,345.928,21.959,20.813,21.959 +1422,44.382,256.898,455.904,317.321,625.024,259.189,462.502,70.848,40.086,70.848,331.227,333.140,345.197,21.218,21.875,21.218 +1423,44.413,256.898,455.904,317.321,625.024,259.189,462.502,70.848,40.086,70.848,331.227,333.140,345.197,21.218,21.875,21.218 +1424,44.441,259.235,455.517,313.494,626.509,261.228,461.916,72.699,33.981,72.699,331.974,332.554,345.379,20.864,24.657,20.864 +1425,44.472,261.629,454.154,310.380,626.712,263.422,460.654,74.578,27.084,74.578,331.647,331.420,345.132,21.274,25.911,21.274 +1426,44.503,263.389,453.138,307.099,626.723,265.005,459.751,76.269,19.687,76.269,330.771,330.284,344.385,20.391,27.227,20.391 +1427,44.534,265.740,452.088,304.034,626.336,267.115,458.540,77.969,11.802,77.969,330.416,328.575,343.610,20.811,27.671,20.811 +1428,44.566,267.080,450.910,300.759,626.540,268.399,458.044,79.526,3.900,79.526,328.633,327.150,343.143,19.444,27.640,19.444 +1429,44.597,269.479,450.052,297.851,626.231,270.607,457.244,81.085,176.248,81.085,327.776,325.203,342.335,20.107,27.367,20.107 +1430,44.628,271.136,449.547,294.283,626.890,272.106,457.015,82.600,168.930,82.600,327.574,324.969,342.634,19.524,27.202,19.524 +1431,44.659,273.278,449.367,290.537,626.718,274.009,456.386,84.053,160.907,84.053,328.141,325.112,342.255,19.457,25.406,19.457 +1432,44.689,275.173,449.212,287.177,627.320,275.741,456.452,85.515,152.850,85.515,327.954,324.783,342.478,19.118,25.097,19.118 +1433,44.719,276.675,448.319,284.021,627.735,277.127,456.218,86.730,144.689,86.730,327.437,325.594,343.262,18.883,23.937,18.883 +1434,44.749,278.391,447.849,280.750,628.250,278.689,456.493,88.025,135.000,88.025,326.151,325.976,343.451,18.644,22.627,18.644 +1435,44.786,280.689,446.985,277.334,628.493,280.726,456.234,89.770,127.278,89.770,325.989,328.020,344.487,18.140,20.605,18.140 +1436,44.830,282.384,445.520,274.831,629.546,282.222,456.770,90.826,119.745,90.826,323.226,329.312,345.729,18.589,19.846,18.589 +1437,44.864,284.996,442.089,273.305,630.719,284.318,457.345,92.545,112.011,92.545,316.843,330.525,347.385,18.426,20.120,18.426 +1438,44.899,287.514,433.676,271.618,632.029,285.808,457.980,94.014,104.036,94.014,300.507,332.516,349.232,17.956,20.616,17.956 +1439,44.936,295.506,374.766,268.424,632.251,287.683,458.217,95.356,95.515,95.356,182.512,333.120,350.145,17.890,22.090,17.890 +1440,44.967,290.841,448.844,269.351,631.977,289.755,458.208,96.618,88.452,96.618,331.072,334.391,349.926,18.275,23.505,18.275 +1441,44.999,292.308,451.975,267.548,632.651,291.352,458.694,98.098,80.981,98.098,337.576,334.181,351.151,18.807,22.042,18.807 +1442,45.032,294.673,450.933,265.525,631.685,293.367,458.605,99.666,72.929,99.666,335.032,333.052,350.596,19.071,20.745,19.071 +1443,45.065,296.962,452.192,263.702,630.209,295.763,458.187,101.310,65.056,101.310,337.712,331.059,349.938,19.219,20.791,19.219 +1444,45.098,299.178,452.231,261.576,628.966,297.836,458.031,103.029,56.746,103.029,337.511,329.508,349.418,19.340,20.961,19.340 +1445,45.131,302.349,452.289,257.806,628.293,300.695,458.456,105.018,48.715,105.018,337.527,327.921,350.298,19.388,25.091,19.388 +1446,45.165,304.706,452.312,255.084,626.761,302.844,458.521,106.699,41.186,106.699,336.772,326.054,349.737,19.157,25.682,19.157 +1447,45.198,307.922,452.788,251.880,624.647,305.916,458.644,108.905,33.024,108.905,336.732,324.478,349.112,19.232,25.866,19.232 +1448,45.234,310.895,453.122,247.755,622.013,308.699,458.865,110.925,25.560,110.925,336.011,324.258,348.309,19.340,26.515,19.340 +1449,45.266,314.241,453.603,244.723,619.798,311.800,459.301,113.199,17.650,113.199,335.488,321.872,347.886,19.302,26.639,19.302 +1450,45.297,317.685,454.523,240.655,617.041,315.013,460.109,115.560,9.162,115.560,334.927,320.216,347.312,19.572,26.369,19.572 +1451,45.330,321.005,455.354,236.050,614.440,318.026,460.985,117.878,1.397,117.878,335.213,318.369,347.954,19.210,25.505,19.210 +1452,45.362,324.846,456.677,231.252,611.997,321.342,462.626,120.503,174.352,120.503,335.045,318.512,348.853,19.488,25.043,19.488 +1453,45.393,329.168,457.745,226.106,608.374,324.897,464.231,123.366,166.390,123.366,333.905,318.678,349.437,19.352,22.610,19.352 +1454,45.424,333.738,459.776,221.069,605.180,328.632,466.649,126.607,159.171,126.607,333.574,319.061,350.697,19.312,21.456,19.312 +1455,45.454,340.253,459.367,216.466,602.917,331.869,469.485,129.644,153.043,129.644,326.467,319.358,352.748,19.295,19.437,19.295 +1456,45.485,348.955,457.191,212.110,599.605,335.029,472.112,133.025,147.469,133.025,313.330,320.131,354.149,18.325,19.724,18.325 +1457,45.515,379.889,435.475,208.256,596.333,338.505,475.060,136.273,142.365,136.273,241.362,320.468,355.899,18.192,19.750,18.192 +1458,45.547,383.074,443.650,203.979,591.537,342.074,478.543,139.600,138.240,139.600,249.121,320.966,356.797,18.196,19.634,18.196 +1459,45.579,383.074,443.650,203.979,591.537,342.074,478.543,139.600,138.240,139.600,249.121,320.966,356.797,18.196,19.634,18.196 +1460,45.607,351.640,478.020,200.255,587.249,345.662,482.503,143.130,134.232,143.130,343.400,321.130,358.345,18.800,20.609,18.800 +1461,45.637,354.438,483.353,196.754,582.295,349.214,486.722,147.184,129.806,147.184,347.420,320.604,359.851,19.573,21.254,19.573 +1462,45.668,358.031,489.683,193.284,576.509,353.002,492.366,151.928,124.465,151.928,349.647,320.655,361.048,19.706,20.256,19.706 +1463,45.699,361.813,495.734,189.996,569.224,356.645,497.953,156.766,118.706,156.766,351.249,320.119,362.498,19.691,21.050,19.691 +1464,45.731,365.095,503.198,188.962,561.906,360.856,504.567,162.104,112.881,162.104,353.485,319.224,362.394,19.647,19.686,19.647 +1465,45.764,368.593,511.427,187.500,553.000,363.786,512.470,167.759,106.699,167.759,351.905,317.903,361.742,19.810,20.114,19.810 +1466,45.798,368.120,520.592,187.472,543.151,363.568,521.093,173.717,100.620,173.717,345.746,315.993,354.905,20.482,21.132,20.482 +1467,45.831,368.000,530.500,187.968,532.689,363.484,530.500,0.000,94.376,0.000,342.000,313.842,351.032,19.000,21.447,19.000 +1468,45.863,369.765,538.340,189.715,520.960,365.313,537.787,7.081,88.114,7.081,343.694,310.457,352.667,24.427,21.610,24.427 +1469,45.895,372.087,549.707,191.998,508.928,367.376,548.519,14.149,81.814,14.149,349.754,308.449,359.470,25.236,20.091,25.236 +1470,45.927,372.207,562.483,195.313,497.548,367.436,560.575,21.801,75.660,21.801,356.164,306.817,366.440,25.626,19.173,25.626 +1471,45.956,367.565,574.618,200.327,486.451,362.861,571.957,29.495,68.962,29.495,356.327,305.348,367.136,25.664,20.821,25.664 +1472,45.986,361.760,587.662,209.131,474.889,356.894,583.918,37.569,62.461,37.569,354.913,305.062,367.193,25.242,19.691,25.242 +1473,46.016,355.556,603.947,217.442,465.206,347.524,595.453,46.603,56.427,46.603,344.642,302.593,368.022,24.126,19.414,24.126 +1474,46.047,355.556,603.947,217.442,465.206,347.524,595.453,46.603,56.427,46.603,344.642,302.593,368.022,24.126,19.414,24.126 +1475,46.076,349.531,626.008,228.399,455.870,335.042,606.285,53.700,49.351,53.700,319.770,302.505,368.716,20.954,18.385,20.954 +1476,46.107,327.691,617.395,240.402,448.107,325.040,612.139,63.236,42.647,63.236,357.373,302.348,369.146,22.229,18.737,22.229 +1477,46.137,312.903,622.447,253.622,442.274,311.460,617.948,72.224,36.069,72.224,360.440,303.354,369.890,22.062,19.409,22.062 +1478,46.168,299.352,625.348,268.004,438.210,298.649,620.658,81.477,29.291,81.477,360.465,304.825,369.950,26.750,19.889,26.750 +1479,46.200,281.000,626.000,283.121,434.806,281.000,620.403,90.000,22.590,90.000,360.000,306.534,371.194,22.000,23.985,22.000 +1480,46.231,263.625,624.307,297.834,437.340,264.397,618.951,98.209,15.895,98.209,358.226,307.822,369.048,26.876,20.388,26.876 +1481,46.263,251.737,619.423,313.000,440.500,253.607,613.958,108.886,9.462,108.886,355.135,310.221,366.688,20.542,20.385,20.542 +1482,46.296,238.218,612.350,327.120,446.106,241.041,607.043,118.009,2.862,118.009,352.999,312.659,365.021,20.212,19.076,20.212 +1483,46.327,226.659,603.365,339.925,452.844,230.597,598.146,127.042,176.309,127.042,350.601,315.151,363.678,19.684,19.765,19.684 +1484,46.358,216.885,593.395,350.582,461.458,221.964,588.446,135.744,169.867,135.744,347.298,317.970,361.481,19.283,19.822,19.283 +1485,46.388,208.244,583.263,359.166,471.183,215.099,578.305,144.122,163.504,144.122,342.105,319.742,359.025,19.757,21.457,19.757 +1486,46.419,198.195,574.957,365.722,481.843,210.080,568.759,152.459,157.956,152.459,329.579,321.253,356.386,18.925,21.511,18.925 +1487,46.449,167.798,572.000,371.002,494.042,206.266,557.735,159.654,152.557,159.654,271.152,321.206,353.208,18.854,19.913,18.854 +1488,46.481,188.757,551.791,374.834,506.783,204.482,548.174,167.047,146.976,167.047,318.319,321.753,350.590,19.871,22.009,19.871 +1489,46.513,194.250,538.901,376.927,519.511,203.823,537.904,174.053,140.157,174.053,328.908,321.883,348.156,19.955,23.899,19.955 +1490,46.544,194.250,538.901,376.927,519.511,203.823,537.904,174.053,140.157,174.053,328.908,321.883,348.156,19.955,23.899,19.955 +1491,46.572,196.000,527.500,377.379,531.923,204.190,527.500,0.000,132.917,0.000,330.000,322.215,346.379,23.000,25.400,23.000 +1492,46.602,199.316,516.445,376.344,544.447,206.045,517.304,7.275,125.166,7.275,331.163,323.760,344.731,25.326,26.605,25.326 +1493,46.632,201.913,508.375,374.469,555.310,208.601,509.930,13.092,117.553,13.092,329.940,323.912,343.672,25.641,26.559,25.641 +1494,46.663,205.170,500.016,371.389,565.777,211.924,502.386,19.335,110.072,19.335,328.605,325.166,342.919,25.345,26.083,25.345 +1495,46.695,209.437,493.232,367.605,575.358,215.649,496.106,24.829,102.575,24.829,328.687,327.129,342.376,25.493,24.701,25.493 +1496,46.726,214.382,486.029,363.220,584.103,220.221,489.533,30.964,94.844,30.964,328.934,329.024,342.553,25.382,22.479,25.382 +1497,46.757,218.616,480.783,358.606,591.995,224.333,484.900,35.754,87.563,35.754,328.996,330.764,343.087,25.093,20.513,25.093 +1498,46.787,222.479,475.742,355.344,598.616,229.009,481.304,40.426,79.992,40.426,327.335,332.451,344.489,24.980,21.202,24.980 +1499,46.818,226.000,470.500,350.562,604.445,233.252,477.752,45.000,72.788,45.000,324.562,333.941,345.073,24.749,20.070,24.749 +1500,46.849,228.806,464.974,346.662,609.200,237.487,475.002,49.118,65.628,49.118,319.306,334.767,345.834,24.228,20.648,24.228 +1501,46.879,228.806,464.974,346.662,609.200,237.487,475.002,49.118,65.628,49.118,319.306,334.767,345.834,24.228,20.648,24.228 +1502,46.908,218.580,446.940,341.911,613.322,238.981,474.142,53.130,58.349,53.130,278.200,334.964,346.204,17.800,19.614,17.800 +1503,46.938,233.913,455.406,337.228,616.010,244.245,470.338,55.321,51.108,55.321,309.080,336.073,345.396,21.648,19.386,21.648 +1504,46.970,243.628,459.126,333.051,618.432,248.499,467.731,60.489,44.145,60.489,325.821,334.519,345.598,22.939,20.430,22.939 +1505,47.001,248.319,458.820,328.261,620.499,251.808,465.908,63.789,37.235,63.789,329.124,333.433,344.924,22.484,21.496,22.484 +1506,47.033,252.627,457.708,322.458,622.725,255.217,463.868,67.195,30.579,67.195,331.640,332.513,345.004,21.873,23.949,21.873 +1507,47.066,256.721,456.137,316.972,624.207,258.861,462.111,70.292,23.629,70.292,331.704,332.107,344.395,22.285,25.595,22.285 +1508,47.098,259.652,454.557,312.244,624.334,261.422,460.426,73.217,17.067,73.217,330.944,330.335,343.202,20.713,27.882,20.713 +1509,47.131,263.092,452.835,307.031,625.948,264.735,459.543,76.239,9.039,76.239,329.567,328.415,343.380,20.278,27.675,20.278 +1510,47.163,266.449,451.287,301.920,626.612,267.835,458.427,79.011,1.749,79.011,328.648,326.397,343.196,19.605,27.125,19.605 +1511,47.196,270.307,449.816,296.293,626.574,271.369,457.183,81.798,175.314,81.798,327.543,325.368,342.429,20.099,26.714,20.099 +1512,47.227,273.609,449.245,290.809,626.573,274.293,456.249,84.428,168.887,84.428,328.174,324.548,342.247,19.274,26.038,19.274 +1513,47.257,276.731,448.850,285.405,627.256,277.126,456.050,86.864,162.121,86.864,328.384,324.379,342.805,19.149,26.525,19.149 +1514,47.287,280.282,448.474,279.932,627.267,280.348,455.621,89.469,155.266,89.469,328.977,324.422,343.270,18.888,25.003,18.888 +1515,47.317,284.308,448.069,274.739,627.383,284.018,455.659,92.192,146.659,92.192,328.716,324.823,343.906,18.561,24.139,18.561 +1516,47.348,288.513,447.357,269.249,627.057,287.773,455.675,95.080,141.483,95.080,327.996,325.456,344.698,18.793,21.189,18.793 +1517,47.379,288.513,447.357,269.249,627.057,287.773,455.675,95.080,141.483,95.080,327.996,325.456,344.698,18.793,21.189,18.793 +1518,47.407,291.897,446.810,264.250,627.250,290.685,456.197,97.360,135.000,97.360,327.128,325.269,346.059,19.550,20.506,19.550 +1519,47.438,296.265,445.664,259.334,626.810,294.303,456.782,100.008,129.401,100.008,324.457,326.753,347.036,19.290,19.594,19.290 +1520,47.470,300.652,444.330,255.066,626.519,297.631,457.623,102.804,124.380,102.804,320.996,327.604,348.259,18.793,19.460,18.793 +1521,47.500,306.026,439.985,251.316,626.101,300.883,458.393,105.611,120.256,105.611,311.496,328.092,349.721,18.172,20.083,18.172 +1522,47.533,312.596,433.013,247.734,625.376,304.014,459.236,108.122,117.121,108.122,295.625,328.274,350.808,18.144,20.840,18.144 +1523,47.564,329.441,400.485,243.652,624.295,306.983,460.083,110.647,114.341,110.647,224.612,328.563,351.991,18.010,20.391,18.010 +1524,47.597,328.025,419.736,239.287,622.508,310.371,461.275,113.025,111.514,113.025,262.110,328.688,352.381,18.108,19.560,18.108 +1525,47.629,317.747,454.685,235.464,620.505,314.067,462.390,115.530,109.026,115.530,336.029,328.925,353.106,18.344,19.657,18.344 +1526,47.660,320.522,458.117,231.558,618.421,317.445,463.801,118.433,106.592,118.433,340.800,328.828,353.726,19.084,21.104,19.084 +1527,47.690,324.108,461.332,227.022,616.233,321.285,465.904,121.696,102.863,121.696,344.124,327.998,354.870,19.166,20.120,19.166 +1528,47.721,329.019,463.032,222.699,613.030,325.539,467.941,125.334,98.673,125.334,343.647,327.986,355.680,19.457,19.822,19.457 +1529,47.751,334.135,466.229,218.360,609.420,330.410,470.752,129.472,94.024,129.472,344.826,326.374,356.545,19.117,19.294,19.117 +1530,47.783,338.845,469.404,213.670,604.497,334.787,473.678,133.509,88.977,133.509,344.741,325.180,356.529,18.736,19.390,18.736 +1531,47.814,344.588,473.320,209.515,598.893,340.227,477.246,138.013,83.991,138.013,345.334,324.104,357.070,18.954,19.576,18.954 +1532,47.846,344.588,473.320,209.515,598.893,340.227,477.246,138.013,83.991,138.013,345.334,324.104,357.070,18.954,19.576,18.954 +1533,47.875,349.310,478.294,205.469,592.511,345.218,481.429,142.549,78.794,142.549,346.671,322.413,356.981,19.188,19.933,19.188 +1534,47.905,355.117,483.720,201.505,585.050,350.580,486.580,147.771,73.337,147.771,346.517,319.915,357.242,19.107,19.903,19.107 +1535,47.936,359.978,489.957,198.378,576.204,355.713,492.148,152.819,67.694,152.819,347.123,317.546,356.713,19.474,20.283,19.474 +1536,47.965,364.643,497.319,195.285,566.848,360.477,498.956,158.552,61.928,158.552,348.201,315.059,357.154,19.413,21.000,19.413 +1537,47.998,369.038,505.637,193.000,557.000,364.957,506.783,164.325,56.310,164.325,349.780,313.960,358.259,19.983,20.524,19.983 +1538,48.030,369.606,515.236,191.241,545.841,365.688,515.880,170.676,50.631,170.676,346.054,311.192,353.994,20.340,21.547,20.340 +1539,48.062,369.791,525.496,190.016,533.943,364.715,525.742,177.221,44.711,177.221,339.620,308.295,349.783,20.810,21.302,20.810 +1540,48.094,371.236,533.904,190.140,521.832,365.063,533.434,4.351,38.727,4.351,338.218,306.724,350.599,25.069,21.701,25.069 +1541,48.124,374.000,546.064,191.815,509.185,366.548,544.535,11.592,32.816,11.592,341.329,306.193,356.543,25.143,22.848,25.143 +1542,48.155,389.419,565.716,194.852,497.313,368.020,557.727,20.472,26.671,20.472,321.037,305.011,366.721,24.083,21.306,24.083 +1543,48.186,372.970,577.594,200.314,484.786,362.058,572.090,26.764,20.179,26.764,343.017,304.264,367.461,19.690,21.075,19.690 +1544,48.217,361.600,584.773,207.055,473.261,357.041,581.430,36.254,13.917,36.254,358.528,304.362,369.834,25.052,20.993,25.052 +1545,48.246,351.750,596.250,215.751,463.142,348.223,592.723,45.000,7.696,45.000,360.624,304.181,370.600,24.749,20.811,24.749 +1546,48.277,351.750,596.250,215.751,463.142,348.223,592.723,45.000,7.696,45.000,360.624,304.181,370.600,24.749,20.811,24.749 +1547,48.305,340.675,605.914,226.032,455.347,338.312,602.716,53.531,1.584,53.531,362.544,304.354,370.497,23.776,17.385,23.776 +1548,48.335,327.790,614.275,238.027,446.838,325.821,610.520,62.328,175.426,62.328,362.985,305.504,371.465,22.573,19.298,22.573 +1549,48.367,314.111,621.623,251.339,441.770,312.585,617.078,71.431,169.170,71.431,361.780,306.306,371.369,22.151,17.867,22.151 +1550,48.398,298.878,625.770,266.023,437.711,297.990,620.442,80.538,162.992,80.538,360.198,307.681,371.001,27.455,17.843,27.455 +1551,48.431,284.000,627.000,280.734,435.886,284.000,620.943,90.000,156.552,90.000,358.000,309.735,370.114,26.000,18.746,26.000 +1552,48.464,263.499,625.138,296.006,436.251,264.453,618.546,98.231,150.401,98.231,356.547,310.831,369.869,26.734,18.892,26.734 +1553,48.495,250.992,620.149,310.656,439.333,253.249,613.660,109.179,144.137,109.179,353.283,311.798,367.023,20.533,19.626,20.533 +1554,48.527,236.662,613.546,324.315,445.234,240.323,606.791,118.458,138.205,118.458,348.751,313.080,364.118,20.132,20.649,20.132 +1555,48.558,221.615,609.813,335.911,452.606,229.929,599.113,127.848,132.754,127.848,334.332,313.700,361.431,19.832,21.585,19.832 +1556,48.588,192.287,615.924,347.308,462.736,220.275,589.056,136.169,127.415,136.169,280.648,314.426,358.242,19.564,20.153,19.564 +1557,48.618,201.422,586.936,357.094,474.807,213.108,578.700,144.825,122.035,144.825,326.493,315.877,355.087,19.672,21.659,19.672 +1558,48.648,201.550,570.582,364.908,487.133,208.065,567.296,153.234,115.201,153.234,337.683,316.261,352.277,19.604,22.620,19.604 +1559,48.680,198.901,558.160,371.650,500.550,205.085,556.065,161.285,108.435,161.285,338.085,317.493,351.142,19.538,25.614,19.538 +1560,48.711,198.901,558.160,371.650,500.550,205.085,556.065,161.285,108.435,161.285,338.085,317.493,351.142,19.538,25.614,19.538 +1561,48.740,197.374,546.546,375.126,514.025,203.442,545.380,169.123,101.129,169.123,336.676,319.290,349.034,19.914,25.640,19.914 +1562,48.770,197.103,534.745,377.297,527.193,203.517,534.366,176.619,93.945,176.619,334.952,321.237,347.802,19.047,25.594,19.047 +1563,48.801,198.215,522.525,377.712,539.942,205.049,522.895,3.094,87.274,3.094,332.973,322.920,346.662,24.829,25.210,24.829 +1564,48.832,200.981,513.236,377.100,552.300,208.018,514.460,9.866,79.695,9.866,331.845,326.555,346.131,24.716,25.312,24.716 +1565,48.864,203.955,504.252,375.680,563.009,211.714,506.533,16.390,73.706,16.390,330.304,328.721,346.478,24.887,25.103,24.887 +1566,48.897,207.452,495.995,372.312,573.002,215.475,499.318,22.504,67.079,22.504,328.827,330.874,346.194,25.459,22.805,25.459 +1567,48.928,211.951,487.254,368.051,582.337,220.375,491.992,29.358,60.444,29.358,326.677,332.524,346.007,25.439,20.601,25.439 +1568,48.958,215.189,479.979,363.824,590.032,224.893,486.730,34.824,53.824,34.824,322.437,333.795,346.081,25.163,20.009,25.163 +1569,48.988,209.834,470.221,359.086,596.920,227.136,484.754,40.030,47.226,40.030,301.167,334.272,346.358,18.193,19.989,18.193 +1570,49.019,209.384,456.685,353.476,602.528,232.725,478.653,43.264,40.786,43.264,281.556,334.827,345.661,22.746,19.745,22.746 +1571,49.050,230.809,465.923,348.435,606.647,237.849,474.292,49.932,34.651,49.932,323.071,334.253,344.945,24.596,20.312,24.596 +1572,49.082,237.188,464.079,341.812,611.343,242.097,470.967,54.525,28.713,54.525,327.459,333.923,344.375,24.122,22.189,24.122 +1573,49.114,242.965,461.736,335.023,615.160,246.600,467.723,58.736,22.341,58.736,329.826,333.371,343.835,24.087,24.200,24.087 +1574,49.145,242.965,461.736,335.023,615.160,246.600,467.723,58.736,22.341,58.736,329.826,333.371,343.835,24.087,24.200,24.087 +1575,49.173,247.705,459.151,328.604,617.887,250.786,465.172,62.904,15.945,62.904,329.268,332.413,342.796,23.519,27.197,23.519 +1576,49.204,251.615,456.595,322.157,620.129,254.292,462.828,66.755,9.142,66.755,329.063,330.087,342.631,21.811,26.736,21.811 +1577,49.235,256.170,454.645,316.261,622.667,258.529,461.341,70.594,2.936,70.594,328.487,327.698,342.686,21.157,27.169,21.157 +1578,49.266,260.572,452.315,309.512,624.221,262.578,459.521,74.445,177.013,74.445,327.548,326.017,342.507,20.618,27.363,20.618 +1579,49.297,264.970,450.793,302.221,625.449,266.538,458.133,77.943,171.327,77.943,327.145,325.389,342.157,19.758,27.026,19.758 +1580,49.328,269.213,450.085,295.491,626.465,270.305,457.223,81.304,165.203,81.304,327.765,325.241,342.208,19.189,26.433,19.189 +1581,49.358,274.598,449.233,288.608,627.087,275.214,456.379,85.073,159.044,85.073,328.111,324.863,342.455,19.222,25.552,19.222 +1582,49.389,278.756,448.864,281.700,627.400,278.987,456.100,88.172,153.435,88.172,328.120,324.677,342.599,18.937,25.491,18.937 +1583,49.419,283.691,448.050,275.077,627.615,283.465,455.791,91.676,146.310,91.676,328.503,325.054,343.993,18.811,23.297,18.811 +1584,49.450,288.750,446.797,268.292,626.941,287.946,455.589,95.226,140.332,95.226,327.201,325.213,344.859,18.751,21.009,18.751 +1585,49.480,293.885,447.083,261.783,626.281,292.551,455.965,98.542,135.274,98.542,328.032,325.983,345.994,19.247,19.785,19.247 +1586,49.511,293.885,447.083,261.783,626.281,292.551,455.965,98.542,135.274,98.542,328.032,325.983,345.994,19.247,19.785,19.247 +1587,49.540,299.174,445.875,256.127,626.109,296.837,457.031,101.832,130.643,101.832,324.869,326.478,347.666,20.152,19.849,20.152 +1588,49.570,305.246,443.482,250.751,625.186,301.227,458.052,105.422,126.529,105.422,318.849,327.018,349.078,19.280,20.119,19.280 +1589,49.600,312.477,439.691,245.446,623.932,305.582,459.417,109.265,122.816,109.265,308.496,327.337,350.288,18.147,20.735,18.147 +1590,49.632,322.583,429.701,240.334,622.198,309.658,460.720,112.620,120.689,112.620,284.231,327.229,351.439,18.077,20.073,18.077 +1591,49.665,349.928,388.465,235.035,619.747,313.847,462.268,116.053,118.551,116.053,187.882,327.213,352.184,17.928,19.505,17.928 +1592,49.697,327.863,447.308,229.677,616.841,318.484,464.118,119.159,116.463,119.159,314.779,327.361,353.278,18.425,19.524,18.425 +1593,49.729,327.332,459.457,224.356,613.395,322.976,466.212,122.816,114.775,122.816,338.207,327.284,354.282,18.583,20.254,18.583 +1594,49.760,331.422,463.318,219.567,610.028,327.383,468.712,126.825,112.834,126.825,342.007,326.841,355.483,19.188,21.149,19.188 +1595,49.790,336.128,467.855,213.877,605.487,332.404,472.092,131.309,109.489,131.309,345.604,326.051,356.886,19.030,20.809,19.030 +1596,49.821,341.267,472.135,208.991,600.283,337.352,475.931,135.881,105.945,135.881,346.528,324.995,357.435,19.318,19.917,19.318 +1597,49.851,347.523,476.673,204.142,593.844,342.998,480.332,141.044,101.834,141.044,347.055,324.003,358.692,18.845,19.883,18.845 +1598,49.881,352.731,482.846,199.501,586.865,348.320,485.787,146.310,97.679,146.310,349.184,323.143,359.786,19.415,19.954,19.415 +1599,49.912,352.731,482.846,199.501,586.865,348.320,485.787,146.310,97.679,146.310,349.184,323.143,359.786,19.415,19.954,19.415 +1600,49.940,358.192,489.480,195.839,578.934,353.441,492.007,151.995,93.260,151.995,349.166,320.847,359.928,19.312,19.108,19.312 +1601,49.970,363.324,497.077,192.842,569.003,358.779,498.906,158.078,88.794,158.078,350.420,318.266,360.218,19.278,19.533,19.278 +1602,50.000,368.052,505.908,190.576,558.841,363.243,507.262,164.272,84.228,164.272,350.378,316.230,360.368,19.821,19.970,19.821 +1603,50.032,369.104,516.243,189.533,547.439,364.708,516.953,170.830,79.516,170.830,346.682,314.469,355.589,20.408,20.884,20.408 +1604,50.066,368.633,526.637,188.492,535.330,363.861,526.813,177.898,73.670,177.898,341.577,311.632,351.128,21.105,24.719,21.105 +1605,50.097,370.032,535.485,189.812,522.700,365.161,535.016,5.505,69.492,5.505,341.658,308.993,351.444,25.041,21.893,25.041 +1606,50.130,372.326,548.459,191.643,510.190,366.930,547.200,13.134,64.231,13.134,347.142,306.902,358.223,24.898,21.924,24.898 +1607,50.161,372.706,562.040,196.098,497.353,367.936,560.183,21.275,59.500,21.275,355.612,306.339,365.849,25.061,20.679,25.061 +1608,50.192,368.192,577.024,202.498,484.655,362.511,573.683,30.466,55.280,30.466,352.937,304.086,366.119,25.909,20.440,25.909 +1609,50.222,363.465,592.655,209.965,473.374,355.289,585.975,39.245,50.389,39.245,346.449,302.951,367.564,24.509,19.658,24.509 +1610,50.252,378.441,635.688,219.977,462.523,343.696,599.012,46.548,44.756,46.548,267.303,301.971,368.344,20.938,18.120,20.938 +1611,50.282,338.167,612.094,231.272,453.173,334.428,606.395,56.733,39.768,56.733,355.763,302.804,369.396,23.204,18.881,23.204 +1612,50.312,338.167,612.094,231.272,453.173,334.428,606.395,56.733,39.768,56.733,355.763,302.804,369.396,23.204,18.881,23.204 +1613,50.339,323.010,618.541,244.555,445.458,320.972,613.973,65.953,34.380,65.953,360.052,303.235,370.057,22.463,19.416,22.463 +1614,50.371,305.369,624.354,259.194,439.868,304.171,619.960,74.745,29.249,74.745,362.050,303.841,371.159,25.435,20.172,25.435 +1615,50.402,293.027,626.169,274.474,436.433,292.582,620.770,85.296,23.962,85.296,359.570,305.416,370.403,26.568,21.322,26.568 +1616,50.434,271.904,625.576,289.944,436.611,272.170,620.680,93.113,18.747,93.113,359.719,307.075,369.525,27.449,20.626,27.449 +1617,50.465,257.674,622.313,305.432,438.784,258.875,617.020,102.788,13.496,102.788,357.387,308.791,368.241,23.979,20.226,23.979 +1618,50.497,244.489,616.069,319.990,443.064,246.767,610.722,113.070,8.604,113.070,354.260,311.416,365.885,20.615,20.048,20.615 +1619,50.531,232.283,608.362,333.581,449.526,235.595,603.139,122.381,3.128,122.381,352.036,313.843,364.406,19.815,19.572,19.815 +1620,50.562,222.009,598.184,345.945,457.361,226.169,593.471,131.431,178.082,131.431,350.042,316.425,362.614,20.061,19.319,20.061 +1621,50.595,212.908,587.792,355.834,466.643,218.302,583.282,140.097,173.008,140.097,346.593,319.006,360.655,19.813,19.683,19.813 +1622,50.625,205.024,577.409,363.764,476.878,212.446,572.859,148.485,168.099,148.485,340.930,320.861,358.340,19.485,21.515,19.485 +1623,50.654,198.946,567.082,369.613,487.896,208.456,562.938,156.455,164.055,156.455,334.688,322.385,355.435,18.873,21.291,18.873 +1624,50.684,127.874,575.284,374.215,500.315,205.682,552.631,163.768,160.243,163.768,190.800,322.420,352.877,18.437,19.445,18.437 +1625,50.716,181.948,546.730,376.763,512.452,204.353,543.057,170.690,156.552,170.690,304.768,323.529,350.178,20.092,20.957,20.092 +1626,50.747,181.948,546.730,376.763,512.452,204.353,543.057,170.690,156.552,170.690,304.768,323.529,350.178,20.092,20.957,20.092 +1627,50.779,191.558,533.508,378.048,524.591,204.455,533.010,177.788,151.909,177.788,321.764,323.649,347.578,18.849,23.386,18.849 +1628,50.810,196.312,521.379,378.189,537.017,205.629,521.987,3.731,145.886,3.731,327.673,323.716,346.346,24.795,25.345,24.795 +1629,50.841,199.736,511.952,376.334,548.304,207.493,513.362,10.305,139.827,10.305,328.970,324.034,344.738,25.581,25.522,25.581 +1630,50.872,203.283,504.509,373.313,559.223,209.995,506.427,15.945,133.531,15.945,329.116,324.111,343.077,25.824,26.281,25.824 +1631,50.904,206.959,496.099,369.668,569.127,213.402,498.742,22.306,127.131,22.306,328.648,325.771,342.575,25.454,26.366,25.454 +1632,50.934,211.572,488.109,365.238,578.844,217.974,491.591,28.540,120.828,28.540,327.536,327.405,342.112,25.938,26.509,25.938 +1633,50.964,216.000,482.500,360.282,587.128,222.012,486.508,33.690,114.386,33.690,327.273,328.562,341.724,25.239,25.198,25.239 +1634,50.995,220.604,477.381,355.488,593.996,226.296,481.944,38.718,107.969,38.718,327.185,328.609,341.775,25.606,24.320,25.606 +1635,51.033,225.601,473.077,350.538,600.808,231.093,478.243,43.243,101.310,43.243,326.877,330.063,341.958,25.704,22.946,25.704 +1636,51.064,229.826,469.492,345.299,606.844,235.107,475.253,47.490,95.231,47.490,327.296,331.361,342.926,24.388,21.887,24.388 +1637,51.096,233.866,465.450,340.097,611.508,239.279,472.311,51.730,88.847,51.730,325.976,331.356,343.455,24.286,19.821,24.286 +1638,51.127,237.754,462.063,335.808,616.025,243.456,470.398,55.620,82.569,55.620,324.476,333.954,344.673,23.673,20.220,23.673 +1639,51.162,240.419,456.593,330.883,619.907,247.401,468.409,59.421,76.405,59.421,318.347,334.965,345.797,23.206,20.094,23.206 +1640,51.194,237.469,444.965,326.478,622.646,249.191,467.822,62.850,70.074,62.850,294.689,335.076,346.064,17.888,19.543,17.888 +1641,51.225,239.957,434.650,321.697,625.150,254.281,465.408,65.029,63.733,65.029,278.680,335.406,346.540,20.232,19.495,20.232 +1642,51.256,254.436,453.954,317.539,626.663,258.112,463.832,69.590,57.995,69.590,325.586,335.171,346.666,21.513,19.504,21.513 +1643,51.286,258.934,454.451,313.440,627.611,261.357,462.263,72.773,52.253,72.773,330.351,334.068,346.710,20.976,20.814,20.976 +1644,51.315,262.818,454.051,309.095,628.388,264.588,461.057,75.822,46.262,75.822,331.817,333.169,346.269,20.422,20.903,20.422 +1645,51.345,262.818,454.051,309.095,628.388,264.588,461.057,75.822,46.262,75.822,331.817,333.169,346.269,20.422,20.903,20.422 +1646,51.374,266.987,453.396,303.393,629.547,268.307,460.049,78.774,40.930,78.774,332.604,332.099,346.170,20.770,25.481,20.770 +1647,51.404,269.995,452.593,298.285,630.089,270.966,459.145,81.573,34.715,81.573,332.959,331.217,346.205,19.015,25.729,19.015 +1648,51.436,273.984,451.391,293.102,629.906,274.631,458.042,84.443,28.811,84.443,332.323,330.333,345.689,19.368,26.462,19.368 +1649,51.467,277.547,450.615,288.167,629.793,277.864,457.360,87.306,22.791,87.306,331.950,328.926,345.454,18.732,26.992,18.732 +1650,51.498,281.000,450.000,283.457,629.147,281.000,456.574,90.000,16.348,90.000,332.000,327.367,345.147,18.000,27.508,18.000 +1651,51.532,284.681,449.284,278.420,628.440,284.376,456.093,92.564,10.305,92.564,331.250,325.661,344.882,18.474,27.369,18.474 +1652,51.565,288.875,448.345,273.222,627.177,288.191,455.501,95.458,4.316,95.458,330.267,324.266,344.644,18.635,26.811,18.635 +1653,51.598,292.870,448.410,267.976,626.059,291.876,455.370,98.130,178.522,98.130,330.643,322.306,344.705,18.809,25.720,18.809 +1654,51.631,297.003,448.987,262.039,624.808,295.689,455.742,101.004,172.875,101.004,330.995,322.366,344.760,19.305,25.675,19.305 +1655,51.662,301.452,449.235,256.307,623.431,299.711,456.230,103.978,167.276,103.978,331.052,321.927,345.468,19.125,25.896,19.125 +1656,51.692,305.797,449.897,250.729,621.676,303.634,456.962,107.021,161.301,107.021,331.196,321.631,345.973,19.222,24.132,19.222 +1657,51.722,310.558,450.437,244.964,620.030,307.746,458.112,110.120,155.739,110.120,330.919,321.541,347.267,19.365,22.856,19.365 +1658,51.752,315.322,451.510,239.456,618.213,311.790,459.634,113.499,151.011,113.499,330.823,322.084,348.540,19.338,21.927,19.338 +1659,51.784,321.700,451.879,233.935,615.418,316.736,461.601,117.051,146.611,117.051,327.458,322.294,349.292,19.518,19.982,19.518 +1660,51.816,327.048,451.839,228.511,613.168,320.285,463.545,120.018,142.595,120.018,323.891,322.649,350.931,19.742,19.765,19.742 +1661,51.849,334.231,450.654,223.910,610.576,324.238,465.643,123.690,139.764,123.690,316.456,322.795,352.486,18.305,20.377,18.305 +1662,51.880,334.231,450.654,223.910,610.576,324.238,465.643,123.690,139.764,123.690,316.456,322.795,352.486,18.305,20.377,18.305 +1663,51.908,344.588,446.353,218.952,606.948,328.179,467.890,127.304,137.406,127.304,299.461,322.750,353.614,18.030,19.283,18.030 +1664,51.938,367.742,429.503,214.479,603.500,332.192,470.709,130.786,136.202,130.786,246.031,322.488,354.875,18.083,19.617,18.083 +1665,51.969,392.981,416.000,209.500,599.000,336.185,473.889,134.454,135.000,134.454,193.860,321.734,356.056,18.047,19.092,18.047 +1666,52.000,348.131,470.851,205.433,593.915,340.669,477.523,138.198,133.764,138.198,336.769,321.949,356.788,18.388,19.408,18.388 +1667,52.033,349.908,477.784,200.889,588.585,344.710,481.787,142.400,132.761,142.400,345.099,321.737,358.221,18.760,20.542,18.760 +1668,52.067,353.633,483.401,196.856,582.615,348.984,486.429,146.929,131.326,146.929,348.841,320.794,359.938,19.527,21.752,19.527 +1669,52.100,358.420,489.476,192.927,575.341,353.286,492.214,151.928,128.660,151.928,349.588,319.844,361.225,19.706,20.615,19.706 +1670,52.133,362.590,496.785,189.070,567.050,357.150,499.021,157.655,125.773,157.655,350.883,319.679,362.645,19.321,22.456,19.321 +1671,52.167,366.315,505.016,187.347,558.582,361.293,506.510,163.436,122.619,163.436,352.664,318.446,363.144,19.765,20.686,19.765 +1672,52.200,368.099,514.539,185.063,548.315,362.737,515.518,169.649,119.249,169.649,350.449,317.313,361.350,20.007,22.685,20.007 +1673,52.233,366.976,523.535,185.968,538.400,362.588,523.758,177.089,115.258,177.089,345.486,315.936,354.273,23.072,20.634,23.072 +1674,52.270,368.075,532.916,186.900,526.951,363.447,532.623,3.621,111.625,3.621,343.831,314.214,353.106,23.775,20.774,23.775 +1675,52.311,370.164,544.332,187.892,514.475,364.964,543.333,10.869,108.834,10.869,348.082,312.713,358.673,24.662,22.436,24.662 +1676,52.342,372.542,557.463,192.239,502.459,367.929,555.902,18.687,104.392,18.687,357.362,310.693,367.102,25.019,19.522,25.019 +1677,52.372,368.700,570.100,197.330,490.278,364.088,567.794,26.565,100.746,26.565,357.324,308.687,367.637,25.491,18.609,25.491 +1678,52.403,362.231,583.981,204.740,478.468,358.007,580.951,35.655,97.067,35.655,358.153,306.866,368.549,25.100,18.396,25.100 +1679,52.439,354.112,595.884,213.243,467.669,349.988,591.902,43.995,93.532,43.995,357.865,305.838,369.331,24.484,18.779,24.484 +1680,52.471,343.097,606.804,224.000,458.000,339.659,602.248,52.958,90.000,52.958,358.206,304.000,369.622,24.638,18.000,24.638 +1681,52.501,330.363,617.145,236.237,450.414,327.152,611.153,61.814,86.028,61.814,355.646,304.073,369.242,22.634,18.733,22.634 +1682,52.534,316.171,625.956,250.094,444.914,313.484,618.121,71.075,81.747,71.075,352.243,304.214,368.808,21.649,20.186,21.649 +1683,52.566,313.396,696.104,264.502,440.688,302.013,621.196,81.359,78.530,81.359,216.655,303.199,368.190,27.445,17.981,27.445 +1684,52.599,284.890,632.977,279.912,438.842,284.852,622.411,89.791,74.745,89.791,346.038,304.339,367.170,25.029,19.032,25.029 +1685,52.631,264.306,625.882,295.754,439.378,265.096,620.083,97.756,70.484,97.756,354.672,305.410,366.378,26.572,20.712,26.572 +1686,52.663,252.461,620.651,311.126,442.389,254.121,615.570,108.101,67.068,108.101,353.951,306.505,364.642,20.308,22.316,20.308 +1687,52.694,239.418,612.994,325.438,447.777,241.567,608.799,117.121,63.048,117.121,353.673,308.601,363.101,20.145,23.252,20.145 +1688,52.724,227.802,604.404,338.437,455.131,230.813,600.270,126.059,59.300,126.059,351.135,310.757,361.363,19.819,24.049,19.819 +1689,52.755,218.210,594.195,349.903,464.377,222.044,590.311,134.632,55.376,134.632,347.980,312.936,358.894,19.614,24.491,19.614 +1690,52.785,210.338,583.611,359.563,474.554,215.172,579.968,142.994,51.633,142.994,345.404,316.101,357.511,19.785,24.436,19.785 +1691,52.817,204.770,572.583,367.600,485.861,210.304,569.531,151.125,47.911,151.125,343.650,319.320,356.289,19.883,24.202,19.883 +1692,52.848,200.941,561.052,373.879,497.594,207.286,558.603,158.899,44.162,158.899,341.172,321.834,354.774,19.511,23.729,19.511 +1693,52.880,200.941,561.052,373.879,497.594,207.286,558.603,158.899,44.162,158.899,341.172,321.834,354.774,19.511,23.729,19.511 +1694,52.909,198.373,550.474,378.094,509.391,205.801,548.677,166.399,40.668,166.399,338.116,324.308,353.401,19.972,23.033,19.972 +1695,52.939,197.230,539.615,379.738,521.848,205.063,538.727,173.537,36.989,173.537,335.161,327.012,350.929,19.399,20.488,19.399 +1696,52.969,197.000,527.000,381.000,533.000,206.000,527.000,0.000,33.690,0.000,332.000,328.937,350.000,24.000,19.969,24.000 +1697,53.000,197.428,518.662,380.414,542.987,207.438,519.649,5.631,30.685,5.631,328.744,331.311,348.862,25.062,19.761,25.062 +1698,53.033,198.927,510.134,379.400,552.617,209.905,512.415,11.739,28.227,11.739,325.832,331.791,348.258,24.757,19.483,24.757 +1699,53.065,199.010,503.385,377.304,560.917,211.929,507.613,18.122,26.320,18.122,320.318,333.162,347.504,18.559,19.703,18.559 +1700,53.099,178.372,486.581,375.101,568.414,214.657,501.956,22.964,25.171,22.964,268.501,332.334,347.315,18.228,19.624,18.228 +1701,53.132,184.000,478.000,371.695,575.555,218.591,494.655,25.710,23.643,25.710,269.299,332.910,346.084,22.625,20.200,22.625 +1702,53.164,206.336,482.519,368.229,581.701,221.091,491.023,29.957,22.056,29.957,311.460,332.974,345.520,24.541,20.478,24.541 +1703,53.196,216.207,478.720,363.879,586.940,225.064,485.276,36.514,19.683,36.514,322.081,333.920,344.119,26.700,21.281,26.700 +1704,53.226,221.715,475.838,359.898,593.023,228.556,481.605,40.126,16.574,40.126,326.573,332.355,344.467,25.309,23.471,25.309 +1705,53.257,226.008,472.458,355.037,597.833,232.041,478.290,44.029,12.680,44.029,326.253,332.146,343.036,24.949,24.195,24.949 +1706,53.287,230.007,469.358,350.020,602.334,235.185,475.053,47.726,8.188,47.726,327.457,331.073,342.853,24.553,25.650,24.553 +1707,53.316,234.098,466.122,345.489,606.192,238.874,472.092,51.340,3.302,51.340,327.340,329.491,342.632,24.988,25.861,24.988 +1708,53.347,237.764,463.667,340.059,609.599,241.953,469.584,54.707,177.892,54.707,327.426,328.440,341.926,24.798,26.927,24.798 +1709,53.378,237.764,463.667,340.059,609.599,241.953,469.584,54.707,177.892,54.707,327.426,328.440,341.926,24.798,26.927,24.798 +1710,53.406,240.838,461.362,335.141,612.730,244.831,467.701,57.796,173.454,57.796,326.709,327.865,341.693,23.267,26.791,23.267 +1711,53.438,244.196,459.229,330.254,615.517,247.864,465.787,60.781,167.905,60.781,326.767,327.005,341.794,22.780,27.099,22.780 +1712,53.468,247.410,457.297,325.190,617.595,250.819,464.186,63.667,162.290,63.667,325.585,326.945,340.959,22.469,27.249,22.469 +1713,53.500,250.984,455.629,320.267,619.457,253.967,462.424,66.297,156.801,66.297,326.036,326.559,340.877,22.913,27.049,22.913 +1714,53.533,253.661,454.583,315.454,621.314,256.285,461.361,68.839,150.852,68.839,326.519,326.655,341.055,21.569,26.386,21.569 +1715,53.565,256.536,453.463,310.858,623.089,258.896,460.373,71.147,144.834,71.147,326.952,326.733,341.555,21.027,25.881,21.027 +1716,53.598,259.518,452.956,306.358,624.490,261.520,459.698,73.465,139.086,73.465,327.408,327.062,341.475,20.641,24.988,20.641 +1717,53.630,262.800,451.658,301.887,625.834,264.623,458.859,75.793,133.234,75.793,327.172,327.269,342.027,21.155,24.117,21.155 +1718,53.662,265.459,450.658,297.940,627.080,267.101,458.374,77.989,126.870,77.989,327.083,328.600,342.861,20.811,22.400,20.811 +1719,53.692,267.068,449.624,293.414,627.939,268.613,458.123,79.695,119.887,79.695,325.750,329.685,343.027,19.409,21.127,19.409 +1720,53.722,270.517,448.370,290.389,629.288,271.869,458.062,82.057,113.845,82.057,324.715,330.393,344.286,19.900,20.804,19.900 +1721,53.752,272.883,445.885,287.189,630.738,274.186,458.337,84.030,107.896,84.030,320.598,331.440,345.638,19.462,21.134,19.462 +1722,53.783,275.221,442.132,284.902,632.301,276.403,458.872,85.962,102.127,85.962,313.631,333.221,347.195,19.082,21.024,19.082 +1723,53.814,275.221,442.132,284.902,632.301,276.403,458.872,85.962,102.127,85.962,313.631,333.221,347.195,19.082,21.024,19.082 +1724,53.842,277.217,431.805,281.946,633.109,278.230,458.914,87.859,96.540,87.859,294.168,334.395,348.424,17.838,21.547,17.838 +1725,53.872,280.500,374.500,278.184,633.983,280.500,458.991,90.000,90.431,90.000,181.000,334.103,349.983,17.000,22.007,17.000 +1726,53.904,283.487,446.871,277.182,633.537,283.181,458.732,91.478,85.340,91.478,326.072,335.414,349.803,18.239,20.940,18.239 +1727,53.934,285.899,449.695,274.775,633.295,285.371,458.527,93.421,79.426,93.421,332.482,334.673,350.178,18.521,20.027,18.521 +1728,53.965,288.871,451.195,272.529,632.992,288.165,458.437,95.572,73.918,95.572,335.942,333.793,350.495,18.667,20.239,18.667 +1729,53.996,291.740,451.424,269.810,631.875,290.830,458.157,97.696,68.078,97.696,336.348,332.035,349.937,18.990,20.172,18.990 +1730,54.029,293.913,452.167,267.374,630.759,292.982,457.855,99.300,62.403,99.300,338.013,331.045,349.540,19.063,20.625,19.063 +1731,54.059,296.938,451.784,264.371,629.578,295.731,457.796,101.360,56.077,101.360,336.925,329.762,349.187,19.268,21.060,19.268 +1732,54.090,299.967,452.287,261.012,628.234,298.637,457.805,103.548,50.080,103.548,337.649,328.656,349.001,19.139,22.006,19.139 +1733,54.121,303.604,452.387,256.442,627.533,301.833,458.584,105.945,44.256,105.945,336.945,326.729,349.837,19.230,25.270,19.230 +1734,54.151,306.692,452.915,252.632,625.724,304.746,458.847,108.166,39.144,108.166,337.128,326.115,349.614,19.166,25.972,19.166 +1735,54.182,310.227,453.207,248.716,623.402,308.003,459.128,110.588,33.111,110.588,336.609,324.447,349.259,19.217,26.112,19.217 +1736,54.213,310.227,453.207,248.716,623.402,308.003,459.128,110.588,33.111,110.588,336.609,324.447,349.259,19.217,26.112,19.217 +1737,54.240,314.439,454.109,244.421,620.703,311.996,459.759,113.385,27.848,113.385,336.779,323.515,349.091,19.250,26.175,19.250 +1738,54.271,317.788,455.397,240.204,617.998,315.168,460.788,115.919,22.135,115.919,336.339,322.037,348.327,19.098,26.564,19.098 +1739,54.301,322.361,456.638,235.464,614.623,319.435,461.924,118.968,16.348,118.968,336.443,320.765,348.528,19.216,26.599,19.216 +1740,54.333,326.197,458.185,230.617,611.371,322.998,463.304,122.005,10.539,122.005,336.973,319.792,349.045,18.974,26.019,18.974 +1741,54.367,330.883,460.756,225.953,607.496,327.523,465.490,125.362,5.389,125.362,337.567,317.609,349.179,19.151,24.777,19.151 +1742,54.400,335.163,462.617,221.000,603.500,331.294,467.483,128.484,0.000,128.484,337.779,316.000,350.213,19.632,23.000,19.632 +1743,54.433,340.594,464.802,215.437,598.336,335.572,470.347,132.163,174.611,132.163,336.059,316.613,351.021,19.285,22.015,19.285 +1744,54.467,346.358,467.977,210.381,593.837,339.888,474.187,136.169,169.838,136.169,334.637,316.531,352.573,19.218,20.949,19.218 +1745,54.499,352.531,470.416,205.647,589.088,343.579,477.943,139.944,165.964,139.944,330.811,316.024,354.203,19.535,20.858,19.535 +1746,54.532,365.118,469.605,201.381,583.786,347.596,482.329,144.016,162.449,144.016,312.545,315.937,355.853,19.931,20.018,19.931 +1747,54.564,377.723,471.159,197.339,578.059,351.220,487.259,148.722,159.955,148.722,295.297,315.862,357.317,18.355,19.664,18.355 +1748,54.596,407.925,465.753,193.793,571.483,354.948,492.782,152.969,158.199,152.969,239.688,315.682,358.635,18.397,19.312,18.397 +1749,54.626,392.933,484.410,190.375,563.711,358.340,498.654,157.620,156.640,157.620,285.345,315.271,360.168,18.657,19.743,18.657 +1750,54.655,369.519,502.882,188.220,555.789,361.721,505.337,162.530,155.493,162.530,344.940,315.725,361.289,18.971,20.727,18.971 +1751,54.685,369.014,511.564,185.720,547.354,363.446,512.755,167.925,154.186,167.925,350.677,314.011,362.064,19.772,22.350,19.772 +1752,54.716,367.590,520.828,183.678,536.226,362.022,521.430,173.830,151.847,173.830,346.602,313.587,357.802,20.529,26.794,20.529 +1753,54.747,367.590,520.828,183.678,536.226,362.022,521.430,173.830,151.847,173.830,346.602,313.587,357.802,20.529,26.794,20.529 +1754,54.775,367.104,527.985,184.681,528.467,361.915,527.928,0.626,149.087,0.626,344.056,312.816,354.435,24.261,22.430,24.261 +1755,54.805,368.219,538.028,185.853,517.520,363.310,537.397,7.331,145.784,7.331,347.185,312.082,357.084,25.207,22.062,25.207 +1756,54.836,370.330,550.012,188.681,506.490,365.642,548.796,14.534,142.390,14.534,354.143,311.441,363.830,25.025,21.477,25.025 +1757,54.867,369.810,562.539,193.013,495.080,365.431,560.762,22.087,138.545,22.087,359.472,310.519,368.924,25.475,19.024,25.475 +1758,54.898,364.897,576.338,198.666,483.655,360.507,573.704,30.964,134.818,30.964,359.976,309.725,370.215,25.382,18.892,25.382 +1759,54.930,358.366,588.225,206.818,472.838,354.316,584.946,38.991,131.572,38.991,359.938,308.931,370.360,24.983,18.599,24.983 +1760,54.961,349.580,599.178,216.298,463.050,346.065,595.391,47.141,128.333,47.141,360.221,308.294,370.555,24.342,18.333,24.342 +1761,54.990,338.261,609.305,227.403,454.080,335.306,604.951,55.840,125.096,55.840,360.336,307.706,370.860,23.258,18.398,23.258 +1762,55.021,325.024,618.070,239.816,446.816,322.492,612.714,64.699,121.809,64.699,358.785,307.512,370.635,22.109,18.534,22.109 +1763,55.051,309.547,625.084,252.675,441.096,307.707,618.937,73.339,118.610,73.339,359.474,307.263,372.307,23.181,19.793,23.181 +1764,55.082,296.895,627.394,266.955,437.795,296.139,621.023,83.240,115.332,83.240,357.947,307.415,370.778,26.996,19.735,26.996 +1765,55.114,296.895,627.394,266.955,437.795,296.139,621.023,83.240,115.332,83.240,357.947,307.415,370.778,26.996,19.735,26.996 +1766,55.143,281.461,629.131,281.164,436.864,281.760,621.242,92.169,112.094,92.169,352.656,307.904,368.447,26.640,20.256,26.640 +1767,55.174,266.248,627.860,295.617,438.540,267.824,620.216,101.648,108.778,101.648,351.483,308.667,367.093,26.272,20.867,26.272 +1768,55.205,231.189,671.484,310.539,442.390,251.926,614.801,110.095,105.657,110.095,243.393,308.919,364.107,20.248,18.935,20.248 +1769,55.236,232.382,620.807,324.375,448.311,239.386,608.039,118.746,102.750,118.746,332.707,310.002,361.833,19.855,19.891,19.855 +1770,55.271,223.168,607.177,337.164,455.852,229.010,599.514,127.318,99.246,127.318,340.368,310.678,359.639,19.569,21.485,19.569 +1771,55.301,214.305,595.859,348.635,465.001,220.548,589.759,135.662,96.170,135.662,340.153,311.724,357.608,19.357,23.512,19.357 +1772,55.332,209.447,583.031,356.556,475.597,213.396,580.143,143.830,93.576,143.830,344.757,313.888,354.541,19.517,21.895,19.517 +1773,55.365,204.021,572.244,364.000,486.500,208.532,569.809,151.637,90.000,151.637,342.511,315.000,352.763,19.770,22.000,19.770 +1774,55.397,200.315,560.946,370.813,498.759,205.551,558.947,159.106,87.138,159.106,340.514,316.604,351.721,19.569,24.719,19.569 +1775,55.428,198.256,550.624,374.452,510.676,203.847,549.271,166.399,83.737,166.399,338.289,319.702,349.794,19.737,25.530,19.737 +1776,55.458,197.436,539.964,377.462,522.427,203.868,539.191,173.146,81.027,173.146,335.752,321.855,348.709,19.776,25.422,19.776 +1777,55.488,198.000,527.000,378.576,533.589,204.788,527.000,0.000,78.094,0.000,334.000,324.209,347.576,24.000,25.488,24.000 +1778,55.518,199.827,519.461,378.541,544.489,206.562,520.083,5.274,75.292,5.274,333.459,326.259,346.988,24.909,25.462,24.909 +1779,55.548,201.721,511.293,377.332,554.587,208.868,512.683,11.004,72.777,11.004,332.168,328.211,346.730,25.658,23.688,25.658 +1780,55.579,201.721,511.293,377.332,554.587,208.868,512.683,11.004,72.777,11.004,332.168,328.211,346.730,25.658,23.688,25.658 +1781,55.607,204.034,504.024,375.411,563.532,211.732,506.312,16.557,70.201,16.557,330.332,329.687,346.396,25.466,22.995,25.466 +1782,55.637,207.144,496.218,372.571,572.265,215.175,499.477,22.087,67.598,22.087,329.095,331.088,346.430,25.999,21.772,25.999 +1783,55.668,210.200,490.600,369.101,579.990,218.439,494.719,26.565,65.153,26.565,327.360,332.099,345.782,25.938,20.478,25.938 +1784,55.700,214.227,484.057,365.504,586.508,222.423,489.198,32.093,62.963,32.093,326.484,333.236,345.834,25.330,20.105,25.330 +1785,55.733,217.390,479.447,361.775,592.673,225.840,485.576,35.952,61.206,35.952,324.958,333.752,345.836,25.353,19.534,25.353 +1786,55.767,220.273,475.151,358.142,597.496,229.058,482.447,39.710,59.982,39.710,322.775,334.416,345.615,24.969,19.569,24.969 +1787,55.800,222.281,470.865,354.880,601.482,231.752,479.683,42.955,59.500,42.955,320.342,334.738,346.224,24.859,19.959,24.859 +1788,55.833,223.720,467.925,350.969,605.312,233.609,478.128,45.895,59.563,45.895,317.596,334.937,346.013,22.614,19.280,22.614 +1789,55.866,223.862,465.345,347.584,608.237,234.560,477.380,48.366,60.354,48.366,313.580,335.138,345.785,18.602,19.374,18.602 +1790,55.900,226.501,463.432,344.863,610.806,236.701,475.767,50.412,61.847,50.412,313.979,335.181,345.990,18.540,19.273,18.540 +1791,55.931,228.556,461.751,342.810,612.811,238.528,474.651,52.292,64.359,52.292,313.564,335.006,346.173,18.921,19.942,18.921 +1792,55.962,232.238,460.498,340.559,614.265,241.128,472.527,53.531,67.166,53.531,316.251,335.233,346.166,22.097,20.227,22.097 +1793,55.992,234.794,459.766,338.567,615.508,242.874,471.222,54.804,70.463,54.804,318.091,335.261,346.128,23.769,20.004,23.769 +1794,56.022,236.419,460.287,336.654,616.371,243.595,470.761,55.582,74.578,55.582,320.043,334.871,345.437,23.770,19.612,23.770 +1795,56.052,237.910,461.505,335.594,616.670,243.833,470.269,55.947,79.380,55.947,324.202,334.607,345.357,23.627,20.333,23.627 +1796,56.082,238.264,461.102,334.393,616.828,244.113,469.752,55.934,84.806,55.934,323.933,333.805,344.815,24.213,19.465,24.213 +1797,56.113,238.264,461.102,334.393,616.828,244.113,469.752,55.934,84.806,55.934,323.933,333.805,344.815,24.213,19.465,24.213 +1798,56.141,238.289,462.406,333.527,615.994,243.204,469.640,55.804,90.785,55.804,326.141,332.161,343.632,23.647,19.080,23.647 +1799,56.172,237.928,462.896,334.178,615.132,242.650,469.716,55.305,97.431,55.305,326.727,331.927,343.317,23.527,20.737,23.527 +1800,56.203,237.215,463.299,334.931,614.240,242.003,470.044,54.631,104.455,54.631,326.203,331.776,342.748,23.918,22.375,23.918 +1801,56.233,235.964,463.860,335.803,612.617,240.686,470.300,53.746,111.069,53.746,326.056,330.403,342.028,23.870,23.191,23.870 +1802,56.265,234.888,464.888,337.675,610.360,239.408,470.810,52.651,118.072,52.651,326.202,328.471,341.102,24.016,23.765,24.016 +1803,56.296,233.304,465.850,340.089,608.564,238.049,471.772,51.298,125.433,51.298,325.934,327.703,341.112,24.216,25.462,24.216 +1804,56.326,231.493,466.970,342.173,606.161,236.326,472.688,49.794,132.898,49.794,325.559,327.034,340.532,24.539,26.223,24.539 +1805,56.357,229.491,468.301,345.326,603.779,234.713,474.088,47.936,140.069,47.936,325.186,326.246,340.777,24.445,26.810,24.445 +1806,56.388,227.429,470.102,348.371,601.082,232.745,475.598,45.952,147.529,45.952,325.873,326.190,341.166,24.687,27.227,24.687 +1807,56.418,224.969,472.010,351.528,597.467,230.536,477.334,43.717,155.447,43.717,325.536,326.163,340.943,24.917,28.178,24.917 +1808,56.449,222.965,474.399,355.376,594.686,228.938,479.638,41.257,162.425,41.257,325.947,326.726,341.836,25.863,26.874,25.863 +1809,56.480,222.965,474.399,355.376,594.686,228.938,479.638,41.257,162.425,41.257,325.947,326.726,341.836,25.863,26.874,25.863 +1810,56.507,220.017,477.349,359.030,590.671,226.358,482.387,38.468,169.992,38.468,326.279,327.354,342.475,25.301,26.010,25.301 +1811,56.538,217.227,480.182,362.629,586.728,224.228,485.187,35.561,177.297,35.561,326.071,327.768,343.283,26.368,24.929,26.368 +1812,56.570,212.960,483.271,366.410,581.617,221.638,488.746,32.248,4.607,32.248,323.471,329.076,343.992,25.786,24.430,25.786 +1813,56.602,207.019,486.055,370.042,576.298,219.137,492.705,28.760,11.889,28.760,317.374,330.956,345.021,26.385,22.507,26.385 +1814,56.633,189.958,486.601,373.281,571.641,216.632,497.755,22.694,18.825,22.694,288.231,331.795,346.055,22.175,21.210,22.175 +1815,56.666,195.811,498.140,375.703,566.043,213.353,504.676,20.437,27.022,20.437,309.679,333.235,347.118,18.657,19.625,18.657 +1816,56.698,200.427,504.563,377.749,560.367,211.627,507.674,15.524,34.413,15.524,325.080,332.906,348.328,25.373,19.832,25.373 +1817,56.730,200.148,511.515,378.915,553.768,209.433,513.295,10.856,41.878,10.856,329.233,331.077,348.142,25.037,19.847,25.037 +1818,56.761,198.768,518.515,379.737,545.573,207.078,519.367,5.856,49.635,5.856,332.155,329.844,348.863,25.201,20.039,25.201 +1819,56.791,198.007,529.418,380.336,535.995,205.675,529.451,0.248,57.216,0.248,334.040,327.580,349.376,18.567,23.825,18.567 +1820,56.822,197.563,538.071,379.036,526.271,204.452,537.392,174.369,64.612,174.369,335.823,325.295,349.666,20.016,25.097,20.016 +1821,56.852,198.128,547.707,376.830,515.857,204.193,546.449,168.283,73.379,168.283,338.115,322.019,350.504,19.714,24.556,19.714 +1822,56.883,199.412,557.255,373.425,504.869,205.047,555.406,161.834,80.870,161.834,339.622,318.784,351.484,19.359,25.741,19.359 +1823,56.916,202.314,567.245,368.611,493.498,207.234,564.951,154.998,89.021,154.998,342.052,315.176,352.909,19.063,24.894,19.063 +1824,56.946,206.229,577.456,362.419,482.687,210.884,574.530,147.848,97.524,147.848,343.347,314.346,354.342,19.110,24.504,19.110 +1825,56.976,206.229,577.456,362.419,482.687,210.884,574.530,147.848,97.524,147.848,343.347,314.346,354.342,19.110,24.504,19.110 +1826,57.004,209.783,589.055,354.808,471.932,216.081,583.861,140.486,105.732,140.486,340.155,312.893,356.482,18.865,23.264,18.865 +1827,57.036,211.177,605.632,345.153,462.448,222.856,593.118,133.025,113.760,133.025,323.711,312.635,357.946,19.251,21.762,19.251 +1828,57.067,201.071,642.254,334.645,453.198,230.483,600.508,125.166,120.611,125.166,258.696,311.810,360.831,18.988,19.343,18.988 +1829,57.099,236.645,615.472,323.078,445.553,240.758,607.654,117.747,126.978,117.747,345.909,312.405,363.575,19.500,21.222,19.500 +1830,57.131,249.342,620.538,311.856,440.363,251.881,613.527,109.907,133.580,109.907,351.562,312.036,366.475,20.086,20.880,20.086 +1831,57.162,260.401,624.406,299.504,436.892,261.661,617.833,100.847,140.793,100.847,356.273,312.332,369.659,24.512,19.229,24.512 +1832,57.192,273.942,626.915,286.382,435.511,274.217,620.257,92.365,147.995,92.365,356.852,311.957,370.180,26.060,18.656,26.060 +1833,57.223,291.922,626.547,272.848,436.255,291.450,620.748,85.347,155.266,85.347,359.149,311.155,370.787,24.489,18.849,24.489 +1834,57.253,303.252,624.800,259.407,438.871,302.000,619.585,76.504,162.474,76.504,360.600,310.215,371.326,25.010,18.670,25.010 +1835,57.283,317.933,619.654,246.418,443.291,316.207,615.254,68.587,169.653,68.587,361.692,309.474,371.144,21.814,18.405,21.814 +1836,57.313,330.549,613.140,234.625,449.333,328.458,609.451,60.466,176.941,60.466,362.654,307.737,371.134,23.468,18.599,23.468 +1837,57.348,341.995,604.930,224.403,456.418,339.457,601.628,52.453,3.928,52.453,362.164,306.202,370.492,24.355,18.549,24.355 +1838,57.392,352.080,595.864,215.091,463.793,348.548,592.380,44.608,10.437,44.608,360.703,305.285,370.625,25.117,21.041,25.117 +1839,57.425,361.270,586.510,207.526,473.344,356.321,582.779,37.013,17.622,37.013,356.989,304.759,369.384,25.593,20.699,25.593 +1840,57.456,381.846,586.769,201.232,484.063,361.163,574.950,29.745,25.463,29.745,320.258,304.608,367.902,19.597,19.433,19.597 +1841,57.487,378.783,569.113,196.283,495.057,366.065,563.454,23.986,32.586,23.986,338.009,304.565,365.849,24.057,19.736,24.057 +1842,57.522,374.071,553.765,194.030,504.642,368.429,552.146,16.004,39.472,16.004,349.736,304.368,361.475,25.141,22.477,25.141 +1843,57.554,371.326,542.154,191.399,515.758,366.569,541.343,9.671,46.357,9.671,344.306,305.652,353.957,25.539,21.241,25.539 +1844,57.584,369.307,532.692,190.401,526.811,365.241,532.433,3.648,52.970,3.648,341.538,308.192,349.686,25.093,20.812,25.093 +1845,57.615,369.136,526.324,189.470,536.666,364.312,526.495,177.968,60.430,177.968,340.531,309.208,350.185,20.400,21.318,20.400 +1846,57.645,369.136,526.324,189.470,536.666,364.312,526.495,177.968,60.430,177.968,340.531,309.208,350.185,20.400,21.318,20.400 +1847,57.673,369.250,517.922,189.901,545.926,364.589,518.527,172.600,65.898,172.600,344.123,311.487,353.523,20.774,22.124,20.774 +1848,57.705,369.773,510.735,191.664,554.390,365.548,511.670,167.521,73.142,167.521,349.358,314.165,358.014,19.872,21.287,19.872 +1849,57.736,367.418,503.733,192.304,562.672,362.789,505.154,162.931,79.695,162.931,350.033,316.806,359.717,19.932,20.393,19.932 +1850,57.767,363.946,497.745,193.378,569.794,359.204,499.599,158.647,85.914,158.647,349.822,318.973,360.004,19.440,19.165,19.440 +1851,57.799,360.669,492.692,195.194,576.045,356.055,494.878,154.643,92.175,154.643,350.034,320.453,360.246,19.165,19.467,19.165 +1852,57.832,357.743,487.843,196.099,581.158,352.359,490.839,150.903,98.174,150.903,348.600,321.878,360.922,19.809,20.081,19.809 +1853,57.865,354.306,484.048,198.659,585.666,349.534,487.081,147.563,104.162,147.563,349.118,323.060,360.428,19.798,19.093,19.798 +1854,57.897,350.878,480.803,200.343,589.307,346.359,484.009,144.650,109.983,144.650,348.957,323.631,360.036,19.443,19.650,19.443 +1855,57.928,348.148,478.125,202.289,592.137,343.920,481.422,142.046,115.382,142.046,348.818,323.917,359.540,19.176,19.619,19.176 +1856,57.958,346.544,475.100,204.165,594.389,341.636,479.258,139.737,120.358,139.737,345.758,323.692,358.623,19.373,19.735,19.373 +1857,57.987,345.296,472.504,206.078,596.055,339.874,477.398,137.932,125.012,137.932,343.040,323.432,357.649,19.084,21.045,19.084 +1858,58.018,344.596,470.473,207.230,597.076,338.653,476.129,136.420,128.290,136.420,340.756,323.454,357.163,18.917,20.200,18.917 +1859,58.051,345.413,467.385,208.518,597.958,337.729,474.969,135.374,131.496,135.374,335.124,322.645,356.716,18.615,19.560,18.615 +1860,58.084,393.500,417.000,209.597,599.072,336.381,474.119,135.000,134.345,135.000,194.454,321.818,356.011,17.678,20.081,17.678 +1861,58.116,390.277,418.218,210.476,599.473,335.943,473.415,134.549,137.902,134.549,200.801,321.474,355.706,18.117,19.487,18.117 +1862,58.147,390.277,418.218,210.476,599.473,335.943,473.415,134.549,137.902,134.549,200.801,321.474,355.706,18.117,19.487,18.117 +1863,58.175,361.120,447.019,210.887,599.483,335.808,473.054,134.193,141.280,134.193,282.835,320.936,355.457,18.204,19.673,18.204 +1864,58.206,352.819,455.205,211.249,599.088,335.885,472.744,133.995,145.479,133.995,306.167,320.451,354.928,18.233,19.347,18.233 +1865,58.237,348.418,459.761,211.625,598.578,336.189,472.579,133.652,150.422,133.652,318.867,319.527,354.299,18.804,19.533,18.804 +1866,58.268,345.857,462.691,212.092,597.842,336.628,472.400,133.548,156.194,133.548,326.650,318.311,353.441,19.398,19.536,19.398 +1867,58.300,344.524,464.378,212.586,597.152,337.017,472.208,133.794,162.937,133.794,330.912,317.320,352.606,19.170,20.151,19.170 +1868,58.332,343.810,465.705,212.982,596.706,337.462,472.261,134.076,169.895,134.076,333.734,316.352,351.986,19.067,22.107,19.067 +1869,58.363,343.588,467.045,213.473,596.355,338.400,472.321,134.521,177.614,134.521,337.260,315.476,352.060,19.290,22.647,19.290 +1870,58.394,343.214,468.727,213.451,595.944,339.085,472.833,135.158,6.234,135.158,340.139,315.601,351.786,19.292,24.251,19.292 +1871,58.425,344.246,470.279,212.907,595.432,340.323,474.034,136.254,14.547,136.254,341.115,315.819,351.977,19.113,25.938,19.113 +1872,58.456,345.055,471.059,212.152,595.329,340.945,474.860,137.236,22.770,137.236,341.504,315.926,352.700,19.088,25.397,19.088 +1873,58.485,346.608,472.689,211.068,594.391,342.462,476.346,138.586,31.734,138.586,342.193,316.421,353.249,19.014,25.638,19.014 +1874,58.516,348.049,474.959,209.433,593.486,343.976,478.354,140.194,40.143,140.194,343.523,316.512,354.128,18.949,25.751,18.949 +1875,58.547,348.049,474.959,209.433,593.486,343.976,478.354,140.194,40.143,140.194,343.523,316.512,354.128,18.949,25.751,18.949 +1876,58.575,350.404,476.519,209.230,590.082,346.717,479.387,142.125,48.468,142.125,343.631,317.487,352.972,19.208,21.837,19.208 +1877,58.607,352.488,479.483,207.211,588.863,348.716,482.195,144.273,56.976,144.273,345.031,319.531,354.322,19.384,20.710,19.384 +1878,58.637,354.791,482.680,203.168,585.827,350.482,485.490,146.889,65.475,146.889,346.115,319.123,356.405,19.338,20.146,19.338 +1879,58.668,356.905,485.647,199.964,582.442,352.280,488.380,149.421,74.152,149.421,347.227,319.778,357.971,19.488,19.997,19.488 +1880,58.700,358.883,489.817,197.098,578.211,354.537,492.083,152.457,82.161,152.457,349.043,320.039,358.845,19.583,19.117,19.583 +1881,58.732,361.739,494.191,194.057,573.016,356.996,496.321,155.816,90.594,155.816,349.716,320.055,360.115,19.436,19.367,19.436 +1882,58.764,363.549,499.278,189.947,566.746,358.905,501.013,159.513,99.302,159.513,352.641,319.765,362.556,19.682,21.387,19.682 +1883,58.795,366.276,505.062,187.197,559.742,361.161,506.581,163.457,107.802,163.457,353.128,318.864,363.799,19.770,22.580,19.770 +1884,58.826,368.012,511.554,187.036,552.719,363.594,512.513,167.758,115.089,167.758,353.095,318.186,362.137,19.803,20.631,19.803 +1885,58.857,367.578,518.591,185.682,544.274,362.752,519.232,172.441,123.213,172.441,347.912,317.049,357.650,19.864,20.672,19.864 +1886,58.888,366.985,525.024,184.928,535.193,362.046,525.181,178.182,131.285,178.182,344.810,315.513,354.693,23.052,20.051,23.052 +1887,58.918,367.471,531.551,184.503,524.797,362.101,531.268,3.013,140.092,3.013,344.628,313.693,355.384,24.808,21.813,24.808 +1888,58.948,368.436,540.039,186.774,515.767,363.953,539.358,8.627,147.334,8.627,348.358,312.316,357.426,25.379,20.027,25.379 +1889,58.978,368.436,540.039,186.774,515.767,363.953,539.358,8.627,147.334,8.627,348.358,312.316,357.426,25.379,20.027,25.379 +1890,59.006,370.259,550.307,189.349,505.839,365.804,549.150,14.568,155.225,14.568,354.145,310.452,363.352,25.027,20.254,25.027 +1891,59.039,370.406,560.834,193.072,494.427,366.222,559.229,20.985,163.482,20.985,360.782,308.698,369.746,25.414,19.823,25.414 +1892,59.070,366.945,571.487,198.508,484.550,362.824,569.307,27.876,171.045,27.876,360.431,307.245,369.756,25.211,19.217,25.211 +1893,59.101,361.507,582.755,205.012,475.460,357.694,580.054,35.311,178.502,35.311,360.751,306.105,370.097,25.127,18.693,25.127 +1894,59.133,353.888,592.959,213.151,466.161,350.709,590.018,42.769,6.297,42.769,361.507,304.682,370.169,24.868,19.578,24.868 +1895,59.167,345.888,602.031,222.505,457.845,342.997,598.606,49.837,13.191,49.837,361.606,303.586,370.569,24.026,20.705,24.026 +1896,59.199,335.466,610.660,233.251,450.037,332.855,606.554,57.549,20.925,57.549,361.315,303.182,371.046,23.165,21.923,23.165 +1897,59.231,323.588,618.131,244.039,445.514,321.577,613.731,65.433,28.673,65.433,360.776,303.200,370.452,22.009,20.221,22.009 +1898,59.261,310.540,623.022,256.026,441.463,309.357,618.984,73.658,35.838,73.658,362.294,303.780,370.709,22.403,19.817,22.403 +1899,59.291,293.937,626.839,268.437,439.175,293.156,622.182,80.471,43.025,80.471,359.703,303.827,369.148,26.959,19.933,26.959 +1900,59.321,284.500,626.500,282.184,438.011,284.500,622.006,90.000,50.140,90.000,359.000,304.212,367.989,25.000,21.255,25.000 +1901,59.351,266.006,625.001,296.016,438.709,266.589,620.362,97.168,57.362,97.168,358.458,305.711,367.810,25.803,22.708,25.803 +1902,59.382,253.697,621.078,309.163,441.948,255.042,616.463,106.250,63.869,106.250,355.760,306.824,365.374,21.358,21.920,21.358 +1903,59.414,253.697,621.078,309.163,441.948,255.042,616.463,106.250,63.869,106.250,355.760,306.824,365.374,21.358,21.920,21.358 +1904,59.442,241.962,614.894,322.000,446.807,243.959,610.649,115.201,70.880,115.201,353.571,308.281,362.954,19.640,22.852,19.640 +1905,59.473,230.638,607.574,333.478,453.397,233.363,603.450,123.456,77.800,123.456,350.882,309.418,360.767,19.737,23.009,19.737 +1906,59.504,221.289,598.580,343.869,461.327,224.525,594.918,131.464,84.726,131.464,348.491,311.001,358.265,19.416,23.883,19.416 +1907,59.536,213.223,589.078,352.905,469.977,217.216,585.635,139.231,92.203,139.231,346.033,312.192,356.579,19.351,23.790,19.351 +1908,59.568,207.077,579.169,358.920,479.244,211.190,576.474,146.763,99.211,146.763,343.873,314.513,353.709,19.434,21.530,19.434 +1909,59.600,202.087,569.291,366.500,489.645,207.820,566.488,153.947,106.128,153.947,339.849,316.330,352.613,19.445,25.023,19.445 +1910,59.632,198.430,559.090,371.189,499.866,205.041,556.779,160.731,113.295,160.731,337.238,317.885,351.245,19.685,25.475,19.685 +1911,59.663,196.396,549.501,374.195,510.212,203.551,547.899,167.381,120.763,167.381,334.845,319.862,349.511,19.502,25.554,19.502 +1912,59.693,195.806,539.667,376.010,520.182,203.301,538.807,173.461,128.047,173.461,332.326,321.781,347.414,19.838,25.166,19.838 +1913,59.723,195.994,528.184,377.468,529.492,204.198,528.126,179.594,135.458,179.594,330.105,322.476,346.513,23.063,25.432,23.063 +1914,59.754,196.411,520.595,377.760,538.655,205.502,521.337,4.667,142.712,4.667,327.950,324.042,346.193,24.226,25.306,24.226 +1915,59.786,198.317,513.069,376.920,546.734,207.263,514.602,9.728,150.226,9.728,327.142,325.345,345.295,24.528,24.360,24.528 +1916,59.817,200.405,506.371,376.052,554.899,209.716,508.753,14.349,157.850,14.349,325.946,326.292,345.167,25.256,25.458,25.256 +1917,59.849,203.032,499.336,374.367,562.395,212.700,502.720,19.290,165.280,19.290,324.121,327.481,344.607,26.003,24.393,26.003 +1918,59.880,203.032,499.336,374.367,562.395,212.700,502.720,19.290,165.280,19.290,324.121,327.481,344.607,26.003,24.393,26.003 +1919,59.909,205.634,492.586,372.266,568.701,215.609,497.062,24.167,173.118,24.167,322.647,328.564,344.512,25.534,24.050,25.534 +1920,59.939,208.857,487.768,370.500,574.500,218.678,493.011,28.099,0.000,28.099,322.349,329.000,344.616,25.686,23.000,25.686 +1921,59.969,212.323,483.477,367.679,579.849,221.544,489.158,31.640,7.787,31.640,322.314,330.717,343.976,26.117,23.990,26.117 +1922,60.000,214.901,479.923,364.786,585.013,223.873,486.157,34.796,15.859,34.796,322.407,332.819,344.258,25.318,22.944,25.318 +1923,60.034,216.100,477.200,362.190,590.201,225.889,484.542,36.870,23.824,36.870,320.400,333.541,344.873,25.400,19.674,25.400 +1924,60.068,215.840,472.826,359.154,595.366,228.176,482.681,38.622,31.783,38.622,313.753,334.114,345.332,23.867,20.261,23.867 +1925,60.101,206.492,458.653,356.069,599.916,231.064,480.136,41.163,39.357,41.163,280.617,334.206,345.896,22.267,19.019,22.267 +1926,60.134,191.750,440.250,352.798,603.646,231.611,480.111,45.000,47.361,45.000,233.345,334.848,346.089,17.678,19.644,17.678 +1927,60.165,219.155,462.973,349.989,606.535,233.598,478.633,47.314,55.587,47.314,303.251,334.815,345.858,18.391,19.904,18.391 +1928,60.197,227.703,464.979,347.100,609.200,236.962,475.635,49.010,63.435,49.010,317.887,334.963,346.121,22.983,19.677,22.983 +1929,60.228,231.750,465.200,343.700,611.100,238.803,473.812,50.684,71.565,50.684,323.090,334.569,345.353,24.490,19.606,24.490 +1930,60.258,233.651,464.860,341.343,612.570,239.911,472.859,51.953,79.603,51.953,324.760,334.164,345.074,24.139,20.809,24.139 +1931,60.289,235.361,464.592,338.102,613.062,240.509,471.426,53.011,87.483,53.011,326.586,332.690,343.699,23.828,19.783,23.828 +1932,60.319,236.558,463.910,336.122,613.807,241.358,470.503,53.945,95.856,53.945,326.946,331.951,343.258,23.917,20.712,23.917 +1933,60.348,237.105,463.384,334.893,614.215,241.875,470.117,54.689,103.891,54.689,326.206,331.799,342.708,23.869,21.920,23.869 +1934,60.379,237.105,463.384,334.893,614.215,241.875,470.117,54.689,103.891,54.689,326.206,331.799,342.708,23.869,21.920,23.869 +1935,60.407,237.757,462.995,334.507,613.799,242.308,469.536,55.176,112.129,55.176,326.221,330.169,342.157,23.592,24.112,23.592 +1936,60.439,238.366,462.649,333.868,613.092,242.544,468.715,55.446,120.303,55.446,326.677,328.664,341.409,24.016,24.757,24.016 +1937,60.470,238.055,462.413,334.069,612.746,242.382,468.745,55.658,128.454,55.658,325.909,327.824,341.247,23.668,25.497,23.668 +1938,60.500,238.010,462.409,334.729,611.807,242.245,468.587,55.574,136.762,55.574,325.863,326.877,340.843,23.522,26.270,23.522 +1939,60.533,237.632,462.336,335.599,611.064,242.004,468.664,55.359,144.897,55.359,325.337,326.636,340.720,23.515,26.891,23.515 +1940,60.565,237.250,462.974,336.853,610.198,241.528,469.073,54.953,153.166,54.953,325.654,326.063,340.554,23.835,27.494,23.835 +1941,60.597,236.934,463.111,338.739,609.638,241.446,469.391,54.305,160.927,54.305,325.870,326.710,341.335,24.474,27.388,24.474 +1942,60.626,236.006,464.365,340.609,608.552,240.360,470.257,53.539,168.853,53.539,326.949,327.317,341.602,23.870,27.312,23.870 +1943,60.656,235.038,465.471,342.740,607.674,239.514,471.311,52.535,176.264,52.535,327.334,327.869,342.050,24.190,26.890,24.190 +1944,60.686,233.695,466.244,345.047,606.271,238.404,472.131,51.340,3.662,51.340,327.653,328.863,342.730,24.207,27.536,24.207 +1945,60.718,232.508,467.755,346.968,604.905,237.209,473.343,49.923,10.806,49.923,328.064,330.816,342.667,24.333,26.089,24.333 +1946,60.750,231.354,469.130,349.188,603.608,236.120,474.508,48.447,17.301,48.447,328.848,332.631,343.220,25.597,24.370,25.597 +1947,60.781,231.354,469.130,349.188,603.608,236.120,474.508,48.447,17.301,48.447,328.848,332.631,343.220,25.597,24.370,25.597 +1948,60.810,228.759,470.134,351.671,602.246,234.609,476.366,46.809,23.819,46.809,326.699,333.434,343.794,25.056,22.854,25.056 +1949,60.841,226.250,470.250,354.520,600.364,233.471,477.471,45.000,29.077,45.000,324.562,333.638,344.986,25.456,20.844,25.456 +1950,60.872,220.421,472.091,356.329,598.778,230.445,480.748,40.815,33.366,40.815,318.347,334.211,344.837,24.494,19.718,24.494 +1951,60.903,204.527,462.085,358.415,597.277,229.209,482.046,38.964,36.978,38.964,282.362,334.605,345.849,22.396,19.342,22.396 +1952,60.933,175.024,445.220,360.716,594.748,225.974,485.979,38.660,40.513,38.660,215.832,334.184,346.326,17.804,19.460,17.804 +1953,60.965,207.865,476.388,362.917,592.068,224.123,488.252,36.119,43.974,36.119,306.371,333.929,346.624,18.645,19.315,18.645 +1954,60.996,212.423,482.001,365.135,588.378,223.237,489.099,33.281,47.834,33.281,320.337,333.864,346.208,23.330,19.299,23.330 +1955,61.027,211.670,485.771,367.668,584.026,221.161,491.247,29.982,52.386,29.982,324.620,333.634,346.533,25.919,19.336,25.919 +1956,61.058,209.240,490.898,370.051,578.968,218.285,495.356,26.238,57.588,26.238,326.018,333.022,346.187,25.493,19.363,25.493 +1957,61.089,206.613,497.375,372.800,572.100,214.752,500.585,21.523,63.435,21.523,329.028,331.832,346.528,25.799,21.019,25.799 +1958,61.119,204.276,502.758,374.793,565.269,212.073,505.209,17.447,69.146,17.447,330.136,330.186,346.483,24.940,22.116,24.940 +1959,61.150,201.877,509.720,376.903,557.026,209.407,511.370,12.362,74.962,12.362,331.354,328.530,346.773,25.036,24.043,25.036 +1960,61.180,201.877,509.720,376.903,557.026,209.407,511.370,12.362,74.962,12.362,331.354,328.530,346.773,25.036,24.043,25.036 +1961,61.208,200.189,516.258,377.486,548.419,206.974,517.150,7.485,80.538,7.485,332.580,326.168,346.266,25.373,24.824,25.373 +1962,61.239,198.211,524.236,377.818,538.454,204.620,524.452,1.928,86.760,1.928,334.316,323.840,347.142,24.572,25.167,24.572 +1963,61.269,196.996,535.946,377.351,528.520,203.418,535.506,176.074,93.225,176.074,335.133,321.729,348.007,19.063,25.424,19.063 +1964,61.299,197.116,545.646,375.986,517.662,203.401,544.522,169.859,99.345,169.859,336.465,319.588,349.236,19.688,26.117,19.688 +1965,61.331,198.350,555.321,373.033,506.009,204.410,553.494,163.223,105.680,163.223,337.645,317.855,350.303,19.712,25.505,19.712 +1966,61.361,200.441,565.662,369.308,494.841,206.776,562.904,156.473,112.068,156.473,338.563,316.619,352.381,19.329,25.498,19.329 +1967,61.391,202.522,577.222,362.606,483.395,209.975,572.802,149.326,119.127,149.326,336.441,316.157,353.773,19.162,23.016,19.162 +1968,61.422,201.182,593.156,355.204,471.932,215.329,582.116,142.033,125.493,142.033,320.228,315.383,356.117,19.472,21.382,19.472 +1969,61.453,167.129,647.086,346.572,461.617,221.494,590.547,133.877,131.810,133.877,202.388,314.728,359.259,18.991,19.194,18.991 +1970,61.483,225.103,606.501,336.179,452.499,230.316,599.416,126.347,137.696,126.347,344.560,315.212,362.151,19.087,21.914,19.087 +1971,61.515,237.036,612.709,325.895,445.464,240.387,606.510,118.393,144.268,118.393,350.575,314.809,364.668,19.425,20.008,19.425 +1972,61.550,248.603,618.622,314.059,440.217,250.832,612.536,110.113,150.642,110.113,354.142,314.421,367.106,20.024,19.610,20.024 +1973,61.581,263.525,624.614,301.267,437.128,264.868,618.441,102.274,156.961,102.274,357.179,313.441,369.814,24.089,18.912,24.089 +1974,61.611,263.525,624.614,301.267,437.128,264.868,618.441,102.274,156.961,102.274,357.179,313.441,369.814,24.089,18.912,24.089 +1975,61.639,273.614,626.417,287.731,435.777,273.881,620.345,92.519,163.448,92.519,357.842,312.250,369.997,26.195,18.772,26.195 +1976,61.669,290.906,626.421,273.841,436.416,290.428,620.925,85.030,169.911,85.030,359.470,310.619,370.504,24.603,18.878,24.603 +1977,61.701,303.873,624.655,259.170,439.395,302.671,619.794,76.111,176.645,76.111,361.120,308.935,371.134,25.229,18.599,25.229 +1978,61.735,319.386,619.108,245.931,444.372,317.729,615.077,67.657,2.862,67.657,361.652,306.917,370.368,22.183,17.628,22.183 +1979,61.769,332.869,611.975,233.252,449.544,330.418,607.895,59.007,9.819,59.007,362.037,305.497,371.555,23.630,20.503,23.630 +1980,61.801,345.013,603.464,222.330,457.867,341.858,599.629,50.551,16.260,50.551,360.897,304.160,370.828,24.640,21.160,24.640 +1981,61.835,355.988,594.173,213.017,466.793,351.115,589.731,42.346,23.199,42.346,356.570,304.237,369.757,25.307,20.615,25.307 +1982,61.868,376.368,594.843,204.820,478.203,357.358,581.727,34.604,29.476,34.604,322.499,303.751,368.691,19.927,18.395,19.927 +1983,61.901,376.828,576.893,199.076,489.297,363.851,569.874,28.409,35.455,28.409,337.024,302.945,366.533,23.549,18.735,23.549 +1984,61.933,374.759,560.279,195.251,499.721,368.501,558.031,19.757,41.955,19.757,352.225,303.116,365.524,25.364,20.808,25.364 +1985,61.965,372.478,547.640,192.838,511.270,367.621,546.550,12.649,48.918,12.649,346.577,304.795,356.534,25.185,22.014,25.185 +1986,61.997,370.535,536.264,190.423,523.385,365.624,535.762,5.834,56.310,5.834,341.230,307.304,351.103,25.733,20.801,25.733 +1987,62.028,369.014,526.928,189.400,534.300,364.203,526.974,179.449,63.435,179.449,340.109,308.577,349.731,23.412,21.913,23.412 +1988,62.059,369.196,519.149,190.069,545.158,364.725,519.680,173.228,71.862,173.228,343.878,311.521,352.883,20.562,20.677,20.562 +1989,62.090,369.719,510.480,191.252,555.487,365.289,511.472,167.378,79.439,167.378,349.819,315.196,358.899,20.353,21.511,20.353 +1990,62.120,366.384,502.086,191.653,564.520,361.495,503.683,161.908,86.682,161.908,350.385,317.742,360.674,20.329,19.851,20.329 +1991,62.151,362.435,495.337,193.363,572.563,357.474,497.457,156.859,94.205,156.859,350.058,320.121,360.847,19.451,19.462,19.451 +1992,62.182,357.814,489.777,195.432,579.791,353.147,492.267,151.914,101.497,151.914,350.120,321.834,360.698,19.702,19.798,19.702 +1993,62.214,357.814,489.777,195.432,579.791,353.147,492.267,151.914,101.497,151.914,350.120,321.834,360.698,19.702,19.798,19.702 +1994,62.242,354.048,483.943,197.971,585.326,349.120,487.090,147.442,108.566,147.442,348.827,323.174,360.523,19.852,19.907,19.852 +1995,62.273,349.936,479.065,201.063,590.268,345.157,482.632,143.264,115.463,143.264,347.786,323.482,359.714,19.629,19.691,19.629 +1996,62.303,346.141,474.665,204.457,594.649,341.254,478.854,139.399,122.869,139.399,345.570,323.484,358.445,19.415,20.959,19.415 +1997,62.334,345.544,467.978,208.277,597.629,338.063,475.264,135.760,128.991,135.760,335.818,323.593,356.703,18.980,20.615,18.980 +1998,62.366,388.065,413.449,213.120,601.730,334.052,471.784,132.797,136.458,132.797,196.023,321.863,355.024,18.099,20.451,18.099 +1999,62.398,344.251,453.089,217.084,604.475,330.916,469.281,129.472,143.686,129.472,311.497,321.169,353.449,18.208,20.086,18.208 +2000,62.429,335.535,456.725,221.033,606.444,328.091,466.876,126.254,150.542,126.254,326.540,320.366,351.716,19.569,20.236,19.569 +2001,62.459,329.767,457.673,225.044,608.418,325.068,464.738,123.630,157.141,123.630,333.089,319.613,350.058,19.392,20.823,19.392 +2002,62.490,325.972,456.888,229.638,610.996,322.208,463.129,121.097,164.407,121.097,334.280,319.087,348.857,19.355,23.094,19.355 +2003,62.519,322.626,455.394,233.794,613.072,319.303,461.434,118.820,171.773,118.820,334.366,318.901,348.153,19.413,24.504,19.413 +2004,62.550,319.591,454.549,238.017,615.331,316.714,460.262,116.729,178.794,116.729,334.997,318.287,347.789,19.018,25.121,19.018 +2005,62.587,316.561,453.951,241.460,617.400,313.964,459.578,114.775,5.774,114.775,334.967,319.416,347.361,19.137,26.572,19.137 +2006,62.618,314.087,453.173,244.659,619.035,311.718,458.759,112.977,12.529,112.977,335.342,321.274,347.476,19.076,27.116,19.076 +2007,62.648,311.557,453.049,247.676,621.440,309.339,458.748,111.261,19.026,111.261,335.729,321.688,347.959,19.473,26.862,19.473 +2008,62.678,311.557,453.049,247.676,621.440,309.339,458.748,111.261,19.026,111.261,335.729,321.688,347.959,19.473,26.862,19.473 +2009,62.706,309.730,452.993,250.395,623.239,307.656,458.696,109.983,26.030,109.983,336.275,322.899,348.412,19.308,26.664,19.308 +2010,62.737,307.239,452.417,252.627,624.798,305.258,458.382,108.370,32.229,108.370,336.473,324.799,349.044,19.260,26.279,19.260 +2011,62.768,305.432,452.595,254.744,626.195,303.589,458.587,107.103,38.660,107.103,336.581,325.622,349.121,19.263,25.925,19.263 +2012,62.800,304.231,452.543,256.465,627.536,302.419,458.737,106.314,44.193,106.314,336.915,326.731,349.821,19.476,25.294,19.476 +2013,62.832,302.175,452.937,259.246,627.295,300.819,457.993,105.018,50.194,105.018,338.116,328.031,348.584,19.388,20.998,19.388 +2014,62.862,300.559,452.522,260.357,628.587,299.158,458.168,103.939,56.056,103.939,337.860,329.219,349.495,19.100,21.027,19.100 +2015,62.893,299.417,452.280,261.187,629.359,298.009,458.310,103.141,61.654,103.141,337.500,330.246,349.884,19.347,20.717,19.347 +2016,62.924,298.567,451.854,261.602,629.957,297.163,458.228,102.423,67.413,102.423,337.664,331.308,350.717,19.300,21.177,19.300 +2017,62.954,297.471,452.756,261.643,630.634,296.242,458.590,101.900,72.255,101.900,339.041,331.748,350.963,19.109,20.725,19.109 +2018,62.984,297.114,452.207,262.243,631.211,295.763,458.829,101.530,76.917,101.530,337.693,332.862,351.208,19.236,21.669,19.236 +2019,63.015,296.865,452.173,262.658,630.974,295.573,458.636,101.310,80.602,101.310,337.712,332.905,350.893,19.023,21.691,19.023 +2020,63.046,296.865,452.173,262.658,630.974,295.573,458.636,101.310,80.602,101.310,337.712,332.905,350.893,19.023,21.691,19.023 +2021,63.074,296.820,452.761,262.245,631.527,295.557,459.050,101.348,83.965,101.348,338.493,333.476,351.320,19.059,22.509,19.059 +2022,63.106,297.310,451.641,262.607,631.026,295.880,458.619,101.582,86.236,101.582,336.909,333.385,351.154,19.233,24.473,19.233 +2023,63.136,297.723,452.303,260.025,630.999,296.309,458.956,102.000,88.040,102.000,338.051,332.627,351.654,19.261,21.125,19.261 +2024,63.167,298.629,452.627,258.271,630.971,297.110,459.367,102.705,88.693,102.705,338.071,332.324,351.888,19.241,20.196,19.241 +2025,63.201,300.092,452.312,256.468,630.485,298.373,459.413,103.604,89.091,103.604,337.646,333.101,352.257,19.128,19.997,19.128 +2026,63.233,301.593,452.605,255.118,629.952,299.805,459.409,104.723,88.949,104.723,338.529,332.183,352.600,19.428,20.217,19.428 +2027,63.266,303.528,453.357,252.663,629.073,301.661,459.844,106.057,87.709,106.057,338.860,332.494,352.360,19.305,19.784,19.305 +2028,63.296,305.582,454.249,250.721,628.313,303.658,460.273,107.713,86.072,107.713,339.713,332.004,352.361,19.262,19.876,19.262 +2029,63.326,308.411,455.212,247.701,627.246,306.410,460.785,109.747,83.418,109.747,341.171,331.531,353.015,19.355,19.906,19.355 +2030,63.356,311.345,455.638,245.273,625.616,309.085,461.287,111.801,80.412,111.801,340.379,330.774,352.549,19.312,21.053,19.312 +2031,63.387,314.439,456.578,242.239,624.641,311.911,462.227,114.102,76.924,114.102,341.034,331.750,353.412,19.145,21.015,19.145 +2032,63.417,318.100,457.300,238.648,622.652,315.135,463.231,116.565,73.118,116.565,340.330,330.551,353.592,19.230,20.933,19.230 +2033,63.449,321.477,458.813,235.719,619.918,318.596,463.974,119.168,69.444,119.168,341.298,329.003,353.121,19.373,21.067,19.373 +2034,63.480,321.477,458.813,235.719,619.918,318.596,463.974,119.168,69.444,119.168,341.298,329.003,353.121,19.373,21.067,19.373 +2035,63.509,325.517,460.250,231.969,616.557,322.444,465.123,122.229,65.433,122.229,341.184,326.891,352.706,18.721,20.996,18.721 +2036,63.540,329.330,461.828,228.128,612.787,326.201,466.288,125.049,61.302,125.049,341.612,324.902,352.508,19.355,21.186,19.355 +2037,63.571,333.902,464.622,223.807,608.991,330.599,468.752,128.660,56.807,128.660,341.864,323.166,352.441,18.741,20.741,18.741 +2038,63.602,338.373,466.793,219.885,604.172,334.803,470.766,131.934,52.539,131.934,341.397,321.437,352.079,19.014,21.174,19.014 +2039,63.634,342.967,469.966,215.445,598.802,339.352,473.500,135.644,48.043,135.644,342.282,319.026,352.392,19.258,21.305,19.258 +2040,63.666,347.837,474.495,209.589,594.435,343.390,478.237,139.915,43.409,139.915,342.761,317.133,354.385,19.235,25.466,19.235 +2041,63.697,352.059,478.822,206.947,586.298,348.611,481.338,143.881,38.524,143.881,344.075,316.099,352.611,19.169,21.891,19.169 +2042,63.728,356.485,484.045,202.385,578.923,352.960,486.211,148.434,33.690,148.434,345.383,314.515,353.658,19.341,21.633,19.341 +2043,63.759,361.026,490.043,198.065,571.168,357.019,492.056,153.323,28.926,153.323,346.132,313.429,355.102,19.201,22.065,19.201 +2044,63.790,365.385,496.979,194.641,563.071,360.824,498.774,158.523,24.171,158.523,346.567,311.289,356.370,19.405,22.995,19.405 +2045,63.820,371.038,504.316,191.702,552.430,364.372,506.245,163.863,18.610,163.863,343.529,310.869,357.407,19.870,23.093,19.870 +2046,63.851,374.923,513.288,189.726,541.974,365.553,515.000,169.647,13.496,169.647,336.573,309.453,355.623,20.005,24.893,20.005 +2047,63.882,374.923,513.288,189.726,541.974,365.553,515.000,169.647,13.496,169.647,336.573,309.453,355.623,20.005,24.893,20.005 +2048,63.909,383.007,522.474,188.003,533.555,363.907,523.862,175.845,8.306,175.845,313.989,308.735,352.288,20.553,21.293,20.553 +2049,63.940,440.993,536.709,187.702,521.737,363.389,534.206,1.848,3.077,1.848,196.704,307.899,351.994,20.505,22.763,20.505 +2050,63.971,371.491,545.043,188.495,511.858,364.134,543.914,8.726,178.083,8.726,342.050,307.497,356.937,21.129,21.871,21.129 +2051,64.002,372.220,553.839,191.183,501.501,366.872,552.251,16.535,172.763,16.535,354.580,307.861,365.736,25.179,20.250,25.179 +2052,64.036,368.473,565.342,195.407,489.942,364.686,563.651,24.066,166.954,24.066,360.950,307.832,369.245,25.291,18.961,25.291 +2053,64.069,363.396,578.780,201.409,479.705,359.430,576.226,32.784,161.677,32.784,360.795,307.696,370.229,25.592,17.932,25.592 +2054,64.102,356.131,590.454,209.127,469.424,352.406,587.237,40.815,156.251,40.815,361.039,307.949,370.883,24.941,18.453,24.941 +2055,64.135,346.816,601.039,218.894,460.204,343.717,597.492,48.853,150.781,48.853,361.608,307.714,371.029,23.519,17.943,23.519 +2056,64.168,335.747,610.604,230.026,451.982,333.042,606.374,57.407,145.305,57.407,361.097,307.943,371.139,23.149,18.088,23.149 +2057,64.201,322.892,618.441,242.350,445.144,320.687,613.460,66.125,139.720,66.125,360.345,307.938,371.240,22.771,18.103,22.771 +2058,64.238,306.537,624.990,255.733,440.227,304.962,619.309,74.497,134.262,74.497,359.662,307.721,371.451,24.463,17.813,24.463 +2059,64.283,274.417,627.949,283.572,436.079,274.652,620.599,91.830,122.819,91.830,354.714,308.470,369.422,26.338,20.194,26.338 +2060,64.314,259.100,625.933,298.585,438.045,260.628,618.194,101.174,117.553,101.174,352.401,309.071,368.179,24.902,20.661,24.902 +2061,64.346,259.100,625.933,298.585,438.045,260.628,618.194,101.174,117.553,101.174,352.401,309.071,368.179,24.902,20.661,24.902 +2062,64.380,239.395,640.470,312.075,442.255,250.016,613.607,111.571,113.923,111.571,306.563,309.273,364.335,20.070,19.959,20.070 +2063,64.412,226.514,625.461,325.997,449.172,237.453,606.640,120.165,109.075,120.165,317.738,310.281,361.275,19.974,19.308,19.974 +2064,64.443,221.172,605.261,338.993,457.221,227.178,597.852,129.027,103.536,129.027,340.242,310.896,359.316,19.739,20.903,19.739 +2065,64.474,214.092,591.897,350.553,467.210,218.766,587.643,137.690,97.696,137.690,344.413,311.922,357.053,19.957,23.275,19.957 +2066,64.505,207.790,579.914,358.856,478.542,211.753,577.256,146.151,91.753,146.151,344.764,313.435,354.309,19.889,21.755,19.889 +2067,64.536,202.895,568.412,366.318,490.400,207.412,566.223,154.148,85.668,154.148,342.092,315.611,352.131,19.761,22.874,19.761 +2068,64.569,199.461,556.911,372.909,503.109,204.982,555.108,161.917,79.509,161.917,339.929,318.620,351.546,19.749,24.910,19.749 +2069,64.601,197.886,545.883,376.464,516.168,203.806,544.785,169.490,72.624,169.490,337.922,321.303,349.964,19.989,26.183,19.989 +2070,64.633,197.475,534.576,379.190,528.131,204.455,534.169,176.662,67.068,176.662,335.596,324.712,349.580,18.843,25.185,18.843 +2071,64.665,198.666,523.556,379.940,539.761,206.113,523.915,2.759,61.460,2.759,333.866,326.904,348.777,23.792,24.135,23.792 +2072,64.695,200.838,513.473,379.300,550.942,208.844,514.807,9.462,55.886,9.462,331.922,329.218,348.154,25.317,22.728,25.317 +2073,64.726,202.603,505.473,377.189,561.184,211.469,507.902,15.322,50.332,15.322,329.435,331.109,347.820,25.353,20.446,25.353 +2074,64.757,205.276,496.669,374.442,570.544,215.349,500.600,21.318,44.792,21.318,325.643,332.359,347.270,25.993,19.927,25.993 +2075,64.787,205.246,490.136,370.815,578.499,217.883,496.796,27.790,39.161,27.790,318.202,333.581,346.772,18.805,20.128,18.805 +2076,64.818,151.781,446.476,367.215,585.441,221.512,491.596,32.905,34.029,32.905,180.508,333.674,346.619,18.026,19.595,18.026 +2077,64.851,213.140,475.996,362.278,591.488,225.933,485.269,35.937,28.489,35.937,313.866,334.064,345.466,24.264,19.778,24.264 +2078,64.883,223.995,473.405,357.218,596.802,230.974,479.749,42.274,23.459,42.274,325.439,333.810,344.302,25.763,20.718,25.763 +2079,64.914,223.995,473.405,357.218,596.802,230.974,479.749,42.274,23.459,42.274,325.439,333.810,344.302,25.763,20.718,25.763 +2080,64.942,229.039,469.928,351.498,601.565,234.426,475.724,47.090,17.784,47.090,327.931,333.275,343.755,25.098,23.985,25.098 +2081,64.972,233.778,466.988,345.992,606.243,238.293,472.574,51.050,12.758,51.050,328.953,332.251,343.317,24.271,25.763,24.271 +2082,65.002,238.348,463.756,340.650,610.790,242.661,469.906,54.958,7.070,54.958,328.195,330.175,343.218,24.583,26.872,24.583 +2083,65.035,242.526,461.092,334.914,613.867,246.306,467.310,58.707,2.075,58.707,327.969,328.690,342.521,24.094,26.461,24.094 +2084,65.068,246.155,458.945,329.297,616.581,249.507,465.313,62.241,176.600,62.241,327.653,327.611,342.045,22.682,26.873,22.682 +2085,65.101,250.065,456.827,323.048,619.365,253.057,463.442,65.665,172.484,65.665,327.304,326.972,341.823,22.184,27.023,22.184 +2086,65.135,253.639,454.527,317.363,621.392,256.422,461.716,68.839,167.289,68.839,326.399,326.584,341.816,21.569,26.830,21.569 +2087,65.167,257.977,453.033,311.738,623.183,260.330,460.279,72.007,162.204,72.007,326.396,326.411,341.633,22.013,26.472,22.013 +2088,65.199,261.350,452.202,306.042,624.390,263.199,459.112,75.018,157.590,75.018,327.164,325.922,341.470,20.436,26.657,20.436 +2089,65.231,264.902,450.878,300.407,625.719,266.448,458.093,77.905,152.632,77.905,327.284,325.703,342.041,19.835,25.973,19.835 +2090,65.262,268.839,450.294,294.975,626.867,270.015,457.522,80.754,147.885,80.754,327.663,325.738,342.310,19.694,25.464,19.694 +2091,65.293,272.643,449.479,289.543,627.386,273.467,456.835,83.601,143.344,83.601,327.758,326.005,342.561,19.671,24.776,19.671 +2092,65.326,276.084,447.801,283.854,627.409,276.613,455.999,86.309,136.782,86.309,326.611,326.324,343.041,18.993,24.118,18.993 +2093,65.358,279.375,447.429,278.827,627.904,279.552,455.897,88.802,133.059,88.802,326.970,326.927,343.909,18.536,21.153,18.536 +2094,65.391,283.292,447.044,273.860,628.386,283.068,456.196,91.397,129.242,91.397,326.415,327.524,344.726,18.775,20.822,18.775 +2095,65.425,287.239,445.660,269.267,628.471,286.479,456.296,94.086,125.821,94.086,324.602,328.055,345.928,18.809,19.555,18.809 +2096,65.457,291.088,445.241,264.988,628.492,289.757,456.776,96.582,122.789,96.582,323.622,328.178,346.846,19.028,19.493,19.028 +2097,65.491,295.344,442.880,261.085,628.256,293.021,457.205,99.211,120.466,99.211,318.888,328.600,347.913,19.155,19.774,19.155 +2098,65.523,299.561,440.631,257.481,627.818,296.066,457.579,101.650,118.909,101.650,314.437,328.492,349.047,18.699,20.291,18.699 +2099,65.556,303.975,439.385,253.874,627.236,299.160,458.302,104.281,118.179,104.281,310.728,328.761,349.769,18.113,20.967,18.113 +2100,65.589,308.637,436.582,249.899,625.946,302.028,458.794,106.569,118.118,106.569,303.806,328.352,350.154,17.966,20.238,17.966 +2101,65.623,313.471,434.357,246.331,624.682,304.954,459.281,108.866,118.768,108.866,298.263,327.789,350.942,17.927,20.832,17.927 +2102,65.657,318.113,433.505,242.863,623.213,307.889,460.090,111.038,120.343,111.038,294.219,327.440,351.186,17.949,20.775,17.949 +2103,65.694,322.999,432.646,239.210,621.501,310.822,460.913,113.305,122.276,113.305,290.077,326.893,351.635,18.057,20.381,18.057 +2104,65.730,325.728,436.795,235.667,619.466,313.655,461.869,115.710,124.931,115.710,295.996,326.219,351.654,18.020,20.314,18.020 +2105,65.766,329.210,439.204,231.888,617.107,316.718,462.730,117.967,128.585,117.967,298.988,325.470,352.262,17.993,20.016,17.993 +2106,65.803,331.430,443.805,228.462,614.422,319.674,463.851,120.390,132.397,120.390,305.575,324.356,352.052,18.121,19.490,18.121 +2107,65.839,333.537,448.280,225.247,611.840,322.769,464.981,122.811,137.064,122.811,312.806,323.320,352.548,18.059,20.194,18.059 +2108,65.874,335.981,451.932,221.793,608.539,325.991,466.233,124.937,142.651,124.937,317.774,321.809,352.664,19.236,19.393,19.236 +2109,65.909,338.108,457.160,218.889,605.341,329.603,468.216,127.569,149.315,127.569,324.488,320.188,352.385,19.877,19.487,19.877 +2110,65.943,340.336,461.193,216.263,601.616,333.027,469.774,130.419,156.903,130.419,329.618,318.807,352.162,19.401,19.438,19.401 +2111,65.977,342.519,464.259,213.798,597.826,335.969,471.330,132.805,165.285,132.805,332.367,317.506,351.644,19.134,21.112,19.134 +2112,66.011,345.184,467.741,211.483,594.351,339.422,473.381,135.610,173.541,135.610,335.970,315.625,352.095,19.279,21.692,19.279 +2113,66.046,347.845,471.596,208.955,590.866,342.669,476.151,138.652,2.966,138.652,338.542,314.925,352.330,19.428,23.269,19.428 +2114,66.080,350.673,475.913,206.508,586.965,346.309,479.330,141.934,12.037,141.934,341.776,314.431,352.860,19.170,24.429,19.170 +2115,66.114,353.820,480.368,203.524,582.942,349.747,483.174,145.437,22.249,145.437,344.135,314.770,354.028,19.398,24.401,19.398 +2116,66.148,357.046,485.089,201.662,577.241,353.782,487.038,149.156,32.050,149.156,346.101,313.864,353.704,19.413,21.934,19.413 +2117,66.181,360.836,490.143,199.183,572.599,357.187,491.988,153.184,41.522,153.184,346.577,313.167,354.756,19.605,21.073,19.605 +2118,66.213,364.028,496.195,196.579,567.139,360.350,497.716,157.531,51.397,157.531,347.782,313.910,355.742,19.663,21.050,19.663 +2119,66.245,367.698,502.680,193.887,560.680,363.502,504.024,162.232,61.049,162.232,348.816,313.821,357.629,19.462,21.187,19.462 +2120,66.279,370.036,510.382,191.594,553.093,365.812,511.332,167.314,71.030,167.314,349.611,313.702,358.271,19.757,21.396,19.757 +2121,66.312,368.976,518.639,189.122,544.994,364.419,519.235,172.546,80.797,172.546,345.124,313.659,354.315,20.035,20.614,20.035 +2122,66.346,368.072,527.026,187.000,535.500,363.069,527.169,178.363,90.000,178.363,342.460,313.000,352.470,20.563,22.000,20.563 +2123,66.379,368.569,534.295,188.092,525.810,364.214,533.951,4.514,100.008,4.514,343.694,313.219,352.431,23.952,21.549,23.952 +2124,66.412,370.103,544.195,188.673,514.951,365.323,543.273,10.923,109.573,10.923,347.897,312.522,357.632,24.633,20.875,24.633 +2125,66.444,371.450,556.650,190.970,503.595,367.026,555.175,18.435,119.076,18.435,357.337,311.687,366.665,24.982,20.442,24.982 +2126,66.476,369.012,566.610,194.688,492.150,364.504,564.543,24.624,128.598,24.624,359.156,310.784,369.075,25.340,19.072,25.340 +2127,66.508,363.638,578.324,200.372,480.749,359.538,575.734,32.276,137.968,32.276,360.890,309.507,370.588,24.608,18.789,24.608 +2128,66.541,356.685,589.744,208.227,470.128,352.906,586.540,40.292,147.171,40.292,361.364,308.714,371.273,24.955,18.839,24.955 +2129,66.574,348.291,599.620,217.842,460.433,344.976,595.954,47.875,156.473,47.875,361.692,307.657,371.578,24.366,18.942,24.366 +2130,66.606,337.115,608.923,228.855,452.373,334.564,605.096,56.310,165.493,56.310,362.219,306.569,371.419,23.575,18.645,23.575 +2131,66.638,324.713,615.997,241.124,445.351,322.834,612.084,64.352,174.742,64.352,362.665,305.653,371.346,22.179,19.244,22.179 +2132,66.671,311.653,622.447,254.361,440.628,310.284,618.011,72.852,3.746,72.852,362.686,305.720,371.972,22.141,19.239,22.141 +2133,66.706,294.372,625.694,268.434,437.311,293.586,621.124,80.238,12.061,80.238,361.559,305.355,370.833,26.609,20.570,26.609 +2134,66.739,284.500,626.000,282.705,436.393,284.500,621.196,90.000,20.893,90.000,360.000,305.982,369.607,25.000,21.448,25.000 +2135,66.773,264.984,623.899,297.815,436.683,265.682,618.678,97.607,30.069,97.607,358.759,306.999,369.294,26.301,23.412,26.301 +2136,66.806,252.923,620.109,312.118,440.751,254.474,615.215,107.587,38.290,107.587,357.183,308.128,367.453,20.133,24.166,20.133 +2137,66.839,240.235,613.614,325.094,446.857,242.465,609.140,116.489,46.591,116.489,354.205,309.868,364.203,20.198,25.034,20.198 +2138,66.871,228.715,605.263,337.578,454.286,231.673,601.061,125.144,55.905,125.144,351.686,310.656,361.964,19.770,24.359,19.770 +2139,66.904,219.193,595.657,348.229,463.363,222.731,591.923,133.452,64.799,133.452,348.992,312.216,359.279,19.142,24.803,19.142 +2140,66.936,211.674,585.388,357.106,473.266,215.712,582.201,141.719,73.443,141.719,346.669,313.778,356.958,19.321,25.026,19.321 +2141,66.967,205.572,574.827,364.107,484.188,210.187,572.118,149.589,82.304,149.589,343.804,315.484,354.506,19.442,24.962,19.442 +2142,66.999,201.292,564.241,369.374,495.492,206.405,562.080,157.091,90.725,157.091,340.967,317.025,352.069,19.525,25.188,19.525 +2143,67.031,198.495,553.538,373.162,506.527,204.207,551.932,164.298,99.462,164.298,338.010,318.934,349.877,19.977,25.482,19.977 +2144,67.063,196.717,543.111,375.900,517.300,203.361,542.077,171.158,108.435,171.158,335.147,320.022,348.594,19.587,25.931,19.587 +2145,67.095,196.639,533.210,377.112,528.071,203.497,532.953,177.855,117.181,177.855,333.628,321.134,347.353,18.695,26.519,18.695 +2146,67.126,197.814,522.666,376.882,538.245,204.972,523.087,3.366,126.237,3.366,330.664,323.422,345.006,23.900,26.352,23.900 +2147,67.157,199.810,513.690,376.282,547.292,207.010,514.842,9.090,135.216,9.090,329.963,323.858,344.546,25.594,26.043,25.594 +2148,67.188,201.900,505.873,374.883,556.223,209.654,507.941,14.931,144.162,14.931,328.133,325.263,344.182,25.315,26.077,25.315 +2149,67.220,204.859,498.527,372.561,563.641,212.555,501.362,20.225,153.642,20.225,326.939,326.028,343.342,25.385,26.946,25.385 +2150,67.252,208.691,491.107,370.386,571.703,216.602,494.955,25.942,162.237,25.942,326.131,327.329,343.725,25.495,25.552,25.495 +2151,67.283,211.977,485.540,367.381,578.498,220.118,490.316,30.399,171.323,30.399,324.401,328.438,343.279,25.404,24.436,25.404 +2152,67.312,211.977,485.540,367.381,578.498,220.118,490.316,30.399,171.323,30.399,324.401,328.438,343.279,25.404,24.436,25.404 +2153,67.341,215.968,480.825,364.500,584.500,223.582,486.110,34.765,0.000,34.765,325.196,329.000,343.733,25.495,25.000,25.495 +2154,67.373,220.004,476.874,360.515,590.028,226.866,482.392,38.806,9.109,38.806,325.594,331.704,343.205,25.498,25.464,25.498 +2155,67.404,224.160,473.236,357.150,596.050,230.913,479.433,42.543,18.435,42.543,325.385,332.988,343.716,26.020,23.401,26.020 +2156,67.436,226.872,469.641,353.482,600.913,233.874,476.899,46.027,28.018,46.027,324.421,333.820,344.590,25.046,20.029,25.046 +2157,67.469,227.014,466.834,349.440,606.237,235.668,476.205,47.277,37.214,47.277,319.922,334.228,345.433,24.360,19.673,24.360 +2158,67.501,225.697,456.997,343.962,610.537,239.240,473.307,50.293,46.189,50.293,302.552,336.082,344.952,22.014,18.915,22.014 +2159,67.535,192.112,403.813,339.771,614.844,240.649,472.885,54.904,55.523,54.904,177.437,335.076,346.278,17.823,19.123,17.823 +2160,67.567,230.926,451.451,335.419,617.538,243.470,471.103,57.450,65.072,57.450,299.184,335.171,345.810,18.078,19.644,18.078 +2161,67.599,240.161,455.219,330.791,620.196,247.772,468.352,59.906,74.516,59.906,315.651,335.141,346.008,22.554,19.782,22.554 +2162,67.628,245.009,456.559,326.093,621.653,250.292,466.553,62.136,83.797,62.136,322.480,333.708,345.089,23.053,19.624,23.053 +2163,67.658,247.716,456.220,321.451,622.973,252.031,465.147,64.199,92.862,64.199,324.785,332.784,344.615,22.299,19.276,22.299 +2164,67.689,250.336,455.806,315.743,623.746,253.796,463.640,66.176,101.418,66.176,325.843,333.406,342.971,22.109,23.158,22.109 +2165,67.721,252.984,454.781,313.291,623.343,255.920,462.038,67.973,111.038,67.973,326.440,330.548,342.096,22.708,22.041,22.708 +2166,67.757,254.863,454.252,311.532,623.711,257.495,461.342,69.632,121.701,69.632,326.921,329.259,342.048,21.719,22.871,21.719 +2167,67.787,256.538,453.452,309.637,623.681,258.974,460.594,71.166,131.269,71.166,326.330,327.739,341.422,21.064,24.313,21.064 +2168,67.818,258.930,452.932,308.097,624.010,261.090,459.869,72.699,140.599,72.699,326.856,326.891,341.387,21.819,25.031,21.819 +2169,67.849,260.142,452.245,306.808,624.038,262.120,459.172,74.055,150.255,74.055,327.193,325.839,341.600,20.467,26.419,20.467 +2170,67.880,260.142,452.245,306.808,624.038,262.120,459.172,74.055,150.255,74.055,327.193,325.839,341.600,20.467,26.419,20.467 +2171,67.907,261.631,451.809,305.679,624.480,263.502,458.935,75.292,159.590,75.292,326.924,325.608,341.658,20.348,26.961,20.348 +2172,67.938,263.146,451.484,304.644,624.736,264.834,458.505,76.481,168.906,76.481,327.423,325.354,341.864,20.110,27.746,20.110 +2173,67.969,264.609,451.245,303.630,624.917,266.118,458.112,77.605,177.440,77.605,327.878,325.569,341.938,19.845,28.082,19.845 +2174,68.001,266.096,451.481,302.729,626.315,267.506,458.529,78.690,6.680,78.690,328.495,327.151,342.871,19.612,28.517,19.612 +2175,68.034,267.952,452.236,301.263,627.346,269.067,458.366,79.695,15.680,79.695,331.564,328.953,344.026,20.214,28.292,20.214 +2176,68.066,268.700,451.962,299.777,628.645,269.820,458.751,80.633,24.817,80.633,331.246,330.081,345.008,19.215,27.140,19.215 +2177,68.097,269.889,452.540,298.429,629.876,270.854,458.992,81.495,33.132,81.495,333.119,331.184,346.166,19.031,26.170,19.031 +2178,68.128,271.489,452.168,296.968,631.036,272.430,459.225,82.405,41.290,82.405,332.854,331.697,347.094,19.825,25.306,19.825 +2179,68.159,272.502,451.796,295.880,631.104,273.356,459.003,83.241,49.156,83.241,332.598,332.106,347.112,19.640,22.456,19.640 +2180,68.189,273.709,452.680,293.796,632.127,274.387,459.413,84.249,56.535,84.249,334.044,333.391,347.578,19.327,22.255,19.327 +2181,68.219,274.903,451.718,291.408,632.541,275.530,459.201,85.212,63.189,85.212,333.100,333.209,348.120,19.356,20.835,19.356 +2182,68.250,276.331,451.202,289.106,633.390,276.837,459.145,86.356,69.212,86.356,333.426,335.083,349.345,19.044,20.109,19.044 +2183,68.281,277.723,450.121,286.001,633.826,278.124,459.342,87.510,74.608,87.510,330.861,335.736,349.322,18.808,20.547,18.808 +2184,68.310,277.723,450.121,286.001,633.826,278.124,459.342,87.510,74.608,87.510,330.861,335.736,349.322,18.808,20.547,18.808 +2185,68.338,279.353,449.542,282.567,633.889,279.602,459.360,88.544,78.891,88.544,329.453,336.148,349.095,18.299,21.152,18.299 +2186,68.371,281.500,447.500,279.352,633.264,281.500,458.632,90.000,82.740,90.000,327.000,335.764,349.264,17.000,21.192,17.000 +2187,68.404,283.822,445.358,278.092,633.346,283.420,458.624,91.736,87.155,91.736,323.064,334.079,349.607,17.901,24.318,17.901 +2188,68.436,286.700,438.193,275.000,634.000,285.503,458.884,93.311,90.000,93.311,309.408,334.000,350.860,17.970,22.000,17.970 +2189,68.469,290.009,432.694,269.810,632.591,287.757,458.370,95.013,92.246,95.013,298.695,333.646,350.245,18.141,21.258,18.141 +2190,68.502,293.854,426.383,265.934,632.327,289.987,458.606,96.843,94.794,96.843,285.790,332.851,350.699,18.070,21.177,18.070 +2191,68.535,298.784,417.008,262.748,631.579,292.426,458.527,98.705,97.370,98.705,267.093,332.918,351.101,18.029,20.348,18.029 +2192,68.569,310.183,378.560,259.495,630.827,294.532,458.774,101.041,99.782,101.041,187.704,332.236,351.157,17.906,20.287,17.906 +2193,68.602,315.786,378.758,255.772,629.608,297.268,459.007,102.995,102.365,102.995,186.409,331.902,351.124,17.914,19.683,17.914 +2194,68.634,321.758,379.255,252.377,627.968,300.132,458.876,105.195,104.708,105.195,186.383,330.176,351.394,18.014,19.840,18.014 +2195,68.666,327.624,380.638,248.633,626.502,303.082,459.522,107.281,107.076,107.281,186.006,329.672,351.233,17.994,19.662,17.994 +2196,68.697,333.812,382.499,244.908,625.028,305.970,460.161,109.722,109.466,109.722,186.598,328.937,351.603,17.956,20.230,17.956 +2197,68.728,340.210,384.654,240.803,623.226,309.030,460.870,112.249,111.932,112.249,187.507,328.494,352.202,18.048,19.907,18.048 +2198,68.759,346.654,387.417,236.792,621.132,312.352,461.738,114.775,114.404,114.775,189.065,328.148,352.775,18.020,19.967,18.020 +2199,68.789,353.616,390.469,232.651,618.583,315.696,462.963,117.613,116.884,117.613,189.148,326.938,352.773,18.185,19.817,18.185 +2200,68.819,360.015,395.338,228.283,615.941,319.511,464.564,120.332,119.358,120.332,193.043,326.568,353.452,18.070,19.937,18.070 +2201,68.852,345.456,432.667,223.836,612.209,323.670,466.073,123.111,121.827,123.111,274.117,326.379,353.882,18.537,19.512,18.537 +2202,68.883,342.518,448.034,219.494,608.836,327.556,468.257,126.497,124.269,126.497,304.255,325.382,354.567,18.401,19.801,18.401 +2203,68.915,342.518,448.034,219.494,608.836,327.556,468.257,126.497,124.269,126.497,304.255,325.382,354.567,18.401,19.801,18.401 +2204,68.943,343.078,457.309,214.767,604.713,331.749,470.837,129.946,126.597,129.946,320.200,324.583,355.491,18.457,19.571,18.457 +2205,68.973,343.386,465.946,210.033,599.832,335.895,473.725,133.919,128.845,133.919,334.682,323.573,356.281,18.355,19.499,18.355 +2206,69.004,345.790,472.489,205.350,594.233,340.359,477.377,138.013,130.789,138.013,342.436,322.444,357.049,18.582,19.876,18.582 +2207,69.036,349.931,477.656,200.889,588.205,344.816,481.586,142.465,132.383,142.465,345.277,321.337,358.177,19.157,20.747,19.157 +2208,69.069,355.102,483.102,196.521,581.520,349.379,486.779,147.278,133.325,147.278,346.023,320.013,359.627,19.590,21.444,19.590 +2209,69.102,359.057,490.177,192.427,573.870,353.743,492.926,152.650,133.199,152.650,348.978,319.214,360.943,19.418,20.305,19.418 +2210,69.134,363.590,497.686,189.148,565.281,358.055,499.864,158.523,132.865,158.523,350.366,318.346,362.261,19.405,20.892,19.405 +2211,69.166,367.322,506.721,186.474,555.525,362.537,508.038,164.608,132.054,164.608,354.780,317.383,364.706,19.743,21.678,19.743 +2212,69.197,367.638,516.880,183.825,543.990,362.157,517.740,171.081,130.668,171.081,349.395,316.285,360.491,20.512,24.058,20.512 +2213,69.232,367.002,526.134,184.382,533.543,361.743,526.227,178.990,129.357,178.990,344.405,315.137,354.925,23.049,22.284,23.049 +2214,69.277,368.386,535.828,185.041,521.251,362.774,535.254,5.835,127.991,5.835,345.188,313.979,356.471,25.096,24.259,25.096 +2215,69.307,370.242,548.141,188.095,509.070,365.360,546.972,13.473,126.127,13.473,352.392,312.462,362.433,25.669,22.333,25.669 +2216,69.337,370.922,562.176,193.466,496.978,366.464,560.407,21.636,123.539,21.636,358.800,311.191,368.392,25.435,18.747,25.435 +2217,69.369,365.471,576.382,199.343,484.470,361.142,573.785,30.964,122.112,30.964,359.290,309.726,369.387,25.896,18.266,25.896 +2218,69.407,358.050,589.120,207.602,472.946,354.117,585.877,39.508,120.566,39.508,359.578,308.681,369.773,24.974,18.238,24.974 +2219,69.439,348.616,600.706,217.749,462.250,345.074,596.756,48.122,119.079,48.122,359.678,307.607,370.289,24.314,18.326,24.314 +2220,69.471,336.366,611.303,229.525,453.078,333.332,606.571,57.331,117.553,57.331,359.245,307.259,370.489,23.140,18.503,23.140 +2221,69.504,322.020,619.775,242.498,445.755,319.662,614.332,66.578,116.021,66.578,358.856,306.851,370.719,21.904,18.525,21.904 +2222,69.537,306.382,626.029,256.357,440.162,304.765,619.560,75.964,114.479,75.964,358.225,306.878,371.563,25.951,19.963,25.951 +2223,69.570,291.947,628.196,271.503,437.306,291.407,621.141,85.617,112.969,85.617,355.487,307.141,369.637,24.770,20.042,24.770 +2224,69.603,270.234,629.026,287.005,437.331,270.795,621.011,94.008,111.318,94.008,352.658,308.079,368.727,27.563,20.427,27.563 +2225,69.635,253.523,630.733,302.180,439.566,256.955,617.249,104.281,110.235,104.281,338.867,309.209,366.695,23.329,20.557,23.329 +2226,69.666,227.569,647.176,318.143,445.218,244.542,611.035,115.156,108.748,115.156,282.894,310.255,362.752,20.448,18.935,20.448 +2227,69.697,223.874,614.492,332.547,452.966,232.133,602.579,124.731,107.592,124.731,331.338,311.474,360.331,20.143,20.134,20.143 +2228,69.728,212.988,601.472,345.434,462.481,222.055,592.084,134.005,105.945,134.005,331.767,312.221,357.869,19.494,21.703,19.494 +2229,69.758,208.320,585.260,354.634,473.535,213.835,581.124,143.130,104.560,143.130,340.600,313.707,354.386,19.600,20.652,19.600 +2230,69.789,202.960,572.189,363.463,486.084,208.192,569.409,152.015,103.349,152.015,340.580,315.791,352.429,19.809,22.412,19.809 +2231,69.820,199.466,559.219,370.908,499.589,205.074,557.226,160.436,102.308,160.436,339.217,317.708,351.120,19.601,25.331,19.601 +2232,69.851,197.651,547.218,374.992,513.097,203.591,546.022,168.616,101.189,168.616,336.936,319.480,349.055,19.922,25.872,19.922 +2233,69.883,196.771,535.359,377.072,526.693,203.449,534.943,176.440,100.222,176.440,334.220,321.197,347.601,19.478,25.910,19.478 +2234,69.913,196.771,535.359,377.072,526.693,203.449,534.943,176.440,100.222,176.440,334.220,321.197,347.601,19.478,25.910,19.478 +2235,69.942,198.448,522.942,377.167,539.690,205.141,523.313,3.180,99.246,3.180,331.933,323.210,345.339,23.797,26.075,23.797 +2236,69.971,200.676,512.532,375.698,552.240,207.459,513.765,10.305,98.049,10.305,331.027,325.269,344.816,24.776,25.714,24.776 +2237,70.003,204.297,503.284,373.031,563.762,210.918,505.321,17.103,97.352,17.103,330.405,326.231,344.260,25.512,25.274,25.512 +2238,70.036,208.336,494.339,369.233,574.435,215.296,497.410,23.806,96.654,23.806,328.644,327.860,343.859,25.483,25.262,25.483 +2239,70.070,214.361,485.877,363.211,584.240,220.233,489.387,30.867,95.332,30.867,329.098,328.745,342.781,25.899,22.555,25.899 +2240,70.103,218.871,479.465,357.631,592.595,224.914,483.956,36.621,94.821,36.621,327.589,330.273,342.648,25.021,21.574,25.021 +2241,70.137,224.717,474.330,351.242,600.052,230.014,479.162,42.374,94.008,42.374,327.727,331.080,342.068,25.079,20.440,25.079 +2242,70.170,229.328,468.949,345.529,606.654,235.091,475.236,47.490,93.486,47.490,325.945,331.725,343.002,24.388,21.311,24.388 +2243,70.203,234.804,464.604,338.244,612.458,240.111,471.573,52.712,93.145,52.712,325.561,331.818,343.080,23.963,19.981,23.963 +2244,70.235,240.544,461.604,331.395,617.095,245.013,468.616,57.488,92.880,57.488,326.646,332.636,343.276,23.250,19.680,23.250 +2245,70.268,245.593,458.302,324.503,621.129,249.764,466.174,62.083,92.955,62.083,326.012,332.693,343.830,22.684,19.574,22.684 +2246,70.299,250.197,454.664,318.257,624.950,254.500,464.500,66.371,93.884,66.371,323.633,333.270,345.104,21.931,19.819,21.931 +2247,70.328,255.166,452.148,310.007,627.416,258.865,462.465,70.278,94.838,70.278,323.146,334.344,345.066,21.811,21.600,21.811 +2248,70.359,259.670,450.594,304.408,629.322,262.765,461.429,74.055,96.379,74.055,323.209,334.062,345.746,20.467,21.648,20.467 +2249,70.389,264.387,447.161,298.467,630.730,267.206,460.223,77.821,98.897,77.821,319.802,334.012,346.528,20.605,21.420,20.605 +2250,70.419,268.941,446.620,292.630,631.245,270.928,459.371,81.142,102.233,81.142,320.521,332.959,346.332,19.941,20.839,19.941 +2251,70.451,273.259,444.982,286.915,631.682,274.629,458.880,84.369,106.323,84.369,318.414,332.725,346.347,19.385,20.537,19.385 +2252,70.481,273.259,444.982,286.915,631.682,274.629,458.880,84.369,106.323,84.369,318.414,332.725,346.347,19.385,20.537,19.385 +2253,70.509,277.490,445.773,281.424,630.587,278.027,457.597,87.397,111.012,87.397,322.258,330.906,345.931,18.708,20.735,18.708 +2254,70.541,281.000,446.000,276.300,629.900,281.000,456.950,90.000,116.565,90.000,324.000,329.596,345.900,18.000,20.125,18.000 +2255,70.572,285.651,446.139,271.453,629.146,285.099,456.619,93.013,122.928,93.013,325.024,328.668,346.012,18.869,19.289,18.869 +2256,70.602,289.479,446.339,267.276,627.902,288.523,456.135,95.572,129.560,95.572,326.353,327.257,346.037,18.934,19.609,18.934 +2257,70.633,292.940,446.973,263.307,626.396,291.710,455.912,97.834,136.384,97.834,327.482,325.482,345.529,19.840,20.585,19.840 +2258,70.665,296.698,447.817,259.394,625.427,295.132,456.202,100.584,144.118,100.584,328.763,324.228,345.822,19.401,21.083,19.401 +2259,70.695,300.656,448.363,256.012,624.113,298.769,456.355,103.288,152.354,103.288,329.766,322.949,346.189,19.386,22.821,19.386 +2260,70.726,305.145,449.421,252.145,622.539,302.922,457.018,106.314,159.734,106.314,330.407,321.305,346.239,19.476,24.463,19.476 +2261,70.756,308.389,451.145,248.569,620.829,306.204,457.546,108.853,168.198,108.853,332.769,320.817,346.295,19.204,24.734,19.204 +2262,70.786,312.379,452.052,245.077,618.981,309.940,458.151,111.801,177.032,111.801,333.695,318.972,346.833,19.312,25.580,19.312 +2263,70.819,316.760,454.016,240.823,617.258,314.107,459.720,114.944,5.736,114.944,334.917,320.506,347.499,19.357,26.719,19.357 +2264,70.852,321.406,456.103,236.235,615.059,318.498,461.504,118.301,14.036,118.301,336.137,321.117,348.404,19.099,27.164,19.099 +2265,70.883,321.406,456.103,236.235,615.059,318.498,461.504,118.301,14.036,118.301,336.137,321.117,348.404,19.099,27.164,19.099 +2266,70.911,325.371,458.226,231.844,613.064,322.211,463.403,121.390,22.751,121.390,337.520,320.864,349.650,19.185,25.940,19.185 +2267,70.941,329.772,460.841,227.372,610.711,326.336,465.762,124.919,31.218,124.919,338.999,320.388,351.002,19.308,25.967,19.308 +2268,70.971,334.720,463.969,222.516,607.892,330.878,468.738,128.853,40.314,128.853,340.445,319.977,352.693,18.950,25.740,18.950 +2269,71.002,339.553,467.586,219.173,602.480,336.128,471.278,132.852,49.008,132.852,341.381,320.053,351.455,18.707,21.089,18.707 +2270,71.034,343.968,471.365,213.690,598.474,340.174,474.919,136.872,57.588,136.872,343.156,321.055,353.555,19.114,21.213,19.114 +2271,71.065,349.087,476.228,208.290,593.652,344.803,479.642,141.442,66.238,141.442,344.669,321.056,355.626,18.937,20.509,18.937 +2272,71.095,353.213,481.598,202.852,587.384,348.948,484.485,145.911,75.315,145.911,347.028,320.407,357.329,19.633,19.974,19.633 +2273,71.126,357.922,487.672,197.921,580.287,353.211,490.301,150.832,83.660,150.832,348.122,319.699,358.910,19.698,19.215,19.698 +2274,71.158,361.996,494.722,193.498,572.056,357.220,496.828,156.203,92.137,156.203,349.875,318.599,360.313,19.539,19.270,19.539 +2275,71.188,365.988,502.440,189.965,562.870,361.026,504.068,161.838,100.657,161.838,351.290,318.697,361.735,19.672,19.983,19.672 +2276,71.219,368.597,511.444,185.978,552.310,363.138,512.633,167.712,109.983,167.712,351.917,317.565,363.090,19.967,22.384,19.967 +2277,71.252,367.553,521.004,185.800,541.695,362.735,521.514,173.962,117.457,173.962,346.462,316.274,356.152,20.511,20.453,20.511 +2278,71.283,367.049,531.122,185.312,530.225,362.192,531.087,0.411,125.778,0.411,344.048,314.811,353.764,20.422,20.180,20.422 +2279,71.312,367.049,531.122,185.312,530.225,362.192,531.087,0.411,125.778,0.411,344.048,314.811,353.764,20.422,20.180,20.422 +2280,71.340,368.333,538.808,186.179,518.116,363.608,538.158,7.833,134.153,7.833,347.468,312.695,357.009,25.275,20.257,25.275 +2281,71.372,370.444,551.018,189.419,505.842,366.135,549.845,15.219,142.381,15.219,355.207,311.194,364.138,24.819,20.391,24.819 +2282,71.404,369.369,563.570,193.713,492.877,365.067,561.755,22.874,150.544,22.874,359.965,309.691,369.304,25.179,18.876,25.179 +2283,71.436,364.039,577.062,200.181,481.027,360.065,574.617,31.608,158.682,31.608,361.103,307.875,370.434,25.353,18.722,25.353 +2284,71.468,356.795,588.746,208.637,469.585,353.291,585.826,39.806,166.849,39.806,361.960,306.502,371.084,24.967,19.230,24.967 +2285,71.499,347.914,599.627,218.994,459.437,344.790,596.155,48.013,174.936,48.013,362.207,305.550,371.549,24.306,20.162,24.306 +2286,71.531,336.530,609.864,230.907,451.481,333.949,605.917,56.812,2.679,56.812,361.862,304.462,371.295,23.206,18.985,23.206 +2287,71.561,322.969,617.239,243.960,444.233,321.091,613.111,65.536,9.841,65.536,362.245,304.473,371.316,22.013,20.902,22.013 +2288,71.592,307.064,623.701,257.954,439.705,305.847,619.373,74.303,17.745,74.303,362.857,303.976,371.849,23.495,20.572,23.495 +2289,71.622,291.783,626.345,272.622,437.344,291.211,621.606,83.118,25.463,83.118,360.778,304.694,370.325,26.258,20.723,26.258 +2290,71.651,275.371,625.621,286.932,437.367,275.509,621.201,91.790,33.524,91.790,359.356,305.929,368.201,26.331,20.341,26.331 +2291,71.682,275.371,625.621,286.932,437.367,275.509,621.201,91.790,33.524,91.790,359.356,305.929,368.201,26.331,20.341,26.331 +2292,71.709,264.109,623.995,302.454,438.572,265.189,618.994,102.187,39.971,102.187,358.211,306.920,368.445,25.492,23.825,25.492 +2293,71.740,248.157,618.203,316.575,443.010,250.055,613.226,110.869,47.353,110.869,354.837,307.942,365.491,20.107,24.370,20.107 +2294,71.772,235.787,610.804,329.869,449.545,238.323,606.354,119.683,55.098,119.683,352.889,309.417,363.132,20.147,24.261,20.147 +2295,71.803,225.037,601.900,341.392,457.572,228.201,597.895,128.311,62.700,128.311,350.344,310.903,360.552,20.054,24.079,20.054 +2296,71.836,215.948,592.094,351.759,467.088,219.799,588.459,136.655,70.017,136.655,347.956,312.695,358.547,19.595,24.776,19.595 +2297,71.869,209.058,581.417,359.275,477.659,213.099,578.566,144.800,77.593,144.800,345.335,314.206,355.226,19.485,23.576,19.485 +2298,71.903,203.971,570.341,366.432,488.169,208.620,567.934,152.628,84.495,152.628,343.161,316.041,353.632,19.512,25.820,19.512 +2299,71.935,199.976,559.580,371.405,499.692,205.434,557.605,160.110,92.490,160.110,339.937,317.483,351.546,19.507,25.107,19.507 +2300,71.966,197.822,549.156,374.824,511.470,203.816,547.808,167.325,99.574,167.325,337.341,319.261,349.628,19.709,26.161,19.709 +2301,71.996,197.282,538.681,376.649,522.390,203.543,538.022,173.991,107.447,173.991,334.991,320.460,347.582,19.942,26.439,19.942 +2302,72.026,196.972,528.937,377.216,533.059,204.103,529.006,0.556,114.677,0.556,332.023,321.500,346.288,18.824,26.524,18.824 +2303,72.056,198.506,517.946,376.350,543.279,205.495,518.709,6.226,122.574,6.226,330.964,323.595,345.024,25.051,26.404,25.051 +2304,72.088,201.107,510.365,375.135,552.614,207.987,511.813,11.889,130.163,11.889,329.874,324.680,343.935,24.773,26.373,24.773 +2305,72.119,203.597,502.797,373.236,561.031,210.739,505.019,17.281,137.936,17.281,328.640,324.969,343.601,25.527,26.400,25.527 +2306,72.152,207.075,495.321,370.473,568.924,214.080,498.271,22.834,145.660,22.834,327.908,325.950,343.109,25.466,26.259,25.466 +2307,72.183,211.334,488.306,367.532,576.069,218.141,492.003,28.507,153.543,28.507,327.309,326.474,342.801,25.461,26.228,25.461 +2308,72.214,211.334,488.306,367.532,576.069,218.141,492.003,28.507,153.543,28.507,327.309,326.474,342.801,25.461,26.228,25.461 +2309,72.242,215.058,483.139,364.150,582.450,221.701,487.445,32.949,161.565,32.949,326.586,327.612,342.419,25.283,26.247,25.283 +2310,72.272,218.799,478.604,360.810,588.646,225.443,483.628,37.093,169.324,37.093,325.970,328.524,342.629,25.019,25.832,25.019 +2311,72.303,222.777,474.613,357.092,594.207,229.117,480.171,41.239,176.912,41.239,325.950,328.763,342.811,25.064,25.863,25.064 +2312,72.334,226.750,471.250,353.622,598.117,232.435,476.935,45.000,4.686,45.000,326.683,330.253,342.762,24.749,25.946,24.749 +2313,72.366,230.643,469.261,349.424,603.125,235.591,474.839,48.424,13.103,48.424,328.103,331.912,343.017,23.950,25.726,23.950 +2314,72.397,234.406,466.358,345.042,607.736,239.186,472.455,51.900,21.318,51.900,328.055,333.664,343.549,24.663,23.608,24.663 +2315,72.428,238.150,464.746,341.486,611.404,242.355,470.714,54.828,29.624,54.828,329.614,333.893,344.213,24.084,21.869,24.084 +2316,72.458,240.348,461.231,337.724,614.920,245.450,469.270,57.600,37.771,57.600,325.797,333.812,344.839,23.463,20.854,23.463 +2317,72.489,243.431,458.754,333.471,618.514,248.615,467.826,60.255,45.830,60.255,324.971,333.924,345.869,24.063,20.084,24.063 +2318,72.520,243.597,455.499,328.869,621.231,250.049,467.170,61.068,53.932,61.068,319.256,335.476,345.928,22.685,19.374,22.685 +2319,72.551,239.685,439.389,324.078,623.958,252.887,466.059,63.665,61.928,63.665,286.667,335.647,346.186,20.420,19.118,20.420 +2320,72.582,239.685,439.389,324.078,623.958,252.887,466.059,63.665,61.928,63.665,286.667,335.647,346.186,20.420,19.118,20.420 +2321,72.610,235.769,422.539,319.863,625.728,253.911,465.373,67.046,70.322,67.046,253.723,335.328,346.758,17.918,19.181,17.918 +2322,72.640,248.737,445.085,315.915,627.421,256.121,464.580,69.254,78.771,69.254,305.230,335.756,346.925,17.896,19.559,17.896 +2323,72.671,254.620,448.422,311.852,628.148,259.595,462.992,71.147,86.795,71.147,315.573,334.875,346.364,20.750,20.136,20.750 +2324,72.705,258.482,450.479,306.728,628.710,261.886,461.627,73.020,95.064,73.020,322.478,333.529,345.790,21.435,21.574,21.435 +2325,72.737,260.637,450.740,302.765,628.725,263.331,460.653,74.795,102.575,74.795,324.514,333.210,345.061,20.507,21.840,20.507 +2326,72.770,262.707,450.480,299.360,627.804,264.867,459.387,76.373,110.854,76.373,325.275,330.898,343.605,20.232,21.449,20.232 +2327,72.802,264.834,450.183,297.021,627.437,266.597,458.454,77.969,119.932,77.969,326.311,329.684,343.225,19.833,21.902,19.833 +2328,72.834,267.338,450.193,295.293,627.134,268.771,457.893,79.461,128.660,79.461,326.811,328.121,342.475,20.486,22.177,20.486 +2329,72.866,269.200,450.248,293.895,627.422,270.386,457.661,80.910,136.918,80.910,327.672,326.385,342.687,20.302,23.981,20.302 +2330,72.897,271.007,449.661,292.151,627.144,271.993,456.948,82.293,145.008,82.293,328.017,325.809,342.725,19.849,24.331,19.849 +2331,72.928,272.726,449.531,290.900,627.300,273.540,456.862,83.660,153.435,83.660,327.871,325.124,342.625,19.436,25.491,19.436 +2332,72.958,274.507,449.237,289.304,626.918,275.127,456.330,85.003,161.675,85.003,328.109,324.450,342.349,19.238,25.915,19.238 +2333,72.988,276.145,448.860,287.772,627.040,276.606,455.941,86.279,169.992,86.279,328.736,324.399,342.927,18.936,27.226,18.936 +2334,73.018,277.377,448.911,286.917,627.091,277.715,456.009,87.274,177.510,87.274,328.437,324.389,342.651,18.836,27.626,18.836 +2335,73.050,279.082,449.063,285.186,627.878,279.275,456.408,88.499,5.315,88.499,328.438,325.594,343.132,18.705,27.648,18.705 +2336,73.080,279.082,449.063,285.186,627.878,279.275,456.408,88.499,5.315,88.499,328.438,325.594,343.132,18.705,27.648,18.705 +2337,73.109,281.000,449.500,283.410,628.487,281.000,456.244,90.000,13.349,90.000,331.000,326.395,344.487,18.000,28.233,18.000 +2338,73.140,282.896,450.391,281.397,629.550,282.762,456.702,91.219,21.269,91.219,333.052,327.549,345.676,18.613,27.431,18.613 +2339,73.173,284.760,450.285,279.122,630.103,284.459,456.910,92.603,28.706,92.603,333.247,328.974,346.512,18.436,26.919,18.436 +2340,73.204,286.521,450.696,277.144,631.183,286.067,457.388,93.879,35.893,93.879,334.588,328.780,348.002,18.652,26.180,18.652 +2341,73.236,288.647,450.780,274.974,631.490,288.006,457.653,95.332,42.910,95.332,334.785,329.127,348.591,18.772,24.686,18.772 +2342,73.268,290.395,450.906,273.149,630.613,289.645,457.350,96.633,49.944,96.633,335.045,330.202,348.019,18.734,21.495,18.734 +2343,73.299,292.440,451.420,270.303,630.959,291.556,457.609,98.130,56.611,98.130,336.724,330.909,349.228,18.809,20.513,18.809 +2344,73.329,294.279,452.211,266.943,631.013,293.301,458.060,99.492,63.056,99.492,338.002,330.960,349.863,18.951,20.494,18.951 +2345,73.360,296.609,452.135,263.532,630.610,295.386,458.336,101.149,69.326,101.149,337.723,331.803,350.365,19.179,20.936,19.179 +2346,73.390,298.948,453.178,260.043,630.588,297.609,458.967,103.024,75.041,103.024,339.460,332.645,351.343,19.340,21.166,19.340 +2347,73.421,302.017,453.029,256.343,629.616,300.306,459.405,105.018,79.951,105.018,338.375,332.104,351.578,19.128,21.899,19.128 +2348,73.453,305.425,453.539,252.084,628.342,303.414,459.975,107.354,84.289,107.354,338.542,332.044,352.027,19.149,20.796,19.149 +2349,73.484,308.407,454.677,246.873,627.427,306.178,460.905,109.696,88.241,109.696,340.304,331.366,353.534,19.526,19.184,19.526 +2350,73.515,308.407,454.677,246.873,627.427,306.178,460.905,109.696,88.241,109.696,340.304,331.366,353.534,19.526,19.184,19.526 +2351,73.544,312.305,456.169,241.927,625.474,309.804,462.170,112.620,91.397,112.620,340.692,331.292,353.696,19.462,19.823,19.462 +2352,73.575,317.023,457.044,237.458,622.210,314.125,463.038,115.805,94.054,115.805,340.030,329.088,353.346,19.490,19.400,19.490 +2353,73.605,320.451,458.834,232.040,619.504,317.497,464.239,118.660,95.961,118.660,342.135,328.971,354.456,19.337,19.868,19.337 +2354,73.635,325.227,460.877,227.076,616.200,321.892,466.141,122.356,97.245,122.356,342.545,328.568,355.009,18.983,19.521,18.983 +2355,73.667,329.873,463.717,221.690,612.168,326.438,468.422,126.135,98.024,126.135,344.074,327.389,355.725,19.152,19.795,19.152 +2356,73.697,335.427,467.085,216.392,607.774,331.558,471.622,130.462,98.239,130.462,344.725,326.401,356.651,19.379,19.386,19.379 +2357,73.729,340.294,470.802,210.969,602.284,336.235,474.887,134.815,98.213,134.815,345.808,325.554,357.326,19.048,19.917,19.048 +2358,73.759,345.712,475.403,205.606,596.380,341.332,479.137,139.550,97.651,139.550,347.185,324.400,358.698,19.361,19.999,19.361 +2359,73.790,351.585,480.704,200.629,589.079,346.732,484.131,144.782,97.196,144.782,347.884,323.242,359.767,19.223,20.689,19.223 +2360,73.820,356.625,486.984,196.822,581.595,351.713,489.821,149.995,96.557,149.995,348.710,321.709,360.053,19.381,19.652,19.381 +2361,73.852,361.649,494.108,193.417,572.644,356.712,496.330,155.772,95.818,155.772,349.631,320.195,360.458,19.515,19.634,19.515 +2362,73.884,365.808,502.399,190.298,563.069,361.119,503.943,161.775,94.970,161.775,351.613,318.017,361.487,19.657,19.665,19.657 +2363,73.914,365.808,502.399,190.298,563.069,361.119,503.943,161.775,94.970,161.775,351.613,318.017,361.487,19.657,19.665,19.657 +2364,73.943,369.080,511.877,188.454,552.640,364.272,512.894,168.056,94.086,168.056,350.644,316.266,360.473,20.075,20.377,20.075 +2365,73.973,368.600,522.074,187.679,541.566,363.595,522.538,174.710,93.225,174.710,343.789,314.023,353.841,20.800,20.742,20.800 +2366,74.003,368.730,530.286,188.492,529.269,364.043,530.113,2.121,92.370,2.121,341.544,312.395,350.924,24.650,21.650,24.650 +2367,74.036,370.081,542.013,189.486,517.085,365.540,541.257,9.462,91.397,9.462,346.060,310.298,355.266,24.660,20.384,24.660 +2368,74.069,372.727,554.948,191.597,504.996,367.670,553.375,17.281,89.663,17.281,354.400,308.053,364.993,25.229,20.982,25.229 +2369,74.101,369.178,570.147,197.064,492.446,364.486,567.811,26.462,89.233,26.462,356.445,307.080,366.928,25.492,18.231,25.492 +2370,74.133,364.062,581.664,203.647,480.510,359.575,578.649,33.906,88.315,33.906,357.505,305.456,368.316,25.252,18.610,25.252 +2371,74.163,354.601,595.040,212.418,469.075,350.546,591.210,43.363,87.290,43.363,357.408,304.795,368.564,24.840,18.524,24.840 +2372,74.194,344.260,605.971,222.800,459.546,340.862,601.629,51.953,86.279,51.953,358.281,304.243,369.308,23.865,18.660,23.865 +2373,74.225,331.920,616.656,234.917,451.378,328.547,610.584,60.945,85.066,60.945,355.393,304.199,369.284,22.728,18.736,22.728 +2374,74.255,317.023,624.405,248.294,445.022,314.505,617.515,69.928,83.938,69.928,354.807,304.007,369.479,21.766,19.061,21.766 +2375,74.285,301.396,643.845,263.056,441.493,296.975,622.361,78.372,83.243,78.372,324.115,304.896,367.984,27.252,18.454,27.252 +2376,74.315,286.808,645.489,277.885,438.946,286.475,622.008,89.187,82.003,89.187,319.365,304.767,366.331,26.111,18.005,26.111 +2377,74.345,286.808,645.489,277.885,438.946,286.475,622.008,89.187,82.003,89.187,319.365,304.767,366.331,26.111,18.005,26.111 +2378,74.373,265.182,629.523,293.595,439.568,266.307,620.415,97.038,80.538,97.038,347.302,305.782,365.656,26.294,19.070,26.294 +2379,74.410,252.363,622.238,308.896,442.613,254.139,616.554,107.354,79.380,107.354,352.800,306.718,364.711,20.402,20.579,20.402 +2380,74.442,239.601,614.316,323.654,447.769,242.035,609.490,116.762,78.690,116.762,351.488,308.491,362.299,19.955,22.553,19.955 +2381,74.472,227.989,605.070,336.866,455.143,230.925,600.987,125.720,77.293,125.720,350.459,309.781,360.517,19.731,23.795,19.731 +2382,74.504,218.505,594.497,348.442,464.161,222.018,590.923,134.508,76.293,134.508,348.029,311.929,358.051,19.826,24.383,19.826 +2383,74.537,210.552,583.732,357.194,475.051,214.427,580.811,142.987,75.155,142.987,345.626,314.035,355.332,19.463,23.199,19.463 +2384,74.572,204.705,572.594,365.420,486.528,209.489,569.956,151.135,74.129,151.135,342.740,316.345,353.665,19.898,24.188,19.898 +2385,74.604,200.503,561.007,371.273,498.724,205.899,558.939,159.027,72.848,159.027,340.382,318.425,351.940,19.546,24.914,19.546 +2386,74.635,198.473,549.888,375.816,511.223,204.404,548.483,166.675,71.924,166.675,338.581,320.955,350.770,19.820,25.086,19.820 +2387,74.667,197.780,538.992,378.315,523.410,204.283,538.280,173.754,70.907,173.754,336.152,322.931,349.234,19.896,25.696,19.896 +2388,74.697,198.019,528.586,379.239,535.366,205.133,528.685,0.790,69.963,0.790,334.134,324.825,348.363,18.922,25.266,18.922 +2389,74.728,199.864,517.361,378.658,546.753,207.196,518.211,6.613,69.444,6.613,332.454,327.013,347.216,25.222,23.408,25.222 +2390,74.759,201.869,509.175,377.618,557.365,210.026,511.029,12.804,68.575,12.804,330.659,328.688,347.388,24.866,23.979,24.866 +2391,74.789,205.827,500.648,374.490,567.099,213.390,503.231,18.853,67.949,18.853,330.207,330.369,346.190,25.944,22.561,25.944 +2392,74.822,208.949,493.613,370.795,576.249,216.671,497.123,24.444,67.306,24.444,329.139,331.391,346.104,25.490,21.337,25.490 +2393,74.854,213.162,486.125,366.741,584.397,221.216,490.862,30.466,66.801,30.466,327.028,332.468,345.715,25.402,20.746,25.402 +2394,74.887,216.488,481.184,361.967,591.447,224.433,486.685,34.695,66.588,34.695,326.094,333.256,345.422,25.298,19.564,25.298 +2395,74.920,220.797,475.312,357.748,597.464,228.876,482.004,39.634,66.750,39.634,324.816,333.651,345.797,25.617,19.996,25.617 +2396,74.950,224.380,471.401,352.701,603.124,232.277,478.959,43.741,67.496,43.741,323.839,334.304,345.701,24.914,19.573,24.914 +2397,74.980,224.380,471.401,352.701,603.124,232.277,478.959,43.741,67.496,43.741,323.839,334.304,345.701,24.914,19.573,24.914 +2398,75.008,228.529,468.262,348.143,607.445,235.795,476.182,47.466,68.791,47.466,323.853,334.795,345.348,24.574,19.425,24.574 +2399,75.040,231.864,465.129,343.769,611.253,238.944,473.818,50.826,70.942,50.826,323.101,334.924,345.517,24.319,19.505,24.319 +2400,75.073,234.988,462.575,339.674,614.390,241.812,471.880,53.746,73.610,53.746,322.508,334.875,345.585,23.923,20.034,23.923 +2401,75.105,238.154,460.731,334.899,617.140,244.401,470.102,56.310,76.866,56.310,322.558,334.514,345.084,23.297,19.022,23.297 +2402,75.137,240.932,459.105,331.273,619.114,246.665,468.517,58.658,81.085,58.658,323.219,334.382,345.260,23.587,19.139,23.587 +2403,75.169,243.283,457.866,327.516,620.717,248.585,467.264,60.573,85.834,60.573,323.289,334.082,344.870,23.271,19.168,23.271 +2404,75.201,245.552,457.583,324.433,621.518,250.081,466.203,62.281,91.088,62.281,324.674,333.187,344.149,22.581,19.224,22.581 +2405,75.232,247.471,456.534,321.164,622.406,251.725,465.152,63.733,97.316,63.733,324.272,333.171,343.494,22.756,20.172,22.756 +2406,75.263,249.090,456.818,320.144,623.413,252.874,464.894,64.898,103.753,64.898,326.335,333.037,344.171,22.068,22.320,22.068 +2407,75.293,250.021,455.485,316.270,622.208,253.367,462.995,65.980,109.556,65.980,325.618,330.611,342.061,21.941,21.560,21.941 +2408,75.323,251.629,455.302,316.147,622.353,254.782,462.659,66.801,117.378,66.801,325.903,329.620,341.911,22.716,21.962,22.716 +2409,75.353,252.103,455.391,315.235,622.353,254.988,462.370,67.539,124.634,67.539,326.625,328.688,341.730,21.885,23.234,21.885 +2410,75.384,253.122,454.743,315.158,622.194,255.976,461.834,68.078,131.804,68.078,326.435,327.594,341.721,22.683,24.449,22.683 +2411,75.415,253.122,454.743,315.158,622.194,255.976,461.834,68.078,131.804,68.078,326.435,327.594,341.721,22.683,24.449,22.683 +2412,75.443,253.227,454.729,314.940,621.915,255.962,461.673,68.499,139.274,68.499,326.489,326.703,341.416,21.653,24.918,21.653 +2413,75.473,253.705,454.758,315.162,621.775,256.389,461.687,68.822,146.785,68.822,326.157,326.162,341.017,21.574,25.756,21.574 +2414,75.504,254.305,454.348,315.605,621.415,256.934,461.197,69.001,154.511,69.001,326.530,325.590,341.204,22.463,26.587,22.463 +2415,75.537,253.872,454.402,316.160,621.497,256.579,461.485,69.082,162.121,69.082,326.314,325.730,341.477,21.642,26.832,21.642 +2416,75.570,254.292,454.656,317.125,621.466,256.927,461.517,68.984,169.771,68.984,327.098,325.843,341.797,22.667,26.948,22.667 +2417,75.602,253.918,455.503,318.231,621.114,256.353,461.770,68.776,177.138,68.776,328.424,326.442,341.872,21.603,27.715,21.603 +2418,75.633,253.575,455.652,319.679,621.348,256.171,462.241,68.499,4.764,68.499,328.462,327.947,342.625,21.681,27.986,21.681 +2419,75.663,253.451,456.823,320.481,621.763,255.899,462.916,68.112,12.912,68.112,329.812,330.008,342.944,21.853,27.808,21.853 +2420,75.693,252.781,457.005,321.303,621.791,255.344,463.195,67.513,21.265,67.513,330.130,332.002,343.530,21.801,25.877,21.801 +2421,75.723,252.516,457.421,322.815,622.334,255.275,463.868,66.829,28.951,66.829,330.494,332.178,344.518,22.822,25.078,22.822 +2422,75.753,251.155,457.598,324.791,621.937,254.177,464.399,66.038,36.670,66.038,330.394,332.797,345.279,22.744,21.866,22.744 +2423,75.784,249.200,457.098,325.983,622.018,252.984,465.322,65.289,44.451,65.289,327.621,333.793,345.727,23.064,21.230,23.064 +2424,75.814,249.200,457.098,325.983,622.018,252.984,465.322,65.289,44.451,65.289,327.621,333.793,345.727,23.064,21.230,23.064 +2425,75.843,247.727,456.106,326.920,622.282,252.586,466.093,64.058,52.036,64.058,323.725,334.861,345.938,23.623,20.166,23.623 +2426,75.874,235.590,440.046,327.577,622.248,250.446,467.168,61.289,59.621,61.289,284.284,335.441,346.132,20.710,19.485,20.710 +2427,75.905,234.083,444.318,328.972,621.422,247.391,468.717,61.390,67.703,61.390,290.663,335.053,346.247,18.037,19.969,18.037 +2428,75.937,240.831,456.110,330.374,620.272,247.865,468.207,59.826,75.779,59.826,317.877,334.952,345.864,23.080,20.244,23.080 +2429,75.968,240.234,459.869,331.755,618.527,245.854,468.914,58.145,83.741,58.145,323.533,334.042,344.830,23.593,20.266,23.593 +2430,76.000,238.853,462.072,333.054,616.488,243.766,469.393,56.134,91.548,56.134,326.159,333.122,343.792,23.722,20.128,23.722 +2431,76.031,236.546,463.844,335.518,613.672,241.260,470.349,54.071,99.588,54.071,326.658,331.593,342.727,23.741,20.807,23.741 +2432,76.062,233.936,465.511,338.060,610.999,238.773,471.663,51.821,107.745,51.821,326.151,330.872,341.802,24.154,21.906,24.154 +2433,76.093,231.904,467.644,341.973,607.263,236.525,473.019,49.313,115.750,49.313,326.900,328.796,341.078,25.055,23.853,25.055 +2434,76.127,228.365,469.844,345.872,603.586,233.548,475.322,46.591,123.896,46.591,325.654,327.273,340.737,24.661,25.654,24.661 +2435,76.170,225.251,472.502,350.091,599.132,230.693,477.699,43.681,132.036,43.681,325.378,325.931,340.429,25.142,26.449,25.142 +2436,76.202,221.668,475.629,354.311,594.574,227.383,480.499,40.432,140.194,40.432,326.178,325.470,341.195,24.580,27.144,24.580 +2437,76.234,218.807,478.927,358.609,589.486,224.716,483.372,36.952,148.325,36.952,326.789,325.729,341.577,25.536,27.360,25.536 +2438,76.270,215.069,482.868,362.844,583.596,221.629,487.165,33.226,156.541,33.226,326.250,325.640,341.934,25.589,27.659,25.589 +2439,76.300,211.298,487.076,367.162,577.560,218.817,491.290,29.264,163.923,29.264,325.931,326.643,343.169,25.502,25.772,25.502 +2440,76.331,207.103,491.715,371.221,570.955,216.241,496.002,25.133,171.347,25.133,324.095,327.383,344.283,26.556,25.554,26.556 +2441,76.361,201.883,496.982,375.054,563.894,213.832,501.477,20.612,177.789,20.612,320.216,328.566,345.749,25.736,22.655,25.736 +2442,76.392,191.073,504.245,376.600,555.322,210.108,508.902,13.747,3.424,13.747,306.315,326.450,345.508,25.172,20.741,25.172 +2443,76.422,127.347,500.315,378.720,547.737,208.215,515.478,10.620,8.596,10.620,182.507,326.902,347.060,18.306,21.040,18.306 +2444,76.453,192.535,521.154,380.675,539.273,206.892,522.589,5.711,13.517,5.711,320.302,329.723,349.161,18.906,21.886,18.906 +2445,76.484,195.500,527.500,381.738,531.682,206.369,527.500,0.000,18.925,0.000,329.000,330.811,350.738,23.000,23.622,23.000 +2446,76.515,195.500,527.500,381.738,531.682,206.369,527.500,0.000,18.925,0.000,329.000,330.811,350.738,23.000,23.622,23.000 +2447,76.543,196.512,539.010,381.074,522.024,205.657,538.016,173.797,24.594,173.797,333.838,329.385,352.236,19.796,22.465,19.796 +2448,76.574,197.745,549.139,378.700,512.572,205.585,547.379,167.347,30.364,167.347,337.000,327.884,353.070,19.713,21.597,19.713 +2449,76.606,200.117,559.005,374.819,502.573,206.352,556.798,160.514,36.790,160.514,340.584,325.592,353.812,19.348,19.575,19.348 +2450,76.637,203.600,569.700,370.392,490.696,209.418,566.791,153.435,42.797,153.435,343.013,322.800,356.021,19.677,23.100,19.677 +2451,76.670,208.067,579.893,363.568,480.184,213.033,576.517,145.792,48.926,145.792,345.292,319.194,357.302,19.265,24.587,19.265 +2452,76.702,214.561,590.126,355.464,469.863,218.826,586.305,138.142,55.939,138.142,347.481,315.917,358.935,19.129,24.608,19.129 +2453,76.734,222.895,599.755,345.403,460.551,226.248,595.782,130.167,62.387,130.167,349.996,312.738,360.394,19.219,24.933,19.219 +2454,76.765,232.650,608.529,333.721,452.537,235.209,604.427,121.954,69.228,121.954,352.350,310.258,362.021,19.456,24.116,19.456 +2455,76.796,243.478,616.139,320.306,446.049,245.452,611.573,113.376,75.750,113.376,353.327,308.277,363.275,20.241,22.292,20.241 +2456,76.827,254.992,625.127,306.013,441.730,256.909,617.695,104.462,82.360,104.462,349.955,306.619,365.305,22.394,20.934,22.394 +2457,76.857,264.994,650.185,290.000,439.000,267.706,620.973,95.305,90.000,95.305,307.833,306.000,366.509,25.540,18.000,25.540 +2458,76.887,288.101,632.600,275.481,438.682,287.883,621.859,88.837,96.009,88.837,345.294,306.203,366.781,25.076,20.885,25.076 +2459,76.919,297.903,628.712,261.499,439.772,296.465,621.442,78.809,102.848,78.809,355.184,305.882,370.004,26.282,20.337,26.282 +2460,76.950,314.282,623.074,247.794,443.220,312.308,617.288,71.168,109.477,71.168,358.921,306.748,371.149,21.270,20.155,21.270 +2461,76.980,314.282,623.074,247.794,443.220,312.308,617.288,71.168,109.477,71.168,358.921,306.748,371.149,21.270,20.155,21.270 +2462,77.008,328.057,616.471,235.545,449.022,325.333,611.204,62.655,115.989,62.655,358.748,308.124,370.606,22.915,19.112,22.915 +2463,77.041,340.415,607.915,224.441,456.411,337.273,603.522,54.420,122.300,54.420,359.790,308.869,370.591,24.955,18.343,24.955 +2464,77.071,350.405,598.287,214.037,464.828,346.711,594.425,46.273,128.603,46.273,360.033,310.161,370.720,25.010,18.875,25.010 +2465,77.104,358.761,587.477,205.250,473.750,354.499,584.108,38.327,135.000,38.327,360.175,310.420,371.042,25.621,18.385,25.621 +2466,77.136,365.121,576.050,198.098,484.122,360.620,573.381,30.663,141.340,30.663,360.174,311.723,370.640,25.666,18.741,25.666 +2467,77.168,369.402,564.259,192.781,494.342,364.784,562.271,23.290,147.933,23.290,359.638,311.750,369.692,26.120,18.786,26.120 +2468,77.200,371.011,553.237,189.188,505.010,366.470,551.905,16.348,154.673,16.348,357.164,311.693,366.628,25.294,20.824,25.294 +2469,77.231,368.841,542.217,186.742,514.273,364.105,541.408,9.689,161.211,9.689,349.191,311.205,358.800,25.148,21.823,25.148 +2470,77.262,368.142,532.978,185.668,523.058,362.723,532.648,3.489,167.025,3.489,343.764,310.680,354.621,24.382,23.064,24.382 +2471,77.292,371.962,525.995,186.682,531.890,363.005,526.331,177.852,171.431,177.852,334.890,311.416,352.816,20.298,20.386,20.298 +2472,77.321,414.838,511.708,187.267,540.512,363.615,518.111,172.875,177.026,172.875,252.287,309.518,355.530,19.970,20.790,19.970 +2473,77.352,380.337,508.055,189.120,548.868,364.948,511.453,167.547,2.617,167.547,327.997,308.638,359.518,19.725,20.207,19.725 +2474,77.382,380.337,508.055,189.120,548.868,364.948,511.453,167.547,2.617,167.547,327.997,308.638,359.518,19.725,20.207,19.725 +2475,77.410,373.018,501.763,191.627,556.679,363.271,504.805,162.671,8.791,162.671,338.186,309.517,358.608,19.878,21.365,19.878 +2476,77.441,368.175,495.435,194.849,563.528,360.699,498.445,158.064,15.945,158.064,340.192,310.160,356.311,19.894,21.978,19.894 +2477,77.472,361.229,490.967,197.686,572.083,357.094,492.992,153.908,23.962,153.908,346.689,311.204,355.897,19.450,23.759,19.450 +2478,77.504,357.613,485.914,201.852,577.510,354.371,487.800,149.822,31.777,149.822,346.385,312.372,353.887,19.662,21.576,19.662 +2479,77.538,354.258,481.356,203.902,585.907,349.859,484.316,146.067,39.523,146.067,345.013,313.949,355.618,19.385,25.822,19.385 +2480,77.570,350.941,477.233,208.576,589.588,347.157,480.122,142.646,47.361,142.646,343.628,315.918,353.150,19.224,21.421,19.224 +2481,77.602,347.136,474.074,211.477,595.466,343.202,477.435,139.494,55.008,139.494,343.293,318.681,353.641,19.341,20.727,19.341 +2482,77.632,343.720,471.563,214.237,600.342,339.826,475.250,136.565,62.628,136.565,343.680,321.993,354.404,19.035,20.689,19.035 +2483,77.663,340.009,469.557,216.011,603.820,336.381,473.306,134.061,70.594,134.061,344.558,323.503,354.992,18.684,20.225,18.684 +2484,77.693,337.172,467.817,217.739,607.157,333.373,472.081,131.698,78.311,131.698,344.129,324.979,355.552,18.992,19.822,18.992 +2485,77.723,334.108,466.122,219.448,609.466,330.639,470.341,129.432,85.635,129.432,345.239,326.341,356.163,19.157,19.379,19.157 +2486,77.754,331.708,464.595,220.926,611.106,328.186,469.192,127.458,93.136,127.458,344.188,326.715,355.770,19.359,18.985,19.359 +2487,77.786,329.940,463.018,222.000,612.500,326.182,468.241,125.740,100.582,125.740,343.021,327.791,355.891,19.374,19.476,19.374 +2488,77.817,327.992,461.787,223.242,613.399,324.313,467.172,124.340,107.796,124.340,342.464,327.634,355.509,19.138,20.242,19.138 +2489,77.848,327.992,461.787,223.242,613.399,324.313,467.172,124.340,107.796,124.340,342.464,327.634,355.509,19.138,20.242,19.138 +2490,77.876,327.580,459.430,224.761,613.351,323.268,466.076,122.975,114.775,122.975,338.486,327.703,354.331,18.759,20.953,18.759 +2491,77.908,365.335,396.053,226.002,614.094,321.662,465.202,122.276,122.504,122.276,190.368,325.960,353.938,18.156,20.614,18.156 +2492,77.939,338.059,435.864,227.641,614.043,320.830,464.137,121.357,130.280,121.357,286.791,324.670,353.008,18.133,20.352,18.133 +2493,77.969,328.899,448.787,228.347,613.779,320.216,463.588,120.396,137.816,120.396,317.742,323.557,352.062,18.779,20.331,18.779 +2494,78.001,326.038,452.297,229.699,613.286,320.018,462.877,119.638,145.154,119.638,326.446,322.117,350.790,19.571,20.071,19.571 +2495,78.032,324.282,453.914,230.617,613.123,319.543,462.321,119.416,152.241,119.416,330.770,321.225,350.071,19.201,21.285,19.201 +2496,78.063,323.652,454.541,231.746,612.526,319.626,461.743,119.202,159.098,119.202,332.489,320.080,348.991,19.257,23.214,19.257 +2497,78.094,323.179,455.554,232.600,612.700,319.766,461.668,119.168,167.471,119.168,334.719,319.539,348.725,19.576,24.405,19.576 +2498,78.125,323.271,455.618,233.467,613.139,319.854,461.699,119.327,174.806,119.327,334.736,318.686,348.686,19.357,24.807,19.357 +2499,78.155,323.475,456.482,233.960,612.699,320.523,461.659,119.691,1.909,119.691,336.252,318.456,348.172,19.089,25.186,19.089 +2500,78.186,323.967,457.020,233.085,612.654,321.008,462.098,120.230,8.881,120.230,336.943,319.869,348.697,19.038,26.892,19.038 +2501,78.217,324.696,457.617,232.731,612.945,321.677,462.664,120.890,15.890,120.890,337.498,320.044,349.258,19.172,26.593,19.172 +2502,78.247,324.696,457.617,232.731,612.945,321.677,462.664,120.890,15.890,120.890,337.498,320.044,349.258,19.172,26.593,19.172 +2503,78.276,326.045,458.649,231.808,612.951,322.924,463.678,121.827,23.085,121.827,337.922,320.254,349.760,19.161,26.180,19.161 +2504,78.307,327.428,459.628,230.531,612.946,324.191,464.599,123.071,29.745,123.071,338.980,320.878,350.845,19.138,26.171,19.138 +2505,78.338,328.663,460.272,228.963,612.550,325.263,465.288,124.136,36.444,124.136,339.739,321.006,351.859,19.023,26.200,19.023 +2506,78.371,330.493,461.709,227.040,611.498,327.038,466.547,125.538,42.709,125.538,340.257,321.900,352.148,19.297,26.001,19.297 +2507,78.403,332.324,463.206,226.148,609.166,329.343,467.128,127.235,49.505,127.235,341.203,322.367,351.055,19.299,21.489,19.299 +2508,78.436,334.879,465.037,223.043,608.119,331.539,469.119,129.289,55.944,129.289,342.019,322.591,352.567,18.856,21.035,18.856 +2509,78.468,337.197,466.913,220.729,606.556,333.766,470.811,131.348,62.122,131.348,342.776,324.817,353.162,18.858,21.458,18.858 +2510,78.499,339.503,469.072,216.498,604.204,335.928,472.819,133.659,67.865,133.659,344.647,324.203,355.005,18.739,20.457,18.739 +2511,78.530,343.222,471.609,212.583,601.199,338.944,475.685,136.384,74.476,136.384,344.312,323.796,356.130,19.042,19.966,19.042 +2512,78.561,345.460,474.505,208.757,597.541,341.420,478.019,138.977,80.538,138.977,346.365,323.537,357.073,19.125,20.057,19.125 +2513,78.591,348.754,477.757,205.178,593.744,344.477,481.086,142.101,86.496,142.101,347.406,322.865,358.246,19.198,18.842,19.198 +2514,78.620,352.541,481.378,201.334,588.142,347.847,484.605,145.491,92.437,145.491,347.385,322.559,358.778,19.365,18.919,19.365 +2515,78.651,355.750,485.906,197.670,582.810,351.175,488.636,149.176,98.130,149.176,349.495,322.158,360.153,19.405,19.092,19.405 +2516,78.682,355.750,485.906,197.670,582.810,351.175,488.636,149.176,98.130,149.176,349.495,322.158,360.153,19.405,19.092,19.405 +2517,78.710,358.798,491.113,194.240,576.677,354.380,493.351,153.141,103.870,153.141,351.115,321.361,361.020,19.569,19.297,19.569 +2518,78.740,362.751,496.692,191.229,569.436,357.826,498.731,157.511,109.525,157.511,351.287,320.181,361.948,19.656,19.478,19.656 +2519,78.772,365.413,503.649,188.583,561.709,361.011,505.045,162.408,115.084,162.408,353.742,319.400,362.979,19.576,19.771,19.576 +2520,78.805,368.075,510.833,186.691,553.086,363.481,511.867,167.320,120.510,167.320,353.634,318.154,363.052,19.756,20.169,19.756 +2521,78.838,367.566,519.014,185.500,543.809,362.670,519.647,172.630,125.882,172.630,347.735,316.436,357.610,20.185,20.618,20.185 +2522,78.870,366.995,526.566,184.474,533.263,361.767,526.629,179.310,131.771,179.310,344.264,314.811,354.720,23.034,22.374,23.034 +2523,78.903,367.329,534.262,185.505,523.036,362.902,533.885,4.865,136.715,4.865,346.471,313.637,355.356,24.931,21.381,24.931 +2524,78.935,368.892,544.493,186.488,510.629,364.092,543.538,11.255,142.237,11.255,351.437,312.056,361.224,25.095,23.371,25.095 +2525,78.965,371.350,556.450,190.731,500.858,367.008,555.003,18.435,146.487,18.435,359.551,310.910,368.706,25.298,19.803,25.298 +2526,78.995,367.100,569.300,195.503,489.266,363.154,567.327,26.565,151.484,26.565,360.901,309.180,369.724,25.491,18.674,25.491 +2527,79.026,362.192,579.961,202.148,478.487,358.664,577.609,33.690,156.462,33.690,361.942,308.175,370.424,25.239,18.430,25.239 +2528,79.057,354.813,591.344,210.312,468.393,351.678,588.550,41.711,161.382,41.711,362.562,307.069,370.961,24.911,18.352,24.911 +2529,79.087,346.206,601.324,220.102,458.318,343.129,597.734,49.399,166.675,49.399,362.382,306.162,371.837,24.188,19.615,24.188 +2530,79.120,334.719,610.343,231.437,450.920,332.425,606.700,57.794,171.493,57.794,362.659,305.778,371.269,23.192,18.389,23.192 +2531,79.151,321.858,618.090,244.082,444.020,319.904,613.632,66.335,176.897,66.335,361.830,305.016,371.566,21.766,19.056,21.766 +2532,79.181,321.858,618.090,244.082,444.020,319.904,613.632,66.335,176.897,66.335,361.830,305.016,371.566,21.766,19.056,21.766 +2533,79.210,306.353,624.212,257.566,439.595,305.051,619.500,74.551,1.998,74.551,362.330,305.407,372.107,24.198,19.535,24.198 +2534,79.241,291.743,626.409,271.865,437.089,291.142,621.510,82.999,7.081,82.999,360.920,306.366,370.791,26.659,19.120,26.659 +2535,79.271,277.196,626.107,286.599,436.416,277.374,620.777,91.909,11.834,91.909,358.468,306.954,369.132,27.318,20.311,27.318 +2536,79.302,262.115,623.923,302.092,438.451,263.151,618.747,101.310,17.103,101.310,358.304,308.349,368.862,24.907,20.660,24.907 +2537,79.334,248.581,618.222,317.255,440.080,250.962,611.977,110.869,22.906,110.869,355.105,310.400,368.472,20.200,25.662,20.200 +2538,79.364,235.904,610.445,330.443,447.411,238.862,605.286,119.825,28.142,119.825,353.131,312.705,365.024,19.909,23.603,19.909 +2539,79.396,224.899,601.724,342.538,456.192,228.559,597.132,128.550,33.690,128.550,350.766,313.960,362.511,19.490,23.575,19.490 +2540,79.427,215.823,591.383,352.986,465.870,220.256,587.254,137.033,38.991,137.033,347.598,316.265,359.715,19.474,24.465,19.474 +2541,79.457,208.756,580.370,362.089,477.410,213.579,577.033,145.316,44.397,145.316,345.890,317.525,357.620,19.623,24.606,19.623 +2542,79.488,203.621,569.750,369.406,489.076,209.353,566.855,153.196,50.906,153.196,343.017,319.225,355.859,20.230,24.496,20.230 +2543,79.520,200.282,558.372,374.423,501.385,206.368,556.260,160.866,56.310,160.866,340.633,320.617,353.516,19.435,24.684,19.435 +2544,79.551,198.391,547.476,377.462,513.554,204.786,546.142,168.224,61.928,168.224,338.319,322.588,351.385,19.815,25.824,19.815 +2545,79.581,198.391,547.476,377.462,513.554,204.786,546.142,168.224,61.928,168.224,338.319,322.588,351.385,19.815,25.824,19.815 +2546,79.613,197.469,537.142,379.025,525.692,204.310,536.541,174.982,68.025,174.982,336.253,323.662,349.988,20.132,25.006,20.132 +2547,79.643,198.087,527.293,378.937,537.162,205.035,527.517,1.848,73.926,1.848,334.342,324.998,348.245,18.893,25.228,18.893 +2548,79.674,200.089,516.525,377.645,548.149,206.934,517.426,7.496,80.096,7.496,332.711,326.317,346.520,24.499,24.831,24.499 +2549,79.706,202.438,508.538,375.780,557.982,209.409,510.189,13.325,86.424,13.325,331.487,326.925,345.815,24.916,25.138,24.916 +2550,79.737,205.854,501.050,371.499,567.024,211.910,503.126,18.925,92.793,18.925,330.568,326.685,343.372,25.649,23.460,25.649 +2551,79.769,209.188,493.214,368.114,575.018,215.525,496.111,24.567,98.858,24.567,329.230,327.835,343.165,25.751,24.715,25.751 +2552,79.802,213.427,486.624,363.762,582.463,219.440,490.131,30.256,104.715,30.256,328.452,327.891,342.372,25.409,24.551,25.409 +2553,79.833,217.042,481.808,359.360,588.956,222.859,485.813,34.548,110.664,34.548,327.717,328.077,341.842,25.290,24.883,25.290 +2554,79.864,221.204,476.609,354.611,594.558,226.763,481.187,39.472,116.672,39.472,327.117,328.701,341.520,25.383,25.249,25.383 +2555,79.895,225.419,472.823,350.207,599.452,230.724,477.863,43.531,122.565,43.531,326.105,328.021,340.740,24.976,25.709,24.976 +2556,79.926,229.033,469.157,345.673,603.637,234.126,474.663,47.231,128.377,47.231,325.848,327.829,340.850,24.427,26.249,24.427 +2557,79.956,232.937,465.824,341.204,607.173,237.632,471.642,51.106,134.262,51.106,326.079,326.857,341.032,24.258,26.316,24.258 +2558,79.986,237.115,463.061,336.892,610.565,241.521,469.229,54.462,140.054,54.462,325.726,327.387,340.887,24.528,26.660,24.528 +2559,80.017,240.822,460.718,332.554,613.310,244.903,467.180,57.724,145.641,57.724,325.424,326.777,340.711,24.119,26.576,24.119 +2560,80.048,240.822,460.718,332.554,613.310,244.903,467.180,57.724,145.641,57.724,325.424,326.777,340.711,24.119,26.576,24.119 +2561,80.076,244.176,458.729,328.433,615.627,247.862,465.339,60.857,151.390,60.857,325.866,326.737,341.001,23.291,27.055,23.291 +2562,80.107,247.840,457.090,324.493,617.662,251.191,463.864,63.682,156.995,63.682,325.595,326.556,340.711,23.344,27.295,23.344 +2563,80.143,251.169,455.555,320.656,619.405,254.153,462.407,66.468,162.545,66.468,326.038,326.621,340.986,22.936,27.453,22.936 +2564,80.174,253.947,454.402,316.910,620.940,256.599,461.342,69.085,168.050,69.085,326.367,326.281,341.225,21.508,27.963,21.508 +2565,80.207,257.100,453.800,313.481,622.840,259.400,460.700,71.565,173.066,71.565,327.296,326.191,341.843,21.187,27.755,21.187 +2566,80.239,260.595,452.906,310.023,624.062,262.527,459.593,73.887,177.614,73.887,328.458,326.342,342.379,21.477,27.768,21.477 +2567,80.271,262.997,452.238,306.837,625.132,264.660,459.007,76.201,2.568,76.201,328.840,326.972,342.781,20.087,28.232,20.087 +2568,80.301,265.893,452.135,303.251,626.320,267.222,458.640,78.449,7.781,78.449,329.717,327.472,342.996,19.702,27.090,19.702 +2569,80.332,269.026,451.408,299.498,627.217,270.108,457.967,80.633,12.758,80.633,330.259,328.883,343.553,20.039,28.247,20.039 +2570,80.363,271.797,451.409,296.266,628.248,272.591,457.630,82.725,17.382,82.725,331.944,328.879,344.487,19.755,27.485,19.755 +2571,80.393,274.340,451.242,292.456,629.546,274.932,457.754,84.806,22.306,84.806,332.266,329.668,345.345,19.103,27.613,19.103 +2572,80.423,276.963,450.667,289.151,630.179,277.344,457.575,86.849,26.825,86.849,332.149,329.621,345.984,18.852,27.573,18.852 +2573,80.455,279.358,451.051,286.042,630.587,279.518,457.770,88.636,31.113,88.636,332.406,329.278,345.847,18.614,27.174,18.614 +2574,80.486,282.179,450.935,282.533,630.953,282.099,457.431,90.703,35.189,90.703,334.012,329.334,347.006,18.538,26.257,18.538 +2575,80.518,285.001,450.753,278.666,631.412,284.666,457.550,92.824,39.023,92.824,334.284,329.554,347.894,18.457,25.515,18.457 +2576,80.548,285.001,450.753,278.666,631.412,284.666,457.550,92.824,39.023,92.824,334.284,329.554,347.894,18.457,25.515,18.457 +2577,80.577,288.340,450.758,275.052,631.405,287.720,457.584,95.194,42.879,95.194,334.801,329.234,348.509,18.741,24.915,18.741 +2578,80.607,290.919,450.935,271.009,631.439,290.066,457.857,97.028,46.569,97.028,335.270,329.165,349.218,18.694,24.933,18.694 +2579,80.638,293.878,451.748,268.587,629.756,292.968,457.337,99.246,50.123,99.246,336.868,329.691,348.193,19.006,20.934,19.006 +2580,80.669,297.208,452.229,264.370,629.343,296.086,457.744,101.497,52.927,101.497,337.696,329.785,348.953,19.200,21.383,19.200 +2581,80.701,300.706,452.676,260.346,628.769,299.273,458.409,104.036,56.310,104.036,337.610,329.492,349.428,19.160,21.356,19.160 +2582,80.733,304.569,453.271,255.996,627.547,302.869,458.935,106.699,59.789,106.699,338.113,329.459,349.940,19.444,21.036,19.444 +2583,80.763,308.303,453.706,251.076,626.428,306.143,459.876,109.290,62.700,109.290,337.713,329.220,350.787,19.443,21.413,19.443 +2584,80.794,312.092,455.219,246.633,624.478,309.903,460.570,112.249,65.283,112.249,339.760,328.964,351.322,19.184,21.282,19.184 +2585,80.825,315.929,457.026,241.692,622.715,313.588,462.001,115.201,67.598,115.201,341.063,328.315,352.061,19.267,21.187,19.267 +2586,80.855,319.579,458.212,237.052,620.981,316.840,463.360,118.009,69.922,118.009,341.596,329.791,353.258,19.141,20.954,19.141 +2587,80.887,324.657,460.058,231.962,618.158,321.372,465.396,121.608,72.104,121.608,341.384,329.199,353.920,19.261,20.708,19.261 +2588,80.919,328.956,462.419,226.603,614.112,325.670,467.114,124.992,74.208,124.992,343.012,326.641,354.474,19.088,20.596,19.088 +2589,80.949,333.256,465.305,221.423,610.036,329.915,469.481,128.660,76.430,128.660,344.363,326.217,355.059,18.897,20.179,18.897 +2590,80.985,338.038,468.655,216.184,605.650,334.380,472.630,132.614,78.269,132.614,345.034,324.980,355.838,19.075,19.679,19.075 +2591,81.029,342.991,472.282,211.089,600.137,339.066,475.953,136.916,80.134,136.916,345.842,324.220,356.589,18.989,19.833,18.989 +2592,81.062,348.146,476.683,206.212,594.253,343.820,480.144,141.340,81.787,141.340,346.393,322.728,357.474,19.053,19.570,19.053 +2593,81.094,353.308,482.462,201.628,587.486,348.913,485.391,146.310,83.589,146.310,347.797,321.583,358.361,19.415,19.696,19.415 +2594,81.131,358.027,488.239,197.502,579.958,353.379,490.806,151.091,85.186,151.091,348.482,319.899,359.102,19.468,19.321,19.468 +2595,81.162,362.470,495.126,193.929,571.838,357.659,497.214,156.541,86.842,156.541,349.318,318.839,359.808,19.541,19.405,19.541 +2596,81.193,366.340,502.888,190.913,562.461,361.701,504.379,162.191,88.420,162.191,350.992,317.348,360.737,19.757,19.682,19.757 +2597,81.223,369.093,511.943,189.000,552.500,364.454,512.915,168.166,90.000,168.166,350.205,315.000,359.685,20.041,20.000,20.041 +2598,81.254,368.712,521.701,188.012,542.068,363.760,522.177,174.508,91.548,174.508,343.742,314.345,353.690,20.636,21.046,20.636 +2599,81.284,368.681,529.466,187.332,531.018,363.406,529.320,1.584,93.053,1.584,341.367,312.835,351.920,24.516,19.812,24.516 +2600,81.314,368.681,529.466,187.332,531.018,363.406,529.320,1.584,93.053,1.584,341.367,312.835,351.920,24.516,19.812,24.516 +2601,81.342,370.042,540.056,189.215,519.057,365.408,539.361,8.531,94.574,8.531,345.139,311.325,354.510,25.515,20.933,25.515 +2602,81.374,372.019,552.934,191.199,506.759,367.324,551.593,15.945,95.979,15.945,353.566,309.762,363.331,24.862,19.451,24.862 +2603,81.406,370.270,565.619,195.548,494.506,365.668,563.591,23.782,97.536,23.782,357.008,308.939,367.066,25.266,18.755,25.266 +2604,81.441,365.365,578.320,201.675,482.844,360.947,575.554,32.050,98.983,32.050,357.961,307.559,368.386,25.656,18.600,25.656 +2605,81.472,357.472,591.371,209.768,471.828,353.293,587.776,40.711,100.499,40.711,357.816,306.894,368.840,24.944,18.892,24.944 +2606,81.504,348.130,602.388,218.267,461.662,344.090,597.709,49.185,101.906,49.185,358.046,305.978,370.409,24.941,20.366,24.941 +2607,81.537,335.596,612.253,229.527,452.861,332.380,607.108,57.995,103.309,57.995,358.491,306.058,370.625,23.002,20.530,23.002 +2608,81.570,321.591,620.174,242.323,445.852,319.197,614.559,66.915,104.910,66.915,358.468,306.166,370.678,21.731,20.139,21.731 +2609,81.601,304.670,627.003,256.448,440.724,302.892,620.211,75.328,106.477,75.328,356.753,306.319,370.795,25.912,19.611,25.912 +2610,81.630,292.660,628.729,270.703,437.872,292.069,621.418,85.380,107.879,85.380,354.672,306.757,369.342,25.563,20.109,25.563 +2611,81.660,271.291,629.188,285.834,437.387,271.732,621.129,93.132,109.367,93.132,352.333,307.695,368.475,28.286,19.612,28.286 +2612,81.691,255.828,628.439,300.611,439.431,258.328,617.753,103.167,111.206,103.167,344.581,309.373,366.531,23.637,20.104,23.637 +2613,81.722,214.916,682.287,315.903,443.604,245.837,611.252,113.523,113.143,113.523,208.416,309.495,363.362,20.657,19.117,20.657 +2614,81.754,217.651,629.574,329.590,450.674,234.363,603.881,123.042,114.494,123.042,299.405,312.086,360.704,19.989,18.963,19.989 +2615,81.785,208.846,611.313,342.306,459.892,224.113,594.410,132.089,116.721,132.089,312.545,313.492,358.098,19.917,20.064,19.917 +2616,81.815,208.846,611.313,342.306,459.892,224.113,594.410,132.089,116.721,132.089,312.545,313.492,358.098,19.917,20.064,19.917 +2617,81.844,203.455,593.797,352.991,470.184,215.908,583.719,141.017,118.413,141.017,323.926,315.410,355.966,19.686,21.614,19.686 +2618,81.875,201.887,577.211,361.397,481.524,209.855,572.528,149.556,120.288,149.556,335.035,317.081,353.519,19.595,21.954,19.595 +2619,81.905,198.276,564.330,368.135,494.045,205.855,561.223,157.704,122.593,157.704,334.886,318.984,351.268,19.504,23.314,19.504 +2620,81.937,197.033,552.035,373.304,506.901,204.095,550.228,165.646,124.651,165.646,334.756,320.147,349.336,19.754,24.921,19.754 +2621,81.967,195.870,540.093,375.800,519.600,203.211,539.216,173.184,126.870,173.184,332.609,322.000,347.395,19.783,25.200,19.783 +2622,81.998,197.000,527.500,377.122,531.598,204.061,527.500,0.000,128.660,0.000,332.000,322.811,346.122,23.000,25.612,23.000 +2623,82.029,198.825,516.959,376.474,543.411,205.964,517.816,6.843,130.946,6.843,330.310,323.633,344.690,25.140,26.048,25.140 +2624,82.060,201.379,508.518,374.897,553.984,208.598,510.197,13.092,133.394,13.092,328.966,324.124,343.789,25.120,25.855,25.120 +2625,82.090,204.864,500.389,371.879,564.408,211.778,502.803,19.250,135.939,19.250,328.274,324.715,342.920,25.341,26.426,25.341 +2626,82.121,209.905,490.679,367.974,573.532,216.601,494.006,26.423,138.302,26.423,326.943,325.449,341.897,25.943,26.147,25.943 +2627,82.154,214.530,484.151,363.623,581.918,220.758,488.037,31.964,140.981,31.964,327.122,326.258,341.805,25.865,26.509,25.865 +2628,82.185,219.241,478.520,358.792,589.575,225.225,483.049,37.117,143.616,37.117,326.570,326.598,341.578,25.625,26.948,25.625 +2629,82.215,219.241,478.520,358.792,589.575,225.225,483.049,37.117,143.616,37.117,326.570,326.598,341.578,25.625,26.948,25.625 +2630,82.243,223.864,473.551,353.269,596.154,229.599,478.770,42.302,146.310,42.302,325.434,326.996,340.943,24.888,26.626,24.888 +2631,82.274,228.700,469.279,347.657,601.924,233.970,474.931,47.006,149.184,47.006,325.367,327.044,340.822,24.489,26.910,24.489 +2632,82.305,233.600,465.421,341.816,607.034,238.376,471.461,51.667,151.991,51.667,325.605,327.170,341.006,24.171,26.824,24.171 +2633,82.337,238.300,462.153,335.916,611.251,242.610,468.505,55.840,154.949,55.840,325.671,327.071,341.022,23.435,26.676,23.435 +2634,82.369,243.234,459.292,330.270,614.929,247.107,466.046,60.164,158.033,60.164,325.475,327.013,341.047,22.975,27.035,22.975 +2635,82.400,247.911,457.070,324.347,618.052,251.278,463.989,64.051,161.200,64.051,325.620,326.997,341.009,22.321,26.869,22.321 +2636,82.430,252.523,455.102,318.642,620.720,255.347,462.035,67.834,164.358,67.834,326.705,326.637,341.677,21.609,26.847,21.609 +2637,82.462,257.100,453.300,312.852,622.816,259.515,460.545,71.565,167.800,71.565,326.347,326.245,341.621,20.871,27.368,20.871 +2638,82.493,261.496,451.928,307.136,624.380,263.395,459.104,75.174,171.193,75.174,327.088,326.012,341.934,20.386,27.183,20.386 +2639,82.523,265.962,450.808,301.763,625.535,267.393,457.965,78.690,174.516,78.690,327.514,325.957,342.112,19.612,26.661,19.612 +2640,82.554,270.728,449.815,296.384,626.505,271.738,457.108,82.117,177.337,82.117,327.628,325.485,342.354,19.750,26.831,19.750 +2641,82.586,275.217,449.288,290.460,627.641,275.795,456.698,85.544,1.081,85.544,328.265,325.301,343.130,19.111,26.995,19.111 +2642,82.616,279.234,449.055,284.831,628.028,279.416,456.477,88.597,4.764,88.597,328.416,326.037,343.263,18.819,27.156,18.819 +2643,82.646,279.234,449.055,284.831,628.028,279.416,456.477,88.597,4.764,88.597,328.416,326.037,343.263,18.819,27.156,18.819 +2644,82.673,283.917,448.874,279.348,628.038,283.670,455.913,92.010,8.344,92.010,330.253,325.729,344.340,18.410,27.783,18.410 +2645,82.706,288.741,449.191,273.462,627.673,288.120,455.731,95.423,12.433,95.423,331.976,326.144,345.115,18.625,27.290,18.625 +2646,82.739,293.584,449.705,268.230,627.214,292.622,455.954,98.746,16.314,98.746,333.309,325.281,345.954,18.855,27.247,18.855 +2647,82.772,298.495,450.458,261.880,626.318,297.168,456.600,102.200,20.688,102.200,334.117,326.084,346.685,19.020,26.967,19.020 +2648,82.806,303.868,451.462,256.360,625.312,302.123,457.568,105.945,24.228,105.945,335.022,324.826,347.723,19.230,26.355,19.230 +2649,82.839,308.757,452.855,250.512,623.540,306.697,458.690,109.440,28.072,109.440,335.926,324.471,348.302,19.082,26.588,19.082 +2650,82.873,314.282,454.473,244.929,621.303,311.848,460.101,113.385,31.608,113.385,336.779,323.696,349.042,19.250,26.270,19.250 +2651,82.907,319.039,456.241,238.931,618.911,316.203,461.786,117.096,36.158,117.096,337.694,322.988,350.151,18.633,25.961,18.633 +2652,82.939,324.417,458.649,232.779,615.672,321.229,463.938,121.079,40.446,121.079,338.875,322.683,351.227,19.264,25.363,19.264 +2653,82.970,330.228,461.678,226.750,611.750,326.683,466.674,125.362,45.000,125.362,340.040,321.734,352.293,19.151,25.456,19.151 +2654,83.001,335.861,465.294,222.678,606.072,332.655,469.128,129.898,49.600,129.898,341.211,321.613,351.207,19.104,21.129,19.104 +2655,83.032,341.146,469.162,217.112,600.731,337.779,472.593,134.465,53.909,134.465,342.330,320.846,351.946,18.965,21.811,18.965 +2656,83.063,346.673,473.878,211.229,595.546,342.823,477.192,139.274,58.109,139.274,343.732,320.868,353.892,19.493,20.604,19.493 +2657,83.093,352.413,479.784,205.821,588.797,348.284,482.720,144.583,62.592,144.583,345.016,319.855,355.150,19.106,19.728,19.106 +2658,83.124,357.588,486.152,200.547,580.709,353.186,488.704,149.899,67.046,149.899,346.219,317.910,356.395,19.535,19.825,19.535 +2659,83.155,362.311,493.689,196.472,571.998,358.060,495.611,155.671,71.375,155.671,348.086,317.184,357.417,19.397,20.759,19.397 +2660,83.187,366.727,502.187,193.029,562.618,362.446,503.600,161.732,75.964,161.732,349.739,316.024,358.755,19.453,21.101,19.453 +2661,83.218,369.581,511.728,190.038,552.320,365.057,512.691,167.984,80.437,167.984,349.622,314.663,358.871,20.245,20.815,20.245 +2662,83.248,369.581,511.728,190.038,552.320,365.057,512.691,167.984,80.437,167.984,349.622,314.663,358.871,20.245,20.815,20.245 +2663,83.276,368.783,522.084,188.543,541.270,364.036,522.520,174.758,84.824,174.758,343.411,312.980,352.945,20.720,20.683,20.720 +2664,83.306,368.731,530.867,188.131,529.478,363.869,530.684,2.161,89.210,2.161,341.587,311.177,351.318,23.700,20.302,23.700 +2665,83.338,369.980,543.100,189.133,517.134,365.303,542.252,10.283,93.590,10.283,346.142,310.895,355.648,24.777,20.172,24.777 +2666,83.371,372.331,555.041,192.185,504.526,367.963,553.676,17.354,98.036,17.354,355.723,309.857,364.875,25.413,20.456,25.413 +2667,83.403,369.459,568.385,196.327,491.962,364.733,566.135,25.463,102.346,25.463,357.404,308.914,367.873,25.409,18.974,25.409 +2668,83.433,363.340,581.552,203.054,479.917,358.986,578.598,34.160,106.718,34.160,358.356,308.228,368.878,25.002,18.544,25.002 +2669,83.465,354.081,594.444,211.689,468.532,350.253,590.833,43.332,110.995,43.332,358.907,307.358,369.432,24.800,18.679,24.800 +2670,83.496,344.122,605.343,222.353,458.404,340.695,600.955,52.009,115.358,52.009,359.241,306.556,370.377,24.679,18.527,24.679 +2671,83.527,331.113,614.662,234.854,449.775,328.325,609.615,61.087,119.781,61.087,358.687,306.862,370.217,23.426,18.197,23.426 +2672,83.557,316.227,622.098,248.249,443.002,314.259,616.595,70.322,123.855,70.322,359.679,307.028,371.366,22.062,18.422,22.062 +2673,83.588,297.479,627.109,262.822,438.545,296.269,621.103,78.611,128.328,78.611,358.885,307.509,371.136,27.258,18.684,27.258 +2674,83.618,286.114,627.488,278.067,436.177,286.044,621.061,89.377,132.709,89.377,357.066,308.674,369.920,26.064,18.427,26.064 +2675,83.648,286.114,627.488,278.067,436.177,286.044,621.061,89.377,132.709,89.377,357.066,308.674,369.920,26.064,18.427,26.064 +2676,83.675,269.947,625.977,293.780,436.303,270.973,619.636,99.197,137.231,99.197,356.397,309.460,369.244,27.132,18.646,27.132 +2677,83.707,252.129,620.547,309.253,439.048,254.279,614.075,108.369,141.875,108.369,353.226,311.718,366.865,20.586,18.890,20.586 +2678,83.739,238.446,613.180,324.156,444.674,241.528,607.338,117.820,147.529,117.820,351.641,313.382,364.851,20.440,19.251,20.440 +2679,83.773,226.236,604.675,336.891,451.287,230.710,598.718,126.907,152.850,126.907,348.401,315.360,363.301,20.170,20.124,20.170 +2680,83.807,216.393,594.401,349.102,460.580,222.059,588.850,135.591,159.146,135.591,345.166,317.414,361.030,19.521,20.826,19.521 +2681,83.839,208.670,583.362,359.064,470.251,215.467,578.407,143.909,165.651,143.909,342.680,319.660,359.501,19.681,20.795,19.681 +2682,83.871,203.224,572.485,367.386,482.076,210.725,568.461,151.793,172.983,151.793,340.752,321.742,357.776,19.668,19.698,19.668 +2683,83.903,199.103,561.453,373.498,494.092,207.522,558.265,159.263,1.169,159.263,337.891,323.178,355.893,19.486,18.812,19.486 +2684,83.933,197.103,550.866,378.759,504.892,206.532,548.575,166.346,9.142,166.346,335.935,325.979,355.342,19.490,22.424,19.490 +2685,83.963,195.611,540.878,381.056,516.825,205.865,539.601,172.901,18.518,172.901,332.661,326.994,353.327,19.116,22.674,19.116 +2686,83.993,196.935,531.490,381.400,530.091,206.148,531.341,179.071,28.782,179.071,332.070,328.493,350.499,18.630,20.501,18.630 +2687,84.024,198.231,521.654,381.093,540.772,207.192,522.272,3.945,38.437,3.945,331.557,329.367,349.523,23.909,20.117,23.909 +2688,84.055,200.838,513.473,379.895,550.527,209.100,514.850,9.462,48.945,9.462,331.922,329.728,348.673,25.317,20.993,25.317 +2689,84.086,202.452,507.639,377.306,559.320,210.524,509.629,13.851,59.534,13.851,331.030,330.121,347.657,25.204,21.092,25.204 +2690,84.116,202.452,507.639,377.306,559.320,210.524,509.629,13.851,59.534,13.851,331.030,330.121,347.657,25.204,21.092,25.204 +2691,84.145,205.433,500.780,374.658,566.944,213.209,503.409,18.677,70.427,18.677,330.168,329.943,346.585,25.938,22.802,25.938 +2692,84.175,207.870,495.414,371.459,573.692,215.443,498.628,22.989,81.069,22.989,329.429,329.965,345.883,25.469,24.259,25.469 +2693,84.208,211.145,489.942,366.649,579.038,217.566,493.275,27.433,91.909,27.433,329.193,328.451,343.662,25.481,22.954,25.481 +2694,84.240,214.088,485.853,363.557,583.725,220.188,489.513,30.964,103.349,30.964,328.591,328.208,342.819,25.382,24.803,25.382 +2695,84.272,216.387,482.223,360.223,587.831,222.401,486.283,34.019,114.624,34.019,327.582,328.210,342.094,25.259,25.567,25.259 +2696,84.303,218.540,478.780,357.476,590.804,224.645,483.359,36.870,126.074,36.870,326.200,326.874,341.463,25.000,26.665,25.000 +2697,84.335,221.001,475.895,355.368,593.073,226.838,480.729,39.634,137.379,39.634,326.139,326.370,341.296,24.979,26.534,24.979 +2698,84.366,223.550,473.837,353.498,595.823,229.275,479.005,42.071,148.836,42.071,325.547,326.890,340.972,25.114,27.570,25.114 +2699,84.396,225.905,472.068,352.127,598.143,231.266,477.273,44.153,160.265,44.153,326.878,327.197,341.822,24.861,27.495,24.861 +2700,84.428,228.232,470.222,350.694,600.139,233.626,475.818,46.051,171.495,46.051,325.960,327.980,341.505,25.400,26.712,25.400 +2701,84.457,229.922,469.438,349.808,601.325,234.806,474.796,47.659,2.545,47.659,327.464,328.920,341.964,24.611,27.484,24.611 +2702,84.488,231.895,468.225,348.529,603.882,236.763,473.842,49.086,14.036,49.086,328.070,331.789,342.938,25.240,26.679,25.240 +2703,84.519,232.635,467.218,347.436,606.175,237.921,473.590,50.323,25.624,50.323,327.374,333.635,343.932,24.471,22.566,24.471 +2704,84.549,232.635,467.218,347.436,606.175,237.921,473.590,50.323,25.624,50.323,327.374,333.635,343.932,24.471,22.566,24.471 +2705,84.577,232.253,464.896,346.553,608.429,239.111,473.439,51.245,36.639,51.245,323.142,333.824,345.054,24.525,19.972,24.525 +2706,84.607,221.365,452.285,344.220,611.257,239.291,473.723,50.099,47.447,50.099,289.746,334.972,345.636,22.031,19.443,22.031 +2707,84.639,222.528,453.786,342.809,612.515,238.490,474.537,52.431,59.036,52.431,293.576,335.108,345.936,18.413,19.722,18.413 +2708,84.670,233.350,462.672,340.928,613.525,240.856,472.544,52.753,70.419,52.753,320.789,334.989,345.591,24.046,20.001,24.046 +2709,84.702,235.027,463.945,338.909,613.513,240.879,471.659,52.815,81.573,52.815,325.160,333.655,344.525,24.670,19.308,24.670 +2710,84.733,235.439,464.608,338.050,612.528,240.479,471.240,52.773,92.936,52.773,326.395,331.744,343.055,24.706,20.332,24.706 +2711,84.764,235.073,464.841,337.680,611.806,239.902,471.135,52.501,104.547,52.501,326.383,331.557,342.251,24.869,21.656,24.869 +2712,84.795,234.130,465.382,338.578,610.031,238.811,471.372,51.994,116.237,51.994,326.168,328.761,341.373,24.134,23.949,24.134 +2713,84.826,233.610,465.512,339.966,608.148,238.225,471.281,51.340,128.063,51.340,326.091,327.396,340.866,24.988,26.373,24.988 +2714,84.856,232.061,466.232,341.980,606.246,236.964,472.166,50.440,139.720,50.440,325.111,326.377,340.506,24.403,27.012,24.403 +2715,84.888,231.242,467.069,344.564,604.358,236.190,472.813,49.261,151.310,49.261,325.631,326.259,340.794,25.175,27.399,25.175 +2716,84.920,229.771,468.658,347.447,602.571,234.866,474.303,47.929,162.857,47.929,326.092,326.507,341.301,24.634,27.759,24.634 +2717,84.949,228.527,469.928,350.513,600.742,233.998,475.664,46.359,173.830,46.359,326.002,327.766,341.855,25.382,26.897,25.382 +2718,84.979,228.527,469.928,350.513,600.742,233.998,475.664,46.359,173.830,46.359,326.002,327.766,341.855,25.382,26.897,25.382 +2719,85.007,226.314,471.682,353.463,598.102,231.977,477.279,44.665,4.653,44.665,326.752,329.921,342.676,25.092,27.780,25.092 +2720,85.040,224.375,473.593,356.524,596.109,230.443,479.190,42.686,15.130,42.686,327.388,331.694,343.897,25.285,25.161,25.285 +2721,85.073,221.227,474.650,359.208,594.245,229.011,481.309,40.549,25.201,40.549,324.212,333.239,344.699,25.278,21.662,25.278 +2722,85.106,204.975,468.217,361.404,593.165,226.806,484.211,36.227,33.354,36.227,291.811,334.190,345.937,22.225,19.116,22.225 +2723,85.140,204.280,474.643,363.579,590.911,223.725,488.658,35.781,41.873,35.781,298.550,333.901,346.489,18.564,19.199,18.564 +2724,85.173,213.358,482.287,365.519,588.049,223.346,488.771,32.992,50.440,32.992,322.798,333.927,346.614,24.736,19.509,24.736 +2725,85.206,212.100,486.700,367.275,584.129,220.739,491.637,29.745,60.205,29.745,326.335,333.163,346.236,25.427,19.988,25.427 +2726,85.240,209.631,491.564,369.433,578.704,217.594,495.438,25.942,70.201,25.942,328.221,331.907,345.931,25.495,21.716,25.495 +2727,85.273,207.293,497.017,371.595,572.553,214.542,499.917,21.801,80.218,21.801,329.981,329.823,345.594,25.440,23.685,25.440 +2728,85.304,204.445,502.811,372.500,565.000,211.017,504.877,17.447,90.000,17.447,330.382,326.000,344.160,25.540,23.000,25.540 +2729,85.337,201.690,508.821,374.667,556.815,208.488,510.382,12.938,100.685,12.938,330.762,324.594,344.713,25.103,25.419,25.103 +2730,85.369,199.579,515.019,376.081,547.696,206.389,516.009,8.272,111.209,8.272,331.206,322.578,344.970,25.193,26.479,25.193 +2731,85.400,197.510,523.301,376.846,538.134,204.596,523.661,2.904,121.562,2.904,331.335,322.060,345.525,23.853,26.463,23.853 +2732,85.432,195.105,534.149,376.756,527.166,203.264,533.749,177.198,132.889,177.198,330.877,320.909,347.213,19.082,25.987,19.082 +2733,85.463,192.582,543.751,376.001,515.676,203.534,542.053,171.187,143.465,171.187,326.778,321.214,348.944,19.373,24.448,19.373 +2734,85.494,180.405,556.982,374.638,504.315,204.816,550.314,164.722,153.818,164.722,301.273,322.002,351.884,18.659,21.111,18.659 +2735,85.523,190.360,566.367,371.298,492.473,207.138,559.708,158.352,164.476,158.352,318.667,323.635,354.770,18.982,22.375,18.982 +2736,85.555,203.170,573.050,368.284,482.859,211.055,568.770,151.504,174.226,151.504,340.392,322.792,358.336,19.536,21.173,19.536 +2737,85.586,209.091,582.548,362.334,474.170,215.387,578.004,144.184,5.672,144.184,344.315,321.899,359.843,19.303,22.356,19.303 +2738,85.616,215.874,591.775,354.404,465.519,220.731,587.198,136.699,15.255,136.699,348.121,320.477,361.467,18.961,21.313,18.961 +2739,85.645,215.874,591.775,354.404,465.519,220.731,587.198,136.699,15.255,136.699,348.121,320.477,361.467,18.961,21.313,18.961 +2740,85.673,224.038,600.720,345.026,456.557,228.090,595.720,129.026,25.741,129.026,350.611,318.020,363.483,19.299,24.272,19.299 +2741,85.711,233.539,609.221,333.564,450.090,236.572,604.208,121.169,36.469,121.169,352.422,314.992,364.139,19.242,23.881,19.242 +2742,85.742,244.897,615.741,321.377,444.724,246.812,611.272,113.199,47.186,113.199,355.184,310.189,364.908,19.565,24.402,19.565 +2743,85.775,256.179,621.929,307.995,440.900,257.368,617.278,104.337,58.903,104.337,357.241,306.811,366.843,22.370,23.256,22.370 +2744,85.807,271.907,627.320,293.280,439.156,272.657,621.464,97.297,69.677,97.297,355.095,305.011,366.903,24.925,21.047,24.925 +2745,85.840,285.762,643.489,278.060,438.745,285.452,621.910,89.176,80.727,89.176,323.341,304.298,366.504,24.141,18.490,24.141 +2746,85.873,296.116,630.625,264.201,440.016,294.587,621.951,80.004,90.535,80.004,351.279,304.071,368.895,25.779,19.410,25.779 +2747,85.906,311.901,625.225,250.981,442.596,309.879,618.610,73.004,101.310,73.004,357.250,305.157,371.084,21.970,19.023,21.970 +2748,85.939,324.962,618.309,238.405,447.369,322.328,612.735,64.713,112.166,64.713,358.408,307.154,370.738,22.371,19.482,22.371 +2749,85.969,336.855,610.470,227.495,453.975,333.884,605.944,56.720,123.111,56.720,360.023,308.459,370.850,23.666,18.282,23.666 +2750,86.000,347.183,601.407,217.278,461.268,343.596,597.302,48.848,133.958,48.848,360.204,309.893,371.108,24.785,19.384,24.785 +2751,86.031,355.599,591.253,208.692,469.962,351.893,588.005,41.238,144.246,41.238,361.137,310.850,370.993,25.561,19.120,25.561 +2752,86.062,362.281,580.343,201.637,478.848,358.428,577.769,33.745,154.708,33.745,361.383,310.081,370.651,25.591,18.629,25.591 +2753,86.097,367.430,569.666,196.074,488.279,363.115,567.501,26.641,165.217,26.641,360.004,309.462,369.660,25.600,19.002,25.600 +2754,86.128,372.298,559.640,192.566,497.906,366.955,557.710,19.868,175.861,19.868,357.305,308.076,368.667,25.466,19.580,25.466 +2755,86.158,375.644,551.534,190.810,506.487,365.985,549.225,13.449,5.866,13.449,340.762,307.593,360.624,21.080,21.490,21.080 +2756,86.189,383.413,541.169,189.435,516.986,365.093,538.494,8.307,16.020,8.307,316.817,306.592,353.846,22.816,22.269,22.816 +2757,86.221,371.106,529.545,189.186,526.193,364.274,529.362,1.541,27.198,1.541,336.551,307.286,350.220,24.664,22.285,24.664 +2758,86.252,369.373,523.484,190.010,537.174,364.723,523.800,176.112,37.304,176.112,341.116,307.415,350.436,20.545,21.098,20.545 +2759,86.282,369.373,523.484,190.010,537.174,364.723,523.800,176.112,37.304,176.112,341.116,307.415,350.436,20.545,21.098,20.545 +2760,86.311,369.349,515.849,191.493,546.595,365.665,516.434,170.981,47.651,170.981,346.033,308.950,353.493,20.098,21.969,20.098 +2761,86.343,369.969,508.438,192.817,555.546,366.063,509.400,166.171,57.882,166.171,350.462,312.384,358.508,19.749,21.526,19.749 +2762,86.375,366.975,501.923,193.724,563.419,362.586,503.373,161.719,68.350,161.719,349.104,314.389,358.349,19.643,20.774,19.643 +2763,86.407,363.746,496.445,194.908,570.996,359.077,498.361,157.683,78.170,157.683,348.814,317.720,358.908,19.496,20.627,19.496 +2764,86.440,360.314,491.530,195.953,576.957,355.477,493.906,153.849,87.397,153.849,348.817,320.487,359.596,19.813,18.980,19.813 +2765,86.473,357.045,487.431,196.805,581.756,352.052,490.258,150.474,96.340,150.474,348.877,321.798,360.354,19.782,20.319,19.782 +2766,86.506,353.960,483.817,198.161,585.753,349.011,486.988,147.344,106.390,147.344,348.840,323.363,360.595,19.839,19.921,19.839 +2767,86.540,351.031,480.934,199.395,588.427,346.411,484.217,144.595,115.489,144.595,349.071,323.480,360.407,19.346,20.457,19.346 +2768,86.574,349.045,477.973,201.589,590.721,344.363,481.596,142.265,124.095,142.265,347.560,322.835,359.398,19.056,19.798,19.056 +2769,86.606,348.422,474.894,203.147,591.528,342.761,479.593,140.307,131.878,140.307,343.127,322.450,357.841,18.952,20.488,18.952 +2770,86.638,401.974,424.589,205.253,593.293,341.042,477.473,139.044,139.243,139.044,195.573,320.410,356.935,18.211,20.226,18.211 +2771,86.669,364.574,453.633,207.196,594.307,339.972,475.964,137.770,147.389,137.770,289.256,319.053,355.707,18.227,19.487,18.227 +2772,86.700,350.416,464.956,209.174,594.896,339.790,475.138,136.219,156.286,136.219,324.895,317.616,354.329,19.524,19.612,19.524 +2773,86.730,345.726,466.239,211.248,595.532,338.637,473.285,135.173,165.421,135.173,333.069,316.497,353.059,19.222,21.465,19.222 +2774,86.761,343.102,467.030,213.515,596.720,337.846,472.411,134.323,176.149,134.323,336.559,315.833,351.605,19.162,23.629,19.162 +2775,86.791,341.384,467.252,215.783,597.870,337.415,471.412,133.655,6.633,133.655,339.417,315.225,350.917,19.024,24.602,19.024 +2776,86.822,340.148,467.488,216.680,599.995,336.611,471.252,133.210,17.840,133.210,341.565,316.276,351.896,18.773,25.592,18.773 +2777,86.854,339.949,467.272,217.523,601.458,336.252,471.256,132.856,28.720,132.856,341.532,317.405,352.402,19.203,26.057,19.203 +2778,86.886,340.054,467.158,217.631,602.943,335.907,471.628,132.856,39.806,132.856,341.222,318.684,353.417,19.203,25.991,19.203 +2779,86.915,340.054,467.158,217.631,602.943,335.907,471.628,132.856,39.806,132.856,341.222,318.684,353.417,19.203,25.991,19.203 +2780,86.944,339.921,467.548,218.963,602.383,336.461,471.234,133.195,50.528,133.195,341.965,320.124,352.075,18.659,21.251,18.659 +2781,86.979,340.003,468.548,218.024,603.385,336.496,472.223,133.659,61.157,133.659,343.200,323.149,353.360,18.739,22.013,18.739 +2782,87.024,341.350,471.319,212.698,602.474,337.619,474.996,135.409,82.556,135.409,346.433,324.384,356.911,18.925,19.627,18.925 +2783,87.058,342.125,472.435,209.890,600.994,338.217,476.161,136.368,92.946,136.368,347.242,324.805,358.040,19.441,19.254,19.441 +2784,87.092,343.495,474.072,207.452,598.370,339.729,477.477,137.872,103.325,137.872,348.239,325.060,358.394,18.966,18.617,18.966 +2785,87.131,345.797,475.330,204.745,595.047,341.455,479.034,139.543,113.720,139.543,347.186,324.025,358.600,19.335,18.574,19.335 +2786,87.163,348.453,476.920,202.077,591.052,343.618,480.756,141.575,124.061,141.575,346.523,322.836,358.868,19.100,19.789,19.100 +2787,87.194,351.937,478.688,199.978,586.465,346.293,482.828,143.733,134.193,143.733,344.552,320.477,358.551,19.026,20.693,19.026 +2788,87.225,364.681,475.030,198.295,581.909,349.258,485.359,146.189,144.206,146.189,321.191,319.094,358.315,18.706,20.517,18.706 +2789,87.256,402.208,458.216,196.646,577.451,351.934,488.096,149.275,154.942,149.275,241.321,316.741,358.288,18.231,19.647,18.231 +2790,87.288,376.037,480.411,195.254,572.025,354.886,491.429,152.484,165.854,152.484,309.921,314.814,357.619,18.591,20.655,18.591 +2791,87.319,371.118,490.044,193.884,566.117,358.284,495.903,155.462,176.486,155.462,329.208,312.884,357.424,20.666,21.004,20.666 +2792,87.350,371.118,490.044,193.884,566.117,358.284,495.903,155.462,176.486,155.462,329.208,312.884,357.424,20.666,21.004,20.666 +2793,87.379,370.016,496.873,192.772,559.711,361.307,500.144,159.409,6.789,159.409,338.828,311.562,357.434,19.302,21.467,19.302 +2794,87.411,370.708,503.532,191.921,553.577,364.124,505.504,163.327,16.493,163.327,343.767,310.898,357.511,19.738,22.139,19.738 +2795,87.443,370.890,510.894,190.956,547.701,365.980,511.961,167.735,27.489,167.735,347.195,309.958,357.243,19.798,23.209,19.798 +2796,87.474,369.848,518.452,190.293,541.288,365.227,519.059,172.511,37.073,172.511,343.356,309.608,352.678,19.988,22.376,19.988 +2797,87.507,369.239,525.950,190.618,533.477,364.965,526.122,177.698,46.320,177.698,340.449,308.575,349.004,20.335,21.996,20.335 +2798,87.541,369.671,532.399,190.154,526.231,364.962,532.139,3.162,56.310,3.162,340.304,308.968,349.737,23.848,22.188,23.848 +2799,87.574,371.208,540.984,190.729,517.221,366.107,540.184,8.909,64.885,8.909,343.310,308.026,353.637,25.259,23.316,25.259 +2800,87.606,372.380,551.360,192.766,507.770,367.828,550.138,15.027,75.217,15.027,350.697,307.985,360.122,25.066,21.017,25.066 +2801,87.639,372.249,562.366,194.776,498.388,367.546,560.518,21.448,84.996,21.448,356.943,308.185,367.049,25.429,18.372,25.429 +2802,87.673,367.900,572.967,198.469,488.145,363.220,570.450,28.272,94.219,28.272,357.538,307.451,368.165,25.600,19.120,25.600 +2803,87.706,362.389,583.670,204.300,478.178,358.045,580.554,35.655,103.604,35.655,358.506,307.782,369.198,25.577,18.806,25.577 +2804,87.738,354.205,594.666,211.462,468.484,350.307,590.984,43.363,112.989,43.363,359.387,307.781,370.109,24.840,18.802,24.840 +2805,87.771,345.353,603.755,220.409,459.393,341.921,599.563,50.690,122.381,50.690,360.032,307.628,370.866,23.986,18.744,23.986 +2806,87.804,334.341,611.872,230.876,451.226,331.550,607.319,58.496,131.701,58.496,360.705,308.099,371.386,22.883,18.729,22.883 +2807,87.836,321.784,618.790,242.679,444.706,319.638,613.854,66.509,141.155,66.509,360.847,307.824,371.612,21.810,18.782,21.810 +2808,87.867,307.454,624.591,255.641,439.915,305.961,619.277,74.303,150.621,74.303,361.536,308.102,372.575,23.224,18.999,23.224 +2809,87.898,296.542,626.139,269.469,436.793,295.903,620.758,83.231,160.051,83.231,360.758,308.423,371.597,26.644,19.246,26.644 +2810,87.929,278.000,627.000,283.354,435.924,278.000,620.962,90.000,169.573,90.000,358.000,308.753,370.076,24.000,19.028,24.000 +2811,87.960,263.338,624.325,298.494,436.866,264.187,618.697,98.584,179.673,98.584,358.449,309.052,369.831,26.063,20.091,26.063 +2812,87.989,252.398,619.802,312.725,439.783,254.372,613.896,108.487,8.781,108.487,354.809,310.352,367.263,20.553,21.220,20.553 +2813,88.021,239.574,613.037,326.091,445.723,242.148,607.913,116.674,18.260,116.674,353.755,311.174,365.224,20.142,21.688,20.142 +2814,88.053,228.925,605.391,338.111,452.217,232.405,600.447,125.140,28.496,125.140,352.020,313.876,364.113,19.620,23.428,19.620 +2815,88.083,228.925,605.391,338.111,452.217,232.405,600.447,125.140,28.496,125.140,352.020,313.876,364.113,19.620,23.428,19.620 +2816,88.112,219.687,596.176,348.572,461.673,223.730,591.874,133.226,38.333,133.226,348.940,314.697,360.747,19.442,23.806,19.442 +2817,88.142,211.983,586.597,357.319,472.057,216.554,582.899,141.022,48.160,141.022,346.541,315.548,358.300,19.636,25.019,19.636 +2818,88.174,206.302,576.176,364.794,482.823,211.305,573.123,148.605,59.036,148.605,344.393,317.101,356.115,19.771,24.524,19.771 +2819,88.207,202.183,565.907,369.904,493.911,207.527,563.509,155.836,69.444,155.836,341.561,318.118,353.278,19.455,24.696,19.455 +2820,88.240,199.189,555.727,373.532,504.772,204.832,553.982,162.816,79.509,162.816,339.603,318.693,351.416,19.610,25.529,19.610 +2821,88.273,197.492,546.126,375.500,515.500,203.425,545.014,169.380,90.000,169.380,337.064,319.000,349.135,19.965,25.000,19.965 +2822,88.306,196.792,536.441,376.965,525.636,203.344,535.956,175.764,100.408,175.764,334.676,321.098,347.817,19.391,26.496,19.391 +2823,88.337,197.463,525.932,376.934,535.169,204.016,526.058,1.102,111.251,1.102,333.015,322.008,346.124,23.419,26.407,23.419 +2824,88.369,199.304,517.136,376.340,544.210,205.990,517.939,6.843,121.627,6.843,331.065,323.760,344.534,25.140,26.583,25.140 +2825,88.400,201.090,510.461,375.088,552.323,207.915,511.889,11.821,131.910,11.821,329.875,324.012,343.822,24.766,26.649,24.766 +2826,88.431,203.184,503.555,373.736,559.579,210.482,505.745,16.699,141.938,16.699,328.439,324.967,343.678,25.478,26.257,25.478 +2827,88.462,205.875,497.321,371.651,566.720,213.348,500.245,21.371,151.928,21.371,327.231,326.235,343.282,25.791,26.000,25.791 +2828,88.493,209.000,490.500,369.631,573.393,216.931,494.466,26.565,161.495,26.565,326.019,327.301,343.753,25.044,26.057,25.044 +2829,88.525,212.667,484.723,367.129,579.298,220.645,489.519,31.010,170.815,31.010,324.983,328.625,343.602,25.722,24.978,25.722 +2830,88.557,216.022,480.753,364.494,584.519,223.626,486.073,34.975,179.293,34.975,325.157,329.098,343.717,25.901,25.072,25.901 +2831,88.589,219.843,477.198,361.029,589.985,226.868,482.793,38.536,7.702,38.536,325.486,331.421,343.448,25.467,25.802,25.467 +2832,88.620,223.992,474.399,357.642,594.786,230.054,479.858,42.006,15.562,42.006,327.119,332.902,343.436,25.182,24.413,25.182 +2833,88.650,226.750,471.250,353.879,600.438,233.079,477.579,45.000,23.372,45.000,326.683,333.925,344.585,24.749,22.718,24.749 +2834,88.680,226.750,471.250,353.879,600.438,233.079,477.579,45.000,23.372,45.000,326.683,333.925,344.585,24.749,22.718,24.749 +2835,88.708,230.719,468.631,350.264,604.412,236.382,475.043,48.552,29.803,48.552,327.594,334.276,344.704,24.657,21.368,24.657 +2836,88.741,233.184,465.041,346.236,608.667,239.552,473.095,51.667,35.311,51.667,324.493,334.094,345.028,24.353,20.809,24.353 +2837,88.775,236.224,462.195,341.784,612.661,242.627,471.249,54.728,39.895,54.728,323.241,334.683,345.420,24.034,20.216,24.034 +2838,88.807,240.211,460.815,337.376,616.085,245.740,469.561,57.700,43.741,57.700,324.939,334.645,345.633,23.502,19.973,23.502 +2839,88.841,243.853,458.980,332.871,618.748,248.734,467.707,60.781,46.888,60.781,325.790,334.769,345.788,23.135,19.944,23.135 +2840,88.874,247.132,457.169,328.274,621.764,251.785,466.557,63.638,49.301,63.638,325.108,334.936,346.063,22.781,20.034,22.781 +2841,88.908,250.896,455.912,323.694,623.842,254.833,464.994,66.560,50.860,66.560,326.468,334.556,346.264,22.116,20.104,22.116 +2842,88.940,254.827,455.374,319.013,625.702,257.897,463.579,69.489,51.760,69.489,328.998,334.644,346.519,21.528,20.383,21.528 +2843,88.971,259.031,454.598,314.218,627.545,261.519,462.459,72.435,51.885,72.435,330.094,334.412,346.585,21.989,20.899,21.989 +2844,89.003,262.914,454.168,309.412,628.669,264.732,461.199,75.506,51.216,75.506,332.123,334.214,346.646,21.497,21.047,21.497 +2845,89.035,266.069,452.997,304.317,629.811,267.566,460.322,78.449,49.857,78.449,331.877,333.542,346.830,19.702,21.745,19.702 +2846,89.067,269.870,452.690,299.109,630.551,270.889,459.524,81.521,47.992,81.521,332.819,332.325,346.638,19.173,22.021,19.173 +2847,89.097,274.155,451.862,293.252,631.742,274.822,458.947,84.616,45.759,84.616,333.293,331.065,347.524,19.328,24.779,19.328 +2848,89.129,277.940,451.588,288.001,631.465,278.221,458.202,87.563,43.084,87.563,333.804,330.578,347.044,18.706,24.764,18.706 +2849,89.159,281.901,450.960,282.656,631.816,281.841,457.882,90.496,40.219,90.496,333.996,330.077,347.841,18.605,26.495,18.605 +2850,89.190,286.416,450.761,277.028,631.298,285.966,457.512,93.814,36.928,93.814,334.458,329.200,347.990,18.625,25.962,18.625 +2851,89.222,290.743,450.426,271.808,630.038,289.938,457.101,96.877,33.690,96.877,334.281,328.105,347.728,18.639,25.794,18.639 +2852,89.253,295.221,450.923,266.216,628.633,294.141,457.058,99.987,30.481,99.987,335.176,326.522,347.636,19.053,26.508,19.053 +2853,89.283,295.221,450.923,266.216,628.633,294.141,457.058,99.987,30.481,99.987,335.176,326.522,347.636,19.053,26.508,19.053 +2854,89.311,299.934,451.012,260.436,626.625,298.513,457.028,103.291,26.966,103.291,335.254,326.051,347.617,19.127,26.175,19.127 +2855,89.342,305.049,451.611,255.043,624.400,303.281,457.477,106.771,23.471,106.771,335.231,324.723,347.485,19.202,26.649,19.202 +2856,89.374,309.845,452.577,249.340,622.014,307.732,458.347,110.113,19.026,110.113,335.243,323.252,347.531,19.204,26.862,19.204 +2857,89.407,314.958,453.641,243.009,618.845,312.429,459.389,113.749,14.903,113.749,335.262,322.142,347.821,19.258,27.097,19.258 +2858,89.440,320.311,455.683,237.481,615.595,317.479,461.120,117.512,11.551,117.512,335.660,320.077,347.920,19.327,26.146,19.327 +2859,89.474,325.594,457.886,231.497,611.522,322.520,462.927,121.373,7.765,121.373,336.708,318.732,348.515,19.096,25.311,19.096 +2860,89.507,331.104,460.497,225.305,607.090,327.558,465.478,125.446,3.604,125.446,337.106,317.756,349.333,19.386,24.943,19.386 +2861,89.540,337.229,463.618,219.000,601.513,333.082,468.579,129.898,179.265,129.898,337.387,316.192,350.320,19.306,22.819,19.306 +2862,89.572,343.330,466.749,213.175,595.993,337.924,472.289,134.297,174.710,134.297,335.842,316.701,351.322,19.173,20.781,19.173 +2863,89.608,350.212,470.473,207.059,589.460,342.979,476.748,139.051,170.156,139.051,333.908,316.337,353.059,19.238,20.776,19.238 +2864,89.638,363.133,471.876,201.941,583.765,348.090,482.740,144.162,165.964,144.162,318.147,315.781,355.258,20.042,20.858,20.042 +2865,89.669,375.012,474.930,196.900,576.700,352.279,488.264,149.607,161.565,149.607,304.828,315.595,357.537,18.686,20.239,18.686 +2866,89.700,428.016,462.174,192.242,568.404,356.730,495.503,154.942,156.626,154.942,202.376,315.271,359.763,18.565,19.821,18.565 +2867,89.731,368.590,500.452,188.792,558.650,360.701,503.200,160.796,152.784,160.796,344.456,315.773,361.164,19.110,21.343,19.110 +2868,89.762,368.958,510.317,185.806,549.684,363.387,511.603,167.005,148.510,167.005,351.755,315.242,363.191,19.938,21.769,19.938 +2869,89.792,367.615,520.515,184.353,539.182,362.246,521.123,173.541,144.176,173.541,346.785,314.722,357.591,20.698,22.510,20.698 +2870,89.822,367.147,528.369,184.550,528.469,361.881,528.288,0.875,139.745,0.875,344.082,313.693,354.615,24.348,22.672,24.348 +2871,89.854,368.736,539.745,185.698,517.188,363.283,538.975,8.036,135.230,8.036,346.761,313.249,357.775,24.452,22.582,24.452 +2872,89.884,368.736,539.745,185.698,517.188,363.283,538.975,8.036,135.230,8.036,346.761,313.249,357.775,24.452,22.582,24.452 +2873,89.913,370.900,551.979,190.165,506.292,366.657,550.784,15.732,129.618,15.732,355.069,312.169,363.887,24.850,20.247,24.850 +2874,89.943,369.645,565.103,194.386,493.807,365.129,563.126,23.651,124.711,23.651,358.559,310.914,368.418,25.254,19.057,25.254 +2875,89.973,364.250,579.042,200.947,482.181,359.941,576.292,32.550,119.954,32.550,359.085,309.462,369.309,25.306,18.445,25.306 +2876,90.004,356.403,591.540,209.819,470.885,352.535,588.156,41.186,115.201,41.186,358.979,307.904,369.257,24.929,17.883,24.929 +2877,90.038,346.914,603.034,218.053,460.336,342.740,598.102,49.764,110.113,49.764,358.498,306.795,371.420,24.017,21.677,24.017 +2878,90.069,334.429,613.345,230.893,452.204,331.217,608.032,58.841,104.973,58.841,358.094,305.653,370.512,22.985,19.602,22.985 +2879,90.100,320.249,621.012,244.025,444.968,317.774,614.967,67.733,100.491,67.733,357.471,304.745,370.536,21.744,19.993,21.744 +2880,90.131,303.119,628.072,258.071,440.804,301.274,620.583,76.159,95.662,76.159,354.360,304.876,369.787,26.202,19.448,26.202 +2881,90.162,290.938,637.608,272.552,439.038,289.885,622.339,86.055,92.045,86.055,337.509,304.484,368.119,24.631,19.309,24.631 +2882,90.192,267.508,647.970,287.422,438.559,269.127,621.094,93.447,88.698,93.447,312.758,305.239,366.609,27.372,17.768,27.372 +2883,90.224,255.095,627.393,304.093,441.196,257.453,617.828,103.851,84.382,103.851,345.621,306.080,365.324,23.275,20.116,23.275 +2884,90.257,242.973,616.849,319.726,446.012,245.392,611.519,114.414,79.846,114.414,351.157,307.422,362.865,20.692,22.140,20.692 +2885,90.290,230.367,606.919,334.027,453.278,233.087,602.854,123.786,74.899,123.786,351.113,309.256,360.895,19.923,23.202,19.923 +2886,90.324,219.389,596.863,347.040,462.485,223.319,592.654,133.034,70.017,133.034,347.640,311.072,359.157,19.632,24.520,19.632 +2887,90.359,211.207,585.045,357.534,473.686,215.484,581.702,141.988,64.916,141.988,346.018,314.024,356.875,19.706,24.396,19.706 +2888,90.393,204.835,573.098,366.154,485.769,209.937,570.241,150.757,60.255,150.757,343.453,317.033,355.148,19.937,24.311,19.937 +2889,90.427,200.805,560.675,373.193,498.364,206.734,558.417,159.153,54.888,159.153,341.177,320.488,353.866,19.591,24.694,19.591 +2890,90.460,198.548,549.012,377.836,511.303,205.310,547.475,167.196,50.194,167.196,338.637,323.421,352.505,20.035,24.455,20.035 +2891,90.494,197.800,537.208,380.361,524.199,205.414,536.543,175.011,45.744,175.011,335.431,326.068,350.716,19.687,22.423,19.687 +2892,90.527,198.052,525.173,380.854,537.026,206.459,525.413,1.637,41.248,1.637,332.493,328.690,349.312,23.533,21.121,23.533 +2893,90.559,199.216,513.203,380.005,548.663,209.002,514.834,9.462,36.923,9.462,328.634,330.804,348.475,25.317,20.656,25.317 +2894,90.591,200.500,505.000,377.940,559.375,211.689,508.051,15.255,32.635,15.255,324.599,332.090,347.794,25.347,20.510,25.347 +2895,90.623,194.204,493.508,374.438,568.954,214.373,502.116,23.114,28.657,23.114,303.049,333.360,346.908,18.675,19.438,18.675 +2896,90.654,188.960,477.554,370.577,578.222,219.523,493.201,27.111,24.298,27.111,277.737,332.621,346.406,22.734,20.097,22.734 +2897,90.683,188.960,477.554,370.577,578.222,219.523,493.201,27.111,24.298,27.111,277.737,332.621,346.406,22.734,20.097,22.734 +2898,90.713,213.231,480.654,365.586,584.931,223.456,487.471,33.690,20.469,33.690,320.062,333.440,344.640,25.239,21.090,25.239 +2899,90.743,221.651,475.411,359.584,592.973,228.667,481.368,40.333,16.074,40.333,325.658,332.702,344.064,25.300,23.436,25.300 +2900,90.776,227.974,470.994,353.210,599.731,233.670,476.813,45.607,11.962,45.607,326.635,332.302,342.919,25.674,24.507,25.674 +2901,90.809,233.069,467.176,346.670,605.848,237.898,473.051,50.583,7.989,50.583,328.108,331.036,343.317,24.414,26.512,24.414 +2902,90.841,238.382,463.774,339.830,610.697,242.514,469.742,55.305,4.423,55.305,328.055,330.031,342.571,23.780,26.809,23.780 +2903,90.874,243.374,460.363,333.000,614.500,246.987,466.599,59.910,0.000,59.910,327.773,328.000,342.187,23.167,27.000,23.167 +2904,90.908,248.498,457.685,325.702,618.409,251.676,464.289,64.299,176.600,64.299,327.296,327.729,341.953,22.411,27.051,22.411 +2905,90.940,253.449,455.310,318.582,621.208,256.123,462.077,68.438,173.387,68.438,327.345,327.099,341.897,21.518,27.267,21.518 +2906,90.973,258.765,453.016,311.479,623.382,260.994,460.111,72.565,169.735,72.565,326.919,326.376,341.792,21.857,26.986,21.857 +2907,91.005,263.286,451.335,304.248,624.974,265.005,458.539,76.584,166.201,76.584,327.188,325.978,341.998,20.016,27.124,20.016 +2908,91.038,268.284,450.203,296.907,626.392,269.504,457.521,80.538,162.582,80.538,327.318,325.308,342.157,19.235,26.623,19.235 +2909,91.070,273.746,449.282,289.938,627.337,274.458,456.621,84.455,159.001,84.455,328.079,325.021,342.826,19.462,26.272,19.462 +2910,91.100,278.384,448.842,282.819,627.379,278.646,456.091,87.932,155.751,87.932,328.147,324.918,342.655,18.760,25.809,18.760 +2911,91.131,283.935,448.061,275.655,627.105,283.697,455.533,91.818,150.684,91.818,328.533,324.286,343.483,18.848,24.568,18.848 +2912,91.162,289.391,447.589,268.638,626.882,288.568,455.816,95.711,148.841,95.711,327.865,324.322,344.400,18.607,22.826,18.607 +2913,91.192,294.892,447.896,261.716,625.812,293.561,455.940,99.400,145.305,99.400,329.279,324.323,345.585,19.332,22.009,19.332 +2914,91.224,300.584,447.991,254.672,624.229,298.540,456.663,103.263,143.052,103.263,328.504,324.405,346.323,19.585,20.806,19.585 +2915,91.256,306.723,448.186,248.116,622.587,303.741,457.850,107.148,140.711,107.148,327.401,324.358,347.628,19.580,20.334,19.580 +2916,91.287,313.514,448.371,241.934,620.496,309.200,459.424,111.318,138.814,111.318,325.280,323.984,349.009,19.450,20.225,19.450 +2917,91.316,320.388,448.325,235.543,617.597,314.317,461.259,115.145,137.726,115.145,321.415,324.094,349.990,20.192,19.642,20.192 +2918,91.346,320.388,448.325,235.543,617.597,314.317,461.259,115.145,137.726,115.145,321.415,324.094,349.990,20.192,19.642,20.192 +2919,91.375,326.698,448.810,229.752,614.360,318.864,463.049,118.820,137.353,118.820,318.550,323.485,351.053,20.201,19.240,20.201 +2920,91.407,334.692,448.437,224.235,611.108,323.545,465.326,123.425,137.752,123.425,312.277,323.087,352.750,18.028,19.980,18.028 +2921,91.439,343.290,448.523,218.824,606.957,328.313,468.053,127.485,139.268,127.485,304.481,321.925,353.704,18.102,19.786,18.102 +2922,91.471,352.816,448.939,214.001,602.258,333.167,471.106,131.553,141.491,131.553,295.138,321.400,354.382,18.045,19.941,18.045 +2923,91.502,363.852,449.372,208.801,596.532,337.890,474.744,135.659,144.162,135.659,282.288,320.353,354.890,18.140,19.276,18.140 +2924,91.535,375.383,451.248,204.189,590.591,342.752,478.580,140.050,147.724,140.050,271.163,319.194,356.294,18.169,19.179,18.169 +2925,91.565,384.430,456.615,200.202,584.372,347.289,483.057,144.551,151.489,144.551,265.981,317.794,357.164,18.582,19.180,18.582 +2926,91.596,388.565,466.292,196.480,577.083,351.800,488.142,149.275,156.098,149.275,272.382,315.974,357.918,18.644,19.199,18.644 +2927,91.625,393.227,476.003,193.300,569.400,356.049,493.992,154.179,161.565,154.179,276.088,314.647,358.690,18.787,19.922,18.787 +2928,91.657,395.623,486.829,190.509,560.806,359.824,500.254,159.444,167.386,159.444,283.123,313.027,359.591,19.078,19.879,19.078 +2929,91.688,395.462,498.692,188.793,552.056,363.966,507.282,164.745,173.935,164.745,296.270,311.646,361.562,19.295,20.541,19.295 +2930,91.720,390.848,511.266,188.000,542.000,364.597,515.821,170.156,0.000,170.156,303.659,308.000,356.945,19.926,22.000,19.926 +2931,91.754,384.996,522.726,188.161,532.918,363.972,524.169,176.074,8.471,176.074,309.850,308.049,351.995,20.579,21.760,20.579 +2932,91.799,379.008,533.779,188.954,523.024,364.070,533.273,1.938,17.103,1.938,320.831,306.805,350.724,20.274,23.453,20.274 +2933,91.832,375.837,541.894,190.650,512.531,365.548,540.248,9.090,24.986,9.090,333.320,306.709,354.160,25.673,24.103,25.673 +2934,91.864,374.772,552.122,193.475,504.324,367.822,550.257,15.018,35.106,15.018,346.196,304.766,360.588,25.324,21.027,25.324 +2935,91.899,374.163,563.360,197.221,495.286,368.004,560.911,21.689,45.830,21.689,352.633,303.491,365.891,25.807,20.289,25.807 +2936,91.931,368.594,575.220,201.712,487.037,363.562,572.381,29.427,56.941,29.427,354.243,304.351,365.798,25.928,19.988,25.928 +2937,91.961,362.284,584.797,206.278,477.852,358.088,581.746,36.027,69.020,36.027,357.388,303.483,367.764,25.071,19.762,25.071 +2938,91.992,354.240,594.885,213.314,468.804,350.613,591.449,43.452,81.511,43.452,358.048,303.799,368.041,24.797,18.895,24.797 +2939,92.023,346.405,604.257,221.246,460.594,342.717,599.760,50.643,94.304,50.643,357.636,304.397,369.270,24.709,18.335,24.709 +2940,92.054,335.128,612.110,229.468,452.440,332.052,607.159,58.155,106.699,58.155,359.455,305.547,371.112,23.052,20.497,23.052 +2941,92.085,323.177,618.972,241.082,445.760,320.687,613.418,65.854,119.798,65.854,358.931,306.863,371.104,21.869,18.772,21.869 +2942,92.116,323.177,618.972,241.082,445.760,320.687,613.418,65.854,119.798,65.854,358.931,306.863,371.104,21.869,18.772,21.869 +2943,92.144,309.550,624.337,253.296,440.734,307.865,618.655,73.474,132.675,73.474,360.331,307.826,372.185,22.229,18.997,22.229 +2944,92.177,298.662,626.122,266.415,437.102,297.809,620.111,81.917,145.449,81.917,359.066,308.449,371.209,26.445,18.990,26.445 +2945,92.208,285.264,626.980,279.989,435.445,285.219,620.714,89.591,157.985,89.591,358.069,309.379,370.603,25.042,19.024,25.042 +2946,92.241,266.992,625.157,294.610,436.175,267.656,619.342,96.509,170.758,96.509,358.380,309.874,370.084,25.746,19.433,25.746 +2947,92.274,255.063,621.517,308.391,438.647,256.649,615.675,105.189,2.911,105.189,356.694,309.668,368.801,22.183,20.584,22.183 +2948,92.306,243.194,615.365,321.791,443.259,245.655,609.802,113.860,15.403,113.860,354.048,311.270,366.214,20.102,21.584,20.102 +2949,92.338,232.659,608.661,334.149,449.578,236.007,603.309,122.028,27.646,122.028,352.131,312.277,364.758,19.492,23.243,19.492 +2950,92.372,223.221,600.434,344.306,458.047,227.084,595.799,129.806,39.611,129.806,349.669,313.683,361.736,19.590,24.281,19.590 +2951,92.405,215.564,591.228,353.382,467.324,219.812,587.293,137.193,52.524,137.193,347.449,314.242,359.031,19.742,24.284,19.742 +2952,92.437,209.250,581.856,360.240,477.432,213.726,578.663,144.503,65.376,144.503,345.134,314.991,356.130,19.361,23.636,19.361 +2953,92.469,204.557,572.359,365.302,487.263,209.177,569.843,151.427,77.619,151.427,342.692,316.060,353.213,19.642,23.775,19.642 +2954,92.500,200.834,562.571,370.500,497.000,206.123,560.442,158.076,90.000,158.076,340.951,316.000,352.354,19.458,25.000,19.458 +2955,92.532,198.474,553.476,373.106,506.364,204.187,551.874,164.340,102.758,164.340,338.003,318.467,349.868,19.987,25.432,19.987 +2956,92.563,197.059,544.769,375.444,515.669,203.439,543.679,170.304,115.572,170.304,335.584,319.472,348.530,20.170,25.606,20.170 +2957,92.594,195.769,535.894,376.584,524.466,203.233,535.378,176.044,128.571,176.044,332.419,322.036,347.382,18.987,26.632,18.987 +2958,92.623,195.419,527.927,377.509,532.132,204.241,528.136,1.356,141.147,1.356,328.979,323.291,346.628,18.705,25.115,18.705 +2959,92.654,196.267,518.827,377.798,539.617,205.950,519.795,5.711,153.739,5.711,326.472,324.691,345.934,24.279,24.063,24.279 +2960,92.683,196.267,518.827,377.798,539.617,205.950,519.795,5.711,153.739,5.711,326.472,324.691,345.934,24.279,24.063,24.279 +2961,92.712,195.964,510.181,377.907,547.230,208.346,512.646,11.260,166.334,11.260,320.852,326.717,346.101,24.918,23.282,24.918 +2962,92.743,194.497,502.730,376.564,554.067,210.363,507.188,15.693,178.563,15.693,312.414,325.424,345.373,26.113,22.233,26.113 +2963,92.775,186.626,495.683,377.076,560.272,213.045,504.031,17.537,10.582,17.537,291.294,331.096,346.707,22.951,21.853,22.951 +2964,92.806,151.114,474.993,375.213,567.971,214.852,501.904,22.891,24.228,22.891,208.489,332.031,346.861,18.159,20.381,18.159 +2965,92.838,204.788,492.381,372.216,575.707,216.850,498.357,26.354,36.507,26.354,320.191,333.208,347.113,18.546,19.208,18.546 +2966,92.870,210.623,486.645,369.261,581.556,220.491,492.177,29.275,49.554,29.275,324.330,333.312,346.954,25.442,20.510,25.442 +2967,92.901,214.124,484.195,365.725,586.409,222.390,489.355,31.973,62.199,31.973,326.477,333.290,345.966,25.336,20.426,25.336 +2968,92.932,216.556,482.244,362.281,590.196,223.699,487.076,34.077,74.745,34.077,327.878,332.405,345.128,25.263,21.313,25.263 +2969,92.962,218.867,480.056,357.970,593.024,224.907,484.493,36.304,87.357,36.304,327.994,330.710,342.984,25.114,20.225,25.114 +2970,92.992,220.726,478.134,356.811,594.618,226.466,482.654,38.224,100.574,38.224,328.740,329.325,343.351,24.993,24.838,24.993 +2971,93.024,221.805,476.238,353.706,595.810,227.373,480.884,39.843,113.694,39.843,326.754,328.896,341.259,25.043,24.632,25.043 +2972,93.057,222.715,474.688,352.846,596.013,228.300,479.581,41.219,126.955,41.219,325.960,326.994,340.809,25.208,27.035,25.208 +2973,93.089,223.566,473.378,352.375,596.448,229.155,478.459,42.274,140.047,42.274,325.977,326.247,341.086,24.956,27.504,24.956 +2974,93.121,224.586,472.874,352.678,596.812,230.061,477.997,43.098,153.012,43.098,326.430,326.086,341.427,25.040,27.459,25.040 +2975,93.150,224.586,472.874,352.678,596.812,230.061,477.997,43.098,153.012,43.098,326.430,326.086,341.427,25.040,27.459,25.040 +2976,93.179,225.120,472.374,353.182,597.691,230.921,477.901,43.616,165.781,43.616,326.274,327.430,342.298,24.963,27.677,24.963 +2977,93.210,225.462,472.022,354.023,597.134,231.316,477.683,44.038,177.962,44.038,326.203,328.397,342.491,25.154,27.854,25.154 +2978,93.241,226.369,472.104,354.589,597.550,231.959,477.529,44.141,10.229,44.141,327.598,331.022,343.176,25.626,27.037,25.626 +2979,93.274,225.304,471.669,354.797,598.994,232.079,478.227,44.067,21.901,44.067,325.479,332.770,344.337,24.895,23.620,24.895 +2980,93.306,220.945,471.181,355.718,599.725,230.960,480.130,41.781,32.535,41.781,318.570,333.635,345.432,25.177,20.597,25.177 +2981,93.337,170.038,424.560,355.390,601.179,230.051,481.715,43.603,41.947,43.603,180.552,333.817,346.302,17.793,19.893,17.793 +2982,93.368,216.322,469.385,355.023,601.771,230.017,482.211,43.124,51.732,43.124,308.411,334.857,345.936,18.521,19.056,18.521 +2983,93.399,222.736,472.649,354.805,601.132,231.172,480.327,42.308,62.103,42.308,322.683,334.644,345.496,25.087,19.391,25.087 +2984,93.429,222.205,474.527,354.665,599.948,229.616,480.984,41.067,72.350,41.067,325.204,333.654,344.864,25.224,19.665,25.224 +2985,93.460,221.985,476.840,356.117,597.734,228.281,482.025,39.472,84.193,39.472,328.161,332.050,344.474,26.019,21.803,26.019 +2986,93.491,219.917,478.750,356.513,594.208,225.762,483.240,37.531,95.906,37.531,327.840,329.860,342.580,25.456,22.055,25.456 +2987,93.522,217.778,480.874,358.326,590.248,223.493,484.924,35.324,106.699,35.324,327.805,328.056,341.814,25.518,24.329,25.518 +2988,93.553,215.231,483.494,360.800,586.100,221.241,487.374,32.840,119.745,32.840,327.282,326.831,341.589,25.389,26.295,25.389 +2989,93.583,215.231,483.494,360.800,586.100,221.241,487.374,32.840,119.745,32.840,327.282,326.831,341.589,25.389,26.295,25.389 +2990,93.612,212.698,486.435,363.959,580.713,219.025,490.105,30.114,131.987,30.114,327.034,324.745,341.663,25.415,27.353,25.415 +2991,93.642,210.630,490.224,367.208,575.062,216.927,493.447,27.104,144.203,27.104,327.776,324.810,341.924,25.521,27.577,25.521 +2992,93.674,207.215,494.009,370.584,569.120,214.721,497.304,23.703,156.371,23.703,326.773,325.522,343.167,25.482,26.683,25.482 +2993,93.707,202.838,498.078,374.008,562.929,212.982,501.798,20.143,168.179,20.143,322.848,326.780,344.457,25.689,24.538,25.689 +2994,93.739,194.852,502.285,376.000,556.000,210.561,506.839,16.168,0.000,16.168,312.457,326.000,345.169,25.529,22.000,25.529 +2995,93.770,128.481,498.627,379.579,548.738,208.900,514.819,11.384,11.845,11.384,183.966,328.581,348.032,18.396,22.342,18.396 +2996,93.801,196.099,519.512,380.357,543.739,207.359,520.863,6.843,23.726,6.843,326.299,331.780,348.982,19.421,23.673,19.421 +2997,93.832,197.209,524.724,381.049,537.348,206.196,525.023,1.909,35.200,1.909,332.349,330.151,350.333,23.620,20.023,23.620 +2998,93.862,197.338,535.242,380.119,529.830,204.819,534.804,176.648,46.701,176.648,335.596,328.373,350.582,19.168,20.924,19.168 +2999,93.893,197.938,543.490,379.011,519.993,204.769,542.397,170.910,58.344,170.910,337.349,324.807,351.185,19.117,24.743,19.117 +3000,93.924,198.873,552.673,375.648,510.246,204.738,551.092,164.917,70.665,164.917,339.154,320.956,351.302,19.681,25.659,19.681 +3001,93.955,200.643,561.912,371.605,499.716,205.999,559.810,158.571,83.774,158.571,340.720,317.824,352.227,19.053,25.449,19.053 +3002,93.985,203.591,571.992,366.217,488.740,208.772,569.236,151.998,96.170,151.998,341.878,315.056,353.614,19.614,25.043,19.614 +3003,94.015,203.591,571.992,366.217,488.740,208.772,569.236,151.998,96.170,151.998,341.878,315.056,353.614,19.614,25.043,19.614 +3004,94.044,206.218,582.747,359.641,477.908,212.879,578.103,145.114,108.778,145.114,339.149,313.742,355.388,19.190,24.067,19.190 +3005,94.076,202.067,601.634,350.670,467.296,218.303,587.112,138.189,121.701,138.189,313.511,313.994,357.076,19.487,21.971,19.487 +3006,94.109,188.801,636.811,342.163,457.125,225.341,594.424,130.764,133.345,130.764,248.613,314.192,360.538,19.144,20.673,19.144 +3007,94.142,229.493,608.674,333.102,449.310,234.041,601.817,123.557,143.393,123.557,347.237,315.020,363.694,19.313,21.399,19.313 +3008,94.175,240.509,614.776,323.194,443.347,243.598,608.417,115.907,154.885,115.907,352.376,315.043,366.515,19.686,19.750,19.686 +3009,94.208,252.320,619.983,311.969,439.369,254.218,614.126,107.956,166.695,107.956,355.783,314.586,368.098,19.378,19.601,19.378 +3010,94.242,263.381,624.239,299.559,437.278,264.269,618.734,99.162,178.112,99.162,358.368,311.457,369.520,24.649,19.220,24.649 +3011,94.275,280.864,625.852,286.178,435.444,281.092,620.432,92.409,9.577,92.409,359.229,309.246,370.078,25.725,21.592,25.725 +3012,94.306,289.447,626.629,272.903,436.616,288.820,621.497,83.027,20.283,83.027,360.551,307.540,370.891,26.215,21.574,26.215 +3013,94.337,304.859,624.402,259.130,440.562,303.801,620.229,75.769,33.351,75.769,361.658,305.367,370.269,24.493,19.651,24.493 +3014,94.368,319.824,621.756,246.750,445.250,317.457,615.890,68.028,45.000,68.028,356.753,302.642,369.403,21.966,19.092,21.966 +3015,94.398,351.860,652.497,234.632,451.740,327.986,610.911,60.141,56.952,60.141,273.137,302.595,369.040,20.814,18.229,20.814 +3016,94.430,344.482,608.248,225.094,459.353,340.312,602.797,52.583,67.902,52.583,354.142,303.794,367.871,23.970,20.753,23.970 +3017,94.460,352.792,597.218,214.363,467.609,349.050,593.458,45.131,80.331,45.131,357.815,304.158,368.425,25.592,18.883,25.592 +3018,94.490,360.698,587.216,206.499,476.554,356.336,583.844,37.708,91.548,37.708,357.302,305.348,368.330,26.201,17.939,26.201 +3019,94.522,365.917,576.588,199.425,486.322,361.570,574.007,30.705,102.743,30.705,358.264,309.120,368.374,25.639,18.377,25.639 +3020,94.553,369.736,565.839,193.706,495.698,365.056,563.761,23.946,113.881,23.946,358.215,311.610,368.454,25.564,19.097,25.564 +3021,94.583,369.736,565.839,193.706,495.698,365.056,563.761,23.946,113.881,23.946,358.215,311.610,368.454,25.564,19.097,25.564 +3022,94.611,371.843,555.545,188.986,504.490,366.644,553.895,17.613,125.819,17.613,357.649,313.283,368.558,25.250,22.972,25.250 +3023,94.642,369.771,544.890,186.029,513.031,364.301,543.772,11.552,136.995,11.552,350.470,314.061,361.635,25.818,23.486,25.818 +3024,94.674,368.084,536.412,184.985,521.477,362.798,535.871,5.847,147.499,5.847,346.081,313.459,356.709,24.498,22.105,24.498 +3025,94.707,367.100,528.129,184.917,528.790,362.026,528.083,0.526,158.499,0.526,344.041,312.335,354.189,24.825,22.048,24.825 +3026,94.739,371.418,522.895,186.259,534.933,362.967,523.521,175.764,168.261,175.764,337.187,312.417,354.136,20.241,21.489,20.241 +3027,94.770,397.353,511.413,187.540,543.241,363.724,516.267,171.787,178.176,171.787,288.505,309.353,356.461,19.856,21.397,19.856 +3028,94.801,375.345,508.880,189.987,549.082,365.433,511.148,167.114,9.051,167.114,338.638,308.395,358.975,19.863,21.525,19.863 +3029,94.831,369.362,503.868,192.288,556.061,363.936,505.500,163.266,20.701,163.266,346.539,309.579,357.873,19.785,21.213,19.785 +3030,94.862,365.792,498.787,195.223,562.655,362.005,500.192,159.647,32.856,159.647,348.109,310.150,356.188,19.477,21.158,19.477 +3031,94.892,363.213,494.260,197.664,569.348,359.674,495.815,156.283,45.288,156.283,348.078,311.173,355.807,19.671,21.774,19.671 +3032,94.924,360.865,490.233,200.382,575.845,357.052,492.156,153.241,57.492,153.241,346.604,315.832,355.145,19.629,21.563,19.629 +3033,94.955,358.145,486.874,200.452,581.206,353.743,489.367,150.474,69.444,150.474,347.167,317.884,357.286,19.667,19.897,19.667 +3034,94.984,355.155,484.336,200.915,585.278,350.783,487.054,148.134,81.069,148.134,347.977,321.074,358.273,19.235,19.758,19.235 +3035,95.014,355.155,484.336,200.915,585.278,350.783,487.054,148.134,81.069,148.134,347.977,321.074,358.273,19.235,19.758,19.235 +3036,95.044,352.673,482.036,200.723,588.101,348.083,485.138,145.949,92.603,145.949,348.411,322.712,359.491,19.639,20.161,19.639 +3037,95.076,350.381,480.574,200.755,590.067,346.112,483.667,144.084,104.813,144.084,349.728,323.762,360.271,19.437,20.302,19.437 +3038,95.108,349.193,478.633,201.642,591.070,344.715,482.051,142.646,116.114,142.646,348.482,323.375,359.749,19.120,19.385,19.120 +3039,95.140,349.305,476.256,201.925,590.654,343.696,480.744,141.340,128.191,141.340,344.363,322.503,358.730,19.209,21.546,19.209 +3040,95.172,365.936,460.393,203.746,590.911,343.051,479.278,140.469,138.566,140.469,297.655,320.489,356.996,18.571,20.757,18.571 +3041,95.203,366.554,457.755,205.064,591.114,342.518,477.945,139.970,150.719,139.970,293.296,318.779,356.077,18.224,19.694,18.224 +3042,95.234,353.142,468.828,206.420,590.256,343.082,477.479,139.304,161.870,139.304,327.763,316.896,354.300,19.030,21.286,19.030 +3043,95.267,349.559,471.143,208.255,589.487,343.443,476.456,139.017,174.428,139.017,336.166,315.017,352.368,19.381,21.702,19.381 +3044,95.297,348.405,472.468,209.306,590.832,343.565,476.658,139.122,6.035,139.122,339.664,314.840,352.469,19.208,24.380,19.208 +3045,95.326,348.001,473.343,209.741,591.293,343.981,476.776,139.497,18.083,139.497,342.327,315.291,352.900,19.342,25.744,19.342 +3046,95.357,348.190,474.423,209.355,592.259,344.101,477.841,140.110,29.249,140.110,342.872,316.161,353.530,19.560,25.582,19.560 +3047,95.389,349.143,475.649,210.191,590.599,345.818,478.338,141.033,40.384,141.033,343.546,316.509,352.098,19.323,21.591,19.323 +3048,95.419,350.146,477.043,208.646,590.696,346.540,479.837,142.234,51.605,142.234,344.680,317.994,353.804,19.072,20.851,19.072 +3049,95.450,350.146,477.043,208.646,590.696,346.540,479.837,142.234,51.605,142.234,344.680,317.994,353.804,19.072,20.851,19.072 +3050,95.478,351.938,479.045,206.406,590.250,347.647,482.177,143.881,61.909,143.881,344.970,320.234,355.596,19.387,21.070,19.387 +3051,95.510,352.878,481.144,203.372,588.453,348.572,484.108,145.458,73.701,145.458,347.079,321.161,357.535,19.256,19.982,19.256 +3052,95.543,354.338,483.897,200.371,585.914,349.902,486.729,147.442,84.352,147.442,348.289,321.694,358.816,19.619,19.476,19.619 +3053,95.576,356.612,486.613,197.601,582.176,351.880,489.365,149.822,94.794,149.822,349.101,321.638,360.048,19.460,18.998,19.460 +3054,95.608,358.522,490.160,194.512,577.773,353.844,492.595,152.509,105.097,152.509,350.772,321.516,361.319,19.480,18.780,19.480 +3055,95.639,361.097,494.015,191.764,572.125,356.193,496.246,155.537,115.356,155.537,351.405,320.732,362.180,19.361,19.046,19.361 +3056,95.670,362.909,498.577,189.880,566.201,358.539,500.262,158.916,125.559,158.916,352.807,319.449,362.176,19.515,20.152,19.515 +3057,95.701,366.164,503.824,187.157,558.206,360.996,505.439,162.646,136.193,162.646,352.501,316.892,363.330,19.567,21.135,19.567 +3058,95.732,368.375,509.968,185.649,550.218,363.276,511.164,166.795,145.586,166.795,353.228,315.399,363.703,19.591,21.230,19.591 +3059,95.763,368.082,517.047,184.905,541.387,362.795,517.837,171.511,154.378,171.511,348.144,313.440,358.835,19.781,21.686,19.781 +3060,95.793,368.042,525.182,185.069,532.623,362.390,525.533,176.441,162.615,176.441,343.513,311.635,354.839,20.281,21.165,20.281 +3061,95.824,368.231,533.903,186.107,523.120,362.636,533.706,2.010,170.218,2.010,342.386,309.604,353.584,20.444,20.797,20.444 +3062,95.856,370.973,543.604,188.314,512.589,363.964,542.615,8.030,176.872,8.030,342.090,307.525,356.246,20.769,20.996,20.769 +3063,95.887,370.733,554.306,191.566,502.847,365.897,553.054,14.517,3.270,14.517,352.708,305.987,362.700,21.142,19.311,21.142 +3064,95.917,370.733,554.306,191.566,502.847,365.897,553.054,14.517,3.270,14.517,352.708,305.987,362.700,21.142,19.311,21.142 +3065,95.945,371.529,564.544,195.957,491.653,365.745,562.175,22.267,9.111,22.267,355.198,305.278,367.699,23.602,21.387,23.602 +3066,95.975,366.761,576.840,202.130,480.045,361.310,573.609,30.651,14.230,30.651,356.607,304.398,369.281,25.395,23.751,25.395 +3067,96.007,360.081,587.563,209.498,470.988,355.595,584.053,38.047,18.246,38.047,358.075,303.869,369.468,25.097,20.372,25.097 +3068,96.041,350.076,599.255,219.154,460.127,346.169,595.076,46.931,21.894,46.931,359.197,303.060,370.639,24.473,22.772,24.473 +3069,96.073,338.829,608.660,229.805,452.767,336.025,604.607,55.327,24.905,55.327,360.749,302.844,370.606,23.467,20.472,23.467 +3070,96.105,325.204,616.734,242.628,445.401,323.176,612.526,64.274,27.711,64.274,361.704,302.918,371.046,22.219,21.623,22.219 +3071,96.136,309.306,623.499,256.179,440.959,308.034,619.299,73.147,30.018,73.147,362.654,303.168,371.429,23.462,19.953,23.462 +3072,96.167,296.743,625.881,270.892,438.084,296.220,621.451,83.268,32.229,83.268,361.220,304.552,370.142,27.110,20.008,27.110 +3073,96.198,281.287,625.945,286.680,436.236,281.529,620.891,92.743,34.287,92.743,359.259,305.366,369.379,28.632,22.834,28.632 +3074,96.229,264.189,623.639,302.663,437.811,265.269,618.721,102.385,36.431,102.385,359.370,307.615,369.441,26.253,23.735,26.253 +3075,96.258,247.086,617.240,318.122,442.598,249.140,612.129,111.894,38.660,111.894,355.039,309.536,366.055,20.214,23.895,20.214 +3076,96.290,233.715,609.243,332.488,450.015,236.611,604.509,121.450,40.365,121.450,352.545,311.405,363.645,20.318,24.153,20.318 +3077,96.321,222.366,599.248,345.138,459.398,226.099,594.929,130.833,42.274,130.833,349.340,313.533,360.759,20.251,24.889,20.251 +3078,96.350,222.366,599.248,345.138,459.398,226.099,594.929,130.833,42.274,130.833,349.340,313.533,360.759,20.251,24.889,20.251 +3079,96.379,213.116,587.637,356.250,470.250,217.526,583.915,139.844,45.000,139.844,347.108,316.077,358.650,19.800,24.042,19.800 +3080,96.411,206.292,575.831,365.316,482.093,211.518,572.664,148.791,47.291,148.791,344.722,317.887,356.944,19.865,24.870,19.865 +3081,96.442,201.601,563.548,372.228,495.145,207.490,561.082,157.282,50.140,157.282,342.075,320.347,354.843,19.559,23.654,19.559 +3082,96.475,198.779,551.643,375.684,509.791,204.749,550.100,165.512,52.289,165.512,338.835,322.771,351.167,20.030,21.319,20.030 +3083,96.506,197.722,539.610,379.691,522.164,204.959,538.767,173.355,54.920,173.355,336.385,324.666,350.958,19.817,24.619,19.817 +3084,96.540,198.000,527.000,380.449,535.219,205.725,527.000,0.000,57.995,0.000,334.000,326.479,349.449,24.000,23.850,24.000 +3085,96.571,199.893,516.052,379.164,548.039,207.902,517.120,7.595,60.489,7.595,331.533,327.939,347.692,25.111,23.070,25.111 +3086,96.602,202.725,507.164,376.900,559.800,210.648,509.171,14.216,63.435,14.216,330.842,329.596,347.188,25.243,22.361,25.243 +3087,96.632,206.570,498.086,372.980,570.659,214.318,501.048,20.925,66.557,20.925,329.528,330.780,346.118,25.412,21.296,25.412 +3088,96.662,211.804,489.189,368.445,580.521,219.166,493.123,28.118,69.444,28.118,329.005,331.812,345.701,25.470,21.536,25.470 +3089,96.692,215.769,482.346,362.647,589.589,223.398,487.432,33.690,72.366,33.690,326.718,332.354,345.057,25.239,20.695,25.239 +3090,96.723,220.851,475.940,356.610,597.471,228.257,482.053,39.536,75.217,39.536,325.713,333.084,344.919,24.973,20.332,24.973 +3091,96.754,226.750,471.250,350.036,604.311,233.337,477.837,45.000,78.024,45.000,325.269,333.637,343.899,24.749,20.039,24.749 +3092,96.785,231.636,466.524,343.275,610.455,237.905,473.981,49.950,80.776,49.950,325.054,333.722,344.539,24.152,19.615,24.152 +3093,96.815,231.636,466.524,343.275,610.455,237.905,473.981,49.950,80.776,49.950,325.054,333.722,344.539,24.152,19.615,24.152 +3094,96.845,236.933,462.339,336.343,615.408,242.754,470.640,54.958,83.766,54.958,324.250,333.712,344.526,23.637,19.723,23.637 +3095,96.875,242.335,458.967,329.269,619.572,247.505,467.817,59.704,86.634,59.704,324.057,333.893,344.555,23.041,19.496,23.041 +3096,96.909,247.604,455.997,322.278,623.988,252.399,465.900,64.163,89.477,64.163,323.474,334.114,345.480,22.217,19.460,22.217 +3097,96.941,252.780,453.508,314.791,626.467,256.764,463.601,68.459,92.675,68.459,323.890,333.711,345.592,21.491,20.557,21.491 +3098,96.974,258.070,451.241,306.992,628.583,261.323,461.762,72.814,95.290,72.814,323.707,333.628,345.732,20.831,20.376,20.831 +3099,97.005,263.530,448.683,300.031,630.271,266.264,460.499,76.971,97.595,76.971,321.770,333.978,346.027,20.773,21.543,20.773 +3100,97.037,268.400,445.700,292.996,631.272,270.561,459.389,81.027,100.305,81.027,318.840,333.621,346.557,19.495,21.377,19.495 +3101,97.069,273.962,443.068,285.966,631.843,275.312,458.589,85.030,103.178,85.030,315.895,332.960,347.052,19.145,20.865,19.145 +3102,97.101,279.605,441.904,279.189,631.911,279.887,458.382,89.021,106.044,89.021,314.022,332.422,346.983,18.356,20.930,18.356 +3103,97.132,285.776,439.619,272.722,630.904,284.846,457.451,92.987,109.002,92.987,311.984,330.814,347.698,18.306,20.338,18.306 +3104,97.164,292.296,438.284,265.682,629.969,289.922,457.494,97.046,111.961,97.046,309.577,330.349,348.290,18.277,19.970,18.277 +3105,97.194,298.983,437.584,259.405,628.728,295.001,457.923,101.079,114.520,101.079,307.476,329.386,348.925,18.214,20.527,18.214 +3106,97.225,306.093,436.743,252.306,626.882,300.207,458.497,105.141,117.361,105.141,305.030,328.763,350.103,17.898,20.334,17.898 +3107,97.256,314.213,434.778,245.633,624.289,305.514,459.538,109.359,119.924,109.359,298.082,327.820,350.571,17.900,20.987,17.900 +3108,97.287,324.249,430.859,239.010,621.324,311.040,461.052,113.629,122.448,113.629,285.498,326.960,351.410,17.865,20.951,17.865 +3109,97.316,334.555,429.396,232.171,617.470,316.719,462.839,118.072,124.992,118.072,276.647,326.136,352.452,17.941,20.645,17.941 +3110,97.346,334.555,429.396,232.171,617.470,316.719,462.839,118.072,124.992,118.072,276.647,326.136,352.452,17.941,20.645,17.941 +3111,97.377,353.516,416.895,225.368,613.018,322.403,465.431,122.661,127.349,122.661,237.928,324.800,353.233,17.895,19.937,17.895 +3112,97.409,377.724,404.054,218.799,607.923,328.374,468.589,127.405,129.472,127.405,192.001,323.802,354.484,18.224,20.025,18.224 +3113,97.441,388.023,413.232,212.205,601.738,334.020,472.209,132.479,131.557,132.479,195.657,322.554,355.590,18.314,19.974,18.314 +3114,97.473,350.489,467.260,206.338,594.823,340.028,476.849,137.490,133.748,137.490,328.156,321.950,356.537,18.245,19.798,18.245 +3115,97.505,352.911,476.738,200.954,587.030,345.805,482.111,142.907,136.091,142.907,339.822,321.157,357.640,18.541,19.762,18.541 +3116,97.537,357.497,484.031,195.346,578.393,350.827,488.092,148.663,138.643,148.663,343.909,320.045,359.526,19.087,20.425,19.087 +3117,97.568,361.641,492.543,191.230,569.401,355.874,495.253,154.829,141.000,154.829,348.352,318.153,361.095,19.224,20.806,19.224 +3118,97.599,366.307,501.472,187.613,559.151,360.161,503.573,161.125,143.027,161.125,349.506,316.813,362.497,19.628,21.302,19.628 +3119,97.629,368.631,511.607,185.255,547.930,363.274,512.765,167.800,145.154,167.800,351.895,315.229,362.859,20.050,22.927,20.050 +3120,97.659,367.540,522.447,184.157,536.507,362.046,522.942,174.852,146.889,174.852,345.744,314.213,356.778,20.960,21.924,20.960 +3121,97.690,367.939,531.067,185.539,525.664,362.595,530.818,2.663,148.026,2.663,343.512,312.699,354.210,24.764,20.307,24.764 +3122,97.721,369.592,543.244,187.542,512.926,364.480,542.315,10.305,149.647,10.305,348.290,311.402,358.682,24.776,20.135,24.776 +3123,97.755,371.250,556.750,191.312,500.065,367.050,555.350,18.435,151.126,18.435,359.551,310.316,368.406,25.298,19.622,25.298 +3124,97.787,366.855,569.901,196.785,487.051,362.976,567.928,26.952,152.642,26.952,360.890,309.100,369.594,25.518,18.611,25.518 +3125,97.817,366.855,569.901,196.785,487.051,362.976,567.928,26.952,152.642,26.952,360.890,309.100,369.594,25.518,18.611,25.518 +3126,97.846,360.438,584.191,204.656,474.842,356.605,581.367,36.384,153.961,36.384,361.512,308.125,371.036,25.041,18.187,25.041 +3127,97.877,350.931,596.157,214.612,463.910,347.823,592.992,45.516,155.225,45.516,361.998,307.379,370.871,25.391,18.229,25.391 +3128,97.909,339.981,607.017,226.379,454.381,337.266,603.210,54.504,156.714,54.504,361.758,307.398,371.111,24.311,18.417,24.311 +3129,97.942,325.892,616.573,239.694,446.479,323.690,612.081,63.890,157.913,63.890,361.334,307.353,371.338,22.271,18.170,22.271 +3130,97.975,309.378,623.734,254.427,440.809,307.940,618.987,73.147,159.015,73.147,362.161,307.639,372.081,23.462,17.906,23.462 +3131,98.006,294.573,626.430,269.907,437.245,293.935,621.186,83.066,159.928,83.066,360.425,308.603,370.991,27.889,17.954,27.889 +3132,98.039,275.590,626.519,286.094,436.271,275.781,620.676,91.878,160.953,91.878,357.595,309.953,369.288,28.313,17.814,28.313 +3133,98.070,262.761,624.144,302.661,437.482,264.162,618.134,103.127,161.488,103.127,357.010,310.860,369.351,25.482,18.182,25.482 +3134,98.101,244.609,616.500,318.303,441.383,247.100,610.543,112.694,162.255,112.694,354.153,312.814,367.067,20.934,19.201,20.934 +3135,98.132,231.811,608.234,332.788,448.285,235.490,602.527,122.809,163.496,122.809,351.135,315.125,364.715,20.162,19.531,20.162 +3136,98.164,220.476,597.610,345.717,456.975,225.245,592.384,132.383,164.578,132.383,348.309,316.987,362.458,19.907,20.011,19.907 +3137,98.194,210.985,586.459,356.353,467.412,217.100,581.610,141.588,165.964,141.588,344.523,319.177,360.132,19.688,20.373,19.688 +3138,98.225,203.554,574.834,365.298,479.065,211.411,570.375,150.422,167.838,150.422,339.742,320.992,357.809,19.674,21.742,19.674 +3139,98.256,198.145,562.809,372.321,491.919,207.611,559.115,158.682,170.574,158.682,335.413,322.882,355.736,19.290,20.900,19.290 +3140,98.286,194.839,551.197,377.323,504.684,205.953,548.575,166.727,174.447,166.727,330.902,325.452,353.740,18.797,19.699,18.797 +3141,98.315,194.839,551.197,377.323,504.684,205.953,548.575,166.727,174.447,166.727,330.902,325.452,353.740,18.797,19.699,18.797 +3142,98.343,185.594,540.441,377.544,517.446,204.257,538.574,174.289,178.708,174.289,311.546,323.391,349.058,18.508,19.123,18.508 +3143,98.375,168.077,528.093,378.535,529.090,204.713,528.925,1.302,2.211,1.302,274.270,321.918,347.561,18.450,20.155,18.450 +3144,98.407,125.570,508.917,378.802,540.708,206.639,520.229,7.943,6.170,7.943,182.972,324.407,346.681,18.564,20.637,18.564 +3145,98.439,142.350,495.055,378.964,551.448,209.737,512.187,14.265,10.305,14.265,208.306,328.702,347.366,18.332,21.287,18.332 +3146,98.469,179.500,491.000,376.676,562.294,213.899,502.466,18.435,14.036,18.435,274.169,331.304,346.688,23.085,20.616,23.085 +3147,98.500,196.211,487.246,372.962,571.726,217.027,496.656,24.326,17.301,24.326,300.340,332.271,346.029,24.041,20.911,24.041 +3148,98.531,207.072,483.496,368.518,580.951,220.823,491.364,29.776,19.940,29.776,313.685,332.764,345.370,24.947,20.611,24.947 +3149,98.562,215.880,477.160,363.073,589.048,225.915,484.686,36.870,22.166,36.870,319.600,334.114,344.687,25.600,19.997,25.600 +3150,98.592,223.996,473.413,357.283,595.993,230.773,479.626,42.510,23.736,42.510,325.392,334.346,343.779,25.063,20.964,25.063 +3151,98.622,230.181,469.199,350.703,603.435,235.788,475.366,47.726,23.848,47.726,327.457,334.244,344.127,25.562,22.532,25.562 +3152,98.652,235.952,466.172,343.792,609.119,240.281,471.890,52.869,23.615,52.869,329.439,334.339,343.781,24.430,24.010,24.430 +3153,98.682,235.952,466.172,343.792,609.119,240.281,471.890,52.869,23.615,52.869,329.439,334.339,343.781,24.430,24.010,24.430 +3154,98.711,241.411,462.632,336.836,614.103,245.221,468.675,57.767,22.504,57.767,329.470,333.763,343.758,23.581,24.152,23.581 +3155,98.741,246.913,459.545,329.669,618.646,250.291,466.047,62.549,21.161,62.549,329.366,332.566,344.020,22.646,25.691,22.646 +3156,98.776,252.516,457.255,322.056,621.342,255.007,463.180,67.195,19.573,67.195,330.718,332.497,343.573,21.726,26.570,21.726 +3157,98.809,258.014,455.146,314.769,624.240,260.017,461.241,71.801,17.354,71.801,331.060,331.026,343.891,20.860,27.799,20.860 +3158,98.843,263.467,453.614,306.533,626.286,264.920,459.606,76.373,14.657,76.373,331.254,330.677,343.584,20.232,27.401,20.232 +3159,98.876,268.865,451.507,299.288,627.453,269.943,458.178,80.819,12.529,80.819,330.061,328.541,343.577,19.175,27.659,19.175 +3160,98.910,274.826,450.183,291.482,628.103,275.396,456.954,85.186,9.660,85.186,330.200,327.523,343.790,19.195,27.939,19.195 +3161,98.942,280.088,449.530,283.463,628.218,280.175,456.591,89.287,7.260,89.287,329.186,326.963,343.309,18.451,27.245,18.451 +3162,98.975,286.294,448.519,276.372,627.731,285.834,455.715,93.664,4.236,93.664,330.117,324.777,344.539,18.627,27.406,18.627 +3163,99.006,292.611,448.362,268.611,625.974,291.657,455.259,97.883,2.095,97.883,330.600,323.296,344.525,19.080,26.592,19.080 +3164,99.039,298.934,449.533,260.918,624.708,297.510,456.037,102.352,178.755,102.352,331.873,322.120,345.189,19.052,26.407,19.052 +3165,99.075,305.417,450.428,252.806,621.976,303.472,456.858,106.827,175.601,106.827,331.997,320.975,345.431,19.414,25.387,19.414 +3166,99.120,319.700,454.100,237.177,615.779,316.362,460.776,116.565,169.380,116.565,333.174,320.109,348.103,19.230,24.818,19.230 +3167,99.150,319.700,454.100,237.177,615.779,316.362,460.776,116.565,169.380,116.565,333.174,320.109,348.103,19.230,24.818,19.230 +3168,99.179,325.823,456.294,229.619,610.942,321.860,462.901,120.964,166.278,120.964,333.393,319.462,348.802,19.551,23.654,19.551 +3169,99.215,332.926,459.774,221.965,605.385,328.209,466.224,126.180,163.223,126.180,334.108,319.059,350.089,19.179,21.866,19.179 +3170,99.246,341.914,462.534,214.801,599.971,334.512,470.862,131.634,159.382,131.634,329.774,318.704,352.057,19.350,20.229,19.350 +3171,99.277,352.349,463.965,208.215,593.865,340.119,475.476,136.736,155.813,136.736,320.794,318.307,354.385,20.218,20.757,20.218 +3172,99.308,372.327,460.906,202.078,586.651,345.666,481.152,142.788,152.765,142.788,289.360,318.062,356.314,18.696,20.058,18.696 +3173,99.340,419.385,446.632,195.934,577.897,351.218,488.181,148.637,148.973,148.637,198.914,317.609,358.577,18.541,19.793,18.541 +3174,99.372,363.485,492.268,191.388,568.597,356.317,495.627,154.892,145.875,154.892,344.781,317.895,360.615,18.989,20.798,18.989 +3175,99.403,365.600,502.300,187.527,558.729,360.328,504.057,161.565,142.554,161.565,351.329,316.858,362.444,19.290,21.768,19.290 +3176,99.434,368.156,512.758,184.852,547.907,362.932,513.835,168.354,139.115,168.354,351.916,315.977,362.584,20.164,22.752,20.164 +3177,99.465,367.049,523.651,184.048,536.514,361.847,524.043,175.698,135.669,175.698,346.031,314.715,356.466,20.985,22.461,20.985 +3178,99.495,367.584,533.049,186.128,525.425,363.051,532.753,3.731,131.186,3.731,344.963,314.107,354.048,23.797,20.320,23.797 +3179,99.525,369.372,545.426,186.928,511.734,364.402,544.400,11.659,128.341,11.659,350.675,312.707,360.826,24.748,22.874,24.748 +3180,99.558,371.655,559.596,192.411,499.600,367.276,557.998,20.056,123.557,20.056,359.252,311.199,368.575,25.214,19.807,25.214 +3181,99.590,366.675,573.486,198.454,486.763,362.510,571.172,29.055,120.057,29.055,359.279,309.960,368.807,25.059,18.088,25.059 +3182,99.619,359.405,587.211,206.805,474.649,355.572,584.200,38.157,116.003,38.157,359.572,308.234,369.322,24.994,17.800,24.994 +3183,99.649,359.405,587.211,206.805,474.649,355.572,584.200,38.157,116.003,38.157,359.572,308.234,369.322,24.994,17.800,24.994 +3184,99.677,349.421,600.246,217.000,463.500,345.778,596.257,47.603,111.801,47.603,358.936,307.326,369.740,24.370,17.827,24.370 +3185,99.710,337.311,611.124,227.950,453.326,333.901,605.905,56.846,107.526,56.846,358.899,306.200,371.367,23.151,20.577,23.151 +3186,99.742,323.032,619.829,241.691,446.168,320.475,613.994,66.337,103.707,66.337,357.930,305.105,370.671,22.836,19.952,22.836 +3187,99.775,304.866,627.344,256.292,440.901,303.073,620.493,75.328,99.926,75.328,357.007,304.867,371.170,25.705,19.848,25.705 +3188,99.807,292.019,629.884,271.701,438.349,291.399,621.751,85.636,96.654,85.636,352.425,305.362,368.739,24.539,19.485,24.539 +3189,99.839,264.519,698.080,286.932,438.183,269.143,621.331,93.447,94.304,93.447,213.998,305.469,367.773,27.432,19.150,27.432 +3190,99.872,253.001,632.879,303.531,441.067,256.807,617.792,104.160,91.878,104.160,334.451,306.393,365.571,24.040,18.400,24.040 +3191,99.903,241.041,617.458,320.028,446.467,244.152,610.829,115.141,88.164,115.141,347.408,307.355,362.054,20.288,20.669,20.288 +3192,99.934,228.796,606.306,334.787,454.371,231.820,601.984,124.976,84.289,124.976,349.404,308.959,359.954,20.249,22.388,20.249 +3193,99.964,218.549,594.524,348.065,464.250,221.950,591.067,134.537,80.134,134.537,348.000,311.241,357.698,19.806,24.373,19.806 +3194,99.994,209.859,582.251,358.049,476.480,213.544,579.577,144.037,76.171,144.037,345.909,313.832,355.014,19.873,22.871,19.873 +3195,100.025,203.515,569.973,367.004,489.325,208.414,567.489,153.115,71.917,153.115,342.603,316.843,353.590,20.152,24.134,20.152 +3196,100.057,199.622,556.873,373.587,503.256,205.419,554.980,161.910,67.457,161.910,339.638,319.685,351.834,19.816,25.251,19.816 +3197,100.088,198.148,543.909,377.700,517.400,204.372,542.862,170.444,63.435,170.444,337.676,322.441,350.299,19.467,24.150,19.467 +3198,100.118,198.148,543.909,377.700,517.400,204.372,542.862,170.444,63.435,170.444,337.676,322.441,350.299,19.467,24.150,19.467 +3199,100.147,197.860,530.651,379.454,531.143,205.038,530.390,177.917,59.478,177.917,334.179,325.199,348.545,22.730,23.702,22.730 +3200,100.178,199.274,519.121,380.357,544.423,207.446,519.900,5.440,56.070,5.440,332.496,327.861,348.914,25.030,23.172,25.030 +3201,100.211,202.061,508.832,378.083,556.908,210.389,510.725,12.804,52.608,12.804,330.437,330.406,347.518,25.619,21.720,25.619 +3202,100.243,204.685,499.219,374.903,568.519,214.210,502.659,19.855,48.981,19.855,326.764,331.962,347.019,25.708,20.971,25.708 +3203,100.277,209.824,488.311,370.582,578.939,219.649,493.537,28.009,45.282,28.009,324.465,333.075,346.721,25.472,20.349,25.472 +3204,100.309,205.299,478.148,365.156,588.447,222.577,489.996,34.439,41.682,34.439,304.631,333.840,346.533,18.144,19.571,18.144 +3205,100.340,190.107,450.850,359.051,596.668,229.158,482.308,38.853,38.273,38.853,245.502,334.194,345.793,22.605,19.526,22.605 +3206,100.372,224.750,468.750,352.341,603.512,233.963,477.963,45.000,34.919,45.000,318.905,334.079,344.964,24.042,19.385,24.042 +3207,100.403,234.760,464.800,345.150,609.261,240.509,472.253,52.352,32.057,52.352,325.965,334.007,344.791,24.930,21.547,24.930 +3208,100.434,241.728,461.924,337.009,614.484,245.862,468.518,57.918,28.856,57.918,328.608,333.623,344.173,24.356,23.076,24.356 +3209,100.465,247.739,459.632,328.833,619.443,250.944,465.937,63.060,25.530,63.060,330.127,332.850,344.272,22.492,24.162,22.492 +3210,100.496,253.811,456.766,320.466,622.789,256.311,463.062,68.344,22.496,68.344,330.708,332.073,344.256,21.691,25.981,21.691 +3211,100.528,259.784,454.615,311.898,625.288,261.664,460.879,73.301,19.440,73.301,330.737,331.489,343.819,20.689,27.901,20.689 +3212,100.560,266.142,452.596,303.785,626.760,267.451,458.868,78.212,15.803,78.212,330.735,330.200,343.548,20.804,27.250,20.804 +3213,100.591,272.105,450.855,295.387,628.007,272.915,457.476,83.019,12.626,83.019,330.653,328.117,343.995,19.690,27.276,19.690 +3214,100.622,277.766,449.619,286.771,628.395,278.072,456.646,87.510,9.324,87.510,329.862,327.791,343.930,18.678,27.394,18.678 +3215,100.652,284.651,448.528,278.808,628.178,284.327,455.977,92.490,6.520,92.490,329.645,325.254,344.557,18.548,27.251,18.548 +3216,100.681,284.651,448.528,278.808,628.178,284.327,455.977,92.490,6.520,92.490,329.645,325.254,344.557,18.548,27.251,18.548 +3217,100.710,291.298,448.599,270.234,626.947,290.416,455.700,97.085,3.417,97.085,330.547,323.797,344.857,18.715,26.803,18.715 +3218,100.742,298.131,449.155,262.000,625.500,296.683,456.079,101.812,0.000,101.812,331.718,322.000,345.866,19.301,25.000,19.301 +3219,100.777,305.257,450.477,253.366,622.117,303.371,456.765,106.699,177.739,106.699,332.366,321.263,345.495,19.157,25.480,19.157 +3220,100.810,312.483,452.293,244.950,618.919,310.045,458.387,111.801,175.101,111.801,333.323,319.998,346.450,18.941,25.393,18.941 +3221,100.843,319.649,454.332,236.387,614.991,316.471,460.631,116.775,172.626,116.775,333.663,319.290,347.774,19.297,24.677,19.297 +3222,100.876,327.008,457.190,228.431,610.047,323.127,463.405,121.984,170.647,121.984,334.427,318.764,349.080,19.605,24.122,19.605 +3223,100.909,334.992,461.156,220.671,604.319,330.099,467.476,127.747,168.232,127.747,334.400,318.128,350.387,19.360,22.924,19.360 +3224,100.940,342.508,465.265,213.270,596.879,336.515,471.645,133.210,166.494,133.210,333.812,317.270,351.319,19.259,21.682,19.259 +3225,100.971,350.875,469.724,206.758,590.141,342.584,476.952,138.918,165.456,138.918,331.525,316.750,353.523,19.250,21.026,19.250 +3226,101.001,364.683,472.098,200.722,581.828,348.721,483.344,144.834,165.018,144.834,316.366,315.449,355.418,20.010,21.347,20.010 +3227,101.032,373.984,478.446,195.744,573.991,353.491,489.895,150.809,165.743,150.809,310.512,314.831,357.459,19.280,20.941,19.280 +3228,101.062,389.013,484.231,191.666,564.079,358.231,497.327,156.953,166.759,156.953,291.905,313.555,358.807,19.251,20.041,19.251 +3229,101.092,418.136,489.347,188.747,554.201,362.663,506.315,162.992,168.785,162.992,244.612,312.418,360.633,19.463,20.202,19.463 +3230,101.125,440.920,501.560,186.794,542.544,364.036,515.539,169.695,170.995,169.695,202.141,310.729,358.429,20.393,20.979,20.393 +3231,101.156,378.050,524.850,186.896,531.137,363.339,525.715,176.634,173.125,176.634,323.441,310.813,352.914,20.729,20.328,20.729 +3232,101.187,371.428,537.327,187.196,519.383,363.219,536.800,3.672,175.771,3.672,337.103,308.008,353.555,21.240,21.034,21.240 +3233,101.217,371.428,537.327,187.196,519.383,363.219,536.800,3.672,175.771,3.672,337.103,308.008,353.555,21.240,21.034,21.240 +3234,101.245,371.035,546.638,189.404,507.340,365.348,545.402,12.265,177.466,12.265,348.385,307.275,360.026,25.024,20.873,25.024 +3235,101.276,371.805,560.698,193.912,494.717,366.842,558.832,20.603,178.182,20.603,358.257,306.132,368.862,25.400,19.863,25.400 +3236,101.308,365.222,575.572,200.489,482.080,361.161,573.183,30.466,178.472,30.466,359.934,305.291,369.359,25.402,18.927,25.402 +3237,101.339,358.076,587.589,209.038,469.876,354.519,584.704,39.036,178.431,39.036,361.485,304.352,370.646,25.465,19.445,25.465 +3238,101.370,346.898,600.527,220.000,459.500,344.080,597.305,48.814,178.264,48.814,362.272,304.375,370.832,24.177,18.749,24.177 +3239,101.402,334.075,611.185,232.905,450.802,331.838,607.549,58.392,177.990,58.392,362.151,304.199,370.690,22.995,17.971,22.995 +3240,101.434,318.760,619.385,247.014,442.365,316.881,614.734,68.005,177.863,68.005,361.946,304.534,371.980,22.253,20.583,22.253 +3241,101.464,299.927,625.403,262.600,438.800,298.854,620.684,77.187,177.510,77.187,361.110,305.624,370.789,27.215,18.070,27.215 +3242,101.495,287.415,626.873,279.011,435.760,287.274,620.850,88.656,177.510,88.656,358.417,306.710,370.466,27.039,20.111,27.039 +3243,101.526,265.497,624.762,296.019,437.404,266.161,619.360,97.011,177.274,97.011,357.594,308.698,368.479,27.408,18.122,27.408 +3244,101.557,252.446,619.821,312.023,440.513,254.257,614.342,108.291,177.441,108.291,354.810,310.673,366.351,20.567,18.228,20.567 +3245,101.588,237.969,612.183,327.019,445.458,240.921,606.648,118.072,177.614,118.072,352.941,312.645,365.488,20.235,19.816,20.235 +3246,101.618,225.768,602.708,340.972,453.674,229.768,597.556,127.828,178.052,127.828,350.648,314.600,363.693,20.239,19.445,20.239 +3247,101.647,225.768,602.708,340.972,453.674,229.768,597.556,127.828,178.052,127.828,350.648,314.600,363.693,20.239,19.445,20.239 +3248,101.677,215.905,591.438,352.520,463.717,220.743,586.962,137.231,178.420,137.231,347.669,317.376,360.852,19.968,19.551,19.968 +3249,101.710,207.769,579.654,362.501,475.062,213.928,575.548,146.310,178.977,146.310,343.914,319.235,358.719,19.692,19.497,19.692 +3250,101.743,201.372,567.724,370.968,487.056,209.620,563.900,155.127,179.469,155.127,339.223,322.088,357.406,19.598,20.814,19.598 +3251,101.781,196.775,555.238,376.500,501.000,206.642,552.327,163.560,0.000,163.560,334.307,325.000,354.880,19.796,20.000,19.796 +3252,101.813,194.135,542.902,378.035,513.958,204.651,541.425,172.005,0.988,172.005,329.802,322.331,351.040,18.838,20.807,18.838 +3253,101.844,181.000,531.000,378.065,526.849,204.533,531.000,0.000,2.268,0.000,300.000,322.816,347.065,18.000,19.321,18.000 +3254,101.876,143.445,512.659,378.164,539.278,206.197,521.026,7.595,2.907,7.595,219.127,323.158,345.741,18.503,21.589,18.503 +3255,101.908,185.258,504.741,377.014,550.602,209.292,510.240,12.888,4.259,12.888,295.689,326.405,344.998,24.329,21.992,24.329 +3256,101.940,199.428,494.681,375.324,563.082,214.255,500.543,21.571,4.731,21.571,313.678,330.182,345.563,26.212,23.148,26.212 +3257,101.970,207.349,487.736,371.143,573.662,218.464,493.586,27.759,6.105,27.759,319.688,330.607,344.808,25.104,22.364,25.104 +3258,102.000,215.189,481.221,365.564,583.295,223.392,486.765,34.053,7.539,34.053,323.887,331.725,343.690,26.153,23.093,26.153 +3259,102.031,221.628,476.249,359.200,591.861,227.992,481.568,39.890,9.150,39.890,326.221,332.698,342.810,25.412,23.714,25.412 +3260,102.061,227.373,471.116,353.195,599.622,233.044,476.890,45.516,10.649,45.516,327.320,332.338,343.507,25.034,24.771,25.034 +3261,102.093,233.634,467.204,346.129,606.193,238.173,472.790,50.906,12.362,50.906,328.830,332.424,343.225,24.399,25.504,24.399 +3262,102.126,239.508,463.668,338.993,611.970,243.444,469.510,56.032,14.226,56.032,328.983,332.304,343.071,23.615,26.240,23.615 +3263,102.157,245.295,460.723,331.453,616.415,248.406,466.331,60.977,15.945,60.977,330.233,332.962,343.058,22.797,26.099,22.797 +3264,102.188,250.925,458.106,324.367,620.445,253.571,463.997,65.807,18.034,65.807,330.522,332.318,343.439,22.011,26.580,22.011 +3265,102.219,256.770,455.616,316.569,623.667,259.006,461.899,70.408,20.244,70.408,330.071,332.027,343.410,22.115,26.304,22.115 +3266,102.249,256.770,455.616,316.569,623.667,259.006,461.899,70.408,20.244,70.408,330.071,332.027,343.410,22.115,26.304,22.115 +3267,102.278,262.293,453.858,309.296,626.223,263.979,460.157,75.018,22.225,75.018,331.232,331.303,344.273,21.402,26.567,21.402 +3268,102.308,267.650,452.625,301.529,628.153,268.851,459.060,79.426,24.286,79.426,331.343,331.121,344.436,20.316,26.967,20.316 +3269,102.339,273.237,451.691,294.257,629.507,273.931,458.113,83.830,26.259,83.830,332.253,330.048,345.172,19.508,26.127,19.508 +3270,102.370,278.669,451.061,286.710,630.115,278.884,457.506,88.091,28.610,88.091,332.649,329.849,345.546,18.723,27.454,18.723 +3271,102.401,284.551,450.328,279.370,630.565,284.254,457.155,92.490,30.591,92.490,333.250,328.757,346.917,18.504,26.485,18.504 +3272,102.432,290.411,450.466,272.015,629.977,289.640,457.097,96.633,32.829,96.633,334.167,328.421,347.518,18.665,26.022,18.665 +3273,102.462,296.442,451.124,264.695,628.932,295.224,457.462,100.878,35.218,100.878,335.393,327.460,348.301,19.368,25.999,19.368 +3274,102.492,302.738,452.192,257.189,627.096,301.081,458.220,105.364,37.304,105.364,336.436,326.392,348.940,19.107,26.136,19.107 +3275,102.524,309.201,453.485,249.818,624.506,307.099,459.278,109.940,39.428,109.940,337.390,325.843,349.715,19.116,25.593,19.116 +3276,102.556,315.626,455.492,242.525,621.472,313.093,461.011,114.656,41.987,114.656,338.397,324.299,350.542,19.100,25.272,19.100 +3277,102.586,322.418,457.820,235.137,617.389,319.356,463.224,119.539,44.474,119.539,338.874,323.219,351.296,19.053,25.066,19.053 +3278,102.616,322.418,457.820,235.137,617.389,319.356,463.224,119.539,44.474,119.539,338.874,323.219,351.296,19.053,25.066,19.053 +3279,102.643,328.725,461.068,228.213,612.894,325.318,466.036,124.439,47.643,124.439,340.024,322.750,352.070,19.087,24.668,19.087 +3280,102.676,335.787,465.156,222.566,606.279,332.515,469.082,129.806,50.194,129.806,341.346,321.501,351.569,19.077,20.742,19.077 +3281,102.708,342.408,469.898,216.128,599.771,338.736,473.535,135.278,53.050,135.278,341.553,320.198,351.890,18.978,21.279,18.978 +3282,102.739,348.864,475.716,210.105,593.198,345.025,478.833,140.932,55.682,140.932,343.769,320.049,353.659,19.227,20.519,19.227 +3283,102.771,354.674,482.243,204.389,585.146,350.726,484.837,146.689,58.417,146.689,345.314,319.308,354.762,19.532,20.558,19.532 +3284,102.802,360.439,489.857,199.073,575.782,356.125,492.064,152.904,61.274,152.904,346.203,317.490,355.894,19.565,20.186,19.565 +3285,102.832,365.463,498.563,194.757,565.174,361.163,500.170,159.513,64.081,159.513,348.080,314.879,357.263,19.682,20.745,19.682 +3286,102.863,370.030,508.664,191.945,554.115,365.755,509.710,166.247,67.023,166.247,349.964,313.445,358.766,20.011,21.050,20.011 +3287,102.894,369.413,520.010,190.075,542.194,364.942,520.536,173.290,69.933,173.290,343.396,311.926,352.399,20.798,21.231,20.798 +3288,102.926,369.114,529.549,188.986,529.986,364.168,529.435,1.325,72.216,1.325,340.348,310.530,350.244,23.433,22.512,23.433 +3289,102.957,370.797,541.716,190.811,516.871,366.073,540.929,9.462,75.324,9.462,344.087,308.707,353.665,25.482,22.457,25.482 +3290,102.987,373.202,555.595,193.981,503.904,368.631,554.155,17.482,78.690,17.482,353.773,307.314,363.359,24.942,20.788,24.942 +3291,103.016,373.202,555.595,193.981,503.904,368.631,554.155,17.482,78.690,17.482,353.773,307.314,363.359,24.942,20.788,24.942 +3292,103.045,369.809,569.363,198.040,491.124,364.994,567.026,25.891,81.591,25.891,355.973,306.323,366.678,25.442,18.710,25.442 +3293,103.076,362.534,583.953,204.642,478.743,358.145,580.818,35.538,84.447,35.538,357.694,305.476,368.481,25.109,18.911,25.109 +3294,103.108,352.939,597.067,214.092,467.497,349.072,593.220,44.850,87.879,44.850,357.813,303.607,368.722,24.758,18.358,24.758 +3295,103.141,341.722,608.070,225.027,457.065,338.220,603.284,53.807,91.228,53.807,357.829,304.230,369.689,23.640,18.224,23.640 +3296,103.172,328.201,617.651,237.386,449.232,325.364,612.022,63.247,94.912,63.247,357.326,304.028,369.933,23.290,18.681,23.290 +3297,103.204,313.063,624.793,250.981,442.821,311.028,618.274,72.657,99.197,72.657,357.095,304.426,370.752,22.728,19.179,22.728 +3298,103.234,293.492,628.661,265.441,438.735,292.315,621.517,80.638,104.036,80.638,354.957,305.352,369.437,27.790,19.645,27.790 +3299,103.265,277.000,629.000,280.653,437.328,277.000,621.664,90.000,109.983,90.000,354.000,307.056,368.672,26.000,20.077,26.000 +3300,103.295,266.428,627.795,295.398,437.956,267.898,620.089,100.803,116.267,100.803,352.426,308.166,368.118,26.102,19.891,26.102 +3301,103.327,250.077,621.978,309.502,440.645,252.745,614.345,109.269,122.775,109.269,349.226,310.095,365.398,20.161,19.603,20.161 +3302,103.359,237.457,614.684,322.626,445.260,241.083,607.831,117.886,130.236,117.886,348.159,311.990,363.664,19.913,20.553,19.913 +3303,103.390,226.045,606.576,334.822,451.298,230.985,599.796,126.076,138.633,126.076,345.556,314.097,362.333,19.455,20.084,19.455 +3304,103.421,216.992,597.085,346.225,459.360,222.897,590.953,133.919,147.995,133.919,343.646,316.303,360.671,19.155,19.292,19.155 +3305,103.451,216.992,597.085,346.225,459.360,222.897,590.953,133.919,147.995,133.919,343.646,316.303,360.671,19.155,19.292,19.155 +3306,103.479,209.872,587.448,355.525,467.502,216.811,581.943,141.576,157.135,141.576,341.875,318.303,359.590,19.488,20.493,19.488 +3307,103.511,204.727,577.417,363.998,477.594,212.300,572.789,148.570,168.207,148.570,340.412,320.291,358.161,19.388,19.965,19.388 +3308,103.544,201.561,567.553,370.516,487.686,209.282,563.974,155.131,178.668,155.131,339.710,321.285,356.731,19.738,19.762,19.738 +3309,103.577,198.906,558.254,375.740,497.661,207.384,555.372,161.227,10.170,161.227,338.036,324.229,355.944,19.524,22.672,19.524 +3310,103.614,198.046,549.526,378.806,508.333,206.171,547.658,167.056,22.845,167.056,337.440,326.550,354.114,19.649,24.380,19.649 +3311,103.655,197.368,533.462,380.676,529.274,205.185,533.122,177.510,46.809,177.510,335.335,326.967,350.984,19.026,20.727,19.026 +3312,103.686,198.109,525.371,380.505,537.600,205.850,525.575,1.507,58.903,1.507,334.332,327.049,349.821,23.466,23.079,23.466 +3313,103.716,198.109,525.371,380.505,537.600,205.850,525.575,1.507,58.903,1.507,334.332,327.049,349.821,23.466,23.079,23.466 +3314,103.750,199.296,519.074,379.312,545.225,206.986,519.853,5.782,71.313,5.782,332.552,326.993,348.010,24.193,24.239,24.193 +3315,103.781,200.840,513.529,377.071,551.879,207.835,514.711,9.593,83.541,9.593,331.940,326.218,346.128,24.845,25.029,24.845 +3316,103.813,202.252,508.776,374.931,557.554,208.888,510.324,13.134,97.125,13.134,331.236,325.591,344.863,24.898,25.303,24.898 +3317,103.844,203.436,504.022,372.915,561.823,210.250,506.033,16.440,109.440,16.440,329.401,325.443,343.609,25.456,26.237,25.456 +3318,103.876,205.258,499.681,371.141,565.738,211.928,502.052,19.573,122.886,19.573,328.540,326.248,342.697,25.356,26.717,25.356 +3319,103.910,206.621,496.948,370.223,568.285,213.145,499.558,21.801,136.005,21.801,328.681,325.294,342.735,25.812,27.511,25.812 +3320,103.942,208.445,492.474,369.608,571.147,215.539,495.785,25.017,148.715,25.017,327.313,325.706,342.970,25.494,27.265,25.494 +3321,103.974,209.500,490.500,369.184,573.543,216.882,494.191,26.565,161.495,26.565,326.913,326.984,343.420,25.491,26.057,25.491 +3322,104.004,210.347,487.780,369.146,575.446,218.624,492.295,28.610,174.240,28.610,325.061,328.369,343.918,25.778,24.167,25.778 +3323,104.035,210.154,485.731,368.922,577.018,219.767,491.224,29.745,6.573,29.745,321.994,330.345,344.137,25.675,25.318,25.675 +3324,104.066,206.102,484.546,369.225,579.197,220.053,492.206,28.768,19.440,28.768,313.420,332.154,345.251,24.647,21.522,24.647 +3325,104.097,149.940,449.834,368.585,582.581,220.220,492.909,31.504,32.456,31.504,181.852,332.940,346.711,17.822,20.513,17.822 +3326,104.127,209.787,484.734,366.835,585.677,221.256,491.893,31.974,44.510,31.974,319.270,333.102,346.309,19.824,19.520,19.824 +3327,104.159,214.161,484.064,365.454,587.030,222.592,489.349,32.082,57.475,32.082,325.953,333.402,345.853,25.381,19.674,25.381 +3328,104.190,214.775,484.655,364.586,586.969,221.947,489.133,31.984,70.463,31.984,328.704,332.495,345.616,25.457,20.946,25.457 +3329,104.220,214.702,485.283,363.851,586.397,221.241,489.296,31.535,83.089,31.535,329.326,330.400,344.671,25.357,22.472,25.357 +3330,104.250,214.702,485.283,363.851,586.397,221.241,489.296,31.535,83.089,31.535,329.326,330.400,344.671,25.357,22.472,25.357 +3331,104.279,214.169,486.182,363.822,584.692,220.372,489.878,30.793,96.009,30.793,329.092,328.972,343.532,25.389,24.496,25.389 +3332,104.309,212.687,486.937,364.132,582.073,219.156,490.643,29.805,109.335,29.805,327.579,326.999,342.489,25.425,25.659,25.425 +3333,104.341,211.194,488.775,364.782,579.003,217.464,492.139,28.217,122.782,28.217,327.534,326.013,341.764,25.597,27.038,25.597 +3334,104.373,210.141,490.238,366.571,575.117,216.391,493.413,26.928,136.187,26.928,327.776,324.653,341.796,25.488,27.318,25.488 +3335,104.405,208.491,492.449,369.238,571.414,215.484,495.717,25.046,149.188,25.046,327.249,325.161,342.685,25.494,27.160,25.494 +3336,104.435,205.965,494.894,371.831,567.545,214.329,498.412,22.813,161.917,22.813,325.825,326.349,343.972,25.480,26.229,25.480 +3337,104.466,202.088,497.759,374.651,563.450,213.367,501.861,19.983,174.039,19.983,321.238,327.397,345.243,26.314,24.294,26.314 +3338,104.496,192.707,501.537,376.507,557.918,211.230,506.772,15.781,5.024,15.781,307.416,327.605,345.914,24.539,23.459,24.539 +3339,104.528,132.462,490.795,379.569,554.247,210.659,511.106,14.560,16.006,14.560,187.078,331.733,348.661,18.176,22.089,18.176 +3340,104.560,198.042,512.940,379.305,551.881,209.011,515.200,11.641,26.653,11.641,325.987,332.294,348.385,19.185,22.281,19.185 +3341,104.592,198.258,515.944,380.231,547.504,208.222,517.303,7.765,37.432,7.765,328.911,331.435,349.025,24.410,20.185,24.410 +3342,104.622,198.354,521.835,380.014,541.926,206.359,522.335,3.576,48.781,3.576,333.038,329.155,349.078,24.951,19.824,24.951 +3343,104.652,197.924,531.193,380.359,534.005,205.586,531.073,179.099,60.046,179.099,334.084,327.055,349.410,18.677,23.702,18.677 +3344,104.682,197.924,531.193,380.359,534.005,205.586,531.073,179.099,60.046,179.099,334.084,327.055,349.410,18.677,23.702,18.677 +3345,104.712,197.639,538.525,378.850,526.050,204.385,537.824,174.068,71.565,174.068,335.932,323.817,349.496,19.958,24.982,19.958 +3346,104.743,197.722,546.644,376.412,517.117,203.706,545.482,169.019,83.589,169.019,337.702,320.802,349.894,19.883,25.715,19.883 +3347,104.776,198.696,554.844,373.785,507.293,204.494,553.121,163.453,96.009,163.453,338.569,318.242,350.665,19.769,26.224,19.769 +3348,104.808,199.954,563.833,369.913,496.798,206.106,561.318,157.767,108.306,157.767,338.790,316.541,352.082,19.398,24.977,19.398 +3349,104.839,200.910,574.111,364.633,486.504,208.822,569.837,151.624,121.567,151.624,335.403,316.753,353.389,19.479,23.954,19.479 +3350,104.871,189.893,593.478,358.715,475.230,212.812,577.340,144.849,133.500,144.849,300.107,316.320,356.169,18.840,21.783,18.840 +3351,104.902,209.698,593.767,351.547,464.838,218.684,585.818,138.504,145.582,138.504,335.349,317.920,359.344,18.955,22.319,18.955 +3352,104.933,220.480,598.827,345.251,457.104,225.550,593.100,131.511,157.416,131.511,347.045,317.924,362.343,19.117,20.795,19.117 +3353,104.962,229.287,606.171,337.143,450.744,233.120,600.564,124.357,169.150,124.357,351.189,317.340,364.773,19.202,19.831,19.202 +3354,104.992,239.138,613.048,327.453,445.590,242.017,607.421,117.096,1.042,117.096,353.325,315.239,365.966,19.875,20.178,19.875 +3355,105.023,249.732,618.727,315.806,441.342,251.682,613.238,109.552,12.960,109.552,355.235,313.525,366.887,19.745,21.011,19.745 +3356,105.054,260.441,623.289,303.586,436.884,261.633,617.312,101.277,25.115,101.277,358.108,311.252,370.297,23.534,24.419,23.534 +3357,105.085,272.588,625.505,289.420,437.993,272.847,621.319,93.543,38.395,93.543,359.612,307.672,368.000,24.634,20.141,24.634 +3358,105.116,272.588,625.505,289.420,437.993,272.847,621.319,93.543,38.395,93.543,359.612,307.672,368.000,24.634,20.141,24.634 +3359,105.144,285.616,626.889,277.558,437.861,285.291,622.171,86.062,50.793,86.062,359.352,304.440,368.811,23.979,21.880,23.979 +3360,105.176,302.251,630.367,264.188,440.419,300.599,621.256,79.727,62.688,79.727,350.342,302.361,368.862,24.507,19.089,24.507 +3361,105.209,320.754,645.735,251.565,445.221,312.338,618.992,72.530,75.337,72.530,311.927,301.520,367.999,21.179,18.693,21.179 +3362,105.241,325.949,619.343,239.485,448.473,323.059,613.225,64.712,86.842,64.712,355.795,303.642,369.328,23.281,18.654,23.281 +3363,105.272,336.261,611.695,227.991,453.743,333.022,606.621,57.447,99.273,57.447,358.708,305.285,370.748,23.921,20.645,23.921 +3364,105.302,345.795,603.593,218.483,460.793,342.081,599.122,50.285,111.801,50.285,359.141,307.883,370.766,24.560,20.055,24.560 +3365,105.332,353.910,594.373,210.744,468.503,350.098,590.788,43.234,124.037,43.234,360.117,310.072,370.583,25.276,18.587,25.276 +3366,105.362,360.520,584.385,203.781,476.334,356.523,581.430,36.469,136.157,36.469,360.656,310.628,370.598,26.153,18.988,26.153 +3367,105.393,365.483,574.816,197.847,484.446,361.106,572.298,29.918,148.217,29.918,360.543,311.116,370.642,25.665,18.938,25.665 +3368,105.425,369.022,565.000,193.836,492.434,364.676,563.087,23.762,160.233,23.762,360.157,310.040,369.654,26.012,18.910,26.012 +3369,105.457,372.170,556.187,191.177,501.301,367.209,554.585,17.902,172.271,17.902,357.351,308.869,367.777,25.353,20.193,25.353 +3370,105.486,376.868,550.406,190.081,507.863,365.414,547.916,12.265,4.086,12.265,336.234,307.075,359.678,20.818,21.944,20.818 +3371,105.516,376.868,550.406,190.081,507.863,365.414,547.916,12.265,4.086,12.265,336.234,307.075,359.678,20.818,21.944,20.818 +3372,105.547,384.416,541.126,189.417,517.089,365.108,538.331,8.236,16.460,8.236,314.825,306.602,353.844,22.685,20.859,22.685 +3373,105.577,371.155,530.715,189.444,525.249,364.496,530.442,2.347,28.334,2.347,336.906,307.015,350.235,24.676,21.263,24.676 +3374,105.610,369.198,526.075,190.366,533.886,364.812,526.247,177.762,40.236,177.762,340.444,307.175,349.223,20.405,21.786,20.405 +3375,105.641,369.547,519.887,190.725,542.867,365.136,520.380,173.611,51.941,173.611,342.785,309.933,351.661,20.048,21.570,20.048 +3376,105.672,369.544,514.031,190.593,550.457,365.084,514.831,169.824,64.933,169.824,347.019,311.730,356.081,19.635,21.812,19.635 +3377,105.704,369.669,508.688,191.440,556.761,365.197,509.788,166.185,75.883,166.185,350.684,315.057,359.895,19.931,20.435,19.931 +3378,105.735,367.010,504.245,191.392,562.453,362.550,505.601,163.091,86.987,163.091,351.263,317.666,360.588,19.717,19.972,19.717 +3379,105.766,364.801,500.143,189.802,566.746,359.432,502.060,160.346,98.499,160.346,351.606,319.772,363.008,19.911,21.065,19.911 +3380,105.798,362.912,497.108,191.466,570.162,357.940,499.136,157.810,109.191,157.810,351.197,320.719,361.938,19.749,19.614,19.749 +3381,105.828,360.517,494.701,191.374,571.926,356.069,496.700,155.792,120.420,155.792,352.364,320.538,362.117,19.429,19.889,19.429 +3382,105.859,359.543,492.432,191.766,572.982,354.790,494.749,154.021,131.186,154.021,351.067,319.939,361.642,19.430,20.320,19.430 +3383,105.890,360.113,489.805,192.616,573.019,354.243,492.826,152.762,141.392,152.762,347.613,318.284,360.816,19.429,21.513,19.429 +3384,105.921,381.081,477.340,194.023,573.404,354.098,491.739,151.914,149.964,151.914,298.178,316.927,359.346,18.915,20.137,18.915 +3385,105.951,384.449,474.113,195.293,573.923,353.998,490.540,151.654,160.224,151.654,289.333,315.010,358.532,18.552,19.825,18.552 +3386,105.980,384.449,474.113,195.293,573.923,353.998,490.540,151.654,160.224,151.654,289.333,315.010,358.532,18.552,19.825,18.552 +3387,106.011,368.086,482.761,196.464,573.269,354.447,490.325,150.990,171.027,150.990,325.580,313.485,356.773,19.923,20.015,19.923 +3388,106.044,362.858,485.256,197.573,573.014,354.793,489.725,151.009,2.822,151.009,337.332,311.657,355.774,19.728,21.087,19.728 +3389,106.077,361.001,486.407,199.057,573.274,355.401,489.502,151.074,14.207,151.074,341.920,312.643,354.716,19.739,22.837,19.739 +3390,106.110,359.721,487.670,199.867,573.823,355.889,489.750,151.499,27.041,151.499,345.741,312.640,354.462,19.409,21.831,19.409 +3391,106.142,359.759,488.809,200.310,574.396,356.373,490.608,152.008,39.226,152.008,346.594,312.963,354.263,19.896,21.564,19.896 +3392,106.174,360.328,490.088,199.865,574.647,356.930,491.819,153.004,51.927,153.004,347.472,315.377,355.098,19.552,21.583,19.552 +3393,106.205,361.786,491.518,198.120,574.225,357.386,493.638,154.272,63.886,154.272,347.151,316.227,356.919,19.082,20.230,19.082 +3394,106.237,362.470,493.822,196.090,572.865,358.042,495.813,155.792,76.218,155.792,348.899,317.971,358.611,19.429,20.395,19.429 +3395,106.268,363.230,496.632,193.352,569.991,358.756,498.476,157.596,88.460,157.596,350.673,318.315,360.352,19.683,18.902,19.683 +3396,106.298,364.460,499.665,189.777,566.352,359.178,501.601,159.864,101.211,159.864,351.421,319.674,362.674,19.466,21.969,19.466 +3397,106.328,365.812,503.279,188.730,562.005,360.987,504.819,162.290,112.335,162.290,352.850,319.611,362.979,19.661,19.582,19.661 +3398,106.359,367.803,507.386,186.964,556.314,363.110,508.637,165.069,124.106,165.069,355.252,318.428,364.966,19.711,19.694,19.711 +3399,106.390,368.055,512.263,185.951,549.999,363.260,513.263,168.221,135.932,168.221,352.354,316.857,362.149,19.904,19.877,19.904 +3400,106.420,367.523,517.659,184.707,541.973,362.554,518.372,171.836,148.551,171.836,348.754,314.388,358.793,19.647,21.151,19.647 +3401,106.450,367.523,517.659,184.707,541.973,362.554,518.372,171.836,148.551,171.836,348.754,314.388,358.793,19.647,21.151,19.647 +3402,106.478,368.006,523.082,184.946,534.129,362.374,523.498,175.783,160.214,175.783,344.163,312.336,355.458,19.762,21.585,19.762 +3403,106.511,369.000,529.000,186.374,527.110,362.687,529.000,0.000,171.957,0.000,340.000,310.136,352.626,20.000,20.320,20.000 +3404,106.545,393.082,538.543,188.786,519.489,364.099,536.422,4.185,3.073,4.185,294.043,308.468,352.164,20.287,20.648,20.287 +3405,106.577,403.769,548.516,190.094,512.339,365.473,541.568,10.283,15.376,10.283,277.715,306.449,355.558,23.014,20.658,23.014 +3406,106.610,380.353,554.223,192.703,504.580,367.026,550.540,15.446,26.333,15.446,332.881,305.877,360.534,24.490,21.872,24.490 +3407,106.643,375.325,560.982,196.000,497.718,368.535,558.513,19.983,37.936,19.983,351.397,304.518,365.847,25.545,20.466,25.545 +3408,106.675,370.900,571.200,199.718,489.671,364.921,568.211,26.565,49.399,26.565,352.404,303.920,365.773,25.491,20.391,25.491 +3409,106.707,366.215,580.297,204.482,482.444,361.286,577.151,32.550,60.474,32.550,354.565,304.654,366.259,25.306,19.898,25.306 +3410,106.737,359.977,589.529,208.855,474.385,355.367,585.797,38.991,72.031,38.991,356.089,304.263,367.952,24.983,19.384,24.983 +3411,106.768,352.536,598.025,215.553,466.311,348.577,593.969,45.690,83.054,45.690,357.208,304.888,368.542,25.096,18.891,25.096 +3412,106.799,343.216,606.715,223.308,458.589,339.786,602.181,52.883,93.879,52.883,358.208,304.471,369.579,24.612,19.058,24.612 +3413,106.829,333.362,613.915,231.465,451.257,330.215,608.516,59.764,104.931,59.764,358.686,305.459,371.184,23.687,21.257,23.687 +3414,106.860,321.681,619.923,243.001,445.474,319.366,614.448,67.076,115.952,67.076,358.858,306.833,370.747,22.600,18.694,22.600 +3415,106.891,309.202,624.717,254.413,440.684,307.610,618.868,74.776,126.831,74.776,359.677,307.800,371.801,22.803,18.879,22.803 +3416,106.922,293.322,627.683,267.084,437.197,292.338,621.364,81.145,137.834,81.145,358.927,308.900,371.718,25.844,18.698,25.844 +3417,106.952,284.371,626.990,279.841,435.559,284.348,620.771,89.792,148.648,89.792,358.016,309.554,370.453,24.022,19.017,24.022 +3418,106.982,284.371,626.990,279.841,435.559,284.348,620.771,89.792,148.648,89.792,358.016,309.554,370.453,24.022,19.017,24.022 +3419,107.011,266.710,625.349,293.718,436.090,267.409,619.375,96.676,159.690,96.676,358.173,310.742,370.202,25.296,19.284,25.296 +3420,107.046,255.203,621.554,307.580,438.492,256.756,615.737,104.948,170.819,104.948,356.671,311.364,368.713,22.353,19.405,22.353 +3421,107.080,243.897,615.955,320.439,443.280,246.261,610.507,113.459,1.955,113.459,353.991,311.399,365.870,20.095,18.962,20.095 +3422,107.112,233.585,609.443,332.751,448.593,236.896,604.004,121.335,12.826,121.335,352.450,313.238,365.184,19.544,21.455,19.544 +3423,107.147,224.699,601.047,343.905,455.325,228.668,596.126,128.889,24.179,128.889,351.240,314.882,363.885,19.353,24.017,19.353 +3424,107.180,216.691,592.698,352.547,464.534,221.278,588.292,136.153,35.538,136.153,348.082,317.007,360.804,19.197,23.947,19.197 +3425,107.211,210.296,583.561,360.185,474.792,215.128,579.941,143.164,47.175,143.164,346.199,316.931,358.273,19.454,24.668,19.454 +3426,107.244,205.416,574.220,366.147,484.912,210.577,571.234,149.948,59.036,149.948,343.847,317.615,355.771,19.655,24.696,19.655 +3427,107.276,201.728,565.166,370.305,494.893,207.150,562.796,156.392,70.615,156.392,341.554,318.176,353.388,19.438,25.312,19.438 +3428,107.307,199.348,556.188,372.769,504.462,204.683,554.506,162.501,81.941,162.501,339.521,318.478,350.710,19.530,25.191,19.530 +3429,107.338,197.765,547.703,375.230,513.937,203.703,546.476,168.334,94.667,168.334,336.997,319.224,349.125,19.726,25.466,19.726 +3430,107.369,197.234,539.120,376.633,522.342,203.459,538.434,173.709,106.798,173.709,335.260,320.578,347.787,19.887,26.552,19.887 +3431,107.399,196.983,528.378,377.119,530.199,203.966,528.275,179.151,118.580,179.151,332.245,321.388,346.211,24.116,26.259,24.116 +3432,107.430,197.434,522.614,376.924,537.641,204.597,523.035,3.366,130.454,3.366,331.427,322.595,345.776,23.959,26.629,23.959 +3433,107.462,198.334,515.186,377.065,544.582,206.732,516.358,7.943,141.889,7.943,328.239,323.906,345.197,25.428,26.745,25.428 +3434,107.494,199.395,510.001,376.526,550.552,208.269,511.859,11.821,153.221,11.821,327.098,325.154,345.231,24.971,25.406,24.971 +3435,107.526,200.539,503.365,375.547,556.415,210.485,506.276,16.314,164.055,16.314,324.274,326.918,345.000,25.445,25.000,25.445 +3436,107.557,202.267,496.788,375.254,562.366,213.616,501.044,20.556,173.884,20.556,321.512,329.542,345.754,26.100,22.585,26.100 +3437,107.588,203.740,491.961,373.955,567.947,216.093,497.472,24.044,2.705,24.044,318.704,330.765,345.757,25.570,23.887,25.570 +3438,107.618,204.384,486.763,371.519,572.904,218.091,493.893,27.484,11.310,27.484,314.250,332.025,345.152,26.225,22.749,26.225 +3439,107.647,204.384,486.763,371.519,572.904,218.091,493.893,27.484,11.310,27.484,314.250,332.025,345.152,26.225,22.749,26.225 +3440,107.678,204.506,484.413,369.403,578.695,219.648,492.594,28.382,19.415,28.382,310.941,332.818,345.362,24.747,21.035,24.747 +3441,107.711,200.288,475.350,366.600,584.800,222.627,488.885,31.212,26.565,31.212,293.437,333.621,345.675,23.446,18.783,23.446 +3442,107.745,188.383,461.411,364.438,589.325,225.153,486.307,34.101,32.969,34.101,257.376,333.952,346.186,22.418,19.704,22.418 +3443,107.778,160.746,434.548,361.535,593.781,225.764,486.267,38.501,39.435,38.501,180.212,333.928,346.370,17.644,19.756,17.644 +3444,107.811,206.232,465.697,358.577,597.905,227.705,484.319,40.934,45.560,40.934,289.732,334.522,346.579,18.185,19.218,18.185 +3445,107.843,217.008,470.700,355.739,600.918,229.481,482.213,42.709,51.766,42.709,312.631,334.977,346.580,18.540,18.876,18.540 +3446,107.876,223.005,469.888,353.600,603.136,232.570,479.232,44.326,58.736,44.326,319.574,334.955,346.317,23.424,19.996,23.424 +3447,107.907,226.417,470.131,350.871,605.276,234.140,477.964,45.406,66.371,45.406,323.225,334.684,345.225,24.723,19.583,24.723 +3448,107.938,227.547,469.662,348.689,606.228,234.358,476.766,46.206,74.291,46.206,325.465,334.070,345.149,24.580,19.674,24.580 +3449,107.968,228.528,469.288,347.049,606.552,234.731,475.866,46.685,83.480,46.685,326.189,333.515,344.273,25.362,19.899,25.362 +3450,107.998,229.299,469.902,345.964,606.462,234.727,475.684,46.801,92.121,46.801,327.100,331.513,342.961,25.390,20.393,25.390 +3451,108.028,228.771,470.027,346.081,605.435,233.985,475.552,46.664,101.802,46.664,327.601,330.650,342.796,24.512,22.835,24.512 +3452,108.060,228.143,470.066,346.342,604.635,233.504,475.679,46.315,111.584,46.315,326.857,330.005,342.382,24.564,24.892,24.564 +3453,108.091,227.459,470.666,347.161,602.703,232.597,475.937,45.735,121.191,45.735,326.765,327.567,341.486,24.855,25.428,24.855 +3454,108.122,226.500,471.000,348.556,600.782,231.834,476.334,45.000,130.914,45.000,325.976,326.911,341.064,24.749,26.348,24.749 +3455,108.152,226.500,471.000,348.556,600.782,231.834,476.334,45.000,130.914,45.000,325.976,326.911,341.064,24.749,26.348,24.749 +3456,108.181,225.000,471.978,350.569,598.670,230.616,477.355,43.749,140.974,43.749,325.531,326.111,341.082,24.913,26.961,24.913 +3457,108.212,224.372,473.454,353.073,596.530,229.892,478.504,42.451,150.900,42.451,326.142,326.352,341.105,25.808,27.557,25.808 +3458,108.244,222.340,474.951,355.856,593.973,228.291,480.100,40.865,160.907,40.865,326.215,326.711,341.953,25.347,27.332,25.347 +3459,108.276,220.671,476.554,358.722,591.380,227.066,481.733,39.007,170.853,39.007,326.180,327.795,342.638,25.969,26.280,25.969 +3460,108.308,218.166,478.944,361.952,588.283,225.334,484.336,36.951,0.646,36.951,325.389,328.160,343.328,25.933,25.408,25.933 +3461,108.338,215.192,480.720,365.022,584.403,223.554,486.451,34.425,10.263,34.425,323.861,330.575,344.135,25.767,24.798,25.767 +3462,108.368,207.669,483.960,368.079,581.527,220.797,491.434,29.653,20.024,29.653,314.922,332.350,345.135,24.789,21.564,24.789 +3463,108.399,146.510,456.462,370.677,579.054,218.627,495.656,28.523,30.198,28.523,182.677,332.916,346.837,18.241,20.821,18.241 +3464,108.430,206.260,492.661,371.786,576.080,216.938,497.751,25.484,39.489,25.484,323.312,333.428,346.969,21.926,20.103,21.926 +3465,108.461,205.644,496.796,373.821,571.580,215.173,500.554,21.523,49.479,21.523,326.801,332.774,347.287,25.432,20.128,25.432 +3466,108.493,203.869,502.568,375.012,565.786,212.292,505.222,17.488,59.664,17.488,329.132,331.334,346.796,25.543,20.350,25.543 +3467,108.525,202.270,508.125,376.402,558.845,209.875,509.950,13.496,68.962,13.496,331.040,329.112,346.680,25.165,23.262,25.165 +3468,108.555,200.496,513.818,377.445,551.021,207.695,514.978,9.155,78.906,9.155,332.063,326.931,346.645,25.510,24.995,25.510 +3469,108.585,200.496,513.818,377.445,551.021,207.695,514.978,9.155,78.906,9.155,332.063,326.931,346.645,25.510,24.995,25.510 +3470,108.613,198.531,520.892,377.500,542.500,205.262,521.395,4.271,90.000,4.271,333.163,323.000,346.663,25.225,25.000,25.225 +3471,108.643,197.480,531.388,377.237,532.819,204.018,531.270,178.973,100.408,178.973,333.251,321.359,346.328,18.725,25.893,18.725 +3472,108.675,196.739,540.001,376.596,522.411,203.379,539.207,173.177,110.556,173.177,334.596,319.405,347.970,19.782,26.217,19.782 +3473,108.706,196.871,549.177,374.774,512.062,203.750,547.655,167.518,120.900,167.518,335.257,318.993,349.348,19.535,25.716,19.535 +3474,108.737,195.477,559.364,371.534,500.207,205.090,556.085,161.166,131.740,161.166,330.828,318.648,351.142,19.810,23.815,19.810 +3475,108.768,188.776,573.773,367.573,489.210,207.758,565.042,155.298,141.072,155.298,311.976,318.926,353.763,20.332,21.513,20.332 +3476,108.799,144.052,614.367,362.791,478.363,211.309,572.543,148.125,149.871,148.125,198.341,319.023,356.744,18.490,20.510,18.490 +3477,108.829,209.490,587.097,356.991,468.801,216.743,581.343,141.575,156.997,141.575,341.118,319.496,359.634,19.196,22.309,19.196 +3478,108.860,217.880,594.940,350.048,460.205,223.049,589.650,134.334,166.866,134.334,347.889,319.290,362.682,19.066,21.457,19.066 +3479,108.892,226.360,603.520,341.369,453.776,230.440,598.080,126.870,175.649,126.870,350.400,317.983,364.000,19.200,19.335,19.200 +3480,108.923,236.357,611.142,330.634,447.579,239.358,605.755,119.124,5.126,119.124,352.871,315.514,365.204,19.655,19.695,19.655 +3481,108.953,247.259,617.601,318.506,442.525,249.357,612.218,111.301,13.717,111.301,354.886,314.017,366.440,19.886,20.868,19.886 +3482,108.982,247.259,617.601,318.506,442.525,249.357,612.218,111.301,13.717,111.301,354.886,314.017,366.440,19.886,20.868,19.886 +3483,109.013,258.824,622.794,305.565,438.550,260.026,617.385,102.529,22.487,102.529,357.827,310.981,368.909,22.778,22.785,22.778 +3484,109.045,271.109,625.508,291.331,437.996,271.426,621.221,94.230,33.254,94.230,359.792,308.423,368.389,25.522,19.837,25.522 +3485,109.078,288.261,626.785,277.619,438.281,288.052,622.152,87.412,42.553,87.412,359.035,305.735,368.309,24.517,19.962,24.517 +3486,109.112,299.910,626.810,263.508,440.101,298.756,621.280,78.215,51.843,78.215,357.821,304.081,369.119,25.860,20.107,25.860 +3487,109.145,318.552,634.062,249.219,444.928,312.750,618.280,69.814,61.260,69.814,335.625,302.727,369.253,20.842,18.102,20.842 +3488,109.177,331.956,620.836,236.469,451.066,327.095,611.581,62.291,70.633,62.291,347.585,303.310,368.494,21.434,18.908,21.434 +3489,109.210,342.419,608.691,224.522,458.496,338.666,603.605,53.581,80.042,53.581,356.427,304.006,369.068,24.087,19.037,24.087 +3490,109.242,352.139,597.909,214.693,466.998,348.369,594.068,45.528,89.310,45.528,357.885,304.159,368.650,24.653,18.011,24.653 +3491,109.272,360.498,587.047,205.916,476.988,356.282,583.812,37.493,98.239,37.493,358.022,307.168,368.650,25.705,18.495,25.705 +3492,109.302,366.555,575.285,198.428,487.444,362.025,572.690,29.812,107.281,29.812,358.210,309.968,368.653,25.764,18.482,25.764 +3493,109.333,370.265,563.629,192.859,497.915,365.715,561.742,22.528,116.200,22.528,358.389,312.160,368.240,25.718,19.298,25.718 +3494,109.363,370.914,552.046,189.181,508.627,366.592,550.841,15.578,125.008,15.578,355.486,313.766,364.461,25.448,20.764,25.448 +3495,109.394,368.769,540.721,185.688,518.142,363.776,539.938,8.912,134.390,8.912,348.522,314.758,358.630,25.797,22.077,25.797 +3496,109.425,367.477,531.234,184.454,527.581,362.113,530.985,2.659,142.874,2.659,344.511,314.416,355.251,25.152,21.296,25.152 +3497,109.455,366.952,524.664,184.546,536.086,361.967,524.948,176.735,151.645,176.735,345.549,314.056,355.535,20.557,21.651,20.557 +3498,109.485,368.824,516.342,185.514,543.370,362.875,517.247,171.352,159.444,171.352,346.510,312.968,358.545,20.239,21.419,20.239 +3499,109.515,368.824,516.342,185.514,543.370,362.875,517.247,171.352,159.444,171.352,346.510,312.968,358.545,20.239,21.419,20.239 +3500,109.546,440.207,491.128,187.406,550.601,363.748,509.118,166.759,166.804,166.759,205.219,311.892,362.311,19.125,20.842,19.125 +3501,109.578,381.766,496.858,190.530,558.352,361.831,503.399,161.834,175.050,161.834,317.828,310.954,359.789,19.567,20.263,19.567 +3502,109.609,371.261,492.499,194.091,564.537,359.533,497.428,157.203,3.576,157.203,331.599,310.769,357.041,19.720,20.398,19.720 +3503,109.641,363.934,488.354,197.598,571.280,356.743,492.013,153.029,12.724,153.029,339.436,311.732,355.574,19.664,22.120,19.664 +3504,109.671,357.472,484.778,201.164,579.115,353.096,487.411,148.962,23.121,148.962,344.708,312.112,354.924,19.881,24.056,19.881 +3505,109.702,353.653,480.395,204.559,585.929,349.360,483.357,145.389,33.366,145.389,344.442,313.698,354.873,19.382,25.625,19.382 +3506,109.733,350.012,476.568,209.690,590.185,346.648,479.203,141.916,43.418,141.916,343.965,315.562,352.512,19.784,21.689,19.784 +3507,109.763,346.481,473.478,212.719,595.620,342.882,476.615,138.918,53.531,138.918,343.083,318.629,352.631,19.134,21.328,19.134 +3508,109.794,343.089,470.970,215.142,601.150,339.271,474.660,135.982,62.935,135.982,343.700,322.417,354.319,18.891,20.774,18.891 +3509,109.825,339.305,468.918,216.398,604.879,335.563,472.862,133.497,73.072,133.497,344.706,323.938,355.580,18.696,19.799,18.696 +3510,109.856,336.428,467.135,217.828,607.893,332.535,471.617,130.980,82.666,130.980,344.334,325.493,356.209,19.552,19.542,19.552 +3511,109.886,333.651,465.578,219.111,610.004,329.832,470.299,128.967,92.121,128.967,344.357,326.517,356.502,18.980,19.098,18.980 +3512,109.917,333.651,465.578,219.111,610.004,329.832,470.299,128.967,92.121,128.967,344.357,326.517,356.502,18.980,19.098,18.980 +3513,109.947,331.198,464.265,220.351,611.366,327.617,469.016,127.014,101.634,127.014,344.581,327.715,356.481,19.055,19.387,19.055 +3514,109.978,330.021,461.888,221.522,611.812,325.825,467.806,125.334,111.458,125.334,341.096,327.225,355.605,19.146,20.739,19.146 +3515,110.015,332.296,454.681,223.460,612.265,324.400,466.419,123.930,119.967,123.930,326.413,326.219,354.707,18.510,20.994,18.510 +3516,110.046,342.810,434.345,225.302,612.598,322.850,465.282,122.829,130.140,122.829,279.710,324.682,353.345,18.215,20.116,18.215 +3517,110.078,330.598,449.672,226.967,612.546,321.665,464.272,121.461,139.456,121.461,317.570,322.904,351.803,19.732,20.270,19.732 +3518,110.111,327.151,453.668,228.719,612.203,321.417,463.323,120.700,149.133,120.700,328.223,321.383,350.682,19.320,20.206,19.320 +3519,110.143,324.439,455.189,230.597,612.250,320.382,462.248,119.884,158.782,119.884,333.302,319.989,349.585,19.412,21.890,19.412 +3520,110.176,323.305,455.639,232.562,612.805,319.849,461.784,119.347,168.440,119.347,334.738,319.276,348.838,19.381,24.426,19.381 +3521,110.207,322.724,455.787,234.076,613.086,319.630,461.371,118.991,178.315,118.991,335.571,318.362,348.340,19.493,25.577,19.493 +3522,110.238,322.225,456.124,235.340,613.670,319.356,461.337,118.820,7.800,118.820,336.030,319.279,347.931,19.413,26.967,19.413 +3523,110.269,322.006,456.779,236.016,615.040,319.253,461.778,118.843,17.430,118.843,337.392,320.051,348.807,19.245,26.914,19.245 +3524,110.298,322.429,456.961,236.000,616.000,319.499,462.221,119.124,26.565,119.124,337.909,321.099,349.951,19.356,26.833,19.356 +3525,110.328,322.425,457.394,235.580,617.091,319.372,462.810,119.418,35.446,119.418,338.655,322.580,351.090,19.025,26.318,19.025 +3526,110.360,322.984,458.052,234.873,617.620,319.894,463.423,119.914,44.474,119.914,339.718,323.193,352.109,19.188,25.766,19.188 +3527,110.392,323.757,458.670,234.961,616.546,320.967,463.376,120.665,53.440,120.665,340.292,324.815,351.232,18.901,21.669,18.901 +3528,110.423,324.939,460.176,232.869,616.536,322.126,464.720,121.759,61.905,121.759,341.442,325.766,352.130,19.192,20.794,19.192 +3529,110.453,326.041,461.126,230.896,616.500,323.144,465.621,122.800,70.292,122.800,342.897,328.065,353.592,18.885,21.133,18.885 +3530,110.484,326.041,461.126,230.896,616.500,323.144,465.621,122.800,70.292,122.800,342.897,328.065,353.592,18.885,21.133,18.885 +3531,110.514,327.421,461.772,227.246,615.256,324.232,466.531,123.826,78.906,123.826,343.623,327.316,355.080,19.441,20.011,19.441 +3532,110.546,329.242,463.041,223.828,613.559,325.821,467.858,125.385,87.138,125.385,343.878,327.491,355.695,19.262,19.775,19.262 +3533,110.578,331.593,464.053,220.633,611.468,327.776,469.083,127.191,94.970,127.191,343.758,326.897,356.386,19.287,19.448,19.287 +3534,110.610,333.315,466.578,217.294,608.676,330.069,470.548,129.274,102.529,129.274,346.382,326.806,356.638,19.273,19.307,19.273 +3535,110.641,336.940,467.829,213.410,605.292,332.868,472.400,131.692,109.453,131.692,345.134,326.109,357.378,19.113,19.737,19.113 +3536,110.672,339.667,470.691,209.432,601.193,335.789,474.641,134.474,115.814,134.474,346.585,324.784,357.655,18.968,20.215,18.968 +3537,110.702,344.242,472.929,206.028,596.637,339.500,477.255,137.622,121.779,137.622,345.289,323.747,358.127,18.792,20.763,18.792 +3538,110.733,347.815,476.797,202.160,591.120,343.298,480.448,141.049,126.870,141.049,347.054,322.400,358.670,19.260,21.200,19.260 +3539,110.764,352.802,480.289,198.530,585.088,347.254,484.172,145.008,131.231,145.008,345.880,321.160,359.423,19.252,20.956,19.252 +3540,110.795,356.928,485.689,194.750,578.750,351.185,489.088,149.378,135.000,149.378,347.235,319.612,360.582,19.248,20.506,19.248 +3541,110.828,359.853,492.533,191.432,570.817,355.178,494.796,154.165,137.936,154.165,350.627,318.269,361.016,19.451,21.167,19.451 +3542,110.859,363.647,499.525,188.582,562.688,359.063,501.232,159.574,140.323,159.574,352.636,317.534,362.420,19.350,20.903,19.350 +3543,110.890,367.127,507.706,186.081,553.172,362.871,508.834,165.158,142.172,165.158,355.693,316.359,364.498,19.729,22.153,19.729 +3544,110.921,367.598,517.139,184.248,542.810,362.399,517.939,171.254,143.480,171.254,349.199,315.025,359.721,20.528,23.448,20.528 +3545,110.951,367.029,526.803,184.126,532.058,361.740,526.991,177.955,144.149,177.955,344.780,313.779,355.364,21.165,22.570,21.165 +3546,110.981,367.029,526.803,184.126,532.058,361.740,526.991,177.955,144.149,177.955,344.780,313.779,355.364,21.165,22.570,21.165 +3547,111.011,367.885,534.989,185.137,521.087,362.723,534.509,5.315,144.537,5.315,345.763,312.596,356.131,25.008,21.701,25.008 +3548,111.045,369.544,546.869,187.260,508.369,364.569,545.756,12.615,144.876,12.615,352.192,311.492,362.388,25.066,23.319,25.066 +3549,111.078,371.123,560.144,191.574,496.304,366.165,558.297,20.433,144.462,20.433,359.913,310.730,370.495,25.393,20.227,25.393 +3550,111.111,365.358,573.835,198.015,485.021,361.545,571.677,29.511,144.560,29.511,361.239,309.683,370.000,25.434,18.328,25.434 +3551,111.144,359.494,585.957,205.827,473.671,355.615,582.973,37.569,144.758,37.569,360.949,308.623,370.737,24.937,18.456,24.937 +3552,111.176,349.701,598.518,215.552,463.075,346.195,594.791,46.745,144.966,46.745,360.673,308.194,370.906,24.673,18.406,24.673 +3553,111.207,338.972,608.631,226.928,453.897,336.015,604.372,55.238,145.231,55.238,361.265,307.877,371.635,23.524,18.255,23.524 +3554,111.242,325.093,616.997,239.927,446.166,322.888,612.400,64.382,145.503,64.382,361.329,308.191,371.525,22.247,18.276,22.247 +3555,111.286,294.869,626.954,269.000,437.000,294.131,621.046,82.875,146.310,82.875,359.577,308.968,371.484,27.784,18.860,27.784 +3556,111.316,294.869,626.954,269.000,437.000,294.131,621.046,82.875,146.310,82.875,359.577,308.968,371.484,27.784,18.860,27.784 +3557,111.345,280.931,627.242,284.202,435.578,281.255,620.641,92.816,146.929,92.816,356.749,309.845,369.969,27.721,18.845,27.721 +3558,111.382,263.671,624.649,300.180,436.782,265.047,618.435,102.487,147.465,102.487,357.177,311.308,369.905,25.057,19.071,25.057 +3559,111.414,246.828,618.124,315.191,440.695,249.323,611.939,111.969,148.195,111.969,353.565,312.901,366.902,20.371,19.817,20.371 +3560,111.445,233.093,610.029,329.611,447.183,236.745,604.054,121.430,148.815,121.430,350.557,314.689,364.561,20.194,19.722,20.194 +3561,111.479,221.350,600.638,342.148,455.395,226.561,594.620,130.894,149.789,130.894,345.904,316.430,361.826,20.215,20.040,20.215 +3562,111.512,210.867,590.245,352.993,465.713,218.010,584.261,140.047,150.582,140.047,340.564,318.510,359.200,19.694,21.312,19.694 +3563,111.546,194.412,583.853,362.008,477.072,211.825,573.405,149.036,152.063,149.036,316.072,320.295,356.687,19.379,19.409,19.379 +3564,111.578,133.593,592.726,369.140,489.774,207.552,562.273,157.620,152.978,157.620,194.074,321.565,354.041,19.201,19.073,19.201 +3565,111.610,178.301,557.082,374.096,502.666,204.773,550.199,165.426,154.134,165.426,296.967,322.542,351.670,19.008,19.278,19.008 +3566,111.641,186.367,541.531,377.577,516.302,204.253,539.363,173.089,156.109,173.089,313.644,324.306,349.678,20.035,21.502,20.035 +3567,111.671,191.434,528.732,378.781,529.470,204.857,528.902,0.722,157.521,0.722,320.987,325.381,347.835,18.805,22.495,18.805 +3568,111.702,195.362,516.108,378.412,542.072,206.892,517.549,7.125,158.962,7.125,323.234,326.097,346.475,25.427,23.549,25.427 +3569,111.732,199.676,506.794,376.506,553.517,209.505,509.251,14.036,160.484,14.036,325.240,327.112,345.502,24.981,23.552,24.981 +3570,111.763,204.354,498.236,373.486,564.457,213.191,501.525,20.410,162.165,20.410,325.499,327.667,344.357,25.741,24.676,25.741 +3571,111.794,209.816,489.301,369.285,574.254,217.750,493.471,27.724,163.923,27.724,325.514,328.158,343.440,25.477,24.924,25.477 +3572,111.826,215.046,482.431,364.572,583.281,222.361,487.247,33.360,165.706,33.360,325.656,327.926,343.174,25.259,25.393,25.259 +3573,111.856,220.462,476.926,359.070,590.824,226.835,482.052,38.811,167.758,38.811,326.067,328.885,342.426,25.020,25.888,25.020 +3574,111.887,226.178,471.816,353.275,598.270,231.866,477.341,44.170,169.638,44.170,326.833,328.704,342.691,25.556,26.385,25.556 +3575,111.917,226.178,471.816,353.275,598.270,231.866,477.341,44.170,169.638,44.170,326.833,328.704,342.691,25.556,26.385,25.556 +3576,111.946,231.596,467.418,346.819,604.187,236.624,473.256,49.268,171.694,49.268,326.830,328.236,342.241,25.112,26.276,25.112 +3577,111.976,236.975,464.518,340.686,609.708,241.170,470.304,54.052,173.797,54.052,328.258,328.543,342.551,23.790,26.712,23.790 +3578,112.008,242.036,460.995,334.385,613.804,245.861,467.300,58.749,176.121,58.749,327.596,328.077,342.345,23.229,26.549,23.229 +3579,112.039,247.356,458.573,327.931,617.427,250.558,464.901,63.159,178.080,63.159,327.870,328.251,342.055,22.457,27.136,22.457 +3580,112.070,252.304,456.119,321.500,620.500,255.012,462.641,67.452,0.000,67.452,328.451,327.000,342.574,21.857,27.000,21.857 +3581,112.101,257.275,454.413,314.394,623.425,259.518,461.105,71.469,3.162,71.469,328.574,328.102,342.689,21.013,27.593,21.013 +3582,112.132,262.317,452.688,307.855,625.461,264.080,459.563,75.619,5.654,75.619,328.948,328.552,343.144,20.243,27.903,20.243 +3583,112.164,267.183,451.521,301.126,627.055,268.464,458.453,79.531,8.326,79.531,329.359,328.139,343.460,19.475,27.681,19.475 +3584,112.196,272.512,450.789,294.866,628.186,273.289,457.494,83.387,11.017,83.387,330.583,327.288,344.083,19.493,27.779,19.493 +3585,112.231,277.563,450.113,288.294,628.823,277.878,456.878,87.337,14.036,87.337,330.945,327.908,344.488,18.724,27.649,18.724 +3586,112.262,282.322,449.947,281.528,629.059,282.229,456.486,90.818,16.832,90.818,332.052,327.300,345.130,18.584,27.798,18.584 +3587,112.294,287.948,449.869,274.844,628.927,287.398,456.377,94.830,20.056,94.830,332.926,326.881,345.989,18.455,26.869,18.455 +3588,112.326,293.150,450.146,268.403,628.227,292.199,456.463,98.561,23.151,98.561,334.011,326.819,346.786,18.948,26.417,18.948 +3589,112.356,298.677,451.048,261.899,627.207,297.335,457.138,102.422,25.974,102.422,334.949,325.573,347.421,18.998,26.278,18.998 +3590,112.388,304.700,451.965,255.236,625.576,302.885,458.070,106.557,29.055,106.557,335.540,325.187,348.278,19.352,26.419,19.352 +3591,112.419,310.486,453.361,248.893,623.371,308.265,459.239,110.695,32.005,110.695,336.479,324.783,349.045,19.042,26.182,19.042 +3592,112.451,316.005,455.156,242.360,620.490,313.441,460.711,114.775,35.218,114.775,337.482,324.096,349.718,19.137,25.855,19.137 +3593,112.483,322.430,457.680,235.794,617.130,319.427,463.019,119.358,38.418,119.358,338.389,322.801,350.642,19.502,25.747,19.502 +3594,112.517,322.430,457.680,235.794,617.130,319.427,463.019,119.358,38.418,119.358,338.389,322.801,350.642,19.502,25.747,19.502 +3595,112.548,327.846,460.231,229.288,613.185,324.463,465.305,123.690,42.421,123.690,339.477,322.076,351.675,18.860,25.417,18.860 +3596,112.581,334.026,463.726,222.593,608.471,330.237,468.497,128.461,45.881,128.461,340.930,321.119,353.114,18.982,25.736,18.982 +3597,112.614,340.077,468.124,218.079,601.645,336.554,471.836,133.506,49.351,133.506,341.189,320.186,351.425,18.698,20.968,18.698 +3598,112.646,346.166,473.121,212.199,595.194,342.534,476.319,138.636,52.815,138.636,343.075,319.006,352.755,19.122,20.906,19.122 +3599,112.679,352.259,479.167,206.950,588.703,348.262,482.057,144.130,56.367,144.130,344.137,320.061,354.002,19.224,20.518,19.224 +3600,112.714,357.700,485.844,201.367,580.705,353.393,488.354,149.767,59.819,149.767,345.726,317.877,355.697,19.511,20.023,19.511 +3601,112.748,362.929,493.840,196.800,571.100,358.606,495.772,155.924,63.435,155.924,347.448,315.733,356.918,19.465,20.125,19.465 +3602,112.782,367.256,502.741,193.250,561.057,363.007,504.108,162.173,67.249,162.173,349.156,314.617,358.083,19.476,20.586,19.476 +3603,112.815,369.754,512.794,190.673,550.113,365.451,513.649,168.763,70.891,168.763,348.292,313.155,357.066,20.260,20.765,20.260 +3604,112.849,369.195,523.660,189.540,538.522,364.508,524.004,175.802,74.560,175.802,341.723,311.968,351.123,21.035,21.252,21.035 +3605,112.882,369.340,532.884,189.507,526.314,364.711,532.604,3.468,78.930,3.468,341.253,310.632,350.528,23.865,20.161,23.865 +3606,112.916,371.092,545.002,191.350,513.950,366.637,544.117,11.237,81.870,11.237,346.525,308.581,355.610,24.508,21.637,24.508 +3607,112.949,368.307,572.110,198.905,488.948,363.723,569.702,27.719,89.128,27.719,356.573,306.102,366.929,25.567,18.551,25.567 +3608,112.981,368.307,572.110,198.905,488.948,363.723,569.702,27.719,89.128,27.719,356.573,306.102,366.929,25.567,18.551,25.567 +3609,113.014,361.340,585.880,205.894,476.648,356.982,582.611,36.870,92.925,36.870,358.000,305.725,368.896,25.000,18.443,25.000 +3610,113.048,351.930,598.136,215.365,465.663,348.010,594.108,45.785,96.823,45.785,357.879,305.606,369.120,24.349,18.517,24.349 +3611,113.082,339.917,609.058,226.372,455.945,336.742,604.531,54.958,100.633,54.958,358.987,305.306,370.047,23.488,18.591,23.488 +3612,113.116,326.024,617.973,238.763,447.715,323.427,612.609,64.161,104.500,64.161,358.699,305.167,370.617,22.242,19.062,22.242 +3613,113.149,311.259,624.925,252.509,441.687,309.410,618.571,73.777,108.875,73.777,358.240,305.834,371.475,23.115,18.844,23.115 +3614,113.182,295.200,628.100,267.070,437.882,294.347,621.277,82.875,113.369,82.875,356.972,306.987,370.724,27.660,19.844,27.660 +3615,113.214,280.804,628.183,282.326,436.680,281.139,621.200,92.752,118.989,92.752,354.744,307.994,368.727,27.632,19.362,27.632 +3616,113.247,259.606,625.164,297.697,437.423,260.943,618.134,100.767,124.408,100.767,354.480,309.533,368.793,25.681,20.004,25.681 +3617,113.280,246.731,619.621,313.052,441.112,249.449,612.608,111.184,130.882,111.184,350.738,310.944,365.781,20.397,19.522,20.397 +3618,113.312,233.403,611.989,327.228,447.074,237.363,605.182,120.188,138.257,120.188,347.955,313.000,363.706,20.226,19.514,20.226 +3619,113.346,222.841,602.737,339.667,454.014,227.936,596.499,129.243,145.561,129.243,345.958,315.659,362.065,19.941,19.723,19.941 +3620,113.381,213.981,592.434,350.798,462.637,220.175,586.756,137.490,154.026,137.490,343.514,317.597,360.319,19.412,20.562,19.412 +3621,113.415,206.759,581.976,360.291,472.656,214.171,576.865,145.408,163.179,145.408,340.895,319.531,358.902,19.502,20.213,19.502 +3622,113.449,202.433,570.924,368.346,483.709,210.209,566.925,152.790,173.182,152.790,339.886,321.730,357.375,19.440,19.880,19.440 +3623,113.482,198.701,560.687,374.062,495.004,207.394,557.489,159.808,3.576,159.808,337.460,322.995,355.985,19.667,20.710,19.667 +3624,113.515,197.568,550.707,378.258,505.909,206.172,548.633,166.452,14.318,166.452,336.911,326.009,354.612,19.748,22.683,19.748 +3625,113.549,196.693,541.149,380.278,518.507,205.412,540.012,172.569,26.250,172.569,334.773,327.358,352.357,19.272,22.065,19.272 +3626,113.582,197.385,532.520,381.008,530.137,205.878,532.240,178.112,37.681,178.112,333.215,327.844,350.209,18.990,19.844,18.990 +3627,113.615,198.197,522.699,380.984,539.584,206.656,523.138,2.974,49.279,2.974,332.954,328.430,349.893,24.798,22.257,24.798 +3628,113.646,200.049,515.548,379.298,548.839,208.101,516.667,7.907,61.699,7.907,331.732,328.483,347.991,25.285,22.621,25.285 +3629,113.678,201.935,509.732,377.245,557.010,209.523,511.395,12.362,73.811,12.362,331.661,328.160,347.197,25.036,24.009,25.036 +3630,113.710,204.197,503.509,374.081,563.872,211.327,505.648,16.699,85.380,16.699,330.354,327.438,345.241,26.149,24.546,26.149 +3631,113.741,206.336,498.938,371.071,569.729,213.007,501.440,20.556,98.297,20.556,329.705,326.979,343.955,25.398,25.377,25.398 +3632,113.773,208.474,493.843,367.967,574.487,214.995,496.788,24.305,111.038,24.305,328.476,326.312,342.787,25.901,25.703,25.901 +3633,113.805,211.362,487.995,365.308,578.538,217.971,491.589,28.540,123.690,28.540,326.904,326.164,341.950,25.938,26.626,25.938 +3634,113.843,213.734,484.801,363.519,581.628,220.089,488.691,31.468,136.219,31.468,326.800,325.436,341.702,25.360,26.714,25.360 +3635,113.874,215.769,482.346,361.836,584.887,222.032,486.522,33.690,148.921,33.690,326.718,326.368,341.773,25.239,27.465,25.239 +3636,113.906,218.148,479.300,360.816,587.940,224.652,484.113,36.501,161.421,36.501,326.247,327.307,342.430,25.289,26.804,25.289 +3637,113.936,220.366,476.793,359.372,590.516,226.764,481.911,38.660,173.959,38.660,326.403,328.399,342.790,25.769,25.803,25.769 +3638,113.966,222.002,475.414,358.235,591.955,228.113,480.648,40.577,6.157,40.577,326.377,330.155,342.468,25.509,25.990,25.509 +3639,113.996,223.806,474.053,357.413,595.687,230.300,479.917,42.079,18.834,42.079,326.360,332.721,343.859,25.113,24.219,25.113 +3640,114.028,221.344,472.821,356.436,598.605,230.252,480.622,41.209,31.360,41.209,321.633,333.397,345.316,25.494,20.289,25.494 +3641,114.060,170.175,421.868,354.174,601.899,230.618,480.906,44.326,43.486,44.326,176.881,333.974,345.863,17.635,19.443,17.635 +3642,114.091,219.976,468.055,352.400,604.232,231.823,480.007,45.252,56.109,45.252,312.563,334.769,346.221,18.939,19.542,18.939 +3643,114.121,226.611,469.481,350.070,605.670,234.409,477.516,45.860,68.468,45.860,322.638,334.440,345.032,24.752,19.699,24.752 +3644,114.152,226.611,469.481,350.070,605.670,234.409,477.516,45.860,68.468,45.860,322.638,334.440,345.032,24.752,19.699,24.752 +3645,114.182,228.009,470.217,348.024,605.996,234.125,476.595,46.202,81.098,46.202,326.789,333.024,344.462,24.669,20.021,24.669 +3646,114.213,228.088,470.115,347.111,605.563,233.867,476.161,46.296,93.270,46.296,326.856,331.716,343.583,24.662,22.135,24.662 +3647,114.246,227.981,470.241,346.216,604.378,233.261,475.744,46.185,106.285,46.185,326.789,329.961,342.042,24.700,23.059,24.700 +3648,114.278,227.377,470.267,346.885,602.842,232.718,475.771,45.855,119.369,45.855,326.056,328.093,341.396,24.778,25.633,24.778 +3649,114.309,226.765,470.768,348.024,600.849,231.959,476.008,45.252,132.412,45.252,325.989,326.087,340.745,24.714,27.074,24.714 +3650,114.340,226.222,471.746,350.071,598.986,231.509,476.936,44.474,145.260,44.474,325.398,326.221,340.216,24.832,27.642,24.832 +3651,114.371,225.121,472.786,352.458,597.373,230.663,478.027,43.404,158.009,43.404,325.734,326.639,340.989,24.995,27.568,24.995 +3652,114.402,223.824,474.037,355.349,595.582,229.746,479.397,42.144,170.492,42.144,326.204,327.323,342.179,25.240,27.674,25.240 +3653,114.433,222.141,475.253,357.902,592.341,228.247,480.498,40.666,2.396,40.666,326.359,328.633,342.457,25.535,27.286,25.535 +3654,114.463,220.128,476.723,360.529,590.882,227.194,482.437,38.959,14.036,38.959,325.561,331.304,343.735,25.527,25.709,25.527 +3655,114.494,214.494,479.225,362.998,589.743,224.842,486.447,34.912,24.854,34.912,319.583,333.226,344.821,24.968,20.159,24.968 +3656,114.526,154.190,441.632,364.948,589.008,223.014,489.509,34.824,34.906,34.824,178.993,333.506,346.669,17.881,20.768,17.881 +3657,114.557,209.401,483.975,366.197,586.817,221.496,491.728,32.661,44.493,32.661,317.540,333.816,346.274,18.953,19.335,18.953 +3658,114.588,211.406,486.215,367.623,584.211,220.926,491.695,29.927,54.913,29.927,324.615,333.512,346.585,25.060,19.213,25.060 +3659,114.618,210.500,491.000,369.119,579.887,218.325,494.912,26.565,66.286,26.565,328.255,332.334,345.752,25.491,20.416,25.491 +3660,114.647,210.500,491.000,369.119,579.887,218.325,494.912,26.565,66.286,26.565,328.255,332.334,345.752,25.491,20.416,25.491 +3661,114.678,207.948,495.121,370.970,574.231,215.581,498.392,23.199,77.347,23.199,328.791,330.389,345.400,25.473,22.939,25.473 +3662,114.710,205.785,500.874,372.765,567.952,212.545,503.205,19.026,88.781,19.026,330.848,326.330,345.149,25.655,24.633,25.655 +3663,114.741,203.144,505.917,373.807,560.333,209.657,507.678,15.124,100.437,15.124,330.911,325.212,344.405,25.334,25.466,25.334 +3664,114.772,200.439,512.140,375.373,551.961,207.314,513.419,10.539,112.036,10.539,330.560,323.107,344.547,24.807,26.440,24.807 +3665,114.803,198.624,518.811,376.116,543.109,205.531,519.534,5.977,124.470,5.977,330.335,322.870,344.224,24.412,26.781,24.412 +3666,114.834,195.993,525.977,376.702,532.685,203.889,526.087,0.793,136.571,0.793,329.982,321.177,345.775,24.527,26.081,24.527 +3667,114.866,192.079,537.390,377.376,522.060,203.951,536.343,174.958,148.496,174.958,324.182,322.256,348.018,19.600,25.028,19.600 +3668,114.896,176.045,549.314,376.868,511.493,204.261,543.853,169.046,159.677,169.046,293.742,323.384,351.222,18.749,19.936,18.749 +3669,114.928,194.331,556.609,375.253,500.167,206.259,553.025,163.278,171.209,163.278,329.203,324.799,354.112,19.401,22.618,19.401 +3670,114.959,200.840,564.802,372.586,492.153,208.360,561.569,156.739,3.668,156.739,340.211,323.810,356.582,19.048,22.569,19.048 +3671,114.988,205.328,574.473,368.277,482.760,211.930,570.655,149.959,14.682,149.959,343.439,323.609,358.692,19.274,22.815,19.274 +3672,115.018,205.328,574.473,368.277,482.760,211.930,570.655,149.959,14.682,149.959,343.439,323.609,358.692,19.274,22.815,19.274 +3673,115.048,210.688,583.760,361.400,474.200,215.878,579.846,142.980,26.565,142.980,346.596,321.994,359.596,19.162,22.361,19.162 +3674,115.079,217.136,593.128,353.086,465.715,221.531,588.834,135.659,36.968,135.659,347.987,317.817,360.276,19.099,24.631,19.099 +3675,115.111,225.020,602.194,343.153,458.012,228.446,597.832,128.144,49.399,128.144,350.531,313.681,361.623,19.196,25.164,19.196 +3676,115.144,234.656,609.971,331.673,450.938,237.164,605.695,120.393,62.103,120.393,352.693,309.950,362.608,19.565,24.018,19.565 +3677,115.175,245.158,617.398,319.142,445.320,247.240,612.397,112.601,74.320,112.601,352.926,307.839,363.760,19.446,23.174,19.446 +3678,115.206,255.042,629.513,304.856,441.452,257.910,618.096,104.098,86.775,104.098,341.974,305.642,365.518,21.856,19.659,21.856 +3679,115.237,266.980,668.997,290.069,438.338,273.228,621.417,97.481,99.289,97.481,271.448,306.433,367.426,24.657,20.102,24.657 +3680,115.268,285.609,628.554,276.930,437.157,285.527,621.100,89.368,110.095,89.368,353.144,306.727,368.053,25.043,20.867,25.043 +3681,115.298,299.396,626.593,263.525,438.015,298.419,620.252,81.240,121.827,81.240,358.020,308.566,370.851,25.622,19.483,25.622 +3682,115.330,312.102,623.495,250.442,441.838,310.296,617.765,72.508,133.755,72.508,359.549,309.132,371.565,21.977,18.396,21.977 +3683,115.362,325.780,616.650,238.070,446.829,323.383,611.776,63.814,145.452,63.814,360.470,310.353,371.331,22.819,18.755,22.819 +3684,115.393,338.341,608.333,226.579,453.686,335.547,604.264,55.528,157.006,55.528,361.752,309.622,371.625,24.818,18.815,24.818 +3685,115.424,348.441,599.067,216.541,461.707,345.292,595.649,47.350,168.761,47.350,362.198,308.299,371.493,25.120,19.604,25.120 +3686,115.454,356.910,588.531,209.000,470.500,353.791,585.965,39.440,0.000,39.440,362.266,306.000,370.344,25.747,19.000,25.747 +3687,115.485,356.910,588.531,209.000,470.500,353.791,585.965,39.440,0.000,39.440,362.266,306.000,370.344,25.747,19.000,25.747 +3688,115.514,365.727,578.455,202.362,480.221,360.606,575.298,31.651,10.830,31.651,357.167,305.136,369.196,25.806,21.121,25.806 +3689,115.546,434.366,598.394,197.394,491.250,364.621,566.691,24.444,23.019,24.444,213.688,304.491,366.912,19.780,20.983,19.780 +3690,115.579,376.138,556.343,193.846,502.792,368.572,553.989,17.281,34.992,17.281,348.247,304.590,364.094,25.272,21.792,25.272 +3691,115.611,371.914,543.537,191.785,514.765,366.915,542.616,10.437,46.900,10.437,344.390,305.135,354.556,26.087,21.912,26.087 +3692,115.648,369.890,533.481,189.691,526.817,365.002,533.135,4.046,58.037,4.046,340.836,308.036,350.638,25.454,20.467,25.454 +3693,115.691,368.812,517.811,189.332,547.409,364.329,518.416,172.316,81.229,172.316,345.559,313.847,354.606,20.340,20.320,20.340 +3694,115.723,368.888,510.014,189.417,557.032,364.227,511.094,166.957,91.995,166.957,351.765,316.539,361.334,20.251,19.759,20.251 +3695,115.755,365.747,502.637,188.856,564.113,360.392,504.387,161.900,103.241,161.900,351.939,319.453,363.207,19.724,21.873,19.724 +3696,115.786,361.951,496.311,190.886,570.829,357.010,498.385,157.230,113.733,157.230,351.716,320.653,362.433,19.568,20.360,19.568 +3697,115.822,358.511,491.065,192.993,575.995,353.761,493.493,152.919,124.089,152.919,350.734,321.179,361.402,19.217,19.876,19.217 +3698,115.853,356.735,485.059,195.437,579.956,350.876,488.574,149.036,134.478,149.036,346.942,320.377,360.607,19.379,22.313,19.379 +3699,115.884,356.735,485.059,195.437,579.956,350.876,488.574,149.036,134.478,149.036,346.942,320.377,360.607,19.379,22.313,19.379 +3700,115.913,368.587,470.709,198.576,583.411,348.266,484.633,145.582,142.670,145.582,309.365,319.195,358.633,19.126,19.827,19.126 +3701,115.945,370.919,461.196,202.562,587.554,345.281,480.598,142.883,152.650,142.883,292.390,317.186,356.693,18.233,19.755,18.233 +3702,115.977,352.220,470.100,206.393,590.655,343.099,477.885,139.518,162.734,139.518,330.401,316.059,354.383,19.092,22.028,19.092 +3703,116.009,346.721,468.765,210.625,593.272,340.677,474.462,136.698,174.401,136.698,335.650,314.824,352.261,19.607,22.051,19.607 +3704,116.040,341.944,467.832,215.226,597.453,337.920,471.991,134.052,6.369,134.052,339.388,314.840,350.962,19.462,25.220,19.462 +3705,116.071,338.622,466.163,218.541,601.816,334.920,470.310,131.760,18.812,131.760,340.094,316.564,351.212,19.048,26.078,19.048 +3706,116.102,336.246,464.374,221.613,606.008,332.322,469.101,129.699,30.466,129.699,339.818,317.952,352.106,19.003,26.264,19.003 +3707,116.133,333.070,463.284,224.268,609.709,329.340,468.128,127.598,42.709,127.598,340.337,319.922,352.565,19.278,26.001,19.278 +3708,116.163,330.633,462.511,227.940,611.187,327.715,466.547,125.867,54.567,125.867,341.382,322.704,351.342,19.285,21.310,19.285 +3709,116.194,328.200,461.924,229.422,614.315,325.284,466.180,124.418,66.289,124.418,342.454,326.036,352.771,18.912,22.048,18.912 +3710,116.225,326.404,461.134,228.601,616.148,323.139,466.143,123.096,77.598,123.096,342.621,327.019,354.580,19.298,19.978,19.298 +3711,116.255,324.728,461.029,228.477,616.993,321.689,465.909,121.908,89.208,121.908,343.547,328.134,355.046,19.172,19.035,19.172 +3712,116.285,323.566,460.232,228.434,617.304,320.498,465.322,121.079,100.408,121.079,343.498,328.344,355.384,19.088,19.069,19.088 +3713,116.315,323.566,460.232,228.434,617.304,320.498,465.322,121.079,100.408,121.079,343.498,328.344,355.384,19.088,19.069,19.088 +3714,116.344,323.762,458.194,228.630,616.438,319.974,464.687,120.256,111.168,120.256,339.177,328.324,354.210,18.931,20.889,18.931 +3715,116.377,359.693,393.849,229.444,616.138,319.142,463.891,120.069,123.092,120.069,191.533,325.903,353.401,18.174,20.587,18.174 +3716,116.409,328.592,446.339,229.688,614.681,319.023,463.085,119.745,134.694,119.745,313.312,323.888,351.888,18.233,19.345,18.233 +3717,116.440,324.970,451.929,230.628,613.683,319.164,462.370,119.076,146.174,119.076,326.646,322.007,350.539,19.631,20.331,19.631 +3718,116.471,324.156,454.843,231.565,612.548,320.081,462.070,119.412,157.319,119.412,332.511,320.001,349.104,19.480,22.846,19.480 +3719,116.501,323.207,455.573,232.896,612.923,319.779,461.705,119.208,169.809,119.208,334.724,319.131,348.776,19.464,24.362,19.464 +3720,116.533,323.326,456.391,233.921,612.808,320.350,461.625,119.619,1.614,119.619,336.244,318.381,348.287,18.966,26.764,18.966 +3721,116.564,323.812,457.129,233.905,613.017,320.978,462.023,120.079,13.291,120.079,337.290,319.452,348.601,19.272,27.419,19.272 +3722,116.595,324.365,457.919,233.273,614.064,321.400,462.891,120.806,24.928,120.806,338.375,320.853,349.952,19.131,26.681,19.131 +3723,116.625,325.384,458.813,232.472,614.835,322.207,463.976,121.608,35.362,121.608,338.895,321.415,351.019,19.326,26.123,19.326 +3724,116.655,326.599,459.957,230.908,615.064,323.355,465.004,122.735,46.420,122.735,340.437,322.727,352.437,18.987,25.436,18.987 +3725,116.685,326.599,459.957,230.908,615.064,323.355,465.004,122.735,46.420,122.735,340.437,322.727,352.437,18.987,25.436,18.987 +3726,116.714,327.929,461.106,230.099,613.490,325.118,465.282,123.944,57.724,123.944,341.950,324.445,352.017,19.176,21.716,19.176 +3727,116.746,329.565,462.768,227.461,613.705,326.479,467.107,125.417,67.932,125.417,343.060,327.364,353.708,19.161,21.866,19.161 +3728,116.780,331.495,463.983,222.998,611.902,328.015,468.585,127.102,78.853,127.102,343.771,326.529,355.309,19.223,19.657,19.223 +3729,116.812,333.548,465.886,219.360,609.971,329.974,470.288,129.072,89.288,129.072,344.983,326.124,356.325,19.109,18.818,19.109 +3730,116.845,336.136,467.862,215.228,606.781,332.386,472.130,131.309,99.233,131.309,345.604,325.987,356.966,19.052,19.430,19.052 +3731,116.877,339.467,469.528,211.132,602.889,335.168,474.003,133.847,108.970,133.847,345.340,325.434,357.751,18.789,19.150,18.789 +3732,116.908,343.400,471.700,206.991,598.030,338.425,476.413,136.548,118.113,136.548,344.407,323.942,358.112,19.219,19.972,19.219 +3733,116.939,346.688,475.175,203.292,592.720,341.931,479.197,139.776,126.962,139.776,345.872,322.792,358.330,19.206,21.162,19.206 +3734,116.969,351.934,478.198,200.111,586.608,346.023,482.587,143.403,134.215,143.403,343.597,320.454,358.322,19.109,20.301,19.109 +3735,116.999,356.402,483.001,196.634,580.167,350.072,487.047,147.410,141.274,147.410,343.845,319.685,358.871,18.802,19.879,18.802 +3736,117.032,365.762,485.680,194.196,573.121,354.293,491.800,151.913,148.151,151.913,333.061,318.206,359.060,18.620,19.923,18.620 +3737,117.063,381.690,487.448,190.885,565.325,357.816,497.697,156.765,154.954,156.765,308.181,315.353,360.142,18.705,19.491,18.705 +3738,117.094,435.901,480.109,188.822,556.971,361.552,504.416,161.896,161.649,161.896,204.576,313.380,361.019,19.010,19.687,19.010 +3739,117.125,440.860,494.782,187.299,548.004,364.434,512.152,167.196,168.589,167.196,204.601,311.615,361.351,19.547,20.576,19.547 +3740,117.156,438.872,511.197,186.763,537.863,363.595,520.322,173.089,176.269,173.089,203.661,308.844,355.317,20.336,19.871,20.336 +3741,117.186,438.872,511.197,186.763,537.863,363.595,520.322,173.089,176.269,173.089,203.661,308.844,355.317,20.336,19.871,20.336 +3742,117.215,436.585,527.875,187.129,527.302,363.134,528.782,179.293,3.366,179.293,205.034,307.175,351.946,20.356,20.788,20.356 +3743,117.246,417.495,544.056,188.785,517.030,364.075,539.063,5.339,10.984,5.339,245.854,307.108,353.159,21.179,20.918,21.179 +3744,117.278,400.360,555.001,191.561,506.851,366.382,546.841,13.505,18.800,13.505,288.762,305.828,358.651,23.366,20.383,23.366 +3745,117.309,390.114,567.012,195.388,496.738,368.057,558.605,20.865,26.991,20.865,319.551,304.584,366.761,24.018,19.925,24.018 +3746,117.339,379.674,578.175,200.519,487.458,364.090,569.816,28.207,35.417,28.207,330.778,302.475,366.147,23.866,19.088,23.866 +3747,117.370,369.252,588.544,206.782,477.721,358.723,581.001,35.613,44.559,35.613,341.423,302.018,367.327,24.487,19.075,24.487 +3748,117.401,358.968,598.240,214.022,469.123,351.428,591.185,43.096,54.174,43.096,346.808,301.979,367.461,24.498,19.333,24.498 +3749,117.431,346.846,606.126,222.819,460.903,342.518,600.823,50.784,64.687,50.784,354.480,303.043,368.169,24.329,19.595,24.329 +3750,117.461,336.202,613.685,231.690,453.710,332.707,608.073,58.087,75.816,58.087,355.639,302.946,368.863,23.143,19.145,23.143 +3751,117.492,323.772,620.378,241.840,447.524,321.067,614.350,65.830,87.955,65.830,356.065,303.414,369.280,22.025,18.560,22.025 +3752,117.523,309.782,626.008,253.346,442.254,307.837,619.431,73.531,100.679,73.531,356.994,304.698,370.711,22.515,18.879,22.515 +3753,117.553,294.489,628.334,265.645,438.619,293.403,621.796,80.571,113.992,80.571,357.245,306.635,370.499,25.976,18.217,25.976 +3754,117.584,294.489,628.334,265.645,438.619,293.403,621.796,80.571,113.992,80.571,357.245,306.635,370.499,25.976,18.217,25.976 +3755,117.613,285.250,627.976,277.994,436.258,285.198,621.094,89.572,127.304,89.572,356.005,308.438,369.770,25.007,18.863,25.007 +3756,117.644,267.296,626.202,291.855,436.056,268.037,619.485,96.298,141.002,96.298,356.355,310.158,369.870,25.617,18.817,25.617 +3757,117.676,255.379,622.432,305.850,437.806,257.066,615.921,104.525,154.799,104.525,355.863,311.364,369.315,22.872,19.214,22.872 +3758,117.707,244.164,616.214,319.344,442.206,246.633,610.445,113.166,168.616,113.166,354.003,313.205,366.555,20.089,19.370,20.089 +3759,117.739,233.861,609.616,331.883,448.128,237.130,604.177,121.002,2.545,121.002,352.432,312.625,365.123,19.742,19.936,19.742 +3760,117.770,224.893,601.614,343.432,454.741,229.092,596.371,128.687,15.695,128.687,350.611,315.238,364.044,19.810,22.564,19.810 +3761,117.802,216.984,592.984,352.816,463.980,221.759,588.351,135.866,29.461,135.866,348.028,316.392,361.333,19.140,23.236,19.140 +3762,117.832,210.596,583.968,360.059,473.978,215.554,580.204,142.787,42.709,142.787,346.203,317.039,358.653,19.461,24.192,19.461 +3763,117.863,205.512,574.873,366.118,484.247,210.928,571.696,149.601,57.144,149.601,343.653,317.307,356.211,19.390,24.361,19.390 +3764,117.894,201.732,565.771,369.837,494.235,207.139,563.366,156.019,70.484,156.019,341.666,317.842,353.501,19.370,24.781,19.370 +3765,117.926,199.422,556.851,372.783,503.611,204.840,555.099,162.080,84.806,162.080,339.889,318.595,351.276,19.423,24.807,19.423 +3766,117.956,197.763,548.546,374.873,512.638,203.710,547.267,167.863,98.973,167.863,337.068,319.255,349.235,19.826,26.046,19.826 +3767,117.985,196.803,540.024,376.277,520.832,203.317,539.242,173.157,113.157,173.157,334.719,320.389,347.841,19.778,25.888,19.778 +3768,118.015,196.803,540.024,376.277,520.832,203.317,539.242,173.157,113.157,173.157,334.719,320.389,347.841,19.778,25.888,19.778 +3769,118.046,196.101,532.214,376.627,528.516,203.280,532.020,178.445,127.511,178.445,332.393,322.360,346.756,18.609,26.677,18.609 +3770,118.078,196.412,522.713,377.490,535.494,204.827,523.145,2.936,141.404,2.936,329.285,323.433,346.138,24.788,26.093,24.788 +3771,118.110,196.430,515.524,377.661,541.857,206.604,516.881,7.595,155.689,7.595,325.189,325.242,345.716,25.508,25.177,25.508 +3772,118.142,195.096,509.519,378.479,548.059,208.794,512.259,11.310,169.407,11.310,318.885,328.094,346.822,25.691,22.676,25.691 +3773,118.173,189.924,504.346,376.540,552.602,209.672,509.199,13.808,2.554,13.808,304.136,325.969,344.809,24.656,22.286,24.656 +3774,118.205,133.397,479.447,377.489,560.229,212.377,506.682,19.026,16.455,19.026,180.012,330.534,347.098,18.060,21.941,18.060 +3775,118.237,200.554,497.456,375.093,568.351,214.220,503.022,22.158,30.897,22.158,317.752,332.878,347.264,18.531,20.087,18.531 +3776,118.268,206.772,493.742,373.000,574.000,216.708,498.142,23.887,45.000,23.887,325.508,332.340,347.244,25.889,19.799,25.889 +3777,118.298,209.700,490.600,369.635,579.624,218.279,494.889,26.565,58.917,26.565,327.360,332.716,346.543,25.491,19.807,25.491 +3778,118.328,212.139,487.546,367.200,582.783,219.950,491.951,29.416,72.784,29.416,327.823,331.735,345.757,24.946,22.279,24.946 +3779,118.359,214.568,485.778,364.370,585.453,221.112,489.739,31.185,86.878,31.185,328.940,329.873,344.237,25.372,23.383,25.372 +3780,118.389,215.607,483.620,362.291,586.947,221.886,487.662,32.768,101.041,32.768,328.662,328.895,343.598,25.593,25.351,25.593 +3781,118.419,215.607,483.620,362.291,586.947,221.886,487.662,32.768,101.041,32.768,328.662,328.895,343.598,25.593,25.351,25.593 +3782,118.448,216.000,482.500,360.011,587.961,222.110,486.574,33.690,115.882,33.690,327.273,328.322,341.961,25.239,25.918,25.239 +3783,118.479,216.909,480.987,359.422,587.571,222.923,485.196,34.992,130.530,34.992,326.382,325.944,341.064,25.314,27.256,25.314 +3784,118.512,217.750,479.957,359.695,587.217,223.656,484.201,35.702,145.159,35.702,326.634,325.971,341.180,25.786,27.688,25.786 +3785,118.544,217.939,479.713,360.589,587.054,224.088,484.199,36.119,159.251,36.119,326.566,326.442,341.789,25.151,26.884,25.151 +3786,118.575,218.139,479.634,361.690,587.113,224.647,484.437,36.426,173.276,36.426,326.294,328.034,342.471,25.632,26.840,25.632 +3787,118.606,217.543,479.263,363.006,586.486,224.893,484.677,36.375,6.289,36.375,324.905,330.290,343.163,25.600,26.647,25.600 +3788,118.636,216.322,478.375,364.103,586.630,225.205,484.868,36.165,19.374,36.165,322.365,332.762,344.371,26.207,23.408,26.207 +3789,118.666,200.690,470.718,364.293,589.033,224.698,486.683,33.623,30.700,33.623,288.165,333.570,345.829,22.386,19.320,22.386 +3790,118.697,205.310,476.787,364.423,589.979,223.209,489.356,35.077,42.098,35.077,303.039,333.730,346.783,18.484,19.032,18.484 +3791,118.729,214.619,480.933,364.226,589.807,224.287,487.473,34.077,53.616,34.077,323.152,334.013,346.497,25.263,19.406,25.263 +3792,118.761,214.910,483.424,364.509,588.353,223.001,488.631,32.760,66.801,32.760,326.680,332.993,345.924,25.396,21.140,25.396 +3793,118.792,214.509,485.670,364.915,586.047,221.394,489.815,31.045,79.380,31.045,329.112,331.412,345.183,25.894,22.545,25.894 +3794,118.823,212.486,488.201,365.388,582.533,218.994,491.803,28.960,92.121,28.960,329.162,329.330,344.039,25.450,23.243,25.450 +3795,118.854,210.400,491.200,366.421,577.900,216.748,494.374,26.565,104.744,26.565,328.255,326.973,342.450,25.044,24.991,25.044 +3796,118.885,210.400,491.200,366.421,577.900,216.748,494.374,26.565,104.744,26.565,328.255,326.973,342.450,25.044,24.991,25.044 +3797,118.914,207.901,494.310,368.384,572.659,214.450,497.185,23.703,119.073,23.703,328.270,325.576,342.576,25.482,26.468,25.482 +3798,118.946,205.525,498.578,370.633,566.015,212.155,501.027,20.266,132.858,20.266,328.218,323.688,342.355,26.324,27.528,26.324 +3799,118.977,203.356,502.848,373.482,559.987,210.603,505.092,17.199,146.432,17.199,328.482,324.226,343.654,25.520,27.212,25.520 +3800,119.009,199.510,507.359,375.895,552.110,208.891,509.593,13.392,160.393,13.392,325.334,325.570,344.621,25.664,26.627,25.664 +3801,119.040,191.382,511.368,378.210,545.877,207.843,514.318,10.158,173.115,10.158,313.077,326.185,346.524,26.930,22.208,26.930 +3802,119.071,125.953,515.055,378.901,537.477,205.984,522.378,5.228,6.494,5.228,186.417,323.917,347.148,18.446,22.230,18.446 +3803,119.102,195.550,528.695,381.914,532.415,206.462,528.839,0.756,19.764,0.756,329.143,330.552,350.968,18.767,26.440,18.767 +3804,119.132,196.779,536.520,380.629,526.869,205.089,535.902,175.749,32.456,175.749,334.786,329.180,351.453,19.278,21.120,19.278 +3805,119.165,197.851,544.139,379.750,518.750,205.126,542.916,170.458,45.000,170.458,337.676,325.976,352.429,19.073,22.627,19.073 +3806,119.197,199.117,552.725,376.888,509.760,205.406,551.030,164.914,58.276,164.914,339.599,323.226,352.626,19.462,24.714,19.462 +3807,119.229,200.604,561.768,372.249,500.428,206.116,559.623,158.731,71.878,158.731,340.752,319.126,352.580,19.307,25.090,19.307 +3808,119.260,203.822,571.044,366.934,489.798,208.531,568.597,152.543,86.055,152.543,343.173,314.907,353.787,19.557,24.597,19.557 +3809,119.290,207.785,580.160,360.953,479.620,212.428,577.020,145.931,100.176,145.931,343.980,313.579,355.191,19.344,24.758,19.344 +3810,119.319,206.178,595.284,352.451,469.605,217.193,585.765,139.169,114.944,139.169,327.464,313.177,356.581,19.340,22.373,19.340 +3811,119.349,206.178,595.284,352.451,469.605,217.193,585.765,139.169,114.944,139.169,327.464,313.177,356.581,19.340,22.373,19.340 +3812,119.381,185.015,635.965,343.959,459.742,223.660,593.180,132.089,127.742,132.089,244.008,313.994,359.317,18.792,19.796,18.792 +3813,119.414,226.947,607.342,334.642,450.870,231.895,600.341,125.253,138.909,125.253,345.581,314.592,362.728,19.299,23.749,19.299 +3814,119.447,237.670,613.061,325.707,444.366,241.087,606.600,117.872,152.622,117.872,351.328,314.921,365.947,19.618,21.058,19.618 +3815,119.479,248.730,618.531,315.642,440.502,250.982,612.441,110.288,165.619,110.288,354.399,314.791,367.384,19.457,19.622,19.457 +3816,119.512,262.413,623.643,303.981,437.745,263.691,617.967,102.691,178.588,102.691,357.707,312.176,369.341,23.317,19.124,23.317 +3817,119.543,271.682,626.047,291.031,435.893,272.080,620.245,93.921,11.083,93.921,358.803,310.613,370.434,24.696,21.266,24.696 +3818,119.574,285.178,626.456,277.880,436.412,284.854,621.472,86.282,23.688,86.282,360.255,308.525,370.244,23.949,21.163,23.949 +3819,119.605,298.852,625.531,263.573,439.835,297.973,621.317,78.215,37.875,78.215,360.757,305.216,369.366,25.452,19.208,25.452 +3820,119.635,315.573,623.864,250.583,444.156,313.448,617.820,70.626,50.802,70.626,356.553,302.973,369.369,21.428,18.825,21.428 +3821,119.665,357.395,675.169,237.501,450.475,324.768,612.751,62.403,64.546,62.403,227.619,302.845,368.480,20.967,18.516,20.967 +3822,119.696,341.367,610.305,226.071,457.598,337.353,604.653,54.617,77.106,54.617,354.797,303.405,368.661,23.820,19.038,23.820 +3823,119.727,351.091,599.558,215.500,466.000,347.167,595.395,46.696,90.000,46.696,357.498,304.000,368.940,25.706,19.000,25.706 +3824,119.757,358.675,589.090,207.198,475.045,354.754,585.906,39.077,102.920,39.077,358.758,308.056,368.861,25.640,18.299,25.640 +3825,119.788,364.985,577.976,199.508,484.242,360.486,575.197,31.701,115.498,31.701,358.937,310.496,369.513,25.599,18.760,25.599 +3826,119.818,364.985,577.976,199.508,484.242,360.486,575.197,31.701,115.498,31.701,358.937,310.496,369.513,25.599,18.760,25.599 +3827,119.848,369.110,566.799,193.550,493.821,364.259,564.578,24.598,128.013,24.598,358.667,312.329,369.338,25.686,19.095,25.686 +3828,119.880,371.591,555.937,189.550,503.371,366.796,554.387,17.914,140.364,17.914,358.610,313.046,368.690,25.809,20.106,25.809 +3829,119.912,369.278,544.811,187.028,512.055,364.674,543.874,11.508,153.260,11.508,351.449,312.162,360.846,25.595,21.570,25.595 +3830,119.943,368.568,535.555,185.870,519.977,363.115,535.023,5.572,166.028,5.572,344.778,310.681,355.736,25.270,22.255,25.270 +3831,119.973,389.500,529.500,187.544,528.125,363.272,529.500,0.000,176.009,0.000,299.000,309.991,351.456,19.000,19.905,19.000 +3832,120.003,378.561,520.907,188.097,536.412,363.940,522.186,174.999,9.349,174.999,323.477,307.760,352.829,20.434,21.287,20.434 +3833,120.035,371.498,514.195,190.354,544.886,365.434,515.258,170.056,22.001,170.056,342.816,307.702,355.131,20.039,22.093,20.039 +3834,120.065,369.850,507.257,192.569,553.699,366.021,508.255,165.379,35.375,165.379,350.698,309.104,358.612,19.941,21.567,19.941 +3835,120.096,366.386,501.087,195.188,562.541,362.924,502.273,161.087,49.160,161.087,349.109,311.500,356.429,19.516,22.273,19.516 +3836,120.127,363.709,495.315,196.721,570.627,359.434,497.130,156.999,62.650,156.999,347.701,314.919,356.991,19.748,20.429,19.748 +3837,120.158,360.530,490.569,197.687,577.326,355.745,492.971,153.339,75.763,153.339,347.499,318.200,358.207,19.650,19.863,19.650 +3838,120.188,356.729,486.801,198.265,582.989,352.058,489.500,149.982,89.502,149.982,349.078,320.127,359.869,19.549,20.008,19.549 +3839,120.218,356.729,486.801,198.265,582.989,352.058,489.500,149.982,89.502,149.982,349.078,320.127,359.869,19.549,20.008,19.549 +3840,120.247,353.291,483.387,198.957,586.776,348.666,486.410,146.821,102.127,146.821,349.403,323.234,360.454,19.572,19.974,19.572 +3841,120.279,350.771,480.117,200.293,589.134,346.011,483.570,144.039,114.624,144.039,348.115,323.248,359.876,19.569,20.037,19.569 +3842,120.310,348.324,477.251,201.982,590.486,343.832,480.805,141.647,127.959,141.647,347.134,322.307,358.592,19.053,21.618,19.053 +3843,120.340,403.065,426.214,204.605,592.379,341.690,478.147,139.764,139.497,139.764,196.073,319.975,356.872,18.263,21.005,18.263 +3844,120.370,355.003,462.600,207.759,593.503,340.488,475.822,137.668,152.745,137.668,315.473,318.441,354.740,18.340,19.962,18.340 +3845,120.402,346.413,466.975,210.882,594.529,339.433,473.782,135.722,165.964,135.722,333.172,316.266,352.672,19.562,20.858,19.562 +3846,120.432,342.857,467.292,214.492,596.556,338.130,472.130,134.335,179.021,134.335,337.275,315.125,350.804,19.174,24.629,19.174 +3847,120.463,340.700,467.069,216.594,599.003,336.906,471.104,133.234,12.745,133.234,340.109,316.203,351.187,19.024,26.126,19.024 +3848,120.494,339.290,466.579,218.165,601.776,335.494,470.761,132.230,25.688,132.230,340.439,317.587,351.735,19.092,26.305,19.092 +3849,120.526,338.343,466.195,219.527,604.610,334.336,470.705,131.615,37.816,131.615,340.652,318.895,352.717,18.929,25.810,18.929 +3850,120.556,337.394,466.407,221.503,604.998,334.220,470.034,131.186,51.210,131.186,341.952,321.088,351.591,18.626,21.358,18.626 +3851,120.587,336.734,466.474,221.243,606.878,333.375,470.361,130.840,63.273,130.840,342.941,323.792,353.217,19.478,22.019,19.478 +3852,120.617,336.734,466.474,221.243,606.878,333.375,470.361,130.840,63.273,130.840,342.941,323.792,353.217,19.478,22.019,19.478 +3853,120.648,336.635,466.883,218.706,607.704,332.768,471.345,130.914,75.619,130.914,343.687,325.248,355.495,19.346,20.441,19.346 +3854,120.680,336.337,468.031,216.700,607.469,332.724,472.123,131.451,87.498,131.451,345.583,325.651,356.500,18.951,19.515,18.951 +3855,120.712,337.091,467.848,214.540,606.088,333.062,472.358,131.773,99.252,131.773,345.288,326.493,357.383,19.131,19.503,19.131 +3856,120.743,337.824,468.959,212.357,604.133,333.917,473.206,132.607,110.487,132.607,345.771,325.845,357.313,19.191,19.373,19.191 +3857,120.775,339.680,469.747,210.107,601.024,335.589,473.992,133.939,121.667,133.939,345.297,324.480,357.089,18.486,21.333,18.486 +3858,120.807,347.808,465.249,208.495,597.788,337.880,475.021,135.456,130.744,135.456,328.800,322.893,356.661,18.594,19.902,18.594 +3859,120.838,398.147,423.259,206.617,594.879,339.808,476.389,137.675,140.981,137.675,198.698,320.003,356.512,18.061,19.611,18.061 +3860,120.869,367.209,457.247,205.032,590.793,342.636,478.039,139.764,151.530,139.764,291.379,318.046,355.756,18.263,19.523,18.263 +3861,120.900,357.415,471.734,203.749,586.687,346.106,480.562,142.023,162.824,142.023,326.343,316.134,355.036,20.230,20.793,20.230 +3862,120.930,357.265,475.638,202.565,582.740,348.457,481.997,144.173,174.987,144.173,332.785,314.249,354.513,19.237,21.112,19.237 +3863,120.961,357.887,480.660,201.770,579.080,351.535,484.803,146.889,8.282,146.889,338.722,312.961,353.890,19.338,23.023,19.338 +3864,120.991,358.066,485.374,200.130,577.172,353.663,487.958,149.601,21.584,149.601,344.929,313.093,355.140,19.390,24.218,19.390 +3865,121.021,360.522,489.445,199.388,572.704,356.927,491.303,152.665,34.426,152.665,346.559,312.619,354.653,19.423,21.798,19.423 +3866,121.051,360.522,489.445,199.388,572.704,356.927,491.303,152.665,34.426,152.665,346.559,312.619,354.653,19.423,21.798,19.423 +3867,121.082,363.141,494.078,196.869,569.315,359.272,495.791,156.121,47.956,156.121,348.067,313.219,356.530,19.517,21.662,19.517 +3868,121.114,366.014,499.038,194.815,564.828,361.627,500.651,159.818,61.390,159.818,348.074,314.606,357.422,19.421,20.431,19.421 +3869,121.146,368.346,504.971,192.077,559.435,363.772,506.301,163.785,74.774,163.785,349.877,315.389,359.405,19.851,20.406,19.851 +3870,121.178,369.290,511.879,189.675,552.873,364.736,512.835,168.140,87.709,168.140,349.800,316.347,359.106,19.886,20.544,19.886 +3871,121.210,368.000,519.000,187.666,545.092,363.584,519.552,172.875,100.595,172.875,346.553,316.178,355.454,20.094,21.526,20.094 +3872,121.241,366.989,525.550,185.958,536.131,362.519,525.662,178.568,113.405,178.568,344.592,315.669,353.535,23.043,20.793,23.043 +3873,121.273,367.557,532.675,185.773,526.297,362.850,532.393,3.421,126.185,3.421,344.819,314.387,354.250,23.914,21.045,23.914 +3874,121.303,368.554,541.676,186.794,515.640,364.046,540.924,9.462,139.010,9.462,348.855,312.702,357.995,24.824,20.545,24.824 +3875,121.333,370.030,551.128,189.382,505.071,365.948,550.026,15.106,151.738,15.106,355.905,310.260,364.361,25.072,20.195,25.072 +3876,121.363,370.713,561.926,193.524,493.903,366.188,560.140,21.541,164.592,21.541,360.117,308.211,369.848,25.432,19.904,25.432 +3877,121.395,365.953,573.585,199.563,483.719,362.075,571.431,29.055,177.045,29.055,360.444,305.780,369.316,24.962,19.020,24.962 +3878,121.427,361.727,583.823,206.687,473.901,357.531,580.802,35.754,9.353,35.754,359.412,304.138,369.755,25.093,20.965,25.093 +3879,121.457,354.909,595.331,215.008,465.481,350.495,591.162,43.363,22.443,43.363,357.448,303.138,369.592,24.840,20.776,24.840 +3880,121.487,347.165,605.324,223.606,458.634,342.662,599.870,50.464,34.976,50.464,355.277,303.033,369.423,24.006,19.595,24.006 +3881,121.518,347.165,605.324,223.606,458.634,342.662,599.870,50.464,34.976,50.464,355.277,303.033,369.423,24.006,19.595,24.006 +3882,121.547,335.714,617.452,233.758,452.329,330.562,609.367,57.492,47.060,57.492,349.738,301.643,368.913,21.009,19.105,21.009 +3883,121.580,328.024,633.853,244.160,447.518,319.745,615.639,65.556,59.389,65.556,328.642,302.537,368.657,21.021,18.411,21.021 +3884,121.611,325.418,686.070,255.150,442.950,305.626,620.717,73.151,71.565,73.151,232.962,302.946,369.532,23.172,18.025,23.172 +3885,121.642,298.169,660.759,267.009,440.336,292.215,622.871,81.069,83.802,81.069,291.762,304.792,368.469,26.828,18.345,26.828 +3886,121.672,280.000,634.000,279.049,438.954,280.000,622.477,90.000,95.877,90.000,344.000,306.191,367.046,22.000,19.046,22.000 +3887,121.702,264.308,628.565,292.242,438.260,265.491,619.885,97.757,107.558,97.757,349.625,307.804,367.147,25.851,20.200,25.851 +3888,121.733,252.125,623.322,306.337,440.191,254.405,615.820,106.907,119.578,106.907,350.597,310.078,366.280,21.331,20.050,21.331 +3889,121.765,239.744,616.432,319.538,443.645,243.194,609.268,115.718,131.634,115.718,348.788,312.002,364.691,20.089,19.433,20.089 +3890,121.797,229.268,608.004,333.030,449.728,233.522,601.723,124.103,143.959,124.103,348.125,314.451,363.298,19.691,19.225,19.691 +3891,121.828,220.247,598.466,344.322,456.715,225.243,592.932,132.071,155.751,132.071,346.897,316.983,361.809,19.386,19.558,19.386 +3892,121.859,212.977,588.381,354.927,465.661,218.578,583.650,139.808,167.863,139.808,345.935,318.903,360.599,19.334,19.889,19.334 +3893,121.889,206.813,578.432,363.986,476.829,213.240,574.298,147.250,0.444,147.250,343.741,320.068,359.023,19.585,19.271,19.585 +3894,121.919,206.813,578.432,363.986,476.829,213.240,574.298,147.250,0.444,147.250,343.741,320.068,359.023,19.585,19.271,19.585 +3895,121.948,202.212,568.398,371.196,486.590,210.015,564.667,154.440,12.189,154.440,340.889,322.334,358.188,19.572,23.373,19.572 +3896,121.979,199.958,557.904,375.302,499.547,206.903,555.543,161.222,25.577,161.222,340.251,324.690,354.923,19.522,22.990,19.522 +3897,122.012,198.228,548.238,378.158,512.410,205.261,546.725,167.858,37.388,167.858,338.108,325.219,352.495,19.825,20.923,19.825 +3898,122.043,197.718,538.806,380.366,523.194,205.309,538.013,174.036,50.080,174.036,336.037,325.979,351.299,19.476,23.759,19.476 +3899,122.075,198.000,530.000,380.073,533.962,205.537,530.000,0.000,62.281,0.000,334.000,325.650,349.073,18.000,24.052,18.000 +3900,122.106,199.731,519.846,378.874,543.771,206.692,520.452,4.970,75.303,4.970,333.134,325.957,347.110,24.949,24.959,24.949 +3901,122.137,201.116,512.612,376.676,552.467,207.952,513.855,10.305,88.877,10.305,331.922,325.251,345.819,24.776,24.858,24.776 +3902,122.169,202.631,506.226,373.827,559.865,209.570,508.063,14.826,101.310,14.826,329.732,325.357,344.087,25.305,25.495,25.305 +3903,122.199,205.385,499.423,371.216,566.325,212.152,501.840,19.654,114.444,19.654,328.601,325.497,342.972,25.696,26.152,25.696 +3904,122.230,208.147,493.789,368.488,572.038,214.716,496.728,24.102,127.737,24.102,327.846,325.754,342.239,25.487,27.597,25.487 +3905,122.262,211.317,488.841,366.422,577.124,217.709,492.271,28.217,140.648,28.217,327.813,325.700,342.321,25.597,27.698,25.597 +3906,122.293,214.352,483.647,364.300,581.600,221.106,487.900,32.196,153.435,32.196,326.238,326.466,342.201,25.857,27.280,25.857 +3907,122.322,217.203,480.216,362.256,586.459,224.018,485.084,35.538,165.667,35.538,326.075,327.680,342.824,25.226,26.650,25.226 +3908,122.352,217.203,480.216,362.256,586.459,224.018,485.084,35.538,165.667,35.538,326.075,327.680,342.824,25.226,26.650,25.226 +3909,122.383,220.232,477.086,360.029,589.691,226.626,482.210,38.702,177.572,38.702,326.240,328.638,342.627,25.260,26.930,25.260 +3910,122.414,223.106,474.258,357.864,593.851,229.544,479.992,41.682,9.055,41.682,325.860,331.065,343.103,25.290,26.243,25.290 +3911,122.447,226.019,471.980,354.832,598.785,232.229,478.032,44.262,20.519,44.262,326.820,333.331,344.162,24.865,23.463,24.865 +3912,122.479,228.102,468.470,352.333,602.607,235.153,476.011,46.925,31.082,46.925,324.355,334.252,345.004,25.507,20.562,25.507 +3913,122.512,226.177,464.712,348.882,606.964,236.287,475.748,47.505,40.400,47.505,315.686,334.721,345.621,23.352,19.865,23.352 +3914,122.544,209.373,438.206,345.106,610.907,239.336,473.876,49.970,48.814,49.970,252.744,334.897,345.912,21.869,19.473,21.869 +3915,122.575,213.859,438.057,341.124,614.105,239.765,473.677,53.973,57.630,53.973,258.281,335.310,346.370,17.939,19.038,17.939 +3916,122.605,231.798,457.093,337.201,616.631,242.009,472.187,55.923,66.309,55.923,309.510,335.371,345.957,18.368,18.922,18.368 +3917,122.636,238.659,458.535,333.782,618.166,245.644,469.513,57.529,75.379,57.529,319.441,334.501,345.464,23.239,19.857,23.239 +3918,122.666,241.224,459.247,330.301,619.059,246.649,468.216,58.829,85.170,58.829,323.764,333.684,344.727,23.007,19.508,23.007 +3919,122.697,242.742,459.172,327.616,619.457,247.429,467.261,59.906,96.340,59.906,325.080,332.730,343.777,23.056,19.878,23.056 +3920,122.728,244.120,459.471,324.624,618.782,247.758,465.960,60.729,106.821,60.729,326.908,331.217,341.785,23.019,23.285,23.019 +3921,122.759,244.647,458.728,324.777,618.376,248.362,465.511,61.285,119.100,61.285,326.091,329.361,341.558,22.764,22.957,22.764 +3922,122.790,245.219,458.699,324.905,617.919,248.698,465.181,61.778,130.573,61.778,326.523,327.564,341.236,22.958,25.193,22.958 +3923,122.820,245.465,458.360,325.328,617.220,248.915,464.850,62.000,142.334,62.000,326.118,326.691,340.818,22.759,25.942,22.759 +3924,122.851,245.465,458.360,325.328,617.220,248.915,464.850,62.000,142.334,62.000,326.118,326.691,340.818,22.759,25.942,22.759 +3925,122.881,245.916,457.897,326.536,616.691,249.475,464.619,62.103,154.299,62.103,325.702,326.063,340.912,23.550,26.989,23.550 +3926,122.920,245.594,458.482,327.830,616.855,249.179,465.223,61.996,166.100,61.996,326.343,326.205,341.614,22.634,27.543,22.634 +3927,122.950,245.611,459.208,329.110,615.756,248.797,465.182,61.928,177.709,61.928,327.765,326.619,341.307,23.118,28.537,23.118 +3928,122.980,245.841,459.631,330.711,616.064,249.084,465.592,61.451,9.673,61.451,328.801,329.643,342.373,23.700,28.386,23.700 +3929,123.012,245.005,460.609,331.668,616.837,248.351,466.632,60.945,21.755,60.945,329.752,332.018,343.532,23.117,25.312,23.117 +3930,123.045,244.158,460.980,333.720,616.667,247.863,467.477,60.306,33.483,60.306,329.303,333.107,344.260,23.397,22.445,23.397 +3931,123.077,242.254,459.033,334.569,617.439,247.675,468.192,59.381,44.842,59.381,324.104,333.777,345.390,24.149,20.204,24.149 +3932,123.108,219.305,429.119,334.653,618.396,246.099,469.523,56.449,55.931,56.449,249.063,335.333,346.025,21.800,19.434,21.800 +3933,123.139,232.788,455.340,335.356,617.653,243.164,471.336,57.031,67.923,57.031,307.717,335.004,345.849,18.457,20.218,18.457 +3934,123.170,237.104,461.510,335.880,616.340,243.280,470.544,55.641,79.695,55.641,323.349,334.426,345.236,23.047,20.035,23.047 +3935,123.200,236.129,463.919,336.269,614.051,241.171,470.874,54.058,91.287,54.058,326.293,332.141,343.474,23.297,19.635,23.297 +3936,123.231,234.516,465.229,337.812,611.649,239.362,471.488,52.253,102.995,52.253,326.365,331.293,342.195,24.002,21.212,24.002 +3937,123.263,232.324,466.827,341.050,608.491,237.197,472.699,50.315,115.053,50.315,326.376,328.636,341.637,24.429,24.505,24.429 +3938,123.293,229.869,468.573,344.257,604.715,234.774,474.030,48.050,127.235,48.050,326.088,326.809,340.763,24.548,26.369,24.548 +3939,123.323,227.340,470.209,348.111,600.878,232.773,475.757,45.603,139.373,45.603,324.656,325.720,340.186,25.469,27.372,25.469 +3940,123.353,227.340,470.209,348.111,600.878,232.773,475.757,45.603,139.373,45.603,324.656,325.720,340.186,25.469,27.372,25.469 +3941,123.382,224.402,473.493,352.471,596.861,229.842,478.554,42.934,151.310,42.934,325.874,325.945,340.734,24.398,27.565,24.398 +3942,123.415,221.619,475.954,356.836,592.755,227.550,480.934,40.023,163.113,40.023,326.344,326.433,341.834,25.330,27.015,25.330 +3943,123.447,218.776,479.300,361.164,588.276,225.136,484.063,36.830,174.715,36.830,326.805,327.838,342.698,25.440,26.232,25.440 +3944,123.479,214.604,481.843,365.673,582.904,222.784,487.270,33.563,5.480,33.563,324.242,329.652,343.876,26.441,25.819,26.441 +3945,123.512,207.293,486.296,369.681,578.144,219.462,492.934,28.610,15.569,28.610,317.639,331.561,345.361,25.140,22.355,25.140 +3946,123.543,141.605,461.673,372.486,575.029,216.846,498.276,25.942,24.905,25.942,179.725,331.965,347.069,18.374,20.634,18.374 +3947,123.574,202.663,498.167,374.792,570.047,214.442,502.944,22.074,34.086,22.074,322.205,333.116,347.627,19.106,19.702,19.106 +3948,123.605,202.367,502.360,376.718,564.248,212.734,505.573,17.216,43.692,17.216,326.300,332.415,348.007,25.817,19.484,25.817 +3949,123.635,201.527,509.533,378.364,556.633,210.086,511.409,12.362,53.746,12.362,330.591,331.002,348.116,25.250,21.020,25.250 +3950,123.666,199.456,516.546,379.174,548.181,207.486,517.575,7.306,63.925,7.306,332.179,328.728,348.371,25.331,23.086,25.331 +3951,123.697,198.183,524.687,378.947,538.728,205.161,524.889,1.660,73.960,1.660,334.265,325.538,348.227,24.627,25.516,24.627 +3952,123.728,197.386,536.488,377.920,528.305,204.033,535.987,175.691,86.186,175.691,334.613,322.151,347.946,19.267,25.078,19.267 +3953,123.758,197.351,546.349,375.793,516.791,203.477,545.187,169.254,95.947,169.254,336.705,319.438,349.176,19.936,26.316,19.936 +3954,123.788,198.689,556.200,372.853,504.920,204.609,554.348,162.621,107.241,162.621,338.248,317.542,350.654,19.561,25.754,19.561 +3955,123.818,198.689,556.200,372.853,504.920,204.609,554.348,162.621,107.241,162.621,338.248,317.542,350.654,19.561,25.754,19.561 +3956,123.849,199.498,567.322,368.094,493.052,206.819,564.021,155.730,118.980,155.730,336.321,316.836,352.384,19.189,24.279,19.189 +3957,123.881,196.809,582.625,361.682,480.656,210.910,573.940,148.369,130.467,148.369,321.470,316.842,354.593,19.781,22.232,19.781 +3958,123.915,155.007,632.676,354.527,468.428,216.377,582.464,140.711,141.625,140.711,199.681,317.048,358.268,18.786,20.626,18.786 +3959,123.946,217.921,597.657,346.875,458.960,223.773,591.392,133.050,151.133,133.050,344.474,317.625,361.620,19.150,21.748,19.150 +3960,123.977,228.251,605.564,337.569,451.136,232.271,599.854,125.149,162.474,125.149,350.476,317.292,364.443,19.499,20.276,19.499 +3961,124.007,238.809,613.130,326.758,444.940,241.837,607.185,116.988,173.290,116.988,352.885,316.289,366.228,19.745,19.921,19.745 +3962,124.038,251.297,619.601,314.208,440.586,253.314,613.694,108.858,4.086,108.858,354.512,313.843,366.996,20.032,20.234,20.032 +3963,124.070,262.697,624.027,300.588,437.566,263.603,618.660,99.583,14.755,99.583,358.562,311.095,369.447,24.664,21.298,24.664 +3964,124.100,280.757,625.845,286.899,435.179,280.990,620.279,92.394,25.907,92.394,359.230,308.531,370.371,25.601,23.747,25.601 +3965,124.131,292.335,626.279,271.064,438.492,291.821,622.013,83.118,37.840,83.118,360.778,306.092,369.372,26.172,19.468,26.172 +3966,124.164,308.754,625.463,257.130,441.756,307.274,619.921,75.046,49.028,75.046,358.670,303.285,370.142,23.769,19.551,23.769 +3967,124.195,330.907,640.041,242.785,447.623,319.850,615.163,66.038,60.255,66.038,314.351,302.025,368.800,20.713,18.109,20.713 +3968,124.224,336.821,615.543,231.176,454.726,332.454,608.515,58.148,70.416,58.148,351.604,303.246,368.154,22.768,21.008,22.768 +3969,124.255,347.605,602.747,218.890,463.015,344.028,598.611,49.145,82.171,49.145,357.903,303.470,368.839,24.837,18.699,24.837 +3970,124.284,347.605,602.747,218.890,463.015,344.028,598.611,49.145,82.171,49.145,357.903,303.470,368.839,24.837,18.699,24.837 +3971,124.313,357.533,591.651,209.395,472.524,353.356,588.035,40.878,93.536,40.878,357.843,305.653,368.892,26.006,18.246,26.006 +3972,124.345,364.578,579.480,200.876,483.467,360.189,576.664,32.672,104.931,32.672,358.403,308.615,368.833,26.351,18.681,26.351 +3973,124.381,369.175,567.394,194.456,494.449,364.601,565.269,24.916,116.114,24.916,358.202,311.719,368.289,25.669,19.561,25.669 +3974,124.423,369.033,542.711,184.738,514.030,363.368,541.691,10.211,139.347,10.211,349.897,313.901,361.410,25.814,25.943,25.814 +3975,124.453,367.600,532.682,185.195,525.986,362.540,532.388,3.325,149.335,3.325,344.697,313.497,354.834,24.189,21.322,24.189 +3976,124.484,367.600,532.682,185.195,525.986,362.540,532.388,3.325,149.335,3.325,344.697,313.497,354.834,24.189,21.322,24.189 +3977,124.514,367.930,524.712,185.141,534.477,362.275,525.018,176.897,160.641,176.897,343.447,312.566,354.774,20.771,21.802,20.771 +3978,124.553,378.114,504.268,190.494,553.202,364.819,507.870,164.842,1.813,164.842,332.681,309.351,360.229,20.119,20.313,20.119 +3979,124.585,378.114,504.268,190.494,553.202,364.819,507.870,164.842,1.813,164.842,332.681,309.351,360.229,20.119,20.313,20.119 +3980,124.615,369.842,496.907,194.167,560.794,361.733,499.968,159.316,13.299,159.316,339.163,310.234,356.499,20.219,22.489,20.219 +3981,124.647,361.568,491.642,197.543,571.035,357.588,493.555,154.335,23.850,154.335,346.794,311.504,355.626,19.467,22.884,19.467 +3982,124.678,357.427,485.419,202.380,578.531,353.999,487.441,149.465,35.036,149.465,345.783,313.032,353.743,19.501,21.533,19.501 +3983,124.709,352.989,480.125,206.376,586.681,349.364,482.664,144.990,45.699,144.990,344.731,315.432,353.583,19.246,21.022,19.246 +3984,124.741,348.558,475.457,210.968,594.367,344.752,478.555,140.864,56.509,140.864,343.917,319.531,353.731,18.813,21.251,18.813 +3985,124.771,343.666,471.925,213.794,600.533,339.843,475.521,136.745,66.161,136.745,344.438,322.480,354.935,19.191,20.549,19.191 +3986,124.803,338.933,468.997,216.276,605.202,335.105,473.070,133.229,76.839,133.229,344.145,324.612,355.324,18.726,19.794,18.726 +3987,124.834,334.767,466.143,219.183,609.490,330.961,470.720,129.750,86.795,129.750,344.427,325.945,356.333,19.191,19.593,19.191 +3988,124.865,330.631,464.112,221.763,612.474,327.084,468.887,126.607,96.367,126.607,344.240,327.431,356.137,19.128,19.510,19.128 +3989,124.899,326.923,462.115,224.208,614.283,323.736,466.896,123.690,105.313,123.690,344.191,327.585,355.683,19.415,20.140,19.415 +3990,124.932,325.051,458.710,227.013,615.437,321.027,465.338,121.264,113.348,121.264,338.679,327.748,354.188,18.775,20.621,18.775 +3991,124.963,358.086,392.736,230.049,617.031,318.186,463.669,119.358,121.849,119.358,190.984,326.263,353.753,18.085,19.627,18.085 +3992,124.993,325.537,443.584,233.302,617.604,315.921,462.215,117.300,130.285,117.300,310.014,324.670,351.948,18.059,20.379,18.059 +3993,125.023,319.206,449.220,236.284,617.835,313.780,460.910,114.898,139.686,114.898,324.158,323.027,349.933,19.626,19.756,19.626 +3994,125.053,319.206,449.220,236.284,617.835,313.780,460.910,114.898,139.686,114.898,324.158,323.027,349.933,19.626,19.756,19.626 +3995,125.083,315.006,451.136,240.236,618.624,311.460,459.534,112.895,149.797,112.895,330.300,321.538,348.531,19.430,21.155,19.430 +3996,125.116,311.954,451.021,244.383,619.445,309.159,458.287,111.038,160.145,111.038,331.768,320.468,347.339,19.313,24.559,19.313 +3997,125.148,309.153,451.278,248.546,620.807,306.929,457.633,109.290,171.511,109.290,333.135,320.170,346.599,19.443,25.346,19.443 +3998,125.180,306.378,450.748,252.432,621.876,304.455,456.856,107.472,2.831,107.472,333.246,319.944,346.052,19.409,26.951,19.409 +3999,125.212,304.057,450.802,255.913,623.821,302.303,456.938,105.945,14.199,105.945,333.649,322.348,346.413,19.230,27.495,19.230 +4000,125.243,301.596,451.255,258.744,626.069,300.070,457.201,104.390,25.731,104.390,335.405,324.228,347.682,19.188,26.418,19.188 +4001,125.274,299.497,451.421,261.195,628.275,298.027,457.775,103.024,36.327,103.024,335.788,325.791,348.831,19.062,26.136,19.062 +4002,125.304,297.594,451.691,263.269,629.684,296.296,457.961,101.696,46.909,101.696,336.899,328.292,349.705,19.186,24.994,19.186 +4003,125.334,295.679,452.019,265.685,630.197,294.594,457.907,100.442,57.995,100.442,337.376,330.295,349.351,19.179,20.882,19.179 +4004,125.364,293.909,451.995,266.498,631.311,292.925,458.021,99.277,69.193,99.277,338.356,331.923,350.567,19.015,20.827,19.015 +4005,125.396,292.428,451.916,268.096,632.731,291.463,458.638,98.168,80.449,98.168,337.711,334.238,351.294,18.821,23.126,18.821 +4006,125.426,291.762,447.408,267.500,632.000,290.396,458.331,97.125,90.000,97.125,328.320,334.000,350.336,18.233,25.000,18.233 +4007,125.456,294.945,405.494,267.303,631.924,289.097,458.123,96.340,100.437,96.340,244.385,332.821,350.290,17.890,20.394,17.890 +4008,125.486,294.945,405.494,267.303,631.924,289.097,458.123,96.340,100.437,96.340,244.385,332.821,350.290,17.890,20.394,17.890 +4009,125.516,289.587,439.842,268.778,630.411,287.923,457.304,95.440,111.903,95.440,313.202,330.350,348.285,18.298,20.555,18.298 +4010,125.548,287.450,445.682,269.274,629.135,286.640,456.605,94.236,122.619,94.236,324.777,328.486,346.683,18.800,19.339,18.800 +4011,125.581,286.204,447.102,271.528,628.026,285.671,455.978,93.434,133.452,93.434,327.391,326.297,345.174,18.786,21.435,18.786 +4012,125.612,284.715,447.553,273.859,627.557,284.360,455.732,92.490,143.973,92.490,327.864,324.818,344.238,18.852,23.086,18.852 +4013,125.644,283.587,448.047,276.476,627.647,283.359,455.783,91.685,155.556,91.685,328.505,323.594,343.985,18.580,24.745,18.580 +4014,125.673,282.449,448.514,279.067,627.280,282.345,455.608,90.838,166.559,90.838,329.214,323.065,343.403,18.657,26.193,18.657 +4015,125.704,281.000,448.500,281.633,626.758,281.000,455.379,90.000,177.248,90.000,329.000,323.588,342.758,18.000,28.294,18.000 +4016,125.735,280.154,449.047,283.986,627.631,280.237,455.819,89.298,8.063,89.298,330.147,325.401,343.691,18.484,28.713,18.484 +4017,125.765,279.031,450.553,285.744,629.248,279.206,457.088,88.459,18.905,88.459,331.472,326.702,344.547,18.697,27.902,18.697 +4018,125.797,278.395,451.057,287.382,630.490,278.632,457.693,87.955,29.342,87.955,332.716,328.311,345.997,18.560,27.518,18.560 +4019,125.829,277.488,451.120,288.740,631.432,277.826,458.194,87.263,39.207,87.263,332.958,329.991,347.123,18.799,25.876,18.799 +4020,125.859,276.572,451.179,289.949,631.979,277.020,458.487,86.496,48.972,86.496,333.274,331.796,347.916,18.883,24.033,18.883 +4021,125.890,275.707,451.668,291.220,632.173,276.247,459.040,85.815,58.251,85.815,332.745,332.939,347.528,19.120,21.165,19.120 +4022,125.921,274.717,451.242,291.206,632.698,275.416,459.278,85.030,66.834,85.030,332.138,333.914,348.271,19.232,20.312,19.232 +4023,125.950,274.717,451.242,291.206,632.698,275.416,459.278,85.030,66.834,85.030,332.138,333.914,348.271,19.232,20.312,19.232 +4024,125.981,273.417,448.814,291.025,633.265,274.508,459.531,84.189,74.776,84.189,327.481,336.263,349.027,18.986,20.257,18.986 +4025,126.013,270.724,428.252,291.350,633.521,274.233,459.978,83.689,82.093,83.689,284.908,335.144,348.746,18.587,21.626,18.587 +4026,126.046,269.390,423.512,291.243,633.497,273.450,460.046,83.660,89.367,83.660,275.195,335.134,348.712,18.111,22.032,18.111 +4027,126.077,270.757,440.994,291.459,633.055,272.986,459.759,83.224,96.772,83.224,310.735,334.636,348.529,18.533,23.243,18.533 +4028,126.108,270.522,446.171,289.723,631.426,272.192,458.974,82.569,104.142,82.569,320.718,332.765,346.542,19.013,20.929,19.013 +4029,126.139,270.153,448.824,290.643,629.420,271.501,458.103,81.736,113.143,81.736,325.827,330.363,344.579,19.969,20.467,19.969 +4030,126.170,268.804,449.297,292.958,628.299,270.231,458.037,80.727,123.179,80.727,325.688,328.446,343.399,20.021,21.246,20.021 +4031,126.200,267.567,450.165,295.225,627.130,268.974,457.859,79.638,132.689,79.638,326.821,327.045,342.464,20.450,23.116,20.450 +4032,126.231,266.161,450.652,298.368,626.198,267.636,457.896,78.486,144.080,78.486,327.315,325.625,342.099,20.632,24.997,20.632 +4033,126.263,264.615,451.070,301.610,625.345,266.210,458.129,77.266,154.670,77.266,327.339,324.727,341.812,20.897,26.730,20.897 +4034,126.293,262.529,451.618,304.841,624.783,264.323,458.791,75.964,165.114,75.964,326.938,324.845,341.726,20.130,27.562,20.130 +4035,126.322,261.177,452.141,308.333,624.024,263.101,459.116,74.578,175.269,74.578,327.525,325.370,341.997,21.075,27.802,21.075 +4036,126.352,261.177,452.141,308.333,624.024,263.101,459.116,74.578,175.269,74.578,327.525,325.370,341.997,21.075,27.802,21.075 +4037,126.382,259.215,453.694,311.711,623.428,261.124,459.981,73.106,5.641,73.106,329.048,326.658,342.189,20.788,28.135,20.788 +4038,126.415,258.050,455.150,314.518,624.022,260.029,461.088,71.565,16.440,71.565,331.090,330.250,343.608,22.136,28.019,22.136 +4039,126.446,255.695,456.162,317.643,624.185,258.069,462.635,69.856,26.811,69.856,330.580,331.405,344.369,21.323,25.278,21.323 +4040,126.478,253.551,456.985,321.246,623.363,256.226,463.640,68.097,37.284,68.097,330.551,332.414,344.897,21.751,22.902,21.751 +4041,126.510,250.931,457.132,324.195,623.281,254.401,465.006,66.218,47.415,66.218,328.749,333.616,345.959,22.195,20.803,22.195 +4042,126.542,244.315,452.096,325.600,622.579,251.657,466.295,62.658,57.253,62.658,313.601,336.171,345.572,20.682,19.625,20.682 +4043,126.573,231.927,438.396,328.082,621.966,248.014,468.426,61.821,67.640,61.821,278.170,335.386,346.305,18.070,19.841,18.070 +4044,126.604,240.833,456.868,330.604,620.082,247.565,468.332,59.577,78.247,59.577,319.224,334.646,345.812,23.183,19.982,23.183 +4045,126.633,239.706,461.592,332.465,617.487,244.717,469.305,56.989,88.431,56.989,325.737,333.368,344.132,23.389,19.198,23.389 +4046,126.664,237.019,463.389,334.569,613.934,241.716,469.919,54.270,98.696,54.270,326.174,331.487,342.262,24.572,19.875,24.572 +4047,126.695,233.988,465.818,338.425,610.648,238.660,471.674,51.415,109.239,51.415,326.725,331.107,341.709,24.972,22.926,24.972 +4048,126.725,230.408,468.125,343.301,605.674,235.313,473.626,48.285,120.010,48.285,326.112,327.817,340.853,25.252,24.396,25.252 +4049,126.755,226.750,471.250,348.268,600.958,232.056,476.556,45.000,130.799,45.000,325.269,326.260,340.278,24.749,26.551,24.749 +4050,126.785,226.750,471.250,348.268,600.958,232.056,476.556,45.000,130.799,45.000,325.269,326.260,340.278,24.749,26.551,24.749 +4051,126.815,222.831,474.488,353.206,595.524,228.429,479.413,41.341,141.633,41.341,325.841,325.444,340.755,25.080,27.670,25.080 +4052,126.846,219.212,478.421,358.301,589.966,225.196,483.015,37.508,152.176,37.508,326.326,325.282,341.415,25.364,27.539,25.364 +4053,126.878,215.362,482.693,363.330,583.657,222.100,487.137,33.404,162.661,33.404,325.935,326.074,342.077,25.472,26.944,25.472 +4054,126.909,210.790,486.982,368.197,577.026,219.186,491.673,29.192,172.632,29.192,324.197,327.352,343.432,26.603,25.238,26.603 +4055,126.939,204.841,491.753,372.038,569.805,215.929,496.815,24.538,1.833,24.538,320.270,328.344,344.647,25.788,24.124,25.788 +4056,126.970,190.829,497.033,376.747,562.116,213.136,504.175,17.754,10.125,17.754,300.128,331.014,346.973,23.743,22.044,23.743 +4057,127.000,177.075,502.908,378.725,554.335,210.244,511.620,14.715,18.367,14.715,279.023,331.724,347.611,19.051,22.050,19.051 +4058,127.032,197.633,513.921,380.297,547.939,208.751,515.700,9.090,26.267,9.090,326.448,332.250,348.968,24.449,20.986,24.449 +4059,127.065,197.349,522.083,381.001,539.950,206.756,522.639,3.379,34.570,3.379,331.077,330.703,349.924,24.945,20.081,24.945 +4060,127.096,197.725,534.216,380.661,530.328,205.526,533.810,177.026,43.128,177.026,334.536,328.338,350.159,19.260,20.546,19.260 +4061,127.127,197.841,544.059,379.451,519.038,204.948,542.871,170.507,52.334,170.507,337.676,326.191,352.087,19.176,23.359,19.176 +4062,127.157,199.318,554.711,376.005,508.108,205.550,552.855,163.421,60.945,163.421,339.269,322.467,352.273,19.761,25.545,19.761 +4063,127.187,201.746,565.423,370.653,496.554,207.131,563.057,156.276,70.382,156.276,341.156,319.117,352.919,19.275,24.696,19.275 +4064,127.217,201.746,565.423,370.653,496.554,207.131,563.057,156.276,70.382,156.276,341.156,319.117,352.919,19.275,24.696,19.275 +4065,127.247,206.265,575.937,364.350,484.430,210.822,573.167,148.707,80.340,148.707,343.903,315.966,354.568,19.269,24.457,19.269 +4066,127.279,212.305,586.721,355.000,473.500,215.796,583.884,140.906,90.000,140.906,346.292,313.000,355.290,19.354,22.000,19.354 +4067,127.309,216.875,599.803,346.283,462.874,223.081,593.045,132.563,99.395,132.563,340.066,311.363,358.418,19.300,23.501,19.300 +4068,127.340,222.484,616.212,333.802,453.789,231.972,602.443,124.571,109.836,124.571,326.931,311.585,360.373,19.579,20.901,19.579 +4069,127.376,229.651,635.628,320.394,445.227,242.385,609.448,115.937,119.925,115.937,305.375,311.564,363.600,20.074,20.204,20.074 +4070,127.407,252.015,622.278,308.012,439.610,254.184,615.206,107.049,128.660,107.049,352.529,311.410,367.323,21.097,20.459,21.097 +4071,127.437,264.945,625.285,294.451,436.339,265.841,618.824,97.888,137.899,97.888,356.325,311.659,369.369,25.450,19.505,25.450 +4072,127.468,280.500,627.000,280.835,435.799,280.500,620.899,90.000,147.253,90.000,358.000,311.295,370.201,21.000,18.887,21.000 +4073,127.500,294.746,626.374,266.549,437.114,293.807,620.716,80.571,156.615,80.571,359.702,311.054,371.174,26.799,19.101,26.799 +4074,127.532,312.043,622.528,251.794,441.177,310.465,617.587,72.286,165.964,72.286,361.424,309.475,371.797,21.895,18.675,21.895 +4075,127.565,326.757,614.849,238.393,446.717,324.828,611.045,63.118,175.236,63.118,362.776,308.099,371.306,23.822,19.433,23.822 +4076,127.597,339.910,606.595,226.075,454.604,337.391,603.104,54.178,4.808,54.178,362.506,305.696,371.117,25.106,19.091,25.106 +4077,127.628,351.382,596.706,216.050,463.292,347.971,593.247,45.397,13.496,45.397,360.606,304.318,370.321,25.935,21.548,25.935 +4078,127.658,360.971,589.897,207.529,474.170,354.785,585.231,37.020,24.111,37.020,353.389,303.488,368.885,19.843,19.985,19.843 +4079,127.687,391.028,589.157,200.411,486.655,362.806,572.599,30.399,33.350,30.399,301.677,302.597,367.118,22.943,18.848,22.943 +4080,127.718,391.028,589.157,200.411,486.655,362.806,572.599,30.399,33.350,30.399,301.677,302.597,367.118,22.943,18.848,22.943 +4081,127.748,374.591,562.843,196.372,497.561,368.062,560.310,21.206,42.865,21.206,351.520,302.906,365.525,25.422,21.625,25.422 +4082,127.781,372.757,549.317,192.911,510.529,367.925,548.145,13.632,52.409,13.632,347.953,305.951,357.898,25.274,21.401,25.274 +4083,127.813,370.064,536.938,189.967,523.024,365.496,536.428,6.360,63.622,6.360,342.674,306.799,351.867,25.646,21.465,25.646 +4084,127.845,368.994,526.889,188.381,535.392,363.688,526.943,179.421,74.113,179.421,340.154,310.292,350.767,23.413,21.973,23.413 +4085,127.875,368.737,518.349,189.596,546.989,364.414,518.902,172.716,83.558,172.716,345.221,314.181,353.937,20.659,21.637,20.659 +4086,127.906,369.091,508.872,189.186,557.643,364.039,510.100,166.334,93.053,166.334,351.874,317.669,362.271,20.341,21.290,20.341 +4087,127.937,365.286,500.264,190.346,566.838,359.693,502.250,160.450,103.925,160.450,350.523,320.158,362.393,19.697,21.353,19.697 +4088,127.967,360.418,493.080,191.955,574.265,355.221,495.528,154.776,113.318,154.776,351.019,321.429,362.507,19.431,20.995,19.431 +4089,127.998,355.687,486.428,195.201,580.986,350.791,489.317,149.456,122.760,149.456,349.805,322.051,361.174,19.498,20.782,19.498 +4090,128.030,352.542,479.465,199.311,586.367,346.610,483.714,144.387,132.580,144.387,344.456,321.516,359.050,19.281,22.010,19.281 +4091,128.060,403.375,426.833,204.915,592.406,341.961,478.304,140.034,141.491,140.034,196.394,320.155,356.655,18.197,20.135,18.197 +4092,128.090,350.753,461.257,210.190,596.754,337.782,474.046,135.406,151.179,135.406,317.588,319.162,354.019,18.475,20.310,18.475 +4093,128.121,340.525,462.632,216.078,600.724,333.999,470.133,131.023,160.862,131.023,331.963,317.843,351.847,19.427,20.995,19.427 +4094,128.152,340.525,462.632,216.078,600.724,333.999,470.133,131.023,160.862,131.023,331.963,317.843,351.847,19.427,20.995,19.427 +4095,128.181,334.047,460.915,222.468,605.304,329.611,466.812,126.948,170.760,126.948,335.410,317.128,350.166,19.617,23.306,19.617 +4096,128.214,328.421,459.089,228.961,609.356,325.200,463.994,123.289,1.212,123.289,336.929,316.289,348.665,19.235,25.619,19.235 +4097,128.246,323.485,456.924,234.523,613.004,320.621,461.922,119.811,10.784,119.811,336.265,318.278,347.786,19.200,27.131,19.200 +4098,128.277,318.900,455.700,239.786,617.746,316.229,461.041,116.565,20.772,116.565,336.752,320.349,348.695,19.230,26.567,19.230 +4099,128.307,314.336,454.348,245.031,621.446,311.860,460.075,113.385,29.745,113.385,336.804,322.242,349.282,19.250,26.543,19.250 +4100,128.338,309.694,453.597,249.682,624.275,307.589,459.307,110.235,38.956,110.235,337.457,324.073,349.629,19.266,25.745,19.266 +4101,128.369,305.470,453.054,255.447,626.102,303.787,458.447,107.329,48.318,107.329,337.590,326.780,348.888,19.254,21.628,19.254 +4102,128.399,301.726,452.773,259.710,628.188,300.308,458.189,104.676,57.095,104.676,338.281,329.013,349.477,19.394,21.039,19.394 +4103,128.431,297.724,452.310,262.735,630.162,296.466,458.286,101.889,65.308,101.889,338.063,330.437,350.276,19.159,20.897,19.159 +4104,128.462,294.143,452.279,265.923,632.115,293.073,458.745,99.400,73.496,99.400,337.845,333.129,350.953,19.052,20.667,19.052 +4105,128.492,291.015,450.877,269.030,632.798,290.043,458.653,97.125,81.384,97.125,335.142,333.676,350.815,18.853,22.051,18.853 +4106,128.523,288.753,445.260,272.026,632.536,287.618,458.277,94.984,87.852,94.984,323.777,333.740,349.910,18.169,22.372,18.169 +4107,128.553,288.753,445.260,272.026,632.536,287.618,458.277,94.984,87.852,94.984,323.777,333.740,349.910,18.169,22.372,18.169 +4108,128.582,289.708,374.780,272.469,633.028,284.856,458.492,93.318,93.366,93.318,182.216,333.306,349.920,18.028,22.314,18.028 +4109,128.613,283.064,430.544,275.969,632.820,282.465,458.399,91.232,99.926,91.232,293.319,333.433,349.041,18.017,20.612,18.017 +4110,128.644,279.800,442.411,278.644,632.043,280.045,458.450,89.125,106.736,89.125,315.024,332.462,347.104,18.303,20.224,18.303 +4111,128.674,276.825,445.766,282.006,630.229,277.454,457.401,86.906,114.349,86.906,322.340,329.972,345.644,18.837,20.894,18.837 +4112,128.705,273.822,448.136,285.671,628.610,274.666,456.988,84.560,122.829,84.560,326.001,328.122,343.785,19.341,20.384,19.341 +4113,128.738,270.805,449.837,291.073,627.619,271.833,457.286,82.147,131.760,82.147,327.691,326.694,342.728,19.949,22.351,19.949 +4114,128.768,267.162,450.738,296.152,626.693,268.459,457.818,79.618,141.806,79.618,327.804,325.479,342.201,19.440,24.439,19.440 +4115,128.799,264.067,451.292,301.440,625.306,265.688,458.314,77.005,151.390,77.005,327.096,324.662,341.509,20.537,26.496,20.537 +4116,128.831,260.492,452.028,307.175,624.346,262.510,459.277,74.445,160.649,74.445,326.952,324.600,342.001,20.618,26.974,20.618 +4117,128.862,257.672,453.433,312.606,622.993,259.983,460.437,71.739,170.162,71.739,326.966,325.034,341.717,22.190,27.395,22.190 +4118,128.893,254.041,455.565,318.524,621.078,256.483,461.873,68.839,179.331,68.839,328.204,325.141,341.732,21.569,27.831,21.569 +4119,128.924,250.641,457.499,323.437,619.559,253.304,463.465,65.946,8.984,65.946,329.186,329.082,342.251,22.367,27.938,22.367 +4120,128.953,247.328,459.845,328.676,618.450,250.337,465.698,62.794,18.531,62.794,330.178,331.101,343.339,22.777,26.135,22.777 +4121,128.984,247.328,459.845,328.676,618.450,250.337,465.698,62.794,18.531,62.794,330.178,331.101,343.339,22.777,26.135,22.777 +4122,129.014,243.488,460.801,334.024,616.335,247.448,467.528,59.514,28.014,59.514,328.704,332.467,344.315,24.157,24.376,24.157 +4123,129.046,239.073,462.277,339.528,613.621,244.249,469.964,56.046,37.235,56.046,326.221,333.624,344.755,24.475,21.178,24.475 +4124,129.078,227.426,458.383,343.386,611.572,239.658,473.259,50.572,46.117,50.572,306.910,335.381,345.429,22.212,19.512,22.212 +4125,129.110,219.344,460.042,347.602,608.814,234.834,477.551,48.504,55.305,48.504,299.311,334.822,346.065,18.264,19.669,18.264 +4126,129.140,225.163,470.714,351.690,604.211,233.223,478.628,44.474,64.960,44.474,322.440,334.683,345.032,24.819,20.554,24.819 +4127,129.171,221.660,475.174,355.478,599.145,229.165,481.524,40.236,74.456,40.236,325.144,333.486,344.804,25.955,20.353,25.955 +4128,129.203,218.044,480.849,359.873,592.620,224.671,485.592,35.589,83.911,35.589,328.172,331.599,344.470,25.418,22.260,25.418 +4129,129.233,214.196,486.302,363.900,585.158,220.529,490.077,30.805,93.122,30.805,328.927,328.820,343.674,25.599,24.255,25.599 +4130,129.271,210.009,492.195,366.900,576.594,216.130,495.136,25.659,103.191,25.659,328.767,326.785,342.349,25.495,24.538,25.495 +4131,129.314,205.478,499.310,370.666,567.402,212.140,501.733,19.983,112.620,19.983,328.671,324.385,342.848,25.716,26.000,25.716 +4132,129.346,202.006,507.011,373.707,557.565,208.766,508.731,14.281,122.781,14.281,329.828,323.675,343.779,25.003,27.040,25.003 +4133,129.380,198.821,514.799,376.121,546.035,206.309,515.892,8.301,132.709,8.301,329.638,321.731,344.771,25.354,26.905,25.354 +4134,129.417,195.543,524.254,377.527,534.415,204.405,524.558,1.960,142.291,1.960,328.979,321.874,346.714,24.822,26.037,24.822 +4135,129.449,190.569,537.779,377.538,521.643,204.027,536.586,174.936,151.668,174.936,321.285,322.591,348.306,20.035,24.780,20.035 +4136,129.479,174.476,551.727,376.753,509.992,204.516,545.309,167.939,159.298,167.939,290.193,323.257,351.629,18.739,20.357,18.739 +4137,129.512,188.328,562.078,373.599,497.224,206.553,555.886,161.237,167.264,161.237,315.579,324.539,354.075,19.059,21.826,19.059 +4138,129.544,201.449,569.864,370.338,486.371,210.125,565.596,153.806,174.333,153.806,338.124,322.986,357.462,19.372,21.026,19.372 +4139,129.575,207.599,580.435,364.395,476.362,214.315,575.880,145.848,2.545,145.848,343.905,321.749,360.135,19.329,20.002,19.329 +4140,129.606,215.356,590.251,355.588,466.593,220.033,585.966,137.506,11.124,137.506,348.491,320.608,361.178,19.376,20.771,19.376 +4141,129.636,223.842,600.656,344.894,457.301,227.733,595.856,129.026,19.470,129.026,350.464,318.957,362.822,19.683,21.590,19.683 +4142,129.666,234.426,609.867,332.757,449.955,237.365,604.881,120.514,28.136,120.514,352.231,315.535,363.807,19.761,21.664,19.761 +4143,129.698,246.916,617.268,319.238,443.137,248.948,612.198,111.841,35.789,111.841,355.229,312.378,366.153,19.868,23.637,19.868 +4144,129.730,262.460,623.513,304.573,439.450,263.573,618.761,103.181,44.301,103.181,358.109,308.327,367.871,24.280,24.005,24.280 +4145,129.760,273.041,626.632,289.366,438.149,273.308,621.503,92.985,54.090,92.985,357.609,305.488,367.883,26.277,21.757,26.277 +4146,129.791,292.611,629.245,273.637,439.166,292.034,622.188,85.323,62.301,85.323,353.664,304.178,367.826,25.569,19.966,25.569 +4147,129.822,312.401,660.891,257.119,442.289,301.694,621.560,74.772,71.847,74.772,287.847,302.952,369.371,25.436,17.992,25.436 +4148,129.852,312.401,660.891,257.119,442.289,301.694,621.560,74.772,71.847,74.772,287.847,302.952,369.371,25.436,17.992,25.436 +4149,129.882,322.465,622.579,243.016,447.588,319.413,615.409,66.940,79.695,66.940,353.085,304.016,368.671,21.909,20.393,21.909 +4150,129.915,336.029,612.482,229.211,454.504,332.879,607.499,57.700,89.246,57.700,357.641,303.197,369.432,23.609,18.748,23.609 +4151,129.947,347.613,601.712,217.382,463.215,344.154,597.762,48.797,97.651,48.797,358.977,305.495,369.478,24.725,19.452,24.725 +4152,129.976,357.911,590.228,207.932,473.481,353.850,586.812,40.071,105.697,40.071,358.624,308.109,369.237,26.173,18.660,26.173 +4153,130.007,365.035,577.867,199.400,484.846,360.622,575.160,31.524,114.004,31.524,358.944,310.489,369.299,25.962,18.492,25.962 +4154,130.039,369.680,564.790,193.234,496.332,365.194,562.854,23.341,122.293,23.341,358.714,312.609,368.486,25.665,19.443,25.665 +4155,130.071,370.857,552.280,188.803,508.531,366.346,551.019,15.616,130.324,15.616,355.487,313.691,364.854,25.274,20.447,25.274 +4156,130.101,368.560,539.580,185.590,519.181,363.542,538.863,8.130,139.105,8.130,347.755,314.115,357.894,25.597,21.807,25.597 +4157,130.131,367.168,530.683,184.260,529.626,361.742,530.586,1.032,147.319,1.032,344.088,314.238,354.942,20.834,22.615,20.834 +4158,130.163,368.922,520.718,184.750,539.396,362.242,521.384,174.307,154.936,174.307,343.382,313.965,356.808,20.776,22.569,20.776 +4159,130.194,373.305,510.580,187.078,547.795,364.022,512.543,168.056,161.184,168.056,341.839,314.608,360.817,20.489,21.245,20.489 +4160,130.223,400.602,491.419,189.803,557.961,361.638,503.643,162.582,168.299,162.582,278.760,312.250,360.432,19.120,20.181,19.120 +4161,130.255,373.847,490.584,193.453,565.775,358.785,497.165,156.396,176.269,156.396,325.068,311.838,357.943,20.906,19.958,20.906 +4162,130.285,373.847,490.584,193.453,565.775,358.785,497.165,156.396,176.269,156.396,325.068,311.838,357.943,20.906,19.958,20.906 +4163,130.314,363.031,485.705,198.281,573.716,355.077,490.066,151.266,4.885,151.266,337.262,311.429,355.405,19.860,20.864,19.860 +4164,130.346,355.279,480.910,203.292,581.864,350.683,483.987,146.189,13.570,146.189,342.793,312.374,353.856,19.400,23.531,19.400 +4165,130.377,349.774,475.715,208.517,590.461,345.673,479.000,141.306,23.279,141.306,342.954,313.827,353.462,19.353,24.791,19.353 +4166,130.408,344.571,471.168,213.347,597.823,340.419,475.079,136.717,32.939,136.717,341.909,315.973,353.318,19.124,26.064,19.124 +4167,130.438,339.094,467.086,218.355,604.253,335.032,471.538,132.376,42.436,132.376,341.310,318.090,353.363,19.196,25.283,19.196 +4168,130.470,333.541,463.952,225.010,608.389,330.451,467.862,128.317,51.557,128.317,341.296,321.099,351.263,18.968,21.091,18.968 +4169,130.500,328.285,461.612,229.456,613.682,325.288,465.984,124.418,60.684,124.418,341.415,324.118,352.016,19.126,21.148,19.126 +4170,130.533,323.345,459.635,234.047,618.427,320.469,464.499,120.588,69.677,120.588,341.670,328.073,352.971,19.375,21.325,19.375 +4171,130.565,318.821,457.382,237.135,621.673,315.829,463.214,117.160,78.690,117.160,340.707,328.887,353.817,19.125,20.004,19.125 +4172,130.596,313.902,456.850,240.881,624.026,311.588,462.078,113.875,87.600,113.875,341.981,330.339,353.416,19.068,19.013,19.068 +4173,130.627,310.285,453.722,244.403,625.929,307.532,461.023,110.659,96.804,110.659,337.541,331.941,353.147,19.021,20.305,19.021 +4174,130.656,310.058,440.567,248.089,626.291,304.021,459.613,107.588,104.931,107.588,311.614,330.452,351.573,18.497,20.420,18.497 +4175,130.687,310.058,440.567,248.089,626.291,304.021,459.613,107.588,104.931,107.588,311.614,330.452,351.573,18.497,20.420,18.497 +4176,130.718,306.870,432.681,252.780,627.128,299.899,458.472,105.124,114.590,105.124,296.784,328.969,350.217,18.003,20.359,18.003 +4177,130.749,299.486,443.230,256.637,626.921,296.535,457.320,101.828,123.503,101.828,319.565,327.563,348.356,19.053,19.531,19.053 +4178,130.780,294.701,446.351,261.386,626.819,293.086,456.472,99.064,132.758,99.064,325.929,326.474,346.428,19.109,20.377,19.109 +4179,130.813,290.475,447.666,266.747,627.086,289.543,455.949,96.419,141.825,96.419,328.552,324.693,345.224,18.757,21.854,18.757 +4180,130.844,286.651,448.111,272.561,627.410,286.145,455.629,93.851,150.945,93.851,329.543,323.632,344.612,18.641,24.185,18.641 +4181,130.875,283.144,448.537,277.867,627.511,282.984,455.724,91.273,160.079,91.273,329.341,323.371,343.718,18.795,25.454,18.795 +4182,130.906,279.129,448.931,283.457,627.867,279.323,456.379,88.506,169.071,88.506,328.175,323.039,343.075,18.898,27.201,18.898 +4183,130.936,275.971,448.901,288.631,626.878,276.443,455.897,86.143,177.776,86.143,328.804,323.494,342.828,18.968,28.095,18.968 +4184,130.966,272.860,450.238,294.342,627.156,273.608,456.974,83.660,6.633,83.660,329.307,325.043,342.862,19.546,28.506,19.546 +4185,130.996,269.617,451.879,299.172,627.692,270.618,458.182,80.969,15.366,80.969,331.017,327.323,343.782,20.131,28.066,20.131 +4186,131.028,265.847,453.052,303.794,627.795,267.155,459.344,78.250,24.201,78.250,331.912,329.293,344.765,19.698,26.830,19.698 +4187,131.058,262.628,454.110,308.739,627.414,264.296,460.597,75.579,32.276,75.579,331.861,331.165,345.258,20.255,25.721,20.255 +4188,131.089,259.746,455.349,313.480,626.815,261.765,461.900,72.868,39.946,72.868,331.953,332.380,345.663,22.093,23.689,22.093 +4189,131.119,259.746,455.349,313.480,626.815,261.765,461.900,72.868,39.946,72.868,331.953,332.380,345.663,22.093,23.689,22.093 +4190,131.149,256.377,456.407,318.374,625.617,258.843,463.208,70.070,47.148,70.070,331.481,333.997,345.949,22.591,20.960,22.591 +4191,131.181,251.765,455.727,322.220,624.467,255.504,464.649,67.267,53.484,67.267,327.019,334.638,346.367,22.099,20.154,22.099 +4192,131.213,242.948,447.784,324.776,623.136,252.343,466.032,62.758,58.791,62.758,304.621,336.482,345.669,21.215,19.391,21.215 +4193,131.244,221.038,419.570,328.789,621.619,247.762,468.563,61.390,64.198,61.390,234.717,335.500,346.333,17.877,19.431,17.877 +4194,131.275,235.334,455.262,333.269,618.946,244.605,470.378,58.478,70.079,58.478,310.537,335.335,346.003,18.504,20.141,18.504 +4195,131.305,236.484,461.477,336.941,616.265,243.144,471.023,55.098,75.964,55.098,322.291,334.699,345.571,23.746,19.645,23.746 +4196,131.336,233.049,465.270,340.756,612.095,239.160,472.930,51.417,82.694,51.417,324.697,333.552,344.294,24.199,19.838,24.199 +4197,131.366,229.725,469.114,345.071,607.500,235.356,475.236,47.394,90.311,47.394,326.607,331.049,343.243,25.247,19.907,25.247 +4198,131.400,225.440,473.654,349.849,601.751,230.764,478.637,43.108,97.740,43.108,327.562,330.216,342.147,25.039,21.800,25.039 +4199,131.433,220.612,477.717,355.651,595.461,226.540,482.445,38.573,105.593,38.573,327.648,328.562,342.813,25.422,25.155,25.422 +4200,131.464,216.115,482.577,359.586,588.466,222.080,486.553,33.690,113.199,33.690,327.550,328.397,341.887,25.239,25.080,25.239 +4201,131.495,211.506,488.322,364.428,580.176,217.874,491.795,28.610,121.380,28.610,327.455,326.004,341.962,25.619,26.199,25.619 +4202,131.526,207.187,495.368,369.168,570.797,213.794,498.150,22.834,129.644,22.834,328.442,324.201,342.779,26.242,26.885,26.242 +4203,131.556,203.593,502.701,373.051,560.825,210.621,504.882,17.241,137.922,17.241,328.707,323.485,343.425,25.820,26.954,25.820 +4204,131.586,203.593,502.701,373.051,560.825,210.621,504.882,17.241,137.922,17.241,328.707,323.485,343.425,25.820,26.954,25.820 +4205,131.617,199.615,510.923,376.075,550.577,207.784,512.557,11.310,146.004,11.310,328.298,323.396,344.959,24.711,26.183,24.711 +4206,131.648,195.062,519.303,377.847,538.727,205.700,520.248,5.075,154.467,5.075,324.853,323.867,346.213,25.190,25.487,25.190 +4207,131.679,186.508,532.823,379.065,526.769,204.956,532.358,178.556,162.290,178.556,311.481,324.856,348.389,19.414,22.334,19.414 +4208,131.710,124.101,554.038,379.109,514.130,205.030,540.914,170.789,170.151,170.789,188.270,325.376,352.244,18.728,19.986,18.728 +4209,131.741,196.126,554.960,376.570,502.730,206.331,552.025,163.957,177.668,163.957,333.226,325.463,354.464,19.526,22.004,19.526 +4210,131.772,200.899,565.502,372.691,492.090,208.694,562.067,156.218,6.809,156.218,339.544,324.353,356.580,19.263,22.156,19.263 +4211,131.804,206.399,576.712,366.544,480.757,212.648,572.865,148.377,14.281,148.377,344.003,323.555,358.680,19.375,21.461,19.375 +4212,131.834,213.184,587.428,358.112,470.563,217.939,583.448,140.072,22.479,140.072,347.484,321.685,359.887,19.413,21.539,19.413 +4213,131.865,221.299,597.551,348.292,460.507,225.200,593.145,131.517,30.651,131.517,350.040,318.626,361.810,19.566,23.196,19.566 +4214,131.897,231.165,607.404,336.088,451.997,234.324,602.532,122.953,38.830,122.953,351.729,315.006,363.341,19.506,24.244,19.506 +4215,131.927,243.116,614.946,322.760,445.609,245.100,610.509,114.085,47.255,114.085,354.752,310.764,364.473,20.051,25.036,20.051 +4216,131.957,256.018,621.505,308.567,440.757,257.231,616.827,104.541,56.976,104.541,356.975,307.583,366.639,22.696,23.602,22.696 +4217,131.987,268.880,626.862,292.648,438.702,269.440,620.862,95.332,65.283,95.332,355.004,305.360,367.057,26.445,21.325,26.445 +4218,132.018,268.880,626.862,292.648,438.702,269.440,620.862,95.332,65.283,95.332,355.004,305.360,367.057,26.445,21.325,26.445 +4219,132.047,288.512,636.334,276.726,438.792,287.998,622.373,87.892,74.055,87.892,339.801,303.842,367.742,25.351,19.093,25.351 +4220,132.080,303.053,644.855,261.657,441.285,298.187,621.698,78.132,82.614,78.132,320.812,304.159,368.137,25.494,18.530,25.494 +4221,132.111,316.758,624.131,247.000,445.000,314.300,617.348,70.084,90.000,70.084,355.501,304.000,369.931,21.475,18.000,21.475 +4222,132.141,331.029,615.758,233.284,450.703,327.925,610.099,61.260,98.973,61.260,357.626,304.803,370.535,23.985,20.951,23.985 +4223,132.172,343.359,606.342,222.218,459.005,339.863,601.776,52.552,107.335,52.552,358.258,306.745,369.760,25.137,18.341,25.137 +4224,132.203,353.349,595.565,211.746,468.121,349.501,591.854,43.963,116.175,43.963,359.407,309.042,370.099,25.199,18.055,25.199 +4225,132.233,361.581,583.689,202.835,478.771,357.406,580.705,35.558,124.712,35.558,359.785,310.979,370.050,25.717,18.360,25.717 +4226,132.266,367.082,571.147,195.804,489.352,362.685,568.861,27.468,132.975,27.468,359.571,312.114,369.484,25.828,19.230,25.828 +4227,132.298,371.161,559.090,190.831,500.912,366.859,557.545,19.755,141.248,19.755,360.477,312.819,369.620,25.568,19.784,25.568 +4228,132.329,369.888,546.541,187.677,512.191,365.207,545.521,12.293,149.470,12.293,351.530,312.786,361.112,25.238,20.452,25.238 +4229,132.359,367.500,535.535,185.344,521.345,362.816,535.107,5.211,158.385,5.211,346.571,312.338,355.977,24.649,22.540,24.649 +4230,132.389,368.464,527.152,185.511,531.543,362.363,527.315,178.470,166.037,178.470,341.599,311.661,353.805,20.797,21.255,20.797 +4231,132.419,368.464,527.152,185.511,531.543,362.363,527.315,178.470,166.037,178.470,341.599,311.661,353.805,20.797,21.255,20.797 +4232,132.448,440.295,506.961,186.849,541.088,363.413,517.212,172.405,173.884,172.405,201.219,310.189,356.343,20.353,21.307,20.353 +4233,132.480,379.647,505.588,189.571,551.255,364.945,509.264,165.964,1.809,165.964,330.334,309.383,360.644,19.888,20.211,19.888 +4234,132.512,369.994,498.257,193.229,560.210,361.829,501.200,160.180,10.061,160.180,339.884,310.204,357.242,20.338,21.582,20.338 +4235,132.543,363.338,491.786,197.073,569.315,358.298,494.150,154.875,18.778,154.875,344.639,310.882,355.771,19.569,22.325,19.569 +4236,132.574,357.931,485.802,200.972,578.566,353.755,488.244,149.680,26.828,149.680,345.292,312.626,354.966,20.066,24.976,20.066 +4237,132.605,353.034,480.195,205.031,586.724,348.948,483.051,145.045,34.354,145.045,344.736,314.310,354.706,19.265,25.592,19.265 +4238,132.634,348.706,475.036,211.300,591.956,345.301,477.840,140.528,42.614,140.528,343.146,316.362,351.968,19.117,21.784,19.117 +4239,132.665,343.717,470.681,215.719,598.633,340.181,474.060,136.302,49.932,136.302,342.312,318.651,352.094,19.424,21.228,19.424 +4240,132.696,338.628,467.747,219.506,604.720,335.252,471.446,132.390,57.443,132.390,342.915,321.279,352.930,18.911,21.097,18.911 +4241,132.726,334.104,464.578,223.896,610.100,330.540,469.019,128.746,64.601,128.746,342.167,324.865,353.556,18.776,21.225,18.776 +4242,132.756,329.153,462.842,227.041,614.325,325.936,467.396,125.238,71.293,125.238,342.979,326.979,354.131,19.130,20.868,19.130 +4243,132.786,329.153,462.842,227.041,614.325,325.936,467.396,125.238,71.293,125.238,342.979,326.979,354.131,19.130,20.868,19.130 +4244,132.818,324.920,460.890,230.436,617.314,321.938,465.670,121.960,78.744,121.960,342.916,327.513,354.183,19.172,19.958,19.172 +4245,132.850,320.885,459.054,233.561,620.337,317.897,464.456,118.951,85.471,118.951,342.101,328.427,354.449,19.400,19.641,19.400 +4246,132.882,317.057,457.794,236.843,621.995,314.475,463.024,116.274,91.693,116.274,342.159,328.448,353.825,18.740,19.292,18.740 +4247,132.914,313.606,456.727,239.762,623.601,311.294,461.982,113.742,97.563,113.742,341.999,329.946,353.482,19.219,19.974,19.219 +4248,132.946,311.796,453.739,242.487,624.278,308.967,460.924,111.490,102.355,111.490,337.260,330.711,352.705,18.683,19.993,18.683 +4249,132.976,312.182,444.499,244.933,625.130,306.621,460.153,109.556,106.678,109.556,318.994,329.971,352.218,18.679,20.555,18.679 +4250,133.006,326.632,390.529,247.675,625.958,303.977,459.525,108.178,111.318,108.178,206.142,329.256,351.383,18.038,19.813,18.038 +4251,133.037,309.544,433.046,250.063,626.273,301.916,458.897,106.440,115.844,106.440,296.508,328.788,350.415,17.956,20.095,17.956 +4252,133.068,304.288,441.498,252.983,626.398,299.920,458.075,104.760,121.185,104.760,315.167,327.904,349.452,18.367,20.600,18.367 +4253,133.099,300.494,444.776,255.287,626.338,297.665,457.507,102.529,127.273,102.529,321.925,326.999,348.007,19.524,20.035,19.524 +4254,133.130,297.206,446.920,258.193,626.150,295.357,456.625,100.784,133.949,100.784,327.212,325.422,346.971,19.366,20.438,19.366 +4255,133.161,294.413,447.803,262.202,626.404,293.085,456.199,98.992,142.156,98.992,328.877,324.333,345.879,19.205,22.099,19.205 +4256,133.191,291.755,447.725,266.136,626.506,290.741,455.647,97.294,149.962,97.294,329.226,323.487,345.200,18.807,23.227,18.807 +4257,133.222,289.201,448.312,270.118,626.784,288.506,455.436,95.572,157.380,95.572,330.334,322.692,344.648,18.765,24.308,18.765 +4258,133.252,289.201,448.312,270.118,626.784,288.506,455.436,95.572,157.380,95.572,330.334,322.692,344.648,18.765,24.308,18.765 +4259,133.280,286.634,448.110,274.090,627.364,286.131,455.553,93.861,166.062,93.861,329.545,322.579,344.464,18.577,25.943,18.577 +4260,133.311,284.122,448.542,277.825,627.282,283.862,455.546,92.130,174.336,92.130,329.665,322.986,343.683,18.396,26.942,18.396 +4261,133.341,281.791,448.502,281.406,627.729,281.742,455.845,90.386,2.426,90.386,329.080,323.769,343.766,18.619,27.145,18.619 +4262,133.372,279.447,449.577,284.899,628.078,279.588,456.047,88.755,11.041,88.755,331.270,326.118,344.212,18.430,28.391,18.430 +4263,133.404,277.627,450.633,288.156,629.368,277.929,457.168,87.349,19.631,87.349,331.894,327.185,344.978,18.674,27.392,18.674 +4264,133.435,275.502,451.151,291.045,630.291,276.024,458.070,85.684,28.072,85.684,331.849,328.941,345.726,19.153,27.412,19.153 +4265,133.465,273.441,452.165,294.297,630.458,274.120,458.573,83.951,36.270,83.951,333.221,329.820,346.108,19.480,25.203,19.480 +4266,133.496,271.153,452.322,296.971,631.062,272.120,459.375,82.191,44.393,82.191,332.703,331.012,346.942,19.769,23.895,19.769 +4267,133.527,268.467,452.510,299.920,630.944,269.716,459.929,80.446,52.607,80.446,332.267,332.977,347.312,19.420,22.369,19.420 +4268,133.557,266.219,452.962,302.856,630.643,267.747,460.559,78.629,60.656,78.629,331.836,334.140,347.335,19.810,19.910,19.810 +4269,133.587,266.219,452.962,302.856,630.643,267.747,460.559,78.629,60.656,78.629,331.836,334.140,347.335,19.810,19.910,19.810 +4270,133.616,262.236,449.194,304.282,630.281,265.260,461.234,75.902,68.591,75.902,322.094,336.136,346.921,19.371,19.481,19.371 +4271,133.647,241.868,387.426,306.916,630.674,262.683,462.358,74.476,77.042,74.476,192.489,336.017,348.029,17.932,20.008,17.932 +4272,133.678,255.525,445.400,309.591,629.369,260.919,462.677,72.662,85.272,72.662,311.043,334.834,347.244,19.920,20.179,19.920 +4273,133.710,254.941,451.735,310.907,627.551,258.858,462.702,70.346,93.200,70.346,322.210,333.932,345.501,21.458,20.539,21.458 +4274,133.740,252.879,453.948,312.529,625.410,256.435,462.837,68.199,100.836,68.199,324.410,333.201,343.556,22.098,22.275,22.098 +4275,133.772,250.061,456.126,316.109,622.038,253.195,463.109,65.829,109.117,65.829,326.203,330.239,341.511,22.018,21.604,22.018 +4276,133.803,247.362,457.298,321.471,619.984,250.925,464.377,63.283,118.733,63.283,325.572,328.974,341.421,23.390,22.042,23.390 +4277,133.834,244.488,459.346,326.491,617.373,248.062,465.692,60.611,127.203,60.611,326.730,327.576,341.297,23.706,24.814,23.706 +4278,133.865,240.963,460.874,331.208,613.756,244.838,467.027,57.798,135.807,57.798,325.831,326.073,340.372,24.233,25.633,24.233 +4279,133.896,236.956,462.999,336.243,610.727,241.354,469.227,54.765,144.258,54.765,325.393,325.976,340.641,23.862,26.649,23.862 +4280,133.926,233.946,465.543,341.562,607.082,238.551,471.341,51.546,152.571,51.546,325.912,325.710,340.721,25.037,27.021,25.037 +4281,133.957,230.471,468.526,346.917,603.138,235.329,473.944,48.122,160.821,48.122,326.815,326.057,341.368,25.264,26.980,25.264 +4282,133.987,230.471,468.526,346.917,603.138,235.329,473.944,48.122,160.821,48.122,326.815,326.057,341.368,25.264,26.980,25.264 +4283,134.018,226.708,472.260,352.201,598.530,231.919,477.374,44.465,168.935,44.465,326.814,326.910,341.418,24.834,26.319,24.834 +4284,134.050,222.381,475.722,357.524,593.944,228.527,480.998,40.644,176.864,40.644,326.693,327.878,342.895,25.663,26.453,25.663 +4285,134.082,218.153,479.118,362.303,587.862,225.357,484.455,36.535,3.928,36.535,325.261,328.698,343.191,26.274,26.119,26.274 +4286,134.114,212.731,482.839,366.960,581.844,222.018,488.684,32.183,10.763,32.183,322.636,330.764,344.582,26.179,23.870,26.179 +4287,134.145,202.456,488.091,371.133,575.390,217.862,495.501,25.685,16.699,25.685,311.313,331.695,345.504,24.718,20.785,24.718 +4288,134.176,137.448,468.873,374.779,569.307,214.885,501.478,22.834,21.949,22.834,179.331,331.844,347.372,18.433,20.502,18.433 +4289,134.207,196.617,502.561,377.186,562.581,212.134,507.640,18.126,27.225,18.126,315.256,332.849,347.909,19.246,19.666,19.246 +4290,134.237,199.324,508.794,379.147,554.912,210.343,511.243,12.529,32.471,12.529,325.938,332.249,348.515,25.272,19.481,25.272 +4291,134.267,198.293,516.895,380.456,546.425,207.908,518.049,6.843,38.437,6.843,330.032,331.070,349.400,25.140,19.769,25.140 +4292,134.299,197.550,526.847,380.611,536.387,205.851,526.926,0.551,44.526,0.551,333.081,329.477,349.685,23.451,20.850,23.451 +4293,134.329,197.579,539.029,380.436,524.771,205.223,538.218,173.950,51.546,173.950,335.934,326.880,351.308,19.307,23.079,19.307 +4294,134.363,198.450,549.602,377.786,513.578,205.044,548.088,167.074,57.817,167.074,338.638,323.826,352.170,19.717,24.734,19.717 +4295,134.394,200.260,560.141,373.648,501.930,206.161,557.962,159.732,64.568,159.732,340.471,320.908,353.054,19.458,25.419,19.458 +4296,134.424,204.252,571.421,367.262,490.089,208.978,568.921,152.122,71.966,152.122,342.855,317.834,353.549,19.658,23.484,19.658 +4297,134.454,204.252,571.421,367.262,490.089,208.978,568.921,152.122,71.966,152.122,342.855,317.834,353.549,19.658,23.484,19.658 +4298,134.483,209.297,582.105,359.932,478.407,213.453,579.106,144.184,78.871,144.184,345.167,314.175,355.416,19.328,23.774,19.328 +4299,134.515,215.729,593.338,351.277,467.873,219.980,589.252,136.131,85.914,136.131,345.750,311.421,357.544,19.497,24.509,19.497 +4300,134.548,222.779,605.716,339.699,457.721,228.142,598.811,127.833,93.013,127.833,342.229,309.992,359.716,19.585,22.075,19.585 +4301,134.579,232.454,617.595,326.829,449.629,238.265,607.231,119.275,100.704,119.275,337.797,310.040,361.562,19.772,21.084,19.772 +4302,134.610,223.089,685.096,312.626,442.774,249.857,613.716,110.556,107.565,110.556,211.727,308.359,364.196,19.663,19.822,19.663 +4303,134.640,263.453,627.771,298.251,438.479,265.251,619.531,102.312,114.423,102.312,350.980,309.360,367.849,25.065,21.430,25.065 +4304,134.670,274.556,627.430,283.778,436.243,274.798,620.690,92.052,121.759,92.052,355.811,309.092,369.300,25.378,20.690,25.378 +4305,134.701,289.494,628.072,269.865,437.102,288.740,621.473,83.480,128.904,83.480,357.359,309.532,370.644,26.456,19.086,26.456 +4306,134.733,307.555,624.736,255.895,439.919,306.126,619.038,75.923,135.740,75.923,360.169,309.815,371.917,24.739,18.599,24.739 +4307,134.765,321.656,619.074,242.487,444.827,319.460,613.961,66.755,142.659,66.755,360.439,310.219,371.567,23.186,18.683,23.186 +4308,134.796,334.750,611.360,230.034,451.557,331.997,606.928,58.158,149.604,58.158,361.128,309.888,371.564,24.591,18.694,24.591 +4309,134.827,346.079,601.760,218.968,459.744,342.913,598.034,49.649,156.673,49.649,361.501,309.491,371.280,25.580,18.806,25.580 +4310,134.857,355.347,590.995,209.199,467.850,351.545,587.647,41.363,163.431,41.363,361.872,308.701,372.003,26.206,20.817,26.206 +4311,134.888,355.347,590.995,209.199,467.850,351.545,587.647,41.363,163.431,41.363,361.872,308.701,372.003,26.206,20.817,26.206 +4312,134.917,362.866,579.868,201.865,478.689,358.827,577.219,33.265,170.538,33.265,360.913,308.248,370.575,25.773,19.070,25.773 +4313,134.949,368.668,568.373,196.064,489.625,364.039,566.160,25.547,177.754,25.547,358.855,306.627,369.116,25.790,18.652,25.790 +4314,134.980,373.411,558.711,192.453,499.573,367.255,556.672,18.327,4.677,18.327,354.809,306.268,367.779,22.949,21.437,22.949 +4315,135.010,440.765,561.326,189.818,510.203,365.544,545.655,11.768,10.437,11.768,204.852,305.983,358.525,20.885,20.445,20.885 +4316,135.041,379.730,537.400,188.734,520.233,364.458,535.726,6.257,16.997,6.257,322.004,306.511,352.731,24.755,21.958,24.755 +4317,135.072,371.110,527.433,188.877,531.029,364.014,527.565,178.939,23.993,178.939,336.146,307.041,350.341,20.719,21.667,20.719 +4318,135.103,369.694,518.530,190.048,541.601,364.941,519.126,172.852,31.363,172.852,343.081,307.699,352.661,20.735,21.469,20.735 +4319,135.134,370.094,509.764,192.187,551.971,366.098,510.682,167.071,39.742,167.071,349.280,308.824,357.479,20.122,21.262,20.122 +4320,135.166,366.932,501.807,194.827,561.865,363.277,503.021,161.636,48.180,161.636,349.118,311.315,356.821,19.631,20.945,19.631 +4321,135.197,363.544,494.448,197.709,571.022,359.377,496.253,156.571,56.213,156.571,347.050,314.789,356.134,19.483,20.552,19.483 +4322,135.228,359.580,488.366,199.843,579.161,354.985,490.843,151.670,64.781,151.670,346.503,316.739,356.943,19.702,20.020,19.702 +4323,135.258,354.799,483.297,202.915,586.409,350.455,486.088,147.278,72.284,147.278,346.384,319.444,356.711,19.590,19.964,19.590 +4324,135.288,350.020,478.860,205.371,592.521,345.854,481.985,143.130,80.727,143.130,347.000,322.042,357.416,19.400,19.618,19.400 +4325,135.318,350.020,478.860,205.371,592.521,345.854,481.985,143.130,80.727,143.130,347.000,322.042,357.416,19.400,19.618,19.400 +4326,135.348,345.457,474.968,208.343,597.518,341.529,478.352,139.254,88.391,139.254,346.996,323.378,357.367,19.360,19.077,19.360 +4327,135.380,341.646,471.551,210.520,602.109,337.182,475.919,135.623,96.072,135.623,345.079,325.673,357.571,18.952,20.184,18.952 +4328,135.412,337.683,468.348,213.885,605.472,333.603,472.837,132.274,103.707,132.274,345.216,326.454,357.347,19.104,19.430,19.104 +4329,135.442,334.193,465.490,216.742,608.202,330.075,470.545,129.174,111.448,129.174,343.573,326.661,356.612,18.950,19.679,18.950 +4330,135.473,332.867,460.575,220.264,610.231,327.167,468.372,126.172,118.536,126.172,335.904,326.580,355.222,19.024,20.554,19.024 +4331,135.504,368.896,398.783,223.941,612.329,323.703,465.993,123.917,126.747,123.917,192.223,324.999,354.205,17.985,20.470,17.985 +4332,135.535,332.006,446.145,227.421,613.416,321.061,464.034,121.457,134.626,121.457,310.645,323.913,352.588,18.185,20.094,18.185 +4333,135.566,325.569,451.250,230.872,614.483,319.106,462.941,118.936,142.431,118.936,323.910,322.842,350.628,19.666,19.999,19.666 +4334,135.597,320.700,452.100,234.530,615.325,316.288,460.924,116.565,149.931,116.565,329.596,321.620,349.327,19.230,20.406,19.230 +4335,135.627,317.230,452.483,238.174,616.410,313.872,459.795,114.667,156.981,114.667,331.739,320.920,347.831,19.467,23.315,19.467 +4336,135.657,314.336,452.564,242.131,618.318,311.603,459.042,112.879,164.770,112.879,333.449,320.214,347.510,19.354,25.284,19.354 +4337,135.692,311.765,452.184,245.660,619.849,309.371,458.359,111.194,173.246,111.194,333.957,319.857,347.202,19.446,25.493,19.446 +4338,135.735,309.716,451.577,248.980,620.758,307.527,457.674,109.747,0.895,109.747,333.593,320.164,346.548,19.355,26.669,19.355 +4339,135.769,307.478,451.320,251.870,622.219,305.450,457.449,108.304,8.489,108.304,333.609,320.908,346.521,19.230,27.309,19.230 +4340,135.803,305.555,451.405,254.160,623.189,303.783,457.197,107.013,15.945,107.013,334.377,323.484,346.492,19.353,27.747,19.353 +4341,135.842,303.830,451.594,256.337,625.028,302.160,457.440,105.945,23.471,105.945,335.297,324.481,347.456,19.230,26.770,19.230 +4342,135.873,302.142,451.743,258.330,626.645,300.607,457.542,104.826,30.343,104.826,336.584,325.293,348.581,19.249,26.585,19.249 +4343,135.904,300.658,451.804,259.766,627.809,299.192,457.740,103.872,37.117,103.872,336.894,326.204,349.123,19.153,26.056,19.153 +4344,135.936,299.303,451.645,261.234,629.242,297.787,458.198,103.024,44.091,103.024,336.312,327.473,349.764,19.340,25.385,19.340 +4345,135.967,298.324,451.810,263.501,628.918,297.067,457.593,102.265,50.064,102.265,337.253,329.046,349.090,19.076,21.630,19.076 +4346,135.998,297.373,451.861,264.332,629.752,296.127,457.960,101.544,57.216,101.544,336.912,330.159,349.361,19.245,20.776,19.245 +4347,136.028,296.576,451.739,264.484,630.495,295.309,458.276,100.972,63.138,100.972,336.560,330.517,349.876,19.324,20.993,19.324 +4348,136.058,295.719,452.390,264.150,631.133,294.605,458.386,100.530,69.185,100.530,338.609,331.791,350.807,19.385,20.858,19.385 +4349,136.089,295.387,451.936,264.610,631.563,294.184,458.578,100.271,74.809,100.271,337.471,332.760,350.972,19.310,20.873,19.310 +4350,136.120,295.387,451.936,264.610,631.563,294.184,458.578,100.271,74.809,100.271,337.471,332.760,350.972,19.310,20.873,19.310 +4351,136.149,295.281,451.976,264.385,631.931,294.041,458.901,100.151,79.824,100.151,337.025,333.239,351.096,19.275,21.881,19.275 +4352,136.182,295.382,452.435,263.894,631.672,294.246,458.709,100.263,83.871,100.263,338.455,333.272,351.207,19.105,22.308,19.105 +4353,136.213,295.813,452.408,264.026,631.847,294.632,458.760,100.530,87.114,100.530,338.609,334.583,351.532,19.195,24.272,19.195 +4354,136.244,297.030,450.625,261.745,631.001,295.446,458.721,101.070,89.732,101.070,334.591,332.071,351.090,18.945,21.023,18.945 +4355,136.275,297.959,451.260,259.129,630.992,296.330,459.051,101.810,91.287,101.810,335.908,332.388,351.829,18.767,21.017,18.767 +4356,136.305,299.493,450.709,257.446,630.497,297.549,459.322,102.717,92.707,102.717,333.948,333.620,351.608,18.650,20.450,18.650 +4357,136.336,300.887,451.484,255.504,629.591,298.975,459.227,103.870,93.455,103.870,335.684,332.327,351.634,18.854,20.566,18.854 +4358,136.367,302.535,452.012,253.420,629.063,300.481,459.561,105.226,93.890,105.226,336.178,333.203,351.823,19.012,19.778,19.012 +4359,136.400,304.558,453.114,251.001,628.411,302.526,459.864,106.750,93.409,106.750,338.394,332.020,352.491,19.189,19.905,19.189 +4360,136.431,306.970,453.986,248.130,627.524,304.839,460.353,108.509,92.145,108.509,339.621,331.554,353.051,19.332,19.672,19.332 +4361,136.461,309.792,454.725,245.072,626.494,307.380,461.122,110.659,90.244,110.659,339.766,331.035,353.440,19.235,19.221,19.235 +4362,136.491,312.787,456.288,241.802,624.907,310.408,461.896,112.989,87.682,112.989,341.536,330.418,353.718,19.081,19.741,19.081 +4363,136.522,316.668,457.616,238.429,622.820,314.037,463.066,115.769,84.657,115.769,341.371,329.648,353.475,19.502,19.555,19.502 +4364,136.552,316.668,457.616,238.429,622.820,314.037,463.066,115.769,84.657,115.769,341.371,329.648,353.475,19.502,19.555,19.502 +4365,136.582,320.244,458.281,234.665,620.553,317.191,463.930,118.388,81.085,118.388,341.208,328.822,354.050,19.257,19.855,19.257 +4366,136.613,324.519,460.281,230.771,617.393,321.379,465.385,121.608,77.196,121.608,341.908,327.778,353.893,19.261,20.212,19.261 +4367,136.643,328.512,462.084,226.993,614.392,325.087,467.027,124.712,73.025,124.712,341.968,327.018,353.995,19.233,21.041,19.233 +4368,136.674,333.136,464.528,223.249,610.596,329.609,468.996,128.290,69.044,128.290,342.705,326.234,354.089,18.796,20.585,18.796 +4369,136.705,337.706,467.592,219.119,606.003,334.205,471.488,131.934,64.799,131.934,343.477,324.883,353.953,19.090,20.758,19.090 +4370,136.737,343.201,471.110,215.076,600.675,339.476,474.694,136.109,60.539,136.109,343.644,322.978,353.982,18.974,21.043,18.974 +4371,136.768,348.000,475.000,210.716,594.512,344.102,478.249,140.194,56.198,140.194,343.651,320.612,353.800,18.949,21.168,18.949 +4372,136.799,352.804,479.426,205.895,587.499,348.678,482.373,144.462,51.633,144.462,344.442,317.669,354.582,19.297,21.169,19.297 +4373,136.830,357.235,485.239,201.995,579.626,353.568,487.431,149.133,46.794,149.133,346.265,315.062,354.810,19.910,21.111,19.910 +4374,136.860,361.781,491.667,198.340,571.364,358.060,493.454,154.348,42.166,154.348,347.158,313.138,355.412,19.073,21.956,19.073 +4375,136.891,365.509,498.877,194.692,561.958,361.880,500.218,159.717,37.241,159.717,348.710,311.809,356.447,19.739,22.020,19.739 +4376,136.921,365.509,498.877,194.692,561.958,361.880,500.218,159.717,37.241,159.717,348.710,311.809,356.447,19.739,22.020,19.739 +4377,136.950,370.417,506.991,191.915,552.466,365.841,508.193,165.285,32.255,165.285,349.472,310.251,358.935,19.852,21.454,19.852 +4378,136.981,370.122,516.763,189.974,542.154,365.250,517.516,171.215,27.176,171.215,344.106,308.655,353.965,20.358,21.601,20.358 +4379,137.013,371.782,526.088,189.026,530.984,364.228,526.389,177.720,22.190,177.720,335.371,307.910,350.492,20.753,22.052,20.753 +4380,137.045,381.140,536.553,189.249,519.052,364.518,534.949,5.511,17.026,5.511,318.573,307.389,351.970,25.207,22.939,25.207 +4381,137.075,440.887,562.478,190.498,508.140,365.055,547.971,10.830,11.603,10.830,203.450,306.164,357.864,21.019,20.820,21.019 +4382,137.106,373.971,561.217,193.761,497.433,367.018,558.847,18.819,5.807,18.819,352.919,305.695,367.611,21.270,22.292,21.270 +4383,137.138,368.280,570.003,198.550,485.863,363.668,567.677,26.757,1.091,26.757,358.212,305.230,368.542,25.955,19.168,25.955 +4384,137.168,361.070,581.899,205.192,475.327,357.957,579.720,34.992,175.773,34.992,362.428,305.866,370.030,25.314,18.701,25.314 +4385,137.199,352.748,594.127,213.375,465.226,349.635,591.130,43.919,170.426,43.919,362.321,306.442,370.965,25.505,18.486,25.505 +4386,137.231,342.827,604.635,223.476,456.410,339.974,600.966,52.125,165.155,52.125,361.962,306.419,371.257,23.856,18.179,23.856 +4387,137.262,330.387,613.896,235.254,448.687,328.015,609.628,60.945,159.702,60.945,361.707,307.093,371.473,22.728,18.064,22.728 +4388,137.292,317.072,620.993,248.352,442.689,315.252,616.076,69.686,154.537,69.686,361.171,307.789,371.656,22.124,18.487,22.124 +4389,137.322,303.447,625.222,262.117,438.193,302.354,619.540,79.114,148.765,79.114,359.792,308.701,371.364,26.476,18.447,26.476 +4390,137.352,303.447,625.222,262.117,438.193,302.354,619.540,79.114,148.765,79.114,359.792,308.701,371.364,26.476,18.447,26.476 +4391,137.382,288.175,627.909,276.545,436.232,287.959,621.525,88.061,143.326,88.061,358.370,309.401,371.146,26.120,18.396,26.120 +4392,137.414,268.195,626.278,290.579,436.037,268.841,619.572,95.499,137.746,95.499,356.071,309.701,369.546,26.359,18.974,26.359 +4393,137.445,254.866,623.071,304.782,438.800,256.661,616.233,104.705,132.553,104.705,353.534,310.336,367.674,23.201,19.020,23.201 +4394,137.475,242.478,618.361,317.287,443.084,245.880,610.826,114.298,127.064,114.298,347.996,311.806,364.532,20.197,21.681,20.197 +4395,137.506,202.088,655.307,329.385,449.423,235.027,604.069,122.735,123.690,122.735,240.397,312.019,362.220,19.587,19.415,19.587 +4396,137.538,206.487,617.921,340.593,457.723,225.674,595.687,130.792,118.909,130.792,300.323,313.062,359.058,19.726,19.873,19.726 +4397,137.569,207.435,595.414,350.835,467.821,217.717,586.391,138.731,113.864,138.731,329.166,313.949,356.525,19.512,21.796,19.512 +4398,137.600,205.907,580.136,358.617,478.096,211.441,576.490,146.620,107.418,146.620,340.813,314.681,354.067,19.510,21.665,19.510 +4399,137.631,202.475,568.585,366.415,489.903,207.539,566.136,154.190,101.889,154.190,341.188,315.763,352.437,19.701,24.258,19.701 +4400,137.661,199.728,557.669,372.109,501.962,205.021,555.892,161.450,95.492,161.450,339.960,317.325,351.128,19.470,25.479,19.470 +4401,137.691,197.884,547.390,375.583,513.499,203.869,546.173,168.507,89.204,168.507,337.347,319.150,349.562,19.801,24.900,19.801 +4402,137.721,197.469,537.142,377.354,525.587,203.486,536.613,174.982,82.355,174.982,336.253,322.284,348.333,20.132,25.756,20.132 +4403,137.751,197.469,537.142,377.354,525.587,203.486,536.613,174.982,82.355,174.982,336.253,322.284,348.333,20.132,25.756,20.132 +4404,137.780,198.056,527.858,378.848,536.560,204.969,528.038,1.498,76.608,1.498,334.252,324.547,348.083,18.726,25.200,18.726 +4405,137.812,199.879,517.780,378.359,547.195,207.030,518.621,6.710,70.463,6.710,332.589,327.114,346.989,24.361,24.199,24.361 +4406,137.842,201.912,509.837,377.431,556.604,209.546,511.510,12.362,64.537,12.362,331.661,328.813,347.292,24.822,23.904,24.822 +4407,137.873,204.680,502.666,375.357,565.489,212.620,505.168,17.488,59.194,17.488,330.034,330.811,346.683,25.844,21.163,25.844 +4408,137.904,206.986,495.284,372.981,573.144,215.967,499.065,22.834,53.435,22.834,327.423,332.224,346.912,25.466,20.617,25.466 +4409,137.936,210.165,487.707,369.935,580.149,219.944,492.983,28.346,47.687,28.346,324.560,332.969,346.784,25.870,20.206,25.870 +4410,137.968,207.026,482.825,366.618,586.246,221.263,491.912,32.550,41.717,32.550,312.778,334.098,346.556,18.329,20.157,18.329 +4411,138.000,156.340,437.380,363.174,591.403,224.092,488.194,36.870,36.321,36.870,177.000,333.965,346.381,17.800,19.677,17.800 +4412,138.031,215.710,472.990,359.554,595.410,228.184,482.942,38.583,30.920,38.583,313.753,334.080,345.667,24.173,19.624,24.173 +4413,138.062,225.806,472.151,355.419,598.735,232.419,478.551,44.061,25.821,44.061,325.527,334.104,343.933,24.873,21.110,24.873 +4414,138.092,229.868,469.998,350.865,602.739,235.129,475.730,47.451,20.072,47.451,328.100,333.981,343.660,24.910,23.626,24.910 +4415,138.122,233.509,467.405,346.838,605.625,238.080,472.941,50.450,14.534,50.450,328.763,332.847,343.121,25.231,24.881,25.231 +4416,138.153,233.509,467.405,346.838,605.625,238.080,472.941,50.450,14.534,50.450,328.763,332.847,343.121,25.231,24.881,25.231 +4417,138.183,235.964,465.145,342.839,608.531,240.372,471.055,53.286,8.896,53.286,328.178,331.512,342.923,24.225,25.515,24.225 +4418,138.215,239.047,463.468,338.924,611.704,243.157,469.522,55.827,3.604,55.827,328.215,329.426,342.850,23.644,26.782,23.644 +4419,138.245,241.440,461.275,335.033,613.511,245.415,467.700,58.255,178.107,58.255,327.188,328.317,342.299,23.303,27.027,23.303 +4420,138.276,243.957,459.724,331.188,615.658,247.674,466.284,60.467,173.541,60.467,327.186,327.755,342.265,22.902,26.697,22.902 +4421,138.307,246.319,458.353,327.538,617.224,249.798,465.059,62.578,168.530,62.578,326.630,326.933,341.740,22.674,27.185,22.674 +4422,138.337,248.430,456.990,323.929,618.601,251.747,463.926,64.440,163.254,64.440,325.984,326.522,341.361,22.279,26.855,22.279 +4423,138.368,250.529,455.828,320.500,620.000,253.634,462.892,66.275,158.199,66.275,326.036,326.267,341.468,22.018,26.740,22.018 +4424,138.400,252.401,454.908,317.200,620.900,255.243,461.871,67.797,153.435,67.797,326.257,326.019,341.300,21.597,26.833,21.597 +4425,138.432,254.420,454.525,314.154,622.135,256.988,461.349,69.382,148.223,69.382,326.655,326.380,341.236,21.434,25.924,21.434 +4426,138.463,256.571,453.603,311.459,623.428,259.063,460.749,70.769,143.366,70.769,326.583,326.602,341.719,22.024,25.596,22.024 +4427,138.493,258.106,452.993,308.907,624.032,260.394,460.049,72.031,138.681,72.031,327.066,327.190,341.902,21.801,24.702,21.801 +4428,138.528,259.097,452.717,306.648,625.143,261.329,460.117,73.217,133.958,73.217,326.704,327.555,342.164,20.713,24.166,20.713 +4429,138.559,260.459,452.173,304.022,625.600,262.532,459.596,74.393,129.946,74.393,326.679,328.135,342.092,20.635,23.804,20.635 +4430,138.590,262.072,451.304,302.220,626.300,264.112,459.103,75.343,125.579,75.343,326.674,328.746,342.796,21.299,23.017,21.299 +4431,138.619,262.072,451.304,302.220,626.300,264.112,459.103,75.343,125.579,75.343,326.674,328.746,342.796,21.299,23.017,21.299 +4432,138.649,262.968,450.520,300.210,626.831,265.047,458.942,76.130,120.132,76.130,325.496,329.456,342.846,21.095,21.229,21.095 +4433,138.679,263.959,450.698,298.597,627.553,265.898,459.058,76.945,116.328,76.945,325.889,329.623,343.053,20.782,21.242,20.782 +4434,138.711,264.272,449.889,298.005,628.291,266.310,459.137,77.574,112.859,77.574,325.084,330.381,344.023,19.846,20.579,19.846 +4435,138.742,264.877,449.680,297.216,628.898,266.902,459.252,78.050,109.722,78.050,324.924,331.156,344.493,19.737,20.692,19.737 +4436,138.773,265.121,448.655,296.802,629.476,267.352,459.530,78.408,107.162,78.408,322.591,331.283,344.794,19.718,20.838,19.718 +4437,138.804,265.464,448.503,296.716,630.191,267.728,459.718,78.589,104.962,78.589,322.793,332.770,345.677,19.829,20.771,19.829 +4438,138.835,265.344,448.527,296.930,630.623,267.656,459.970,78.579,103.496,78.579,322.792,333.023,346.142,19.653,20.926,19.653 +4439,138.867,264.975,448.080,297.348,630.692,267.439,460.072,78.389,102.740,78.389,321.811,333.538,346.295,19.725,20.542,19.725 +4440,138.899,264.511,448.643,298.106,630.523,266.945,460.037,77.943,102.529,77.943,323.167,333.314,346.469,19.758,20.825,19.758 +4441,138.931,264.647,449.912,299.250,630.326,266.946,460.258,77.471,103.092,77.471,324.853,332.862,346.051,20.825,20.794,20.825 +4442,138.961,263.065,449.895,300.257,629.813,265.557,460.451,76.720,104.130,76.720,323.914,332.764,345.607,20.112,20.778,20.112 +4443,138.991,262.365,450.638,301.553,628.595,264.780,460.154,75.759,105.642,75.759,324.985,331.876,344.621,20.920,20.954,20.920 +4444,139.021,260.590,451.235,303.193,627.901,263.101,460.347,74.597,107.850,74.597,325.465,331.135,344.368,20.374,20.667,20.374 +4445,139.052,260.590,451.235,303.193,627.901,263.101,460.347,74.597,107.850,74.597,325.465,331.135,344.368,20.374,20.667,20.374 +4446,139.081,259.082,452.078,304.920,627.028,261.664,460.705,73.342,110.410,73.342,325.475,330.883,343.486,20.677,20.750,20.677 +4447,139.113,257.843,452.742,307.217,625.810,260.481,460.802,71.878,113.385,71.878,325.762,330.106,342.721,21.773,20.739,21.773 +4448,139.145,255.846,453.269,309.764,624.627,258.647,461.112,70.346,116.878,70.346,325.708,329.626,342.364,22.131,20.503,22.131 +4449,139.176,253.423,454.658,312.939,623.373,256.260,461.896,68.593,120.579,68.593,326.498,328.952,342.047,21.466,21.249,21.466 +4450,139.207,251.321,455.929,316.433,621.954,254.249,462.744,66.750,124.399,66.750,326.818,328.429,341.654,21.813,23.319,21.813 +4451,139.239,249.152,456.513,319.800,620.400,252.448,463.497,64.737,127.875,64.737,325.833,328.020,341.280,23.107,24.031,23.107 +4452,139.270,246.239,458.048,323.579,618.571,249.710,464.756,62.638,131.915,62.638,326.006,327.275,341.113,22.683,24.827,22.683 +4453,139.299,244.015,459.356,327.524,616.525,247.662,465.754,60.315,135.707,60.315,326.339,326.763,341.068,23.796,25.471,23.796 +4454,139.330,241.038,460.833,331.419,613.779,244.942,467.043,57.848,139.899,57.848,325.834,326.376,340.504,24.190,25.886,24.190 +4455,139.360,237.896,462.590,335.676,611.242,242.183,468.746,55.143,144.013,55.143,325.722,326.069,340.726,24.461,26.461,24.461 +4456,139.391,234.355,464.911,340.059,608.291,239.018,470.953,52.341,148.079,52.341,325.649,326.056,340.914,24.094,26.799,24.094 +4457,139.421,234.355,464.911,340.059,608.291,239.018,470.953,52.341,148.079,52.341,325.649,326.056,340.914,24.094,26.799,24.094 +4458,139.451,231.065,467.444,344.600,604.693,236.103,473.293,49.261,152.567,49.261,325.294,326.069,340.733,24.418,27.677,24.418 +4459,139.482,227.868,470.580,349.137,600.971,233.100,475.987,45.939,156.595,45.939,325.967,326.189,341.016,24.687,26.737,24.687 +4460,139.515,224.401,473.467,353.896,596.600,230.164,478.736,42.436,160.991,42.436,326.082,326.445,341.698,25.747,26.772,25.747 +4461,139.546,220.597,477.126,358.539,591.573,226.758,482.043,38.598,165.431,38.598,326.881,326.717,342.647,25.832,26.298,25.832 +4462,139.577,216.281,481.366,362.872,585.781,223.187,486.124,34.570,169.909,34.570,326.364,327.356,343.136,25.485,25.856,25.485 +4463,139.608,212.046,485.717,367.230,579.327,220.094,490.439,30.403,174.366,30.403,325.113,328.156,343.775,26.666,24.366,26.666 +4464,139.638,206.986,490.955,371.064,572.473,216.739,495.657,25.737,178.776,25.737,323.087,328.203,344.743,26.109,23.302,26.109 +4465,139.668,200.026,496.122,375.063,563.710,213.851,501.397,20.886,2.793,20.886,316.074,329.072,345.668,26.295,22.266,26.295 +4466,139.699,184.436,502.270,377.508,555.144,210.492,508.474,13.392,7.512,13.392,293.000,328.279,346.569,23.208,21.637,23.208 +4467,139.730,164.462,509.916,379.756,546.325,208.090,517.432,9.774,12.277,9.774,259.617,329.779,348.158,19.113,21.507,19.113 +4468,139.761,195.328,524.202,381.614,538.231,206.884,524.992,3.912,17.409,3.912,327.287,331.331,350.453,19.067,24.251,19.067 +4469,139.791,196.253,533.678,381.123,527.926,205.884,533.270,177.575,22.150,177.575,331.338,330.407,350.616,19.055,23.721,19.055 +4470,139.822,196.861,543.436,380.100,518.300,205.412,542.092,171.069,26.565,171.069,335.215,328.702,352.527,19.165,21.913,19.165 +4471,139.852,196.861,543.436,380.100,518.300,205.412,542.092,171.069,26.565,171.069,335.215,328.702,352.527,19.165,21.913,19.165 +4472,139.881,198.849,553.695,377.446,507.275,206.025,551.667,164.219,30.713,164.219,339.151,326.879,354.066,19.706,21.604,19.706 +4473,139.914,201.758,564.433,372.276,496.990,207.491,561.982,156.861,36.187,156.861,341.664,325.134,354.135,19.452,20.491,19.452 +4474,139.944,206.022,574.844,366.119,486.170,210.612,572.134,149.439,40.914,149.439,344.567,321.924,355.228,19.370,20.756,19.370 +4475,139.974,211.508,585.492,359.685,474.326,216.165,581.792,141.534,45.490,141.534,346.550,318.319,358.445,19.352,24.911,19.352 +4476,140.006,219.035,595.583,350.195,464.244,222.863,591.551,133.519,51.340,133.519,348.871,315.159,359.992,19.086,24.363,19.086 +4477,140.036,228.524,604.727,339.403,455.384,231.458,600.598,125.400,57.200,125.400,351.664,312.207,361.796,19.356,24.619,19.356 +4478,140.067,239.364,612.958,326.862,448.312,241.533,608.699,116.988,62.526,116.988,353.726,309.177,363.287,19.819,23.955,19.819 +4479,140.099,251.795,619.948,313.028,443.190,253.389,615.221,108.632,68.039,108.632,354.162,307.148,364.138,19.910,23.156,19.910 +4480,140.129,266.787,626.967,297.986,440.081,267.899,620.889,100.368,72.897,100.368,354.184,304.967,366.541,25.132,20.512,25.132 +4481,140.160,281.233,635.815,283.123,439.080,281.696,622.267,91.957,78.024,91.957,339.144,303.875,366.257,25.780,19.298,25.780 +4482,140.190,304.205,697.642,268.325,439.686,295.907,622.042,83.737,82.310,83.737,216.444,302.922,368.553,26.281,18.641,26.281 +4483,140.220,304.205,697.642,268.325,439.686,295.907,622.042,83.737,82.310,83.737,216.444,302.922,368.553,26.281,18.641,26.281 +4484,140.251,308.770,627.346,253.701,442.627,306.680,620.004,74.110,85.956,74.110,354.942,304.009,370.209,22.943,19.205,22.943 +4485,140.284,324.220,619.670,239.673,447.989,321.530,613.801,65.369,90.749,65.369,356.770,304.039,369.681,22.381,19.005,22.381 +4486,140.314,337.489,610.854,227.358,455.288,334.403,606.188,56.516,95.654,56.516,358.641,304.383,369.829,23.778,19.272,23.778 +4487,140.345,349.109,600.627,215.914,464.188,345.402,596.551,47.713,101.129,47.713,359.072,306.342,370.091,24.945,19.527,24.945 +4488,140.375,358.683,589.195,207.182,474.903,354.721,585.979,39.068,106.928,39.068,358.904,308.507,369.109,25.822,18.010,25.822 +4489,140.406,365.682,576.483,198.793,486.017,361.254,573.854,30.700,111.801,30.700,358.774,310.297,369.074,25.715,18.570,25.715 +4490,140.437,370.225,563.776,193.229,497.873,365.827,561.940,22.663,117.087,22.663,358.382,311.772,367.914,25.582,20.001,25.582 +4491,140.470,371.255,551.200,188.921,510.024,366.522,549.935,14.975,122.190,14.975,353.967,313.859,363.765,25.502,20.547,25.502 +4492,140.502,368.491,538.850,186.399,521.682,363.983,538.247,7.617,127.174,7.617,347.327,314.996,356.424,25.674,21.075,25.674 +4493,140.537,367.082,530.178,183.787,531.656,361.456,530.126,0.535,132.818,0.535,344.041,315.949,355.294,20.859,21.898,20.859 +4494,140.568,367.421,520.262,184.703,542.315,362.136,520.826,173.911,137.545,173.911,346.793,316.362,357.423,20.842,21.852,20.842 +4495,140.599,369.311,510.654,185.973,551.759,363.189,512.022,167.400,142.294,167.400,350.687,316.695,363.233,20.265,21.300,20.265 +4496,140.629,367.263,501.303,188.278,560.365,360.441,503.585,161.497,146.842,161.497,348.179,316.761,362.565,19.903,21.298,19.903 +4497,140.658,367.819,491.373,192.217,568.263,357.046,496.217,155.792,150.428,155.792,336.130,318.140,359.754,19.510,20.388,19.510 +4498,140.688,398.495,463.563,196.066,576.539,352.592,489.268,150.751,155.704,150.751,253.201,316.481,358.422,18.497,19.369,18.497 +4499,140.718,398.495,463.563,196.066,576.539,352.592,489.268,150.751,155.704,150.751,253.201,316.481,358.422,18.497,19.369,18.497 +4500,140.747,365.557,471.992,200.792,583.013,348.656,483.612,145.491,160.378,145.491,315.299,316.561,356.320,18.747,20.034,18.747 +4501,140.779,354.253,470.738,205.839,589.034,344.466,478.789,140.557,165.005,140.557,328.846,316.089,354.191,19.356,20.406,19.356 +4502,140.811,346.780,467.844,211.017,594.330,340.107,474.285,136.010,169.743,136.010,333.952,316.358,352.501,19.358,20.824,19.358 +4503,140.841,340.181,464.900,216.820,599.749,335.390,470.252,131.835,174.144,131.835,336.772,316.136,351.138,19.469,22.982,19.469 +4504,140.873,334.673,462.078,222.016,604.630,330.621,467.291,127.858,179.170,127.858,336.964,316.213,350.170,19.804,24.563,19.804 +4505,140.904,329.388,459.456,227.938,609.095,325.949,464.534,124.109,3.225,124.109,337.042,317.075,349.308,19.436,24.778,19.436 +4506,140.935,324.476,457.462,232.963,612.778,321.456,462.579,120.554,7.481,120.554,336.775,317.967,348.659,19.514,26.309,19.514 +4507,140.966,319.977,455.531,238.077,616.123,317.217,460.896,117.225,11.547,117.225,336.406,319.898,348.472,19.324,26.506,19.324 +4508,140.997,315.483,454.109,242.962,618.907,312.993,459.682,114.076,15.767,114.076,335.676,321.535,347.884,19.154,27.060,19.154 +4509,141.027,311.082,452.956,248.396,621.791,308.879,458.698,110.990,19.767,110.990,335.573,321.480,347.872,19.366,26.777,19.366 +4510,141.062,306.877,452.145,252.687,623.835,304.979,457.973,108.043,23.891,108.043,335.547,323.993,347.804,19.420,26.644,19.420 +4511,141.106,302.807,451.578,257.307,625.876,301.189,457.489,105.310,27.150,105.310,335.737,325.194,347.994,19.070,26.558,19.070 +4512,141.140,299.007,451.219,262.200,627.822,297.610,457.466,102.604,30.735,102.604,335.152,325.671,347.955,19.203,26.204,19.203 +4513,141.174,295.215,450.981,266.495,629.232,294.087,457.383,99.994,34.618,99.994,335.058,326.788,348.060,19.115,26.356,19.115 +4514,141.211,291.661,450.860,270.779,630.427,290.808,457.306,97.536,37.850,97.536,335.501,327.844,348.506,18.747,25.540,18.747 +4515,141.242,288.537,450.724,274.627,631.428,287.899,457.583,95.315,41.076,95.315,334.880,329.070,348.655,18.617,25.574,18.617 +4516,141.273,284.998,450.780,279.159,631.825,284.659,457.746,92.793,44.315,92.793,334.334,329.590,348.281,18.441,24.530,18.441 +4517,141.303,281.580,450.974,282.837,632.151,281.542,458.058,90.305,47.150,90.305,334.001,331.118,348.168,18.372,24.994,18.372 +4518,141.335,278.537,451.585,288.140,631.382,278.765,458.184,88.025,49.812,88.025,333.629,331.606,346.836,18.747,21.214,18.747 +4519,141.366,275.887,451.325,291.285,631.778,276.393,458.512,85.976,52.101,85.976,333.357,332.404,347.768,19.078,21.948,19.078 +4520,141.398,273.159,452.756,294.671,631.876,273.877,459.324,83.763,53.992,83.763,334.364,333.053,347.579,19.523,22.406,19.523 +4521,141.429,270.483,452.950,297.997,631.696,271.500,459.773,81.521,55.222,81.521,334.103,333.431,347.901,20.015,21.972,20.015 +4522,141.459,267.292,452.595,301.962,630.852,268.736,460.379,79.495,56.028,79.495,331.514,333.654,347.348,19.567,20.617,19.567 +4523,141.489,264.747,453.112,305.500,630.000,266.488,460.947,77.471,56.310,77.471,330.927,333.930,346.980,20.066,20.801,20.066 +4524,141.520,264.747,453.112,305.500,630.000,266.488,460.947,77.471,56.310,77.471,330.927,333.930,346.980,20.066,20.801,20.066 +4525,141.552,262.302,453.697,308.785,629.276,264.325,461.526,75.513,55.567,75.513,330.904,334.251,347.077,20.527,19.833,20.527 +4526,141.584,260.431,454.406,311.852,628.309,262.694,462.075,73.560,54.287,73.560,330.706,334.221,346.699,21.855,20.562,21.855 +4527,141.615,257.435,454.182,315.216,627.056,260.235,462.656,71.719,52.193,71.719,328.850,334.506,346.699,21.161,20.433,21.161 +4528,141.645,255.678,454.985,318.171,625.924,258.746,463.353,69.864,49.371,69.864,328.356,333.745,346.183,22.439,20.316,22.439 +4529,141.675,253.645,456.440,321.387,624.625,256.706,464.108,68.237,45.909,68.237,329.604,333.892,346.116,23.362,20.874,23.362 +4530,141.707,251.154,457.532,324.500,622.811,254.374,464.851,66.251,41.603,66.251,329.660,333.677,345.651,22.187,21.047,22.187 +4531,141.738,249.355,458.272,326.998,621.165,252.801,465.437,64.318,36.771,64.318,329.096,333.802,344.998,23.225,21.740,23.225 +4532,141.769,247.171,459.411,329.535,619.617,250.743,466.256,62.447,31.225,62.447,329.385,333.216,344.828,23.591,23.133,23.591 +4533,141.801,245.152,460.824,332.112,617.329,248.565,466.877,60.582,25.084,60.582,330.279,333.236,344.177,23.929,23.779,23.929 +4534,141.833,242.357,462.198,335.050,614.850,245.938,468.062,58.589,18.435,58.589,329.696,332.039,343.438,23.536,24.982,23.536 +4535,141.863,239.700,463.195,338.164,612.218,243.690,469.205,56.417,11.083,56.417,328.371,330.624,342.798,23.724,25.920,23.724 +4536,141.893,236.877,464.589,341.333,609.758,241.197,470.542,54.030,4.224,54.030,328.262,328.837,342.973,23.976,26.609,23.976 +4537,141.924,233.946,466.236,344.349,606.972,238.680,472.186,51.491,176.583,51.491,327.324,327.670,342.530,24.190,26.207,24.190 +4538,141.953,233.946,466.236,344.349,606.972,238.680,472.186,51.491,176.583,51.491,327.324,327.670,342.530,24.190,26.207,24.190 +4539,141.982,231.107,467.968,346.932,604.125,236.175,473.749,48.764,169.771,48.764,326.721,327.359,342.099,25.252,26.430,25.252 +4540,142.014,227.553,470.463,350.040,600.605,232.917,475.991,45.855,161.742,45.855,326.584,326.672,341.988,24.757,26.649,24.757 +4541,142.045,224.417,473.423,353.187,596.887,230.067,478.639,42.709,154.195,42.709,325.970,326.061,341.349,25.040,26.870,25.040 +4542,142.076,220.964,476.712,356.206,592.805,226.749,481.449,39.307,145.911,39.307,326.466,325.638,341.421,25.398,26.694,25.398 +4543,142.107,217.422,480.411,359.267,588.193,223.420,484.703,35.586,137.779,35.586,326.650,325.572,341.401,25.420,26.400,25.420 +4544,142.138,213.999,484.882,362.639,583.533,220.375,488.820,31.701,129.806,31.701,326.631,325.470,341.619,25.874,26.760,25.874 +4545,142.170,210.404,489.752,365.781,577.981,217.101,493.215,27.338,121.608,27.338,326.926,326.054,342.005,25.557,26.467,25.557 +4546,142.202,207.120,495.340,369.112,571.487,213.894,498.192,22.834,113.663,22.834,328.296,325.348,342.995,25.466,26.202,25.466 +4547,142.235,204.061,502.172,372.023,564.415,210.881,504.346,17.684,105.255,17.684,329.235,325.301,343.550,25.862,25.522,25.862 +4548,142.266,201.759,509.192,374.933,556.553,208.556,510.724,12.700,96.911,12.700,330.830,325.105,344.764,25.075,25.330,25.075 +4549,142.297,199.811,516.611,376.977,547.943,206.381,517.445,7.237,88.340,7.237,332.914,324.385,346.158,25.415,24.381,25.415 +4550,142.327,198.124,525.731,378.483,538.088,204.863,525.889,1.346,80.340,1.346,334.237,324.860,347.718,23.772,25.086,23.772 +4551,142.356,197.720,537.155,378.521,527.659,204.281,536.606,175.217,71.686,175.217,335.589,324.143,348.757,19.392,25.338,19.392 +4552,142.387,197.720,537.155,378.521,527.659,204.281,536.606,175.217,71.686,175.217,335.589,324.143,348.757,19.392,25.338,19.392 +4553,142.417,198.115,547.077,377.729,516.641,204.558,545.788,168.690,63.768,168.690,337.908,323.808,351.049,19.808,25.155,19.808 +4554,142.449,199.890,557.142,375.661,504.891,206.065,555.114,161.816,56.104,161.816,340.600,323.395,353.600,19.383,24.876,19.383 +4555,142.481,203.142,567.687,371.479,493.073,208.784,565.018,154.676,48.289,154.676,343.184,322.299,355.667,19.410,24.635,19.410 +4556,142.513,207.558,578.034,365.492,481.509,212.746,574.699,147.265,40.156,147.265,345.424,320.979,357.760,19.407,24.457,19.407 +4557,142.545,213.455,588.186,357.768,470.643,218.101,584.229,139.574,32.651,139.574,347.747,319.828,359.954,19.257,22.357,19.257 +4558,142.575,221.342,597.705,348.111,460.912,225.159,593.392,131.511,24.944,131.511,349.868,318.491,361.386,19.315,21.424,19.315 +4559,142.606,230.785,606.708,337.300,452.036,234.032,601.790,123.433,17.301,123.433,351.955,316.291,363.741,19.656,21.396,19.656 +4560,142.636,241.790,614.463,324.807,445.113,244.227,609.270,115.136,9.834,115.136,354.206,315.010,365.679,19.629,20.573,19.629 +4561,142.667,253.901,620.913,311.019,439.061,255.664,614.929,106.417,2.517,106.417,356.208,312.621,368.684,20.726,21.375,20.726 +4562,142.699,266.081,624.870,296.421,436.548,266.829,619.021,97.293,175.236,97.293,357.714,312.500,369.507,25.432,19.765,25.432 +4563,142.729,282.000,627.000,281.591,436.427,282.000,621.214,90.000,167.989,90.000,358.000,311.641,369.573,20.000,18.189,20.000 +4564,142.760,294.984,626.442,266.303,437.876,294.056,621.157,80.039,160.907,80.039,359.907,310.610,370.638,26.420,18.136,26.420 +4565,142.791,312.676,622.476,251.160,441.326,311.031,617.373,72.131,153.909,72.131,361.127,310.363,371.850,22.177,18.763,22.177 +4566,142.821,312.676,622.476,251.160,441.326,311.031,617.373,72.131,153.909,72.131,361.127,310.363,371.850,22.177,18.763,22.177 +4567,142.851,327.119,616.168,237.129,447.698,324.742,611.496,63.031,146.947,63.031,360.952,310.098,371.436,22.905,18.660,22.905 +4568,142.882,339.999,607.619,224.743,455.888,337.045,603.518,54.228,140.092,54.228,360.745,309.843,370.854,24.357,18.215,24.357 +4569,142.913,351.365,597.239,213.238,465.224,347.533,593.315,45.690,133.335,45.690,359.968,309.952,370.937,25.675,19.400,25.675 +4570,142.943,360.229,585.743,204.450,476.463,356.183,582.673,37.185,126.639,37.185,359.995,310.985,370.153,26.236,18.339,26.236 +4571,142.974,366.699,573.825,197.229,488.269,362.299,571.387,28.991,119.914,28.991,359.283,311.589,369.343,25.842,18.357,25.842 +4572,143.006,371.266,561.740,192.289,500.341,366.695,559.965,21.216,113.364,21.216,358.517,312.121,368.324,25.737,18.808,25.737 +4573,143.037,371.048,549.087,188.469,512.332,366.000,547.859,13.681,107.543,13.681,351.403,312.825,361.793,25.013,22.182,25.013 +4574,143.068,369.404,537.582,188.260,524.670,364.747,537.051,6.510,100.109,6.510,344.130,313.223,353.504,24.881,21.552,24.881 +4575,143.100,367.990,527.277,188.111,535.726,363.552,527.305,179.651,93.576,179.651,342.103,314.075,350.978,23.530,21.396,23.530 +4576,143.131,368.700,519.173,187.807,546.829,363.509,519.794,173.175,87.728,173.175,344.882,314.506,355.339,20.836,22.181,20.836 +4577,143.161,369.634,509.920,191.143,556.382,365.134,510.961,166.973,80.374,166.973,350.264,315.801,359.504,20.150,21.342,20.150 +4578,143.191,366.537,501.167,193.496,565.272,361.931,502.733,161.222,73.740,161.222,349.473,315.920,359.202,19.712,20.320,19.712 +4579,143.221,366.537,501.167,193.496,565.272,361.931,502.733,161.222,73.740,161.222,349.473,315.920,359.202,19.712,20.320,19.712 +4580,143.250,362.473,493.721,197.190,573.226,358.248,495.626,155.733,67.046,155.733,348.172,316.458,357.440,19.593,20.388,19.593 +4581,143.281,358.404,486.944,201.308,581.038,354.194,489.318,150.582,60.255,150.582,346.783,317.405,356.449,19.655,20.094,19.655 +4582,143.311,353.973,480.960,205.337,587.186,349.793,483.808,145.731,53.746,145.731,345.062,317.455,355.178,19.234,20.751,19.234 +4583,143.342,349.430,475.791,210.099,592.535,345.554,478.907,141.203,46.885,141.203,343.582,316.534,353.529,19.316,21.764,19.316 +4584,143.373,344.580,471.449,213.292,598.548,340.394,475.367,136.899,39.732,136.899,342.474,316.894,353.942,19.152,25.638,19.152 +4585,143.404,339.773,467.541,217.872,602.652,335.859,471.755,132.891,32.905,132.891,340.907,317.851,352.410,19.213,25.829,19.213 +4586,143.435,335.306,464.157,222.050,605.839,331.728,468.547,129.188,25.346,129.188,340.101,318.449,351.428,18.956,26.018,18.956 +4587,143.466,330.992,461.287,226.630,609.116,327.654,465.943,125.640,18.642,125.640,338.986,318.771,350.444,19.336,25.526,19.336 +4588,143.496,326.883,458.558,230.904,611.493,323.678,463.625,122.307,11.041,122.307,337.133,318.482,349.123,19.091,25.998,19.091 +4589,143.527,322.712,456.291,234.545,613.814,319.721,461.657,119.137,3.752,119.137,336.462,318.349,348.750,19.562,25.306,19.562 +4590,143.558,318.727,454.585,238.738,615.950,315.942,460.257,116.153,176.706,116.153,334.929,318.911,347.566,19.297,25.512,19.297 +4591,143.587,318.727,454.585,238.738,615.950,315.942,460.257,116.153,176.706,116.153,334.929,318.911,347.566,19.297,25.512,19.297 +4592,143.618,315.063,452.754,241.776,617.897,312.335,459.073,113.348,168.541,113.348,333.798,320.085,347.564,19.485,24.581,19.485 +4593,143.651,311.574,450.664,245.014,619.638,308.756,458.103,110.746,160.346,110.746,331.372,320.999,347.281,19.539,23.813,19.539 +4594,143.682,308.017,449.663,248.500,622.000,305.309,457.850,108.299,153.435,108.299,330.124,321.994,347.371,19.228,22.808,19.228 +4595,143.713,304.774,448.792,251.387,623.336,302.329,457.350,105.945,145.408,105.945,329.391,323.806,347.190,19.505,21.545,19.505 +4596,143.744,301.425,447.086,254.329,624.765,299.036,456.972,103.584,137.603,103.584,326.857,325.030,347.199,19.375,20.324,19.375 +4597,143.775,298.289,446.153,257.570,626.558,296.126,457.045,101.232,129.472,101.232,325.342,326.890,347.552,20.187,19.843,20.187 +4598,143.806,295.354,443.884,261.140,628.214,293.190,457.127,99.277,122.062,99.277,321.197,328.383,348.033,19.054,19.892,19.054 +4599,143.837,293.023,440.268,265.085,629.812,290.760,457.369,97.539,114.305,97.539,314.143,329.975,348.643,18.398,20.168,18.398 +4600,143.870,290.182,433.865,268.534,631.563,287.804,457.884,95.654,106.587,95.654,301.191,332.172,349.465,18.031,19.698,18.031 +4601,143.903,288.149,414.136,272.869,632.786,285.358,458.325,93.614,98.702,93.614,261.248,333.383,349.803,17.880,21.061,17.880 +4602,143.936,285.396,375.340,277.843,633.997,282.783,458.931,91.790,91.228,91.790,183.004,334.223,350.268,17.929,22.952,17.929 +4603,143.968,280.720,448.538,279.849,633.772,280.824,458.867,89.427,82.967,89.427,329.114,336.385,349.773,17.809,21.345,17.809 +4604,143.999,277.983,449.582,285.271,633.933,278.383,459.375,87.663,76.149,87.663,329.787,335.672,349.388,18.678,20.376,18.678 +4605,144.029,275.696,450.629,289.480,633.008,276.323,459.354,85.894,68.391,85.894,330.805,333.896,348.300,19.171,19.796,19.171 +4606,144.059,273.342,451.729,293.782,632.061,274.155,459.397,83.951,60.701,83.951,332.121,333.265,347.543,19.586,20.365,19.586 +4607,144.090,270.831,452.379,297.431,631.423,271.861,459.620,81.908,53.344,81.908,332.758,332.796,347.384,20.045,20.970,20.045 +4608,144.120,270.831,452.379,297.431,631.423,271.861,459.620,81.908,53.344,81.908,332.758,332.796,347.384,20.045,20.970,20.045 +4609,144.149,267.970,453.304,300.814,630.695,269.171,460.067,79.931,45.807,79.931,333.328,331.710,347.064,19.490,22.785,19.490 +4610,144.181,265.350,453.395,304.979,629.145,266.843,460.320,77.829,38.565,77.829,331.974,331.567,346.142,19.838,24.112,19.838 +4611,144.212,263.181,453.966,308.132,627.779,264.868,460.557,75.645,30.964,75.645,331.850,330.992,345.457,21.203,25.553,21.203 +4612,144.243,260.295,454.459,311.328,626.069,262.254,461.007,73.342,23.199,73.342,330.733,331.024,344.403,21.635,26.130,21.635 +4613,144.274,257.621,455.472,315.450,623.689,259.637,461.361,71.095,14.676,71.095,330.862,329.713,343.311,22.044,26.580,22.044 +4614,144.304,254.389,455.934,318.623,621.802,256.804,462.123,68.682,7.658,68.682,329.165,329.489,342.454,22.676,27.126,22.676 +4615,144.334,251.168,456.754,323.000,620.000,254.046,463.258,66.128,0.000,66.128,328.249,326.000,342.476,23.068,26.000,23.068 +4616,144.365,247.438,458.280,326.168,617.889,250.640,464.659,63.343,173.089,63.343,327.381,326.339,341.656,22.497,26.473,22.497 +4617,144.395,243.733,459.368,329.940,615.793,247.566,466.146,60.516,165.750,60.516,326.046,325.985,341.619,23.063,26.615,23.063 +4618,144.426,240.524,460.894,333.638,613.080,244.731,467.506,57.529,158.532,57.529,325.423,326.095,341.096,24.313,26.507,24.313 +4619,144.456,236.751,463.099,337.615,610.210,241.316,469.439,54.246,151.390,54.246,325.393,326.018,341.017,24.606,26.656,24.606 +4620,144.486,236.751,463.099,337.615,610.210,241.316,469.439,54.246,151.390,54.246,325.393,326.018,341.017,24.606,26.656,24.606 +4621,144.516,232.656,466.025,341.613,606.861,237.474,471.945,50.860,144.554,50.860,325.484,325.949,340.750,24.312,26.718,24.312 +4622,144.550,229.041,468.726,345.885,603.375,234.347,474.464,47.242,137.291,47.242,325.116,326.253,340.747,25.326,26.622,25.326 +4623,144.582,225.260,472.437,350.148,599.279,230.769,477.645,43.394,130.236,43.394,325.458,326.494,340.621,25.644,26.073,25.644 +4624,144.612,220.858,476.665,354.308,594.538,226.585,481.344,39.245,123.690,39.245,326.259,326.718,341.050,25.295,25.516,25.295 +4625,144.643,217.059,481.389,358.900,589.700,223.106,485.601,34.854,116.565,34.854,327.114,327.808,341.852,25.424,25.491,25.424 +4626,144.674,213.160,486.709,363.222,583.079,219.264,490.260,30.189,109.654,30.189,328.091,327.053,342.215,25.635,24.956,25.635 +4627,144.704,209.500,492.640,367.422,576.141,215.765,495.595,25.249,102.804,25.249,329.196,327.024,343.051,25.566,24.733,25.566 +4628,144.736,206.117,499.179,371.146,568.401,212.629,501.547,19.983,96.582,19.983,329.782,326.984,343.641,25.716,24.377,25.716 +4629,144.768,202.736,507.152,375.000,560.000,209.790,508.940,14.226,90.000,14.226,330.830,326.000,345.383,25.244,24.000,25.244 +4630,144.799,200.083,515.213,377.215,550.223,207.199,516.270,8.452,82.875,8.452,331.934,325.963,346.322,24.875,24.683,24.875 +4631,144.829,198.713,523.928,378.699,539.574,205.544,524.189,2.186,76.212,2.186,333.559,325.978,347.232,24.730,25.561,24.730 +4632,144.859,197.736,536.590,378.811,528.385,204.471,536.069,175.579,69.734,175.579,335.319,324.769,348.828,19.329,24.924,19.329 +4633,144.890,198.138,547.205,377.834,516.580,204.632,545.896,168.605,63.275,168.605,337.910,323.791,351.159,19.788,24.990,19.788 +4634,144.920,198.138,547.205,377.834,516.580,204.632,545.896,168.605,63.275,168.605,337.910,323.791,351.159,19.788,24.990,19.788 +4635,144.949,199.930,557.826,375.193,504.198,206.125,555.737,161.365,57.171,161.365,340.268,322.837,353.344,19.282,24.179,19.282 +4636,144.979,203.233,568.938,370.844,492.127,209.173,566.020,153.838,50.826,153.838,342.141,321.407,355.377,19.368,23.889,19.368 +4637,145.010,208.219,579.866,364.134,479.862,213.463,576.320,145.931,44.136,145.931,345.029,321.097,357.690,19.344,23.762,19.344 +4638,145.042,214.925,590.265,355.860,468.330,219.510,586.101,137.761,37.626,137.761,347.842,319.428,360.230,19.258,23.859,19.258 +4639,145.073,223.480,600.334,346.028,458.281,227.446,595.523,129.504,31.122,129.504,350.184,317.277,362.654,19.363,23.421,19.363 +4640,145.104,233.946,609.565,333.778,450.090,237.037,604.430,121.045,24.417,121.045,352.261,315.483,364.247,19.539,21.965,19.539 +4641,145.135,245.696,616.785,320.477,443.629,247.847,611.539,112.289,17.796,112.289,354.483,313.693,365.823,19.648,20.489,19.648 +4642,145.167,259.475,623.109,305.799,438.971,260.720,617.714,102.995,11.070,102.995,357.527,312.232,368.602,23.310,19.863,23.310 +4643,145.197,271.634,625.883,290.865,437.287,271.945,620.925,93.588,4.328,93.588,358.988,311.154,368.924,26.387,17.927,26.387 +4644,145.227,287.823,626.559,275.498,436.961,287.377,621.449,85.012,177.441,85.012,359.387,309.674,369.645,23.561,17.781,23.561 +4645,145.257,302.975,624.646,259.811,439.365,301.845,619.937,76.504,170.538,76.504,361.106,309.892,370.791,25.477,17.755,25.477 +4646,145.286,302.975,624.646,259.811,439.365,301.845,619.937,76.504,170.538,76.504,361.106,309.892,370.791,25.477,17.755,25.477 +4647,145.315,319.199,619.592,245.016,444.054,317.330,614.990,67.901,163.610,67.901,361.233,309.367,371.167,21.985,17.833,21.985 +4648,145.345,333.061,612.155,231.507,450.866,330.537,607.959,58.975,156.501,58.975,361.525,309.890,371.320,23.603,18.341,23.603 +4649,145.376,345.622,602.558,219.378,459.640,342.412,598.712,50.144,149.421,50.144,361.194,310.403,371.214,25.545,18.236,25.545 +4650,145.408,355.447,591.487,209.189,469.949,351.886,588.328,41.574,142.326,41.574,361.091,310.470,370.612,26.083,18.185,26.083 +4651,145.439,363.332,579.891,200.250,481.234,358.959,577.039,33.111,135.255,33.111,360.100,311.149,370.542,25.820,19.001,25.820 +4652,145.470,368.993,567.675,194.387,493.686,364.466,565.556,25.087,127.711,25.087,359.019,312.307,369.015,25.768,18.465,25.768 +4653,145.503,371.883,555.276,190.217,506.204,367.341,553.857,17.354,120.672,17.354,357.035,313.337,366.551,25.532,20.180,25.532 +4654,145.535,369.779,542.858,188.079,518.670,365.253,542.064,9.948,112.989,9.948,347.914,314.225,357.103,25.000,20.755,25.000 +4655,145.567,368.394,531.519,186.962,530.556,363.475,531.277,2.827,105.832,2.827,342.817,315.097,352.668,25.167,20.993,25.167 +4656,145.597,367.972,523.599,187.442,541.573,363.299,523.920,176.067,98.264,176.067,343.938,315.803,353.307,20.894,20.378,20.894 +4657,145.628,369.004,514.019,189.138,552.527,364.276,514.889,169.574,90.934,169.574,348.502,315.203,358.115,20.496,21.052,20.496 +4658,145.660,367.676,504.897,191.610,561.814,362.973,506.278,163.635,83.395,163.635,350.334,316.747,360.137,19.875,20.390,19.875 +4659,145.690,363.925,496.624,195.158,570.707,359.404,498.461,157.891,75.811,157.891,348.959,317.233,358.720,19.398,20.052,19.398 +4660,145.720,363.925,496.624,195.158,570.707,359.404,498.461,157.891,75.811,157.891,348.959,317.233,358.720,19.398,20.052,19.398 +4661,145.748,359.702,489.388,199.174,578.546,355.284,491.692,152.456,68.405,152.456,347.193,317.548,357.159,19.583,20.340,19.583 +4662,145.780,355.379,482.971,203.952,585.852,351.098,485.715,147.344,60.832,147.344,345.667,318.677,355.838,19.732,20.246,19.732 +4663,145.812,350.673,477.422,208.299,591.292,346.562,480.576,142.500,53.402,142.500,343.817,317.612,354.181,19.594,21.189,19.594 +4664,145.843,345.765,472.566,213.328,596.287,342.077,475.874,138.111,45.872,138.111,342.580,317.573,352.488,18.995,21.735,18.995 +4665,145.875,341.051,468.087,216.881,602.267,336.794,472.511,133.896,38.558,133.896,341.007,317.810,353.288,18.935,25.340,18.935 +4666,145.905,336.311,464.426,221.468,606.041,332.340,469.192,129.806,30.838,129.806,339.810,318.126,352.217,19.206,26.117,19.206 +4667,145.936,331.520,461.694,226.165,609.014,328.109,466.389,125.995,24.121,125.995,339.006,319.126,350.614,19.257,26.536,19.257 +4668,145.967,326.916,458.859,230.564,611.768,323.732,463.852,122.525,15.524,122.525,337.776,319.032,349.619,18.892,26.229,18.892 +4669,145.997,322.590,456.439,235.098,614.361,319.553,461.905,119.055,8.746,119.055,336.065,318.864,348.571,19.329,25.774,19.329 +4670,146.028,318.438,454.409,239.042,616.473,315.601,460.260,115.866,1.591,115.866,334.922,318.433,347.927,19.469,25.435,19.469 +4671,146.058,314.073,452.741,243.279,618.223,311.553,458.734,112.813,174.447,112.813,333.967,318.899,346.970,19.584,24.800,19.584 +4672,146.089,314.073,452.741,243.279,618.223,311.553,458.734,112.813,174.447,112.813,333.967,318.899,346.970,19.584,24.800,19.584 +4673,146.119,310.075,451.250,247.093,620.644,307.637,457.993,109.877,167.638,109.877,332.751,320.087,347.092,19.423,25.196,19.423 +4674,146.152,306.092,449.951,250.752,622.540,303.800,457.401,107.103,160.168,107.103,331.288,321.254,346.875,19.557,24.813,19.557 +4675,146.183,302.220,448.829,254.721,623.973,300.193,456.701,104.441,153.905,104.441,330.397,322.423,346.654,19.426,23.643,19.426 +4676,146.218,298.554,448.240,258.136,625.146,296.866,456.343,101.768,146.853,101.768,329.753,323.460,346.307,19.457,22.470,19.457 +4677,146.249,294.793,447.456,261.756,626.195,293.369,456.178,99.273,141.340,99.273,328.105,324.841,345.779,19.034,21.552,19.034 +4678,146.279,291.033,447.181,265.612,627.135,289.987,456.030,96.743,136.091,96.743,327.747,326.011,345.568,18.825,20.462,18.825 +4679,146.309,287.354,446.706,269.442,628.337,286.663,456.273,94.132,130.215,94.132,326.533,327.023,345.716,18.913,20.258,18.913 +4680,146.341,283.858,447.058,273.541,629.029,283.562,456.524,91.790,125.300,91.790,326.528,327.940,345.469,18.710,20.636,18.710 +4681,146.371,279.682,446.432,278.070,629.542,279.871,456.710,88.949,120.906,88.949,324.982,329.107,345.540,18.465,20.219,18.465 +4682,146.403,276.265,447.233,282.572,630.018,276.893,457.283,86.424,116.851,86.424,325.365,329.635,345.504,18.963,20.688,18.963 +4683,146.435,272.421,447.004,287.715,630.161,273.665,458.097,83.601,113.356,83.601,322.789,330.356,345.115,19.560,20.302,19.560 +4684,146.466,268.492,448.758,293.076,629.658,270.126,458.654,80.623,110.333,80.623,324.857,330.991,344.916,19.878,20.534,19.878 +4685,146.496,264.581,449.977,298.248,629.080,266.734,459.622,77.415,107.894,77.415,324.740,331.440,344.505,20.845,20.885,20.845 +4686,146.527,260.302,451.057,304.066,628.019,263.043,460.650,74.055,105.945,74.055,324.446,331.588,344.399,21.428,21.016,21.428 +4687,146.557,255.608,452.708,309.550,626.368,258.836,461.908,70.665,104.470,70.665,324.449,331.838,343.950,21.107,21.177,21.107 +4688,146.587,255.608,452.708,309.550,626.368,258.836,461.908,70.665,104.470,70.665,324.449,331.838,343.950,21.107,21.177,21.107 +4689,146.617,251.280,454.971,315.306,624.474,254.904,463.508,66.997,103.496,66.997,324.993,332.556,343.541,21.744,20.965,21.744 +4690,146.649,246.744,457.347,320.860,622.405,250.843,465.464,63.208,102.707,63.208,325.120,333.442,343.306,22.564,21.270,22.564 +4691,146.679,242.309,460.423,327.005,618.447,246.326,467.138,59.115,102.567,59.115,326.886,332.127,342.535,23.083,19.751,23.083 +4692,146.710,237.873,463.365,334.004,614.722,242.360,469.737,54.853,102.482,54.853,327.031,331.792,342.617,24.644,20.712,24.644 +4693,146.742,232.659,467.052,340.468,609.882,237.506,472.899,50.339,102.450,50.339,327.148,330.610,342.338,24.266,21.686,24.266 +4694,146.774,227.633,470.953,346.853,604.412,233.127,476.581,45.690,102.529,45.690,326.097,329.951,341.827,24.892,22.669,24.892 +4695,146.805,222.924,475.506,352.362,598.082,228.401,480.201,40.601,102.700,40.601,327.240,329.511,341.668,25.815,22.286,25.815 +4696,146.836,218.130,480.987,358.242,591.286,223.821,485.033,35.410,102.995,35.410,328.282,328.445,342.246,26.214,23.535,26.214 +4697,146.868,213.235,486.988,363.390,583.092,219.211,490.415,29.836,103.241,29.836,328.575,327.526,342.353,26.049,23.820,26.049 +4698,146.900,208.425,493.924,368.313,574.195,214.947,496.825,23.981,103.496,23.981,328.872,326.722,343.147,25.970,24.971,25.970 +4699,146.930,204.324,502.415,372.155,564.786,210.948,504.527,17.684,103.917,17.684,329.884,325.493,343.788,25.558,25.520,25.558 +4700,146.960,200.962,511.192,374.794,553.824,207.480,512.496,11.310,104.036,11.310,331.044,323.785,344.340,24.711,25.709,24.711 +4701,146.989,198.170,520.890,376.705,542.423,205.195,521.455,4.604,104.534,4.604,331.183,322.558,345.279,24.331,26.100,24.331 +4702,147.020,198.170,520.890,376.705,542.423,205.195,521.455,4.604,104.534,4.604,331.183,322.558,345.279,24.331,26.100,24.331 +4703,147.052,197.038,533.852,377.126,530.167,203.838,533.548,177.442,104.893,177.442,332.919,320.919,346.532,19.228,26.340,19.228 +4704,147.084,196.918,545.367,375.852,517.431,203.398,544.224,169.992,105.524,169.992,335.811,319.085,348.972,19.927,26.176,19.927 +4705,147.115,198.758,556.855,372.717,504.491,204.625,554.966,162.157,105.945,162.157,338.619,317.303,350.946,19.602,25.824,19.602 +4706,147.146,201.677,568.921,365.884,491.155,207.065,566.302,154.075,106.569,154.075,339.399,315.696,351.380,19.236,21.633,19.236 +4707,147.176,206.869,581.013,358.934,478.789,211.914,577.581,145.776,107.199,145.776,342.051,314.607,354.253,19.399,21.266,19.399 +4708,147.208,212.165,594.419,350.700,467.900,218.970,588.120,137.209,108.435,137.209,338.127,313.065,356.673,19.633,22.136,19.633 +4709,147.238,218.433,609.926,339.359,457.636,227.645,598.291,128.367,108.895,128.367,329.561,311.563,359.242,19.666,20.916,19.666 +4710,147.269,225.986,627.326,326.217,449.260,237.419,606.747,119.055,109.916,119.055,314.502,310.985,361.585,19.523,19.090,19.523 +4711,147.300,223.964,686.508,311.850,442.395,250.759,614.006,110.283,110.854,110.283,209.703,309.582,364.294,20.146,19.758,20.146 +4712,147.332,265.302,628.166,296.731,438.479,267.014,619.911,101.721,111.251,101.721,350.511,308.960,367.373,26.067,20.349,26.067 +4713,147.363,281.146,629.101,281.324,436.835,281.448,621.197,92.194,112.130,92.194,352.622,308.079,368.444,25.866,20.423,25.866 +4714,147.394,292.220,628.569,266.446,438.403,291.220,621.928,81.439,113.097,81.439,356.903,307.647,370.335,27.146,19.614,27.146 +4715,147.424,310.858,624.746,251.356,441.825,309.035,618.569,73.551,113.962,73.551,358.803,307.447,371.686,22.689,19.596,22.689 +4716,147.454,310.858,624.746,251.356,441.825,309.035,618.569,73.551,113.962,73.551,358.803,307.447,371.686,22.689,19.596,22.689 +4717,147.484,325.724,617.419,237.725,448.142,323.293,612.417,64.075,114.829,64.075,359.185,307.515,370.307,22.622,19.154,22.622 +4718,147.515,339.425,608.947,225.191,456.320,336.331,604.538,54.935,115.856,54.935,359.562,308.145,370.334,24.249,18.399,24.249 +4719,147.546,351.133,598.007,214.111,465.815,347.442,594.186,45.988,116.725,45.988,359.303,309.032,369.928,26.025,18.394,26.025 +4720,147.577,360.383,586.054,204.723,476.855,356.281,582.933,37.263,117.604,37.263,359.386,309.616,369.694,26.276,18.407,26.276 +4721,147.608,366.950,573.441,197.202,488.653,362.476,570.990,28.716,118.504,28.716,358.815,311.415,369.017,25.847,18.227,25.847 +4722,147.638,371.472,560.759,191.933,501.090,366.964,559.063,20.615,119.416,20.615,358.839,312.792,368.470,25.711,19.062,25.711 +4723,147.670,370.389,547.458,186.460,512.475,364.780,546.187,12.767,121.430,12.767,351.224,314.150,362.724,25.390,24.793,25.390 +4724,147.702,368.492,535.195,185.087,525.140,362.905,534.683,5.243,122.367,5.243,344.672,315.538,355.892,25.693,22.496,25.693 +4725,147.732,366.970,526.572,184.221,536.621,361.672,526.741,178.164,123.077,178.164,344.753,316.548,355.354,20.976,21.786,20.976 +4726,147.763,367.832,516.389,185.240,547.837,362.392,517.213,171.384,124.032,171.384,348.477,317.864,359.481,20.853,21.030,20.853 +4727,147.793,367.768,506.936,187.191,558.132,362.625,508.323,164.899,124.792,164.899,354.051,319.011,364.705,20.045,20.781,20.045 +4728,147.828,363.088,498.549,189.285,567.201,358.026,500.504,158.884,125.272,158.884,352.024,320.154,362.878,19.761,21.605,19.761 +4729,147.873,359.518,491.061,192.659,575.613,354.080,493.803,153.241,125.301,153.241,349.755,321.071,361.936,19.364,20.540,19.364 +4730,147.907,354.955,484.528,196.848,583.394,349.778,487.764,147.995,125.014,147.995,348.527,322.123,360.737,19.716,19.573,19.716 +4731,147.940,350.287,478.876,200.880,589.599,345.299,482.611,143.176,124.240,143.176,346.995,322.831,359.457,19.212,20.689,19.212 +4732,147.977,345.382,474.503,205.380,595.747,340.803,478.503,138.857,123.014,138.857,346.086,323.724,358.245,19.017,21.134,19.017 +4733,148.009,341.250,470.250,209.792,600.780,336.503,474.997,135.000,120.809,135.000,343.654,324.649,357.080,19.092,21.039,19.092 +4734,148.039,337.046,467.285,214.221,605.085,332.818,472.102,131.269,118.072,131.269,343.539,325.824,356.357,19.404,20.941,19.404 +4735,148.071,333.347,464.241,218.307,608.996,329.091,469.665,128.121,114.590,128.121,342.219,326.318,356.007,19.476,20.775,19.476 +4736,148.103,329.655,462.479,222.110,612.413,325.812,467.889,125.385,110.420,125.385,342.484,327.243,355.756,19.239,20.309,19.239 +4737,148.137,326.405,460.818,225.408,615.113,322.771,466.424,122.949,105.452,122.949,342.095,328.024,355.456,19.130,20.390,19.130 +4738,148.170,322.978,460.195,229.047,617.685,319.935,465.290,120.849,100.037,120.849,343.012,328.514,354.880,19.330,19.729,19.330 +4739,148.202,320.779,459.492,232.352,619.558,318.138,464.258,118.991,93.879,118.991,343.940,328.348,354.837,19.304,19.379,19.304 +4740,148.233,319.009,458.182,235.396,621.029,316.233,463.512,117.512,87.248,117.512,342.072,328.774,354.091,19.327,19.151,19.327 +4741,148.264,317.500,458.000,238.253,622.455,314.934,463.131,116.565,79.947,116.565,342.118,329.436,353.592,18.783,19.809,18.783 +4742,148.293,315.640,457.411,240.419,623.505,313.212,462.544,115.318,72.277,115.318,341.902,330.226,353.260,18.719,21.565,18.719 +4743,148.323,315.268,455.760,243.011,623.078,312.690,461.442,114.408,65.355,114.408,339.488,328.400,351.967,19.100,21.351,19.100 +4744,148.354,315.268,455.760,243.011,623.078,312.690,461.442,114.408,65.355,114.408,339.488,328.400,351.967,19.100,21.351,19.100 +4745,148.384,314.296,455.588,244.825,622.972,312.056,460.668,113.789,57.395,113.789,340.163,327.105,351.268,19.048,21.242,19.048 +4746,148.415,314.384,454.990,246.009,622.556,312.077,460.285,113.532,48.879,113.532,338.756,325.780,350.308,19.209,21.858,19.209 +4747,148.446,313.633,454.435,245.653,622.988,311.098,460.412,112.989,40.601,112.989,337.463,324.636,350.448,18.970,26.032,18.970 +4748,148.476,313.744,454.544,245.665,622.143,311.364,460.161,112.964,32.106,112.964,337.354,323.728,349.555,19.367,26.342,19.367 +4749,148.507,313.891,454.031,245.557,620.771,311.545,459.575,112.932,24.362,112.932,336.295,323.097,348.335,19.376,26.693,19.376 +4750,148.539,313.713,453.432,244.811,619.878,311.292,459.181,112.834,15.479,112.834,335.330,322.345,347.806,19.015,26.999,19.015 +4751,148.571,314.360,453.004,244.346,618.805,311.900,458.786,113.051,6.710,113.051,334.819,320.554,347.386,18.990,26.172,18.990 +4752,148.602,314.760,452.905,242.581,617.897,312.203,458.841,113.311,177.546,113.311,334.317,319.478,347.245,19.331,25.876,19.331 +4753,148.633,315.703,452.634,241.057,617.666,312.814,459.180,113.811,169.249,113.811,333.623,320.663,347.933,19.164,25.059,19.164 +4754,148.663,316.654,452.661,238.680,616.469,313.542,459.508,114.444,158.962,114.444,332.698,321.143,347.740,19.283,24.052,19.283 +4755,148.693,318.245,452.267,236.493,616.395,314.375,460.466,115.263,151.157,115.263,330.375,321.968,348.508,19.205,20.642,19.205 +4756,148.723,320.895,449.907,234.542,616.412,315.353,461.225,116.092,142.125,116.092,324.622,323.284,349.825,19.865,20.085,19.865 +4757,148.754,320.895,449.907,234.542,616.412,315.353,461.225,116.092,142.125,116.092,324.622,323.284,349.825,19.865,20.085,19.865 +4758,148.784,325.294,445.438,232.560,616.582,316.548,462.170,117.597,133.479,117.597,313.744,324.229,351.504,18.288,19.930,18.288 +4759,148.815,341.720,420.006,230.906,616.935,317.707,463.385,118.968,124.778,118.968,253.594,326.221,352.758,18.107,20.489,18.107 +4760,148.846,326.116,453.623,228.590,616.278,319.822,464.521,120.008,115.241,120.008,328.914,327.542,354.084,18.532,20.404,18.532 +4761,148.877,325.026,459.668,226.873,615.960,321.305,465.707,121.636,107.382,121.636,340.726,328.340,354.913,19.141,20.697,19.141 +4762,148.908,326.578,461.896,225.111,614.942,323.398,466.698,123.509,98.403,123.509,344.216,327.975,355.735,19.063,19.583,19.063 +4763,148.938,329.493,463.209,223.500,613.500,326.013,468.081,125.538,90.000,125.538,343.861,327.000,355.834,19.181,19.000,19.181 +4764,148.969,332.534,464.478,221.928,611.434,328.847,469.239,127.747,81.285,127.747,343.735,326.998,355.780,19.181,19.683,19.181 +4765,149.000,335.581,466.718,220.004,608.315,332.133,470.769,130.400,72.443,130.400,344.200,325.121,354.840,19.411,20.092,19.411 +4766,149.032,338.600,468.209,218.386,604.813,335.172,471.926,132.685,63.517,132.685,343.609,323.787,353.723,19.097,20.981,19.097 +4767,149.065,342.664,470.157,215.115,599.935,338.924,473.821,135.587,54.638,135.587,342.922,320.389,353.393,19.272,21.887,19.272 +4768,149.095,346.623,472.932,211.875,594.672,342.744,476.339,138.711,45.576,138.711,342.510,317.581,352.834,19.059,21.777,19.059 +4769,149.125,350.208,476.693,207.275,590.305,346.066,479.919,142.079,36.451,142.079,344.153,315.622,354.654,19.015,24.935,19.015 +4770,149.156,353.859,480.960,204.085,581.899,350.560,483.209,145.713,27.072,145.713,345.250,314.917,353.235,19.304,22.577,19.304 +4771,149.187,353.859,480.960,204.085,581.899,350.560,483.209,145.713,27.072,145.713,345.250,314.917,353.235,19.304,22.577,19.304 +4772,149.215,358.529,485.050,200.144,576.093,353.841,487.800,149.601,18.563,149.601,343.618,312.753,354.490,19.482,23.360,19.482 +4773,149.246,365.226,489.481,196.063,568.618,357.311,493.358,153.905,9.421,153.905,338.203,312.358,355.830,19.391,22.265,19.391 +4774,149.277,373.552,493.379,192.572,562.931,360.017,498.793,158.199,1.348,158.199,329.424,311.243,358.578,19.684,20.159,19.684 +4775,149.307,385.905,498.104,189.529,555.031,362.589,505.219,163.030,173.978,163.030,311.374,311.542,360.128,19.093,21.119,19.093 +4776,149.338,440.783,495.579,186.921,547.349,364.094,512.355,167.661,167.179,167.661,204.111,311.645,361.117,19.599,20.187,19.599 +4777,149.369,369.015,519.123,185.114,538.837,362.743,519.907,172.875,161.336,172.875,344.568,312.141,357.211,20.094,23.782,20.094 +4778,149.401,368.010,527.428,184.690,530.796,361.956,527.572,178.636,154.561,178.636,342.474,312.691,354.586,20.613,22.600,20.613 +4779,149.433,367.786,534.758,185.011,521.572,362.557,534.313,4.865,147.246,4.865,345.475,312.800,355.972,24.020,22.241,24.020 +4780,149.463,369.353,544.689,186.750,511.611,364.293,543.682,11.258,139.821,11.258,350.456,312.284,360.776,24.900,23.294,24.900 +4781,149.493,371.798,556.473,191.026,502.024,367.314,555.001,18.166,131.849,18.166,358.595,311.745,368.035,25.283,19.050,25.283 +4782,149.525,367.900,569.700,195.449,491.306,363.541,567.520,26.565,124.224,26.565,359.112,310.660,368.860,25.491,18.203,25.491 +4783,149.555,367.900,569.700,195.449,491.306,363.541,567.520,26.565,124.224,26.565,359.112,310.660,368.860,25.491,18.203,25.491 +4784,149.587,363.462,580.808,201.902,480.950,359.147,577.931,33.690,116.822,33.690,358.891,309.477,369.262,25.239,18.129,25.239 +4785,149.619,356.579,592.141,210.106,471.037,352.629,588.662,41.379,109.220,41.379,358.868,307.986,369.394,24.923,18.244,24.923 +4786,149.650,347.621,602.534,218.361,461.758,343.812,598.112,49.254,101.991,49.254,358.699,306.127,370.372,24.139,20.170,24.139 +4787,149.680,336.383,611.893,229.706,453.902,333.370,607.166,57.490,94.316,57.490,358.709,304.794,369.921,23.158,19.040,23.158 +4788,149.711,324.177,621.317,241.952,447.534,321.134,614.524,65.862,86.401,65.862,354.652,303.972,369.538,21.932,19.195,21.932 +4789,149.742,311.666,638.518,255.423,443.238,306.562,620.588,74.110,79.004,74.110,331.866,304.164,369.151,23.490,18.391,23.490 +4790,149.773,296.075,636.082,269.506,439.651,294.464,622.301,83.333,70.880,83.333,340.874,303.960,368.624,26.753,18.191,26.753 +4791,149.804,276.802,627.051,284.725,438.379,276.858,621.700,90.607,63.130,90.607,356.086,304.553,366.788,26.126,20.600,26.126 +4792,149.836,262.457,624.659,299.438,439.014,263.308,619.525,99.402,55.561,99.402,357.569,305.715,367.977,25.481,22.763,25.481 +4793,149.868,251.388,619.333,313.640,442.022,253.017,614.579,108.920,47.265,108.920,355.730,308.050,365.781,20.326,24.302,20.326 +4794,149.900,239.002,613.034,326.581,446.508,241.644,607.920,117.319,39.472,117.319,353.268,311.133,364.781,19.817,24.384,19.817 +4795,149.930,228.284,605.203,338.766,452.874,231.923,600.108,125.538,32.057,125.538,351.300,314.078,363.822,19.762,23.559,19.762 +4796,149.960,219.621,595.715,349.486,460.125,224.099,591.001,133.531,24.575,133.531,349.486,316.809,362.490,19.285,23.989,19.285 +4797,149.989,212.327,586.038,358.233,469.862,217.364,581.994,141.240,17.192,141.240,347.174,319.156,360.095,19.483,21.545,19.483 +4798,150.021,212.327,586.038,358.233,469.862,217.364,581.994,141.240,17.192,141.240,347.174,319.156,360.095,19.483,21.545,19.483 +4799,150.050,206.120,576.374,365.933,479.368,212.616,572.430,148.736,9.560,148.736,343.502,320.922,358.702,19.630,21.092,19.630 +4800,150.081,201.082,566.569,371.144,488.783,208.876,563.069,155.813,2.213,155.813,339.829,322.571,356.917,19.211,21.453,19.211 +4801,150.112,196.645,557.315,375.223,499.256,206.615,554.140,162.338,175.113,162.338,333.697,324.126,354.623,19.489,21.876,19.489 +4802,150.143,126.019,561.596,377.451,508.238,205.156,545.769,168.690,169.479,168.690,191.213,324.410,352.620,18.435,20.043,18.435 +4803,150.173,177.868,540.145,378.542,518.515,204.343,537.470,174.232,162.860,174.232,297.225,325.113,350.444,19.738,20.612,19.738 +4804,150.205,191.500,527.500,378.709,528.840,204.855,527.500,0.000,156.218,0.000,321.000,324.716,347.709,23.000,23.234,23.000 +4805,150.238,196.002,519.478,378.133,539.010,205.799,520.330,4.970,147.907,4.970,326.940,324.359,346.609,25.036,25.085,25.036 +4806,150.270,199.824,511.968,376.369,548.099,207.579,513.378,10.305,139.441,10.305,328.791,324.094,344.556,25.581,25.831,25.581 +4807,150.303,202.256,506.436,374.180,557.086,209.312,508.277,14.621,130.717,14.621,329.116,324.640,343.700,25.284,26.727,25.284 +4808,150.333,204.983,500.494,371.213,565.758,211.670,502.809,19.093,122.005,19.093,328.564,326.267,342.717,25.660,26.606,25.660 +4809,150.364,207.900,494.293,368.602,572.544,214.522,497.182,23.575,113.385,23.575,328.271,325.889,342.722,25.880,26.047,25.880 +4810,150.394,211.462,489.322,365.665,579.414,217.743,492.628,27.759,104.421,27.759,328.444,327.434,342.639,25.942,24.738,25.942 +4811,150.424,215.030,485.277,363.563,585.653,221.290,489.137,31.661,95.599,31.661,328.807,328.952,343.518,25.351,24.822,25.351 +4812,150.454,215.030,485.277,363.563,585.653,221.290,489.137,31.661,95.599,31.661,328.807,328.952,343.518,25.351,24.822,25.351 +4813,150.482,217.679,481.711,359.511,590.523,223.555,485.799,34.824,87.299,34.824,328.505,329.954,342.821,25.163,20.722,25.163 +4814,150.514,219.875,478.290,358.077,595.286,226.762,483.628,37.776,78.746,37.776,326.955,332.412,344.383,25.076,21.537,25.076 +4815,150.545,222.218,474.896,355.886,599.041,229.534,481.150,40.525,70.288,40.525,326.043,333.517,345.293,25.599,20.419,25.599 +4816,150.576,223.327,471.730,354.196,601.896,231.933,479.774,43.063,61.980,43.063,321.860,334.703,345.421,24.997,20.258,24.997 +4817,150.607,217.937,466.571,352.528,604.106,231.777,480.532,45.248,53.306,45.248,306.226,334.794,345.543,18.097,20.097,18.097 +4818,150.637,199.798,441.163,350.500,606.000,235.231,477.031,45.349,45.000,45.349,244.680,334.461,345.517,21.730,19.092,21.730 +4819,150.668,228.031,465.972,349.102,606.703,236.587,475.597,48.366,37.047,48.366,319.725,334.200,345.481,24.665,19.567,24.665 +4820,150.698,233.084,466.844,347.170,607.311,238.584,473.504,50.450,29.376,50.450,327.356,333.760,344.632,25.172,21.024,25.172 +4821,150.728,234.536,467.150,345.346,607.896,238.983,472.812,51.854,21.269,51.854,329.466,332.571,343.865,24.085,23.535,24.085 +4822,150.759,235.744,465.815,342.870,608.383,239.973,471.386,52.802,12.325,52.802,328.679,332.846,342.668,24.162,25.450,24.162 +4823,150.789,235.744,465.815,342.870,608.383,239.973,471.386,52.802,12.325,52.802,328.679,332.846,342.668,24.162,25.450,24.162 +4824,150.820,236.557,464.327,341.880,609.095,241.082,470.469,53.616,4.316,53.616,327.531,329.854,342.789,24.745,26.020,24.745 +4825,150.854,236.979,464.155,340.512,609.708,241.300,470.165,54.284,176.594,54.284,327.625,328.027,342.428,23.941,26.715,23.941 +4826,150.886,237.334,463.618,339.011,610.515,241.731,469.827,54.689,168.503,54.689,326.852,327.316,342.069,23.767,26.824,23.767 +4827,150.918,237.805,462.935,337.798,610.417,242.126,469.093,54.944,160.866,54.944,326.230,327.040,341.276,24.495,27.109,24.495 +4828,150.948,237.301,462.836,336.872,610.687,241.744,469.175,54.972,152.650,54.972,325.483,326.558,340.964,23.640,26.585,23.640 +4829,150.978,237.084,462.830,336.230,610.827,241.465,469.056,54.866,144.917,54.866,325.729,326.966,340.955,23.716,26.556,23.716 +4830,151.009,237.187,463.014,335.981,610.904,241.514,469.083,54.507,137.083,54.507,325.727,326.930,340.633,24.472,25.914,24.472 +4831,151.039,236.629,463.499,336.547,611.220,241.120,469.678,53.988,129.289,53.988,325.922,327.665,341.200,24.608,26.033,24.608 +4832,151.072,235.665,464.516,336.996,610.997,240.091,470.442,53.244,120.867,53.244,326.409,328.585,341.202,23.846,24.695,23.846 +4833,151.104,234.854,464.871,338.390,610.952,239.682,471.130,52.359,113.499,52.359,326.192,329.428,342.002,24.884,24.282,24.884 +4834,151.141,233.724,465.994,340.047,610.663,238.741,472.232,51.189,106.587,51.189,326.711,331.132,342.723,25.020,24.041,25.020 +4835,151.173,232.026,467.523,340.973,609.346,236.897,473.294,49.830,98.531,49.830,327.091,331.393,342.194,24.532,20.125,24.532 +4836,151.206,230.234,468.704,344.541,608.001,235.788,474.899,48.122,91.580,48.122,326.763,332.232,343.403,24.365,21.130,24.365 +4837,151.239,228.281,470.362,347.094,606.403,234.268,476.621,46.273,84.958,46.273,326.226,332.883,343.549,24.664,19.630,24.664 +4838,151.271,226.273,472.028,350.450,603.909,232.716,478.274,44.108,78.551,44.108,326.014,333.805,343.960,25.563,19.478,25.563 +4839,151.303,223.060,473.724,354.250,600.739,230.494,480.310,41.540,72.316,41.540,325.123,333.695,344.985,25.665,19.635,25.665 +4840,151.333,220.037,476.829,358.112,597.095,227.960,483.168,38.660,66.801,38.660,325.310,334.044,345.603,25.300,19.827,25.300 +4841,151.363,216.662,480.142,362.162,592.182,225.197,486.206,35.395,61.645,35.395,325.128,334.241,346.067,25.335,20.338,25.335 +4842,151.394,213.322,484.024,365.979,586.814,222.290,489.580,31.779,56.976,31.779,325.613,333.701,346.712,25.345,19.787,25.345 +4843,151.425,209.906,488.998,369.370,580.976,219.331,493.935,27.646,52.943,27.646,325.311,333.598,346.592,25.563,18.958,25.563 +4844,151.455,209.906,488.998,369.370,580.976,219.331,493.935,27.646,52.943,27.646,325.311,333.598,346.592,25.563,18.958,25.563 +4845,151.487,206.580,495.210,373.062,573.595,216.095,499.230,22.906,49.574,22.906,326.410,332.889,347.068,25.857,19.792,25.857 +4846,151.520,204.059,501.218,376.175,565.756,213.268,504.246,18.199,46.532,18.199,328.549,332.524,347.938,25.597,19.353,25.597 +4847,151.551,200.875,508.949,378.748,556.760,210.454,511.126,12.804,44.100,12.804,328.797,331.759,348.444,24.866,19.715,24.866 +4848,151.583,198.855,516.684,380.251,547.165,207.911,517.820,7.150,41.966,7.150,331.050,330.767,349.304,25.286,19.532,25.286 +4849,151.613,197.077,526.295,380.860,536.389,205.993,526.426,0.843,40.170,0.843,332.155,329.602,349.990,23.321,20.026,23.321 +4850,151.644,197.548,538.504,380.341,525.073,205.189,537.736,174.266,38.660,174.266,335.726,328.590,351.083,19.454,20.303,19.454 +4851,151.675,198.259,549.187,378.330,513.707,205.326,547.605,167.386,37.110,167.386,337.977,327.411,352.462,19.722,21.159,19.722 +4852,151.705,200.434,559.569,374.448,501.662,206.467,557.376,160.017,36.254,160.017,340.974,326.218,353.814,19.479,19.676,19.479 +4853,151.737,204.360,570.816,368.999,489.818,209.539,568.112,152.433,35.380,152.433,343.494,324.571,355.179,19.770,20.360,19.770 +4854,151.769,209.335,581.659,362.000,478.449,213.966,578.365,144.574,34.136,144.574,345.722,322.273,357.088,19.389,20.160,19.389 +4855,151.801,216.264,592.199,354.283,466.137,220.917,587.779,136.469,32.234,136.469,348.108,320.128,360.943,19.357,23.248,19.357 +4856,151.831,225.072,601.991,343.796,456.841,228.774,597.259,128.039,30.858,128.039,350.919,317.101,362.937,19.641,23.259,19.641 +4857,151.861,235.584,610.699,331.897,448.562,238.562,605.432,119.485,29.570,119.485,352.881,314.920,364.983,19.545,23.409,19.545 +4858,151.892,247.855,617.755,317.732,443.356,249.720,612.860,110.854,28.301,110.854,354.749,312.364,365.224,19.669,20.386,19.669 +4859,151.921,247.855,617.755,317.732,443.356,249.720,612.860,110.854,28.301,110.854,354.749,312.364,365.224,19.669,20.386,19.669 +4860,151.950,263.659,624.035,303.256,438.998,264.747,619.137,102.529,27.031,102.529,358.369,310.876,368.405,24.513,20.997,24.513 +4861,151.980,274.036,625.623,288.532,436.617,274.232,620.787,92.324,25.221,92.324,359.516,309.128,369.197,26.303,21.273,26.303 +4862,152.011,289.081,626.048,273.938,436.343,288.536,621.294,83.457,23.499,83.457,361.252,307.418,370.821,26.678,22.528,26.678 +4863,152.043,308.141,624.172,258.475,439.580,306.840,619.134,75.519,21.938,75.519,361.482,306.593,371.888,24.738,21.231,24.738 +4864,152.074,322.658,617.747,243.693,444.976,320.809,613.611,65.914,20.256,65.914,361.786,305.603,370.848,23.416,20.584,23.416 +4865,152.107,336.843,609.991,230.850,451.950,334.127,605.857,56.702,18.435,56.702,360.784,305.160,370.676,24.896,20.871,24.896 +4866,152.140,348.484,600.064,219.329,460.530,345.207,596.456,47.751,16.557,47.751,360.752,304.970,370.501,24.977,21.554,24.977 +4867,152.172,358.717,588.771,209.122,471.128,354.455,585.335,38.884,14.682,38.884,358.698,304.976,369.647,25.763,20.699,25.763 +4868,152.205,367.184,576.349,201.242,482.286,361.678,573.128,30.329,12.995,30.329,355.942,305.809,368.701,26.229,22.036,26.229 +4869,152.237,372.386,566.360,195.238,494.059,365.336,563.495,22.119,10.605,22.119,352.230,306.165,367.449,20.877,21.277,20.877 +4870,152.269,381.334,554.307,191.464,506.275,366.524,550.547,14.247,8.188,14.247,330.584,307.880,361.143,21.679,20.223,21.679 +4871,152.299,441.144,547.324,188.437,517.863,364.393,537.926,6.981,6.030,6.981,199.530,306.730,354.179,20.946,21.094,20.946 +4872,152.329,406.500,527.000,187.722,529.553,363.361,527.000,0.000,3.683,0.000,265.000,308.165,351.278,20.000,21.355,20.000 +4873,152.359,388.264,514.988,187.557,541.559,363.705,518.123,172.725,0.739,172.725,305.879,309.155,355.396,20.557,21.153,20.557 +4874,152.388,388.264,514.988,187.557,541.559,363.705,518.123,172.725,0.739,172.725,305.879,309.155,355.396,20.557,21.153,20.557 +4875,152.418,383.550,504.236,189.429,551.870,364.704,508.909,166.073,178.708,166.073,322.091,311.101,360.925,20.016,19.965,20.016 +4876,152.449,376.217,495.446,192.183,561.414,361.030,501.041,159.775,176.040,159.775,326.247,311.915,358.617,19.853,20.267,19.853 +4877,152.480,371.449,486.415,195.277,570.549,356.630,493.758,153.638,173.468,153.638,324.267,313.190,357.344,20.188,21.099,20.188 +4878,152.511,365.421,478.406,199.296,578.369,351.938,486.765,148.205,170.329,148.205,324.272,314.498,356.001,19.787,20.472,19.787 +4879,152.542,358.373,472.478,203.643,585.400,346.989,481.082,142.919,167.428,142.919,325.972,315.416,354.512,19.500,21.494,19.500 +4880,152.572,350.271,468.464,208.567,592.460,341.702,476.194,137.948,164.307,137.948,330.385,316.773,353.466,19.524,20.428,19.524 +4881,152.603,344.060,463.936,213.485,598.057,336.619,471.852,133.229,160.974,133.229,330.855,317.808,352.584,19.556,19.983,19.556 +4882,152.633,338.015,459.918,218.644,603.636,331.196,468.420,128.731,157.590,128.731,330.004,318.688,351.802,19.704,20.081,19.704 +4883,152.663,331.862,457.281,223.978,608.338,326.059,465.717,124.519,154.699,124.519,330.237,319.877,350.716,19.114,20.350,19.114 +4884,152.693,326.116,454.540,229.275,612.282,321.037,463.171,120.477,151.074,120.477,330.072,320.914,350.101,19.372,20.061,19.372 +4885,152.723,320.600,452.300,234.877,616.095,316.069,461.363,116.565,147.653,116.565,329.149,321.961,349.414,19.230,20.867,19.230 +4886,152.754,320.600,452.300,234.877,616.095,316.069,461.363,116.565,147.653,116.565,329.149,321.961,349.414,19.230,20.867,19.230 +4887,152.783,315.326,450.116,239.717,618.796,311.275,459.708,112.895,143.791,112.895,327.965,322.990,348.790,19.636,20.027,19.636 +4888,152.815,310.202,448.598,245.179,621.408,306.701,458.568,109.348,140.301,109.348,326.919,323.922,348.053,19.475,20.426,19.475 +4889,152.845,305.003,447.361,250.536,623.947,302.040,457.695,106.001,136.701,106.001,326.516,324.860,348.016,19.543,20.924,19.543 +4890,152.876,300.122,446.700,255.627,625.687,297.797,457.064,102.644,132.969,102.644,326.286,325.816,347.529,19.289,20.258,19.289 +4891,152.907,295.451,445.988,260.423,627.020,293.683,456.671,99.397,128.873,99.397,325.332,327.185,346.987,19.520,19.368,19.520 +4892,152.939,290.581,445.674,265.728,628.458,289.367,456.729,96.269,125.087,96.269,324.322,327.940,346.566,19.180,19.774,19.180 +4893,152.971,286.431,445.147,271.155,629.396,285.728,456.738,93.468,121.185,93.468,323.225,328.760,346.448,18.784,19.586,18.784 +4894,153.002,281.373,445.507,276.199,630.080,281.328,457.041,90.224,116.887,90.224,323.048,329.187,346.115,18.172,20.175,18.172 +4895,153.034,277.460,446.294,281.500,630.500,277.981,457.578,87.357,113.199,87.357,323.210,330.367,345.801,18.811,20.746,18.811 +4896,153.064,273.322,446.718,287.043,630.661,274.464,458.136,84.289,108.853,84.289,322.890,330.830,345.840,19.403,20.404,19.403 +4897,153.094,269.005,447.032,292.216,630.822,270.879,459.057,81.142,104.845,81.142,321.663,332.832,346.004,19.941,21.568,19.941 +4898,153.125,264.809,447.689,298.100,630.738,267.484,460.244,77.975,100.587,77.975,320.588,333.991,346.263,20.811,21.028,20.811 +4899,153.156,264.809,447.689,298.100,630.738,267.484,460.244,77.975,100.587,77.975,320.588,333.991,346.263,20.811,21.028,20.811 +4900,153.190,255.861,450.689,309.752,628.139,259.869,462.552,71.333,92.899,71.333,320.642,334.685,345.686,20.984,21.062,20.984 +4901,153.232,252.173,453.311,316.110,626.498,256.520,464.049,67.964,88.854,67.964,322.710,333.333,345.879,22.335,19.756,22.335 +4902,153.263,247.422,454.614,322.208,624.435,252.849,465.897,64.312,84.766,64.312,320.827,335.169,345.869,22.655,19.582,22.655 +4903,153.293,242.475,456.362,328.248,621.041,248.797,467.614,60.668,80.672,60.668,319.543,334.551,345.356,23.455,19.583,23.455 +4904,153.323,237.807,459.349,334.540,617.631,244.793,470.006,56.753,76.541,56.753,319.844,334.736,345.330,23.510,20.174,23.510 +4905,153.358,233.339,462.664,340.406,613.657,240.798,472.442,52.664,72.593,52.664,320.785,334.962,345.380,24.193,19.899,24.193 +4906,153.389,233.339,462.664,340.406,613.657,240.798,472.442,52.664,72.593,52.664,320.785,334.962,345.380,24.193,19.899,24.193 +4907,153.417,229.369,467.228,346.609,608.862,236.697,475.471,48.366,68.369,48.366,323.379,334.808,345.438,24.332,19.954,24.332 +4908,153.448,224.717,471.002,352.603,603.472,232.920,478.898,43.905,64.404,43.905,322.463,335.006,345.235,25.703,19.949,25.703 +4909,153.480,219.823,475.960,358.382,597.133,228.377,482.923,39.144,60.479,39.144,323.788,334.523,345.848,25.233,20.580,25.233 +4910,153.511,215.016,481.327,363.891,590.235,224.323,487.626,34.087,56.470,34.087,323.714,334.210,346.191,25.499,20.428,25.499 +4911,153.542,210.772,487.637,368.756,582.304,220.284,492.865,28.793,52.580,28.793,324.680,333.444,346.388,25.643,20.383,25.643 +4912,153.573,206.862,494.655,372.857,573.487,216.243,498.676,23.199,48.671,23.199,326.428,333.016,346.841,25.473,19.838,25.473 +4913,153.604,202.654,502.950,376.692,563.806,212.509,505.961,16.991,44.770,16.991,327.232,331.679,347.841,25.503,19.958,25.503 +4914,153.637,200.158,511.532,379.350,553.330,209.606,513.366,10.983,40.855,10.983,329.248,331.348,348.497,24.700,19.993,24.700 +4915,153.668,197.914,521.100,380.728,541.680,207.173,521.810,4.385,37.131,4.385,330.560,331.204,349.132,24.099,20.250,24.099 +4916,153.698,197.264,533.650,380.363,529.731,205.458,533.289,177.474,33.294,177.474,333.382,330.867,349.785,19.187,19.687,19.187 +4917,153.728,197.394,544.477,379.863,517.241,205.328,543.112,170.242,29.604,170.242,336.688,327.943,352.790,19.315,21.065,19.315 +4918,153.759,199.039,555.910,376.501,504.077,206.347,553.636,162.719,25.974,162.719,339.080,327.324,354.389,19.628,21.875,19.628 +4919,153.790,202.680,567.256,371.918,490.890,209.339,564.126,154.824,22.733,154.824,341.864,325.623,356.579,19.326,22.306,19.326 +4920,153.821,202.680,567.256,371.918,490.890,209.339,564.126,154.824,22.733,154.824,341.864,325.623,356.579,19.326,22.306,19.326 +4921,153.849,207.496,578.722,365.186,478.889,213.486,574.768,146.571,19.440,146.571,344.493,323.668,358.848,19.725,21.633,19.725 +4922,153.881,214.465,589.717,356.784,467.980,219.431,585.290,138.285,16.107,138.285,347.875,320.195,361.180,19.289,20.993,19.289 +4923,153.912,223.524,600.032,346.033,457.855,227.449,595.299,129.673,12.858,129.673,350.691,318.249,362.989,19.229,20.940,19.229 +4924,153.943,233.955,609.576,333.450,449.288,237.163,604.210,120.879,9.752,120.879,352.255,315.992,364.759,19.938,20.681,19.938 +4925,153.974,246.866,617.149,319.746,442.647,249.080,611.704,112.122,6.754,112.122,354.692,314.421,366.446,19.944,20.214,19.944 +4926,154.006,262.282,623.649,304.440,438.432,263.540,618.257,103.134,3.691,103.134,357.757,311.964,368.830,24.281,19.669,24.281 +4927,154.038,273.144,625.983,289.005,437.110,273.383,620.954,92.726,0.785,92.726,358.689,310.204,368.759,26.446,18.135,26.446 +4928,154.070,289.124,626.542,273.526,437.302,288.585,621.669,83.682,178.122,83.682,360.004,309.457,369.808,26.069,18.105,26.069 +4929,154.102,307.960,623.846,257.094,440.199,306.779,619.281,75.489,175.515,75.489,362.206,309.246,371.637,24.738,18.121,24.738 +4930,154.132,323.216,617.634,241.717,445.208,321.229,613.255,65.601,172.950,65.601,362.153,308.228,371.770,23.471,19.126,23.471 +4931,154.162,336.765,608.976,228.149,453.381,334.489,605.575,56.208,170.380,56.208,363.067,308.582,371.252,24.031,18.115,24.031 +4932,154.193,349.114,598.785,216.083,462.563,345.831,595.272,46.931,167.863,46.931,361.484,309.053,371.100,25.235,18.901,25.235 +4933,154.223,358.658,586.512,205.692,473.236,355.019,583.681,37.875,165.366,37.875,362.137,309.259,371.357,25.786,19.491,25.786 +4934,154.254,365.884,573.504,197.842,485.607,361.920,571.303,29.039,162.820,29.039,361.028,309.898,370.097,25.911,18.263,25.911 +4935,154.285,365.884,573.504,197.842,485.607,361.920,571.303,29.039,162.820,29.039,361.028,309.898,370.097,25.911,18.263,25.911 +4936,154.313,370.854,560.576,191.439,497.327,366.113,558.791,20.635,160.523,20.635,360.124,310.691,370.257,25.739,21.764,25.739 +4937,154.344,369.831,547.073,187.447,510.095,364.917,545.974,12.602,157.791,12.602,351.973,311.652,362.044,25.377,21.639,25.377 +4938,154.375,367.932,535.261,185.038,522.081,362.648,534.802,4.962,154.783,4.962,345.479,313.068,356.088,24.894,23.270,24.894 +4939,154.406,367.447,526.115,184.498,534.277,361.872,526.330,177.791,151.113,177.791,343.940,314.121,355.098,20.990,22.040,20.990 +4940,154.437,367.787,516.136,185.109,545.438,362.558,516.951,171.140,146.999,171.140,348.855,315.381,359.439,20.854,22.157,20.854 +4941,154.469,368.625,506.451,186.831,556.195,362.639,508.081,164.764,142.287,164.764,352.137,317.160,364.545,20.089,21.598,20.089 +4942,154.500,363.259,498.651,189.684,565.729,358.603,500.435,159.037,136.824,159.037,352.224,318.442,362.197,19.580,20.401,19.580 +4943,154.531,359.958,491.362,192.733,574.269,354.576,494.029,153.638,130.914,153.638,349.268,320.060,361.283,19.752,19.698,19.752 +4944,154.562,355.226,485.587,196.468,582.321,350.441,488.500,148.663,124.414,148.663,349.406,321.785,360.610,19.831,19.375,19.831 +4945,154.592,350.559,480.803,200.272,589.364,346.280,483.883,144.260,117.358,144.260,349.704,323.403,360.249,19.450,19.562,19.450 +4946,154.622,346.224,476.661,204.863,595.313,342.313,479.913,140.254,109.935,140.254,348.766,324.653,358.937,19.125,19.605,19.125 +4947,154.652,346.224,476.661,204.863,595.313,342.313,479.913,140.254,109.935,140.254,348.766,324.653,358.937,19.125,19.605,19.125 +4948,154.680,342.477,472.752,208.929,600.485,338.425,476.589,136.557,102.022,136.557,347.273,325.751,358.433,19.142,20.512,19.142 +4949,154.712,338.435,469.594,213.645,605.010,334.777,473.494,133.163,93.888,133.163,346.894,325.356,357.586,19.290,20.002,19.290 +4950,154.744,335.112,466.796,218.621,608.912,331.496,471.080,130.172,85.493,130.172,345.053,325.748,356.266,19.253,19.511,19.253 +4951,154.776,331.888,464.358,223.216,611.949,328.408,468.912,127.384,76.775,127.384,343.584,326.496,355.047,19.107,19.913,19.107 +4952,154.807,329.086,461.819,227.657,614.521,325.563,466.879,124.848,67.511,124.848,341.886,326.400,354.218,19.063,21.569,19.063 +4953,154.838,325.968,460.384,232.144,615.521,323.126,464.838,122.538,59.237,122.538,341.367,325.161,351.934,18.898,22.055,18.898 +4954,154.871,323.378,458.757,234.714,617.395,320.398,463.843,120.366,49.686,120.366,339.815,323.905,351.604,19.419,24.654,19.419 +4955,154.903,321.000,457.187,237.271,618.508,318.034,462.657,118.474,40.426,118.474,338.561,323.218,351.007,19.279,26.023,19.279 +4956,154.934,318.900,455.700,239.726,618.797,316.113,461.274,116.565,31.122,116.565,337.646,322.429,350.109,19.230,26.167,19.230 +4957,154.964,316.677,454.881,241.862,618.845,314.136,460.317,115.064,21.801,115.064,336.435,321.996,348.435,19.225,26.554,19.225 +4958,154.994,314.966,453.582,243.487,618.758,312.476,459.261,113.679,12.265,113.679,335.146,321.024,347.550,19.022,27.106,19.022 +4959,155.025,313.312,452.656,244.685,619.346,310.839,458.672,112.350,2.904,112.350,334.513,319.604,347.521,19.323,25.952,19.323 +4960,155.056,313.312,452.656,244.685,619.346,310.839,458.672,112.350,2.904,112.350,334.513,319.604,347.521,19.323,25.952,19.323 +4961,155.087,311.690,452.154,245.750,619.599,309.347,458.208,111.148,172.504,111.148,333.947,320.370,346.931,19.428,25.856,19.428 +4962,155.118,310.624,450.827,246.090,619.786,308.080,457.772,110.118,162.553,110.118,332.109,321.005,346.901,19.447,23.959,19.447 +4963,155.149,309.763,450.505,246.323,621.128,307.038,458.226,109.440,152.765,109.440,331.267,322.534,347.644,19.415,22.595,19.415 +4964,155.180,309.456,449.022,246.838,621.948,306.293,458.285,108.853,142.997,108.853,328.614,323.807,348.191,19.850,21.042,19.850 +4965,155.210,308.495,446.469,246.969,623.003,304.643,458.376,107.928,133.100,107.928,323.743,325.700,348.773,19.365,19.641,19.365 +4966,155.242,309.304,441.072,248.077,624.885,303.678,458.828,107.580,123.690,107.580,312.936,327.550,350.189,18.235,19.969,18.235 +4967,155.273,314.536,421.745,249.256,626.111,303.045,458.993,107.146,113.499,107.146,273.137,328.790,351.097,17.973,20.255,17.973 +4968,155.303,307.414,444.082,249.912,627.099,302.841,459.461,106.562,103.459,106.562,319.451,330.530,351.540,18.664,19.492,18.664 +4969,155.334,304.088,452.910,251.515,628.463,302.081,459.739,106.375,94.416,106.375,338.036,332.327,352.271,19.234,20.168,19.234 +4970,155.364,303.962,452.964,253.652,629.402,301.921,459.936,106.314,85.117,106.314,337.874,332.778,352.402,19.195,21.179,19.195 +4971,155.395,304.100,453.059,254.853,628.912,302.204,459.508,106.390,75.964,106.390,338.317,331.546,351.762,19.187,22.556,19.187 +4972,155.426,304.100,453.059,255.198,628.193,302.315,459.131,106.390,66.274,106.390,338.317,329.879,350.975,19.187,21.565,19.187 +4973,155.456,304.100,453.059,255.198,628.193,302.315,459.131,106.390,66.274,106.390,338.317,329.879,350.975,19.187,21.565,19.187 +4974,155.484,304.933,453.222,256.038,627.308,303.252,458.770,106.858,56.310,106.858,338.381,328.383,349.974,19.430,21.356,19.430 +4975,155.516,305.053,452.755,254.835,627.199,303.232,458.739,106.928,45.744,106.928,337.997,326.803,350.506,19.175,25.013,19.175 +4976,155.548,305.774,452.523,254.276,626.125,303.891,458.548,107.354,36.384,107.354,336.872,324.988,349.496,19.090,26.058,19.090 +4977,155.579,306.317,452.319,253.300,624.400,304.447,458.154,107.776,26.565,107.776,335.594,323.783,347.848,19.292,26.386,19.292 +4978,155.610,307.600,451.700,251.824,623.066,305.581,457.756,108.435,17.241,108.435,334.885,323.503,347.653,19.290,26.841,19.290 +4979,155.639,309.059,451.546,250.295,621.548,306.916,457.668,109.290,6.870,109.290,333.796,321.219,346.768,19.443,26.471,19.443 +4980,155.671,309.864,451.677,247.993,620.854,307.598,457.919,109.952,177.357,109.952,333.706,320.582,346.989,19.443,25.988,19.443 +4981,155.703,311.532,451.346,245.310,619.592,308.958,458.102,110.863,168.198,110.863,332.679,320.496,347.138,19.538,25.304,19.538 +4982,155.733,313.403,451.267,242.397,618.967,310.351,458.843,111.943,157.659,111.943,331.497,321.246,347.833,19.432,23.047,19.432 +4983,155.764,315.870,451.400,239.647,618.412,312.237,459.755,113.499,149.036,113.499,330.664,322.074,348.885,19.219,20.923,19.219 +4984,155.795,318.305,449.229,236.900,618.110,313.156,460.558,114.444,140.977,114.444,325.084,323.633,349.971,19.449,20.214,19.449 +4985,155.825,322.573,445.475,234.658,618.081,314.709,461.694,115.866,133.025,115.866,315.235,324.881,351.286,19.114,19.690,19.114 +4986,155.856,322.573,445.475,234.658,618.081,314.709,461.694,115.866,133.025,115.866,315.235,324.881,351.286,19.114,19.690,19.114 +4987,155.885,330.884,433.506,232.858,617.991,315.900,462.514,117.319,126.119,117.319,287.198,325.845,352.496,18.016,19.671,18.016 +4988,155.917,356.809,391.350,230.942,617.678,317.431,463.544,118.610,120.018,118.610,188.987,326.720,353.457,18.037,20.088,18.037 +4989,155.947,323.497,457.563,228.681,616.635,319.395,464.710,119.855,114.001,119.855,337.362,328.160,353.842,18.575,20.978,18.575 +4990,155.978,324.633,460.008,227.102,616.192,321.123,465.718,121.578,108.217,121.578,341.451,327.949,354.855,19.250,21.258,19.250 +4991,156.011,327.339,462.382,224.559,614.511,324.123,467.160,123.944,101.041,123.944,344.151,327.890,355.670,19.304,20.061,19.304 +4992,156.043,330.032,463.705,222.536,612.939,326.572,468.463,126.027,93.633,126.027,344.301,327.056,356.067,19.410,19.279,19.410 +4993,156.074,333.412,465.325,220.021,610.390,329.702,469.948,128.746,85.875,128.746,344.507,326.388,356.362,18.920,19.752,18.920 +4994,156.105,336.838,467.745,217.433,606.691,333.314,471.710,131.634,77.829,131.634,345.137,325.189,355.746,19.017,19.838,19.017 +4995,156.138,341.063,470.066,214.835,602.493,337.162,473.990,134.832,69.199,134.832,343.686,323.604,354.752,19.052,20.430,19.052 +4996,156.170,345.455,473.088,212.225,597.820,341.567,476.557,138.254,60.981,138.254,344.063,322.177,354.485,18.974,21.159,18.974 +4997,156.201,349.882,476.848,208.196,591.449,345.961,479.908,142.028,52.740,142.028,344.513,318.591,354.460,18.996,21.673,18.996 +4998,156.232,353.941,481.095,204.830,584.531,350.287,483.577,145.823,43.980,145.823,345.262,316.140,354.097,19.355,22.091,19.355 +4999,156.262,358.139,486.213,201.196,576.776,354.597,488.254,150.054,34.749,150.054,346.044,314.014,354.220,19.402,21.748,19.402 +5000,156.292,362.417,491.938,197.319,568.740,358.406,493.835,154.687,25.814,154.687,346.422,312.675,355.295,19.179,22.082,19.179 +5001,156.322,369.295,497.448,193.605,559.982,361.719,500.267,159.590,16.699,159.590,340.604,311.294,356.769,19.355,22.413,19.355 +5002,156.353,369.295,497.448,193.605,559.982,361.719,500.267,159.590,16.699,159.590,340.604,311.294,356.769,19.355,22.413,19.355 +5003,156.383,375.113,504.735,190.449,551.659,364.917,507.531,164.662,7.662,164.662,338.707,310.850,359.852,19.629,22.004,19.629 +5004,156.414,395.706,510.453,187.919,543.259,364.372,515.890,170.156,178.760,170.156,293.464,310.187,357.069,19.984,21.506,19.984 +5005,156.444,372.066,524.372,186.658,533.383,363.308,525.033,175.684,169.661,175.684,335.988,312.425,353.554,20.432,22.447,20.432 +5006,156.476,367.903,531.356,185.528,524.582,362.514,531.118,2.526,160.866,2.526,343.416,311.307,354.204,23.815,21.691,23.815 +5007,156.507,368.573,540.614,187.000,515.500,364.167,539.913,9.039,151.821,9.039,348.683,311.887,357.605,25.587,20.211,25.587 +5008,156.540,370.626,552.262,189.675,505.053,366.323,551.039,15.866,142.896,15.866,356.036,311.828,364.981,25.131,20.511,25.131 +5009,156.573,369.739,564.245,193.733,494.190,365.256,562.335,23.078,133.264,23.078,359.268,310.770,369.015,25.471,18.205,25.471 +5010,156.604,365.573,576.363,199.931,483.635,361.269,573.795,30.822,124.287,30.822,359.468,310.136,369.493,25.207,18.027,25.207 +5011,156.636,358.592,588.666,207.391,473.419,354.591,585.393,39.289,115.201,39.289,359.327,308.277,369.665,25.611,18.203,25.611 +5012,156.666,350.092,599.554,216.680,463.976,346.444,595.634,47.060,105.814,47.060,358.856,306.726,369.564,24.392,18.236,24.392 +5013,156.697,339.691,609.905,226.515,455.444,336.137,604.768,55.325,96.546,55.325,357.843,304.673,370.338,23.472,19.625,23.472 +5014,156.727,327.301,618.841,238.630,448.554,324.248,612.589,63.979,87.754,63.979,356.021,303.551,369.937,23.195,18.927,23.195 +5015,156.758,316.111,630.622,251.846,443.933,312.265,618.414,72.516,79.099,72.516,343.544,304.159,369.144,22.080,18.781,22.080 +5016,156.789,296.721,638.650,265.530,440.489,293.641,622.634,79.114,70.427,79.114,335.733,303.037,368.352,26.703,18.132,26.703 +5017,156.821,296.721,638.650,265.530,440.489,293.641,622.634,79.114,70.427,79.114,335.733,303.037,368.352,26.703,18.132,26.703 +5018,156.851,285.774,628.458,280.782,438.310,285.728,622.145,89.583,61.699,89.583,355.107,303.763,367.733,26.028,20.860,26.028 +5019,156.881,269.990,625.570,295.772,438.141,270.698,620.615,98.130,52.507,98.130,358.362,305.167,368.373,25.880,23.075,25.880 +5020,156.913,253.932,620.772,310.075,440.483,255.336,615.954,106.250,43.264,106.250,357.521,307.814,367.558,21.638,23.474,21.638 +5021,156.943,241.793,614.594,323.716,444.711,244.294,609.348,115.500,33.977,115.500,353.959,310.939,365.582,19.952,23.670,19.952 +5022,156.973,230.541,606.537,336.515,450.467,234.075,601.283,123.925,24.998,123.925,351.968,313.661,364.630,19.540,24.576,19.540 +5023,157.005,221.102,597.233,347.118,459.518,225.042,592.884,132.184,16.285,132.184,349.862,317.321,361.599,19.544,20.945,19.544 +5024,157.036,213.037,587.444,356.962,467.938,218.159,583.183,140.242,7.782,140.242,347.495,318.869,360.819,19.413,21.190,19.413 +5025,157.067,206.346,577.454,364.490,478.051,212.712,573.472,147.975,179.393,147.975,343.545,321.088,358.562,19.268,19.151,19.268 +5026,157.098,199.804,568.073,370.063,487.900,208.924,563.899,155.410,170.465,155.410,336.244,322.710,356.301,19.481,22.937,19.481 +5027,157.128,128.966,578.198,373.854,497.905,206.111,554.041,162.613,162.870,162.613,192.028,322.979,353.706,18.595,19.970,18.595 +5028,157.159,184.240,548.906,376.232,509.981,204.326,545.100,169.269,154.290,169.269,309.990,323.393,350.877,20.126,21.057,20.126 +5029,157.189,184.240,548.906,376.232,509.981,204.326,545.100,169.269,154.290,169.269,309.990,323.393,350.877,20.126,21.057,20.126 +5030,157.218,192.784,536.807,377.577,522.115,203.783,535.986,175.732,146.310,175.732,326.629,323.113,348.688,19.349,23.575,19.349 +5031,157.248,195.914,527.220,377.801,533.039,204.402,527.489,1.818,137.816,1.818,329.992,322.954,346.977,18.911,25.356,18.911 +5032,157.280,198.986,516.107,376.611,544.090,206.196,517.047,7.431,129.207,7.431,330.418,323.873,344.961,25.480,26.386,25.480 +5033,157.310,201.288,509.453,374.568,554.334,208.000,510.944,12.529,120.466,12.529,330.277,325.203,344.028,24.839,26.466,24.839 +5034,157.345,204.111,502.081,372.362,563.149,210.880,504.235,17.650,112.306,17.650,329.279,325.375,343.487,25.556,26.308,25.556 +5035,157.377,207.467,496.222,369.832,571.606,213.940,498.887,22.380,104.574,22.380,329.675,326.717,343.675,25.510,25.686,25.510 +5036,157.408,211.286,490.537,366.055,579.120,217.302,493.618,27.121,96.483,27.121,329.229,328.206,342.748,25.529,23.079,25.529 +5037,157.439,214.889,485.026,364.179,585.969,221.436,489.079,31.759,88.472,31.759,329.336,330.309,344.736,25.346,23.738,25.346 +5038,157.473,218.284,480.688,360.382,591.938,224.834,485.354,35.463,80.789,35.463,328.394,331.774,344.479,25.695,21.263,25.695 +5039,157.505,220.536,476.872,357.435,597.019,227.906,482.813,38.868,73.431,38.868,326.104,333.233,345.037,24.996,20.833,24.996 +5040,157.537,222.825,473.051,354.962,601.076,231.049,480.480,42.089,66.203,42.089,323.413,334.161,345.579,24.968,20.044,24.968 +5041,157.569,223.431,468.586,352.600,604.150,233.583,478.800,45.171,59.789,45.171,316.812,335.005,345.613,23.332,20.139,23.332 +5042,157.599,216.979,460.180,349.849,606.792,233.819,478.493,47.397,53.973,47.397,296.199,335.037,345.956,18.349,19.116,18.349 +5043,157.629,181.850,414.117,347.758,608.827,235.617,477.064,49.497,48.387,49.497,180.478,335.089,346.046,17.837,19.536,17.837 +5044,157.659,227.869,462.036,345.302,610.213,238.321,474.337,49.645,42.979,49.645,313.347,334.777,345.631,23.284,19.753,23.284 +5045,157.689,227.869,462.036,345.302,610.213,238.321,474.337,49.645,42.979,49.645,313.347,334.777,345.631,23.284,19.753,23.284 +5046,157.717,235.495,464.493,344.050,610.770,241.248,472.219,53.326,37.003,53.326,325.783,334.201,345.048,24.300,21.169,24.300 +5047,157.748,238.607,464.077,341.324,611.876,243.039,470.431,55.107,30.282,55.107,328.983,333.564,344.479,24.901,21.129,24.901 +5048,157.780,240.699,463.355,338.192,613.101,244.496,469.130,56.674,22.868,56.674,329.724,333.390,343.546,24.540,23.630,24.540 +5049,157.811,241.780,462.067,335.716,614.118,245.544,468.134,58.181,14.250,58.181,328.898,331.815,343.176,23.378,26.308,23.378 +5050,157.842,243.140,460.799,333.373,614.810,246.770,466.975,59.558,5.548,59.558,328.342,329.819,342.669,23.139,26.714,23.139 +5051,157.875,244.834,459.712,331.396,615.635,248.332,465.963,60.767,176.798,60.767,328.026,327.774,342.351,23.850,26.755,23.850 +5052,157.906,245.447,458.796,328.614,616.554,248.957,465.359,61.863,168.408,61.863,326.895,326.559,341.782,22.858,26.901,22.858 +5053,157.938,246.305,457.798,326.294,617.278,249.877,464.732,62.745,159.305,62.745,325.607,326.438,341.209,22.602,26.879,22.602 +5054,157.969,247.600,457.200,324.020,618.034,251.009,464.018,63.435,150.068,63.435,325.571,326.480,340.816,23.255,26.445,23.255 +5055,157.999,248.423,457.092,322.235,619.013,251.669,463.765,64.058,140.774,64.058,326.106,327.097,340.948,23.234,25.864,23.234 +5056,158.029,248.544,456.843,320.619,619.792,251.722,463.539,64.612,131.186,64.612,326.581,327.747,341.404,22.371,24.365,22.371 +5057,158.060,249.195,456.290,319.539,620.837,252.544,463.407,64.799,122.005,64.799,326.214,329.023,341.944,22.993,22.790,22.993 +5058,158.091,249.246,456.760,318.383,621.657,252.511,463.787,65.084,112.319,65.084,326.360,330.332,341.856,22.193,21.949,22.193 +5059,158.123,249.246,456.760,318.383,621.657,252.511,463.787,65.084,112.319,65.084,326.360,330.332,341.856,22.193,21.949,22.193 +5060,158.152,249.606,456.584,317.729,623.497,253.177,464.236,64.983,102.489,64.983,326.347,333.856,343.235,22.957,23.098,22.957 +5061,158.183,248.749,455.980,319.765,623.817,252.955,464.972,64.933,94.672,64.933,324.528,333.178,344.381,22.061,19.771,22.061 +5062,158.214,247.733,453.975,321.885,624.509,253.248,465.667,64.747,85.601,64.747,320.032,334.627,345.887,22.679,19.941,22.679 +5063,158.244,243.482,451.319,323.534,623.875,250.886,466.656,64.231,76.779,64.231,312.274,335.199,346.335,18.663,19.863,18.663 +5064,158.276,229.507,425.014,325.286,623.479,250.336,467.390,63.825,67.925,63.825,251.848,335.380,346.286,17.842,19.466,17.842 +5065,158.306,240.819,447.368,326.933,622.438,251.246,466.678,61.631,58.938,61.631,302.142,335.800,346.033,21.329,19.121,21.329 +5066,158.339,246.031,458.244,329.476,621.102,250.615,467.054,62.515,50.095,62.515,326.249,334.683,346.112,22.927,19.500,22.927 +5067,158.372,245.721,459.423,331.652,618.896,249.780,466.885,61.460,41.342,61.460,328.322,333.858,345.310,23.734,20.502,23.734 +5068,158.405,244.480,461.296,333.018,617.706,248.101,467.664,60.381,33.136,60.381,330.159,333.149,344.810,23.331,21.632,23.331 +5069,158.438,243.088,462.147,334.382,615.846,246.546,467.910,59.036,24.667,59.036,330.649,333.288,344.091,23.324,24.078,23.324 +5070,158.470,241.213,462.816,336.585,613.542,244.872,468.586,57.619,15.068,57.619,329.400,331.503,343.065,23.749,25.403,23.749 +5071,158.502,239.161,463.391,338.756,611.737,243.252,469.418,55.834,6.226,55.834,328.214,329.391,342.782,23.916,26.750,23.916 +5072,158.532,236.764,464.398,340.548,609.658,241.100,470.365,54.000,177.639,54.000,327.535,327.588,342.288,23.858,26.781,23.858 +5073,158.563,234.762,465.687,342.864,607.772,239.324,471.512,51.931,169.426,51.931,327.434,327.359,342.233,24.928,26.791,24.928 +5074,158.594,231.572,467.287,345.065,605.188,236.625,473.243,49.692,161.012,49.692,325.914,326.442,341.535,24.561,26.792,24.561 +5075,158.623,228.810,469.140,347.454,602.412,234.145,474.890,47.150,152.301,47.150,325.412,326.158,341.100,24.517,26.606,24.517 +5076,158.653,228.810,469.140,347.454,602.412,234.145,474.890,47.150,152.301,47.150,325.412,326.158,341.100,24.517,26.606,24.517 +5077,158.681,225.920,471.542,350.065,599.589,231.612,477.124,44.438,143.973,44.438,324.692,326.141,340.637,24.845,26.615,24.845 +5078,158.712,223.072,474.090,352.939,596.438,228.883,479.226,41.473,135.306,41.473,325.644,325.998,341.154,25.843,26.355,25.843 +5079,158.744,219.896,477.360,355.960,592.720,225.932,482.107,38.182,126.870,38.182,325.815,326.400,341.172,25.924,26.000,25.924 +5080,158.775,216.805,481.499,359.138,588.961,222.877,485.698,34.670,119.168,34.670,326.851,327.307,341.616,25.386,25.830,25.386 +5081,158.808,213.624,486.100,362.974,584.067,219.888,489.843,30.863,111.038,30.863,327.726,327.102,342.321,24.976,25.703,24.976 +5082,158.840,210.500,491.000,366.334,578.464,216.926,494.213,26.565,102.265,26.565,328.255,327.227,342.625,25.491,24.727,25.491 +5083,158.874,207.895,496.457,370.397,572.241,214.371,499.118,22.341,94.764,22.341,330.216,327.448,344.220,25.506,25.080,25.506 +5084,158.906,204.565,502.966,373.308,564.983,211.339,505.071,17.266,86.878,17.266,330.718,327.041,344.906,25.822,23.783,25.822 +5085,158.938,202.040,509.475,376.692,556.962,209.359,511.079,12.362,78.690,12.362,331.568,327.710,346.553,25.584,24.122,25.584 +5086,158.969,199.802,517.144,378.539,547.987,207.081,518.062,7.192,70.821,7.192,333.037,327.946,347.710,24.603,23.695,24.603 +5087,158.999,198.161,525.067,380.200,537.900,205.742,525.256,1.432,63.435,1.432,334.271,327.360,349.438,24.667,23.702,24.667 +5088,159.029,197.659,537.099,380.197,527.366,205.140,536.444,174.999,55.679,174.999,335.344,327.037,350.364,20.136,22.847,20.136 +5089,159.060,197.974,546.825,379.445,516.050,205.498,545.345,168.871,48.013,168.871,337.322,326.380,352.660,19.849,23.339,19.849 +5090,159.092,199.767,556.733,375.562,505.712,205.789,554.786,162.084,40.030,162.084,340.618,325.210,353.274,19.424,19.847,19.424 +5091,159.123,199.767,556.733,375.562,505.712,205.789,554.786,162.084,40.030,162.084,340.618,325.210,353.274,19.424,19.847,19.424 +5092,159.152,202.537,566.924,371.085,493.667,208.337,564.235,155.126,33.147,155.126,341.879,325.356,354.665,19.233,20.573,19.233 +5093,159.183,206.680,577.697,366.033,481.089,212.773,573.863,147.817,24.852,147.817,343.853,322.958,358.251,19.371,20.956,19.371 +5094,159.214,213.235,587.488,358.825,470.185,218.293,583.255,140.072,17.171,140.072,347.484,320.928,360.677,19.255,21.250,19.255 +5095,159.250,220.750,597.011,349.103,460.386,224.966,592.353,132.146,9.560,132.146,349.722,318.940,362.288,19.402,20.137,19.402 +5096,159.292,240.899,614.209,325.084,445.324,243.473,608.887,115.807,174.203,115.807,353.733,316.131,365.557,19.721,17.903,19.721 +5097,159.324,252.886,620.698,311.130,440.046,254.610,615.077,107.049,166.657,107.049,356.060,314.587,367.820,20.358,17.901,20.358 +5098,159.357,264.986,624.858,296.585,437.028,265.803,619.016,97.952,159.063,97.952,357.193,313.100,368.992,25.313,17.916,25.313 +5099,159.390,264.986,624.858,296.585,437.028,265.803,619.016,97.952,159.063,97.952,357.193,313.100,368.992,25.313,17.916,25.313 +5100,159.424,293.814,626.780,266.521,437.528,292.853,620.998,80.571,143.531,80.571,358.886,310.622,370.610,26.799,17.832,26.799 +5101,159.455,293.814,626.780,266.521,437.528,292.853,620.998,80.571,143.531,80.571,358.886,310.622,370.610,26.799,17.832,26.799 +5102,159.484,311.730,623.188,251.256,441.750,310.115,617.983,72.764,135.744,72.764,360.619,309.136,371.518,22.393,17.887,22.393 +5103,159.515,326.868,617.073,237.335,448.153,324.348,611.997,63.594,128.019,63.594,359.561,309.078,370.894,23.856,18.019,23.856 +5104,159.546,339.803,608.724,225.100,456.439,336.703,604.343,54.724,120.420,54.724,359.661,308.726,370.396,24.150,18.101,24.150 +5105,159.577,350.885,598.264,214.152,466.271,347.318,594.572,45.992,112.543,45.992,359.328,308.236,369.596,25.287,18.193,25.287 +5106,159.609,360.368,586.912,205.286,476.866,356.070,583.617,37.481,104.755,37.481,358.392,308.039,369.225,25.692,18.258,25.692 +5107,159.641,367.355,574.280,198.413,488.733,362.837,571.758,29.168,96.943,29.168,357.727,307.961,368.077,26.379,18.667,26.379 +5108,159.673,372.204,561.977,193.632,500.498,367.353,560.087,21.276,89.157,21.276,356.593,307.187,367.005,26.028,19.101,26.028 +5109,159.706,371.769,549.221,191.544,512.190,367.442,548.169,13.662,81.384,13.662,349.930,308.299,358.838,25.462,21.572,25.462 +5110,159.740,370.342,537.560,190.210,523.706,365.660,537.030,6.456,73.667,6.456,342.247,308.918,351.670,24.781,21.632,24.781 +5111,159.772,369.018,528.369,189.595,534.696,364.313,528.415,179.444,66.218,179.444,340.130,309.377,349.541,20.562,22.334,20.562 +5112,159.804,369.439,518.536,189.969,545.519,364.655,519.130,172.920,58.824,172.920,343.570,310.275,353.212,20.887,22.648,20.887 +5113,159.836,370.079,509.011,192.536,554.776,366.029,509.979,166.547,50.615,166.547,349.981,310.913,358.308,20.309,21.729,20.309 +5114,159.866,366.179,500.363,195.243,563.054,362.648,501.602,160.679,42.955,160.679,349.132,310.601,356.617,19.671,22.209,19.671 +5115,159.896,362.230,492.565,197.911,571.112,358.395,494.354,154.997,35.440,154.997,347.311,311.768,355.775,19.369,22.218,19.369 +5116,159.927,357.913,485.704,201.328,577.626,354.075,487.956,149.601,28.024,149.601,345.344,313.290,354.244,19.988,22.012,19.988 +5117,159.956,353.092,479.650,204.593,585.459,348.923,482.611,144.615,21.038,144.615,344.221,314.178,354.450,19.589,24.267,19.589 +5118,159.987,353.092,479.650,204.593,585.459,348.923,482.611,144.615,21.038,144.615,344.221,314.178,354.450,19.589,24.267,19.589 +5119,160.014,348.413,474.178,208.857,591.038,344.189,477.735,139.899,13.707,139.899,341.956,315.033,353.000,19.083,24.501,19.083 +5120,160.046,343.445,469.444,213.893,596.375,339.310,473.522,135.392,6.981,135.392,339.510,314.427,351.124,19.244,23.741,19.244 +5121,160.077,338.928,464.615,218.507,601.250,334.462,469.742,131.060,0.531,131.060,337.051,315.079,350.650,19.364,23.675,19.364 +5122,160.108,333.839,461.135,222.548,605.722,329.498,466.906,126.948,173.182,126.948,336.011,316.647,350.452,19.686,23.064,19.686 +5123,160.139,328.836,458.009,227.008,609.321,324.729,464.289,123.185,167.276,123.185,334.724,318.120,349.731,19.418,22.970,19.418 +5124,160.172,323.751,455.555,231.682,613.079,319.906,462.359,119.476,160.931,119.476,333.615,319.475,349.246,19.720,22.671,19.720 +5125,160.203,318.983,452.965,236.366,616.283,315.234,460.667,115.952,154.942,115.952,331.746,320.729,348.877,19.501,21.882,19.501 +5126,160.234,314.649,451.321,241.113,619.058,311.211,459.513,112.762,149.899,112.762,330.712,321.895,348.481,19.423,21.277,19.423 +5127,160.265,309.987,449.395,245.967,621.452,306.843,458.377,109.290,145.146,109.290,329.029,323.509,348.061,19.774,20.632,19.774 +5128,160.295,305.038,448.368,250.862,623.571,302.410,457.565,105.945,141.155,105.945,328.429,324.242,347.560,19.780,20.788,19.780 +5129,160.325,299.686,447.092,256.151,625.555,297.504,456.982,102.440,136.456,102.440,326.791,324.906,347.046,19.243,20.589,19.243 +5130,160.355,299.686,447.092,256.151,625.555,297.504,456.982,102.440,136.456,102.440,326.791,324.906,347.046,19.243,20.589,19.243 +5131,160.384,294.839,446.957,261.099,626.651,293.311,456.448,99.144,133.308,99.144,327.091,326.272,346.318,19.475,19.707,19.475 +5132,160.414,289.880,446.899,266.536,627.755,288.934,456.100,95.870,130.378,95.870,327.591,326.719,346.091,18.780,19.621,18.780 +5133,160.445,285.281,447.109,271.881,628.634,284.841,456.336,92.726,127.755,92.726,326.963,327.589,345.439,18.741,20.075,18.741 +5134,160.476,280.359,446.966,277.581,628.987,280.443,456.466,89.497,125.538,89.497,325.979,328.051,344.978,18.192,20.692,18.192 +5135,160.507,275.778,447.774,283.196,628.789,276.393,456.702,86.055,123.871,86.055,326.397,328.388,344.295,18.989,20.587,18.989 +5136,160.540,270.917,448.617,289.259,628.665,272.083,457.511,82.528,122.471,82.528,325.930,328.798,343.869,19.278,20.325,19.278 +5137,160.572,266.137,449.888,295.342,627.795,267.795,458.386,78.959,121.329,78.959,325.783,328.941,343.099,19.558,21.318,19.558 +5138,160.603,261.478,451.583,301.498,626.533,263.539,459.399,75.225,120.379,75.225,326.410,329.253,342.577,20.369,21.091,20.369 +5139,160.634,257.172,453.090,308.273,624.955,259.710,460.601,71.333,120.486,71.333,326.647,329.003,342.502,21.931,21.078,21.931 +5140,160.663,251.844,455.110,314.886,622.797,254.900,462.462,67.429,119.919,67.429,326.235,329.186,342.158,21.878,21.775,21.878 +5141,160.694,247.293,458.087,321.385,620.077,250.560,464.590,63.322,119.745,63.322,326.910,328.940,341.466,22.532,22.326,22.532 +5142,160.724,241.897,460.162,328.062,616.759,245.911,466.852,59.036,118.863,59.036,326.019,328.976,341.622,23.324,23.791,23.324 +5143,160.755,241.897,460.162,328.062,616.759,245.911,466.852,59.036,118.863,59.036,326.019,328.976,341.622,23.324,23.791,23.324 +5144,160.784,237.552,463.555,334.794,612.663,241.712,469.410,54.605,118.968,54.605,327.016,328.288,341.381,24.756,24.185,24.756 +5145,160.816,231.991,467.142,341.135,607.919,236.781,472.834,49.921,119.327,49.921,326.217,327.987,341.097,24.326,24.353,24.326 +5146,160.847,226.750,471.250,347.470,602.391,231.965,476.465,45.000,119.389,45.000,326.683,327.492,341.434,24.749,25.058,24.749 +5147,160.878,221.763,476.306,353.648,596.084,227.424,481.043,39.914,119.476,39.914,326.496,327.218,341.259,25.392,25.814,25.392 +5148,160.909,216.583,481.794,359.105,588.915,222.644,485.965,34.535,119.691,34.535,326.838,327.207,341.555,25.750,25.947,25.750 +5149,160.940,211.756,488.086,364.238,580.708,218.253,491.663,28.837,119.745,28.837,326.830,326.707,341.662,25.609,25.923,25.609 +5150,160.971,207.370,495.438,368.719,571.789,213.964,498.218,22.862,120.141,22.862,328.050,325.858,342.363,25.536,26.474,25.536 +5151,161.002,203.300,503.982,372.682,561.607,210.061,505.977,16.440,120.393,16.440,329.338,324.551,343.435,25.456,26.707,25.456 +5152,161.033,200.318,512.681,375.490,550.385,207.175,513.881,9.926,120.700,9.926,330.256,323.305,344.177,25.660,26.548,25.660 +5153,161.063,197.561,522.804,376.765,538.559,204.591,523.160,2.904,120.964,2.904,331.386,321.903,345.465,24.852,26.239,24.852 +5154,161.094,196.538,536.505,376.662,526.099,203.490,535.986,175.729,121.430,175.729,332.911,320.881,346.854,19.402,25.788,19.402 +5155,161.126,196.574,548.236,374.916,513.135,203.580,546.766,168.152,122.005,168.152,334.864,319.377,349.181,19.683,25.228,19.683 +5156,161.156,197.708,560.455,371.035,500.296,205.151,557.757,160.079,122.998,160.079,335.240,318.398,351.073,19.497,24.191,19.497 +5157,161.188,197.708,560.455,371.035,500.296,205.151,557.757,160.079,122.998,160.079,335.240,318.398,351.073,19.497,24.191,19.497 +5158,161.216,200.440,573.654,365.027,487.188,208.626,569.306,152.027,123.799,152.027,334.755,317.020,353.293,19.552,22.464,19.552 +5159,161.247,201.659,589.747,357.287,474.854,214.278,580.431,143.565,124.490,143.565,324.148,315.659,355.518,19.869,21.637,19.869 +5160,161.278,196.912,614.931,347.256,463.330,221.174,590.244,134.502,124.958,134.502,288.562,314.339,357.789,19.110,19.858,19.110 +5161,161.308,184.534,663.953,335.206,453.008,230.175,600.055,125.538,125.767,125.538,204.363,312.961,361.410,19.181,19.652,19.181 +5162,161.340,237.648,616.808,322.157,445.375,241.812,608.557,116.779,126.573,116.779,345.278,312.794,363.762,19.924,20.077,19.924 +5163,161.372,251.741,622.680,308.110,439.703,254.061,615.198,107.226,127.323,107.226,351.594,311.431,367.259,20.546,20.237,20.546 +5164,161.405,269.912,626.954,293.005,436.714,271.017,619.874,98.870,128.304,98.870,354.386,310.358,368.719,25.997,19.715,25.997 +5165,161.437,285.631,627.042,277.717,436.267,285.562,620.659,89.377,129.369,89.377,356.164,310.082,368.931,25.107,19.525,25.107 +5166,161.467,298.155,626.668,261.957,438.389,296.946,620.601,78.730,130.400,78.730,358.701,309.768,371.074,26.870,18.876,26.870 +5167,161.498,316.508,621.760,246.286,443.252,314.481,616.264,69.757,131.367,69.757,360.127,309.292,371.843,21.567,19.378,21.567 +5168,161.529,331.695,613.523,232.196,450.721,329.088,609.002,60.036,132.534,60.036,360.598,309.541,371.036,23.440,18.462,23.440 +5169,161.560,345.468,603.223,219.313,459.822,342.061,599.099,50.447,133.603,50.447,360.407,309.310,371.106,25.551,18.897,25.551 +5170,161.590,356.226,591.648,208.250,470.750,352.089,588.046,41.055,135.000,41.055,360.037,310.420,371.008,25.785,18.385,25.785 +5171,161.621,356.226,591.648,208.250,470.750,352.089,588.046,41.055,135.000,41.055,360.037,310.420,371.008,25.785,18.385,25.785 +5172,161.648,364.400,577.834,199.341,482.917,360.049,575.131,31.858,136.150,31.858,360.098,311.899,370.342,26.500,18.364,26.500 +5173,161.679,369.675,564.227,191.891,495.288,364.672,562.094,23.090,137.556,23.090,359.403,312.375,370.279,26.233,20.688,26.233 +5174,161.711,370.314,550.669,187.902,508.967,365.665,549.461,14.564,139.325,14.564,354.862,313.571,364.468,25.208,21.935,25.208 +5175,161.743,368.250,536.981,185.033,521.758,363.036,536.389,6.472,140.599,6.472,346.542,314.582,357.036,25.817,22.685,25.817 +5176,161.774,366.983,527.230,184.155,534.178,361.640,527.351,178.711,141.532,178.711,344.498,315.478,355.186,21.278,22.030,21.278 +5177,161.806,367.248,516.357,184.761,545.897,362.290,517.118,171.279,142.296,171.279,349.648,316.190,359.680,21.116,22.056,21.116 +5178,161.837,367.770,505.837,186.987,556.792,362.417,507.340,164.324,142.607,164.324,353.411,317.042,364.532,20.280,22.090,20.280 +5179,161.869,363.698,496.580,190.003,566.651,357.853,498.963,157.816,142.322,157.816,349.345,318.095,361.967,19.562,21.926,19.562 +5180,161.899,360.099,488.389,194.036,575.668,353.402,491.982,151.787,141.234,151.787,344.791,319.376,359.991,19.568,20.840,19.568 +5181,161.930,356.739,480.116,198.410,583.483,348.702,485.485,146.250,139.650,146.250,339.485,320.624,358.815,19.305,19.990,19.305 +5182,161.960,357.620,468.940,203.364,590.948,343.799,480.119,141.033,137.643,141.033,322.221,320.794,357.774,19.095,19.495,19.095 +5183,161.989,396.823,419.654,208.324,597.347,337.988,474.988,136.757,135.785,136.757,195.026,321.113,356.563,18.246,19.080,18.246 +5184,162.021,396.823,419.654,208.324,597.347,337.988,474.988,136.757,135.785,136.757,195.026,321.113,356.563,18.246,19.080,18.246 +5185,162.050,387.050,411.445,213.871,603.374,332.953,471.553,131.987,134.390,131.987,193.554,321.828,355.287,18.062,19.279,18.062 +5186,162.080,357.851,429.193,219.356,608.325,327.858,468.185,127.569,132.397,127.569,256.079,323.007,354.465,18.047,19.650,18.047 +5187,162.111,340.758,438.311,225.265,612.733,322.883,465.531,123.294,131.424,123.294,288.125,324.150,353.254,18.102,20.334,18.102 +5188,162.142,328.939,443.138,230.860,616.280,317.799,463.125,119.134,130.897,119.134,306.449,324.543,352.211,18.157,20.093,18.157 +5189,162.173,320.151,445.447,237.144,619.248,312.988,461.044,114.666,131.325,114.666,316.513,324.730,350.840,18.908,19.810,18.908 +5190,162.206,312.797,446.219,243.463,621.966,307.916,459.421,110.287,132.580,110.287,321.468,325.138,349.619,19.946,20.020,19.946 +5191,162.238,306.128,446.562,249.624,624.098,302.747,458.115,106.314,134.331,106.314,324.368,324.680,348.444,19.757,20.034,19.757 +5192,162.269,299.194,447.400,256.362,624.913,297.240,456.506,102.110,136.668,102.110,327.845,324.816,346.472,19.360,19.914,19.360 +5193,162.299,293.188,447.509,263.828,626.893,291.995,456.165,97.853,140.194,97.853,328.476,324.830,345.952,20.120,21.638,20.120 +5194,162.329,286.932,447.671,271.120,627.660,286.356,455.851,94.028,143.130,94.028,328.510,324.600,344.910,18.644,22.400,18.644 +5195,162.359,281.000,448.000,278.564,627.452,281.000,455.726,90.000,147.475,90.000,328.000,324.433,343.452,18.000,24.390,18.000 +5196,162.389,281.000,448.000,278.564,627.452,281.000,455.726,90.000,147.475,90.000,328.000,324.433,343.452,18.000,24.390,18.000 +5197,162.418,275.853,448.872,286.048,627.495,276.358,456.190,86.055,151.157,86.055,328.461,323.986,343.132,18.989,25.542,18.989 +5198,162.449,270.551,449.925,293.498,626.524,271.547,456.936,81.917,153.646,81.917,327.817,324.244,341.980,19.930,25.501,19.930 +5199,162.480,264.770,451.007,301.247,625.686,266.329,458.190,77.758,158.629,77.758,327.483,324.194,342.183,19.794,26.075,19.794 +5200,162.512,259.828,452.311,308.771,623.981,261.963,459.524,73.511,162.747,73.511,326.915,324.690,341.959,21.709,26.912,21.709 +5201,162.543,254.132,454.710,316.445,621.766,256.816,461.778,69.204,166.799,69.204,326.350,325.066,341.472,21.671,27.056,21.671 +5202,162.574,248.875,457.296,324.050,618.815,251.935,463.768,64.689,171.042,64.689,327.670,325.702,341.988,22.352,27.697,22.352 +5203,162.605,243.804,459.825,331.449,615.401,247.524,466.307,60.148,175.121,60.148,327.226,326.374,342.172,24.209,27.194,24.209 +5204,162.636,238.145,463.590,338.575,611.312,242.373,469.717,55.391,178.877,55.391,327.471,327.192,342.359,24.178,27.387,24.178 +5205,162.665,232.658,467.197,345.677,605.772,237.484,473.023,50.366,2.951,50.366,327.368,328.852,342.498,24.520,26.491,24.520 +5206,162.696,227.347,471.637,352.548,600.006,232.969,477.315,45.282,7.352,45.282,326.658,330.358,342.639,25.205,25.914,25.205 +5207,162.726,221.045,476.243,358.918,592.829,227.867,481.918,39.753,11.624,39.753,325.609,331.286,343.356,25.780,23.810,25.780 +5208,162.757,214.220,481.174,365.379,584.919,223.431,487.373,33.940,16.069,33.940,322.247,332.017,344.453,25.718,22.874,25.718 +5209,162.789,214.220,481.174,365.379,584.919,223.431,487.373,33.940,16.069,33.940,322.247,332.017,344.453,25.718,22.874,25.718 +5210,162.818,199.588,485.348,370.846,576.416,218.481,494.532,25.925,20.308,25.925,303.649,332.379,345.663,23.046,21.223,23.046 +5211,162.849,177.329,488.887,374.951,567.838,213.888,503.379,21.623,24.887,21.623,268.311,333.228,346.964,18.978,20.359,18.978 +5212,162.880,199.329,508.062,377.842,558.683,210.531,511.076,15.059,29.073,15.059,324.669,332.959,347.870,19.391,20.484,19.391 +5213,162.911,198.487,515.560,380.134,547.840,208.343,516.961,8.092,33.302,8.092,328.943,331.703,348.854,24.892,20.071,24.892 +5214,162.942,197.576,526.492,381.029,536.023,206.075,526.610,0.793,37.999,0.793,333.134,330.207,350.134,23.541,20.538,23.541 +5215,162.972,197.518,540.008,379.894,523.767,204.871,539.120,173.112,42.274,173.112,336.387,327.928,351.201,19.769,20.786,19.769 +5216,163.004,198.730,552.049,377.708,510.370,205.692,550.232,165.379,46.888,165.379,338.624,325.605,353.014,19.647,23.547,19.647 +5217,163.035,201.668,564.034,372.965,497.415,207.564,561.538,157.055,52.206,157.055,341.819,322.313,354.625,19.253,24.239,19.253 +5218,163.065,206.197,576.185,366.127,484.538,211.381,573.017,148.570,57.051,148.570,344.204,318.987,356.357,19.294,24.677,19.294 +5219,163.100,213.101,587.896,357.045,472.507,217.323,584.332,139.833,62.049,139.833,346.750,315.878,357.800,19.453,24.734,19.453 +5220,163.131,222.157,599.001,346.208,461.749,225.507,595.128,130.865,67.319,130.865,349.438,312.771,359.681,19.442,24.816,19.442 +5221,163.161,232.897,608.667,333.241,452.267,235.411,604.582,121.608,72.553,121.608,352.390,309.912,361.985,19.785,24.177,19.785 +5222,163.192,245.115,617.367,318.173,445.290,247.096,612.534,112.289,77.661,112.289,352.966,307.815,363.412,20.281,22.072,20.281 +5223,163.222,245.115,617.367,318.173,445.290,247.096,612.534,112.289,77.661,112.289,352.966,307.815,363.412,20.281,22.072,20.281 +5224,163.250,257.694,627.971,302.515,440.862,259.661,618.803,102.110,82.278,102.110,347.190,306.215,365.943,23.747,20.003,23.747 +5225,163.281,270.208,646.507,286.158,438.963,271.063,621.894,91.989,86.795,91.989,317.434,304.810,366.689,26.366,18.100,26.366 +5226,163.311,292.807,635.881,270.764,439.023,291.549,622.042,84.806,90.409,84.806,340.505,304.057,368.298,25.893,18.585,25.893 +5227,163.343,307.101,627.146,254.184,442.231,305.259,620.301,74.939,94.038,74.939,356.276,303.938,370.451,24.735,20.115,24.735 +5228,163.373,323.792,619.637,239.483,447.456,321.072,613.702,65.376,98.696,65.376,357.187,304.564,370.245,22.272,19.212,22.272 +5229,163.407,338.527,609.958,225.354,455.600,335.186,605.063,55.685,103.671,55.685,358.882,306.102,370.733,24.123,19.985,24.123 +5230,163.440,351.111,598.495,214.345,466.300,347.365,594.617,45.996,108.838,45.996,358.633,307.702,369.416,25.268,18.038,25.268 +5231,163.474,361.042,585.574,204.018,477.884,356.683,582.339,36.582,113.658,36.582,358.829,309.890,369.687,25.865,18.258,25.865 +5232,163.507,367.631,571.395,196.124,490.611,363.238,569.114,27.440,118.532,27.440,359.078,311.415,368.977,25.857,19.021,25.857 +5233,163.541,372.039,557.438,190.867,504.382,367.537,555.928,18.539,123.281,18.539,358.285,313.152,367.782,25.771,20.595,25.771 +5234,163.574,369.436,542.631,186.133,516.902,364.214,541.701,10.100,128.530,10.100,348.733,315.172,359.341,25.843,22.512,25.843 +5235,163.605,367.301,531.940,184.319,529.769,361.896,531.761,1.903,133.191,1.903,344.275,315.287,355.091,21.426,23.063,21.426 +5236,163.636,367.888,520.421,184.244,541.720,361.900,521.041,174.088,137.564,174.088,345.640,316.361,357.681,21.242,22.816,21.242 +5237,163.666,368.918,509.070,186.079,553.332,362.977,510.492,166.538,141.736,166.538,351.802,317.052,364.021,20.705,21.631,20.705 +5238,163.696,365.210,498.563,189.245,563.660,359.019,500.887,159.424,145.981,159.424,348.786,317.573,362.010,19.749,21.964,19.749 +5239,163.725,375.735,481.605,194.166,573.456,354.546,492.619,152.534,149.203,152.534,311.412,317.794,359.174,19.716,19.994,19.716 +5240,163.757,379.241,463.879,199.893,583.304,348.593,484.118,146.560,153.962,146.560,284.033,317.131,357.487,18.705,20.275,18.705 +5241,163.789,379.241,463.879,199.893,583.304,348.593,484.118,146.560,153.962,146.560,284.033,317.131,357.487,18.705,20.275,18.705 +5242,163.817,357.749,466.070,206.175,590.692,343.390,478.203,139.802,158.118,139.802,317.222,316.987,354.821,19.978,19.730,19.978 +5243,163.848,344.892,464.766,212.941,597.389,337.397,472.550,133.919,162.395,133.919,330.894,317.148,352.504,19.209,20.759,19.209 +5244,163.879,335.780,461.401,220.404,604.085,330.852,467.661,128.211,166.961,128.211,335.092,317.503,351.025,19.543,23.176,19.543 +5245,163.909,328.223,457.751,228.503,609.769,324.352,463.770,122.747,171.254,122.747,334.971,317.952,349.284,19.658,24.785,19.658 +5246,163.940,320.760,454.935,236.262,614.624,317.689,460.842,117.468,174.289,117.468,334.693,318.213,348.008,19.546,25.771,19.546 +5247,163.971,313.563,452.645,244.998,618.919,311.109,458.592,112.420,178.768,112.420,333.977,318.270,346.845,19.245,25.983,19.245 +5248,164.002,306.518,450.978,252.936,622.272,304.562,457.193,107.472,2.862,107.472,332.893,319.101,345.925,19.603,26.217,19.603 +5249,164.032,299.428,449.708,261.034,625.092,297.971,456.199,102.645,6.499,102.645,332.460,321.478,345.765,19.246,27.015,19.246 +5250,164.063,292.860,448.980,268.768,626.794,291.902,455.685,98.130,10.154,98.130,331.774,324.478,345.322,18.668,27.121,18.668 +5251,164.093,286.026,449.322,277.059,628.265,285.628,455.989,93.417,14.036,93.417,331.604,325.725,344.960,18.504,28.134,18.504 +5252,164.123,286.026,449.322,277.059,628.265,285.628,455.989,93.417,14.036,93.417,331.604,325.725,344.960,18.504,28.134,18.504 +5253,164.152,279.411,450.538,285.516,629.037,279.564,456.987,88.645,17.482,88.645,331.380,326.023,344.284,18.670,27.938,18.670 +5254,164.183,273.775,451.477,293.475,629.384,274.417,457.825,84.232,20.763,84.232,332.450,327.958,345.210,19.316,27.733,19.316 +5255,164.213,267.921,452.381,301.184,628.341,269.132,458.980,79.607,23.895,79.607,331.312,329.780,344.730,20.479,27.139,20.479 +5256,164.244,261.681,454.126,309.576,626.844,263.467,460.739,74.884,26.690,74.884,331.066,330.058,344.764,20.479,25.842,20.479 +5257,164.275,256.105,456.549,317.215,624.508,258.324,462.675,70.084,29.327,70.084,331.397,331.523,344.429,21.352,25.146,21.352 +5258,164.305,250.598,458.380,325.267,621.565,253.588,464.841,65.165,31.574,65.165,330.435,332.408,344.673,23.116,23.953,23.116 +5259,164.336,244.373,461.357,333.061,617.657,247.995,467.708,60.306,33.619,60.306,330.172,333.097,344.793,23.397,23.389,23.397 +5260,164.366,238.766,463.662,340.446,613.078,243.483,470.475,55.305,34.648,55.305,328.308,333.745,344.880,24.666,21.380,24.666 +5261,164.396,231.227,465.641,347.340,607.937,238.274,474.139,50.332,35.162,50.332,323.148,334.090,345.226,24.651,20.438,24.651 +5262,164.427,221.965,470.037,353.766,602.339,232.239,479.651,43.097,34.641,43.097,316.985,334.058,345.126,24.477,19.252,24.477 +5263,164.456,221.965,470.037,353.766,602.339,232.239,479.651,43.097,34.641,43.097,316.985,334.058,345.126,24.477,19.252,24.477 +5264,164.485,210.802,469.756,359.307,595.546,228.072,483.157,37.810,33.541,37.810,301.445,334.472,345.164,22.808,18.927,22.808 +5265,164.516,188.128,464.880,365.290,588.113,224.034,487.566,32.286,31.794,32.286,261.301,333.264,346.246,22.396,19.986,22.396 +5266,164.551,146.216,455.915,370.219,579.836,218.947,495.375,28.482,30.311,28.482,180.992,332.914,346.483,18.215,19.125,18.215 +5267,164.582,191.024,492.217,374.145,570.297,214.674,502.227,22.941,28.217,22.941,295.419,333.487,346.781,19.142,18.827,19.142 +5268,164.612,197.551,505.277,377.114,559.823,211.041,509.283,16.538,26.261,16.538,319.035,333.612,347.179,19.424,19.516,19.424 +5269,164.642,197.331,513.653,380.254,548.761,208.852,515.607,9.626,24.905,9.626,325.695,331.900,349.065,23.390,21.250,23.390 +5270,164.673,196.239,524.015,381.134,536.482,206.688,524.471,2.497,24.605,2.497,328.691,331.543,349.608,24.099,21.005,24.099 +5271,164.705,196.507,537.713,380.824,523.557,205.547,536.869,174.668,24.708,174.668,333.351,330.218,351.510,20.073,21.892,20.073 +5272,164.736,197.598,550.313,378.763,510.639,205.908,548.333,166.597,25.115,166.597,336.683,328.285,353.769,19.621,22.467,19.621 +5273,164.767,201.287,562.493,374.378,496.809,207.940,559.809,158.031,25.913,158.031,341.493,326.033,355.842,19.500,22.168,19.500 +5274,164.797,206.172,575.110,367.500,483.500,211.845,571.731,149.216,26.565,149.216,344.555,324.230,357.761,19.375,21.019,19.375 +5275,164.828,213.107,587.328,358.272,471.353,217.723,583.481,140.194,27.564,140.194,347.492,321.214,359.510,19.334,21.534,19.334 +5276,164.860,221.947,598.731,347.571,459.305,226.137,593.870,130.754,28.072,130.754,349.584,319.059,362.419,19.498,23.294,19.498 +5277,164.889,221.947,598.731,347.571,459.305,226.137,593.870,130.754,28.072,130.754,349.584,319.059,362.419,19.498,23.294,19.498 +5278,164.918,233.177,608.896,334.420,449.844,236.423,603.537,121.204,29.055,121.204,351.926,315.862,364.457,20.108,23.408,20.108 +5279,164.949,246.828,617.431,319.846,442.769,249.064,611.841,111.801,29.745,111.801,354.492,313.064,366.534,20.055,23.567,20.055 +5280,164.979,264.229,623.937,303.777,437.882,265.421,618.559,102.490,30.343,102.490,358.376,310.601,369.393,25.817,23.764,25.817 +5281,165.015,280.916,625.933,286.476,437.601,281.128,621.562,92.779,31.608,92.779,359.257,308.038,368.008,27.579,19.916,27.579 +5282,165.062,311.286,622.681,253.704,441.914,309.975,618.419,72.897,32.939,72.897,361.579,305.606,370.497,22.939,19.681,22.939 +5283,165.095,327.788,616.060,239.093,448.370,325.548,611.685,62.883,33.495,62.883,359.707,303.993,369.538,23.949,19.426,23.949 +5284,165.126,342.854,608.115,225.476,457.057,338.995,602.963,53.165,34.077,53.165,356.795,304.297,369.669,24.644,18.417,24.644 +5285,165.164,358.932,603.459,214.259,467.435,348.687,593.657,43.733,34.439,43.733,340.426,303.759,368.782,20.579,18.144,20.579 +5286,165.196,419.913,624.026,204.840,479.518,358.042,581.357,34.592,35.181,34.592,217.555,303.956,367.871,19.729,18.799,19.729 +5287,165.226,375.419,573.162,197.583,491.980,364.665,567.760,26.671,35.484,26.671,342.571,304.564,366.639,24.580,19.043,24.580 +5288,165.256,375.647,555.182,193.162,504.455,368.263,552.964,16.718,35.375,16.718,347.887,305.369,363.308,25.199,22.178,25.199 +5289,165.287,375.647,555.182,193.162,504.455,368.263,552.964,16.718,35.375,16.718,347.887,305.369,363.308,25.199,22.178,25.199 +5290,165.315,372.144,540.567,191.078,517.136,366.110,539.691,8.262,35.967,8.262,340.720,305.994,352.913,25.015,22.504,25.015 +5291,165.345,370.000,530.500,190.023,529.993,364.512,530.500,0.000,35.740,0.000,338.000,307.376,348.977,21.000,23.599,21.000 +5292,165.377,369.623,517.761,190.610,542.965,365.179,518.342,172.550,36.439,172.550,343.613,308.209,352.576,21.288,22.661,21.288 +5293,165.409,369.451,506.703,192.511,555.449,365.497,507.750,165.167,36.367,165.167,350.686,309.820,358.866,20.510,21.317,20.510 +5294,165.440,364.737,496.838,196.309,566.205,360.869,498.389,158.159,36.098,158.159,347.619,311.588,355.954,19.669,21.379,19.669 +5295,165.472,359.124,487.978,200.880,576.092,355.626,489.886,151.390,35.875,151.390,346.290,312.833,354.260,19.872,21.429,19.872 +5296,165.504,353.081,480.266,205.166,586.876,349.005,483.109,145.102,35.676,145.102,344.740,314.682,354.678,19.284,25.765,19.284 +5297,165.536,346.847,473.476,211.225,595.607,342.687,477.086,139.041,34.992,139.041,342.926,315.814,353.942,19.278,26.133,19.278 +5298,165.566,340.398,467.498,217.597,602.628,336.280,471.890,133.162,34.408,133.162,341.058,317.399,353.100,19.290,25.791,19.290 +5299,165.597,333.345,463.066,224.615,609.077,329.586,467.938,127.653,33.690,127.653,339.426,318.953,351.734,19.299,26.071,19.299 +5300,165.626,326.227,459.384,231.958,614.300,323.048,464.435,122.189,33.232,122.189,338.775,320.307,350.711,19.367,25.988,19.367 +5301,165.656,319.333,456.148,239.416,618.852,316.461,461.766,117.077,32.681,117.077,337.257,321.749,349.877,19.038,26.045,19.038 +5302,165.687,319.333,456.148,239.416,618.852,316.461,461.766,117.077,32.681,117.077,337.257,321.749,349.877,19.038,26.045,19.038 +5303,165.715,312.429,453.955,246.981,622.397,310.117,459.640,112.129,31.477,112.129,336.827,322.830,349.102,19.057,26.142,19.057 +5304,165.747,305.554,452.429,254.557,625.406,303.698,458.401,107.268,31.159,107.268,335.622,324.482,348.130,19.217,26.309,19.217 +5305,165.778,298.809,451.182,262.174,627.704,297.436,457.375,102.503,30.496,102.503,335.159,325.507,347.847,19.084,26.347,19.084 +5306,165.810,292.341,450.559,269.646,629.242,291.461,456.861,97.943,29.441,97.943,334.757,326.573,347.483,18.887,26.478,18.887 +5307,165.841,285.848,450.312,277.492,630.015,285.457,456.871,93.413,28.346,93.413,333.481,327.605,346.623,18.518,26.588,18.518 +5308,165.874,279.605,451.038,285.306,630.351,279.738,457.654,88.847,27.198,88.847,332.315,328.274,345.549,18.547,27.449,18.547 +5309,165.907,274.109,451.633,293.011,629.978,274.750,458.322,84.523,25.791,84.523,331.793,328.297,345.231,19.350,27.688,19.350 +5310,165.939,268.144,452.792,300.620,628.443,269.257,458.913,79.695,24.368,79.695,332.369,329.714,344.811,20.393,27.344,20.393 +5311,165.969,262.252,453.717,308.657,626.524,263.951,460.230,75.379,22.620,75.379,330.925,330.077,344.387,20.320,26.308,20.320 +5312,165.999,256.728,456.121,316.258,624.143,258.840,462.147,70.684,20.653,70.684,330.969,330.408,343.739,21.297,25.898,21.297 +5313,166.029,251.286,457.765,323.630,620.602,253.972,463.784,65.946,18.569,65.946,330.001,331.105,343.184,23.233,26.453,23.233 +5314,166.060,245.110,460.543,331.132,617.017,248.418,466.539,61.113,16.049,61.113,329.730,330.777,343.426,23.278,26.685,23.278 +5315,166.091,239.386,463.740,338.104,612.177,243.230,469.448,56.041,13.285,56.041,328.999,331.483,342.763,23.918,25.926,23.918 +5316,166.122,239.386,463.740,338.104,612.177,243.230,469.448,56.041,13.285,56.041,328.999,331.483,342.763,23.918,25.926,23.918 +5317,166.150,233.425,467.061,345.340,606.376,238.050,472.754,50.906,10.362,50.906,328.054,330.863,342.724,24.836,25.317,24.836 +5318,166.180,227.818,471.654,352.264,600.370,233.200,477.127,45.481,7.199,45.481,327.361,329.581,342.712,25.063,25.377,25.063 +5319,166.212,221.881,476.448,358.381,593.365,228.125,481.681,39.966,3.652,39.966,326.847,328.693,343.139,25.599,25.140,25.599 +5320,166.242,215.496,481.741,363.989,584.554,222.980,486.826,34.196,179.310,34.196,325.017,328.085,343.113,25.948,25.010,25.948 +5321,166.274,209.759,488.092,369.012,576.662,218.637,492.881,28.343,175.943,28.343,324.074,327.518,344.247,26.115,23.466,26.115 +5322,166.305,204.729,495.709,373.085,567.278,214.375,499.635,22.145,171.336,22.145,324.170,327.147,345.000,25.945,23.284,25.945 +5323,166.336,199.708,504.256,376.087,556.856,210.560,507.284,15.593,166.239,15.593,322.984,326.197,345.519,25.379,23.470,25.379 +5324,166.367,196.439,513.885,378.080,545.725,207.472,515.627,8.973,160.396,8.973,324.090,324.963,346.429,24.694,23.461,24.694 +5325,166.397,194.461,524.114,378.395,534.306,205.273,524.490,1.996,153.905,1.996,325.081,323.376,346.718,24.800,23.148,24.800 +5326,166.428,193.089,537.957,377.682,522.538,204.031,536.939,174.685,146.689,174.685,326.497,321.747,348.476,19.983,23.233,19.983 +5327,166.459,193.357,549.636,375.219,510.675,204.159,547.276,167.675,139.145,167.675,327.747,319.860,349.860,19.687,23.263,19.687 +5328,166.489,193.357,549.636,375.219,510.675,204.159,547.276,167.675,139.145,167.675,327.747,319.860,349.860,19.687,23.263,19.687 +5329,166.517,195.661,561.314,371.029,499.159,205.361,557.783,159.997,130.914,159.997,330.810,318.195,351.456,19.523,23.527,19.523 +5330,166.548,200.476,572.910,365.458,487.785,208.568,568.675,152.374,121.866,152.374,334.757,316.738,353.023,19.823,23.229,19.823 +5331,166.580,205.699,584.674,357.793,476.503,213.209,579.292,144.372,112.380,144.372,336.317,314.173,354.794,19.277,21.104,19.277 +5332,166.610,212.909,595.968,350.041,467.065,219.825,589.328,136.169,102.529,136.169,338.042,312.054,357.216,19.506,23.537,19.506 +5333,166.640,222.857,605.560,339.750,458.010,228.179,598.743,127.981,92.386,127.981,341.879,310.189,359.176,19.238,22.064,19.238 +5334,166.672,235.417,611.589,328.810,450.670,238.002,607.038,119.600,81.870,119.600,351.162,308.723,361.630,19.651,23.193,19.651 +5335,166.703,247.549,618.173,316.641,444.769,249.278,613.676,111.038,71.147,111.038,354.025,307.425,363.661,19.528,23.428,19.528 +5336,166.734,259.766,623.283,303.539,440.186,260.762,618.488,101.739,59.789,101.739,356.756,306.498,366.551,23.740,23.431,23.740 +5337,166.764,273.065,625.633,289.509,438.110,273.281,621.478,92.976,48.576,92.976,359.606,305.449,367.927,26.173,22.760,26.173 +5338,166.795,291.309,626.515,274.693,438.405,290.968,622.078,85.601,37.185,85.601,359.860,305.984,368.760,23.853,20.137,23.853 +5339,166.826,302.205,624.494,261.714,439.028,301.173,620.177,76.551,25.866,76.551,361.842,305.501,370.719,24.780,22.168,24.780 +5340,166.856,302.205,624.494,261.714,439.028,301.173,620.177,76.551,25.866,76.551,361.842,305.501,370.719,24.780,22.168,24.780 +5341,166.884,317.673,619.368,247.821,443.186,316.159,615.496,68.643,14.613,68.643,362.413,305.851,370.729,21.880,20.964,21.880 +5342,166.915,330.807,612.975,234.956,449.280,328.741,609.350,60.318,3.259,60.318,362.671,306.585,371.016,23.398,19.914,23.398 +5343,166.945,342.665,604.496,223.299,456.560,339.951,600.995,52.214,172.038,52.214,362.387,307.878,371.246,25.201,20.320,25.201 +5344,166.976,351.906,594.995,212.909,466.175,348.915,592.077,44.286,160.829,44.286,362.187,309.014,370.544,25.253,18.742,25.253 +5345,167.008,360.244,584.962,204.548,476.082,356.436,582.132,36.615,149.869,36.615,360.844,310.236,370.333,25.720,18.390,25.720 +5346,167.042,366.228,573.706,197.191,486.645,361.854,571.269,29.124,138.968,29.124,360.047,311.584,370.062,25.645,18.740,25.645 +5347,167.077,370.222,562.532,192.575,498.059,365.825,560.754,22.018,128.089,22.018,358.752,312.674,368.237,26.126,18.719,26.126 +5348,167.108,371.295,551.780,189.902,509.690,366.979,550.600,15.293,117.408,15.293,354.246,313.542,363.194,25.087,20.451,25.087 +5349,167.141,369.621,541.117,187.890,520.309,364.894,540.378,8.875,106.607,8.875,346.391,313.495,355.961,24.754,20.006,24.754 +5350,167.173,368.417,531.468,187.940,530.696,363.963,531.251,2.797,95.771,2.797,342.764,313.446,351.681,25.146,20.841,25.146 +5351,167.205,368.551,525.010,188.414,539.966,363.771,525.252,177.101,85.236,177.101,342.182,313.248,351.754,20.607,22.588,20.607 +5352,167.235,369.265,516.807,189.998,548.311,364.693,517.477,171.653,73.443,171.653,345.399,313.027,354.641,20.216,22.513,20.216 +5353,167.265,370.259,509.081,192.459,555.466,365.941,510.115,166.538,62.808,166.538,349.665,312.598,358.545,20.059,21.445,20.059 +5354,167.296,366.735,502.216,194.577,562.312,363.212,503.370,161.851,51.973,161.851,349.794,312.573,357.209,19.675,22.197,19.675 +5355,167.325,363.958,496.017,196.782,567.671,360.448,497.473,157.479,40.601,157.479,348.544,311.838,356.144,19.421,22.561,19.421 +5356,167.355,363.958,496.017,196.782,567.671,360.448,497.473,157.479,40.601,157.479,348.544,311.838,356.144,19.421,22.561,19.421 +5357,167.384,361.300,490.600,198.878,572.116,357.628,492.436,153.435,29.032,153.435,347.038,312.266,355.248,19.230,22.484,19.230 +5358,167.414,358.618,485.258,200.591,577.251,353.997,487.969,149.601,18.563,149.601,344.274,313.065,354.989,20.045,24.605,20.045 +5359,167.445,357.908,479.107,202.652,581.128,350.724,483.907,146.250,6.340,146.250,336.979,313.405,354.260,19.683,22.197,19.683 +5360,167.476,355.040,475.220,204.196,584.820,347.386,480.960,143.130,174.547,143.130,334.600,314.815,353.735,19.200,21.118,19.200 +5361,167.508,354.778,469.638,205.818,589.639,344.035,478.573,140.252,162.974,140.252,326.630,316.736,354.576,19.237,20.167,19.237 +5362,167.540,356.400,462.051,207.450,593.909,340.598,476.314,137.931,151.484,137.931,312.692,318.825,355.265,18.390,19.864,18.390 +5363,167.572,392.523,421.056,209.625,598.060,337.592,474.270,135.909,139.574,135.909,203.127,321.273,356.087,18.225,20.187,18.225 +5364,167.604,342.777,465.391,211.449,600.960,335.437,473.130,133.488,128.136,133.488,334.811,324.245,356.144,18.482,20.353,18.482 +5365,167.633,337.539,467.037,213.779,604.831,332.983,472.166,131.615,117.392,131.615,342.979,325.609,356.699,19.013,21.115,19.013 +5366,167.663,334.640,466.941,216.341,607.814,331.089,471.177,129.976,105.767,129.976,345.801,326.641,356.857,19.127,19.236,19.127 +5367,167.693,333.352,465.279,218.973,610.080,329.518,470.065,128.697,94.667,128.697,344.514,327.197,356.778,18.907,19.608,18.907 +5368,167.724,332.182,464.220,222.110,611.698,328.489,469.030,127.516,83.400,127.516,343.760,326.565,355.889,19.262,19.219,19.262 +5369,167.754,332.182,464.220,222.110,611.698,328.489,469.030,127.516,83.400,127.516,343.760,326.565,355.889,19.262,19.219,19.262 +5370,167.784,331.076,463.571,224.850,612.550,327.642,468.193,126.607,71.565,126.607,342.840,326.031,354.358,19.105,20.239,19.105 +5371,167.815,330.741,462.857,227.372,611.884,327.784,466.922,126.027,60.642,126.027,342.536,323.845,352.590,19.263,22.443,19.263 +5372,167.846,330.364,461.691,228.370,611.112,327.265,466.046,125.433,48.793,125.433,340.379,321.820,351.067,19.163,21.373,19.163 +5373,167.877,330.252,460.826,227.479,611.538,326.623,465.983,125.134,37.011,125.134,339.571,320.208,352.185,19.294,25.737,19.294 +5374,167.907,330.178,460.730,227.260,610.005,326.763,465.596,125.063,25.463,125.063,338.840,319.742,350.728,19.273,26.011,19.273 +5375,167.939,330.580,460.671,226.585,608.638,327.203,465.461,125.186,13.241,125.186,338.271,318.193,349.991,19.121,26.053,19.121 +5376,167.970,331.275,460.478,225.496,607.193,327.735,465.444,125.487,1.302,125.487,337.345,317.282,349.541,19.278,24.039,19.278 +5377,168.000,332.800,459.900,223.210,606.435,328.300,466.087,126.027,169.487,126.027,335.331,317.964,350.632,19.410,22.807,19.410 +5378,168.031,335.000,459.000,221.115,605.753,328.900,467.133,126.870,158.515,126.870,330.800,319.046,351.133,19.200,20.867,19.200 +5379,168.062,338.554,456.580,218.968,605.509,329.596,468.225,127.569,148.410,127.569,323.147,320.551,352.531,19.877,19.829,19.877 +5380,168.092,346.546,447.931,217.535,605.969,329.851,468.849,128.593,138.814,128.593,300.939,322.385,354.466,18.187,20.037,18.187 +5381,168.123,346.546,447.931,217.535,605.969,329.851,468.849,128.593,138.814,128.593,300.939,322.385,354.466,18.187,20.037,18.187 +5382,168.152,382.421,407.346,215.619,605.749,330.764,470.072,129.472,130.452,129.472,193.346,323.332,355.863,18.163,20.946,18.163 +5383,168.183,336.858,465.676,214.240,604.907,332.124,471.235,130.419,121.849,130.419,341.799,325.207,356.401,18.882,20.901,18.882 +5384,168.214,336.901,468.611,212.979,604.491,333.368,472.536,131.987,113.025,131.987,346.672,325.521,357.235,19.103,20.776,19.103 +5385,168.244,339.094,470.145,211.673,603.421,335.271,474.111,133.951,103.551,133.951,346.735,325.983,357.754,18.817,19.712,18.817 +5386,168.277,342.074,471.929,209.967,601.029,337.950,475.906,136.042,93.576,136.042,346.502,325.053,357.961,19.127,20.023,19.127 +5387,168.307,345.294,473.868,208.728,598.084,340.898,477.748,138.567,83.758,138.567,345.719,324.331,357.447,19.095,19.415,19.095 +5388,168.338,348.199,476.634,207.250,594.279,344.190,479.852,141.237,73.548,141.237,346.559,322.121,356.841,19.659,19.851,19.659 +5389,168.370,352.224,479.418,205.848,589.286,348.044,482.415,144.357,62.661,144.357,345.381,319.819,355.668,19.627,20.062,19.627 +5390,168.401,355.990,483.484,203.348,583.310,351.961,486.025,147.771,52.443,147.771,345.671,317.356,355.197,19.640,22.064,19.640 +5391,168.431,358.891,487.950,200.074,576.282,355.214,489.965,151.280,41.415,151.280,346.682,314.094,355.066,19.774,21.946,19.774 +5392,168.462,362.971,492.702,196.863,568.378,358.848,494.596,155.331,30.256,155.331,346.919,312.976,355.993,19.501,21.954,19.501 +5393,168.491,367.174,498.317,193.765,560.382,361.748,500.331,159.638,19.267,159.638,345.189,311.566,356.764,19.369,22.413,19.369 +5394,168.523,367.174,498.317,193.765,560.382,361.748,500.331,159.638,19.267,159.638,345.189,311.566,356.764,19.369,22.413,19.369 +5395,168.552,374.764,503.931,190.806,552.832,364.592,506.821,164.141,8.027,164.141,338.339,310.416,359.489,19.523,21.531,19.523 +5396,168.583,396.759,508.037,187.911,545.232,364.447,514.263,169.095,177.101,169.095,292.601,310.615,358.415,19.621,21.036,19.621 +5397,168.613,371.495,520.952,186.524,536.441,363.253,521.756,174.428,166.474,174.428,338.078,312.679,354.641,20.294,23.869,20.294 +5398,168.643,368.000,530.000,184.913,528.498,361.957,530.000,0.000,155.628,0.000,342.000,312.423,354.087,20.000,22.525,20.000 +5399,168.675,368.048,536.240,185.522,519.612,363.024,535.701,6.129,144.828,6.129,346.304,312.799,356.410,24.931,22.372,24.931 +5400,168.708,369.938,546.653,188.516,511.454,365.415,545.662,12.355,133.196,12.355,350.983,312.831,360.243,24.821,19.928,24.821 +5401,168.742,371.834,557.830,192.034,501.428,367.707,556.398,19.128,122.442,19.128,359.239,311.620,367.974,25.411,19.594,25.411 +5402,168.774,368.831,568.821,196.602,491.040,364.451,566.686,25.984,111.337,25.984,358.304,310.103,368.049,25.887,18.382,25.887 +5403,168.806,364.241,580.866,203.148,480.793,359.846,577.960,33.471,100.081,33.471,358.064,307.599,368.602,25.225,18.203,25.225 +5404,168.838,356.994,592.507,211.108,470.976,352.896,588.897,41.379,88.761,41.379,357.760,304.232,368.683,24.923,17.985,24.923 +5405,168.868,348.568,602.876,219.914,462.478,344.628,598.349,48.965,77.800,48.965,356.730,303.051,368.732,24.208,18.650,24.208 +5406,168.899,339.862,615.766,231.107,454.338,334.265,607.096,57.155,67.607,57.155,347.935,302.371,368.575,22.758,20.461,22.758 +5407,168.934,328.807,631.128,242.232,448.363,320.934,615.015,63.958,56.720,63.958,332.701,300.951,368.569,21.084,18.145,21.084 +5408,168.964,312.026,624.013,254.615,442.410,310.468,618.895,73.066,46.212,73.066,359.502,302.753,370.202,22.545,19.235,22.545 +5409,168.993,294.944,626.094,268.040,438.731,294.198,621.681,80.404,35.096,80.404,360.549,303.859,369.501,26.956,19.681,26.956 +5410,169.024,284.888,625.988,282.627,435.107,284.869,620.559,89.799,24.246,89.799,360.057,305.812,370.917,25.024,24.027,25.024 +5411,169.057,284.888,625.988,282.627,435.107,284.869,620.559,89.799,24.246,89.799,360.057,305.812,370.917,25.024,24.027,25.024 +5412,169.086,266.322,625.039,295.770,436.967,266.988,619.570,96.944,13.355,96.944,358.466,308.420,369.486,25.784,20.901,25.784 +5413,169.116,254.375,621.323,309.132,439.764,255.910,615.912,105.843,2.770,105.843,356.725,310.653,367.973,21.827,19.074,21.827 +5414,169.147,242.954,615.291,321.571,443.253,245.489,609.761,114.631,172.469,114.631,353.967,312.962,366.133,19.883,19.888,19.883 +5415,169.178,231.755,608.383,332.784,448.250,235.426,602.647,122.619,162.350,122.619,351.429,315.635,365.050,19.675,20.878,19.675 +5416,169.209,221.867,600.677,342.362,455.355,226.862,594.832,130.513,152.053,130.513,346.762,316.401,362.140,19.410,21.222,19.410 +5417,169.241,206.707,598.483,350.309,463.827,219.591,587.030,138.366,142.108,138.366,324.625,317.321,359.102,19.100,20.505,19.100 +5418,169.273,190.278,593.902,357.872,474.451,213.177,578.074,145.346,131.148,145.346,300.223,316.930,355.897,19.936,21.816,19.936 +5419,169.304,200.350,573.031,364.457,486.277,208.337,568.847,152.354,121.264,152.354,335.182,317.981,353.216,19.784,22.866,19.784 +5420,169.335,199.730,561.501,369.858,497.133,205.511,559.279,158.978,110.323,158.978,339.018,317.515,351.405,19.749,24.555,19.749 +5421,169.367,198.055,552.026,373.940,508.342,204.145,550.430,165.313,100.008,165.313,337.246,318.954,349.836,20.220,25.952,20.220 +5422,169.399,197.409,542.741,376.500,519.000,203.501,541.831,171.506,90.000,171.506,336.630,320.000,348.948,19.183,25.000,19.183 +5423,169.429,197.514,534.281,378.174,529.592,203.974,533.967,177.219,79.380,177.219,335.479,323.242,348.414,19.333,26.046,19.333 +5424,169.460,198.601,523.869,379.343,538.766,205.777,524.145,2.203,69.740,2.203,333.638,325.852,348.000,24.674,24.681,24.674 +5425,169.491,199.495,516.959,379.546,547.331,207.726,517.966,6.981,60.255,6.981,331.645,328.320,348.231,25.159,22.698,25.159 +5426,169.525,201.021,510.468,378.272,555.277,209.537,512.196,11.470,50.618,11.470,330.483,330.617,347.863,25.708,20.188,25.708 +5427,169.556,201.021,510.468,378.272,555.277,209.537,512.196,11.470,50.618,11.470,330.483,330.617,347.863,25.708,20.188,25.708 +5428,169.584,201.998,504.683,377.485,561.517,211.946,507.485,15.732,41.424,15.732,327.304,331.781,347.976,25.392,19.716,25.392 +5429,169.615,202.227,500.441,375.744,566.981,213.541,504.725,20.742,32.372,20.742,323.282,332.860,347.478,19.158,19.908,19.158 +5430,169.646,139.418,467.186,374.603,570.578,215.441,500.974,23.962,24.474,23.962,181.036,332.117,347.424,18.276,19.973,18.276 +5431,169.676,200.643,488.265,372.157,573.699,217.597,496.162,24.974,15.978,24.974,308.285,332.005,345.689,25.171,21.651,25.171 +5432,169.708,210.154,485.731,369.309,577.613,220.041,491.380,29.745,6.766,29.745,321.994,330.849,344.768,25.675,22.453,25.675 +5433,169.740,213.763,483.090,366.011,582.255,221.838,488.270,32.677,177.455,32.677,325.006,328.742,344.194,25.839,23.910,25.839 +5434,169.772,216.440,480.658,362.907,585.589,223.527,485.619,34.992,167.196,34.992,325.727,327.999,343.028,25.314,24.955,25.314 +5435,169.803,218.818,478.580,359.668,589.237,225.238,483.447,37.164,156.482,37.164,325.960,326.955,342.072,25.154,26.625,25.154 +5436,169.834,220.682,476.554,356.615,592.166,226.680,481.457,39.267,145.394,39.267,325.840,326.532,341.335,25.402,26.734,25.402 +5437,169.864,222.333,474.886,353.845,595.325,228.155,479.935,40.934,134.326,40.934,325.701,326.128,341.113,25.238,26.652,25.238 +5438,169.895,224.043,473.903,351.685,598.120,229.536,478.897,42.274,122.989,42.274,326.314,327.374,341.162,25.091,25.884,25.091 +5439,169.925,225.304,472.426,349.724,600.690,230.800,477.630,43.435,111.801,43.435,326.793,329.424,341.930,25.678,24.512,25.678 +5440,169.957,226.581,471.827,348.769,602.550,231.964,477.093,44.366,100.491,44.366,327.394,330.674,342.453,25.533,22.470,25.533 +5441,169.987,226.581,471.827,348.769,602.550,231.964,477.093,44.366,100.491,44.366,327.394,330.674,342.453,25.533,22.470,25.533 +5442,170.016,227.669,471.850,348.500,604.500,233.152,477.365,45.171,90.000,45.171,327.416,331.000,342.971,24.742,21.000,24.742 +5443,170.047,227.532,471.032,348.855,605.340,233.767,477.383,45.526,79.418,45.526,326.073,333.559,343.871,24.715,19.703,24.715 +5444,170.079,226.805,469.333,350.038,605.597,234.350,477.079,45.754,68.749,45.754,323.939,334.590,345.566,25.416,19.727,25.416 +5445,170.111,221.640,468.932,351.772,604.889,232.160,479.699,45.666,57.913,45.666,316.162,334.741,346.269,18.836,20.401,18.836 +5446,170.144,173.750,422.250,352.678,603.837,231.879,480.379,45.000,47.649,45.000,181.019,334.986,345.433,17.678,19.079,17.678 +5447,170.177,220.449,468.092,353.720,602.035,232.189,479.013,42.930,36.995,42.930,313.478,334.408,345.547,23.226,19.519,23.226 +5448,170.209,225.613,471.841,354.810,599.401,232.483,478.522,44.202,26.874,44.202,324.777,333.645,343.941,25.071,20.522,25.071 +5449,170.243,224.909,473.003,355.668,597.187,231.247,478.967,43.264,15.642,43.264,325.848,332.646,343.254,25.230,23.650,25.230 +5450,170.276,223.918,473.929,356.428,595.288,230.042,479.456,42.068,5.224,42.068,326.362,329.739,342.862,26.089,25.215,26.089 +5451,170.307,222.000,475.500,357.479,593.742,228.341,480.906,40.446,175.426,40.446,326.288,328.351,342.953,25.288,25.000,25.288 +5452,170.338,220.232,477.085,358.317,590.228,226.238,481.890,38.660,166.675,38.660,326.247,327.365,341.629,25.144,27.477,25.144 +5453,170.374,218.480,479.006,359.898,588.783,224.886,483.760,36.578,154.799,36.578,326.057,326.586,342.012,25.825,26.453,25.825 +5454,170.419,216.170,481.750,361.204,586.173,222.502,486.062,34.256,144.246,34.256,326.664,325.847,341.986,25.373,26.683,25.373 +5455,170.453,214.098,484.719,363.056,583.072,220.522,488.680,31.661,133.958,31.661,326.637,325.447,341.731,25.379,26.711,25.379 +5456,170.484,211.648,488.002,364.962,579.808,218.349,491.686,28.798,123.690,28.798,326.567,325.886,341.860,25.454,26.348,25.454 +5457,170.515,209.389,492.010,367.231,575.818,216.064,495.207,25.589,113.499,25.589,327.511,325.879,342.313,25.495,25.718,25.495 +5458,170.551,207.121,496.948,369.951,571.107,213.583,499.533,21.801,103.392,21.801,329.609,326.261,343.530,25.440,25.339,25.440 +5459,170.582,204.638,502.308,372.257,565.891,211.216,504.409,17.716,93.576,17.716,330.412,326.737,344.224,25.865,23.829,25.865 +5460,170.613,202.446,507.637,375.351,559.347,209.599,509.401,13.851,83.541,13.851,331.044,327.662,345.778,25.204,24.129,25.204 +5461,170.642,200.689,513.365,378.096,551.821,208.181,514.613,9.462,73.301,9.462,332.250,328.056,347.441,25.482,24.233,25.482 +5462,170.675,198.941,520.618,379.858,543.331,206.831,521.265,4.686,63.625,4.686,332.671,327.819,348.503,24.083,23.797,24.083 +5463,170.708,197.961,530.816,380.975,534.300,205.938,530.749,179.521,54.315,179.521,334.047,328.054,350.002,18.510,23.178,18.510 +5464,170.740,197.573,539.159,380.520,523.980,205.295,538.301,173.660,44.709,173.660,335.933,327.426,351.471,19.878,21.852,19.878 +5465,170.772,198.110,548.168,378.563,514.349,205.244,546.650,167.989,34.796,167.989,337.904,327.682,352.492,19.645,19.806,19.645 +5466,170.803,199.431,557.269,376.314,502.937,206.641,554.899,161.801,25.942,161.801,339.649,326.033,354.829,19.416,21.873,19.416 +5467,170.834,202.315,567.021,372.172,490.815,209.299,563.788,155.158,16.390,155.158,341.527,325.056,356.919,19.158,21.670,19.158 +5468,170.865,206.585,577.022,366.537,479.812,213.034,573.028,148.226,7.306,148.226,343.992,322.743,359.164,19.471,21.618,19.471 +5469,170.895,211.802,587.020,358.508,469.811,217.653,582.281,140.995,178.435,140.995,345.429,321.181,360.489,19.280,19.883,19.280 +5470,170.925,219.121,596.254,349.135,459.952,224.045,591.038,133.352,169.899,133.352,348.037,319.588,362.383,19.145,20.240,19.145 +5471,170.956,228.043,605.252,338.400,452.700,231.854,599.893,125.422,161.565,125.422,350.250,317.176,363.403,19.475,18.025,19.475 +5472,170.986,228.043,605.252,338.400,452.700,231.854,599.893,125.422,161.565,125.422,350.250,317.176,363.403,19.475,18.025,19.475 +5473,171.016,238.437,613.209,325.700,444.900,241.595,607.093,117.313,153.435,117.313,351.638,315.286,365.404,19.522,19.230,19.522 +5474,171.047,250.346,619.775,312.193,440.086,252.497,613.525,108.988,145.954,108.988,353.630,313.162,366.850,19.786,19.617,19.786 +5475,171.078,266.041,625.495,297.883,436.989,267.300,619.039,101.026,138.246,101.026,355.920,311.749,369.076,25.112,18.735,25.112 +5476,171.109,280.810,627.661,283.064,436.120,281.097,620.858,92.417,131.049,92.417,355.696,310.341,369.313,25.808,18.896,25.808 +5477,171.141,293.245,627.773,268.325,437.721,292.478,621.443,83.089,124.196,83.089,357.835,308.708,370.588,26.533,18.568,26.533 +5478,171.173,308.651,625.172,253.701,441.625,307.012,619.413,74.110,117.496,74.110,359.203,307.370,371.180,23.904,17.974,23.904 +5479,171.204,324.332,618.647,239.462,447.630,321.883,613.383,65.048,110.877,65.048,358.492,307.001,370.104,22.534,18.200,22.534 +5480,171.235,338.191,610.358,226.831,455.603,335.116,605.803,55.977,104.497,55.977,359.161,306.352,370.153,24.053,18.351,24.053 +5481,171.266,350.083,600.134,215.709,465.248,346.281,596.045,47.090,98.256,47.090,358.229,305.763,369.396,25.088,18.473,25.088 +5482,171.296,359.974,588.139,206.683,476.080,355.722,584.772,38.379,92.104,38.379,357.787,306.344,368.634,26.214,18.322,26.214 +5483,171.326,367.276,575.646,199.441,487.574,362.509,572.916,29.795,86.014,29.795,356.853,306.278,367.838,25.733,18.825,25.733 +5484,171.356,371.912,562.679,194.450,499.692,367.130,560.782,21.634,79.663,21.634,355.788,306.701,366.077,25.646,21.018,25.646 +5485,171.387,371.912,562.679,194.450,499.692,367.130,560.782,21.634,79.663,21.634,355.788,306.701,366.077,25.646,21.018,25.646 +5486,171.416,372.077,549.573,191.528,511.849,367.352,548.414,13.785,74.055,13.785,349.215,307.413,358.944,25.146,21.154,25.146 +5487,171.447,370.273,536.861,189.765,523.869,365.368,536.330,6.180,67.751,6.180,341.982,308.207,351.849,25.539,22.802,25.539 +5488,171.478,369.053,527.789,189.596,535.412,364.330,527.879,178.909,62.850,178.909,340.243,309.063,349.691,20.891,22.816,20.891 +5489,171.509,369.232,517.247,190.859,546.422,365.153,517.816,172.057,56.650,172.057,344.914,310.622,353.151,20.729,21.062,20.729 +5490,171.543,369.733,507.335,192.992,556.871,365.843,508.342,165.496,51.072,165.496,350.953,311.865,358.991,20.237,21.573,20.237 +5491,171.574,365.210,498.375,195.465,565.565,361.371,499.829,159.263,45.292,159.263,348.659,311.173,356.868,19.840,21.195,19.840 +5492,171.606,360.938,490.364,199.206,574.163,356.986,492.349,153.338,39.885,153.338,346.586,312.410,355.431,19.653,21.680,19.653 +5493,171.636,356.001,483.376,202.335,583.081,351.607,486.153,147.715,34.824,147.715,345.537,313.443,355.934,19.621,25.448,19.621 +5494,171.666,350.524,477.329,207.275,589.727,346.520,480.413,142.392,29.291,142.392,343.933,314.525,354.041,19.559,24.697,19.559 +5495,171.697,345.302,471.828,212.398,596.092,341.314,475.498,137.379,23.671,137.379,342.207,315.159,353.046,19.250,25.469,19.250 +5496,171.727,339.776,467.060,217.485,601.060,335.963,471.195,132.685,18.622,132.685,340.326,316.566,351.575,19.154,25.535,19.154 +5497,171.758,334.345,462.949,223.052,605.777,330.818,467.440,128.137,13.241,128.137,339.293,316.761,350.714,19.405,25.996,19.405 +5498,171.790,334.345,462.949,223.052,605.777,330.818,467.440,128.137,13.241,128.137,339.293,316.761,350.714,19.405,25.996,19.405 +5499,171.819,328.943,459.462,228.698,609.631,325.591,464.470,123.794,8.227,123.794,337.004,317.220,349.056,19.552,25.279,19.552 +5500,171.849,323.553,456.740,234.048,613.502,320.439,462.203,119.677,2.726,119.677,335.877,317.022,348.454,19.523,25.733,19.523 +5501,171.880,318.438,454.409,239.035,616.487,315.598,460.267,115.866,178.636,115.866,334.922,318.338,347.942,19.469,24.826,19.469 +5502,171.912,312.979,452.301,244.620,619.124,310.465,458.518,112.023,173.581,112.023,333.742,319.696,347.155,19.207,24.781,19.207 +5503,171.944,307.870,450.616,249.906,621.518,305.649,457.324,108.319,168.996,108.319,332.654,320.497,346.787,19.487,25.740,19.487 +5504,171.974,302.751,449.727,255.248,623.551,300.905,456.718,104.797,165.124,104.797,331.461,321.371,345.923,19.483,25.355,19.483 +5505,172.006,297.886,448.684,260.406,624.777,296.421,455.933,101.423,161.241,101.423,330.476,321.636,345.266,19.329,24.137,19.329 +5506,172.037,293.014,447.929,265.793,626.517,291.900,455.759,98.097,156.801,98.097,329.648,322.751,345.466,19.052,24.160,19.052 +5507,172.068,288.019,448.212,270.957,627.378,287.390,455.681,94.814,152.996,94.814,329.948,323.415,344.940,18.702,24.313,18.702 +5508,172.099,283.350,448.047,275.959,627.751,283.151,455.854,91.458,149.237,91.458,328.428,324.301,344.048,18.674,23.835,18.674 +5509,172.130,278.557,448.846,281.254,627.872,278.809,456.329,88.069,145.713,88.069,328.083,325.120,343.057,18.843,24.186,18.843 +5510,172.160,274.729,449.143,286.613,627.638,275.355,456.562,85.179,140.738,85.179,327.944,325.626,342.834,19.197,23.712,19.197 +5511,172.190,274.729,449.143,286.613,627.638,275.355,456.562,85.179,140.738,85.179,327.944,325.626,342.834,19.197,23.712,19.197 +5512,172.218,269.599,449.617,291.965,627.322,270.737,457.328,81.607,138.705,81.607,326.952,326.346,342.543,19.007,23.057,19.007 +5513,172.249,265.535,450.672,297.750,626.750,267.083,458.217,78.408,135.000,78.408,327.112,326.683,342.516,19.718,23.335,19.718 +5514,172.280,261.220,452.228,303.018,625.555,263.126,459.303,74.921,132.663,74.921,327.157,326.830,341.811,20.467,24.195,20.467 +5515,172.310,256.703,453.405,308.992,624.086,259.154,460.633,71.267,129.151,71.267,326.336,327.755,341.600,20.966,22.812,20.966 +5516,172.342,252.675,455.281,315.008,622.506,255.560,462.289,67.620,125.676,67.620,326.411,328.158,341.569,22.791,23.141,22.791 +5517,172.374,247.642,457.450,321.110,620.225,251.060,464.377,63.739,123.163,63.739,326.066,328.158,341.515,22.364,23.323,22.364 +5518,172.406,243.273,459.635,327.191,617.112,247.073,466.154,59.760,120.343,59.760,326.438,328.661,341.530,23.965,23.470,23.965 +5519,172.437,238.540,462.697,333.453,613.739,242.792,468.893,55.536,117.759,55.536,326.426,328.398,341.454,24.528,23.753,24.528 +5520,172.467,233.674,466.030,339.207,609.410,238.223,471.681,51.167,115.427,51.167,326.710,328.859,341.219,25.086,23.259,25.086 +5521,172.498,228.828,469.881,345.547,605.186,234.095,475.453,46.611,112.620,46.611,326.344,329.769,341.679,25.547,24.538,25.547 +5522,172.530,223.488,474.470,351.051,599.519,229.147,479.519,41.738,110.426,41.738,326.534,329.357,341.703,25.246,23.868,25.246 +5523,172.560,218.958,479.840,357.132,592.521,224.669,484.077,36.573,107.700,36.573,327.768,328.019,341.992,25.388,24.648,25.388 +5524,172.590,218.958,479.840,357.132,592.521,224.669,484.077,36.573,107.700,36.573,327.768,328.019,341.992,25.388,24.648,25.388 +5525,172.618,214.183,485.599,362.344,584.956,220.238,489.270,31.223,105.843,31.223,328.085,327.747,342.246,25.572,24.349,25.572 +5526,172.649,209.943,492.305,367.034,576.629,216.129,495.265,25.570,103.536,25.570,328.769,327.225,342.485,25.495,24.306,25.495 +5527,172.679,205.542,499.837,371.157,567.439,212.084,502.159,19.537,101.497,19.537,329.607,325.937,343.490,25.354,25.030,25.354 +5528,172.712,201.968,508.709,374.566,557.347,208.660,510.271,13.134,99.273,13.134,330.781,325.023,344.526,24.898,25.398,24.898 +5529,172.743,199.521,517.501,376.635,546.376,206.005,518.252,6.611,96.843,6.611,332.411,323.876,345.466,25.571,25.179,25.571 +5530,172.776,197.476,527.812,377.300,534.600,204.095,527.769,179.628,94.399,179.628,333.077,322.202,346.315,24.474,25.693,24.474 +5531,172.809,197.190,541.407,376.216,522.095,203.142,540.602,172.304,92.010,172.304,335.973,320.399,347.986,19.498,25.686,19.498 +5532,172.841,198.737,552.873,374.500,510.000,204.265,551.372,164.808,90.000,164.808,338.800,318.000,350.255,19.675,25.000,19.675 +5533,172.874,201.672,564.569,370.499,496.950,206.840,562.354,156.801,88.568,156.801,341.134,316.426,352.379,19.433,25.192,19.433 +5534,172.905,206.087,576.278,362.982,484.735,210.204,573.762,148.559,86.186,148.559,343.921,314.768,353.571,19.279,23.282,19.279 +5535,172.936,212.557,587.869,355.580,472.689,216.641,584.466,140.194,84.232,140.194,345.956,313.536,356.587,19.206,24.270,19.206 +5536,172.966,221.243,598.154,345.788,462.234,224.475,594.486,131.382,82.213,131.382,349.077,311.528,358.856,19.389,24.448,19.389 +5537,172.996,231.651,608.188,333.712,453.276,234.329,603.984,122.490,80.248,122.490,351.038,310.217,361.007,20.126,23.422,20.126 +5538,173.026,243.507,617.151,320.019,446.266,245.781,611.886,113.361,78.215,113.361,351.492,308.093,362.962,20.093,22.184,20.093 +5539,173.057,243.507,617.151,320.019,446.266,245.781,611.886,113.361,78.215,113.361,351.492,308.093,362.962,20.093,22.184,20.093 +5540,173.086,256.756,623.778,305.210,441.588,258.095,618.172,103.437,76.185,103.437,353.871,306.827,365.398,23.170,21.141,23.170 +5541,173.116,270.637,629.510,289.988,439.017,271.198,621.770,94.145,74.258,94.145,351.744,305.491,367.266,25.657,20.561,25.657 +5542,173.148,291.242,634.522,273.947,439.403,290.447,622.472,86.224,72.350,86.224,343.365,304.287,367.517,24.672,18.365,24.672 +5543,173.179,312.141,646.654,257.889,442.186,306.027,620.342,76.917,70.560,76.917,314.829,303.255,368.855,25.936,18.305,25.936 +5544,173.212,334.696,649.261,243.244,447.624,320.316,615.176,67.126,68.682,67.126,294.678,303.626,368.668,21.235,18.404,21.235 +5545,173.243,338.733,615.667,230.192,454.983,333.661,607.571,57.928,66.557,57.928,349.373,302.915,368.481,23.250,19.218,23.250 +5546,173.275,351.149,602.958,218.852,464.886,346.212,597.511,47.810,64.290,47.810,352.894,303.738,367.597,24.706,19.855,24.706 +5547,173.306,360.886,589.514,209.094,475.896,356.112,585.720,38.476,62.210,38.476,354.659,304.968,366.854,25.650,19.989,25.650 +5548,173.337,368.603,575.432,200.849,487.745,363.400,572.492,29.469,59.948,29.469,354.470,304.766,366.424,26.148,19.865,26.148 +5549,173.367,372.829,561.450,195.231,500.412,368.255,559.710,20.830,57.848,20.830,355.817,305.587,365.604,26.050,20.223,26.050 +5550,173.398,372.325,547.030,192.167,512.982,367.583,545.978,12.509,55.528,12.509,347.084,306.493,356.798,26.011,22.148,26.011 +5551,173.429,369.955,534.302,190.529,525.618,365.473,533.944,4.567,53.344,4.567,341.109,308.412,350.102,25.430,22.201,25.430 +5552,173.459,369.224,524.625,190.284,538.379,364.733,524.869,176.891,51.407,176.891,340.855,309.229,349.851,21.161,21.239,21.161 +5553,173.490,369.224,524.625,190.284,538.379,364.733,524.869,176.891,51.407,176.891,340.855,309.229,349.851,21.161,21.239,21.161 +5554,173.518,369.852,513.612,191.646,549.628,365.704,514.378,169.540,48.894,169.540,346.695,310.342,355.130,20.878,21.630,20.878 +5555,173.549,367.223,503.213,193.978,560.640,363.563,504.356,162.659,46.753,162.659,349.640,310.686,357.307,20.144,22.487,20.144 +5556,173.580,362.887,493.995,197.668,570.751,359.083,495.685,156.038,43.958,156.038,347.655,311.950,355.980,19.596,22.110,19.596 +5557,173.610,357.693,485.887,202.191,580.001,353.876,488.126,149.601,41.236,149.601,345.792,313.919,354.644,19.896,21.530,19.896 +5558,173.641,351.850,478.521,206.406,589.361,347.495,481.716,143.735,38.480,143.735,344.065,314.695,354.867,19.404,25.833,19.404 +5559,173.673,345.709,472.340,212.079,596.890,341.450,476.184,137.932,35.676,137.932,342.351,316.431,353.826,19.826,25.640,19.826 +5560,173.703,339.484,467.026,218.452,603.028,335.509,471.356,132.553,32.905,132.553,340.563,317.555,352.318,19.177,25.829,19.177 +5561,173.734,333.102,462.696,224.413,608.391,329.438,467.490,127.384,29.560,127.384,339.379,319.126,351.448,19.196,26.004,19.196 +5562,173.765,326.556,459.219,231.600,613.300,323.372,464.245,122.354,26.565,122.354,338.153,319.758,350.053,19.124,25.938,19.124 +5563,173.796,320.243,456.320,237.840,616.984,317.433,461.692,117.610,23.962,117.610,336.867,321.763,348.992,19.220,26.501,19.220 +5564,173.827,313.779,453.769,245.092,620.256,311.406,459.356,113.015,20.659,113.015,335.899,321.282,348.039,19.320,26.522,19.320 +5565,173.859,307.691,451.892,252.130,622.971,305.693,457.859,108.520,17.241,108.520,334.566,321.659,347.151,19.338,26.478,19.338 +5566,173.893,301.606,450.407,259.099,625.102,299.992,456.783,104.207,13.932,104.207,333.258,322.324,346.414,19.266,26.996,19.266 +5567,173.923,301.606,450.407,259.099,625.102,299.992,456.783,104.207,13.932,104.207,333.258,322.324,346.414,19.266,26.996,19.266 +5568,173.951,295.612,449.196,265.621,626.345,294.409,456.014,100.008,10.460,100.008,331.640,323.351,345.486,19.116,27.293,19.116 +5569,173.981,289.599,448.545,272.466,627.295,288.849,455.797,95.906,6.667,95.906,329.963,323.938,344.546,18.659,26.972,18.659 +5570,174.011,283.708,448.539,278.985,627.789,283.473,455.829,91.848,3.013,91.848,329.441,323.079,344.030,18.345,27.120,18.345 +5571,174.043,277.901,448.899,286.456,627.504,278.207,456.211,87.599,179.164,87.599,328.340,323.097,342.977,18.754,26.917,18.754 +5572,174.077,272.970,449.219,292.822,627.134,273.796,456.863,83.830,175.700,83.830,327.282,323.418,342.658,19.508,27.531,19.508 +5573,174.110,267.156,450.608,299.520,626.145,268.489,457.940,79.695,172.122,79.695,327.181,324.275,342.086,19.588,27.306,19.588 +5574,174.145,261.849,451.761,306.126,624.183,263.676,458.803,75.455,168.376,75.455,326.932,324.603,341.481,20.296,27.420,20.296 +5575,174.178,256.630,453.615,312.852,622.782,259.039,460.682,71.175,163.706,71.175,326.654,324.882,341.586,21.017,26.816,21.017 +5576,174.211,251.144,455.651,319.511,620.177,254.116,462.575,66.772,159.708,66.772,326.165,325.016,341.236,21.972,26.964,21.972 +5577,174.243,245.716,458.048,326.214,616.873,249.254,464.784,62.291,155.472,62.291,325.649,325.412,340.866,22.747,27.028,22.747 +5578,174.276,240.125,461.056,332.666,613.085,244.230,467.520,57.585,151.085,57.585,325.263,325.474,340.579,23.615,26.802,23.615 +5579,174.308,234.715,464.717,339.231,608.846,239.365,470.833,52.753,146.310,52.753,325.250,325.609,340.615,24.348,26.626,24.348 +5580,174.343,229.106,468.667,345.774,603.437,234.378,474.446,47.629,141.875,47.629,325.096,325.758,340.742,24.701,26.776,24.701 +5581,174.374,223.719,473.609,351.862,597.350,229.393,478.767,42.274,137.203,42.274,325.439,325.002,340.775,25.091,26.796,25.091 +5582,174.406,218.546,479.427,357.776,590.409,224.497,483.865,36.718,132.709,36.718,326.221,325.009,341.069,25.611,26.679,25.611 +5583,174.437,213.247,485.576,362.969,582.412,219.653,489.404,30.863,128.019,30.863,326.543,325.207,341.467,25.489,26.384,25.489 +5584,174.467,208.455,493.012,367.609,574.072,215.092,496.065,24.706,123.275,24.706,327.710,325.144,342.321,25.561,26.649,25.561 +5585,174.498,204.420,501.698,371.490,564.538,211.013,503.862,18.178,118.523,18.178,328.916,325.301,342.794,25.596,26.397,25.596 +5586,174.529,200.885,511.077,374.802,553.133,207.533,512.407,11.310,113.749,11.310,330.456,323.106,344.015,24.907,26.251,24.907 +5587,174.560,198.482,520.729,376.622,541.699,205.127,521.240,4.399,108.935,4.399,331.789,322.216,345.117,25.310,26.209,25.310 +5588,174.590,198.482,520.729,376.622,541.699,205.127,521.240,4.399,108.935,4.399,331.789,322.216,345.117,25.310,26.209,25.310 +5589,174.618,197.011,534.701,377.089,529.522,203.748,534.333,176.874,103.903,176.874,333.197,320.650,346.690,19.635,26.257,19.635 +5590,174.648,197.589,545.966,375.933,516.567,203.705,544.797,169.180,98.807,169.180,336.479,319.094,348.932,19.390,26.264,19.390 +5591,174.678,199.871,558.084,372.334,503.488,204.999,556.329,161.114,94.014,161.114,340.021,317.692,350.861,19.546,25.201,19.546 +5592,174.711,203.577,570.628,367.257,490.978,208.418,568.149,152.889,88.363,152.889,342.231,316.299,353.108,19.557,25.704,19.557 +5593,174.743,209.393,582.239,358.890,478.512,213.184,579.507,144.215,83.660,144.215,345.165,313.957,354.511,19.362,22.638,19.362 +5594,174.777,217.318,593.357,350.961,467.008,220.847,589.869,135.329,78.465,135.329,347.891,312.617,357.814,19.388,24.835,19.388 +5595,174.810,227.403,603.900,339.384,457.035,230.046,600.307,126.344,73.379,126.344,351.475,310.806,360.397,19.661,24.170,19.661 +5596,174.843,238.923,612.725,326.534,448.586,241.004,608.640,116.996,68.199,116.996,353.709,309.368,362.878,19.889,23.583,19.889 +5597,174.877,252.254,620.081,312.129,442.691,253.687,615.604,107.745,62.810,107.745,355.597,307.310,364.998,19.887,22.908,19.887 +5598,174.911,265.350,624.950,297.169,439.072,266.021,619.960,97.653,57.366,97.653,356.781,305.880,366.851,25.843,22.841,25.843 +5599,174.941,285.260,626.952,281.682,437.752,285.223,621.862,89.589,51.582,89.589,358.084,304.997,368.262,25.057,22.613,25.057 +5600,174.972,297.216,626.662,265.487,439.551,296.270,621.862,78.848,45.559,78.848,359.859,304.124,369.644,26.684,21.164,26.684 +5601,175.002,315.661,621.999,249.848,444.188,314.055,617.547,70.163,39.036,70.163,360.255,303.565,369.721,21.784,20.385,21.784 +5602,175.032,331.316,614.524,235.903,450.077,328.789,610.010,60.757,32.376,60.757,359.506,303.940,369.853,24.158,19.561,24.158 +5603,175.063,344.342,604.975,224.207,456.850,340.938,600.679,51.610,25.065,51.610,359.487,303.636,370.450,25.323,22.553,25.323 +5604,175.093,354.609,593.919,213.057,467.068,350.861,590.463,42.689,17.117,42.689,359.716,303.938,369.913,25.581,21.296,25.581 +5605,175.125,354.609,593.919,213.057,467.068,350.861,590.463,42.689,17.117,42.689,359.716,303.938,369.913,25.581,21.296,25.581 +5606,175.153,363.144,581.375,204.019,477.579,358.896,578.501,34.081,8.627,34.081,359.401,305.395,369.659,26.316,20.912,26.316 +5607,175.183,368.230,568.880,196.996,489.430,364.129,566.887,25.911,179.606,25.911,359.237,306.075,368.357,25.886,19.230,25.886 +5608,175.215,372.383,556.753,191.122,500.707,367.299,555.074,18.268,170.198,18.268,357.972,308.755,368.679,25.750,21.163,25.750 +5609,175.245,369.575,544.323,187.127,511.960,364.454,543.328,10.999,160.267,10.999,349.673,311.051,360.108,25.242,22.990,25.242 +5610,175.276,367.765,533.612,184.877,523.785,362.503,533.224,4.210,150.255,4.210,345.127,313.064,355.679,25.263,23.567,25.263 +5611,175.307,366.953,526.285,184.240,535.282,361.730,526.487,177.791,139.565,177.791,344.939,315.211,355.394,20.688,22.052,20.688 +5612,175.338,367.890,517.230,184.505,545.990,362.118,518.055,171.870,128.860,171.870,347.897,317.040,359.558,20.506,22.105,20.506 +5613,175.368,368.482,508.902,187.786,556.910,363.440,510.147,166.136,117.553,166.136,353.098,318.592,363.485,19.921,19.890,19.921 +5614,175.399,364.753,501.378,190.247,565.619,360.159,502.959,161.007,106.914,161.007,352.390,319.820,362.108,19.764,19.230,19.764 +5615,175.429,361.823,494.706,193.847,574.035,356.967,496.854,156.147,95.711,156.147,350.178,320.302,360.797,19.524,18.806,19.524 +5616,175.459,358.564,488.771,198.067,580.813,353.748,491.379,151.565,84.839,151.565,348.015,319.769,358.969,19.603,19.174,19.603 +5617,175.491,354.916,483.408,202.228,586.505,350.302,486.365,147.344,74.004,147.344,346.444,320.049,357.404,19.494,20.219,19.494 +5618,175.523,354.916,483.408,202.228,586.505,350.302,486.365,147.344,74.004,147.344,346.444,320.049,357.404,19.494,20.219,19.494 +5619,175.551,351.356,478.609,207.229,591.587,347.107,481.760,143.444,62.168,143.444,344.967,319.828,355.548,19.279,20.444,19.279 +5620,175.582,347.730,474.587,211.134,594.890,343.826,477.881,139.844,51.308,139.844,343.525,318.281,353.741,18.988,21.421,18.988 +5621,175.612,344.388,470.801,213.633,598.944,339.981,474.984,136.494,39.579,136.494,341.804,317.402,353.955,18.981,25.702,18.981 +5622,175.644,340.462,467.840,217.039,601.074,336.733,471.764,133.548,28.346,133.548,341.548,317.646,352.375,18.745,26.195,18.745 +5623,175.676,337.273,465.234,219.884,603.237,333.592,469.535,130.554,16.899,130.554,339.706,317.531,351.029,19.293,26.343,19.293 +5624,175.708,334.285,462.613,222.537,604.991,330.670,467.248,127.951,4.185,127.951,338.472,316.568,350.230,19.412,25.201,19.412 +5625,175.740,332.122,459.730,224.481,606.524,327.924,465.607,125.538,172.569,125.538,335.142,317.441,349.587,19.413,23.324,19.413 +5626,175.770,329.370,457.728,225.955,609.150,324.888,464.507,123.471,159.864,123.471,334.183,319.531,350.437,19.220,22.095,19.220 +5627,175.800,328.104,454.172,227.584,611.635,322.160,463.932,121.345,147.995,121.345,327.830,321.497,350.685,19.612,19.716,19.612 +5628,175.831,328.190,448.326,229.555,614.577,319.508,463.493,119.790,136.081,119.790,316.667,323.931,351.618,18.615,19.902,18.615 +5629,175.862,337.786,424.695,232.057,617.521,317.090,462.983,118.393,124.160,118.393,265.719,325.937,352.765,18.070,20.539,18.070 +5630,175.893,321.000,452.000,233.888,619.637,315.561,462.877,116.565,112.218,116.565,329.149,328.565,353.472,18.783,20.510,18.783 +5631,175.924,321.000,452.000,233.888,619.637,315.561,462.877,116.565,112.218,116.565,329.149,328.565,353.472,18.783,20.510,18.783 +5632,175.951,316.528,456.084,236.513,621.796,313.379,462.695,115.473,101.674,115.473,338.743,329.301,353.388,18.711,20.606,18.711 +5633,175.981,314.959,456.128,239.500,623.500,312.207,462.230,114.278,90.000,114.278,340.415,329.000,353.803,19.216,19.000,19.216 +5634,176.011,313.660,456.482,242.907,624.905,311.309,461.890,113.499,77.530,113.499,341.748,330.814,353.541,19.219,21.058,19.219 +5635,176.044,312.468,455.452,245.777,624.534,310.256,460.798,112.479,67.001,112.479,340.325,328.536,351.896,19.181,21.211,19.181 +5636,176.078,311.654,454.558,247.779,624.036,309.491,459.955,111.843,54.752,111.843,338.893,326.884,350.524,18.956,21.898,18.956 +5637,176.109,311.215,454.131,247.940,624.455,308.909,460.032,111.337,42.979,111.337,338.003,324.834,350.674,18.891,25.955,18.891 +5638,176.141,311.043,453.441,248.423,623.128,308.825,459.224,110.985,31.159,110.985,336.941,323.964,349.328,19.070,25.970,19.070 +5639,176.173,310.507,452.315,248.722,621.867,308.292,458.220,110.556,19.335,110.556,335.674,322.661,348.288,19.195,26.785,19.195 +5640,176.204,310.344,451.997,248.398,620.749,308.148,457.930,110.308,7.722,110.308,334.217,321.112,346.870,19.444,26.537,19.444 +5641,176.234,310.522,451.622,247.251,620.120,308.234,457.786,110.362,175.061,110.362,333.668,320.226,346.819,19.079,25.104,19.079 +5642,176.265,310.844,451.110,245.642,619.843,308.301,457.970,110.336,162.784,110.336,332.486,320.838,347.119,19.245,24.162,19.245 +5643,176.295,311.720,450.094,244.168,620.377,308.568,458.438,110.695,151.928,110.695,330.658,322.176,348.497,19.042,22.118,19.042 +5644,176.326,312.688,449.611,242.630,620.543,309.029,459.123,111.038,140.964,111.038,328.609,323.928,348.993,19.672,19.818,19.672 +5645,176.357,312.688,449.611,242.630,620.543,309.029,459.123,111.038,140.964,111.038,328.609,323.928,348.993,19.672,19.818,19.672 +5646,176.384,314.410,445.735,242.126,621.760,308.981,459.849,111.038,130.236,111.038,319.994,325.731,350.238,20.103,20.435,20.103 +5647,176.415,318.819,434.921,241.804,622.881,308.711,460.365,111.666,121.373,111.666,296.718,327.566,351.473,18.065,20.449,18.065 +5648,176.450,339.847,384.235,241.328,623.512,308.809,460.720,112.087,112.620,112.087,187.350,328.385,352.437,18.156,20.385,18.156 +5649,176.495,312.627,455.595,241.310,624.178,310.133,461.580,112.620,95.618,112.620,340.154,329.851,353.122,19.308,19.741,19.308 +5650,176.527,313.505,456.686,241.209,624.419,311.166,462.017,113.691,86.169,113.691,342.006,330.002,353.649,18.800,19.105,18.800 +5651,176.561,315.249,456.731,241.282,623.566,312.753,462.143,114.759,75.685,114.759,341.115,330.586,353.034,19.132,21.130,19.132 +5652,176.599,317.276,457.166,240.346,621.846,314.788,462.245,116.095,66.001,116.095,340.842,327.753,352.153,19.153,21.268,19.153 +5653,176.630,319.756,457.060,239.126,619.223,317.116,462.089,117.699,55.402,117.699,339.395,325.709,350.757,18.970,22.347,18.970 +5654,176.660,322.180,457.756,235.500,618.000,319.138,463.155,119.396,43.995,119.396,339.529,323.259,351.923,19.020,26.047,19.020 +5655,176.691,324.826,458.787,232.591,614.887,321.770,463.821,121.264,33.232,121.264,339.045,321.490,350.823,19.080,26.276,19.080 +5656,176.722,324.826,458.787,232.591,614.887,321.770,463.821,121.264,33.232,121.264,339.045,321.490,350.823,19.080,26.276,19.080 +5657,176.749,327.997,459.498,229.403,611.233,324.731,464.464,123.331,22.567,123.331,338.125,319.999,350.013,19.254,26.024,19.254 +5658,176.781,331.168,460.766,226.014,607.425,327.825,465.440,125.574,10.376,125.574,337.936,318.245,349.429,19.424,26.378,19.424 +5659,176.812,334.857,462.127,221.482,604.028,330.785,467.331,128.047,178.958,128.047,336.813,317.166,350.027,19.448,23.705,19.448 +5660,176.844,339.516,463.098,216.584,600.601,333.866,469.656,130.746,167.645,130.746,334.199,318.012,351.511,19.348,21.835,19.348 +5661,176.878,346.719,462.026,212.007,598.016,336.701,472.591,133.477,155.726,133.477,324.504,318.805,353.623,20.104,20.412,20.104 +5662,176.910,369.296,448.398,207.378,595.032,339.607,475.928,137.161,144.611,137.161,274.909,320.258,355.886,18.158,19.575,18.158 +5663,176.944,349.918,473.992,202.946,590.617,343.094,479.658,140.301,133.354,140.301,339.673,321.987,357.413,18.669,21.014,18.669 +5664,176.975,351.445,479.367,199.679,587.796,346.015,483.325,143.909,122.361,143.909,346.146,322.439,359.585,19.545,19.980,19.545 +5665,177.007,354.514,484.632,196.573,583.439,349.598,487.716,147.901,111.477,147.901,349.388,322.769,360.995,19.700,20.701,19.700 +5666,177.038,358.579,489.758,195.213,578.131,353.739,492.317,152.140,100.437,152.140,349.559,321.460,360.508,19.766,19.255,19.766 +5667,177.068,362.501,495.515,193.826,571.470,357.942,497.476,156.730,89.056,156.730,350.068,319.154,359.995,19.430,19.283,19.430 +5668,177.099,366.706,502.122,192.844,563.096,362.270,503.590,161.684,77.654,161.684,349.742,316.394,359.087,19.321,20.806,19.321 +5669,177.130,370.116,509.620,191.563,553.370,365.744,510.649,166.759,66.211,166.759,349.686,313.440,358.670,19.812,20.893,19.812 +5670,177.160,369.415,518.268,190.555,543.891,365.235,518.833,172.304,54.502,172.304,344.490,310.845,352.925,20.356,21.275,20.356 +5671,177.191,369.415,518.268,190.555,543.891,365.235,518.833,172.304,54.502,172.304,344.490,310.845,352.925,20.356,21.275,20.356 +5672,177.219,369.725,527.625,189.338,532.610,364.322,527.809,178.052,43.247,178.052,339.280,307.260,350.093,20.444,22.018,20.444 +5673,177.250,371.262,534.221,189.498,521.083,364.756,533.701,4.574,31.795,4.574,338.359,306.866,351.412,25.199,22.837,25.199 +5674,177.280,382.880,547.709,191.130,509.869,366.083,544.142,11.991,21.125,11.991,322.168,305.131,356.512,24.567,22.599,24.567 +5675,177.310,376.365,560.372,193.544,499.206,366.774,557.453,16.928,11.155,16.928,345.318,306.313,365.368,21.130,22.579,21.130 +5676,177.342,369.141,566.750,196.533,488.958,364.790,564.752,24.667,0.627,24.667,359.493,305.135,369.069,25.344,19.335,25.344 +5677,177.373,363.130,578.928,201.912,478.989,359.406,576.523,32.856,170.211,32.856,361.567,306.614,370.433,25.289,19.796,25.289 +5678,177.405,356.769,589.728,209.140,469.822,353.135,586.653,40.236,159.705,40.236,361.258,307.478,370.779,25.016,18.854,25.016 +5679,177.436,347.941,600.497,218.488,460.981,344.706,596.857,48.366,149.343,48.366,361.082,308.207,370.820,24.166,18.238,24.166 +5680,177.467,337.090,610.298,228.907,452.741,334.119,605.776,56.698,139.044,56.698,360.522,308.015,371.344,23.164,18.752,23.164 +5681,177.497,324.319,618.388,240.380,446.099,321.843,613.051,65.113,128.807,65.113,359.694,307.976,371.460,22.099,19.387,22.099 +5682,177.528,309.186,624.684,252.776,441.059,307.504,618.995,73.531,118.632,73.531,360.438,307.423,372.303,22.907,19.922,22.907 +5683,177.559,292.721,629.237,266.173,438.399,291.606,622.004,81.238,108.217,81.238,356.040,306.751,370.675,27.142,20.392,27.142 +5684,177.590,292.721,629.237,266.173,438.399,291.606,622.004,81.238,108.217,81.238,356.040,306.751,370.675,27.142,20.392,27.142 +5685,177.617,277.500,634.000,280.317,438.345,277.500,622.173,90.000,97.449,90.000,344.000,306.536,367.655,25.000,21.271,25.000 +5686,177.648,263.486,636.081,295.403,439.505,266.086,620.483,99.462,87.221,99.462,335.045,305.660,366.671,24.989,18.386,24.989 +5687,177.678,251.801,621.105,310.905,442.796,253.683,615.477,108.489,76.373,108.489,351.958,306.604,363.828,20.236,21.292,20.236 +5688,177.710,239.934,613.246,324.952,447.672,242.026,609.115,116.862,65.772,116.862,353.723,308.229,362.985,19.962,23.436,19.962 +5689,177.742,228.831,605.286,337.500,454.096,231.815,601.039,125.088,55.516,125.088,351.602,310.872,361.983,19.644,24.312,19.644 +5690,177.775,219.525,596.429,347.823,462.181,223.444,592.247,133.142,44.438,133.142,348.447,313.968,359.911,19.284,24.644,19.284 +5691,177.807,212.136,586.668,357.666,470.538,217.126,582.631,141.022,34.695,141.022,346.689,318.568,359.526,19.642,23.401,19.642 +5692,177.838,206.817,576.386,365.426,480.297,212.323,573.012,148.496,25.051,148.496,345.056,321.212,357.971,19.555,21.624,19.555 +5693,177.869,202.243,566.434,371.703,489.735,209.066,563.341,155.611,14.893,155.611,342.053,323.427,357.036,19.879,22.587,19.879 +5694,177.900,197.828,556.882,375.886,499.402,206.883,554.010,162.401,4.803,162.401,336.211,324.545,355.209,19.597,22.861,19.597 +5695,177.930,191.562,548.207,377.352,508.638,205.023,545.636,169.186,175.465,169.186,325.012,324.914,352.421,18.652,23.279,18.652 +5696,177.960,169.345,540.276,379.384,518.924,204.745,537.041,174.779,166.556,174.779,280.031,326.258,351.127,18.790,20.537,18.790 +5697,177.991,191.000,527.500,378.811,529.257,204.905,527.500,0.000,157.694,0.000,320.000,324.829,347.811,23.000,22.821,23.000 +5698,178.022,191.000,527.500,378.811,529.257,204.905,527.500,0.000,157.694,0.000,320.000,324.829,347.811,23.000,22.821,23.000 +5699,178.050,196.810,519.679,377.893,539.605,206.018,520.480,4.970,147.011,4.970,327.287,324.225,345.771,25.296,25.090,25.296 +5700,178.082,200.206,512.070,376.088,549.117,207.444,513.427,10.620,135.751,10.620,329.938,323.920,344.666,24.633,26.522,24.633 +5701,178.113,202.827,505.635,373.260,558.837,209.443,507.439,15.255,124.249,15.255,329.423,325.575,343.138,25.347,26.346,25.347 +5702,178.145,205.271,499.740,371.038,566.772,212.030,502.154,19.654,112.714,19.654,328.601,325.236,342.954,25.696,26.107,25.696 +5703,178.176,208.894,493.807,368.212,574.759,215.233,496.670,24.305,102.043,24.305,329.211,327.289,343.122,25.489,24.828,25.489 +5704,178.208,212.751,488.588,365.596,581.521,218.752,491.889,28.811,91.102,28.811,330.027,329.112,343.724,25.454,22.938,25.454 +5705,178.239,215.110,484.099,363.867,587.407,222.311,488.669,32.400,80.013,32.400,327.795,331.639,344.852,25.314,22.416,25.314 +5706,178.270,217.678,480.227,361.392,592.351,225.277,485.727,35.893,69.228,35.893,326.797,333.343,345.558,25.668,20.796,25.668 +5707,178.300,219.191,476.034,359.275,596.138,228.074,483.165,38.755,58.488,38.755,323.286,334.247,346.069,25.066,20.248,25.066 +5708,178.330,210.197,467.341,357.291,598.878,228.372,483.497,41.634,47.851,41.634,297.386,334.396,346.021,18.187,19.742,18.187 +5709,178.361,216.905,466.156,354.764,600.992,231.636,479.509,42.190,37.154,42.190,305.865,334.828,345.630,22.977,19.411,22.977 +5710,178.392,216.905,466.156,354.764,600.992,231.636,479.509,42.190,37.154,42.190,305.865,334.828,345.630,22.977,19.411,22.977 +5711,178.419,228.265,470.153,352.465,601.610,234.425,476.621,46.397,27.037,46.397,325.966,334.127,343.831,24.724,21.623,24.724 +5712,178.451,230.864,468.945,349.704,603.791,236.032,474.795,48.540,16.066,48.540,328.257,332.278,343.868,24.825,24.408,24.825 +5713,178.481,232.816,467.483,346.693,605.181,237.504,473.129,50.297,5.505,50.297,328.016,330.516,342.694,24.466,25.844,24.466 +5714,178.513,234.286,465.954,343.631,607.096,238.888,471.812,51.843,175.314,51.843,327.277,328.440,342.177,24.207,26.109,24.207 +5715,178.545,235.700,464.100,340.857,608.467,240.346,470.295,53.130,165.005,53.130,326.200,327.491,341.688,24.600,26.357,24.600 +5716,178.578,236.524,463.265,338.154,609.825,241.045,469.563,54.324,154.712,54.324,325.638,327.011,341.144,23.745,27.111,23.745 +5717,178.610,238.032,462.546,335.677,611.244,242.313,468.708,55.211,144.039,55.211,325.650,326.800,340.657,24.361,26.457,24.361 +5718,178.642,239.016,462.107,333.693,612.685,243.163,468.258,56.014,133.727,56.014,325.883,327.043,340.720,24.298,26.266,24.298 +5719,178.674,239.766,461.860,332.360,614.041,243.870,468.089,56.622,122.152,56.622,326.204,328.713,341.123,24.325,25.230,24.325 +5720,178.704,240.206,461.592,331.817,615.513,244.522,468.234,56.989,112.360,56.989,326.282,330.165,342.124,24.228,23.770,24.228 +5721,178.734,239.995,461.568,331.188,616.929,244.599,468.703,57.171,102.875,57.171,326.008,332.120,342.991,23.339,21.391,23.339 +5722,178.765,239.884,461.495,331.585,617.047,244.639,468.865,57.171,92.490,57.171,325.764,332.599,343.306,23.447,19.243,23.447 +5723,178.795,238.962,460.741,333.396,617.567,244.753,469.616,56.876,83.660,56.876,323.498,333.835,344.693,23.420,19.215,23.420 +5724,178.828,237.391,459.893,335.098,617.241,244.327,470.258,56.213,75.069,56.213,320.331,334.704,345.274,23.381,18.745,23.381 +5725,178.861,231.958,458.606,337.891,616.046,241.527,472.428,55.305,67.276,55.305,312.243,335.382,345.865,18.594,19.457,18.594 +5726,178.893,223.089,450.122,340.238,614.792,240.089,473.555,54.039,60.255,54.039,288.360,335.266,346.262,17.966,18.729,17.966 +5727,178.925,223.089,450.122,340.238,614.792,240.089,473.555,54.039,60.255,54.039,288.360,335.266,346.262,17.966,18.729,17.966 +5728,178.952,186.721,407.138,343.169,612.629,238.633,474.623,52.431,53.320,52.431,175.963,335.203,346.247,18.047,19.331,18.047 +5729,178.982,219.707,453.127,345.676,609.834,238.204,474.355,48.933,46.637,48.933,289.178,336.082,345.491,21.878,18.902,21.878 +5730,179.012,226.080,465.823,348.706,607.141,235.784,476.238,47.026,39.435,47.026,317.036,334.202,345.505,23.663,19.099,23.663 +5731,179.044,228.091,468.348,351.423,603.821,235.461,476.244,46.975,31.931,46.975,323.175,334.002,344.777,25.489,20.897,25.489 +5732,179.078,227.250,471.750,353.645,600.486,233.283,477.783,45.000,23.286,45.000,326.683,333.524,343.747,24.749,21.661,24.749 +5733,179.111,224.707,473.694,356.117,596.663,230.799,479.327,42.757,12.969,42.757,326.750,332.112,343.344,25.171,24.545,25.171 +5734,179.145,221.839,475.601,358.016,593.138,228.190,481.003,40.380,2.517,40.380,326.412,328.957,343.087,25.473,25.700,25.473 +5735,179.178,219.197,477.959,360.312,590.475,226.162,483.367,37.828,172.972,37.828,325.661,327.942,343.297,25.526,25.764,25.526 +5736,179.210,216.621,480.895,362.266,586.323,223.433,485.654,34.942,162.087,34.942,326.309,326.710,342.927,25.355,25.749,25.355 +5737,179.241,214.243,484.502,364.057,582.603,220.919,488.657,31.898,150.852,31.898,326.603,325.681,342.329,25.522,26.671,25.522 +5738,179.274,211.620,488.361,366.071,578.082,218.075,491.876,28.568,139.399,28.568,327.701,324.962,342.402,25.460,26.682,25.460 +5739,179.304,208.618,492.671,368.073,573.449,215.330,495.793,24.944,128.073,24.944,327.685,324.928,342.490,25.494,26.516,25.494 +5740,179.333,205.795,498.548,370.300,568.400,212.458,501.047,20.556,116.565,20.556,328.652,325.124,342.884,25.749,25.938,25.749 +5741,179.364,203.519,504.047,372.869,562.235,210.232,506.027,16.440,105.124,16.440,329.794,325.040,343.791,25.456,25.908,25.456 +5742,179.395,201.595,510.338,375.395,555.181,208.327,511.766,11.976,93.576,11.976,331.117,324.929,344.881,24.782,24.889,24.782 +5743,179.427,199.872,516.590,377.602,547.777,206.677,517.448,7.192,82.073,7.192,333.037,325.819,346.755,25.470,24.172,25.470 +5744,179.460,198.235,524.319,379.125,538.776,205.270,524.550,1.878,70.253,1.878,334.378,326.039,348.455,24.577,25.050,24.577 +5745,179.491,198.235,524.319,379.125,538.776,205.270,524.550,1.878,70.253,1.878,334.378,326.039,348.455,24.577,25.050,24.577 +5746,179.519,197.404,535.485,379.919,529.363,204.729,535.023,176.394,59.349,176.394,335.720,326.369,350.398,19.277,24.853,19.277 +5747,179.550,197.895,544.450,379.578,518.554,205.098,543.223,170.333,48.731,170.333,337.675,326.144,352.289,19.368,23.945,19.368 +5748,179.582,199.046,553.904,376.753,508.320,205.628,552.030,164.107,37.596,164.107,339.420,326.075,353.108,19.516,20.442,19.516 +5749,179.612,201.240,563.670,373.278,496.427,207.712,560.981,157.443,27.423,157.443,341.310,325.676,355.327,19.635,21.152,19.635 +5750,179.642,205.038,573.393,368.977,484.288,211.451,569.796,150.709,16.307,150.709,343.731,323.244,358.438,19.357,21.896,19.357 +5751,179.673,209.900,583.335,361.666,473.837,215.777,578.991,143.531,5.692,143.531,345.026,321.295,359.644,19.300,20.853,19.300 +5752,179.703,216.631,592.594,352.884,464.134,221.397,588.019,136.169,175.159,136.169,348.084,319.651,361.297,19.218,19.766,19.218 +5753,179.734,224.269,601.727,342.504,455.515,228.375,596.561,128.475,164.767,128.475,349.661,318.021,362.860,19.160,19.151,19.160 +5754,179.764,233.882,610.240,330.614,447.695,237.367,604.383,120.753,154.350,120.753,351.041,316.254,364.670,19.706,19.537,19.706 +5755,179.794,244.619,617.586,317.869,442.508,247.262,611.264,112.694,144.011,112.694,352.157,313.720,365.862,20.079,19.283,20.079 +5756,179.825,256.607,623.274,304.500,438.585,258.236,616.789,104.098,133.766,104.098,354.839,311.329,368.212,21.373,19.185,21.373 +5757,179.856,256.607,623.274,304.500,438.585,258.236,616.789,104.098,133.766,104.098,354.839,311.329,368.212,21.373,19.185,21.373 +5758,179.884,268.773,627.279,290.263,436.853,269.491,620.062,95.677,123.548,95.677,354.225,310.085,368.729,24.872,19.334,24.872 +5759,179.916,286.245,629.038,276.513,437.438,286.095,622.190,88.746,113.385,88.746,356.134,307.656,369.834,24.147,19.151,24.147 +5760,179.946,301.235,628.045,261.839,439.699,300.017,620.827,80.419,103.344,80.419,355.271,306.522,369.911,25.816,20.528,25.816 +5761,179.976,314.907,624.537,248.681,444.510,312.693,617.963,71.384,93.202,71.384,355.749,304.035,369.623,22.086,19.264,22.086 +5762,180.008,329.149,617.937,236.756,450.468,326.137,612.074,62.804,82.972,62.804,355.995,303.510,369.179,23.534,18.952,23.534 +5763,180.038,341.580,609.943,226.211,457.975,337.820,604.688,54.416,72.956,54.416,355.598,303.719,368.521,23.809,19.261,23.809 +5764,180.069,352.907,600.676,216.899,466.532,347.934,595.476,46.273,62.987,46.273,353.120,304.078,367.510,24.695,19.565,24.695 +5765,180.100,360.999,591.720,208.244,475.676,354.878,586.698,39.365,52.792,39.365,351.729,302.959,367.564,25.749,20.339,25.749 +5766,180.130,371.439,578.749,201.542,485.454,362.670,573.623,30.311,42.319,30.311,346.886,303.170,367.200,25.846,19.517,25.846 +5767,180.161,377.689,569.307,196.153,495.365,366.026,564.069,24.184,32.102,24.184,340.649,304.860,366.219,24.592,20.386,24.592 +5768,180.193,388.892,558.034,192.360,504.607,367.681,551.652,16.746,21.845,16.746,318.582,305.658,362.882,22.940,22.015,22.940 +5769,180.224,388.892,558.034,192.360,504.607,367.681,551.652,16.746,21.845,16.746,318.582,305.658,362.882,22.940,22.015,22.940 +5770,180.252,418.813,550.088,189.441,514.814,365.217,541.317,9.293,11.404,9.293,246.880,307.127,355.498,20.868,21.801,20.868 +5771,180.282,440.928,535.635,187.076,524.673,363.328,531.667,2.927,0.818,2.927,197.356,308.140,352.758,20.819,20.969,20.819 +5772,180.312,373.441,523.567,186.973,534.404,363.273,524.213,176.367,170.344,176.367,332.806,312.841,353.183,20.704,21.592,20.704 +5773,180.344,369.827,514.961,186.549,545.446,363.407,516.028,170.567,160.308,170.567,345.558,314.070,358.575,20.363,21.863,20.363 +5774,180.377,369.467,506.638,187.192,554.618,363.229,508.307,165.025,149.695,165.025,351.136,315.860,364.050,20.152,21.801,20.152 +5775,180.409,364.412,500.002,188.917,563.563,359.343,501.842,160.056,139.230,160.056,351.732,318.243,362.517,19.491,20.951,19.491 +5776,180.441,361.152,493.586,191.717,572.083,356.046,495.947,155.179,128.491,155.179,350.968,320.315,362.219,19.752,19.426,19.752 +5777,180.472,357.073,487.955,195.529,580.220,352.282,490.642,150.713,117.920,150.713,350.090,322.115,361.075,19.635,18.994,19.635 +5778,180.503,352.781,483.356,199.432,586.979,348.523,486.162,146.616,107.482,146.616,349.734,323.514,359.931,19.509,18.821,19.509 +5779,180.533,349.131,478.722,203.904,592.791,344.940,481.904,142.786,96.911,142.786,348.239,323.601,358.764,19.526,18.892,19.526 +5780,180.564,345.531,475.053,208.413,597.914,341.524,478.504,139.259,86.496,139.259,346.996,323.232,357.571,19.362,19.290,19.362 +5781,180.594,342.087,471.474,213.118,601.971,338.294,475.146,135.929,75.964,135.929,345.741,323.543,356.299,19.376,19.645,19.376 +5782,180.625,338.996,468.320,218.544,605.050,335.532,472.053,132.866,65.072,132.866,343.942,323.510,354.129,19.311,21.355,19.311 +5783,180.655,338.996,468.320,218.544,605.050,335.532,472.053,132.866,65.072,132.866,343.942,323.510,354.129,19.311,21.355,19.311 +5784,180.683,335.936,465.659,222.098,607.162,332.572,469.655,130.083,54.716,130.083,342.238,321.410,352.685,19.158,22.690,19.158 +5785,180.715,333.024,463.135,224.299,610.162,329.142,468.192,127.516,43.647,127.516,340.163,320.447,352.913,19.247,25.493,19.247 +5786,180.750,330.244,461.024,227.602,611.066,326.744,465.993,125.154,32.829,125.154,339.237,319.530,351.393,19.150,25.914,19.150 +5787,180.782,327.534,459.171,230.466,612.086,324.249,464.229,122.995,21.801,122.995,338.102,318.839,350.164,19.191,26.183,19.191 +5788,180.813,325.146,457.595,232.367,612.603,322.055,462.724,121.074,10.954,121.074,337.349,319.047,349.327,19.086,25.938,19.086 +5789,180.845,322.929,455.922,234.000,613.500,319.717,461.652,119.268,0.000,119.268,335.603,318.000,348.740,19.220,25.000,19.220 +5790,180.879,321.123,454.630,235.281,614.889,317.680,461.226,117.567,168.826,117.567,333.821,319.081,348.701,19.548,24.453,19.548 +5791,180.911,319.154,453.297,236.149,615.789,315.553,460.621,116.182,158.962,116.182,332.239,320.209,348.563,19.474,23.118,19.474 +5792,180.944,317.757,451.732,237.444,617.407,313.757,460.411,114.745,148.903,114.745,329.934,321.734,349.048,19.546,21.108,19.546 +5793,180.976,316.932,448.993,238.428,619.008,312.019,460.289,113.507,139.899,113.507,325.162,323.839,349.799,19.224,19.888,19.224 +5794,181.009,316.527,445.652,240.328,620.965,310.538,460.251,112.306,131.441,112.306,319.112,325.385,350.672,19.879,20.112,19.879 +5795,181.039,316.485,439.063,242.346,622.731,308.277,459.994,111.413,123.690,111.413,306.181,326.996,351.147,18.035,20.247,18.035 +5796,181.070,319.459,424.716,244.600,624.300,306.598,459.893,110.082,116.565,110.082,276.489,328.255,351.398,18.097,20.125,18.097 +5797,181.100,331.662,381.371,246.759,625.912,304.837,459.784,108.886,109.983,108.886,186.220,329.099,351.968,17.927,19.821,17.927 +5798,181.131,307.675,447.489,248.300,626.818,303.818,459.805,107.391,103.761,107.391,326.132,330.340,351.945,18.621,19.922,18.621 +5799,181.163,304.365,453.077,250.729,628.163,302.362,459.876,106.414,97.567,106.414,337.863,333.052,352.039,18.769,19.895,18.769 +5800,181.194,302.904,453.135,253.054,629.020,301.115,459.534,105.611,90.722,105.611,339.043,332.163,352.333,19.319,20.024,19.319 +5801,181.226,302.003,453.515,256.841,629.961,300.380,459.524,105.113,83.466,105.113,339.339,333.205,351.787,19.301,22.881,19.301 +5802,181.257,302.003,453.515,256.841,629.961,300.380,459.524,105.113,83.466,105.113,339.339,333.205,351.787,19.301,22.881,19.301 +5803,181.285,301.842,452.797,257.156,629.961,300.140,459.232,104.815,75.875,104.815,338.774,332.276,352.088,19.241,23.120,19.241 +5804,181.315,301.540,453.092,258.005,629.067,300.080,458.660,104.701,66.689,104.701,339.499,330.755,351.012,19.187,20.891,19.187 +5805,181.346,301.751,452.645,259.071,628.371,300.283,458.224,104.744,57.639,104.744,338.527,329.564,350.065,19.189,21.502,19.189 +5806,181.379,302.212,452.456,258.022,628.580,300.538,458.731,104.931,48.013,104.931,337.152,327.941,350.139,19.196,24.826,19.196 +5807,181.412,302.796,452.081,257.855,627.545,301.083,458.361,105.255,37.972,105.255,336.176,326.536,349.195,19.120,26.341,19.120 +5808,181.445,303.126,451.703,257.328,625.989,301.508,457.535,105.503,28.706,105.503,336.162,325.382,348.267,19.202,26.689,19.202 +5809,181.477,303.792,451.226,256.373,624.400,302.112,457.107,105.945,18.759,105.945,334.610,323.548,346.843,19.505,27.352,19.505 +5810,181.511,305.298,450.839,254.552,623.150,303.456,456.979,106.699,8.455,106.699,333.611,322.230,346.431,19.444,27.348,19.444 +5811,181.543,306.062,450.519,252.515,621.980,304.113,456.828,107.170,178.224,107.170,332.844,321.311,346.049,19.344,25.809,19.344 +5812,181.575,307.124,451.014,250.152,621.362,305.118,457.194,107.980,168.024,107.980,333.238,321.424,346.234,19.389,25.790,19.389 +5813,181.606,308.969,450.175,247.371,620.698,306.374,457.742,108.925,156.801,108.925,330.568,322.095,346.567,19.459,23.373,19.459 +5814,181.636,310.623,449.767,244.944,620.912,307.480,458.459,109.877,147.758,109.877,329.590,323.329,348.074,19.402,22.199,19.402 +5815,181.666,313.433,447.716,241.943,620.398,308.996,459.176,111.161,137.224,111.161,324.534,324.839,349.112,19.434,19.935,19.434 +5816,181.695,318.015,441.678,240.076,621.323,310.208,460.359,112.681,127.405,112.681,310.623,326.388,351.117,18.178,20.046,18.178 +5817,181.726,343.625,389.840,238.379,621.437,311.701,461.393,114.044,117.316,114.044,195.361,327.844,352.064,17.956,20.601,17.956 +5818,181.757,343.625,389.840,238.379,621.437,311.701,461.393,114.044,117.316,114.044,195.361,327.844,352.064,17.956,20.601,17.956 +5819,181.785,317.288,455.041,235.724,620.764,313.821,462.391,115.258,106.949,115.258,336.858,329.386,353.111,18.709,21.126,18.709 +5820,181.816,318.596,457.275,234.246,620.904,315.481,463.389,116.996,97.275,116.996,340.730,329.201,354.453,19.031,19.628,19.031 +5821,181.848,320.857,459.211,232.953,619.935,318.002,464.377,118.926,87.455,118.926,342.772,328.609,354.577,19.209,19.137,19.209 +5822,181.880,323.511,460.015,231.428,618.078,320.478,465.100,120.812,77.652,120.812,342.157,327.659,353.998,19.495,19.912,19.495 +5823,181.911,326.700,460.826,230.720,615.681,323.628,465.537,123.111,67.720,123.111,341.782,327.179,353.030,19.192,22.022,19.192 +5824,181.944,330.203,462.216,227.507,611.861,327.078,466.591,125.538,57.588,125.538,341.419,323.816,352.171,19.181,21.883,19.181 +5825,181.975,333.700,463.584,223.296,609.229,329.881,468.439,128.184,47.603,128.184,340.758,320.920,353.111,19.049,24.338,19.049 +5826,182.007,337.724,465.761,219.718,605.097,333.691,470.403,130.986,37.376,130.986,340.559,318.818,352.858,19.416,25.573,19.416 +5827,182.037,341.232,468.160,215.368,599.773,337.170,472.357,134.061,26.870,134.061,340.849,317.993,352.530,18.869,25.833,18.869 +5828,182.067,345.690,471.248,211.674,594.252,341.469,475.144,137.291,16.699,137.291,340.836,315.987,352.325,19.274,24.808,19.274 +5829,182.098,350.299,474.315,207.198,588.020,345.314,478.385,140.763,5.711,140.763,339.774,314.631,352.646,19.299,22.090,19.299 +5830,182.130,357.274,476.180,202.372,582.582,348.748,482.276,144.437,176.169,144.437,333.860,314.105,354.822,19.292,21.452,19.292 +5831,182.161,367.627,477.768,198.085,578.212,351.960,487.409,148.392,166.931,148.392,320.486,314.877,357.277,20.309,21.047,20.309 +5832,182.192,398.069,470.008,194.064,572.378,354.679,492.410,152.694,158.776,152.694,261.139,315.482,358.804,18.453,19.883,18.453 +5833,182.223,398.069,470.008,194.064,572.378,354.679,492.410,152.694,158.776,152.694,261.139,315.482,358.804,18.453,19.883,18.453 +5834,182.251,366.121,494.448,190.790,565.208,358.089,497.890,156.801,151.223,156.801,343.104,317.408,360.579,18.777,21.650,18.777 +5835,182.282,366.200,502.100,187.586,559.255,360.426,504.025,161.565,143.733,161.565,350.697,316.648,362.870,19.290,23.128,19.290 +5836,182.312,368.366,509.933,185.339,551.815,362.951,511.213,166.697,135.412,166.697,353.249,316.135,364.377,19.799,23.186,19.799 +5837,182.343,367.631,518.459,183.680,542.760,361.934,519.236,172.235,126.870,172.235,348.097,316.800,359.596,20.177,24.800,20.177 +5838,182.375,367.005,527.184,184.412,534.644,361.791,527.331,178.379,118.323,178.379,344.598,315.817,355.030,20.775,23.162,20.775 +5839,182.406,368.610,534.828,185.855,524.770,363.110,534.360,4.865,109.587,4.865,343.821,314.072,354.861,24.020,22.276,24.020 +5840,182.437,370.479,545.182,190.447,514.277,366.397,544.357,11.427,99.913,11.427,348.516,311.713,356.845,24.922,21.786,24.922 +5841,182.467,373.050,557.350,192.774,503.015,368.301,555.767,18.435,91.123,18.435,356.389,308.254,366.401,25.298,18.134,25.298 +5842,182.502,369.500,570.500,197.391,491.515,364.359,567.930,26.565,82.093,26.565,355.535,306.585,367.029,25.491,19.672,25.491 +5843,182.547,365.115,581.577,204.060,480.532,360.067,578.211,33.690,73.301,33.690,355.840,305.259,367.976,25.794,19.157,25.794 +5844,182.580,357.086,595.144,213.358,470.329,352.180,590.664,42.397,63.598,42.397,354.024,304.123,367.311,25.076,20.093,25.076 +5845,182.613,360.491,621.096,222.301,460.787,343.129,600.027,50.509,54.728,50.509,313.992,302.950,368.593,23.330,19.017,23.330 +5846,182.649,334.962,617.447,233.750,451.750,329.932,609.470,57.763,45.000,57.763,350.563,301.935,369.425,21.421,18.385,21.421 +5847,182.680,321.486,619.094,245.887,445.157,319.653,614.777,66.988,35.740,66.988,360.537,303.188,369.918,22.644,19.412,22.644 +5848,182.713,307.627,623.974,259.711,439.559,306.483,619.372,76.045,26.267,76.045,362.086,304.101,371.571,24.980,20.218,24.980 +5849,182.745,289.457,626.563,273.439,436.328,288.845,621.287,83.387,17.049,83.387,360.383,306.434,371.005,26.547,21.224,26.547 +5850,182.779,273.675,626.096,287.794,436.463,273.867,620.713,92.045,8.005,92.045,358.486,307.165,369.258,27.197,19.542,27.197 +5851,182.813,263.028,624.120,302.499,437.944,264.288,618.595,102.851,178.939,102.851,357.914,309.243,369.249,25.263,19.052,25.263 +5852,182.845,247.278,617.812,317.026,441.141,249.632,611.918,111.768,169.641,111.768,354.492,312.690,367.186,20.257,19.663,20.257 +5853,182.878,234.736,610.165,329.542,446.199,238.083,604.489,120.530,160.606,120.530,352.431,314.735,365.610,20.121,20.766,20.121 +5854,182.912,223.213,602.129,340.522,454.040,228.031,596.241,129.289,151.427,129.289,347.366,315.962,362.582,19.490,21.737,19.490 +5855,182.943,210.237,596.656,349.505,463.013,220.169,587.680,137.896,143.054,137.896,332.317,317.199,359.091,19.329,22.173,19.329 +5856,182.974,186.305,595.896,358.176,474.185,213.029,577.507,145.469,134.687,145.469,291.406,316.810,356.286,19.235,20.803,19.235 +5857,183.005,198.679,572.343,365.166,486.756,208.180,567.572,153.333,126.193,153.333,331.851,317.891,353.116,19.652,22.617,19.652 +5858,183.035,198.611,559.177,371.000,499.000,205.272,556.848,160.731,116.565,160.731,336.954,317.522,351.068,19.401,24.150,19.401 +5859,183.065,197.268,548.143,374.829,512.027,203.657,546.796,168.090,106.091,168.090,336.264,318.809,349.323,19.755,25.850,19.755 +5860,183.097,197.221,537.434,377.088,524.510,203.734,536.842,174.806,96.116,174.806,334.439,320.807,347.518,20.099,25.994,20.099 +5861,183.128,198.061,526.073,377.923,536.811,204.528,526.188,1.023,86.309,1.023,334.179,323.006,347.115,23.389,24.980,23.389 +5862,183.162,200.063,516.682,377.952,547.770,207.036,517.592,7.431,76.399,7.431,332.703,326.014,346.767,24.618,24.189,24.618 +5863,183.193,201.898,508.658,377.207,557.983,210.023,510.557,13.158,66.801,13.158,330.493,328.923,347.181,24.900,23.766,24.900 +5864,183.225,201.898,508.658,377.207,557.983,210.023,510.557,13.158,66.801,13.158,330.493,328.923,347.181,24.900,23.766,24.900 +5865,183.253,204.600,501.200,375.227,566.898,213.387,504.129,18.435,57.461,18.435,328.244,331.251,346.768,25.931,21.748,25.931 +5866,183.284,207.138,493.137,372.298,575.232,216.973,497.563,24.228,48.094,24.228,325.465,332.409,347.034,25.488,20.095,25.488 +5867,183.314,204.609,486.329,369.118,582.087,219.294,494.764,29.876,38.337,29.876,312.951,333.577,346.821,18.228,20.240,18.228 +5868,183.346,200.219,472.720,365.407,587.274,223.723,487.763,32.619,29.302,32.619,290.146,334.138,345.957,22.809,19.781,22.809 +5869,183.379,219.222,477.353,361.315,591.493,227.036,483.492,38.157,20.556,38.157,324.749,333.333,344.623,25.443,22.004,25.443 +5870,183.412,224.787,473.228,356.092,596.652,230.851,478.894,43.055,10.746,43.055,327.215,332.166,343.813,25.169,24.669,25.169 +5871,183.444,228.969,469.933,350.591,601.006,234.251,475.577,46.897,1.498,46.897,326.692,329.332,342.152,24.702,26.011,24.702 +5872,183.479,232.864,467.024,345.619,605.477,237.597,472.765,50.500,173.059,50.500,327.348,328.298,342.228,24.327,25.680,24.327 +5873,183.514,236.180,463.868,340.074,609.458,240.806,470.209,53.893,163.673,53.893,326.302,327.317,341.999,23.905,27.074,23.905 +5874,183.545,239.924,461.049,334.302,612.152,244.168,467.592,57.031,155.109,57.031,325.064,327.009,340.661,24.217,27.395,24.217 +5875,183.578,243.220,459.569,329.018,615.526,246.960,466.063,60.058,145.305,60.058,325.955,326.916,340.942,23.008,26.184,23.008 +5876,183.610,246.560,457.907,323.825,618.339,249.981,464.585,62.870,136.254,62.870,326.016,327.482,341.022,22.558,25.388,22.558 +5877,183.641,250.091,456.356,318.742,620.786,253.181,463.106,65.400,126.431,65.400,326.471,328.419,341.319,22.917,23.390,22.917 +5878,183.671,253.199,454.909,314.186,623.335,256.181,462.322,68.085,117.699,68.085,326.074,329.700,342.055,22.682,21.980,22.682 +5879,183.701,255.383,453.259,309.901,625.467,258.377,461.655,70.374,108.576,70.374,325.374,331.098,343.202,21.182,21.273,21.182 +5880,183.732,257.958,451.577,306.530,628.537,261.168,461.862,72.665,100.609,72.665,323.690,334.544,345.240,20.874,21.184,20.874 +5881,183.762,259.878,448.797,303.819,629.862,263.363,461.482,74.638,93.621,74.638,319.853,334.723,346.162,20.557,21.097,20.557 +5882,183.793,259.462,441.782,303.399,630.980,264.297,461.724,76.373,87.138,76.373,306.368,334.782,347.408,18.023,21.174,18.023 +5883,183.824,259.462,441.782,303.399,630.980,264.297,461.724,76.373,87.138,76.373,306.368,334.782,347.408,18.023,21.174,18.023 +5884,183.852,254.300,405.400,301.909,631.709,266.275,461.286,77.905,81.331,77.905,233.904,335.743,348.213,17.880,21.363,17.880 +5885,183.883,264.800,440.649,299.477,632.486,268.906,460.905,78.541,75.433,78.541,307.132,336.472,348.469,19.456,19.723,19.456 +5886,183.915,268.796,450.935,298.034,632.425,270.334,460.501,80.865,69.444,80.865,328.905,335.557,348.283,19.235,19.663,19.235 +5887,183.945,271.424,452.177,296.511,632.222,272.438,459.787,82.405,62.765,82.405,332.854,333.714,348.209,19.957,19.718,19.957 +5888,183.977,273.444,452.216,294.299,631.955,274.197,459.367,83.991,55.692,83.991,333.107,333.159,347.488,19.367,21.651,19.367 +5889,184.009,275.577,451.645,291.052,632.359,276.139,459.096,85.684,47.802,85.684,332.846,331.962,347.789,19.078,25.020,19.078 +5890,184.040,277.686,451.129,288.473,631.425,278.009,458.200,87.383,39.487,87.383,332.887,330.112,347.045,18.678,25.555,18.678 +5891,184.071,279.598,451.038,285.397,630.838,279.736,457.898,88.847,30.964,88.847,332.315,328.763,346.038,18.453,27.097,18.453 +5892,184.102,281.978,450.455,282.203,629.746,281.920,456.844,90.518,21.705,90.518,333.005,327.755,345.784,18.587,26.980,18.587 +5893,184.133,284.875,449.334,278.656,628.270,284.567,456.031,92.626,12.065,92.626,331.248,325.883,344.657,18.476,28.098,18.476 +5894,184.163,287.028,448.610,275.449,627.625,286.517,455.726,94.108,2.583,94.108,330.232,323.798,344.501,18.604,27.213,18.604 +5895,184.194,289.593,448.371,271.305,626.346,288.894,455.146,95.891,173.290,95.891,330.578,323.241,344.202,18.655,26.581,18.655 +5896,184.225,292.163,448.429,267.041,626.257,291.192,455.584,97.726,162.897,97.726,330.300,323.274,344.741,18.897,25.659,18.897 +5897,184.256,292.163,448.429,267.041,626.257,291.192,455.584,97.726,162.897,97.726,330.300,323.274,344.741,18.897,25.659,18.897 +5898,184.284,295.064,448.512,262.569,625.599,293.830,455.891,99.495,153.905,99.495,330.119,323.358,345.080,19.270,23.570,19.270 +5899,184.315,298.024,448.217,258.247,625.148,296.374,456.328,101.497,144.372,101.497,329.508,324.571,346.063,19.200,21.770,19.200 +5900,184.346,301.264,447.042,254.000,625.000,298.860,457.086,103.459,135.000,103.459,326.831,325.269,347.487,19.600,19.799,19.600 +5901,184.379,306.038,443.368,250.487,625.348,301.727,458.455,105.945,125.582,105.945,317.715,327.351,349.097,18.956,20.200,18.956 +5902,184.412,315.037,426.661,247.169,625.329,304.239,459.544,108.178,116.175,108.178,281.412,328.725,350.631,18.151,19.911,18.151 +5903,184.446,311.831,448.779,243.915,624.688,307.452,460.658,110.235,106.040,110.235,326.444,329.671,351.765,18.589,20.375,18.589 +5904,184.478,312.618,455.585,240.785,623.971,310.111,461.577,112.703,97.658,112.703,340.146,329.755,353.136,18.874,19.938,18.874 +5905,184.512,315.852,457.010,238.234,622.535,313.217,462.578,115.324,88.431,115.324,340.997,329.287,353.317,19.014,18.897,19.014 +5906,184.544,319.627,458.238,235.339,620.531,316.793,463.565,118.014,79.216,118.014,341.596,328.709,353.665,19.274,19.647,19.274 +5907,184.576,323.854,460.203,233.090,618.190,320.982,464.953,121.159,69.955,121.159,342.114,328.328,353.215,18.906,21.061,18.906 +5908,184.607,328.476,461.754,229.522,613.814,325.468,466.160,124.311,60.836,124.311,341.419,324.606,352.089,19.405,21.298,19.405 +5909,184.637,332.627,463.450,225.567,609.248,329.507,467.530,127.405,51.373,127.405,341.153,322.186,351.426,19.111,21.677,19.111 +5910,184.667,337.250,465.921,219.854,605.544,333.330,470.460,130.815,41.795,130.815,340.811,319.553,352.808,19.333,25.585,19.333 +5911,184.697,341.568,469.018,215.262,599.876,337.672,472.971,134.588,32.276,134.588,341.519,317.681,352.621,18.985,25.765,18.985 +5912,184.727,346.006,472.763,210.350,593.162,342.214,476.125,138.440,22.665,138.440,342.487,316.462,352.624,19.370,25.057,19.370 +5913,184.759,351.469,476.928,205.816,586.291,347.033,480.309,142.696,13.079,142.696,341.960,314.129,353.115,19.242,24.263,19.242 +5914,184.789,351.469,476.928,205.816,586.291,347.033,480.309,142.696,13.079,142.696,341.960,314.129,353.115,19.242,24.263,19.242 +5915,184.818,359.147,480.087,201.081,578.573,351.500,485.040,147.068,3.252,147.068,335.974,312.746,354.195,19.552,22.078,19.552 +5916,184.849,369.476,483.580,196.246,571.681,355.183,491.202,151.928,174.852,151.928,323.824,312.886,356.221,19.706,22.001,19.706 +5917,184.880,387.733,484.543,191.935,565.026,358.132,497.229,156.801,167.132,156.801,294.520,313.598,358.931,18.908,21.628,18.908 +5918,184.911,384.850,496.550,188.471,556.924,361.374,504.376,161.565,159.499,161.565,311.801,314.369,361.293,18.657,19.996,18.657 +5919,184.943,369.423,510.165,186.248,549.499,363.600,511.502,167.074,153.328,167.074,350.766,313.959,362.715,19.653,22.527,19.653 +5920,184.973,367.068,519.547,184.321,540.473,362.271,520.144,172.907,145.823,172.907,348.529,314.560,358.197,20.364,23.594,20.364 +5921,185.003,366.500,527.000,183.888,530.765,361.444,527.000,0.000,137.989,0.000,345.000,314.413,355.112,24.000,23.867,24.000 +5922,185.034,368.007,536.740,186.566,521.876,363.617,536.263,6.203,129.401,6.203,346.308,313.589,355.138,24.378,20.422,24.378 +5923,185.064,370.214,548.050,188.167,509.977,365.359,546.913,13.186,122.118,13.186,351.916,312.699,361.890,24.903,22.985,24.903 +5924,185.095,371.598,560.768,192.896,499.032,367.066,559.056,20.688,113.295,20.688,358.599,311.328,368.288,25.403,18.765,25.403 +5925,185.128,367.535,573.182,198.604,487.663,363.036,570.731,28.578,105.124,28.578,358.021,308.995,368.268,25.296,18.420,25.296 +5926,185.160,361.340,585.880,206.151,476.711,357.079,582.684,36.870,97.017,36.870,358.000,306.487,368.653,25.000,18.247,25.000 +5927,185.191,361.340,585.880,206.151,476.711,357.079,582.684,36.870,97.017,36.870,358.000,306.487,368.653,25.000,18.247,25.000 +5928,185.220,352.842,597.179,215.026,466.500,349.001,593.302,45.257,88.995,45.257,357.831,305.164,368.745,25.018,18.278,25.018 +5929,185.251,342.138,609.127,225.757,457.541,338.311,603.865,53.973,80.538,53.973,356.064,303.809,369.078,23.600,19.399,23.600 +5930,185.282,331.330,621.847,238.514,450.334,326.387,612.305,62.613,72.150,62.613,346.983,303.966,368.476,22.209,19.231,22.209 +5931,185.312,318.816,636.051,251.564,443.969,312.803,618.141,71.440,63.662,71.440,331.429,302.790,369.213,21.831,18.305,21.831 +5932,185.344,296.266,627.949,266.499,439.652,295.156,622.104,79.244,55.138,79.244,357.288,303.448,369.188,27.508,20.209,27.508 +5933,185.377,285.377,626.497,281.694,437.441,285.358,621.235,89.793,46.469,89.793,357.088,304.355,367.612,26.021,22.004,26.021 +5934,185.410,264.925,624.393,297.451,437.344,265.638,619.093,97.653,37.828,97.653,358.038,306.351,368.734,26.567,23.500,26.567 +5935,185.440,252.595,619.697,312.446,439.969,254.454,614.066,108.270,29.745,108.270,355.141,309.839,367.001,20.273,23.567,20.273 +5936,185.471,239.145,612.597,326.195,446.572,241.634,607.827,117.553,21.231,117.553,353.400,312.686,364.162,20.314,20.386,20.314 +5937,185.502,227.391,603.677,339.736,453.644,230.889,598.966,126.591,13.019,126.591,351.395,314.579,363.129,19.829,20.545,19.829 +5938,185.532,217.761,593.270,351.123,462.064,222.299,588.784,135.326,4.917,135.326,348.642,317.151,361.404,19.485,20.526,19.485 +5939,185.562,209.286,583.019,360.410,471.395,215.689,578.363,143.973,176.788,143.973,344.080,319.844,359.913,19.483,21.293,19.483 +5940,185.594,201.988,572.532,367.149,482.756,210.254,568.163,152.138,168.601,152.138,338.545,321.633,357.243,19.765,22.870,19.765 +5941,185.625,169.848,571.694,371.851,493.541,207.013,558.284,160.159,162.051,160.159,275.035,322.594,354.055,18.696,20.045,18.696 +5942,185.654,169.848,571.694,371.851,493.541,207.013,558.284,160.159,162.051,160.159,275.035,322.594,354.055,18.696,20.045,18.696 +5943,185.683,179.629,553.262,375.331,506.146,204.662,547.558,167.164,154.516,167.164,299.859,322.578,351.208,19.105,20.610,19.105 +5944,185.715,191.760,539.031,377.240,519.132,204.038,537.769,174.132,146.821,174.132,323.714,322.555,348.399,19.970,22.695,19.970 +5945,185.746,196.000,527.000,377.627,532.086,204.314,527.000,0.000,138.013,0.000,330.000,322.367,346.627,24.000,25.495,24.000 +5946,185.779,198.978,516.171,376.474,544.479,206.146,517.106,7.431,128.758,7.431,330.418,323.736,344.876,25.350,26.447,25.350 +5947,185.811,201.947,508.321,374.104,556.124,208.567,509.897,13.392,119.476,13.392,329.874,325.098,343.484,24.922,26.495,24.922 +5948,185.843,205.222,499.872,371.256,566.142,211.974,502.256,19.440,110.072,19.440,328.604,325.257,342.927,25.350,26.083,25.350 +5949,185.875,209.628,492.508,367.964,576.187,216.119,495.582,25.346,101.004,25.346,329.103,327.532,343.468,25.495,25.522,25.495 +5950,185.906,214.754,485.654,363.135,585.034,220.743,489.300,31.329,91.736,31.329,328.792,328.395,342.816,25.366,22.020,25.366 +5951,185.937,218.859,480.226,359.839,592.831,225.470,485.063,36.193,82.811,36.193,327.772,331.553,344.156,25.097,22.354,25.097 +5952,185.967,222.599,474.736,355.255,599.501,229.774,481.004,41.139,73.971,41.139,325.864,333.515,344.919,25.216,20.932,25.216 +5953,185.996,225.595,468.966,350.994,605.235,234.302,477.848,45.573,65.123,45.573,320.438,334.266,345.313,24.712,20.035,24.712 +5954,186.027,220.240,458.035,346.628,609.746,235.944,476.684,49.899,56.230,49.899,297.389,334.770,346.151,18.197,19.735,18.197 +5955,186.058,220.240,458.035,346.628,609.746,235.944,476.684,49.899,56.230,49.899,297.389,334.770,346.151,18.197,19.735,18.197 +5956,186.092,229.835,457.562,341.504,612.581,241.104,472.131,52.279,47.514,52.279,308.205,335.839,345.043,22.091,19.380,22.091 +5957,186.123,240.540,461.103,337.526,615.348,245.677,469.287,57.880,38.928,57.880,325.756,334.216,345.082,23.710,21.004,23.710 +5958,186.154,245.634,460.245,331.902,617.993,249.213,466.808,61.390,30.902,61.390,329.690,333.222,344.640,22.745,22.209,22.745 +5959,186.184,249.613,458.357,325.657,620.046,252.568,464.645,64.829,22.402,64.829,329.564,332.937,343.460,22.260,24.892,22.260 +5960,186.215,253.931,456.328,320.191,622.021,256.465,462.663,68.199,12.947,68.199,329.609,330.618,343.255,22.655,27.176,22.655 +5961,186.246,257.639,454.458,314.924,623.507,259.878,461.108,71.395,4.289,71.395,328.913,327.705,342.947,22.070,27.647,22.070 +5962,186.278,260.753,452.397,309.051,624.229,262.731,459.558,74.558,175.972,74.558,327.262,325.658,342.120,20.583,27.467,20.583 +5963,186.309,264.882,450.971,302.814,625.436,266.524,458.358,77.471,167.675,77.471,326.806,325.490,341.942,20.825,27.010,20.825 +5964,186.339,268.101,450.061,296.877,626.470,269.356,457.496,80.417,158.776,80.417,327.316,325.112,342.396,19.260,26.038,19.260 +5965,186.370,272.294,449.495,290.811,627.436,273.164,456.894,83.290,150.546,83.290,327.973,325.436,342.873,19.629,25.774,19.629 +5966,186.401,275.953,449.132,284.779,627.434,276.446,456.444,86.143,140.194,86.143,327.672,326.110,342.328,19.035,23.687,19.035 +5967,186.432,279.244,447.400,279.033,628.074,279.456,456.433,88.655,132.343,88.655,325.098,327.119,343.168,18.502,21.798,18.502 +5968,186.463,283.188,447.049,273.646,628.857,282.979,456.443,91.273,124.909,91.273,326.364,328.184,345.158,18.862,20.543,18.862 +5969,186.494,287.628,443.769,269.484,629.729,286.648,457.006,94.236,117.688,94.236,320.492,329.279,347.039,18.874,19.332,18.874 +5970,186.525,287.628,443.769,269.484,629.729,286.648,457.006,94.236,117.688,94.236,320.492,329.279,347.039,18.874,19.332,18.874 +5971,186.553,292.193,437.707,265.710,630.081,289.780,457.470,96.961,111.161,96.961,308.690,330.189,348.511,18.202,19.614,18.202 +5972,186.585,298.838,421.473,262.198,630.913,292.672,458.469,99.462,106.054,99.462,275.204,332.133,350.216,17.919,20.022,17.919 +5973,186.616,312.674,378.800,257.976,630.363,295.820,458.857,101.889,100.424,101.889,187.624,332.199,351.248,17.923,19.559,17.923 +5974,186.646,301.471,451.118,254.725,629.260,299.432,459.273,104.036,95.460,104.036,334.699,333.729,351.511,18.433,19.763,18.433 +5975,186.678,304.583,453.121,251.500,629.000,302.489,460.072,106.765,90.000,106.765,338.392,332.000,352.911,19.198,19.000,19.198 +5976,186.709,308.570,454.769,247.481,627.277,306.393,460.834,109.747,83.581,109.747,340.230,331.521,353.119,19.355,19.676,19.355 +5977,186.740,312.970,455.927,243.889,624.999,310.554,461.622,112.989,76.715,112.989,340.504,330.793,352.876,19.025,20.627,19.025 +5978,186.772,318.100,457.300,239.867,622.048,315.377,462.746,116.565,70.079,116.565,340.330,329.612,352.507,19.230,22.608,19.230 +5979,186.803,322.568,459.095,234.994,617.713,319.895,463.720,120.018,62.223,120.018,340.939,326.163,351.623,19.241,21.775,19.241 +5980,186.834,328.087,461.198,230.129,613.491,325.121,465.597,123.996,54.673,123.996,340.845,324.098,351.456,18.992,21.268,18.992 +5981,186.865,333.482,463.923,223.641,609.495,329.784,468.656,127.999,46.872,127.999,340.648,321.317,352.661,19.233,25.886,19.233 +5982,186.896,338.790,466.511,218.516,603.739,334.744,471.007,131.987,38.468,131.987,340.726,319.071,352.823,19.103,25.698,19.103 +5983,186.928,343.960,470.555,212.818,597.106,339.854,474.472,136.350,30.399,136.350,341.788,318.099,353.137,19.436,25.577,19.436 +5984,186.959,349.315,475.369,207.837,589.481,345.249,478.650,141.096,22.521,141.096,342.625,315.762,353.075,18.800,24.806,18.800 +5985,186.988,349.315,475.369,207.837,589.481,345.249,478.650,141.096,22.521,141.096,342.625,315.762,353.075,18.800,24.806,18.800 +5986,187.017,355.201,480.253,202.559,581.265,350.267,483.592,145.911,14.036,145.911,342.226,314.569,354.142,19.633,24.496,19.633 +5987,187.049,363.097,485.299,197.827,572.515,355.018,489.759,151.100,5.356,151.100,336.764,312.816,355.220,19.743,21.842,19.743 +5988,187.081,374.118,490.910,193.348,564.251,359.084,497.395,156.666,176.834,156.666,324.579,311.961,357.324,20.309,21.163,20.309 +5989,187.113,408.922,490.352,189.222,555.629,362.155,504.954,162.661,168.545,162.661,262.365,312.801,360.353,19.294,20.681,19.294 +5990,187.145,371.077,512.385,186.336,545.281,363.808,513.838,168.690,160.582,168.690,345.557,313.739,360.383,20.004,24.094,20.004 +5991,187.177,367.575,522.906,184.605,535.850,362.252,523.348,175.258,152.227,175.258,345.463,313.634,356.146,20.777,22.549,20.777 +5992,187.209,367.878,531.299,184.098,524.875,361.805,531.035,2.490,144.064,2.490,343.458,313.056,355.615,23.717,24.366,23.717 +5993,187.240,368.695,541.443,186.335,514.343,363.937,540.641,9.567,135.738,9.567,349.354,312.570,359.005,25.661,22.443,25.661 +5994,187.271,371.705,554.740,190.890,504.048,367.164,553.338,17.162,126.529,17.162,356.434,311.810,365.939,25.222,19.940,25.222 +5995,187.301,369.167,567.505,195.960,492.245,364.929,565.523,25.067,118.048,25.067,358.847,310.116,368.203,25.377,18.910,25.377 +5996,187.331,363.771,580.566,202.758,480.738,359.693,577.870,33.476,109.468,33.476,359.180,308.414,368.958,25.225,18.041,25.225 +5997,187.362,355.668,593.774,211.615,469.713,351.560,589.995,42.614,100.827,42.614,357.692,306.349,368.855,25.552,17.878,25.552 +5998,187.395,345.402,604.579,221.564,460.002,341.912,600.274,50.964,92.083,50.964,358.420,304.344,369.505,23.953,18.969,23.953 +5999,187.427,333.535,615.352,233.366,452.015,330.077,609.406,59.819,83.706,59.819,355.594,303.797,369.351,22.899,18.586,22.899 +6000,187.458,333.535,615.352,233.366,452.015,330.077,609.406,59.819,83.706,59.819,355.594,303.797,369.351,22.899,18.586,22.899 +6001,187.486,321.318,627.942,246.971,446.263,316.901,616.665,68.613,76.065,68.613,344.114,303.168,368.337,21.459,18.645,21.459 +6002,187.517,302.456,638.011,261.182,441.523,298.574,622.251,76.163,68.009,76.163,336.390,302.316,368.852,26.441,18.313,26.441 +6003,187.548,290.142,628.204,276.511,438.494,289.826,622.191,86.996,59.899,86.996,356.242,303.263,368.285,26.488,20.299,26.488 +6004,187.584,269.241,625.319,292.723,437.924,269.657,620.444,94.879,51.435,94.879,357.857,304.391,367.642,27.242,22.802,27.242 +6005,187.630,241.970,614.672,323.441,444.619,244.450,609.444,115.380,34.287,115.380,353.976,310.361,365.548,20.200,23.810,20.200 +6006,187.661,229.466,605.629,337.266,451.428,232.962,600.595,124.778,25.984,124.778,351.775,313.887,364.032,20.101,23.817,20.101 +6007,187.694,219.350,595.392,348.853,461.404,223.388,591.201,133.939,17.879,133.939,349.408,317.410,361.047,19.874,20.753,19.874 +6008,187.730,210.894,584.203,359.849,471.203,216.375,580.036,142.759,10.037,142.759,346.394,319.303,360.163,19.527,21.367,19.527 +6009,187.761,204.255,572.634,367.613,482.408,210.956,568.978,151.390,2.088,151.390,342.699,321.479,357.965,19.553,21.080,19.553 +6010,187.792,204.255,572.634,367.613,482.408,210.956,568.978,151.390,2.088,151.390,342.699,321.479,357.965,19.553,21.080,19.553 +6011,187.820,197.720,561.402,373.347,494.570,207.370,557.813,159.600,173.884,159.600,334.632,323.221,355.224,19.598,23.011,19.598 +6012,187.851,125.951,564.449,376.752,506.433,205.335,547.351,167.845,166.897,167.845,189.967,323.869,352.377,18.785,20.294,18.785 +6013,187.882,184.711,538.393,378.304,519.804,204.585,536.643,174.966,159.274,174.966,309.150,324.671,349.053,20.336,21.031,20.336 +6014,187.913,193.929,524.975,378.386,533.220,205.178,525.242,1.364,151.798,1.364,324.194,324.481,346.698,24.422,23.744,24.422 +6015,187.944,198.759,514.051,377.022,545.530,207.228,515.369,8.842,143.973,8.842,327.681,324.230,344.824,25.252,24.997,25.252 +6016,187.975,202.362,505.508,374.254,557.281,209.708,507.511,15.255,136.023,15.255,328.458,324.056,343.687,25.347,26.083,25.347 +6017,188.005,206.490,497.300,370.227,568.386,213.197,499.930,21.413,128.428,21.413,327.958,325.501,342.366,26.159,26.344,26.159 +6018,188.037,211.214,489.244,365.380,578.929,217.695,492.655,27.759,120.735,27.759,327.094,327.413,341.742,26.035,26.181,26.035 +6019,188.067,216.231,482.654,360.285,587.836,222.291,486.694,33.690,113.199,33.690,327.273,328.266,341.841,25.239,25.342,25.239 +6020,188.098,221.587,476.908,354.700,595.347,227.131,481.455,39.362,106.113,39.362,327.386,328.842,341.726,25.061,23.484,25.061 +6021,188.130,226.945,471.964,348.862,602.554,232.343,477.265,44.479,98.427,44.479,326.708,330.650,341.840,25.519,21.946,25.519 +6022,188.163,231.582,467.929,343.056,609.002,236.889,474.120,49.399,91.591,49.399,326.697,332.261,343.004,24.622,20.159,24.622 +6023,188.195,236.249,463.384,337.465,614.458,241.876,471.058,53.746,84.877,53.746,325.304,333.071,344.335,24.461,19.254,24.461 +6024,188.226,239.531,458.497,332.558,618.788,246.129,469.124,58.161,78.690,58.161,320.459,334.770,345.478,23.383,19.219,23.383 +6025,188.257,239.531,458.497,332.558,618.788,246.129,469.124,58.161,78.690,58.161,320.459,334.770,345.478,23.383,19.219,23.383 +6026,188.285,239.731,452.317,327.572,622.178,248.236,468.350,62.059,73.261,62.059,309.840,335.335,346.140,18.303,19.383,18.303 +6027,188.316,226.844,410.441,322.207,625.017,252.155,466.485,65.695,68.199,65.695,223.639,335.180,346.628,17.875,19.684,17.875 +6028,188.347,250.842,448.775,317.100,626.700,257.084,464.231,68.009,63.435,68.009,312.908,335.857,346.245,20.417,19.230,20.417 +6029,188.380,258.795,452.998,313.058,628.357,261.785,462.599,72.699,58.722,72.699,326.903,334.771,347.014,22.116,19.793,22.116 +6030,188.414,263.765,454.300,308.091,629.183,265.451,461.115,76.103,53.200,76.103,332.740,333.997,346.780,21.296,21.125,21.296 +6031,188.447,267.410,452.474,302.198,629.979,268.780,459.957,79.629,46.948,79.629,331.308,332.533,346.522,19.603,22.932,19.603 +6032,188.479,271.704,451.967,296.022,631.071,272.588,459.149,82.983,39.925,82.983,332.522,331.222,346.994,18.720,25.274,18.720 +6033,188.513,276.686,451.196,289.764,630.812,277.084,457.924,86.609,32.735,86.609,333.193,330.102,346.672,18.915,26.617,18.915 +6034,188.548,281.000,450.500,283.641,630.199,281.000,457.099,90.000,25.096,90.000,333.000,328.766,346.199,18.000,26.893,18.000 +6035,188.581,286.058,449.791,277.543,628.859,285.664,456.302,93.468,17.103,93.468,332.420,326.656,345.465,18.481,27.644,18.481 +6036,188.612,290.981,448.582,270.911,627.108,290.133,455.719,96.774,8.337,96.774,330.546,324.593,344.920,18.962,27.516,18.962 +6037,188.648,295.992,449.044,264.013,625.662,294.750,455.875,100.305,0.395,100.305,331.206,322.068,345.093,19.320,26.744,19.320 +6038,188.679,301.676,449.794,257.108,623.612,300.049,456.305,104.036,172.278,104.036,332.031,321.885,345.453,19.160,25.966,19.160 +6039,188.713,306.955,450.444,249.458,619.820,304.974,456.648,107.716,162.121,107.716,331.629,321.678,344.654,19.554,27.999,19.554 +6040,188.746,313.138,451.155,242.659,618.792,310.081,458.797,111.801,154.253,111.801,330.723,321.718,347.184,19.312,23.221,19.312 +6041,188.778,319.140,451.480,235.541,616.519,314.639,460.892,115.560,147.068,115.560,328.181,322.640,349.047,19.572,20.363,19.572 +6042,188.811,328.230,448.330,228.959,613.808,319.701,463.380,119.539,138.853,119.539,316.630,323.232,351.227,19.808,19.922,19.808 +6043,188.842,349.395,430.136,222.885,611.268,324.535,466.538,124.330,130.946,124.330,265.525,324.389,353.689,17.926,20.083,17.926 +6044,188.873,335.833,462.372,216.285,606.549,329.914,469.789,128.587,122.276,128.587,336.563,325.202,355.541,18.282,21.360,18.282 +6045,188.904,339.244,468.785,211.143,602.521,334.607,473.686,133.409,114.499,133.409,343.384,325.079,356.878,18.751,20.158,18.751 +6046,188.934,344.293,474.031,206.115,597.182,339.922,477.939,138.208,106.477,138.208,346.731,324.998,358.458,19.114,20.178,19.114 +6047,188.963,349.979,479.455,201.630,590.945,345.292,482.941,143.354,98.464,143.354,347.776,323.580,359.459,19.256,20.247,19.256 +6048,188.995,355.554,485.435,198.500,583.000,351.045,488.160,148.855,90.000,148.855,348.679,320.000,359.217,19.346,19.000,19.346 +6049,189.026,355.554,485.435,198.500,583.000,351.045,488.160,148.855,90.000,148.855,348.679,320.000,359.217,19.346,19.000,19.346 +6050,189.054,361.352,492.622,195.832,574.243,356.757,494.783,154.809,82.005,154.809,348.726,318.893,358.882,19.261,20.073,19.261 +6051,189.085,366.372,500.748,193.628,563.929,361.891,502.303,160.866,73.553,160.866,348.847,315.910,358.333,19.435,21.369,19.435 +6052,189.117,370.219,510.142,191.453,552.361,365.793,511.154,167.114,65.095,167.114,349.196,313.112,358.277,19.993,20.926,19.993 +6053,189.148,369.235,520.766,190.184,540.887,365.003,521.226,173.802,56.547,173.802,343.325,310.626,351.839,20.837,20.516,20.837 +6054,189.180,369.591,529.193,190.032,528.026,364.681,529.076,1.364,48.302,1.364,339.428,307.515,349.249,24.493,22.603,24.493 +6055,189.213,372.257,541.959,191.796,514.056,366.162,540.944,9.462,39.887,9.462,340.470,305.756,352.828,25.482,24.650,25.482 +6056,189.245,377.424,554.840,193.381,502.108,367.941,552.068,16.299,32.347,16.299,343.371,305.402,363.131,25.488,22.472,25.488 +6057,189.277,434.180,597.969,198.206,490.480,364.722,567.099,23.962,25.579,23.962,214.543,303.197,366.563,19.901,22.233,19.901 +6058,189.307,364.866,581.872,204.180,477.970,359.035,578.129,32.697,18.518,32.697,354.985,303.901,368.843,21.693,22.090,21.693 +6059,189.337,355.534,592.102,212.342,466.736,351.778,588.748,41.760,10.989,41.760,360.474,303.401,370.545,24.909,21.501,24.909 +6060,189.367,345.001,602.355,222.132,458.276,342.394,599.209,50.347,3.390,50.347,362.329,303.186,370.502,23.979,18.608,23.979 +6061,189.397,332.537,612.324,234.074,450.030,330.276,608.490,59.470,175.914,59.470,361.818,305.222,370.721,22.859,18.310,22.859 +6062,189.429,317.790,619.718,247.569,443.338,316.155,615.524,68.706,168.486,68.706,361.676,306.157,370.677,21.683,18.200,21.683 +6063,189.461,300.157,625.804,262.285,438.866,299.013,620.755,77.231,161.241,77.231,360.664,307.415,371.018,26.774,18.152,26.774 +6064,189.491,300.157,625.804,262.285,438.866,299.013,620.755,77.231,161.241,77.231,360.664,307.415,371.018,26.774,18.152,26.774 +6065,189.519,288.248,626.925,277.223,435.933,288.050,620.952,88.097,153.975,88.097,358.600,309.066,370.553,26.251,18.799,26.251 +6066,189.551,267.263,626.209,292.198,436.270,267.970,619.568,96.068,146.900,96.068,356.308,310.681,369.665,26.489,18.652,26.489 +6067,189.582,253.670,621.901,306.416,438.532,255.490,615.560,106.013,139.825,106.013,355.221,311.639,368.415,21.983,20.191,21.983 +6068,189.614,239.755,616.181,320.526,444.068,243.233,609.020,115.907,132.357,115.907,348.367,312.318,364.290,20.534,21.430,20.534 +6069,189.645,188.143,664.126,332.629,451.330,232.291,601.709,125.272,126.317,125.272,208.524,312.995,361.427,19.893,19.255,19.893 +6070,189.677,207.948,607.382,344.192,461.486,222.341,592.480,134.005,118.325,134.005,316.312,314.125,357.747,19.754,21.002,19.754 +6071,189.709,207.953,586.709,354.478,472.574,214.462,581.733,142.605,111.214,142.605,338.676,314.494,355.062,19.610,21.067,19.610 +6072,189.739,203.722,573.599,362.304,484.343,208.732,570.815,150.945,104.744,150.945,341.018,315.775,352.482,19.620,21.327,19.620 +6073,189.770,200.470,561.516,370.317,497.589,205.664,559.513,158.914,96.968,158.914,340.678,316.897,351.812,19.368,25.036,19.368 +6074,189.801,198.244,550.121,374.500,510.500,203.898,548.773,166.590,90.000,166.590,338.029,319.000,349.654,19.712,25.000,19.712 +6075,189.831,197.496,538.963,376.985,523.437,203.631,538.312,173.946,82.600,173.946,335.572,321.366,347.912,19.467,26.002,19.467 +6076,189.861,198.000,527.000,378.607,535.845,204.803,527.000,0.000,75.887,0.000,334.000,324.511,347.607,24.000,25.925,24.000 +6077,189.892,198.000,527.000,378.607,535.845,204.803,527.000,0.000,75.887,0.000,334.000,324.511,347.607,24.000,25.925,24.000 +6078,189.920,200.002,516.898,378.679,547.322,207.313,517.793,6.981,69.664,6.981,332.638,327.135,347.369,25.159,23.750,25.159 +6079,189.950,202.110,508.742,377.700,557.900,210.350,510.665,13.134,63.435,13.134,330.489,329.596,347.411,24.898,22.808,24.898 +6080,189.981,204.860,500.555,375.040,568.005,213.693,503.601,19.026,57.127,19.026,328.370,331.237,347.057,25.655,21.077,25.655 +6081,190.012,207.761,492.155,371.725,576.509,217.517,496.708,25.017,51.022,25.017,325.441,332.809,346.974,25.494,19.797,25.494 +6082,190.043,210.529,485.618,367.900,584.111,221.105,491.963,30.964,45.159,30.964,321.903,333.769,346.570,22.123,20.120,22.123 +6083,190.075,200.612,472.362,364.235,590.059,223.596,488.864,35.676,40.601,35.676,289.937,334.290,346.525,18.246,19.090,18.246 +6084,190.106,203.403,462.902,359.759,595.742,228.625,482.641,38.047,35.621,38.047,281.893,334.569,345.948,23.112,20.167,23.112 +6085,190.137,222.629,471.477,355.299,600.174,231.478,479.694,42.879,31.072,42.879,321.278,334.428,345.431,25.072,19.865,25.072 +6086,190.168,230.600,468.855,349.996,604.508,236.240,475.207,48.395,25.602,48.395,327.444,334.067,344.433,24.729,21.587,24.729 +6087,190.198,235.686,466.742,344.363,608.403,239.796,472.070,52.359,18.834,52.359,330.172,333.044,343.630,24.268,24.725,24.268 +6088,190.228,239.623,463.587,339.060,612.132,243.595,469.518,56.189,11.669,56.189,328.958,331.291,343.234,23.722,26.442,23.722 +6089,190.260,239.623,463.587,339.060,612.132,243.595,469.518,56.189,11.669,56.189,328.958,331.291,343.234,23.722,26.442,23.722 +6090,190.287,243.413,460.633,333.362,615.372,247.145,467.043,59.797,4.205,59.797,328.298,328.833,343.133,23.090,27.675,23.090 +6091,190.317,247.938,458.280,327.438,617.438,251.078,464.533,63.341,176.682,63.341,327.830,327.899,341.824,23.386,27.143,23.386 +6092,190.348,251.244,456.042,321.264,619.934,254.162,462.807,66.666,169.552,66.666,326.973,326.844,341.708,21.839,27.571,21.839 +6093,190.380,254.923,454.079,315.000,622.000,257.554,461.246,69.848,161.565,69.848,326.137,326.347,341.407,21.316,27.196,21.316 +6094,190.413,258.796,452.646,308.816,623.638,260.949,459.696,73.020,153.672,73.020,326.807,325.585,341.548,20.771,26.777,20.771 +6095,190.446,262.657,451.843,302.772,625.168,264.359,458.720,76.103,145.437,76.103,327.436,326.383,341.605,20.325,25.309,20.325 +6096,190.479,266.286,450.652,296.820,626.778,267.745,458.128,78.959,136.005,78.959,326.956,326.856,342.192,19.558,23.443,19.558 +6097,190.511,270.410,449.370,291.561,628.049,271.579,457.553,81.870,128.660,81.870,326.683,328.277,343.216,19.940,21.864,19.940 +6098,190.544,273.956,448.130,286.138,629.508,274.827,457.449,84.661,119.745,84.661,326.009,329.684,344.729,19.318,20.590,19.318 +6099,190.575,277.585,445.798,281.690,630.776,278.109,457.723,87.483,111.801,87.483,322.216,330.723,346.087,18.729,20.798,18.729 +6100,190.606,281.000,439.000,277.588,632.147,281.000,458.074,90.000,104.036,90.000,310.000,332.759,348.147,18.000,20.130,18.000 +6101,190.636,287.900,396.628,273.234,632.972,284.602,458.459,93.053,95.988,93.053,225.906,334.048,349.743,17.815,21.198,17.815 +6102,190.666,289.542,446.968,270.897,632.911,288.394,458.756,95.563,88.504,95.563,326.378,334.278,350.063,18.122,22.358,18.122 +6103,190.696,292.971,450.480,266.964,632.242,291.787,458.519,98.383,81.041,98.383,334.722,333.186,350.973,18.891,21.407,18.891 +6104,190.728,296.699,452.650,262.901,631.234,295.498,458.731,101.174,73.548,101.174,338.702,332.561,351.099,19.306,21.344,19.306 +6105,190.759,300.903,452.719,258.959,629.110,299.406,458.658,104.149,65.556,104.149,338.086,330.380,350.335,19.247,21.352,19.247 +6106,190.789,300.903,452.719,258.959,629.110,299.406,458.658,104.149,65.556,104.149,338.086,330.380,350.335,19.247,21.352,19.247 +6107,190.818,305.454,453.548,254.849,626.646,303.807,458.818,107.354,57.672,107.354,338.542,328.719,349.584,19.090,21.464,19.090 +6108,190.849,309.722,453.779,249.989,624.359,307.662,459.311,110.429,49.304,110.429,337.791,326.581,349.597,19.144,21.866,19.144 +6109,190.882,314.570,455.207,243.884,622.286,312.091,460.827,113.806,40.956,113.806,338.224,324.345,350.507,18.917,25.920,18.917 +6110,190.915,319.373,455.949,238.808,618.538,316.490,461.557,117.202,33.690,117.202,337.650,322.558,350.261,18.692,26.071,18.692 +6111,190.946,324.592,457.960,233.167,614.196,321.460,463.227,120.735,26.162,120.735,337.519,320.663,349.775,19.467,26.564,19.467 +6112,190.980,329.365,460.309,227.642,609.564,326.144,465.003,124.455,18.020,124.455,338.470,319.072,349.858,18.947,25.813,18.947 +6113,191.015,334.830,462.956,221.790,604.249,331.225,467.489,128.501,9.560,128.501,338.724,317.632,350.308,18.818,24.788,18.818 +6114,191.046,340.145,466.341,216.029,598.678,336.081,470.775,132.510,1.273,132.510,338.784,316.277,350.813,19.350,23.083,19.350 +6115,191.078,346.977,469.629,209.869,592.635,341.126,475.062,137.121,174.500,137.121,336.405,315.813,352.374,19.314,21.309,19.314 +6116,191.111,354.824,471.914,204.257,586.897,345.346,479.474,141.423,167.583,141.423,330.319,315.731,354.568,19.395,21.485,19.395 +6117,191.143,368.010,472.549,199.365,581.157,349.486,484.804,146.511,161.255,146.511,312.308,316.206,356.729,19.055,19.976,19.055 +6118,191.173,408.059,460.743,194.902,574.539,353.531,490.733,151.189,155.959,151.189,234.300,315.978,358.762,18.357,19.626,18.357 +6119,191.204,366.279,493.237,191.195,566.046,357.519,497.108,156.161,151.020,156.161,340.838,317.509,359.993,18.655,20.914,18.655 +6120,191.235,366.255,502.250,187.760,558.646,360.638,504.111,161.671,146.447,161.671,350.680,316.174,362.514,19.317,22.652,19.317 +6121,191.265,368.061,511.277,185.599,550.121,363.245,512.341,167.539,140.851,167.539,353.363,315.979,363.227,19.993,22.152,19.993 +6122,191.295,367.104,520.971,183.891,539.400,361.962,521.522,173.884,134.579,173.884,347.582,314.753,357.925,20.561,22.824,20.561 +6123,191.325,367.069,531.402,184.122,529.098,361.610,531.345,0.597,128.660,0.597,344.086,314.846,355.004,20.176,23.426,20.176 +6124,191.355,367.069,531.402,184.122,529.098,361.610,531.345,0.597,128.660,0.597,344.086,314.846,355.004,20.176,23.426,20.176 +6125,191.384,369.230,539.390,186.201,518.352,363.753,538.608,8.130,122.550,8.130,346.199,313.298,357.264,25.314,22.382,25.314 +6126,191.415,371.488,552.099,190.999,507.217,367.158,550.888,15.619,115.577,15.619,353.830,311.823,362.824,25.112,20.985,25.112 +6127,191.448,370.011,565.028,195.102,495.059,365.733,563.166,23.523,109.242,23.523,357.936,310.006,367.268,25.242,19.043,25.242 +6128,191.479,364.770,579.075,201.534,483.165,360.528,576.383,32.400,102.875,32.400,358.337,308.139,368.384,25.314,18.327,25.314 +6129,191.514,357.505,591.570,209.866,471.831,353.299,587.918,40.972,96.582,40.972,357.687,305.817,368.828,25.592,18.493,25.592 +6130,191.547,347.968,602.958,219.364,462.007,344.077,598.441,49.261,90.474,49.261,357.603,304.080,369.528,24.141,18.793,24.141 +6131,191.581,336.194,613.812,231.122,453.598,332.600,608.031,58.134,83.660,58.134,355.851,304.018,369.464,23.114,19.546,23.114 +6132,191.614,323.288,624.424,244.639,446.997,319.554,615.483,67.333,76.775,67.333,349.306,304.451,368.685,22.132,19.547,22.132 +6133,191.645,311.895,645.095,258.843,442.029,306.144,620.346,76.917,70.665,76.917,317.977,303.028,368.793,25.709,18.127,25.709 +6134,191.677,291.713,629.477,274.384,438.840,291.148,622.229,85.544,63.869,85.544,353.733,304.147,368.274,24.549,19.599,24.549 +6135,191.707,271.260,626.985,290.577,438.311,271.613,621.423,93.621,57.400,93.621,356.742,304.702,367.888,27.451,22.403,27.451 +6136,191.738,257.441,622.102,305.850,440.132,258.476,617.648,103.084,50.268,103.084,358.119,306.527,367.265,23.919,23.690,23.919 +6137,191.769,244.659,615.845,320.121,444.343,246.609,611.266,113.070,43.400,113.070,354.806,309.142,364.760,20.479,24.561,20.479 +6138,191.799,232.531,608.705,333.147,449.784,235.763,603.568,122.174,37.185,122.174,351.909,313.210,364.048,19.957,23.873,19.957 +6139,191.830,222.318,598.977,345.736,458.103,226.391,594.272,130.879,30.750,130.879,349.684,315.217,362.129,19.581,23.443,19.581 +6140,191.862,213.797,588.681,356.393,467.034,218.965,584.248,139.378,24.416,139.378,347.630,318.377,361.249,19.546,23.735,19.546 +6141,191.893,207.396,577.550,364.558,478.390,213.106,573.922,147.562,18.048,147.562,344.599,321.284,358.128,19.569,21.249,19.569 +6142,191.923,207.396,577.550,364.558,478.390,213.106,573.922,147.562,18.048,147.562,344.599,321.284,358.128,19.569,21.249,19.569 +6143,191.952,202.158,567.166,371.667,489.117,209.485,563.801,155.334,11.650,155.334,340.975,323.020,357.102,20.215,21.729,20.215 +6144,191.982,197.667,556.318,376.284,500.108,206.950,553.435,162.743,5.609,162.743,335.622,324.172,355.063,19.591,21.486,19.591 +6145,192.013,194.924,545.646,377.506,511.107,204.820,543.945,170.248,179.792,170.248,331.422,323.038,351.505,19.326,20.956,19.326 +6146,192.047,123.691,539.849,378.647,521.795,204.739,534.986,176.566,175.310,176.566,186.385,323.032,348.772,18.467,19.832,18.467 +6147,192.080,181.914,525.223,379.589,532.346,205.763,525.709,1.169,170.022,1.169,300.142,325.903,347.850,22.812,20.308,22.812 +6148,192.114,193.991,513.054,378.703,543.429,207.667,515.217,8.986,164.493,8.986,318.994,326.364,346.686,25.837,23.416,25.837 +6149,192.147,200.176,506.794,376.247,553.380,209.514,509.129,14.036,157.810,14.036,325.725,326.294,344.975,25.224,24.428,25.224 +6150,192.180,204.530,500.376,373.315,563.050,212.182,502.989,18.853,150.202,18.853,327.622,325.717,343.793,26.267,25.900,26.267 +6151,192.214,209.179,492.029,369.216,571.932,216.066,495.316,25.514,142.481,25.514,327.170,325.645,342.432,25.495,26.670,25.495 +6152,192.246,213.122,486.292,364.750,580.250,219.487,490.019,30.350,135.000,30.350,327.145,325.976,341.896,25.406,26.870,25.406 +6153,192.278,216.670,481.310,359.854,587.510,222.824,485.571,34.695,127.185,34.695,326.410,326.588,341.380,25.298,26.428,25.298 +6154,192.309,221.274,476.797,354.739,594.417,226.843,481.371,39.401,119.427,39.401,326.753,328.247,341.167,25.390,25.325,25.390 +6155,192.339,225.562,473.150,350.210,600.583,230.911,478.212,43.418,111.656,43.418,326.793,329.259,341.522,24.954,24.794,24.954 +6156,192.370,229.754,470.030,345.265,605.441,234.472,475.133,47.246,104.036,47.246,327.887,330.091,341.788,24.591,22.556,24.591 +6157,192.401,233.000,466.429,340.774,610.531,238.215,472.835,50.849,96.340,50.849,326.547,331.295,343.067,24.260,21.313,24.260 +6158,192.431,236.305,463.307,336.572,614.524,241.736,470.826,54.162,88.512,54.162,325.488,333.277,344.037,23.735,19.292,23.735 +6159,192.462,239.450,460.158,333.536,617.916,245.392,469.463,57.435,81.129,57.435,323.035,334.688,345.116,23.407,20.343,23.407 +6160,192.493,239.450,460.158,333.536,617.916,245.392,469.463,57.435,81.129,57.435,323.035,334.688,345.116,23.407,20.343,23.407 +6161,192.520,239.577,454.885,330.029,620.701,247.455,468.670,60.255,73.775,60.255,314.180,335.196,345.935,20.714,20.098,20.714 +6162,192.552,224.300,417.600,326.693,622.853,249.440,467.880,63.435,66.387,63.435,233.893,335.140,346.321,17.889,19.802,17.889 +6163,192.584,247.168,451.332,322.921,624.048,253.861,465.332,64.450,58.671,64.450,314.924,336.109,345.960,21.503,19.498,21.503 +6164,192.614,253.869,455.142,320.449,625.358,257.370,464.031,68.506,51.766,68.506,327.333,334.405,346.440,22.640,20.161,22.640 +6165,192.645,257.334,455.771,317.480,625.467,259.699,462.594,70.880,44.236,70.880,331.184,333.781,345.627,22.273,21.343,22.273 +6166,192.677,260.151,455.058,312.624,627.192,262.153,461.691,73.213,37.666,73.213,332.191,332.412,346.049,21.950,23.984,21.950 +6167,192.707,262.351,454.324,308.971,627.704,264.055,460.834,75.336,30.613,75.336,332.152,331.340,345.611,20.334,25.523,20.334 +6168,192.738,264.853,453.088,305.441,627.134,266.289,459.552,77.471,23.749,77.471,330.927,330.502,344.170,19.849,26.910,19.849 +6169,192.769,267.834,452.401,301.436,627.516,268.984,458.616,79.509,15.624,79.509,331.330,329.371,343.971,20.430,27.512,20.430 +6170,192.799,270.137,451.079,298.220,627.430,271.154,457.859,81.469,8.246,81.469,329.711,327.262,343.421,20.026,27.237,20.026 +6171,192.831,271.486,449.992,294.481,627.494,272.380,457.291,83.010,0.716,83.010,328.548,325.200,343.254,18.878,27.173,18.878 +6172,192.864,274.843,449.348,290.232,627.471,275.447,456.667,85.285,173.962,85.285,328.195,324.784,342.882,19.254,26.649,19.254 +6173,192.896,277.021,448.892,285.912,627.353,277.405,456.099,86.947,167.471,86.947,328.493,324.203,342.928,18.773,26.682,18.773 +6174,192.928,279.334,448.896,281.922,627.369,279.506,456.112,88.631,160.484,88.631,328.098,324.225,342.533,18.920,25.747,18.920 +6175,192.959,281.966,448.513,278.016,627.514,281.903,455.748,90.492,153.638,90.492,329.117,324.228,343.587,18.703,25.041,18.703 +6176,192.988,281.966,448.513,278.016,627.514,281.903,455.748,90.492,153.638,90.492,329.117,324.228,343.587,18.703,25.041,18.703 +6177,193.017,284.520,448.063,273.902,627.576,284.200,455.757,92.378,145.069,92.378,328.796,324.905,344.197,18.731,23.268,18.731 +6178,193.049,287.356,447.175,270.307,627.866,286.705,455.937,94.247,139.986,94.247,327.771,325.608,345.343,18.657,22.296,18.657 +6179,193.081,290.165,447.125,266.080,627.575,289.188,456.250,96.116,133.063,96.116,327.270,326.387,345.624,18.892,19.774,18.892 +6180,193.114,293.175,446.083,262.968,627.831,291.690,456.723,97.943,127.333,97.943,325.383,327.415,346.871,19.301,19.582,19.301 +6181,193.147,296.094,443.616,260.337,628.032,293.751,457.287,99.728,122.412,99.728,320.130,328.265,347.871,18.980,19.792,18.980 +6182,193.180,299.165,440.741,257.769,628.142,295.707,457.838,101.434,117.777,101.434,314.002,328.818,348.888,18.656,20.215,18.656 +6183,193.214,303.243,435.413,255.342,627.928,297.826,458.264,103.335,114.341,103.335,302.809,329.149,349.778,18.091,20.435,18.091 +6184,193.247,309.170,423.612,252.793,627.517,299.829,458.641,104.931,111.801,104.931,278.082,329.424,350.588,18.036,19.684,18.036 +6185,193.280,322.709,388.591,250.434,627.154,301.917,459.283,106.390,109.549,106.390,203.781,329.607,351.153,18.059,19.632,18.059 +6186,193.311,329.577,381.541,247.258,626.393,303.872,459.940,108.153,107.324,108.153,186.603,329.656,351.613,18.039,19.837,18.039 +6187,193.343,310.283,449.831,245.100,625.300,306.521,460.463,109.486,105.255,109.486,329.213,329.949,351.769,18.405,20.348,18.405 +6188,193.374,311.710,453.903,241.935,624.102,308.877,461.105,111.470,103.153,111.470,336.896,330.619,352.375,18.647,20.238,18.647 +6189,193.405,314.022,455.695,239.340,623.159,311.320,461.864,113.654,100.701,113.654,339.777,330.064,353.246,18.963,20.612,18.963 +6190,193.435,317.188,457.126,235.945,621.742,314.301,463.032,116.044,97.096,116.044,340.848,329.437,353.995,19.124,19.624,19.124 +6191,193.466,320.521,459.138,232.470,619.947,317.623,464.412,118.782,92.974,118.782,342.603,328.752,354.638,19.357,19.454,19.357 +6192,193.497,324.362,461.361,228.618,617.011,321.569,465.857,121.846,88.379,121.846,344.307,328.265,354.891,19.227,19.398,19.227 +6193,193.529,328.947,462.992,224.811,613.635,325.690,467.606,125.218,83.517,125.218,343.655,327.438,354.952,19.223,20.030,19.223 +6194,193.561,333.580,465.552,220.798,610.233,330.052,469.935,128.830,78.366,128.830,344.342,325.958,355.594,18.962,20.309,18.962 +6195,193.591,333.580,465.552,220.798,610.233,330.052,469.935,128.830,78.366,128.830,344.342,325.958,355.594,18.962,20.309,18.962 +6196,193.619,338.775,468.369,217.011,605.535,334.848,472.623,132.709,72.897,132.709,343.605,324.818,355.183,19.048,19.851,19.048 +6197,193.653,343.672,471.992,213.159,600.142,339.777,475.654,136.766,67.332,136.766,344.350,323.154,355.042,19.154,20.648,19.154 +6198,193.684,348.697,476.008,209.234,594.334,344.558,479.358,141.009,61.650,141.009,344.393,321.166,355.044,19.246,20.685,19.246 +6199,193.715,353.126,480.682,205.288,587.299,349.150,483.435,145.305,56.117,145.305,345.131,319.244,354.804,19.227,20.615,19.227 +6200,193.746,358.120,486.317,201.180,578.783,354.138,488.606,150.108,50.400,150.108,345.918,315.385,355.102,19.421,21.063,19.421 +6201,193.779,362.420,493.091,197.457,570.025,358.643,494.826,155.323,44.479,155.323,347.409,313.332,355.723,19.377,21.624,19.377 +6202,193.811,366.599,500.596,194.446,560.305,362.833,501.906,160.821,38.389,160.821,348.478,311.561,356.452,19.424,22.257,19.424 +6203,193.843,370.303,508.927,191.484,550.140,366.053,509.947,166.504,32.174,166.504,349.515,310.255,358.256,19.759,22.301,19.759 +6204,193.874,370.432,518.626,189.600,539.771,364.949,519.343,172.546,26.014,172.546,341.973,308.606,353.034,20.387,21.723,20.387 +6205,193.904,374.138,528.726,188.584,528.982,363.905,528.921,178.909,19.759,178.909,330.112,307.819,350.580,20.691,21.719,20.691 +6206,193.935,393.241,539.958,189.079,517.567,364.652,536.588,6.724,13.392,6.724,295.612,307.082,353.185,23.176,20.985,23.176 +6207,193.966,376.919,553.014,191.894,505.794,365.842,550.590,12.339,7.001,12.339,336.328,308.089,359.006,21.309,21.592,21.309 +6208,193.996,371.910,560.962,194.039,494.734,366.999,559.101,20.761,0.588,20.761,358.589,306.097,369.092,25.308,19.507,25.308 +6209,194.027,365.563,573.451,199.322,483.268,361.872,571.372,29.396,174.116,29.396,361.261,306.469,369.733,25.929,19.591,25.929 +6210,194.057,365.563,573.451,199.322,483.268,361.872,571.372,29.396,174.116,29.396,361.261,306.469,369.733,25.929,19.591,25.929 +6211,194.086,359.664,584.794,206.080,472.564,355.984,582.027,36.948,167.754,36.948,361.987,307.090,371.195,25.007,19.909,25.007 +6212,194.117,350.803,596.290,215.000,463.500,347.687,593.119,45.507,161.421,45.507,362.012,307.066,370.904,24.366,18.233,24.366 +6213,194.150,340.305,607.024,225.490,454.554,337.328,602.909,54.118,155.072,54.118,361.343,307.315,371.502,23.565,18.788,23.565 +6214,194.181,327.700,615.643,237.958,447.432,325.352,611.036,62.987,148.456,62.987,360.555,307.514,370.898,23.338,17.939,23.338 +6215,194.214,313.652,622.450,251.067,441.727,311.938,617.231,71.828,142.046,71.828,360.481,308.115,371.468,22.107,18.167,22.107 +6216,194.248,296.005,627.126,265.088,438.072,294.924,621.095,79.840,135.481,79.840,358.578,308.359,370.832,27.385,18.099,27.385 +6217,194.281,284.500,627.500,278.986,436.085,284.500,620.542,90.000,128.946,90.000,355.000,308.752,368.915,25.000,18.794,25.000 +6218,194.312,264.478,626.164,292.962,436.976,265.408,619.178,97.584,122.396,97.584,354.394,309.090,368.490,26.564,20.115,26.564 +6219,194.344,251.800,623.706,306.200,440.100,254.251,615.751,107.121,116.565,107.121,349.670,309.472,366.320,21.102,21.019,21.102 +6220,194.375,219.060,659.003,319.997,445.419,243.127,610.010,116.162,111.125,116.162,254.071,309.795,363.242,19.699,19.250,19.699 +6221,194.406,224.246,614.229,332.624,452.815,232.259,602.558,124.475,105.673,124.475,332.196,310.845,360.510,19.698,20.690,19.698 +6222,194.436,216.744,600.610,344.774,461.563,223.415,593.384,132.709,98.489,132.709,338.688,310.914,358.356,19.444,22.837,19.444 +6223,194.466,211.792,587.053,354.873,472.074,215.953,583.673,140.915,91.790,140.915,345.661,312.441,356.382,19.462,23.926,19.462 +6224,194.497,206.181,576.273,363.078,483.064,210.650,573.565,148.786,84.560,148.786,344.074,314.529,354.526,19.597,24.698,19.597 +6225,194.529,201.749,565.212,369.406,494.576,206.850,562.981,156.381,77.471,156.381,341.555,317.152,352.690,19.598,24.622,19.598 +6226,194.561,199.164,554.557,374.435,506.248,204.849,552.878,163.545,70.096,163.545,339.841,320.128,351.696,19.792,24.966,19.792 +6227,194.591,199.164,554.557,374.435,506.248,204.849,552.878,163.545,70.096,163.545,339.841,320.128,351.696,19.792,24.966,19.792 +6228,194.620,197.822,544.436,378.269,517.864,204.610,543.300,170.501,63.113,170.501,337.185,322.918,350.950,20.017,25.375,20.017 +6229,194.650,197.441,534.328,379.874,528.923,204.812,533.959,177.138,56.560,177.138,335.431,325.898,350.190,19.476,23.963,19.476 +6230,194.681,198.172,523.484,380.708,539.408,206.491,523.890,2.793,50.106,2.793,332.872,328.282,349.532,23.801,22.478,23.801 +6231,194.719,199.946,513.324,379.687,549.328,208.658,514.776,9.462,43.688,9.462,331.100,329.782,348.764,25.317,20.636,25.317 +6232,194.762,200.644,500.107,375.767,566.242,213.354,504.864,20.519,30.556,20.519,320.104,332.864,347.246,18.622,20.138,18.622 +6233,194.793,200.644,500.107,375.767,566.242,213.354,504.864,20.519,30.556,20.519,320.104,332.864,347.246,18.622,20.138,18.622 +6234,194.821,140.403,463.465,373.498,573.004,216.167,499.625,25.514,24.370,25.514,179.286,332.120,347.189,18.132,20.507,18.132 +6235,194.852,205.508,485.861,369.886,578.345,219.421,493.276,28.058,18.222,28.058,314.059,332.674,345.590,25.350,21.342,25.350 +6236,194.887,214.620,480.556,365.416,584.836,223.793,486.832,34.380,11.634,34.380,322.217,332.266,344.447,25.498,23.190,25.498 +6237,194.919,219.726,477.346,360.930,590.231,226.792,482.940,38.367,5.440,38.367,325.510,330.789,343.534,25.383,25.219,25.383 +6238,194.949,223.825,474.086,356.500,595.500,230.022,479.679,42.071,0.000,42.071,326.289,329.000,342.985,25.114,25.000,25.114 +6239,194.981,227.275,470.721,351.792,600.160,232.979,476.537,45.556,173.746,45.556,326.613,328.867,342.906,24.727,26.227,24.727 +6240,195.013,230.827,468.089,347.193,603.885,235.889,473.874,48.814,167.692,48.814,326.901,327.993,342.275,24.459,26.824,24.459 +6241,195.045,233.948,465.434,342.615,607.360,238.803,471.613,51.843,161.694,51.843,326.041,327.306,341.757,24.095,27.397,24.095 +6242,195.077,236.943,463.063,337.778,609.876,241.375,469.324,54.703,156.038,54.703,325.492,327.043,340.835,23.799,27.414,23.799 +6243,195.108,240.194,460.944,333.520,612.837,244.428,467.523,57.232,149.490,57.232,325.173,326.877,340.820,24.163,26.523,24.163 +6244,195.139,242.788,459.707,329.214,615.290,246.541,466.142,59.744,143.616,59.744,326.077,327.192,340.975,23.106,26.143,23.106 +6245,195.170,245.465,458.360,325.244,617.369,248.937,464.890,62.000,137.726,62.000,326.118,327.188,340.910,22.759,25.091,22.759 +6246,195.200,247.782,457.162,321.558,619.602,251.076,463.942,64.086,131.987,64.086,326.547,327.644,341.622,21.846,24.826,21.846 +6247,195.230,250.201,456.070,317.724,621.254,253.312,463.032,65.924,126.027,65.924,326.216,328.494,341.468,21.951,22.792,21.951 +6248,195.262,252.779,455.041,314.657,623.093,255.802,462.418,67.714,120.677,67.714,326.041,329.459,341.985,22.647,22.041,22.647 +6249,195.293,255.004,454.315,311.371,624.251,257.733,461.612,69.495,114.677,69.495,326.667,330.218,342.247,22.342,21.022,22.342 +6250,195.322,255.004,454.315,311.371,624.251,257.733,461.612,69.495,114.677,69.495,326.667,330.218,342.247,22.342,21.022,22.342 +6251,195.351,256.354,452.826,308.761,625.882,259.314,461.412,70.974,109.564,70.974,325.045,330.884,343.209,21.776,20.808,21.776 +6252,195.384,258.173,451.989,307.065,627.017,261.058,461.045,72.329,104.755,72.329,325.205,331.860,344.213,21.788,21.076,21.788 +6253,195.415,259.028,451.304,305.193,628.849,262.027,461.406,73.465,100.597,73.465,324.532,334.176,345.607,20.641,20.807,20.641 +6254,195.447,259.975,449.897,303.982,629.438,263.114,461.214,74.497,96.879,74.497,322.566,333.767,346.053,20.602,21.653,20.602 +6255,195.481,260.571,448.190,302.816,630.371,264.078,461.481,75.217,94.371,75.217,318.876,334.547,346.368,20.372,21.168,20.372 +6256,195.513,261.317,446.648,302.919,630.842,265.062,461.378,75.735,92.521,75.735,316.737,334.512,347.135,20.927,20.596,20.927 +6257,195.545,261.146,445.717,303.063,631.494,265.128,461.725,76.031,90.801,76.031,314.819,335.177,347.810,20.128,19.998,20.128 +6258,195.576,261.028,445.124,302.978,631.497,265.149,461.712,76.048,90.360,76.048,313.609,335.075,347.794,20.115,20.100,20.115 +6259,195.607,260.777,445.300,303.016,630.997,264.869,461.529,75.851,90.360,75.851,313.828,334.075,347.303,20.167,20.031,20.167 +6260,195.636,260.518,446.332,303.964,631.035,264.500,461.737,75.506,91.364,75.506,315.750,336.167,347.573,20.279,20.304,20.279 +6261,195.666,260.332,447.602,302.505,629.889,263.964,461.079,74.917,92.553,74.917,318.131,334.559,346.047,21.174,23.512,21.174 +6262,195.697,259.255,449.142,304.739,629.737,262.814,461.598,74.055,94.616,74.055,320.462,335.009,346.373,20.467,20.659,20.467 +6263,195.728,258.422,451.797,306.261,628.664,261.492,461.801,72.940,97.431,72.940,324.382,334.169,345.311,20.794,21.643,20.794 +6264,195.759,257.250,452.250,308.250,627.750,260.425,461.775,71.565,101.310,71.565,325.082,333.594,345.163,21.820,20.788,21.820 +6265,195.789,257.250,452.250,308.250,627.750,260.425,461.775,71.565,101.310,71.565,325.082,333.594,345.163,21.820,20.788,21.820 +6266,195.818,255.041,453.492,310.198,625.780,258.146,462.061,70.079,105.350,70.079,325.088,331.539,343.316,21.258,20.837,21.258 +6267,195.850,253.407,454.563,312.701,624.073,256.432,462.228,68.459,109.983,68.459,325.921,330.636,342.402,22.226,20.846,22.226 +6268,195.883,251.009,455.829,316.208,622.387,254.021,462.779,66.571,115.378,66.571,327.200,329.767,342.349,21.868,21.371,21.868 +6269,195.916,248.726,457.203,319.680,620.811,251.920,463.916,64.555,120.579,64.555,326.709,328.952,341.577,22.211,22.267,22.211 +6270,195.947,246.593,458.335,323.449,618.874,249.940,464.731,62.381,125.987,62.381,326.874,328.054,341.312,23.456,23.677,23.456 +6271,195.979,243.720,459.495,327.478,616.541,247.395,465.878,60.073,131.295,60.073,326.323,327.371,341.054,23.838,24.925,23.838 +6272,196.011,240.368,461.221,331.562,614.100,244.404,467.563,57.529,136.872,57.529,325.807,326.333,340.842,23.239,26.080,23.239 +6273,196.041,237.152,463.082,335.798,611.181,241.472,469.229,54.904,142.326,54.904,325.729,326.261,340.754,23.993,26.290,23.993 +6274,196.072,234.234,464.817,340.449,608.012,239.015,470.935,51.994,147.894,51.994,325.406,325.954,340.934,24.849,26.840,24.849 +6275,196.103,230.721,467.871,345.154,604.324,235.661,473.538,48.918,153.705,48.918,326.036,325.608,341.070,24.604,27.022,24.604 +6276,196.133,227.484,470.995,349.720,599.609,232.536,476.153,45.603,160.109,45.603,325.951,326.271,340.391,24.933,28.777,24.933 +6277,196.164,223.492,473.846,354.684,595.697,229.514,479.277,42.049,165.231,42.049,325.624,326.516,341.843,25.145,26.504,25.145 +6278,196.195,219.814,477.737,359.368,590.666,226.273,482.810,38.146,170.972,38.146,326.155,327.315,342.580,25.285,25.816,25.285 +6279,196.226,219.814,477.737,359.368,590.666,226.273,482.810,38.146,170.972,38.146,326.155,327.315,342.580,25.285,25.816,25.285 +6280,196.254,215.447,481.816,363.972,585.031,223.039,486.962,34.130,176.634,34.130,325.023,328.550,343.367,25.945,24.487,25.945 +6281,196.284,210.464,485.692,368.044,577.812,219.695,490.989,29.846,2.104,29.846,322.476,328.586,343.763,26.590,24.216,26.590 +6282,196.314,204.384,490.688,372.427,571.106,216.660,496.495,25.313,7.943,25.313,318.264,330.058,345.424,26.594,22.848,26.594 +6283,196.347,185.435,493.699,376.027,563.457,213.596,502.922,18.134,13.591,18.134,287.141,331.046,346.408,22.082,21.555,22.082 +6284,196.379,188.154,505.629,378.593,555.359,210.346,511.490,14.792,19.861,14.792,301.835,332.172,347.741,19.161,21.769,19.161 +6285,196.411,197.548,513.939,380.312,547.967,208.756,515.729,9.076,25.718,9.076,326.288,332.171,348.987,24.466,21.317,24.466 +6286,196.442,197.276,522.746,381.013,539.110,206.707,523.240,3.003,31.514,3.003,330.909,331.223,349.797,24.871,20.087,24.871 +6287,196.473,197.698,534.627,380.577,529.368,205.480,534.191,176.787,37.304,176.787,334.596,329.384,350.184,19.121,19.962,19.121 +6288,196.504,197.892,544.505,379.948,518.033,205.312,543.213,170.127,43.781,170.127,337.670,326.910,352.734,19.389,22.743,19.389 +6289,196.534,199.437,555.142,376.629,507.188,205.929,553.173,163.131,49.086,163.131,339.830,324.745,353.399,19.689,24.686,19.689 +6290,196.564,202.179,565.655,371.962,495.692,207.971,563.077,156.012,56.310,156.012,341.764,321.171,354.443,19.239,24.129,19.239 +6291,196.596,206.307,576.311,365.382,484.081,211.281,573.250,148.392,62.949,148.392,344.267,318.041,355.948,19.457,24.520,19.457 +6292,196.626,212.497,587.106,357.071,473.713,216.473,583.843,140.626,69.193,140.626,346.813,314.835,357.099,19.279,24.304,19.279 +6293,196.656,212.497,587.106,357.071,473.713,216.473,583.843,140.626,69.193,140.626,346.813,314.835,357.099,19.279,24.304,19.279 +6294,196.684,220.061,596.973,347.444,463.514,223.499,593.221,132.496,75.763,132.496,348.553,312.168,358.730,19.521,24.652,19.521 +6295,196.716,229.228,606.358,335.786,454.895,232.051,602.214,124.265,82.405,124.265,350.284,309.395,360.312,19.334,22.864,19.334 +6296,196.748,239.284,616.606,322.756,447.517,242.456,610.054,115.835,88.668,115.835,348.012,307.219,362.570,19.659,20.971,19.659 +6297,196.782,248.746,633.551,308.498,442.274,254.143,616.446,107.512,95.218,107.512,329.038,307.551,364.911,19.661,19.594,19.661 +6298,196.816,253.655,693.461,294.252,439.238,263.934,620.092,97.975,100.771,97.975,218.451,306.301,366.623,25.452,19.341,25.452 +6299,196.848,278.000,630.000,280.234,437.496,278.000,621.748,90.000,104.931,90.000,352.000,306.425,368.504,24.000,20.420,24.000 +6300,196.882,293.297,628.397,266.328,438.347,292.316,621.725,81.640,111.318,81.640,356.927,306.830,370.415,26.160,19.949,26.160 +6301,196.915,308.879,624.973,252.429,441.464,307.164,619.101,73.724,116.878,73.724,359.480,307.278,371.716,22.919,18.927,22.919 +6302,196.947,323.974,618.550,239.899,446.934,321.623,613.462,65.199,123.334,65.199,359.692,308.445,370.901,22.537,18.173,22.537 +6303,196.979,336.556,610.325,227.616,453.684,333.691,605.953,56.763,129.511,56.763,360.544,309.590,370.999,23.847,18.458,23.847 +6304,197.011,347.818,600.558,216.961,461.971,344.497,596.811,48.439,135.600,48.439,360.993,309.814,371.007,25.671,18.643,25.671 +6305,197.042,356.672,590.224,207.623,471.415,352.789,586.930,40.310,141.555,40.310,360.667,310.941,370.852,25.643,18.471,25.643 +6306,197.073,363.631,578.191,199.986,481.478,359.690,575.694,32.362,147.496,32.362,361.328,311.310,370.660,26.238,18.434,26.238 +6307,197.104,368.505,566.656,194.358,492.209,364.285,564.708,24.775,153.345,24.775,360.041,310.824,369.337,26.191,19.052,26.191 +6308,197.133,372.085,555.781,190.090,502.740,366.847,554.118,17.613,159.544,17.613,357.043,310.982,368.035,25.553,21.141,25.553 +6309,197.164,370.082,543.929,187.534,512.631,364.660,542.909,10.651,165.480,10.651,348.306,310.761,359.341,24.924,21.283,24.924 +6310,197.196,369.664,535.647,186.352,522.002,363.019,535.176,4.060,170.797,4.060,340.988,310.378,354.312,20.883,22.053,20.883 +6311,197.226,369.664,535.647,186.352,522.002,363.019,535.176,4.060,170.797,4.060,340.988,310.378,354.312,20.883,22.053,20.883 +6312,197.255,406.963,524.430,186.719,532.212,362.993,525.953,178.017,176.100,178.017,264.776,310.325,352.769,20.403,20.248,20.403 +6313,197.289,386.738,513.958,188.084,541.528,363.984,517.036,172.297,1.941,172.297,309.270,308.433,355.193,20.384,20.903,20.384 +6314,197.319,375.649,507.215,190.289,550.880,365.325,509.731,166.302,7.765,166.302,338.350,309.409,359.603,20.169,20.852,20.169 +6315,197.349,370.795,499.770,193.065,558.484,362.659,502.566,161.035,12.653,161.035,339.916,310.337,357.122,19.984,22.342,19.984 +6316,197.381,364.235,493.803,196.037,567.402,359.167,496.037,156.218,18.587,156.218,345.034,311.487,356.112,19.620,22.077,19.620 +6317,197.413,359.977,487.958,199.181,575.598,355.331,490.470,151.607,24.201,151.607,345.130,312.517,355.693,19.829,24.309,19.829 +6318,197.445,355.611,483.016,202.681,582.394,351.492,485.652,147.373,29.291,147.373,345.196,314.142,354.976,19.504,24.909,19.504 +6319,197.477,351.702,478.293,206.483,589.025,347.452,481.448,143.415,34.330,143.415,344.036,314.872,354.623,19.271,25.600,19.271 +6320,197.507,347.899,474.289,210.342,594.477,343.622,477.907,139.776,39.447,139.776,342.878,316.627,354.082,18.993,25.483,18.993 +6321,197.538,344.053,470.981,213.844,599.672,339.774,475.057,136.390,44.599,136.390,342.448,317.557,354.266,18.962,25.663,18.962 +6322,197.569,339.964,468.027,219.254,602.583,336.725,471.475,133.205,49.616,133.205,342.515,320.090,351.975,19.346,21.118,19.346 +6323,197.599,336.227,465.875,222.248,606.747,332.978,469.704,130.314,54.367,130.314,342.228,321.889,352.273,19.224,21.153,19.224 +6324,197.632,332.730,463.863,225.354,610.186,329.566,467.964,127.653,58.970,127.653,342.163,323.440,352.522,19.299,21.342,19.299 +6325,197.662,329.624,462.175,228.100,613.700,326.259,466.938,125.238,63.435,125.238,341.346,326.019,353.010,19.130,21.019,19.130 +6326,197.692,329.624,462.175,228.100,613.700,326.259,466.938,125.238,63.435,125.238,341.346,326.019,353.010,19.130,21.019,19.130 +6327,197.720,326.482,460.863,230.558,616.159,323.363,465.659,123.033,67.782,123.033,342.084,327.183,353.526,19.245,21.019,19.245 +6328,197.750,323.450,460.472,232.896,618.857,320.648,465.150,120.927,72.061,120.927,343.002,329.200,353.907,19.533,20.766,19.533 +6329,197.783,321.440,458.850,234.546,619.986,318.524,464.075,119.159,76.034,119.159,342.173,328.636,354.139,19.369,21.118,19.369 +6330,197.816,319.278,458.076,236.179,621.212,316.439,463.504,117.610,80.272,117.610,341.639,329.282,353.890,19.302,19.994,19.302 +6331,197.849,317.454,457.490,237.693,622.427,314.672,463.127,116.274,83.965,116.274,341.263,329.393,353.836,19.182,19.819,19.182 +6332,197.882,315.595,457.373,238.826,623.009,313.140,462.611,115.109,87.213,115.109,341.981,328.876,353.551,19.239,19.919,19.239 +6333,197.915,314.662,456.720,239.500,623.500,312.182,462.219,114.278,90.000,114.278,341.737,329.000,353.803,19.271,19.000,19.271 +6334,197.947,313.601,456.725,240.460,624.017,311.269,462.025,113.749,92.112,113.749,341.998,330.366,353.581,18.819,19.319,18.819 +6335,197.978,313.518,455.930,240.641,624.385,310.923,461.952,113.311,93.547,113.311,340.857,330.040,353.971,19.219,19.615,19.219 +6336,198.011,313.386,455.876,240.691,624.015,310.869,461.732,113.261,94.399,113.261,340.864,329.565,353.612,19.318,19.634,19.318 +6337,198.041,313.902,455.644,240.259,623.942,311.132,461.972,113.644,94.485,113.644,339.778,329.654,353.594,18.731,19.587,18.731 +6338,198.072,314.159,456.396,239.612,623.473,311.639,462.048,114.029,93.953,114.029,341.155,330.010,353.532,19.534,19.535,19.534 +6339,198.103,315.114,457.661,238.408,622.996,312.841,462.561,114.880,92.635,114.880,342.917,328.895,353.720,19.038,19.590,19.038 +6340,198.133,316.894,457.487,236.900,622.482,314.161,463.100,115.962,90.920,115.962,341.756,329.182,354.242,19.083,19.387,19.083 +6341,198.164,318.508,457.949,235.444,621.434,315.667,463.429,117.408,88.452,117.408,342.049,329.258,354.395,19.268,19.344,19.268 +6342,198.195,320.899,459.063,233.335,619.933,318.090,464.147,118.926,85.426,118.926,343.072,329.109,354.690,19.278,19.418,19.278 +6343,198.226,320.899,459.063,233.335,619.933,318.090,464.147,118.926,85.426,118.926,343.072,329.109,354.690,19.278,19.418,19.278 +6344,198.254,323.353,460.412,231.125,618.415,320.410,465.316,120.964,82.235,120.964,342.997,328.370,354.436,18.865,19.952,18.865 +6345,198.284,326.504,460.878,228.635,616.173,323.098,466.119,123.024,78.690,123.024,342.085,327.710,354.587,19.158,20.004,19.158 +6346,198.314,329.391,462.858,225.931,613.883,326.012,467.620,125.362,74.818,125.362,342.723,326.708,354.401,19.151,20.636,19.151 +6347,198.346,332.982,464.423,223.132,611.128,329.329,469.098,127.999,70.821,127.999,342.741,326.057,354.606,19.060,20.779,19.060 +6348,198.378,336.024,466.806,220.360,607.847,332.749,470.626,130.601,67.001,130.601,344.594,325.105,354.657,19.307,20.476,19.307 +6349,198.409,340.025,468.591,217.223,603.854,336.220,472.575,133.688,62.949,133.688,343.229,323.782,354.248,18.747,21.109,18.747 +6350,198.439,344.207,472.007,213.924,599.548,340.398,475.562,136.975,59.068,136.975,343.693,322.588,354.114,19.105,20.741,19.105 +6351,198.470,348.262,475.213,210.203,593.738,344.396,478.414,140.371,54.773,140.371,343.782,319.482,353.820,19.146,20.672,19.146 +6352,198.500,352.471,479.152,206.448,587.898,348.445,482.063,144.130,50.560,144.130,344.224,317.448,354.161,19.448,21.176,19.448 +6353,198.533,356.126,483.910,202.853,581.271,352.463,486.194,148.055,46.081,148.055,345.883,315.527,354.516,19.726,21.023,19.726 +6354,198.565,359.781,489.375,199.256,574.030,356.253,491.215,152.459,41.704,152.459,347.041,313.990,354.998,19.545,21.747,19.545 +6355,198.598,364.060,495.514,196.197,566.067,360.153,497.162,157.126,36.826,157.126,347.210,312.397,355.693,19.536,21.502,19.536 +6356,198.630,367.676,502.604,193.368,557.325,363.604,503.913,162.181,32.174,162.181,348.272,311.320,356.828,19.449,22.301,19.449 +6357,198.661,370.459,510.565,190.969,548.177,365.978,511.560,167.471,27.483,167.471,348.390,310.420,357.570,19.741,22.199,19.741 +6358,198.691,370.459,510.565,190.969,548.177,365.978,511.560,167.471,27.483,167.471,348.390,310.420,357.570,19.741,22.199,19.741 +6359,198.719,371.376,519.186,189.470,538.474,364.874,519.979,173.047,22.638,173.047,339.606,309.078,352.706,20.361,22.499,20.361 +6360,198.750,375.642,528.721,188.742,528.621,363.984,528.936,178.943,17.754,178.943,327.092,308.014,350.413,20.517,21.867,20.517 +6361,198.783,394.707,539.218,189.121,518.268,364.633,535.718,6.638,12.815,6.638,292.149,307.079,352.704,23.672,21.569,23.672 +6362,198.815,378.368,551.314,191.319,507.063,365.536,548.689,11.560,7.465,11.560,331.856,307.530,358.050,20.908,20.569,20.908 +6363,198.848,372.566,558.612,193.630,496.976,367.569,556.877,19.156,2.951,19.156,357.349,305.780,367.928,25.664,21.075,25.664 +6364,198.880,368.300,569.900,198.005,486.115,363.525,567.513,26.565,177.483,26.565,358.218,306.495,368.895,25.491,19.026,25.491 +6365,198.912,361.654,582.208,204.099,475.520,357.649,579.404,34.992,172.338,34.992,360.954,306.028,370.732,25.150,19.884,25.150 +6366,198.943,354.161,593.562,211.931,465.695,350.270,589.944,42.917,167.242,42.917,361.209,306.543,371.835,24.861,20.537,24.861 +6367,198.972,344.292,603.013,221.653,457.474,341.448,599.513,50.906,162.096,50.906,362.542,307.035,371.561,23.914,18.753,23.914 +6368,199.002,333.517,611.904,232.818,450.078,331.000,607.692,59.136,156.701,59.136,361.508,307.654,371.322,23.689,18.624,23.689 +6369,199.033,319.963,619.603,244.950,443.835,317.949,614.722,67.574,151.699,67.574,361.063,307.962,371.623,21.803,18.490,21.803 +6370,199.066,303.889,625.414,258.231,439.346,302.459,619.856,75.574,146.310,75.574,360.197,308.413,371.675,25.678,18.028,25.678 +6371,199.098,292.922,627.047,272.047,436.558,292.416,620.828,85.347,141.044,85.347,358.153,309.232,370.631,26.239,18.431,26.239 +6372,199.130,272.960,627.386,285.866,435.851,273.272,620.441,92.571,135.674,92.571,356.033,309.758,369.937,27.107,18.733,27.107 +6373,199.161,258.379,624.448,300.129,437.682,259.841,617.505,101.889,130.601,101.889,354.338,310.211,368.530,24.515,20.175,24.515 +6374,199.192,258.379,624.448,300.129,437.682,259.841,617.505,101.889,130.601,101.889,354.338,310.211,368.530,24.515,20.175,24.515 +6375,199.219,245.944,619.972,313.830,441.880,248.931,612.550,111.922,125.171,111.922,349.119,310.829,365.118,20.013,21.609,20.013 +6376,199.250,211.684,650.527,326.234,447.960,238.000,606.303,120.757,122.082,120.757,259.465,311.536,362.388,19.744,20.031,19.744 +6377,199.283,213.350,615.399,337.847,455.921,227.479,597.910,128.934,117.245,128.934,314.646,312.271,359.613,19.623,19.851,19.623 +6378,199.314,208.146,598.315,349.466,465.694,219.270,588.006,137.179,112.593,137.179,326.931,313.233,357.266,19.815,22.152,19.815 +6379,199.346,205.686,582.989,357.568,476.627,212.435,578.310,145.263,106.858,145.263,337.989,314.078,354.414,19.471,21.519,19.471 +6380,199.377,202.748,570.467,366.069,488.298,208.284,567.666,153.164,101.094,153.164,340.834,315.540,353.243,19.828,24.879,19.828 +6381,199.409,199.803,558.794,371.311,500.789,205.141,556.926,160.710,94.485,160.710,339.459,317.222,350.770,19.396,25.178,19.396 +6382,199.439,197.950,548.120,375.216,512.965,203.769,546.884,168.008,88.340,168.008,337.611,318.388,349.507,19.752,25.728,19.752 +6383,199.470,197.766,537.448,377.267,525.187,203.749,536.899,174.764,82.147,174.764,335.709,321.747,347.726,20.091,25.824,20.091 +6384,199.500,198.045,527.776,378.762,536.577,204.929,527.956,1.500,76.490,1.500,334.226,324.544,347.998,18.779,25.394,18.779 +6385,199.532,200.077,516.978,378.406,547.557,207.262,517.895,7.275,70.761,7.275,332.556,327.045,347.043,24.461,24.326,24.461 +6386,199.565,202.261,509.150,376.832,557.885,209.733,510.848,12.804,65.225,12.804,331.412,329.031,346.736,25.088,22.559,25.088 +6387,199.596,204.700,501.400,374.897,566.903,213.039,504.180,18.435,59.946,18.435,329.193,330.956,346.773,25.614,21.399,25.614 +6388,199.627,207.485,494.462,371.842,575.398,216.384,498.355,23.629,54.428,23.629,327.183,332.469,346.608,25.881,20.015,25.881 +6389,199.656,207.485,494.462,371.842,575.398,216.384,498.355,23.629,54.428,23.629,327.183,332.469,346.608,25.881,20.015,25.881 +6390,199.684,211.098,486.194,369.071,582.253,220.984,491.834,29.705,48.759,29.705,324.099,333.490,346.864,25.428,20.354,25.428 +6391,199.717,208.158,480.335,365.083,588.800,222.553,490.150,34.287,42.964,34.287,311.826,333.996,346.671,18.402,20.443,18.402 +6392,199.749,160.195,433.756,361.031,594.311,225.829,486.263,38.660,37.614,38.660,178.038,334.063,346.143,17.804,20.063,17.804 +6393,199.782,219.333,471.771,356.947,598.738,230.299,481.259,40.865,32.597,40.865,316.282,334.178,345.284,24.268,19.790,24.268 +6394,199.815,228.034,469.354,352.596,601.907,234.761,476.489,46.685,27.646,46.685,324.567,333.790,344.180,24.717,21.133,24.717 +6395,199.848,232.597,467.250,347.061,606.257,237.829,473.551,50.293,22.593,50.293,327.378,334.307,343.757,24.497,23.267,24.497 +6396,199.885,236.864,465.467,342.301,609.322,240.859,470.906,53.696,16.756,53.696,329.721,333.328,343.217,24.193,25.030,24.193 +6397,199.926,240.580,462.775,337.622,612.358,244.342,468.522,56.793,11.514,56.793,329.128,332.051,342.866,24.401,25.822,24.401 +6398,199.957,243.365,460.661,333.226,615.446,247.095,467.069,59.791,6.399,59.791,328.299,330.312,343.128,23.187,27.658,23.187 +6399,199.987,246.920,458.541,328.971,617.428,250.382,465.211,62.571,1.169,62.571,327.586,328.340,342.614,23.538,27.260,23.538 +6400,200.018,249.581,457.074,324.363,618.849,252.623,463.682,65.283,176.348,65.283,327.349,327.737,341.898,22.335,26.457,22.335 +6401,200.053,252.506,455.819,319.743,620.742,255.254,462.509,67.671,171.694,67.671,327.275,327.391,341.739,21.788,26.601,21.788 +6402,200.085,255.077,453.836,315.250,622.250,257.759,461.213,70.017,167.005,70.017,326.279,326.421,341.978,21.274,27.133,21.274 +6403,200.117,258.387,452.738,310.954,623.409,260.698,459.974,72.290,161.847,72.290,326.761,326.007,341.954,21.742,26.482,21.742 +6404,200.148,260.652,452.128,306.757,624.532,262.631,459.281,74.539,157.286,74.539,327.224,325.772,342.068,20.589,26.579,20.589 +6405,200.182,263.810,451.451,302.576,625.149,265.465,458.414,76.633,152.916,76.633,327.283,325.684,341.596,21.115,26.872,21.115 +6406,200.215,266.315,450.731,298.760,626.204,267.785,458.016,78.598,147.724,78.598,327.119,326.092,341.984,20.627,25.098,20.627 +6407,200.249,268.214,450.293,294.833,626.949,269.431,457.553,80.478,143.440,80.478,327.807,326.160,342.530,19.260,24.738,19.260 +6408,200.281,271.162,449.712,291.261,627.584,272.154,457.156,82.405,138.814,82.405,327.898,326.618,342.917,19.825,23.612,19.825 +6409,200.312,273.431,448.949,287.714,627.726,274.240,456.918,84.203,134.728,84.203,326.570,326.740,342.591,19.423,23.351,19.423 +6410,200.346,275.680,448.634,284.189,628.574,276.270,456.992,85.962,129.806,85.962,326.670,327.646,343.427,19.082,21.766,19.082 +6411,200.377,277.657,447.793,280.574,628.747,278.053,456.684,87.455,125.853,87.455,326.211,328.416,344.010,18.693,21.529,18.693 +6412,200.407,279.701,446.444,277.918,629.127,279.877,456.512,88.995,122.669,88.995,324.968,328.721,345.108,18.611,20.075,18.611 +6413,200.438,282.010,446.035,275.337,629.907,281.901,456.971,90.570,119.659,90.570,324.113,329.188,345.986,18.427,20.071,18.427 +6414,200.467,284.773,445.091,272.915,629.956,284.294,456.992,92.302,117.453,92.302,322.744,329.262,346.564,18.784,19.679,18.784 +6415,200.498,286.765,443.643,270.802,630.147,285.914,457.106,93.614,115.897,93.614,320.320,329.657,347.299,18.710,19.510,18.710 +6416,200.529,288.686,442.864,268.801,630.141,287.435,457.247,94.970,115.017,94.970,318.840,329.790,347.715,18.669,19.574,18.669 +6417,200.560,288.686,442.864,268.801,630.141,287.435,457.247,94.970,115.017,94.970,318.840,329.790,347.715,18.669,19.574,18.669 +6418,200.588,290.426,442.151,267.308,630.108,288.800,457.463,96.062,114.918,96.062,317.102,329.437,347.898,18.515,20.473,18.515 +6419,200.618,292.135,441.765,265.182,629.588,290.210,457.308,97.063,115.656,97.063,316.773,329.271,348.098,18.513,19.505,18.513 +6420,200.648,293.422,441.977,263.984,629.460,291.269,457.408,97.943,117.284,97.943,317.183,329.219,348.343,18.656,20.357,18.656 +6421,200.679,294.670,443.142,262.152,628.586,292.524,457.093,98.746,119.491,98.746,320.004,328.808,348.235,18.703,19.677,18.703 +6422,200.711,295.322,444.378,260.865,628.047,293.255,457.076,99.246,122.276,99.246,322.178,328.183,347.907,19.166,19.936,19.166 +6423,200.742,296.314,444.667,259.752,627.551,294.144,457.084,99.915,126.219,99.915,322.472,327.615,347.684,19.205,20.067,19.205 +6424,200.772,296.941,446.358,258.615,626.599,295.006,456.836,100.463,130.746,100.463,325.788,326.576,347.097,19.880,19.803,19.880 +6425,200.803,297.786,447.149,257.778,625.764,295.903,456.681,101.171,135.317,101.171,327.099,325.327,346.531,19.316,20.525,19.316 +6426,200.834,298.531,447.731,257.451,625.439,296.709,456.527,101.703,141.340,101.703,328.764,324.373,346.728,19.395,21.552,19.395 +6427,200.864,299.457,447.867,257.049,624.802,297.620,456.250,102.357,147.144,102.357,329.493,323.783,346.658,19.399,22.121,19.399 +6428,200.896,300.168,448.852,256.862,624.697,298.377,456.568,103.069,153.072,103.069,330.480,322.921,346.323,19.569,23.846,19.569 +6429,200.926,300.168,448.852,256.862,624.697,298.377,456.568,103.069,153.072,103.069,330.480,322.921,346.323,19.569,23.846,19.569 +6430,200.954,301.238,449.173,256.122,623.823,299.466,456.388,103.799,159.258,103.799,331.021,322.191,345.882,19.252,24.558,19.252 +6431,200.984,302.444,449.533,255.466,623.324,300.645,456.401,104.676,166.201,104.676,331.647,321.361,345.847,19.140,25.863,19.140 +6432,201.016,303.618,449.949,254.862,622.892,301.803,456.495,105.495,172.875,105.495,332.194,320.754,345.780,19.235,25.303,19.235 +6433,201.050,305.053,450.255,254.011,623.067,303.085,456.909,106.474,179.692,106.474,332.628,320.060,346.507,19.298,25.833,19.298 +6434,201.082,306.406,451.079,252.752,622.546,304.437,457.292,107.580,6.911,107.580,333.258,321.826,346.293,19.151,26.593,19.151 +6435,201.115,308.188,451.735,251.342,622.145,306.147,457.711,108.853,13.799,108.853,334.015,322.298,346.645,19.204,27.004,19.204 +6436,201.147,310.096,452.667,249.157,622.144,307.957,458.474,110.225,21.477,110.225,335.433,323.837,347.811,19.113,26.910,19.113 +6437,201.179,311.594,453.553,247.203,622.048,309.358,459.231,111.490,28.443,111.490,336.330,323.616,348.535,19.196,26.415,19.196 +6438,201.210,313.588,454.409,245.075,622.113,311.158,460.118,113.062,34.756,113.062,337.462,323.823,349.871,19.349,26.090,19.349 +6439,201.240,315.829,455.537,242.497,621.448,313.285,461.048,114.775,41.987,114.775,338.459,324.225,350.600,19.137,25.272,19.137 +6440,201.272,318.400,456.700,240.762,619.471,315.982,461.536,116.565,49.054,116.565,338.988,324.944,349.802,19.230,21.593,19.230 +6441,201.301,321.274,458.001,237.432,618.412,318.620,462.828,118.811,56.853,118.811,339.884,325.647,350.902,19.233,21.325,19.233 +6442,201.331,323.610,459.570,233.823,617.094,320.881,464.131,120.888,63.745,120.888,341.290,325.613,351.921,19.025,21.124,19.025 +6443,201.362,326.965,461.488,229.527,615.848,323.878,466.170,123.408,70.326,123.408,342.576,327.122,353.793,19.058,20.737,19.058 +6444,201.392,326.965,461.488,229.527,615.848,323.878,466.170,123.408,70.326,123.408,342.576,327.122,353.793,19.058,20.737,19.058 +6445,201.420,330.414,463.344,224.498,613.287,326.859,468.224,126.076,77.965,126.076,342.969,326.793,355.043,19.386,20.414,19.386 +6446,201.452,333.378,465.402,220.066,610.318,329.704,469.995,128.660,84.976,128.660,344.363,326.554,356.127,18.897,19.649,18.897 +6447,201.482,336.456,468.131,215.615,606.539,332.824,472.227,131.560,91.985,131.560,345.565,325.463,356.514,19.000,19.325,19.000 +6448,201.515,340.283,470.791,211.177,602.344,336.261,474.840,134.804,98.991,134.804,345.809,325.858,357.224,19.046,18.835,19.046 +6449,201.547,344.008,474.210,206.057,597.302,339.836,477.936,138.233,105.945,138.233,347.395,324.720,358.582,19.312,20.055,19.312 +6450,201.579,347.956,478.035,202.637,591.847,343.928,481.199,141.843,112.865,141.843,348.676,323.543,358.921,19.770,18.684,19.770 +6451,201.610,352.088,482.417,198.523,585.585,347.911,485.250,145.856,119.745,145.856,349.813,322.242,359.906,19.359,18.853,19.359 +6452,201.640,356.885,487.201,194.886,578.786,351.853,490.104,150.018,126.591,150.018,348.940,320.617,360.559,19.822,18.686,19.822 +6453,201.670,360.596,492.960,191.150,570.600,355.585,495.322,154.767,133.738,154.767,350.593,319.124,361.673,19.152,19.221,19.152 +6454,201.700,364.738,499.249,188.455,562.060,359.150,501.321,159.656,140.856,159.656,350.407,317.385,362.327,19.374,20.616,19.374 +6455,201.731,368.360,506.804,186.096,552.650,362.816,508.311,164.798,147.501,164.798,352.835,315.608,364.326,19.657,21.879,19.657 +6456,201.762,368.088,515.515,185.260,543.460,363.088,516.365,170.352,154.335,170.352,349.565,314.018,359.708,19.973,20.789,19.973 +6457,201.792,368.088,515.515,185.260,543.460,363.088,516.365,170.352,154.335,170.352,349.565,314.018,359.708,19.973,20.789,19.973 +6458,201.820,368.007,524.101,185.210,533.166,362.454,524.461,176.292,160.848,176.292,343.742,312.136,354.871,20.402,21.314,20.402 +6459,201.851,368.469,531.222,186.206,522.686,362.862,530.953,2.748,167.403,2.748,342.470,310.536,353.698,24.787,21.111,24.787 +6460,201.883,370.054,541.676,188.395,512.034,364.573,540.762,9.462,173.768,9.462,345.895,308.660,357.008,25.317,20.722,25.317 +6461,201.916,372.181,553.196,191.500,501.000,366.793,551.644,16.074,0.000,16.074,353.712,307.000,364.925,25.423,20.000,25.423 +6462,201.947,370.820,565.295,196.463,489.812,365.424,562.960,23.405,6.302,23.405,356.473,306.115,368.232,25.477,21.782,25.477 +6463,201.978,365.636,578.231,202.888,480.102,360.903,575.308,31.701,11.560,31.701,357.811,305.003,368.937,25.349,20.285,25.349 +6464,202.009,358.936,589.439,210.844,469.885,354.533,585.808,39.508,17.879,39.508,357.805,303.871,369.220,25.610,20.201,25.610 +6465,202.039,349.706,600.270,220.161,460.542,345.913,596.132,47.490,24.376,47.490,358.625,303.314,369.851,24.388,21.291,24.388 +6466,202.069,338.747,609.764,230.534,453.353,335.815,605.462,55.723,30.101,55.723,359.558,302.899,369.970,23.400,19.886,23.400 +6467,202.101,326.051,616.811,242.028,446.961,324.072,612.726,64.151,35.618,64.151,360.823,303.180,369.902,23.019,19.413,23.019 +6468,202.132,311.714,623.597,254.901,442.114,310.260,618.850,72.970,40.914,72.970,360.469,303.082,370.398,22.190,19.749,22.190 +6469,202.163,294.527,626.836,269.124,439.418,293.785,622.337,80.638,46.975,80.638,359.869,303.632,368.989,27.128,21.152,27.128 +6470,202.195,280.000,627.000,283.013,438.067,280.000,622.033,90.000,52.431,90.000,358.000,304.611,367.933,22.000,21.035,22.000 +6471,202.225,280.000,627.000,283.013,438.067,280.000,622.033,90.000,52.431,90.000,358.000,304.611,367.933,22.000,21.035,22.000 +6472,202.254,263.787,624.412,298.270,439.202,264.460,619.853,98.407,57.848,98.407,358.091,305.273,367.307,26.047,22.690,26.047 +6473,202.284,251.823,619.968,312.879,442.776,253.484,615.073,108.753,62.963,108.753,354.152,307.222,364.490,20.546,23.392,20.546 +6474,202.315,238.469,612.821,326.216,448.112,240.795,608.391,117.696,68.523,117.696,353.230,308.978,363.236,20.032,23.752,20.032 +6475,202.346,226.921,604.292,338.256,455.862,230.018,600.109,126.518,73.791,126.518,350.263,310.038,360.674,19.742,24.218,19.742 +6476,202.378,217.250,594.250,349.039,465.304,220.934,590.566,135.000,79.315,135.000,347.897,311.949,358.315,19.092,24.622,19.092 +6477,202.410,210.212,583.309,356.834,475.638,213.877,580.591,143.448,84.611,143.448,345.563,313.439,354.689,19.556,22.429,19.556 +6478,202.441,204.497,572.668,365.500,486.500,209.355,570.024,151.434,90.000,151.434,343.091,315.000,354.152,20.093,25.000,20.093 +6479,202.472,200.433,561.269,370.402,498.345,205.566,559.318,159.185,95.528,159.185,340.505,316.618,351.488,19.815,25.012,19.815 +6480,202.503,198.042,550.270,374.145,510.028,203.805,548.893,166.563,100.911,166.563,337.568,319.302,349.418,19.592,25.613,19.592 +6481,202.533,197.329,539.463,376.243,521.523,203.347,538.795,173.660,106.699,173.660,335.381,320.584,347.491,19.326,25.861,19.326 +6482,202.564,197.469,529.334,377.081,532.741,204.037,529.376,0.361,112.510,0.361,332.987,321.779,346.122,18.681,26.366,18.681 +6483,202.595,198.892,517.988,376.605,543.322,205.623,518.723,6.226,118.009,6.226,331.741,322.943,345.283,25.051,26.280,25.051 +6484,202.625,198.892,517.988,376.605,543.322,205.623,518.723,6.226,118.009,6.226,331.741,322.943,345.283,25.051,26.280,25.051 +6485,202.653,201.286,510.008,374.808,553.538,208.006,511.438,12.011,123.690,12.011,330.079,325.054,343.822,25.202,26.348,25.202 +6486,202.683,204.390,502.345,372.680,562.408,211.034,504.471,17.745,129.611,17.745,329.272,324.974,343.225,25.563,26.858,25.563 +6487,202.716,208.360,493.595,369.567,570.575,215.106,496.639,24.286,135.406,24.286,327.597,325.301,342.401,25.489,26.669,25.489 +6488,202.749,212.017,487.470,366.049,578.061,218.626,491.171,29.249,141.340,29.249,327.015,326.091,342.165,25.442,26.706,25.442 +6489,202.780,215.885,482.423,362.351,585.107,222.377,486.751,33.690,147.328,33.690,326.441,326.736,342.046,25.239,27.202,25.239 +6490,202.813,220.028,477.334,358.200,590.900,226.173,482.203,38.395,153.435,38.395,326.290,326.913,341.971,25.065,26.833,25.065 +6491,202.844,224.497,473.422,354.073,596.367,230.234,478.725,42.749,159.475,42.749,325.962,327.597,341.587,25.035,27.118,25.035 +6492,202.876,228.798,470.104,349.587,601.230,233.914,475.530,46.685,165.593,46.685,326.708,327.931,341.622,24.634,26.435,24.634 +6493,202.907,233.074,466.852,345.519,605.635,237.829,472.608,50.440,171.754,50.440,327.357,328.381,342.289,25.174,26.879,25.174 +6494,202.937,236.592,464.797,341.080,609.435,240.800,470.571,53.920,177.647,53.920,328.283,328.503,342.571,23.225,27.183,23.225 +6495,202.968,240.504,462.283,336.763,612.508,244.435,468.398,57.265,3.869,57.265,327.759,329.682,342.298,23.493,27.295,23.493 +6496,202.999,244.424,460.827,332.708,615.856,247.823,466.809,60.396,10.305,60.396,329.287,330.849,343.047,23.001,27.191,23.001 +6497,203.030,248.379,459.310,328.075,618.478,251.292,465.103,63.304,17.255,63.304,330.074,332.200,343.043,23.433,26.335,23.433 +6498,203.062,251.164,457.756,323.730,621.851,254.076,464.332,66.109,24.018,66.109,330.081,332.835,344.464,22.011,26.044,22.011 +6499,203.092,251.164,457.756,323.730,621.851,254.076,464.332,66.109,24.018,66.109,330.081,332.835,344.464,22.011,26.044,22.011 +6500,203.121,254.256,456.372,319.974,623.739,256.911,463.205,68.769,30.548,68.769,330.289,332.708,344.950,21.587,24.453,21.587 +6501,203.153,257.313,455.574,315.699,626.077,259.697,462.580,71.200,37.128,71.200,330.844,332.798,345.644,21.048,24.297,21.048 +6502,203.185,260.750,454.804,312.653,626.821,262.693,461.449,73.706,43.877,73.706,331.645,333.219,345.492,21.810,21.126,21.810 +6503,203.217,263.770,454.298,308.280,628.858,265.423,460.982,76.115,50.503,76.115,332.738,333.792,346.508,21.314,21.592,21.314 +6504,203.250,265.840,452.651,303.984,630.336,267.490,460.668,78.366,56.934,78.366,330.711,333.991,347.082,19.820,19.869,19.820 +6505,203.282,268.919,452.013,299.100,631.700,270.288,460.227,80.538,63.435,80.538,331.100,334.069,347.753,20.221,20.125,20.221 +6506,203.315,271.559,450.571,295.115,632.958,272.773,460.016,82.674,70.157,82.674,329.715,335.934,348.760,19.893,19.467,19.893 +6507,203.346,273.618,448.346,289.500,633.000,274.742,459.347,84.163,76.518,84.163,326.388,337.379,348.506,18.835,21.121,18.835 +6508,203.378,275.776,437.707,284.901,633.698,277.154,459.208,86.332,82.942,86.332,306.166,334.777,349.257,18.373,21.087,18.373 +6509,203.410,277.533,375.032,280.500,634.000,279.348,459.423,88.768,90.000,88.768,180.302,334.000,349.124,17.684,21.000,17.684 +6510,203.441,282.529,421.524,275.812,632.980,282.094,458.492,90.674,96.194,90.674,275.157,334.378,349.099,17.799,23.189,17.799 +6511,203.472,285.668,435.135,273.189,632.142,284.504,458.066,92.906,103.426,92.906,302.930,332.516,348.851,17.886,19.861,17.886 +6512,203.502,288.970,438.845,269.326,630.621,287.352,457.457,94.970,110.323,94.970,310.784,330.539,348.148,18.192,19.727,18.192 +6513,203.533,291.749,442.208,265.669,629.821,289.945,457.364,96.789,116.841,96.789,317.709,329.171,348.234,18.701,20.490,18.701 +6514,203.565,294.676,444.337,261.500,628.000,292.702,457.070,98.813,123.690,98.813,321.615,328.382,347.385,19.182,19.692,19.182 +6515,203.596,297.682,446.113,258.016,626.436,295.599,456.928,100.901,130.236,100.901,325.085,327.140,347.114,19.843,20.200,19.843 +6516,203.626,300.845,447.433,254.737,624.818,298.632,456.854,103.218,136.809,103.218,327.750,325.420,347.103,19.581,20.860,19.581 +6517,203.656,300.845,447.433,254.737,624.818,298.632,456.854,103.218,136.809,103.218,327.750,325.420,347.103,19.581,20.860,19.581 +6518,203.684,305.175,449.060,251.283,623.356,302.703,457.628,106.091,143.489,106.091,329.138,324.012,346.973,19.771,21.179,19.771 +6519,203.716,307.838,449.591,248.162,621.908,305.153,457.804,108.100,150.255,108.100,330.096,322.862,347.378,19.410,22.574,19.410 +6520,203.749,311.625,450.806,244.339,619.611,308.767,458.342,110.772,156.705,110.772,331.150,321.839,347.270,19.022,23.536,19.022 +6521,203.781,315.188,452.446,240.935,617.789,312.229,459.292,113.376,162.897,113.376,332.635,320.848,347.550,19.347,24.115,19.347 +6522,203.813,319.600,454.300,237.216,615.543,316.413,460.674,116.565,168.959,116.565,333.621,320.277,347.874,19.230,25.184,19.230 +6523,203.844,322.861,456.096,233.526,612.901,319.730,461.711,119.145,176.269,119.145,335.203,318.476,348.062,19.650,25.554,19.650 +6524,203.876,327.186,458.207,229.504,609.886,323.828,463.491,122.440,2.010,122.440,335.773,317.576,348.295,18.932,24.879,18.932 +6525,203.907,331.805,461.268,225.233,607.357,328.323,466.056,126.027,8.178,126.027,337.978,318.767,349.820,19.410,25.676,19.410 +6526,203.938,335.999,464.238,221.103,603.075,332.650,468.293,129.560,13.679,129.560,339.391,318.419,349.908,19.073,26.481,19.073 +6527,203.968,340.223,467.538,216.735,599.718,336.531,471.456,133.303,20.225,133.303,340.241,317.654,351.008,18.686,25.533,18.686 +6528,203.999,345.165,471.848,212.235,595.550,341.290,475.420,137.328,25.688,137.328,342.084,316.652,352.623,19.231,24.970,19.231 +6529,204.030,349.591,476.123,207.897,590.169,345.677,479.243,141.442,31.373,141.442,343.751,316.279,353.762,19.402,25.093,19.402 +6530,204.062,354.039,481.254,204.886,582.822,350.803,483.443,145.931,36.954,145.931,345.273,315.601,353.087,19.344,21.378,19.344 +6531,204.092,354.039,481.254,204.886,582.822,350.803,483.443,145.931,36.954,145.931,345.273,315.601,353.087,19.344,21.378,19.344 +6532,204.121,358.594,487.670,200.686,577.150,354.961,489.688,150.945,42.346,150.945,346.361,314.404,354.673,19.426,22.388,19.426 +6533,204.152,363.022,493.790,197.127,569.604,359.017,495.577,155.956,47.632,155.956,347.239,313.730,356.009,19.585,21.540,19.585 +6534,204.184,366.911,501.712,194.473,561.764,362.956,503.038,161.478,53.049,161.478,348.481,314.193,356.823,19.287,21.011,19.287 +6535,204.215,369.921,510.218,191.831,552.560,365.952,511.125,167.125,58.299,167.125,349.807,313.019,357.951,19.943,20.845,19.943 +6536,204.247,369.504,519.729,190.000,542.500,364.920,520.276,173.199,63.435,173.199,343.410,311.261,352.643,20.515,21.913,20.515 +6537,204.280,369.000,527.500,188.414,532.534,363.707,527.500,0.000,68.199,0.000,340.000,310.668,350.586,23.000,21.912,23.000 +6538,204.310,370.266,537.556,189.892,521.122,365.407,536.978,6.782,73.120,6.782,342.532,309.552,352.319,25.131,22.214,25.131 +6539,204.341,372.112,549.455,191.947,509.680,367.336,548.279,13.841,78.261,13.841,349.224,308.463,359.062,25.203,21.743,25.203 +6540,204.372,372.371,562.328,194.455,498.328,367.253,560.322,21.400,83.270,21.400,356.016,307.117,367.010,25.428,19.628,25.428 +6541,204.402,366.873,575.856,199.815,486.921,362.237,573.168,30.114,88.386,30.114,356.825,306.217,367.544,25.415,18.950,25.415 +6542,204.433,361.117,586.898,207.083,475.626,356.631,583.447,37.569,93.468,37.569,357.230,306.014,368.549,25.669,18.693,25.669 +6543,204.464,351.385,598.713,215.078,465.228,347.337,594.492,46.198,98.219,46.198,357.984,305.903,369.680,24.450,19.729,24.450 +6544,204.495,340.290,608.942,225.274,455.796,336.738,603.914,54.758,103.100,54.758,358.266,306.043,370.578,23.481,20.509,23.481 +6545,204.526,340.290,608.942,225.274,455.796,336.738,603.914,54.758,103.100,54.758,358.266,306.043,370.578,23.481,20.509,23.481 +6546,204.554,327.440,617.035,237.396,448.129,324.719,611.564,63.558,108.004,63.558,358.225,306.090,370.445,22.935,19.900,22.935 +6547,204.586,312.660,623.606,250.910,442.328,310.926,618.049,72.667,112.917,72.667,359.600,306.365,371.243,22.606,19.155,22.606 +6548,204.619,294.760,627.455,265.226,438.384,293.730,621.256,80.571,117.880,80.571,357.572,307.401,370.141,27.127,18.848,27.127 +6549,204.649,279.500,628.000,279.489,436.527,279.500,621.264,90.000,122.775,90.000,356.000,308.230,369.473,23.000,19.500,23.000 +6550,204.681,263.580,625.569,294.452,436.962,264.546,619.028,98.396,127.807,98.396,355.740,309.863,368.963,25.754,19.330,25.754 +6551,204.714,251.857,621.116,308.841,439.747,254.049,614.588,108.563,132.905,108.563,352.604,311.384,366.376,20.544,19.174,20.544 +6552,204.745,238.171,614.563,322.807,444.783,241.544,607.975,117.116,138.366,117.116,349.787,313.081,364.589,20.167,19.184,20.167 +6553,204.777,226.849,606.667,335.087,451.116,231.560,600.156,125.886,143.326,125.886,346.794,314.810,362.868,19.893,19.505,19.893 +6554,204.809,216.939,596.989,346.301,458.993,222.977,590.803,134.306,148.614,134.306,343.646,317.091,360.933,19.103,20.317,19.103 +6555,204.840,208.862,586.562,356.101,468.683,216.149,580.970,142.500,153.970,142.500,340.404,318.929,358.775,19.480,20.374,19.480 +6556,204.871,202.499,575.870,364.208,479.207,211.095,570.964,150.287,159.756,150.287,337.128,321.161,356.922,18.967,20.335,18.967 +6557,204.901,197.284,565.477,370.790,490.328,207.826,561.235,158.078,165.480,158.078,332.578,323.095,355.306,18.837,19.765,18.837 +6558,204.933,193.462,554.457,375.574,502.186,205.841,551.200,165.256,171.384,165.256,327.635,324.778,353.235,18.833,19.714,18.833 +6559,204.965,191.036,543.218,377.533,513.702,204.405,541.329,171.957,177.316,171.957,323.579,324.050,350.581,18.824,19.307,18.824 +6560,204.997,189.887,532.936,377.713,524.713,204.340,532.615,178.727,2.839,178.727,318.099,323.792,347.011,18.395,20.553,18.395 +6561,205.027,188.234,522.686,378.893,535.351,205.741,524.145,4.764,8.448,4.764,311.836,326.625,346.970,18.436,21.742,18.436 +6562,205.059,188.234,522.686,378.893,535.351,205.741,524.145,4.764,8.448,4.764,311.836,326.625,346.970,18.436,21.742,18.436 +6563,205.089,187.843,513.002,380.137,546.058,208.504,516.876,10.620,14.621,10.620,306.103,332.145,348.144,18.367,21.498,18.367 +6564,205.121,194.521,505.475,378.339,556.326,210.866,510.210,16.154,21.096,16.154,313.347,332.268,347.382,18.508,20.663,18.508 +6565,205.154,196.254,497.295,375.668,566.069,213.617,504.089,21.371,27.408,21.371,309.699,333.270,346.989,18.260,19.037,18.260 +6566,205.190,201.388,491.152,372.400,574.897,216.607,498.619,26.131,33.770,26.131,313.024,333.383,346.928,18.430,18.814,18.430 +6567,205.222,206.253,485.696,368.612,582.750,219.942,493.801,30.630,39.996,30.630,314.674,333.787,346.492,18.625,19.347,18.625 +6568,205.253,210.885,481.067,364.652,589.383,223.111,489.561,34.789,46.548,34.789,316.616,334.015,346.391,18.569,19.677,18.569 +6569,205.284,217.646,476.317,359.834,595.748,227.473,484.179,38.660,52.907,38.660,320.937,334.608,346.106,23.114,19.922,23.114 +6570,205.314,222.241,471.744,355.488,600.804,231.511,480.252,42.541,59.287,42.541,320.540,334.591,345.706,25.060,19.919,25.060 +6571,205.346,226.514,469.164,350.707,605.529,234.418,477.332,45.939,65.821,45.939,323.255,334.766,345.987,24.711,20.033,24.711 +6572,205.377,230.301,466.717,345.823,609.418,237.461,475.007,49.185,72.290,49.185,323.198,334.566,345.105,24.425,20.253,24.425 +6573,205.408,234.474,464.748,340.796,612.737,240.397,472.373,52.158,78.511,52.158,325.567,334.375,344.878,24.814,19.559,24.814 +6574,205.439,237.260,462.958,336.231,615.154,242.605,470.575,54.941,85.030,54.941,325.642,333.697,344.253,23.767,19.665,23.767 +6575,205.469,240.475,461.647,331.527,617.488,245.053,468.828,57.482,91.507,57.482,326.645,333.200,343.677,23.400,19.178,23.400 +6576,205.499,242.767,459.236,327.318,619.176,247.323,467.095,59.899,98.435,59.899,325.217,332.629,343.384,23.058,20.570,23.058 +6577,205.532,245.985,458.062,322.088,620.776,249.819,465.296,62.071,103.818,62.071,326.065,333.253,342.439,23.504,22.526,23.504 +6578,205.564,247.994,457.046,319.953,621.100,251.523,464.313,64.093,110.898,64.093,325.699,330.764,341.857,22.256,22.099,22.256 +6579,205.596,250.269,456.043,317.387,621.913,253.468,463.220,65.980,117.795,65.980,326.223,329.703,341.939,21.941,22.040,21.941 +6580,205.626,252.504,455.449,314.650,622.415,255.232,462.106,67.714,124.568,67.714,327.346,328.945,341.734,21.616,23.604,21.616 +6581,205.656,252.504,455.449,314.650,622.415,255.232,462.106,67.714,124.568,67.714,327.346,328.945,341.734,21.616,23.604,21.616 +6582,205.684,254.860,453.930,312.319,622.907,257.529,461.067,69.495,131.048,69.495,326.317,328.318,341.556,22.342,24.451,22.342 +6583,205.716,256.321,453.682,310.645,623.615,258.772,460.790,70.974,137.324,70.974,326.643,327.045,341.680,21.157,25.471,21.157 +6584,205.750,258.029,452.882,308.826,623.944,260.301,460.057,72.429,143.696,72.429,326.726,326.974,341.779,20.942,25.986,20.942 +6585,205.783,259.699,452.419,307.137,624.106,261.745,459.417,73.706,150.086,73.706,327.038,326.348,341.620,20.570,26.205,20.570 +6586,205.817,261.802,451.885,305.839,624.495,263.678,458.911,75.044,156.280,75.044,327.166,325.814,341.710,21.394,26.467,21.394 +6587,205.850,262.721,451.575,304.632,624.919,264.475,458.673,76.115,162.518,76.115,327.426,325.775,342.050,20.103,27.082,20.103 +6588,205.882,264.073,451.031,303.374,625.379,265.752,458.448,77.242,168.492,77.242,327.024,325.754,342.235,19.930,26.944,19.930 +6589,205.915,265.886,450.836,302.186,625.471,267.370,457.970,78.250,174.602,78.250,327.589,325.668,342.162,20.677,27.092,20.677 +6590,205.947,266.697,451.034,301.500,626.500,268.060,458.191,79.216,0.000,79.216,328.616,325.000,343.187,19.506,27.000,19.506 +6591,205.977,267.380,451.340,299.876,626.714,268.609,458.098,79.695,5.739,79.695,329.239,327.071,342.977,19.409,28.015,19.409 +6592,206.007,268.995,451.400,299.048,627.238,270.053,458.034,80.934,11.407,80.934,329.880,327.730,343.317,19.151,27.808,19.151 +6593,206.037,270.507,451.363,298.083,628.351,271.489,458.110,81.724,17.168,81.724,330.954,328.571,344.591,19.972,27.762,19.972 +6594,206.067,271.353,451.615,296.692,628.935,272.223,458.182,82.461,22.671,82.461,331.725,329.695,344.974,19.550,27.121,19.550 +6595,206.099,272.397,451.812,295.597,629.316,273.154,458.115,83.157,27.897,83.157,332.614,330.641,345.311,19.659,26.098,19.659 +6596,206.130,273.311,451.735,294.909,630.141,274.037,458.508,83.884,33.024,83.884,332.135,330.598,345.759,19.496,26.243,19.496 +6597,206.159,273.311,451.735,294.909,630.141,274.037,458.508,83.884,33.024,83.884,332.135,330.598,345.759,19.496,26.243,19.496 +6598,206.188,274.182,451.911,293.262,631.509,274.845,458.877,84.560,37.569,84.560,333.207,330.646,347.201,19.341,26.340,19.341 +6599,206.218,275.021,451.748,292.056,631.990,275.624,458.987,85.236,42.158,85.236,333.012,331.430,347.540,19.184,25.515,19.184 +6600,206.250,275.925,451.357,290.786,632.176,276.443,458.725,85.976,46.569,85.976,333.287,331.228,348.059,19.008,24.894,19.008 +6601,206.284,276.817,451.685,290.157,631.637,277.204,458.340,86.666,50.553,86.666,334.181,332.022,347.513,18.842,21.954,18.842 +6602,206.316,277.783,451.621,288.646,632.173,278.092,458.575,87.455,54.175,87.455,333.870,332.603,347.792,18.693,22.012,18.693 +6603,206.347,278.444,452.091,287.075,632.313,278.677,458.634,87.962,57.426,87.962,334.642,332.865,347.736,18.707,21.419,18.707 +6604,206.380,279.644,451.535,285.242,632.574,279.780,458.765,88.926,60.150,88.926,333.298,332.913,347.762,18.678,21.432,18.678 +6605,206.410,281.000,451.500,283.410,632.764,281.000,458.382,90.000,62.425,90.000,335.000,332.857,348.764,18.000,21.530,18.000 +6606,206.441,283.024,450.892,281.360,632.838,282.862,458.358,91.245,64.044,91.245,334.008,332.789,348.943,18.778,21.351,18.778 +6607,206.472,284.688,450.807,279.198,632.677,284.356,458.215,92.568,65.148,92.568,334.202,332.586,349.035,18.578,21.166,18.578 +6608,206.502,286.679,450.806,276.592,632.730,286.165,458.287,93.933,65.489,93.933,334.379,333.026,349.377,18.650,20.838,18.650 +6609,206.534,288.275,451.479,274.131,632.488,287.647,458.388,95.194,65.647,95.194,335.344,332.207,349.218,18.741,21.184,18.741 +6610,206.566,290.692,451.917,271.436,632.100,289.929,458.212,96.911,65.068,96.911,337.018,332.323,349.700,18.802,20.401,18.802 +6611,206.598,292.909,451.116,268.408,631.560,291.866,458.156,98.427,64.163,98.427,335.706,331.518,349.940,18.978,20.805,18.978 +6612,206.627,295.193,451.906,265.782,630.603,294.086,458.067,100.185,63.072,100.185,337.124,330.988,349.644,19.284,20.577,19.284 +6613,206.657,295.193,451.906,265.782,630.603,294.086,458.067,100.185,63.072,100.185,337.124,330.988,349.644,19.284,20.577,19.284 +6614,206.685,298.011,452.536,262.719,629.879,296.755,458.380,102.124,61.032,102.124,337.689,330.725,349.645,19.163,21.185,19.163 +6615,206.718,301.020,452.735,259.357,628.892,299.549,458.525,104.250,59.184,104.250,338.092,330.148,350.039,19.200,21.305,19.200 +6616,206.756,304.242,453.183,256.005,627.400,302.584,458.779,106.504,57.426,106.504,338.136,329.096,349.810,19.318,21.208,19.318 +6617,206.800,310.863,454.280,248.660,624.114,308.739,459.744,111.251,52.633,111.251,338.214,327.415,349.939,19.106,21.748,19.106 +6618,206.833,314.895,455.558,244.672,622.107,312.587,460.718,114.102,50.194,114.102,338.800,326.238,350.105,19.145,21.894,19.145 +6619,206.867,318.400,456.700,239.395,620.683,315.603,462.294,116.565,47.626,116.565,338.988,324.552,351.497,19.230,25.351,19.230 +6620,206.904,322.548,458.104,235.379,618.111,319.442,463.561,119.650,45.474,119.650,339.243,323.236,351.799,18.946,25.911,18.946 +6621,206.935,326.609,459.787,230.927,614.467,323.362,464.847,122.681,42.955,122.681,339.663,322.109,351.689,18.962,25.919,18.962 +6622,206.964,331.041,462.030,226.448,610.757,327.594,466.784,125.942,39.719,125.942,340.117,321.498,351.862,19.451,26.034,19.451 +6623,206.995,335.655,464.540,221.698,606.725,331.789,469.226,129.523,36.741,129.523,340.098,319.999,352.247,19.091,26.061,19.091 +6624,207.025,335.655,464.540,221.698,606.725,331.789,469.226,129.523,36.741,129.523,340.098,319.999,352.247,19.091,26.061,19.091 +6625,207.056,339.894,467.689,217.192,601.961,335.987,471.848,133.215,33.690,133.215,340.924,318.675,352.337,18.664,25.794,18.664 +6626,207.087,345.109,471.784,212.030,596.450,340.955,475.618,137.291,30.735,137.291,342.079,318.121,353.385,19.274,25.972,19.274 +6627,207.118,349.317,475.882,207.927,590.138,345.420,479.015,141.203,27.897,141.203,343.567,315.980,353.567,19.316,25.058,19.316 +6628,207.149,354.181,480.697,203.549,583.299,349.924,483.601,145.703,24.582,145.703,343.898,314.574,354.204,19.340,24.447,19.340 +6629,207.181,359.143,486.275,199.917,574.943,354.708,488.792,150.417,21.724,150.417,344.090,313.275,354.289,19.531,24.531,19.531 +6630,207.212,364.791,492.450,195.899,566.772,358.765,495.183,155.603,18.015,155.603,342.550,312.129,355.785,19.379,23.009,19.379 +6631,207.243,370.839,499.383,192.701,557.720,362.505,502.257,160.974,14.153,160.974,339.584,311.188,357.216,19.462,22.336,19.462 +6632,207.274,375.415,507.950,190.054,548.522,365.603,510.284,166.621,10.539,166.621,339.093,309.777,359.265,19.689,21.446,19.689 +6633,207.305,381.444,517.245,188.458,538.148,364.494,519.452,172.580,6.776,172.580,319.769,309.054,353.954,20.395,22.505,20.395 +6634,207.334,421.669,527.951,187.775,528.266,363.538,529.272,178.698,3.321,178.698,235.098,307.759,351.391,20.472,21.076,20.472 +6635,207.364,372.086,540.053,188.457,517.266,363.894,539.309,5.194,179.415,5.194,336.974,309.035,353.425,20.914,20.601,20.914 +6636,207.396,370.729,547.825,189.959,506.421,365.754,546.679,12.973,175.991,12.973,350.480,307.489,360.690,24.882,21.205,24.882 +6637,207.426,370.729,547.825,189.959,506.421,365.754,546.679,12.973,175.991,12.973,350.480,307.489,360.690,24.882,21.205,24.882 +6638,207.455,371.499,560.142,193.501,495.400,366.911,558.430,20.458,172.112,20.458,359.212,307.437,369.005,25.744,20.503,25.744 +6639,207.485,366.444,572.005,198.598,484.132,362.471,569.877,28.179,167.851,28.179,360.872,307.443,369.884,25.594,19.247,25.594 +6640,207.518,359.740,584.680,205.767,473.923,356.287,582.090,36.870,163.856,36.870,362.000,307.279,370.633,25.000,18.074,25.000 +6641,207.551,350.970,596.603,214.585,464.091,347.654,593.231,45.474,159.829,45.474,361.302,307.232,370.761,24.684,18.007,24.684 +6642,207.584,341.098,606.361,225.203,454.951,338.150,602.340,53.746,155.739,53.746,361.323,307.455,371.296,24.461,18.516,24.461 +6643,207.618,328.404,614.999,237.179,447.404,326.024,610.473,62.260,151.699,62.260,361.137,307.962,371.363,22.409,18.354,22.409 +6644,207.649,314.510,621.814,250.300,441.900,312.827,616.878,71.166,147.529,71.166,361.159,308.013,371.589,21.923,18.254,21.923 +6645,207.681,296.572,626.873,264.383,437.997,295.441,621.031,79.046,143.366,79.046,359.300,308.598,371.201,27.268,18.189,27.268 +6646,207.713,285.660,627.993,278.711,436.242,285.591,621.608,89.382,139.004,89.382,358.087,309.683,370.858,25.117,18.058,25.117 +6647,207.744,265.843,625.872,292.250,436.250,266.633,619.382,96.944,135.000,96.944,356.697,309.713,369.772,26.535,19.092,26.535 +6648,207.774,253.332,622.506,306.509,438.881,255.425,615.435,106.487,131.121,106.487,352.835,311.096,367.585,21.341,20.650,21.341 +6649,207.805,240.547,617.587,319.184,444.005,244.168,610.017,115.569,127.102,115.569,347.479,311.807,364.262,19.877,21.676,19.877 +6650,207.836,207.570,642.360,331.310,450.277,234.148,602.984,124.019,125.194,124.019,266.848,312.371,361.861,19.333,19.355,19.333 +6651,207.866,200.223,621.540,342.030,458.519,224.560,594.299,131.778,122.221,131.778,285.984,313.324,359.040,19.457,19.884,19.457 +6652,207.899,204.716,596.022,351.936,468.965,217.082,585.527,139.677,118.706,139.677,324.045,315.086,356.482,19.631,21.823,19.631 +6653,207.930,203.880,579.948,359.455,478.932,211.007,575.404,147.478,114.362,147.478,337.165,315.482,354.070,19.540,21.089,19.540 +6654,207.960,201.113,568.019,367.000,490.500,207.390,565.084,154.942,109.440,154.942,338.494,316.567,352.353,19.800,24.185,19.800 +6655,207.990,201.113,568.019,367.000,490.500,207.390,565.084,154.942,109.440,154.942,338.494,316.567,352.353,19.800,24.185,19.800 +6656,208.018,198.790,556.954,372.043,502.538,204.782,555.025,162.163,104.744,162.163,338.006,317.811,350.596,19.510,25.297,19.510 +6657,208.050,197.384,546.588,375.292,514.401,203.494,545.411,169.097,99.926,169.097,336.680,319.298,349.125,19.901,25.586,19.901 +6658,208.083,197.148,536.482,377.190,526.058,203.444,536.012,175.732,94.844,175.732,335.381,321.137,348.009,19.349,25.856,19.349 +6659,208.116,198.541,524.923,377.614,537.491,204.863,525.087,1.488,89.514,1.488,333.381,323.082,346.030,24.537,24.880,24.537 +6660,208.148,200.102,516.383,376.921,547.609,206.558,517.225,7.431,84.249,7.431,332.703,325.182,345.724,25.221,25.160,25.221 +6661,208.180,202.369,509.175,376.412,557.404,209.589,510.816,12.804,80.096,12.804,331.191,327.521,345.998,25.088,24.690,25.088 +6662,208.211,204.904,502.172,374.018,566.364,212.339,504.583,17.969,75.343,17.969,330.074,329.204,345.707,25.580,23.457,25.580 +6663,208.242,208.069,495.172,371.287,574.249,215.658,498.425,23.199,70.710,23.199,329.317,330.917,345.830,25.473,22.369,25.473 +6664,208.273,211.249,489.308,368.417,581.419,219.194,493.515,27.897,65.913,27.897,328.041,332.122,346.022,25.578,21.298,25.578 +6665,208.303,214.373,482.986,364.713,587.974,223.029,488.560,32.779,61.390,32.779,325.299,333.441,345.892,25.293,20.112,25.293 +6666,208.332,217.035,477.926,361.680,593.228,226.447,484.953,36.747,56.802,36.747,322.788,333.982,346.279,25.096,20.228,25.096 +6667,208.363,215.848,474.098,358.365,597.827,227.639,484.216,40.632,52.125,40.632,315.310,334.685,346.385,18.865,20.260,18.865 +6668,208.393,215.848,474.098,358.365,597.827,227.639,484.216,40.632,52.125,40.632,315.310,334.685,346.385,18.865,20.260,18.865 +6669,208.422,202.948,454.917,354.385,602.279,230.605,481.662,44.040,47.603,44.040,268.710,334.855,345.656,17.932,19.457,17.932 +6670,208.453,213.758,455.706,350.516,605.483,234.892,477.116,45.372,43.091,45.372,284.999,335.360,345.165,22.384,19.600,22.384 +6671,208.484,228.374,465.822,347.451,608.324,236.923,475.488,48.511,38.970,48.511,319.649,334.364,345.456,24.343,19.635,24.343 +6672,208.516,235.339,464.621,344.244,610.208,241.021,472.176,53.054,34.771,53.054,325.812,334.571,344.718,24.009,20.709,24.009 +6673,208.549,238.781,463.491,340.108,612.819,243.350,470.184,55.681,30.796,55.681,328.506,334.064,344.713,23.744,21.697,23.744 +6674,208.583,241.708,462.433,336.456,615.088,245.668,468.769,57.995,26.713,57.995,329.447,333.628,344.391,23.426,23.490,23.426 +6675,208.616,244.500,461.500,332.958,616.810,247.813,467.281,60.186,22.479,60.186,330.816,332.997,344.142,23.027,24.789,23.027 +6676,208.648,246.229,460.143,329.761,617.798,249.365,466.089,62.190,17.819,62.190,329.946,332.020,343.390,21.772,25.535,21.772 +6677,208.680,249.367,459.022,327.048,618.768,252.077,464.601,64.086,14.349,64.086,330.454,330.857,342.859,23.294,27.645,23.294 +6678,208.710,250.987,457.351,323.933,619.892,253.761,463.538,65.847,9.762,65.847,329.196,330.330,342.757,23.200,27.171,23.200 +6679,208.740,252.430,456.655,321.215,620.904,255.019,462.863,67.355,5.599,67.355,329.235,329.147,342.688,21.804,26.891,21.804 +6680,208.772,254.503,455.467,318.947,621.574,257.056,462.062,68.839,1.941,68.839,328.053,326.694,342.197,22.502,27.171,22.502 +6681,208.802,255.543,454.887,316.431,622.319,257.899,461.413,70.145,177.663,70.145,328.567,327.217,342.443,21.424,27.222,21.424 +6682,208.833,256.897,453.877,314.052,623.084,259.283,460.956,71.372,174.920,71.372,327.320,326.358,342.259,21.156,27.359,21.156 +6683,208.864,258.092,453.079,311.784,623.361,260.391,460.339,72.429,171.320,72.429,326.631,326.228,341.862,20.942,27.332,20.942 +6684,208.895,259.867,452.446,309.714,623.969,262.044,459.781,73.465,167.521,73.465,326.629,326.157,341.931,21.600,27.090,21.600 +6685,208.925,259.867,452.446,309.714,623.969,262.044,459.781,73.465,167.521,73.465,326.629,326.157,341.931,21.600,27.090,21.600 +6686,208.954,260.976,451.894,307.698,624.456,263.025,459.262,74.460,163.856,74.460,326.953,325.808,342.247,21.577,26.744,21.577 +6687,208.985,261.610,451.918,305.948,624.678,263.518,459.169,75.256,160.507,75.256,326.719,325.834,341.714,20.359,26.487,20.359 +6688,209.018,262.559,451.735,304.086,625.016,264.328,458.812,75.964,157.166,75.964,327.181,325.531,341.769,20.130,26.485,20.130 +6689,209.052,263.876,451.435,302.723,625.436,265.566,458.550,76.633,153.853,76.633,327.283,325.608,341.909,20.980,26.359,20.980 +6690,209.084,264.520,451.086,301.414,625.695,266.157,458.291,77.196,150.505,77.196,327.334,325.705,342.111,20.921,25.708,20.921 +6691,209.118,264.820,451.106,299.893,625.831,266.358,458.218,77.800,147.639,77.800,327.275,326.102,341.827,19.839,25.575,19.839 +6692,209.150,265.287,450.814,299.195,626.272,266.823,458.172,78.212,144.335,78.212,327.305,325.970,342.337,19.791,25.119,19.791 +6693,209.183,265.867,451.118,298.049,626.561,267.302,458.219,78.579,141.340,78.579,327.703,326.403,342.193,19.653,24.363,19.653 +6694,209.215,266.637,450.579,297.154,626.674,268.106,458.036,78.857,138.621,78.857,326.945,326.710,342.146,20.560,23.761,20.560 +6695,209.247,266.896,450.040,296.750,626.750,268.421,457.982,79.131,135.000,79.131,325.990,326.683,342.164,20.505,23.335,20.505 +6696,209.278,266.711,450.796,296.168,627.193,268.100,458.119,79.261,132.709,79.261,327.778,327.214,342.685,19.497,23.118,19.497 +6697,209.308,266.864,450.775,295.729,627.482,268.256,458.199,79.380,130.601,79.380,327.788,327.782,342.894,19.473,22.778,19.473 +6698,209.338,266.890,450.772,295.317,627.354,268.261,458.096,79.401,128.660,79.401,327.789,328.121,342.692,19.469,21.864,19.469 +6699,209.368,266.902,450.171,294.804,627.193,268.349,457.853,79.330,125.822,79.330,326.986,328.415,342.621,19.911,21.076,19.911 +6700,209.399,266.451,450.242,295.350,627.730,267.983,458.231,79.144,123.792,79.144,326.973,328.674,343.241,19.521,21.927,19.521 +6701,209.431,266.523,450.003,295.590,627.734,268.177,458.398,78.857,122.925,78.857,325.771,329.012,342.884,20.560,21.329,20.560 +6702,209.462,265.606,450.167,296.267,627.620,267.310,458.564,78.530,121.711,78.530,325.739,329.134,342.876,19.672,21.717,19.672 +6703,209.492,265.606,450.167,296.267,627.620,267.310,458.564,78.530,121.711,78.530,325.739,329.134,342.876,19.672,21.717,19.672 +6704,209.521,265.037,450.253,296.778,627.584,266.793,458.573,78.079,119.946,78.079,326.112,329.185,343.119,19.732,20.787,19.732 +6705,209.553,264.350,450.480,297.641,627.522,266.200,458.845,77.532,119.110,77.532,325.839,329.748,342.973,19.847,20.810,19.847 +6706,209.585,263.487,450.803,298.939,627.425,265.432,459.138,76.866,118.469,76.866,325.880,329.592,342.997,20.061,20.739,20.061 +6707,209.616,262.954,451.022,300.044,627.184,264.986,459.235,76.103,118.179,76.103,325.985,329.831,342.907,21.296,20.715,21.296 +6708,209.647,261.901,451.570,301.983,626.942,264.036,459.636,75.174,118.740,75.174,326.206,329.540,342.893,21.353,21.185,21.353 +6709,209.679,260.472,451.651,303.969,626.431,262.829,459.903,74.055,118.887,74.055,325.682,329.459,342.846,21.428,20.772,21.428 +6710,209.709,258.614,452.241,305.883,625.934,261.096,460.348,72.979,119.427,72.979,325.928,329.453,342.886,20.783,21.529,20.783 +6711,209.740,257.450,452.850,307.948,625.187,260.025,460.576,71.565,119.578,71.565,326.347,329.305,342.635,21.820,21.202,21.820 +6712,209.772,255.907,453.740,310.481,624.489,258.578,461.189,70.271,120.677,70.271,326.644,329.299,342.470,22.150,21.939,22.150 +6713,209.803,254.122,454.814,312.723,623.332,256.815,461.740,68.749,121.218,68.749,326.875,329.096,341.737,22.523,21.795,22.523 +6714,209.834,251.882,455.216,315.666,622.286,254.960,462.467,67.003,122.681,67.003,325.913,328.785,341.668,22.681,22.233,22.681 +6715,209.865,249.380,456.706,319.038,621.192,252.601,463.671,65.186,123.690,65.186,326.372,328.660,341.720,22.155,23.575,22.155 +6716,209.897,247.064,457.700,321.971,619.439,250.467,464.461,63.283,124.756,63.283,326.021,328.250,341.159,22.497,23.591,22.497 +6717,209.927,247.064,457.700,321.971,619.439,250.467,464.461,63.283,124.756,63.283,326.021,328.250,341.159,22.497,23.591,22.497 +6718,209.960,242.263,460.317,329.062,615.664,246.059,466.593,58.835,127.519,58.835,326.352,327.783,341.022,24.061,24.814,24.061 +6719,209.990,242.263,460.317,329.062,615.664,246.059,466.593,58.835,127.519,58.835,326.352,327.783,341.022,24.061,24.814,24.061 +6720,210.019,239.396,461.908,333.034,613.443,243.574,468.187,56.363,129.657,56.363,325.893,327.391,340.978,24.336,25.740,24.336 +6721,210.051,236.248,463.745,336.953,610.640,240.708,469.813,53.684,131.319,53.684,325.887,326.893,340.948,24.729,25.948,24.729 +6722,210.084,232.737,466.231,340.947,607.418,237.428,471.985,50.812,133.078,50.812,325.914,326.433,340.762,24.322,26.314,24.322 +6723,210.117,229.256,468.583,345.415,603.924,234.514,474.364,47.709,134.599,47.709,325.302,326.033,340.931,24.576,26.375,24.576 +6724,210.151,226.131,471.325,349.440,599.962,231.758,476.839,44.415,136.397,44.415,324.697,326.138,340.453,25.577,26.414,25.577 +6725,210.184,222.618,474.894,353.837,595.438,228.301,479.807,40.846,138.257,40.846,326.156,325.363,341.181,25.948,26.792,25.948 +6726,210.216,218.684,478.927,358.164,590.197,224.779,483.514,36.964,140.194,36.964,326.194,325.470,341.451,25.321,26.632,25.321 +6727,210.248,215.280,483.516,362.204,584.206,221.412,487.475,32.845,142.306,32.845,326.900,325.290,341.497,25.385,26.616,25.385 +6728,210.278,211.346,488.447,366.300,577.813,218.009,492.078,28.591,144.360,28.591,327.298,324.802,342.474,25.938,26.696,25.938 +6729,210.309,207.819,494.274,369.997,570.495,214.728,497.308,23.703,146.489,23.703,328.091,324.509,343.183,25.482,26.354,25.482 +6730,210.339,204.246,500.279,373.436,562.718,212.054,502.945,18.853,148.736,18.853,327.576,324.819,344.077,26.267,26.468,26.267 +6731,210.369,200.397,507.833,375.865,553.570,208.982,509.877,13.392,151.128,13.392,327.280,324.204,344.930,25.154,25.338,25.154 +6732,210.401,197.145,515.430,377.672,543.847,206.835,516.745,7.729,153.642,7.729,326.302,324.236,345.859,25.559,25.573,25.559 +6733,210.434,192.524,524.989,378.521,533.046,204.836,525.275,1.332,156.038,1.332,323.006,324.200,347.637,24.459,24.064,24.459 +6734,210.465,186.717,537.739,378.322,522.556,204.089,536.364,175.474,158.136,175.474,314.707,324.038,349.559,19.389,21.771,19.389 +6735,210.495,173.812,551.027,376.718,510.214,204.481,544.759,168.449,160.286,168.449,288.725,323.821,351.332,18.672,19.746,18.672 +6736,210.525,173.812,551.027,376.718,510.214,204.481,544.759,168.449,160.286,168.449,288.725,323.821,351.332,18.672,19.746,18.672 +6737,210.554,129.762,579.818,373.918,498.896,206.034,554.185,161.424,163.346,161.424,192.572,323.461,353.500,18.601,19.718,18.601 +6738,210.585,199.158,569.676,369.504,487.619,209.065,564.969,154.587,165.235,154.587,334.280,322.850,356.217,19.479,21.363,19.479 +6739,210.617,205.706,579.737,363.746,476.803,213.431,574.720,146.997,168.015,146.997,340.367,321.691,358.789,19.315,20.449,19.315 +6740,210.648,213.063,589.338,355.870,466.706,218.888,584.299,139.139,170.665,139.139,345.657,320.736,361.062,19.413,20.573,19.413 +6741,210.680,221.659,598.593,346.533,458.285,225.967,593.642,131.028,173.418,131.028,349.383,319.266,362.509,19.173,19.333,19.173 +6742,210.711,231.393,607.325,335.895,450.390,234.748,602.103,122.721,176.257,122.721,352.212,317.154,364.626,19.813,19.043,19.813 +6743,210.741,242.796,615.228,323.017,444.249,245.244,609.825,114.380,179.234,114.380,353.966,314.186,365.829,19.702,18.617,19.702 +6744,210.772,254.874,621.466,309.415,440.225,256.293,616.229,105.167,2.182,105.167,356.692,313.306,367.544,22.443,18.463,22.443 +6745,210.802,267.486,625.109,294.844,437.070,268.071,619.830,96.321,5.679,96.321,358.570,311.546,369.193,25.619,19.511,25.619 +6746,210.833,286.302,625.995,280.910,434.604,286.192,619.879,88.962,8.471,88.962,358.448,309.438,370.681,25.050,23.486,25.050 +6747,210.864,300.527,625.162,266.033,437.718,299.707,620.244,80.538,11.889,80.538,361.185,307.522,371.157,26.304,20.550,26.304 +6748,210.894,300.527,625.162,266.033,437.718,299.707,620.244,80.538,11.889,80.538,361.185,307.522,371.157,26.304,20.550,26.304 +6749,210.923,312.919,621.357,252.176,440.859,311.504,617.125,71.513,15.306,71.513,363.039,306.355,371.964,21.445,21.443,21.445 +6750,210.954,327.383,615.268,239.445,446.688,325.243,611.089,62.883,18.719,62.883,361.487,304.890,370.876,23.949,20.805,23.949 +6751,210.984,339.510,607.935,227.922,453.959,336.753,604.060,54.564,22.080,54.564,361.282,303.996,370.793,24.299,20.789,24.299 +6752,211.015,350.668,598.668,217.815,462.695,347.065,594.874,46.481,25.115,46.481,359.236,303.640,369.701,25.862,19.977,25.862 +6753,211.047,361.247,593.705,209.249,472.565,353.482,587.460,38.805,27.553,38.805,348.868,303.328,368.800,20.076,18.734,20.076 +6754,211.078,424.293,616.790,202.599,482.638,360.286,577.222,31.724,28.826,31.724,217.226,302.557,367.726,19.378,19.768,19.378 +6755,211.110,382.019,573.536,197.222,492.489,365.433,565.539,25.741,31.283,25.741,329.665,304.092,366.490,22.857,19.537,22.857 +6756,211.141,377.033,557.219,193.892,502.166,368.509,554.534,17.482,33.626,17.482,346.691,303.978,364.566,25.738,21.480,25.738 +6757,211.172,372.877,544.973,191.706,512.887,366.739,543.784,10.960,36.781,10.960,342.928,304.199,355.430,24.993,21.788,24.993 +6758,211.202,370.835,534.773,190.283,523.264,365.221,534.327,4.538,40.696,4.538,339.267,306.201,350.530,24.479,21.684,24.479 +6759,211.232,369.135,527.050,190.264,533.714,364.707,527.168,178.472,44.726,178.472,340.252,306.901,349.111,20.633,21.917,20.633 +6760,211.263,369.186,518.343,190.584,544.360,365.074,518.871,172.681,49.436,172.681,344.337,309.131,352.630,20.765,20.609,20.765 +6761,211.293,370.028,509.976,192.390,554.138,366.001,510.901,167.071,54.211,167.071,349.504,311.529,357.767,20.187,21.298,20.187 +6762,211.323,370.028,509.976,192.390,554.138,366.001,510.901,167.071,54.211,167.071,349.504,311.529,357.767,20.187,21.298,20.187 +6763,211.352,367.213,502.152,194.664,562.691,363.224,503.455,161.908,58.833,161.908,348.852,313.317,357.244,19.689,21.316,19.689 +6764,211.385,363.814,495.560,196.600,570.700,359.473,497.394,157.091,63.435,157.091,347.700,314.838,357.125,19.525,20.125,19.525 +6765,211.417,360.048,489.669,199.321,578.059,355.612,491.975,152.534,67.920,152.534,346.759,317.144,356.757,19.876,20.098,19.876 +6766,211.451,355.808,484.569,201.611,584.694,351.360,487.314,148.321,72.838,148.321,346.698,319.157,357.153,19.826,20.318,19.826 +6767,211.482,351.810,480.328,204.550,590.691,347.475,483.422,144.488,77.164,144.488,346.650,321.174,357.300,19.536,19.920,19.536 +6768,211.514,348.208,476.291,207.305,595.605,343.669,479.973,140.950,81.425,140.950,345.804,322.889,357.494,19.225,19.415,19.225 +6769,211.546,344.155,473.337,210.041,599.961,339.932,477.193,137.603,85.855,137.603,345.964,323.543,357.403,19.329,19.543,19.329 +6770,211.577,340.302,470.821,213.000,603.500,336.457,474.708,134.687,90.000,134.687,345.836,325.000,356.771,18.585,18.000,18.585 +6771,211.609,336.940,468.415,215.189,606.635,333.159,472.636,131.855,94.574,131.855,345.712,326.278,357.045,18.869,20.016,18.869 +6772,211.639,333.881,466.128,217.872,609.325,330.143,470.694,129.305,98.842,129.305,344.973,327.154,356.776,19.072,19.609,19.072 +6773,211.669,331.073,464.298,220.441,611.603,327.457,469.103,126.961,103.092,126.961,344.390,327.471,356.418,19.035,19.254,19.035 +6774,211.699,329.064,461.805,222.763,613.083,325.082,467.529,124.832,107.526,124.832,341.888,327.330,355.834,19.061,19.774,19.061 +6775,211.730,326.787,460.242,225.422,614.168,322.996,466.093,122.939,111.650,122.939,340.713,327.948,354.655,19.078,20.051,19.078 +6776,211.760,326.787,460.242,225.422,614.168,322.996,466.093,122.939,111.650,122.939,340.713,327.948,354.655,19.078,20.051,19.078 +6777,211.789,326.523,456.197,227.344,615.405,321.051,465.234,121.195,115.624,121.195,332.856,327.866,353.985,18.615,20.595,18.615 +6778,211.821,359.802,393.236,229.308,616.465,318.990,464.213,119.899,119.899,119.899,189.636,326.715,353.384,18.140,20.632,18.140 +6779,211.852,338.611,424.379,231.504,617.347,317.424,463.222,118.610,124.494,118.610,264.406,326.217,352.897,18.037,20.610,18.037 +6780,211.884,327.458,440.795,233.136,617.707,316.217,462.450,117.433,128.847,117.433,303.352,325.758,352.149,18.090,20.187,18.090 +6781,211.915,323.222,445.337,234.413,617.883,315.067,461.860,116.269,132.847,116.269,314.362,325.050,351.213,18.739,20.380,18.739 +6782,211.947,320.395,448.098,235.653,617.700,314.303,461.045,115.201,136.998,115.201,321.849,324.102,350.467,19.746,20.305,19.746 +6783,211.977,318.490,449.367,236.972,617.965,313.351,460.607,114.567,141.072,114.567,325.020,323.923,349.738,19.489,20.316,19.489 +6784,212.008,317.011,450.570,238.142,618.138,312.667,460.283,114.097,145.109,114.097,327.773,323.015,349.052,19.336,20.938,19.336 +6785,212.039,316.675,450.856,239.008,617.995,312.636,459.945,113.962,148.841,113.962,328.769,322.770,348.662,19.190,21.214,19.190 +6786,212.068,315.777,452.152,239.824,618.131,312.457,459.741,113.629,152.819,113.629,331.878,321.639,348.445,19.297,22.143,19.297 +6787,212.104,315.259,451.974,240.346,617.930,312.052,459.413,113.324,156.329,113.324,331.706,321.570,347.908,19.334,22.859,19.334 +6788,212.147,315.213,452.389,240.546,617.451,312.285,459.163,113.376,159.376,113.376,332.759,320.928,347.518,19.347,24.273,19.347 +6789,212.178,315.426,452.493,240.774,617.708,312.451,459.318,113.552,164.055,113.552,332.784,320.874,347.673,19.274,24.038,19.274 +6790,212.210,315.698,452.859,240.705,617.652,312.776,459.456,113.886,167.391,113.886,333.228,320.411,347.659,19.371,24.872,19.371 +6791,212.246,316.413,453.048,240.419,616.987,313.545,459.372,114.396,171.027,114.396,333.602,320.451,347.491,19.318,24.642,19.318 +6792,212.278,317.657,453.967,239.863,616.904,314.763,460.082,115.327,175.083,115.327,334.049,319.658,347.579,19.223,25.433,19.223 +6793,212.308,318.254,454.320,239.412,616.190,315.508,459.984,115.866,178.210,115.866,334.922,319.344,347.511,19.060,25.331,19.060 +6794,212.338,319.538,454.773,238.038,615.270,316.782,460.263,116.664,1.762,116.664,335.433,318.434,347.720,19.289,25.942,19.289 +6795,212.368,320.937,455.493,236.673,614.533,318.111,460.857,117.780,4.128,117.780,335.714,319.191,347.840,19.385,26.118,19.385 +6796,212.400,322.610,456.226,234.943,613.925,319.649,461.561,119.033,7.696,119.033,336.451,319.716,348.654,19.420,26.328,19.420 +6797,212.432,324.221,457.401,232.819,612.977,321.138,462.623,120.556,10.513,120.556,336.620,320.041,348.748,19.007,26.496,19.007 +6798,212.463,326.674,458.745,230.885,611.480,323.609,463.577,122.381,13.431,122.381,337.680,319.639,349.125,18.909,26.537,18.909 +6799,212.493,326.674,458.745,230.885,611.480,323.609,463.577,122.381,13.431,122.381,337.680,319.639,349.125,18.909,26.537,18.909 +6800,212.522,328.623,460.082,228.326,610.095,325.488,464.752,123.871,16.260,123.871,338.408,319.400,349.657,19.484,26.160,19.484 +6801,212.553,331.344,461.420,225.960,608.614,327.932,466.134,125.897,19.231,125.897,338.778,319.162,350.416,19.519,26.174,19.519 +6802,212.585,334.388,463.200,223.041,606.398,330.757,467.809,128.234,22.036,128.234,339.309,319.024,351.045,19.518,26.087,19.518 +6803,212.618,337.435,465.159,220.159,603.654,333.743,469.467,130.601,24.677,130.601,340.255,318.626,351.604,19.307,26.303,19.307 +6804,212.650,340.232,467.608,217.005,600.528,336.634,471.416,133.363,27.429,133.363,341.535,318.047,352.013,18.700,26.099,18.700 +6805,212.681,344.131,470.735,213.449,597.591,340.069,474.608,136.364,29.249,136.364,341.789,317.627,353.015,19.120,25.861,19.120 +6806,212.713,347.220,473.496,210.213,593.465,343.091,477.054,139.243,31.686,139.243,342.402,317.147,353.304,19.251,25.654,19.251 +6807,212.744,350.987,477.243,207.016,589.230,346.779,480.469,142.524,33.851,142.524,343.579,315.910,354.182,19.576,25.745,19.576 +6808,212.775,354.296,481.688,203.208,584.213,350.165,484.449,146.250,35.942,146.250,345.294,315.404,355.232,19.403,25.321,19.403 +6809,212.806,358.152,486.384,201.450,576.723,354.719,488.350,150.201,37.988,150.201,345.928,314.347,353.840,19.588,21.377,19.588 +6810,212.837,361.712,492.103,198.065,570.545,358.257,493.745,154.587,40.068,154.587,347.649,313.694,355.299,19.148,21.063,19.148 +6811,212.868,365.380,498.321,195.576,563.647,361.742,499.701,159.228,42.079,159.228,348.303,312.402,356.086,19.248,21.690,19.248 +6812,212.900,368.431,505.238,192.691,556.248,364.422,506.390,163.968,43.983,163.968,349.301,311.229,357.643,19.896,21.386,19.896 +6813,212.932,370.137,513.456,191.193,547.356,365.878,514.270,169.189,45.530,169.189,346.908,310.492,355.580,19.921,21.212,19.921 +6814,212.963,369.580,521.939,190.686,538.529,365.210,522.333,174.852,47.386,174.852,341.769,309.974,350.545,20.314,21.136,20.314 +6815,212.992,369.580,521.939,190.686,538.529,365.210,522.333,174.852,47.386,174.852,341.769,309.974,350.545,20.314,21.136,20.314 +6816,213.021,369.004,531.533,190.104,528.410,364.587,531.491,0.546,49.185,0.546,340.175,308.165,349.009,20.113,21.294,20.113 +6817,213.053,370.164,541.112,190.910,518.812,365.467,540.558,6.721,50.802,6.721,342.348,307.622,351.806,20.802,21.105,20.802 +6818,213.084,372.753,549.416,193.254,508.469,367.725,548.189,13.722,52.125,13.722,347.477,306.795,357.827,25.190,20.874,25.190 +6819,213.118,373.589,561.588,196.463,497.687,368.384,559.618,20.726,53.418,20.726,354.297,305.228,365.425,25.404,20.439,25.404 +6820,213.151,370.211,573.603,200.800,487.513,364.181,570.402,27.967,54.638,27.967,352.693,304.237,366.346,25.582,19.598,25.582 +6821,213.183,363.907,586.484,207.219,477.515,358.199,582.279,36.384,56.004,36.384,353.208,303.961,367.386,25.804,19.647,25.804 +6822,213.215,356.082,598.956,215.844,467.331,350.059,593.026,44.549,57.619,44.549,350.747,303.343,367.652,25.522,19.815,25.522 +6823,213.245,350.016,613.919,224.640,459.114,340.895,602.113,52.313,58.872,52.313,338.634,303.030,368.472,23.152,18.477,23.152 +6824,213.276,366.150,676.802,235.289,451.757,327.417,611.608,59.285,60.029,59.285,217.301,302.765,368.966,21.306,18.697,21.306 +6825,213.306,322.277,634.979,247.454,445.698,315.038,617.242,67.797,61.113,67.797,330.414,303.342,368.728,21.162,17.813,21.162 +6826,213.336,302.993,630.390,260.616,441.405,300.835,621.563,76.259,61.928,76.259,350.934,303.647,369.110,26.206,18.588,26.206 +6827,213.367,291.564,629.055,274.600,439.200,291.080,622.469,85.802,63.435,85.802,354.761,304.105,367.968,24.448,19.677,24.448 +6828,213.398,271.817,627.100,289.323,438.622,272.113,621.699,93.139,63.979,93.139,356.671,304.658,367.489,27.507,21.277,27.507 +6829,213.429,258.103,623.580,304.264,440.945,259.202,618.654,102.569,65.007,102.569,356.416,306.172,366.512,23.649,22.305,23.649 +6830,213.459,258.103,623.580,304.264,440.945,259.202,618.654,102.569,65.007,102.569,356.416,306.172,366.512,23.649,22.305,23.649 +6831,213.488,245.437,617.008,318.329,444.857,247.350,612.385,112.472,66.501,112.472,353.868,307.817,363.875,20.296,23.525,20.296 +6832,213.521,233.684,609.332,331.425,451.051,236.246,605.131,121.380,67.068,121.380,352.367,309.516,362.208,20.005,23.626,20.005 +6833,213.552,223.100,600.339,343.313,459.470,226.463,596.318,129.915,68.018,129.915,349.395,310.875,359.879,19.402,24.305,19.402 +6834,213.584,214.734,590.001,353.570,468.781,218.781,586.387,138.235,68.962,138.235,346.888,313.461,357.741,19.813,25.057,19.813 +6835,213.615,207.919,579.136,361.401,479.854,212.255,576.256,146.409,70.017,146.409,344.740,315.258,355.151,19.557,23.580,19.557 +6836,213.646,202.781,568.607,368.026,491.303,207.978,566.080,154.075,71.030,154.075,341.710,317.455,353.268,19.711,23.672,19.711 +6837,213.678,199.688,557.561,373.150,502.950,205.310,555.681,161.508,71.565,161.508,339.943,320.022,351.799,19.533,24.982,19.533 +6838,213.708,197.923,547.115,376.505,514.632,204.163,545.867,168.690,72.408,168.690,337.516,321.611,350.243,19.808,25.830,19.808 +6839,213.739,197.523,536.795,378.228,526.527,203.960,536.292,175.533,73.426,175.533,336.085,323.934,348.999,19.238,25.513,19.238 +6840,213.770,198.564,524.976,378.744,537.571,205.426,525.150,1.450,74.578,1.450,333.425,325.131,347.153,24.524,25.197,24.524 +6841,213.801,200.393,516.052,378.265,548.059,207.536,517.005,7.595,75.964,7.595,332.260,326.695,346.671,25.243,24.254,25.243 +6842,213.832,202.379,508.725,376.600,557.892,209.734,510.438,13.109,76.834,13.109,331.460,327.926,346.562,25.122,24.884,25.122 +6843,213.864,205.300,501.600,373.758,567.137,212.562,504.021,18.435,78.341,18.435,330.458,328.927,345.767,25.614,23.691,25.614 +6844,213.894,205.300,501.600,373.758,567.137,212.562,504.021,18.435,78.341,18.435,330.458,328.927,345.767,25.614,23.691,25.614 +6845,213.923,208.520,494.421,370.752,575.331,216.097,497.764,23.806,79.287,23.806,329.048,330.064,345.611,25.483,23.714,25.483 +6846,213.954,213.016,487.697,366.226,582.962,219.887,491.604,29.629,80.407,29.629,328.933,330.774,344.741,25.925,21.901,25.925 +6847,213.986,216.615,482.577,362.653,589.404,223.512,487.174,33.690,81.656,33.690,328.383,331.375,344.959,25.794,22.862,25.794 +6848,214.018,220.542,478.588,357.973,595.323,226.843,483.489,37.875,83.130,37.875,328.371,332.021,344.334,24.996,21.974,24.996 +6849,214.050,223.910,474.523,352.805,600.253,230.008,479.990,41.878,84.644,41.878,327.046,332.013,343.424,25.136,20.348,25.136 +6850,214.082,227.396,471.144,348.137,604.620,233.293,477.123,45.395,86.309,45.395,326.042,332.245,342.837,24.724,19.637,24.724 +6851,214.113,230.711,468.390,344.466,608.922,236.405,474.828,48.504,88.182,48.504,326.879,332.404,344.068,24.227,20.989,24.227 +6852,214.146,234.054,465.903,340.486,611.996,239.421,472.698,51.694,90.412,51.694,326.593,332.063,343.911,24.128,21.086,24.128 +6853,214.177,237.177,463.283,336.079,614.453,242.248,470.346,54.324,92.917,54.324,326.179,331.894,343.569,24.328,20.279,24.328 +6854,214.208,239.520,462.031,332.183,616.615,244.153,469.138,56.902,95.553,56.902,326.270,332.543,343.236,22.867,20.390,22.867 +6855,214.239,242.095,460.152,327.951,618.569,246.485,467.488,59.103,98.746,59.103,325.851,332.321,342.949,23.141,19.996,23.141 +6856,214.271,244.539,458.500,324.763,620.271,248.786,466.209,61.150,102.095,61.150,325.598,332.802,343.202,23.182,20.045,23.182 +6857,214.301,246.935,457.464,321.457,621.172,250.784,464.988,62.904,105.222,62.904,325.562,332.495,342.465,23.353,21.123,23.353 +6858,214.331,248.318,456.909,318.841,621.446,251.774,464.114,64.378,108.816,64.378,325.741,331.106,341.724,22.256,21.399,22.256 +6859,214.361,250.641,455.875,316.623,622.130,253.821,462.998,65.943,112.891,65.943,326.219,330.381,341.821,22.861,21.271,22.861 +6860,214.391,250.641,455.875,316.623,622.130,253.821,462.998,65.943,112.891,65.943,326.219,330.381,341.821,22.861,21.271,22.861 +6861,214.421,252.235,455.300,315.282,622.649,255.219,462.401,67.203,117.824,67.203,326.602,330.072,342.006,22.593,21.545,22.593 +6862,214.452,253.072,454.884,313.746,623.154,255.958,462.154,68.350,122.106,68.350,326.280,329.126,341.925,21.690,22.123,21.690 +6863,214.484,254.321,454.556,312.400,623.413,257.001,461.649,69.305,126.646,69.305,326.646,328.618,341.809,21.453,22.818,21.453 +6864,214.516,255.270,453.820,311.401,623.413,257.882,461.058,70.155,131.319,70.155,326.373,327.825,341.763,21.238,23.711,21.238 +6865,214.548,256.196,453.716,310.762,623.770,258.694,460.908,70.844,135.279,70.844,326.633,326.742,341.859,21.100,24.752,21.100 +6866,214.578,256.920,453.354,310.181,623.681,259.294,460.434,71.469,140.864,71.469,326.975,326.746,341.911,21.013,25.193,21.013 +6867,214.610,257.633,453.145,309.594,623.381,259.913,460.166,72.007,146.014,72.007,326.396,326.210,341.159,20.835,25.853,20.835 +6868,214.640,258.121,453.170,309.371,623.768,260.339,460.177,72.429,151.032,72.429,326.822,325.866,341.521,20.942,26.669,20.942 +6869,214.669,258.922,452.747,309.535,623.580,261.134,459.865,72.734,155.989,72.734,326.498,325.618,341.406,21.809,26.524,21.809 +6870,214.702,258.677,452.526,309.856,623.579,260.917,459.833,72.962,161.125,72.962,326.512,325.729,341.797,20.788,26.786,20.788 +6871,214.735,258.845,452.634,310.197,623.740,261.065,459.923,73.062,166.464,73.062,326.808,325.983,342.048,20.772,27.168,20.772 +6872,214.766,259.385,452.643,310.759,623.799,261.584,459.881,73.101,171.806,73.101,327.136,325.974,342.267,21.753,27.611,21.753 +6873,214.797,259.444,453.128,311.439,623.474,261.495,459.847,73.020,176.594,73.020,328.106,325.792,342.158,21.727,27.071,21.727 +6874,214.827,259.444,453.128,311.439,623.474,261.495,459.847,73.020,176.594,73.020,328.106,325.792,342.158,21.727,27.071,21.727 +6875,214.856,258.935,453.945,311.930,624.159,260.981,460.575,72.854,1.848,72.854,328.794,326.604,342.669,20.870,27.985,20.870 +6876,214.888,258.686,454.200,312.865,624.004,260.738,460.721,72.536,7.651,72.536,329.130,328.039,342.802,20.739,27.322,20.739 +6877,214.920,258.396,454.821,313.410,624.018,260.319,460.794,72.160,13.191,72.160,330.730,330.041,343.281,20.778,27.748,20.778 +6878,214.952,257.772,455.236,314.411,624.659,259.882,461.602,71.663,19.026,71.663,330.449,330.848,343.864,21.051,26.862,21.051 +6879,214.984,257.693,455.446,315.519,624.546,259.839,461.734,71.162,24.697,71.162,330.851,331.472,344.139,22.046,25.424,22.046 +6880,215.017,256.451,456.051,317.003,624.850,258.739,462.485,70.427,30.355,70.427,331.345,331.840,345.003,21.168,25.311,21.168 +6881,215.049,255.391,456.283,318.313,625.067,257.971,463.231,69.624,35.850,69.624,330.617,332.604,345.439,21.427,23.947,21.427 +6882,215.081,254.727,456.187,320.585,624.142,257.484,463.303,68.822,41.481,68.822,330.282,333.102,345.545,22.565,21.018,22.565 +6883,215.111,253.192,456.031,321.847,624.178,256.420,463.982,67.904,47.161,67.904,328.922,334.210,346.084,23.093,20.785,23.093 +6884,215.142,250.731,455.264,322.893,624.463,254.969,465.074,66.639,52.670,66.639,325.141,334.612,346.513,22.097,20.289,22.097 +6885,215.174,246.682,452.862,323.574,623.697,252.971,465.759,64.002,58.130,64.002,317.112,336.133,345.809,20.721,19.984,20.721 +6886,215.204,213.169,391.618,325.455,623.511,250.259,467.485,63.947,63.932,63.947,177.501,335.036,346.397,17.848,19.394,17.848 +6887,215.234,237.386,446.986,327.155,622.443,248.527,468.223,62.319,69.887,62.319,298.226,335.177,346.191,17.972,19.984,17.972 +6888,215.266,241.761,455.482,328.917,621.150,248.734,467.891,60.668,75.600,60.668,317.309,334.960,345.778,23.074,19.660,23.074 +6889,215.296,240.713,458.830,330.929,619.361,246.668,468.624,58.699,81.469,58.699,322.221,334.458,345.146,23.113,19.828,23.113 +6890,215.326,239.017,461.526,332.979,617.406,244.367,469.650,56.634,87.292,56.634,324.820,333.668,344.276,23.568,19.775,23.568 +6891,215.356,239.017,461.526,332.979,617.406,244.367,469.650,56.634,87.292,56.634,324.820,333.668,344.276,23.568,19.775,23.568 +6892,215.387,237.145,463.309,335.458,614.498,242.119,470.241,54.345,93.225,54.345,326.181,331.882,343.244,24.464,19.673,24.464 +6893,215.419,234.864,465.695,338.173,611.528,239.403,471.496,51.962,99.256,51.962,327.569,331.428,342.301,24.856,20.515,24.856 +6894,215.453,231.559,468.004,342.047,608.555,236.521,473.766,49.268,105.180,49.268,326.788,330.471,341.995,24.417,23.110,24.417 +6895,215.485,228.926,470.239,345.776,604.866,233.951,475.518,46.414,110.821,46.414,327.003,329.921,341.579,25.378,24.184,25.378 +6896,215.518,225.111,473.045,349.735,600.365,230.541,478.161,43.296,116.988,43.296,326.190,328.256,341.111,25.098,25.223,25.098 +6897,215.551,221.544,476.072,353.912,595.443,227.370,480.949,39.936,123.024,39.936,325.854,326.574,341.050,25.374,26.243,25.374 +6898,215.583,218.044,479.716,358.205,589.878,224.106,484.165,36.277,128.956,36.277,326.269,325.628,341.310,25.465,26.704,25.465 +6899,215.615,214.729,483.766,362.250,583.750,221.008,487.737,32.316,135.000,32.316,326.529,324.562,341.386,25.994,26.870,25.994 +6900,215.645,211.300,489.003,366.329,577.458,217.726,492.439,28.133,140.711,28.133,327.697,324.429,342.270,25.660,27.300,25.660 +6901,215.675,207.379,494.135,370.082,570.124,214.675,497.335,23.676,146.472,23.676,327.178,324.498,343.111,25.502,26.880,25.502 +6902,215.705,203.750,500.268,373.352,561.720,211.816,503.023,18.853,152.164,18.853,326.629,324.766,343.676,25.321,26.256,25.321 +6903,215.736,199.513,507.382,376.017,553.148,209.069,509.699,13.627,157.416,13.627,325.305,324.845,344.970,24.944,25.093,24.944 +6904,215.767,194.706,514.600,378.217,543.727,207.115,516.429,8.386,162.150,8.386,321.423,325.149,346.508,24.733,23.651,24.733 +6905,215.799,187.937,526.375,379.908,534.115,205.936,526.668,0.935,166.072,0.935,312.138,326.695,348.141,26.046,21.625,26.046 +6906,215.829,171.618,535.566,379.657,523.816,204.758,533.678,176.740,169.114,176.740,283.964,326.102,350.353,18.527,20.056,18.527 +6907,215.860,171.618,535.566,379.657,523.816,204.758,533.678,176.740,169.114,176.740,283.964,326.102,350.353,18.527,20.056,18.527 +6908,215.888,125.143,554.819,378.801,513.667,205.032,541.604,170.608,172.093,170.608,190.049,325.239,351.998,18.500,19.920,18.500 +6909,215.921,194.839,554.261,377.089,503.351,206.387,551.098,164.682,174.012,164.682,330.558,325.883,354.504,19.415,20.746,19.415 +6910,215.952,199.073,563.986,373.376,493.481,208.109,560.315,157.891,176.482,157.891,337.031,323.803,356.538,19.427,21.517,19.427 +6911,215.985,204.391,573.631,368.483,482.952,211.496,569.647,150.719,0.494,150.719,342.370,323.040,358.661,19.548,19.448,19.548 +6912,216.016,210.075,583.938,361.515,472.287,216.248,579.300,143.082,4.086,143.082,345.398,321.823,360.840,19.340,21.160,19.340 +6913,216.048,217.677,593.675,352.630,463.619,222.442,588.937,135.168,8.387,135.168,347.920,319.882,361.359,18.891,20.750,18.891 +6914,216.079,226.174,602.752,342.361,455.150,229.867,597.837,126.915,12.061,126.915,351.002,317.717,363.299,19.407,20.436,19.407 +6915,216.111,236.789,611.384,330.066,448.019,239.599,606.271,118.789,15.945,118.789,352.850,316.067,364.519,19.506,20.604,19.506 +6916,216.142,248.910,618.281,317.201,442.073,250.906,612.907,110.376,19.983,110.376,354.990,313.293,366.454,19.793,21.701,19.793 +6917,216.173,264.092,623.986,303.072,438.588,265.178,618.932,102.124,23.962,102.124,358.221,311.102,368.561,24.305,21.119,24.305 +6918,216.203,274.077,625.605,288.403,437.260,274.260,621.092,92.324,28.556,92.324,359.475,308.857,368.508,26.222,20.340,26.222 +6919,216.234,288.984,626.057,273.781,437.782,288.536,621.980,83.729,32.661,83.729,361.210,306.789,369.414,25.626,20.421,25.626 +6920,216.265,304.902,624.995,258.151,440.978,303.705,620.485,75.133,36.733,75.133,361.041,305.813,370.373,25.189,19.402,25.189 +6921,216.295,321.732,619.732,244.594,446.224,319.685,615.010,66.566,40.601,66.566,359.163,303.594,369.456,22.443,19.307,22.443 +6922,216.324,321.732,619.732,244.594,446.224,319.685,615.010,66.566,40.601,66.566,359.163,303.594,369.456,22.443,19.307,22.443 +6923,216.353,337.287,617.475,231.566,453.468,331.650,608.555,57.708,44.493,57.708,348.032,302.692,369.136,20.976,18.447,20.976 +6924,216.386,392.667,657.473,220.304,462.510,342.729,600.252,48.888,48.393,48.888,216.658,302.619,368.553,20.384,19.117,20.384 +6925,216.419,360.533,596.022,211.430,472.007,353.109,589.385,41.795,52.275,41.795,347.793,302.593,367.710,25.303,20.729,25.303 +6926,216.453,366.935,580.104,203.497,483.479,361.387,576.626,32.090,56.004,32.090,353.408,303.672,366.503,25.816,20.148,25.816 +6927,216.485,371.323,566.775,197.334,495.410,366.487,564.621,24.018,59.273,24.018,354.767,305.275,365.355,25.742,20.186,25.742 +6928,216.518,372.369,553.844,193.114,506.955,368.491,552.703,16.390,62.808,16.390,354.232,305.939,362.317,25.564,21.445,25.564 +6929,216.551,370.859,541.586,189.818,519.304,365.815,540.786,9.011,65.966,9.011,344.166,307.647,354.379,24.899,22.944,24.899 +6930,216.582,369.234,530.303,188.772,531.069,364.214,530.128,2.000,71.295,2.000,340.561,309.915,350.606,24.988,22.777,24.988 +6931,216.613,369.067,522.320,189.340,542.189,364.262,522.714,175.308,74.055,175.308,342.214,311.808,351.858,20.854,20.604,20.854 +6932,216.643,369.365,512.875,190.523,552.984,365.001,513.724,168.990,77.344,168.990,348.638,314.340,357.529,20.701,20.760,20.701 +6933,216.673,367.468,503.894,192.041,562.748,362.707,505.350,162.997,80.701,162.997,350.026,316.464,359.982,19.813,20.083,19.813 +6934,216.704,363.047,496.022,194.262,572.204,358.262,498.021,157.331,83.873,157.331,349.469,318.925,359.842,19.600,19.420,19.600 +6935,216.735,358.608,489.329,197.679,580.413,353.884,491.852,151.901,87.021,151.901,348.298,319.920,359.010,19.698,19.676,19.698 +6936,216.767,353.887,483.221,201.000,588.000,349.111,486.332,146.921,90.000,146.921,347.789,322.000,359.189,19.526,18.000,19.526 +6937,216.798,348.672,478.292,204.423,593.996,344.338,481.661,142.145,92.936,142.145,347.838,322.960,358.817,19.477,20.102,19.477 +6938,216.828,348.672,478.292,204.423,593.996,344.338,481.661,142.145,92.936,142.145,347.838,322.960,358.817,19.477,20.102,19.477 +6939,216.857,344.275,473.490,208.589,599.609,339.744,477.592,137.840,95.711,137.840,346.016,325.079,358.240,19.092,19.801,19.092 +6940,216.888,339.229,469.855,212.870,604.350,335.251,474.022,133.668,98.389,133.668,346.027,325.995,357.549,19.399,19.950,19.399 +6941,216.921,334.602,466.911,217.322,608.749,331.026,471.181,129.944,100.676,129.944,345.806,326.929,356.945,19.118,19.549,19.118 +6942,216.952,330.762,463.849,221.243,612.054,327.067,468.856,126.422,102.505,126.422,343.669,327.565,356.115,19.421,19.765,19.421 +6943,216.984,326.462,461.831,225.474,615.106,323.170,466.838,123.331,103.772,123.331,343.138,327.921,355.123,19.254,19.425,19.254 +6944,217.016,323.001,459.938,229.004,617.485,319.908,465.187,120.510,104.470,120.510,342.538,328.402,354.723,19.385,20.178,19.385 +6945,217.048,320.184,457.735,232.522,619.487,316.937,463.837,118.021,104.534,118.021,340.299,329.155,354.123,19.504,20.902,19.504 +6946,217.079,317.435,456.531,235.787,621.203,314.354,462.851,115.989,103.761,115.989,339.472,329.389,353.534,19.045,20.695,19.045 +6947,217.112,314.901,455.496,238.726,622.659,311.994,461.994,114.097,102.332,114.097,338.920,330.070,353.156,19.166,20.670,19.166 +6948,217.143,312.325,455.975,241.240,624.044,310.037,461.487,112.539,100.265,112.539,341.084,330.405,353.021,19.272,20.586,19.272 +6949,217.174,310.712,455.221,243.483,625.194,308.401,461.159,111.261,97.472,111.261,340.077,330.937,352.822,19.473,20.415,19.473 +6950,217.205,309.723,453.972,245.299,626.159,307.202,460.784,110.308,93.945,110.308,338.633,331.282,353.159,19.237,19.677,19.237 +6951,217.235,308.431,454.199,247.055,627.496,306.061,460.872,109.556,89.766,109.556,339.365,331.046,353.526,19.254,18.832,19.254 +6952,217.269,308.046,454.441,248.518,627.864,305.835,460.758,109.290,84.869,109.290,339.931,331.897,353.317,19.443,19.383,19.443 +6953,217.300,307.355,454.242,250.017,628.091,305.241,460.429,108.866,79.380,108.866,339.947,332.764,353.023,19.211,20.763,19.211 +6954,217.330,307.435,453.941,251.018,627.854,305.258,460.317,108.853,74.302,108.853,338.678,331.843,352.153,19.204,22.614,19.204 +6955,217.359,307.435,453.941,251.018,627.854,305.258,460.317,108.853,74.302,108.853,338.678,331.843,352.153,19.204,22.614,19.204 +6956,217.388,308.338,454.038,251.159,626.911,306.256,459.964,109.359,67.730,109.359,338.983,329.788,351.545,19.430,20.808,19.430 +6957,217.419,308.194,454.018,251.411,626.003,306.275,459.501,109.290,61.390,109.290,338.940,329.051,350.558,19.443,21.788,19.443 +6958,217.453,309.003,453.881,250.875,625.256,307.017,459.397,109.799,53.707,109.799,338.418,327.880,350.142,19.345,21.863,19.345 +6959,217.485,310.178,454.192,250.621,623.987,308.308,459.180,110.556,46.975,110.556,338.483,326.489,349.137,19.195,22.078,19.195 +6960,217.518,310.889,453.987,248.126,624.172,308.659,459.735,111.203,40.292,111.203,338.065,325.382,350.397,19.088,26.100,19.088 +6961,217.550,312.909,453.846,246.878,622.598,310.529,459.630,112.364,32.905,112.364,337.347,323.926,349.857,19.151,25.928,19.151 +6962,217.581,314.234,454.310,244.831,620.850,311.860,459.825,113.286,25.769,113.286,336.803,323.329,348.812,19.092,26.830,19.092 +6963,217.612,315.772,454.173,242.855,619.048,313.272,459.729,114.228,19.213,114.228,336.180,321.621,348.366,19.150,26.512,19.150 +6964,217.642,317.570,454.490,240.672,617.121,314.986,459.893,115.560,11.070,115.560,335.829,320.617,347.807,18.945,26.647,18.945 +6965,217.672,319.846,454.962,237.681,615.605,316.960,460.619,117.031,3.576,117.031,335.472,319.813,348.172,19.033,25.700,19.033 +6966,217.704,322.083,455.682,234.625,613.908,318.906,461.505,118.610,175.333,118.610,335.037,318.980,348.304,19.314,25.344,19.314 +6967,217.740,324.997,456.047,230.873,611.888,321.134,462.645,120.343,168.311,120.343,333.503,319.509,348.794,19.534,24.110,19.534 +6968,217.773,327.991,456.717,227.146,610.015,323.443,463.877,122.421,160.224,122.421,333.010,319.937,349.975,19.004,22.310,19.004 +6969,217.803,332.308,456.120,223.158,607.851,325.858,465.494,124.531,152.203,124.531,328.229,320.761,350.985,19.220,19.759,19.220 +6970,217.834,339.100,453.700,219.791,606.705,328.633,467.656,126.870,144.719,126.870,318.200,321.987,353.089,19.400,20.316,19.400 +6971,217.866,356.951,438.959,215.829,604.749,331.158,469.911,129.806,136.897,129.806,274.255,322.732,354.835,18.053,19.489,18.053 +6972,217.896,344.190,461.810,212.261,601.913,334.434,472.549,132.254,128.480,132.254,326.788,324.069,355.805,18.332,20.333,18.332 +6973,217.927,344.190,461.810,212.261,601.913,334.434,472.549,132.254,128.480,132.254,326.788,324.069,355.805,18.332,20.333,18.332 +6974,217.954,342.596,470.074,208.657,599.360,337.372,475.237,135.335,121.731,135.335,342.912,324.478,357.601,18.674,21.678,18.674 +6975,217.985,344.856,474.499,205.496,596.216,340.505,478.333,138.612,113.552,138.612,346.863,324.322,358.460,18.883,19.885,18.883 +6976,218.016,348.634,478.096,202.285,592.218,344.130,481.593,142.172,106.074,142.172,348.362,324.168,359.765,19.049,20.049,19.049 +6977,218.048,352.129,482.476,199.902,587.487,347.980,485.286,145.894,97.781,145.894,349.808,323.103,359.830,19.337,20.222,19.337 +6978,218.080,356.706,486.896,197.972,582.011,352.137,489.536,149.971,90.640,149.971,348.945,320.136,359.499,19.372,19.474,19.372 +6979,218.111,361.155,492.140,195.834,574.894,356.454,494.387,154.451,82.770,154.451,348.851,319.277,359.272,19.105,19.760,19.105 +6980,218.142,365.004,498.196,194.273,566.835,360.555,499.888,159.179,74.745,159.179,348.918,317.320,358.438,19.589,20.786,19.589 +6981,218.173,369.019,505.548,192.514,558.064,364.690,506.779,164.131,66.719,164.131,350.275,313.827,359.276,19.521,20.963,19.521 +6982,218.203,369.689,513.911,191.288,548.324,365.698,514.651,169.499,58.550,169.499,347.135,311.638,355.253,19.771,21.381,19.771 +6983,218.234,369.042,522.536,190.165,538.596,364.880,522.881,175.258,50.738,175.258,342.478,310.147,350.831,20.281,21.450,20.281 +6984,218.266,370.068,529.942,189.954,527.420,364.635,529.797,1.528,42.626,1.528,338.493,306.647,349.364,23.552,21.751,23.552 +6985,218.296,372.384,539.165,190.666,515.916,365.672,538.256,7.707,35.081,7.707,339.298,306.069,352.843,25.258,22.986,25.258 +6986,218.325,372.384,539.165,190.666,515.916,365.672,538.256,7.707,35.081,7.707,339.298,306.069,352.843,25.258,22.986,25.258 +6987,218.353,378.330,551.236,192.756,505.211,367.439,548.467,14.265,28.099,14.265,337.435,304.826,359.910,25.724,22.476,25.724 +6988,218.386,437.765,589.613,195.628,494.713,366.239,562.714,20.610,22.026,20.610,214.424,304.369,367.258,20.384,22.181,20.384 +6989,218.419,368.111,575.969,200.358,483.727,361.784,572.606,27.992,15.693,27.992,354.184,304.377,368.514,19.999,21.762,19.999 +6990,218.452,361.005,583.868,206.549,473.533,357.239,581.128,36.027,8.994,36.027,360.990,304.441,370.306,25.071,21.261,25.071 +6991,218.485,352.144,594.785,214.093,464.860,349.127,591.847,44.236,2.015,44.236,362.252,304.480,370.673,24.794,18.787,24.794 +6992,218.516,343.021,603.976,224.001,456.016,340.411,600.629,52.063,174.996,52.063,362.757,305.633,371.245,24.542,19.460,24.542 +6993,218.548,331.566,612.902,235.193,449.196,329.390,609.078,60.357,168.030,60.357,362.292,306.336,371.092,23.601,18.300,23.601 +6994,218.580,317.783,620.231,247.367,443.076,315.969,615.541,68.858,161.159,68.858,361.143,307.402,371.199,21.499,18.511,21.499 +6995,218.612,301.491,625.738,260.927,438.392,300.194,620.230,76.748,154.430,76.748,360.680,308.216,371.996,25.995,18.840,25.995 +6996,218.642,290.721,627.308,274.494,436.406,290.350,621.078,86.594,147.745,86.594,358.092,309.315,370.575,26.073,18.736,26.073 +6997,218.672,270.931,626.715,288.512,435.892,271.379,620.315,94.008,141.216,94.008,357.506,310.175,370.338,26.635,19.209,26.635 +6998,218.703,256.790,623.635,302.523,438.030,258.389,616.948,103.444,134.621,103.444,354.801,310.483,368.552,23.214,19.611,23.214 +6999,218.735,243.271,618.827,316.084,442.516,246.553,611.192,113.263,127.766,113.263,348.230,312.056,364.850,20.229,21.535,20.229 +7000,218.767,193.573,670.460,328.498,448.809,235.528,604.350,122.400,121.807,122.400,205.692,312.051,362.288,19.777,19.522,19.777 +7001,218.797,211.769,611.233,340.761,458.655,225.229,595.696,130.903,115.017,130.903,317.340,313.600,358.453,19.558,20.057,19.558 +7002,218.828,211.769,611.233,340.761,458.655,225.229,595.696,130.903,115.017,130.903,317.340,313.600,358.453,19.558,20.057,19.558 +7003,218.856,208.331,593.468,351.850,468.950,217.229,585.830,139.357,108.435,139.357,333.099,313.698,356.553,19.594,22.452,19.594 +7004,218.889,206.321,578.358,359.596,480.019,210.796,575.506,147.496,101.310,147.496,342.991,314.374,353.604,19.546,21.573,19.546 +7005,218.920,202.077,566.916,368.103,492.228,207.275,564.515,155.212,95.013,155.212,341.185,316.032,352.635,19.399,25.306,19.399 +7006,218.956,199.493,555.799,372.704,503.935,204.757,554.161,162.714,88.315,162.714,339.548,318.127,350.572,19.584,24.754,19.584 +7007,218.997,197.498,534.957,378.267,528.673,204.005,534.585,176.730,75.543,176.730,335.595,323.530,348.632,19.483,24.617,19.483 +7008,219.028,197.498,534.957,378.267,528.673,204.005,534.585,176.730,75.543,176.730,335.595,323.530,348.632,19.483,24.617,19.483 +7009,219.056,198.689,523.081,379.394,539.852,205.866,523.427,2.759,69.402,2.759,333.866,325.841,348.236,24.839,24.677,24.839 +7010,219.091,200.303,514.777,378.900,550.300,208.167,515.987,8.746,63.435,8.746,332.017,327.808,347.930,24.557,22.808,24.557 +7011,219.123,202.515,507.013,377.334,559.970,211.009,509.175,14.281,57.558,14.281,329.898,330.409,347.429,25.249,21.648,25.249 +7012,219.154,205.041,499.348,374.693,568.915,214.094,502.617,19.855,51.934,19.855,327.888,331.882,347.139,25.708,19.483,25.708 +7013,219.186,208.296,490.715,372.043,576.066,218.209,495.530,25.907,46.572,25.907,325.082,332.642,347.124,25.957,19.974,25.957 +7014,219.220,207.964,487.152,368.698,582.839,219.825,494.108,30.390,41.671,30.390,319.110,333.840,346.612,18.588,19.597,18.588 +7015,219.252,189.297,467.170,365.343,587.911,222.458,490.040,34.592,37.747,34.592,265.813,334.425,346.379,18.224,19.181,18.224 +7016,219.285,202.618,466.204,361.692,592.952,227.068,484.126,36.241,33.436,36.241,285.198,334.478,345.830,22.993,20.008,22.993 +7017,219.315,219.503,474.180,358.126,597.006,229.095,482.281,40.179,29.454,40.179,320.095,334.144,345.204,24.245,20.335,24.245 +7018,219.347,227.000,471.500,353.806,600.832,233.409,477.909,45.000,24.575,45.000,325.976,334.193,344.105,24.749,21.815,24.749 +7019,219.378,231.473,468.898,349.329,604.011,236.348,474.470,48.814,18.538,48.814,328.970,333.310,343.776,24.553,24.214,24.553 +7020,219.408,234.665,466.153,344.514,607.867,239.371,472.171,51.973,11.602,51.973,328.044,332.061,343.324,24.187,26.338,24.187 +7021,219.439,238.102,463.929,339.958,610.021,242.110,469.675,55.098,4.611,55.098,328.165,330.074,342.177,23.898,26.350,23.898 +7022,219.469,241.085,461.514,335.502,612.547,244.937,467.657,57.907,177.678,57.907,327.231,327.744,341.732,23.291,27.005,23.291 +7023,219.501,244.535,459.387,330.924,615.548,248.183,465.868,60.626,170.407,60.626,327.169,327.496,342.043,23.701,26.886,23.701 +7024,219.532,246.951,457.772,326.022,617.571,250.393,464.574,63.159,162.814,63.159,326.075,326.730,341.322,22.457,26.829,22.457 +7025,219.562,246.951,457.772,326.022,617.571,250.393,464.574,63.159,162.814,63.159,326.075,326.730,341.322,22.457,26.829,22.457 +7026,219.591,249.648,456.067,321.339,619.151,252.757,462.898,65.526,155.225,65.526,326.242,326.935,341.252,21.975,26.540,21.975 +7027,219.621,252.457,455.187,316.753,621.025,255.177,461.873,67.865,147.724,67.865,326.810,326.715,341.246,21.870,26.477,21.870 +7028,219.651,255.070,454.326,312.516,622.696,257.564,461.137,69.887,139.653,69.887,326.699,327.442,341.205,21.306,24.790,21.306 +7029,219.682,258.028,453.014,308.535,624.185,260.381,460.242,71.966,131.898,71.966,326.392,328.097,341.594,21.804,23.916,21.804 +7030,219.713,260.277,452.114,304.308,625.538,262.428,459.529,73.824,123.690,73.824,326.767,328.937,342.208,21.496,22.188,21.496 +7031,219.743,261.914,450.883,300.512,627.043,264.097,459.423,75.660,114.847,75.660,325.204,329.864,342.833,20.229,22.100,20.229 +7032,219.775,264.286,449.876,298.435,628.825,266.422,459.419,77.381,107.199,77.381,325.058,331.439,344.616,20.420,21.335,20.420 +7033,219.806,265.435,445.934,296.345,631.067,268.141,459.961,79.077,99.256,79.077,318.130,333.724,346.702,19.345,21.290,19.345 +7034,219.836,266.359,440.452,294.109,632.099,269.574,460.138,80.727,92.161,80.727,307.440,334.479,347.334,18.369,22.211,18.369 +7035,219.868,261.645,388.428,293.912,632.671,271.533,460.118,82.147,85.333,82.147,203.248,334.825,347.984,17.900,22.253,17.900 +7036,219.899,272.503,448.858,291.081,633.207,273.814,459.832,83.187,77.293,83.187,326.295,336.684,348.399,18.818,20.170,18.818 +7037,219.930,274.969,451.251,290.460,633.515,275.668,459.680,85.261,70.017,85.261,332.011,335.335,348.926,19.260,19.650,19.260 +7038,219.960,274.969,451.251,290.460,633.515,275.668,459.680,85.261,70.017,85.261,332.011,335.335,348.926,19.260,19.650,19.260 +7039,219.988,276.816,451.176,289.016,632.697,277.240,458.836,86.838,62.616,86.838,333.149,333.268,348.492,19.175,20.097,19.175 +7040,220.020,278.413,451.575,287.318,632.086,278.661,458.507,87.955,55.257,87.955,333.680,332.291,347.554,18.702,20.914,18.702 +7041,220.053,280.136,451.548,285.807,630.892,280.209,457.461,89.296,47.579,89.296,335.147,330.807,346.974,18.495,21.370,18.495 +7042,220.086,282.189,450.938,282.403,631.456,282.110,457.686,90.674,40.855,90.674,334.012,329.386,347.510,18.587,25.430,18.587 +7043,220.118,284.080,450.803,279.726,630.653,283.847,457.199,92.083,33.130,92.083,334.179,328.671,346.979,18.606,25.775,18.606 +7044,220.150,286.324,450.231,276.945,629.652,285.909,456.661,93.691,25.741,93.691,333.532,327.832,346.419,18.574,26.476,18.574 +7045,220.181,288.677,449.738,274.194,628.460,288.083,456.136,95.297,18.138,95.297,332.890,326.349,345.741,18.602,27.035,18.602 +7046,220.212,290.411,449.032,271.309,627.603,289.620,455.954,96.526,9.806,96.526,331.301,325.069,345.235,18.796,26.922,18.796 +7047,220.242,292.693,448.739,268.470,626.762,291.704,455.735,98.049,2.261,98.049,331.060,321.855,345.190,18.783,26.887,18.783 +7048,220.272,295.025,448.927,265.238,625.597,293.884,455.674,99.596,175.601,99.596,330.955,322.202,344.641,19.043,26.230,19.043 +7049,220.303,297.494,449.094,261.169,624.780,296.143,455.902,101.219,167.775,101.219,331.031,322.126,344.912,19.342,25.345,19.342 +7050,220.335,299.986,449.306,257.658,624.443,298.358,456.344,103.024,160.346,103.024,331.447,322.345,345.894,19.062,25.091,19.062 +7051,220.365,302.766,448.991,253.900,623.800,300.727,456.736,104.744,153.435,104.744,330.943,322.888,346.961,19.291,23.702,19.291 +7052,220.395,302.766,448.991,253.900,623.800,300.727,456.736,104.744,153.435,104.744,330.943,322.888,346.961,19.291,23.702,19.291 +7053,220.424,305.725,449.417,250.077,623.115,303.235,457.717,106.699,146.310,106.699,330.067,323.390,347.396,19.444,22.465,19.444 +7054,220.456,309.456,448.522,245.965,621.846,306.110,458.320,108.853,140.711,108.853,327.668,324.077,348.377,19.527,20.123,19.527 +7055,220.488,312.658,447.247,242.750,621.250,308.183,459.178,110.556,135.000,110.556,323.970,324.562,349.456,19.429,19.799,19.429 +7056,220.520,316.297,445.364,239.725,620.766,310.081,460.387,112.479,130.321,112.479,317.671,325.429,350.187,18.926,19.843,18.926 +7057,220.552,322.722,439.211,236.848,620.024,312.580,461.273,114.687,126.158,114.687,303.180,326.217,351.743,18.106,19.657,18.106 +7058,220.583,332.500,427.000,233.987,618.849,314.829,462.342,116.565,122.709,116.565,273.247,326.498,352.275,17.889,19.886,17.889 +7059,220.615,356.694,391.560,230.925,617.745,317.376,463.644,118.610,120.018,118.610,189.147,326.585,353.365,18.037,20.050,18.037 +7060,220.645,327.754,452.084,227.605,615.539,320.237,464.821,120.548,117.235,120.548,324.181,327.006,353.760,18.297,19.875,18.297 +7061,220.675,327.430,459.341,224.486,613.223,323.127,466.005,122.852,114.596,122.852,338.501,327.720,354.367,18.670,20.599,18.670 +7062,220.706,329.581,462.917,221.462,611.684,325.953,468.000,125.512,111.714,125.512,342.817,327.015,355.307,19.291,20.850,19.291 +7063,220.737,333.521,465.505,217.519,608.690,329.725,470.220,128.830,107.526,128.830,344.342,326.728,356.449,18.810,20.176,18.810 +7064,220.770,337.034,468.385,213.916,605.365,333.249,472.596,131.954,102.995,131.954,345.708,326.196,357.033,19.095,19.788,19.095 +7065,220.802,341.729,472.111,210.264,601.319,337.626,476.090,135.881,98.009,135.881,345.789,325.268,357.220,18.796,19.432,18.796 +7066,220.834,346.641,475.689,206.370,596.469,342.129,479.477,139.988,92.831,139.988,346.618,323.791,358.399,19.193,19.926,19.193 +7067,220.866,350.981,479.907,203.297,590.509,346.642,483.056,144.035,87.460,144.035,347.528,321.792,358.252,19.203,19.134,19.203 +7068,220.896,350.981,479.907,203.297,590.509,346.642,483.056,144.035,87.460,144.035,347.528,321.792,358.252,19.203,19.134,19.203 +7069,220.924,355.957,485.287,200.090,583.776,351.503,487.998,148.671,81.973,148.671,347.845,321.168,358.273,19.609,19.741,19.609 +7070,220.955,360.648,491.253,197.020,576.129,356.016,493.543,153.693,76.285,153.693,347.927,318.966,358.260,19.520,19.603,19.520 +7071,220.985,364.712,497.757,194.680,567.373,360.358,499.442,158.839,70.494,158.839,348.720,316.232,358.058,19.494,20.650,19.494 +7072,221.017,369.138,505.450,192.636,557.546,364.801,506.675,164.226,64.712,164.226,350.009,313.648,359.022,19.959,20.874,19.959 +7073,221.049,369.854,514.886,190.750,547.750,365.449,515.657,170.080,59.036,170.080,346.287,312.127,355.232,20.099,21.437,20.099 +7074,221.081,369.365,524.231,190.240,536.928,364.846,524.519,176.359,52.900,176.359,341.028,310.601,350.084,20.649,20.898,20.649 +7075,221.112,369.644,532.351,190.472,525.151,365.088,532.103,3.115,46.838,3.115,340.347,307.910,349.472,23.890,21.408,23.890 +7076,221.143,372.478,543.290,191.669,512.971,366.354,542.210,10.008,40.624,10.008,341.778,306.198,354.216,24.735,21.639,24.735 +7077,221.173,376.793,556.436,194.323,500.830,368.387,553.836,17.186,34.330,17.186,346.310,305.446,363.908,25.381,21.592,25.381 +7078,221.204,405.337,585.945,198.350,490.419,365.285,566.456,25.948,28.269,25.948,277.670,304.303,366.754,23.981,19.750,23.981 +7079,221.235,365.186,584.415,204.964,477.593,358.253,580.030,32.316,21.463,32.316,352.209,303.791,368.617,20.212,20.474,20.212 +7080,221.266,355.534,592.102,212.874,466.755,351.931,588.884,41.760,15.068,41.760,360.474,303.798,370.136,24.909,21.281,24.909 +7081,221.296,345.790,601.791,222.050,456.877,342.773,598.228,49.745,8.627,49.745,362.436,303.867,371.773,24.193,22.433,24.193 +7082,221.325,345.790,601.791,222.050,456.877,342.773,598.228,49.745,8.627,49.745,362.436,303.867,371.773,24.193,22.433,24.193 +7083,221.354,334.075,611.185,233.090,449.816,331.643,607.232,58.392,2.364,58.392,362.151,304.566,371.433,22.995,19.708,22.995 +7084,221.388,320.636,618.886,245.371,443.148,318.615,614.104,67.097,176.028,67.097,361.582,305.514,371.966,21.797,20.049,21.797 +7085,221.420,307.477,623.904,258.798,439.616,306.346,619.201,76.479,169.563,76.479,361.772,306.889,371.448,25.944,17.754,25.944 +7086,221.453,292.504,626.552,273.282,436.778,292.058,621.070,85.347,163.229,85.347,359.416,308.710,370.416,25.485,18.048,25.485 +7087,221.485,272.214,626.435,287.931,436.172,272.513,620.563,92.908,156.801,92.908,358.113,310.408,369.871,27.473,18.383,27.473 +7088,221.517,258.076,623.460,302.946,437.531,259.482,617.156,102.569,150.255,102.569,356.640,311.451,369.558,23.754,18.729,23.754 +7089,221.549,244.470,616.942,316.797,441.590,247.019,610.845,112.694,143.826,112.694,352.929,312.616,366.145,20.850,19.426,20.850 +7090,221.579,231.614,611.010,329.327,447.812,236.026,603.944,121.982,137.459,121.982,347.042,313.779,363.702,19.835,21.731,19.835 +7091,221.610,205.921,619.898,340.284,456.264,226.605,596.033,130.914,132.965,130.914,296.986,314.260,360.148,19.497,20.073,19.497 +7092,221.640,195.267,605.769,350.870,466.526,217.999,586.068,139.086,126.954,139.086,297.238,315.000,357.401,19.749,20.352,19.749 +7093,221.670,201.843,581.646,359.829,478.694,211.356,575.534,147.278,120.915,147.278,331.903,316.587,354.518,19.472,22.576,19.472 +7094,221.702,200.779,567.478,367.310,490.792,207.182,564.547,155.404,113.629,155.404,338.510,316.590,352.594,19.767,24.450,19.767 +7095,221.733,198.611,555.631,372.637,503.622,204.796,553.738,162.983,106.220,162.983,337.382,317.877,350.319,19.655,25.873,19.655 +7096,221.768,197.338,544.517,375.973,516.662,203.592,543.471,170.501,99.462,170.501,336.202,319.592,348.884,20.017,26.139,20.017 +7097,221.799,197.531,533.745,377.279,529.523,203.984,533.480,177.647,91.685,177.647,333.705,321.420,346.622,19.189,25.518,19.189 +7098,221.831,199.147,521.719,378.052,541.784,205.704,522.142,3.691,85.170,3.691,333.371,323.972,346.511,24.980,24.953,24.980 +7099,221.861,199.147,521.719,378.052,541.784,205.704,522.142,3.691,85.170,3.691,333.371,323.972,346.511,24.980,24.953,24.980 +7100,221.889,201.132,512.946,377.555,552.658,208.329,514.225,10.081,77.593,10.081,332.060,327.137,346.680,24.745,25.217,24.745 +7101,221.920,204.016,504.331,375.087,563.298,211.407,506.500,16.348,71.030,16.348,330.693,328.951,346.098,25.448,23.435,25.448 +7102,221.953,206.966,497.086,372.676,572.675,215.132,500.353,21.801,64.338,21.801,328.681,331.038,346.272,25.812,21.794,25.812 +7103,221.984,211.388,488.271,369.220,580.902,219.867,492.884,28.546,57.440,28.546,327.212,332.936,346.516,25.460,20.685,25.460 +7104,222.015,213.962,480.808,365.333,588.228,224.168,487.612,33.690,50.733,33.690,322.003,333.854,346.536,25.794,20.039,25.794 +7105,222.045,205.358,469.902,360.708,594.746,225.823,486.153,38.454,43.939,38.454,294.058,334.574,346.324,18.426,19.730,18.426 +7106,222.076,212.557,464.082,356.101,599.867,231.022,480.171,41.067,37.227,41.067,296.889,334.833,345.871,23.465,19.862,23.465 +7107,222.106,228.341,468.057,352.049,602.756,235.520,475.926,47.626,31.014,47.626,323.165,334.252,344.467,25.001,22.355,25.001 +7108,222.137,234.307,466.438,345.664,608.220,239.329,472.826,51.825,24.984,51.825,328.066,333.417,344.318,24.728,22.760,24.728 +7109,222.169,239.073,464.293,340.145,611.579,242.977,469.983,55.548,18.194,55.548,329.658,332.661,343.460,23.837,24.939,23.837 +7110,222.200,243.076,461.646,334.596,615.019,246.587,467.539,59.216,11.310,59.216,329.767,331.044,343.487,23.269,26.476,23.269 +7111,222.230,247.347,458.835,329.037,617.546,250.615,465.196,62.812,4.627,62.812,328.396,329.190,342.698,23.643,27.471,23.643 +7112,222.261,247.347,458.835,329.037,617.546,250.615,465.196,62.812,4.627,62.812,328.396,329.190,342.698,23.643,27.471,23.643 +7113,222.289,250.730,456.949,323.363,619.561,253.560,463.335,66.105,178.008,66.105,328.253,327.185,342.222,22.140,26.905,22.140 +7114,222.320,254.764,454.467,317.119,621.675,257.403,461.453,69.309,172.461,69.309,327.040,326.506,341.975,22.444,26.650,22.444 +7115,222.353,258.459,452.696,311.459,623.394,260.784,460.021,72.387,166.390,72.387,326.725,326.187,342.096,21.816,27.173,21.816 +7116,222.385,261.849,451.998,305.575,624.707,263.670,458.994,75.411,160.183,75.411,327.394,325.772,341.851,20.310,26.655,20.310 +7117,222.417,265.487,450.780,299.834,625.637,266.956,457.897,78.335,153.947,78.335,327.310,325.594,341.845,19.682,25.913,19.682 +7118,222.449,269.645,450.168,294.279,626.940,270.761,457.374,81.198,147.653,81.198,327.752,325.565,342.336,20.083,24.978,20.083 +7119,222.480,273.211,449.504,288.934,627.916,274.009,457.085,83.991,141.687,83.991,327.663,326.350,342.910,19.471,24.333,19.471 +7120,222.511,276.632,448.290,283.200,628.178,277.101,456.416,86.698,134.071,86.698,327.379,326.778,343.656,18.892,23.297,18.892 +7121,222.541,280.043,447.919,277.857,628.383,280.170,456.622,89.162,129.193,89.162,326.009,327.809,343.418,18.574,20.818,18.574 +7122,222.572,284.187,446.075,273.357,629.229,283.823,456.637,91.975,123.983,91.975,324.566,328.408,345.701,18.644,20.319,18.644 +7123,222.603,287.822,443.713,268.958,629.325,286.836,456.765,94.321,119.511,94.321,320.655,329.072,346.833,18.853,19.622,18.853 +7124,222.633,292.215,441.777,265.144,629.569,290.274,457.310,97.125,115.610,97.125,316.785,329.275,348.092,18.729,19.578,18.729 +7125,222.663,296.326,438.058,261.826,629.775,292.982,457.983,99.527,112.999,99.527,308.752,329.847,349.159,17.986,20.417,17.986 +7126,222.693,296.326,438.058,261.826,629.775,292.982,457.983,99.527,112.999,99.527,308.752,329.847,349.159,17.986,20.417,17.986 +7127,222.721,302.091,429.251,257.892,629.085,296.022,458.268,101.813,110.508,101.813,290.722,330.056,350.012,18.067,20.263,18.067 +7128,222.754,311.677,407.794,254.078,628.189,298.951,458.698,104.036,108.619,104.036,245.689,329.843,350.629,17.705,19.719,17.705 +7129,222.788,325.197,379.826,250.371,627.420,301.902,459.420,106.314,107.038,106.314,185.557,329.674,351.422,17.931,20.140,17.931 +7130,222.821,310.100,445.700,246.527,625.867,305.296,460.111,108.435,105.702,108.435,321.287,329.949,351.669,18.341,19.872,18.341 +7131,222.854,311.394,453.002,242.366,624.103,308.438,460.723,110.947,104.300,110.947,335.871,330.320,352.406,18.583,20.558,18.583 +7132,222.887,314.420,455.421,239.023,622.828,311.549,461.930,113.799,102.724,113.799,338.736,329.856,352.964,18.994,20.358,18.994 +7133,222.920,318.251,457.352,234.491,620.909,315.184,463.418,116.816,100.091,116.816,340.320,329.501,353.915,18.928,20.124,18.928 +7134,222.952,322.403,459.704,230.021,618.123,319.350,464.968,120.109,96.870,120.109,342.432,328.683,354.603,19.236,19.928,19.236 +7135,222.982,327.707,462.273,225.539,614.975,324.291,467.326,124.069,93.132,124.069,343.056,327.043,355.254,19.249,19.424,19.249 +7136,223.014,332.511,465.165,220.718,611.006,328.917,469.767,127.999,88.790,127.999,344.145,326.223,355.823,19.233,19.517,19.233 +7137,223.044,337.627,467.914,216.176,606.387,333.617,472.370,131.987,84.519,131.987,344.368,325.153,356.357,18.954,19.803,18.954 +7138,223.075,342.605,471.991,211.566,600.899,338.652,475.764,136.332,79.895,136.332,345.731,324.511,356.661,19.169,19.924,19.169 +7139,223.106,347.945,476.458,207.301,594.397,343.937,479.698,141.049,75.303,141.049,346.425,322.596,356.732,19.624,19.821,19.624 +7140,223.136,353.632,481.711,203.278,587.011,349.359,484.590,146.032,70.396,146.032,346.452,320.395,356.756,19.381,20.157,19.381 +7141,223.169,358.820,488.084,199.716,578.756,354.597,490.401,151.252,65.392,151.252,346.935,317.795,356.570,19.514,20.148,19.514 +7142,223.201,363.885,495.231,196.575,569.528,359.566,497.072,156.911,60.303,156.911,347.309,316.036,356.699,19.468,20.576,19.468 +7143,223.231,367.604,503.564,193.914,559.364,363.960,504.692,162.795,55.146,162.795,349.589,314.087,357.217,19.697,21.277,19.697 +7144,223.261,367.604,503.564,193.914,559.364,363.960,504.692,162.795,55.146,162.795,349.589,314.087,357.217,19.697,21.277,19.697 +7145,223.289,370.198,513.106,191.213,548.468,365.838,513.962,168.898,50.023,168.898,347.116,311.371,356.003,20.103,21.376,20.103 +7146,223.319,369.513,523.084,190.017,536.957,364.857,523.447,175.541,44.712,175.541,341.381,308.330,350.722,20.662,21.291,20.662 +7147,223.350,370.152,531.314,190.117,524.634,364.858,531.060,2.739,39.259,2.739,339.095,307.050,349.697,24.833,21.531,24.833 +7148,223.381,373.509,543.106,191.491,512.027,366.246,541.827,9.982,33.815,9.982,339.801,306.487,354.551,25.370,22.746,25.370 +7149,223.412,382.500,560.000,194.335,500.013,368.103,555.201,18.435,28.237,18.435,334.253,305.656,364.604,24.350,21.242,24.350 +7150,223.443,384.511,579.405,199.237,487.420,363.530,569.614,25.017,22.267,25.017,320.970,304.926,367.276,19.755,20.680,19.755 +7151,223.475,363.926,581.652,205.833,476.184,359.292,578.533,33.944,17.162,33.944,357.744,303.714,368.915,25.255,22.482,25.255 +7152,223.505,353.700,593.687,214.167,464.520,350.115,590.327,43.152,11.041,43.152,360.619,304.166,370.447,24.850,22.167,24.850 +7153,223.536,343.525,603.800,223.837,456.461,340.877,600.469,51.512,5.440,51.512,362.609,304.669,371.120,23.925,19.246,23.925 +7154,223.567,330.833,613.051,236.000,448.500,328.733,609.336,60.524,0.000,60.524,362.760,304.000,371.295,22.672,19.000,22.672 +7155,223.598,316.596,620.589,249.088,442.833,315.012,616.366,69.444,173.991,69.444,362.242,306.308,371.263,21.770,17.901,21.770 +7156,223.628,298.767,625.806,263.422,438.525,297.697,620.845,77.821,168.218,77.821,360.744,307.360,370.894,27.236,17.885,27.236 +7157,223.662,287.431,626.935,278.352,436.529,287.279,621.262,88.466,162.570,88.466,358.461,309.012,369.811,26.232,18.261,26.232 +7158,223.706,271.330,626.190,293.666,436.229,272.211,620.026,98.130,156.600,98.130,357.513,310.683,369.967,27.011,18.725,27.011 +7159,223.738,253.078,620.914,308.719,438.795,254.908,614.912,106.958,150.969,106.958,355.760,312.073,368.309,21.219,18.771,21.219 +7160,223.774,238.978,614.238,322.527,443.819,242.177,607.871,116.672,145.184,116.672,351.075,313.514,365.325,20.133,20.066,20.133 +7161,223.811,226.287,606.896,335.077,451.416,231.232,600.073,125.933,139.574,125.933,345.764,314.563,362.616,19.700,21.991,19.700 +7162,223.843,168.750,644.750,345.772,460.736,222.259,591.241,135.000,135.818,135.000,207.889,315.479,359.235,19.092,19.262,19.092 +7163,223.873,191.293,597.750,355.777,471.665,214.568,580.416,143.322,130.556,143.322,298.378,316.284,356.419,19.524,20.748,19.524 +7164,223.905,199.252,574.826,363.781,484.490,209.024,569.564,151.699,125.362,151.699,330.989,317.732,353.186,19.574,22.624,19.574 +7165,223.937,198.205,560.774,370.362,497.472,205.449,558.107,159.786,118.698,159.786,335.974,318.115,351.413,19.412,24.432,19.412 +7166,223.970,196.972,548.941,374.781,510.846,203.891,547.427,167.652,112.306,167.652,335.353,318.851,349.518,19.994,26.095,19.994 +7167,224.000,197.176,537.110,376.991,524.283,203.739,536.563,175.236,105.945,175.236,334.175,320.600,347.346,19.516,26.511,19.516 +7168,224.030,198.018,524.001,377.297,537.216,204.736,524.250,2.121,99.462,2.121,332.402,322.222,345.846,24.724,25.975,24.724 +7169,224.060,198.018,524.001,377.297,537.216,204.736,524.250,2.121,99.462,2.121,332.402,322.222,345.846,24.724,25.975,24.724 +7170,224.088,200.527,513.838,376.424,549.592,207.106,514.934,9.462,92.726,9.462,332.086,323.728,345.425,24.495,25.257,24.495 +7171,224.121,203.534,506.151,374.834,561.347,210.405,507.997,15.038,86.248,15.038,331.052,326.463,345.281,25.326,24.848,25.326 +7172,224.154,207.207,496.983,371.710,571.641,214.520,499.908,21.801,79.841,21.801,329.424,329.048,345.177,25.440,23.510,25.440 +7173,224.186,211.456,489.810,367.431,581.168,218.592,493.548,27.646,73.527,27.646,328.897,331.386,345.006,25.563,21.499,25.563 +7174,224.217,216.000,482.500,363.226,589.485,223.575,487.550,33.690,67.223,33.690,327.273,333.241,345.481,25.239,21.018,25.239 +7175,224.250,219.656,475.680,358.854,596.637,228.466,482.867,39.207,60.945,39.207,323.159,334.122,345.899,25.183,20.494,25.183 +7176,224.281,218.267,468.665,353.813,602.779,230.837,480.936,44.310,54.713,44.310,311.087,334.671,346.220,18.503,20.319,18.503 +7177,224.311,180.345,414.168,348.175,608.344,235.190,477.450,49.086,48.409,49.086,178.343,335.257,345.826,18.036,19.543,18.036 +7178,224.341,232.942,463.292,342.947,612.380,240.566,473.010,51.885,42.563,51.885,320.989,334.730,345.693,24.716,19.691,24.716 +7179,224.371,241.440,461.785,337.170,615.262,245.900,468.935,58.042,36.724,58.042,328.064,334.197,344.917,23.313,21.005,23.313 +7180,224.402,246.717,459.912,330.503,619.169,250.212,466.553,62.241,31.179,62.241,329.888,333.059,344.896,22.589,23.196,22.589 +7181,224.434,251.323,457.677,323.722,621.585,254.172,464.156,66.264,25.396,66.264,330.061,332.767,344.216,22.028,24.674,22.028 +7182,224.464,255.867,455.773,317.544,623.800,258.211,462.241,70.079,19.309,70.079,330.457,331.153,344.217,21.258,26.694,21.258 +7183,224.494,255.867,455.773,317.544,623.800,258.211,462.241,70.079,19.309,70.079,330.457,331.153,344.217,21.258,26.694,21.258 +7184,224.522,260.917,454.098,310.949,625.219,262.687,460.261,73.974,12.995,73.974,330.917,329.794,343.742,21.728,27.583,21.728 +7185,224.554,265.192,451.951,304.486,626.119,266.702,458.790,77.546,6.911,77.546,329.076,328.414,343.081,20.823,27.135,20.823 +7186,224.587,268.653,450.872,298.470,626.758,269.766,457.700,80.740,0.988,80.740,329.111,325.297,342.948,19.203,26.737,19.203 +7187,224.620,274.124,448.850,291.476,627.194,274.833,456.542,84.738,175.601,84.738,327.469,324.733,342.918,19.300,27.304,19.300 +7188,224.651,278.222,448.918,284.526,627.510,278.491,456.191,87.888,170.087,87.888,328.293,324.098,342.850,18.692,26.396,18.692 +7189,224.682,283.301,448.547,277.795,627.259,283.116,455.596,91.507,164.539,91.507,329.386,323.635,343.487,18.520,26.064,18.520 +7190,224.712,288.776,448.395,271.166,626.688,288.124,455.440,95.284,158.477,95.284,330.014,323.643,344.164,18.793,23.912,18.793 +7191,224.742,293.394,448.149,264.273,626.037,292.270,455.760,98.399,153.034,98.399,329.694,323.409,345.080,19.188,22.861,19.188 +7192,224.774,298.628,448.265,257.771,624.970,296.933,456.311,101.900,147.171,101.900,329.773,323.731,346.219,19.521,22.146,19.521 +7193,224.804,305.000,448.500,251.025,623.533,302.383,457.658,105.945,142.334,105.945,328.154,324.247,347.204,19.780,20.929,19.780 +7194,224.837,310.096,448.583,244.746,621.719,306.532,458.765,109.290,137.896,109.290,326.858,324.370,348.433,19.443,20.070,19.443 +7195,224.869,316.867,446.628,239.167,620.162,311.062,460.414,112.834,134.215,112.834,320.341,325.316,350.258,19.548,20.572,19.548 +7196,224.900,324.786,443.907,233.698,617.673,315.515,462.167,116.917,131.121,116.917,310.437,325.026,351.395,18.135,19.873,18.135 +7197,224.931,337.243,434.923,228.398,615.231,319.830,464.286,120.669,129.155,120.669,284.663,324.941,352.939,18.183,20.449,18.183 +7198,224.961,369.891,399.766,223.044,611.624,324.510,466.643,124.160,127.376,124.160,192.240,324.656,353.883,18.057,19.723,18.057 +7199,224.992,369.891,399.766,223.044,611.624,324.510,466.643,124.160,127.376,124.160,192.240,324.656,353.883,18.057,19.723,18.057 +7200,225.022,345.018,449.065,217.540,607.307,329.244,469.302,127.936,125.827,127.936,303.718,324.677,355.035,18.205,20.115,18.205 +7201,225.056,339.690,466.067,212.067,602.663,333.791,472.613,132.020,124.670,132.020,338.569,324.576,356.193,18.472,20.643,18.472 +7202,225.089,343.404,471.741,206.918,597.446,338.567,476.337,136.469,123.371,136.469,344.375,323.700,357.719,19.031,22.404,19.031 +7203,225.122,347.162,477.582,202.102,591.561,343.342,480.643,141.295,120.713,141.295,349.365,322.929,359.156,19.670,20.600,19.670 +7204,225.154,353.190,483.003,197.566,584.772,348.336,486.209,146.553,117.706,146.553,348.618,322.108,360.252,19.444,20.447,19.444 +7205,225.187,358.186,489.961,193.516,576.832,353.342,492.522,152.138,114.240,152.138,350.443,321.361,361.401,19.765,19.965,19.765 +7206,225.219,362.880,497.680,190.725,568.028,358.177,499.547,158.344,110.674,158.344,351.688,320.223,361.809,19.354,19.312,19.354 +7207,225.252,368.262,506.514,188.473,558.294,363.125,507.931,164.578,106.846,164.578,352.854,318.661,363.513,19.679,20.049,19.679 +7208,225.282,368.154,516.983,185.932,546.984,362.983,517.793,171.095,103.470,171.095,348.404,316.765,358.872,20.519,22.874,20.519 +7209,225.312,367.997,526.303,187.028,535.663,363.038,526.378,179.132,99.026,179.132,342.339,314.679,352.260,23.028,20.708,23.028 +7210,225.342,369.229,536.577,187.728,522.829,364.192,536.047,6.009,94.456,6.009,343.628,312.468,353.757,24.339,22.477,24.339 +7211,225.372,371.444,549.034,190.478,510.528,366.650,547.873,13.610,91.076,13.610,350.158,309.246,360.024,24.943,18.682,24.943 +7212,225.403,372.000,563.000,195.124,497.520,367.313,561.131,21.746,86.974,21.746,356.913,307.786,367.005,25.068,18.943,25.068 +7213,225.434,366.588,577.353,201.005,485.194,361.780,574.468,30.964,83.037,30.964,356.374,305.493,367.589,25.382,18.890,25.382 +7214,225.464,359.200,589.966,209.100,473.700,354.811,586.329,39.644,78.959,39.644,356.718,304.573,368.119,25.609,19.271,25.609 +7215,225.494,359.200,589.966,209.100,473.700,354.811,586.329,39.644,78.959,39.644,356.718,304.573,368.119,25.609,19.271,25.609 +7216,225.522,349.414,602.576,219.356,463.039,345.188,597.799,48.504,74.687,48.504,355.860,304.081,368.615,24.227,18.716,24.227 +7217,225.555,338.044,615.239,231.995,454.287,333.473,608.026,57.641,70.346,57.641,351.275,304.183,368.355,23.375,19.844,23.375 +7218,225.588,348.686,685.540,244.347,446.911,317.540,616.240,65.799,66.389,65.799,216.950,302.675,368.904,21.532,18.046,21.532 +7219,225.620,304.519,631.127,259.384,441.709,301.964,621.474,75.174,61.557,75.174,349.379,303.282,369.351,25.447,18.612,25.447 +7220,225.651,291.633,627.580,275.179,438.778,291.239,622.303,85.732,57.265,85.732,357.841,303.846,368.423,25.228,20.248,25.228 +7221,225.683,270.944,626.031,291.222,437.856,271.283,621.195,94.008,53.509,94.008,358.872,305.203,368.568,26.705,22.973,26.705 +7222,225.713,256.726,622.041,306.748,440.223,257.891,617.251,103.665,48.411,103.665,357.258,306.275,367.118,23.477,24.251,23.477 +7223,225.744,243.492,615.323,321.515,444.866,245.568,610.628,113.860,44.040,113.860,354.365,308.998,364.633,20.401,24.639,20.401 +7224,225.775,231.412,607.425,335.029,451.465,234.557,602.623,123.219,39.928,123.219,351.518,312.018,362.998,20.033,23.964,20.033 +7225,225.806,220.994,597.587,346.780,459.692,225.044,593.124,132.223,35.797,132.223,349.188,316.434,361.240,20.020,23.451,20.020 +7226,225.836,212.534,586.542,357.591,470.352,217.293,582.674,140.898,31.541,140.898,347.165,318.323,359.431,19.416,22.647,19.416 +7227,225.867,206.249,575.076,365.976,481.949,211.638,571.884,149.365,27.728,149.365,344.722,321.178,357.250,19.681,21.176,19.681 +7228,225.898,201.630,563.612,372.833,493.232,208.299,560.834,157.380,23.121,157.380,341.308,323.665,355.757,19.615,21.928,19.615 +7229,225.928,201.630,563.612,372.833,493.232,208.299,560.834,157.380,23.121,157.380,341.308,323.665,355.757,19.615,21.928,19.615 +7230,225.956,198.232,552.489,377.825,505.439,206.437,550.312,165.141,19.179,165.141,337.350,325.769,354.328,19.726,22.463,19.726 +7231,225.986,195.734,541.521,380.751,516.720,205.783,540.171,172.349,15.388,172.349,332.787,328.651,353.065,19.807,22.131,19.807 +7232,226.018,194.947,530.866,380.875,528.290,205.913,530.752,179.406,12.381,179.406,328.024,327.638,349.957,18.300,23.299,18.300 +7233,226.049,185.763,520.501,379.263,537.630,206.331,522.666,6.009,9.898,6.009,305.732,327.911,347.095,18.320,21.144,18.320 +7234,226.081,163.547,504.277,378.497,548.132,208.945,512.480,10.241,7.317,10.241,254.113,326.255,346.379,22.795,21.369,22.795 +7235,226.112,192.195,501.324,376.473,557.190,211.195,506.741,15.913,4.653,15.913,306.039,327.846,345.553,25.405,21.580,25.405 +7236,226.142,203.183,492.922,374.034,566.981,215.613,498.303,23.405,0.647,23.405,318.244,330.137,345.334,25.819,21.970,25.819 +7237,226.173,209.450,487.092,369.938,575.779,219.078,492.364,28.706,177.073,28.706,322.813,328.900,344.768,25.707,22.930,25.707 +7238,226.204,215.308,482.038,364.802,583.550,222.751,487.000,33.690,172.235,33.690,325.609,328.956,343.500,25.239,24.365,25.239 +7239,226.236,220.134,477.207,359.474,590.731,226.615,482.392,38.660,166.945,38.660,326.247,328.445,342.847,25.456,25.949,25.456 +7240,226.268,225.221,473.201,353.620,596.844,230.682,478.334,43.221,161.413,43.221,326.500,327.634,341.490,24.978,26.472,24.978 +7241,226.298,229.211,468.764,347.605,602.100,234.451,474.501,47.586,156.297,47.586,325.512,327.533,341.052,24.564,27.961,24.564 +7242,226.327,229.211,468.764,347.605,602.100,234.451,474.501,47.586,156.297,47.586,325.512,327.533,341.052,24.564,27.961,24.564 +7243,226.355,233.692,465.348,341.683,607.172,238.469,471.409,51.754,149.789,51.754,325.599,327.227,341.032,24.161,26.800,24.161 +7244,226.388,238.165,462.325,335.378,611.522,242.488,468.676,55.763,144.107,55.763,325.346,327.159,340.711,23.653,26.808,23.653 +7245,226.421,242.867,459.721,329.391,615.486,246.680,466.189,59.482,137.911,59.482,326.215,327.267,341.232,24.049,25.950,24.049 +7246,226.455,246.756,457.824,322.997,618.550,250.116,464.424,63.020,131.855,63.020,326.020,328.178,340.832,22.506,24.223,22.506 +7247,226.487,251.261,455.644,317.236,621.448,254.300,462.620,66.460,125.863,66.460,326.274,328.953,341.493,22.820,22.877,22.820 +7248,226.521,254.850,454.264,310.962,623.696,257.431,461.260,69.749,119.445,69.749,326.936,329.719,341.849,21.341,21.630,21.341 +7249,226.553,258.365,451.811,305.508,626.293,261.033,460.484,72.897,112.834,72.897,324.965,330.770,343.113,20.807,20.858,20.807 +7250,226.586,262.328,450.675,301.087,628.424,264.656,460.064,76.075,106.756,76.075,325.011,331.413,344.358,20.335,21.025,20.335 +7251,226.616,266.068,447.305,296.271,630.765,268.506,459.824,78.983,100.818,78.983,320.687,333.995,346.194,20.344,21.077,20.344 +7252,226.646,268.847,441.457,292.819,632.626,271.458,459.953,81.964,95.460,81.964,310.567,334.819,347.927,19.070,21.263,19.070 +7253,226.677,270.601,417.212,289.500,633.500,274.551,459.675,84.685,90.000,84.685,263.629,335.000,348.924,18.015,21.000,18.015 +7254,226.707,277.448,441.618,283.650,633.695,278.261,459.212,87.352,83.431,87.352,313.867,335.697,349.092,18.206,20.110,18.206 +7255,226.737,281.534,449.973,280.384,633.838,281.491,458.908,90.281,78.198,90.281,331.996,334.814,349.866,18.392,20.045,18.392 +7256,226.769,285.867,449.757,276.750,633.579,285.343,458.670,93.366,72.429,93.366,332.367,334.305,350.224,18.615,19.893,18.615 +7257,226.801,289.804,450.938,272.371,632.405,289.002,458.358,96.170,66.546,96.170,334.725,332.217,349.652,18.836,19.813,18.836 +7258,226.831,293.274,452.192,268.137,631.146,292.364,458.077,98.794,60.945,98.794,337.565,331.014,349.476,18.869,20.688,18.869 +7259,226.862,293.274,452.192,268.137,631.146,292.364,458.077,98.794,60.945,98.794,337.565,331.014,349.476,18.869,20.688,18.869 +7260,226.890,297.416,452.155,263.944,629.406,296.260,457.745,101.689,54.583,101.689,337.879,329.333,349.296,19.315,21.279,19.315 +7261,226.922,301.790,452.497,257.803,628.480,300.144,458.751,104.744,48.918,104.744,336.898,327.833,349.832,19.189,24.662,19.189 +7262,226.954,306.385,452.992,253.241,626.168,304.429,459.037,107.928,42.979,107.928,336.839,326.247,349.546,19.365,25.423,19.365 +7263,226.987,311.068,453.556,248.139,623.816,308.729,459.582,111.209,37.073,111.209,337.132,324.821,350.060,19.091,26.099,19.091 +7264,227.019,316.032,454.786,242.789,620.356,313.438,460.470,114.538,30.651,114.538,337.079,322.769,349.574,19.341,25.872,19.341 +7265,227.051,320.812,456.431,237.101,616.752,317.951,461.823,117.951,25.710,117.951,337.295,321.991,349.504,19.362,26.363,19.362 +7266,227.083,325.676,458.339,231.807,612.657,322.550,463.419,121.608,19.983,121.608,337.388,319.615,349.317,19.326,26.143,19.326 +7267,227.114,330.912,461.223,226.203,608.172,327.662,465.773,125.538,13.761,125.538,338.513,318.189,349.695,19.181,25.888,19.181 +7268,227.145,336.357,464.040,220.536,602.748,332.723,468.422,129.668,8.070,129.668,338.637,316.639,350.023,19.150,25.240,19.150 +7269,227.176,342.076,466.926,214.637,597.512,337.417,471.788,133.775,2.632,133.775,337.980,315.724,351.447,19.217,23.837,19.217 +7270,227.206,347.810,471.092,208.933,591.003,342.332,475.973,138.293,177.436,138.293,337.571,314.715,352.244,19.024,21.262,19.024 +7271,227.237,355.520,474.860,203.344,584.396,347.135,481.149,143.130,172.681,143.130,333.000,314.681,353.962,19.200,21.238,19.200 +7272,227.269,366.535,477.021,198.536,578.169,351.350,486.594,147.771,168.740,147.771,320.312,314.772,356.213,19.953,21.284,19.953 +7273,227.299,376.411,481.721,194.512,571.195,355.253,492.529,152.941,165.450,152.941,310.347,314.311,357.864,18.744,20.083,18.744 +7274,227.328,413.777,477.161,190.876,563.465,359.059,499.269,157.999,162.951,157.999,241.938,313.866,359.969,18.712,19.605,18.712 +7275,227.358,413.777,477.161,190.876,563.465,359.059,499.269,157.999,162.951,157.999,241.938,313.866,359.969,18.712,19.605,18.712 +7276,227.389,379.179,501.596,188.538,554.042,362.585,506.574,163.301,160.765,163.301,326.044,314.726,360.693,19.061,20.228,19.061 +7277,227.421,369.624,513.643,185.936,545.241,363.566,514.812,169.077,158.902,169.077,348.017,313.168,360.357,20.034,21.693,20.034 +7278,227.453,368.040,523.001,184.800,535.246,362.329,523.460,175.406,156.460,175.406,344.345,312.759,355.805,20.639,22.947,20.639 +7279,227.484,367.423,530.779,184.837,524.663,362.191,530.552,2.490,153.298,2.490,344.414,312.171,354.886,24.716,23.324,24.716 +7280,227.515,369.018,541.992,186.351,513.449,363.789,541.111,9.563,149.583,9.563,348.534,311.558,359.137,24.674,22.950,24.674 +7281,227.546,371.249,554.599,189.947,501.922,366.434,553.112,17.162,145.561,17.162,357.390,310.758,367.468,25.222,21.349,25.222 +7282,227.576,368.769,567.150,195.199,490.247,364.299,565.059,25.067,141.229,25.067,359.869,310.161,369.739,25.918,18.782,25.918 +7283,227.607,363.000,580.500,202.229,479.249,358.983,577.822,33.690,137.406,33.690,360.555,308.858,370.211,25.239,18.274,25.239 +7284,227.638,354.654,593.170,210.905,468.337,350.892,589.693,42.754,133.561,42.754,360.098,309.104,370.344,25.547,18.599,25.547 +7285,227.669,344.402,604.378,221.249,458.708,341.112,600.265,51.340,129.867,51.340,360.293,307.796,370.829,23.895,18.463,23.895 +7286,227.700,332.047,614.115,233.277,450.472,329.288,609.293,60.229,126.119,60.229,359.951,307.616,371.063,22.705,18.383,22.705 +7287,227.730,332.047,614.115,233.277,450.472,329.288,609.293,60.229,126.119,60.229,359.951,307.616,371.063,22.705,18.383,22.705 +7288,227.758,317.642,621.372,246.585,443.821,315.575,615.965,69.081,122.367,69.081,359.281,307.092,370.859,21.736,18.427,21.736 +7289,227.790,300.002,626.991,260.518,439.285,298.621,620.723,77.581,118.811,77.581,357.940,307.114,370.775,26.252,19.233,26.252 +7290,227.823,288.349,628.972,274.794,437.172,288.119,621.964,88.119,114.958,88.119,356.235,307.504,370.260,26.183,20.128,26.183 +7291,227.855,267.506,628.087,289.936,437.590,268.308,620.330,95.900,111.075,95.900,352.394,308.291,367.991,26.376,20.761,26.376 +7292,227.888,245.138,654.301,304.377,440.451,255.444,616.795,105.364,108.285,105.364,288.223,308.639,366.015,23.090,19.197,23.090 +7293,227.921,235.007,629.692,318.890,445.977,243.918,610.951,115.430,104.178,115.430,320.864,309.977,362.366,20.134,18.615,20.134 +7294,227.954,227.119,610.456,332.908,453.190,232.371,602.717,124.160,100.008,124.160,341.659,310.439,360.364,19.682,21.318,19.682 +7295,227.985,216.730,600.249,344.918,461.889,223.210,593.283,132.936,96.499,132.936,339.172,311.881,358.200,19.831,22.676,19.831 +7296,228.017,211.451,586.439,354.893,472.218,215.573,583.142,141.340,92.845,141.340,345.612,312.856,356.168,19.678,23.766,19.678 +7297,228.048,205.863,575.161,362.130,483.959,209.717,572.890,149.490,89.427,149.490,343.969,314.044,352.917,19.862,21.959,19.862 +7298,228.080,201.511,563.420,369.735,495.678,206.457,561.355,157.337,85.657,157.337,341.235,316.834,351.954,19.411,25.017,19.411 +7299,228.111,198.759,552.779,374.583,508.016,204.569,551.192,164.725,82.304,164.725,338.721,319.501,350.766,20.080,25.418,20.080 +7300,228.142,197.552,542.370,376.740,520.442,203.630,541.515,171.998,78.480,171.998,336.440,321.617,348.715,19.963,25.838,19.963 +7301,228.172,197.958,531.334,378.644,531.939,204.738,531.201,178.877,75.349,178.877,334.151,324.233,347.716,18.898,25.483,18.898 +7302,228.203,199.628,520.879,379.159,542.966,206.701,521.437,4.514,72.150,4.514,333.043,325.762,347.233,23.952,24.910,23.952 +7303,228.233,201.716,512.216,378.331,553.724,209.274,513.646,10.713,69.044,10.713,331.737,328.400,347.121,24.644,24.022,24.644 +7304,228.263,201.716,512.216,378.331,553.724,209.274,513.646,10.713,69.044,10.713,331.737,328.400,347.121,24.644,24.022,24.644 +7305,228.292,204.201,503.978,375.938,563.861,212.047,506.320,16.621,66.038,16.621,330.628,330.089,347.005,25.471,22.338,25.471 +7306,228.323,207.336,495.816,372.811,572.332,215.464,499.156,22.341,63.004,22.341,329.127,331.450,346.703,25.506,21.183,25.506 +7307,228.354,211.053,488.259,369.334,580.382,219.700,492.915,28.301,60.169,28.301,326.790,332.669,346.433,25.872,20.134,25.872 +7308,228.387,214.627,482.860,365.667,587.473,223.486,488.602,32.949,57.724,32.949,325.063,333.479,346.176,25.283,19.491,25.283 +7309,228.419,217.561,477.630,361.923,593.552,227.072,484.824,37.100,55.886,37.100,322.430,334.239,346.281,24.980,19.550,24.980 +7310,228.450,219.149,473.722,358.128,598.557,229.383,482.609,40.972,54.782,40.972,319.359,334.669,346.466,22.115,20.232,22.115 +7311,228.482,218.570,468.367,353.872,602.732,231.097,480.675,44.493,54.197,44.493,311.115,334.676,346.239,18.872,19.624,18.872 +7312,228.513,216.517,459.324,349.514,606.761,233.702,478.100,47.534,53.933,47.534,295.294,335.037,346.202,18.229,19.400,18.229 +7313,228.545,212.800,448.092,346.392,610.149,236.337,476.457,50.315,54.462,50.315,272.605,335.491,346.324,17.913,19.297,17.913 +7314,228.577,207.437,432.031,343.394,612.380,239.280,474.006,52.815,55.271,52.815,240.958,335.140,346.333,17.857,19.454,17.857 +7315,228.608,193.188,402.268,340.272,613.488,241.431,471.187,55.008,56.189,55.008,178.265,335.049,346.517,17.859,19.423,17.859 +7316,228.639,197.350,400.216,336.775,616.669,243.106,470.869,57.072,56.912,57.072,178.239,335.336,346.590,17.794,19.448,17.794 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250919-235736.csv b/chaos_pdl/data/raw/metrics-20250919-235736.csv new file mode 100644 index 0000000..705fcf6 --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250919-235736.csv @@ -0,0 +1,5690 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.001,359.068,470.326,173.222,470.474,353.165,470.402,179.265,52.948,179.265,348.048,309.787,359.857,18.986,21.549,18.986 +1,0.027,359.068,470.326,173.222,470.474,353.165,470.402,179.265,52.948,179.265,348.048,309.787,359.857,18.986,21.549,18.986 +2,0.050,357.926,482.738,174.577,460.403,353.014,482.200,6.254,57.612,6.254,349.619,308.699,359.501,18.969,21.955,18.969 +3,0.075,356.782,493.520,178.287,446.602,351.907,492.337,13.643,64.511,13.643,348.984,308.135,359.017,19.436,21.853,19.436 +4,0.100,354.967,501.139,181.749,434.315,349.709,499.082,21.371,68.614,21.371,348.730,307.474,360.024,25.791,19.893,25.791 +5,0.125,354.967,501.139,181.749,434.315,349.709,499.082,21.371,68.614,21.371,348.730,307.474,360.024,25.791,19.893,25.791 +6,0.150,349.392,513.938,186.867,423.189,344.214,510.979,29.745,73.339,29.745,348.414,307.552,360.342,25.055,19.132,25.055 +7,0.175,343.058,525.275,193.386,412.663,337.805,521.235,37.569,77.989,37.569,348.084,308.083,361.337,25.242,18.376,25.242 +8,0.200,333.457,535.477,202.411,401.463,328.814,530.628,46.245,83.541,46.245,347.999,309.982,361.427,24.097,18.561,24.097 +9,0.225,333.457,535.477,202.411,401.463,328.814,530.628,46.245,83.541,46.245,347.999,309.982,361.427,24.097,18.561,24.097 +10,0.250,322.402,544.870,212.696,392.055,318.214,538.875,55.069,89.341,55.069,346.950,310.060,361.575,23.398,17.941,23.398 +11,0.275,309.732,553.887,225.290,385.582,306.342,546.960,63.925,95.932,63.925,345.737,311.376,361.159,21.901,18.343,21.901 +12,0.299,296.290,559.250,238.382,379.529,293.906,551.722,72.432,102.529,72.432,346.048,313.464,361.841,20.529,18.548,20.529 +13,0.324,296.290,559.250,238.382,379.529,293.906,551.722,72.432,102.529,72.432,346.048,313.464,361.841,20.529,18.548,20.529 +14,0.350,281.249,562.628,252.927,375.701,279.842,554.371,80.327,109.983,80.327,344.553,314.404,361.305,23.177,18.625,23.177 +15,0.374,266.990,563.064,266.970,374.287,266.837,554.692,88.955,117.525,88.955,343.997,315.391,360.745,21.960,19.073,21.960 +16,0.400,255.823,561.551,282.027,375.237,257.079,553.520,98.887,125.690,98.887,343.736,316.535,359.993,22.878,19.378,22.878 +17,0.425,255.823,561.551,282.027,375.237,257.079,553.520,98.887,125.690,98.887,343.736,316.535,359.993,22.878,19.378,22.878 +18,0.450,241.671,556.773,296.311,377.828,243.939,549.502,107.328,134.310,107.328,343.730,317.579,358.964,19.428,19.184,19.428 +19,0.475,229.602,551.325,309.348,382.811,232.993,544.301,115.769,143.344,115.769,341.651,318.804,357.250,19.253,19.366,19.253 +20,0.500,219.021,544.840,321.548,390.075,223.189,538.654,123.977,152.978,123.977,341.441,319.365,356.360,19.398,19.358,19.398 +21,0.524,219.021,544.840,321.548,390.075,223.189,538.654,123.977,152.978,123.977,341.441,319.365,356.360,19.398,19.358,19.398 +22,0.549,210.165,536.803,332.092,397.973,215.009,531.401,131.883,163.301,131.883,340.500,320.489,355.010,19.466,19.157,19.466 +23,0.574,201.841,528.815,341.110,407.001,207.928,523.605,139.440,173.701,139.440,337.981,320.469,354.006,19.683,19.686,19.683 +24,0.600,195.836,520.010,348.510,417.876,202.056,515.914,146.634,4.812,146.634,337.572,320.224,352.468,19.800,19.020,19.800 +25,0.624,195.836,520.010,348.510,417.876,202.056,515.914,146.634,4.812,146.634,337.572,320.224,352.468,19.800,19.020,19.800 +26,0.650,191.100,510.209,354.116,428.339,197.268,507.085,153.138,15.994,153.138,337.178,320.735,351.008,20.043,19.005,20.043 +27,0.674,188.098,501.265,358.698,437.533,194.457,498.901,159.605,27.026,159.605,337.096,320.292,350.663,20.753,21.100,20.753 +28,0.700,185.839,492.382,360.760,447.674,191.649,490.871,165.426,38.546,165.426,337.073,321.256,349.078,20.750,21.638,20.750 +29,0.724,185.839,492.382,360.760,447.674,191.649,490.871,165.426,38.546,165.426,337.073,321.256,349.078,20.750,21.638,20.750 +30,0.750,184.287,484.206,362.500,457.076,190.280,483.219,170.651,49.708,170.651,336.212,321.386,348.359,20.920,22.816,20.920 +31,0.775,183.453,476.128,363.367,466.075,189.697,475.794,176.939,60.616,176.939,335.376,320.251,347.882,18.759,24.271,18.759 +32,0.800,183.048,468.711,363.131,474.598,189.504,468.952,2.137,72.255,2.137,334.513,320.091,347.434,18.599,24.192,18.599 +33,0.824,183.048,468.711,363.131,474.598,189.504,468.952,2.137,72.255,2.137,334.513,320.091,347.434,18.599,24.192,18.599 +34,0.850,182.767,461.763,362.036,482.335,189.905,462.616,6.809,83.884,6.809,332.133,320.274,346.510,19.177,24.076,19.177 +35,0.879,183.229,455.350,360.939,489.451,190.938,456.882,11.241,94.970,11.241,330.455,320.660,346.176,18.824,24.646,18.824 +36,0.913,184.414,449.154,359.726,495.650,192.450,451.341,15.226,106.285,15.226,329.423,321.160,346.081,18.944,25.205,18.944 +37,0.938,185.576,443.776,358.402,501.313,194.030,446.658,18.825,118.053,18.825,328.568,321.351,346.431,19.296,25.111,19.296 +38,0.963,185.576,443.776,358.402,501.313,194.030,446.658,18.825,118.053,18.825,328.568,321.351,346.431,19.296,25.111,19.296 +39,0.986,188.276,436.310,356.749,506.881,196.940,439.776,21.801,129.911,21.801,327.938,322.005,346.602,25.997,25.642,25.997 +40,1.016,189.642,432.690,355.108,511.620,198.498,436.749,24.624,141.180,24.624,327.642,322.662,347.127,25.264,24.815,25.264 +41,1.041,191.380,428.733,353.387,515.716,200.449,433.384,27.150,152.671,27.150,326.928,322.973,347.312,26.010,24.344,26.010 +42,1.067,193.530,424.948,351.657,519.328,202.494,430.159,30.174,164.249,30.174,326.804,323.334,347.540,25.473,23.987,25.473 +43,1.091,193.530,424.948,351.657,519.328,202.494,430.159,30.174,164.249,30.174,326.804,323.334,347.540,25.473,23.987,25.473 +44,1.116,194.719,422.449,349.388,523.061,203.861,428.163,32.005,175.619,32.005,325.843,323.351,347.404,25.440,22.671,25.440 +45,1.141,195.423,419.615,348.158,525.680,205.442,426.295,33.690,7.275,33.690,323.668,323.988,347.751,26.071,21.738,26.071 +46,1.167,196.071,415.241,346.802,527.084,207.218,423.627,36.959,18.747,36.959,319.581,324.155,347.479,28.173,20.833,28.173 +47,1.192,196.071,415.241,346.802,527.084,207.218,423.627,36.959,18.747,36.959,319.581,324.155,347.479,28.173,20.833,28.173 +48,1.216,190.983,411.414,344.838,529.654,207.514,423.306,35.731,29.833,35.731,306.435,325.105,347.162,22.949,19.426,22.949 +49,1.241,176.634,399.707,342.999,532.236,206.996,423.997,38.660,41.820,38.660,269.868,324.533,347.634,17.804,18.474,17.804 +50,1.266,198.778,412.799,341.548,533.600,209.189,421.363,39.437,53.830,39.437,320.076,323.951,347.039,22.932,19.632,22.932 +51,1.291,198.778,412.799,341.548,533.600,209.189,421.363,39.437,53.830,39.437,320.076,323.951,347.039,22.932,19.632,22.932 +52,1.317,202.339,414.775,339.876,534.516,209.505,420.598,39.094,65.362,39.094,327.569,323.097,346.036,24.836,18.986,24.836 +53,1.342,203.743,414.062,339.322,534.265,210.010,419.348,40.149,77.320,40.149,329.481,322.805,345.877,24.959,19.634,24.959 +54,1.367,203.758,414.047,339.319,533.510,209.835,419.177,40.163,89.170,40.163,329.482,321.169,345.388,24.959,21.230,24.959 +55,1.391,203.758,414.047,339.319,533.510,209.835,419.177,40.163,89.170,40.163,329.482,321.169,345.388,24.959,21.230,24.959 +56,1.416,202.444,415.474,339.691,532.847,208.563,420.416,38.928,100.713,38.928,329.578,321.460,345.309,25.313,22.918,25.313 +57,1.441,201.683,415.749,340.797,532.046,208.245,420.956,38.437,112.834,38.437,329.019,321.457,345.772,25.289,24.205,25.289 +58,1.467,200.755,416.522,342.276,530.542,207.778,421.942,37.666,124.958,37.666,327.913,320.728,345.655,25.067,25.138,25.067 +59,1.492,200.755,416.522,342.276,530.542,207.778,421.942,37.666,124.958,37.666,327.913,320.728,345.655,25.067,25.138,25.067 +60,1.517,200.300,417.100,343.695,529.243,207.621,422.591,36.870,136.888,36.870,327.400,320.588,345.702,25.800,25.784,25.800 +61,1.541,198.789,418.890,345.734,527.328,206.499,424.368,35.395,148.483,35.395,327.359,321.540,346.275,26.150,25.406,26.150 +62,1.567,196.923,420.615,347.636,525.611,205.246,426.164,33.690,159.937,33.690,327.273,322.185,347.279,26.071,25.076,26.071 +63,1.592,196.923,420.615,347.636,525.611,205.246,426.164,33.690,159.937,33.690,327.273,322.185,347.279,26.071,25.076,26.071 +64,1.617,194.860,422.225,349.446,522.907,203.988,427.930,32.005,171.272,32.005,325.843,322.815,347.372,25.970,23.615,25.970 +65,1.642,192.296,423.005,351.423,520.280,203.257,429.552,30.849,1.933,30.849,321.918,323.423,347.454,25.422,21.254,25.422 +66,1.667,186.204,423.740,353.424,516.845,201.473,432.269,29.186,12.477,29.186,312.824,323.988,347.804,28.527,20.936,28.527 +67,1.692,186.204,423.740,353.424,516.845,201.473,432.269,29.186,12.477,29.186,312.824,323.988,347.804,28.527,20.936,28.527 +68,1.716,159.271,417.639,355.314,513.479,199.614,435.590,23.987,21.190,23.987,259.524,324.443,347.836,22.170,20.365,22.170 +69,1.741,180.810,434.349,356.938,509.105,197.027,441.419,23.558,30.689,23.558,311.889,325.830,347.271,18.090,21.303,18.090 +70,1.767,186.532,441.828,357.498,506.201,195.155,444.996,20.171,39.830,20.171,328.611,325.472,346.983,18.812,19.258,18.812 +71,1.791,186.532,441.828,357.498,506.201,195.155,444.996,20.171,39.830,20.171,328.611,325.472,346.983,18.812,19.258,18.812 +72,1.816,186.321,446.673,358.921,501.142,193.623,448.902,16.978,49.635,16.978,331.428,323.786,346.697,19.128,19.658,19.128 +73,1.841,185.325,452.455,360.344,494.423,191.955,453.998,13.103,59.712,13.103,332.727,322.835,346.340,19.026,21.565,19.026 +74,1.867,183.927,459.619,362.081,486.947,190.595,460.607,8.427,70.710,8.427,333.508,321.337,346.990,18.832,23.785,18.832 +75,1.892,183.927,459.619,362.081,486.947,190.595,460.607,8.427,70.710,8.427,333.508,321.337,346.990,18.832,23.785,18.832 +76,1.917,182.645,466.314,362.773,478.647,189.822,466.790,3.789,81.180,3.789,332.325,320.083,346.712,18.688,24.670,18.688 +77,1.942,181.488,473.169,362.864,470.041,189.404,473.058,179.193,91.718,179.193,331.136,318.547,346.970,18.125,24.619,18.125 +78,1.967,181.239,481.616,363.147,460.588,190.054,480.622,173.565,102.529,173.565,330.753,319.539,348.495,18.417,25.489,18.417 +79,1.991,181.239,481.616,363.147,460.588,190.054,480.622,173.565,102.529,173.565,330.753,319.539,348.495,18.417,25.489,18.417 +80,2.017,180.912,490.728,362.293,450.983,191.462,488.451,167.821,113.199,167.821,328.198,319.863,349.782,19.262,25.473,19.262 +81,2.041,180.456,500.931,359.280,441.227,193.326,496.701,161.806,124.585,161.806,322.862,321.734,349.956,19.977,23.581,19.977 +82,2.067,176.161,514.154,355.853,430.857,196.582,504.872,155.556,135.144,155.556,306.380,321.050,351.244,20.276,21.591,20.276 +83,2.091,176.161,514.154,355.853,430.857,196.582,504.872,155.556,135.144,155.556,306.380,321.050,351.244,20.276,21.591,20.276 +84,2.117,130.456,553.426,350.951,420.473,199.966,511.720,149.036,145.521,149.036,190.706,321.787,352.831,17.321,19.218,17.321 +85,2.141,198.002,526.204,345.064,412.282,205.274,520.604,142.404,156.267,142.404,335.338,322.595,353.693,18.897,21.086,18.897 +86,2.167,206.392,533.391,337.473,403.500,211.658,528.189,135.356,166.695,135.356,339.466,321.911,354.270,19.166,19.167,19.166 +87,2.192,206.392,533.391,337.473,403.500,211.658,528.189,135.356,166.695,135.356,339.466,321.911,354.270,19.166,19.167,19.166 +88,2.217,215.095,540.400,328.050,396.160,218.687,535.815,128.073,177.543,128.073,343.113,320.477,354.761,19.563,19.263,19.563 +89,2.242,224.222,547.544,316.926,389.872,227.022,542.764,120.364,8.434,120.364,343.650,318.634,354.731,19.688,19.518,19.688 +90,2.266,234.340,552.933,303.910,385.210,236.142,548.599,112.580,19.026,112.580,344.381,316.309,353.770,18.897,18.321,18.897 +91,2.291,234.340,552.933,303.910,385.210,236.142,548.599,112.580,19.026,112.580,344.381,316.309,353.770,18.897,18.321,18.897 +92,2.317,245.383,557.621,291.705,379.502,246.754,552.355,104.599,30.426,104.599,346.324,312.832,357.206,19.264,21.201,19.264 +93,2.342,258.303,560.848,279.745,376.727,259.042,554.885,97.072,41.236,97.072,346.684,308.933,358.702,21.956,24.565,21.956 +94,2.367,268.940,562.991,277.987,393.132,268.968,564.272,88.761,52.943,88.761,344.374,267.002,341.810,19.023,22.752,19.023 +95,2.392,268.940,562.991,277.987,393.132,268.968,564.272,88.761,52.943,88.761,344.374,267.002,341.810,19.023,22.752,19.023 +96,2.417,284.943,570.559,259.174,396.379,284.015,564.701,81.003,65.376,81.003,328.409,268.326,340.272,22.511,19.545,22.511 +97,2.442,304.981,587.814,239.241,392.964,295.765,557.861,72.897,75.217,72.897,285.778,285.692,348.455,19.630,20.197,19.630 +98,2.467,309.686,554.688,225.362,386.057,306.063,547.160,64.297,84.908,64.297,343.616,309.270,360.326,22.227,19.231,22.227 +99,2.491,309.686,554.688,225.362,386.057,306.063,547.160,64.297,84.908,64.297,343.616,309.270,360.326,22.227,19.231,22.227 +100,2.517,320.556,546.623,215.107,392.067,316.728,540.908,56.190,97.017,56.190,346.674,311.206,360.431,22.923,18.491,22.923 +101,2.542,330.602,538.172,204.281,400.400,326.330,533.399,48.180,107.354,48.180,348.185,312.473,360.995,24.044,18.314,24.044 +102,2.567,339.123,528.170,195.435,410.051,334.956,524.651,40.179,118.511,40.179,350.163,312.847,361.072,26.011,18.518,26.011 +103,2.592,339.123,528.170,195.435,410.051,334.956,524.651,40.179,118.511,40.179,350.163,312.847,361.072,26.011,18.518,26.011 +104,2.617,345.639,518.171,188.193,420.834,341.626,515.593,32.722,129.908,32.722,351.074,312.912,360.614,25.475,19.330,25.475 +105,2.642,350.467,507.330,182.737,432.087,346.998,505.676,25.507,140.219,25.507,352.194,312.667,359.880,25.855,21.951,25.855 +106,2.667,353.308,500.086,177.726,442.817,349.255,498.730,18.506,151.137,18.506,352.266,311.888,360.814,19.256,21.150,19.256 +107,2.692,353.308,500.086,177.726,442.817,349.255,498.730,18.506,151.137,18.506,352.266,311.888,360.814,19.256,21.150,19.256 +108,2.716,356.482,490.204,174.723,453.182,351.732,489.207,11.856,161.878,11.856,351.562,311.195,361.269,19.357,20.148,19.357 +109,2.741,359.276,480.632,172.774,461.107,352.748,480.005,5.492,173.204,5.492,348.795,310.333,361.911,18.970,20.338,18.970 +110,2.767,425.500,470.500,172.010,471.807,352.505,470.500,0.000,2.923,0.000,215.000,308.823,360.990,17.000,20.862,17.000 +111,2.792,425.500,470.500,172.010,471.807,352.505,470.500,0.000,2.923,0.000,215.000,308.823,360.990,17.000,20.862,17.000 +112,2.816,366.907,461.286,173.139,480.000,352.817,462.799,173.870,13.528,173.870,332.631,308.716,360.973,19.278,21.046,19.278 +113,2.841,360.267,452.821,174.837,487.771,351.753,454.540,168.584,24.775,168.584,342.614,309.195,359.986,20.471,21.232,20.471 +114,2.867,355.041,445.828,176.289,497.222,349.406,447.496,163.511,35.134,163.511,348.471,309.434,360.224,21.310,22.444,21.310 +115,2.891,355.041,445.828,176.289,497.222,349.406,447.496,163.511,35.134,163.511,348.471,309.434,360.224,21.310,22.444,21.310 +116,2.917,352.121,439.415,179.082,503.924,347.512,441.187,158.962,45.324,158.962,349.574,309.772,359.449,20.246,20.757,20.246 +117,2.942,349.538,433.080,182.623,510.702,345.179,435.132,154.787,55.570,154.787,348.888,312.526,358.523,20.010,20.308,20.010 +118,2.968,346.239,428.533,184.954,516.923,342.215,430.782,150.797,66.297,150.797,349.383,312.927,358.603,19.512,19.452,19.512 +119,2.995,346.239,428.533,184.954,516.923,342.215,430.782,150.797,66.297,150.797,349.383,312.927,358.603,19.512,19.452,19.512 +120,3.020,342.729,424.037,187.640,522.725,339.018,426.440,147.084,76.430,147.084,349.954,314.117,358.797,20.050,19.207,20.050 +121,3.045,339.301,420.176,189.929,527.850,335.729,422.787,143.828,86.479,143.828,350.564,314.943,359.413,19.313,19.717,19.313 +122,3.070,335.678,417.138,192.165,531.518,332.774,419.495,140.937,96.340,140.937,352.062,315.724,359.541,18.826,20.319,18.826 +123,3.095,335.678,417.138,192.165,531.518,332.774,419.495,140.937,96.340,140.937,352.062,315.724,359.541,18.826,20.319,18.826 +124,3.118,333.131,413.914,194.547,534.585,330.057,416.667,138.145,105.945,138.145,350.973,316.479,359.226,19.133,20.055,19.133 +125,3.143,330.959,411.390,198.038,537.486,328.023,414.247,135.768,115.115,135.768,350.015,315.949,358.209,19.122,20.684,19.122 +126,3.168,329.947,408.007,198.553,538.687,325.814,412.303,133.889,124.005,133.889,346.691,316.185,358.616,18.796,20.495,18.796 +127,3.192,329.947,408.007,198.553,538.687,325.814,412.303,133.889,124.005,133.889,346.691,316.185,358.616,18.796,20.495,18.796 +128,3.217,357.339,373.966,200.669,540.150,323.756,410.348,132.709,131.481,132.709,258.707,315.415,357.731,17.974,18.843,17.974 +129,3.242,365.613,359.980,202.242,541.784,322.407,409.025,131.379,139.519,131.379,227.377,314.336,358.099,17.937,20.072,17.937 +130,3.267,336.277,389.930,203.481,542.132,321.155,407.766,130.292,149.112,130.292,310.409,313.844,357.175,18.008,19.707,18.008 +131,3.291,336.277,389.930,203.481,542.132,321.155,407.766,130.292,149.112,130.292,310.409,313.844,357.175,18.008,19.707,18.008 +132,3.317,329.496,395.816,205.490,543.475,320.465,407.026,128.853,158.654,128.853,327.985,312.897,356.775,19.577,19.270,19.577 +133,3.342,325.776,397.967,207.309,544.593,319.410,406.069,128.157,168.111,128.157,335.758,312.569,356.365,18.815,20.550,18.815 +134,3.367,323.093,398.712,208.546,545.923,318.093,405.335,127.046,179.100,127.046,339.818,311.182,356.416,19.248,22.008,19.248 +135,3.392,323.093,398.712,208.546,545.923,318.093,405.335,127.046,179.100,127.046,339.818,311.182,356.416,19.248,22.008,19.248 +136,3.417,321.861,399.633,209.745,546.071,317.969,404.853,126.709,9.728,126.709,342.783,312.555,355.805,18.875,24.500,18.875 +137,3.442,320.408,399.620,210.370,546.844,316.959,404.351,126.091,20.746,126.091,344.160,312.868,355.870,18.986,26.085,18.986 +138,3.467,319.877,399.911,210.077,548.184,316.396,404.713,125.936,31.724,125.936,345.259,314.271,357.122,18.943,25.193,18.943 +139,3.492,319.877,399.911,210.077,548.184,316.396,404.713,125.936,31.724,125.936,345.259,314.271,357.122,18.943,25.193,18.943 +140,3.517,319.954,400.507,209.906,548.693,316.562,405.156,126.119,42.528,126.119,346.128,314.827,357.637,18.776,24.406,18.776 +141,3.543,320.198,400.909,211.192,547.263,317.568,404.479,126.384,53.842,126.384,347.233,315.473,356.102,18.855,20.620,18.855 +142,3.568,320.720,402.040,210.881,547.592,318.276,405.298,126.870,65.145,126.870,348.400,316.940,356.545,19.600,21.370,19.600 +143,3.592,320.720,402.040,210.881,547.592,318.276,405.298,126.870,65.145,126.870,348.400,316.940,356.545,19.600,21.370,19.600 +144,3.617,320.943,402.923,208.390,547.274,318.430,406.200,127.476,76.109,127.476,349.557,316.998,357.817,19.126,20.020,19.126 +145,3.642,321.873,404.108,206.153,546.913,319.125,407.578,128.367,86.987,128.367,349.880,316.772,358.734,19.340,20.708,19.340 +146,3.667,323.185,405.330,204.977,545.134,320.683,408.371,129.428,97.787,129.428,350.372,317.337,358.248,19.482,18.723,19.482 +147,3.692,323.185,405.330,204.977,545.134,320.683,408.371,129.428,97.787,129.428,350.372,317.337,358.248,19.482,18.723,19.482 +148,3.717,325.196,406.310,202.898,543.137,322.348,409.628,130.641,109.058,130.641,349.470,317.189,358.215,19.394,20.794,19.394 +149,3.741,327.521,406.618,201.343,541.189,323.917,410.618,132.020,118.926,132.020,347.337,317.022,358.106,19.029,19.808,19.029 +150,3.768,332.717,405.266,198.886,538.405,326.034,412.213,133.889,129.920,133.889,338.901,315.743,358.182,18.605,19.126,18.605 +151,3.792,332.717,405.266,198.886,538.405,326.034,412.213,133.889,129.920,133.889,338.901,315.743,358.182,18.605,19.126,18.605 +152,3.817,384.705,359.760,196.144,535.505,328.127,413.878,136.273,140.659,136.273,202.308,313.807,358.896,17.783,19.424,17.783 +153,3.842,359.733,390.524,194.102,532.354,330.567,416.325,138.504,151.390,138.504,280.298,313.169,358.178,17.947,19.234,17.947 +154,3.867,351.432,404.139,191.552,528.659,333.243,419.013,140.726,162.031,140.726,311.203,312.490,358.194,19.563,18.819,19.563 +155,3.892,351.432,404.139,191.552,528.659,333.243,419.013,140.726,162.031,140.726,311.203,312.490,358.194,19.563,18.819,19.563 +156,3.917,348.552,413.162,189.282,524.850,336.194,422.224,143.746,172.476,143.746,327.669,311.708,358.319,19.407,19.267,19.407 +157,3.942,349.806,418.730,186.921,520.663,338.951,425.843,146.768,2.726,146.768,332.306,310.791,358.262,20.104,19.597,20.104 +158,3.967,350.481,425.620,184.232,515.038,342.191,430.305,150.524,13.548,150.524,339.368,310.932,358.413,19.493,22.688,19.493 +159,3.992,350.481,425.620,184.232,515.038,342.191,430.305,150.524,13.548,150.524,339.368,310.932,358.413,19.493,22.688,19.493 +160,4.017,350.976,430.976,181.388,509.606,344.375,434.198,153.983,23.443,153.983,344.403,311.083,359.095,19.835,23.667,19.835 +161,4.041,352.125,437.781,178.478,504.760,346.602,440.015,157.977,33.959,157.977,348.356,311.208,360.271,19.999,23.173,19.999 +162,4.067,354.088,444.395,176.743,497.180,349.138,445.981,162.232,43.755,162.232,349.195,311.238,359.591,20.377,20.194,20.377 +163,4.092,354.088,444.395,176.743,497.180,349.138,445.981,162.232,43.755,162.232,349.195,311.238,359.591,20.377,20.194,20.377 +164,4.118,356.263,451.351,175.519,490.133,351.309,452.480,167.168,53.465,167.168,349.363,312.434,359.525,20.118,20.069,20.118 +165,4.142,358.321,458.877,173.789,481.850,352.694,459.638,172.297,63.229,172.297,349.178,311.704,360.535,20.648,20.961,20.648 +166,4.168,359.081,468.093,173.590,472.889,353.463,468.309,177.797,73.701,177.797,348.588,311.400,359.832,18.871,19.954,18.871 +167,4.192,359.081,468.093,173.590,472.889,353.463,468.309,177.797,73.701,177.797,348.588,311.400,359.832,18.871,19.954,18.871 +168,4.217,359.331,477.649,174.383,463.220,353.987,477.308,3.652,83.307,3.652,349.565,311.556,360.274,18.961,20.310,18.961 +169,4.242,357.857,486.846,176.462,453.660,353.350,486.085,9.583,93.086,9.583,350.494,311.787,359.636,19.106,21.464,19.106 +170,4.273,355.544,496.846,178.138,443.484,350.786,495.489,15.915,102.743,15.915,350.685,312.394,360.581,19.326,20.279,19.326 +171,4.308,352.922,503.809,181.801,433.241,348.477,501.938,22.834,112.369,22.834,350.901,312.161,360.546,25.806,20.316,25.806 +172,4.334,348.253,513.947,186.887,423.006,344.012,511.512,29.867,122.253,29.867,350.883,312.164,360.664,25.809,19.596,25.809 +173,4.360,348.253,513.947,186.887,423.006,344.012,511.512,29.867,122.253,29.867,350.883,312.164,360.664,25.809,19.596,25.809 +174,4.384,341.738,524.402,193.150,412.756,337.658,521.298,37.273,131.730,37.273,351.203,311.669,361.456,25.225,19.343,25.225 +175,4.412,333.423,534.116,201.668,403.341,329.689,530.344,45.291,141.520,45.291,350.031,311.423,360.647,24.056,19.470,24.056 +176,4.437,323.276,543.118,211.605,395.424,320.204,538.944,53.653,151.239,53.653,349.560,311.099,359.924,23.130,19.372,23.130 +177,4.463,323.276,543.118,211.605,395.424,320.204,538.944,53.653,151.239,53.653,349.560,311.099,359.924,23.130,19.372,23.130 +178,4.485,311.936,549.881,222.755,389.103,309.859,546.023,61.699,160.790,61.699,350.157,311.148,358.919,22.080,18.761,22.080 +179,4.510,300.407,555.297,234.812,383.029,298.783,550.942,69.550,171.254,69.550,350.065,310.729,359.363,21.074,19.463,21.074 +180,4.535,286.023,559.606,247.838,379.128,284.963,554.832,77.471,1.648,77.471,349.367,310.246,359.147,22.127,19.740,22.127 +181,4.559,286.023,559.606,247.838,379.128,284.963,554.832,77.471,1.648,77.471,349.367,310.246,359.147,22.127,19.740,22.127 +182,4.583,275.093,561.321,260.549,378.398,274.828,556.725,86.691,10.989,86.691,348.500,311.035,357.708,23.193,18.318,23.193 +183,4.609,258.644,560.660,274.834,377.119,259.053,555.182,94.265,22.370,94.265,346.499,311.019,357.486,23.159,20.418,23.159 +184,4.635,246.451,557.851,289.274,378.857,247.696,552.701,103.588,32.347,103.588,346.897,311.091,357.493,20.348,21.261,20.348 +185,4.659,246.451,557.851,289.274,378.857,247.696,552.701,103.588,32.347,103.588,346.897,311.091,357.493,20.348,21.261,20.348 +186,4.684,233.990,553.040,303.249,381.726,236.429,547.199,112.671,42.274,112.671,344.225,313.062,356.885,19.261,24.687,19.261 +187,4.709,223.018,546.828,316.130,388.381,226.153,541.653,121.206,52.765,121.206,343.324,313.242,355.426,19.458,24.649,19.458 +188,4.734,212.235,539.935,327.505,395.973,216.873,534.327,129.598,62.865,129.598,339.691,314.447,354.247,19.465,25.908,19.465 +189,4.759,212.235,539.935,327.505,395.973,216.873,534.327,129.598,62.865,129.598,339.691,314.447,354.247,19.465,25.908,19.465 +190,4.784,203.080,531.882,337.654,405.769,209.085,526.413,137.675,73.496,137.675,336.335,314.628,352.579,19.711,25.035,19.711 +191,4.810,195.651,522.136,345.067,415.442,202.196,517.646,145.556,84.207,145.556,335.382,316.924,351.257,19.460,23.056,19.460 +192,4.835,189.579,512.070,351.565,425.427,197.074,508.242,152.941,94.485,152.941,333.674,318.141,350.506,20.444,22.421,20.444 +193,4.859,189.579,512.070,351.565,425.427,197.074,508.242,152.941,94.485,152.941,333.674,318.141,350.506,20.444,22.421,20.444 +194,4.884,184.623,502.014,356.409,436.345,193.356,498.874,160.226,104.744,160.226,330.626,319.185,349.187,19.952,21.734,19.952 +195,4.909,181.009,492.380,361.572,448.230,191.810,489.892,167.031,114.905,167.031,327.393,320.369,349.562,19.868,24.748,19.868 +196,4.934,178.870,481.396,363.629,459.650,190.403,480.139,173.781,125.218,173.781,325.649,322.606,348.852,18.563,24.749,18.563 +197,4.959,178.870,481.396,363.629,459.650,190.403,480.139,173.781,125.218,173.781,325.649,322.606,348.852,18.563,24.749,18.563 +198,4.984,177.979,471.539,364.631,470.125,190.299,471.604,0.302,134.847,0.302,324.001,323.160,348.643,18.131,24.400,18.131 +199,5.009,178.105,462.106,364.334,480.269,190.907,463.507,6.246,144.288,6.246,322.685,323.411,348.442,19.090,23.839,19.090 +200,5.034,179.324,453.145,362.962,489.916,192.169,455.907,12.137,153.332,12.137,321.972,323.789,348.251,18.859,23.451,18.859 +201,5.059,179.324,453.145,362.962,489.916,192.169,455.907,12.137,153.332,12.137,321.972,323.789,348.251,18.859,23.451,18.859 +202,5.084,181.496,444.063,360.885,499.194,194.401,448.226,17.879,162.135,17.879,321.064,324.165,348.183,19.034,23.032,19.034 +203,5.109,185.259,435.103,357.707,507.234,197.500,440.000,21.801,170.460,21.801,321.067,324.532,347.437,25.997,21.679,25.997 +204,5.134,188.700,428.600,354.531,514.970,200.507,434.503,26.565,178.137,26.565,321.099,323.479,347.500,25.491,20.469,25.491 +205,5.159,188.700,428.600,354.531,514.970,200.507,434.503,26.565,178.137,26.565,321.099,323.479,347.500,25.491,20.469,25.491 +206,5.184,193.034,422.586,350.285,522.250,203.536,428.979,31.329,5.453,31.329,323.110,324.199,347.698,25.403,21.077,25.403 +207,5.209,198.220,415.540,345.971,528.637,208.123,422.968,36.870,12.095,36.870,322.600,324.561,347.359,25.800,21.372,25.800 +208,5.234,204.023,410.852,341.257,534.203,212.237,418.176,41.719,17.889,41.719,325.024,324.501,347.033,25.576,21.996,25.576 +209,5.259,204.023,410.852,341.257,534.203,212.237,418.176,41.719,17.889,41.719,325.024,324.501,347.033,25.576,21.996,25.576 +210,5.284,209.729,408.206,335.723,539.886,216.066,414.730,45.830,22.380,45.830,328.104,324.888,346.294,24.244,21.431,24.244 +211,5.309,214.845,404.970,330.219,544.083,219.431,410.432,49.986,26.887,49.986,332.926,325.167,347.190,23.951,20.577,23.951 +212,5.336,219.864,401.823,324.836,549.275,223.981,407.504,54.071,30.875,54.071,333.922,324.816,347.955,23.365,21.439,23.365 +213,5.360,219.864,401.823,324.836,549.275,223.981,407.504,54.071,30.875,54.071,333.922,324.816,347.955,23.365,21.439,23.365 +214,5.384,225.320,399.543,318.769,552.846,228.166,404.128,58.173,33.690,58.173,337.483,325.054,348.276,22.764,21.079,22.764 +215,5.409,229.458,396.866,312.882,556.357,232.117,401.815,61.750,35.789,61.750,337.487,324.772,348.724,22.364,21.091,22.364 +216,5.434,234.982,394.110,307.151,559.641,237.349,399.479,66.205,37.140,66.205,337.684,323.812,349.419,21.679,20.707,21.679 +217,5.459,234.982,394.110,307.151,559.641,237.349,399.479,66.205,37.140,66.205,337.684,323.812,349.419,21.679,20.707,21.679 +218,5.484,240.034,392.212,300.861,562.271,241.976,397.576,70.092,38.206,70.092,338.399,323.173,349.808,20.950,21.972,20.950 +219,5.509,245.135,390.756,294.454,564.682,246.646,396.008,73.951,38.706,73.951,339.703,322.657,350.633,20.221,23.235,20.221 +220,5.534,250.180,389.330,287.854,566.183,251.306,394.509,77.735,38.660,77.735,340.440,322.343,351.039,19.331,23.270,19.331 +221,5.559,250.180,389.330,287.854,566.183,251.306,394.509,77.735,38.660,77.735,340.440,322.343,351.039,19.331,23.270,19.331 +222,5.584,255.481,388.369,281.522,567.339,256.225,393.455,81.674,38.302,81.674,341.147,322.049,351.428,18.751,23.578,18.751 +223,5.608,260.979,387.161,274.867,567.884,261.426,392.783,85.452,37.848,85.452,339.949,321.180,351.229,18.555,24.404,18.555 +224,5.634,266.293,386.537,268.184,568.096,266.368,392.031,89.221,37.110,89.221,341.159,321.183,352.148,17.658,25.241,17.658 +225,5.659,266.293,386.537,268.184,568.096,266.368,392.031,89.221,37.110,89.221,341.159,321.183,352.148,17.658,25.241,17.658 +226,5.684,272.094,386.311,261.476,568.225,271.775,392.059,93.180,35.877,93.180,341.418,320.263,352.932,17.972,24.604,17.972 +227,5.710,277.940,386.688,254.910,567.630,277.257,392.291,96.953,34.695,96.953,342.221,319.580,353.510,18.158,24.413,18.158 +228,5.734,284.174,387.452,248.030,565.955,283.174,392.605,100.981,33.559,100.981,343.240,319.515,353.740,18.740,24.513,18.740 +229,5.760,284.174,387.452,248.030,565.955,283.174,392.605,100.981,33.559,100.981,343.240,319.515,353.740,18.740,24.513,18.740 +230,5.784,289.754,388.511,241.570,564.075,288.451,393.449,104.783,31.675,104.783,343.666,319.048,353.880,18.908,24.843,18.908 +231,5.809,296.386,389.765,235.095,561.838,294.636,394.798,109.179,30.324,109.179,344.002,317.588,354.660,18.808,25.000,18.808 +232,5.835,302.482,391.627,228.318,558.827,300.292,396.688,113.405,29.124,113.405,343.749,316.843,354.778,18.587,25.096,18.587 +233,5.860,302.482,391.627,228.318,558.827,300.292,396.688,113.405,29.124,113.405,343.749,316.843,354.778,18.587,25.096,18.587 +234,5.886,309.076,394.040,222.063,555.480,306.375,399.158,117.824,27.759,117.824,343.633,315.403,355.206,18.891,25.197,18.891 +235,5.911,315.113,397.071,215.350,551.293,312.008,401.988,122.276,26.346,122.276,344.069,314.840,355.700,18.957,25.715,18.957 +236,5.935,322.012,401.054,208.690,546.522,318.387,405.815,127.278,25.017,127.278,344.837,314.143,356.806,18.990,25.494,18.990 +237,5.960,322.012,401.054,208.690,546.522,318.387,405.815,127.278,25.017,127.278,344.837,314.143,356.806,18.990,25.494,18.990 +238,5.985,328.309,405.956,202.834,540.098,324.607,410.036,132.221,22.620,132.221,345.279,313.000,356.297,19.460,25.077,19.460 +239,6.010,334.397,411.108,196.551,533.865,329.942,415.202,137.420,20.598,137.420,344.920,312.503,357.020,19.085,23.823,19.085 +240,6.035,340.507,417.149,190.600,526.700,335.187,421.180,142.848,18.435,142.848,344.585,312.117,357.935,19.375,23.717,19.375 +241,6.060,340.507,417.149,190.600,526.700,335.187,421.180,142.848,18.435,142.848,344.585,312.117,357.935,19.375,23.717,19.375 +242,6.084,347.491,423.736,185.767,518.542,340.423,428.086,148.392,17.324,148.392,341.646,311.281,358.245,19.981,22.561,19.981 +243,6.110,353.331,430.688,181.021,509.017,344.464,434.952,154.318,14.727,154.318,339.113,310.940,358.790,19.462,21.045,19.462 +244,6.134,360.341,439.379,177.288,499.170,348.231,443.661,160.527,12.200,160.527,333.651,310.184,359.341,20.018,20.816,20.018 +245,6.159,360.341,439.379,177.288,499.170,348.231,443.661,160.527,12.200,160.527,333.651,310.184,359.341,20.018,20.816,20.018 +246,6.185,365.244,450.057,174.316,488.756,351.023,453.241,167.381,10.268,167.381,331.248,310.005,360.395,19.415,19.316,19.415 +247,6.209,377.551,461.493,172.775,477.600,352.753,463.775,174.744,7.989,174.744,311.170,309.145,360.975,18.514,18.972,18.514 +248,6.235,427.817,477.782,172.594,466.009,353.189,475.421,1.813,5.440,1.813,212.273,309.030,361.604,17.808,20.100,17.808 +249,6.260,427.817,477.782,172.594,466.009,353.189,475.421,1.813,5.440,1.813,212.273,309.030,361.604,17.808,20.100,17.808 +250,6.285,361.010,488.440,175.055,452.391,352.315,487.000,9.398,2.839,9.398,343.438,310.660,361.064,18.378,19.612,18.378 +251,6.310,354.928,499.658,178.017,440.495,349.330,497.873,17.684,0.630,17.684,349.547,308.069,361.297,19.635,19.647,19.635 +252,6.335,350.600,509.300,183.087,429.212,345.877,506.939,26.565,177.754,26.565,350.168,308.469,360.729,25.044,19.397,25.044 +253,6.359,350.600,509.300,183.087,429.212,345.877,506.939,26.565,177.754,26.565,350.168,308.469,360.729,25.044,19.397,25.044 +254,6.385,343.494,520.733,190.676,416.438,339.798,518.139,35.059,174.806,35.059,351.936,308.546,360.968,25.648,17.836,25.648 +255,6.409,333.250,533.250,200.070,405.490,330.140,530.140,45.000,171.870,45.000,351.432,308.581,360.228,24.042,17.961,24.042 +256,6.435,322.668,543.105,211.826,395.665,320.006,539.446,53.973,168.912,53.973,350.771,309.652,359.820,23.012,18.428,23.012 +257,6.459,322.668,543.105,211.826,395.665,320.006,539.446,53.973,168.912,53.973,350.771,309.652,359.820,23.012,18.428,23.012 +258,6.485,309.700,551.400,225.551,388.583,307.772,547.543,63.435,165.568,63.435,349.274,310.692,357.898,21.466,16.912,21.466 +259,6.510,294.993,557.879,240.304,382.100,293.557,553.268,72.696,162.810,72.696,348.862,311.809,358.521,21.239,17.691,21.239 +260,6.535,279.216,561.181,256.338,378.050,278.473,555.905,81.983,160.168,81.983,347.751,313.281,358.407,23.751,18.151,23.751 +261,6.560,279.216,561.181,256.338,378.050,278.473,555.905,81.983,160.168,81.983,347.751,313.281,358.407,23.751,18.151,23.751 +262,6.584,262.705,561.959,272.191,376.773,262.843,555.858,91.298,156.997,91.298,346.296,314.867,358.502,24.152,18.332,24.152 +263,6.609,250.077,559.850,288.700,377.900,251.560,553.162,102.506,153.435,102.506,344.591,316.180,358.292,22.128,18.336,22.128 +264,6.635,234.653,553.653,304.278,381.855,237.224,547.371,112.258,150.137,112.258,343.589,317.656,357.164,19.236,18.465,19.236 +265,6.660,234.653,553.653,304.278,381.855,237.224,547.371,112.258,150.137,112.258,343.589,317.656,357.164,19.236,18.465,19.236 +266,6.685,221.799,546.875,318.958,388.987,225.720,540.578,121.912,147.207,121.912,341.097,319.100,355.933,19.782,19.475,19.782 +267,6.710,210.125,538.790,330.982,397.394,215.766,532.379,131.348,144.825,131.348,337.821,320.638,354.900,19.609,19.524,19.609 +268,6.735,189.417,537.399,341.164,407.223,207.209,522.817,140.664,143.647,140.664,307.747,321.598,353.755,17.580,18.260,17.580 +269,6.759,189.417,537.399,341.164,407.223,207.209,522.817,140.664,143.647,140.664,307.747,321.598,353.755,17.580,18.260,17.580 +270,6.785,131.714,553.704,349.297,418.240,200.500,512.898,149.323,141.996,149.323,192.579,322.228,352.537,17.187,19.919,17.187 +271,6.812,169.389,512.808,356.479,431.474,195.427,501.875,157.222,140.232,157.222,295.015,322.526,351.496,18.700,20.160,18.700 +272,6.836,174.931,496.518,361.043,444.597,192.473,491.970,165.466,137.726,165.466,313.882,322.412,350.127,20.041,21.391,20.041 +273,6.861,174.931,496.518,361.043,444.597,192.473,491.970,165.466,137.726,165.466,313.882,322.412,350.127,20.041,21.391,20.041 +274,6.885,176.928,482.683,363.552,458.507,190.492,481.106,173.367,134.145,173.367,321.716,322.574,349.026,19.127,22.646,19.127 +275,6.910,178.432,470.097,364.280,471.812,190.087,470.351,1.251,130.455,1.251,325.054,323.243,348.368,18.502,24.344,18.502 +276,6.935,181.001,458.736,363.018,484.490,191.115,460.296,8.768,126.437,8.768,326.695,323.209,347.163,19.009,24.983,19.009 +277,6.959,181.001,458.736,363.018,484.490,191.115,460.296,8.768,126.437,8.768,326.695,323.209,347.163,19.009,24.983,19.009 +278,6.985,183.872,448.223,360.100,496.200,192.863,450.761,15.767,122.471,15.767,327.898,322.662,346.583,19.497,25.080,19.497 +279,7.010,188.506,436.721,356.261,506.721,196.685,439.959,21.595,118.369,21.595,328.299,321.517,345.892,25.957,25.148,25.957 +280,7.035,193.561,427.306,351.440,516.973,201.116,431.427,28.610,114.057,28.610,328.652,321.669,345.866,25.858,25.209,25.858 +281,7.059,193.561,427.306,351.440,516.973,201.116,431.427,28.610,114.057,28.610,328.652,321.669,345.866,25.858,25.209,25.858 +282,7.085,198.413,421.172,345.547,526.017,205.037,425.631,33.944,110.106,33.944,329.267,321.065,345.237,26.084,24.432,26.084 +283,7.110,203.847,413.916,339.095,533.886,209.971,419.056,40.006,105.709,40.006,329.465,321.435,345.454,25.482,23.465,25.482 +284,7.135,209.866,407.730,331.808,540.859,215.432,413.460,45.830,101.497,45.830,328.965,321.419,344.941,24.777,21.658,24.777 +285,7.159,209.866,407.730,331.808,540.859,215.432,413.460,45.830,101.497,45.830,328.965,321.419,344.941,24.777,21.658,24.777 +286,7.185,215.634,401.432,324.690,547.270,221.224,408.553,51.866,97.245,51.866,327.898,321.371,346.003,23.531,20.673,23.531 +287,7.210,221.065,396.177,317.057,552.456,226.546,404.587,56.908,92.684,56.908,326.525,321.678,346.602,22.865,18.667,22.865 +288,7.235,226.505,390.858,309.858,557.989,232.411,401.899,61.858,88.290,61.858,323.287,322.424,348.331,22.188,18.156,22.188 +289,7.260,226.505,390.858,309.858,557.989,232.411,401.899,61.858,88.290,61.858,323.287,322.424,348.331,22.188,18.156,22.188 +290,7.284,230.907,382.815,303.115,561.488,237.973,399.203,66.675,84.134,66.675,313.939,323.203,349.631,21.440,18.744,21.440 +291,7.309,231.950,366.850,296.043,564.346,242.204,397.612,71.565,79.979,71.565,285.554,323.589,350.406,17.709,18.805,17.709 +292,7.335,229.017,317.355,288.832,566.671,248.243,395.632,76.201,75.632,76.201,190.360,323.806,351.567,17.821,19.584,17.821 +293,7.359,229.017,317.355,288.832,566.671,248.243,395.632,76.201,75.632,76.201,190.360,323.806,351.567,17.821,19.584,17.821 +294,7.385,253.178,385.991,281.539,568.162,254.603,394.174,80.121,71.730,80.121,335.445,323.823,352.057,18.630,20.477,18.630 +295,7.410,260.053,386.720,275.474,568.795,260.638,393.227,84.864,67.949,84.864,339.317,323.130,352.383,18.465,20.907,18.465 +296,7.435,266.177,386.039,269.000,568.000,266.259,391.990,89.212,63.435,89.212,340.160,321.099,352.063,17.902,20.572,17.902 +297,7.460,266.177,386.039,269.000,568.000,266.259,391.990,89.212,63.435,89.212,340.160,321.099,352.063,17.902,20.572,17.902 +298,7.484,272.899,386.797,260.847,568.134,272.555,392.043,93.752,59.797,93.752,342.445,320.674,352.960,17.929,20.755,17.929 +299,7.509,279.870,387.910,253.142,567.552,279.193,392.651,98.130,55.125,98.130,344.078,320.080,353.656,18.668,21.877,18.668 +300,7.535,286.447,388.488,245.592,565.834,285.396,393.217,102.529,50.711,102.529,344.594,319.082,354.283,18.873,23.359,18.873 +301,7.560,286.447,388.488,245.592,565.834,285.396,393.217,102.529,50.711,102.529,344.594,319.082,354.283,18.873,23.359,18.873 +302,7.585,293.550,389.736,238.003,563.886,292.031,394.608,107.312,46.637,107.312,345.168,318.270,355.373,19.218,24.234,19.218 +303,7.610,300.190,391.276,230.976,560.846,298.146,396.386,111.801,42.530,111.801,344.279,316.977,355.287,18.755,24.274,18.755 +304,7.634,307.100,393.800,223.329,556.963,304.640,398.720,116.565,38.660,116.565,344.802,316.252,355.802,18.783,24.519,18.783 +305,7.659,307.100,393.800,223.329,556.963,304.640,398.720,116.565,38.660,116.565,344.802,316.252,355.802,18.783,24.519,18.783 +306,7.685,313.803,396.685,215.752,552.426,310.807,401.588,121.430,34.992,121.430,345.058,316.305,356.549,18.867,24.577,18.867 +307,7.710,321.220,401.040,209.048,547.473,317.635,405.820,126.870,31.487,126.870,345.000,314.389,356.950,18.800,24.655,18.800 +308,7.734,328.275,405.968,202.441,540.759,324.345,410.305,132.189,28.405,132.189,345.346,313.579,357.051,19.381,24.288,19.381 +309,7.759,328.275,405.968,202.441,540.759,324.345,410.305,132.189,28.405,132.189,345.346,313.579,357.051,19.381,24.288,19.381 +310,7.785,334.486,411.685,195.956,533.498,330.218,415.563,137.738,24.482,137.738,345.823,312.835,357.356,19.227,24.719,19.227 +311,7.810,341.259,418.242,190.034,525.410,336.108,422.040,143.598,20.610,143.598,345.029,311.680,357.830,19.324,23.144,19.324 +312,7.835,348.446,424.600,184.450,516.655,341.006,428.996,149.421,17.956,149.421,341.475,310.588,358.757,19.410,22.320,19.410 +313,7.859,348.446,424.600,184.450,516.655,341.006,428.996,149.421,17.956,149.421,341.475,310.588,358.757,19.410,22.320,19.410 +314,7.884,354.764,432.700,179.706,507.176,345.208,436.992,155.810,14.036,155.810,338.507,309.961,359.458,19.844,20.373,19.844 +315,7.909,362.030,442.239,175.843,497.126,348.835,446.435,162.362,10.376,162.362,332.745,309.932,360.438,20.101,22.361,20.101 +316,7.935,368.102,453.233,173.475,485.688,351.513,456.322,169.452,9.580,169.452,327.061,309.247,360.810,19.547,19.455,19.547 +317,7.959,368.102,453.233,173.475,485.688,351.513,456.322,169.452,9.580,169.452,327.061,309.247,360.810,19.547,19.455,19.547 +318,7.985,382.789,465.263,172.595,473.851,353.015,466.896,176.860,8.302,176.860,301.425,308.590,361.061,18.542,19.459,18.542 +319,8.010,426.746,483.316,172.656,462.365,352.715,478.381,3.814,7.829,3.814,213.060,308.832,361.451,17.960,19.962,17.960 +320,8.035,366.288,492.558,175.385,448.917,351.562,489.612,11.310,7.165,11.310,331.436,309.592,361.473,18.631,19.901,18.631 +321,8.059,366.288,492.558,175.385,448.917,351.562,489.612,11.310,7.165,11.310,331.436,309.592,361.473,18.631,19.901,18.631 +322,8.084,355.786,503.197,178.685,437.008,348.268,500.517,19.620,7.065,19.620,346.163,307.973,362.125,19.737,20.679,19.737 +323,8.110,349.946,512.114,184.320,424.944,344.453,509.149,28.355,5.978,28.355,349.341,308.085,361.825,25.814,20.964,25.814 +324,8.135,341.217,523.925,192.554,413.677,337.638,521.205,37.235,3.731,37.235,352.158,308.106,361.148,25.222,17.333,25.222 +325,8.160,341.217,523.925,192.554,413.677,337.638,521.205,37.235,3.731,37.235,352.158,308.106,361.148,25.222,17.333,25.222 +326,8.185,331.191,535.571,202.937,402.850,328.176,532.355,46.848,1.548,46.848,351.455,308.185,360.271,24.120,17.696,24.120 +327,8.210,318.462,545.779,215.059,393.780,316.137,542.198,57.011,179.105,57.011,350.507,308.119,359.047,22.676,17.654,22.676 +328,8.235,305.359,552.862,229.626,385.888,303.708,549.110,66.251,176.987,66.251,350.273,309.572,358.471,21.638,18.133,21.638 +329,8.260,305.359,552.862,229.626,385.888,303.708,549.110,66.251,176.987,66.251,350.273,309.572,358.471,21.638,18.133,21.638 +330,8.284,289.062,559.223,244.911,380.499,287.868,554.518,75.760,174.898,75.760,348.769,310.995,358.477,23.031,18.622,23.031 +331,8.310,276.058,561.846,261.608,377.851,275.732,556.430,86.555,172.763,86.555,347.358,311.829,358.209,24.558,18.628,24.558 +332,8.335,255.978,560.807,278.543,377.763,256.508,555.261,95.459,170.789,95.459,346.435,313.499,357.578,24.272,18.488,24.272 +333,8.360,255.978,560.807,278.543,377.763,256.508,555.261,95.459,170.789,95.459,346.435,313.499,357.578,24.272,18.488,24.272 +334,8.384,242.677,557.104,295.412,380.147,244.404,551.334,106.658,169.144,106.658,345.201,315.376,357.248,19.221,18.956,19.221 +335,8.410,228.718,550.110,311.378,385.692,231.440,544.732,116.850,167.389,116.850,343.943,317.368,355.999,19.432,18.863,19.432 +336,8.435,216.289,541.596,325.678,393.736,220.065,536.537,126.736,165.719,126.736,342.595,318.710,355.221,19.558,18.889,19.558 +337,8.460,216.289,541.596,325.678,393.736,220.065,536.537,126.736,165.719,126.736,342.595,318.710,355.221,19.558,18.889,19.558 +338,8.484,205.107,532.113,337.922,403.721,210.511,526.999,136.577,164.329,136.577,339.672,320.861,354.553,19.558,19.217,19.558 +339,8.509,195.535,521.552,347.977,416.424,202.796,516.650,145.981,162.933,145.981,335.290,322.318,352.812,19.374,20.067,19.374 +340,8.535,185.705,510.846,355.042,428.082,196.975,505.767,155.743,161.828,155.743,327.332,323.202,352.055,17.846,19.358,17.846 +341,8.559,185.705,510.846,355.042,428.082,196.975,505.767,155.743,161.828,155.743,327.332,323.202,352.055,17.846,19.358,17.846 +342,8.584,114.819,516.089,360.795,441.837,193.119,493.974,164.228,160.560,164.228,188.342,323.446,351.069,17.117,19.193,17.117 +343,8.609,156.914,486.967,363.612,455.468,190.944,482.223,172.064,159.365,172.064,280.698,324.319,349.416,17.954,20.166,17.954 +344,8.635,169.459,471.105,364.871,469.665,190.406,471.314,0.573,158.962,0.573,306.985,324.230,348.880,18.379,20.964,18.379 +345,8.660,169.459,471.105,364.871,469.665,190.406,471.314,0.573,158.962,0.573,306.985,324.230,348.880,18.379,20.964,18.379 +346,8.685,176.273,458.487,363.920,482.801,191.407,460.693,8.291,158.082,8.291,317.207,324.602,347.795,19.254,21.991,19.254 +347,8.710,181.528,447.151,361.371,495.694,193.612,450.604,15.945,157.218,15.945,322.248,324.464,347.383,18.681,23.068,18.681 +348,8.735,186.858,436.640,357.402,507.418,197.208,440.690,21.371,156.371,21.371,324.761,323.919,346.989,26.318,23.648,26.318 +349,8.760,186.858,436.640,357.402,507.418,197.208,440.690,21.371,156.371,21.371,324.761,323.919,346.989,26.318,23.648,26.318 +350,8.784,193.264,426.425,352.481,518.060,202.163,431.369,29.055,155.601,29.055,326.643,323.266,347.004,25.933,24.485,25.933 +351,8.810,198.578,419.095,346.252,527.538,206.413,424.662,35.395,154.885,35.395,327.939,322.966,347.162,25.571,24.787,25.571 +352,8.835,206.192,411.173,339.278,535.578,212.841,417.332,42.809,154.323,42.809,328.097,322.094,346.223,24.812,24.680,24.812 +353,8.860,206.192,411.173,339.278,535.578,212.841,417.332,42.809,154.323,42.809,328.097,322.094,346.223,24.812,24.680,24.812 +354,8.885,212.657,404.679,332.115,542.774,218.582,411.427,48.715,153.869,48.715,329.259,321.578,347.218,24.651,25.375,24.651 +355,8.909,218.931,399.626,324.200,548.900,224.158,406.909,54.335,153.435,54.335,329.449,320.652,347.377,23.035,25.044,23.035 +356,8.935,225.898,395.271,315.991,553.969,230.254,402.836,60.068,153.113,60.068,330.052,320.243,347.511,22.506,25.086,22.506 +357,8.960,225.898,395.271,315.991,553.969,230.254,402.836,60.068,153.113,60.068,330.052,320.243,347.511,22.506,25.086,22.506 +358,8.985,232.761,391.509,307.369,558.128,236.312,399.277,65.433,152.745,65.433,330.945,319.815,348.027,21.542,24.433,21.542 +359,9.010,239.799,388.524,298.915,561.268,242.555,396.426,70.769,152.650,70.769,331.678,318.993,348.416,20.707,24.533,20.707 +360,9.036,246.600,386.093,290.270,563.522,248.674,394.251,75.735,152.700,75.735,331.768,318.527,348.603,19.613,24.681,19.613 +361,9.060,246.600,386.093,290.270,563.522,248.674,394.251,75.735,152.700,75.735,331.768,318.527,348.603,19.613,24.681,19.613 +362,9.085,254.035,384.180,281.688,565.293,255.353,392.566,81.069,152.605,81.069,332.463,318.506,349.441,18.812,24.691,18.812 +363,9.110,261.731,382.783,272.963,565.898,262.306,391.326,86.149,152.745,86.149,332.661,317.633,349.787,18.506,24.245,18.506 +364,9.136,269.181,382.529,264.591,566.614,269.030,391.285,90.988,152.700,90.988,333.244,317.180,350.759,18.066,24.165,18.066 +365,9.161,269.181,382.529,264.591,566.614,269.030,391.285,90.988,152.700,90.988,333.244,317.180,350.759,18.066,24.165,18.066 +366,9.186,276.932,382.151,255.876,565.735,275.977,391.214,96.009,152.888,96.009,333.107,316.703,351.334,18.425,22.815,18.425 +367,9.211,285.356,382.360,247.353,564.193,283.492,391.964,100.981,152.987,100.981,332.354,316.219,351.919,19.121,21.591,19.121 +368,9.235,293.571,384.042,238.700,561.900,290.885,393.252,106.260,153.435,106.260,333.840,315.286,353.028,19.200,21.019,19.200 +369,9.259,293.571,384.042,238.700,561.900,290.885,393.252,106.260,153.435,106.260,333.840,315.286,353.028,19.200,21.019,19.200 +370,9.285,301.893,385.219,230.484,558.871,297.948,395.299,111.371,154.486,111.371,332.170,315.007,353.819,19.070,20.613,19.070 +371,9.310,310.467,388.009,222.492,554.889,305.391,398.031,116.858,155.433,116.858,332.312,314.470,354.780,19.118,19.956,19.118 +372,9.335,318.500,391.000,214.405,549.873,312.012,401.380,122.005,157.380,122.005,330.825,314.385,355.307,19.080,19.769,19.080 +373,9.360,318.500,391.000,214.405,549.873,312.012,401.380,122.005,157.380,122.005,330.825,314.385,355.307,19.080,19.769,19.080 +374,9.385,327.537,395.518,206.931,544.476,319.211,406.255,127.794,159.513,127.794,328.893,313.441,356.066,19.772,19.394,19.772 +375,9.410,336.114,400.821,200.157,538.378,325.832,411.727,133.311,162.181,133.311,326.750,313.081,356.728,20.396,19.857,20.396 +376,9.438,344.449,406.392,193.679,530.846,331.906,417.300,138.991,165.401,138.991,324.382,312.373,357.628,20.013,19.417,20.013 +377,9.463,344.449,406.392,193.679,530.846,331.906,417.300,138.991,165.401,138.991,324.382,312.373,357.628,20.013,19.417,20.013 +378,9.486,354.072,411.712,187.791,523.054,337.167,423.724,144.605,169.397,144.605,317.127,311.384,358.602,20.251,18.971,20.251 +379,9.512,360.807,421.552,183.182,514.407,342.535,431.703,150.945,174.130,150.945,317.125,310.755,358.928,20.786,18.938,20.786 +380,9.536,364.055,431.743,178.977,505.087,346.434,439.379,156.571,179.449,156.571,321.144,310.014,359.554,22.388,17.730,22.388 +381,9.560,364.055,431.743,178.977,505.087,346.434,439.379,156.571,179.449,156.571,321.144,310.014,359.554,22.388,17.730,22.388 +382,9.584,364.795,442.774,175.599,495.069,349.337,447.458,163.142,6.096,163.142,327.853,309.512,360.157,20.272,18.661,20.272 +383,9.609,365.810,454.592,173.705,484.030,351.974,457.034,169.992,13.360,169.992,332.393,308.980,360.494,19.638,19.264,19.638 +384,9.635,364.293,466.688,173.293,472.847,353.369,467.250,177.056,21.073,177.056,338.376,307.717,360.252,18.844,20.323,18.844 +385,9.660,364.293,466.688,173.293,472.847,353.369,467.250,177.056,21.073,177.056,338.376,307.717,360.252,18.844,20.323,18.844 +386,9.685,361.224,478.449,174.313,461.643,353.545,477.912,4.000,30.081,4.000,344.466,306.725,359.861,18.793,20.886,18.793 +387,9.710,359.917,489.950,175.341,450.096,352.009,488.379,11.237,39.750,11.237,345.356,307.667,361.482,19.409,21.528,19.409 +388,9.735,355.229,501.260,178.798,438.565,348.942,499.135,18.673,48.475,18.673,347.887,307.543,361.161,19.759,23.809,19.759 +389,9.760,355.229,501.260,178.798,438.565,348.942,499.135,18.673,48.475,18.673,347.887,307.543,361.161,19.759,23.809,19.759 +390,9.784,352.000,510.000,184.575,428.128,346.456,507.228,26.565,59.621,26.565,347.932,308.995,360.330,25.044,21.627,25.044 +391,9.810,345.224,521.136,190.026,415.991,339.868,517.476,34.346,71.689,34.346,348.972,309.288,361.946,25.540,18.905,25.540 +392,9.836,335.698,533.897,198.403,405.389,330.542,528.910,44.045,82.965,44.045,347.365,310.715,361.711,24.757,18.173,24.757 +393,9.861,335.698,533.897,198.403,405.389,330.542,528.910,44.045,82.965,44.045,347.365,310.715,361.711,24.757,18.173,24.757 +394,9.885,326.890,541.488,208.607,396.426,322.771,536.339,51.340,94.736,51.340,347.955,310.670,361.143,23.270,18.452,23.270 +395,9.910,315.631,549.554,220.302,387.833,312.113,543.488,59.886,106.563,59.886,347.397,312.923,361.420,22.577,18.902,22.577 +396,9.935,302.480,556.312,233.814,382.296,300.008,550.019,68.552,119.249,68.552,347.104,313.614,360.625,20.742,18.323,20.742 +397,9.960,302.480,556.312,233.814,382.296,300.008,550.019,68.552,119.249,68.552,347.104,313.614,360.625,20.742,18.323,20.742 +398,9.985,287.623,560.326,247.064,377.555,286.039,553.631,76.686,130.521,76.686,346.878,314.445,360.638,22.560,19.258,22.560 +399,10.010,273.355,562.262,261.298,375.543,272.792,555.510,85.236,142.568,85.236,347.047,315.034,360.599,22.754,19.401,22.754 +400,10.035,258.848,561.558,275.820,375.726,259.332,554.460,93.900,154.601,93.900,344.654,314.973,358.883,23.219,19.899,23.219 +401,10.060,258.848,561.558,275.820,375.726,259.332,554.460,93.900,154.601,93.900,344.654,314.973,358.883,23.219,19.899,23.219 +402,10.084,247.346,558.731,290.136,378.164,248.770,552.629,103.134,166.580,103.134,346.071,315.560,358.602,20.353,19.693,20.353 +403,10.109,235.073,553.530,303.566,382.908,237.251,548.143,112.011,178.698,112.011,344.471,315.237,356.091,19.075,18.881,19.075 +404,10.135,224.231,547.342,316.054,389.325,226.950,542.704,120.379,10.856,120.379,344.008,315.605,354.762,19.842,19.884,19.842 +405,10.160,224.231,547.342,316.054,389.325,226.950,542.704,120.379,10.856,120.379,344.008,315.605,354.762,19.842,19.884,19.842 +406,10.186,214.476,539.781,326.623,397.231,217.565,535.918,128.660,23.078,128.660,342.958,315.670,352.850,19.834,20.239,19.834 +407,10.210,205.554,531.586,337.170,403.986,210.181,527.210,136.606,34.114,136.606,341.128,317.066,353.865,19.633,24.784,19.633 +408,10.236,198.319,522.444,344.408,414.582,203.087,519.022,144.331,45.526,144.331,339.676,316.900,351.415,19.255,24.365,19.255 +409,10.266,192.612,512.709,351.344,424.786,197.949,509.835,151.699,58.151,151.699,338.643,317.588,350.764,19.032,24.621,19.032 +410,10.299,187.808,503.286,356.152,435.445,194.095,500.825,158.620,70.168,158.620,335.975,317.907,349.479,19.959,24.782,19.959 +411,10.325,187.808,503.286,356.152,435.445,194.095,500.825,158.620,70.168,158.620,335.975,317.907,349.479,19.959,24.782,19.959 +412,10.352,184.685,493.996,359.540,445.845,191.625,492.166,165.228,82.011,165.228,333.997,318.336,348.351,20.710,24.080,20.710 +413,10.376,181.990,484.430,361.972,455.891,190.174,483.261,171.870,94.086,171.870,331.350,318.831,347.884,19.233,24.010,19.233 +414,10.405,180.623,474.996,363.631,466.471,189.848,474.672,177.990,106.113,177.990,329.464,320.323,347.926,18.199,25.470,18.199 +415,10.431,180.623,474.996,363.631,466.471,189.848,474.672,177.990,106.113,177.990,329.464,320.323,347.926,18.199,25.470,18.199 +416,10.454,180.708,466.488,363.895,476.081,190.248,467.109,3.719,118.113,3.719,328.607,321.296,347.727,19.194,25.289,19.194 +417,10.479,181.333,458.119,362.930,485.543,191.151,459.710,9.204,130.061,9.204,327.506,322.757,347.399,18.728,25.013,18.728 +418,10.504,182.159,450.326,361.773,493.760,192.844,453.027,14.184,141.879,14.184,325.479,323.010,347.520,19.412,24.697,19.412 +419,10.529,182.159,450.326,361.773,493.760,192.844,453.027,14.184,141.879,14.184,325.479,323.010,347.520,19.412,24.697,19.412 +420,10.553,183.906,442.187,359.882,501.319,194.969,446.081,19.392,153.759,19.392,324.341,323.366,347.797,19.582,23.662,19.582 +421,10.578,186.560,435.297,357.292,508.655,197.644,439.832,22.249,165.805,22.249,323.689,324.276,347.641,25.284,23.347,25.284 +422,10.602,189.100,428.800,354.564,514.648,200.455,434.478,26.565,177.773,26.565,321.994,323.611,347.385,25.491,21.190,25.491 +423,10.627,189.100,428.800,354.564,514.648,200.455,434.478,26.565,177.773,26.565,321.994,323.611,347.385,25.491,21.190,25.491 +424,10.653,191.729,421.633,351.269,520.339,203.500,428.982,31.979,9.782,31.979,319.700,324.216,347.455,26.506,20.083,26.506 +425,10.678,190.971,418.091,348.335,524.953,204.783,427.024,32.893,21.535,32.893,314.542,324.379,347.441,25.926,20.406,25.926 +426,10.703,179.994,402.189,344.383,531.167,208.170,422.890,36.304,33.760,36.304,277.832,324.779,347.759,22.548,18.912,22.548 +427,10.728,179.994,402.189,344.383,531.167,208.170,422.890,36.304,33.760,36.304,277.832,324.779,347.759,22.548,18.912,22.548 +428,10.753,189.339,404.309,340.153,535.792,209.291,421.650,40.996,46.174,40.996,294.426,324.019,347.295,17.938,18.738,17.938 +429,10.779,202.116,408.092,336.574,539.063,212.536,417.619,42.436,58.700,42.436,318.744,323.814,346.981,24.692,19.222,24.692 +430,10.804,207.500,407.500,332.886,541.867,214.938,414.938,45.000,71.017,45.000,325.269,322.923,346.308,24.042,18.980,24.042 +431,10.830,207.500,407.500,332.886,541.867,214.938,414.938,45.000,71.017,45.000,325.269,322.923,346.308,24.042,18.980,24.042 +432,10.853,210.865,404.932,329.579,543.991,217.386,412.084,47.643,83.157,47.643,326.771,322.367,346.127,24.755,19.500,24.755 +433,10.880,213.951,403.316,326.726,545.523,219.325,409.810,50.389,95.807,50.389,329.197,321.107,346.056,24.068,20.167,24.068 +434,10.904,215.919,401.544,324.500,547.337,221.232,408.337,51.973,108.516,51.973,328.973,322.239,346.221,23.520,22.257,23.520 +435,10.929,215.919,401.544,324.500,547.337,221.232,408.337,51.973,108.516,51.973,328.973,322.239,346.221,23.520,22.257,23.520 +436,10.953,218.054,400.508,323.073,547.945,222.974,407.174,53.569,121.003,53.569,328.841,320.529,345.410,23.352,23.948,23.352 +437,10.978,219.535,399.165,321.916,548.891,224.396,406.083,54.904,133.221,54.904,328.913,319.941,345.825,23.108,24.171,23.108 +438,11.003,221.286,397.970,321.126,550.409,226.107,405.171,56.203,145.472,56.203,329.767,319.884,347.099,23.604,25.137,23.604 +439,11.028,221.286,397.970,321.126,550.409,226.107,405.171,56.203,145.472,56.203,329.767,319.884,347.099,23.604,25.137,23.604 +440,11.052,222.637,397.235,320.060,551.585,227.391,404.590,57.119,157.706,57.119,329.998,320.156,347.513,23.650,25.204,23.650 +441,11.078,223.640,397.225,319.159,552.659,228.108,404.374,57.995,169.791,57.995,331.143,320.647,348.004,22.684,24.945,22.684 +442,11.102,224.852,397.394,318.403,553.478,228.970,404.163,58.684,1.873,58.684,332.244,321.253,348.090,22.684,25.122,22.684 +443,11.127,224.852,397.394,318.403,553.478,228.970,404.163,58.684,1.873,58.684,332.244,321.253,348.090,22.684,25.122,22.684 +444,11.152,225.936,397.336,317.746,554.062,229.826,403.868,59.230,13.470,59.230,332.854,322.134,348.060,23.265,24.033,23.265 +445,11.176,226.795,398.207,316.717,553.851,229.781,403.297,59.601,24.842,59.601,335.890,323.865,347.694,22.644,23.493,22.644 +446,11.203,227.146,397.495,316.160,554.778,230.374,403.058,59.880,35.789,59.880,335.702,324.093,348.565,23.064,21.185,23.064 +447,11.228,227.146,397.495,316.160,554.778,230.374,403.058,59.880,35.789,59.880,335.702,324.093,348.565,23.064,21.185,23.064 +448,11.253,226.251,396.516,315.644,555.836,230.331,403.542,59.859,45.686,59.859,332.832,323.252,349.082,22.568,19.577,22.568 +449,11.278,220.893,387.758,314.382,556.583,230.308,403.528,59.162,54.854,59.162,312.295,323.852,349.028,20.902,19.069,20.902 +450,11.302,202.826,357.609,313.780,556.617,229.232,404.046,60.376,63.850,60.376,242.004,322.932,348.842,17.778,18.387,17.778 +451,11.327,202.826,357.609,313.780,556.617,229.232,404.046,60.376,63.850,60.376,242.004,322.932,348.842,17.778,18.387,17.778 +452,11.352,219.813,385.122,313.227,556.627,230.188,403.421,60.450,73.108,60.450,306.391,322.776,348.463,20.652,18.255,20.652 +453,11.377,223.883,391.690,313.022,556.179,230.453,403.109,60.086,83.089,60.086,321.361,322.368,347.709,22.477,18.651,22.477 +454,11.403,224.307,393.672,313.348,554.928,229.722,402.877,59.534,93.576,59.534,325.558,321.186,346.916,23.171,18.402,23.171 +455,11.428,224.307,393.672,313.348,554.928,229.722,402.877,59.534,93.576,59.534,325.558,321.186,346.916,23.171,18.402,23.171 +456,11.453,223.955,395.769,314.025,553.985,228.576,403.309,58.496,104.604,58.496,328.554,322.132,346.239,23.048,21.916,23.048 +457,11.478,222.558,397.091,317.336,552.166,227.102,404.210,57.450,116.222,57.450,329.636,320.247,346.529,22.867,22.441,22.867 +458,11.504,221.115,397.923,319.721,550.671,225.920,405.129,56.310,127.659,56.310,328.937,319.789,346.259,23.020,23.784,23.020 +459,11.527,221.115,397.923,319.721,550.671,225.920,405.129,56.310,127.659,56.310,328.937,319.789,346.259,23.020,23.784,23.020 +460,11.552,219.593,399.306,322.534,549.270,224.655,406.441,54.648,139.086,54.648,328.755,319.757,346.252,23.618,24.887,23.618 +461,11.577,217.591,400.674,325.294,547.790,222.886,407.710,53.039,150.524,53.039,329.398,320.026,347.010,24.011,24.906,24.011 +462,11.602,215.693,403.149,328.150,546.027,221.061,409.818,51.170,162.216,51.170,329.389,320.358,346.510,23.617,25.153,23.617 +463,11.627,215.693,403.149,328.150,546.027,221.061,409.818,51.170,162.216,51.170,329.389,320.358,346.510,23.617,25.153,23.617 +464,11.652,213.438,404.621,331.341,544.056,219.233,411.307,49.086,173.632,49.086,329.783,320.918,347.479,24.434,24.331,24.434 +465,11.677,210.953,407.044,334.178,541.486,216.988,413.456,46.736,5.285,46.736,329.489,322.399,347.098,24.802,22.964,24.802 +466,11.702,206.895,409.630,337.569,538.274,213.956,416.419,43.877,17.008,43.877,327.535,323.274,347.127,24.730,22.174,24.730 +467,11.726,206.895,409.630,337.569,538.274,213.956,416.419,43.877,17.008,43.877,327.535,323.274,347.127,24.730,22.174,24.730 +468,11.752,203.294,410.732,340.501,534.926,212.018,418.469,41.566,28.318,41.566,323.471,324.963,346.793,24.591,20.704,24.591 +469,11.777,144.829,374.436,343.263,532.480,207.486,424.163,38.437,39.883,38.437,187.393,324.698,347.377,17.879,19.510,17.879 +470,11.803,195.664,419.375,345.456,528.739,205.581,426.161,34.380,51.464,34.380,322.695,324.053,346.727,24.716,19.299,24.716 +471,11.828,195.664,419.375,345.456,528.739,205.581,426.161,34.380,51.464,34.380,322.695,324.053,346.727,24.716,19.299,24.716 +472,11.853,196.268,424.441,347.542,523.739,203.008,428.516,31.159,63.255,31.159,330.153,322.913,345.905,25.752,19.344,25.752 +473,11.879,194.058,429.233,351.283,517.641,200.569,432.685,27.934,75.343,27.934,331.164,322.134,345.904,25.005,21.984,25.005 +474,11.904,190.869,434.552,354.284,510.909,197.645,437.498,23.499,87.089,23.499,331.062,320.857,345.840,25.917,23.292,25.917 +475,11.929,190.869,434.552,354.284,510.909,197.645,437.498,23.499,87.089,23.499,331.062,320.857,345.840,25.917,23.292,25.917 +476,11.952,186.717,443.032,357.275,503.117,194.269,445.682,19.335,98.584,19.335,329.647,320.371,345.656,19.153,24.645,19.153 +477,11.977,183.824,450.711,360.130,494.986,192.233,452.826,14.121,110.556,14.121,328.878,320.108,346.219,19.652,25.281,19.652 +478,12.006,181.576,458.105,362.513,486.974,191.067,459.650,9.246,122.755,9.246,327.985,321.210,347.218,18.707,25.724,18.707 +479,12.031,181.576,458.105,362.513,486.974,191.067,459.650,9.246,122.755,9.246,327.985,321.210,347.218,18.707,25.724,18.707 +480,12.054,178.863,466.064,364.020,477.505,190.439,466.830,3.789,134.712,3.789,324.613,321.747,347.815,18.688,24.731,18.688 +481,12.080,175.038,474.446,364.638,467.697,190.298,474.045,178.493,146.136,178.493,318.363,322.553,348.894,18.362,23.676,18.362 +482,12.105,163.292,486.123,363.785,457.164,190.857,482.328,172.161,156.801,172.161,293.837,323.014,349.487,18.140,20.615,18.140 +483,12.130,163.292,486.123,363.785,457.164,190.857,482.328,172.161,156.801,172.161,293.837,323.014,349.487,18.140,20.615,18.140 +484,12.153,114.853,509.412,362.205,446.905,192.255,490.061,165.964,167.215,165.964,191.118,324.099,350.686,17.220,20.221,17.220 +485,12.178,185.938,503.024,359.568,438.668,194.891,499.613,159.146,176.647,159.146,332.010,323.792,351.171,20.292,20.024,20.292 +486,12.203,191.950,511.952,354.803,428.591,198.120,508.712,152.301,7.054,152.301,338.001,322.490,351.939,20.276,18.972,20.276 +487,12.229,191.950,511.952,354.803,428.591,198.120,508.712,152.301,7.054,152.301,338.001,322.490,351.939,20.276,18.972,20.276 +488,12.253,196.806,521.489,347.926,418.795,202.559,517.538,145.521,18.056,145.521,337.499,320.996,351.459,19.317,19.395,19.317 +489,12.278,204.834,529.816,339.251,408.561,208.629,526.393,137.951,28.983,137.951,341.611,319.353,351.833,19.685,20.934,19.685 +490,12.303,212.427,538.594,329.698,397.760,216.421,533.863,130.170,39.588,130.170,341.759,317.802,354.142,19.421,24.349,19.421 +491,12.328,212.427,538.594,329.698,397.760,216.421,533.863,130.170,39.588,130.170,341.759,317.802,354.142,19.421,24.349,19.421 +492,12.353,221.661,545.858,323.889,396.671,224.068,542.028,122.152,49.821,122.152,343.323,297.904,352.372,18.820,25.451,18.820 +493,12.378,232.257,552.717,314.997,398.411,232.909,551.240,113.806,61.390,113.806,342.691,279.091,345.919,18.810,24.980,18.810 +494,12.402,243.164,561.819,298.587,397.624,243.757,559.656,105.345,73.301,105.345,337.042,273.555,341.530,19.417,22.413,19.417 +495,12.428,243.164,561.819,298.587,397.624,243.757,559.656,105.345,73.301,105.345,337.042,273.555,341.530,19.417,22.413,19.417 +496,12.453,253.154,581.188,278.571,388.404,255.552,560.062,96.476,84.904,96.476,303.795,288.619,346.317,22.198,18.779,22.198 +497,12.478,269.289,569.148,261.756,375.634,268.961,555.363,88.636,94.927,88.636,332.120,315.588,359.698,19.852,23.808,19.852 +498,12.502,282.591,562.296,251.245,376.792,281.171,554.429,79.771,105.376,79.771,344.267,313.993,360.255,22.457,20.610,22.457 +499,12.528,282.591,562.296,251.245,376.792,281.171,554.429,79.771,105.376,79.771,344.267,313.993,360.255,22.457,20.610,22.457 +500,12.552,297.007,558.006,238.251,380.671,294.951,551.737,71.842,117.474,71.842,347.238,314.820,360.434,20.510,18.738,20.510 +501,12.578,310.328,551.824,225.261,386.224,307.583,546.376,63.262,127.329,63.262,347.932,314.801,360.131,22.225,18.661,22.225 +502,12.603,321.766,544.720,213.289,393.819,318.462,539.989,55.074,137.842,55.074,348.576,314.020,360.115,23.756,19.715,23.756 +503,12.627,321.766,544.720,213.289,393.819,318.462,539.989,55.074,137.842,55.074,348.576,314.020,360.115,23.756,19.715,23.756 +504,12.653,331.152,536.141,202.593,402.621,327.757,532.488,47.090,148.713,47.090,350.698,313.157,360.672,24.149,19.504,24.149 +505,12.678,339.267,526.239,193.790,413.080,336.117,523.684,39.046,159.193,39.046,352.311,311.769,360.423,25.319,17.873,25.319 +506,12.703,346.253,516.029,186.311,422.865,342.514,513.727,31.621,170.538,31.621,352.519,310.385,361.301,25.814,18.906,25.814 +507,12.728,346.253,516.029,186.311,422.865,342.514,513.727,31.621,170.538,31.621,352.519,310.385,361.301,25.814,18.906,25.814 +508,12.753,352.195,506.695,181.043,432.787,346.974,504.309,24.558,2.017,24.558,349.811,308.161,361.294,25.401,20.332,25.401 +509,12.778,365.876,502.760,177.711,441.453,349.446,497.507,17.728,11.232,17.728,326.798,309.071,361.296,19.370,19.784,19.370 +510,12.803,372.213,492.331,175.281,451.802,351.982,488.174,11.611,21.922,11.611,319.503,306.037,360.811,18.329,19.878,18.329 +511,12.827,372.213,492.331,175.281,451.802,351.982,488.174,11.611,21.922,11.611,319.503,306.037,360.811,18.329,19.878,18.329 +512,12.853,360.143,480.367,174.159,461.465,353.439,479.748,5.274,32.471,5.274,346.940,306.479,360.405,19.119,20.555,19.119 +513,12.878,359.040,470.492,173.563,471.959,353.800,470.552,179.344,43.589,179.344,350.000,306.346,360.482,18.953,20.211,18.953 +514,12.903,358.764,461.928,174.759,481.670,353.506,462.499,173.797,54.841,173.797,348.966,309.826,359.544,19.040,19.707,19.040 +515,12.928,358.764,461.928,174.759,481.670,353.506,462.499,173.797,54.841,173.797,348.966,309.826,359.544,19.040,19.707,19.040 +516,12.952,357.043,452.757,175.448,489.379,351.754,453.835,168.478,66.801,168.478,348.909,310.934,359.705,21.338,19.171,21.338 +517,12.977,354.441,446.304,177.354,497.635,350.063,447.610,163.386,78.871,163.386,350.465,312.406,359.603,20.324,19.013,20.324 +518,13.003,351.440,439.550,179.000,505.500,347.173,441.198,158.884,90.000,158.884,350.943,313.000,360.092,20.227,18.000,20.227 +519,13.028,351.440,439.550,179.000,505.500,347.173,441.198,158.884,90.000,158.884,350.943,313.000,360.092,20.227,18.000,20.227 +520,13.052,347.598,434.056,181.085,511.920,344.349,435.604,154.527,101.389,154.527,353.235,314.764,360.431,20.849,19.359,20.849 +521,13.077,344.817,429.392,183.139,517.470,341.440,431.286,150.713,112.426,150.713,352.707,314.933,360.453,19.124,19.427,19.124 +522,13.103,342.785,424.130,186.602,522.728,338.717,426.774,146.985,123.591,146.985,349.965,315.075,359.668,19.499,20.695,19.499 +523,13.128,342.785,424.130,186.602,522.728,338.717,426.774,146.985,123.591,146.985,349.965,315.075,359.668,19.499,20.695,19.499 +524,13.152,341.173,419.003,188.929,526.399,335.844,422.901,143.815,134.384,143.815,346.156,314.728,359.363,18.952,18.703,18.952 +525,13.178,393.158,370.315,191.718,530.088,332.730,419.122,141.072,145.620,141.072,203.491,313.400,358.846,18.042,19.112,18.042 +526,13.203,351.144,397.227,195.070,533.001,330.217,415.770,138.457,156.714,138.457,301.873,312.642,357.795,17.963,19.615,17.963 +527,13.228,351.144,397.227,195.070,533.001,330.217,415.770,138.457,156.714,138.457,301.873,312.642,357.795,17.963,19.615,17.963 +528,13.253,337.618,404.647,198.046,535.713,328.350,413.680,135.738,167.845,135.738,331.099,311.984,356.981,19.379,19.522,19.379 +529,13.279,332.061,404.920,201.043,538.597,326.033,411.240,133.647,178.819,133.647,339.383,310.285,356.852,19.148,20.552,19.148 +530,13.303,328.370,404.039,203.469,541.178,323.666,409.356,131.496,9.841,131.496,342.551,312.054,356.748,19.330,22.591,19.330 +531,13.328,328.370,404.039,203.469,541.178,323.666,409.356,131.496,9.841,131.496,342.551,312.054,356.748,19.330,22.591,19.330 +532,13.353,325.600,403.174,205.534,543.075,321.751,407.778,129.898,20.556,129.898,344.682,313.319,356.685,18.903,25.749,18.903 +533,13.377,323.158,402.520,206.882,545.504,319.579,407.047,128.333,31.608,128.333,345.471,314.917,357.013,19.173,25.091,19.173 +534,13.403,321.522,401.517,208.674,547.426,318.089,406.042,127.185,41.730,127.185,346.176,314.493,357.536,18.873,24.507,18.873 +535,13.429,321.522,401.517,208.674,547.426,318.089,406.042,127.185,41.730,127.185,346.176,314.493,357.536,18.873,24.507,18.873 +536,13.453,319.969,400.878,210.018,548.876,316.713,405.321,126.232,51.988,126.232,346.703,315.381,357.719,18.719,24.560,18.719 +537,13.479,318.597,400.505,212.752,549.113,316.148,403.958,125.340,62.755,125.340,347.962,316.663,356.429,18.881,21.006,18.881 +538,13.503,317.696,400.593,212.938,550.227,315.299,404.039,124.824,72.417,124.824,348.528,317.287,356.923,18.881,21.133,18.881 +539,13.528,317.696,400.593,212.938,550.227,315.299,404.039,124.824,72.417,124.824,348.528,317.287,356.923,18.881,21.133,18.881 +540,13.553,316.763,400.472,212.289,550.583,314.458,403.847,124.330,83.367,124.330,349.415,317.512,357.588,18.792,19.935,18.792 +541,13.578,316.526,400.321,211.885,550.578,314.175,403.786,124.166,93.221,124.166,349.431,317.792,357.806,18.768,19.467,18.768 +542,13.604,317.154,400.728,212.142,550.371,314.853,404.068,124.563,102.724,124.563,349.387,318.025,357.499,18.684,20.579,18.684 +543,13.628,317.154,400.728,212.142,550.371,314.853,404.068,124.563,102.724,124.563,349.387,318.025,357.499,18.684,20.579,18.684 +544,13.653,317.894,400.535,211.069,549.413,315.384,404.145,124.817,111.105,124.817,348.850,317.914,357.643,18.595,20.033,18.595 +545,13.678,320.542,399.090,208.437,547.630,316.379,404.871,125.763,119.100,125.763,343.603,317.128,357.851,18.200,19.990,18.200 +546,13.703,364.677,343.611,207.577,546.422,317.508,405.521,127.304,126.721,127.304,201.737,316.398,357.400,17.878,18.977,17.878 +547,13.728,364.677,343.611,207.577,546.422,317.508,405.521,127.304,126.721,127.304,201.737,316.398,357.400,17.878,18.977,17.878 +548,13.753,367.976,345.780,205.570,545.040,319.101,406.873,128.660,134.449,128.660,201.152,314.709,357.626,17.804,19.241,17.804 +549,13.778,343.787,380.869,203.500,542.500,320.970,407.712,130.365,143.130,130.365,287.099,314.200,357.559,18.020,19.800,18.020 +550,13.803,338.317,393.393,201.583,540.112,323.797,409.728,131.634,152.319,131.634,313.580,313.251,357.290,19.267,19.497,19.267 +551,13.828,338.317,393.393,201.583,540.112,323.797,409.728,131.634,152.319,131.634,313.580,313.251,357.290,19.267,19.497,19.267 +552,13.852,335.963,400.746,200.034,538.040,325.973,411.314,133.390,162.290,133.390,328.127,312.432,357.212,19.649,19.709,19.649 +553,13.878,335.250,405.250,198.469,536.282,327.547,412.953,135.000,171.957,135.000,335.169,311.977,356.956,19.092,19.696,19.092 +554,13.903,336.800,409.071,196.511,533.783,330.288,415.090,137.255,2.891,137.255,339.872,311.815,357.609,19.706,21.266,19.706 +555,13.928,336.800,409.071,196.511,533.783,330.288,415.090,137.255,2.891,137.255,339.872,311.815,357.609,19.706,21.266,19.706 +556,13.953,337.289,413.180,194.176,531.231,332.254,417.481,139.497,14.744,139.497,344.497,311.449,357.740,19.437,23.566,19.437 +557,13.978,338.948,416.628,191.300,527.905,334.467,420.135,141.953,26.227,141.953,346.947,312.615,358.328,19.003,24.537,19.003 +558,14.003,341.223,419.912,188.350,525.199,336.515,423.275,144.462,37.060,144.462,348.045,312.426,359.617,19.646,23.720,19.646 +559,14.028,341.223,419.912,188.350,525.199,336.515,423.275,144.462,37.060,144.462,348.045,312.426,359.617,19.646,23.720,19.646 +560,14.053,344.539,424.356,185.509,521.437,339.295,427.662,147.771,48.327,147.771,347.804,312.080,360.203,19.898,24.428,19.898 +561,14.078,346.764,428.075,184.632,516.004,342.377,430.513,150.945,59.859,150.945,348.789,314.197,358.826,19.329,19.779,19.329 +562,14.103,349.158,433.330,181.969,510.188,345.060,435.294,154.398,72.165,154.398,349.792,312.808,358.881,20.385,18.550,20.385 +563,14.128,349.158,433.330,181.969,510.188,345.060,435.294,154.398,72.165,154.398,349.792,312.808,358.881,20.385,18.550,20.385 +564,14.152,351.405,438.987,179.307,504.241,347.415,440.556,158.532,83.606,158.532,350.929,313.520,359.504,20.139,18.719,20.139 +565,14.177,353.548,445.543,176.757,498.022,349.440,446.820,162.741,94.927,162.741,351.597,313.338,360.199,20.184,18.449,20.184 +566,14.203,355.469,452.587,174.681,490.335,351.247,453.516,167.593,105.824,167.593,352.061,313.733,360.707,19.435,19.252,19.435 +567,14.228,355.469,452.587,174.681,490.335,351.247,453.516,167.593,105.824,167.593,352.061,313.733,360.707,19.435,19.252,19.435 +568,14.253,356.808,460.025,173.582,482.301,352.607,460.573,172.569,116.847,172.569,352.191,313.079,360.663,19.746,19.816,19.746 +569,14.278,356.985,469.029,172.816,473.460,353.034,469.156,178.160,128.797,178.160,352.621,312.025,360.527,18.280,18.567,18.280 +570,14.303,357.544,477.844,173.411,464.379,353.545,477.574,3.859,140.057,3.859,353.209,311.518,361.226,19.024,19.834,19.024 +571,14.328,357.544,477.844,173.411,464.379,353.545,477.574,3.859,140.057,3.859,353.209,311.518,361.226,19.024,19.834,19.024 +572,14.352,356.225,486.677,174.713,454.495,352.550,486.051,9.660,150.231,9.660,353.763,310.584,361.220,19.087,21.042,19.087 +573,14.377,354.313,496.409,177.173,444.908,350.548,495.329,16.015,161.012,16.015,353.281,309.624,361.115,19.339,20.600,19.339 +574,14.403,352.499,503.418,180.596,434.250,348.217,501.626,22.714,172.011,22.714,351.986,309.145,361.272,25.785,19.736,25.785 +575,14.431,352.499,503.418,180.596,434.250,348.217,501.626,22.714,172.011,22.714,351.986,309.145,361.272,25.785,19.736,25.785 +576,14.463,347.926,513.763,185.867,423.567,343.744,511.368,29.792,2.968,29.792,351.632,308.726,361.270,25.061,18.886,25.061 +577,14.489,342.309,524.271,192.471,413.118,337.768,520.856,36.948,14.036,36.948,350.396,308.505,361.759,25.007,18.918,25.007 +578,14.515,334.250,534.250,200.566,403.718,329.821,529.821,45.000,23.824,45.000,348.604,308.652,361.131,24.042,20.672,24.042 +579,14.540,325.872,544.568,209.750,395.250,320.834,537.892,52.958,35.538,52.958,344.818,309.335,361.546,23.087,20.925,23.087 +580,14.570,315.382,553.288,220.597,389.825,310.911,545.239,60.945,45.953,60.945,341.019,307.772,359.434,21.951,20.898,21.951 +581,14.596,315.382,553.288,220.597,389.825,310.911,545.239,60.945,45.953,60.945,341.019,307.772,359.434,21.951,20.898,21.951 +582,14.620,304.100,564.304,231.589,384.138,298.834,550.877,68.587,56.088,68.587,330.715,308.129,359.560,18.912,20.866,18.912 +583,14.645,290.196,575.590,244.667,379.518,285.024,554.589,76.167,66.418,76.167,316.028,309.439,359.284,21.840,19.792,21.840 +584,14.670,275.820,587.869,258.085,376.456,272.663,555.963,84.349,76.608,84.349,296.018,311.020,360.141,22.100,18.854,22.100 +585,14.695,275.820,587.869,258.085,376.456,272.663,555.963,84.349,76.608,84.349,296.018,311.020,360.141,22.100,18.854,22.100 +586,14.719,257.484,598.593,271.661,375.350,259.540,554.638,92.679,86.775,92.679,271.311,313.742,359.317,23.302,19.139,23.302 +587,14.744,236.937,616.251,286.379,376.729,251.517,552.860,102.953,96.958,102.953,228.835,315.419,358.927,21.138,18.680,21.138 +588,14.770,210.128,620.245,300.089,380.109,238.358,547.872,111.309,107.021,111.309,202.085,317.029,357.453,18.150,18.890,18.150 +589,14.795,210.128,620.245,300.089,380.109,238.358,547.872,111.309,107.021,111.309,202.085,317.029,357.453,18.150,18.890,18.150 +590,14.819,188.489,611.132,313.410,385.160,228.182,542.002,119.864,117.140,119.864,197.477,317.506,356.908,17.730,18.927,17.730 +591,14.844,170.019,597.557,325.347,392.678,218.878,535.174,128.069,127.416,128.069,197.187,319.052,355.665,17.628,19.094,17.628 +592,14.870,192.157,545.613,335.816,401.593,211.087,527.614,136.444,137.688,136.444,302.213,320.730,354.455,18.189,18.597,18.189 +593,14.895,192.157,545.613,335.816,401.593,211.087,527.614,136.444,137.688,136.444,302.213,320.730,354.455,18.189,18.597,18.189 +594,14.920,192.575,527.913,344.664,411.462,204.527,519.264,144.107,148.033,144.107,323.951,321.814,353.457,17.737,18.657,17.737 +595,14.947,189.342,515.778,351.950,421.872,199.308,510.411,151.699,158.595,151.699,330.109,323.102,352.747,17.677,19.298,17.677 +596,14.972,185.762,505.400,357.751,433.790,195.434,501.566,158.377,168.986,158.377,330.931,323.579,351.739,18.224,19.506,18.224 +597,14.998,185.762,505.400,357.751,433.790,195.434,501.566,158.377,168.986,158.377,330.931,323.579,351.739,18.224,19.506,18.224 +598,15.022,183.319,495.336,361.508,445.183,192.840,492.743,164.765,179.605,164.765,330.741,323.075,350.477,20.176,18.537,20.176 +599,15.048,181.763,485.463,363.945,456.314,191.106,484.021,171.227,10.008,171.227,331.178,323.241,350.085,19.156,19.174,19.156 +600,15.073,181.418,475.791,364.801,467.294,190.411,475.361,177.257,21.275,177.257,331.147,323.352,349.153,18.787,20.814,18.787 +601,15.098,181.418,475.791,364.801,467.294,190.411,475.361,177.257,21.275,177.257,331.147,323.352,349.153,18.787,20.814,18.787 +602,15.122,183.055,467.047,364.410,476.271,190.571,467.478,3.279,31.627,3.279,333.058,323.827,348.115,18.714,21.692,18.714 +603,15.148,183.664,458.927,362.122,486.546,190.868,460.031,8.710,42.553,8.710,332.012,323.668,346.588,19.307,19.817,19.307 +604,15.173,185.588,451.147,360.333,495.493,192.273,452.818,14.036,53.556,14.036,333.001,322.788,346.783,18.918,20.544,18.918 +605,15.199,185.588,451.147,360.333,495.493,192.273,452.818,14.036,53.556,14.036,333.001,322.788,346.783,18.918,20.544,18.918 +606,15.223,187.335,444.506,358.114,502.655,194.220,446.827,18.628,64.687,18.628,331.750,321.685,346.281,18.995,22.050,18.995 +607,15.249,190.660,435.817,355.077,509.607,197.368,438.612,22.620,75.774,22.620,331.231,321.368,345.766,25.769,22.431,25.769 +608,15.274,193.249,430.117,352.168,515.518,199.774,433.449,27.051,86.820,27.051,331.438,321.671,346.092,24.691,23.353,24.691 +609,15.300,195.373,425.598,348.829,520.906,202.116,429.551,30.379,97.989,30.379,329.908,321.168,345.539,25.345,23.819,25.345 +610,15.325,195.373,425.598,348.829,520.906,202.116,429.551,30.379,97.989,30.379,329.908,321.168,345.539,25.345,23.819,25.345 +611,15.352,197.741,421.203,345.548,525.517,204.469,425.749,34.046,109.359,34.046,329.263,321.337,345.504,24.410,24.020,24.410 +612,15.377,201.682,415.961,342.721,529.835,208.436,421.283,38.234,120.536,38.234,328.121,321.753,345.319,25.041,24.988,25.041 +613,15.403,204.701,412.351,339.950,533.344,211.206,418.058,41.257,131.615,41.257,328.308,321.138,345.616,25.586,25.197,25.586 +614,15.428,204.701,412.351,339.950,533.344,211.206,418.058,41.257,131.615,41.257,328.308,321.138,345.616,25.586,25.197,25.586 +615,15.454,206.920,409.562,337.165,536.715,213.497,415.858,43.755,142.583,43.755,327.605,321.435,345.816,24.251,25.389,24.251 +616,15.479,209.581,407.436,334.635,540.234,215.969,414.012,45.830,153.184,45.830,328.104,321.128,346.441,24.777,24.940,24.777 +617,15.504,211.544,405.865,332.094,543.070,217.589,412.545,47.862,163.985,47.862,329.207,321.838,347.225,24.153,25.089,24.153 +618,15.529,211.544,405.865,332.094,543.070,217.589,412.545,47.862,163.985,47.862,329.207,321.838,347.225,24.153,25.089,24.153 +619,15.553,215.375,403.512,329.735,545.915,220.877,410.219,50.641,174.447,50.641,330.557,321.277,347.907,24.360,24.496,24.360 +620,15.578,217.574,402.208,327.252,547.935,222.627,408.820,52.612,4.827,52.612,331.479,322.386,348.123,23.500,24.088,23.500 +621,15.604,219.839,400.615,325.047,549.175,224.529,407.148,54.324,15.124,54.324,331.907,322.927,347.990,23.849,23.377,23.849 +622,15.629,219.839,400.615,325.047,549.175,224.529,407.148,54.324,15.124,54.324,331.907,322.927,347.990,23.849,23.377,23.849 +623,15.653,222.235,400.180,322.414,550.327,225.941,405.650,55.886,25.017,55.886,334.559,324.836,347.775,23.636,23.319,23.636 +624,15.678,224.131,399.736,319.975,552.053,227.463,404.942,57.381,33.972,57.381,335.190,325.054,347.552,22.876,21.074,22.876 +625,15.703,225.306,397.220,318.096,554.343,229.421,404.041,58.897,42.207,58.897,333.071,323.763,349.003,23.338,20.602,23.338 +626,15.729,225.306,397.220,318.096,554.343,229.421,404.041,58.897,42.207,58.897,333.071,323.763,349.003,23.338,20.602,23.338 +627,15.753,224.961,396.034,315.287,555.906,229.671,403.832,58.870,49.627,58.870,330.651,323.672,348.872,22.629,19.514,22.629 +628,15.778,222.688,386.813,312.736,557.176,231.643,402.580,60.405,56.258,60.405,312.688,323.947,348.953,20.662,18.672,20.662 +629,15.804,194.893,330.586,310.520,558.720,232.042,402.699,62.745,62.828,62.745,187.035,322.960,349.275,17.806,18.967,17.806 +630,15.828,194.893,330.586,310.520,558.720,232.042,402.699,62.745,62.828,62.745,187.035,322.960,349.275,17.806,18.967,17.806 +631,15.853,214.533,363.504,308.441,559.401,233.237,401.693,63.905,69.246,63.905,264.379,322.898,349.424,17.815,18.515,17.815 +632,15.879,224.615,380.246,306.713,560.195,234.437,401.293,64.983,76.103,64.983,302.665,323.303,349.117,18.063,18.364,18.063 +633,15.903,229.649,384.392,305.035,560.839,236.713,399.970,65.606,83.468,65.606,315.239,323.467,349.450,21.805,18.171,21.805 +634,15.928,229.649,384.392,305.035,560.839,236.713,399.970,65.606,83.468,65.606,315.239,323.467,349.450,21.805,18.171,21.805 +635,15.953,231.500,386.500,303.679,560.461,237.167,399.252,66.038,91.676,66.038,320.748,321.448,348.657,22.236,17.973,22.236 +636,15.978,232.660,388.546,302.129,560.258,237.232,398.892,66.161,100.019,66.161,325.033,323.126,347.656,22.123,21.379,22.123 +637,16.004,233.046,389.707,303.592,559.033,236.988,398.602,66.098,109.564,66.098,327.859,320.520,347.317,22.181,21.306,22.181 +638,16.029,233.046,389.707,303.592,559.033,236.988,398.602,66.098,109.564,66.098,327.859,320.520,347.317,22.181,21.306,22.181 +639,16.053,233.164,390.803,305.108,558.562,236.820,398.937,65.799,119.745,65.799,329.345,319.886,347.180,22.044,22.326,22.044 +640,16.078,232.940,391.151,306.048,558.039,236.561,399.044,65.353,129.352,65.353,329.608,319.576,346.976,22.519,23.105,22.519 +641,16.104,232.101,391.776,307.556,557.721,235.791,399.619,64.799,139.145,64.799,329.886,319.206,347.222,22.088,24.388,22.088 +642,16.128,232.101,391.776,307.556,557.721,235.791,399.619,64.799,139.145,64.799,329.886,319.206,347.222,22.088,24.388,22.088 +643,16.153,231.235,392.204,309.059,557.265,234.987,399.941,64.134,149.036,64.134,330.559,319.159,347.756,22.223,24.867,22.223 +644,16.178,230.198,393.153,310.809,556.892,234.090,400.839,63.146,158.900,63.146,330.527,319.207,347.758,22.259,24.891,22.259 +645,16.204,229.353,394.077,312.568,556.431,233.205,401.450,62.418,169.028,62.418,331.587,319.490,348.226,22.648,25.224,22.648 +646,16.229,229.353,394.077,312.568,556.431,233.205,401.450,62.418,169.028,62.418,331.587,319.490,348.226,22.648,25.224,22.648 +647,16.254,227.936,395.308,314.566,555.916,231.790,402.361,61.340,178.888,61.340,332.810,319.270,348.884,22.460,24.219,22.460 +648,16.279,227.043,396.763,316.282,554.857,230.757,403.210,60.058,9.111,60.058,333.310,321.076,348.189,22.980,24.386,22.980 +649,16.304,225.291,397.849,318.545,553.750,229.138,404.152,58.601,19.158,58.601,333.774,322.318,348.543,23.223,24.156,23.223 +650,16.328,225.291,397.849,318.545,553.750,229.138,404.152,58.601,19.158,58.601,333.774,322.318,348.543,23.223,24.156,23.223 +651,16.353,224.077,400.098,320.541,551.819,227.312,405.085,57.031,29.275,57.031,335.789,324.224,347.676,23.514,21.781,23.514 +652,16.378,221.235,400.418,323.084,550.784,225.666,406.806,55.253,39.202,55.253,332.106,324.077,347.654,23.857,19.923,23.857 +653,16.404,207.921,390.248,324.465,549.715,222.438,408.615,51.680,48.746,51.680,301.106,324.549,347.928,21.234,18.665,21.234 +654,16.428,207.921,390.248,324.465,549.715,222.438,408.615,51.680,48.746,51.680,301.106,324.549,347.928,21.234,18.665,21.234 +655,16.454,203.088,392.306,326.882,547.971,218.811,411.685,50.947,59.036,50.947,297.936,323.618,347.847,17.773,18.693,17.773 +656,16.479,210.135,402.422,329.263,545.466,218.420,411.840,48.664,69.353,48.664,321.997,323.153,347.083,23.992,19.014,23.992 +657,16.504,209.131,406.958,331.856,542.208,216.031,414.061,45.830,79.695,45.830,325.440,322.530,345.245,24.797,18.962,24.797 +658,16.529,209.131,406.958,331.856,542.208,216.031,414.061,45.830,79.695,45.830,325.440,322.530,345.245,24.797,18.962,24.797 +659,16.553,206.283,411.365,335.585,538.495,212.368,416.932,42.455,90.324,42.455,329.438,321.034,345.933,25.431,20.904,25.431 +660,16.578,204.071,414.119,339.153,533.588,210.097,419.238,40.347,100.561,40.347,328.966,320.911,344.780,24.954,22.444,24.954 +661,16.604,200.780,417.460,343.063,529.213,207.411,422.434,36.870,110.746,36.870,328.600,321.284,345.178,25.800,24.102,25.800 +662,16.629,200.780,417.460,343.063,529.213,207.411,422.434,36.870,110.746,36.870,328.600,321.284,345.178,25.800,24.102,25.800 +663,16.653,196.585,422.470,346.987,524.188,203.982,427.215,32.681,121.304,32.681,327.880,321.366,345.455,25.473,24.859,25.473 +664,16.678,193.487,426.716,351.328,518.126,201.540,431.171,28.951,131.669,28.951,327.914,320.469,346.321,25.916,25.921,25.916 +665,16.704,189.774,432.897,355.087,511.889,198.679,436.945,24.444,141.953,24.444,327.235,321.097,346.800,25.821,26.022,25.821 +666,16.729,189.774,432.897,355.087,511.889,198.679,436.945,24.444,141.953,24.444,327.235,321.097,346.800,25.821,26.022,25.821 +667,16.754,186.382,437.630,358.382,505.072,196.704,441.471,20.410,151.744,20.410,325.390,321.776,347.417,26.199,24.702,26.199 +668,16.779,180.774,446.792,361.315,497.424,193.852,450.529,15.945,161.421,15.945,320.600,322.878,347.804,18.956,23.052,18.956 +669,16.804,173.082,453.597,363.325,488.959,192.082,457.382,11.264,170.586,11.264,309.477,323.542,348.224,19.029,20.676,19.029 +670,16.829,173.082,453.597,363.325,488.959,192.082,457.382,11.264,170.586,11.264,309.477,323.542,348.224,19.029,20.676,19.029 +671,16.853,141.644,459.064,364.989,480.115,191.347,464.035,5.711,178.363,5.711,248.859,324.182,348.761,17.513,20.277,17.513 +672,16.878,172.530,471.515,364.818,471.470,190.401,471.667,0.488,7.070,0.488,313.074,324.721,348.818,17.548,19.840,17.548 +673,16.903,181.193,480.480,364.854,463.065,190.822,479.501,174.193,14.432,174.193,330.246,324.279,349.604,18.599,19.654,18.599 +674,16.928,181.193,480.480,364.854,463.065,190.822,479.501,174.193,14.432,174.193,330.246,324.279,349.604,18.599,19.654,18.599 +675,16.953,184.364,489.656,363.024,453.200,191.659,488.024,167.391,24.001,167.391,334.715,322.878,349.667,21.136,21.671,21.136 +676,16.978,187.586,499.795,359.435,441.959,193.628,497.719,161.042,32.471,161.042,337.079,322.355,349.857,19.832,21.398,19.832 +677,17.004,191.353,509.698,354.686,430.567,196.929,506.991,154.103,41.100,154.103,338.190,320.684,350.587,19.843,23.649,19.843 +678,17.029,191.353,509.698,354.686,430.567,196.929,506.991,154.103,41.100,154.103,338.190,320.684,350.587,19.843,23.649,19.843 +679,17.054,196.486,519.209,348.026,419.308,201.521,515.936,146.976,50.133,146.976,338.983,319.579,350.994,19.494,24.679,19.494 +680,17.079,202.653,528.512,340.524,408.690,207.534,524.328,139.399,59.374,139.399,339.605,317.606,352.461,19.198,25.230,19.198 +681,17.104,209.456,537.961,334.672,407.128,213.458,533.489,131.820,68.682,131.820,337.987,298.650,349.988,19.141,25.062,19.141 +682,17.129,209.456,537.961,334.672,407.128,213.458,533.489,131.820,68.682,131.820,337.987,298.650,349.988,19.141,25.062,19.141 +683,17.153,217.692,547.961,322.798,400.230,221.531,542.203,123.690,78.232,123.690,334.762,295.774,348.603,18.860,24.230,18.860 +684,17.178,227.085,558.988,307.737,383.931,233.376,545.706,115.346,87.709,115.346,326.677,314.628,356.071,19.074,21.143,19.074 +685,17.204,233.422,586.927,293.865,378.606,244.274,550.755,106.699,96.953,106.699,282.750,314.814,358.279,18.390,19.490,18.390 +686,17.229,233.422,586.927,293.865,378.606,244.274,550.755,106.699,96.953,106.699,282.750,314.814,358.279,18.390,19.490,18.390 +687,17.254,256.209,566.532,279.078,375.459,258.139,554.016,98.768,105.727,98.768,333.996,315.631,359.325,21.895,21.590,21.895 +688,17.279,269.500,563.500,267.468,375.214,269.500,555.107,90.000,114.538,90.000,343.000,315.820,359.786,21.000,20.883,21.000 +689,17.304,281.639,561.726,252.885,376.423,280.487,554.787,80.573,123.690,80.573,346.885,315.902,360.953,22.853,18.582,22.853 +690,17.329,281.639,561.726,252.885,376.423,280.487,554.787,80.573,123.690,80.573,346.885,315.902,360.953,22.853,18.582,22.853 +691,17.354,296.689,557.630,238.232,380.603,294.794,551.773,72.072,132.776,72.072,348.229,315.166,360.540,20.680,18.927,20.680 +692,17.379,310.881,551.282,224.425,386.948,308.270,546.177,62.913,141.821,62.913,348.418,314.696,359.886,22.842,19.874,22.842 +693,17.404,322.453,543.641,211.785,395.312,319.469,539.516,54.118,150.927,54.118,349.724,313.435,359.906,23.497,19.277,23.497 +694,17.430,322.453,543.641,211.785,395.312,319.469,539.516,54.118,150.927,54.118,349.724,313.435,359.906,23.497,19.277,23.497 +695,17.454,332.873,533.751,200.602,404.783,329.727,530.542,45.564,160.201,45.564,351.408,312.450,360.396,24.821,18.818,24.821 +696,17.479,341.786,523.486,191.159,415.363,338.005,520.636,37.000,169.540,37.000,351.793,310.900,361.262,25.810,18.200,25.810 +697,17.504,349.124,512.870,184.007,425.646,344.042,510.050,29.021,179.659,29.021,350.153,308.096,361.777,25.790,21.244,25.790 +698,17.529,349.124,512.870,184.007,425.646,344.042,510.050,29.021,179.659,29.021,350.153,308.096,361.777,25.790,21.244,25.790 +699,17.553,355.385,505.737,179.577,436.466,347.702,502.733,21.353,8.178,21.353,344.927,307.019,361.426,19.574,20.591,19.574 +700,17.578,424.300,510.632,176.062,448.287,351.375,491.745,14.520,16.154,14.520,210.556,306.041,361.219,19.055,21.039,19.055 +701,17.604,365.000,483.985,174.363,458.629,353.035,482.484,7.151,24.775,7.151,336.385,305.843,360.503,19.486,19.696,19.486 +702,17.629,365.000,483.985,174.363,458.629,353.035,482.484,7.151,24.775,7.151,336.385,305.843,360.503,19.486,19.696,19.486 +703,17.653,360.468,472.801,172.519,469.263,353.246,472.741,0.479,33.977,0.479,347.055,308.415,361.500,18.213,20.732,18.213 +704,17.679,358.804,462.377,173.969,480.478,353.168,462.973,173.968,43.487,173.968,348.757,307.578,360.092,19.413,20.347,19.413 +705,17.704,356.509,452.362,176.251,491.211,351.792,453.378,167.842,53.647,167.842,349.493,309.865,359.143,20.243,19.819,20.243 +706,17.729,356.509,452.362,176.251,491.211,351.792,453.378,167.842,53.647,167.842,349.493,309.865,359.143,20.243,19.819,20.243 +707,17.753,354.026,443.549,178.042,499.979,349.079,445.166,161.908,63.778,161.908,348.795,311.276,359.205,20.950,19.294,20.950 +708,17.779,350.304,435.897,181.374,508.833,346.102,437.722,156.519,74.320,156.519,349.682,312.501,358.843,20.020,18.952,20.020 +709,17.804,345.911,430.003,184.126,516.881,342.376,431.931,151.390,83.967,151.390,351.158,314.056,359.211,19.234,19.226,19.234 +710,17.829,345.911,430.003,184.126,516.881,342.376,431.931,151.390,83.967,151.390,351.158,314.056,359.211,19.234,19.226,19.234 +711,17.853,342.080,423.360,187.936,523.996,338.470,425.755,146.432,93.691,146.432,350.836,315.022,359.500,19.694,18.800,19.694 +712,17.879,336.693,418.544,191.490,530.090,333.891,420.732,142.028,103.335,142.028,351.973,315.790,359.084,19.016,18.653,19.016 +713,17.904,332.864,413.658,195.799,535.414,329.952,416.313,137.638,113.085,137.638,350.874,316.318,358.756,19.625,19.831,19.625 +714,17.929,332.864,413.658,195.799,535.414,329.952,416.313,137.638,113.085,137.638,350.874,316.318,358.756,19.625,19.831,19.625 +715,17.953,330.385,407.451,199.169,539.108,325.817,412.215,133.800,122.600,133.800,345.289,316.291,358.489,18.621,19.543,18.621 +716,17.979,372.665,348.141,203.713,543.542,321.082,408.321,130.601,131.987,130.601,199.576,314.711,358.099,17.897,19.326,17.897 +717,18.004,335.579,380.953,208.099,546.262,317.308,405.084,127.131,141.809,127.131,296.421,314.696,356.956,17.950,19.230,17.950 +718,18.029,335.579,380.953,208.099,546.262,317.308,405.084,127.131,141.809,127.131,296.421,314.696,356.956,17.950,19.230,17.950 +719,18.054,322.457,389.441,212.723,548.764,313.939,402.418,123.280,151.621,123.280,324.727,313.863,355.772,19.832,18.941,19.832 +720,18.079,315.987,391.060,217.742,551.690,310.517,400.318,120.579,160.710,120.579,333.531,313.455,355.036,19.371,20.765,19.371 +721,18.105,310.281,390.712,222.265,555.047,306.181,398.570,117.553,170.293,117.553,337.365,313.201,355.093,18.888,22.463,18.888 +722,18.131,310.281,390.712,222.265,555.047,306.181,398.570,117.553,170.293,117.553,337.365,313.201,355.093,18.888,22.463,18.888 +723,18.156,305.791,390.025,226.523,557.195,302.571,396.973,114.869,179.412,114.869,339.379,313.086,354.693,18.878,23.537,18.878 +724,18.182,301.777,389.229,230.490,559.261,299.093,395.773,112.299,8.890,112.299,340.438,314.003,354.585,18.951,24.893,18.951 +725,18.207,298.025,388.784,234.097,560.250,295.967,394.458,109.930,18.268,109.930,341.833,315.904,353.905,18.852,26.137,18.852 +726,18.232,298.025,388.784,234.097,560.250,295.967,394.458,109.930,18.268,109.930,341.833,315.904,353.905,18.852,26.137,18.852 +727,18.255,294.289,388.972,237.803,562.326,292.653,394.084,107.745,27.728,107.745,343.177,315.913,353.910,18.820,25.318,18.820 +728,18.282,290.942,388.727,240.860,564.003,289.575,393.623,105.602,35.900,105.602,344.242,317.832,354.408,18.889,24.966,18.889 +729,18.307,288.463,388.380,243.750,565.750,287.193,393.575,103.736,45.000,103.736,344.437,317.491,355.133,18.953,24.042,18.953 +730,18.332,288.463,388.380,243.750,565.750,287.193,393.575,103.736,45.000,103.736,344.437,317.491,355.133,18.953,24.042,18.953 +731,18.355,285.051,388.288,246.687,566.729,284.017,393.297,101.662,53.842,101.662,344.566,318.857,354.795,19.043,23.787,19.043 +732,18.381,282.499,387.630,249.926,566.800,281.638,392.583,99.866,62.387,99.866,344.096,319.827,354.149,18.848,21.648,18.848 +733,18.406,279.917,387.767,252.787,567.931,279.202,392.722,98.209,70.427,98.209,344.360,321.672,354.372,18.721,20.750,18.721 +734,18.431,279.917,387.767,252.787,567.931,279.202,392.722,98.209,70.427,98.209,344.360,321.672,354.372,18.721,20.750,18.721 +735,18.455,277.656,388.097,255.436,568.807,277.079,392.887,96.866,78.379,96.866,344.844,323.019,354.492,18.178,20.917,18.178 +736,18.481,275.996,385.655,257.229,568.112,275.363,392.081,95.625,84.951,95.625,341.009,321.487,353.923,18.140,21.743,18.140 +737,18.505,275.134,374.732,257.592,568.501,273.731,392.325,94.557,90.406,94.557,318.504,321.098,353.802,18.066,21.035,18.066 +738,18.531,275.134,374.732,257.592,568.501,273.731,392.325,94.557,90.406,94.557,318.504,321.098,353.802,18.066,21.035,18.066 +739,18.555,277.200,311.294,259.625,568.514,272.139,392.278,93.576,96.503,93.576,191.065,321.364,353.348,17.778,20.582,17.778 +740,18.580,272.380,356.080,260.744,568.443,270.843,392.199,92.437,102.614,92.437,280.725,321.605,353.028,17.941,19.497,17.941 +741,18.604,269.825,370.029,262.558,567.345,269.355,391.652,91.245,109.309,91.245,308.340,319.780,351.598,17.996,19.881,17.996 +742,18.629,269.825,370.029,262.558,567.345,269.355,391.652,91.245,109.309,91.245,308.340,319.780,351.598,17.996,19.881,17.996 +743,18.654,267.500,376.500,264.132,566.811,267.500,391.906,90.000,116.735,90.000,319.000,318.890,349.811,17.000,19.781,17.000 +744,18.679,265.317,379.416,266.788,566.352,265.625,391.620,88.556,124.895,88.556,324.998,318.342,349.412,17.952,20.884,17.952 +745,18.704,263.215,381.367,269.232,565.715,263.702,391.280,87.184,134.715,87.184,329.143,317.526,348.993,18.109,21.220,18.109 +746,18.729,263.215,381.367,269.232,565.715,263.702,391.280,87.184,134.715,87.184,329.143,317.526,348.993,18.109,21.220,18.109 +747,18.754,261.168,382.229,272.953,565.964,261.841,391.344,85.778,143.493,85.778,331.648,317.165,349.927,18.574,23.392,18.574 +748,18.780,259.129,383.287,275.962,565.858,259.978,391.779,84.289,152.616,84.289,332.541,316.761,349.610,18.906,24.294,18.906 +749,18.805,256.960,384.061,279.047,566.163,258.018,392.392,82.763,161.677,82.763,333.276,316.856,350.072,19.148,24.971,19.148 +750,18.830,256.960,384.061,279.047,566.163,258.018,392.392,82.763,161.677,82.763,333.276,316.856,350.072,19.148,24.971,19.148 +751,18.854,254.382,385.018,281.740,566.005,255.620,393.041,81.222,170.937,81.222,333.612,317.126,349.848,18.785,25.433,18.785 +752,18.879,252.262,385.776,284.494,565.580,253.657,393.398,79.624,0.317,79.624,334.343,317.045,349.841,19.077,24.889,19.077 +753,18.904,250.052,387.128,287.822,565.543,251.545,394.136,77.969,9.689,77.969,336.076,318.777,350.406,19.256,25.846,19.256 +754,18.929,250.052,387.128,287.822,565.543,251.545,394.136,77.969,9.689,77.969,336.076,318.777,350.406,19.256,25.846,19.256 +755,18.954,248.036,388.604,290.621,565.117,249.542,394.757,76.239,18.759,76.239,337.813,320.046,350.483,19.842,25.476,19.842 +756,18.979,246.327,390.104,293.355,563.945,247.702,395.049,74.456,28.532,74.456,339.643,322.188,349.907,20.787,24.386,20.787 +757,19.004,243.799,391.657,296.093,563.879,245.272,396.369,72.646,37.569,72.646,340.212,322.415,350.087,20.581,22.986,20.581 +758,19.029,243.799,391.657,296.093,563.879,245.272,396.369,72.646,37.569,72.646,340.212,322.415,350.087,20.581,22.986,20.581 +759,19.054,240.915,392.232,300.096,562.435,242.698,397.314,70.665,46.548,70.665,338.852,322.094,349.624,20.776,20.097,20.776 +760,19.079,237.288,390.869,301.712,562.521,240.287,398.502,68.552,56.067,68.552,333.841,322.868,350.242,21.108,20.895,21.108 +761,19.104,204.240,326.852,304.679,561.182,236.124,400.185,66.501,64.885,66.501,190.033,323.136,349.961,17.783,18.732,17.783 +762,19.129,204.240,326.852,304.679,561.182,236.124,400.185,66.501,64.885,66.501,190.033,323.136,349.961,17.783,18.732,17.783 +763,19.153,222.933,379.833,307.802,559.460,233.447,401.479,64.093,74.846,64.093,301.053,322.848,349.182,18.016,18.882,18.016 +764,19.179,225.806,389.915,310.671,557.932,232.348,402.077,61.725,84.193,61.725,321.103,323.788,348.722,22.144,18.751,22.144 +765,19.204,224.224,394.572,313.878,554.581,229.352,403.147,59.121,93.366,59.121,326.718,321.679,346.700,23.078,19.202,23.078 +766,19.229,224.224,394.572,313.878,554.581,229.352,403.147,59.121,93.366,59.121,326.718,321.679,346.700,23.078,19.202,23.078 +767,19.254,221.565,397.633,317.941,551.943,226.378,404.874,56.388,103.459,56.388,328.943,321.586,346.332,23.833,20.357,23.833 +768,19.280,217.900,399.992,322.755,548.609,223.120,407.027,53.419,113.076,53.419,328.622,320.662,346.142,24.171,22.532,24.171 +769,19.305,214.308,403.509,327.598,544.842,219.704,410.009,50.305,122.597,50.305,328.422,319.965,345.318,23.793,24.025,23.793 +770,19.330,214.308,403.509,327.598,544.842,219.704,410.009,50.305,122.597,50.305,328.422,319.965,345.318,23.793,24.025,23.793 +771,19.354,210.423,406.684,332.570,540.966,216.373,412.983,46.637,132.079,46.637,328.327,319.680,345.657,24.799,24.623,24.799 +772,19.380,206.192,410.792,337.212,536.657,212.850,416.939,42.709,141.563,42.709,327.044,320.315,345.168,25.436,25.289,25.436 +773,19.405,202.548,414.328,342.202,532.152,209.922,420.344,39.207,150.803,39.207,327.319,320.730,346.352,25.469,25.367,25.469 +774,19.430,202.548,414.328,342.202,532.152,209.922,420.344,39.207,150.803,39.207,327.319,320.730,346.352,25.469,25.367,25.469 +775,19.454,198.432,419.876,346.631,526.961,206.202,425.255,34.695,159.916,34.695,327.802,321.753,346.703,26.120,24.423,26.120 +776,19.479,194.294,423.676,350.798,521.025,203.417,429.150,30.964,168.925,30.964,326.019,322.430,347.296,25.896,23.925,25.896 +777,19.505,188.018,429.913,355.032,514.222,199.952,435.596,25.463,177.489,25.463,321.203,322.699,347.640,25.882,22.058,25.882 +778,19.529,188.018,429.913,355.032,514.222,199.952,435.596,25.463,177.489,25.463,321.203,322.699,347.640,25.882,22.058,25.882 +779,19.554,179.709,432.993,358.446,506.574,197.700,440.419,22.429,5.400,22.429,308.726,324.202,347.653,27.569,20.090,27.569 +780,19.579,137.156,432.147,361.294,499.446,194.554,449.366,16.699,12.308,16.699,228.346,324.423,348.196,17.816,20.215,17.816 +781,19.604,175.713,453.076,362.705,490.344,192.180,456.503,11.758,19.245,11.758,314.047,326.626,347.687,18.039,20.620,18.039 +782,19.629,175.713,453.076,362.705,490.344,192.180,456.503,11.758,19.245,11.758,314.047,326.626,347.687,18.039,20.620,18.039 +783,19.654,181.277,463.228,364.661,481.362,191.226,464.223,5.711,25.463,5.711,328.561,325.073,348.559,19.105,23.130,19.105 +784,19.679,182.500,472.000,364.021,472.701,190.010,472.000,0.000,34.367,0.000,333.000,324.781,348.021,18.000,22.468,18.000 +785,19.704,183.619,481.826,363.070,461.854,190.247,481.030,173.157,41.139,173.157,334.401,323.700,347.753,18.547,21.693,18.547 +786,19.729,183.619,481.826,363.070,461.854,190.247,481.030,173.157,41.139,173.157,334.401,323.700,347.753,18.547,21.693,18.547 +787,19.754,185.665,492.649,360.965,449.959,191.536,491.195,166.083,49.399,166.083,336.651,321.816,348.747,19.911,23.212,19.911 +788,19.779,188.685,502.692,357.476,438.150,194.126,500.571,158.707,57.588,158.707,338.053,319.823,349.733,20.183,24.362,20.183 +789,19.804,192.777,513.088,351.963,426.245,198.251,510.121,151.540,65.480,151.540,337.757,318.213,350.212,19.596,25.267,19.596 +790,19.829,192.777,513.088,351.963,426.245,198.251,510.121,151.540,65.480,151.540,337.757,318.213,350.212,19.596,25.267,19.596 +791,19.854,197.860,523.378,345.113,414.896,203.610,519.213,144.090,74.055,144.090,337.383,317.166,351.584,18.936,24.175,18.936 +792,19.880,203.634,534.679,337.052,403.993,210.784,527.804,136.123,82.725,136.123,333.829,316.284,353.666,19.102,24.714,19.102 +793,19.906,210.428,547.218,326.514,394.537,219.146,535.957,127.747,90.843,127.747,326.620,315.231,355.104,19.411,22.895,19.411 +794,19.932,210.428,547.218,326.514,394.537,219.146,535.957,127.747,90.843,127.747,326.620,315.231,355.104,19.411,22.895,19.411 +795,19.955,218.890,561.055,313.813,386.969,228.838,543.226,119.160,99.284,119.160,314.880,315.619,355.713,19.655,20.801,19.655 +796,19.980,211.602,621.161,300.032,380.110,238.948,548.091,110.518,107.286,110.518,201.430,315.633,357.470,17.835,20.392,17.835 +797,20.006,248.760,562.038,286.689,376.387,250.684,552.559,101.470,115.058,101.470,340.284,316.565,359.628,20.595,20.682,20.595 +798,20.031,248.760,562.038,286.689,376.387,250.684,552.559,101.470,115.058,101.470,340.284,316.565,359.628,20.595,20.682,20.595 +799,20.054,261.839,563.347,272.904,374.766,262.196,554.830,92.400,123.341,92.400,343.662,316.997,360.710,22.441,18.973,22.441 +800,20.080,276.222,562.587,258.251,375.605,275.418,555.382,83.636,131.474,83.636,346.643,316.653,361.143,22.744,19.266,22.744 +801,20.105,291.277,559.154,243.018,379.110,289.616,553.026,74.837,139.635,74.837,347.401,315.557,360.100,22.019,19.468,22.019 +802,20.130,291.277,559.154,243.018,379.110,289.616,553.026,74.837,139.635,74.837,347.401,315.557,360.100,22.019,19.468,22.019 +803,20.154,306.624,553.405,228.475,385.260,304.288,548.248,65.631,147.955,65.631,348.174,314.712,359.497,21.941,19.813,21.941 +804,20.179,319.193,545.728,215.285,393.756,316.726,542.003,56.471,155.924,56.471,350.289,313.628,359.224,23.233,18.552,23.233 +805,20.205,330.630,536.178,203.145,403.512,327.845,533.134,47.540,164.193,47.540,351.369,312.372,359.621,24.818,17.899,24.818 +806,20.229,330.630,536.178,203.145,403.512,327.845,533.134,47.540,164.193,47.540,351.369,312.372,359.621,24.818,17.899,24.818 +807,20.255,340.105,525.647,193.084,413.682,336.700,522.911,38.784,172.983,38.784,352.004,310.335,360.740,25.459,17.499,25.459 +808,20.280,347.588,514.868,184.996,424.608,343.087,512.234,30.329,2.003,30.329,350.975,308.476,361.404,24.861,19.834,24.861 +809,20.305,354.113,506.793,179.988,435.181,347.149,503.931,22.341,9.819,22.341,346.435,307.088,361.493,19.626,19.915,19.626 +810,20.329,354.113,506.793,179.988,435.181,347.149,503.931,22.341,9.819,22.341,346.435,307.088,361.493,19.626,19.915,19.626 +811,20.355,421.258,511.589,175.887,447.476,350.864,492.532,15.148,17.044,15.148,215.486,306.511,361.342,19.209,20.838,19.209 +812,20.380,364.984,484.449,174.247,458.310,352.963,482.880,7.441,24.864,7.441,336.541,306.184,360.787,19.491,19.740,19.491 +813,20.405,360.471,472.661,173.385,469.440,353.682,472.607,0.457,33.190,0.457,347.053,307.329,360.632,18.422,19.858,18.422 +814,20.429,360.471,472.661,173.385,469.440,353.682,472.607,0.457,33.190,0.457,347.053,307.329,360.632,18.422,19.858,18.422 +815,20.454,358.856,461.669,174.098,481.054,353.248,462.300,173.587,42.054,173.587,348.961,307.351,360.248,19.193,19.804,19.193 +816,20.479,356.162,450.827,176.392,491.983,351.417,451.938,166.823,51.280,166.823,349.347,310.625,359.092,22.000,20.312,22.000 +817,20.505,353.531,442.089,178.927,501.760,348.770,443.755,160.710,60.642,160.710,348.850,311.316,358.939,20.057,19.175,20.057 +818,20.530,353.531,442.089,178.927,501.760,348.770,443.755,160.710,60.642,160.710,348.850,311.316,358.939,20.057,19.175,20.057 +819,20.555,349.475,433.885,181.967,511.101,344.963,436.007,154.811,69.974,154.811,348.941,312.181,358.914,20.495,19.309,20.495 +820,20.580,344.655,426.741,185.856,519.834,340.798,429.038,149.224,79.028,149.224,350.184,313.790,359.162,20.639,19.294,20.639 +821,20.605,339.747,420.572,190.198,527.010,336.432,422.966,144.162,88.052,144.162,350.754,314.464,358.932,19.276,18.928,19.276 +822,20.630,339.747,420.572,190.198,527.010,336.432,422.966,144.162,88.052,144.162,350.754,314.464,358.932,19.276,18.928,19.276 +823,20.654,334.414,415.160,194.096,533.573,331.392,417.766,139.236,97.023,139.236,351.229,315.909,359.210,19.275,19.936,19.275 +824,20.679,329.471,409.995,199.205,539.198,326.519,412.994,134.551,105.719,134.551,350.090,316.743,358.507,19.008,18.601,19.008 +825,20.705,325.141,405.351,204.404,543.911,322.045,409.014,130.210,114.444,130.210,348.343,317.304,357.934,19.202,20.028,19.202 +826,20.730,325.141,405.351,204.404,543.911,322.045,409.014,130.210,114.444,130.210,348.343,317.304,357.934,19.202,20.028,19.202 +827,20.755,327.214,391.191,208.605,547.425,316.906,405.254,126.242,122.751,126.242,322.510,316.705,357.383,18.519,20.035,18.519 +828,20.780,337.805,361.303,213.915,550.924,311.768,401.805,122.735,131.724,122.735,260.405,315.905,356.702,17.905,19.320,17.905 +829,20.805,317.024,381.905,219.389,553.727,307.578,399.381,118.393,141.180,118.393,315.696,315.176,355.428,19.401,19.227,19.401 +830,20.829,317.024,381.905,219.389,553.727,307.578,399.381,118.393,141.180,118.393,315.696,315.176,355.428,19.401,19.227,19.401 +831,20.855,308.275,385.253,225.146,556.250,302.846,396.948,114.905,149.668,114.905,328.629,314.852,354.417,19.242,19.842,19.242 +832,20.880,301.818,386.315,230.779,558.761,298.283,395.234,111.619,158.582,111.619,334.598,314.359,353.787,18.683,21.489,18.683 +833,20.905,296.650,386.050,236.316,560.866,293.986,394.042,108.435,166.954,108.435,336.150,314.129,352.999,18.974,22.596,18.974 +834,20.930,296.650,386.050,236.316,560.866,293.986,394.042,108.435,166.954,108.435,336.150,314.129,352.999,18.974,22.596,18.974 +835,20.954,291.452,385.302,241.579,562.952,289.362,392.995,105.200,175.236,105.200,337.133,314.078,353.077,19.078,23.585,19.078 +836,20.979,286.864,385.125,246.670,564.619,285.275,392.406,102.308,4.086,102.308,338.065,314.912,352.969,18.936,23.654,18.936 +837,21.005,282.134,385.284,251.681,565.449,281.044,391.930,99.310,12.414,99.310,338.498,315.847,351.967,18.928,26.528,18.928 +838,21.030,282.134,385.284,251.681,565.449,281.044,391.930,99.310,12.414,99.310,338.498,315.847,351.967,18.928,26.528,18.928 +839,21.055,277.537,385.547,256.469,566.003,276.881,391.290,96.520,20.925,96.520,340.242,317.193,351.802,18.281,27.033,18.281 +840,21.080,273.281,386.220,260.184,567.462,272.921,391.653,93.791,29.184,93.791,341.642,319.754,352.532,17.997,25.407,17.997 +841,21.105,269.233,386.411,265.266,568.149,269.127,392.037,91.074,37.124,91.074,341.053,319.781,352.307,17.903,24.867,17.903 +842,21.131,269.233,386.411,265.266,568.149,269.127,392.037,91.074,37.124,91.074,341.053,319.781,352.307,17.903,24.867,17.903 +843,21.154,265.119,387.541,269.805,568.693,265.272,392.762,88.315,44.796,88.315,341.529,320.340,351.976,17.904,24.218,17.904 +844,21.180,261.347,387.391,274.895,568.041,261.743,392.612,85.662,52.397,85.662,341.371,321.258,351.842,18.691,21.858,18.691 +845,21.205,257.700,387.341,278.928,568.138,258.445,393.449,83.047,59.253,83.047,339.461,321.908,351.767,19.223,20.970,19.223 +846,21.230,257.700,387.341,278.928,568.138,258.445,393.449,83.047,59.253,83.047,339.461,321.908,351.767,19.223,20.970,19.223 +847,21.255,253.825,387.443,282.671,567.650,254.921,394.062,80.599,65.575,80.599,338.158,322.354,351.577,19.058,20.930,19.058 +848,21.280,249.337,384.195,286.008,567.522,251.687,394.891,77.607,70.710,77.607,330.046,324.074,351.948,18.881,19.491,18.881 +849,21.305,228.412,317.647,289.500,566.626,247.971,395.883,75.964,75.826,75.964,190.148,323.550,351.435,17.948,19.464,17.948 +850,21.330,228.412,317.647,289.500,566.626,247.971,395.883,75.964,75.826,75.964,190.148,323.550,351.435,17.948,19.464,17.948 +851,21.354,234.360,362.088,293.752,565.620,244.923,396.947,73.142,80.893,73.142,278.320,323.684,351.169,17.806,19.394,17.806 +852,21.379,236.113,379.050,296.971,564.002,242.641,397.565,70.577,86.149,70.577,310.800,323.153,350.064,20.841,19.283,20.841 +853,21.405,233.597,385.227,300.816,561.881,239.072,398.552,67.665,92.545,67.665,320.271,322.615,349.080,21.282,18.493,21.282 +854,21.430,233.597,385.227,300.816,561.881,239.072,398.552,67.665,92.545,67.665,320.271,322.615,349.080,21.282,18.493,21.282 +855,21.454,230.823,390.179,305.714,559.121,235.423,399.839,64.537,99.652,64.537,326.664,321.922,348.061,22.314,19.315,22.314 +856,21.480,226.904,393.294,311.056,556.211,231.527,401.675,61.113,107.038,61.113,328.311,321.809,347.454,22.674,20.927,22.674 +857,21.505,222.843,396.559,317.013,552.473,227.619,404.076,57.572,115.017,57.572,328.572,320.426,346.385,23.227,22.534,23.227 +858,21.530,222.843,396.559,317.013,552.473,227.619,404.076,57.572,115.017,57.572,328.572,320.426,346.385,23.227,22.534,23.227 +859,21.554,218.568,400.024,322.856,548.690,223.594,406.895,53.813,122.672,53.813,329.072,319.892,346.098,23.812,23.762,23.812 +860,21.579,214.373,403.818,328.727,544.468,219.760,410.216,49.899,130.365,49.899,329.033,319.557,345.761,24.477,24.496,24.477 +861,21.605,209.472,407.602,334.068,539.703,215.575,413.861,45.719,138.406,45.719,328.160,319.728,345.646,24.886,24.940,24.886 +862,21.629,209.472,407.602,334.068,539.703,215.575,413.861,45.719,138.406,45.719,328.160,319.728,345.646,24.886,24.940,24.886 +863,21.654,204.550,412.377,339.951,534.657,211.512,418.522,41.434,146.077,41.434,327.722,320.333,346.293,24.833,25.004,24.833 +864,21.680,200.042,417.106,345.126,528.826,207.808,422.908,36.764,154.179,36.764,327.412,320.776,346.801,25.810,25.233,25.810 +865,21.705,195.167,423.408,350.163,522.052,203.814,428.692,31.430,162.092,31.430,326.854,321.645,347.120,25.930,24.425,25.930 +866,21.730,195.167,423.408,350.163,522.052,203.814,428.692,31.430,162.092,31.430,326.854,321.645,347.120,25.930,24.425,25.930 +867,21.755,188.923,430.615,354.682,514.389,199.733,435.785,25.560,170.049,25.560,323.435,322.720,347.399,25.809,23.086,25.809 +868,21.780,182.740,435.100,358.534,505.063,197.242,440.743,21.262,178.152,21.262,316.155,323.412,347.277,26.819,20.344,26.819 +869,21.805,162.686,443.169,361.815,496.264,193.710,451.504,15.038,5.988,15.038,283.672,324.103,347.922,18.133,19.564,18.133 +870,21.830,162.686,443.169,361.815,496.264,193.710,451.504,15.038,5.988,15.038,283.672,324.103,347.922,18.133,19.564,18.133 +871,21.854,169.562,456.510,363.522,486.340,191.617,460.061,9.147,14.566,9.147,303.113,325.711,347.792,18.332,20.211,18.332 +872,21.880,181.073,468.648,365.041,476.628,190.972,469.038,2.261,22.166,2.261,328.652,324.407,348.465,18.775,23.564,18.775 +873,21.905,182.768,478.616,364.095,465.702,190.399,478.002,175.400,30.750,175.400,332.936,324.301,348.246,18.652,21.779,18.652 +874,21.930,182.768,478.616,364.095,465.702,190.399,478.002,175.400,30.750,175.400,332.936,324.301,348.246,18.652,21.779,18.652 +875,21.954,184.752,489.313,362.134,453.707,191.095,487.988,168.198,38.660,168.198,335.909,322.811,348.869,19.329,22.489,19.329 +876,21.979,187.759,500.312,358.374,441.155,193.446,498.318,160.677,47.291,160.677,337.048,321.787,349.103,19.768,23.966,19.768 +877,22.005,192.160,510.849,353.452,428.875,197.361,508.202,153.034,55.646,153.034,338.514,319.305,350.185,20.015,24.652,20.015 +878,22.030,192.160,510.849,353.452,428.875,197.361,508.202,153.034,55.646,153.034,338.514,319.305,350.185,20.015,24.652,20.015 +879,22.055,197.410,521.269,346.267,416.891,202.527,517.740,145.408,63.778,145.408,338.738,317.556,351.169,19.303,25.346,19.303 +880,22.080,203.354,532.385,339.890,411.571,208.471,527.682,137.415,72.838,137.415,336.761,303.939,350.661,19.305,24.969,19.305 +881,22.105,211.146,543.216,328.076,404.992,215.617,537.650,128.774,84.144,128.774,333.422,296.547,347.701,19.184,22.803,19.184 +882,22.130,211.146,543.216,328.076,404.992,215.617,537.650,128.774,84.144,128.774,333.422,296.547,347.701,19.184,22.803,19.184 +883,22.155,220.868,554.651,314.919,395.842,226.035,545.677,119.932,92.521,119.932,327.688,298.195,348.400,19.433,21.011,19.433 +884,22.180,227.894,577.615,301.096,382.170,238.945,548.931,111.069,99.819,111.069,294.431,313.341,355.910,19.474,19.726,19.474 +885,22.205,245.300,575.035,286.616,377.385,250.033,552.663,101.944,106.621,101.944,312.376,313.395,358.109,20.395,19.651,20.395 +886,22.230,245.300,575.035,286.616,377.385,250.033,552.663,101.944,106.621,101.944,312.376,313.395,358.109,20.395,19.651,20.395 +887,22.254,261.012,563.755,273.249,375.658,261.454,554.747,92.810,112.834,92.810,340.866,313.793,358.904,22.464,21.246,22.464 +888,22.280,278.264,562.886,258.435,375.460,277.557,555.064,84.838,121.264,84.838,345.484,315.569,361.191,22.990,18.683,22.990 +889,22.305,292.349,559.144,243.453,379.227,290.689,552.859,75.203,130.179,75.203,346.876,315.697,359.876,22.091,18.676,22.091 +890,22.331,292.349,559.144,243.453,379.227,290.689,552.859,75.203,130.179,75.203,346.876,315.697,359.876,22.091,18.676,22.091 +891,22.355,307.091,553.352,228.354,385.142,304.629,547.987,65.353,137.752,65.353,347.829,315.013,359.636,22.027,18.982,22.027 +892,22.381,319.973,545.331,214.475,393.435,317.129,541.116,55.981,145.810,55.981,349.505,314.264,359.674,23.166,19.596,23.166 +893,22.405,331.801,535.509,202.501,403.524,328.600,532.108,46.727,153.604,46.727,350.779,312.617,360.120,24.919,18.363,24.919 +894,22.430,331.801,535.509,202.501,403.524,328.600,532.108,46.727,153.604,46.727,350.779,312.617,360.120,24.919,18.363,24.919 +895,22.455,341.111,524.671,192.350,415.050,337.561,521.932,37.648,161.565,37.648,351.551,311.801,360.519,24.817,18.025,24.817 +896,22.480,348.813,512.616,184.272,427.084,344.521,510.238,28.985,170.244,28.985,351.127,310.556,360.942,25.764,19.827,25.764 +897,22.505,354.958,500.784,178.480,438.486,349.057,498.568,20.576,178.882,20.576,349.013,309.195,361.621,25.777,20.128,25.777 +898,22.532,354.958,500.784,178.480,438.486,349.057,498.568,20.576,178.882,20.576,349.013,309.195,361.621,25.777,20.128,25.777 +899,22.555,364.161,493.016,175.508,450.420,351.530,490.220,12.482,5.404,12.482,335.056,310.734,360.929,19.386,19.548,19.386 +900,22.581,382.196,480.947,173.133,462.973,353.032,478.378,5.034,14.199,5.034,302.559,308.274,361.113,17.936,19.576,17.936 +901,22.606,363.237,467.348,173.776,473.310,353.567,467.822,177.198,21.801,177.198,340.327,308.440,359.690,19.606,23.026,19.606 +902,22.631,363.237,467.348,173.776,473.310,353.567,467.822,177.198,21.801,177.198,340.327,308.440,359.690,19.606,23.026,19.606 +903,22.655,358.611,456.017,174.417,485.872,352.177,457.135,170.144,29.378,170.144,347.052,309.245,360.112,19.834,21.120,19.834 +904,22.680,354.919,445.890,176.804,497.263,349.657,447.477,163.217,36.703,163.217,348.739,309.591,359.732,20.288,20.510,20.288 +905,22.706,350.970,436.275,180.519,507.466,346.215,438.302,156.915,44.178,156.915,348.756,309.864,359.094,20.118,19.783,20.118 +906,22.731,350.970,436.275,180.519,507.466,346.215,438.302,156.915,44.178,156.915,348.756,309.864,359.094,20.118,19.783,20.118 +907,22.755,346.907,428.412,185.270,516.681,342.494,430.879,150.797,51.774,150.797,348.099,311.554,358.209,19.070,20.253,19.070 +908,22.780,341.426,420.967,190.522,525.775,337.494,423.720,144.990,58.787,144.990,348.257,313.988,357.857,19.495,20.044,19.495 +909,22.805,335.847,414.963,195.731,533.234,332.311,417.964,139.686,65.973,139.686,348.166,314.558,357.442,19.248,20.248,19.248 +910,22.830,335.847,414.963,195.731,533.234,332.311,417.964,139.686,65.973,139.686,348.166,314.558,357.442,19.248,20.248,19.248 +911,22.855,329.537,409.557,200.927,539.583,326.676,412.479,134.397,73.720,134.397,349.410,315.401,357.589,18.994,19.937,18.994 +912,22.880,323.415,405.196,206.227,545.545,320.861,408.300,129.453,80.614,129.453,349.596,316.801,357.635,19.385,19.985,19.385 +913,22.905,317.657,400.716,211.709,550.446,315.004,404.524,124.870,87.421,124.870,348.272,317.444,357.554,18.967,19.989,18.967 +914,22.931,317.657,400.716,211.709,550.446,315.004,404.524,124.870,87.421,124.870,348.272,317.444,357.554,18.967,19.989,18.967 +915,22.956,311.804,397.411,217.756,554.449,309.510,401.302,120.520,93.912,120.520,348.015,318.103,357.050,18.880,19.118,18.880 +916,22.981,306.507,394.263,224.090,557.515,304.332,398.648,116.380,99.707,116.380,346.166,318.635,355.955,18.734,20.557,18.734 +917,23.006,301.822,391.171,227.767,559.571,299.490,396.748,112.687,104.903,112.687,343.687,318.924,355.776,18.453,19.842,18.453 +918,23.031,301.822,391.171,227.767,559.571,299.490,396.748,112.687,104.903,112.687,343.687,318.924,355.776,18.453,19.842,18.453 +919,23.055,320.933,319.876,233.206,561.750,294.203,395.055,109.573,109.482,109.573,195.415,318.785,354.994,17.923,19.095,17.923 +920,23.080,303.782,344.448,238.650,563.342,289.600,393.539,106.113,114.335,106.113,252.348,318.540,354.545,17.976,19.670,17.976 +921,23.106,290.166,369.326,243.812,564.326,284.942,392.509,102.700,119.564,102.700,305.782,318.257,353.311,17.999,20.046,17.999 +922,23.131,290.166,369.326,243.812,564.326,284.942,392.509,102.700,119.564,102.700,305.782,318.257,353.311,17.999,20.046,17.999 +923,23.155,282.889,376.541,249.490,564.899,280.477,391.646,99.075,126.098,99.075,321.350,317.614,351.943,18.412,18.988,18.412 +924,23.180,276.630,379.158,255.687,565.600,275.463,391.215,95.528,132.818,95.528,326.732,317.146,350.958,18.237,20.141,18.237 +925,23.205,270.767,381.075,262.287,566.344,270.432,391.165,91.902,140.194,91.902,330.515,316.763,350.706,18.222,21.894,18.222 +926,23.231,270.767,381.075,262.287,566.344,270.432,391.165,91.902,140.194,91.902,330.515,316.763,350.706,18.222,21.894,18.222 +927,23.255,265.197,382.375,268.708,566.178,265.440,391.507,88.472,147.465,88.472,331.122,316.221,349.392,17.940,23.620,17.940 +928,23.282,260.170,383.634,274.814,566.103,260.893,391.877,84.987,156.146,84.987,333.002,315.972,349.551,18.718,24.551,18.718 +929,23.307,255.012,384.472,281.316,565.811,256.255,392.741,81.451,163.811,81.451,333.023,316.635,349.746,19.351,25.155,19.351 +930,23.333,255.012,384.472,281.316,565.811,256.255,392.741,81.451,163.811,81.451,333.023,316.635,349.746,19.351,25.155,19.351 +931,23.357,249.773,385.941,287.536,565.131,251.481,393.913,77.905,171.597,77.905,333.640,316.688,349.944,19.556,25.013,19.556 +932,23.382,244.779,387.910,293.998,563.795,246.903,395.425,74.219,179.381,74.219,334.047,318.025,349.664,20.041,24.431,20.041 +933,23.407,240.243,390.622,300.036,562.065,242.558,397.164,70.509,7.419,70.509,335.378,319.382,349.257,21.237,24.455,21.237 +934,23.433,240.243,390.622,300.036,562.065,242.558,397.164,70.509,7.419,70.509,335.378,319.382,349.257,21.237,24.455,21.237 +935,23.457,235.254,392.959,306.259,559.874,237.884,399.115,66.869,15.388,66.869,336.004,320.743,349.392,21.999,24.581,21.999 +936,23.483,230.699,395.933,312.241,556.933,233.463,401.271,62.618,23.232,62.618,336.883,322.359,348.906,22.504,23.946,22.504 +937,23.512,225.771,399.447,318.059,553.724,228.836,404.449,58.502,31.347,58.502,336.061,323.964,347.794,22.767,22.070,22.767 +938,23.549,219.262,400.673,324.077,550.291,224.318,407.624,53.973,39.148,53.973,330.920,324.022,348.111,23.894,20.144,23.894 +939,23.576,195.218,385.103,329.105,546.373,219.195,411.760,48.030,46.655,48.030,275.465,324.529,347.172,21.138,18.598,21.138 +940,23.602,199.250,403.250,334.552,541.265,213.204,417.204,45.000,55.042,45.000,307.591,324.007,347.060,18.385,19.561,18.385 +941,23.631,199.250,403.250,334.552,541.265,213.204,417.204,45.000,55.042,45.000,307.591,324.007,347.060,18.385,19.561,18.385 +942,23.654,201.834,413.803,339.568,535.458,209.967,420.442,39.226,63.078,39.226,325.263,323.374,346.260,25.611,19.017,25.611 +943,23.680,199.629,420.162,344.740,528.089,206.111,424.692,34.953,71.667,34.953,329.903,322.557,345.719,25.973,20.176,25.973 +944,23.704,195.229,426.864,349.676,519.968,201.653,430.475,29.335,79.695,29.335,331.034,321.815,345.772,25.620,21.556,25.620 +945,23.730,195.229,426.864,349.676,519.968,201.653,430.475,29.335,79.695,29.335,331.034,321.815,345.772,25.620,21.556,25.620 +946,23.755,191.180,434.687,354.316,510.942,197.792,437.562,23.499,88.182,23.499,331.182,320.505,345.603,25.917,23.290,25.917 +947,23.780,185.697,446.261,358.207,500.634,193.317,448.632,17.281,96.340,17.281,329.829,320.583,345.790,18.970,24.405,18.970 +948,23.806,182.728,455.812,361.118,489.901,191.066,457.414,10.874,104.534,10.874,329.274,319.905,346.255,18.809,25.132,18.809 +949,23.830,182.728,455.812,361.118,489.901,191.066,457.414,10.874,104.534,10.874,329.274,319.905,346.255,18.809,25.132,18.809 +950,23.855,180.937,465.888,363.494,478.210,190.215,466.551,4.086,113.070,4.086,328.734,319.862,347.338,19.165,25.437,19.165 +951,23.881,179.999,475.985,364.228,466.442,190.510,475.495,177.331,121.273,177.331,326.857,319.843,347.902,18.306,25.222,18.306 +952,23.906,178.796,488.588,362.787,454.505,191.211,486.274,169.445,129.382,169.445,323.726,321.896,348.985,19.362,24.307,19.362 +953,23.931,178.796,488.588,362.787,454.505,191.211,486.274,169.445,129.382,169.445,323.726,321.896,348.985,19.362,24.307,19.362 +954,23.955,175.556,502.708,359.805,440.864,193.809,496.676,161.715,137.052,161.715,311.801,321.378,350.249,19.956,21.411,19.956 +955,23.981,158.686,523.959,354.932,428.095,197.055,505.255,154.011,143.973,154.011,266.079,322.245,351.448,17.135,20.512,17.135 +956,24.006,180.888,530.033,348.758,417.075,202.465,515.934,146.837,150.333,146.837,301.536,322.237,353.085,18.814,18.478,18.814 +957,24.031,180.888,530.033,348.758,417.075,202.465,515.934,146.837,150.333,146.837,301.536,322.237,353.085,18.814,18.478,18.814 +958,24.055,203.204,531.116,340.672,406.270,209.511,525.440,138.013,155.821,138.013,337.455,322.273,354.424,19.772,21.113,19.772 +959,24.081,213.148,539.057,330.425,396.909,217.463,533.835,129.560,163.202,129.560,341.469,321.734,355.017,19.274,18.930,19.274 +960,24.106,224.040,547.433,317.821,389.408,227.073,542.300,120.579,170.710,120.579,343.666,320.088,355.590,19.606,18.388,19.606 +961,24.131,224.040,547.433,317.821,389.408,227.073,542.300,120.579,170.710,120.579,343.666,320.088,355.590,19.606,18.388,19.606 +962,24.155,236.205,553.885,303.592,382.954,238.240,548.650,111.236,177.865,111.236,344.996,317.488,356.230,18.787,19.573,18.787 +963,24.181,250.555,559.619,288.153,379.720,251.679,554.382,102.110,4.701,102.110,346.141,316.481,356.854,21.372,18.353,21.372 +964,24.205,262.213,561.524,271.342,378.094,262.383,556.537,91.948,12.011,91.948,347.309,314.575,357.289,23.157,17.897,23.157 +965,24.231,262.213,561.524,271.342,378.094,262.383,556.537,91.948,12.011,91.948,347.309,314.575,357.289,23.157,17.897,23.157 +966,24.255,276.373,561.131,255.012,378.866,275.766,556.400,82.689,19.026,82.689,347.922,313.081,357.463,23.779,17.734,23.779 +967,24.281,293.025,558.268,240.100,380.300,291.458,552.814,73.968,26.565,73.968,348.627,310.813,359.977,21.288,20.125,21.288 +968,24.306,308.469,553.450,233.461,391.624,307.431,551.266,64.576,34.931,64.576,347.040,290.498,351.876,22.359,20.431,22.359 +969,24.331,308.469,553.450,233.461,391.624,307.431,551.266,64.576,34.931,64.576,347.040,290.498,351.876,22.359,20.431,22.359 +970,24.355,322.794,551.032,218.614,400.273,318.658,545.048,55.346,42.230,55.346,337.411,291.603,351.959,19.329,19.651,19.329 +971,24.380,355.731,562.694,205.385,409.226,330.428,534.690,47.901,48.814,47.901,278.360,294.352,353.846,22.060,18.908,22.060 +972,24.406,344.591,526.381,195.738,421.214,340.620,523.349,37.360,55.429,37.360,344.278,292.783,354.270,25.837,21.025,25.837 +973,24.431,344.591,526.381,195.738,421.214,340.620,523.349,37.360,55.429,37.360,344.278,292.783,354.270,25.837,21.025,25.837 +974,24.456,350.345,513.474,184.429,425.805,344.303,510.129,28.971,61.928,28.971,347.614,309.706,361.425,25.825,22.588,25.825 +975,24.481,354.265,500.800,179.910,437.484,349.495,498.994,20.730,69.887,20.730,350.556,309.797,360.757,25.814,21.716,25.814 +976,24.507,357.222,491.927,176.893,450.050,352.162,490.779,12.785,76.640,12.785,349.495,310.513,359.873,19.587,20.784,19.587 +977,24.531,357.222,491.927,176.893,450.050,352.162,490.779,12.785,76.640,12.785,349.495,310.513,359.873,19.587,20.784,19.587 +978,24.555,358.978,480.242,173.846,462.588,353.338,479.726,5.234,82.313,5.234,349.286,310.528,360.613,19.020,21.936,19.020 +979,24.580,358.484,468.552,174.229,474.984,353.691,468.718,178.025,89.757,178.025,349.551,312.010,359.143,19.058,19.754,19.058 +980,24.605,356.901,456.723,174.789,486.701,352.408,457.435,170.991,96.423,170.991,350.922,313.299,360.021,21.777,19.835,21.777 +981,24.630,356.901,456.723,174.789,486.701,352.408,457.435,170.991,96.423,170.991,350.922,313.299,360.021,21.777,19.835,21.777 +982,24.655,354.100,447.805,176.461,497.339,349.957,448.972,164.265,103.062,164.265,351.612,313.903,360.221,20.511,19.381,20.511 +983,24.681,350.017,438.793,179.122,506.900,346.466,440.213,158.199,109.627,158.199,352.635,314.809,360.284,20.426,19.125,20.426 +984,24.706,346.284,431.675,181.789,515.388,342.624,433.589,152.387,116.206,152.387,352.599,314.866,360.859,19.235,20.587,19.235 +985,24.732,346.284,431.675,181.789,515.388,342.624,433.589,152.387,116.206,152.387,352.599,314.866,360.859,19.235,20.587,19.235 +986,24.756,342.321,423.941,187.080,523.498,338.499,426.449,146.731,122.276,146.731,350.539,314.922,359.681,19.465,20.959,19.465 +987,24.781,337.967,417.276,191.440,529.954,333.786,420.561,141.843,127.482,141.843,348.395,315.089,359.029,18.815,20.237,18.815 +988,24.806,335.948,409.794,195.125,534.979,329.380,415.906,137.062,132.306,137.062,340.859,314.606,358.801,19.109,18.689,19.109 +989,24.830,335.948,409.794,195.125,534.979,329.380,415.906,137.062,132.306,137.062,340.859,314.606,358.801,19.109,18.689,19.109 +990,24.855,377.945,354.348,200.615,540.124,324.218,410.902,133.531,137.013,133.531,201.622,313.726,357.634,17.871,19.751,17.871 +991,24.880,341.131,381.062,204.948,543.732,319.934,406.970,129.289,142.431,129.289,290.375,314.245,357.324,18.012,19.877,18.012 +992,24.906,326.278,388.579,210.661,547.876,315.607,403.976,124.723,148.241,124.723,318.636,313.748,356.103,19.741,19.111,19.741 +993,24.931,326.278,388.579,210.661,547.876,315.607,403.976,124.723,148.241,124.723,318.636,313.748,356.103,19.741,19.111,19.741 +994,24.955,317.405,389.738,216.038,551.008,310.803,400.772,120.892,155.037,120.892,329.437,313.240,355.154,19.525,19.304,19.525 +995,24.981,310.326,389.470,222.300,554.900,305.784,398.291,117.244,161.565,117.244,335.061,313.065,354.905,18.716,20.871,18.716 +996,25.006,304.358,388.468,228.089,558.053,300.892,396.397,113.615,169.077,113.615,337.259,313.186,354.565,18.828,22.290,18.828 +997,25.031,304.358,388.468,228.089,558.053,300.892,396.397,113.615,169.077,113.615,337.259,313.186,354.565,18.828,22.290,18.828 +998,25.055,298.632,387.455,234.082,560.307,296.022,394.647,109.948,176.424,109.948,338.405,313.014,353.707,19.203,22.955,19.203 +999,25.080,293.482,386.593,239.504,562.440,291.383,393.610,106.650,4.041,106.650,338.585,314.125,353.233,19.027,23.978,19.027 +1000,25.105,288.490,385.997,244.936,564.068,286.870,392.772,103.449,12.395,103.449,338.775,315.084,352.705,18.754,25.426,18.754 +1001,25.131,288.490,385.997,244.936,564.068,286.870,392.772,103.449,12.395,103.449,338.775,315.084,352.705,18.754,25.426,18.754 +1002,25.156,283.233,386.325,250.330,565.338,282.217,391.999,100.154,20.037,100.154,340.962,316.292,352.491,18.908,26.250,18.908 +1003,25.181,278.220,386.842,254.707,566.904,277.557,392.166,97.101,28.277,97.101,341.715,318.255,352.445,18.336,25.084,18.336 +1004,25.206,273.756,386.800,259.659,568.280,273.363,392.179,94.175,35.893,94.175,342.476,319.452,353.263,18.149,24.730,18.149 +1005,25.231,273.756,386.800,259.659,568.280,273.363,392.179,94.175,35.893,94.175,342.476,319.452,353.263,18.149,24.730,18.149 +1006,25.256,269.296,386.418,265.207,568.335,269.184,392.140,91.123,44.076,91.123,341.032,319.126,352.479,17.899,23.959,17.899 +1007,25.281,264.835,387.570,270.292,568.447,264.999,392.647,88.142,51.892,88.142,341.599,320.650,351.758,18.055,22.927,18.055 +1008,25.306,260.713,387.735,275.298,568.207,261.155,392.977,85.179,59.534,85.179,341.078,321.400,351.598,18.825,20.889,18.825 +1009,25.331,260.713,387.735,275.298,568.207,261.155,392.977,85.179,59.534,85.179,341.078,321.400,351.598,18.825,20.889,18.825 +1010,25.356,256.076,387.179,279.823,568.074,256.962,393.599,82.147,67.433,82.147,338.963,322.769,351.924,18.412,20.963,18.412 +1011,25.381,250.288,381.145,283.954,567.788,252.970,394.493,78.641,74.624,78.641,324.775,323.732,352.004,18.575,19.453,18.575 +1012,25.406,237.853,353.912,288.482,566.835,248.318,395.773,75.964,82.432,75.964,265.091,323.472,351.390,17.705,18.703,17.705 +1013,25.431,237.853,353.912,288.482,566.835,248.318,395.773,75.964,82.432,75.964,265.091,323.472,351.390,17.705,18.703,17.705 +1014,25.459,239.717,378.995,293.537,564.500,245.132,396.324,72.646,90.387,72.646,313.606,321.094,349.918,20.223,19.040,20.223 +1015,25.484,236.897,385.726,297.151,563.381,241.366,397.644,69.444,98.185,69.444,324.087,324.855,349.544,21.301,20.528,21.301 +1016,25.510,232.991,389.295,302.865,559.250,237.067,398.519,66.161,106.105,66.161,327.054,320.878,347.223,22.123,21.042,22.123 +1017,25.536,228.714,392.790,309.576,556.338,232.878,400.803,62.540,114.944,62.540,328.697,320.431,346.757,22.002,22.457,22.002 +1018,25.561,228.714,392.790,309.576,556.338,232.878,400.803,62.540,114.944,62.540,328.697,320.431,346.757,22.002,22.457,22.002 +1019,25.586,224.577,395.737,315.366,553.058,228.896,402.891,58.878,122.829,58.878,329.779,319.936,346.493,23.001,23.610,23.001 +1020,25.611,219.933,399.454,321.453,549.388,224.572,406.104,55.098,130.601,55.098,329.672,319.322,345.889,23.326,23.754,23.326 +1021,25.637,215.202,402.499,327.580,545.343,220.623,409.185,50.964,138.393,50.964,329.030,319.476,346.246,24.247,24.797,24.247 +1022,25.662,215.202,402.499,327.580,545.343,220.623,409.185,50.964,138.393,50.964,329.030,319.476,346.246,24.247,24.797,24.247 +1023,25.689,210.160,406.905,333.439,540.890,216.323,413.430,46.637,146.136,46.637,328.206,319.800,346.158,24.113,25.195,24.113 +1024,25.714,205.068,411.982,339.189,535.897,211.847,418.048,41.820,153.754,41.820,328.769,320.675,346.962,24.671,25.082,24.671 +1025,25.739,200.809,416.630,344.652,529.906,208.401,422.424,37.349,161.305,37.349,327.938,321.310,347.039,25.836,24.446,25.836 +1026,25.765,200.809,416.630,344.652,529.906,208.401,422.424,37.349,161.305,37.349,327.938,321.310,347.039,25.836,24.446,25.836 +1027,25.789,195.534,422.646,349.713,523.052,204.206,428.066,32.005,168.551,32.005,327.009,322.230,347.463,25.970,23.560,25.970 +1028,25.815,189.800,428.900,354.210,515.616,200.607,434.304,26.565,175.416,26.565,323.335,323.208,347.501,25.938,21.627,25.938 +1029,25.840,181.944,433.418,358.384,506.958,197.924,439.978,22.317,1.925,22.317,313.203,323.389,347.751,27.042,19.964,27.042 +1030,25.865,181.944,433.418,358.384,506.958,197.924,439.978,22.317,1.925,22.317,313.203,323.389,347.751,27.042,19.964,27.042 +1031,25.889,162.356,440.724,361.444,497.952,194.228,449.956,16.154,7.093,16.154,281.571,324.100,347.935,18.164,20.190,18.164 +1032,25.914,140.809,448.183,363.709,489.016,192.293,457.836,10.620,12.685,10.620,243.691,324.854,348.452,18.122,19.454,18.122 +1033,25.939,180.346,465.130,365.014,479.581,191.032,465.975,4.526,17.103,4.526,327.588,324.891,349.026,18.596,20.954,18.596 +1034,25.964,180.346,465.130,365.014,479.581,191.032,465.975,4.526,17.103,4.526,327.588,324.891,349.026,18.596,20.954,18.596 +1035,25.989,181.366,475.622,365.170,469.107,190.522,475.197,177.337,23.376,177.337,331.154,324.178,349.485,18.887,22.037,18.887 +1036,26.015,183.507,485.695,363.393,457.400,190.880,484.399,170.036,28.989,170.036,334.193,323.727,349.165,21.615,20.910,21.615 +1037,26.040,186.980,497.328,359.896,445.538,192.722,495.542,162.719,35.690,162.719,336.937,322.929,348.963,20.179,21.357,20.179 +1038,26.065,186.980,497.328,359.896,445.538,192.722,495.542,162.719,35.690,162.719,336.937,322.929,348.963,20.179,21.357,20.179 +1039,26.088,190.710,507.880,355.389,432.341,196.223,505.300,154.916,41.186,154.916,337.996,321.444,350.171,19.617,23.518,19.617 +1040,26.114,196.009,518.585,348.413,420.081,201.055,515.374,147.529,47.070,147.529,338.999,319.540,350.961,19.558,25.150,19.558 +1041,26.139,202.929,528.495,340.412,408.424,207.701,524.359,139.086,54.197,139.086,339.808,318.057,352.437,18.388,24.690,18.388 +1042,26.165,202.929,528.495,340.412,408.424,207.701,524.359,139.086,54.197,139.086,339.808,318.057,352.437,18.388,24.690,18.388 +1043,26.190,211.453,538.888,329.951,397.743,216.094,533.473,130.601,60.341,130.601,340.039,316.781,354.302,19.415,25.635,19.415 +1044,26.215,221.929,547.803,322.576,399.753,224.261,544.014,121.608,66.744,121.608,339.877,292.026,348.775,19.326,25.034,19.326 +1045,26.241,233.123,556.089,306.792,390.774,235.416,550.565,112.543,74.055,112.543,337.930,296.699,349.892,18.803,23.077,18.803 +1046,26.267,233.123,556.089,306.792,390.774,235.416,550.565,112.543,74.055,112.543,337.930,296.699,349.892,18.803,23.077,18.803 +1047,26.291,244.927,567.448,291.000,390.000,247.107,558.060,103.074,80.538,103.074,327.992,289.013,347.266,20.317,20.714,20.317 +1048,26.317,256.909,595.705,273.088,375.367,259.408,554.235,93.447,87.052,93.447,275.645,313.666,358.735,22.562,18.765,22.562 +1049,26.342,278.008,565.611,257.486,375.873,277.241,555.252,85.764,92.891,85.764,339.921,314.609,360.695,22.605,20.570,22.605 +1050,26.368,278.008,565.611,257.486,375.873,277.241,555.252,85.764,92.891,85.764,339.921,314.609,360.695,22.605,20.570,22.605 +1051,26.392,291.388,561.164,244.063,378.165,289.383,552.892,76.373,98.842,76.373,343.947,313.387,360.970,22.058,20.114,22.058 +1052,26.418,305.336,555.285,230.170,383.406,302.449,548.547,66.801,105.945,66.801,345.861,313.594,360.522,21.666,18.681,21.666 +1053,26.443,318.309,548.044,216.672,390.569,314.629,542.208,57.768,111.801,57.768,347.234,313.639,361.032,22.781,19.127,22.781 +1054,26.468,329.837,539.023,205.274,399.947,325.739,534.329,48.873,118.088,48.873,348.450,313.647,360.913,23.968,18.947,23.968 +1055,26.493,329.837,539.023,205.274,399.947,325.739,534.329,48.873,118.088,48.873,348.450,313.647,360.913,23.968,18.947,23.968 +1056,26.522,339.435,528.118,195.566,410.738,335.320,524.641,40.192,124.695,40.192,349.754,313.508,360.528,25.485,18.721,25.485 +1057,26.557,346.779,516.597,187.491,422.367,342.769,514.112,31.793,131.186,31.793,351.197,313.354,360.632,25.676,18.908,25.676 +1058,26.582,351.994,504.955,181.568,434.733,348.196,503.289,23.693,137.203,23.693,351.966,312.854,360.262,25.949,21.850,25.949 +1059,26.608,354.560,496.033,176.812,446.925,350.766,494.954,15.884,143.736,15.884,353.027,312.240,360.915,19.557,20.891,19.557 +1060,26.633,354.560,496.033,176.812,446.925,350.766,494.954,15.884,143.736,15.884,353.027,312.240,360.915,19.557,20.891,19.557 +1061,26.661,357.093,485.002,173.880,459.135,352.622,484.338,8.443,150.081,8.443,351.972,311.696,361.012,19.420,21.030,19.420 +1062,26.690,357.566,474.187,172.497,470.493,353.240,474.084,1.353,156.346,1.353,352.902,311.434,361.556,18.515,21.211,18.515 +1063,26.715,358.282,463.587,172.603,479.248,352.525,464.107,174.844,162.391,174.844,349.550,311.566,361.111,18.848,21.118,18.848 +1064,26.740,383.505,449.036,173.636,489.070,351.313,455.499,168.648,166.097,168.648,295.947,310.212,361.617,18.772,18.761,18.772 +1065,26.765,383.505,449.036,173.636,489.070,351.313,455.499,168.648,166.097,168.648,295.947,310.212,361.617,18.772,18.761,18.772 +1066,26.789,388.115,434.716,176.145,497.388,349.091,446.423,163.301,172.266,163.301,279.111,309.859,360.594,17.720,20.258,17.720 +1067,26.814,366.106,430.928,179.420,505.872,346.482,439.255,157.005,177.856,157.005,316.987,309.307,359.622,21.060,19.024,21.060 +1068,26.839,355.131,425.686,183.055,514.163,342.888,432.198,151.991,3.772,151.991,331.472,309.306,359.207,20.193,19.748,20.193 +1069,26.864,355.131,425.686,183.055,514.163,342.888,432.198,151.991,3.772,151.991,331.472,309.306,359.207,20.193,19.748,20.193 +1070,26.889,346.914,420.897,187.492,521.165,339.156,425.974,146.800,10.784,146.800,339.519,309.671,358.061,19.762,21.284,19.762 +1071,26.914,339.580,416.533,191.981,528.136,334.625,420.384,142.144,17.998,142.144,344.949,310.512,357.500,19.035,23.028,19.035 +1072,26.939,334.221,411.872,196.300,534.422,330.080,415.679,137.411,26.194,137.411,346.451,312.189,357.700,19.640,24.517,19.640 +1073,26.964,334.221,411.872,196.300,534.422,330.080,415.679,137.411,26.194,137.411,346.451,312.189,357.700,19.640,24.517,19.640 +1074,26.989,329.434,406.938,201.215,540.445,325.288,411.336,133.311,33.453,133.311,346.021,312.593,358.109,18.979,24.434,18.979 +1075,27.015,324.473,403.478,206.159,545.241,320.770,408.004,129.289,40.956,129.289,345.889,313.815,357.584,19.349,24.124,19.349 +1076,27.040,319.173,400.267,210.824,549.656,315.893,404.881,125.405,48.468,125.405,346.429,314.343,357.750,18.923,24.447,18.923 +1077,27.065,319.173,400.267,210.824,549.656,315.893,404.881,125.405,48.468,125.405,346.429,314.343,357.750,18.923,24.447,18.923 +1078,27.089,314.090,397.812,217.346,552.269,311.787,401.516,121.866,56.310,121.866,347.059,315.902,355.782,18.822,20.247,18.822 +1079,27.114,309.243,395.774,222.212,555.668,307.264,399.419,118.507,64.081,118.507,347.498,317.140,355.793,18.712,20.308,18.712 +1080,27.139,304.684,394.170,226.614,559.126,302.838,398.078,115.278,71.447,115.278,347.709,319.389,356.352,18.813,21.331,18.813 +1081,27.164,304.684,394.170,226.614,559.126,302.838,398.078,115.278,71.447,115.278,347.709,319.389,356.352,18.813,21.331,18.813 +1082,27.189,300.587,392.600,230.360,560.924,298.853,396.828,112.306,78.805,112.306,346.488,319.276,355.627,18.954,20.233,18.954 +1083,27.215,296.078,390.957,234.596,562.941,294.488,395.513,109.240,86.925,109.240,345.972,320.773,355.625,18.846,18.659,18.846 +1084,27.239,292.602,389.345,238.540,564.154,291.069,394.517,106.504,94.309,106.504,344.351,320.974,355.140,18.537,19.172,18.537 +1085,27.265,292.602,389.345,238.540,564.154,291.069,394.517,106.504,94.309,106.504,344.351,320.974,355.140,18.537,19.172,18.537 +1086,27.290,290.839,379.479,241.347,564.969,287.360,393.653,103.793,101.266,103.793,325.501,320.648,354.692,18.350,18.946,18.350 +1087,27.315,294.495,339.025,246.040,565.186,283.251,392.431,101.889,108.978,101.889,244.277,319.140,353.430,17.974,19.606,17.974 +1088,27.340,283.562,368.990,249.746,565.630,279.884,391.977,99.090,116.834,99.090,305.909,318.872,352.468,17.932,19.411,17.932 +1089,27.366,283.562,368.990,249.746,565.630,279.884,391.977,99.090,116.834,99.090,305.909,318.872,352.468,17.932,19.411,17.932 +1090,27.390,278.366,376.207,253.525,565.678,276.685,391.330,96.340,124.114,96.340,321.245,318.402,351.678,18.442,19.309,18.442 +1091,27.416,274.411,379.176,258.035,565.873,273.552,390.939,94.175,131.820,94.175,327.610,317.630,351.199,18.345,20.278,18.345 +1092,27.442,270.506,381.045,262.814,566.284,270.204,391.106,91.723,139.321,91.723,330.512,317.150,350.642,18.330,22.350,18.330 +1093,27.467,270.506,381.045,262.814,566.284,270.204,391.106,91.723,139.321,91.723,330.512,317.150,350.642,18.330,22.350,18.330 +1094,27.490,266.873,382.466,267.115,566.423,266.949,391.195,89.497,146.310,89.497,332.987,317.011,350.446,18.069,23.575,18.069 +1095,27.517,263.208,382.891,271.404,566.407,263.639,391.657,87.184,154.220,87.184,332.287,317.057,349.840,18.273,24.999,18.273 +1096,27.542,259.949,383.689,275.350,566.050,260.685,391.844,84.844,161.565,84.844,333.263,316.860,349.639,18.796,24.982,18.796 +1097,27.567,259.949,383.689,275.350,566.050,260.685,391.844,84.844,161.565,84.844,333.263,316.860,349.639,18.796,24.982,18.796 +1098,27.590,256.660,384.284,279.680,566.301,257.723,392.471,82.600,168.366,82.600,333.910,317.344,350.421,19.370,25.005,19.370 +1099,27.616,253.368,385.366,284.076,565.500,254.689,393.052,80.248,175.627,80.248,334.270,317.596,349.867,19.665,25.068,19.665 +1100,27.641,249.873,386.675,288.397,564.800,251.422,393.852,77.816,2.559,77.816,335.119,317.711,349.802,19.438,24.947,19.438 +1101,27.667,249.873,386.675,288.397,564.800,251.422,393.852,77.816,2.559,77.816,335.119,317.711,349.802,19.438,24.947,19.438 +1102,27.691,246.697,388.233,292.297,564.737,248.536,395.267,75.353,9.310,75.353,335.514,319.101,350.056,19.988,25.593,19.988 +1103,27.717,243.858,389.814,296.482,563.531,245.793,396.095,72.872,16.082,72.872,336.731,319.917,349.876,21.271,25.891,21.271 +1104,27.742,240.438,391.881,300.376,562.020,242.357,397.233,70.278,22.329,70.278,338.030,322.056,349.401,21.118,24.728,21.118 +1105,27.767,240.438,391.881,300.376,562.020,242.357,397.233,70.278,22.329,70.278,338.030,322.056,349.401,21.118,24.728,21.118 +1106,27.790,237.136,393.675,304.213,560.522,239.134,398.545,67.701,28.824,67.701,338.587,323.325,349.115,22.008,23.997,22.008 +1107,27.816,233.678,395.621,308.650,558.824,235.933,400.421,64.832,34.452,64.832,337.971,323.694,348.578,21.743,21.948,21.743 +1108,27.841,230.037,395.981,313.314,556.809,233.139,401.821,62.021,39.632,62.021,335.750,323.432,348.975,22.989,20.454,22.989 +1109,27.866,230.037,395.981,313.314,556.809,233.139,401.821,62.021,39.632,62.021,335.750,323.432,348.975,22.989,20.454,22.989 +1110,27.890,226.091,397.434,317.066,554.881,229.941,403.900,59.237,44.048,59.237,333.549,323.951,348.600,23.119,19.430,23.119 +1111,27.915,219.090,397.693,320.572,552.620,225.330,406.576,54.910,47.779,54.910,326.790,324.297,348.502,22.160,19.515,22.160 +1112,27.941,200.589,379.997,324.217,550.182,222.811,408.366,51.927,50.654,51.927,276.278,324.216,348.350,20.953,18.483,20.953 +1113,27.965,200.589,379.997,324.217,550.182,222.811,408.366,51.927,50.654,51.927,276.278,324.216,348.350,20.953,18.483,20.953 +1114,27.989,187.797,375.679,328.273,547.299,218.379,412.533,50.315,53.616,50.315,251.991,324.014,347.771,17.913,18.559,17.913 +1115,28.015,202.191,401.955,332.121,543.921,214.936,415.610,46.975,56.667,46.975,310.162,323.966,347.519,18.081,18.837,18.081 +1116,28.040,202.943,408.698,336.331,539.527,212.878,417.805,42.510,60.350,42.510,319.556,323.733,346.510,24.695,18.825,24.695 +1117,28.065,202.943,408.698,336.331,539.527,212.878,417.805,42.510,60.350,42.510,319.556,323.733,346.510,24.695,18.825,24.695 +1118,28.089,201.756,414.805,340.622,534.384,209.417,420.934,38.660,64.799,38.660,327.028,323.446,346.650,25.612,19.214,25.612 +1119,28.114,198.814,421.111,344.706,528.240,205.411,425.584,34.136,69.814,34.136,329.863,323.037,345.804,26.094,19.296,26.094 +1120,28.140,195.354,426.631,349.409,521.158,202.057,430.461,29.745,75.069,29.745,330.429,322.594,345.870,25.303,21.450,25.303 +1121,28.165,195.354,426.631,349.409,521.158,202.057,430.461,29.745,75.069,29.745,330.429,322.594,345.870,25.303,21.450,25.303 +1122,28.190,192.069,433.849,353.365,513.189,198.245,436.657,24.444,80.538,24.444,332.201,322.058,345.770,25.656,22.358,25.656 +1123,28.215,188.286,441.268,357.147,504.691,195.175,443.621,18.853,85.741,18.853,331.476,321.047,346.034,26.267,23.594,26.267 +1124,28.240,184.726,451.558,359.969,494.999,192.136,453.387,13.864,91.790,13.864,330.566,320.344,345.830,19.178,24.238,19.178 +1125,28.265,184.726,451.558,359.969,494.999,192.136,453.387,13.864,91.790,13.864,330.566,320.344,345.830,19.178,24.238,19.178 +1126,28.289,182.573,460.933,362.229,484.040,190.496,461.948,7.297,97.275,7.297,330.321,320.020,346.297,19.124,25.115,19.124 +1127,28.315,181.491,470.486,363.547,473.193,190.246,470.644,1.032,102.804,1.032,329.127,319.888,346.639,18.375,25.353,18.375 +1128,28.340,180.688,480.413,363.635,461.752,190.278,479.473,174.401,109.006,174.401,329.245,319.763,348.518,18.636,25.560,18.636 +1129,28.365,180.688,480.413,363.635,461.752,190.278,479.473,174.401,109.006,174.401,329.245,319.763,348.518,18.636,25.560,18.636 +1130,28.389,181.452,492.593,361.880,449.676,191.866,490.171,166.908,114.775,166.908,328.150,319.811,349.535,20.069,24.655,20.069 +1131,28.414,181.891,504.386,357.711,437.508,194.074,499.839,159.532,120.518,159.532,324.197,320.493,350.205,19.450,22.289,19.450 +1132,28.440,182.031,518.858,352.065,425.312,198.322,510.131,151.821,126.327,151.821,314.185,321.597,351.148,20.557,20.378,20.557 +1133,28.465,182.031,518.858,352.065,425.312,198.322,510.131,151.821,126.327,151.821,314.185,321.597,351.148,20.557,20.378,20.557 +1134,28.489,170.062,542.273,345.907,413.570,203.550,517.918,143.973,131.923,143.973,270.191,320.882,353.008,17.278,19.907,17.278 +1135,28.515,180.278,556.707,337.291,402.822,210.942,527.261,136.161,137.873,136.161,269.625,321.016,354.650,18.190,18.874,18.190 +1136,28.540,213.987,542.829,327.621,394.374,219.494,535.716,127.747,143.565,127.747,337.920,321.044,355.911,19.156,20.252,19.156 +1137,28.565,213.987,542.829,327.621,394.374,219.494,535.716,127.747,143.565,127.747,337.920,321.044,355.911,19.156,20.252,19.156 +1138,28.589,225.715,549.518,315.256,386.433,229.380,542.855,118.811,149.361,118.811,341.680,320.730,356.890,18.839,19.233,18.839 +1139,28.615,237.912,555.241,301.969,381.014,240.273,548.748,109.983,155.161,109.983,343.623,319.529,357.439,18.796,19.212,18.796 +1140,28.640,250.154,559.436,287.217,377.641,251.304,553.263,100.552,161.259,100.552,345.903,318.760,358.459,21.744,19.312,21.744 +1141,28.666,250.154,559.436,287.217,377.641,251.304,553.263,100.552,161.259,100.552,345.903,318.760,358.459,21.744,19.312,21.744 +1142,28.690,263.261,561.927,271.692,377.225,263.394,556.057,91.294,167.146,91.294,346.205,316.384,357.948,23.152,19.015,23.152 +1143,28.715,277.377,561.492,256.225,378.019,276.658,556.004,82.532,173.639,82.532,347.191,314.511,358.261,23.912,18.753,23.912 +1144,28.740,293.485,557.673,240.500,381.500,292.244,553.266,74.266,0.000,74.266,349.565,313.000,358.722,21.840,17.000,21.840 +1145,28.765,293.485,557.673,240.500,381.500,292.244,553.266,74.266,0.000,74.266,349.565,313.000,358.722,21.840,17.000,21.840 +1146,28.789,307.443,552.459,226.304,387.286,305.506,548.311,64.972,6.271,64.972,349.667,311.630,358.823,21.977,17.586,21.977 +1147,28.815,319.838,545.089,213.694,394.336,317.325,541.336,56.203,12.907,56.203,350.576,309.843,359.608,23.476,17.322,23.476 +1148,28.840,331.220,537.110,202.969,402.754,327.484,533.010,47.654,19.440,47.654,349.198,307.748,360.291,24.820,17.972,24.820 +1149,28.864,331.220,537.110,202.969,402.754,327.484,533.010,47.654,19.440,47.654,349.198,307.748,360.291,24.820,17.972,24.820 +1150,28.890,341.621,531.293,194.434,411.460,334.456,525.438,39.254,25.253,39.254,342.586,306.363,361.093,20.474,19.607,20.474 +1151,28.915,406.727,556.250,187.097,421.320,341.192,515.737,31.724,30.793,31.724,207.344,306.445,361.437,18.682,20.374,18.682 +1152,28.940,357.666,510.824,181.035,432.597,346.464,505.452,25.622,36.431,25.622,336.487,307.194,361.333,25.569,20.421,25.569 +1153,28.965,357.666,510.824,181.035,432.597,346.464,505.452,25.622,36.431,25.622,336.487,307.194,361.333,25.569,20.421,25.569 +1154,28.989,357.307,498.008,176.905,444.005,350.052,495.849,16.574,42.274,16.574,346.343,307.142,361.483,19.648,20.449,19.648 +1155,29.015,358.978,486.680,175.465,455.386,353.066,485.710,9.317,48.601,9.317,348.351,307.305,360.334,19.543,22.119,19.543 +1156,29.040,359.332,475.890,173.968,467.022,353.935,475.657,2.480,55.081,2.480,349.539,310.656,360.343,18.546,21.984,18.546 +1157,29.066,359.332,475.890,173.968,467.022,353.935,475.657,2.480,55.081,2.480,349.539,310.656,360.343,18.546,21.984,18.546 +1158,29.092,359.199,465.350,174.032,477.229,353.664,465.737,176.004,63.048,176.004,348.896,309.945,359.993,18.976,20.094,18.976 +1159,29.119,357.323,454.531,175.303,488.037,352.232,455.461,169.636,70.448,169.636,349.457,310.910,359.807,21.545,19.410,21.545 +1160,29.144,354.577,446.065,177.218,497.637,349.802,447.473,163.573,78.079,163.573,349.494,312.414,359.451,21.324,19.536,21.324 +1161,29.170,351.173,438.197,180.067,506.712,347.035,439.859,158.118,84.629,158.118,350.788,313.625,359.708,20.407,18.874,20.407 +1162,29.195,351.173,438.197,180.067,506.712,347.035,439.859,158.118,84.629,158.118,350.788,313.625,359.708,20.407,18.874,20.407 +1163,29.222,346.973,431.972,182.797,514.974,343.345,433.832,152.855,92.121,152.855,351.614,314.340,359.769,19.622,19.357,19.622 +1164,29.247,343.006,425.616,186.169,521.759,339.622,427.737,147.926,98.813,147.926,351.927,315.142,359.914,19.919,19.105,19.919 +1165,29.273,338.596,419.932,189.789,527.941,335.471,422.248,143.444,105.658,143.444,352.170,315.929,359.948,19.251,19.360,19.251 +1166,29.298,338.596,419.932,189.789,527.941,335.471,422.248,143.444,105.658,143.444,352.170,315.929,359.948,19.251,19.360,19.251 +1167,29.323,334.030,415.222,194.223,533.631,331.286,417.595,139.140,112.557,139.140,351.893,316.234,359.149,19.358,19.138,19.358 +1168,29.348,331.318,409.804,198.561,538.415,327.337,413.764,135.154,119.231,135.154,347.182,316.649,358.414,18.749,20.030,18.749 +1169,29.373,329.114,403.339,202.183,541.770,323.324,409.911,131.375,125.972,131.375,340.521,315.849,358.038,18.698,18.797,18.698 +1170,29.399,329.114,403.339,202.183,541.770,323.324,409.911,131.375,125.972,131.375,340.521,315.849,358.038,18.698,18.797,18.698 +1171,29.423,367.458,344.764,206.607,545.219,318.552,406.105,128.565,132.603,128.565,200.219,315.008,357.120,18.005,19.617,18.005 +1172,29.448,331.856,379.349,210.998,548.168,314.974,403.466,124.992,139.497,124.992,297.463,314.985,356.341,17.859,19.738,17.859 +1173,29.474,320.655,386.428,215.146,550.721,311.578,401.281,121.430,146.634,121.430,320.787,314.493,355.599,19.578,19.209,19.578 +1174,29.498,320.655,386.428,215.146,550.721,311.578,401.281,121.430,146.634,121.430,320.787,314.493,355.599,19.578,19.209,19.578 +1175,29.523,314.114,387.608,219.660,553.293,307.723,399.315,118.628,153.172,118.628,328.018,313.980,354.693,19.241,20.278,19.241 +1176,29.549,308.762,388.350,224.000,555.719,304.192,397.698,116.053,159.809,116.053,333.560,313.899,354.370,18.686,20.981,18.686 +1177,29.574,304.135,388.582,228.215,557.874,300.723,396.423,113.520,166.159,113.520,336.847,313.833,353.948,18.671,22.009,18.671 +1178,29.599,304.135,388.582,228.215,557.874,300.723,396.423,113.520,166.159,113.520,336.847,313.833,353.948,18.671,22.009,18.671 +1179,29.623,300.409,387.658,232.048,559.872,297.451,395.330,111.084,172.674,111.084,337.665,314.171,354.110,18.908,23.535,18.908 +1180,29.649,296.911,386.993,235.554,561.149,294.420,394.294,108.843,179.145,108.843,338.423,313.189,353.850,18.921,23.624,18.921 +1181,29.674,293.864,386.564,239.454,562.514,291.735,393.608,106.821,5.102,106.821,338.897,314.783,353.616,19.033,24.029,19.033 +1182,29.699,293.864,386.564,239.454,562.514,291.735,393.608,106.821,5.102,106.821,338.897,314.783,353.616,19.033,24.029,19.033 +1183,29.723,290.896,386.139,242.834,562.873,289.164,392.636,104.931,10.784,104.931,339.406,315.377,352.854,19.067,26.383,19.067 +1184,29.748,287.630,386.185,246.400,563.062,286.368,391.684,102.926,16.220,102.926,340.668,315.992,351.951,18.918,28.980,18.918 +1185,29.774,284.622,386.730,248.543,564.902,283.567,392.107,101.094,23.429,101.094,341.651,317.658,352.610,18.664,26.609,18.664 +1186,29.799,284.622,386.730,248.543,564.902,283.567,392.107,101.094,23.429,101.094,341.651,317.658,352.610,18.664,26.609,18.664 +1187,29.823,282.216,387.203,250.994,566.122,281.368,392.289,99.462,29.358,99.462,342.607,318.888,352.921,18.906,25.058,18.906 +1188,29.850,279.293,386.634,253.992,567.099,278.560,392.058,97.696,35.311,97.696,342.562,319.100,353.508,18.534,24.243,18.534 +1189,29.875,276.874,386.944,256.415,567.674,276.311,392.131,96.194,40.943,96.194,342.894,319.102,353.330,18.095,24.006,18.095 +1190,29.901,274.645,386.762,259.086,568.371,274.192,392.198,94.764,46.407,94.764,342.729,319.208,353.638,18.187,23.543,18.187 +1191,29.927,274.645,386.762,259.086,568.371,274.192,392.198,94.764,46.407,94.764,342.729,319.208,353.638,18.187,23.543,18.187 +1192,29.951,272.388,386.740,261.511,568.598,272.080,392.205,93.225,51.825,93.225,342.471,320.481,353.417,18.014,23.432,18.014 +1193,29.976,270.250,386.869,263.880,568.752,270.082,392.334,91.762,56.940,91.762,342.115,320.582,353.051,18.022,23.298,18.022 +1194,30.002,270.250,386.869,263.880,568.752,270.082,392.334,91.762,56.940,91.762,342.115,320.582,353.051,18.022,23.298,18.022 +1195,30.027,268.362,387.446,266.507,568.453,268.312,392.206,90.600,61.498,90.600,342.992,320.983,352.512,18.093,21.351,18.093 +1196,30.053,266.555,386.530,268.582,568.281,266.623,392.124,89.306,65.556,89.306,341.145,321.277,352.335,17.811,20.525,17.811 +1197,30.078,265.091,388.073,270.061,569.169,265.242,393.017,88.255,68.911,88.255,342.542,322.725,352.434,18.017,20.844,18.017 +1198,30.103,263.590,386.182,271.305,569.065,263.908,393.021,87.337,71.491,87.337,338.704,322.878,352.396,18.213,20.602,18.213 +1199,30.129,263.590,386.182,271.305,569.065,263.908,393.021,87.337,71.491,87.337,338.704,322.878,352.396,18.213,20.602,18.213 +1200,30.155,262.702,386.721,272.179,569.096,263.067,392.991,86.666,73.301,86.666,340.113,322.883,352.674,18.377,20.976,18.377 +1201,30.180,261.622,385.206,272.982,569.145,262.175,392.952,85.914,74.389,85.914,337.497,323.364,353.030,18.453,20.849,18.453 +1202,30.206,260.781,384.802,273.764,569.338,261.493,393.579,85.365,74.727,85.365,334.739,323.635,352.351,18.507,20.710,18.507 +1203,30.232,260.781,384.802,273.764,569.338,261.493,393.579,85.365,74.727,85.365,334.739,323.635,352.351,18.507,20.710,18.507 +1204,30.256,260.213,386.344,274.405,569.165,260.862,393.477,84.806,74.509,84.806,338.060,323.635,352.385,18.650,20.472,18.650 +1205,30.282,259.961,385.329,275.192,568.944,260.709,393.368,84.685,73.667,84.685,336.177,323.594,352.324,18.664,20.332,18.664 +1206,30.308,259.744,385.310,275.652,568.951,260.511,393.363,84.560,72.239,84.560,336.288,323.520,352.466,18.772,20.661,18.772 +1207,30.333,259.744,385.310,275.652,568.951,260.511,393.363,84.560,72.239,84.560,336.288,323.520,352.466,18.772,20.661,18.772 +1208,30.357,259.723,385.815,275.972,568.828,260.444,393.322,84.508,69.937,84.508,337.290,323.631,352.373,18.779,20.714,18.779 +1209,30.382,259.791,386.306,276.042,568.631,260.450,393.227,84.560,66.958,84.560,338.279,322.622,352.185,18.867,20.670,18.867 +1210,30.407,260.088,387.315,276.096,568.439,260.629,393.166,84.719,63.146,84.719,340.155,322.024,351.906,18.861,20.644,18.861 +1211,30.432,260.088,387.315,276.096,568.439,260.629,393.166,84.719,63.146,84.719,340.155,322.024,351.906,18.861,20.644,18.861 +1212,30.456,260.505,387.804,275.873,568.272,260.964,393.090,85.030,58.627,85.030,341.017,321.735,351.630,18.885,20.949,18.885 +1213,30.482,261.038,387.278,275.206,568.388,261.510,393.161,85.412,53.842,85.412,339.717,321.590,351.521,18.675,22.545,18.675 +1214,30.508,261.662,387.208,274.432,568.168,262.048,392.487,85.815,48.247,85.815,341.648,320.887,352.234,18.414,22.691,18.414 +1215,30.533,261.662,387.208,274.432,568.168,262.048,392.487,85.815,48.247,85.815,341.648,320.887,352.234,18.414,22.691,18.414 +1216,30.557,262.303,387.239,273.612,568.231,262.650,392.593,86.295,42.351,86.295,341.228,320.316,351.959,18.321,23.478,18.321 +1217,30.583,262.955,386.698,272.493,568.328,263.287,392.634,86.804,36.254,86.804,339.978,320.842,351.868,18.210,24.891,18.210 +1218,30.607,263.580,386.687,271.532,568.076,263.858,392.510,87.274,29.922,87.274,339.805,320.755,351.465,18.122,25.452,18.122 +1219,30.633,263.580,386.687,271.532,568.076,263.858,392.510,87.274,29.922,87.274,339.805,320.755,351.465,18.122,25.452,18.122 +1220,30.657,264.310,386.144,270.793,567.983,264.557,392.466,87.765,23.199,87.765,338.601,320.256,351.254,18.011,25.867,18.011 +1221,30.683,265.108,385.555,270.541,567.863,265.307,392.372,88.332,16.557,88.332,337.498,318.571,351.138,17.886,25.855,17.886 +1222,30.708,266.041,384.559,269.538,567.782,266.187,391.872,88.854,9.926,88.854,337.253,317.968,351.882,18.176,25.980,18.176 +1223,30.734,266.041,384.559,269.538,567.782,266.187,391.872,88.854,9.926,88.854,337.253,317.968,351.882,18.176,25.980,18.176 +1224,30.758,266.754,384.018,268.418,567.468,266.841,392.217,89.394,3.180,89.394,334.119,317.289,350.516,17.719,25.516,17.719 +1225,30.783,267.500,383.500,267.558,567.338,267.500,391.669,90.000,176.035,90.000,335.000,316.528,351.338,17.000,25.187,17.000 +1226,30.808,268.614,383.012,266.376,566.979,268.550,391.473,90.437,169.249,90.437,334.112,316.870,351.035,18.099,25.444,18.099 +1227,30.833,268.614,383.012,266.376,566.979,268.550,391.473,90.437,169.249,90.437,334.112,316.870,351.035,18.099,25.444,18.099 +1228,30.856,269.371,382.526,265.157,566.982,269.204,391.456,91.074,161.952,91.074,333.279,316.573,351.143,18.072,24.657,18.072 +1229,30.882,270.199,383.020,263.803,566.650,269.950,391.755,91.637,154.058,91.637,332.521,316.677,349.999,18.221,24.182,18.221 +1230,30.907,271.369,381.574,262.447,566.488,270.987,391.195,92.278,147.529,92.278,331.732,316.987,350.988,18.270,23.392,18.270 +1231,30.936,272.340,380.639,260.829,566.218,271.826,391.129,92.808,139.399,92.808,329.830,317.261,350.834,18.419,22.452,18.419 +1232,30.969,273.825,379.215,259.184,565.781,273.068,390.954,93.691,132.797,93.691,327.191,317.881,350.718,18.349,20.518,18.349 +1233,30.995,273.825,379.215,259.184,565.781,273.068,390.954,93.691,132.797,93.691,327.191,317.881,350.718,18.349,20.518,18.349 +1234,31.021,274.971,376.765,257.208,565.747,273.888,390.971,94.362,124.958,94.362,322.580,318.516,351.076,18.125,19.271,18.125 +1235,31.046,276.402,372.799,255.996,566.215,274.783,391.221,95.024,117.553,95.024,314.950,319.016,351.935,18.062,19.004,18.062 +1236,31.075,278.492,365.704,254.994,566.767,275.814,391.813,95.856,110.082,95.856,299.837,319.278,352.329,18.161,19.683,18.161 +1237,31.101,278.492,365.704,254.994,566.767,275.814,391.813,95.856,110.082,95.856,299.837,319.278,352.329,18.161,19.683,18.161 +1238,31.125,284.222,330.647,253.649,567.695,276.781,392.662,96.843,102.724,96.843,228.163,321.266,353.084,17.991,19.320,17.991 +1239,31.151,280.102,378.791,252.602,567.604,278.279,392.668,97.483,95.377,97.483,325.589,321.063,353.581,18.153,20.240,18.153 +1240,31.177,280.437,387.329,252.373,567.957,279.629,392.823,98.366,88.196,98.366,343.366,322.407,354.472,18.303,20.628,18.303 +1241,31.203,281.702,387.878,251.019,567.190,280.931,392.582,99.307,81.283,99.307,344.759,321.522,354.294,18.601,21.568,18.601 +1242,31.229,281.702,387.878,251.019,567.190,280.931,392.582,99.307,81.283,99.307,344.759,321.522,354.294,18.601,21.568,18.601 +1243,31.255,283.163,388.297,249.562,566.836,282.332,392.836,100.379,73.686,100.379,344.886,320.880,354.114,18.704,20.037,18.704 +1244,31.280,284.721,388.233,247.318,566.308,283.740,393.069,101.470,65.659,101.470,344.175,319.799,354.044,19.231,21.324,19.231 +1245,31.306,287.226,388.746,245.781,565.519,286.197,393.215,102.967,58.392,102.967,344.787,319.306,353.959,19.189,20.833,19.189 +1246,31.331,287.226,388.746,245.781,565.519,286.197,393.215,102.967,58.392,102.967,344.787,319.306,353.959,19.189,20.833,19.189 +1247,31.357,288.706,388.676,242.684,565.543,287.427,393.793,104.036,51.044,104.036,344.401,318.746,354.948,18.675,24.140,18.675 +1248,31.382,291.029,388.897,240.792,564.717,289.611,394.002,105.524,43.781,105.524,344.511,317.705,355.107,18.842,24.126,18.842 +1249,31.407,293.375,389.043,238.479,563.318,291.803,394.178,107.021,36.431,107.021,343.939,317.577,354.680,18.773,24.463,18.773 +1250,31.432,293.375,389.043,238.479,563.318,291.803,394.178,107.021,36.431,107.021,343.939,317.577,354.680,18.773,24.463,18.773 +1251,31.457,295.516,389.496,235.966,562.060,293.794,394.631,108.538,29.501,108.538,343.422,317.036,354.253,18.724,25.149,18.724 +1252,31.483,298.904,389.589,233.502,560.314,296.849,395.069,110.556,22.917,110.556,342.228,315.785,353.933,18.961,25.812,18.961 +1253,31.508,301.695,389.900,230.859,559.029,299.253,395.852,112.306,14.931,112.306,340.984,314.735,353.851,18.954,26.153,18.954 +1254,31.533,301.695,389.900,230.859,559.029,299.253,395.852,112.306,14.931,112.306,340.984,314.735,353.851,18.954,26.153,18.954 +1255,31.556,304.639,390.413,227.437,557.947,301.711,396.920,114.228,8.059,114.228,340.375,314.237,354.646,18.831,23.693,18.831 +1256,31.582,308.300,391.400,224.023,556.217,304.859,398.282,116.565,0.754,116.565,339.435,312.210,354.824,18.783,23.695,18.783 +1257,31.607,311.570,392.133,220.299,554.291,307.501,399.564,118.706,174.806,118.706,338.246,313.616,355.189,18.878,22.724,18.878 +1258,31.633,311.570,392.133,220.299,554.291,307.501,399.564,118.706,174.806,118.706,338.246,313.616,355.189,18.878,22.724,18.878 +1259,31.657,316.072,393.177,216.662,551.449,311.250,401.089,121.357,168.311,121.357,336.706,313.397,355.239,19.040,21.139,19.040 +1260,31.682,320.808,393.038,212.650,548.950,314.304,402.794,123.690,161.565,123.690,332.543,313.698,355.993,19.137,20.555,19.137 +1261,31.707,327.023,393.488,208.536,545.848,318.264,405.279,126.607,155.872,126.607,327.175,313.432,356.550,19.931,19.688,19.931 +1262,31.733,327.023,393.488,208.536,545.848,318.264,405.279,126.607,155.872,126.607,327.175,313.432,356.550,19.931,19.688,19.931 +1263,31.757,334.775,391.498,204.401,542.785,321.319,407.944,129.289,150.535,129.289,314.297,313.706,356.796,20.123,19.794,20.123 +1264,31.783,347.075,385.289,200.782,539.920,324.005,410.365,132.614,146.097,132.614,289.398,313.694,357.545,17.927,19.795,17.927 +1265,31.809,381.630,360.154,197.523,536.811,327.259,413.392,135.603,142.028,135.603,205.898,313.807,358.089,17.803,19.881,17.803 +1266,31.834,381.630,360.154,197.523,536.811,327.259,413.392,135.603,142.028,135.603,205.898,313.807,358.089,17.803,19.881,17.803 +1267,31.858,389.845,364.823,193.436,532.226,330.621,416.645,138.814,138.984,138.814,201.314,313.818,358.706,17.780,18.544,17.780 +1268,31.883,341.301,415.329,189.674,527.663,334.352,420.768,141.953,135.966,141.953,341.983,314.054,359.631,18.147,19.224,18.147 +1269,31.909,342.347,421.813,186.780,522.829,337.772,424.938,145.658,132.955,145.658,348.711,314.311,359.792,19.334,20.190,19.334 +1270,31.934,342.347,421.813,186.780,522.829,337.772,424.938,145.658,132.955,145.658,348.711,314.311,359.792,19.334,20.190,19.334 +1271,31.958,344.693,428.235,183.791,517.735,341.195,430.253,150.018,128.928,150.018,352.038,314.378,360.115,18.956,21.064,18.956 +1272,31.983,348.267,434.453,179.902,510.274,344.456,436.258,154.654,124.258,154.654,352.363,314.003,360.797,19.977,20.582,19.977 +1273,32.010,350.975,441.570,177.499,502.553,347.671,442.784,159.829,118.985,159.829,353.649,313.821,360.689,19.865,19.119,19.865 +1274,32.036,354.055,449.313,175.255,493.892,350.253,450.316,165.213,113.703,165.213,352.785,313.731,360.649,20.707,19.318,20.707 +1275,32.061,354.055,449.313,175.255,493.892,350.253,450.316,165.213,113.703,165.213,352.785,313.731,360.649,20.707,19.318,20.707 +1276,32.085,356.311,458.270,174.000,484.000,352.439,458.863,171.285,108.435,171.285,352.539,313.065,360.375,19.848,19.606,19.848 +1277,32.110,357.979,467.981,173.887,473.589,353.599,468.157,177.696,102.933,177.696,350.802,312.706,359.570,18.864,20.402,18.864 +1278,32.136,358.641,478.603,174.845,462.749,353.931,478.254,4.236,97.696,4.236,350.041,312.377,359.485,18.911,20.784,18.911 +1279,32.162,358.641,478.603,174.845,462.749,353.931,478.254,4.236,97.696,4.236,350.041,312.377,359.485,18.911,20.784,18.911 +1280,32.188,357.733,489.359,176.769,450.684,352.787,488.390,11.094,92.211,11.094,349.886,311.463,359.968,19.203,21.312,19.203 +1281,32.213,356.000,497.500,180.395,438.968,351.073,495.858,18.435,87.965,18.435,349.432,310.692,359.819,25.614,20.190,25.614 +1282,32.239,351.600,509.800,184.469,427.549,346.297,507.149,26.565,82.585,26.565,348.827,311.103,360.684,25.044,18.610,25.044 +1283,32.264,351.600,509.800,184.469,427.549,346.297,507.149,26.565,82.585,26.565,348.827,311.103,360.684,25.044,18.610,25.044 +1284,32.290,346.147,520.282,190.234,416.946,340.815,516.693,33.944,76.945,33.944,348.379,310.006,361.233,25.542,17.817,25.542 +1285,32.315,338.837,531.788,201.847,418.052,337.049,530.173,42.089,71.200,42.089,346.155,286.533,350.973,25.423,18.208,25.423 +1286,32.341,329.374,543.195,214.386,414.368,329.011,542.751,50.774,65.489,50.774,342.732,274.926,343.879,23.509,21.083,23.509 +1287,32.366,329.374,543.195,214.386,414.368,329.011,542.751,50.774,65.489,50.774,342.732,274.926,343.879,23.509,21.083,23.509 +1288,32.391,349.840,610.007,226.806,405.270,315.122,552.407,58.921,60.772,58.921,208.705,274.386,343.215,18.772,19.407,18.772 +1289,32.416,304.529,563.450,240.556,397.907,302.390,558.204,67.818,54.904,67.818,332.228,275.089,343.558,18.897,20.212,18.897 +1290,32.440,288.511,560.595,251.718,385.671,287.839,557.723,76.845,49.399,76.845,345.617,291.121,351.516,22.333,21.693,22.333 +1291,32.465,288.511,560.595,251.718,385.671,287.839,557.723,76.845,49.399,76.845,345.617,291.121,351.516,22.333,21.693,22.333 +1292,32.490,276.049,561.776,259.954,376.050,275.653,555.514,86.381,42.990,86.381,347.646,309.969,360.194,23.585,24.510,23.585 +1293,32.517,258.729,560.737,275.175,374.959,259.216,554.099,94.194,38.157,94.194,346.343,311.719,359.655,23.304,24.095,23.304 +1294,32.542,246.870,557.945,289.050,378.706,248.106,552.753,103.392,32.499,103.392,346.921,312.078,357.595,20.753,21.116,20.753 +1295,32.567,246.870,557.945,289.050,378.706,248.106,552.753,103.392,32.499,103.392,346.921,312.078,357.595,20.753,21.116,20.753 +1296,32.590,234.415,553.210,303.093,383.825,236.456,548.290,112.535,26.796,112.535,344.239,313.074,354.892,18.956,20.395,18.956 +1297,32.616,223.414,547.051,316.014,391.068,225.925,542.890,121.114,21.003,121.114,343.346,314.968,353.068,19.804,18.538,19.804 +1298,32.641,213.489,538.902,328.277,398.310,216.729,534.963,129.438,15.400,129.438,342.597,316.621,352.798,19.254,18.728,19.254 +1299,32.666,213.489,538.902,328.277,398.310,216.729,534.963,129.438,15.400,129.438,342.597,316.621,352.798,19.254,18.728,19.254 +1300,32.690,205.088,530.191,338.900,407.086,209.188,526.446,137.591,9.713,137.591,341.436,318.778,352.542,19.731,18.674,19.731 +1301,32.716,196.166,522.187,347.435,416.393,203.063,517.420,145.349,4.135,145.349,335.644,320.116,352.413,19.368,19.395,19.368 +1302,32.741,191.764,511.581,354.478,426.532,198.425,508.125,152.585,178.710,152.585,337.182,321.256,352.191,20.317,18.946,20.317 +1303,32.766,191.764,511.581,354.478,426.532,198.425,508.125,152.585,178.710,152.585,337.182,321.256,352.191,20.317,18.946,20.317 +1304,32.790,185.918,502.443,359.030,437.274,194.709,499.155,159.497,173.660,159.497,332.401,322.681,351.173,20.378,19.546,20.378 +1305,32.816,172.515,495.397,362.441,446.664,192.664,490.756,167.027,170.054,167.027,309.333,323.878,350.684,17.811,19.172,17.811 +1306,32.841,129.800,489.900,364.347,456.407,191.300,482.213,172.875,165.537,172.875,225.867,324.060,349.824,17.365,19.804,17.365 +1307,32.866,129.800,489.900,364.347,456.407,191.300,482.213,172.875,165.537,172.875,225.867,324.060,349.824,17.365,19.804,17.365 +1308,32.890,164.601,474.535,365.056,466.192,190.573,473.886,178.568,161.250,178.568,297.282,324.459,349.242,18.144,21.180,18.144 +1309,32.915,174.625,465.205,365.019,476.670,191.253,466.402,4.118,156.084,4.118,314.769,323.796,348.110,18.815,22.512,18.815 +1310,32.941,178.996,456.971,363.821,485.905,191.711,459.130,9.638,149.712,9.638,322.534,323.699,348.328,18.918,23.238,18.918 +1311,32.966,178.996,456.971,363.821,485.905,191.711,459.130,9.638,149.712,9.638,322.534,323.699,348.328,18.918,23.238,18.918 +1312,32.990,182.573,448.918,361.887,494.686,193.398,451.854,15.173,143.207,15.173,325.220,323.008,347.651,19.303,24.637,19.303 +1313,33.016,186.148,441.820,358.971,502.499,195.324,445.190,20.171,136.637,20.171,327.193,322.067,346.744,19.559,24.840,19.559 +1314,33.042,189.384,434.268,355.840,509.866,198.037,438.005,23.356,129.903,23.356,327.873,322.144,346.724,26.144,25.521,26.144 +1315,33.067,189.384,434.268,355.840,509.866,198.037,438.005,23.356,129.903,23.356,327.873,322.144,346.724,26.144,25.521,26.144 +1316,33.091,193.197,427.827,351.783,516.858,200.967,431.983,28.142,123.056,28.142,328.414,322.883,346.037,25.715,25.424,25.715 +1317,33.116,196.060,423.652,348.051,522.515,203.419,428.181,31.608,116.114,31.608,327.954,322.019,345.235,25.943,24.490,25.943 +1318,33.141,199.294,419.257,344.423,527.648,206.099,424.070,35.272,109.290,35.272,328.816,321.006,345.486,25.807,24.163,25.807 +1319,33.166,199.294,419.257,344.423,527.648,206.099,424.070,35.272,109.290,35.272,328.816,321.006,345.486,25.807,24.163,25.807 +1320,33.190,202.915,415.732,340.512,532.447,209.216,420.773,38.660,102.529,38.660,328.433,321.491,344.573,25.612,23.320,25.612 +1321,33.215,205.477,412.238,336.613,536.964,211.506,417.644,41.878,95.356,41.878,329.408,321.590,345.604,24.673,21.997,24.673 +1322,33.241,208.750,408.250,332.807,540.533,214.835,414.335,45.000,88.409,45.000,328.098,321.376,345.308,24.749,20.076,24.749 +1323,33.269,208.750,408.250,332.807,540.533,214.835,414.335,45.000,88.409,45.000,328.098,321.376,345.308,24.749,20.076,24.749 +1324,33.293,211.703,404.310,329.514,544.147,218.152,411.549,48.302,81.511,48.302,326.779,322.340,346.169,24.585,19.309,24.585 +1325,33.319,212.975,400.828,326.547,547.214,220.480,409.976,50.631,74.718,50.631,323.085,322.934,346.750,23.371,18.697,23.371 +1326,33.344,212.905,395.169,324.441,549.711,222.873,408.349,52.900,67.881,52.900,314.977,323.308,348.029,23.250,18.940,23.250 +1327,33.371,204.748,382.326,322.022,551.765,223.251,408.620,54.866,61.032,54.866,283.506,323.445,347.812,17.749,18.795,17.749 +1328,33.396,204.748,382.326,322.022,551.765,223.251,408.620,54.866,61.032,54.866,283.506,323.445,347.812,17.749,18.795,17.749 +1329,33.421,208.290,379.030,319.518,553.304,226.787,405.748,55.305,53.957,55.305,283.214,323.862,348.205,21.440,19.077,21.440 +1330,33.446,222.230,396.964,317.510,554.991,227.754,405.529,57.178,47.779,57.178,328.122,323.831,348.505,22.526,19.748,22.526 +1331,33.472,227.087,397.030,316.516,555.257,230.806,403.441,59.886,41.019,59.886,333.833,323.626,348.656,23.442,19.896,23.442 +1332,33.497,227.087,397.030,316.516,555.257,230.806,403.441,59.886,41.019,59.886,333.833,323.626,348.656,23.442,19.896,23.442 +1333,33.523,229.081,397.056,314.384,556.238,232.015,402.391,61.189,35.022,61.189,336.817,323.844,348.996,22.694,20.854,22.694 +1334,33.548,231.079,396.720,312.406,556.761,233.528,401.404,62.393,28.787,62.393,337.875,324.506,348.445,22.820,22.806,22.820 +1335,33.575,232.000,395.000,311.159,557.343,234.785,400.569,63.435,21.991,63.435,336.305,323.304,348.758,22.361,23.235,22.361 +1336,33.601,232.000,395.000,311.159,557.343,234.785,400.569,63.435,21.991,63.435,336.305,323.304,348.758,22.361,23.235,22.361 +1337,33.625,232.582,394.442,310.194,558.298,235.591,400.689,64.277,15.461,64.277,334.874,321.708,348.741,22.128,23.726,22.128 +1338,33.650,233.265,393.609,308.986,559.081,236.424,400.412,65.095,9.462,65.095,333.941,321.236,348.942,22.319,24.167,22.319 +1339,33.676,234.269,393.053,308.028,559.032,237.266,399.729,65.821,3.468,65.821,333.984,320.805,348.621,22.937,24.259,22.937 +1340,33.701,234.439,391.969,307.376,559.138,237.638,399.207,66.155,176.987,66.155,333.117,319.663,348.944,22.639,23.862,22.639 +1341,33.727,234.439,391.969,307.376,559.138,237.638,399.207,66.155,176.987,66.155,333.117,319.663,348.944,22.639,23.862,22.639 +1342,33.752,234.498,391.587,306.662,559.506,237.828,399.255,66.525,170.838,66.525,332.097,319.739,348.817,22.187,24.777,22.187 +1343,33.779,234.750,390.823,306.050,559.322,238.163,398.739,66.677,164.995,66.677,331.437,319.694,348.677,22.567,24.984,22.567 +1344,33.805,234.715,391.048,305.846,559.185,238.158,399.062,66.755,158.819,66.755,330.235,319.058,347.678,21.972,24.733,21.972 +1345,33.831,234.715,391.048,305.846,559.185,238.158,399.062,66.755,158.819,66.755,330.235,319.058,347.678,21.972,24.733,21.972 +1346,33.856,234.722,390.758,305.521,559.018,238.120,398.638,66.677,152.916,66.677,330.755,319.370,347.919,22.567,24.545,22.567 +1347,33.882,234.005,390.907,305.586,558.858,237.471,398.851,66.425,147.160,66.425,330.454,318.987,347.790,21.480,24.594,21.480 +1348,33.908,234.008,390.734,305.833,558.545,237.492,398.638,66.213,141.435,66.213,330.501,319.215,347.777,22.587,24.355,22.587 +1349,33.933,234.008,390.734,305.833,558.545,237.492,398.638,66.213,141.435,66.213,330.501,319.215,347.777,22.587,24.355,22.587 +1350,33.957,233.400,391.016,306.163,558.178,236.999,398.999,65.731,135.630,65.731,329.566,319.608,347.079,22.606,23.667,22.606 +1351,33.982,232.442,391.161,306.837,557.862,236.169,399.148,64.983,130.170,64.983,329.790,319.569,347.418,22.413,23.549,22.413 +1352,34.008,231.647,391.766,307.570,557.358,235.443,399.660,64.318,124.611,64.318,329.234,320.087,346.755,22.535,22.674,22.535 +1353,34.034,231.647,391.766,307.570,557.358,235.443,399.660,64.318,124.611,64.318,329.234,320.087,346.755,22.535,22.674,22.535 +1354,34.058,230.500,392.000,308.729,557.070,234.487,399.974,63.435,119.168,63.435,329.596,320.139,347.426,22.361,22.378,22.361 +1355,34.084,228.926,392.663,309.907,556.402,233.160,400.763,62.403,113.912,62.403,328.689,320.648,346.968,22.901,21.561,22.901 +1356,34.109,227.332,393.345,311.387,555.794,231.774,401.429,61.213,108.600,61.213,328.802,321.275,347.250,23.037,20.942,23.037 +1357,34.135,227.332,393.345,311.387,555.794,231.774,401.429,61.213,108.600,61.213,328.802,321.275,347.250,23.037,20.942,23.037 +1358,34.159,225.506,394.306,313.185,555.923,230.496,402.907,59.880,103.736,59.880,327.812,323.778,347.700,23.427,20.961,23.427 +1359,34.185,223.085,395.656,315.409,553.724,228.106,403.752,58.195,99.019,58.195,327.875,321.859,346.928,22.524,19.565,22.524 +1360,34.210,221.308,396.971,317.901,552.034,226.520,404.811,56.383,94.865,56.383,327.556,321.646,346.386,23.514,19.483,23.514 +1361,34.235,221.308,396.971,317.901,552.034,226.520,404.811,56.383,94.865,56.383,327.556,321.646,346.386,23.514,19.483,23.514 +1362,34.258,218.528,398.386,320.715,550.483,224.295,406.411,54.293,90.769,54.293,326.760,321.159,346.525,23.751,18.770,23.751 +1363,34.284,216.052,400.835,324.146,548.492,222.004,408.457,52.012,87.039,52.012,327.130,321.811,346.471,24.125,19.112,24.125 +1364,34.310,213.243,403.445,327.240,546.029,219.220,410.437,49.475,83.713,49.475,328.115,322.346,346.511,24.508,18.532,24.508 +1365,34.335,213.243,403.445,327.240,546.029,219.220,410.437,49.475,83.713,49.475,328.115,322.346,346.511,24.508,18.532,24.508 +1366,34.358,209.131,406.958,331.452,542.750,215.819,413.843,45.830,80.811,45.830,326.874,322.891,346.070,24.797,19.468,24.797 +1367,34.384,206.727,410.063,335.302,539.041,213.269,416.254,43.423,78.311,43.423,328.051,323.021,346.067,24.305,19.349,24.305 +1368,34.410,203.224,414.938,339.686,534.572,209.785,420.294,39.226,76.115,39.226,328.852,322.583,345.791,25.611,20.321,25.611 +1369,34.435,203.224,414.938,339.686,534.572,209.785,420.294,39.226,76.115,39.226,328.852,322.583,345.791,25.611,20.321,25.611 +1370,34.458,199.692,419.298,343.786,529.560,206.490,424.122,35.362,74.249,35.362,329.307,322.667,345.978,25.675,20.261,25.675 +1371,34.484,196.476,424.290,347.653,523.919,203.279,428.431,31.329,72.719,31.329,330.018,322.975,345.946,25.775,20.434,25.775 +1372,34.510,194.016,429.693,351.562,517.464,200.459,433.039,27.443,71.313,27.443,331.497,322.563,346.017,25.325,20.687,25.325 +1373,34.535,194.016,429.693,351.562,517.464,200.459,433.039,27.443,71.313,27.443,331.497,322.563,346.017,25.325,20.687,25.325 +1374,34.559,191.034,436.604,355.251,510.009,197.310,439.179,22.306,70.183,22.306,332.444,322.272,346.011,26.000,21.435,26.000 +1375,34.585,187.160,446.318,358.423,501.597,193.663,448.366,17.488,69.254,17.488,332.647,322.347,346.283,19.376,22.075,19.376 +1376,34.610,185.136,454.854,361.109,492.364,191.657,456.173,11.437,68.429,11.437,333.220,322.004,346.526,19.229,23.119,19.229 +1377,34.636,183.692,463.563,362.863,482.558,190.387,464.225,5.648,67.249,5.648,333.428,321.548,346.885,18.897,23.590,18.897 +1378,34.661,183.692,463.563,362.863,482.558,190.387,464.225,5.648,67.249,5.648,333.428,321.548,346.885,18.897,23.590,18.897 +1379,34.685,183.500,472.000,363.388,472.388,189.694,472.000,0.000,66.205,0.000,335.000,321.243,347.388,18.000,23.984,18.000 +1380,34.711,184.077,482.615,362.806,461.049,190.194,481.851,172.875,65.289,172.875,335.390,320.370,347.719,19.101,24.704,19.101 +1381,34.774,188.797,502.980,357.242,437.875,194.279,500.842,158.691,63.306,158.691,337.641,319.323,349.409,19.611,25.389,19.611 +1382,34.799,188.797,502.980,357.242,437.875,194.279,500.842,158.691,63.306,158.691,337.641,319.323,349.409,19.611,25.389,19.611 +1383,34.825,192.936,513.383,351.921,426.303,198.329,510.414,151.161,62.354,151.161,337.913,318.942,350.227,19.970,25.478,19.970 +1384,34.851,198.626,522.864,345.218,414.842,203.676,519.203,144.063,61.624,144.063,339.227,317.858,351.700,18.944,25.336,18.944 +1385,34.877,206.203,532.763,336.564,404.182,210.868,528.220,135.764,60.597,135.764,340.154,317.147,353.177,19.250,25.775,19.250 +1386,34.902,214.793,541.163,325.947,394.862,218.760,536.039,127.747,59.693,127.747,341.542,316.577,354.500,18.697,25.000,18.697 +1387,34.928,214.793,541.163,325.947,394.862,218.760,536.039,127.747,59.693,127.747,341.542,316.577,354.500,18.697,25.000,18.697 +1388,34.952,225.708,548.726,319.071,394.737,227.753,545.045,119.055,58.627,119.055,343.058,297.038,351.482,19.037,25.468,19.037 +1389,34.978,237.396,554.760,306.392,389.658,238.587,551.547,110.353,57.507,110.353,343.875,293.899,350.729,18.812,25.058,18.812 +1390,35.004,250.955,559.725,293.735,387.693,251.397,557.619,101.845,56.547,101.845,345.692,287.637,349.995,21.374,23.823,21.374 +1391,35.029,250.955,559.725,293.735,387.693,251.397,557.619,101.845,56.547,101.845,345.692,287.637,349.995,21.374,23.823,21.374 +1392,35.054,262.266,562.568,281.955,390.295,262.272,562.410,92.196,55.222,92.196,345.168,276.186,345.484,22.367,24.002,22.367 +1393,35.080,276.601,563.089,267.353,391.296,276.611,563.169,83.492,54.090,83.492,343.790,274.542,343.629,22.625,22.176,22.625 +1394,35.108,292.927,562.160,247.536,388.466,291.725,557.744,74.782,52.989,74.782,340.733,288.586,349.885,22.016,20.590,22.016 +1395,35.133,292.927,562.160,247.536,388.466,291.725,557.744,74.782,52.989,74.782,340.733,288.586,349.885,22.016,20.590,22.016 +1396,35.158,308.583,561.094,233.154,395.269,305.336,553.972,65.490,52.125,65.490,333.040,285.833,348.694,18.498,19.909,18.498 +1397,35.188,332.846,569.769,219.065,401.252,317.376,546.564,56.310,51.203,56.310,295.101,289.087,350.880,18.305,19.194,18.305 +1398,35.223,352.586,562.730,207.433,409.715,329.838,536.577,48.984,49.917,48.984,282.780,291.271,352.104,21.893,19.438,21.893 +1399,35.248,345.277,532.938,196.762,418.381,337.731,526.516,40.400,48.434,40.400,335.061,294.899,354.877,24.564,19.382,24.564 +1400,35.275,351.751,516.428,185.245,423.793,343.452,511.607,30.153,46.494,30.153,342.625,308.673,361.820,25.668,22.054,25.668 +1401,35.301,351.751,516.428,185.245,423.793,343.452,511.607,30.153,46.494,30.153,342.625,308.673,361.820,25.668,22.054,25.668 +1402,35.329,355.644,503.383,179.750,435.250,348.526,500.511,21.975,45.000,21.975,346.520,308.299,361.870,25.673,21.920,25.673 +1403,35.356,358.537,494.308,175.883,447.541,351.027,492.409,14.191,43.877,14.191,346.106,308.988,361.598,19.613,21.459,19.613 +1404,35.381,359.273,482.456,173.704,459.491,352.856,481.713,6.607,42.397,6.607,348.117,309.361,361.037,19.261,20.967,19.261 +1405,35.409,360.026,470.804,172.951,471.619,353.491,470.856,179.552,41.106,179.552,348.013,309.316,361.082,18.968,21.002,18.968 +1406,35.434,360.026,470.804,172.951,471.619,353.491,470.856,179.552,41.106,179.552,348.013,309.316,361.082,18.968,21.002,18.968 +1407,35.459,358.449,459.434,173.180,482.667,352.338,460.233,172.550,39.226,172.550,348.784,309.722,361.110,21.036,20.568,21.036 +1408,35.485,356.201,449.280,175.273,493.341,350.525,450.710,165.858,37.513,165.858,349.005,309.980,360.712,21.807,21.489,21.807 +1409,35.511,353.188,440.370,177.635,503.311,347.440,442.487,159.786,35.538,159.786,348.472,310.614,360.725,20.449,23.250,20.449 +1410,35.536,349.512,432.586,181.743,512.391,344.314,435.107,154.122,33.818,154.122,348.445,310.633,360.000,18.691,22.940,18.691 +1411,35.561,349.512,432.586,181.743,512.391,344.314,435.107,154.122,33.818,154.122,348.445,310.633,360.000,18.691,22.940,18.691 +1412,35.584,345.222,425.493,186.025,520.268,340.340,428.485,148.496,31.739,148.496,347.614,310.871,359.064,19.720,23.699,19.720 +1413,35.610,340.386,418.535,190.608,527.562,335.718,422.009,143.348,29.745,143.348,347.218,311.203,358.856,19.030,24.187,19.030 +1414,35.635,340.386,418.535,190.608,527.562,335.718,422.009,143.348,29.745,143.348,347.218,311.203,358.856,19.030,24.187,19.030 +1415,35.659,335.416,412.659,195.679,533.711,330.989,416.587,138.421,27.780,138.421,346.057,312.142,357.893,18.916,24.528,18.916 +1416,35.685,330.119,407.533,200.982,539.038,326.170,411.650,133.810,25.046,133.810,345.774,312.211,357.184,18.926,24.808,18.926 +1417,35.711,324.990,403.314,206.270,543.365,321.450,407.619,129.424,23.025,129.424,344.861,313.557,356.009,19.241,26.045,19.241 +1418,35.737,319.967,399.107,211.819,547.973,316.439,404.073,125.390,20.956,125.390,343.620,313.100,355.802,18.920,26.188,18.920 +1419,35.762,319.967,399.107,211.819,547.973,316.439,404.073,125.390,20.956,125.390,343.620,313.100,355.802,18.920,26.188,18.920 +1420,35.788,314.674,395.829,217.150,552.050,311.381,401.212,121.450,18.435,121.450,343.069,313.382,355.689,19.016,25.298,19.016 +1421,35.814,309.361,393.216,222.850,555.248,306.400,398.848,117.732,15.619,117.732,341.901,313.309,354.628,18.896,25.785,18.896 +1422,35.841,304.439,390.645,227.896,557.774,301.712,396.730,114.139,12.918,114.139,340.964,313.600,354.299,18.846,24.966,18.846 +1423,35.866,304.439,390.645,227.896,557.774,301.712,396.730,114.139,12.918,114.139,340.964,313.600,354.299,18.846,24.966,18.846 +1424,35.892,299.948,388.746,233.031,560.535,297.395,395.413,110.956,10.154,110.956,340.162,314.209,354.440,19.194,24.344,19.194 +1425,35.917,295.039,387.310,238.085,562.323,292.824,394.251,107.700,7.125,107.700,338.944,314.552,353.516,18.830,24.435,18.830 +1426,35.942,290.590,385.808,243.294,564.121,288.659,393.194,104.647,4.485,104.647,338.416,314.153,353.686,19.097,24.357,19.097 +1427,35.967,290.590,385.808,243.294,564.121,288.659,393.194,104.647,4.485,104.647,338.416,314.153,353.686,19.097,24.357,19.097 +1428,35.991,285.814,384.571,248.013,564.809,284.292,392.064,101.482,1.042,101.482,337.728,314.257,353.019,19.003,24.560,19.003 +1429,36.017,280.839,383.976,253.038,565.756,279.707,391.686,98.353,178.264,98.353,336.613,314.431,352.197,18.999,24.352,18.999 +1430,36.042,276.379,383.635,257.848,566.561,275.603,391.553,95.595,175.515,95.595,335.898,315.150,351.810,18.377,24.513,18.377 +1431,36.067,276.379,383.635,257.848,566.561,275.603,391.553,95.595,175.515,95.595,335.898,315.150,351.810,18.377,24.513,18.377 +1432,36.091,272.143,383.185,262.469,567.261,271.714,391.629,92.911,172.546,92.911,334.839,316.193,351.749,18.112,25.141,18.112 +1433,36.117,267.500,383.000,267.231,567.059,267.500,391.529,90.000,169.439,90.000,334.000,316.545,351.059,17.000,25.360,17.000 +1434,36.142,263.253,383.463,271.586,566.375,263.661,391.669,87.155,166.139,87.155,333.334,316.734,349.768,18.189,24.713,18.189 +1435,36.168,263.253,383.463,271.586,566.375,263.661,391.669,87.155,166.139,87.155,333.334,316.734,349.768,18.189,24.713,18.189 +1436,36.191,259.402,383.363,276.441,566.229,260.240,391.967,84.437,162.474,84.437,332.737,316.891,350.025,18.762,24.693,18.762 +1437,36.217,255.360,384.153,281.090,565.735,256.609,392.637,81.626,158.962,81.626,332.483,317.122,349.635,19.330,24.698,19.330 +1438,36.242,251.327,385.038,285.797,564.978,252.982,393.373,78.768,155.225,78.768,332.424,317.297,349.420,19.979,24.655,19.979 +1439,36.267,251.327,385.038,285.797,564.978,252.982,393.373,78.768,155.225,78.768,332.424,317.297,349.420,19.979,24.655,19.979 +1440,36.291,247.163,385.952,290.310,563.650,249.246,394.175,75.789,151.579,75.789,331.773,317.862,348.738,20.534,24.284,20.534 +1441,36.317,243.009,387.376,295.244,562.476,245.565,395.600,72.734,147.804,72.734,330.976,317.902,348.202,21.086,24.572,21.086 +1442,36.343,238.825,388.715,300.017,560.713,241.822,396.816,69.698,144.058,69.698,330.540,318.420,347.814,21.653,24.572,21.653 +1443,36.368,238.825,388.715,300.017,560.713,241.822,396.816,69.698,144.058,69.698,330.540,318.420,347.814,21.653,24.572,21.653 +1444,36.392,234.649,390.641,305.024,558.705,238.006,398.423,66.666,139.635,66.666,330.484,318.681,347.434,22.577,23.887,22.577 +1445,36.417,229.919,392.764,309.950,556.432,233.854,400.516,63.083,135.929,63.083,329.560,318.989,346.946,22.237,23.695,22.237 +1446,36.443,225.811,395.266,315.044,553.694,230.120,402.617,59.621,131.906,59.621,329.521,319.547,346.563,23.144,24.121,23.144 +1447,36.468,225.811,395.266,315.044,553.694,230.120,402.617,59.621,131.906,59.621,329.521,319.547,346.563,23.144,24.121,23.144 +1448,36.492,221.335,398.087,320.001,550.614,226.061,405.091,55.989,127.733,55.989,329.448,319.860,346.347,23.601,23.783,23.601 +1449,36.518,216.586,401.219,325.122,546.913,221.881,408.045,52.199,123.576,52.199,328.731,319.795,346.009,24.288,23.723,24.288 +1450,36.543,211.497,405.807,330.346,542.850,217.211,412.064,47.603,119.384,47.603,328.787,320.141,345.734,24.884,24.059,24.884 +1451,36.569,207.958,409.864,335.270,538.659,214.078,415.748,43.877,115.058,43.877,328.118,322.118,345.098,24.980,23.847,24.980 +1452,36.594,207.958,409.864,335.270,538.659,214.078,415.748,43.877,115.058,43.877,328.118,322.118,345.098,24.980,23.847,24.980 +1453,36.619,202.614,415.134,340.726,532.651,209.252,420.481,38.853,110.674,38.853,328.461,321.176,345.508,25.612,24.414,25.612 +1454,36.644,198.919,420.530,345.852,526.104,205.620,425.107,34.330,106.535,34.330,329.293,320.592,345.524,25.580,24.730,25.580 +1455,36.670,195.049,426.274,349.891,519.195,201.948,430.207,29.685,102.369,29.685,329.310,320.849,345.194,25.803,24.188,25.803 +1456,36.695,195.049,426.274,349.891,519.195,201.948,430.207,29.685,102.369,29.685,329.310,320.849,345.194,25.803,24.188,25.803 +1457,36.720,191.216,433.763,354.289,511.402,198.278,436.901,23.962,97.853,23.962,330.191,320.586,345.645,26.399,24.458,26.399 +1458,36.746,186.800,444.600,357.799,502.895,194.044,447.015,18.435,93.521,18.435,330.774,320.809,346.045,18.974,24.738,18.974 +1459,36.773,184.438,453.539,360.659,492.990,191.787,455.182,12.604,89.091,12.604,331.043,320.182,346.103,18.875,24.679,18.875 +1460,36.799,184.438,453.539,360.659,492.990,191.787,455.182,12.604,89.091,12.604,331.043,320.182,346.103,18.875,24.679,18.875 +1461,36.825,182.838,462.823,362.509,482.952,190.240,463.611,6.080,84.596,6.080,331.810,319.977,346.697,18.958,25.050,18.958 +1462,36.851,183.000,472.000,363.043,471.835,190.022,472.000,0.000,80.272,0.000,332.000,319.933,346.043,18.000,24.528,18.000 +1463,36.875,183.202,483.220,362.302,460.307,190.043,482.325,172.550,75.641,172.550,333.522,319.908,347.321,19.312,24.304,19.312 +1464,36.901,183.202,483.220,362.302,460.307,190.043,482.325,172.550,75.641,172.550,333.522,319.908,347.321,19.312,24.304,19.312 +1465,36.925,185.327,494.347,360.266,448.079,191.914,492.598,165.132,71.323,165.132,334.646,319.721,348.278,19.980,24.844,19.980 +1466,36.951,188.769,504.846,356.482,436.008,194.796,502.335,157.380,66.861,157.380,336.462,319.469,349.519,19.846,25.119,19.846 +1467,36.976,193.949,515.277,350.823,424.092,199.285,512.193,149.973,62.461,149.973,338.245,318.477,350.572,18.952,25.455,18.952 +1468,37.002,193.949,515.277,350.823,424.092,199.285,512.193,149.973,62.461,149.973,338.245,318.477,350.572,18.952,25.455,18.952 +1469,37.026,200.391,525.298,343.760,413.458,205.168,521.602,142.271,58.241,142.271,339.500,315.772,351.580,19.357,25.265,19.357 +1470,37.051,208.378,534.818,333.597,401.352,212.799,530.198,133.735,54.293,133.735,340.426,317.701,353.215,18.599,25.223,18.599 +1471,37.077,218.328,543.280,323.123,393.049,221.768,538.370,125.013,49.741,125.013,342.357,313.926,354.349,18.588,25.713,18.588 +1472,37.102,229.950,550.690,309.966,385.116,232.552,545.334,115.907,45.535,115.907,343.972,313.955,355.880,18.915,25.693,18.915 +1473,37.128,229.950,550.690,309.966,385.116,232.552,545.334,115.907,45.535,115.907,343.972,313.955,355.880,18.915,25.693,18.915 +1474,37.152,242.413,556.473,296.535,380.015,244.128,550.854,106.980,41.576,106.980,345.643,312.092,357.393,18.880,25.061,18.880 +1475,37.178,254.380,559.807,281.782,376.400,255.163,553.735,97.352,37.694,97.352,346.322,310.687,358.567,22.459,24.422,22.459 +1476,37.203,269.904,561.488,264.997,376.750,269.832,555.909,89.265,33.515,89.265,347.254,310.943,358.413,20.178,20.744,20.178 +1477,37.228,269.904,561.488,264.997,376.750,269.832,555.909,89.265,33.515,89.265,347.254,310.943,358.413,20.178,20.744,20.178 +1478,37.252,283.738,560.076,249.581,378.580,282.773,554.983,79.276,29.389,79.276,348.628,310.005,358.996,22.784,20.431,22.784 +1479,37.277,299.682,555.405,234.240,381.991,297.950,550.612,70.136,25.246,70.136,350.279,310.187,360.472,21.650,21.414,21.650 +1480,37.302,314.051,549.377,220.126,389.245,311.340,544.560,60.632,20.919,60.632,349.122,309.583,360.175,23.302,20.045,23.302 +1481,37.328,314.051,549.377,220.126,389.245,311.340,544.560,60.632,20.919,60.632,349.122,309.583,360.175,23.302,20.045,23.302 +1482,37.353,326.148,540.607,207.986,397.349,322.869,536.487,51.486,16.390,51.486,350.286,308.634,360.817,24.403,20.993,24.403 +1483,37.379,336.613,530.517,196.820,408.416,332.865,527.077,42.536,11.427,42.536,350.758,308.902,360.933,25.035,18.926,25.035 +1484,37.405,345.369,519.752,188.340,418.983,340.638,516.573,33.891,6.170,33.891,350.281,308.983,361.681,25.701,19.777,25.701 +1485,37.430,345.369,519.752,188.340,418.983,340.638,516.573,33.891,6.170,33.891,350.281,308.983,361.681,25.701,19.777,25.701 +1486,37.457,351.812,508.717,181.529,430.684,346.161,505.986,25.796,0.585,25.796,349.440,309.096,361.992,25.405,19.703,25.405 +1487,37.483,353.833,499.446,177.341,443.378,349.553,498.050,18.060,174.401,18.060,352.349,308.853,361.353,19.635,19.827,19.635 +1488,37.509,357.516,488.775,174.175,454.296,351.978,487.726,10.731,167.613,10.731,350.562,309.771,361.837,19.547,21.328,19.547 +1489,37.535,357.516,488.775,174.175,454.296,351.978,487.726,10.731,167.613,10.731,350.562,309.771,361.837,19.547,21.328,19.547 +1490,37.558,358.301,478.148,172.802,465.577,353.006,477.781,3.960,160.062,3.960,350.615,310.562,361.232,18.855,20.469,18.855 +1491,37.585,356.932,467.871,172.573,476.031,352.892,468.041,177.596,152.157,177.596,352.907,311.453,360.992,18.857,20.587,18.857 +1492,37.610,356.069,457.671,173.621,485.678,352.006,458.269,171.628,143.344,171.628,352.736,312.199,360.950,21.560,20.410,21.560 +1493,37.635,356.069,457.671,173.621,485.678,352.006,458.269,171.628,143.344,171.628,352.736,312.199,360.950,21.560,20.410,21.560 +1494,37.658,354.257,450.018,174.568,494.041,350.045,451.067,166.016,134.265,166.016,352.639,313.340,361.322,21.839,20.776,21.839 +1495,37.683,351.887,443.253,176.724,501.958,348.063,444.564,161.075,124.924,161.075,353.297,313.843,361.383,20.135,20.478,20.135 +1496,37.709,349.390,436.294,179.620,509.084,345.319,438.062,156.519,115.292,156.519,351.674,314.502,360.552,20.020,20.030,20.020 +1497,37.734,349.390,436.294,179.620,509.084,345.319,438.062,156.519,115.292,156.519,351.674,314.502,360.552,20.020,20.030,20.020 +1498,37.759,346.130,430.850,182.982,515.774,342.669,432.674,152.210,105.611,152.210,352.202,314.966,360.026,20.252,19.333,20.252 +1499,37.784,343.351,425.630,185.966,521.447,339.692,427.878,148.436,95.681,148.436,351.336,315.125,359.924,19.536,19.329,19.536 +1500,37.809,340.636,421.069,189.766,525.942,337.138,423.540,144.762,85.691,144.762,350.338,315.066,358.903,19.460,19.336,19.460 +1501,37.834,340.636,421.069,189.766,525.942,337.138,423.540,144.762,85.691,144.762,350.338,315.066,358.903,19.460,19.336,19.460 +1502,37.858,337.300,417.349,192.866,530.518,334.055,419.914,141.674,75.518,141.674,350.432,314.847,358.704,18.955,19.474,18.955 +1503,37.883,334.826,413.598,196.694,534.348,331.340,416.667,138.646,64.841,138.646,348.362,315.355,357.649,19.067,20.324,19.067 +1504,37.909,332.233,410.668,199.166,536.983,328.700,414.075,136.042,54.991,136.042,347.299,313.766,357.117,19.333,20.686,19.333 +1505,37.934,332.233,410.668,199.166,536.983,328.700,414.075,136.042,54.991,136.042,347.299,313.766,357.117,19.333,20.686,19.333 +1506,37.958,329.588,407.608,200.934,540.531,325.575,411.821,133.603,44.310,133.603,346.690,313.285,358.326,18.862,24.534,18.862 +1507,37.983,327.353,405.312,203.191,542.254,323.402,409.782,131.468,34.308,131.468,345.807,314.044,357.738,19.064,24.207,19.064 +1508,38.009,325.369,403.286,206.106,543.866,321.665,407.766,129.588,24.444,129.588,345.427,313.249,357.053,19.281,25.159,19.281 +1509,38.035,325.369,403.286,206.106,543.866,321.665,407.766,129.588,24.444,129.588,345.427,313.249,357.053,19.281,25.159,19.281 +1510,38.058,323.701,401.006,208.493,545.494,319.622,406.215,128.059,13.808,128.059,343.113,312.638,356.345,19.202,24.459,19.202 +1511,38.084,322.223,398.884,210.064,547.135,317.732,404.955,126.491,2.701,126.491,341.567,312.643,356.670,18.634,22.371,18.634 +1512,38.109,321.435,396.425,211.498,547.818,316.157,403.903,125.218,172.235,125.218,337.552,312.697,355.859,18.982,20.943,18.982 +1513,38.134,321.435,396.425,211.498,547.818,316.157,403.903,125.218,172.235,125.218,337.552,312.697,355.859,18.982,20.943,18.982 +1514,38.158,321.845,393.630,212.454,548.387,315.342,403.140,124.365,161.288,124.365,332.902,313.688,355.944,19.380,19.783,19.380 +1515,38.186,322.921,389.077,213.013,549.133,314.127,402.460,123.311,150.690,123.311,324.182,314.419,356.210,19.579,19.398,19.579 +1516,38.211,326.307,381.153,213.425,550.130,312.707,402.039,123.071,139.888,123.071,306.707,315.224,356.553,17.793,19.407,17.793 +1517,38.237,351.234,341.093,214.122,550.981,311.911,401.864,122.905,128.956,122.905,211.868,316.264,356.637,17.779,19.226,17.779 +1518,38.264,351.234,341.093,214.122,550.981,311.911,401.864,122.905,128.956,122.905,211.868,316.264,356.637,17.779,19.226,17.779 +1519,38.291,317.389,393.365,214.132,551.503,311.918,402.099,122.065,118.072,122.065,336.438,316.882,357.051,18.259,19.176,18.259 +1520,38.317,314.247,398.404,215.474,552.334,311.879,402.193,122.005,107.526,122.005,347.891,317.844,356.827,18.444,20.075,18.444 +1521,38.343,313.828,398.821,215.062,552.313,311.759,402.114,122.146,96.968,122.146,349.468,318.155,357.247,18.794,18.926,18.794 +1522,38.369,313.828,398.821,215.062,552.313,311.759,402.114,122.146,96.968,122.146,349.468,318.155,357.247,18.794,18.926,18.794 +1523,38.393,314.460,399.375,214.971,552.368,312.466,402.491,122.619,86.160,122.619,350.183,318.030,357.583,18.833,18.790,18.833 +1524,38.419,315.448,399.486,214.585,551.959,313.214,402.907,123.147,75.446,123.147,349.278,317.503,357.450,18.950,20.084,18.950 +1525,38.448,317.012,399.500,214.956,550.834,314.562,403.146,123.901,64.606,123.901,347.492,317.209,356.276,19.050,21.808,19.050 +1526,38.475,318.301,400.013,211.795,550.163,315.257,404.378,124.884,53.318,124.884,346.878,315.612,357.522,18.763,23.093,18.763 +1527,38.500,318.301,400.013,211.795,550.163,315.257,404.378,124.884,53.318,124.884,346.878,315.612,357.522,18.763,23.093,18.763 +1528,38.525,320.251,400.592,210.097,548.942,316.844,405.277,126.027,42.357,126.027,346.360,314.600,357.945,19.042,24.168,19.042 +1529,38.551,322.403,401.307,208.224,546.639,318.761,406.078,127.357,31.759,127.357,345.594,315.003,357.598,19.556,24.577,19.556 +1530,38.576,324.611,402.495,206.864,544.351,320.818,407.178,129.005,21.134,129.005,344.581,313.463,356.634,19.350,25.537,19.350 +1531,38.601,324.611,402.495,206.864,544.351,320.818,407.178,129.005,21.134,129.005,344.581,313.463,356.634,19.350,25.537,19.350 +1532,38.626,327.431,403.892,204.531,542.328,322.968,409.065,130.791,10.061,130.791,342.874,312.237,356.537,19.697,23.647,19.697 +1533,38.652,331.147,404.333,201.507,539.783,325.027,410.955,132.745,179.459,132.745,338.859,311.099,356.893,19.361,20.329,19.361 +1534,38.677,336.000,404.500,198.670,536.547,327.531,412.969,135.000,169.448,135.000,333.047,312.063,357.001,19.092,19.787,19.092 +1535,38.703,343.582,402.668,195.541,534.026,329.748,415.489,137.175,159.839,137.175,320.294,312.520,358.018,19.588,20.357,19.588 +1536,38.728,343.582,402.668,195.541,534.026,329.748,415.489,137.175,159.839,137.175,320.294,312.520,358.018,19.588,20.357,19.588 +1537,38.752,368.379,387.037,192.729,531.013,332.017,417.866,139.708,150.848,139.708,263.483,313.051,358.828,18.024,20.139,18.024 +1538,38.778,396.999,372.863,189.710,527.223,334.334,420.402,142.815,142.431,142.815,202.250,313.269,359.564,18.022,19.511,18.022 +1539,38.804,341.443,421.490,187.500,523.500,337.500,424.250,145.008,135.000,145.008,349.976,313.955,359.602,18.678,21.213,18.678 +1540,38.830,341.443,421.490,187.500,523.500,337.500,424.250,145.008,135.000,145.008,349.976,313.955,359.602,18.678,21.213,18.678 +1541,38.854,343.248,425.961,185.120,520.089,339.946,427.989,148.453,126.656,148.453,352.514,314.811,360.264,19.137,21.604,19.137 +1542,38.880,346.448,431.001,182.169,514.576,342.913,432.862,152.241,117.041,152.241,352.617,314.857,360.606,19.794,19.512,19.794 +1543,38.907,349.278,436.349,179.596,508.372,345.576,437.967,156.391,107.613,156.391,352.489,314.637,360.569,19.588,19.244,19.588 +1544,38.932,349.278,436.349,179.596,508.372,345.576,437.967,156.391,107.613,156.391,352.489,314.637,360.569,19.588,19.244,19.588 +1545,38.959,352.253,442.355,177.712,501.240,348.404,443.695,160.799,97.989,160.799,352.095,313.663,360.245,20.692,18.850,20.692 +1546,38.985,355.348,449.475,176.211,492.963,351.021,450.591,165.530,88.264,165.530,350.766,312.402,359.705,20.771,19.385,20.771 +1547,39.010,357.649,457.448,174.795,483.944,352.904,458.193,171.074,78.751,171.074,350.287,312.416,359.893,19.251,19.161,19.251 +1548,39.036,357.649,457.448,174.795,483.944,352.904,458.193,171.074,78.751,171.074,350.287,312.416,359.893,19.251,19.161,19.251 +1549,39.060,359.605,466.297,173.964,474.321,353.743,466.639,176.658,68.919,176.658,348.100,311.450,359.844,18.793,19.858,18.793 +1550,39.085,359.275,476.020,174.145,464.514,353.960,475.782,2.564,59.073,2.564,349.635,311.096,360.277,18.563,20.837,18.563 +1551,39.111,359.216,485.652,174.413,454.753,352.781,484.673,8.653,49.667,8.653,348.660,310.340,361.678,19.450,22.351,19.450 +1552,39.137,358.500,496.500,176.814,444.159,350.649,494.359,15.255,40.101,15.255,345.561,308.944,361.837,19.295,21.498,19.295 +1553,39.162,358.500,496.500,176.814,444.159,350.649,494.359,15.255,40.101,15.255,345.561,308.944,361.837,19.295,21.498,19.295 +1554,39.187,368.782,511.491,180.413,433.874,347.904,502.236,23.908,30.324,23.908,315.974,308.370,361.649,23.618,20.114,23.618 +1555,39.211,351.291,518.977,185.652,423.242,342.253,513.949,29.087,20.339,29.087,341.208,308.277,361.894,19.237,19.869,19.237 +1556,39.237,342.940,524.080,192.289,414.186,338.277,520.583,36.870,10.107,36.870,349.600,308.125,361.257,25.800,17.190,25.800 +1557,39.263,342.940,524.080,192.289,414.186,338.277,520.583,36.870,10.107,36.870,349.600,308.125,361.257,25.800,17.190,25.800 +1558,39.286,333.750,533.250,201.003,405.106,330.527,530.027,45.000,0.193,45.000,350.725,308.032,359.840,24.749,16.784,24.749 +1559,39.312,324.260,542.180,211.364,396.706,321.675,538.733,53.130,170.311,53.130,351.000,309.569,359.617,23.800,18.489,23.800 +1560,39.339,312.671,549.979,222.985,389.189,310.523,545.998,61.645,159.887,61.645,350.095,310.987,359.142,22.825,18.066,22.825 +1561,39.364,312.671,549.979,222.985,389.189,310.523,545.998,61.645,159.887,61.645,350.095,310.987,359.142,22.825,18.066,22.825 +1562,39.390,300.540,556.019,235.866,382.501,298.674,550.929,69.864,150.018,69.864,348.667,312.826,359.510,21.406,19.123,21.406 +1563,39.416,286.706,560.740,249.821,378.287,285.374,554.544,77.861,139.851,77.861,346.907,314.339,359.584,22.275,17.523,22.275 +1564,39.443,275.015,562.550,263.089,375.157,274.635,555.125,87.064,129.844,87.064,345.776,315.354,360.646,23.380,17.929,23.380 +1565,39.468,275.015,562.550,263.089,375.157,274.635,555.125,87.064,129.844,87.064,345.776,315.354,360.646,23.380,17.929,23.380 +1566,39.493,258.184,562.853,276.697,375.328,258.879,554.247,94.620,119.524,94.620,342.278,314.887,359.546,22.734,20.235,22.734 +1567,39.518,245.031,564.652,288.465,377.487,248.126,552.094,103.844,110.833,103.844,332.506,314.032,358.374,19.884,20.322,19.884 +1568,39.544,222.269,581.655,302.138,382.140,236.452,547.646,112.637,102.328,112.637,282.383,314.103,356.077,18.306,19.209,18.306 +1569,39.569,219.313,554.190,315.920,388.635,226.626,542.018,121.000,94.014,121.000,326.530,313.492,354.930,19.752,21.456,19.752 +1570,39.595,219.313,554.190,315.920,388.635,226.626,542.018,121.000,94.014,121.000,326.530,313.492,354.930,19.752,21.456,19.752 +1571,39.619,210.906,542.381,327.225,396.522,217.111,534.808,129.329,81.573,129.329,333.928,313.101,353.509,19.117,23.228,19.117 +1572,39.645,203.660,531.853,337.906,405.850,209.419,526.566,137.447,71.166,137.447,336.940,313.381,352.575,19.588,24.777,19.588 +1573,39.671,197.827,521.193,345.295,415.421,202.740,517.785,145.257,60.539,145.257,338.997,316.544,350.954,19.363,25.183,19.363 +1574,39.696,197.827,521.193,345.295,415.421,202.740,517.785,145.257,60.539,145.257,338.997,316.544,350.954,19.363,25.183,19.363 +1575,39.721,192.423,511.350,352.327,426.463,197.654,508.656,152.755,50.599,152.755,338.512,318.170,350.281,19.652,24.700,19.652 +1576,39.747,188.594,501.255,357.932,437.992,194.103,499.229,159.808,40.365,159.808,338.053,319.672,349.794,19.861,23.696,19.861 +1577,39.774,185.182,491.760,361.345,449.332,191.661,490.212,166.566,30.303,166.566,335.753,322.262,349.077,20.977,21.596,20.977 +1578,39.799,185.182,491.760,361.345,449.332,191.661,490.212,166.566,30.303,166.566,335.753,322.262,349.077,20.977,21.596,20.977 +1579,39.826,182.800,482.321,364.455,460.265,191.191,481.323,173.211,20.237,173.211,332.178,322.938,349.078,19.269,21.585,19.269 +1580,39.851,180.000,472.500,365.058,470.684,191.029,472.500,0.000,10.322,0.000,326.000,323.963,348.058,17.000,21.126,17.000 +1581,39.876,119.194,456.894,365.012,479.708,191.278,464.513,6.033,0.881,6.033,203.768,324.100,348.738,17.407,19.998,17.407 +1582,39.901,119.194,456.894,365.012,479.708,191.278,464.513,6.033,0.881,6.033,203.768,324.100,348.738,17.407,19.998,17.407 +1583,39.925,172.351,452.662,363.653,487.998,192.460,456.787,11.592,171.271,11.592,306.892,324.566,347.946,19.391,20.391,19.391 +1584,39.951,181.473,445.731,361.587,497.277,194.295,449.633,16.928,162.582,16.928,321.026,324.167,347.831,19.425,22.993,19.425 +1585,39.976,186.266,438.642,358.831,505.175,196.818,442.479,19.983,152.447,19.983,324.912,323.411,347.368,26.143,24.053,26.143 +1586,40.002,186.266,438.642,358.831,505.175,196.818,442.479,19.983,152.447,19.983,324.912,323.411,347.368,26.143,24.053,26.143 +1587,40.030,189.990,432.610,355.308,512.406,199.077,436.781,24.656,142.765,24.656,327.074,322.796,347.071,25.611,24.968,25.611 +1588,40.067,194.157,425.964,351.545,518.543,202.297,430.589,29.604,133.325,29.604,327.706,321.303,346.430,25.906,25.197,25.906 +1589,40.093,197.168,421.934,347.077,524.385,204.383,426.624,33.024,123.690,33.024,328.628,321.726,345.839,26.034,24.962,26.034 +1590,40.120,200.780,417.460,342.791,530.092,207.535,422.526,36.870,114.624,36.870,328.600,321.923,345.488,25.800,24.317,25.800 +1591,40.146,204.372,413.125,338.920,534.478,210.791,418.588,40.400,105.422,40.400,328.515,321.275,345.372,26.022,23.435,26.022 +1592,40.174,208.277,409.123,334.836,538.707,214.248,414.958,44.341,96.429,44.341,328.775,321.473,345.471,24.788,21.834,24.788 +1593,40.201,208.277,409.123,334.836,538.707,214.248,414.958,44.341,96.429,44.341,328.775,321.473,345.471,24.788,21.834,24.788 +1594,40.225,210.230,406.449,330.868,542.563,216.371,412.952,46.637,86.791,46.637,327.802,321.728,345.691,24.840,19.623,24.840 +1595,40.250,213.356,402.820,327.681,546.259,219.890,410.553,49.808,78.449,49.808,326.206,322.437,346.453,24.484,18.322,24.484 +1596,40.276,213.224,397.198,325.285,548.898,222.330,408.849,51.988,70.346,51.988,317.917,323.287,347.490,24.035,18.768,24.035 +1597,40.302,213.224,397.198,325.285,548.898,222.330,408.849,51.988,70.346,51.988,317.917,323.287,347.490,24.035,18.768,24.035 +1598,40.325,207.795,389.468,323.240,550.877,222.142,409.195,53.973,62.860,53.973,299.306,322.980,348.092,17.939,18.082,17.939 +1599,40.351,177.871,340.954,321.314,552.603,223.713,408.080,55.670,55.670,55.670,186.208,323.654,348.780,17.644,19.537,17.644 +1600,40.376,219.703,395.574,319.416,553.438,226.659,405.725,55.578,49.112,55.578,323.954,324.238,348.565,22.302,19.158,22.302 +1601,40.402,219.703,395.574,319.416,553.438,226.659,405.725,55.578,49.112,55.578,323.954,324.238,348.565,22.302,19.158,22.302 +1602,40.426,224.365,397.394,318.630,553.854,228.731,404.428,58.173,41.743,58.173,332.180,323.952,348.737,23.175,20.410,23.175 +1603,40.451,227.650,398.204,316.846,554.231,230.507,403.111,59.789,33.690,59.789,336.722,324.500,348.078,23.387,21.079,23.387 +1604,40.476,228.954,396.802,314.801,555.673,232.038,402.377,61.049,24.825,61.049,335.659,323.864,348.403,23.086,23.048,23.086 +1605,40.501,228.954,396.802,314.801,555.673,232.038,402.377,61.049,24.825,61.049,335.659,323.864,348.403,23.086,23.048,23.086 +1606,40.525,229.992,395.267,313.519,556.931,233.433,401.825,62.314,15.584,62.314,334.302,322.134,349.115,23.187,24.068,23.187 +1607,40.551,231.380,394.560,311.700,557.275,234.823,401.391,63.249,6.624,63.249,332.308,321.254,347.607,22.578,23.917,22.578 +1608,40.577,232.103,393.158,310.526,557.940,235.660,400.519,64.209,176.634,64.209,332.274,320.152,348.625,22.625,24.252,22.625 +1609,40.602,232.103,393.158,310.526,557.940,235.660,400.519,64.209,176.634,64.209,332.274,320.152,348.625,22.625,24.252,22.625 +1610,40.626,232.685,391.914,308.784,558.217,236.329,399.702,64.928,166.866,64.928,331.366,319.680,348.564,22.459,24.995,22.459 +1611,40.652,233.588,391.432,307.503,558.507,237.174,399.386,65.731,156.468,65.731,330.477,319.339,347.929,22.606,24.902,22.606 +1612,40.677,234.131,390.842,306.164,558.513,237.608,398.745,66.251,146.768,66.251,330.429,319.240,347.697,22.553,24.517,22.553 +1613,40.703,234.131,390.842,306.164,558.513,237.608,398.745,66.251,146.768,66.251,330.429,319.240,347.697,22.553,24.517,22.553 +1614,40.727,234.600,390.654,304.971,558.499,237.936,398.337,66.529,136.637,66.529,330.468,319.078,347.220,22.304,23.709,22.304 +1615,40.753,234.697,389.842,303.824,559.003,238.260,398.137,66.755,126.304,66.755,329.310,319.869,347.367,22.101,22.976,22.101 +1616,40.779,234.725,389.208,302.996,559.498,238.453,397.995,67.011,115.805,67.011,328.676,320.313,347.767,22.261,21.755,22.261 +1617,40.805,234.517,388.599,301.515,560.073,238.463,397.977,67.180,104.589,67.180,327.375,321.627,347.724,22.640,21.768,22.640 +1618,40.830,234.517,388.599,301.515,560.073,238.463,397.977,67.180,104.589,67.180,327.375,321.627,347.724,22.640,21.768,22.640 +1619,40.855,233.781,387.192,302.446,560.862,238.640,398.699,67.109,95.080,67.109,323.440,321.931,348.422,22.704,18.660,22.704 +1620,40.881,231.863,383.831,303.521,561.412,238.516,399.232,66.636,85.101,66.636,315.771,322.646,349.323,22.208,18.617,22.208 +1621,40.907,225.460,375.857,304.487,561.368,236.265,400.394,66.233,74.820,66.233,296.010,323.551,349.632,17.934,18.360,17.934 +1622,40.932,225.460,375.857,304.487,561.368,236.265,400.394,66.233,74.820,66.233,296.010,323.551,349.632,17.934,18.360,17.934 +1623,40.958,203.087,328.195,305.582,560.724,235.491,400.719,65.924,64.573,65.924,190.489,323.055,349.356,17.716,19.262,17.716 +1624,40.983,231.643,392.126,307.765,559.603,235.777,400.597,63.986,54.656,63.986,330.089,323.653,348.940,21.943,20.259,21.943 +1625,41.010,233.031,394.201,309.750,558.750,236.069,400.567,64.496,45.000,64.496,334.881,323.148,348.988,22.622,19.799,22.622 +1626,41.035,233.031,394.201,309.750,558.750,236.069,400.567,64.496,45.000,64.496,334.881,323.148,348.988,22.622,19.799,22.622 +1627,41.060,232.351,395.563,310.542,558.058,235.006,400.912,63.598,35.838,63.598,336.743,323.866,348.686,22.666,21.168,22.666 +1628,41.085,231.079,396.237,312.178,557.236,233.796,401.473,62.571,25.796,62.571,336.923,323.360,348.719,22.841,23.079,22.841 +1629,41.111,229.108,396.032,314.466,556.379,232.509,402.266,61.390,15.852,61.390,334.877,321.975,349.081,22.985,23.705,22.985 +1630,41.137,227.239,396.438,316.355,555.245,231.042,403.051,60.101,6.645,60.101,333.672,321.023,348.929,23.168,23.665,23.168 +1631,41.162,227.239,396.438,316.355,555.245,231.042,403.051,60.101,6.645,60.101,333.672,321.023,348.929,23.168,23.665,23.168 +1632,41.186,225.197,397.185,318.521,553.392,229.322,403.936,58.570,176.934,58.570,332.258,320.041,348.081,23.276,23.449,23.276 +1633,41.212,222.874,398.059,320.726,551.994,227.464,405.106,56.923,167.196,56.923,331.146,320.287,347.965,23.606,24.423,23.606 +1634,41.237,220.283,399.152,322.982,549.956,225.312,406.358,55.088,157.521,55.088,329.730,320.156,347.306,23.525,24.566,23.525 +1635,41.262,220.283,399.152,322.982,549.956,225.312,406.358,55.088,157.521,55.088,329.730,320.156,347.306,23.525,24.566,23.525 +1636,41.287,217.593,400.667,325.488,547.787,222.931,407.745,52.980,148.201,52.980,329.397,320.107,347.126,23.835,24.868,23.835 +1637,41.314,215.145,402.710,327.889,545.299,220.642,409.449,50.793,138.900,50.793,328.726,319.850,346.118,24.408,24.547,24.408 +1638,41.340,211.737,405.918,330.885,542.719,217.575,412.328,47.675,129.094,47.675,328.057,320.147,345.397,24.887,24.302,24.887 +1639,41.366,211.737,405.918,330.885,542.719,217.575,412.328,47.675,129.094,47.675,328.057,320.147,345.397,24.887,24.302,24.887 +1640,41.390,209.000,408.500,333.812,539.892,214.926,414.426,45.000,119.859,45.000,328.805,320.755,345.566,24.749,24.010,24.749 +1641,41.416,205.869,411.764,336.847,537.129,212.233,417.504,42.049,110.410,42.049,328.172,321.271,345.312,25.422,23.823,25.422 +1642,41.442,203.401,415.175,340.500,533.000,209.554,420.150,38.956,101.310,38.956,329.732,321.042,345.557,26.241,23.338,26.241 +1643,41.468,203.401,415.175,340.500,533.000,209.554,420.150,38.956,101.310,38.956,329.732,321.042,345.557,26.241,23.338,26.241 +1644,41.492,200.849,418.578,343.423,528.997,206.964,423.070,36.296,92.420,36.296,330.197,320.686,345.371,25.855,21.643,25.855 +1645,41.518,197.136,423.947,347.514,524.269,203.693,428.016,31.827,83.454,31.827,330.481,321.822,345.914,25.958,22.199,25.958 +1646,41.543,195.160,428.342,351.260,518.566,201.590,431.835,28.514,74.638,28.514,331.203,322.406,345.837,25.863,21.882,25.863 +1647,41.568,195.160,428.342,351.260,518.566,201.590,431.835,28.514,74.638,28.514,331.203,322.406,345.837,25.863,21.882,25.863 +1648,41.593,191.634,433.948,354.186,512.197,198.382,436.948,23.962,66.181,23.962,331.104,322.778,345.874,25.587,20.967,25.587 +1649,41.619,187.778,443.383,357.379,505.339,194.824,445.873,19.466,57.745,19.466,331.213,322.977,346.159,19.466,20.017,19.466 +1650,41.644,184.987,450.663,360.428,497.062,192.698,452.648,14.434,49.497,14.434,331.087,323.872,347.011,19.369,20.277,19.369 +1651,41.669,184.987,450.663,360.428,497.062,192.698,452.648,14.434,49.497,14.434,331.087,323.872,347.011,19.369,20.277,19.369 +1652,41.693,184.078,457.398,362.252,487.779,191.402,458.430,8.017,41.634,8.017,331.754,324.625,346.547,24.449,19.765,24.449 +1653,41.719,182.582,468.159,364.347,477.676,190.644,468.518,2.545,34.509,2.545,331.739,324.363,347.879,18.515,21.116,18.515 +1654,41.744,182.759,477.449,364.687,467.015,190.701,476.910,176.121,27.578,176.121,332.592,324.337,348.513,18.754,20.889,18.754 +1655,41.770,183.484,487.854,363.849,455.581,191.628,486.267,168.977,20.772,168.977,333.229,323.380,349.822,20.447,19.893,20.447 +1656,41.795,183.484,487.854,363.849,455.581,191.628,486.267,168.977,20.772,168.977,333.229,323.380,349.822,20.447,19.893,20.447 +1657,41.820,186.408,498.715,361.024,443.989,193.773,496.273,161.657,14.601,161.657,334.896,323.059,350.414,20.892,19.403,20.892 +1658,41.846,190.879,509.206,356.587,431.944,197.355,506.100,154.378,8.852,154.378,336.920,322.741,351.283,20.380,19.341,20.380 +1659,41.871,194.987,520.451,350.338,420.147,202.252,515.701,146.821,3.508,146.821,335.110,321.928,352.470,19.476,18.831,19.476 +1660,41.896,194.987,520.451,350.338,420.147,202.252,515.701,146.821,3.508,146.821,335.110,321.928,352.470,19.476,18.831,19.476 +1661,41.920,203.871,529.660,342.011,409.348,208.761,525.333,138.489,178.264,138.489,340.245,320.459,353.303,19.788,17.780,19.788 +1662,41.945,212.633,538.343,331.387,399.026,216.462,533.817,130.236,173.374,130.236,342.408,321.254,354.265,19.261,17.980,19.261 +1663,41.971,223.351,546.608,319.230,390.139,226.408,541.549,121.139,168.598,121.139,343.365,320.455,355.187,19.276,18.172,19.276 +1664,41.996,223.351,546.608,319.230,390.139,226.408,541.549,121.139,168.598,121.139,343.365,320.455,355.187,19.276,18.172,19.276 +1665,42.021,234.796,553.805,305.769,383.433,237.190,547.934,112.182,163.923,112.182,343.753,319.640,356.435,18.599,17.791,18.599 +1666,42.046,248.815,559.342,291.033,379.089,250.232,553.210,103.010,159.478,103.010,345.086,318.352,357.673,20.387,17.639,20.387 +1667,42.074,260.586,561.786,275.471,376.938,260.939,555.316,93.129,154.511,93.129,344.852,317.592,357.810,23.184,17.214,23.184 +1668,42.100,260.586,561.786,275.471,376.938,260.939,555.316,93.129,154.511,93.129,344.852,317.592,357.810,23.184,17.214,23.184 +1669,42.126,278.203,562.256,259.514,376.737,277.625,555.835,84.852,149.721,84.852,347.108,316.431,360.002,22.898,18.623,22.898 +1670,42.151,291.535,559.080,243.254,379.865,289.999,553.468,74.690,145.131,74.690,347.931,315.655,359.568,22.011,18.583,22.011 +1671,42.177,307.860,552.935,228.441,386.043,305.624,548.135,65.026,140.929,65.026,348.456,314.859,359.047,22.402,18.370,22.402 +1672,42.203,321.072,544.894,214.627,393.686,318.200,540.706,55.566,136.017,55.566,349.496,314.006,359.652,23.922,18.491,23.922 +1673,42.228,321.072,544.894,214.627,393.686,318.200,540.706,55.566,136.017,55.566,349.496,314.006,359.652,23.922,18.491,23.922 +1674,42.254,332.995,535.158,202.752,403.783,329.441,531.463,46.112,131.186,46.112,349.437,313.636,359.690,24.826,18.344,24.826 +1675,42.279,342.662,523.604,192.167,415.218,338.603,520.574,36.743,126.158,36.743,350.608,313.050,360.739,25.790,18.849,25.790 +1676,42.305,349.717,511.371,185.272,428.433,345.915,509.358,27.908,122.237,27.908,351.071,313.102,359.675,25.320,20.186,25.320 +1677,42.330,349.717,511.371,185.272,428.433,345.915,509.358,27.908,122.237,27.908,351.071,313.102,359.675,25.320,20.186,25.320 +1678,42.355,354.919,498.525,179.622,441.314,350.747,497.063,19.321,116.751,19.321,351.020,313.048,359.863,26.152,19.994,26.152 +1679,42.380,356.804,488.947,176.423,454.166,352.993,488.202,11.061,111.747,11.061,351.873,313.085,359.639,19.540,20.673,19.540 +1680,42.406,358.531,476.915,174.329,467.250,354.109,476.681,3.024,106.783,3.024,351.197,312.920,360.053,19.083,19.467,19.083 +1681,42.430,358.531,476.915,174.329,467.250,354.109,476.681,3.024,106.783,3.024,351.197,312.920,360.053,19.083,19.467,19.083 +1682,42.456,357.824,464.748,174.069,479.719,353.629,465.076,175.533,101.560,175.533,351.896,312.796,360.311,19.005,18.993,19.005 +1683,42.481,355.979,453.015,175.494,491.555,351.494,453.955,168.164,96.394,168.164,350.774,312.852,359.940,20.366,18.719,20.366 +1684,42.509,352.788,442.963,178.472,502.518,348.764,444.342,161.087,91.051,161.087,351.404,313.149,359.910,20.138,18.263,20.138 +1685,42.534,352.788,442.963,178.472,502.518,348.764,444.342,161.087,91.051,161.087,351.404,313.149,359.910,20.138,18.263,20.138 +1686,42.560,348.474,433.784,182.093,512.458,344.709,435.571,154.612,85.943,154.612,351.417,313.984,359.753,19.064,18.924,19.064 +1687,42.585,344.049,425.470,186.698,521.726,340.034,427.965,148.134,80.838,148.134,349.997,314.325,359.452,19.763,19.490,19.763 +1688,42.611,337.948,418.340,192.247,529.683,334.654,420.881,142.352,75.743,142.352,350.103,314.339,358.424,18.890,19.559,18.890 +1689,42.637,332.389,411.741,198.396,537.014,329.090,414.864,136.574,70.821,136.574,348.686,314.764,357.772,19.415,19.793,19.415 +1690,42.662,332.389,411.741,198.396,537.014,329.090,414.864,136.574,70.821,136.574,348.686,314.764,357.772,19.415,19.793,19.415 +1691,42.687,326.243,406.021,205.350,543.904,323.208,409.482,131.248,65.007,131.248,348.342,316.802,357.548,19.016,20.165,19.016 +1692,42.711,319.895,401.327,212.203,548.389,317.383,404.765,126.158,60.313,126.158,347.520,315.670,356.036,18.787,21.045,18.787 +1693,42.737,313.439,397.251,216.754,554.121,310.572,401.982,121.218,54.958,121.218,346.407,315.648,357.471,18.788,23.871,18.788 +1694,42.762,313.439,397.251,216.754,554.121,310.572,401.982,121.218,54.958,121.218,346.407,315.648,357.471,18.788,23.871,18.788 +1695,42.786,306.657,394.336,223.824,557.871,304.376,398.917,116.471,49.554,116.471,346.152,316.083,356.389,18.751,24.203,18.751 +1696,42.812,300.383,391.743,230.938,561.063,298.455,396.526,111.954,44.621,111.954,345.383,315.428,355.696,18.665,23.873,18.665 +1697,42.837,293.888,389.520,237.824,563.398,292.270,394.654,107.482,39.560,107.482,343.845,316.999,354.611,18.798,24.503,18.798 +1698,42.862,293.888,389.520,237.824,563.398,292.270,394.654,107.482,39.560,107.482,343.845,316.999,354.611,18.798,24.503,18.798 +1699,42.886,287.936,387.897,244.662,565.330,286.677,393.246,103.241,34.824,103.241,343.273,317.690,354.264,18.953,24.627,18.953 +1700,42.912,281.236,387.065,251.396,566.672,280.389,392.445,98.944,31.038,98.944,342.341,318.306,353.233,18.915,24.294,18.915 +1701,42.937,275.171,386.579,258.800,567.400,274.697,392.008,94.986,26.565,94.986,341.321,318.416,352.220,17.972,25.044,17.972 +1702,42.963,275.171,386.579,258.800,567.400,274.697,392.008,94.986,26.565,94.986,341.321,318.416,352.220,17.972,25.044,17.972 +1703,42.987,269.182,385.462,266.052,568.121,269.074,392.036,90.944,21.801,90.944,339.069,317.725,352.220,18.157,25.812,18.157 +1704,43.013,262.923,385.615,272.966,567.718,263.294,392.286,86.820,17.259,86.820,338.034,317.839,351.396,18.194,25.682,18.194 +1705,43.038,257.251,386.285,280.101,567.062,258.089,392.900,82.786,12.995,82.786,337.760,318.026,351.096,19.189,25.559,19.189 +1706,43.063,257.251,386.285,280.101,567.062,258.089,392.900,82.786,12.995,82.786,337.760,318.026,351.096,19.189,25.559,19.189 +1707,43.088,251.558,386.788,286.890,565.916,253.009,394.045,78.690,8.575,78.690,335.555,318.188,350.355,20.004,25.356,20.004 +1708,43.115,245.728,388.274,293.558,564.143,247.729,395.446,74.407,3.851,74.407,334.722,318.030,349.615,20.832,24.138,20.832 +1709,43.141,239.957,389.733,300.975,561.828,242.631,397.183,70.261,179.552,70.261,333.520,318.053,349.351,21.737,24.359,21.737 +1710,43.166,239.957,389.733,300.975,561.828,242.631,397.183,70.261,179.552,70.261,333.520,318.053,349.351,21.737,24.359,21.737 +1711,43.193,234.186,392.030,307.540,558.986,237.467,399.405,66.012,175.307,66.012,332.426,318.801,348.571,22.766,24.187,22.766 +1712,43.218,228.479,395.286,314.237,555.808,232.281,402.218,61.260,171.158,61.260,332.340,319.096,348.153,23.023,24.637,23.023 +1713,43.246,222.320,398.105,321.016,551.760,227.156,405.454,56.654,167.137,56.654,330.034,319.892,347.628,23.836,24.749,23.836 +1714,43.272,216.607,402.203,327.676,547.077,222.034,409.097,51.789,163.072,51.789,329.976,320.195,347.524,24.308,24.749,24.308 +1715,43.297,216.607,402.203,327.676,547.077,222.034,409.097,51.789,163.072,51.789,329.976,320.195,347.524,24.308,24.749,24.308 +1716,43.323,210.840,407.095,334.045,541.737,217.150,413.776,46.637,159.102,46.637,328.206,320.488,346.585,24.840,25.020,24.840 +1717,43.349,205.121,412.234,340.341,535.330,212.072,418.386,41.511,155.323,41.511,328.548,320.787,347.114,25.581,25.099,25.581 +1718,43.375,199.378,418.770,346.231,527.851,207.271,424.408,35.538,151.579,35.538,327.005,320.904,346.403,25.691,25.101,25.691 +1719,43.401,199.378,418.770,346.231,527.851,207.271,424.408,35.538,151.579,35.538,327.005,320.904,346.403,25.691,25.101,25.691 +1720,43.426,194.238,425.708,351.500,519.500,202.612,430.492,29.745,147.995,29.745,327.576,321.073,346.863,25.799,24.698,25.799 +1721,43.452,189.327,434.243,356.212,510.499,198.433,438.176,23.356,144.530,23.356,327.206,321.543,347.044,26.144,24.982,26.144 +1722,43.477,184.715,445.392,360.154,500.414,194.462,448.501,17.691,140.793,17.691,326.804,321.406,347.264,19.054,24.775,19.054 +1723,43.503,181.185,455.654,362.898,489.484,191.956,457.706,10.784,137.603,10.784,325.809,320.984,347.739,18.805,24.852,18.805 +1724,43.528,181.185,455.654,362.898,489.484,191.956,457.706,10.784,137.603,10.784,325.809,320.984,347.739,18.805,24.852,18.805 +1725,43.552,179.398,466.654,364.452,477.932,190.702,467.352,3.532,134.397,3.532,325.492,321.783,348.143,19.075,24.933,19.075 +1726,43.578,178.554,477.376,364.480,465.614,190.637,476.633,176.482,130.972,176.482,324.171,322.220,348.383,18.334,24.260,18.334 +1727,43.605,178.974,490.307,362.953,452.735,191.832,487.665,168.389,127.632,168.389,323.045,322.051,349.298,19.161,23.928,19.161 +1728,43.630,178.974,490.307,362.953,452.735,191.832,487.665,168.389,127.632,168.389,323.045,322.051,349.298,19.161,23.928,19.161 +1729,43.655,181.135,503.182,358.017,438.660,193.964,498.608,160.378,125.134,160.378,322.074,321.216,349.315,19.649,20.839,19.649 +1730,43.681,184.767,516.392,352.154,425.785,198.079,509.339,152.085,121.842,152.085,320.401,320.870,350.529,19.750,20.531,19.750 +1731,43.708,189.055,530.974,344.730,413.627,204.300,519.765,143.673,118.918,143.673,314.180,320.131,352.026,19.881,19.906,19.881 +1732,43.734,189.055,530.974,344.730,413.627,204.300,519.765,143.673,118.918,143.673,314.180,320.131,352.026,19.881,19.906,19.881 +1733,43.760,193.616,546.643,335.363,402.433,211.713,528.774,135.363,116.075,135.363,302.645,318.962,353.509,19.664,20.525,19.664 +1734,43.786,202.613,561.803,323.262,392.400,220.455,537.073,125.808,112.782,125.808,293.965,318.545,354.953,17.784,19.786,17.784 +1735,43.811,206.342,593.912,309.923,384.618,230.985,544.318,116.423,109.525,116.423,245.527,317.080,356.286,17.733,19.919,17.733 +1736,43.837,220.173,625.672,295.508,378.154,243.676,549.708,107.192,106.903,107.192,199.382,315.533,358.417,18.399,18.947,18.399 +1737,43.862,220.173,625.672,295.508,378.154,243.676,549.708,107.192,106.903,107.192,199.382,315.533,358.417,18.399,18.947,18.399 +1738,43.886,253.863,566.168,279.176,375.294,255.472,553.384,97.173,104.036,97.173,333.542,315.781,359.312,22.327,19.888,22.327 +1739,43.912,272.165,565.089,263.939,375.391,271.935,555.208,88.668,100.981,88.668,340.141,314.522,359.908,22.087,20.103,22.087 +1740,43.938,287.500,562.500,248.290,377.543,285.769,553.847,78.690,98.427,78.690,342.811,313.578,360.461,22.749,20.370,22.749 +1741,43.963,287.500,562.500,248.290,377.543,285.769,553.847,78.690,98.427,78.690,342.811,313.578,360.461,22.749,20.370,22.749 +1742,43.989,302.691,557.140,232.193,382.265,299.768,549.692,68.570,95.807,68.570,345.078,312.541,361.081,20.889,19.257,20.889 +1743,44.015,317.814,549.003,217.554,389.646,313.871,542.544,58.601,93.265,58.601,346.244,311.862,361.378,23.445,18.493,23.445 +1744,44.041,330.255,538.906,204.634,399.512,325.732,533.716,48.935,90.583,48.935,347.703,311.096,361.473,24.485,18.348,24.485 +1745,44.066,330.255,538.906,204.634,399.512,325.732,533.716,48.935,90.583,48.935,347.703,311.096,361.473,24.485,18.348,24.485 +1746,44.091,340.209,527.748,193.298,411.043,335.230,523.616,39.685,87.942,39.685,349.283,310.554,362.223,25.608,20.005,25.608 +1747,44.117,348.943,514.735,186.590,423.761,343.911,511.818,30.101,85.579,30.101,348.902,311.159,360.536,25.729,19.807,25.729 +1748,44.143,354.752,501.767,180.661,436.915,349.569,499.760,21.171,82.709,21.171,349.292,310.332,360.409,25.885,21.552,25.885 +1749,44.169,354.752,501.767,180.661,436.915,349.569,499.760,21.171,82.709,21.171,349.292,310.332,360.409,25.885,21.552,25.885 +1750,44.193,357.465,491.659,176.238,450.870,352.005,490.446,12.529,80.015,12.529,349.150,310.555,360.335,19.741,20.793,19.741 +1751,44.218,359.134,478.705,174.457,464.345,353.793,478.305,4.278,77.513,4.278,349.045,310.863,359.756,18.920,20.486,18.920 +1752,44.245,358.993,465.386,174.180,477.451,353.689,465.733,176.260,74.796,176.260,349.150,310.920,359.781,19.970,20.198,19.970 +1753,44.271,357.101,453.513,175.717,490.107,352.054,454.526,168.648,72.078,168.648,349.485,311.207,359.782,20.389,19.797,20.389 +1754,44.296,357.101,453.513,175.717,490.107,352.054,454.526,168.648,72.078,168.648,349.485,311.207,359.782,20.389,19.797,20.389 +1755,44.321,353.525,442.602,178.668,501.749,348.932,444.163,161.222,69.399,161.222,349.776,311.793,359.477,20.791,19.684,20.791 +1756,44.347,348.997,432.950,182.552,512.478,344.654,435.029,154.423,66.849,154.423,349.677,312.247,359.307,19.489,19.537,19.489 +1757,44.374,343.810,424.627,188.098,521.976,339.932,427.091,147.579,63.997,147.579,348.888,313.122,358.078,19.563,19.795,19.563 +1758,44.400,343.810,424.627,188.098,521.976,339.932,427.091,147.579,63.997,147.579,348.888,313.122,358.078,19.563,19.795,19.563 +1759,44.425,337.778,416.594,194.472,531.185,334.151,419.486,141.437,61.020,141.437,348.420,314.898,357.698,18.777,20.080,18.777 +1760,44.451,331.368,409.845,200.777,537.977,328.046,413.132,135.310,58.309,135.310,347.211,314.321,356.557,19.164,20.362,19.164 +1761,44.477,324.704,404.016,207.573,544.256,321.790,407.544,129.560,55.275,129.560,347.134,314.519,356.285,19.274,20.263,19.274 +1762,44.502,324.704,404.016,207.573,544.256,321.790,407.544,129.560,55.275,129.560,347.134,314.519,356.285,19.274,20.263,19.274 +1763,44.527,317.499,399.468,213.013,551.208,314.406,404.036,124.103,51.988,124.103,346.391,315.209,357.425,19.011,24.488,19.011 +1764,44.552,310.133,395.641,220.715,555.877,307.571,400.280,118.906,48.945,118.906,345.791,315.717,356.391,18.787,24.009,18.787 +1765,44.578,303.000,392.459,228.128,559.875,300.849,397.343,113.772,45.659,113.772,345.438,315.528,356.112,18.608,24.446,18.608 +1766,44.604,295.853,390.098,235.708,563.192,294.118,395.186,108.825,42.709,108.825,344.981,317.039,355.733,18.844,24.644,18.844 +1767,44.630,295.853,390.098,235.708,563.192,294.118,395.186,108.825,42.709,108.825,344.981,317.039,355.733,18.844,24.644,18.844 +1768,44.656,288.971,388.618,243.478,565.027,287.746,393.515,104.036,39.289,104.036,344.158,317.252,354.255,18.675,24.626,18.675 +1769,44.682,281.812,387.064,251.161,566.947,280.926,392.529,99.216,36.773,99.216,342.792,318.204,353.866,18.836,24.275,18.836 +1770,44.707,274.824,386.610,258.776,567.819,274.355,392.240,94.764,33.299,94.764,341.234,319.526,352.532,18.021,24.460,18.021 +1771,44.733,274.824,386.610,258.776,567.819,274.355,392.240,94.764,33.299,94.764,341.234,319.526,352.532,18.021,24.460,18.021 +1772,44.759,267.963,386.476,266.241,567.948,267.934,391.968,90.303,30.046,90.303,340.990,320.390,351.974,17.624,25.383,17.624 +1773,44.784,261.409,387.275,274.400,567.700,261.832,392.802,85.625,26.565,85.625,339.609,319.758,350.695,18.460,25.938,18.460 +1774,44.810,255.222,387.776,282.364,566.551,256.096,393.400,81.167,22.286,81.167,338.878,320.156,350.261,19.496,25.590,19.496 +1775,44.835,255.222,387.776,282.364,566.551,256.096,393.400,81.167,22.286,81.167,338.878,320.156,350.261,19.496,25.590,19.496 +1776,44.860,248.779,388.413,290.150,565.050,250.268,394.619,76.504,18.435,76.504,337.302,320.339,350.065,20.459,25.298,20.459 +1777,44.885,242.561,390.136,298.259,562.996,244.696,396.648,71.843,14.457,71.843,335.805,319.657,349.512,21.252,25.373,21.252 +1778,44.910,236.293,392.506,305.628,560.275,238.989,398.935,67.249,9.982,67.249,335.173,319.939,349.115,22.579,24.007,22.579 +1779,44.935,236.293,392.506,305.628,560.275,238.989,398.935,67.249,9.982,67.249,335.173,319.939,349.115,22.579,24.007,22.579 +1780,44.963,229.801,394.867,313.010,556.901,233.387,401.700,62.312,5.711,62.312,333.417,320.004,348.852,23.145,24.478,23.145 +1781,45.002,223.306,398.125,320.485,552.395,227.700,404.935,57.171,0.963,57.171,332.215,319.207,348.423,23.637,23.257,23.637 +1782,45.028,217.058,402.454,327.526,547.405,222.277,409.127,51.968,176.279,51.968,330.579,320.275,347.522,24.067,23.592,24.067 +1783,45.054,210.840,407.095,334.239,541.577,216.920,413.533,46.637,171.373,46.637,329.579,320.825,347.289,24.840,23.715,24.840 +1784,45.083,204.516,412.825,340.920,534.671,211.764,419.093,40.855,166.373,40.855,327.423,321.123,346.588,25.389,23.943,25.389 +1785,45.109,198.848,418.895,347.022,527.063,207.066,424.723,35.344,161.162,35.344,326.574,321.342,346.726,25.940,23.917,25.940 +1786,45.135,198.848,418.895,347.022,527.063,207.066,424.723,35.344,161.162,35.344,326.574,321.342,346.726,25.940,23.917,25.940 +1787,45.159,193.373,426.429,352.663,518.366,202.407,431.448,29.055,155.966,29.055,326.449,321.556,347.118,25.836,24.585,25.836 +1788,45.185,188.388,434.870,357.376,508.657,198.286,438.994,22.620,150.199,22.620,325.846,321.749,347.292,25.769,24.534,25.769 +1789,45.209,183.278,447.783,361.220,498.234,193.978,450.822,15.856,144.866,15.856,325.419,321.398,347.666,19.228,24.928,19.228 +1790,45.235,183.278,447.783,361.220,498.234,193.978,450.822,15.856,144.866,15.856,325.419,321.398,347.666,19.228,24.928,19.228 +1791,45.261,180.636,458.292,363.447,486.939,191.634,460.037,9.019,139.014,9.019,325.543,321.365,347.813,18.718,24.700,18.718 +1792,45.287,178.913,469.415,364.540,474.573,190.711,469.768,1.710,132.879,1.710,324.184,321.487,347.790,18.619,24.077,18.619 +1793,45.312,178.785,481.207,364.149,462.110,190.565,479.967,173.991,126.501,173.991,325.308,321.601,348.998,18.582,24.453,18.582 +1794,45.337,180.839,493.913,361.260,448.154,192.020,491.164,166.192,120.651,166.192,326.200,320.729,349.229,19.932,22.718,19.932 +1795,45.364,180.839,493.913,361.260,448.154,192.020,491.164,166.192,120.651,166.192,326.200,320.729,349.229,19.932,22.718,19.932 +1796,45.389,184.396,505.941,356.657,434.689,195.048,501.618,157.913,113.749,157.913,326.839,319.335,349.830,19.607,21.382,19.607 +1797,45.414,189.859,517.836,350.322,422.017,199.776,512.067,149.808,107.021,149.808,327.871,318.200,350.818,19.094,21.153,19.094 +1798,45.440,196.610,530.012,342.418,410.667,206.270,522.284,141.340,99.660,141.340,327.340,316.805,352.082,19.209,22.275,19.209 +1799,45.466,196.610,530.012,342.418,410.667,206.270,522.284,141.340,99.660,141.340,327.340,316.805,352.082,19.209,22.275,19.209 +1800,45.490,205.251,540.770,332.641,400.861,213.829,531.477,132.709,92.793,132.709,327.835,314.553,353.130,19.161,22.412,19.161 +1801,45.516,217.160,549.268,320.936,391.960,223.357,539.907,123.503,84.695,123.503,332.003,312.420,354.456,18.791,23.321,18.791 +1802,45.543,230.488,555.671,307.276,384.784,234.478,546.820,114.265,76.945,114.265,335.858,311.348,355.275,19.173,22.914,19.173 +1803,45.568,230.488,555.671,307.276,384.784,234.478,546.820,114.265,76.945,114.265,335.858,311.348,355.275,19.173,22.914,19.173 +1804,45.593,243.918,560.878,292.652,379.629,246.240,552.159,104.915,68.374,104.915,339.279,310.688,357.325,19.836,23.356,19.836 +1805,45.620,257.361,562.722,288.157,395.671,257.265,563.741,95.374,59.560,95.374,342.498,266.595,340.451,22.653,24.621,22.653 +1806,45.645,274.534,562.806,275.047,392.558,274.594,564.064,87.248,51.072,87.248,345.092,268.001,342.573,23.310,23.667,23.310 +1807,45.671,287.658,559.896,245.403,378.859,286.322,554.016,77.196,41.634,77.196,347.679,310.009,359.739,22.428,24.000,22.428 +1808,45.697,287.658,559.896,245.403,378.859,286.322,554.016,77.196,41.634,77.196,347.679,310.009,359.739,22.428,24.000,22.428 +1809,45.722,303.548,554.930,231.262,383.773,301.400,549.650,67.865,32.876,67.865,348.758,308.274,360.158,22.011,21.949,22.011 +1810,45.748,317.021,547.711,217.394,391.076,314.200,543.093,58.582,23.094,58.582,349.560,308.581,360.384,23.516,21.205,23.516 +1811,45.775,328.582,538.665,205.051,400.281,325.279,534.792,49.538,12.995,49.538,350.543,309.332,360.724,24.682,20.312,24.682 +1812,45.800,328.582,538.665,205.051,400.281,325.279,534.792,49.538,12.995,49.538,350.543,309.332,360.724,24.682,20.312,24.682 +1813,45.826,338.490,528.273,195.087,411.245,334.994,525.270,40.665,2.851,40.665,351.636,308.912,360.853,25.383,18.334,25.383 +1814,45.852,345.940,516.837,186.996,421.251,342.083,514.405,32.235,172.341,32.235,352.621,309.859,361.742,25.550,20.850,25.550 +1815,45.877,351.392,505.162,181.150,434.450,347.777,503.542,24.140,161.565,24.140,352.702,310.536,360.624,26.235,19.290,26.235 +1816,45.903,354.261,496.917,177.272,446.593,350.622,495.845,16.419,150.729,16.419,352.816,311.484,360.404,19.551,19.313,19.551 +1817,45.928,354.261,496.917,177.272,446.593,350.622,495.845,16.419,150.729,16.419,352.816,311.484,360.404,19.551,19.313,19.551 +1818,45.952,356.433,485.762,173.903,457.383,352.461,485.133,8.995,140.513,8.995,353.357,312.313,361.401,19.499,21.164,19.499 +1819,45.977,358.063,475.132,173.458,469.280,353.717,474.985,1.938,129.155,1.938,352.002,312.822,360.698,18.700,19.231,18.700 +1820,46.003,358.063,475.132,173.458,469.280,353.717,474.985,1.938,129.155,1.938,352.002,312.822,360.698,18.700,19.231,18.700 +1821,46.028,357.754,464.445,173.192,479.606,353.177,464.814,175.393,118.811,175.393,352.002,313.422,361.184,18.971,19.759,18.971 +1822,46.053,356.051,454.690,175.000,490.000,351.795,455.517,169.009,107.745,169.009,351.579,313.690,360.252,19.662,19.125,19.662 +1823,46.078,353.821,445.786,177.279,499.473,349.556,447.094,162.945,96.857,162.945,351.204,313.671,360.127,20.229,19.090,20.229 +1824,46.103,350.408,437.372,180.733,507.834,346.591,438.958,157.430,85.737,157.430,350.916,313.144,359.182,20.243,19.078,20.243 +1825,46.129,350.408,437.372,180.733,507.834,346.591,438.958,157.430,85.737,157.430,350.916,313.144,359.182,20.243,19.078,20.243 +1826,46.153,347.588,430.717,184.092,515.537,343.412,432.915,152.241,74.999,152.241,349.496,313.122,358.934,19.235,20.013,19.235 +1827,46.178,343.516,423.976,188.296,522.615,339.599,426.506,147.148,63.754,147.148,349.159,313.499,358.484,19.514,19.595,19.514 +1828,46.204,339.258,417.874,192.279,528.632,335.238,420.945,142.615,52.804,142.615,347.835,312.605,357.951,18.927,21.159,18.927 +1829,46.229,339.258,417.874,192.279,528.632,335.238,420.945,142.615,52.804,142.615,347.835,312.605,357.951,18.927,21.159,18.927 +1830,46.253,335.038,412.543,195.583,534.771,330.486,416.603,138.275,41.399,138.275,346.463,312.329,358.663,19.082,23.698,19.082 +1831,46.279,330.362,408.284,200.325,538.952,326.489,412.266,134.211,30.651,134.211,346.449,312.636,357.559,18.944,24.056,18.944 +1832,46.304,326.392,403.878,205.484,542.048,322.721,408.203,130.314,18.043,130.314,344.469,312.086,355.815,19.571,26.083,19.571 +1833,46.330,326.392,403.878,205.484,542.048,322.721,408.203,130.314,18.043,130.314,344.469,312.086,355.815,19.571,26.083,19.571 +1834,46.356,322.434,399.579,209.811,546.645,318.163,405.267,126.909,7.524,126.909,342.004,312.101,356.230,18.812,22.578,18.812 +1835,46.381,318.961,395.808,213.873,549.723,314.314,402.780,123.690,175.914,123.690,339.199,312.703,355.958,19.137,21.802,19.137 +1836,46.408,315.112,391.823,217.935,552.264,310.136,400.317,120.366,164.604,120.366,335.737,313.198,355.424,19.271,20.540,19.271 +1837,46.433,315.112,391.823,217.935,552.264,310.136,400.317,120.366,164.604,120.366,335.737,313.198,355.424,19.271,20.540,19.271 +1838,46.460,312.013,387.322,221.552,554.565,306.204,398.523,117.415,152.592,117.415,329.752,314.462,354.988,19.238,19.728,19.238 +1839,46.485,310.096,381.895,225.054,556.440,303.039,397.151,114.825,141.478,114.825,321.006,315.317,354.624,19.399,19.945,19.399 +1840,46.511,307.923,373.615,229.070,558.966,298.822,395.719,112.380,129.245,112.380,307.211,316.900,355.018,17.950,19.547,17.950 +1841,46.537,313.343,345.307,232.880,561.172,295.221,395.143,109.983,117.897,109.983,248.618,318.060,354.675,17.771,19.287,17.771 +1842,46.563,313.343,345.307,232.880,561.172,295.221,395.143,109.983,117.897,109.983,248.618,318.060,354.675,17.771,19.287,17.771 +1843,46.588,306.788,348.139,235.961,562.634,292.128,394.339,107.605,106.144,107.605,257.859,319.084,354.799,17.899,19.034,17.899 +1844,46.613,290.369,389.520,240.798,565.024,289.140,394.077,105.097,94.574,105.097,345.837,321.612,355.276,18.524,19.458,18.524 +1845,46.639,287.310,388.152,246.067,566.602,286.063,393.578,102.935,83.639,102.935,344.038,322.351,355.173,18.700,22.862,18.700 +1846,46.665,287.310,388.152,246.067,566.602,286.063,393.578,102.935,83.639,102.935,344.038,322.351,355.173,18.700,22.862,18.700 +1847,46.690,284.087,388.454,248.970,566.672,283.228,392.900,100.936,71.982,100.936,345.175,320.665,354.232,18.702,20.618,18.702 +1848,46.717,281.149,388.077,251.940,566.989,280.436,392.595,98.963,59.689,98.963,344.261,319.526,353.409,18.974,21.078,18.974 +1849,46.744,278.427,387.550,254.068,568.134,277.790,392.599,97.184,48.945,97.184,344.067,319.001,354.247,18.409,23.814,18.409 +1850,46.769,278.427,387.550,254.068,568.134,277.790,392.599,97.184,48.945,97.184,344.067,319.001,354.247,18.409,23.814,18.409 +1851,46.793,275.819,386.743,257.640,568.022,275.309,392.058,95.477,37.648,95.477,343.016,318.930,353.695,18.245,23.912,18.245 +1852,46.819,273.138,386.286,260.965,567.590,272.788,391.782,93.644,26.139,93.644,341.391,318.884,352.406,18.097,24.862,18.097 +1853,46.845,270.544,384.859,264.548,567.817,270.322,391.846,91.818,14.621,91.818,338.147,317.252,352.130,18.086,25.873,18.086 +1854,46.871,267.880,383.502,267.460,567.646,267.842,391.812,90.264,3.532,90.264,335.047,315.880,351.667,17.765,25.334,17.765 +1855,46.896,267.880,383.502,267.460,567.646,267.842,391.812,90.264,3.532,90.264,335.047,315.880,351.667,17.765,25.334,17.765 +1856,46.920,265.215,382.994,269.811,567.087,265.458,391.514,88.371,172.367,88.371,334.206,316.010,351.253,18.111,25.647,18.111 +1857,46.946,262.730,383.342,272.487,566.908,263.228,391.926,86.682,160.907,86.682,333.252,316.679,350.450,18.201,25.078,18.201 +1858,46.971,260.112,383.270,274.771,566.110,260.879,391.967,84.958,149.566,84.958,331.916,317.089,349.379,18.692,23.474,18.692 +1859,46.997,260.112,383.270,274.771,566.110,260.879,391.967,84.958,149.566,84.958,331.916,317.089,349.379,18.692,23.474,18.692 +1860,47.022,257.509,382.700,277.143,565.662,258.640,392.143,83.171,138.417,83.171,329.954,317.896,348.976,19.050,22.419,19.050 +1861,47.047,254.869,382.492,279.394,565.564,256.370,392.454,81.431,125.754,81.431,329.066,318.771,349.215,19.587,22.009,19.587 +1862,47.073,251.805,381.665,281.932,565.275,253.901,392.964,79.495,115.508,79.495,326.084,319.745,349.067,19.743,20.795,19.743 +1863,47.099,251.805,381.665,281.932,565.275,253.901,392.964,79.495,115.508,79.495,326.084,319.745,349.067,19.743,20.795,19.743 +1864,47.125,248.541,380.935,285.305,565.947,251.484,394.177,77.471,105.333,77.471,322.901,321.971,350.031,20.175,20.595,20.175 +1865,47.151,244.409,378.963,288.522,565.791,248.694,395.117,75.141,96.038,75.141,316.934,322.537,350.360,20.535,20.310,20.535 +1866,47.177,239.168,376.022,294.610,564.920,245.519,396.585,72.838,87.839,72.838,307.607,322.487,350.651,20.093,21.136,20.093 +1867,47.203,239.168,376.022,294.610,564.920,245.519,396.585,72.838,87.839,72.838,307.607,322.487,350.651,20.093,21.136,20.093 +1868,47.227,231.494,371.099,298.167,564.061,241.306,398.270,70.145,79.574,70.145,292.721,323.789,350.497,18.158,18.151,18.158 +1869,47.253,216.971,350.474,303.245,562.082,237.483,399.891,67.457,72.081,67.457,243.009,322.961,350.020,17.810,18.318,17.810 +1870,47.278,198.867,328.724,307.945,559.792,233.885,401.678,64.359,64.916,64.359,187.336,322.657,349.183,17.814,18.885,17.814 +1871,47.303,218.164,379.781,313.137,557.281,231.639,402.847,59.708,57.706,59.708,295.486,323.510,348.914,20.971,18.791,20.971 +1872,47.328,218.164,379.781,313.137,557.281,231.639,402.847,59.708,57.706,59.708,295.486,323.510,348.914,20.971,18.791,20.971 +1873,47.352,221.154,395.731,317.781,554.359,227.511,405.266,56.310,50.631,56.310,325.332,324.493,348.252,22.188,18.950,22.188 +1874,47.378,219.308,399.949,323.497,550.923,224.814,407.552,54.090,42.797,54.090,329.228,323.588,348.002,23.740,18.888,23.740 +1875,47.403,219.308,399.949,323.497,550.923,224.814,407.552,54.090,42.797,54.090,329.228,323.588,348.002,23.740,18.888,23.740 +1876,47.427,216.339,403.531,327.958,547.061,221.282,409.680,51.203,34.544,51.203,332.045,325.084,347.822,24.741,19.930,24.741 +1877,47.453,212.183,406.791,333.575,542.338,217.753,412.867,47.490,24.825,47.490,330.921,324.284,347.407,24.879,20.813,24.879 +1878,47.478,207.395,409.629,338.100,538.625,214.422,416.386,43.877,14.982,43.877,328.256,323.109,347.753,25.423,21.511,25.423 +1879,47.503,207.395,409.629,338.100,538.625,214.422,416.386,43.877,14.982,43.877,328.256,323.109,347.753,25.423,21.511,25.423 +1880,47.527,203.958,413.462,342.461,534.066,211.493,419.874,40.397,3.945,40.397,327.705,322.235,347.494,25.765,21.741,25.765 +1881,47.553,199.781,417.584,346.468,528.730,208.140,423.745,36.394,173.211,36.394,326.512,322.201,347.279,25.804,23.453,25.804 +1882,47.578,195.307,423.189,350.150,522.450,204.026,428.554,31.608,161.565,31.608,326.840,321.920,347.316,25.943,23.717,25.943 +1883,47.604,191.593,428.843,353.812,516.179,200.925,433.628,27.150,149.621,27.150,326.449,321.548,347.422,26.010,24.929,26.010 +1884,47.629,191.593,428.843,353.812,516.179,200.925,433.628,27.150,149.621,27.150,326.449,321.548,347.422,26.010,24.929,26.010 +1885,47.654,188.709,435.767,356.942,508.531,197.811,439.491,22.249,137.603,22.249,327.181,320.856,346.849,26.042,24.980,26.042 +1886,47.679,185.035,445.469,359.057,501.040,194.087,448.336,17.571,125.272,17.571,327.378,321.986,346.368,19.273,25.428,19.273 +1887,47.705,183.299,453.411,361.489,491.995,192.163,455.367,12.445,113.385,12.445,328.327,320.258,346.481,18.641,25.650,18.641 +1888,47.730,183.299,453.411,361.489,491.995,192.163,455.367,12.445,113.385,12.445,328.327,320.258,346.481,18.641,25.650,18.641 +1889,47.754,182.384,462.012,362.611,482.828,190.685,462.964,6.540,101.497,6.540,329.428,319.875,346.139,19.136,25.179,19.136 +1890,47.780,182.495,470.864,363.153,472.991,190.050,470.967,0.779,89.204,0.779,331.119,318.150,346.229,18.298,23.748,18.298 +1891,47.805,182.800,479.900,362.785,462.666,189.835,479.230,174.560,76.945,174.560,333.349,319.452,347.482,18.535,25.003,18.535 +1892,47.830,182.800,479.900,362.785,462.666,189.835,479.230,174.560,76.945,174.560,333.349,319.452,347.482,18.535,25.003,18.535 +1893,47.854,185.241,490.835,361.317,452.113,191.257,489.499,167.471,64.654,167.471,335.917,319.923,348.241,20.175,24.639,20.175 +1894,47.880,188.304,500.447,358.621,440.639,193.737,498.522,160.489,52.890,160.489,337.970,321.031,349.497,19.675,24.564,19.675 +1895,47.905,192.074,510.669,354.353,429.439,197.521,507.913,153.166,40.914,153.166,338.524,320.614,350.734,20.051,23.880,20.051 +1896,47.930,192.074,510.669,354.353,429.439,197.521,507.913,153.166,40.914,153.166,338.524,320.614,350.734,20.051,23.880,20.051 +1897,47.955,197.077,520.115,348.122,419.281,202.131,516.746,146.310,29.134,146.310,338.922,320.038,351.071,19.137,21.107,19.137 +1898,47.980,204.469,529.851,340.306,409.615,208.549,526.191,138.106,17.475,138.106,340.883,320.352,351.844,19.715,19.148,19.715 +1899,48.006,212.557,538.198,330.923,400.250,215.958,534.197,130.365,5.831,130.365,342.530,320.114,353.033,19.239,18.140,19.239 +1900,48.031,212.557,538.198,330.923,400.250,215.958,534.197,130.365,5.831,130.365,342.530,320.114,353.033,19.239,18.140,19.239 +1901,48.056,222.528,545.955,320.037,391.374,225.483,541.227,122.005,174.367,122.005,343.227,319.802,354.378,19.292,18.353,19.292 +1902,48.082,233.439,552.615,307.706,384.329,235.767,547.198,113.253,163.134,113.253,344.289,319.530,356.080,18.806,18.603,18.806 +1903,48.107,245.314,558.195,293.727,378.858,246.921,551.944,104.414,151.837,104.414,345.668,318.939,358.577,19.950,19.315,19.950 +1904,48.132,245.314,558.195,293.727,378.858,246.921,551.944,104.414,151.837,104.414,345.668,318.939,358.577,19.950,19.315,19.950 +1905,48.158,257.058,561.263,279.136,376.002,257.721,554.419,95.534,140.738,95.534,345.548,317.816,359.301,22.476,18.825,22.476 +1906,48.183,273.421,562.523,264.142,375.204,273.125,555.120,87.709,129.611,87.709,345.444,316.898,360.263,22.142,18.968,22.142 +1907,48.210,285.627,561.178,249.368,377.251,284.189,554.124,78.482,118.757,78.482,346.132,315.172,360.529,22.337,18.720,22.337 +1908,48.235,285.627,561.178,249.368,377.251,284.189,554.124,78.482,118.757,78.482,346.132,315.172,360.529,22.337,18.720,22.337 +1909,48.261,300.502,557.274,234.935,381.273,297.995,550.358,70.079,107.616,70.079,346.194,313.729,360.907,21.580,18.579,21.580 +1910,48.287,313.674,551.131,221.603,387.354,310.139,544.672,61.311,96.512,61.311,346.287,312.423,361.014,22.525,18.955,22.525 +1911,48.312,325.485,543.376,209.645,395.830,321.209,537.729,52.869,85.466,52.869,346.785,311.006,360.950,24.168,18.897,24.168 +1912,48.338,335.949,534.568,198.379,405.172,330.279,528.987,44.544,74.516,44.544,345.804,310.469,361.715,25.061,20.563,25.061 +1913,48.363,335.949,534.568,198.379,405.172,330.279,528.987,44.544,74.516,44.544,345.804,310.469,361.715,25.061,20.563,25.061 +1914,48.388,344.535,524.275,191.176,415.919,338.759,520.016,36.402,63.011,36.402,346.769,310.335,361.121,25.763,20.528,25.763 +1915,48.416,351.453,513.502,184.323,425.813,344.571,509.742,28.648,52.243,28.648,346.053,308.483,361.736,25.864,22.218,25.864 +1916,48.444,356.568,502.610,179.287,436.453,348.783,499.582,21.251,41.124,21.251,344.997,308.645,361.704,25.889,22.736,25.889 +1917,48.469,356.568,502.610,179.287,436.453,348.783,499.582,21.251,41.124,21.251,344.997,308.645,361.704,25.889,22.736,25.889 +1918,48.495,362.500,495.500,175.632,447.518,350.976,492.619,14.036,30.420,14.036,338.337,308.671,362.095,19.645,21.424,19.645 +1919,48.521,373.022,485.252,173.762,458.805,352.783,482.672,7.265,19.151,7.265,320.399,308.069,361.203,19.353,20.356,19.353 +1920,48.547,391.414,473.593,172.783,469.960,353.385,472.792,1.206,7.901,1.206,285.168,308.703,361.243,17.775,19.467,17.775 +1921,48.573,427.940,457.192,172.810,479.856,352.587,463.577,175.156,176.547,175.156,209.773,308.645,361.019,17.834,18.776,17.834 +1922,48.597,427.940,457.192,172.810,479.856,352.587,463.577,175.156,176.547,175.156,209.773,308.645,361.019,17.834,18.776,17.834 +1923,48.622,365.537,453.140,174.034,488.746,351.510,455.890,168.906,165.107,168.906,332.377,310.679,360.965,18.722,18.958,18.722 +1924,48.648,356.193,446.304,176.356,497.725,349.738,448.236,163.342,153.872,163.342,347.110,312.160,360.586,19.176,18.561,19.176 +1925,48.675,351.813,438.518,178.646,506.034,346.731,440.542,158.284,142.788,158.284,349.838,313.018,360.777,19.888,19.412,19.888 +1926,48.700,351.813,438.518,178.646,506.034,346.731,440.542,158.284,142.788,158.284,349.838,313.018,360.777,19.888,19.412,19.888 +1927,48.727,348.700,432.400,181.757,513.228,343.957,434.771,153.435,131.591,153.435,349.721,314.082,360.327,19.230,20.118,19.230 +1928,48.753,344.169,426.791,184.957,519.763,340.467,429.022,148.926,119.904,148.926,351.416,314.925,360.060,20.051,19.498,20.051 +1929,48.778,340.147,421.862,188.719,526.070,336.824,424.197,144.914,108.329,144.914,351.379,315.290,359.500,19.240,18.508,19.240 +1930,48.804,336.015,417.409,192.187,531.271,333.153,419.710,141.203,97.199,141.203,352.186,315.796,359.530,18.873,20.281,18.873 +1931,48.829,336.015,417.409,192.187,531.271,333.153,419.710,141.203,97.199,141.203,352.186,315.796,359.530,18.873,20.281,18.873 +1932,48.854,332.960,413.186,196.572,535.876,329.911,415.984,137.463,85.507,137.463,350.333,315.542,358.609,19.591,19.262,19.591 +1933,48.880,329.419,409.445,200.887,539.667,326.537,412.400,134.293,73.902,134.293,349.424,315.520,357.679,18.959,19.777,18.959 +1934,48.906,326.201,405.797,205.186,542.855,323.350,409.035,131.367,62.354,131.367,348.418,315.862,357.047,18.471,21.471,18.471 +1935,48.932,326.201,405.797,205.186,542.855,323.350,409.035,131.367,62.354,131.367,348.418,315.862,357.047,18.471,21.471,18.471 +1936,48.956,323.201,402.866,206.951,546.307,319.724,407.247,128.429,50.583,128.429,346.873,314.361,358.060,19.022,24.150,19.022 +1937,48.981,320.101,400.350,210.392,549.119,316.592,405.207,125.848,38.480,125.848,345.709,314.053,357.692,18.919,24.348,18.919 +1938,49.007,317.538,398.192,214.178,550.701,314.250,403.125,123.690,27.553,123.690,344.746,313.196,356.603,18.860,24.901,18.860 +1939,49.033,317.538,398.192,214.178,550.701,314.250,403.125,123.690,27.553,123.690,344.746,313.196,356.603,18.860,24.901,18.860 +1940,49.059,314.791,395.706,217.239,551.892,311.461,401.155,121.430,16.330,121.430,342.735,313.038,355.507,18.867,25.391,18.867 +1941,49.085,312.443,393.440,219.934,553.640,308.849,399.817,119.407,3.302,119.407,340.684,312.807,355.323,18.817,23.480,18.817 +1942,49.111,310.163,391.371,222.269,555.154,306.343,398.662,117.646,172.875,117.646,338.809,313.064,355.272,18.856,22.698,18.856 +1943,49.136,310.163,391.371,222.269,555.154,306.343,398.662,117.646,172.875,117.646,338.809,313.064,355.272,18.856,22.698,18.856 +1944,49.161,308.678,388.792,224.250,555.750,304.431,397.511,115.974,161.565,115.974,335.346,313.698,354.744,19.017,21.187,19.017 +1945,49.187,307.305,385.729,225.812,556.739,302.304,396.732,114.444,151.390,114.444,330.463,314.366,354.635,18.869,19.793,18.869 +1946,49.212,306.442,381.449,227.792,558.097,300.264,396.124,112.834,141.009,112.834,322.960,315.339,354.805,19.597,19.653,19.597 +1947,49.238,306.633,374.861,229.641,559.258,298.186,395.777,111.991,130.815,111.991,309.396,316.730,354.509,17.903,19.471,17.903 +1948,49.263,306.633,374.861,229.641,559.258,298.186,395.777,111.991,130.815,111.991,309.396,316.730,354.509,17.903,19.471,17.903 +1949,49.289,308.916,361.793,231.949,560.781,296.215,395.360,110.726,122.005,110.726,283.139,317.681,354.918,17.442,19.610,17.442 +1950,49.314,321.178,318.328,234.160,561.796,294.201,394.764,109.440,114.146,109.440,192.869,318.308,354.984,17.529,19.131,17.529 +1951,49.340,307.386,347.527,235.860,562.553,292.455,394.285,107.710,106.552,107.710,256.852,318.960,355.020,17.915,18.943,17.915 +1952,49.366,307.386,347.527,235.860,562.553,292.455,394.285,107.710,106.552,107.710,256.852,318.960,355.020,17.915,18.943,17.915 +1953,49.392,293.491,386.625,237.567,564.274,291.187,394.545,106.220,98.983,106.220,339.403,321.231,355.900,17.737,20.169,17.737 +1954,49.417,290.640,389.087,240.661,565.003,289.273,394.122,105.200,90.971,105.200,344.864,320.242,355.297,18.659,20.031,18.659 +1955,49.444,289.599,389.847,243.849,565.757,288.542,393.885,104.676,82.499,104.676,346.826,321.545,355.174,19.094,22.648,19.094 +1956,49.473,288.498,389.132,243.342,565.891,287.326,393.860,103.919,72.316,103.919,345.378,320.702,355.120,18.839,22.120,18.839 +1957,49.508,288.372,389.356,244.635,565.408,287.395,393.346,103.761,62.475,103.761,346.377,319.713,354.591,18.772,20.559,18.772 +1958,49.533,288.372,389.356,244.635,565.408,287.395,393.346,103.761,62.475,103.761,346.377,319.713,354.591,18.772,20.559,18.772 +1959,49.560,287.872,388.636,244.023,565.930,286.711,393.513,103.392,52.193,103.392,345.207,318.813,355.232,18.947,24.152,18.947 +1960,49.586,288.071,387.803,244.758,565.577,286.771,393.263,103.392,41.468,103.392,343.493,318.151,354.718,18.947,24.397,18.947 +1961,49.615,288.296,387.851,244.404,565.044,287.036,393.102,103.496,31.827,103.496,343.486,318.322,354.286,18.942,24.727,18.942 +1962,49.643,288.486,387.033,245.070,563.818,287.151,392.575,103.548,20.937,103.548,341.268,316.755,352.671,18.717,26.655,18.717 +1963,49.670,288.486,387.033,245.070,563.818,287.151,392.575,103.548,20.937,103.548,341.268,316.755,352.671,18.717,26.655,18.717 +1964,49.697,288.826,385.821,244.570,564.099,287.175,392.644,103.601,9.866,103.601,339.292,315.825,353.332,18.859,25.358,18.859 +1965,49.723,289.677,385.294,244.009,563.815,287.846,392.618,104.036,178.431,104.036,338.337,314.238,353.435,18.918,24.251,18.918 +1966,49.749,290.644,384.947,242.918,563.554,288.567,392.935,104.574,168.486,104.574,336.725,315.357,353.231,19.105,23.626,19.105 +1967,49.776,292.132,383.711,241.766,562.639,289.685,392.766,105.124,157.380,105.124,334.224,315.539,352.983,19.307,22.231,19.307 +1968,49.802,292.132,383.711,241.766,562.639,289.685,392.766,105.124,157.380,105.124,334.224,315.539,352.983,19.307,22.231,19.307 +1969,49.828,292.624,382.353,240.036,562.055,289.789,392.738,105.275,146.725,105.275,331.356,316.183,352.885,19.220,20.509,19.220 +1970,49.854,295.920,378.647,237.993,561.963,291.549,393.582,106.314,135.428,106.314,322.167,316.817,353.290,19.874,19.334,19.874 +1971,49.880,299.037,369.980,236.662,562.096,291.589,393.816,107.354,124.032,107.354,304.061,317.864,354.007,18.075,19.588,18.075 +1972,49.905,318.185,316.906,235.442,562.475,292.864,394.275,108.122,113.136,108.122,192.620,318.550,355.434,17.885,19.395,17.885 +1973,49.931,318.185,316.906,235.442,562.475,292.864,394.275,108.122,113.136,108.122,192.620,318.550,355.434,17.885,19.395,17.885 +1974,49.957,296.955,388.131,233.037,561.900,294.560,395.147,108.853,102.246,108.853,340.547,319.112,355.374,18.142,20.530,18.142 +1975,49.983,297.219,391.801,233.886,562.519,295.793,395.705,110.067,91.254,110.067,347.546,321.142,355.858,18.674,20.170,18.674 +1976,50.010,299.511,392.320,231.114,561.480,297.908,396.378,111.549,79.992,111.549,347.461,319.939,356.189,19.017,20.565,19.017 +1977,50.036,299.511,392.320,231.114,561.480,297.908,396.378,111.549,79.992,111.549,347.461,319.939,356.189,19.017,20.565,19.017 +1978,50.060,301.273,392.852,230.546,560.300,299.689,396.614,112.834,69.858,112.834,347.214,319.281,355.379,18.724,22.194,18.724 +1979,50.086,303.912,393.548,228.254,558.295,302.349,396.977,114.507,58.241,114.507,347.504,317.473,355.041,18.814,20.852,18.814 +1980,50.112,306.564,393.547,223.795,557.814,304.122,398.510,116.200,46.790,116.200,345.743,316.430,356.804,18.615,24.118,18.615 +1981,50.138,309.534,394.484,221.344,555.825,306.836,399.534,118.109,35.707,118.109,344.821,316.077,356.273,18.742,24.640,18.742 +1982,50.163,309.534,394.484,221.344,555.825,306.836,399.534,118.109,35.707,118.109,344.821,316.077,356.273,18.742,24.640,18.742 +1983,50.188,312.870,395.508,218.618,553.296,309.910,400.582,120.256,25.602,120.256,344.072,315.391,355.821,19.003,25.025,19.003 +1984,50.214,316.162,396.191,215.793,550.866,312.646,401.727,122.421,14.470,122.421,342.523,313.378,355.639,18.662,24.957,18.662 +1985,50.239,320.444,397.402,212.059,548.458,316.009,403.761,124.891,3.215,124.891,340.790,312.911,356.296,19.405,21.954,19.405 +1986,50.265,320.444,397.402,212.059,548.458,316.009,403.761,124.891,3.215,124.891,340.790,312.911,356.296,19.405,21.954,19.405 +1987,50.289,324.528,398.473,208.444,545.145,318.990,405.695,127.485,172.725,127.485,337.654,312.443,355.857,18.883,20.409,18.883 +1988,50.315,330.846,398.248,204.310,542.393,322.269,408.405,130.179,162.582,130.179,330.367,312.829,356.953,19.542,20.205,19.542 +1989,50.342,340.530,394.337,200.408,538.853,325.157,410.755,133.118,152.716,133.118,312.558,313.137,357.542,18.143,20.488,18.143 +1990,50.367,340.530,394.337,200.408,538.853,325.157,410.755,133.118,152.716,133.118,312.558,313.137,357.542,18.143,20.488,18.143 +1991,50.394,379.620,364.604,196.922,536.225,328.014,414.147,136.169,143.253,136.169,215.147,313.600,358.223,17.833,19.840,17.833 +1992,50.420,338.778,411.444,192.804,531.796,331.555,417.724,139.000,135.138,139.000,339.966,313.978,359.109,18.355,19.669,18.355 +1993,50.445,338.639,418.223,190.540,528.280,334.886,421.097,142.554,126.870,142.554,350.083,315.000,359.537,18.919,20.800,18.919 +1994,50.471,341.115,423.923,186.781,522.914,338.290,425.806,146.310,117.897,146.310,353.067,314.888,359.857,19.415,19.911,19.415 +1995,50.496,341.115,423.923,186.781,522.914,338.290,425.806,146.310,117.897,146.310,353.067,314.888,359.857,19.415,19.911,19.415 +1996,50.521,345.511,429.709,183.444,516.487,342.209,431.531,151.103,108.263,151.103,352.557,314.973,360.101,19.182,19.496,19.182 +1997,50.546,348.812,434.891,180.385,509.483,345.079,436.590,155.521,98.573,155.521,351.984,314.531,360.188,19.771,19.488,19.771 +1998,50.571,352.759,441.915,178.377,501.466,348.759,443.337,160.438,88.603,160.438,351.529,313.297,360.020,19.998,18.775,19.998 +1999,50.596,352.759,441.915,178.377,501.466,348.759,443.337,160.438,88.603,160.438,351.529,313.297,360.020,19.998,18.775,19.998 +2000,50.621,355.765,449.082,176.173,492.362,351.120,450.269,165.665,78.627,165.665,350.255,312.218,359.843,21.767,19.478,21.767 +2001,50.647,358.617,458.281,174.643,482.659,353.233,459.084,171.516,68.580,171.516,349.339,311.767,360.226,19.885,19.807,19.885 +2002,50.674,359.177,468.141,173.920,472.634,353.633,468.352,177.818,58.615,177.818,348.395,311.115,359.491,18.834,20.297,18.834 +2003,50.700,359.177,468.141,173.920,472.634,353.633,468.352,177.818,58.615,177.818,348.395,311.115,359.491,18.834,20.297,18.834 +2004,50.727,360.101,478.546,174.023,462.012,353.790,478.093,4.110,49.072,4.110,348.258,311.193,360.914,18.814,21.853,18.814 +2005,50.754,360.046,489.423,175.100,450.640,352.055,487.874,10.970,38.959,10.970,345.335,309.563,361.614,19.254,21.847,19.254 +2006,50.781,366.231,503.493,178.143,439.628,349.511,498.107,17.855,28.964,17.855,326.956,308.384,362.088,19.494,21.519,19.494 +2007,50.807,357.337,514.771,183.502,429.072,345.287,509.209,24.775,18.741,24.775,334.408,309.611,360.951,19.416,20.749,19.416 +2008,50.834,357.337,514.771,183.502,429.072,345.287,509.209,24.775,18.741,24.775,334.408,309.611,360.951,19.416,20.749,19.416 +2009,50.861,345.915,518.550,188.648,419.509,341.637,515.773,32.989,8.516,32.989,351.272,308.597,361.473,26.032,17.802,26.032 +2010,50.887,337.203,530.065,197.028,409.312,333.727,526.920,42.138,178.034,42.138,351.170,308.402,360.544,24.894,17.458,24.894 +2011,50.914,327.500,538.847,207.064,400.008,325.058,535.906,50.290,167.648,50.290,352.217,309.677,359.863,24.070,17.598,24.070 +2012,50.940,317.032,547.432,218.956,391.393,314.668,543.556,58.627,157.380,58.627,350.410,311.308,359.489,23.052,18.385,23.052 +2013,50.966,317.032,547.432,218.956,391.393,314.668,543.556,58.627,157.380,58.627,350.410,311.308,359.489,23.052,18.385,23.052 +2014,50.994,304.887,554.279,231.552,384.308,302.783,549.305,67.068,147.047,67.068,348.622,312.911,359.422,21.820,18.389,21.820 +2015,51.022,290.860,559.755,245.876,379.441,289.324,553.860,75.397,137.070,75.397,347.292,313.580,359.476,22.550,17.572,22.550 +2016,51.048,276.699,562.637,258.940,375.585,275.937,555.401,83.991,126.543,83.991,346.664,314.579,361.215,22.926,18.731,22.926 +2017,51.075,261.442,563.372,273.170,375.113,261.792,555.023,92.400,116.114,92.400,343.746,314.818,360.458,23.231,19.842,23.231 +2018,51.101,261.442,563.372,273.170,375.113,261.792,555.023,92.400,116.114,92.400,343.746,314.818,360.458,23.231,19.842,23.231 +2019,51.128,247.885,566.577,284.427,376.823,250.602,552.989,101.310,107.133,101.310,331.044,313.646,358.757,21.573,21.203,21.573 +2020,51.154,229.699,578.911,298.567,381.205,240.518,549.475,110.179,98.691,110.179,293.209,312.856,355.932,20.024,19.053,20.024 +2021,51.182,223.571,554.934,312.500,392.500,228.364,546.082,118.435,90.000,118.435,330.101,301.000,350.233,19.304,21.000,19.304 +2022,51.212,214.415,545.054,325.132,397.852,219.429,538.324,126.684,76.866,126.684,334.810,304.975,351.595,19.756,24.151,19.756 +2023,51.239,206.577,534.570,334.195,401.809,211.892,529.196,134.682,66.161,134.682,338.031,314.759,353.149,19.025,25.484,19.025 +2024,51.267,206.577,534.570,334.195,401.809,211.892,529.196,134.682,66.161,134.682,338.031,314.759,353.149,19.025,25.484,19.025 +2025,51.297,200.211,524.878,342.817,411.607,205.084,521.136,142.476,55.871,142.476,339.610,316.479,351.899,19.694,24.806,19.694 +2026,51.326,193.963,515.074,349.750,422.250,199.196,512.041,149.901,45.000,149.901,338.471,318.198,350.567,19.485,24.749,19.485 +2027,51.355,190.177,504.916,356.286,432.804,195.585,502.619,156.980,35.189,156.980,338.659,320.397,350.411,19.742,23.952,19.742 +2028,51.383,186.538,495.628,360.629,445.222,192.671,493.818,163.560,24.922,163.560,336.901,321.046,349.690,21.321,20.648,21.321 +2029,51.412,182.770,486.643,363.709,455.618,191.416,485.175,170.362,14.592,170.362,332.076,322.847,349.618,19.048,20.355,19.048 +2030,51.439,177.309,477.185,365.297,465.457,191.112,476.494,177.138,4.717,177.138,321.399,324.373,349.038,17.278,19.492,17.278 +2031,51.467,177.309,477.185,365.297,465.457,191.112,476.494,177.138,4.717,177.138,321.399,324.373,349.038,17.278,19.492,17.278 +2032,51.497,143.330,466.104,365.432,474.241,191.111,468.352,2.694,174.906,2.694,253.143,324.566,348.811,17.357,20.284,17.357 +2033,51.526,173.280,458.540,364.377,483.027,191.737,461.177,8.130,165.446,8.130,310.703,324.316,347.991,18.809,21.704,18.809 +2034,51.555,180.602,451.318,362.866,491.948,193.018,454.239,13.241,156.038,13.241,322.430,324.099,347.940,19.354,23.150,19.354 +2035,51.583,184.318,444.644,360.536,500.052,194.631,447.989,17.969,145.305,17.969,326.064,323.122,347.748,19.282,24.350,19.282 +2036,51.612,188.534,436.414,357.693,507.277,197.674,440.070,21.801,136.081,21.801,327.381,321.930,347.068,25.997,25.585,25.997 +2037,51.640,191.685,430.601,353.824,513.739,199.793,434.572,26.095,126.367,26.095,328.251,321.810,346.306,25.879,25.336,25.879 +2038,51.668,191.685,430.601,353.824,513.739,199.793,434.572,26.095,126.367,26.095,328.251,321.810,346.306,25.879,25.336,25.879 +2039,51.696,194.872,425.388,349.800,519.900,202.235,429.636,29.982,116.565,29.982,328.851,321.994,345.851,26.319,24.597,26.319 +2040,51.727,197.699,421.884,346.353,525.249,204.620,426.423,33.254,107.650,33.254,328.877,321.049,345.430,26.047,24.386,26.047 +2041,51.756,201.260,417.820,342.999,530.208,207.630,422.597,36.870,97.907,36.870,329.800,321.442,345.724,25.800,23.387,25.800 +2042,51.785,205.078,413.298,339.186,534.506,211.022,418.453,40.934,88.877,40.934,329.986,321.232,345.721,25.592,21.447,25.592 +2043,51.815,207.030,409.751,335.592,538.760,213.571,415.954,43.485,79.531,43.485,328.058,322.625,346.087,24.983,19.293,24.983 +2044,51.844,208.000,407.500,333.050,541.982,215.258,414.758,45.000,70.649,45.000,325.976,323.275,346.505,24.749,18.662,24.749 +2045,51.874,207.190,401.170,331.474,544.475,217.774,412.899,47.936,62.549,47.936,316.115,323.442,347.712,23.195,19.050,23.195 +2046,51.904,195.105,386.778,329.530,546.278,217.489,413.022,49.538,54.968,49.538,279.204,324.005,348.189,17.723,18.360,17.723 +2047,51.934,195.105,386.778,329.530,546.278,217.489,413.022,49.538,54.968,49.538,279.204,324.005,348.189,17.723,18.360,17.723 +2048,51.963,199.071,385.082,328.003,547.629,220.933,410.588,49.399,47.632,49.399,280.274,323.814,347.460,21.910,19.031,21.910 +2049,51.995,214.873,401.728,326.700,548.767,221.532,409.924,50.906,40.679,50.906,327.035,324.414,348.154,23.914,19.266,23.914 +2050,52.026,219.540,402.720,325.614,548.823,223.568,408.091,53.130,32.811,53.130,334.200,324.815,347.627,24.000,20.116,24.000 +2051,52.056,221.233,401.546,324.223,549.730,225.084,406.962,54.583,24.193,54.583,334.313,324.098,347.605,23.833,22.566,23.833 +2052,52.086,221.989,400.007,323.246,551.088,226.409,406.484,55.685,15.113,55.685,332.373,322.588,348.055,23.835,23.649,23.835 +2053,52.118,222.753,398.833,321.943,552.131,227.286,405.710,56.605,5.194,56.605,332.220,321.673,348.692,23.779,23.811,23.779 +2054,52.149,223.445,398.035,320.641,552.197,227.894,404.940,57.207,175.236,57.207,331.614,320.805,348.042,23.402,23.917,23.402 +2055,52.179,223.786,397.135,319.787,552.569,228.427,404.503,57.792,164.982,57.792,330.534,320.471,347.951,23.478,24.641,23.478 +2056,52.210,224.084,396.585,318.811,552.669,228.791,404.164,58.155,155.056,58.155,329.455,320.241,347.298,23.395,25.051,23.395 +2057,52.240,224.345,396.438,318.089,552.625,228.915,403.851,58.349,144.583,58.349,329.460,319.789,346.878,23.334,24.702,23.334 +2058,52.270,224.345,396.438,318.089,552.625,228.915,403.851,58.349,144.583,58.349,329.460,319.789,346.878,23.334,24.702,23.334 +2059,52.298,224.323,396.334,317.434,552.436,228.951,403.840,58.339,134.256,58.339,328.212,319.714,345.848,23.237,24.113,23.237 +2060,52.331,223.920,395.959,316.808,552.538,228.494,403.359,58.276,123.690,58.276,329.257,320.062,346.657,23.353,23.020,23.353 +2061,52.364,223.847,396.162,316.728,552.597,228.461,403.552,58.022,113.044,58.022,328.919,320.665,346.345,24.038,22.586,24.038 +2062,52.397,222.734,396.468,316.707,552.888,227.735,404.279,57.366,102.804,57.366,327.710,321.617,346.258,23.351,20.212,23.351 +2063,52.431,221.411,396.099,317.660,552.506,227.003,404.661,56.853,92.291,56.853,326.262,321.503,346.714,23.717,19.345,23.717 +2064,52.463,219.556,395.426,319.187,552.472,226.371,405.525,55.989,81.634,55.989,323.086,322.589,347.453,23.574,18.681,23.574 +2065,52.497,215.972,393.011,321.400,551.700,225.475,406.552,54.941,71.565,54.941,314.742,322.868,347.828,23.609,18.657,23.609 +2066,52.531,206.024,387.640,323.470,550.704,221.984,409.300,53.616,61.569,53.616,294.269,323.285,348.079,17.923,18.898,17.923 +2067,52.564,179.149,357.193,325.646,549.349,220.357,410.764,52.431,50.896,52.431,212.911,323.736,348.084,17.682,18.842,17.682 +2068,52.597,212.983,403.312,328.109,547.375,219.793,411.183,49.135,41.091,49.135,326.912,324.276,347.728,23.750,19.245,23.750 +2069,52.630,214.019,405.484,330.951,544.581,219.167,411.479,49.347,31.430,49.347,331.805,325.337,347.609,25.622,20.668,25.622 +2070,52.663,211.514,406.952,334.273,541.868,217.407,413.287,47.070,21.269,47.070,330.182,323.821,347.486,24.894,22.084,24.894 +2071,52.697,208.781,408.718,337.087,539.685,215.487,415.385,44.832,11.768,44.832,328.830,323.186,347.742,24.892,21.782,24.892 +2072,52.730,205.232,411.801,339.994,536.172,212.558,418.336,41.730,1.975,41.730,327.442,322.360,347.077,25.414,21.642,25.414 +2073,52.763,203.301,414.037,342.969,532.766,210.960,420.405,39.742,172.360,39.742,326.760,322.091,346.683,25.608,23.340,25.608 +2074,52.797,199.790,417.920,345.909,528.800,207.759,423.750,36.193,162.553,36.193,327.300,321.959,347.048,25.746,24.422,25.746 +2075,52.830,196.443,422.240,348.879,524.169,204.715,427.520,32.550,152.241,32.550,327.412,321.645,347.039,25.933,24.871,25.933 +2076,52.864,194.157,425.964,351.807,518.905,202.525,430.719,29.604,142.815,29.604,327.469,321.396,346.718,25.906,25.164,25.906 +2077,52.896,190.715,432.042,354.402,512.907,199.121,435.998,25.201,133.315,25.201,327.917,320.659,346.497,25.761,24.988,25.761 +2078,52.930,188.527,437.098,356.654,507.269,196.982,440.406,21.371,123.690,21.371,327.959,322.003,346.117,25.953,25.239,25.953 +2079,52.964,185.303,446.505,359.274,499.623,193.712,449.065,16.928,114.102,16.928,328.638,320.543,346.219,19.258,25.415,19.258 +2080,52.996,183.589,453.595,361.108,491.919,191.951,455.428,12.362,104.621,12.362,328.972,320.450,346.094,18.626,25.158,18.626 +2081,53.031,182.638,461.392,362.602,483.873,190.681,462.398,7.125,95.194,7.125,330.304,319.772,346.515,18.729,25.078,18.729 +2082,53.064,182.540,469.613,362.986,474.966,189.940,469.826,1.648,86.009,1.648,331.438,319.247,346.245,18.597,24.243,18.597 +2083,53.097,182.773,477.675,363.122,465.591,189.917,477.187,176.100,76.504,176.100,332.864,319.915,347.185,18.366,24.776,18.366 +2084,53.130,184.528,487.415,361.988,455.505,190.814,486.267,169.658,67.203,169.658,335.051,320.296,347.830,18.957,24.864,18.957 +2085,53.163,186.999,496.997,359.965,444.712,192.891,495.187,162.924,58.195,162.924,336.732,320.226,349.060,20.224,24.777,20.224 +2086,53.196,190.413,506.171,356.187,433.977,195.740,503.821,156.194,49.236,156.194,338.331,320.620,349.975,19.429,23.976,19.429 +2087,53.229,194.642,516.241,351.462,423.341,200.350,512.872,149.444,39.685,149.444,338.031,319.974,351.287,19.765,23.742,19.765 +2088,53.261,200.253,525.327,344.418,413.792,205.258,521.460,142.306,30.579,142.306,339.245,319.521,351.896,19.386,21.523,19.386 +2089,53.294,207.847,533.360,335.758,405.126,211.495,529.688,134.819,21.140,134.819,341.538,319.420,351.891,18.563,18.816,18.563 +2090,53.326,217.074,541.813,325.931,396.829,219.964,537.913,126.545,11.788,126.545,343.180,319.107,352.888,19.707,17.910,19.707 +2091,53.359,226.457,548.932,314.935,388.979,229.105,544.064,118.546,2.508,118.546,343.411,318.527,354.495,18.728,17.800,18.728 +2092,53.392,237.750,554.776,302.549,382.907,239.762,549.317,110.236,173.062,110.236,344.077,318.129,355.713,18.873,17.942,18.873 +2093,53.425,249.521,559.087,289.029,378.599,250.736,553.131,101.524,163.864,101.524,345.171,318.124,357.328,20.596,18.276,20.596 +2094,53.457,261.260,561.265,274.802,376.133,261.576,554.901,92.845,154.456,92.845,345.667,317.160,358.409,22.420,18.672,22.420 +2095,53.489,277.459,562.421,260.411,376.301,276.904,555.675,85.296,144.988,85.296,346.708,316.551,360.246,22.746,18.634,22.746 +2096,53.522,289.824,559.794,245.204,379.168,288.320,553.780,75.964,135.571,75.964,347.311,315.396,359.710,22.071,18.520,22.071 +2097,53.555,305.091,554.978,231.389,383.899,302.643,549.200,67.033,126.529,67.033,347.451,314.608,360.001,22.111,18.363,22.111 +2098,53.587,318.070,548.097,217.947,390.227,314.625,542.540,58.201,116.878,58.201,347.712,314.377,360.789,23.440,18.218,23.440 +2099,53.620,329.507,539.642,206.223,398.692,325.190,534.575,49.562,107.292,49.562,347.859,313.066,361.173,24.460,18.547,24.460 +2100,53.653,339.284,529.521,196.320,408.760,334.448,525.321,40.977,98.130,40.977,348.627,311.127,361.438,25.195,18.385,25.195 +2101,53.685,346.927,518.614,188.812,420.002,341.923,515.411,32.619,89.474,32.619,348.902,310.042,360.784,25.639,18.485,25.639 +2102,53.719,352.528,507.026,183.491,431.607,347.704,504.807,24.698,81.027,24.698,348.933,309.014,359.554,26.109,20.431,26.109 +2103,53.754,355.419,498.514,178.748,443.104,350.435,496.980,17.103,71.811,17.103,349.448,309.262,359.877,19.704,20.086,19.704 +2104,53.786,358.376,487.157,175.882,454.581,353.188,486.272,9.678,62.526,9.678,349.695,308.751,360.221,19.593,19.980,19.593 +2105,53.819,359.828,476.201,173.865,466.891,353.887,475.925,2.663,51.858,2.663,348.600,309.586,360.494,18.585,22.195,18.585 +2106,53.852,359.269,465.353,173.417,477.468,353.385,465.764,176.009,43.332,176.009,348.896,308.291,360.693,18.977,21.136,18.977 +2107,53.885,358.450,454.910,174.427,487.602,352.050,456.104,169.435,35.385,169.435,347.753,308.761,360.774,19.727,22.035,19.727 +2108,53.918,357.349,445.157,176.779,496.989,349.822,447.427,163.217,27.288,163.217,344.241,309.011,359.965,20.288,22.345,20.288 +2109,53.952,355.200,435.686,179.738,506.301,346.544,439.278,157.463,18.778,157.463,340.771,308.989,359.513,19.943,21.492,19.943 +2110,53.985,352.094,427.112,183.411,514.346,342.921,432.012,151.889,11.079,151.889,338.176,309.267,358.975,20.166,20.986,20.166 +2111,54.019,349.035,419.071,187.532,522.036,338.906,425.748,146.607,3.900,146.607,334.496,309.713,358.760,19.791,19.183,19.791 +2112,54.054,343.869,412.235,192.426,528.531,334.436,419.682,141.710,177.098,141.710,333.782,309.819,357.819,18.961,18.778,18.961 +2113,54.089,337.850,406.935,197.016,534.497,329.527,414.769,136.736,170.838,136.736,334.244,311.204,357.105,19.490,19.968,19.490 +2114,54.134,333.256,401.369,202.167,539.901,324.924,410.533,132.274,164.954,132.274,331.829,311.895,356.600,19.844,19.522,19.844 +2115,54.167,327.404,395.630,207.795,544.737,319.437,405.944,127.687,159.734,127.687,330.109,312.516,356.175,19.420,19.686,19.420 +2116,54.201,321.191,391.770,213.344,549.514,313.953,402.771,123.341,155.056,123.341,329.440,313.241,355.777,19.061,19.779,19.061 +2117,54.240,308.825,384.817,224.980,556.424,303.047,397.205,115.004,147.095,115.004,327.251,314.592,354.589,19.146,19.755,19.146 +2118,54.272,308.825,384.817,224.980,556.424,303.047,397.205,115.004,147.095,115.004,327.251,314.592,354.589,19.146,19.755,19.146 +2119,54.303,302.782,383.272,231.104,559.075,298.070,395.432,111.181,144.058,111.181,327.485,315.343,353.567,19.488,19.633,19.488 +2120,54.335,296.124,380.951,237.236,561.293,292.302,393.507,106.928,141.116,106.928,326.850,315.785,353.100,19.591,19.485,19.591 +2121,54.367,289.332,380.035,243.569,563.153,286.556,392.139,102.916,138.965,102.916,327.755,315.816,352.592,19.358,19.947,19.358 +2122,54.400,282.635,379.578,249.939,564.518,280.743,391.461,99.044,137.291,99.044,327.428,316.418,351.494,18.877,19.896,18.877 +2123,54.434,276.342,379.861,256.499,565.567,275.302,390.929,95.368,136.273,95.368,329.027,316.894,351.261,18.349,20.108,18.349 +2124,54.467,269.987,380.036,263.231,566.224,269.722,391.091,91.375,134.731,91.375,328.361,316.814,350.478,18.147,21.903,18.147 +2125,54.502,263.656,381.853,269.750,566.250,264.107,391.544,87.337,135.000,87.337,330.155,317.491,349.558,18.050,21.213,18.050 +2126,54.535,257.886,381.999,276.442,565.917,259.038,392.080,83.480,134.497,83.480,329.086,317.559,349.379,18.962,21.988,18.962 +2127,54.568,252.187,384.185,283.390,564.865,253.814,392.910,79.439,134.178,79.439,331.175,317.651,348.925,19.761,22.091,19.761 +2128,54.602,246.396,385.739,290.318,563.358,248.642,394.290,75.285,134.021,75.285,330.539,318.297,348.219,20.555,22.914,20.555 +2129,54.635,240.626,387.743,296.827,561.746,243.506,396.141,71.075,133.983,71.075,330.135,318.349,347.892,21.351,23.076,21.351 +2130,54.669,234.959,390.311,304.172,559.146,238.296,398.130,66.894,133.885,66.894,330.899,318.413,347.903,22.369,23.448,22.369 +2131,54.702,229.227,393.284,310.997,555.965,233.186,400.836,62.333,134.053,62.333,329.991,318.412,347.044,22.752,23.974,22.752 +2132,54.736,223.402,396.542,317.752,552.208,227.967,403.787,57.787,134.281,57.787,329.747,319.013,346.873,23.480,24.052,23.480 +2133,54.770,217.656,400.494,324.481,547.459,222.789,407.310,53.017,134.576,53.017,329.191,319.645,346.257,24.024,24.104,24.024 +2134,54.804,212.087,405.331,331.350,542.346,217.835,411.734,48.085,134.736,48.085,328.840,319.635,346.049,24.751,24.458,24.751 +2135,54.837,206.155,411.284,337.625,536.626,212.713,417.281,42.436,135.232,42.436,327.664,319.638,345.438,25.430,25.141,25.430 +2136,54.871,201.106,416.460,343.886,529.408,208.226,421.933,37.551,135.679,37.551,328.148,320.389,346.110,25.791,25.130,25.791 +2137,54.904,195.478,424.056,349.638,521.680,203.423,428.860,31.159,136.054,31.159,327.725,319.844,346.295,25.911,25.131,25.911 +2138,54.936,191.459,430.985,354.478,512.946,199.876,435.059,25.828,136.724,25.828,327.483,320.664,346.184,25.959,24.953,25.959 +2139,54.970,185.840,442.351,358.939,503.434,195.290,445.719,19.620,137.246,19.620,326.988,320.821,347.053,19.912,24.993,19.912 +2140,55.003,182.229,452.718,362.520,492.691,192.821,455.071,12.529,138.053,12.529,325.938,321.701,347.638,19.307,25.184,19.307 +2141,55.037,179.293,463.041,364.291,481.332,191.087,464.239,5.799,138.786,5.799,324.378,321.913,348.088,18.615,24.332,18.615 +2142,55.071,177.043,473.944,365.036,469.042,190.499,473.648,178.741,139.497,178.741,322.274,322.145,349.193,18.149,23.524,18.149 +2143,55.104,175.429,487.150,363.629,455.874,191.337,484.574,170.803,140.590,170.803,317.099,322.255,349.329,19.104,22.634,19.104 +2144,55.138,172.904,501.932,360.731,442.920,193.553,495.567,162.867,141.242,162.867,307.323,322.341,350.538,19.845,20.472,19.845 +2145,55.170,166.117,519.418,355.516,429.376,196.828,504.892,154.687,142.206,154.687,283.534,322.410,351.480,17.102,19.804,17.102 +2146,55.202,135.000,560.000,348.825,416.765,202.263,515.158,146.310,143.300,146.310,191.372,321.602,353.051,17.196,18.909,17.196 +2147,55.233,199.048,534.891,340.241,405.835,209.534,525.429,137.940,144.237,137.940,326.074,321.887,354.321,18.446,18.794,18.446 +2148,55.267,213.119,540.969,329.520,396.029,218.327,534.569,129.144,145.176,129.144,338.776,321.474,355.279,19.227,19.131,19.227 +2149,55.299,224.825,549.051,316.642,387.215,228.652,542.295,119.526,146.479,119.526,341.076,320.351,356.607,19.135,19.408,19.135 +2150,55.331,237.581,555.424,302.549,381.165,240.079,548.642,110.225,147.771,110.225,343.038,319.374,357.495,18.767,18.739,18.767 +2151,55.365,250.235,560.273,287.004,377.344,251.506,553.173,100.154,149.172,100.154,344.239,318.652,358.665,22.537,18.822,22.537 +2152,55.397,264.822,561.992,271.153,375.883,264.895,555.445,90.637,150.642,90.637,346.145,317.417,359.241,22.132,18.902,22.132 +2153,55.430,282.796,561.108,255.373,378.611,282.045,555.755,82.017,151.543,82.017,347.453,316.617,358.264,23.333,19.013,23.333 +2154,55.462,297.322,557.420,238.600,382.200,295.704,552.484,71.853,153.435,71.853,348.812,314.838,359.200,21.408,18.783,21.408 +2155,55.494,312.571,550.311,222.943,388.969,310.167,545.841,61.736,155.433,61.736,348.796,314.236,358.947,23.004,18.917,23.004 +2156,55.527,325.426,541.149,209.126,398.481,322.761,537.740,51.981,157.100,51.981,350.746,312.917,359.399,24.551,18.583,24.551 +2157,55.558,336.579,530.163,197.348,409.050,333.352,527.229,42.274,159.201,42.274,351.539,312.386,360.261,25.427,18.515,25.427 +2158,55.589,345.590,518.002,187.993,421.480,341.883,515.600,32.939,161.102,32.939,351.824,311.461,360.659,25.627,18.428,25.627 +2159,55.621,352.338,505.625,180.997,435.116,347.951,503.672,23.997,162.897,23.997,351.205,310.775,360.809,25.739,19.483,25.739 +2160,55.652,355.022,495.274,175.855,446.989,350.550,494.047,15.344,165.590,15.344,352.566,310.693,361.841,20.016,21.711,20.016 +2161,55.685,357.996,483.019,173.151,460.535,352.689,482.358,7.098,166.608,7.098,351.021,310.510,361.716,19.221,20.938,19.221 +2162,55.717,360.977,470.470,172.615,472.166,353.336,470.557,179.344,167.005,179.344,346.172,310.531,361.455,18.953,20.237,18.953 +2163,55.750,364.171,458.651,172.990,483.460,352.357,460.308,172.018,166.535,172.018,337.828,310.697,361.687,18.739,19.491,18.739 +2164,55.783,425.227,430.270,175.292,496.179,349.915,449.636,165.579,165.809,165.579,205.902,310.424,361.424,17.737,19.858,17.737 +2165,55.816,392.332,422.976,178.410,504.623,346.820,440.415,159.034,166.619,159.034,262.990,310.417,360.468,17.786,19.778,17.786 +2166,55.849,370.650,417.759,182.586,514.115,342.841,432.118,152.692,167.362,152.692,297.430,310.655,360.025,17.873,20.023,17.873 +2167,55.882,356.629,412.823,187.851,522.723,338.566,425.247,145.480,168.789,145.480,314.989,310.845,358.836,21.784,19.937,21.784 +2168,55.913,344.246,408.667,193.455,530.223,333.009,418.133,139.890,170.789,139.890,328.508,311.205,357.894,20.288,19.209,20.288 +2169,55.945,334.205,404.629,200.150,537.582,326.925,412.086,134.314,173.157,134.314,335.877,310.969,356.719,18.913,19.460,18.913 +2170,55.975,326.423,399.441,207.380,544.915,320.417,406.940,128.694,176.711,128.694,337.494,311.520,356.710,19.217,21.516,19.217 +2171,56.006,318.251,395.972,214.500,550.000,313.894,402.584,123.381,0.000,123.381,339.732,311.000,355.569,19.121,22.000,19.121 +2172,56.037,318.251,395.972,214.500,550.000,313.894,402.584,123.381,0.000,123.381,339.732,311.000,355.569,19.121,22.000,19.121 +2173,56.069,310.601,392.392,221.899,554.762,307.089,398.956,118.146,3.279,118.146,340.246,312.633,355.136,19.094,23.228,19.094 +2174,56.100,303.130,389.912,229.717,558.425,300.421,396.240,113.171,6.654,113.171,340.080,312.779,353.847,18.894,24.550,18.894 +2175,56.132,295.810,387.602,237.420,561.447,293.692,394.053,108.178,10.136,108.178,339.608,313.824,353.189,19.158,26.271,19.158 +2176,56.165,288.681,385.945,245.245,563.499,287.169,392.260,103.468,14.323,103.468,339.598,314.610,352.587,18.960,26.820,18.960 +2177,56.197,281.444,386.026,252.150,565.550,280.553,391.772,98.820,18.435,98.820,340.528,317.493,352.157,18.946,26.247,18.946 +2178,56.229,274.474,385.845,259.656,567.301,274.028,391.666,94.375,23.263,94.375,340.764,318.420,352.439,18.324,25.964,18.324 +2179,56.260,267.500,386.000,267.218,568.018,267.500,392.009,90.000,27.242,90.000,340.000,319.788,352.018,17.000,26.083,17.000 +2180,56.292,261.073,387.154,274.902,567.805,261.519,392.737,85.438,31.318,85.438,339.952,320.732,351.154,18.489,25.264,18.489 +2181,56.323,254.991,388.322,282.656,566.870,255.839,393.613,80.895,35.331,80.895,339.919,321.547,350.635,19.438,24.020,19.438 +2182,56.355,248.953,390.122,290.310,565.513,250.120,394.899,76.273,39.375,76.273,340.722,321.539,350.556,20.333,23.228,20.333 +2183,56.387,242.600,391.300,298.725,562.760,244.350,396.551,71.565,43.186,71.565,338.680,322.177,349.749,21.187,20.122,21.187 +2184,56.417,236.081,392.819,305.916,560.256,238.752,399.076,66.886,47.121,66.886,335.610,322.796,349.216,22.253,19.733,22.253 +2185,56.448,227.042,394.657,312.516,557.593,231.615,402.816,60.734,51.407,60.734,330.436,323.591,349.141,21.742,19.653,21.742 +2186,56.480,199.136,365.328,319.391,553.729,227.008,405.610,55.320,55.322,55.320,250.769,323.945,348.739,20.957,18.709,20.957 +2187,56.512,203.255,390.506,325.918,548.960,219.654,411.221,51.633,59.534,51.633,295.063,323.631,347.903,18.131,18.760,18.131 +2188,56.544,206.411,404.673,332.581,543.181,215.943,414.485,45.830,63.979,45.830,319.804,323.777,347.165,24.080,18.928,24.080 +2189,56.574,203.467,413.758,338.574,536.272,210.623,419.746,39.920,68.350,39.920,327.153,323.300,345.815,25.481,19.228,25.481 +2190,56.605,203.467,413.758,338.574,536.272,210.623,419.746,39.920,68.350,39.920,327.153,323.300,345.815,25.481,19.228,25.481 +2191,56.635,199.274,420.745,344.908,528.028,205.867,425.251,34.346,72.933,34.346,329.597,322.762,345.568,25.581,20.050,25.581 +2192,56.668,194.984,428.530,350.571,518.984,201.255,431.906,28.301,77.381,28.301,331.260,321.926,345.505,25.737,21.425,25.737 +2193,56.701,190.328,436.931,355.336,508.669,197.053,439.621,21.801,81.754,21.801,330.723,321.324,345.211,25.626,22.705,25.626 +2194,56.734,185.868,449.313,359.236,497.483,192.768,451.192,15.234,85.986,15.234,331.263,320.318,345.564,19.034,23.399,19.034 +2195,56.766,182.950,460.272,361.926,485.509,190.523,461.329,7.943,90.367,7.943,330.910,319.077,346.201,18.656,24.217,18.656 +2196,56.800,181.514,471.321,363.134,472.601,190.050,471.391,0.466,95.102,0.466,329.103,318.945,346.176,18.178,24.776,18.178 +2197,56.832,181.762,483.509,363.064,459.355,190.492,482.371,172.569,99.752,172.569,330.591,319.287,348.199,19.056,25.439,19.056 +2198,56.865,183.495,496.057,359.915,445.483,192.333,493.585,164.373,104.162,164.373,330.334,318.702,348.689,19.840,23.198,19.840 +2199,56.896,186.558,508.362,355.100,431.700,195.918,504.171,155.879,108.435,155.879,329.288,318.758,349.799,19.452,21.503,19.452 +2200,56.927,189.300,522.823,348.273,418.616,201.446,515.078,147.475,113.009,147.475,322.514,318.940,351.325,19.771,20.325,19.771 +2201,56.961,190.675,539.940,340.033,407.258,208.351,524.674,139.185,117.408,139.185,306.100,318.901,352.811,19.643,21.010,19.643 +2202,56.992,189.319,565.680,328.710,396.548,216.227,533.252,129.685,119.795,129.685,269.789,317.780,354.063,17.307,20.044,17.307 +2203,57.025,194.340,595.018,316.960,388.120,226.425,541.229,120.816,122.845,120.816,230.480,317.009,355.744,17.779,18.207,17.779 +2204,57.056,234.554,556.723,303.291,380.531,238.269,547.413,111.755,123.845,111.755,338.145,318.411,358.193,18.597,20.031,18.597 +2205,57.088,248.365,560.763,288.309,376.619,250.168,552.125,101.790,126.491,101.790,341.546,316.986,359.194,21.374,19.735,21.374 +2206,57.120,262.563,562.909,273.018,375.229,262.808,555.062,91.784,130.601,91.784,344.425,317.044,360.126,23.331,18.114,23.331 +2207,57.151,278.287,561.938,257.168,376.655,277.386,555.332,82.235,134.436,82.235,346.205,316.152,359.540,23.555,17.973,23.555 +2208,57.183,295.752,558.345,240.285,380.999,293.947,552.482,72.884,138.234,72.884,347.094,315.318,359.362,21.310,18.144,21.310 +2209,57.214,311.222,550.843,224.356,387.954,308.882,546.350,62.492,141.866,62.492,348.927,314.806,359.058,22.435,18.466,22.435 +2210,57.246,325.063,541.917,210.216,397.260,322.066,538.011,52.492,145.365,52.492,349.665,314.014,359.511,24.348,18.954,24.348 +2211,57.277,336.461,530.783,197.824,408.032,332.869,527.476,42.626,148.678,42.626,350.743,313.193,360.507,25.332,19.221,25.332 +2212,57.308,345.365,518.067,188.157,420.744,341.671,515.660,33.081,152.171,33.081,352.055,312.753,360.873,25.524,19.814,25.524 +2213,57.340,351.785,504.816,181.436,436.146,348.425,503.334,23.789,154.968,23.789,352.462,311.424,359.807,26.368,20.164,26.368 +2214,57.371,351.785,504.816,181.436,436.146,348.425,503.334,23.789,154.968,23.789,352.462,311.424,359.807,26.368,20.164,26.368 +2215,57.401,355.135,494.724,176.288,449.735,351.223,493.686,14.865,158.629,14.865,352.617,311.278,360.712,20.053,20.042,20.053 +2216,57.434,359.248,481.724,173.038,461.625,352.940,481.036,6.218,162.997,6.218,349.202,311.000,361.892,19.194,21.449,19.194 +2217,57.465,358.929,468.485,172.500,474.000,352.863,468.699,177.979,165.964,177.979,348.736,311.416,360.875,19.165,20.616,19.165 +2218,57.497,412.164,446.521,173.754,487.216,351.747,456.788,170.356,168.207,170.356,238.586,310.502,361.151,17.978,18.610,17.978 +2219,57.530,384.761,434.556,176.810,499.170,348.909,445.705,162.726,171.870,162.726,285.333,309.854,360.425,17.782,18.950,17.782 +2220,57.562,365.456,426.561,181.049,510.065,345.101,436.245,154.556,175.073,154.556,314.629,309.868,359.711,21.803,19.067,21.803 +2221,57.593,353.078,419.124,186.505,520.139,339.935,427.361,147.926,178.122,147.926,327.534,309.555,358.555,20.224,19.121,20.224 +2222,57.624,342.828,412.658,193.000,529.000,334.295,419.493,141.305,0.000,141.305,335.614,310.000,357.480,19.671,20.000,19.671 +2223,57.654,333.500,407.000,199.994,537.111,327.721,412.779,135.000,3.180,135.000,340.118,310.743,356.465,19.092,20.746,19.092 +2224,57.684,325.421,401.359,207.464,544.375,320.815,407.062,128.928,5.545,128.928,341.426,311.226,356.088,19.239,22.786,19.239 +2225,57.716,317.322,396.671,215.176,550.320,313.621,402.335,123.165,7.958,123.165,341.933,311.839,355.465,18.956,23.417,18.956 +2226,57.748,309.425,392.521,223.197,555.466,306.272,398.583,117.481,10.784,117.481,341.366,312.758,355.032,18.959,24.979,18.959 +2227,57.780,301.459,389.588,231.746,559.481,298.963,395.777,111.957,13.548,111.957,340.580,313.614,353.926,19.011,25.558,19.011 +2228,57.811,293.352,387.254,240.237,562.137,291.525,393.392,106.577,15.333,106.577,339.920,314.520,352.729,19.160,26.708,19.160 +2229,57.842,285.423,385.682,248.604,564.280,284.206,391.721,101.391,17.210,101.391,340.061,316.020,352.382,18.895,27.025,18.895 +2230,57.873,277.378,385.598,256.892,566.493,276.710,391.609,96.340,19.692,96.340,339.908,316.697,352.005,18.332,26.313,18.332 +2231,57.903,277.378,385.598,256.892,566.493,276.710,391.609,96.340,19.692,96.340,339.908,316.697,352.005,18.332,26.313,18.332 +2232,57.933,269.882,385.913,265.485,567.983,269.737,391.955,91.375,22.233,91.375,340.070,317.418,352.158,18.075,26.398,18.075 +2233,57.966,262.294,386.177,273.588,567.305,262.678,392.062,86.269,24.322,86.269,339.366,319.950,351.163,18.135,25.916,18.135 +2234,57.998,255.471,387.539,281.825,566.389,256.314,393.057,81.309,25.914,81.309,339.231,321.124,350.394,19.292,25.154,19.292 +2235,58.031,248.591,389.596,290.468,565.062,249.866,394.751,76.103,27.332,76.103,339.535,322.055,350.155,20.355,24.395,20.355 +2236,58.063,241.921,391.872,298.768,562.926,243.688,396.996,70.974,28.551,70.974,338.802,322.743,349.642,21.320,23.859,21.320 +2237,58.095,235.035,394.153,307.185,559.177,237.336,399.311,65.963,29.745,65.963,337.614,323.235,348.908,22.811,22.698,22.811 +2238,58.126,228.558,397.750,315.154,555.736,231.402,402.768,60.461,30.296,60.461,337.221,323.775,348.754,23.143,22.342,23.143 +2239,58.158,221.818,401.173,322.974,550.342,225.507,406.460,55.098,30.426,55.098,334.650,324.493,347.541,23.841,21.092,23.841 +2240,58.189,215.116,405.097,330.673,544.820,220.203,411.100,49.720,29.701,49.720,331.135,324.472,346.872,24.490,20.223,24.490 +2241,58.220,207.835,409.167,337.409,538.671,214.634,415.881,44.637,27.876,44.637,328.163,324.503,347.274,26.310,19.374,26.310 +2242,58.251,198.258,413.814,343.458,531.678,208.981,422.062,37.569,25.570,37.569,319.793,325.161,346.848,25.120,19.595,25.120 +2243,58.283,186.457,418.407,349.847,523.769,204.082,428.948,30.883,22.601,30.883,306.465,324.307,347.538,24.654,20.252,24.654 +2244,58.314,173.960,423.086,354.757,515.323,200.403,435.385,24.944,18.875,24.944,289.012,324.185,347.338,22.752,20.259,22.752 +2245,58.344,160.313,429.526,358.984,506.063,197.171,442.031,18.741,14.485,18.741,269.771,324.529,347.614,21.662,20.220,21.662 +2246,58.374,139.482,438.021,362.269,495.924,193.889,451.971,14.381,9.689,14.381,235.708,324.355,348.042,17.734,19.426,17.734 +2247,58.405,139.482,438.021,362.269,495.924,193.889,451.971,14.381,9.689,14.381,235.708,324.355,348.042,17.734,19.426,17.734 +2248,58.434,111.754,449.807,364.559,485.194,191.897,460.736,7.765,4.196,7.765,186.997,324.183,348.767,17.520,19.488,17.520 +2249,58.467,107.535,468.424,365.499,474.470,191.231,469.843,0.971,178.854,0.971,181.228,323.275,348.644,17.099,19.196,17.099 +2250,58.499,110.016,487.826,365.023,461.667,191.262,479.421,174.094,172.215,174.094,185.973,324.315,349.331,17.150,19.680,17.150 +2251,58.532,113.312,508.097,362.954,448.818,192.463,489.351,166.675,165.859,166.675,187.804,323.541,350.485,17.183,19.868,17.183 +2252,58.563,119.575,528.394,358.818,436.020,195.046,499.367,158.962,159.291,158.962,189.469,323.154,351.192,17.231,20.328,17.231 +2253,58.595,132.191,546.226,353.078,423.652,199.027,509.303,151.082,152.808,151.082,199.809,322.480,352.521,17.402,19.397,17.402 +2254,58.626,176.030,541.355,345.644,412.457,205.149,519.668,143.322,146.049,143.322,280.817,321.737,353.433,18.283,18.463,18.283 +2255,58.656,197.125,544.146,336.075,401.857,212.390,528.785,134.819,139.059,134.819,311.121,320.512,354.433,18.568,18.248,18.568 +2256,58.687,211.854,550.076,324.510,392.101,221.367,536.995,126.027,132.248,126.027,323.347,319.250,355.695,18.527,18.751,18.527 +2257,58.719,227.095,553.034,311.327,384.238,231.723,543.910,116.899,126.069,116.899,336.362,318.791,356.822,18.689,19.050,18.689 +2258,58.751,240.652,559.273,296.325,379.247,243.578,550.097,107.684,119.946,107.684,338.335,316.187,357.598,19.138,19.308,19.138 +2259,58.785,254.009,562.679,281.156,375.613,255.208,553.388,97.352,114.624,97.352,340.532,315.673,359.267,22.715,20.340,22.715 +2260,58.817,269.030,564.218,265.411,374.904,268.667,555.113,87.717,110.556,87.717,342.167,315.309,360.391,22.862,19.429,22.862 +2261,58.849,287.500,561.500,249.231,377.760,286.020,554.099,78.690,107.335,78.690,345.164,313.069,360.259,22.749,18.496,22.749 +2262,58.880,303.117,556.468,233.159,382.413,300.442,549.684,68.482,103.968,68.482,345.997,313.114,360.583,21.780,18.192,21.780 +2263,58.910,317.517,548.376,218.055,389.914,314.046,542.719,58.473,100.886,58.473,347.613,312.391,360.887,23.079,18.205,23.079 +2264,58.941,330.149,538.169,205.143,400.021,326.268,533.758,48.659,98.297,48.659,349.083,311.703,360.834,24.600,18.224,24.600 +2265,58.972,340.988,527.287,194.228,411.723,336.215,523.397,39.174,95.711,39.174,348.913,311.049,361.229,25.611,18.309,25.611 +2266,59.002,340.988,527.287,194.228,411.723,336.215,523.397,39.174,95.711,39.174,348.913,311.049,361.229,25.611,18.309,25.611 +2267,59.032,349.588,513.916,186.243,424.721,344.496,511.041,29.451,93.892,29.451,348.793,311.505,360.489,25.774,18.963,25.774 +2268,59.066,355.081,500.591,180.440,439.028,350.182,498.770,20.391,91.685,20.391,349.390,310.189,359.843,25.916,18.757,25.916 +2269,59.098,357.593,490.045,176.419,452.463,352.648,489.030,11.592,89.384,11.592,349.869,311.111,359.965,19.391,19.580,19.391 +2270,59.131,359.425,476.884,174.196,466.458,354.024,476.590,3.113,86.547,3.113,349.408,310.306,360.226,18.740,18.647,18.740 +2271,59.163,358.432,463.729,174.673,480.187,353.564,464.161,174.934,84.369,174.934,349.442,311.336,359.215,19.064,19.329,19.064 +2272,59.195,355.956,451.010,176.526,492.713,351.460,452.056,166.908,81.941,166.908,349.963,311.828,359.194,22.017,18.891,22.017 +2273,59.225,352.303,440.472,179.654,504.659,348.092,442.041,159.571,79.351,159.571,350.413,312.246,359.402,20.157,18.765,20.157 +2274,59.257,347.359,430.817,183.887,515.567,343.289,432.944,152.412,77.062,152.412,349.897,312.851,359.083,19.842,19.598,19.842 +2275,59.288,341.710,422.117,189.408,525.470,337.888,424.734,145.592,74.476,145.592,349.587,313.732,358.851,19.326,19.699,19.326 +2276,59.319,335.133,414.266,195.860,534.063,331.687,417.251,139.108,72.181,139.108,349.177,314.339,358.294,19.249,19.891,19.249 +2277,59.351,327.873,407.958,203.079,541.735,324.923,411.147,132.773,69.796,132.773,348.513,315.529,357.203,19.344,19.685,19.344 +2278,59.382,320.704,402.148,211.131,548.686,318.034,405.696,126.962,67.238,126.962,348.188,317.532,357.067,18.624,20.474,18.624 +2279,59.414,313.217,397.617,218.710,553.735,310.920,401.407,121.218,64.983,121.218,347.262,316.922,356.127,18.788,20.963,18.788 +2280,59.444,305.479,394.052,226.296,558.049,303.589,397.996,115.610,62.580,115.610,346.729,317.126,355.476,18.810,20.276,18.810 +2281,59.475,297.872,391.168,234.336,561.807,296.256,395.569,110.163,60.124,110.163,345.412,317.766,354.788,18.943,20.884,18.943 +2282,59.506,290.527,389.558,242.644,564.594,289.408,393.684,105.173,57.740,105.173,345.831,318.617,354.382,19.041,21.459,19.041 +2283,59.537,290.527,389.558,242.644,564.594,289.408,393.684,105.173,57.740,105.173,345.831,318.617,354.382,19.041,21.459,19.041 +2284,59.566,282.594,388.154,249.923,567.385,281.761,392.985,99.782,56.310,99.782,344.741,318.953,354.546,18.758,22.743,18.758 +2285,59.598,275.047,387.074,258.457,568.674,274.563,392.694,94.921,54.513,94.921,342.145,319.681,353.427,18.092,22.972,18.092 +2286,59.629,267.500,386.500,268.009,568.231,267.500,392.116,90.000,52.696,90.000,341.000,320.445,352.231,17.000,21.780,17.000 +2287,59.660,260.291,387.201,276.108,568.180,260.812,392.930,84.806,50.607,84.806,340.324,320.985,351.830,18.469,21.905,18.469 +2288,59.691,253.420,388.146,284.620,566.947,254.466,393.946,79.778,48.262,79.778,339.427,321.128,351.214,19.650,20.279,19.650 +2289,59.723,246.696,390.132,293.676,564.809,248.178,395.538,74.671,46.296,74.671,339.345,321.891,350.556,20.640,20.779,20.640 +2290,59.756,239.713,391.981,301.364,562.609,241.945,397.960,69.528,44.599,69.528,337.300,322.482,350.065,21.810,20.946,21.810 +2291,59.786,232.939,394.980,310.065,558.690,235.730,400.750,64.186,42.397,64.186,336.282,322.943,349.099,22.643,19.618,22.643 +2292,59.818,225.736,397.768,318.037,554.555,229.683,404.266,58.727,40.746,58.727,333.429,323.546,348.636,23.386,20.164,23.386 +2293,59.851,217.822,401.516,325.621,549.105,223.035,408.358,52.696,38.774,52.696,331.051,324.373,348.253,24.090,19.043,24.090 +2294,59.882,208.346,406.633,332.789,543.452,216.125,414.511,45.358,36.983,45.358,325.298,324.999,347.440,24.085,18.925,24.085 +2295,59.913,196.836,407.812,339.831,536.242,211.090,419.460,39.256,35.012,39.256,310.356,325.237,347.171,22.747,18.642,22.747 +2296,59.943,139.464,382.205,347.001,528.239,205.255,428.037,34.862,33.371,34.862,186.804,324.800,347.166,18.006,19.091,18.006 +2297,59.974,172.107,420.094,352.530,518.037,200.185,435.239,28.342,32.250,28.342,282.975,325.958,346.780,18.200,18.948,18.200 +2298,60.005,172.107,420.094,352.530,518.037,200.185,435.239,28.342,32.250,28.342,282.975,325.958,346.780,18.200,18.948,18.200 +2299,60.038,182.859,438.290,357.809,507.124,196.288,443.589,21.535,30.446,21.535,318.259,326.316,347.134,18.420,21.599,18.420 +2300,60.070,182.905,450.413,361.254,496.161,193.148,452.998,14.167,28.912,14.167,325.988,326.141,347.115,18.676,21.141,18.676 +2301,60.100,181.782,462.013,364.240,483.908,191.545,463.118,6.459,27.616,6.459,328.224,325.225,347.876,19.236,21.717,19.236 +2302,60.133,181.921,473.445,365.369,470.764,191.130,473.285,179.004,26.453,179.004,330.089,324.234,348.511,18.136,21.906,18.136 +2303,60.165,183.620,485.776,363.879,457.811,191.196,484.480,170.293,25.346,170.293,334.043,323.443,349.415,20.673,20.691,20.673 +2304,60.196,187.082,498.727,360.477,444.631,193.509,496.616,161.822,24.829,161.822,336.177,322.808,349.706,19.980,20.738,19.980 +2305,60.227,192.310,510.654,355.307,430.451,197.932,507.803,153.104,23.106,153.104,338.080,321.836,350.687,20.034,20.480,20.034 +2306,60.258,198.592,522.234,347.094,417.497,203.516,518.705,144.372,22.178,144.372,339.202,321.044,351.317,19.169,20.243,19.169 +2307,60.289,207.371,532.360,336.562,406.120,210.756,529.034,135.504,21.351,135.504,342.276,319.781,351.767,18.873,19.000,18.873 +2308,60.320,217.799,542.492,324.148,395.782,220.636,538.574,125.910,20.472,125.910,343.052,318.002,352.728,19.299,19.124,19.299 +2309,60.350,229.966,550.756,309.700,387.842,232.021,546.519,115.877,19.592,115.877,343.920,316.962,353.338,18.901,18.587,18.901 +2310,60.382,243.673,557.124,294.069,381.696,244.967,552.616,106.015,19.058,106.015,346.286,315.625,355.665,19.108,18.698,19.108 +2311,60.413,257.097,560.509,277.350,378.450,257.569,555.666,95.572,18.435,95.572,346.865,314.014,356.598,22.770,18.341,22.770 +2312,60.445,275.661,561.224,260.476,378.109,275.381,556.487,86.614,18.034,86.614,348.402,312.770,357.894,23.491,18.354,23.491 +2313,60.475,289.293,558.815,243.643,380.704,288.170,554.272,76.118,17.592,76.118,349.001,312.125,358.362,22.568,18.018,22.568 +2314,60.506,305.396,553.194,227.970,386.222,303.572,549.037,66.309,17.103,66.309,349.864,310.628,358.943,21.856,17.939,21.856 +2315,60.537,305.396,553.194,227.970,386.222,303.572,549.037,66.309,17.103,66.309,349.864,310.628,358.943,21.856,17.939,21.856 +2316,60.567,319.858,545.966,214.072,393.617,316.868,541.444,56.529,16.587,56.529,349.171,309.661,360.012,23.860,18.760,23.860 +2317,60.598,332.125,536.314,201.733,402.972,328.114,532.020,46.961,16.179,46.961,349.396,309.076,361.148,24.855,19.066,24.855 +2318,60.631,342.877,526.015,192.303,413.867,337.366,521.729,37.875,14.970,37.875,347.490,308.169,361.454,25.610,19.538,25.610 +2319,60.661,351.204,514.492,184.022,425.821,343.996,510.529,28.803,13.476,28.803,345.537,308.479,361.988,23.825,20.874,23.825 +2320,60.692,357.389,504.614,178.909,438.305,348.522,501.312,20.429,10.954,20.429,342.954,308.659,361.877,19.721,20.332,19.721 +2321,60.726,373.940,495.009,175.374,450.436,351.769,490.112,12.456,7.686,12.456,316.190,309.725,361.601,19.204,19.378,19.204 +2322,60.757,430.317,485.480,172.721,463.267,352.935,478.323,5.284,4.622,5.284,206.247,308.419,361.670,18.004,18.646,18.004 +2323,60.790,420.694,465.440,172.095,475.688,352.620,467.871,177.955,1.637,177.955,225.142,308.331,361.378,17.632,19.364,17.632 +2324,60.820,389.644,451.588,173.998,486.363,352.205,457.490,171.042,179.278,171.042,285.256,308.165,361.059,17.732,19.591,17.732 +2325,60.852,374.724,440.863,176.023,496.497,349.616,447.904,164.335,177.297,164.335,308.379,308.789,360.531,18.080,19.763,18.080 +2326,60.886,367.733,430.226,179.805,506.562,346.518,439.231,156.999,176.203,156.999,313.443,308.979,359.537,21.059,19.479,21.059 +2327,60.917,358.468,421.834,184.200,515.872,342.397,430.856,150.690,175.845,150.690,322.267,309.927,359.127,20.606,18.818,20.606 +2328,60.949,349.081,415.028,189.307,524.069,337.397,423.292,144.728,176.239,144.728,329.573,309.778,358.195,19.455,19.376,19.455 +2329,60.979,339.248,410.065,195.127,532.695,331.469,416.881,138.774,176.698,138.774,337.056,310.695,357.740,19.183,19.871,19.183 +2330,61.009,331.616,404.416,202.018,539.592,325.396,411.062,133.105,178.238,133.105,338.093,310.345,356.297,19.040,20.436,19.040 +2331,61.039,331.616,404.416,202.018,539.592,325.396,411.062,133.105,178.238,133.105,338.093,310.345,356.297,19.040,20.436,19.040 +2332,61.070,324.081,399.368,209.000,546.000,319.101,405.847,127.546,0.000,127.546,340.094,310.000,356.437,18.819,22.000,18.819 +2333,61.101,316.539,395.418,216.478,551.145,312.619,401.628,122.259,1.998,122.259,340.819,311.473,355.506,19.029,22.219,19.029 +2334,61.133,309.129,391.859,223.525,555.595,305.812,398.335,117.126,3.576,117.126,340.410,312.266,354.962,19.062,23.579,19.062 +2335,61.167,301.878,389.059,231.245,559.147,299.220,395.613,112.073,5.498,112.073,340.039,312.923,354.184,19.089,24.603,19.089 +2336,61.198,294.557,387.174,238.623,562.279,292.421,394.018,107.329,7.722,107.329,338.957,313.504,353.297,18.895,24.740,18.895 +2337,61.230,287.510,385.839,246.250,564.391,285.981,392.663,102.633,10.176,102.633,338.532,314.740,352.520,18.860,25.061,18.860 +2338,61.261,280.282,384.759,254.130,565.902,279.339,391.489,97.978,12.236,97.978,338.855,315.627,352.446,18.805,26.245,18.805 +2339,61.292,273.235,384.797,261.748,567.398,272.810,391.633,93.559,15.709,93.559,338.528,316.742,352.226,18.085,25.450,18.085 +2340,61.328,266.394,385.543,268.924,567.759,266.506,392.354,89.061,18.277,89.061,337.217,318.422,350.842,17.916,25.708,17.916 +2341,61.372,260.020,386.280,276.925,567.198,260.603,392.492,84.632,20.674,84.632,338.456,318.352,350.934,18.589,25.561,18.589 +2342,61.404,253.851,387.963,284.165,566.277,254.804,393.425,80.096,23.334,80.096,339.561,320.132,350.652,19.546,24.828,19.546 +2343,61.437,247.747,389.713,291.526,565.075,249.162,395.176,75.483,25.602,75.483,338.904,321.159,350.190,20.468,24.556,20.468 +2344,61.476,235.526,394.090,306.716,559.816,237.888,399.454,66.233,31.159,66.233,337.277,323.108,349.001,22.569,22.627,22.569 +2345,61.507,235.526,394.090,306.716,559.816,237.888,399.454,66.233,31.159,66.233,337.277,323.108,349.001,22.569,22.627,22.569 +2346,61.537,229.232,396.922,314.505,556.009,232.249,402.407,61.189,33.986,61.189,335.941,323.648,348.460,23.088,21.568,23.088 +2347,61.568,222.766,399.821,321.485,551.844,226.817,405.859,56.143,36.460,56.143,333.402,324.223,347.943,23.588,20.245,23.588 +2348,61.599,213.353,403.412,328.319,547.107,220.117,411.304,49.399,39.066,49.399,326.263,324.852,347.052,24.079,19.466,24.079 +2349,61.631,195.966,397.090,334.656,541.698,215.204,415.344,43.497,41.595,43.497,294.204,325.123,347.245,21.882,18.816,21.882 +2350,61.661,183.657,401.704,341.155,535.350,209.091,422.855,39.746,44.552,39.746,280.780,324.613,346.940,18.178,18.732,18.178 +2351,61.692,193.132,421.334,347.202,527.177,204.159,428.760,33.959,47.806,33.959,320.654,324.761,347.242,18.789,19.062,18.789 +2352,61.723,192.942,428.433,352.146,518.287,201.333,432.832,27.663,50.981,27.663,327.549,324.262,346.497,25.592,20.040,25.592 +2353,61.756,189.448,438.134,356.339,508.520,196.820,440.969,21.038,53.797,21.038,330.476,324.013,346.272,25.057,19.433,25.057 +2354,61.787,185.899,450.509,360.085,497.268,192.884,452.307,14.436,57.155,14.436,331.835,323.326,346.261,19.119,21.397,19.119 +2355,61.817,184.271,461.758,362.837,485.151,190.920,462.562,6.892,60.018,6.892,333.375,322.121,346.771,19.070,23.220,19.070 +2356,61.849,183.980,472.383,363.399,472.558,190.186,472.354,179.727,63.122,179.727,334.010,321.561,346.421,18.043,23.912,18.043 +2357,61.879,184.560,484.511,362.453,459.392,190.497,483.636,171.621,66.448,171.621,335.305,320.138,347.307,19.058,24.680,19.058 +2358,61.910,186.610,496.691,359.715,445.471,192.561,494.918,163.413,69.887,163.413,336.210,319.531,348.628,19.657,24.957,19.657 +2359,61.940,189.953,508.469,354.815,431.852,196.224,505.534,154.916,73.465,154.916,335.895,318.001,349.743,19.193,24.775,19.193 +2360,61.970,189.953,508.469,354.815,431.852,196.224,505.534,154.916,73.465,154.916,335.895,318.001,349.743,19.193,24.775,19.193 +2361,62.000,196.115,520.423,347.997,419.643,201.851,516.600,146.310,76.569,146.310,336.980,314.587,350.766,19.692,24.490,19.692 +2362,62.033,202.825,532.448,339.894,410.283,208.799,526.980,137.534,80.018,137.534,334.791,308.238,350.988,19.605,24.748,19.605 +2363,62.064,211.270,544.115,328.633,403.892,216.536,537.523,128.622,84.560,128.622,331.871,299.217,348.744,19.528,23.276,19.528 +2364,62.095,222.781,553.998,314.572,396.529,226.872,546.693,119.249,88.831,119.249,330.994,295.347,347.738,19.509,21.526,19.509 +2365,62.126,234.468,567.064,299.133,390.008,239.356,553.428,109.722,90.725,109.722,319.043,294.090,348.013,19.218,19.404,19.218 +2366,62.157,247.749,592.173,283.236,383.431,254.368,556.920,100.633,92.231,100.633,279.933,299.630,351.672,22.360,18.778,22.360 +2367,62.187,264.993,593.491,267.895,376.930,265.132,555.971,90.213,93.627,90.213,283.061,311.277,358.101,23.037,18.814,23.037 +2368,62.220,280.830,564.648,252.490,377.429,279.386,555.348,81.172,94.010,81.172,341.056,310.411,359.878,23.188,20.017,23.188 +2369,62.252,297.127,560.140,237.519,380.784,294.485,551.862,72.295,96.221,72.295,343.220,311.063,360.599,20.573,19.067,20.573 +2370,62.284,311.987,552.209,223.956,386.753,308.727,545.930,62.567,99.866,62.567,346.517,312.226,360.666,22.927,18.162,22.927 +2371,62.317,325.185,543.478,210.919,395.274,321.145,538.114,53.013,102.758,53.013,347.396,312.266,360.825,24.276,17.887,24.276 +2372,62.347,336.217,532.773,199.245,405.709,331.598,528.357,43.713,105.662,43.713,348.063,312.231,360.843,24.933,18.313,24.933 +2373,62.379,345.190,520.921,190.450,417.831,340.593,517.754,34.574,109.179,34.574,349.497,312.464,360.661,25.603,18.644,25.603 +2374,62.409,351.533,508.330,183.769,430.944,347.220,506.244,25.811,112.596,25.811,350.279,312.694,359.861,25.771,20.172,25.771 +2375,62.439,351.533,508.330,183.769,430.944,347.220,506.244,25.811,112.596,25.811,350.279,312.694,359.861,25.771,20.172,25.771 +2376,62.470,355.670,495.671,178.582,443.994,351.464,494.352,17.405,115.514,17.405,351.240,312.730,360.058,25.539,20.244,25.539 +2377,62.501,357.386,486.110,175.265,457.694,353.199,485.433,9.184,118.752,9.184,351.679,313.163,360.161,19.330,20.296,19.330 +2378,62.533,357.555,474.201,173.413,470.362,353.696,474.109,1.375,121.373,1.375,352.922,313.343,360.642,18.659,20.033,18.659 +2379,62.565,357.209,462.322,173.477,482.324,352.915,462.788,173.801,124.160,173.801,352.358,313.436,360.997,19.473,19.771,19.473 +2380,62.595,354.753,451.393,174.966,493.853,350.709,452.365,166.487,127.107,166.487,352.824,313.811,361.143,20.456,19.000,20.456 +2381,62.626,351.021,441.484,178.142,504.282,347.608,442.741,159.786,129.920,159.786,353.309,313.943,360.585,19.856,19.361,19.856 +2382,62.657,347.360,432.740,182.404,513.832,343.974,434.447,153.241,132.628,153.241,352.434,313.829,360.019,19.179,19.782,19.179 +2383,62.687,344.245,423.293,186.724,522.218,339.046,426.664,147.041,135.670,147.041,347.193,314.699,359.585,19.501,18.954,19.501 +2384,62.719,346.506,410.019,191.786,529.925,333.869,420.177,141.207,137.936,141.207,326.573,314.340,359.000,18.818,18.143,18.818 +2385,62.752,383.859,359.830,197.641,536.772,327.605,413.638,136.273,140.276,136.273,202.371,313.948,358.061,17.720,19.566,17.720 +2386,62.784,344.884,381.948,203.880,542.840,321.756,408.502,131.055,143.130,131.055,287.013,314.400,357.442,17.806,19.600,17.806 +2387,62.815,329.158,386.596,210.333,547.486,316.516,404.410,125.362,145.561,125.362,312.576,314.057,356.264,19.256,18.992,19.256 +2388,62.846,318.789,386.732,216.785,551.457,310.647,400.556,120.497,148.055,120.497,323.229,314.176,355.318,19.628,19.477,19.628 +2389,62.877,310.169,386.042,223.944,555.403,304.497,397.700,115.942,150.141,115.942,328.172,314.315,354.102,19.443,19.915,19.443 +2390,62.907,302.494,384.681,230.581,558.599,298.341,395.214,111.520,152.152,111.520,331.059,314.573,353.704,18.958,20.453,18.958 +2391,62.937,302.494,384.681,230.581,558.599,298.341,395.214,111.520,152.152,111.520,331.059,314.573,353.704,18.958,20.453,18.958 +2392,62.968,295.224,384.146,237.983,561.572,292.332,393.545,107.103,154.622,107.103,333.493,314.453,353.161,19.042,21.615,19.042 +2393,63.000,288.588,383.094,244.687,563.594,286.468,392.326,102.935,156.689,102.935,333.607,315.143,352.550,18.924,22.242,18.924 +2394,63.033,281.999,382.962,251.740,565.113,280.667,391.602,98.761,158.654,98.761,334.300,315.167,351.785,19.096,22.739,19.096 +2395,63.065,275.489,383.086,258.611,566.210,274.766,391.428,94.953,160.346,94.953,334.300,315.416,351.048,18.019,23.678,18.019 +2396,63.095,269.374,382.523,265.669,566.718,269.226,391.324,90.960,162.553,90.960,333.255,315.935,350.859,18.025,24.940,18.025 +2397,63.126,263.297,383.352,272.417,566.703,263.741,391.744,86.967,164.358,86.967,333.539,316.353,350.347,18.186,25.384,18.186 +2398,63.157,257.470,384.196,279.294,566.176,258.483,392.424,82.983,165.964,82.983,333.407,316.751,349.987,18.995,25.224,18.995 +2399,63.189,251.736,385.357,286.018,565.337,253.321,393.511,78.996,167.508,78.996,333.204,317.259,349.817,19.905,25.151,19.905 +2400,63.219,246.087,387.070,292.892,563.540,248.213,394.927,74.854,169.114,74.854,332.581,317.679,348.859,20.684,25.268,20.684 +2401,63.251,240.498,389.351,299.866,561.712,243.096,396.774,70.710,170.334,70.710,333.135,318.441,348.865,21.662,24.943,21.662 +2402,63.282,234.927,391.620,306.440,559.080,238.087,398.880,66.482,171.870,66.482,332.499,318.481,348.336,22.346,25.739,22.346 +2403,63.313,229.230,394.409,313.483,556.368,233.103,401.694,62.003,172.711,62.003,332.109,319.386,348.610,22.890,25.190,22.890 +2404,63.343,223.473,397.838,320.287,552.612,228.098,405.053,57.339,173.720,57.339,330.815,320.248,347.956,23.508,24.783,23.508 +2405,63.373,223.473,397.838,320.287,552.612,228.098,405.053,57.339,173.720,57.339,330.815,320.248,347.956,23.508,24.783,23.508 +2406,63.404,217.803,401.769,326.846,548.101,223.005,408.579,52.624,174.508,52.624,330.682,320.694,347.821,24.226,24.100,24.226 +2407,63.436,211.706,406.270,333.245,543.026,217.829,412.949,47.490,175.373,47.490,329.631,321.377,347.753,24.879,24.314,24.879 +2408,63.468,206.359,411.067,339.410,536.733,213.344,417.501,42.647,175.932,42.647,328.014,321.752,347.008,25.318,23.128,25.318 +2409,63.501,200.472,416.383,345.529,529.932,208.826,422.769,37.396,176.186,37.396,326.342,322.218,347.373,25.988,22.683,25.988 +2410,63.533,194.074,423.544,350.845,522.177,203.835,429.401,30.964,176.186,30.964,324.818,322.817,347.586,25.896,22.284,25.896 +2411,63.564,188.079,430.331,355.821,513.540,200.005,435.944,25.201,175.840,25.201,321.690,323.038,348.051,25.761,21.616,25.761 +2412,63.595,181.361,440.245,359.509,504.105,195.768,445.517,20.100,174.892,20.100,317.125,323.108,347.806,20.384,20.867,20.384 +2413,63.626,175.421,449.325,362.582,493.696,193.191,453.750,13.981,173.290,13.981,311.423,323.942,348.048,20.144,20.447,20.144 +2414,63.656,168.600,459.700,364.477,482.369,191.565,462.571,7.125,170.181,7.125,301.777,323.707,348.065,18.605,20.257,18.605 +2415,63.687,162.473,470.760,365.179,471.619,191.076,470.992,0.466,166.931,0.466,290.999,324.026,348.205,17.365,20.004,17.365 +2416,63.718,155.655,483.879,364.806,459.875,191.230,479.892,173.606,162.737,173.606,277.855,323.634,349.451,17.348,19.902,17.348 +2417,63.753,149.439,499.428,362.737,448.358,192.365,489.163,166.551,157.751,166.551,262.110,323.437,350.382,17.274,20.152,17.274 +2418,63.785,139.728,519.292,359.289,436.696,194.795,498.751,159.544,152.281,159.544,234.071,322.994,351.618,17.252,19.985,17.252 +2419,63.817,129.901,544.258,353.870,425.307,198.361,508.015,152.103,145.949,152.103,197.345,322.276,352.268,17.208,20.445,17.208 +2420,63.848,137.866,563.718,346.935,414.341,203.323,517.170,144.583,139.399,144.583,192.619,321.599,353.259,17.241,19.741,17.241 +2421,63.879,151.350,580.442,338.310,404.425,209.452,526.029,136.878,132.089,136.878,195.149,319.990,354.353,17.483,19.175,17.483 +2422,63.909,168.324,594.074,327.998,395.474,217.116,533.926,129.049,124.326,129.049,199.855,318.215,354.754,17.498,19.471,17.498 +2423,63.939,168.324,594.074,327.998,395.474,217.116,533.926,129.049,124.326,129.049,199.855,318.215,354.754,17.498,19.471,17.498 +2424,63.974,211.229,605.655,304.185,382.126,236.068,546.976,112.944,107.241,112.944,229.284,316.159,356.724,17.881,19.398,17.881 +2425,64.004,211.229,605.655,304.185,382.126,236.068,546.976,112.944,107.241,112.944,229.284,316.159,356.724,17.881,19.398,17.881 +2426,64.035,233.731,601.838,291.227,377.885,246.732,551.733,104.545,98.455,104.545,255.371,314.571,358.901,19.291,19.074,19.291 +2427,64.069,253.057,591.665,277.198,376.120,256.990,554.495,96.041,88.409,96.041,284.270,312.130,359.024,22.194,18.215,22.194 +2428,64.101,270.703,583.987,264.160,376.387,270.162,555.740,88.903,78.453,88.903,302.366,309.879,358.870,19.073,18.721,19.073 +2429,64.133,283.300,573.830,250.668,377.976,280.060,555.448,80.005,66.114,80.005,322.429,309.181,359.760,22.130,20.468,22.130 +2430,64.166,297.185,563.465,238.180,381.392,293.862,552.548,73.072,54.224,73.072,337.082,308.381,359.906,20.880,20.688,20.880 +2431,64.197,307.933,554.796,226.382,387.029,305.028,548.511,65.199,42.274,65.199,345.306,307.075,359.154,21.416,21.458,21.416 +2432,64.227,318.132,547.530,216.491,391.717,315.072,542.647,57.926,29.055,57.926,348.955,308.092,360.481,23.048,20.591,23.048 +2433,64.258,326.810,539.877,207.083,398.702,323.864,536.248,50.926,15.566,50.926,351.433,308.538,360.782,24.034,20.202,24.034 +2434,64.288,334.550,532.286,199.053,407.323,331.632,529.445,44.236,1.802,44.236,352.221,308.540,360.367,24.794,18.473,24.794 +2435,64.318,341.579,524.355,192.523,415.437,338.177,521.733,37.617,167.878,37.617,351.918,310.661,360.509,25.427,18.762,25.427 +2436,64.349,346.902,516.071,187.226,423.436,343.259,513.844,31.440,154.134,31.440,352.025,311.363,360.565,25.789,18.760,25.789 +2437,64.380,351.043,507.746,183.334,432.023,347.591,506.088,25.659,140.818,25.659,352.601,312.476,360.261,25.628,19.591,25.628 +2438,64.411,354.589,499.652,179.900,439.800,350.577,498.186,20.080,126.870,20.080,352.151,312.600,360.695,26.156,19.600,26.156 +2439,64.441,355.928,494.887,177.897,447.601,351.817,493.795,14.876,113.268,14.876,351.393,312.651,359.901,19.571,20.422,19.571 +2440,64.472,358.074,487.580,176.362,454.993,353.543,486.782,9.995,99.772,9.995,350.815,312.220,360.017,19.229,20.772,19.229 +2441,64.504,358.074,487.580,176.362,454.993,353.543,486.782,9.995,99.772,9.995,350.815,312.220,360.017,19.229,20.772,19.229 +2442,64.533,359.045,480.529,175.096,461.788,353.986,480.045,5.471,86.086,5.471,349.466,311.052,359.631,19.062,20.331,19.062 +2443,64.565,359.507,473.693,174.487,468.380,354.235,473.571,1.322,72.188,1.322,349.092,310.906,359.640,19.479,20.994,19.479 +2444,64.597,359.615,467.659,173.799,474.699,353.966,467.902,177.532,58.352,177.532,349.279,310.464,360.586,18.853,20.758,18.853 +2445,64.627,358.951,462.276,173.393,480.598,352.971,462.907,173.980,44.865,173.980,348.862,309.712,360.888,18.996,21.631,18.996 +2446,64.658,358.579,456.546,174.471,484.770,352.584,457.524,170.732,31.390,170.732,348.206,308.887,360.353,20.747,21.920,20.747 +2447,64.690,361.725,451.916,175.056,488.733,351.978,453.985,168.011,17.479,168.011,340.632,308.711,360.561,19.503,22.186,19.503 +2448,64.720,368.583,446.152,175.243,493.609,350.650,450.830,165.379,3.576,165.379,323.983,308.960,361.050,20.025,19.524,20.025 +2449,64.753,406.670,430.979,176.031,496.971,349.679,447.741,163.610,169.500,163.610,242.155,310.280,360.965,18.284,19.813,18.284 +2450,64.785,356.600,443.300,176.846,500.260,348.992,445.836,161.565,155.524,161.565,345.004,311.843,361.044,18.657,19.188,18.657 +2451,64.817,352.269,441.592,177.690,502.743,348.107,443.096,160.133,141.927,160.133,352.239,313.120,361.089,19.932,20.310,19.932 +2452,64.848,351.385,440.092,178.235,504.519,347.442,441.604,159.015,127.807,159.015,352.584,313.814,361.030,19.684,19.343,19.684 +2453,64.879,350.579,438.939,178.816,505.861,346.899,440.407,158.241,113.875,158.241,352.818,314.458,360.742,19.878,19.068,19.878 +2454,64.909,350.215,438.351,179.501,506.675,346.900,439.704,157.797,99.904,157.797,353.428,314.199,360.588,19.783,18.858,19.783 +2455,64.939,350.898,437.819,179.920,506.859,346.887,439.469,157.645,85.806,157.645,351.429,313.212,360.101,19.750,19.275,19.750 +2456,64.970,350.898,437.819,179.920,506.859,346.887,439.469,157.645,85.806,157.645,351.429,313.212,360.101,19.750,19.275,19.750 +2457,65.001,351.610,437.818,180.372,505.874,347.251,439.595,157.818,71.274,157.818,349.686,312.435,359.102,19.788,19.535,19.788 +2458,65.035,352.382,438.203,180.074,505.602,347.391,440.190,158.292,56.944,158.292,348.547,311.815,359.290,20.079,20.514,20.079 +2459,65.068,352.889,439.327,178.729,503.369,347.783,441.278,159.087,42.868,159.087,349.227,309.867,360.160,20.277,21.334,20.277 +2460,65.100,355.089,440.632,177.760,501.258,348.392,443.047,160.168,29.335,160.168,346.282,309.463,360.521,19.940,22.299,19.940 +2461,65.132,359.550,441.650,177.118,498.335,349.203,445.099,161.565,15.024,161.565,338.364,309.329,360.177,19.922,21.398,19.922 +2462,65.164,368.537,441.919,176.133,496.428,349.792,447.604,163.129,2.139,163.129,321.530,308.383,360.707,20.269,20.417,20.269 +2463,65.196,422.701,431.687,174.988,493.812,350.421,450.542,165.379,169.216,165.379,211.950,309.904,361.348,18.006,19.927,18.006 +2464,65.226,357.499,452.273,174.357,490.274,351.250,453.678,167.326,157.256,167.326,348.414,311.375,361.224,18.733,21.506,18.733 +2465,65.257,356.010,456.240,174.040,487.279,352.245,456.908,169.939,145.257,169.939,353.893,311.549,361.541,19.629,21.391,19.629 +2466,65.287,356.759,461.014,173.559,482.000,353.018,461.467,173.089,131.798,173.089,353.714,312.493,361.251,18.922,19.289,18.922 +2467,65.319,357.964,466.393,173.423,476.458,353.412,466.658,176.658,118.811,176.658,351.387,312.941,360.508,18.793,19.496,18.793 +2468,65.350,358.503,472.534,174.015,469.643,354.001,472.509,0.326,105.507,0.326,350.994,312.768,359.998,18.142,19.768,18.142 +2469,65.381,359.385,478.976,175.155,462.546,354.436,478.590,4.463,92.279,4.463,350.043,311.549,359.971,18.879,20.118,18.879 +2470,65.413,359.007,486.111,175.816,454.438,353.508,485.239,9.009,78.944,9.009,349.513,311.037,360.647,19.031,19.978,19.031 +2471,65.443,357.093,493.680,177.315,446.321,351.859,492.384,13.908,65.649,13.908,350.213,310.189,360.998,19.173,20.824,19.173 +2472,65.473,357.093,493.680,177.315,446.321,351.859,492.384,13.908,65.649,13.908,350.213,310.189,360.998,19.173,20.824,19.173 +2473,65.504,356.151,501.896,184.488,445.257,352.717,500.707,19.103,53.069,19.103,346.956,294.195,354.223,19.516,21.974,19.516 +2474,65.535,357.045,508.594,188.927,436.387,351.256,505.955,24.507,39.773,24.507,340.399,290.516,353.125,25.825,20.690,25.825 +2475,65.567,361.525,526.595,187.016,421.903,341.909,515.205,30.141,25.850,30.141,316.234,308.609,361.600,18.970,20.015,18.970 +2476,65.599,343.393,523.395,191.731,414.965,338.812,520.019,36.384,12.552,36.384,350.072,308.149,361.454,25.762,17.640,25.762 +2477,65.630,335.227,532.097,198.992,407.425,332.063,529.060,43.831,179.219,43.831,351.691,308.135,360.463,24.931,17.412,24.931 +2478,65.660,328.223,539.127,207.322,400.263,325.481,535.852,50.064,165.693,50.064,351.086,309.971,359.628,24.073,18.177,24.073 +2479,65.692,319.454,546.096,216.678,392.748,316.831,542.075,56.889,152.335,56.889,349.976,311.814,359.576,22.870,18.467,22.870 +2480,65.723,310.146,552.194,227.280,386.542,307.706,547.251,63.726,138.930,63.726,348.391,313.163,359.415,22.156,17.577,22.156 +2481,65.754,299.180,557.749,237.505,381.221,297.027,551.499,70.994,125.655,70.994,347.539,313.410,360.760,21.137,18.353,21.137 +2482,65.786,288.458,561.194,247.758,377.885,286.930,553.908,78.155,112.118,78.155,345.739,312.018,360.630,21.579,19.024,21.579 +2483,65.818,277.674,564.648,258.906,376.105,276.930,555.473,85.365,98.666,85.365,342.067,312.385,360.477,22.251,20.801,22.251 +2484,65.852,260.991,613.508,270.198,388.199,261.887,561.561,90.988,87.630,90.988,243.050,286.252,346.960,22.100,18.350,22.100 +2485,65.882,251.813,567.357,284.919,389.021,252.993,559.707,98.768,75.784,98.768,331.636,285.747,347.116,21.669,20.667,21.669 +2486,65.913,243.347,557.980,300.650,390.527,244.029,555.652,106.314,59.478,106.314,343.914,284.583,348.764,19.242,24.898,19.242 +2487,65.943,233.798,552.489,304.659,382.857,236.057,547.242,113.289,45.731,113.289,344.802,312.070,356.228,18.954,25.743,18.954 +2488,65.974,224.683,547.607,315.830,386.932,228.005,541.890,120.162,32.754,120.162,342.988,314.241,356.211,19.305,26.028,19.305 +2489,66.006,224.683,547.607,315.830,386.932,228.005,541.890,120.162,32.754,120.162,342.988,314.241,356.211,19.305,26.028,19.305 +2490,66.035,216.950,541.589,324.518,395.949,219.750,537.841,126.757,19.418,126.757,343.397,315.903,352.754,19.650,19.520,19.650 +2491,66.074,201.843,529.316,341.751,408.915,207.889,524.142,139.443,173.188,139.443,337.331,320.500,353.247,18.913,19.212,18.913 +2492,66.117,196.182,522.542,347.977,415.936,203.520,517.456,145.275,159.980,145.275,335.262,322.604,353.117,18.969,20.671,18.969 +2493,66.150,128.908,549.530,352.567,422.233,199.699,510.268,150.986,147.706,150.986,190.862,322.354,352.764,17.417,19.837,17.417 +2494,66.182,175.923,513.800,355.802,429.808,196.774,504.475,155.903,134.721,155.903,305.626,322.444,351.308,20.780,20.475,20.780 +2495,66.215,181.319,502.297,358.367,437.816,193.887,497.933,160.849,122.347,160.849,323.590,321.735,350.199,19.759,22.444,19.759 +2496,66.250,183.234,494.652,361.251,445.597,192.744,492.129,165.141,108.825,165.141,329.933,320.415,349.610,20.436,25.083,20.436 +2497,66.281,182.746,487.591,362.098,453.230,190.911,486.102,169.667,96.254,169.667,332.013,319.130,348.613,19.583,24.701,19.583 +2498,66.312,182.439,481.451,362.860,460.238,190.095,480.601,173.660,83.660,173.660,332.509,318.926,347.914,18.663,24.847,18.663 +2499,66.342,183.893,475.548,363.482,466.948,190.189,475.274,177.510,70.560,177.510,334.380,319.729,346.982,18.287,24.351,18.287 +2500,66.372,183.893,475.548,363.482,466.948,190.189,475.274,177.510,70.560,177.510,334.380,319.729,346.982,18.287,24.351,18.287 +2501,66.402,184.005,471.084,363.427,472.983,190.189,471.154,0.644,57.995,0.644,334.125,321.179,346.495,18.257,22.790,18.257 +2502,66.435,183.599,466.850,363.657,478.365,190.294,467.254,3.451,45.390,3.451,334.021,322.491,347.435,18.690,20.876,18.690 +2503,66.470,182.694,463.100,363.569,482.638,190.723,463.918,5.821,34.061,5.821,331.563,323.956,347.705,19.124,22.100,19.124 +2504,66.504,181.678,459.413,364.470,485.302,191.844,460.914,8.403,21.413,8.403,328.121,324.271,348.674,18.650,23.877,18.650 +2505,66.535,112.338,445.579,364.438,486.832,192.259,459.182,9.660,10.620,9.660,186.614,324.409,348.755,17.598,19.535,17.598 +2506,66.568,162.769,451.850,363.982,488.333,192.638,457.523,10.755,179.108,10.755,287.359,324.132,348.166,18.112,20.282,18.112 +2507,66.599,176.106,452.323,363.534,489.807,192.762,455.926,12.207,168.009,12.207,314.066,324.064,348.150,18.993,21.503,18.993 +2508,66.631,180.285,452.728,363.000,491.500,192.726,455.485,12.496,155.095,12.496,322.578,323.511,348.065,18.977,22.999,18.977 +2509,66.661,181.880,452.227,362.704,492.119,192.968,454.749,12.817,142.125,12.817,324.852,322.670,347.594,19.326,24.207,19.326 +2510,66.692,182.876,452.202,361.757,492.715,192.517,454.427,12.995,128.517,12.995,327.246,322.502,347.033,19.338,25.101,19.338 +2511,66.724,183.333,452.726,361.451,492.439,192.214,454.772,12.973,114.775,12.973,328.521,320.859,346.748,18.888,25.493,18.888 +2512,66.757,183.936,452.602,361.000,492.000,192.010,454.458,12.941,101.310,12.941,329.643,320.846,346.211,19.492,25.103,19.492 +2513,66.788,184.487,454.662,360.973,491.001,191.463,456.114,11.755,87.917,11.755,331.873,320.370,346.125,18.517,24.039,18.517 +2514,66.819,184.766,456.581,361.760,489.785,191.604,457.863,10.620,74.197,10.620,332.334,321.159,346.248,18.797,23.983,18.797 +2515,66.852,184.856,458.777,362.198,488.057,191.060,459.770,9.090,60.945,9.090,334.347,321.981,346.915,18.880,22.631,18.880 +2516,66.885,184.224,461.228,362.836,485.288,190.865,462.067,7.199,47.797,7.199,333.664,323.092,347.052,19.237,21.096,19.237 +2517,66.915,182.648,464.323,363.712,481.985,190.807,465.044,5.052,35.049,5.052,331.068,324.091,347.450,18.899,21.126,18.899 +2518,66.946,181.111,468.105,364.643,478.369,190.805,468.552,2.643,22.319,2.643,328.804,324.236,348.213,18.857,22.961,18.857 +2519,66.977,180.011,471.856,364.801,472.057,190.895,471.903,0.247,8.817,0.247,326.044,325.177,347.811,17.668,19.813,17.668 +2520,67.008,109.784,480.451,365.469,466.040,191.132,476.104,176.941,176.114,176.941,186.322,323.952,349.251,17.326,19.547,17.326 +2521,67.038,109.784,480.451,365.469,466.040,191.132,476.104,176.941,176.114,176.941,186.322,323.952,349.251,17.326,19.547,17.326 +2522,67.070,152.159,485.321,364.610,459.186,191.131,480.644,173.157,163.481,173.157,271.095,323.859,349.600,17.514,20.330,17.514 +2523,67.102,169.041,490.850,363.405,452.430,191.764,486.538,169.254,150.900,169.254,303.725,323.533,349.981,19.513,21.012,19.513 +2524,67.135,175.727,497.086,361.766,446.088,192.904,492.491,165.023,138.853,165.023,314.674,322.384,350.236,19.961,22.181,19.961 +2525,67.169,180.934,503.068,359.403,439.384,194.290,498.361,160.585,126.027,160.585,322.335,322.171,350.657,19.365,23.012,19.365 +2526,67.201,185.505,509.818,354.980,430.927,196.177,504.978,155.606,113.552,155.606,326.983,319.974,350.420,20.290,21.296,20.290 +2527,67.232,190.402,515.993,350.653,423.146,198.951,511.184,150.642,100.840,150.642,331.144,318.135,350.762,19.338,21.482,19.338 +2528,67.264,195.548,522.736,346.493,415.965,202.899,517.647,145.305,87.979,145.305,334.000,316.474,351.881,19.290,23.350,19.290 +2529,67.296,201.151,529.271,341.119,408.708,207.470,523.930,139.794,75.379,139.794,336.360,316.790,352.905,18.921,24.864,18.921 +2530,67.326,207.995,534.995,333.797,401.583,212.699,530.099,133.854,62.418,133.854,339.570,316.704,353.148,18.593,25.876,18.593 +2531,67.357,215.584,541.362,325.527,394.978,219.225,536.609,127.451,49.939,127.451,342.178,317.399,354.154,19.171,25.257,19.171 +2532,67.388,223.307,547.091,317.672,388.643,226.668,541.522,121.109,38.073,121.109,342.815,315.823,355.823,18.925,24.771,18.925 +2533,67.420,232.206,552.045,307.119,385.756,234.357,547.286,114.326,25.880,114.326,343.879,315.806,354.324,19.061,20.355,19.061 +2534,67.452,241.743,556.444,296.882,382.511,243.247,551.694,107.571,12.995,107.571,344.999,315.853,354.962,19.003,17.989,19.003 +2535,67.483,252.724,559.733,286.001,379.357,253.685,554.691,100.795,0.409,100.795,346.299,316.056,356.566,21.190,17.800,21.190 +2536,67.516,261.498,560.891,274.943,377.233,261.793,555.497,93.129,167.883,93.129,346.630,316.738,357.433,21.460,18.262,21.460 +2537,67.547,274.509,562.025,263.449,376.888,274.200,556.049,87.036,155.353,87.036,346.985,316.050,358.954,22.074,18.435,22.074 +2538,67.577,285.906,560.871,251.186,378.060,284.754,554.631,79.535,142.755,79.535,346.771,316.204,359.461,21.559,18.075,21.559 +2539,67.608,297.481,558.192,238.726,380.693,295.465,551.999,71.966,130.486,71.966,347.886,315.319,360.912,21.185,19.107,21.185 +2540,67.638,297.481,558.192,238.726,380.693,295.465,551.999,71.966,130.486,71.966,347.886,315.319,360.912,21.185,19.107,21.185 +2541,67.669,309.280,553.166,227.396,385.473,306.514,547.405,64.359,117.801,64.359,347.663,314.376,360.444,22.358,17.997,22.358 +2542,67.702,320.133,547.796,216.265,391.204,316.234,541.771,57.095,104.910,57.095,347.088,312.673,361.441,23.459,18.686,23.459 +2543,67.735,328.763,539.779,206.420,398.497,324.731,534.972,50.003,92.304,50.003,348.642,309.755,361.190,24.040,18.278,24.040 +2544,67.768,337.573,532.274,197.842,406.786,332.500,527.550,42.960,80.218,42.960,347.827,309.231,361.691,24.890,18.656,24.890 +2545,67.799,344.607,523.667,190.751,415.298,338.836,519.460,36.091,68.318,36.091,347.762,309.372,362.047,25.738,18.507,25.738 +2546,67.831,350.668,514.586,186.077,425.615,344.724,511.216,29.552,56.310,29.552,346.792,307.304,360.456,25.550,21.633,25.550 +2547,67.863,355.613,505.409,182.095,434.894,348.864,502.532,23.085,45.164,23.085,345.197,304.075,359.870,25.848,22.327,25.848 +2548,67.894,359.204,499.281,177.503,443.614,350.359,496.603,16.846,35.304,16.846,343.107,306.518,361.589,19.256,21.711,19.256 +2549,67.924,365.303,490.176,175.323,452.857,352.506,487.748,10.743,26.354,10.743,335.113,306.364,361.163,19.735,21.029,19.735 +2550,67.955,372.719,480.817,173.279,462.588,353.109,479.156,4.840,17.908,4.840,321.812,307.650,361.173,19.185,20.502,19.185 +2551,67.987,379.032,470.069,172.596,472.251,353.313,470.248,179.602,10.389,179.602,310.013,308.049,361.453,17.708,19.656,17.708 +2552,68.022,384.909,458.984,173.167,480.964,352.768,462.280,174.144,3.778,174.144,296.521,308.978,361.139,17.804,19.900,17.804 +2553,68.056,388.348,447.324,174.337,489.191,351.550,454.539,168.906,177.553,168.906,286.140,309.316,361.137,17.779,19.777,17.779 +2554,68.088,388.681,436.109,176.068,497.313,349.524,447.361,163.968,172.278,163.968,279.527,309.725,361.010,17.974,20.121,17.974 +2555,68.121,389.820,424.448,178.362,504.615,347.066,440.814,159.053,167.525,159.053,269.170,310.432,360.728,17.854,19.951,17.854 +2556,68.153,387.248,414.120,181.119,511.403,344.034,434.698,154.537,163.487,154.537,264.409,310.722,360.135,17.885,19.854,17.885 +2557,68.186,381.445,405.882,184.287,517.531,340.949,429.167,150.101,160.080,150.101,266.292,311.503,359.717,17.923,19.800,17.923 +2558,68.217,372.298,400.663,187.712,523.391,337.508,424.161,145.963,157.496,145.963,275.383,311.933,359.349,17.875,20.087,17.875 +2559,68.249,361.495,398.039,191.475,528.653,333.925,419.701,141.843,155.511,141.843,288.523,312.501,358.647,17.861,19.544,17.861 +2560,68.280,352.526,395.205,195.558,533.480,330.133,415.252,138.164,154.470,138.164,298.136,312.729,358.248,17.867,19.987,17.867 +2561,68.310,340.451,397.309,199.728,537.936,326.422,411.941,133.796,154.299,133.796,316.714,312.715,357.256,19.616,19.616,19.616 +2562,68.341,334.035,395.437,204.252,541.898,322.750,408.684,130.426,154.967,130.426,321.696,312.873,356.500,19.510,19.703,19.510 +2563,68.372,334.035,395.437,204.252,541.898,322.750,408.684,130.426,154.967,130.426,321.696,312.873,356.500,19.510,19.703,19.510 +2564,68.402,327.169,393.734,208.567,545.782,318.417,405.480,126.690,156.125,126.690,326.980,312.929,356.277,19.733,19.458,19.733 +2565,68.434,321.183,392.101,213.178,548.979,314.259,402.592,123.425,157.865,123.425,330.572,313.433,355.712,19.046,19.876,19.046 +2566,68.467,315.476,390.729,218.249,552.697,309.914,400.307,120.147,160.346,120.147,333.475,313.196,355.627,18.888,20.987,18.888 +2567,68.499,310.036,389.805,223.014,555.046,305.766,398.166,117.051,163.301,117.051,335.929,313.401,354.704,19.063,21.168,19.063 +2568,68.531,305.584,388.609,227.579,557.824,301.864,396.894,114.179,166.350,114.179,336.311,313.141,354.475,19.027,22.448,19.027 +2569,68.562,300.965,387.538,232.276,559.792,297.919,395.393,111.194,169.479,111.194,337.172,314.030,354.022,19.123,23.175,19.123 +2570,68.593,296.700,386.900,236.421,561.251,294.233,394.300,108.435,172.626,108.435,337.731,313.340,353.332,18.974,22.938,18.974 +2571,68.624,292.385,385.668,240.971,563.002,290.247,393.294,105.658,176.634,105.658,337.580,314.574,353.419,19.075,23.724,19.075 +2572,68.655,288.559,385.249,245.000,564.500,286.746,392.955,103.241,0.000,103.241,337.260,314.000,353.093,18.953,23.000,18.953 +2573,68.686,284.671,384.843,249.426,565.234,283.265,392.247,100.749,3.417,100.749,337.452,314.351,352.526,18.777,24.136,18.777 +2574,68.717,280.995,384.425,253.264,566.269,279.895,391.878,98.393,7.595,98.393,337.753,315.409,352.820,18.764,24.649,18.764 +2575,68.749,277.510,384.614,257.262,566.671,276.735,391.626,96.309,11.155,96.309,338.141,316.525,352.250,18.121,25.840,18.121 +2576,68.781,274.012,384.826,261.039,567.362,273.533,391.682,94.000,15.680,94.000,338.502,317.045,352.247,18.082,25.674,18.082 +2577,68.812,270.551,385.377,264.218,567.710,270.350,391.800,91.790,19.493,91.790,339.178,318.626,352.031,17.991,25.986,17.991 +2578,68.843,267.155,386.517,267.929,567.945,267.190,392.465,89.659,23.658,89.659,339.065,319.224,350.962,18.018,26.039,18.018 +2579,68.873,267.155,386.517,267.929,567.945,267.190,392.465,89.659,23.658,89.659,339.065,319.224,350.962,18.018,26.039,18.018 +2580,68.902,264.043,386.654,271.457,567.986,264.302,392.467,87.444,27.719,87.444,339.688,320.383,351.326,17.955,25.417,17.955 +2581,68.935,260.989,387.291,275.544,567.317,261.429,392.604,85.264,31.819,85.264,339.901,320.549,350.563,18.410,24.002,18.410 +2582,68.966,258.162,387.780,279.050,567.737,258.805,393.156,83.177,35.795,83.177,340.672,321.075,351.500,18.976,24.179,18.976 +2583,68.998,255.010,388.221,282.762,567.089,255.878,393.625,80.877,39.883,80.877,340.117,321.113,351.063,19.322,22.853,19.322 +2584,69.032,251.962,388.808,287.054,565.944,253.015,394.075,78.690,43.988,78.690,339.673,321.251,350.415,20.004,20.151,20.004 +2585,69.064,248.827,389.531,291.001,565.553,250.161,394.993,76.278,48.225,76.278,339.513,322.378,350.759,20.310,19.728,20.310 +2586,69.096,245.756,390.790,294.606,564.760,247.284,396.098,73.934,52.326,73.934,339.297,322.413,350.343,20.925,19.567,20.925 +2587,69.127,241.807,390.069,298.069,563.794,244.194,397.171,71.428,56.547,71.428,335.223,323.126,350.209,20.915,19.979,20.915 +2588,69.158,236.942,389.449,301.296,562.392,240.558,398.325,67.834,60.886,67.834,330.546,323.245,349.715,20.614,19.760,20.614 +2589,69.190,204.095,327.646,305.312,560.890,235.956,400.470,66.371,65.063,66.371,190.561,323.152,349.538,17.865,19.036,17.865 +2590,69.221,216.600,369.700,309.215,559.234,232.868,402.237,63.435,69.590,63.435,276.378,323.385,349.132,17.441,18.766,17.441 +2591,69.254,221.408,386.271,313.590,556.691,230.999,403.088,60.303,74.162,60.303,309.969,323.067,348.689,22.035,18.770,22.035 +2592,69.287,220.130,393.702,317.712,554.058,227.509,405.180,57.265,78.690,57.265,320.729,322.807,348.020,22.772,19.415,22.772 +2593,69.317,217.666,398.237,321.944,550.761,224.418,407.506,53.931,82.999,53.931,323.491,322.733,346.427,23.930,18.928,23.930 +2594,69.348,214.396,402.366,326.263,546.552,220.373,409.596,50.421,87.580,50.421,327.288,321.685,346.050,24.068,19.082,24.068 +2595,69.379,209.937,407.195,331.119,542.448,215.939,413.436,46.123,92.141,46.123,328.339,321.486,345.657,24.813,20.313,24.813 +2596,69.409,207.128,411.046,336.002,537.383,212.984,416.473,42.825,96.671,42.825,328.863,321.487,344.831,24.865,21.630,24.865 +2597,69.438,207.128,411.046,336.002,537.383,212.984,416.473,42.825,96.671,42.825,328.863,321.487,344.831,24.865,21.630,24.865 +2598,69.470,203.037,415.829,340.994,531.888,209.288,420.830,38.660,101.004,38.660,328.433,321.043,344.445,25.612,22.741,25.612 +2599,69.505,198.518,420.787,346.069,525.716,205.363,425.408,34.019,105.566,34.019,328.970,320.586,345.486,25.549,24.434,25.549 +2600,69.537,194.424,426.861,350.634,518.597,201.745,430.944,29.148,110.063,29.148,328.687,320.723,345.454,25.848,25.059,25.848 +2601,69.569,190.485,433.660,354.553,510.926,198.264,437.117,23.962,114.274,23.962,328.566,320.682,345.591,25.993,25.042,25.993 +2602,69.600,186.248,443.289,358.366,502.426,194.679,446.223,19.189,118.811,19.189,328.274,320.739,346.130,18.972,25.147,18.972 +2603,69.632,183.513,452.096,361.585,493.707,192.704,454.233,13.092,123.085,13.092,327.992,321.244,346.865,19.571,25.923,19.571 +2604,69.663,180.808,461.011,363.399,484.069,191.100,462.316,7.224,127.376,7.224,326.584,322.416,347.333,18.737,25.264,18.737 +2605,69.693,179.449,470.574,364.450,473.339,190.698,470.762,0.955,131.433,0.955,325.038,321.988,347.541,18.364,24.636,18.364 +2606,69.724,177.225,481.307,364.441,461.950,190.722,479.991,174.428,135.259,174.428,322.178,321.753,349.300,18.813,23.459,18.813 +2607,69.756,175.378,493.384,362.628,449.788,192.196,489.583,167.266,138.789,167.266,315.540,322.007,350.024,20.136,21.695,20.136 +2608,69.788,171.878,506.942,359.285,437.868,194.747,498.724,160.233,142.199,160.233,302.247,322.313,350.849,19.954,20.891,19.954 +2609,69.820,154.058,529.099,354.300,426.227,197.999,506.815,153.108,143.826,153.108,253.162,322.242,351.700,17.264,20.025,17.264 +2610,69.854,136.266,561.237,348.052,415.075,202.788,515.690,145.601,145.342,145.601,192.165,321.793,353.407,17.179,20.432,17.179 +2611,69.887,200.591,532.903,340.741,406.122,209.350,525.171,138.566,146.570,138.566,331.207,321.758,354.575,19.065,18.442,19.065 +2612,69.918,211.476,540.221,331.309,397.496,217.048,533.578,129.987,148.079,129.987,338.039,321.395,355.381,19.254,19.925,19.254 +2613,69.949,222.478,547.065,319.757,389.060,226.323,540.803,121.551,150.137,121.551,341.706,320.498,356.403,19.301,19.108,19.301 +2614,69.979,234.130,552.920,306.993,382.487,236.706,546.832,112.932,153.060,112.932,344.265,319.780,357.486,18.809,18.487,18.809 +2615,70.009,246.435,558.484,292.884,378.888,247.984,552.201,103.844,156.615,103.844,345.101,318.943,358.044,20.109,18.456,20.109 +2616,70.038,246.435,558.484,292.884,378.888,247.984,552.201,103.844,156.615,103.844,345.101,318.943,358.044,20.109,18.456,20.109 +2617,70.070,258.808,561.445,277.773,376.936,259.318,555.002,94.519,159.677,94.519,345.007,317.758,357.933,22.326,18.616,22.326 +2618,70.103,275.555,561.938,262.486,377.044,275.209,556.083,86.614,162.536,86.614,347.227,316.590,358.956,23.196,18.574,23.196 +2619,70.135,288.576,559.627,246.475,380.274,287.413,554.714,76.686,165.027,76.686,348.260,315.123,358.358,22.330,17.625,22.330 +2620,70.167,304.226,554.107,231.284,386.001,302.618,550.257,67.324,167.385,67.324,349.774,313.785,358.120,22.012,17.886,22.012 +2621,70.199,317.696,547.006,217.212,392.318,315.241,543.076,58.016,170.853,58.016,350.328,312.350,359.595,23.559,19.436,23.559 +2622,70.229,329.213,537.645,204.912,401.756,326.441,534.466,48.907,173.251,48.907,351.355,311.730,359.791,24.492,17.958,24.492 +2623,70.260,338.885,527.238,194.624,411.911,335.703,524.586,39.806,176.289,39.806,352.742,310.164,361.026,24.583,17.800,24.583 +2624,70.291,347.529,515.848,186.506,423.802,343.259,513.263,31.201,178.807,31.201,350.866,309.204,360.848,25.528,18.121,25.528 +2625,70.320,353.588,504.033,180.050,435.067,348.257,501.792,22.802,2.005,22.802,350.276,308.406,361.842,25.800,19.798,25.800 +2626,70.351,360.147,496.039,176.186,446.865,350.791,493.581,14.721,4.042,14.721,342.144,309.278,361.490,19.776,20.176,19.776 +2627,70.382,430.137,491.772,173.314,459.848,353.060,481.664,7.472,5.751,7.472,206.640,308.862,362.113,18.205,18.475,18.205 +2628,70.413,386.000,470.500,172.794,471.554,353.397,470.500,0.000,8.584,0.000,296.000,309.196,361.206,17.000,19.142,17.000 +2629,70.443,369.607,458.572,173.817,482.840,352.792,460.805,172.435,10.823,172.435,326.709,309.065,360.635,19.431,20.092,19.431 +2630,70.473,369.607,458.572,173.817,482.840,352.792,460.805,172.435,10.823,172.435,326.709,309.065,360.635,19.431,20.092,19.431 +2631,70.503,362.869,447.883,176.219,492.906,351.231,450.873,165.591,13.083,165.591,335.902,309.032,359.934,20.313,20.846,20.313 +2632,70.535,357.817,437.836,179.041,503.344,347.874,441.604,159.242,14.931,159.242,338.244,309.324,359.510,20.089,20.484,20.089 +2633,70.566,352.097,429.679,182.921,512.612,344.164,433.696,153.146,16.858,153.146,341.222,309.757,359.006,20.045,22.389,20.045 +2634,70.597,346.271,422.486,187.417,521.239,339.711,426.685,147.381,18.296,147.381,342.906,310.216,358.484,19.844,23.177,19.844 +2635,70.628,339.820,416.337,192.633,528.514,334.979,420.108,142.087,19.904,142.087,345.557,310.466,357.830,18.851,24.398,18.851 +2636,70.658,334.117,410.658,197.885,535.277,329.678,414.823,136.828,22.510,136.828,344.885,311.234,357.060,19.511,24.768,19.511 +2637,70.689,328.357,405.575,203.527,540.786,324.449,409.912,132.020,23.443,132.020,344.667,312.520,356.344,19.184,25.526,19.184 +2638,70.722,322.506,401.188,209.295,546.378,319.017,405.739,127.476,25.388,127.476,345.272,313.167,356.740,18.756,25.449,18.756 +2639,70.760,316.556,397.711,215.055,550.901,313.420,402.532,123.046,26.787,123.046,344.516,313.940,356.017,18.662,25.290,18.662 +2640,70.791,310.786,394.606,220.879,554.831,307.971,399.709,118.887,27.759,118.887,344.132,314.472,355.788,18.568,25.337,18.568 +2641,70.822,304.962,392.291,226.803,558.029,302.630,397.350,114.744,28.610,114.744,344.188,315.564,355.330,18.843,24.980,18.843 +2642,70.855,299.320,390.477,232.589,560.846,297.351,395.635,110.894,29.914,110.894,343.844,316.421,354.886,18.886,25.172,18.886 +2643,70.887,293.847,389.027,238.574,563.044,292.260,394.168,107.148,30.964,107.148,343.635,317.615,354.396,18.990,24.867,18.990 +2644,70.919,288.428,388.018,243.994,564.809,287.176,393.206,103.563,32.005,103.563,343.212,318.211,353.888,18.905,24.698,18.905 +2645,70.949,283.232,386.834,250.177,566.444,282.234,392.483,100.021,32.681,100.021,342.299,318.145,353.771,18.781,24.917,18.781 +2646,70.979,277.997,386.529,255.794,567.560,277.335,392.155,96.710,33.774,96.710,342.111,318.681,353.441,18.344,24.360,18.344 +2647,71.009,272.889,386.349,261.189,567.998,272.562,391.997,93.311,34.494,93.311,341.413,320.347,352.728,18.300,24.630,18.300 +2648,71.039,272.889,386.349,261.189,567.998,272.562,391.997,93.311,34.494,93.311,341.413,320.347,352.728,18.300,24.630,18.300 +2649,71.069,268.000,386.500,266.960,568.428,268.000,392.214,90.000,35.172,90.000,341.000,320.397,352.428,18.000,25.302,18.000 +2650,71.101,263.092,387.165,272.669,568.175,263.394,392.499,86.755,35.683,86.755,341.153,320.722,351.839,18.126,25.365,18.126 +2651,71.133,258.628,387.712,278.336,567.728,259.241,393.129,83.541,35.808,83.541,340.373,321.075,351.277,18.936,24.526,18.936 +2652,71.165,254.231,388.390,283.812,567.067,255.150,393.734,80.248,35.800,80.248,340.523,321.527,351.367,19.665,24.534,19.665 +2653,71.195,249.567,389.804,289.557,565.343,250.685,394.576,76.817,35.824,76.817,340.461,322.336,350.263,19.912,24.239,19.912 +2654,71.226,245.363,391.075,295.273,563.909,246.791,395.909,73.540,35.331,73.540,339.623,322.601,349.705,20.837,23.514,20.837 +2655,71.257,240.941,392.562,300.372,562.485,242.724,397.508,70.174,34.244,70.174,338.987,322.866,349.501,21.573,22.832,21.573 +2656,71.288,236.697,394.484,305.970,560.046,238.639,399.030,66.871,33.111,66.871,339.156,323.391,349.043,22.390,22.178,22.390 +2657,71.318,231.898,396.055,311.216,557.519,234.434,401.087,63.255,31.535,63.255,337.230,323.631,348.499,22.129,22.548,22.129 +2658,71.349,227.656,398.201,316.786,554.380,230.544,403.140,59.681,29.358,59.681,336.740,324.226,348.182,23.090,22.770,23.090 +2659,71.380,222.981,400.349,322.300,550.900,226.555,405.671,56.113,26.565,56.113,335.067,324.230,347.888,23.740,22.808,23.740 +2660,71.410,218.179,402.747,327.255,547.775,222.780,408.734,52.461,22.762,52.461,332.715,324.019,347.816,24.364,22.743,24.364 +2661,71.439,218.179,402.747,327.255,547.775,222.780,408.734,52.461,22.762,52.461,332.715,324.019,347.816,24.364,22.743,24.364 +2662,71.469,213.571,405.879,332.771,543.562,219.159,412.217,48.601,19.481,48.601,330.411,323.339,347.311,24.725,23.299,24.725 +2663,71.502,208.531,408.962,337.323,539.430,215.248,415.596,44.642,15.001,44.642,328.865,323.299,347.745,25.036,22.002,25.036 +2664,71.533,203.347,412.512,341.906,534.225,211.570,419.560,40.601,10.112,40.601,325.504,322.786,347.164,25.489,21.182,25.489 +2665,71.564,198.773,417.623,346.548,528.409,207.678,424.079,35.942,4.635,35.942,325.342,322.698,347.339,25.725,20.877,25.725 +2666,71.594,194.221,423.632,350.983,522.321,204.064,429.539,30.964,178.531,30.964,324.475,322.356,347.435,25.896,21.608,25.896 +2667,71.625,190.000,429.000,354.790,515.030,200.922,434.461,26.565,171.870,26.565,322.888,322.865,347.311,25.044,21.496,25.044 +2668,71.655,186.164,436.575,358.228,507.869,197.731,441.044,21.125,165.324,21.125,322.791,323.102,347.590,25.928,23.033,25.928 +2669,71.686,182.256,445.968,360.968,499.689,194.399,449.627,16.771,157.932,16.771,322.495,322.931,347.859,18.966,23.294,18.966 +2670,71.717,180.388,454.532,363.169,490.546,192.445,456.964,11.402,150.255,11.402,323.388,322.490,347.987,18.831,23.443,18.831 +2671,71.749,178.772,463.300,364.565,481.084,191.184,464.531,5.664,142.481,5.664,323.389,321.991,348.335,18.603,24.049,18.603 +2672,71.780,179.000,472.000,364.965,470.965,190.982,472.000,0.000,134.497,0.000,324.000,321.126,347.965,18.000,24.177,18.000 +2673,71.811,179.662,482.358,363.909,460.302,190.822,481.032,173.220,126.384,173.220,326.172,321.853,348.649,18.395,24.618,18.395 +2674,71.841,179.662,482.358,363.909,460.302,190.822,481.032,173.220,126.384,173.220,326.172,321.853,348.649,18.395,24.618,18.395 +2675,71.871,181.756,493.154,362.077,448.792,192.332,490.619,166.519,116.828,166.519,327.888,319.785,349.638,19.995,24.196,19.995 +2676,71.903,184.699,503.224,357.750,437.250,194.426,499.606,159.600,108.435,159.600,328.877,318.758,349.633,19.466,22.452,19.466 +2677,71.934,189.584,513.513,352.434,426.653,197.906,509.138,152.268,99.310,152.268,331.517,317.095,350.322,19.802,22.293,19.802 +2678,71.966,195.403,523.295,346.000,417.000,202.663,518.235,145.125,90.000,145.125,333.256,314.000,350.956,19.043,22.000,19.043 +2679,71.998,202.677,532.301,338.715,407.466,209.069,526.519,137.871,80.910,137.871,334.785,313.493,352.023,19.103,24.331,19.103 +2680,72.029,211.402,540.918,329.357,398.210,216.833,534.400,129.806,71.673,129.806,336.353,313.077,353.321,18.949,24.740,18.949 +2681,72.060,223.011,547.020,322.110,398.441,224.940,543.834,121.195,61.960,121.195,341.952,294.296,349.400,19.298,25.855,19.298 +2682,72.091,234.139,552.825,315.706,396.599,234.805,551.248,112.877,53.231,112.877,344.446,279.797,347.869,18.991,24.727,18.991 +2683,72.121,245.842,557.847,292.109,378.802,247.271,552.209,104.226,43.821,104.226,346.585,311.410,358.217,19.933,25.130,19.933 +2684,72.154,260.042,561.003,278.244,375.301,260.768,554.443,96.316,35.042,96.316,346.756,312.203,359.955,22.086,25.604,22.086 +2685,72.186,270.308,561.455,262.613,377.732,270.035,556.519,86.841,25.800,86.841,347.961,311.400,357.848,22.965,19.491,22.965 +2686,72.218,284.981,559.904,248.234,380.038,284.104,555.522,78.690,16.611,78.690,349.283,311.763,358.221,22.357,18.372,22.357 +2687,72.249,299.355,556.075,234.911,383.661,297.891,551.938,70.521,7.667,70.521,350.518,311.650,359.294,21.371,18.525,21.371 +2688,72.279,312.186,549.931,222.545,389.411,310.158,546.132,61.906,178.645,61.906,350.413,311.268,359.027,22.739,18.242,22.739 +2689,72.309,323.467,542.602,211.234,396.789,320.957,539.196,53.607,169.717,53.607,351.004,311.617,359.466,23.972,18.503,23.972 +2690,72.339,323.467,542.602,211.234,396.789,320.957,539.196,53.607,169.717,53.607,351.004,311.617,359.466,23.972,18.503,23.972 +2691,72.370,333.151,533.987,201.239,405.247,330.031,530.806,45.556,160.878,45.556,350.736,312.136,359.646,24.809,18.714,24.809 +2692,72.402,341.354,524.831,192.932,414.815,337.861,522.114,37.875,152.082,37.875,351.700,312.290,360.551,25.610,18.795,25.610 +2693,72.434,348.089,514.016,186.368,425.690,344.553,511.974,30.005,143.421,30.005,352.101,312.612,360.268,25.650,19.078,25.650 +2694,72.465,352.586,503.524,181.490,436.502,349.153,502.085,22.746,135.238,22.746,352.517,312.568,359.962,25.816,19.652,25.816 +2695,72.495,355.318,496.109,177.670,446.853,351.320,494.978,15.799,126.098,15.799,352.077,313.052,360.386,19.520,20.066,19.520 +2696,72.527,357.557,486.052,175.433,457.229,353.336,485.371,9.169,117.929,9.169,351.680,313.174,360.230,19.204,21.141,19.204 +2697,72.558,358.572,476.515,174.215,467.446,354.080,476.297,2.777,109.199,2.777,351.169,313.122,360.164,18.996,20.144,18.996 +2698,72.588,358.361,466.926,174.013,476.875,354.072,467.158,176.906,100.546,176.906,352.054,313.162,360.643,19.161,19.129,19.161 +2699,72.619,357.168,457.590,175.147,486.061,352.801,458.261,171.254,92.132,171.254,350.796,312.565,359.632,20.832,19.678,20.832 +2700,72.650,355.486,449.460,176.475,494.278,350.979,450.596,165.858,83.589,165.858,350.479,312.963,359.775,21.807,19.283,21.807 +2701,72.680,353.406,442.275,178.832,501.747,349.054,443.774,160.996,75.110,160.996,350.438,312.355,359.645,20.738,19.088,20.738 +2702,72.710,350.669,435.738,181.270,508.736,346.259,437.654,156.519,66.659,156.519,349.682,312.246,359.299,20.020,19.646,20.020 +2703,72.739,350.669,435.738,181.270,508.736,346.259,437.654,156.519,66.659,156.519,349.682,312.246,359.299,20.020,19.646,20.020 +2704,72.770,348.160,430.356,184.674,515.264,343.861,432.625,152.181,57.913,152.181,348.988,313.015,358.711,19.138,19.957,19.138 +2705,72.804,345.121,424.695,187.022,520.260,340.568,427.526,148.134,49.285,148.134,348.000,312.159,358.724,19.947,20.370,19.947 +2706,72.836,341.449,420.246,189.088,526.147,336.756,423.576,144.638,40.601,144.638,348.064,311.621,359.573,19.441,23.754,19.441 +2707,72.868,338.336,416.289,192.523,529.963,333.933,419.819,141.273,32.164,141.273,347.167,312.507,358.452,19.511,23.746,19.511 +2708,72.899,335.578,412.769,195.853,533.689,331.211,416.663,138.270,23.540,138.270,346.120,312.241,357.821,19.505,24.145,19.505 +2709,72.930,333.320,408.360,199.280,536.432,328.503,413.094,135.495,14.257,135.495,343.727,311.678,357.234,19.195,23.118,19.195 +2710,72.961,330.820,405.106,202.121,539.635,325.564,410.724,133.091,5.057,133.091,341.555,311.614,356.942,18.681,22.082,18.681 +2711,72.991,329.680,401.311,204.480,542.201,323.185,408.846,130.764,176.186,130.764,337.126,311.974,357.023,19.562,20.820,19.562 +2712,73.023,327.838,398.186,206.615,543.738,320.779,406.956,128.830,166.759,128.830,333.759,312.696,356.274,19.095,19.812,19.095 +2713,73.055,327.000,394.500,208.463,545.410,318.705,405.560,126.870,157.681,126.870,328.400,313.301,356.050,19.800,19.320,19.800 +2714,73.087,327.437,389.294,210.137,547.223,316.673,404.460,125.362,148.392,125.362,318.969,314.196,356.163,19.625,19.130,19.625 +2715,73.118,331.056,379.101,212.000,549.069,314.554,403.103,124.509,138.674,124.509,298.509,314.851,356.764,17.614,19.422,17.614 +2716,73.150,349.448,346.776,213.701,550.428,312.861,402.211,123.425,129.531,123.425,223.809,315.993,356.650,17.861,19.552,17.861 +2717,73.181,321.097,387.503,214.820,551.605,312.140,401.880,121.921,120.165,121.921,323.204,317.797,357.082,18.256,19.287,18.256 +2718,73.211,313.749,396.939,215.717,552.697,310.924,401.600,121.218,111.168,121.218,346.226,318.277,357.127,18.218,19.373,18.218 +2719,73.242,312.669,397.411,217.865,553.893,310.359,401.295,120.745,101.889,120.745,347.832,318.338,356.870,18.537,20.704,18.537 +2720,73.272,312.669,397.411,217.865,553.893,310.359,401.295,120.745,101.889,120.745,347.832,318.338,356.870,18.537,20.704,18.537 +2721,73.302,311.764,397.404,217.958,554.498,309.601,401.112,120.256,92.551,120.256,348.751,317.665,357.336,18.715,18.803,18.715 +2722,73.333,311.034,397.712,218.314,554.903,309.072,401.114,119.973,83.182,119.973,349.273,318.395,357.126,18.920,19.707,18.920 +2723,73.365,311.490,397.336,219.279,555.066,309.388,400.966,120.069,73.496,120.069,348.630,319.031,357.019,18.857,20.028,18.857 +2724,73.396,312.029,397.057,219.926,554.314,309.936,400.641,120.282,64.330,120.282,347.885,318.056,356.186,18.992,20.947,18.992 +2725,73.427,312.500,396.820,219.381,553.258,310.326,400.504,120.548,54.760,120.548,346.996,316.311,355.552,18.692,20.293,18.692 +2726,73.458,313.691,396.905,217.000,554.000,310.752,401.758,121.201,45.000,121.201,346.228,315.370,357.576,18.649,24.042,18.649 +2727,73.489,314.541,396.790,216.073,552.488,311.530,401.666,121.701,35.362,121.701,345.499,315.943,356.961,18.768,24.860,18.768 +2728,73.521,316.173,397.111,215.340,551.317,312.941,402.152,122.661,26.841,122.661,344.523,313.981,356.500,19.018,24.811,19.018 +2729,73.554,318.000,397.500,213.872,549.907,314.386,402.920,123.690,17.526,123.690,343.082,313.478,356.111,18.860,25.295,18.860 +2730,73.585,319.990,397.943,212.006,548.455,315.938,403.732,124.992,7.765,124.992,342.193,312.697,356.326,18.760,23.059,18.760 +2731,73.616,322.897,398.523,209.998,546.924,318.018,405.091,126.607,178.755,126.607,340.180,312.231,356.542,18.945,21.930,18.945 +2732,73.646,326.534,398.290,207.196,544.240,320.217,406.292,128.290,170.204,128.290,336.219,313.002,356.610,18.961,19.779,18.961 +2733,73.676,331.107,397.965,204.439,542.314,322.334,408.363,130.156,161.818,130.156,329.601,313.062,356.809,19.418,20.068,19.418 +2734,73.707,331.107,397.965,204.439,542.314,322.334,408.363,130.156,161.818,130.156,329.601,313.062,356.809,19.418,20.068,19.418 +2735,73.736,337.661,396.217,201.555,540.081,324.653,410.594,132.138,153.781,132.138,318.437,313.084,357.214,19.845,19.975,19.845 +2736,73.769,352.000,385.500,198.869,538.025,325.711,411.789,135.000,146.606,135.000,283.550,313.697,357.907,17.678,19.963,17.678 +2737,73.805,385.249,360.287,196.456,535.636,328.590,414.248,136.397,140.356,136.397,202.310,313.839,358.798,17.931,19.559,17.931 +2738,73.836,338.647,410.468,193.342,532.333,331.242,417.011,138.536,134.256,138.536,339.637,314.076,359.399,18.322,19.834,18.322 +2739,73.868,336.695,417.733,191.753,529.747,333.803,420.037,141.470,127.962,141.470,351.534,315.307,358.928,18.413,20.265,18.413 +2740,73.898,340.111,421.537,188.840,525.900,336.888,423.818,144.713,121.891,144.713,351.738,315.245,359.634,19.138,21.321,19.138 +2741,73.930,343.438,425.601,185.577,520.811,339.823,427.861,147.995,114.070,147.995,351.601,315.163,360.128,19.716,19.355,19.716 +2742,73.961,345.779,430.654,182.754,515.371,342.553,432.381,151.832,106.460,151.832,352.779,314.841,360.098,19.679,19.311,19.679 +2743,73.991,349.310,435.802,180.443,508.716,345.682,437.402,156.201,98.531,156.201,352.000,314.680,359.931,19.942,19.086,19.942 +2744,74.024,352.893,442.269,178.272,501.498,348.819,443.698,160.684,90.451,160.684,351.497,313.077,360.132,20.051,18.976,20.051 +2745,74.056,355.466,448.899,176.414,492.812,351.113,450.005,165.735,82.444,165.735,350.740,312.568,359.722,21.059,19.442,21.059 +2746,74.087,357.753,457.623,174.839,483.766,352.963,458.369,171.142,74.431,171.142,350.124,311.854,359.820,19.428,19.384,19.428 +2747,74.122,359.229,466.731,173.867,474.403,353.668,467.031,176.906,66.425,176.906,348.734,311.090,359.873,18.756,19.764,18.756 +2748,74.154,359.749,476.512,174.493,464.278,354.117,476.231,2.862,58.496,2.862,348.714,310.842,359.993,18.627,21.398,18.627 +2749,74.188,359.745,486.276,175.599,454.003,353.362,485.266,8.989,50.315,8.989,348.006,310.887,360.930,19.498,23.087,19.498 +2750,74.221,357.820,496.977,177.534,443.213,350.811,495.007,15.701,42.274,15.701,347.095,308.757,361.656,19.573,21.391,19.573 +2751,74.254,361.720,510.035,181.271,432.431,347.548,503.619,24.358,34.261,24.358,330.557,308.673,361.672,25.095,21.249,25.095 +2752,74.286,360.869,525.354,187.156,421.542,342.145,514.654,29.745,25.598,29.745,318.397,308.647,361.528,19.101,20.373,19.101 +2753,74.317,342.684,525.543,193.127,413.003,337.704,521.676,37.828,17.439,37.828,349.078,308.303,361.687,25.257,17.912,25.257 +2754,74.347,333.203,534.427,201.726,404.250,329.963,531.103,45.725,8.893,45.725,351.413,308.230,360.697,24.792,17.394,24.792 +2755,74.378,322.913,542.856,212.000,396.500,320.657,539.740,54.090,0.000,54.090,351.794,308.000,359.489,23.544,17.000,23.544 +2756,74.408,311.044,550.897,224.181,388.684,308.967,546.874,62.700,172.167,62.700,349.859,309.860,358.914,22.015,18.482,22.015 +2757,74.439,311.044,550.897,224.181,388.684,308.967,546.874,62.700,172.167,62.700,349.859,309.860,358.914,22.015,18.482,22.015 +2758,74.471,299.013,556.592,237.225,382.767,297.449,552.074,70.907,163.659,70.907,349.827,311.847,359.387,21.008,18.549,21.008 +2759,74.503,286.716,560.184,251.062,378.132,285.660,554.450,79.558,154.867,79.558,347.677,313.287,359.338,22.904,19.269,22.904 +2760,74.535,273.326,562.005,265.417,376.121,273.124,555.579,88.204,146.443,88.204,346.363,315.077,359.223,23.177,18.057,23.177 +2761,74.565,257.038,561.258,279.262,375.843,257.718,554.332,95.611,137.888,95.611,345.561,316.495,359.481,22.579,17.762,22.579 +2762,74.596,245.433,559.223,292.951,378.459,247.320,551.949,104.544,129.806,104.544,343.748,317.019,358.778,19.971,19.206,19.971 +2763,74.627,232.809,556.146,303.551,381.219,236.691,546.998,112.996,122.005,112.996,337.575,316.939,357.450,18.577,20.246,18.577 +2764,74.656,192.230,599.632,314.854,387.201,226.843,541.746,120.877,114.803,120.877,220.727,316.182,355.617,17.679,19.792,17.679 +2765,74.687,204.305,553.330,325.717,394.781,218.431,535.535,128.443,107.475,128.443,308.454,315.830,353.893,19.460,21.161,19.460 +2766,74.721,201.102,537.218,335.958,403.568,210.880,527.794,136.058,98.471,136.058,325.370,315.120,352.531,19.139,23.065,19.139 +2767,74.753,196.724,525.325,343.655,412.034,204.398,519.634,143.437,89.157,143.437,332.793,316.054,351.899,18.949,22.836,18.949 +2768,74.784,192.879,515.332,350.108,422.649,199.162,511.789,150.581,80.538,150.581,336.108,317.290,350.534,19.975,23.673,19.975 +2769,74.814,188.859,505.165,355.600,433.300,195.095,502.539,157.166,71.565,157.166,336.057,317.809,349.591,19.791,24.982,19.791 +2770,74.845,186.679,496.108,359.564,444.174,192.465,494.399,163.546,62.176,163.546,336.899,318.575,348.964,20.359,25.058,20.359 +2771,74.876,184.992,486.956,362.222,454.837,190.878,485.886,169.695,53.616,169.695,336.305,319.988,348.269,19.588,24.279,19.588 +2772,74.905,184.992,486.956,362.222,454.837,190.878,485.886,169.695,53.616,169.695,336.305,319.988,348.269,19.588,24.279,19.588 +2773,74.936,183.888,478.008,363.500,465.000,190.215,477.533,175.703,45.000,175.703,334.784,321.734,347.474,18.722,21.920,18.722 +2774,74.967,183.011,470.036,363.992,474.201,190.446,470.212,1.356,35.910,1.356,332.309,323.865,347.184,18.516,21.338,18.516 +2775,74.998,181.668,462.019,364.501,482.394,191.530,463.140,6.483,27.378,6.483,328.228,324.324,348.079,19.127,22.089,19.127 +2776,75.028,179.121,454.052,362.951,489.688,192.169,456.799,11.889,18.965,11.889,321.119,326.026,347.788,17.768,21.807,17.768 +2777,75.059,142.008,435.896,362.027,497.356,194.095,451.112,16.285,10.731,16.285,239.797,325.017,348.325,17.634,20.086,17.634 +2778,75.091,177.768,438.404,359.970,503.210,195.884,445.366,21.021,2.460,21.021,309.013,324.517,347.828,21.253,20.411,21.253 +2779,75.122,185.991,433.522,357.511,509.629,198.592,438.828,22.834,175.030,22.834,320.535,324.644,347.881,25.806,21.787,25.806 +2780,75.153,190.700,429.600,354.810,514.808,200.786,434.643,26.565,166.651,26.565,324.677,323.805,347.229,25.491,22.692,25.491 +2781,75.185,194.113,425.303,351.842,519.598,203.004,430.415,29.899,158.552,29.899,326.455,323.104,346.967,25.682,23.867,25.682 +2782,75.215,196.733,422.137,349.090,524.024,204.912,427.379,32.661,150.068,32.661,327.642,322.620,347.072,25.774,24.922,25.774 +2783,75.245,200.202,417.701,346.115,527.577,207.768,423.302,36.511,142.125,36.511,327.645,321.880,346.473,25.835,25.259,25.835 +2784,75.280,201.394,416.688,343.070,530.537,208.432,422.102,37.569,134.119,37.569,327.902,320.466,345.662,25.852,24.561,25.852 +2785,75.324,203.799,413.966,340.398,533.527,210.516,419.595,39.958,126.304,39.958,327.926,321.218,345.454,25.482,24.653,25.482 +2786,75.359,205.605,412.080,337.713,536.025,211.944,417.733,41.730,118.610,41.730,328.209,321.629,345.197,25.334,24.102,25.334 +2787,75.393,208.165,409.238,335.447,538.353,214.208,415.126,44.256,110.433,44.256,328.786,321.750,345.660,24.866,23.243,24.866 +2788,75.428,209.250,408.750,333.522,540.005,214.882,414.382,45.000,102.804,45.000,329.512,321.484,345.440,24.749,22.029,24.749 +2789,75.460,210.116,407.973,331.982,541.856,215.724,413.745,45.830,95.412,45.830,329.703,321.686,345.797,24.797,21.294,24.797 +2790,75.492,210.514,406.685,330.810,543.432,216.605,413.141,46.668,87.852,46.668,328.535,321.524,346.286,24.841,20.023,24.841 +2791,75.523,210.473,405.734,329.946,544.176,216.976,412.724,47.070,80.538,47.070,327.287,322.551,346.382,24.758,18.906,24.758 +2792,75.556,211.188,403.821,329.943,544.802,218.367,411.875,48.289,74.055,48.289,325.366,323.209,346.943,24.505,18.681,24.505 +2793,75.587,210.124,402.846,330.766,544.797,218.464,412.130,48.066,68.015,48.066,322.521,323.304,347.481,24.297,19.185,24.297 +2794,75.619,207.201,401.211,331.569,544.205,217.811,412.841,47.626,62.592,47.626,315.946,323.833,347.431,23.628,18.643,23.628 +2795,75.650,202.888,402.738,332.784,543.448,214.955,415.666,46.975,57.960,46.975,312.258,323.615,347.626,18.228,18.268,18.228 +2796,75.680,198.418,401.137,334.647,542.168,213.921,417.000,45.659,54.058,45.659,303.434,324.229,347.796,18.026,18.419,18.026 +2797,75.710,193.751,400.149,336.588,540.249,212.520,418.361,44.136,50.583,44.136,295.537,324.351,347.842,17.956,18.477,17.956 +2798,75.740,193.751,400.149,336.588,540.249,212.520,418.361,44.136,50.583,44.136,295.537,324.351,347.842,17.956,18.477,17.956 +2799,75.771,186.421,397.837,338.860,537.710,211.023,420.203,42.274,47.411,42.274,280.774,324.840,347.271,17.893,18.376,17.893 +2800,75.805,180.961,398.584,341.554,534.945,209.227,422.440,40.163,44.585,40.163,273.402,324.610,347.376,17.897,18.236,17.897 +2801,75.838,178.412,402.721,344.351,531.666,207.247,424.943,37.619,41.987,37.619,274.679,324.597,347.486,18.065,18.359,18.065 +2802,75.869,179.545,410.574,346.890,527.806,204.647,428.115,34.946,39.378,34.946,286.153,325.345,347.399,18.033,18.260,18.033 +2803,75.901,182.756,419.352,349.850,523.354,202.358,431.476,31.737,37.288,31.737,301.437,325.787,347.534,17.934,18.423,17.934 +2804,75.931,184.737,427.336,352.590,517.969,199.848,435.455,28.250,35.440,28.250,312.901,326.183,347.208,17.881,18.496,17.881 +2805,75.962,185.847,434.817,355.813,512.031,197.730,440.198,24.362,33.743,24.362,321.189,325.893,347.277,18.150,19.431,18.150 +2806,75.992,185.533,441.785,358.157,505.790,195.444,445.389,19.983,33.161,19.983,326.023,326.193,347.116,18.710,21.185,18.710 +2807,76.023,184.700,449.100,361.057,498.218,193.808,451.584,15.255,33.048,15.255,328.370,325.398,347.252,18.769,22.420,18.769 +2808,76.055,182.958,457.355,362.952,489.595,191.956,458.914,9.828,33.294,9.828,329.184,325.640,347.448,18.931,21.109,18.931 +2809,76.086,183.102,466.035,364.219,480.381,191.047,466.587,3.972,34.261,3.972,331.493,324.747,347.422,18.788,21.488,18.788 +2810,76.117,182.878,474.582,364.335,470.314,190.564,474.342,178.210,35.735,178.210,332.244,324.095,347.624,18.210,21.441,18.210 +2811,76.147,184.131,485.110,363.477,459.524,190.975,484.053,171.219,36.954,171.219,334.601,323.401,348.450,19.155,21.085,19.155 +2812,76.178,186.662,495.298,360.893,447.268,192.456,493.669,164.291,38.313,164.291,337.379,323.454,349.418,19.825,22.038,19.825 +2813,76.207,186.662,495.298,360.893,447.268,192.456,493.669,164.291,38.313,164.291,337.379,323.454,349.418,19.825,22.038,19.825 +2814,76.237,189.926,505.141,357.313,435.220,195.695,502.702,157.083,40.314,157.083,337.748,321.848,350.277,19.238,23.545,19.238 +2815,76.268,194.062,515.107,351.697,423.679,199.823,511.795,150.106,42.184,150.106,337.877,320.940,351.168,18.767,24.013,18.767 +2816,76.299,200.604,525.419,343.778,413.206,205.365,521.716,142.125,43.440,142.125,339.685,318.465,351.749,19.295,24.676,19.295 +2817,76.329,208.176,534.171,334.466,403.033,212.220,530.017,134.236,45.226,134.236,340.927,317.508,352.522,18.477,24.874,18.477 +2818,76.360,217.920,542.879,324.034,394.001,221.285,538.193,125.676,46.975,125.676,342.571,315.670,354.109,19.225,25.587,19.225 +2819,76.391,228.379,549.975,317.556,392.950,230.307,546.210,117.121,48.545,117.121,343.904,296.979,352.364,18.626,26.456,18.626 +2820,76.423,240.500,555.500,305.521,389.070,241.415,552.754,108.435,50.477,108.435,345.321,290.654,351.111,18.974,25.282,18.974 +2821,76.455,254.330,560.238,290.508,385.056,254.883,557.155,100.154,52.217,100.154,345.105,291.544,351.370,22.361,24.482,22.361 +2822,76.488,265.227,562.528,280.146,390.576,265.226,562.752,90.428,53.973,90.428,345.013,274.309,344.565,22.074,23.380,22.074 +2823,76.521,281.723,563.988,263.982,392.307,281.613,563.187,82.171,55.713,82.171,341.759,273.969,343.377,23.157,21.407,23.157 +2824,76.552,297.469,566.620,243.865,390.623,294.721,557.722,72.835,57.265,72.835,330.707,287.743,349.331,20.585,20.248,20.585 +2825,76.583,325.964,587.806,229.029,396.387,308.434,552.254,63.753,59.199,63.753,270.548,287.780,349.826,18.574,19.607,18.574 +2826,76.613,328.491,554.167,216.095,404.672,321.861,544.406,55.814,61.113,55.814,326.438,287.793,350.037,21.227,19.927,21.227 +2827,76.643,335.829,537.217,200.140,405.096,329.475,530.738,45.560,62.003,45.560,342.375,309.118,360.523,24.068,21.348,24.068 +2828,76.673,335.829,537.217,200.140,405.096,329.475,530.738,45.560,62.003,45.560,342.375,309.118,360.523,24.068,21.348,24.068 +2829,76.704,344.477,524.860,191.403,415.546,338.636,520.507,36.697,63.529,36.697,346.980,310.820,361.550,25.787,19.927,25.787 +2830,76.737,350.558,512.548,184.574,426.464,345.047,509.562,28.450,64.411,28.450,348.823,309.231,361.359,25.690,21.570,25.690 +2831,76.770,355.719,500.756,179.495,437.863,349.762,498.545,20.370,65.497,20.370,348.775,309.851,361.483,25.845,23.658,25.845 +2832,76.802,358.262,491.807,176.826,450.252,352.491,490.520,12.577,67.724,12.577,348.608,309.720,360.435,19.536,21.139,19.536 +2833,76.833,359.250,480.239,174.592,462.509,353.707,479.733,5.210,69.076,5.210,348.745,309.940,359.878,19.033,20.302,19.033 +2834,76.864,359.071,468.618,174.108,474.421,353.658,468.799,178.084,70.216,178.084,348.441,310.305,359.273,19.050,20.092,19.050 +2835,76.894,358.007,457.826,174.970,485.499,352.812,458.633,171.168,71.376,171.168,349.200,310.849,359.715,19.830,19.515,19.830 +2836,76.924,355.453,447.509,177.112,495.998,350.647,448.830,164.629,72.711,164.629,349.693,311.346,359.661,21.551,19.526,21.551 +2837,76.956,352.170,438.876,180.046,505.627,347.652,440.642,158.647,74.004,158.647,349.822,312.224,359.524,20.168,20.084,20.168 +2838,76.988,347.968,431.462,183.643,514.596,343.756,433.621,152.855,74.999,152.855,349.378,312.863,358.843,19.622,19.634,19.622 +2839,77.021,343.175,424.648,187.824,522.794,339.484,427.010,147.381,75.964,147.381,349.981,313.841,358.744,19.541,19.645,19.541 +2840,77.053,338.127,418.368,192.449,529.781,334.871,420.878,142.377,77.005,142.377,350.348,314.578,358.571,18.712,19.713,18.712 +2841,77.084,333.378,412.647,197.431,535.982,330.020,415.734,137.411,77.969,137.411,348.860,315.553,357.983,19.640,19.705,19.640 +2842,77.114,327.763,408.386,202.505,541.702,325.156,411.190,132.901,78.785,132.901,350.534,316.139,358.192,19.371,19.525,19.371 +2843,77.145,323.080,403.862,207.479,546.322,320.213,407.441,128.693,79.667,128.693,348.576,316.898,357.746,18.906,19.969,18.906 +2844,77.176,317.620,400.856,212.684,550.554,315.357,404.133,124.628,80.244,124.628,349.692,317.624,357.656,19.143,19.639,19.143 +2845,77.206,317.620,400.856,212.684,550.554,315.357,404.133,124.628,80.244,124.628,349.692,317.624,357.656,19.143,19.639,19.143 +2846,77.234,312.579,397.750,217.469,554.250,310.251,401.635,120.927,80.727,120.927,348.145,317.954,357.203,18.683,20.544,18.683 +2847,77.265,307.756,395.805,222.448,557.347,305.756,399.672,117.350,80.830,117.350,347.936,318.464,356.645,18.744,20.457,18.744 +2848,77.296,303.015,393.893,227.373,559.685,301.348,397.637,114.006,80.665,114.006,348.057,319.101,356.254,19.106,20.546,19.106 +2849,77.328,298.817,391.974,233.399,562.018,297.264,396.033,110.931,80.204,110.931,347.000,320.410,355.693,18.904,20.899,18.904 +2850,77.363,295.160,390.725,237.304,563.942,293.695,395.151,108.316,79.144,108.316,346.599,320.892,355.922,19.000,20.557,19.000 +2851,77.394,290.927,389.736,241.868,565.385,289.690,394.210,105.457,77.905,105.457,346.172,321.278,355.458,18.842,20.254,18.842 +2852,77.425,287.458,388.683,245.271,566.184,286.341,393.524,102.995,75.872,102.995,345.009,321.127,354.946,18.888,21.308,18.888 +2853,77.456,283.984,388.923,249.384,567.035,283.201,393.019,100.830,73.250,100.830,346.200,321.158,354.541,18.610,20.072,18.610 +2854,77.487,280.996,387.958,252.393,567.673,280.252,392.768,98.791,69.905,98.791,344.483,321.753,354.217,18.787,20.798,18.787 +2855,77.521,278.193,388.036,255.648,567.575,277.684,392.210,96.948,66.695,96.948,345.078,320.385,353.487,18.565,19.922,18.565 +2856,77.551,275.656,387.449,258.385,568.043,275.199,392.286,95.389,62.684,95.389,343.400,320.736,353.118,18.146,20.484,18.146 +2857,77.581,273.644,386.843,261.008,568.565,273.280,392.301,93.814,58.206,93.814,342.440,320.430,353.380,18.426,21.855,18.426 +2858,77.611,271.175,386.816,263.414,568.693,270.966,392.280,92.186,53.435,92.186,342.209,320.410,353.145,18.139,23.000,18.139 +2859,77.641,268.959,386.936,265.785,568.855,268.890,392.402,90.722,48.311,90.722,342.023,320.724,352.956,18.049,23.791,18.049 +2860,77.671,268.959,386.936,265.785,568.855,268.890,392.402,90.722,48.311,90.722,342.023,320.724,352.956,18.049,23.791,18.049 +2861,77.700,266.884,387.535,268.377,568.520,266.943,392.752,89.354,42.946,89.354,341.114,320.015,351.547,17.875,24.032,17.875 +2862,77.731,265.070,387.565,270.537,568.452,265.242,392.642,88.059,37.357,88.059,341.617,320.177,351.776,18.091,25.078,18.091 +2863,77.763,263.065,386.695,272.426,567.935,263.390,392.429,86.755,31.566,86.755,339.985,321.403,351.472,18.126,25.583,18.126 +2864,77.794,261.221,387.262,274.948,567.667,261.662,392.778,85.426,25.301,85.426,339.715,320.781,350.782,18.341,25.577,18.341 +2865,77.826,259.366,386.321,277.547,567.323,260.009,392.586,84.144,18.898,84.144,338.634,319.456,351.228,18.671,25.689,18.671 +2866,77.856,257.541,385.806,280.217,567.050,258.418,392.862,82.912,12.875,82.912,336.872,318.695,351.093,19.066,25.625,19.066 +2867,77.887,255.475,385.880,282.316,566.567,256.570,393.146,81.431,6.710,81.431,335.947,318.568,350.642,19.397,25.471,19.397 +2868,77.918,253.373,385.697,284.500,566.000,254.738,393.502,80.081,0.000,80.081,334.245,317.000,350.092,19.669,24.000,19.669 +2869,77.948,251.298,385.844,286.995,565.454,252.915,393.844,78.573,173.463,78.573,333.594,318.158,349.919,19.833,24.931,19.833 +2870,77.978,249.135,386.009,289.249,564.573,250.993,394.087,77.042,166.921,77.042,332.869,317.887,349.447,20.077,25.001,20.077 +2871,78.008,246.943,386.496,291.496,563.865,249.044,394.597,75.466,160.017,75.466,332.274,317.992,349.011,20.364,24.520,20.364 +2872,78.039,246.943,386.496,291.496,563.865,249.044,394.597,75.466,160.017,75.466,332.274,317.992,349.011,20.364,24.520,20.364 +2873,78.072,244.648,386.878,293.900,562.800,246.987,394.955,73.848,153.435,73.848,331.723,318.416,348.541,20.659,24.597,20.659 +2874,78.105,242.243,387.616,296.500,562.000,244.879,395.797,72.140,146.310,72.140,330.859,318.675,348.050,21.088,24.407,21.088 +2875,78.136,239.677,388.502,298.949,561.023,242.573,396.580,70.271,139.351,70.271,330.481,318.998,347.643,21.462,23.666,21.462 +2876,78.168,236.970,389.238,301.722,560.156,240.209,397.456,68.490,132.274,68.490,330.182,319.452,347.847,22.197,23.745,22.197 +2877,78.199,234.291,390.284,304.498,558.647,237.811,398.361,66.455,125.083,66.455,329.541,319.669,347.163,22.371,22.056,22.371 +2878,78.230,231.352,391.620,307.871,557.481,235.316,399.815,64.189,117.681,64.189,328.850,320.292,347.055,22.582,22.400,22.582 +2879,78.261,228.159,392.775,311.018,556.076,232.631,401.136,61.858,110.799,61.858,328.229,320.799,347.191,22.844,21.972,22.844 +2880,78.295,225.119,394.763,313.870,554.847,229.917,402.860,59.349,103.627,59.349,328.281,322.301,347.105,23.069,20.114,23.069 +2881,78.326,221.757,396.866,317.905,552.489,227.038,404.882,56.619,96.582,56.619,327.304,321.482,346.503,23.316,20.021,23.316 +2882,78.357,218.425,399.402,321.644,550.483,224.248,407.373,53.850,89.132,53.850,326.280,321.190,346.023,23.847,18.574,23.847 +2883,78.388,214.662,401.792,326.018,547.430,220.948,409.504,50.816,82.304,50.816,326.689,322.421,346.587,24.061,19.097,24.061 +2884,78.419,210.957,404.936,330.474,544.241,217.992,412.653,47.643,75.094,47.643,325.162,322.914,346.046,24.625,18.924,24.625 +2885,78.449,207.124,408.252,334.990,540.303,214.566,415.499,44.243,68.127,44.243,325.920,323.299,346.694,24.868,19.170,24.868 +2886,78.479,202.270,412.975,339.634,535.872,210.738,420.031,39.806,61.032,39.806,324.317,323.632,346.361,25.479,18.982,25.479 +2887,78.510,198.414,416.951,343.990,530.785,207.592,423.648,36.119,54.176,36.119,323.946,324.001,346.670,25.587,19.223,25.587 +2888,78.539,198.414,416.951,343.990,530.785,207.592,423.648,36.119,54.176,36.119,323.946,324.001,346.670,25.587,19.223,25.587 +2889,78.570,194.273,423.896,348.614,524.895,203.634,429.683,31.724,47.182,31.724,324.757,324.677,346.767,23.074,19.388,23.074 +2890,78.601,188.952,430.291,352.500,518.000,199.781,435.990,27.759,40.079,27.759,322.203,325.731,346.678,18.350,19.157,18.350 +2891,78.632,185.253,436.890,355.862,509.975,196.730,441.785,23.100,33.204,23.100,321.296,326.998,346.252,18.274,20.354,18.274 +2892,78.662,180.420,443.640,359.900,501.700,194.639,448.271,18.041,26.565,18.041,317.459,326.019,347.366,18.039,21.019,18.039 +2893,78.693,177.893,452.009,362.141,492.747,192.588,455.296,12.609,20.095,12.609,317.162,326.448,347.279,18.144,19.813,18.144 +2894,78.724,173.862,460.990,364.330,483.200,191.543,463.117,6.862,13.632,6.862,312.283,325.746,347.899,18.197,19.411,18.197 +2895,78.755,174.544,471.135,365.072,472.926,191.025,471.350,0.747,7.195,0.747,315.143,325.101,348.107,17.655,18.900,17.655 +2896,78.788,174.505,481.549,364.997,462.187,191.326,479.867,174.289,0.796,174.289,315.327,324.135,349.137,17.911,18.040,17.911 +2897,78.819,177.195,492.759,363.102,451.039,192.435,489.478,167.853,174.382,167.853,318.692,323.978,349.870,18.715,18.892,18.715 +2898,78.851,182.760,502.984,360.038,439.289,194.867,498.714,160.573,168.207,160.573,325.388,324.002,351.065,18.344,18.803,18.344 +2899,78.881,188.534,513.086,354.998,427.494,198.631,508.014,153.328,162.162,153.328,329.146,323.586,351.745,18.462,18.745,18.462 +2900,78.911,195.097,522.949,348.405,416.286,203.558,517.163,145.630,156.084,145.630,332.513,322.985,353.013,18.535,19.006,18.535 +2901,78.941,202.808,532.689,340.141,405.875,210.093,526.062,137.710,150.111,137.710,334.451,322.121,354.149,18.791,19.224,18.791 +2902,78.972,202.808,532.689,340.141,405.875,210.093,526.062,137.710,150.111,137.710,334.451,322.121,354.149,18.791,19.224,18.791 +2903,79.002,212.061,541.081,329.867,396.317,217.786,534.125,129.461,144.133,129.461,337.242,321.435,355.260,18.632,19.799,18.632 +2904,79.034,222.752,548.866,318.562,388.636,227.163,541.450,120.745,138.541,120.745,338.867,320.400,356.123,18.937,19.876,18.937 +2905,79.065,234.100,555.512,305.092,381.626,237.484,547.288,112.366,132.510,112.366,340.063,319.372,357.851,18.929,20.149,18.929 +2906,79.096,246.834,560.258,291.378,377.529,248.759,552.046,103.195,127.158,103.195,342.409,318.402,359.277,20.096,20.386,20.096 +2907,79.128,259.152,562.400,277.004,375.366,259.754,554.238,94.222,121.842,94.222,342.946,317.150,359.314,22.529,19.977,22.529 +2908,79.159,275.695,563.113,262.676,375.858,275.219,555.499,86.424,116.906,86.424,344.890,315.746,360.147,22.456,18.620,22.456 +2909,79.190,288.787,560.904,245.993,377.685,287.031,553.452,76.735,110.556,76.735,345.677,314.724,360.988,22.331,19.195,22.331 +2910,79.221,304.271,555.860,231.404,382.519,301.452,549.011,67.630,105.255,67.630,346.430,313.724,361.243,21.439,18.769,21.439 +2911,79.253,317.377,548.576,217.790,389.650,313.819,542.760,58.550,99.733,58.550,347.807,313.034,361.442,22.877,18.985,22.877 +2912,79.284,329.536,539.842,205.921,398.608,325.138,534.674,49.603,94.341,49.603,348.202,312.303,361.774,24.308,18.955,24.308 +2913,79.314,339.570,529.339,195.819,409.478,334.754,525.181,40.801,89.026,40.801,348.827,311.074,361.552,25.134,18.552,25.134 +2914,79.344,347.300,517.940,187.689,420.648,342.142,514.685,32.256,83.708,32.256,349.407,310.419,361.607,25.896,18.704,25.896 +2915,79.373,347.300,517.940,187.689,420.648,342.142,514.685,32.256,83.708,32.256,349.407,310.419,361.607,25.896,18.704,25.896 +2916,79.404,353.294,506.343,183.163,432.465,348.309,504.109,24.139,78.641,24.139,349.082,310.060,360.008,26.021,21.451,26.021 +2917,79.436,356.462,497.340,178.012,444.421,350.727,495.664,16.289,72.926,16.289,348.361,310.041,360.311,19.690,21.392,19.690 +2918,79.467,358.857,485.695,175.244,456.692,353.391,484.857,8.713,67.514,8.713,349.653,309.451,360.714,19.459,20.920,19.459 +2919,79.499,359.407,474.513,174.078,468.459,354.022,474.369,1.525,62.166,1.525,349.302,309.683,360.075,18.632,20.834,18.632 +2920,79.530,358.809,463.328,174.244,480.324,353.370,463.834,174.690,56.725,174.690,348.842,310.879,359.767,18.896,20.692,18.896 +2921,79.561,357.385,452.799,175.437,490.832,351.841,453.985,167.920,50.892,167.920,349.076,311.416,360.416,21.235,21.046,21.235 +2922,79.592,354.098,443.318,177.798,500.228,349.022,444.989,161.780,45.418,161.780,349.134,309.777,359.823,20.921,20.118,20.921 +2923,79.623,351.086,434.813,180.312,509.863,345.353,437.372,155.950,40.292,155.950,347.955,310.343,360.512,20.286,22.468,20.286 +2924,79.654,347.059,427.754,184.294,517.799,341.712,430.782,150.481,34.579,150.481,347.429,311.031,359.719,18.997,23.541,18.997 +2925,79.685,342.275,420.837,189.441,524.836,337.656,424.045,145.222,29.476,145.222,347.211,310.450,358.460,19.530,24.489,19.530 +2926,79.715,338.039,414.456,193.848,531.028,333.212,418.463,140.304,23.263,140.304,345.712,311.723,358.259,19.352,25.311,19.352 +2927,79.746,332.771,409.289,199.274,536.708,328.380,413.580,135.662,17.745,135.662,344.510,311.443,356.788,19.230,23.353,19.230 +2928,79.776,328.134,404.308,204.448,541.750,323.768,409.290,131.226,11.788,131.226,343.274,311.438,356.522,19.670,23.519,19.670 +2929,79.807,328.134,404.308,204.448,541.750,323.768,409.290,131.226,11.788,131.226,343.274,311.438,356.522,19.670,23.519,19.670 +2930,79.836,323.224,399.954,209.219,546.423,318.688,405.913,127.276,4.865,127.276,341.238,311.767,356.216,19.023,22.302,19.023 +2931,79.868,318.443,395.939,214.520,550.024,314.084,402.555,123.381,178.888,123.381,339.998,311.252,355.843,18.837,21.773,18.837 +2932,79.899,313.433,392.672,219.477,553.323,309.274,399.967,119.689,172.694,119.689,338.607,313.180,355.401,18.951,22.279,18.951 +2933,79.929,308.715,389.580,224.413,556.063,304.592,397.967,116.175,166.452,116.175,335.813,313.649,354.504,19.044,21.610,19.044 +2934,79.960,304.004,387.054,229.346,558.465,300.144,396.220,112.834,160.253,112.834,334.117,314.214,354.008,18.966,22.009,18.966 +2935,79.990,299.274,384.810,234.052,560.134,295.824,394.495,109.612,153.768,109.612,332.965,314.838,353.527,19.078,21.268,19.078 +2936,80.022,295.220,382.766,238.370,561.798,292.016,393.448,106.699,147.265,106.699,331.025,315.923,353.330,19.252,20.729,19.252 +2937,80.055,290.901,380.707,242.682,563.114,287.973,392.711,103.707,140.528,103.707,327.853,316.128,352.564,19.667,20.297,19.667 +2938,80.086,286.116,378.095,246.801,563.834,283.533,391.633,100.803,133.603,100.803,324.502,317.000,352.068,18.910,19.414,18.910 +2939,80.117,281.832,376.626,251.244,565.042,279.709,391.322,98.219,127.057,98.219,322.311,317.816,352.009,18.497,19.039,18.497 +2940,80.147,277.304,374.412,255.589,566.173,275.692,391.268,95.464,120.379,95.464,318.182,319.020,352.049,18.238,19.158,18.238 +2941,80.177,272.844,372.093,260.426,566.967,271.870,391.441,92.883,113.806,92.883,313.013,319.441,351.759,18.107,19.859,18.107 +2942,80.207,272.844,372.093,260.426,566.967,271.870,391.441,92.883,113.806,92.883,313.013,319.441,351.759,18.107,19.859,18.107 +2943,80.237,268.403,368.022,264.398,568.029,268.131,392.008,90.651,106.372,90.651,304.128,321.275,352.104,17.578,20.078,17.578 +2944,80.268,263.183,363.301,269.035,568.591,264.433,392.672,87.563,99.678,87.563,293.118,322.071,351.912,17.899,19.799,17.899 +2945,80.304,257.393,353.717,274.408,568.871,260.696,393.353,85.236,93.521,85.236,272.555,322.682,352.101,18.104,21.805,18.104 +2946,80.348,239.158,314.874,283.088,567.984,253.534,394.494,79.765,79.695,79.765,190.148,323.604,351.962,17.850,18.962,17.850 +2947,80.380,247.045,380.953,287.459,567.236,250.504,395.311,76.455,72.739,76.455,322.059,323.931,351.597,18.732,19.549,18.732 +2948,80.412,243.791,385.890,292.279,565.537,246.837,396.210,73.556,66.267,73.556,329.008,322.887,350.529,19.604,19.619,19.604 +2949,80.445,241.643,389.628,297.210,564.088,244.195,397.168,71.301,59.906,71.301,334.294,323.123,350.213,21.247,20.234,21.247 +2950,80.480,237.829,391.465,303.205,561.941,240.610,398.476,68.362,52.716,68.362,334.970,323.020,350.055,21.894,19.475,21.894 +2951,80.512,233.922,393.917,308.543,559.501,236.827,400.225,65.277,46.219,65.277,335.452,322.699,349.341,21.859,19.644,21.859 +2952,80.542,230.249,396.163,313.221,556.934,233.253,401.832,62.080,39.806,62.080,336.155,323.421,348.986,22.943,20.102,22.943 +2953,80.574,226.337,398.904,317.871,553.695,229.362,403.869,58.653,33.524,58.653,336.371,324.509,348.000,23.341,20.539,23.341 +2954,80.605,226.337,398.904,317.871,553.695,229.362,403.869,58.653,33.524,58.653,336.371,324.509,348.000,23.341,20.539,23.341 +2955,80.634,221.886,401.480,323.438,550.119,225.439,406.555,55.008,27.661,55.008,335.230,323.920,347.621,23.840,23.224,23.840 +2956,80.664,216.912,403.671,328.564,547.038,221.709,409.684,51.417,20.244,51.417,332.637,323.583,348.021,24.613,22.145,24.613 +2957,80.695,211.657,406.315,333.810,542.804,217.876,413.094,47.470,14.511,47.470,329.510,322.628,347.909,24.956,21.583,24.956 +2958,80.726,206.881,410.064,338.819,537.718,214.170,416.925,43.264,8.471,43.264,327.090,322.843,347.112,25.016,21.970,25.016 +2959,80.758,201.744,415.322,343.978,532.076,209.879,421.789,38.480,2.203,38.480,326.417,322.492,347.202,25.913,21.753,25.913 +2960,80.788,196.577,420.385,348.532,525.463,205.753,426.502,33.690,176.055,33.690,325.332,322.441,347.387,26.071,21.776,26.071 +2961,80.821,192.662,426.291,352.841,518.470,202.398,431.623,28.706,170.181,28.706,325.131,322.759,347.333,26.188,22.853,26.188 +2962,80.853,188.304,432.691,356.766,510.165,199.000,437.445,23.962,164.358,23.962,323.997,322.786,347.407,25.993,22.842,25.993 +2963,80.884,183.250,443.750,360.250,501.630,195.007,447.669,18.435,158.405,18.435,322.869,323.108,347.654,18.974,23.129,18.974 +2964,80.914,180.526,453.183,362.993,491.986,192.914,455.873,12.249,152.650,12.249,322.384,322.944,347.738,18.947,23.369,18.947 +2965,80.945,178.272,462.689,364.484,481.476,191.211,464.039,5.957,147.068,5.957,322.276,322.592,348.295,18.629,23.568,18.629 +2966,80.975,177.500,472.458,364.882,470.222,190.930,472.390,179.714,141.520,179.714,321.061,322.182,347.921,18.080,23.204,18.080 +2967,81.005,177.500,472.458,364.882,470.222,190.930,472.390,179.714,141.520,179.714,321.061,322.182,347.921,18.080,23.204,18.080 +2968,81.034,177.315,483.870,364.454,458.972,191.167,482.031,172.439,135.352,172.439,321.683,321.784,349.630,18.440,23.399,18.440 +2969,81.066,179.145,495.946,361.193,446.823,192.594,492.402,165.235,130.006,165.235,321.479,322.120,349.296,19.744,21.680,19.744 +2970,81.097,181.735,507.981,356.739,434.371,195.349,502.341,157.496,125.096,157.496,320.763,321.549,350.234,19.876,20.477,19.876 +2971,81.128,186.345,520.184,350.552,422.320,199.783,512.397,149.910,120.069,149.910,320.164,320.754,351.225,19.990,20.315,19.990 +2972,81.162,191.294,532.178,342.997,410.914,205.483,521.234,142.358,114.600,142.358,316.690,319.460,352.528,19.341,20.233,19.341 +2973,81.193,198.979,544.960,334.244,400.938,213.251,530.093,133.831,109.385,133.831,312.707,318.560,353.925,19.247,21.556,19.247 +2974,81.224,210.238,555.770,322.523,391.642,222.448,538.353,125.032,104.265,125.032,312.618,317.723,355.158,19.745,20.944,19.745 +2975,81.257,222.100,565.300,309.800,384.469,232.286,544.928,116.565,98.871,116.565,310.813,315.916,356.368,19.230,20.755,19.230 +2976,81.290,235.900,576.254,295.563,379.273,244.028,550.371,107.435,93.851,107.435,303.099,314.836,357.356,19.263,19.984,19.263 +2977,81.321,250.080,586.993,280.104,375.998,254.663,553.721,97.843,88.772,97.843,291.891,314.271,359.064,22.477,18.303,22.477 +2978,81.352,270.500,607.000,265.065,375.658,270.500,555.329,90.000,83.625,90.000,256.000,312.525,359.342,21.000,19.016,21.000 +2979,81.383,294.316,631.696,249.923,377.615,280.073,555.194,79.454,78.690,79.454,204.560,310.256,360.194,22.611,18.827,22.611 +2980,81.413,306.337,580.889,235.292,383.143,296.870,552.022,71.843,73.773,71.843,298.558,309.164,359.319,19.551,19.038,19.551 +2981,81.444,314.996,557.749,221.882,389.031,309.224,546.347,63.148,68.510,63.148,334.051,308.305,359.610,20.528,19.306,20.528 +2982,81.474,314.996,557.749,221.882,389.031,309.224,546.347,63.148,68.510,63.148,334.051,308.305,359.610,20.528,19.306,20.528 +2983,81.506,326.030,548.543,210.220,397.902,320.030,540.088,54.638,63.236,54.638,338.278,305.866,359.012,23.202,20.233,23.202 +2984,81.539,337.000,536.500,207.407,420.617,336.256,535.756,45.000,58.050,45.000,342.947,275.611,345.051,24.749,21.112,24.749 +2985,81.571,346.184,524.747,194.541,422.979,341.931,521.650,36.059,52.940,36.059,343.937,292.962,354.461,25.735,20.790,25.735 +2986,81.602,352.431,512.574,189.237,432.241,348.509,510.496,27.908,47.534,27.908,345.874,292.969,354.752,25.736,22.805,25.736 +2987,81.632,357.255,500.802,178.679,438.393,349.517,497.974,20.075,42.608,20.075,345.343,308.561,361.820,25.812,21.094,25.812 +2988,81.663,359.974,492.137,175.430,450.283,351.840,490.336,12.481,37.367,12.481,345.133,308.673,361.795,19.736,20.621,19.736 +2989,81.694,361.222,480.486,174.152,461.287,353.518,479.769,5.315,32.189,5.315,345.138,308.781,360.614,19.034,21.392,19.034 +2990,81.725,361.622,469.176,173.530,472.006,353.849,469.402,178.332,26.865,178.332,345.087,308.597,360.638,19.506,21.683,19.506 +2991,81.757,361.984,458.378,174.380,482.975,353.002,459.665,171.843,21.371,171.843,342.097,308.970,360.245,20.061,21.216,20.061 +2992,81.789,361.836,447.731,176.334,493.025,351.178,450.489,165.489,15.658,165.489,337.832,309.189,359.850,20.763,20.877,20.763 +2993,81.821,360.483,437.810,178.540,502.485,348.178,442.348,159.753,10.154,159.753,333.703,309.287,359.934,20.095,20.480,20.095 +2994,81.853,357.234,428.982,182.103,511.177,344.763,435.024,154.152,4.456,154.152,331.460,309.633,359.175,20.347,18.826,20.347 +2995,81.884,354.098,420.821,185.914,518.591,341.083,428.664,148.926,178.550,148.926,328.246,310.154,358.636,20.029,18.969,20.029 +2996,81.914,350.406,413.059,189.764,525.094,336.955,422.836,143.988,172.940,143.988,325.113,310.827,358.371,19.927,19.293,19.927 +2997,81.944,344.328,407.634,194.087,531.102,332.548,417.723,139.423,166.822,139.423,326.809,311.953,357.829,19.962,19.084,19.962 +2998,81.974,339.500,402.000,198.836,536.574,328.066,413.435,135.000,160.974,135.000,324.562,312.462,356.904,20.506,19.429,20.506 +2999,82.005,339.500,402.000,198.836,536.574,328.066,413.435,135.000,160.974,135.000,324.562,312.462,356.904,20.506,19.429,20.506 +3000,82.034,335.677,396.155,203.122,541.065,323.948,409.559,131.186,154.855,131.186,321.444,313.230,357.066,20.414,19.657,20.414 +3001,82.066,331.331,390.026,207.674,545.286,319.185,406.044,127.173,148.671,127.173,316.449,313.714,356.655,20.272,19.907,20.272 +3002,82.096,327.353,383.781,212.279,549.068,314.210,403.102,124.225,142.275,124.225,309.304,314.860,356.040,18.008,19.102,18.008 +3003,82.128,325.068,375.334,216.907,551.942,310.061,400.432,120.877,136.081,120.877,297.201,315.447,355.685,17.926,19.048,17.926 +3004,82.159,322.390,367.025,221.575,555.244,305.718,398.613,117.824,129.245,117.824,284.158,316.409,355.593,17.958,19.416,17.958 +3005,82.191,323.949,348.861,225.874,558.096,301.676,397.120,114.775,122.829,114.775,249.549,317.551,355.851,17.810,19.300,17.810 +3006,82.224,327.871,321.432,230.100,560.300,297.625,395.884,112.109,116.565,112.109,194.761,317.969,355.482,17.979,19.230,17.979 +3007,82.256,320.617,319.335,233.915,561.834,293.989,394.781,109.440,110.050,109.440,195.033,318.591,355.046,17.917,18.733,17.917 +3008,82.289,294.745,381.057,237.988,563.519,290.943,394.180,106.157,103.431,106.157,327.450,319.639,354.775,18.160,18.684,18.160 +3009,82.321,289.323,385.726,242.320,565.539,287.410,393.574,103.696,97.001,103.696,339.346,321.497,355.503,18.362,19.642,18.362 +3010,82.352,285.019,387.904,246.646,566.507,284.002,392.989,101.310,90.239,101.310,344.576,321.039,354.948,18.435,20.012,18.435 +3011,82.383,281.658,386.576,251.881,568.312,280.596,393.285,98.992,84.289,98.992,341.142,322.989,354.728,18.580,20.995,18.580 +3012,82.413,278.137,387.099,255.521,568.388,277.473,392.660,96.809,77.888,96.809,342.982,321.836,354.183,18.436,20.637,18.436 +3013,82.445,274.700,387.735,259.646,568.440,274.339,392.221,94.597,71.229,94.597,344.657,321.940,353.659,18.503,20.211,18.503 +3014,82.475,271.684,386.853,263.296,568.220,271.451,392.101,92.545,64.875,92.545,342.107,320.731,352.614,18.138,20.668,18.138 +3015,82.506,271.684,386.853,263.296,568.220,271.451,392.101,92.545,64.875,92.545,342.107,320.731,352.614,18.138,20.668,18.138 +3016,82.536,268.619,386.969,266.000,568.897,268.580,392.442,90.412,58.887,90.412,341.991,320.539,352.938,18.115,22.427,18.115 +3017,82.567,265.599,388.053,270.002,568.466,265.727,392.657,88.409,52.535,88.409,342.507,320.828,351.719,18.243,22.343,18.243 +3018,82.597,262.387,387.202,273.588,568.466,262.743,392.672,86.279,46.005,86.279,341.295,321.052,352.256,18.108,22.674,18.108 +3019,82.628,259.462,387.464,277.199,567.969,260.033,393.043,84.160,39.914,84.160,340.316,320.847,351.531,18.754,23.342,18.754 +3020,82.658,256.519,387.699,280.432,567.333,257.295,393.226,82.011,33.460,82.011,340.105,321.740,351.267,19.041,23.788,19.041 +3021,82.689,253.615,388.282,284.438,566.638,254.605,393.839,79.895,26.952,79.895,339.414,320.687,350.705,19.612,24.279,19.612 +3022,82.720,250.456,388.277,288.620,565.469,251.764,394.244,77.631,21.413,77.631,338.072,320.875,350.289,20.033,25.976,20.033 +3023,82.752,247.279,388.450,292.523,564.912,249.025,395.125,75.343,14.797,75.343,336.735,319.695,350.535,20.376,25.174,20.376 +3024,82.782,244.058,389.402,296.405,563.552,246.125,396.146,72.956,9.392,72.956,335.473,319.597,349.581,20.866,25.674,20.866 +3025,82.813,240.588,389.998,300.043,562.681,243.152,397.265,70.560,2.987,70.560,334.429,318.766,349.840,21.522,24.923,21.522 +3026,82.844,237.110,391.059,304.092,560.771,240.020,398.293,68.088,177.019,68.088,333.709,318.922,349.303,22.199,24.519,22.199 +3027,82.875,233.469,392.161,308.276,558.789,236.950,399.752,65.366,171.215,65.366,331.885,319.174,348.587,22.433,24.662,22.433 +3028,82.905,233.469,392.161,308.276,558.789,236.950,399.752,65.366,171.215,65.366,331.885,319.174,348.587,22.433,24.662,22.433 +3029,82.933,229.765,393.883,312.541,556.589,233.644,401.317,62.447,165.489,62.447,331.544,319.473,348.314,22.666,24.761,22.666 +3030,82.965,225.833,395.599,316.848,554.089,230.284,403.154,59.497,159.717,59.497,330.430,319.387,347.968,23.101,25.020,23.101 +3031,82.995,221.846,397.769,321.077,551.159,226.818,405.227,56.310,154.134,56.310,329.492,319.407,347.418,23.297,24.786,23.297 +3032,83.029,217.995,400.871,325.549,547.900,223.361,408.004,53.046,148.643,53.046,328.599,319.694,346.452,24.018,24.924,24.018 +3033,83.062,213.907,404.023,330.040,544.220,219.666,410.781,49.563,143.130,49.563,328.547,319.800,346.305,24.502,24.800,24.502 +3034,83.094,208.750,408.250,334.540,540.044,215.146,414.646,45.000,137.911,45.000,328.098,319.607,346.189,24.749,25.064,24.749 +3035,83.126,204.761,412.416,339.127,535.075,211.506,418.318,41.186,132.537,41.186,327.935,320.107,345.860,25.399,24.901,25.399 +3036,83.158,200.860,417.520,343.434,529.830,207.838,422.754,36.870,127.266,36.870,328.000,320.408,345.445,25.800,24.740,25.800 +3037,83.191,197.527,421.843,347.534,523.967,204.685,426.495,33.024,121.866,33.024,328.712,320.961,345.785,25.489,24.974,25.489 +3038,83.223,193.640,428.064,351.400,517.200,201.125,432.067,28.142,116.565,28.142,328.352,321.099,345.327,25.715,25.044,25.715 +3039,83.255,189.772,435.462,355.414,509.268,197.624,438.749,22.714,111.606,22.714,328.539,320.319,345.564,26.086,25.029,26.086 +3040,83.287,185.898,445.743,358.468,500.940,193.805,448.246,17.571,106.699,17.571,329.189,320.489,345.776,19.273,24.808,19.273 +3041,83.317,183.875,454.242,360.933,491.986,191.698,455.910,12.037,101.821,12.037,330.079,320.452,346.076,18.920,24.857,18.920 +3042,83.347,182.255,463.063,362.727,481.967,190.371,463.914,5.985,96.818,5.985,330.279,320.025,346.598,18.632,24.856,18.632 +3043,83.378,182.000,472.000,363.146,471.392,190.073,472.000,0.000,92.161,0.000,330.000,319.301,346.146,18.000,24.190,18.000 +3044,83.409,182.608,482.379,362.792,459.986,190.266,481.437,172.983,87.207,172.983,332.277,318.743,347.709,18.369,24.581,18.369 +3045,83.439,182.608,482.379,362.792,459.986,190.266,481.437,172.983,87.207,172.983,332.277,318.743,347.709,18.369,24.581,18.369 +3046,83.469,184.803,493.660,360.449,448.507,191.879,491.861,165.735,82.147,165.735,333.509,318.741,348.111,19.843,24.116,19.843 +3047,83.501,188.075,503.943,357.202,436.954,194.727,501.293,158.276,77.320,158.276,335.179,318.683,349.500,19.516,24.756,19.516 +3048,83.532,192.861,514.334,351.810,425.402,198.847,510.992,150.832,72.408,150.832,336.851,318.147,350.563,19.292,24.598,19.292 +3049,83.563,199.065,523.930,344.461,414.095,204.248,520.071,143.326,67.166,143.326,338.582,317.479,351.505,18.703,25.224,18.703 +3050,83.594,207.000,534.000,335.722,403.383,211.835,529.165,135.000,62.255,135.000,339.411,317.219,353.086,18.385,25.814,18.385 +3051,83.624,216.200,542.400,324.888,393.933,220.216,537.045,126.870,57.426,126.870,341.200,316.526,354.586,19.600,25.117,19.600 +3052,83.654,227.434,549.321,312.642,386.008,230.354,543.817,117.943,52.515,117.943,343.479,316.014,355.941,18.997,24.969,18.997 +3053,83.685,239.349,555.345,305.300,387.293,240.704,551.467,109.259,47.139,109.259,344.368,296.573,352.584,18.903,26.230,18.903 +3054,83.716,251.291,559.160,285.008,376.847,252.336,553.155,99.878,42.365,99.878,346.409,313.121,358.599,21.546,25.323,21.546 +3055,83.746,264.739,561.562,269.822,375.132,264.846,555.090,90.949,37.569,90.949,347.085,313.026,360.031,22.163,23.962,22.163 +3056,83.777,278.299,560.835,254.344,377.393,277.561,555.504,82.110,32.525,82.110,348.460,311.773,359.224,23.951,20.285,23.951 +3057,83.807,278.299,560.835,254.344,377.393,277.561,555.504,82.110,32.525,82.110,348.460,311.773,359.224,23.951,20.285,23.951 +3058,83.839,293.904,558.016,239.897,380.785,292.387,552.766,73.883,27.235,73.883,348.655,310.871,359.585,20.880,20.215,20.880 +3059,83.871,308.088,552.158,226.125,386.473,305.967,547.660,64.757,22.267,64.757,349.741,310.311,359.688,22.262,19.755,22.262 +3060,83.901,320.463,545.318,213.764,393.639,317.564,541.007,56.080,17.044,56.080,350.036,310.042,360.425,23.662,19.952,23.662 +3061,83.932,330.990,536.527,202.998,402.068,327.563,532.777,47.579,11.560,47.579,350.879,309.879,361.038,24.755,20.307,24.755 +3062,83.963,340.031,527.218,193.714,411.946,335.797,523.727,39.508,5.952,39.508,350.495,309.493,361.470,25.610,19.760,25.610 +3063,83.993,347.242,515.460,186.500,424.032,343.388,513.138,31.072,0.284,31.072,351.734,309.056,360.733,25.575,17.574,25.575 +3064,84.026,353.071,504.689,180.324,434.377,347.904,502.465,23.286,175.261,23.286,350.441,310.174,361.692,25.882,21.408,25.882 +3065,84.058,355.632,496.274,176.212,445.938,350.375,494.781,15.855,169.540,15.855,350.834,310.280,361.764,19.589,20.591,19.589 +3066,84.091,357.891,485.442,173.883,457.597,352.809,484.665,8.696,163.761,8.696,351.641,310.720,361.923,19.305,19.985,19.305 +3067,84.124,358.596,475.126,172.891,469.163,353.433,474.953,1.923,157.620,1.923,350.936,311.236,361.270,18.695,19.908,18.695 +3068,84.157,358.292,464.810,173.430,480.119,353.303,465.196,175.569,151.368,175.569,350.970,311.892,360.977,18.936,20.349,18.936 +3069,84.190,356.382,455.220,174.564,489.779,351.909,456.063,169.327,145.539,169.327,351.939,312.361,361.042,19.526,20.192,19.526 +3070,84.222,353.502,446.148,176.267,498.320,349.349,447.384,163.426,140.162,163.426,352.174,313.182,360.841,21.291,19.745,21.291 +3071,84.253,350.011,438.800,178.889,506.393,346.631,440.161,158.078,133.983,158.078,353.395,313.437,360.682,20.025,19.846,20.025 +3072,84.283,348.134,431.804,182.483,514.372,343.702,434.067,152.949,127.569,152.949,350.254,314.489,360.206,19.176,20.242,19.176 +3073,84.313,343.216,425.940,185.800,521.296,339.790,428.075,148.067,121.487,148.067,351.911,315.189,359.986,19.618,19.773,19.618 +3074,84.344,338.947,420.383,189.509,527.474,335.814,422.681,143.735,115.164,143.735,352.132,315.519,359.903,19.083,19.535,19.083 +3075,84.374,338.947,420.383,189.509,527.474,335.814,422.681,143.735,115.164,143.735,352.132,315.519,359.903,19.083,19.535,19.083 +3076,84.406,334.891,415.524,193.675,533.060,331.842,418.122,139.568,108.853,139.568,351.413,316.542,359.424,19.227,19.596,19.227 +3077,84.439,330.483,411.439,198.188,538.153,327.933,413.934,135.619,102.529,135.619,352.088,317.152,359.223,19.205,19.090,19.205 +3078,84.470,326.303,407.928,202.191,542.575,323.755,410.774,131.845,96.198,131.845,350.927,317.153,358.567,19.813,19.739,19.813 +3079,84.502,322.447,404.261,206.500,546.500,319.844,407.522,128.591,90.000,128.591,350.308,317.000,358.654,19.036,19.000,19.036 +3080,84.533,318.730,401.378,211.030,549.554,316.273,404.818,125.538,83.491,125.538,349.440,317.391,357.895,18.832,19.631,18.832 +3081,84.564,314.886,398.971,215.476,552.596,312.550,402.634,122.520,77.196,122.520,348.579,317.494,357.269,18.805,19.990,18.805 +3082,84.595,311.412,396.802,220.276,555.684,309.197,400.663,119.840,70.271,119.840,348.526,319.114,357.427,18.686,20.378,18.686 +3083,84.625,307.940,395.179,224.047,556.551,306.071,398.800,117.300,64.283,117.300,347.451,317.586,355.601,18.747,20.258,18.747 +3084,84.657,304.289,393.751,227.826,558.209,302.685,397.230,114.744,57.639,114.744,347.403,317.370,355.066,18.843,20.490,18.843 +3085,84.689,301.447,392.228,229.817,560.832,299.481,396.946,112.620,50.711,112.620,345.923,317.111,356.146,18.846,24.274,18.846 +3086,84.721,298.627,390.615,233.000,562.000,296.707,395.764,110.450,45.000,110.450,345.047,316.784,356.037,19.041,24.042,19.041 +3087,84.753,295.700,389.400,236.321,562.866,293.936,394.691,108.435,38.125,108.435,344.372,316.996,355.527,18.657,24.645,18.657 +3088,84.783,293.197,389.009,239.092,563.506,291.618,394.274,106.699,32.550,106.699,343.381,317.602,354.375,18.965,24.714,18.965 +3089,84.814,290.902,388.033,242.100,563.800,289.466,393.377,105.038,26.565,105.038,342.684,317.522,353.752,19.056,25.491,19.056 +3090,84.845,288.190,386.870,245.122,564.168,286.826,392.677,103.216,20.266,103.216,341.040,317.019,352.968,18.821,25.949,18.821 +3091,84.875,288.190,386.870,245.122,564.168,286.826,392.677,103.216,20.266,103.216,341.040,317.019,352.968,18.821,25.949,18.821 +3092,84.905,286.125,385.901,248.029,564.882,284.773,392.391,101.768,14.036,101.768,339.461,315.781,352.720,18.805,25.951,18.805 +3093,84.936,283.778,385.050,250.336,564.885,282.555,391.832,100.222,7.331,100.222,338.265,315.702,352.048,18.973,25.648,18.973 +3094,84.967,281.962,384.308,252.520,566.044,280.752,392.021,98.915,2.490,98.915,336.977,315.702,352.592,18.925,24.281,18.925 +3095,84.998,279.644,383.886,254.550,566.034,278.602,391.728,97.565,177.207,97.565,336.088,315.698,351.910,18.827,23.752,18.827 +3096,85.029,277.718,383.188,256.489,566.424,276.807,391.499,96.259,171.781,96.259,335.472,315.932,352.194,19.066,24.468,19.066 +3097,85.059,275.956,382.857,258.235,566.441,275.197,391.273,95.154,165.964,95.154,335.067,316.024,351.968,18.361,23.768,18.361 +3098,85.091,274.373,382.777,260.259,566.903,273.750,391.496,94.086,160.530,94.086,334.362,316.290,351.846,18.524,24.523,18.524 +3099,85.123,272.505,382.577,262.000,566.543,272.066,391.198,92.911,153.925,92.911,333.992,316.230,351.258,18.298,24.175,18.298 +3100,85.157,270.651,382.550,263.417,566.507,270.387,391.213,91.745,148.671,91.745,333.515,316.759,350.849,18.027,23.658,18.027 +3101,85.190,268.956,381.521,264.815,566.425,268.849,391.201,90.630,143.409,90.630,331.156,317.223,350.516,18.032,23.211,18.032 +3102,85.224,267.254,381.468,266.279,566.252,267.336,391.107,89.514,138.366,89.514,330.980,317.649,350.258,18.194,22.838,18.194 +3103,85.255,265.391,381.371,268.000,566.500,265.662,391.667,88.493,135.000,88.493,329.070,317.491,349.668,17.967,21.920,17.967 +3104,85.286,263.841,380.392,269.525,566.271,264.357,391.562,87.357,129.806,87.357,327.159,318.556,349.523,18.488,21.382,18.488 +3105,85.316,261.672,380.247,271.084,566.137,262.442,391.403,86.055,125.428,86.055,327.464,318.865,349.829,18.164,19.819,18.164 +3106,85.346,259.795,380.246,273.002,566.080,260.852,391.872,84.806,121.547,84.806,325.838,319.175,349.186,18.379,19.881,18.379 +3107,85.377,257.801,380.125,275.298,566.091,259.185,392.314,83.526,118.106,83.526,324.436,319.532,348.970,18.830,19.556,18.830 +3108,85.408,257.801,380.125,275.298,566.091,259.185,392.314,83.526,118.106,83.526,324.436,319.532,348.970,18.830,19.556,18.830 +3109,85.439,255.598,379.709,277.685,566.120,257.364,392.418,82.093,114.984,82.093,324.029,319.944,349.692,19.150,19.861,19.150 +3110,85.470,253.216,380.297,280.232,565.771,255.309,392.853,80.538,112.407,80.538,323.866,319.994,349.324,19.399,19.831,19.399 +3111,85.501,250.740,380.960,283.099,565.405,253.188,393.380,78.851,110.237,78.851,323.808,320.222,349.125,19.773,20.210,19.773 +3112,85.532,247.991,381.806,285.995,564.989,250.837,394.068,76.931,108.587,76.931,323.713,320.672,348.889,20.108,20.114,20.108 +3113,85.562,245.433,383.713,289.436,564.188,248.369,394.650,74.973,107.580,74.973,326.124,320.610,348.774,20.522,19.840,20.522 +3114,85.593,242.379,384.610,292.748,563.272,245.762,395.552,72.824,106.887,72.824,325.323,320.777,348.230,20.897,20.112,20.897 +3115,85.624,239.336,386.605,296.381,562.114,242.876,396.570,70.448,106.604,70.448,326.657,320.673,347.808,21.313,20.407,21.313 +3116,85.656,235.931,387.914,300.303,560.491,239.790,397.479,68.030,106.699,68.030,326.997,320.872,347.626,21.878,20.593,21.878 +3117,85.691,232.466,389.870,304.449,558.710,236.638,398.978,65.389,107.216,65.389,326.886,321.067,346.922,22.412,20.517,22.412 +3118,85.723,229.135,392.584,309.448,556.817,233.394,400.757,62.475,108.314,62.475,328.656,321.281,347.086,22.657,20.739,22.657 +3119,85.754,225.184,394.733,314.112,554.484,229.922,402.754,59.432,109.378,59.432,328.288,321.006,346.919,23.157,21.196,23.157 +3120,85.786,221.480,397.663,318.926,551.600,226.396,405.000,56.176,110.442,56.176,328.927,321.400,346.589,23.413,21.696,23.413 +3121,85.816,217.452,401.090,323.785,548.519,222.596,407.806,52.549,111.615,52.549,329.561,321.635,346.479,23.749,22.260,23.749 +3122,85.846,213.602,404.450,328.738,544.814,219.219,410.941,49.132,113.015,49.132,328.628,321.840,345.795,24.296,23.450,24.296 +3123,85.878,209.250,408.250,333.613,540.276,215.222,414.222,45.000,114.214,45.000,328.805,322.273,345.696,25.456,23.459,25.456 +3124,85.908,204.528,413.542,338.840,535.142,210.827,418.925,40.515,115.589,40.515,329.070,321.629,345.641,25.488,24.250,25.488 +3125,85.940,204.528,413.542,338.840,535.142,210.827,418.925,40.515,115.589,40.515,329.070,321.629,345.641,25.488,24.250,25.488 +3126,85.968,200.363,418.233,343.523,529.523,207.204,423.249,36.254,117.096,36.254,328.583,321.607,345.550,25.751,24.554,25.751 +3127,85.999,196.379,423.652,348.216,522.936,203.658,428.152,31.724,118.610,31.724,328.484,321.789,345.600,25.951,24.741,25.951 +3128,86.030,192.200,430.100,352.508,515.582,199.919,433.960,26.565,120.027,26.565,328.702,321.525,345.963,25.938,25.132,25.938 +3129,86.061,189.121,436.448,356.430,507.734,197.364,439.745,21.801,121.682,21.801,328.124,321.801,345.879,26.369,25.370,26.369 +3130,86.094,184.977,447.579,359.942,498.962,193.718,450.140,16.330,123.447,16.330,328.276,321.726,346.492,19.242,25.644,19.242 +3131,86.126,182.291,456.117,362.573,489.508,191.851,457.910,10.620,125.070,10.620,327.788,321.967,347.242,18.797,25.678,18.797 +3132,86.158,180.744,465.462,364.120,479.340,190.945,466.218,4.236,126.870,4.236,326.882,322.400,347.342,18.837,25.400,18.837 +3133,86.189,179.548,474.914,364.436,468.350,190.645,474.537,178.059,128.746,178.059,325.593,322.659,347.800,18.227,24.804,18.227 +3134,86.220,178.412,486.574,363.671,456.646,191.286,484.514,170.910,130.513,170.910,323.170,322.477,349.246,18.959,24.182,18.959 +3135,86.250,178.612,498.750,361.034,444.398,193.365,494.374,163.482,132.357,163.482,319.139,321.946,349.916,20.061,22.408,20.061 +3136,86.280,177.436,512.257,356.807,432.287,196.446,503.874,156.205,134.275,156.205,309.672,321.770,351.225,19.539,21.212,19.539 +3137,86.310,166.132,533.532,350.829,420.323,200.582,512.434,148.517,136.088,148.517,271.677,321.850,352.470,17.201,19.299,17.201 +3138,86.339,166.132,533.532,350.829,420.323,200.582,512.434,148.517,136.088,148.517,271.677,321.850,352.470,17.201,19.299,17.201 +3139,86.369,144.348,573.099,343.168,408.811,206.766,521.734,140.548,138.296,140.548,192.486,320.887,354.158,17.325,18.687,17.325 +3140,86.400,206.551,539.778,333.526,399.327,214.623,531.034,132.709,140.312,132.709,331.057,321.251,354.857,18.596,18.711,18.596 +3141,86.431,218.897,545.758,322.700,390.900,223.589,538.784,123.936,142.125,123.936,339.237,320.477,356.048,18.679,19.646,18.679 +3142,86.463,230.758,551.942,310.209,383.995,233.855,545.379,115.263,144.518,115.263,342.558,320.027,357.071,18.758,18.992,18.758 +3143,86.494,243.175,558.114,296.445,379.177,245.224,551.089,106.260,146.650,106.260,344.120,318.975,358.755,19.040,18.720,19.040 +3144,86.524,255.057,560.525,281.574,376.456,255.858,553.875,96.870,149.036,96.870,345.047,317.787,358.443,22.560,18.865,22.560 +3145,86.556,270.685,562.036,266.251,375.893,270.556,555.507,88.869,151.661,88.869,346.268,317.241,359.328,20.075,19.274,20.075 +3146,86.587,285.809,560.321,251.912,379.339,284.902,555.234,79.888,153.619,79.888,347.573,316.201,357.908,22.712,18.505,22.712 +3147,86.617,299.062,556.733,236.764,383.251,297.432,552.061,70.758,156.413,70.758,348.849,314.989,358.746,21.528,18.936,21.528 +3148,86.647,312.668,550.175,222.847,389.382,310.434,546.029,61.671,159.274,61.671,349.480,313.548,358.899,22.926,18.908,22.926 +3149,86.676,324.368,542.075,210.767,397.375,321.772,538.632,52.980,162.096,52.980,350.614,312.466,359.237,24.005,18.548,24.005 +3150,86.708,324.368,542.075,210.767,397.375,321.772,538.632,52.980,162.096,52.980,350.614,312.466,359.237,24.005,18.548,24.005 +3151,86.737,334.315,532.604,199.759,406.957,331.484,529.825,44.467,164.876,44.467,352.216,311.812,360.150,24.810,18.159,24.810 +3152,86.768,342.770,522.328,190.695,417.244,339.281,519.784,36.091,167.905,36.091,352.309,311.081,360.945,25.738,17.950,25.738 +3153,86.799,349.684,511.622,183.644,426.111,344.740,508.974,28.172,171.516,28.172,351.050,309.881,362.266,25.782,23.262,25.782 +3154,86.829,354.180,500.532,178.779,439.980,349.696,498.846,20.606,173.589,20.606,351.817,309.435,361.399,25.759,19.897,25.759 +3155,86.861,357.474,493.021,175.061,448.873,351.154,491.508,13.462,176.003,13.462,349.365,309.203,362.361,19.511,21.607,19.511 +3156,86.892,361.783,483.102,173.820,459.526,353.195,482.089,6.722,177.039,6.722,344.271,310.309,361.565,18.718,19.836,18.718 +3157,86.924,378.529,472.940,172.557,469.741,353.275,472.736,0.462,177.374,0.462,310.966,309.454,361.474,18.177,18.723,18.177 +3158,86.957,426.351,457.008,173.009,479.833,353.136,463.424,174.992,178.531,174.992,214.754,308.283,361.745,17.731,19.301,17.731 +3159,86.988,383.536,449.362,174.000,488.500,351.700,455.319,169.401,0.000,169.401,296.767,308.000,361.543,17.808,19.000,17.808 +3160,87.020,368.076,442.618,176.097,496.708,349.711,448.082,163.431,1.992,163.431,322.223,308.405,360.544,20.334,19.015,20.334 +3161,87.050,362.656,434.654,178.924,504.410,347.274,440.753,158.369,4.764,158.369,326.827,309.012,359.920,20.098,18.934,20.098 +3162,87.080,355.231,428.455,182.190,512.060,344.105,434.042,153.339,7.507,153.339,334.516,309.518,359.415,20.098,20.144,20.098 +3163,87.111,348.817,423.340,186.064,519.198,340.741,428.263,148.631,11.889,148.631,339.894,309.737,358.810,20.118,21.374,20.118 +3164,87.142,348.817,423.340,186.064,519.198,340.741,428.263,148.631,11.889,148.631,339.894,309.737,358.810,20.118,21.374,20.118 +3165,87.172,343.461,418.339,190.123,525.084,337.152,422.865,144.337,16.489,144.337,342.573,310.223,358.102,19.164,22.844,19.164 +3166,87.204,337.880,414.250,194.395,530.438,333.368,418.021,140.110,20.410,140.110,345.689,310.722,357.451,19.193,24.477,19.193 +3167,87.234,333.160,410.256,197.937,536.156,329.041,414.199,136.252,25.964,136.252,346.678,312.227,358.081,19.381,24.650,19.381 +3168,87.265,329.246,406.652,202.357,540.880,325.272,410.951,132.754,29.946,132.754,345.981,312.590,357.689,19.036,24.149,19.036 +3169,87.295,324.772,403.223,206.039,544.978,320.865,407.999,129.289,34.330,129.289,345.115,314.006,357.456,19.208,24.492,19.208 +3170,87.325,320.458,400.604,210.492,548.628,317.055,405.269,126.110,38.928,126.110,345.692,313.929,357.239,18.991,24.296,18.991 +3171,87.357,316.466,398.323,214.397,551.671,313.348,403.088,123.200,43.815,123.200,345.634,314.181,357.023,18.710,23.705,18.710 +3172,87.390,312.845,396.524,218.215,554.373,310.059,401.248,120.530,48.731,120.530,346.137,315.606,357.105,18.729,24.098,18.729 +3173,87.422,309.138,395.241,221.675,556.870,306.666,399.877,118.072,53.393,118.072,346.529,316.235,357.038,18.706,24.036,18.706 +3174,87.457,305.603,393.851,226.755,557.727,303.818,397.575,115.602,58.392,115.602,347.199,317.275,355.457,18.731,20.178,18.731 +3175,87.500,302.483,393.197,229.713,559.635,300.910,396.841,113.356,63.221,113.356,347.424,317.528,355.361,18.987,20.408,18.987 +3176,87.531,299.363,391.977,232.691,561.415,297.841,395.900,111.215,68.039,111.215,347.331,318.830,355.747,18.983,20.299,18.983 +3177,87.562,296.779,390.839,235.258,563.116,295.128,395.530,109.385,73.009,109.385,345.969,320.484,355.914,18.831,21.146,18.831 +3178,87.597,293.791,390.829,238.734,564.163,292.531,394.818,107.526,78.009,107.526,347.004,321.484,355.370,18.971,20.170,18.971 +3179,87.628,291.512,389.792,241.069,565.367,290.246,394.244,105.878,82.930,105.878,346.842,321.990,356.098,18.903,20.833,18.903 +3180,87.658,289.409,389.212,242.695,565.473,288.231,393.834,104.296,87.754,104.296,345.596,321.459,355.136,18.655,19.730,18.655 +3181,87.689,287.411,388.182,244.036,566.385,286.123,393.830,102.841,92.228,102.841,343.599,321.457,355.185,18.518,20.024,18.518 +3182,87.721,286.499,382.790,245.388,566.169,284.362,393.321,101.470,96.930,101.470,332.798,321.227,354.291,18.308,19.602,18.308 +3183,87.751,297.122,313.551,247.789,566.583,282.162,392.842,100.685,101.815,100.685,192.824,320.861,354.204,17.910,18.792,17.910 +3184,87.782,289.385,338.644,249.957,566.286,280.605,392.419,99.273,106.654,99.273,244.095,319.531,353.068,18.006,19.685,18.006 +3185,87.812,283.510,360.930,251.822,566.323,279.096,391.831,98.130,111.468,98.130,290.762,319.779,353.192,17.961,19.690,17.961 +3186,87.843,280.147,370.385,253.261,566.371,277.525,391.795,96.981,116.333,96.981,309.322,318.877,352.462,18.049,19.029,18.049 +3187,87.874,280.147,370.385,253.261,566.371,277.525,391.795,96.981,116.333,96.981,309.322,318.877,352.462,18.049,19.029,18.049 +3188,87.902,277.973,374.151,254.876,565.925,276.210,391.388,95.839,121.065,95.839,316.949,318.648,351.604,18.449,19.464,18.449 +3189,87.933,275.976,376.790,256.412,565.853,274.787,391.058,94.764,125.838,94.764,322.798,318.507,351.434,18.353,19.141,18.353 +3190,87.964,274.402,378.766,258.348,565.679,273.573,390.935,93.900,130.236,93.900,326.356,317.921,350.750,18.457,19.731,18.457 +3191,87.995,272.797,380.092,260.750,566.250,272.231,391.092,92.946,135.000,92.946,329.006,317.491,351.034,18.417,21.213,18.417 +3192,88.026,271.376,380.550,262.366,566.018,270.995,390.966,92.095,139.600,92.095,329.658,317.270,350.502,18.268,22.117,18.268 +3193,88.057,270.099,381.526,264.136,566.367,269.874,391.144,91.340,143.746,91.340,331.377,317.401,350.619,18.182,23.009,18.182 +3194,88.090,268.687,382.010,265.758,566.214,268.612,391.092,90.477,147.995,90.477,332.113,317.363,350.278,17.991,23.638,17.991 +3195,88.124,268.000,382.500,267.365,566.680,268.000,391.340,90.000,152.765,90.000,333.000,316.715,350.680,18.000,24.268,18.000 +3196,88.155,266.412,382.927,268.818,566.624,266.567,391.281,88.932,157.132,88.932,333.998,316.704,350.709,18.376,24.790,18.376 +3197,88.188,264.899,383.401,270.600,566.774,265.187,391.874,88.050,161.301,88.050,333.011,316.895,349.966,18.049,25.313,18.049 +3198,88.218,263.664,383.445,271.860,566.797,264.065,391.868,87.274,165.379,87.274,333.337,317.042,350.203,18.027,25.621,18.027 +3199,88.249,262.430,383.504,273.418,566.745,262.959,391.857,86.375,169.445,86.375,333.662,317.028,350.399,18.316,25.908,18.316 +3200,88.279,261.079,383.532,275.061,566.513,261.708,391.704,85.601,173.246,85.601,334.243,317.231,350.635,18.484,24.787,18.484 +3201,88.309,260.188,384.483,276.547,566.451,260.884,392.216,84.857,177.155,84.857,334.349,317.751,349.876,18.495,25.112,18.495 +3202,88.339,260.188,384.483,276.547,566.451,260.884,392.216,84.857,177.155,84.857,334.349,317.751,349.876,18.495,25.112,18.495 +3203,88.367,258.975,384.926,278.471,566.686,259.771,392.445,83.956,0.764,83.956,335.361,317.145,350.483,18.684,24.798,18.684 +3204,88.398,257.764,385.390,279.509,566.876,258.667,392.889,83.134,4.371,83.134,335.357,318.212,350.464,18.848,25.169,18.848 +3205,88.429,256.471,385.552,280.976,566.734,257.483,392.936,82.194,7.989,82.194,335.850,318.058,350.756,19.016,25.400,19.016 +3206,88.461,255.317,385.986,282.779,566.627,256.424,393.232,81.314,11.482,81.314,336.114,319.078,350.773,19.441,25.755,19.441 +3207,88.492,253.900,387.027,284.253,566.326,255.016,393.597,80.356,14.808,80.356,337.044,319.384,350.372,19.125,25.259,19.125 +3208,88.524,252.508,387.562,285.837,566.205,253.710,393.954,79.357,17.879,79.357,337.436,320.327,350.443,19.418,25.420,19.418 +3209,88.557,251.285,388.066,287.343,566.209,252.585,394.310,78.232,21.038,78.232,337.993,320.855,350.749,19.865,25.846,19.865 +3210,88.589,249.595,389.164,289.323,565.516,250.838,394.604,77.125,24.050,77.125,339.223,321.261,350.382,19.302,25.313,19.302 +3211,88.621,248.441,389.265,290.977,565.047,249.828,394.813,75.964,26.787,75.964,338.822,322.009,350.261,20.130,24.926,20.130 +3212,88.651,246.929,390.064,293.016,564.471,248.337,395.238,74.778,29.342,74.778,339.329,322.756,350.053,20.427,24.037,20.427 +3213,88.681,245.426,391.055,295.103,563.639,246.810,395.743,73.548,31.845,73.548,339.622,323.303,349.398,20.726,24.276,20.726 +3214,88.711,243.847,392.008,297.282,563.324,245.270,396.461,72.272,33.608,72.272,340.204,323.113,349.553,21.065,23.082,21.065 +3215,88.742,241.945,392.036,299.122,562.916,243.728,397.211,70.984,35.301,70.984,338.475,323.520,349.422,21.408,23.333,21.408 +3216,88.774,241.945,392.036,299.122,562.916,243.728,397.211,70.984,35.301,70.984,338.475,323.520,349.422,21.408,23.333,21.408 +3217,88.803,240.127,392.511,301.755,561.986,242.052,397.683,69.578,36.694,69.578,338.579,323.614,349.617,21.534,22.559,21.534 +3218,88.834,238.362,393.155,303.783,561.469,240.462,398.406,68.199,37.227,68.199,338.523,323.401,349.834,21.726,21.730,21.726 +3219,88.865,236.694,394.491,306.191,560.308,238.707,399.177,66.755,37.654,66.755,339.170,323.816,349.371,22.101,21.191,22.101 +3220,88.896,234.493,394.384,308.293,559.312,237.063,399.964,65.277,37.455,65.277,336.779,324.004,349.066,22.192,21.345,22.192 +3221,88.926,232.431,395.526,310.704,558.208,235.119,400.988,63.794,36.624,63.794,336.700,324.216,348.875,22.094,20.961,22.094 +3222,88.957,230.693,396.453,313.176,557.045,233.501,401.778,62.199,35.283,62.199,336.973,323.758,349.012,22.741,20.875,22.741 +3223,88.989,228.958,397.804,315.157,555.742,231.791,402.848,60.676,33.354,60.676,336.695,324.515,348.264,23.067,21.749,23.067 +3224,89.021,226.765,398.441,317.744,554.283,230.014,403.856,59.036,30.504,59.036,335.623,324.339,348.253,23.152,20.945,23.152 +3225,89.051,224.639,399.551,320.289,551.994,228.002,404.810,57.407,27.663,57.407,334.951,324.299,347.436,23.577,22.464,23.577 +3226,89.081,222.010,400.179,322.954,550.936,226.198,406.288,55.568,23.250,55.568,333.213,323.674,348.027,23.675,22.133,23.675 +3227,89.112,219.765,401.673,326.038,549.337,224.367,407.946,53.734,19.051,53.734,332.725,322.962,348.285,24.042,22.726,24.042 +3228,89.142,217.224,403.217,328.536,547.442,222.279,409.638,51.789,14.597,51.789,331.665,322.847,348.008,24.592,22.641,24.592 +3229,89.173,217.224,403.217,328.536,547.442,222.279,409.638,51.789,14.597,51.789,331.665,322.847,348.008,24.592,22.641,24.592 +3230,89.203,214.514,404.915,331.344,544.930,220.030,411.379,49.525,9.520,49.525,330.696,322.876,347.692,24.626,22.279,24.626 +3231,89.233,210.954,407.014,334.431,542.507,217.303,413.759,46.736,3.900,46.736,329.532,322.229,348.059,24.844,22.856,24.844 +3232,89.264,208.629,408.870,337.514,539.426,215.387,415.561,44.715,178.122,44.715,328.846,321.483,347.867,24.991,23.364,24.991 +3233,89.294,205.262,412.204,340.665,535.728,212.402,418.527,41.532,172.333,41.532,328.374,322.152,347.449,25.409,23.500,25.409 +3234,89.324,202.712,415.116,343.733,531.955,210.168,421.121,38.853,166.293,38.853,327.942,322.095,347.088,25.461,23.956,25.461 +3235,89.356,199.473,418.838,346.938,527.704,207.470,424.550,35.538,160.017,35.538,327.237,322.178,346.893,25.691,24.691,25.691 +3236,89.388,195.926,423.311,350.000,522.500,204.232,428.453,31.759,153.435,31.759,327.352,321.547,346.888,25.953,24.150,25.953 +3237,89.419,193.211,427.674,353.154,516.991,201.801,432.283,28.217,146.567,28.217,327.340,321.458,346.836,25.661,24.817,25.661 +3238,89.449,189.857,433.693,356.002,510.696,198.713,437.606,23.839,140.064,23.839,327.458,321.503,346.821,26.186,24.786,26.186 +3239,89.480,187.268,439.651,358.754,504.209,196.474,442.924,19.573,133.229,19.573,327.325,320.713,346.866,26.089,25.429,26.089 +3240,89.511,183.912,449.177,360.595,497.204,193.270,451.705,15.116,126.193,15.116,327.415,322.399,346.801,19.463,25.569,19.463 +3241,89.543,182.300,456.600,362.504,488.608,191.661,458.302,10.305,118.951,10.305,327.987,320.914,347.016,18.783,25.525,18.783 +3242,89.574,182.300,456.600,362.504,488.608,191.661,458.302,10.305,118.951,10.305,327.987,320.914,347.016,18.783,25.525,18.783 +3243,89.602,181.408,464.557,363.729,479.800,190.737,465.368,4.970,112.380,4.970,328.456,320.319,347.184,18.625,25.565,18.625 +3244,89.633,181.502,472.705,363.854,470.326,190.410,472.629,179.516,105.068,179.516,329.098,319.953,346.915,18.067,24.995,18.067 +3245,89.664,182.055,481.964,363.201,460.027,190.478,480.973,173.290,97.765,173.290,331.011,319.047,347.974,18.402,24.996,18.402 +3246,89.695,184.005,492.155,361.131,450.013,191.649,490.363,166.809,90.682,166.809,332.733,318.144,348.436,20.050,23.713,20.050 +3247,89.728,186.873,501.533,357.817,439.619,193.807,499.028,160.136,83.454,160.136,334.132,317.930,348.877,19.593,23.892,19.593 +3248,89.759,191.287,511.056,353.565,428.984,197.492,507.918,153.172,76.149,153.172,335.889,317.956,349.796,20.053,24.592,20.053 +3249,89.791,196.434,519.943,347.803,418.493,201.939,516.326,146.689,68.749,146.689,338.079,317.555,351.253,19.102,24.853,19.102 +3250,89.823,203.469,529.343,340.589,409.497,208.134,525.291,139.028,61.390,139.028,339.507,314.606,351.865,19.373,25.459,19.373 +3251,89.856,211.140,537.567,331.083,399.158,215.331,532.836,131.532,54.502,131.532,340.993,316.071,353.634,19.228,24.927,19.228 +3252,89.887,220.497,544.818,319.664,391.081,223.631,540.067,123.412,46.736,123.412,343.109,316.296,354.490,18.897,26.215,18.897 +3253,89.917,231.386,551.377,309.086,384.474,233.926,545.915,114.934,40.515,114.934,344.112,314.238,356.159,18.868,24.687,18.868 +3254,89.947,243.055,556.817,295.077,380.885,244.564,551.800,106.736,33.690,106.736,345.963,313.406,356.442,19.086,20.801,19.086 +3255,89.977,254.015,559.779,281.300,377.900,254.742,554.532,97.883,26.565,97.883,346.616,313.497,357.211,22.341,20.125,22.341 +3256,90.007,254.015,559.779,281.300,377.900,254.742,554.532,97.883,26.565,97.883,346.616,313.497,357.211,22.341,20.125,22.341 +3257,90.036,269.000,561.000,266.844,377.936,269.000,556.468,90.000,19.714,90.000,348.000,312.862,357.064,22.000,18.514,22.000 +3258,90.067,282.009,560.988,253.028,379.045,281.268,555.912,81.703,12.995,81.703,347.924,312.929,358.183,22.491,18.364,22.491 +3259,90.098,294.774,557.275,239.595,382.208,293.538,553.136,73.365,6.234,73.365,349.794,312.185,358.433,20.863,18.378,20.863 +3260,90.130,307.874,552.276,226.531,387.419,305.979,548.234,64.875,179.484,64.875,349.734,311.077,358.664,22.341,17.927,22.341 +3261,90.162,319.395,545.470,215.220,393.781,317.084,541.951,56.694,172.972,56.694,351.115,312.320,359.535,23.525,18.490,23.525 +3262,90.192,329.702,537.752,204.898,401.656,326.681,534.309,48.738,166.472,48.738,350.901,311.904,360.062,24.459,18.539,24.459 +3263,90.224,338.145,528.362,196.082,410.727,335.016,525.658,40.840,159.997,40.840,352.263,311.671,360.535,25.389,18.641,25.389 +3264,90.255,345.370,518.645,188.900,420.800,341.827,516.310,33.384,153.435,33.384,352.011,311.261,360.497,25.504,18.336,25.504 +3265,90.286,350.679,508.581,183.330,431.280,347.071,506.802,26.250,147.024,26.250,352.470,312.071,360.515,25.579,19.674,25.579 +3266,90.316,354.559,498.559,179.086,441.826,350.649,497.187,19.342,140.694,19.342,352.143,312.326,360.431,25.726,19.878,25.726 +3267,90.346,356.272,491.798,176.161,452.120,352.386,490.918,12.758,134.444,12.758,352.916,312.595,360.885,19.322,20.031,19.322 +3268,90.376,356.272,491.798,176.161,452.120,352.386,490.918,12.758,134.444,12.758,352.916,312.595,360.885,19.322,20.031,19.322 +3269,90.406,357.777,482.089,174.516,461.792,353.732,481.624,6.557,127.910,6.557,352.472,313.021,360.616,19.253,20.276,19.253 +3270,90.437,358.034,473.086,173.463,470.977,353.737,473.036,0.671,121.827,0.671,351.976,313.429,360.571,18.311,19.805,18.311 +3271,90.468,357.779,464.352,173.549,479.980,353.377,464.719,175.236,115.574,175.236,352.113,313.589,360.949,18.934,19.954,18.934 +3272,90.499,356.597,456.218,174.844,488.333,352.243,456.987,169.992,109.128,169.992,351.452,313.736,360.295,19.638,19.442,19.638 +3273,90.530,354.803,448.386,176.614,495.914,350.588,449.510,165.069,102.633,165.069,351.387,313.901,360.112,21.644,19.499,21.644 +3274,90.560,352.454,442.092,178.783,502.696,348.733,443.396,160.679,96.263,160.679,352.110,313.726,359.996,20.663,19.190,20.663 +3275,90.592,349.768,436.646,180.500,509.500,345.979,438.281,156.658,90.000,156.658,352.054,313.000,360.308,19.533,19.000,19.533 +3276,90.625,348.085,431.712,183.162,514.715,343.858,433.875,152.904,83.895,152.904,350.261,314.166,359.759,19.234,19.557,19.234 +3277,90.658,345.253,426.907,186.203,519.615,341.353,429.230,149.224,77.276,149.224,350.019,314.124,359.099,19.742,19.698,19.742 +3278,90.690,342.692,423.038,188.997,523.954,338.894,425.570,146.310,70.761,146.310,349.461,313.738,358.590,19.137,19.834,19.137 +3279,90.721,340.008,418.989,191.980,527.741,336.277,421.757,143.433,64.011,143.433,348.777,314.348,358.069,19.042,19.787,19.042 +3280,90.752,337.752,415.696,194.592,530.995,334.005,418.754,140.771,57.750,140.771,348.281,314.611,357.953,19.429,20.096,19.429 +3281,90.783,335.531,413.103,196.468,533.307,331.813,416.379,138.621,50.906,138.621,347.791,313.453,357.701,18.795,20.130,18.795 +3282,90.813,333.316,410.806,197.410,536.619,329.123,414.778,136.548,44.226,136.548,347.273,312.666,358.825,19.410,23.743,19.410 +3283,90.844,331.325,408.823,199.541,538.647,327.064,413.107,134.850,37.569,134.850,345.791,313.208,357.876,19.060,23.657,19.060 +3284,90.875,331.325,408.823,199.541,538.647,327.064,413.107,134.850,37.569,134.850,345.791,313.208,357.876,19.060,23.657,19.060 +3285,90.904,330.104,407.549,201.333,539.947,326.076,411.788,133.531,31.065,133.531,345.970,313.323,357.665,19.321,24.108,19.321 +3286,90.934,328.423,405.739,202.853,540.933,324.546,410.027,132.115,24.305,132.115,345.871,313.012,357.433,19.204,24.813,19.204 +3287,90.965,327.898,404.473,204.374,541.892,323.732,409.235,131.186,17.850,131.186,344.210,312.436,356.864,19.661,24.377,19.661 +3288,90.996,327.525,403.156,205.278,542.384,323.015,408.440,130.486,9.130,130.486,342.736,311.996,356.631,19.404,23.590,19.404 +3289,91.028,327.221,402.121,205.564,543.146,322.164,408.151,129.987,2.726,129.987,340.980,311.837,356.720,19.377,22.403,19.377 +3290,91.064,327.780,400.637,205.799,543.119,321.902,407.721,129.685,176.009,129.685,338.263,312.775,356.674,19.305,20.903,19.305 +3291,91.096,328.583,399.555,205.373,542.857,321.788,407.756,129.644,168.818,129.644,335.311,313.001,356.612,19.295,19.780,19.295 +3292,91.127,330.934,397.779,204.823,542.465,322.259,408.189,129.806,161.478,129.806,329.567,313.075,356.669,19.846,19.657,19.846 +3293,91.159,334.164,394.935,204.287,542.034,322.664,408.565,130.156,154.072,130.156,321.026,313.567,356.693,20.182,19.055,20.182 +3294,91.191,340.796,387.947,203.213,541.565,322.676,408.656,131.186,146.547,131.186,302.348,314.246,357.383,17.874,19.413,17.874 +3295,91.224,372.794,355.121,202.148,541.171,323.436,409.767,132.089,139.086,132.089,210.350,314.770,357.625,18.002,19.396,18.002 +3296,91.255,341.522,393.131,200.783,539.807,325.056,410.908,132.807,131.634,132.807,309.564,316.071,358.027,18.227,18.851,18.227 +3297,91.286,331.137,407.664,198.839,538.207,326.424,412.530,134.091,124.340,134.091,344.531,316.222,358.079,18.270,20.504,18.270 +3298,91.316,331.074,411.536,198.052,537.531,328.382,414.158,135.751,116.787,135.751,351.374,316.618,358.889,18.692,20.194,18.692 +3299,91.346,332.813,413.166,195.680,535.239,329.937,415.812,137.393,109.367,137.393,351.509,316.289,359.326,19.577,19.086,19.577 +3300,91.377,335.216,415.316,193.445,532.403,332.013,418.042,139.600,101.703,139.600,350.875,316.335,359.288,19.233,19.402,19.233 +3301,91.408,335.216,415.316,193.445,532.403,332.013,418.042,139.600,101.703,139.600,350.875,316.335,359.288,19.233,19.402,19.233 +3302,91.437,337.885,417.923,191.673,529.584,334.457,420.589,142.125,94.086,142.125,350.560,315.981,359.246,18.857,18.667,18.857 +3303,91.469,340.725,421.194,189.294,525.834,337.191,423.688,144.782,86.609,144.782,350.816,314.929,359.467,19.223,19.403,19.223 +3304,91.504,344.015,425.225,187.337,521.241,340.354,427.516,147.966,79.046,147.966,350.227,314.771,358.864,19.645,18.622,19.645 +3305,91.535,346.601,428.492,184.750,516.250,342.514,430.771,150.852,71.565,150.852,349.480,313.382,358.839,19.416,19.606,19.416 +3306,91.566,349.502,432.967,182.589,510.478,345.184,435.047,154.282,63.947,154.282,348.855,312.618,358.441,20.354,18.926,20.354 +3307,91.597,352.596,438.257,180.191,504.851,347.617,440.237,158.314,55.814,158.314,348.187,311.751,358.904,19.894,19.401,19.894 +3308,91.627,354.951,444.490,177.126,497.886,349.617,446.186,162.362,47.872,162.362,348.902,310.103,360.095,20.101,20.417,20.101 +3309,91.657,357.294,451.458,174.912,489.853,351.498,452.789,167.069,40.601,167.069,348.912,310.536,360.805,19.572,20.066,19.572 +3310,91.689,359.032,458.285,174.141,481.483,352.977,459.136,172.000,33.111,172.000,348.184,309.224,360.412,20.549,20.831,20.549 +3311,91.720,362.222,467.096,173.340,472.844,353.843,467.501,177.236,26.169,177.236,344.323,308.160,361.101,18.785,21.780,18.785 +3312,91.750,369.297,476.502,172.998,464.393,353.405,475.785,2.583,19.807,2.583,329.657,308.347,361.474,18.568,20.906,18.568 +3313,91.781,400.777,491.084,174.440,455.770,352.880,484.275,8.091,14.273,8.091,264.595,307.326,361.352,18.224,20.318,18.224 +3314,91.811,366.639,496.922,176.818,445.968,351.496,493.277,13.536,8.893,13.536,330.646,309.063,361.798,18.994,20.385,18.994 +3315,91.841,354.333,501.876,179.205,436.580,349.014,499.790,21.413,4.010,21.413,350.904,307.279,362.331,25.629,22.300,25.629 +3316,91.874,354.333,501.876,179.205,436.580,349.014,499.790,21.413,4.010,21.413,350.904,307.279,362.331,25.629,22.300,25.629 +3317,91.903,350.465,510.152,183.913,427.789,345.983,507.864,27.051,178.162,27.051,351.448,308.323,361.513,25.126,21.305,25.126 +3318,91.933,344.679,519.562,189.817,418.027,340.930,517.026,34.077,171.101,34.077,352.215,309.063,361.268,25.555,18.560,25.555 +3319,91.964,336.738,530.370,197.708,408.943,333.610,527.507,42.466,164.578,42.466,352.120,309.408,360.601,24.881,18.083,24.881 +3320,91.995,328.161,539.095,207.194,399.971,325.320,535.704,50.042,158.102,50.042,350.963,310.483,359.810,23.949,18.448,23.949 +3321,92.026,318.220,547.038,217.906,391.685,315.576,542.824,57.894,151.736,57.894,349.921,311.548,359.871,23.120,18.809,23.120 +3322,92.058,307.077,553.615,229.958,385.159,304.792,548.538,65.772,145.214,65.772,348.263,312.691,359.397,21.795,19.084,21.795 +3323,92.091,294.107,558.741,242.830,379.956,292.444,553.033,73.765,139.054,73.765,348.201,313.659,360.092,21.560,18.683,21.560 +3324,92.123,279.795,561.978,256.037,376.568,278.782,555.193,81.511,133.002,81.511,346.328,314.940,360.050,23.191,18.546,23.191 +3325,92.155,269.487,562.513,269.057,375.057,269.582,555.067,90.728,127.131,90.728,345.087,315.578,359.978,22.973,18.542,22.973 +3326,92.186,253.354,561.690,282.417,375.965,254.532,553.529,98.213,120.713,98.213,342.962,316.052,359.453,22.203,20.906,22.203 +3327,92.216,241.254,561.682,293.977,378.040,244.698,550.585,107.241,115.394,107.241,335.557,316.598,358.796,18.673,20.493,18.673 +3328,92.247,203.775,610.541,306.450,382.775,234.227,545.830,115.201,109.483,115.201,213.537,317.015,356.575,18.362,20.056,18.362 +3329,92.277,212.098,559.826,318.412,389.353,224.721,540.302,122.883,104.036,122.883,308.766,317.722,355.263,19.647,20.858,19.647 +3330,92.308,205.860,545.591,329.206,396.454,216.400,533.263,130.528,98.059,130.528,322.144,317.628,354.581,19.396,22.668,19.396 +3331,92.340,205.860,545.591,329.206,396.454,216.400,533.263,130.528,98.059,130.528,322.144,317.628,354.581,19.396,22.668,19.396 +3332,92.369,200.836,533.589,338.291,405.062,209.317,525.937,137.939,91.975,137.939,330.618,316.605,353.463,19.469,23.331,19.469 +3333,92.401,196.118,522.817,345.506,414.716,203.172,517.890,145.072,85.950,145.072,334.327,316.835,351.535,19.158,23.596,19.158 +3334,92.436,191.960,513.172,351.221,424.755,198.168,509.858,151.905,79.992,151.905,336.120,317.622,350.194,19.209,23.577,19.209 +3335,92.478,186.443,495.297,359.741,445.103,192.319,493.648,164.332,68.199,164.332,336.419,318.653,348.624,19.832,24.697,19.832 +3336,92.508,186.443,495.297,359.741,445.103,192.319,493.648,164.332,68.199,164.332,336.419,318.653,348.624,19.832,24.697,19.832 +3337,92.538,184.467,486.306,361.804,455.577,190.568,485.273,170.395,62.241,170.395,335.203,319.409,347.579,19.052,24.079,19.052 +3338,92.568,183.885,477.924,363.505,464.825,190.219,477.462,175.823,56.706,175.823,334.788,320.886,347.491,18.781,23.417,18.781 +3339,92.603,183.512,470.386,363.613,474.004,190.266,470.520,1.134,51.024,1.134,333.251,321.593,346.763,18.432,21.485,18.432 +3340,92.634,183.583,463.200,363.406,482.112,191.056,463.975,5.916,45.370,5.916,331.577,323.182,346.603,19.038,20.875,19.038 +3341,92.664,184.168,456.576,362.444,489.774,191.931,457.987,10.305,39.912,10.305,331.117,324.320,346.897,19.499,19.586,19.499 +3342,92.695,184.413,450.428,361.412,496.125,193.299,452.699,14.335,35.049,14.335,328.918,325.398,347.262,18.925,19.623,18.925 +3343,92.726,184.966,444.539,359.802,501.976,194.801,447.770,18.189,31.232,18.189,326.648,325.493,347.353,18.688,22.541,18.688 +3344,92.758,178.823,437.598,358.958,505.493,196.237,444.370,21.251,27.255,21.251,310.254,326.065,347.622,17.708,19.935,17.708 +3345,92.791,123.474,408.537,357.780,509.867,197.883,441.448,23.860,23.868,23.860,185.088,324.818,347.814,17.552,19.860,17.552 +3346,92.823,163.163,419.252,356.172,513.533,200.357,435.931,24.153,20.202,24.153,266.327,324.666,347.853,22.635,20.675,22.635 +3347,92.855,180.395,424.227,354.525,516.230,201.092,434.433,26.247,16.538,26.247,301.422,324.712,347.576,24.890,20.060,24.890 +3348,92.886,189.248,422.263,352.898,518.978,203.153,430.670,31.155,12.095,31.155,315.169,324.561,347.667,29.275,20.254,29.275 +3349,92.916,192.824,422.794,351.069,521.446,203.683,429.310,30.964,7.125,30.964,322.246,324.227,347.574,25.896,20.466,25.896 +3350,92.946,195.059,421.696,349.517,524.118,204.820,427.886,32.381,1.123,32.381,324.353,323.212,347.469,25.994,21.663,25.994 +3351,92.976,197.385,420.923,348.468,526.193,206.130,426.753,33.690,174.094,33.690,326.164,323.309,347.184,26.071,22.432,26.071 +3352,93.008,197.385,420.923,348.468,526.193,206.130,426.753,33.690,174.094,33.690,326.164,323.309,347.184,26.071,22.432,26.071 +3353,93.037,199.331,418.737,347.145,527.824,207.425,424.518,35.538,167.125,35.538,327.586,323.124,347.480,25.691,23.954,25.691 +3354,93.068,199.727,417.873,345.988,528.847,207.732,423.731,36.193,160.105,36.193,327.457,322.689,347.297,25.746,24.386,25.746 +3355,93.100,200.700,417.400,344.868,529.681,208.261,423.071,36.870,152.700,36.870,327.600,322.082,346.503,25.800,24.824,25.800 +3356,93.131,200.769,416.804,344.218,530.094,208.277,422.510,37.235,145.244,37.235,327.796,321.543,346.656,25.827,25.017,25.827 +3357,93.162,200.918,416.795,343.601,530.111,208.140,422.297,37.304,137.842,37.304,328.021,320.942,346.179,25.833,24.874,25.833 +3358,93.193,201.187,417.122,343.282,530.082,208.218,422.466,37.235,130.170,37.235,327.637,321.097,345.299,25.827,24.830,25.827 +3359,93.224,200.860,417.520,343.328,529.708,207.775,422.706,36.870,122.300,36.870,328.000,321.149,345.287,25.800,24.590,25.800 +3360,93.255,201.020,417.640,343.572,529.442,207.869,422.777,36.870,114.444,36.870,328.000,321.773,345.123,25.800,24.414,25.800 +3361,93.286,200.099,419.444,344.425,527.978,206.726,424.161,35.446,106.621,35.446,328.503,320.960,344.771,25.683,24.284,25.683 +3362,93.315,199.134,420.435,345.187,526.684,205.621,424.889,34.472,98.820,34.472,329.613,321.225,345.350,25.593,23.307,25.593 +3363,93.346,198.737,421.626,346.204,525.470,205.039,425.816,33.615,90.971,33.615,330.319,321.157,345.455,25.523,21.810,25.523 +3364,93.376,198.737,421.626,346.204,525.470,205.039,425.816,33.615,90.971,33.615,330.319,321.157,345.455,25.523,21.810,25.523 +3365,93.405,196.836,424.982,348.413,523.010,203.146,428.798,31.159,83.290,31.159,331.367,322.131,346.114,25.413,22.550,25.413 +3366,93.437,195.915,426.523,350.260,520.304,202.379,430.216,29.745,75.500,29.745,331.297,322.376,346.185,25.551,21.883,25.551 +3367,93.468,193.972,430.186,351.526,517.285,200.396,433.469,27.072,67.751,27.072,331.004,322.595,345.433,25.130,19.941,25.130 +3368,93.499,191.637,433.199,353.981,513.511,198.921,436.509,24.444,60.177,24.444,330.049,323.358,346.051,25.656,20.368,25.656 +3369,93.530,190.241,436.897,356.432,509.286,197.546,439.818,21.801,52.549,21.801,330.909,323.869,346.644,25.626,19.931,25.626 +3370,93.560,186.650,444.550,358.500,504.000,194.675,447.225,18.435,45.000,18.435,329.826,324.562,346.744,18.974,19.092,18.974 +3371,93.590,184.335,448.929,360.459,497.752,193.363,451.384,15.213,37.539,15.213,328.103,325.646,346.815,19.037,19.648,19.037 +3372,93.622,183.051,455.655,362.936,490.720,192.353,457.455,10.954,29.908,10.954,328.643,325.350,347.592,19.002,22.346,19.002 +3373,93.652,181.310,461.806,364.500,484.000,191.636,462.993,6.557,22.479,6.557,327.476,324.457,348.264,19.253,22.240,19.253 +3374,93.682,180.619,468.651,365.222,476.693,191.080,469.087,2.386,15.343,2.386,327.674,324.770,348.615,18.401,20.415,18.401 +3375,93.712,179.786,475.958,365.211,468.059,191.019,475.482,177.574,8.341,177.574,326.216,325.122,348.701,17.628,19.748,17.628 +3376,93.742,180.014,484.336,364.066,458.992,190.952,482.884,172.437,1.517,172.437,327.437,324.284,349.506,18.267,18.384,18.267 +3377,93.774,180.014,484.336,364.066,458.992,190.952,482.884,172.437,1.517,172.437,327.437,324.284,349.506,18.267,18.384,18.267 +3378,93.803,179.435,493.537,362.996,449.461,192.674,490.499,167.078,174.550,167.078,323.204,324.058,350.371,18.624,18.569,18.624 +3379,93.834,183.014,502.132,360.304,439.605,194.753,498.098,161.037,167.638,161.037,326.322,323.994,351.147,18.398,19.081,18.398 +3380,93.865,184.716,512.325,356.356,429.628,197.821,506.186,154.901,161.030,154.901,323.137,323.513,352.081,18.507,19.150,18.507 +3381,93.895,190.107,521.429,350.870,419.770,201.824,514.205,148.346,154.352,148.346,325.332,322.997,352.862,18.686,18.954,18.686 +3382,93.927,196.022,530.373,344.019,410.238,206.789,521.840,141.601,147.750,141.601,326.260,322.222,353.736,18.621,19.472,18.621 +3383,93.959,203.321,538.883,335.783,401.475,212.828,529.185,134.433,141.250,134.433,327.381,321.398,354.543,18.300,19.059,18.300 +3384,93.991,213.633,545.311,326.000,393.500,220.348,536.516,127.360,135.000,127.360,333.441,320.319,355.572,18.922,19.092,18.922 +3385,94.022,223.484,551.568,315.219,386.476,228.720,542.370,119.650,128.660,119.650,335.379,319.688,356.547,18.678,19.366,18.678 +3386,94.053,234.330,557.124,303.574,380.915,238.204,547.530,111.987,122.285,111.987,337.248,318.749,357.942,18.920,19.271,18.920 +3387,94.084,246.043,561.784,290.676,377.146,248.477,551.862,103.782,115.860,103.782,339.044,317.116,359.477,19.406,19.467,19.406 +3388,94.114,256.980,563.705,277.612,375.217,257.910,554.168,95.572,109.573,95.572,340.869,316.417,360.035,22.382,19.933,22.382 +3389,94.145,269.600,564.753,264.904,375.221,269.224,555.258,87.734,103.755,87.734,341.129,314.779,360.134,21.864,19.922,21.864 +3390,94.175,269.600,564.753,264.904,375.221,269.224,555.258,87.734,103.755,87.734,341.129,314.779,360.134,21.864,19.922,21.864 +3391,94.204,283.496,563.771,250.827,376.912,281.874,554.783,79.771,97.450,79.771,342.846,313.904,361.114,22.812,19.648,22.812 +3392,94.236,298.244,560.094,237.455,380.086,295.438,551.495,71.932,91.245,71.932,343.791,312.252,361.881,21.036,19.995,21.036 +3393,94.269,311.800,554.100,224.314,386.347,307.901,546.302,63.435,85.261,63.435,343.460,311.171,360.898,22.808,19.074,22.808 +3394,94.302,323.135,546.869,212.945,393.587,318.425,540.059,55.324,79.131,55.324,344.375,310.237,360.935,23.596,19.170,23.596 +3395,94.334,332.748,537.888,201.801,402.122,327.542,532.243,47.322,73.124,47.322,346.437,310.251,361.796,24.872,20.429,24.872 +3396,94.367,341.628,528.531,194.098,412.026,335.981,523.862,39.584,66.869,39.584,346.568,310.273,361.222,25.342,19.339,25.342 +3397,94.399,348.262,518.178,187.329,421.748,342.488,514.559,32.074,60.489,32.074,347.893,310.485,361.521,25.873,20.755,25.873 +3398,94.431,353.805,507.922,182.110,431.479,347.195,504.859,24.864,54.224,24.864,346.703,309.681,361.273,26.135,22.717,26.135 +3399,94.463,356.410,500.337,178.318,441.075,349.787,498.175,18.088,48.106,18.088,347.514,308.842,361.448,19.376,23.973,19.376 +3400,94.494,359.711,490.344,175.558,451.133,352.414,488.845,11.603,42.241,11.603,346.755,308.690,361.654,19.494,22.474,19.494 +3401,94.526,360.718,480.518,173.815,461.373,353.347,479.830,5.335,35.886,5.335,346.136,308.920,360.941,18.945,21.125,18.945 +3402,94.559,361.036,471.164,173.474,471.039,353.761,471.219,179.563,29.694,179.563,346.013,308.720,360.562,18.267,20.978,18.267 +3403,94.591,361.987,462.060,173.898,479.411,353.299,462.988,173.904,23.257,173.904,342.789,309.232,360.263,19.443,21.526,19.443 +3404,94.622,362.346,453.231,175.029,488.081,352.064,455.287,168.690,16.744,168.690,339.085,309.091,360.057,19.808,20.970,19.808 +3405,94.652,363.465,444.317,176.486,496.264,350.193,448.177,163.784,10.081,163.784,332.804,309.459,360.448,20.409,20.173,20.409 +3406,94.682,364.030,435.908,178.624,503.358,347.814,442.013,159.368,3.311,159.368,325.255,309.813,359.910,19.763,19.142,19.763 +3407,94.713,364.352,427.755,180.890,509.595,345.329,436.622,155.010,176.693,155.010,317.770,310.464,359.746,20.547,18.844,20.547 +3408,94.743,363.188,420.554,183.579,515.122,342.811,431.815,151.074,169.947,151.074,312.761,310.903,359.323,20.729,19.384,20.729 +3409,94.775,363.188,420.554,183.579,515.122,342.811,431.815,151.074,169.947,151.074,312.761,310.903,359.323,20.729,19.384,20.729 +3410,94.805,367.258,409.840,185.989,520.190,339.550,426.993,148.241,163.016,148.241,294.070,311.585,359.245,17.977,19.495,17.977 +3411,94.836,370.142,399.856,188.952,525.295,336.689,423.171,145.125,155.556,145.125,277.643,312.173,359.194,17.974,19.366,17.974 +3412,94.867,390.725,375.874,191.386,528.810,333.924,419.849,142.253,148.891,142.253,215.153,313.335,358.823,18.034,19.146,18.034 +3413,94.898,391.012,366.098,193.681,532.453,331.265,417.222,139.447,141.962,139.447,201.639,313.118,358.908,17.914,19.037,17.914 +3414,94.929,341.506,403.885,196.660,535.176,329.687,415.027,136.689,134.657,136.689,325.939,314.695,358.426,18.741,18.647,18.741 +3415,94.960,331.677,408.195,198.505,538.004,326.858,413.079,134.613,127.247,134.613,344.425,315.822,358.148,18.609,19.190,18.609 +3416,94.991,328.986,407.100,201.322,540.686,325.165,411.234,132.748,120.050,132.748,346.993,316.427,358.250,18.787,19.401,18.787 +3417,95.025,326.078,406.759,203.835,543.141,323.382,409.848,131.103,112.834,131.103,349.864,316.849,358.064,19.100,20.567,19.100 +3418,95.056,324.199,405.909,205.000,544.500,321.806,408.764,129.979,105.945,129.979,350.670,317.440,358.120,19.110,19.230,19.110 +3419,95.087,323.081,404.357,206.570,545.860,320.377,407.713,128.863,98.556,128.863,349.335,317.795,357.955,18.884,18.622,18.884 +3420,95.118,321.615,403.423,207.562,547.001,318.975,406.818,127.875,91.193,127.875,349.508,316.285,358.109,18.857,19.079,18.857 +3421,95.148,320.950,402.826,208.487,547.716,318.380,406.219,127.147,83.884,127.147,349.779,316.936,358.291,19.275,19.993,19.275 +3422,95.179,320.880,402.160,209.590,548.361,318.020,405.974,126.870,76.729,126.870,348.400,317.276,357.935,19.200,20.338,19.200 +3423,95.210,320.102,402.097,210.871,548.665,317.676,405.380,126.469,68.962,126.469,349.257,317.912,357.421,19.090,19.959,19.090 +3424,95.240,320.432,401.343,211.373,547.998,317.780,404.937,126.422,61.854,126.422,347.653,316.356,356.586,18.867,21.104,18.867 +3425,95.272,320.432,401.343,211.373,547.998,317.780,404.937,126.422,61.854,126.422,347.653,316.356,356.586,18.867,21.104,18.867 +3426,95.300,320.998,401.378,209.126,548.324,317.657,405.852,126.747,54.137,126.747,347.018,315.488,358.186,18.718,23.785,18.718 +3427,95.332,321.691,401.508,208.714,547.862,318.222,406.086,127.147,46.848,127.147,346.783,315.023,358.271,18.865,24.029,18.865 +3428,95.363,322.439,401.795,208.103,547.045,318.811,406.495,127.666,39.352,127.666,345.939,314.442,357.813,18.804,24.126,18.804 +3429,95.395,323.880,402.302,206.715,545.661,320.017,407.153,128.530,32.330,128.530,345.464,314.835,357.864,19.021,24.654,19.021 +3430,95.427,325.487,403.143,205.407,543.770,321.546,407.909,129.588,25.710,129.588,345.056,314.483,357.424,19.281,24.861,19.281 +3431,95.459,327.388,404.437,204.487,542.054,323.438,408.995,130.914,18.616,130.914,344.846,312.755,356.910,19.497,24.271,19.497 +3432,95.492,329.830,405.046,202.677,540.089,325.130,410.184,132.455,11.219,132.455,343.080,312.021,357.005,19.277,22.820,19.277 +3433,95.524,332.687,406.109,200.348,538.067,326.818,412.125,134.293,4.198,134.293,340.119,311.776,356.927,18.942,21.035,18.942 +3434,95.556,335.938,407.008,197.528,535.112,328.935,413.769,136.005,177.397,136.005,338.168,311.633,357.638,19.325,19.253,19.325 +3435,95.586,340.508,407.858,195.085,532.267,331.306,416.101,138.145,171.376,138.145,333.236,312.104,357.946,19.800,19.661,19.800 +3436,95.616,348.062,407.092,192.521,529.621,333.672,419.014,140.356,165.838,140.356,321.143,312.141,358.517,20.901,20.217,20.901 +3437,95.647,358.658,404.218,189.723,526.342,335.582,421.472,143.216,160.758,143.216,301.601,312.420,359.228,18.009,20.165,18.009 +3438,95.677,377.578,397.593,187.357,523.308,337.665,424.611,145.905,156.168,145.905,263.199,312.121,359.595,17.938,19.933,17.938 +3439,95.708,377.578,397.593,187.357,523.308,337.665,424.611,145.905,156.168,145.905,263.199,312.121,359.595,17.938,19.933,17.938 +3440,95.736,405.631,388.170,184.731,518.992,340.189,428.162,148.570,153.159,148.570,206.636,312.594,360.026,17.919,19.780,17.919 +3441,95.767,363.396,420.893,182.186,514.318,342.562,432.266,151.372,149.704,151.372,312.693,312.832,360.165,18.414,18.472,18.414 +3442,95.799,350.978,433.842,179.681,508.969,345.092,436.629,154.665,146.995,154.665,347.890,312.908,360.915,18.796,20.621,18.796 +3443,95.830,350.990,439.426,177.903,504.050,347.194,440.916,158.582,143.720,158.582,353.150,312.994,361.307,19.786,20.325,19.786 +3444,95.861,353.120,445.670,176.067,497.943,349.450,446.810,162.737,139.764,162.737,353.804,312.577,361.492,20.183,21.257,20.183 +3445,95.891,355.160,452.979,174.513,490.506,351.333,453.834,167.410,134.626,167.410,353.280,312.581,361.124,20.163,19.262,20.163 +3446,95.922,357.275,460.718,173.542,482.095,353.050,461.252,172.801,129.491,172.801,352.891,312.677,361.409,19.080,19.265,19.080 +3447,95.954,357.991,469.650,173.333,473.046,353.760,469.756,178.568,124.229,178.568,352.440,312.612,360.905,18.244,19.362,18.244 +3448,95.984,358.101,478.649,174.673,463.534,354.218,478.360,4.268,118.980,4.268,352.512,312.462,360.300,18.843,20.914,18.843 +3449,96.014,357.255,488.127,176.091,452.916,353.190,487.373,10.505,113.654,10.505,352.559,312.524,360.827,19.339,20.386,19.339 +3450,96.045,355.491,498.528,179.550,442.350,351.015,497.158,17.026,108.435,17.026,350.632,312.117,359.996,19.361,20.871,19.361 +3451,96.075,355.491,498.528,179.550,442.350,351.015,497.158,17.026,108.435,17.026,350.632,312.117,359.996,19.361,20.871,19.361 +3452,96.104,352.866,506.052,183.570,431.254,348.326,504.034,23.962,103.352,23.962,350.294,311.717,360.230,25.587,20.376,25.587 +3453,96.136,348.269,516.381,188.326,420.410,343.201,513.315,31.176,98.253,31.176,349.359,311.557,361.205,25.754,18.667,25.754 +3454,96.167,340.047,528.809,195.326,410.384,335.260,524.759,40.236,93.047,40.236,348.868,311.464,361.407,25.603,18.848,25.603 +3455,96.198,332.255,537.641,203.627,401.388,327.763,532.741,47.490,88.238,47.490,348.121,311.283,361.417,24.572,17.991,24.572 +3456,96.230,323.113,546.225,213.636,392.791,318.704,539.888,55.176,82.983,55.176,346.065,311.572,361.506,23.414,18.507,23.414 +3457,96.262,311.900,554.800,226.462,395.273,309.701,550.401,63.435,77.681,63.435,342.118,295.147,351.954,22.361,19.629,22.361 +3458,96.295,310.400,595.200,239.373,393.594,297.858,557.573,71.565,73.523,71.565,268.794,286.006,348.118,19.606,19.422,19.606 +3459,96.326,285.175,575.374,253.595,387.574,282.144,560.015,78.838,67.775,78.838,318.100,289.358,349.411,22.565,18.922,22.565 +3460,96.361,269.576,566.518,268.143,384.190,269.289,559.844,87.537,61.963,87.537,337.720,292.118,351.081,22.936,21.319,22.936 +3461,96.395,255.759,561.587,278.772,375.573,256.608,554.141,96.509,56.976,96.509,344.870,312.362,359.858,22.765,23.141,22.765 +3462,96.429,244.065,557.659,293.260,378.425,245.863,551.349,105.910,51.694,105.910,345.464,312.712,358.585,19.360,24.161,19.360 +3463,96.462,231.962,551.588,306.398,383.632,234.365,546.351,114.649,45.955,114.649,344.343,312.828,355.868,19.142,25.853,19.142 +3464,96.496,220.977,545.275,319.460,389.903,224.400,540.044,123.200,41.186,123.200,342.866,314.389,355.369,19.774,24.647,19.774 +3465,96.531,211.320,537.225,331.158,398.093,215.569,532.422,131.496,35.952,131.496,341.571,316.072,354.397,19.503,25.104,19.503 +3466,96.563,203.181,528.385,339.992,409.547,207.335,524.844,139.551,30.626,139.551,340.585,317.764,351.502,19.821,20.556,19.821 +3467,96.595,196.245,518.882,348.932,420.142,201.423,515.565,147.355,25.560,147.355,339.063,318.571,351.363,19.275,20.710,19.275 +3468,96.628,190.760,508.995,355.351,430.909,196.956,506.045,154.537,20.095,154.537,336.896,320.630,350.623,20.422,19.561,20.422 +3469,96.660,187.249,498.756,360.388,441.521,193.943,496.497,161.353,14.708,161.353,336.443,322.088,350.572,21.141,19.333,21.141 +3470,96.693,183.043,489.702,363.581,452.034,192.162,487.782,168.111,9.798,168.111,331.574,323.366,350.212,19.519,19.689,19.519 +3471,96.726,180.809,479.773,364.992,462.084,191.069,478.894,175.101,5.643,175.101,328.851,323.979,349.446,17.963,19.301,17.963 +3472,96.758,154.022,471.022,365.940,470.939,191.417,471.568,0.836,2.397,0.836,274.190,324.427,348.989,17.093,18.323,17.093 +3473,96.790,141.643,458.876,365.046,479.687,191.334,464.132,6.038,178.428,6.038,248.833,324.262,348.770,17.537,19.401,17.537 +3474,96.820,169.260,452.783,363.933,487.811,192.492,457.330,11.075,174.428,11.075,300.861,324.265,348.207,18.650,19.954,18.650 +3475,96.850,179.316,445.815,361.877,496.619,194.309,450.248,16.470,169.909,16.470,316.409,324.403,347.679,19.463,21.318,19.463 +3476,96.881,185.003,438.490,359.594,504.330,196.979,442.748,19.573,164.055,19.573,322.279,324.308,347.699,26.089,22.664,26.089 +3477,96.910,189.046,433.021,356.790,511.462,199.390,437.618,23.962,158.057,23.962,325.012,323.483,347.651,25.993,24.190,25.993 +3478,96.942,189.046,433.021,356.790,511.462,199.390,437.618,23.962,158.057,23.962,325.012,323.483,347.651,25.993,24.190,25.993 +3479,96.970,193.729,427.080,353.208,517.888,202.509,431.869,28.610,151.763,28.610,326.976,322.721,346.978,26.257,25.059,26.257 +3480,97.001,197.228,421.648,349.520,523.247,205.236,426.853,33.024,145.176,33.024,327.915,322.366,347.015,25.489,25.555,25.489 +3481,97.032,199.762,418.327,345.469,528.097,207.193,423.731,36.027,138.532,36.027,328.053,321.323,346.428,25.512,25.164,25.512 +3482,97.063,203.985,413.841,341.369,532.730,210.761,419.598,40.350,131.934,40.350,327.786,321.109,345.570,24.650,25.079,24.650 +3483,97.093,207.429,410.315,337.415,536.502,213.636,416.183,43.394,125.311,43.394,328.127,320.970,345.209,24.997,24.515,24.997 +3484,97.125,209.000,408.000,333.583,540.235,215.205,414.205,45.000,118.369,45.000,328.098,321.165,345.647,25.456,24.092,25.456 +3485,97.157,213.223,404.810,329.818,543.731,218.841,411.240,48.853,111.501,48.853,328.504,322.401,345.582,24.550,23.147,24.550 +3486,97.188,215.731,402.488,326.323,546.325,221.127,409.172,51.089,104.534,51.089,328.412,321.626,345.593,24.056,21.654,24.056 +3487,97.218,217.860,400.114,322.915,548.692,223.219,407.281,53.213,97.722,53.213,328.008,321.616,345.907,23.795,20.239,23.795 +3488,97.249,219.895,397.948,319.788,551.479,225.529,406.062,55.222,90.716,55.222,326.654,321.137,346.411,23.660,18.611,23.660 +3489,97.279,220.896,394.807,317.924,553.224,227.441,404.843,56.889,83.853,56.889,323.463,322.443,347.427,23.271,19.013,23.271 +3490,97.309,221.562,390.912,316.221,555.064,229.517,403.954,58.617,77.142,58.617,317.757,322.817,348.310,23.076,19.096,23.076 +3491,97.342,216.869,383.146,314.604,556.426,229.097,404.545,60.255,70.317,60.255,299.296,323.287,348.587,17.737,19.053,17.737 +3492,97.376,189.682,328.583,312.769,557.370,230.491,403.400,61.390,63.613,61.390,178.692,323.339,349.138,17.718,18.687,17.718 +3493,97.409,189.682,328.583,312.769,557.370,230.491,403.400,61.390,63.613,61.390,178.692,323.339,349.138,17.718,18.687,17.718 +3494,97.437,224.884,386.659,311.238,558.182,233.245,401.926,61.294,56.527,61.294,314.209,323.959,349.024,21.134,19.204,21.134 +3495,97.469,231.200,394.400,310.422,559.064,234.755,401.510,63.435,50.440,63.435,333.621,323.569,349.520,22.361,19.542,22.361 +3496,97.500,233.221,394.831,310.165,558.809,236.029,400.691,64.398,43.898,64.398,336.265,322.680,349.259,22.564,20.462,22.564 +3497,97.531,234.261,395.273,308.780,559.201,236.586,400.277,65.072,37.747,65.072,338.058,323.380,349.093,21.853,20.839,21.853 +3498,97.562,235.106,394.631,307.971,559.548,237.480,399.870,65.628,31.329,65.628,337.570,323.630,349.073,22.198,21.615,22.198 +3499,97.594,235.488,394.107,307.252,559.585,237.853,399.472,66.209,25.263,66.209,337.280,323.069,349.006,22.590,24.377,22.590 +3500,97.626,235.264,393.193,307.039,559.911,237.998,399.465,66.448,18.268,66.448,335.652,322.533,349.336,21.860,24.238,21.860 +3501,97.657,235.516,392.576,306.849,560.174,238.455,399.357,66.571,12.604,66.571,334.724,321.053,349.505,22.266,24.325,22.266 +3502,97.688,235.363,392.428,306.930,560.122,238.382,399.380,66.525,6.384,66.525,334.330,320.587,349.488,22.307,24.261,22.307 +3503,97.719,235.221,392.208,306.999,559.636,238.263,399.204,66.501,0.474,66.501,333.814,320.047,349.070,22.329,24.776,22.329 +3504,97.750,234.746,391.705,307.051,559.495,238.042,399.240,66.371,174.094,66.371,332.508,319.605,348.957,22.446,24.867,22.446 +3505,97.780,234.149,391.602,307.574,558.854,237.578,399.297,65.977,168.212,65.977,331.615,319.354,348.464,22.391,24.771,22.391 +3506,97.813,233.452,391.793,308.165,558.456,236.992,399.541,65.442,162.216,65.442,331.205,319.441,348.241,22.365,25.009,22.365 +3507,97.843,233.452,391.793,308.165,558.456,236.992,399.541,65.442,162.216,65.442,331.205,319.441,348.241,22.365,25.009,22.365 +3508,97.872,232.559,392.062,308.898,557.908,236.235,399.879,64.814,156.329,64.814,330.578,319.513,347.855,22.501,24.866,22.501 +3509,97.902,231.390,392.820,309.734,557.297,235.150,400.510,63.947,150.505,63.947,330.106,319.234,347.226,21.980,24.573,21.980 +3510,97.933,230.268,392.842,310.889,556.552,234.215,400.624,63.104,144.811,63.104,330.041,319.338,347.493,22.619,24.602,22.619 +3511,97.963,229.006,393.611,312.045,555.552,232.925,401.002,62.063,139.185,62.063,330.482,319.551,347.214,22.702,24.012,22.702 +3512,97.998,227.246,394.410,313.553,554.594,231.390,401.839,60.846,133.713,60.846,329.846,319.754,346.859,22.427,23.702,22.427 +3513,98.029,225.737,395.387,315.626,553.885,230.182,402.930,59.490,128.157,59.490,329.354,319.863,346.865,23.031,24.095,23.031 +3514,98.060,223.839,396.482,317.296,552.512,228.369,403.747,58.050,122.760,58.050,329.450,320.186,346.574,23.412,23.225,23.412 +3515,98.093,221.713,397.848,319.381,551.179,226.441,404.916,56.226,117.420,56.226,329.487,320.283,346.493,23.370,22.572,23.370 +3516,98.127,219.483,399.715,321.696,549.875,224.459,406.639,54.293,112.276,54.293,329.069,321.248,346.122,23.751,22.287,23.751 +3517,98.160,216.832,401.154,324.300,548.400,222.316,408.255,52.322,107.103,52.322,328.564,322.612,346.508,24.167,21.689,24.167 +3518,98.193,214.481,403.727,327.648,545.426,219.880,410.139,49.899,101.908,49.899,329.033,321.121,345.799,23.954,21.839,23.954 +3519,98.225,211.684,406.161,330.569,542.635,217.185,412.157,47.466,97.206,47.466,329.322,321.623,345.595,24.574,20.811,24.574 +3520,98.256,208.869,409.074,334.063,539.546,214.562,414.701,44.665,92.490,44.665,329.498,321.653,345.508,24.802,20.502,24.802 +3521,98.287,205.065,413.300,337.697,536.476,211.119,418.535,40.855,88.002,40.855,329.774,321.502,345.781,25.389,20.348,25.389 +3522,98.317,202.184,416.923,341.355,532.071,208.396,421.712,37.626,83.713,37.626,329.674,322.237,345.361,25.427,20.520,25.427 +3523,98.352,199.476,420.910,345.597,527.297,206.028,425.385,34.330,79.526,34.330,329.595,322.444,345.463,25.580,21.443,25.580 +3524,98.383,196.213,425.978,349.398,521.873,202.806,429.814,30.192,75.343,30.192,330.747,322.640,346.003,25.616,21.373,25.616 +3525,98.414,193.642,431.129,352.586,515.641,200.028,434.285,26.295,71.701,26.295,331.377,322.252,345.624,25.693,20.820,25.693 +3526,98.444,190.606,437.197,356.279,508.479,197.283,439.855,21.705,67.845,21.705,331.832,322.349,346.205,25.627,21.318,25.627 +3527,98.474,190.606,437.197,356.279,508.479,197.283,439.855,21.705,67.845,21.705,331.832,322.349,346.205,25.627,21.318,25.627 +3528,98.502,187.254,447.928,359.217,500.604,193.746,449.832,16.348,64.204,16.348,332.612,322.430,346.143,19.243,21.743,19.243 +3529,98.533,185.027,455.828,361.247,492.142,191.707,457.146,11.160,60.690,11.160,332.596,322.206,346.214,18.821,21.616,18.821 +3530,98.564,184.236,463.989,363.275,482.422,190.649,464.591,5.368,57.414,5.368,334.193,322.355,347.075,18.950,22.368,18.950 +3531,98.595,183.978,472.426,363.851,472.524,190.408,472.392,179.697,54.162,179.697,334.022,322.515,346.880,18.047,22.204,18.047 +3532,98.626,184.149,482.153,363.591,461.331,190.573,481.361,172.972,50.988,172.972,335.392,322.373,348.338,18.504,23.183,18.504 +3533,98.658,185.935,492.739,361.292,449.871,191.853,491.270,166.062,47.726,166.062,336.649,322.681,348.844,20.148,22.535,20.148 +3534,98.690,188.820,502.531,357.925,438.561,194.389,500.389,158.962,44.112,158.962,337.728,321.859,349.662,19.672,23.447,19.672 +3535,98.720,192.529,513.055,353.321,427.130,198.527,509.817,151.636,40.962,151.636,337.356,321.267,350.986,19.623,23.658,19.623 +3536,98.750,198.703,522.284,346.687,415.758,203.859,518.601,144.462,37.747,144.462,339.327,320.396,352.000,18.716,24.028,18.716 +3537,98.781,206.204,531.217,339.017,404.743,210.877,526.828,136.790,34.330,136.790,341.145,319.263,353.967,18.795,26.224,18.795 +3538,98.813,214.702,540.064,327.367,398.061,217.781,536.209,128.622,30.842,128.622,342.801,317.613,352.667,19.222,20.470,19.222 +3539,98.843,214.702,540.064,327.367,398.061,217.781,536.209,128.622,30.842,128.622,342.801,317.613,352.667,19.222,20.470,19.222 +3540,98.872,224.647,547.927,316.108,389.250,227.585,542.853,120.069,27.597,120.069,342.845,317.128,354.572,18.994,21.491,18.994 +3541,98.902,236.331,553.910,302.585,384.437,238.114,549.344,111.332,23.920,111.332,344.319,315.775,354.124,19.049,18.754,19.049 +3542,98.934,248.508,558.944,288.451,380.325,249.608,553.968,102.470,20.376,102.470,345.676,315.189,355.869,19.951,18.400,19.951 +3543,98.964,260.707,561.012,273.993,378.180,261.001,556.032,93.377,16.783,93.377,346.636,314.455,356.615,22.492,18.252,22.492 +3544,98.995,276.730,561.211,259.445,378.237,276.374,556.607,85.569,13.069,85.569,349.053,313.381,358.289,21.864,18.351,21.864 +3545,99.027,289.531,558.757,244.041,380.798,288.459,554.420,76.118,9.324,76.118,349.481,313.018,358.416,22.077,18.234,22.077 +3546,99.059,304.662,553.669,229.829,385.776,302.962,549.668,66.979,5.500,66.979,350.186,311.832,358.880,22.068,18.256,22.068 +3547,99.090,317.901,546.863,216.984,392.550,315.464,542.973,57.931,1.692,57.931,350.333,310.514,359.514,23.348,18.174,23.348 +3548,99.122,329.118,537.818,205.064,401.585,326.339,534.618,49.028,177.698,49.028,351.448,310.553,359.925,24.459,18.488,24.459 +3549,99.153,338.958,527.829,195.243,411.745,335.627,525.006,40.280,173.501,40.280,351.915,310.863,360.648,25.370,18.287,25.370 +3550,99.184,347.014,516.853,186.839,422.093,342.571,514.089,31.891,169.939,31.891,351.189,310.728,361.654,25.547,19.851,25.547 +3551,99.214,352.295,505.285,180.794,434.177,347.885,503.344,23.756,165.964,23.756,351.956,310.931,361.593,25.308,20.616,25.308 +3552,99.245,355.253,496.374,176.992,447.416,351.010,495.158,15.992,160.821,15.992,352.048,310.904,360.874,19.748,20.081,19.748 +3553,99.275,355.253,496.374,176.992,447.416,351.010,495.158,15.992,160.821,15.992,352.048,310.904,360.874,19.748,20.081,19.748 +3554,99.303,357.372,485.011,173.917,457.800,352.819,484.331,8.489,157.416,8.489,352.513,311.232,361.718,19.220,20.975,19.220 +3555,99.333,358.589,474.032,173.116,470.568,353.589,473.920,1.283,152.216,1.283,351.002,311.818,361.004,18.570,19.530,18.570 +3556,99.364,357.838,463.336,173.575,481.708,352.979,463.811,174.422,147.815,174.422,350.823,312.071,360.587,19.345,20.040,19.345 +3557,99.397,355.524,453.268,175.088,491.958,351.400,454.147,167.966,143.276,167.966,352.206,312.607,360.641,19.705,19.962,19.705 +3558,99.428,353.481,443.915,177.248,501.283,348.886,445.433,161.715,138.814,161.715,351.309,313.448,360.988,19.956,20.508,19.956 +3559,99.460,349.553,435.755,180.470,509.971,345.493,437.565,155.971,134.145,155.971,351.522,313.393,360.412,19.884,20.346,19.884 +3560,99.492,346.281,428.339,183.890,517.581,341.827,430.853,150.558,129.623,150.558,350.113,314.719,360.341,19.004,20.002,19.004 +3561,99.524,341.357,421.899,188.699,525.136,337.630,424.474,145.359,124.346,145.359,350.438,315.135,359.499,19.297,19.994,19.297 +3562,99.555,336.321,416.354,193.526,531.858,333.182,418.938,140.528,119.342,140.528,351.047,316.055,359.177,19.389,20.194,19.389 +3563,99.585,331.302,411.742,197.692,537.322,328.547,414.404,135.982,114.974,135.982,351.368,316.803,359.029,18.875,20.005,18.875 +3564,99.616,327.019,407.125,202.938,542.524,323.967,410.545,131.743,110.024,131.743,348.942,317.309,358.110,19.457,19.960,19.457 +3565,99.651,321.312,403.693,207.759,547.069,318.946,406.748,127.753,104.901,127.753,350.315,317.957,358.043,18.574,19.858,18.574 +3566,99.695,316.538,400.517,213.117,551.020,314.375,403.732,123.927,99.574,123.927,349.706,317.943,357.456,18.794,18.842,18.794 +3567,99.728,311.922,397.492,218.064,554.505,309.765,401.181,120.320,94.529,120.320,348.744,318.379,357.291,18.875,18.901,18.875 +3568,99.762,307.323,395.139,223.333,557.001,305.420,398.883,116.940,89.497,116.940,347.898,318.084,356.298,18.590,18.806,18.590 +3569,99.799,302.797,393.036,228.431,559.905,300.944,397.271,113.629,84.193,113.629,346.880,319.707,356.126,18.781,18.886,18.781 +3570,99.831,298.147,391.936,233.139,562.972,296.567,396.171,110.456,78.641,110.456,347.857,321.628,356.899,19.044,20.689,19.044 +3571,99.864,294.196,390.763,238.428,564.041,292.921,394.747,107.745,74.365,107.745,347.330,320.320,355.696,19.125,21.100,19.125 +3572,99.895,290.290,389.411,242.540,565.092,289.127,393.774,104.931,68.565,104.931,346.041,319.614,355.073,19.067,21.678,19.067 +3573,99.925,285.767,388.314,247.395,566.065,284.784,392.945,101.976,63.733,101.976,344.753,319.777,354.220,19.061,20.287,19.061 +3574,99.957,281.833,387.901,251.568,566.958,281.090,392.448,99.281,58.610,99.281,344.761,319.840,353.975,18.855,21.298,18.855 +3575,99.987,278.007,387.407,255.451,568.173,277.410,392.430,96.778,54.058,96.778,344.095,320.039,354.213,18.464,22.426,18.464 +3576,100.018,274.455,386.772,259.566,568.870,274.028,392.454,94.289,49.497,94.289,342.613,320.086,354.009,18.373,23.366,18.373 +3577,100.049,270.553,386.843,264.250,568.750,270.379,392.320,91.818,45.000,91.818,342.113,319.612,353.072,18.007,23.335,18.007 +3578,100.079,267.112,387.031,268.340,568.506,267.167,392.237,89.390,40.200,89.390,342.130,319.686,352.543,18.265,24.452,18.265 +3579,100.111,263.252,387.151,272.491,568.309,263.552,392.583,86.845,35.428,86.845,341.026,320.621,351.905,18.051,24.948,18.051 +3580,100.143,263.252,387.151,272.491,568.309,263.552,392.583,86.845,35.428,86.845,341.026,320.621,351.905,18.051,24.948,18.051 +3581,100.172,259.879,387.255,276.541,567.432,260.395,392.557,84.435,30.651,84.435,340.577,321.399,351.231,18.563,24.534,18.563 +3582,100.204,256.539,387.777,281.312,566.891,257.306,393.213,81.968,25.710,81.968,339.678,320.690,350.658,19.196,24.694,19.196 +3583,100.234,252.934,387.981,285.556,566.658,254.079,394.085,79.380,20.985,79.380,338.415,320.135,350.836,19.535,25.158,19.535 +3584,100.266,249.295,388.254,290.330,565.399,250.804,394.667,76.759,16.699,76.759,337.318,319.818,350.494,20.041,25.287,20.041 +3585,100.297,245.573,388.975,294.412,564.147,247.471,395.640,74.110,12.529,74.110,335.980,319.756,349.840,20.731,25.055,20.731 +3586,100.328,241.841,390.059,299.006,563.093,244.174,396.984,71.381,7.824,71.381,335.230,319.630,349.844,21.360,24.684,21.360 +3587,100.361,238.128,391.116,303.517,561.207,240.832,398.075,68.764,3.366,68.764,334.588,319.800,349.520,22.148,23.959,22.148 +3588,100.393,234.086,392.412,308.476,558.816,237.339,399.637,65.760,179.569,65.760,332.852,319.066,348.701,22.581,24.390,22.581 +3589,100.425,229.829,394.348,312.818,556.943,233.589,401.600,62.592,174.958,62.592,332.415,319.582,348.753,22.523,24.405,22.523 +3590,100.458,225.898,396.358,317.337,554.106,230.092,403.409,59.255,170.910,59.255,331.828,319.536,348.236,23.094,24.331,23.094 +3591,100.489,221.552,398.964,322.214,551.072,226.348,406.011,55.763,166.921,55.763,330.674,320.131,347.720,23.596,24.499,23.596 +3592,100.520,217.196,401.848,327.234,547.632,222.638,408.860,52.184,162.979,52.184,329.766,320.776,347.518,24.053,24.686,24.053 +3593,100.550,212.068,405.891,332.168,543.626,218.267,412.743,47.862,159.193,47.862,328.465,320.799,346.945,24.894,25.146,24.894 +3594,100.580,208.657,409.350,337.188,538.818,215.203,415.768,44.433,155.400,44.433,328.165,320.939,346.500,24.839,25.327,24.839 +3595,100.611,203.847,413.501,341.982,533.394,211.131,419.671,40.269,151.699,40.269,327.607,320.898,346.699,25.602,25.195,25.602 +3596,100.643,199.294,419.171,346.590,527.451,207.091,424.686,35.272,148.191,35.272,327.363,321.281,346.464,25.667,25.333,25.667 +3597,100.673,199.294,419.171,346.590,527.451,207.091,424.686,35.272,148.191,35.272,327.363,321.281,346.464,25.667,25.333,25.667 +3598,100.702,195.027,424.759,351.118,520.666,203.406,429.701,30.530,144.567,30.530,327.429,321.200,346.886,25.708,25.290,25.708 +3599,100.733,190.617,432.182,354.964,512.837,199.437,436.311,25.084,141.044,25.084,327.128,321.260,346.605,25.745,24.653,25.745 +3600,100.765,186.747,441.510,358.605,504.767,195.797,444.899,20.527,137.759,20.527,327.601,321.403,346.927,19.547,25.094,19.547 +3601,100.800,183.570,450.182,361.633,495.615,193.348,452.684,14.357,134.526,14.357,327.162,321.086,347.349,19.422,25.116,19.422 +3602,100.833,181.164,459.284,363.639,485.681,191.673,460.832,8.379,131.448,8.379,326.255,321.724,347.502,18.828,25.047,18.828 +3603,100.865,179.912,469.066,364.365,475.468,190.641,469.436,1.975,128.211,1.975,326.185,322.671,347.658,18.679,24.793,18.679 +3604,100.897,179.693,479.317,364.358,463.753,190.681,478.402,175.236,125.272,175.236,326.535,321.648,348.587,18.685,24.592,18.685 +3605,100.930,180.544,490.581,362.891,451.820,191.999,488.164,168.089,122.196,168.089,326.014,320.566,349.427,19.309,24.321,19.309 +3606,100.963,182.708,502.036,358.247,439.138,193.831,498.167,160.821,119.268,160.821,325.810,320.524,349.364,19.424,21.003,19.424 +3607,100.995,186.158,513.787,352.960,426.973,197.523,508.055,153.232,116.259,153.232,325.137,320.208,350.594,19.627,19.849,19.627 +3608,101.028,190.512,526.184,346.359,415.588,203.028,517.519,145.305,113.412,145.305,321.287,319.614,351.732,19.353,20.160,19.353 +3609,101.062,196.283,538.987,338.678,405.384,209.948,526.445,137.454,110.624,137.454,316.302,319.056,353.398,19.034,22.090,19.034 +3610,101.096,204.228,551.995,327.865,395.618,218.113,534.861,129.019,107.956,129.019,310.452,318.093,354.560,19.477,21.475,19.477 +3611,101.131,214.733,565.386,315.700,387.229,228.246,542.220,120.256,105.101,120.256,302.251,317.761,355.888,20.083,20.658,20.083 +3612,101.165,223.678,584.959,301.656,381.317,238.073,548.059,111.311,102.225,111.311,277.679,315.920,356.897,18.003,18.976,18.003 +3613,101.197,233.712,627.989,287.383,376.981,249.584,552.388,101.857,99.398,101.857,204.362,315.160,358.862,20.444,18.643,20.444 +3614,101.228,260.511,576.276,272.081,375.753,261.581,554.879,92.862,96.931,92.862,316.005,315.057,358.853,22.522,19.402,22.522 +3615,101.260,279.055,566.126,257.102,376.039,278.111,555.339,84.999,93.723,84.999,339.241,314.441,360.898,22.701,20.098,22.701 +3616,101.293,292.402,562.061,242.322,379.018,289.962,552.929,75.041,91.273,75.041,341.724,312.301,360.628,22.029,19.395,22.029 +3617,101.325,308.104,555.499,228.043,384.488,304.626,547.835,65.591,88.755,65.591,343.957,311.339,360.789,22.114,19.582,22.114 +3618,101.357,321.038,546.808,214.201,392.020,316.920,540.630,56.310,86.186,56.310,346.410,311.375,361.259,23.575,18.492,23.575 +3619,101.388,332.575,537.112,202.841,401.686,327.940,532.115,47.155,83.617,47.155,347.768,311.198,361.399,24.632,18.525,24.632 +3620,101.419,342.801,526.344,192.843,412.445,337.142,521.897,38.157,80.894,38.157,347.777,310.886,362.173,25.275,18.822,25.275 +3621,101.449,350.122,514.286,185.856,424.518,344.400,511.043,29.539,78.440,29.539,348.038,310.458,361.190,25.608,19.772,25.608 +3622,101.480,354.878,501.814,180.746,436.935,349.806,499.850,21.174,75.870,21.174,349.864,310.202,360.743,25.874,20.873,25.874 +3623,101.511,357.652,492.631,176.755,449.513,352.014,491.314,13.141,73.136,13.141,348.765,310.047,360.346,19.673,20.780,19.673 +3624,101.543,357.652,492.631,176.755,449.513,352.014,491.314,13.141,73.136,13.141,348.765,310.047,360.346,19.673,20.780,19.673 +3625,101.572,359.256,480.549,174.790,462.013,353.892,480.036,5.471,70.528,5.471,349.233,309.967,360.009,19.062,20.728,19.062 +3626,101.602,360.008,468.766,174.051,474.388,354.098,468.955,178.164,67.775,178.164,348.430,310.141,360.257,19.099,19.868,19.099 +3627,101.633,358.011,456.568,174.804,486.122,352.565,457.430,171.005,64.832,171.005,349.093,310.568,360.121,21.779,20.130,21.779 +3628,101.664,355.653,446.772,177.294,496.814,350.389,448.261,164.205,62.087,164.205,348.608,310.628,359.549,21.461,20.324,21.461 +3629,101.696,351.943,437.859,180.977,506.893,347.313,439.743,157.857,59.601,157.857,348.758,311.912,358.755,20.345,19.643,20.345 +3630,101.727,347.706,429.951,185.258,516.019,343.501,432.203,151.835,56.746,151.835,348.593,313.153,358.134,19.110,19.851,19.110 +3631,101.762,342.973,422.216,189.784,524.100,338.851,424.988,146.073,53.842,146.073,348.076,312.678,358.011,19.386,19.905,19.386 +3632,101.795,337.678,415.718,193.140,531.980,333.205,419.377,140.711,50.906,140.711,347.859,312.822,359.417,19.279,23.623,19.279 +3633,101.829,332.000,409.956,198.804,538.309,327.819,414.047,135.630,47.603,135.630,346.539,312.989,358.239,19.238,23.632,19.238 +3634,101.862,326.408,404.991,204.612,543.899,322.740,409.253,130.718,44.661,130.718,346.975,313.289,358.222,19.551,23.648,19.551 +3635,101.894,320.552,400.804,210.709,548.697,317.215,405.348,126.290,41.448,126.290,345.890,313.917,357.165,18.827,24.151,18.827 +3636,101.927,314.783,397.244,216.593,553.109,311.741,402.141,121.846,38.157,121.846,345.362,314.696,356.892,18.816,24.601,18.816 +3637,101.959,309.050,394.218,222.476,556.102,306.461,399.168,117.619,34.931,117.619,344.801,315.978,355.973,18.843,24.947,18.843 +3638,101.990,303.200,391.778,228.757,559.282,300.966,396.897,113.582,31.866,113.582,344.251,315.773,355.423,18.868,24.698,18.868 +3639,102.020,297.880,390.057,234.917,561.650,295.980,395.333,109.799,28.843,109.799,343.123,315.747,354.338,18.931,24.984,18.931 +3640,102.051,292.194,388.201,240.781,563.452,290.642,393.655,105.890,25.887,105.890,342.579,316.679,353.921,19.060,24.952,19.060 +3641,102.082,286.769,386.903,246.986,564.536,285.592,392.290,102.325,21.595,102.325,342.008,316.773,353.035,18.866,26.461,18.866 +3642,102.113,281.905,385.671,252.791,565.723,280.921,391.944,98.915,17.684,98.915,339.379,316.767,352.078,18.925,26.304,18.925 +3643,102.143,281.905,385.671,252.791,565.723,280.921,391.944,98.915,17.684,98.915,339.379,316.767,352.078,18.925,26.304,18.925 +3644,102.172,276.216,385.055,258.775,566.978,275.591,391.775,95.315,15.068,95.315,338.515,316.351,352.014,18.548,25.700,18.548 +3645,102.203,271.001,384.464,264.543,567.783,270.737,391.855,92.045,11.189,92.045,337.285,316.731,352.075,18.096,25.732,18.096 +3646,102.234,265.704,385.082,270.094,567.770,265.885,392.377,88.575,7.352,88.575,336.294,316.921,350.888,18.074,25.562,18.074 +3647,102.265,260.766,384.686,276.007,566.888,261.402,392.328,85.236,3.504,85.236,335.006,316.876,350.341,18.353,25.035,18.353 +3648,102.296,256.110,385.270,281.999,566.406,257.218,393.029,81.870,179.326,81.870,334.603,316.178,350.278,19.092,25.163,19.092 +3649,102.327,251.150,385.969,287.519,565.237,252.752,393.814,78.453,175.347,78.453,333.814,317.044,349.827,19.859,25.358,19.859 +3650,102.360,246.284,387.058,292.968,563.801,248.422,395.014,74.962,170.961,74.962,332.652,317.956,349.128,20.584,24.734,20.584 +3651,102.393,241.029,388.652,298.779,562.066,243.713,396.585,71.309,166.675,71.309,332.050,318.248,348.800,20.552,25.274,20.552 +3652,102.425,236.382,390.434,304.463,559.940,239.609,398.316,67.739,162.181,67.739,331.261,318.488,348.294,22.139,25.195,22.139 +3653,102.457,231.334,392.608,310.294,557.212,235.146,400.369,63.838,157.574,63.838,330.520,318.689,347.815,22.518,24.943,22.518 +3654,102.487,226.306,395.368,316.219,553.951,230.720,402.957,59.819,152.916,59.819,329.458,318.935,347.016,22.942,24.899,22.942 +3655,102.518,220.995,398.503,321.862,550.472,226.015,405.836,55.606,148.191,55.606,329.210,319.377,346.983,23.559,25.010,23.559 +3656,102.549,215.962,402.239,327.570,546.094,221.547,409.243,51.432,143.514,51.432,328.281,319.608,346.197,24.355,24.832,24.355 +3657,102.579,210.140,406.980,333.425,541.118,216.355,413.491,46.332,138.633,46.332,328.305,319.743,346.307,24.824,25.203,24.824 +3658,102.609,210.140,406.980,333.425,541.118,216.355,413.491,46.332,138.633,46.332,328.305,319.743,346.307,24.824,25.203,24.824 +3659,102.637,206.152,411.028,338.647,535.619,212.784,417.049,42.239,133.727,42.239,327.862,319.848,345.776,25.835,24.978,25.835 +3660,102.668,200.475,417.833,344.039,529.130,207.514,423.048,36.529,128.766,36.529,328.179,320.309,345.698,25.773,24.774,25.773 +3661,102.699,195.896,423.595,348.789,522.186,203.456,428.234,31.535,123.917,31.535,328.280,320.634,346.018,25.802,25.124,25.802 +3662,102.730,191.837,430.743,353.307,514.395,199.868,434.669,26.053,118.523,26.053,327.850,321.061,345.728,25.873,25.251,25.873 +3663,102.762,187.964,439.350,357.254,504.832,196.078,442.301,19.983,113.749,19.983,328.415,320.360,345.683,25.631,25.226,25.631 +3664,102.793,184.382,450.971,360.600,495.200,192.806,453.077,14.036,108.435,14.036,328.636,320.022,346.001,19.160,25.298,19.160 +3665,102.825,182.425,460.561,362.649,484.536,190.835,461.692,7.658,103.536,7.658,329.680,319.916,346.652,18.772,25.566,18.772 +3666,102.857,181.525,470.765,363.410,473.130,190.178,470.892,0.843,98.130,0.843,329.185,319.754,346.492,18.307,24.890,18.307 +3667,102.888,182.076,481.201,362.948,461.093,190.284,480.305,173.774,92.726,173.774,330.946,318.782,347.458,18.454,24.639,18.454 +3668,102.918,184.471,493.382,360.895,448.984,192.070,491.482,165.964,87.614,165.964,332.516,318.515,348.183,19.888,24.437,19.888 +3669,102.948,187.915,504.272,356.722,436.537,194.675,501.548,158.057,82.476,158.057,334.627,318.311,349.202,19.645,23.812,19.645 +3670,102.979,192.790,514.800,351.019,424.496,198.870,511.390,150.709,77.062,150.709,336.477,317.724,350.418,18.889,24.313,18.889 +3671,103.009,192.790,514.800,351.019,424.496,198.870,511.390,150.709,77.062,150.709,336.477,317.724,350.418,18.889,24.313,18.889 +3672,103.039,199.853,525.459,344.101,413.467,205.305,521.265,142.431,71.707,142.431,337.719,314.650,351.476,19.328,24.757,19.328 +3673,103.074,208.273,535.738,334.511,402.834,213.056,530.727,133.668,66.203,133.668,338.892,313.440,352.747,19.037,25.733,19.037 +3674,103.105,218.482,544.677,325.197,396.891,221.875,539.756,124.592,60.977,124.592,340.583,304.401,352.537,18.934,25.962,18.934 +3675,103.136,230.405,551.161,314.217,391.675,232.204,547.435,115.769,55.850,115.769,343.576,297.064,351.851,18.881,24.926,18.881 +3676,103.167,243.446,556.871,299.945,384.904,244.524,553.228,106.477,50.638,106.477,346.661,297.832,354.260,18.801,25.176,18.801 +3677,103.198,258.549,560.045,287.568,384.940,258.815,558.070,97.659,44.762,97.659,346.853,287.799,350.837,22.795,26.107,22.795 +3678,103.229,272.440,561.406,264.940,376.100,272.281,555.569,88.441,40.073,88.441,347.524,309.552,359.204,22.155,23.746,22.155 +3679,103.260,285.740,560.727,248.767,378.457,284.495,554.705,78.318,34.802,78.318,347.367,308.878,359.663,22.524,21.784,22.524 +3680,103.291,301.860,555.490,233.393,383.220,299.943,550.484,69.048,29.211,69.048,349.282,308.380,360.004,22.138,21.211,22.138 +3681,103.322,315.830,548.358,218.964,390.462,313.212,543.916,59.478,23.405,59.478,349.802,308.300,360.113,23.156,20.409,23.156 +3682,103.353,328.076,539.777,206.093,399.480,324.609,535.609,50.246,17.255,50.246,350.046,309.244,360.891,24.521,19.556,24.521 +3683,103.383,338.505,529.498,195.695,409.098,334.089,525.631,41.211,10.794,41.211,350.038,309.296,361.776,25.400,21.070,25.400 +3684,103.414,346.106,517.648,187.680,421.448,342.178,515.134,32.619,4.041,32.619,351.935,308.351,361.261,25.504,19.359,25.504 +3685,103.445,351.748,506.058,181.076,433.454,347.495,504.123,24.458,177.019,24.458,352.144,308.935,361.488,25.758,20.576,25.758 +3686,103.476,351.748,506.058,181.076,433.454,347.495,504.123,24.458,177.019,24.458,352.144,308.935,361.488,25.758,20.576,25.758 +3687,103.504,354.757,497.477,176.810,445.525,350.292,496.138,16.699,168.959,16.699,352.097,309.672,361.419,19.444,20.013,19.444 +3688,103.535,357.515,486.388,174.209,457.099,352.680,485.589,9.389,160.799,9.389,351.658,310.289,361.457,19.227,20.424,19.227 +3689,103.566,358.609,475.933,172.991,468.368,353.494,475.716,2.432,152.044,2.432,351.066,311.048,361.304,18.832,20.173,18.832 +3690,103.597,356.837,465.652,173.509,479.321,353.375,465.893,176.024,142.633,176.024,353.788,311.997,360.729,19.051,20.375,19.051 +3691,103.628,355.916,455.218,174.030,488.056,351.683,455.971,169.915,133.363,169.915,352.452,312.818,361.052,21.594,20.235,21.594 +3692,103.659,353.594,447.304,175.571,497.047,349.549,448.451,164.174,123.539,164.174,352.861,313.963,361.271,21.454,20.428,21.454 +3693,103.690,351.113,440.187,179.063,505.894,347.468,441.586,159.010,113.429,159.010,352.725,314.355,360.532,19.683,19.238,19.683 +3694,103.721,348.170,433.238,181.791,513.072,344.214,435.162,154.063,103.897,154.063,351.479,314.576,360.278,20.295,19.545,20.295 +3695,103.752,344.934,427.342,185.792,519.582,341.303,429.482,149.490,93.621,149.490,351.015,314.207,359.444,20.215,18.987,20.215 +3696,103.783,341.281,422.007,189.755,525.471,337.933,424.316,145.414,83.395,145.414,350.688,314.948,358.822,19.390,19.125,19.390 +3697,103.814,337.723,417.119,193.349,530.495,334.260,419.856,141.674,73.301,141.674,349.484,314.742,358.311,18.791,19.731,18.791 +3698,103.845,334.395,412.778,198.065,535.421,331.087,415.771,137.870,62.745,137.870,348.910,315.775,357.831,19.670,20.419,19.670 +3699,103.876,334.395,412.778,198.065,535.421,331.087,415.771,137.870,62.745,137.870,348.910,315.775,357.831,19.670,20.419,19.670 +3700,103.903,330.833,409.334,199.587,539.664,326.840,413.364,134.731,52.431,134.731,347.222,313.818,358.567,18.624,24.145,18.624 +3701,103.934,327.682,405.718,203.514,542.763,323.725,410.182,131.553,41.987,131.553,345.974,313.521,357.906,19.661,23.785,19.661 +3702,103.965,324.217,402.674,206.877,545.270,320.452,407.353,128.826,31.686,128.826,345.292,313.869,357.303,19.094,24.835,19.094 +3703,103.996,321.468,400.187,210.833,546.936,318.060,404.811,126.384,20.898,126.384,344.564,313.099,356.052,18.855,26.260,18.855 +3704,104.028,318.489,397.857,213.839,549.878,314.774,403.355,124.046,10.408,124.046,342.566,312.688,355.835,18.968,24.348,18.968 +3705,104.060,316.043,394.890,216.989,551.474,312.017,401.372,121.840,178.819,121.840,340.033,312.140,355.295,18.724,22.841,18.724 +3706,104.093,314.256,392.380,219.127,553.104,309.728,400.224,119.995,168.857,119.995,337.281,313.194,355.396,18.751,21.749,18.751 +3707,104.124,312.588,389.147,221.000,554.000,307.356,398.957,118.072,158.199,118.072,332.647,313.825,354.882,19.059,20.055,19.059 +3708,104.155,312.200,385.100,222.913,555.100,305.671,398.157,116.565,146.889,116.565,325.572,314.832,354.769,19.230,19.520,19.230 +3709,104.186,311.756,379.035,224.686,556.636,303.092,397.407,115.248,136.081,115.248,314.298,315.554,354.921,18.172,19.209,18.172 +3710,104.216,316.866,363.037,226.526,558.168,301.321,397.067,114.550,125.036,114.550,280.403,317.210,355.227,17.597,19.199,17.597 +3711,104.246,330.883,323.099,227.948,559.252,299.604,396.607,113.051,114.179,113.051,195.660,318.308,355.432,17.718,18.655,17.718 +3712,104.277,301.425,390.177,229.606,560.146,298.936,396.427,111.724,103.540,111.724,342.052,319.177,355.506,17.716,19.444,17.716 +3713,104.309,301.425,390.177,229.606,560.146,298.936,396.427,111.724,103.540,111.724,342.052,319.177,355.506,17.716,19.444,17.716 +3714,104.337,299.387,391.495,232.545,561.602,297.607,396.122,111.038,92.862,111.038,345.697,319.751,355.612,18.595,20.624,18.595 +3715,104.368,298.083,391.422,233.844,562.741,296.437,395.876,110.283,81.724,110.283,346.936,321.040,356.432,18.841,19.018,18.841 +3716,104.399,297.663,390.659,235.747,562.578,295.982,395.328,109.799,71.442,109.799,345.607,319.721,355.532,18.931,22.583,18.931 +3717,104.431,296.622,390.793,236.165,562.027,295.201,394.855,109.290,59.697,109.290,345.971,318.517,354.578,18.783,20.418,18.783 +3718,104.462,296.390,390.275,235.334,563.204,294.618,395.429,108.970,48.504,108.970,344.969,317.344,355.869,18.943,24.314,18.943 +3719,104.494,296.241,389.731,235.913,562.664,294.447,394.999,108.800,37.569,108.800,344.037,317.111,355.167,18.893,24.449,18.893 +3720,104.527,296.272,389.245,236.223,562.104,294.437,394.662,108.712,27.387,108.712,343.095,316.269,354.534,18.790,25.140,18.790 +3721,104.560,296.631,388.189,236.729,561.212,294.601,394.177,108.726,16.189,108.726,340.896,315.272,353.543,18.845,25.836,18.845 +3722,104.591,297.201,387.252,236.118,560.837,294.886,394.030,108.864,4.062,108.864,339.372,313.979,353.697,18.934,24.990,18.934 +3723,104.621,297.877,386.979,235.303,561.169,295.230,394.590,109.179,175.156,109.179,337.925,314.162,354.042,19.136,23.188,19.136 +3724,104.652,298.669,386.305,234.218,560.720,295.671,394.738,109.573,164.291,109.573,336.057,314.576,353.957,19.054,22.442,19.054 +3725,104.682,300.560,385.131,232.936,559.906,296.875,395.103,110.283,154.323,110.283,332.234,314.849,353.497,19.249,20.989,19.249 +3726,104.712,302.600,382.368,231.324,559.396,297.694,395.280,110.807,143.746,110.807,326.352,315.627,353.977,19.593,19.945,19.593 +3727,104.743,305.855,377.715,229.754,559.233,298.751,395.749,111.501,134.526,111.501,316.029,316.142,354.793,19.595,19.191,19.595 +3728,104.775,305.855,377.715,229.754,559.233,298.751,395.749,111.501,134.526,111.501,316.029,316.142,354.793,19.595,19.191,19.595 +3729,104.804,311.648,366.192,229.070,559.125,299.173,395.911,112.770,125.455,112.770,290.791,317.237,355.254,17.485,19.636,17.485 +3730,104.835,331.328,323.069,228.423,559.222,299.820,396.586,113.199,117.688,113.199,195.253,317.636,355.221,17.464,19.647,17.464 +3731,104.866,304.945,388.390,226.543,559.016,301.078,397.293,113.481,110.215,113.481,336.646,318.494,356.059,17.983,19.269,17.983 +3732,104.896,304.288,393.267,226.157,558.652,302.209,397.840,114.444,102.995,114.444,345.691,319.001,355.737,18.125,19.938,18.125 +3733,104.927,305.640,394.602,225.191,558.102,303.910,398.186,115.769,94.899,115.769,348.513,319.229,356.472,18.632,20.895,18.632 +3734,104.958,307.848,395.628,222.452,557.284,305.860,399.470,117.350,85.809,117.350,348.334,318.272,356.985,18.744,19.689,18.744 +3735,104.989,310.246,396.031,220.757,555.435,308.109,399.898,118.926,75.799,118.926,347.932,318.447,356.768,18.887,20.667,18.887 +3736,105.020,313.289,397.465,219.018,553.644,311.058,401.154,121.159,67.001,121.159,347.606,318.437,356.228,18.607,21.569,18.607 +3737,105.051,316.364,398.925,215.726,550.876,313.925,402.636,123.311,56.938,123.311,346.746,316.257,355.628,18.624,20.770,18.624 +3738,105.082,319.805,400.501,210.851,549.639,316.503,405.094,125.716,46.922,125.716,346.755,315.078,358.070,18.748,24.445,18.748 +3739,105.113,323.622,402.303,207.386,546.151,319.932,406.955,128.418,37.104,128.418,346.117,314.803,357.991,19.020,24.621,19.020 +3740,105.143,323.622,402.303,207.386,546.151,319.932,406.955,128.418,37.104,128.418,346.117,314.803,357.991,19.020,24.621,19.020 +3741,105.172,327.659,404.955,204.059,542.062,323.717,409.449,131.252,27.951,131.252,345.242,314.058,357.199,19.627,25.112,19.627 +3742,105.209,337.079,409.306,196.749,533.798,330.613,415.247,137.420,6.450,137.420,340.004,311.987,357.565,19.582,22.241,19.582 +3743,105.251,343.973,410.928,192.883,528.878,334.085,418.962,140.906,176.849,140.906,332.322,310.960,357.802,19.451,19.457,19.451 +3744,105.284,356.187,410.143,188.495,523.882,337.391,423.717,144.162,166.584,144.162,312.337,311.946,358.706,21.348,20.079,21.348 +3745,105.316,397.726,394.368,184.625,518.283,340.807,428.625,148.958,156.194,148.958,227.232,312.418,360.098,17.897,19.482,17.897 +3746,105.348,350.634,431.277,181.177,511.792,343.986,434.643,153.143,145.739,153.143,345.299,312.913,360.202,18.507,18.973,18.507 +3747,105.384,350.865,438.702,178.584,505.549,346.738,440.375,157.923,136.081,157.923,351.736,312.699,360.642,19.810,20.809,19.810 +3748,105.416,353.840,445.844,176.165,497.408,349.669,447.120,162.985,125.345,162.985,352.525,313.419,361.249,20.238,18.917,20.238 +3749,105.448,356.189,453.962,174.704,488.791,351.847,454.840,168.563,114.905,168.563,351.854,313.307,360.714,19.592,19.112,19.592 +3750,105.478,357.424,463.207,174.089,479.302,353.374,463.595,174.536,104.547,174.536,351.794,312.878,359.931,18.671,19.095,18.671 +3751,105.509,357.424,463.207,174.089,479.302,353.374,463.595,174.536,104.547,174.536,351.794,312.878,359.931,18.671,19.095,18.671 +3752,105.538,359.000,473.011,174.693,468.729,354.340,472.961,0.613,94.865,0.613,350.044,312.085,359.364,18.245,19.186,18.245 +3753,105.568,359.314,483.003,176.029,457.901,354.215,482.372,7.063,84.508,7.063,349.408,310.032,359.685,18.970,19.104,18.970 +3754,105.600,357.835,493.715,178.362,447.181,352.492,492.406,13.761,74.157,13.761,348.775,308.234,359.778,19.386,19.682,19.386 +3755,105.632,355.155,502.862,187.000,445.500,353.776,502.310,21.801,63.435,21.801,348.922,285.322,351.893,25.626,20.125,25.626 +3756,105.663,352.336,513.164,194.323,436.353,351.101,512.500,28.272,51.823,28.272,345.482,278.637,348.287,25.666,22.515,25.666 +3757,105.695,356.000,533.970,199.907,423.485,343.143,524.180,37.286,42.879,37.286,317.605,283.591,349.925,22.746,19.262,22.746 +3758,105.728,338.583,539.888,201.289,405.535,329.902,531.622,43.594,33.260,43.594,336.208,304.036,360.181,18.505,19.984,18.505 +3759,105.762,326.137,541.721,210.525,395.671,322.574,537.146,52.090,23.749,52.090,349.335,306.118,360.932,23.767,21.455,23.767 +3760,105.796,314.199,549.076,220.437,390.299,311.965,545.105,60.642,13.768,60.642,350.482,308.516,359.595,22.715,17.509,22.715 +3761,105.830,301.192,555.678,233.965,384.519,299.652,551.571,69.444,3.841,69.444,350.187,309.318,358.960,21.419,17.850,21.419 +3762,105.863,287.050,559.604,248.277,379.917,286.039,555.038,77.518,173.884,77.518,348.934,310.864,358.287,22.345,18.359,22.345 +3763,105.895,275.180,561.965,263.009,377.283,274.882,556.226,87.033,164.055,87.033,347.141,313.319,358.635,23.228,18.681,23.228 +3764,105.927,258.423,561.453,277.773,376.526,258.961,554.809,94.635,154.417,94.635,345.111,315.748,358.442,22.736,19.369,22.736 +3765,105.958,246.723,558.816,291.881,377.830,248.394,552.034,103.844,144.948,103.844,345.129,317.370,359.098,19.870,19.420,19.870 +3766,105.988,234.164,554.943,305.266,382.260,237.305,547.410,112.637,135.225,112.637,340.847,318.234,357.170,19.394,19.788,19.394 +3767,106.019,219.593,553.447,316.084,386.957,227.008,541.287,121.373,126.384,121.373,327.795,318.972,356.280,18.013,20.931,18.013 +3768,106.050,193.141,563.751,326.952,394.468,217.446,534.027,129.273,116.919,129.273,277.923,319.354,354.715,17.845,21.158,17.845 +3769,106.081,196.765,538.945,337.205,403.732,210.115,526.578,137.186,108.199,137.186,317.039,318.737,353.434,19.256,21.954,19.256 +3770,106.113,194.326,524.585,344.722,413.683,203.238,518.292,144.772,98.531,144.772,330.008,317.992,351.829,19.171,21.509,19.171 +3771,106.145,191.153,513.058,351.627,424.498,198.182,509.329,152.057,88.958,152.057,334.699,317.148,350.614,19.742,22.942,19.742 +3772,106.176,191.153,513.058,351.627,424.498,198.182,509.329,152.057,88.958,152.057,334.699,317.148,350.614,19.742,22.942,19.742 +3773,106.204,187.468,502.829,356.652,435.795,194.224,500.239,159.027,79.919,159.027,334.997,318.079,349.468,19.904,24.023,19.904 +3774,106.234,185.781,493.595,360.419,447.172,191.959,492.011,165.619,70.346,165.619,335.878,318.241,348.635,19.820,24.620,19.820 +3775,106.266,184.401,483.793,362.684,458.278,190.455,482.949,172.064,60.776,172.064,335.748,319.932,347.971,19.256,24.698,19.256 +3776,106.298,183.937,474.397,363.766,468.616,190.350,474.205,178.287,51.911,178.287,334.180,321.374,347.011,18.287,22.484,18.287 +3777,106.330,183.494,466.087,363.463,478.581,190.574,466.577,3.956,42.709,3.956,332.419,324.218,346.612,18.785,20.914,18.785 +3778,106.362,183.136,458.164,363.088,487.873,191.777,459.572,9.260,34.509,9.260,329.754,324.570,347.264,19.053,20.807,19.053 +3779,106.396,182.798,450.377,362.476,494.649,193.534,453.122,14.342,25.479,14.342,325.765,325.074,347.927,18.204,22.969,18.204 +3780,106.429,117.955,421.248,360.783,501.641,195.263,447.695,18.886,18.220,18.886,184.726,325.087,348.140,17.629,20.058,17.629 +3781,106.461,174.382,432.132,358.651,507.678,197.827,441.014,20.749,10.389,20.749,297.877,324.770,348.020,24.783,20.639,24.783 +3782,106.497,186.872,429.320,355.951,513.589,200.260,435.695,25.463,2.603,25.463,318.452,324.438,348.111,25.796,20.433,25.796 +3783,106.529,192.416,425.651,352.660,519.310,202.619,431.345,29.168,173.047,29.168,324.403,323.966,347.772,25.749,22.516,25.749 +3784,106.562,196.729,421.648,349.661,524.202,205.355,427.256,33.024,163.301,33.024,327.077,323.362,347.654,26.034,23.754,26.034 +3785,106.594,200.053,418.112,346.500,528.500,207.904,423.856,36.193,153.435,36.193,327.831,322.441,347.289,25.746,24.597,25.746 +3786,106.625,203.808,413.942,342.705,532.131,211.013,419.992,40.018,143.531,40.018,327.111,321.810,345.927,25.605,25.384,25.605 +3787,106.655,206.297,411.049,338.947,535.424,212.894,417.126,42.647,133.531,42.647,327.782,320.631,345.722,25.492,24.795,25.492 +3788,106.685,209.000,408.500,335.371,538.416,214.947,414.447,45.000,123.147,45.000,328.805,320.914,345.625,24.749,24.349,24.749 +3789,106.716,210.019,407.107,331.917,541.677,216.007,413.355,46.219,112.964,46.219,328.384,322.232,345.692,24.788,23.222,24.788 +3790,106.746,213.459,404.569,329.415,544.207,219.077,411.050,49.086,102.758,49.086,328.624,321.485,345.779,24.535,22.138,24.535 +3791,106.778,214.759,402.493,326.459,546.477,220.540,409.513,50.528,92.386,50.528,327.934,321.554,346.122,23.975,19.691,23.975 +3792,106.812,215.693,400.219,324.642,548.481,222.178,408.505,51.953,82.333,51.953,325.719,322.419,346.763,23.762,19.059,23.762 +3793,106.846,215.350,396.415,323.564,550.339,223.844,407.906,53.531,72.244,53.531,319.048,322.910,347.627,23.146,18.865,23.146 +3794,106.878,207.395,386.809,322.551,551.684,223.126,409.095,54.782,62.255,54.782,293.099,323.087,347.655,17.877,18.949,17.877 +3795,106.909,210.473,385.463,321.409,552.284,225.766,406.654,54.184,51.756,54.184,295.853,324.241,348.119,21.376,19.039,21.376 +3796,106.940,210.473,385.463,321.409,552.284,225.766,406.654,54.184,51.756,54.184,295.853,324.241,348.119,21.376,19.039,21.376 +3797,106.968,222.928,399.380,321.419,552.487,227.328,406.005,56.413,42.213,56.413,332.250,324.297,348.156,23.566,19.299,23.566 +3798,107.000,224.270,400.300,320.991,552.237,227.670,405.530,56.976,32.779,56.976,335.252,324.815,347.729,23.267,20.854,23.267 +3799,107.032,224.392,399.208,320.450,552.274,228.068,404.959,57.417,23.356,57.417,334.107,324.326,347.758,23.042,22.680,23.042 +3800,107.065,224.276,398.461,320.330,553.278,228.445,405.005,57.496,13.557,57.496,333.326,322.363,348.844,23.256,23.414,23.256 +3801,107.097,224.226,398.174,320.314,553.178,228.589,405.044,57.579,3.979,57.579,332.165,321.683,348.443,23.259,23.769,23.259 +3802,107.127,223.751,397.658,320.385,552.884,228.427,405.023,57.588,174.144,57.588,330.784,321.008,348.232,23.531,24.436,23.531 +3803,107.160,223.333,397.786,320.478,552.229,227.902,404.906,57.308,164.539,57.308,331.057,320.580,347.976,23.602,24.567,23.602 +3804,107.191,222.461,398.048,320.877,551.737,227.417,405.564,56.605,154.949,56.605,328.954,320.306,346.960,23.402,24.864,23.402 +3805,107.222,221.483,397.994,321.491,550.717,226.448,405.377,56.077,145.620,56.077,329.490,320.132,347.285,23.498,24.846,23.498 +3806,107.252,220.497,398.765,322.427,549.474,225.515,405.985,55.204,135.939,55.204,328.684,319.708,346.270,23.550,24.363,23.550 +3807,107.283,219.306,399.886,323.040,548.780,224.276,406.758,54.125,126.870,54.125,328.952,320.400,345.915,23.766,23.400,23.766 +3808,107.314,217.649,401.333,324.343,547.918,222.737,408.001,52.651,117.474,52.651,328.963,320.711,345.737,23.639,22.890,23.639 +3809,107.346,216.408,402.002,325.768,547.413,221.847,408.855,51.559,108.252,51.559,328.770,322.248,346.268,24.966,22.287,24.966 +3810,107.379,214.390,404.194,327.770,545.378,219.838,410.604,49.635,99.462,49.635,328.358,321.400,345.184,24.192,21.043,24.192 +3811,107.412,211.957,405.529,330.000,543.500,217.709,411.905,47.951,90.000,47.951,328.682,321.000,345.855,24.680,20.000,24.680 +3812,107.444,211.957,405.529,330.000,543.500,217.709,411.905,47.951,90.000,47.951,328.682,321.000,345.855,24.680,20.000,24.680 +3813,107.473,208.750,408.250,332.720,541.540,215.065,414.565,45.000,81.870,45.000,328.098,322.582,345.959,24.749,19.092,24.749 +3814,107.503,207.021,410.196,335.786,538.998,213.701,416.484,43.264,73.796,43.264,327.390,322.923,345.738,25.016,18.500,25.016 +3815,107.535,202.955,413.934,339.406,535.818,210.527,420.208,39.644,65.898,39.644,326.335,323.474,346.002,25.609,18.569,25.609 +3816,107.565,199.415,417.199,343.368,531.779,207.779,423.375,36.444,59.036,36.444,326.142,323.789,346.937,25.767,18.350,25.767 +3817,107.597,196.008,421.777,347.265,526.915,204.972,427.550,32.784,52.615,32.784,325.542,323.818,346.865,25.720,18.545,25.720 +3818,107.629,193.950,426.460,351.099,520.942,202.648,431.339,29.291,47.010,29.291,326.671,324.251,346.617,25.271,18.597,25.271 +3819,107.660,190.481,432.060,354.823,513.696,199.540,436.299,25.074,42.035,25.074,326.896,325.335,346.899,24.647,18.973,24.647 +3820,107.692,186.252,441.682,358.229,505.999,195.787,445.150,19.983,37.653,19.983,326.621,325.717,346.913,19.394,19.210,19.394 +3821,107.723,184.345,449.868,361.421,497.580,193.725,452.325,14.682,34.330,14.682,327.986,324.782,347.380,18.840,20.464,18.840 +3822,107.754,182.494,459.217,364.093,486.672,192.000,460.647,8.552,31.206,8.552,328.874,325.001,348.100,18.841,21.975,18.841 +3823,107.785,182.590,468.994,365.769,475.816,191.352,469.310,2.064,29.055,2.064,331.542,324.798,349.076,18.709,22.825,18.709 +3824,107.816,182.728,478.656,364.939,465.549,190.825,477.997,175.347,27.378,175.347,332.853,324.324,349.100,18.717,20.471,18.717 +3825,107.846,184.681,490.022,363.692,453.132,192.305,488.377,167.821,25.974,167.821,334.331,323.383,349.930,19.472,21.161,19.472 +3826,107.876,184.681,490.022,363.692,453.132,192.305,488.377,167.821,25.974,167.821,334.331,323.383,349.930,19.472,21.161,19.472 +3827,107.904,188.532,500.693,360.026,441.503,194.449,498.573,160.286,25.301,160.286,337.675,322.589,350.246,19.628,20.942,19.628 +3828,107.935,192.231,512.034,354.435,429.831,198.003,509.007,152.319,24.548,152.319,337.582,321.930,350.618,19.816,20.427,19.816 +3829,107.965,198.458,522.029,347.479,417.207,203.591,518.394,144.689,23.356,144.689,339.228,320.905,351.808,18.803,20.990,18.803 +3830,107.998,206.544,531.981,337.686,407.000,210.273,528.406,136.204,22.145,136.204,341.650,319.571,351.983,18.746,18.891,18.746 +3831,108.029,216.029,540.990,326.432,397.676,218.914,537.223,127.451,21.105,127.451,342.837,318.487,352.327,18.918,18.528,18.918 +3832,108.061,227.053,549.259,313.507,389.730,229.366,544.964,118.301,19.983,118.301,343.384,317.394,353.141,18.896,18.454,18.896 +3833,108.093,239.521,555.334,299.264,383.182,241.211,550.466,109.144,19.058,109.144,343.835,316.243,354.141,18.825,18.526,18.825 +3834,108.126,251.959,559.243,284.100,379.222,252.754,554.478,99.462,18.138,99.462,346.389,314.683,356.050,21.701,18.449,21.701 +3835,108.157,269.046,561.627,268.358,378.109,269.143,556.661,91.112,16.928,91.112,347.070,313.789,357.005,23.860,18.302,23.860 +3836,108.188,283.033,560.753,252.270,379.084,282.296,555.795,81.552,15.772,81.552,348.387,313.190,358.410,23.191,18.101,23.191 +3837,108.218,297.527,557.187,236.462,383.147,296.036,552.656,71.779,14.457,71.779,349.736,311.940,359.275,21.133,17.997,21.133 +3838,108.249,312.178,549.969,221.884,389.640,310.124,546.121,61.902,13.134,61.902,350.474,310.980,359.197,22.801,17.919,22.801 +3839,108.279,325.117,541.557,208.804,398.042,322.245,537.830,52.381,11.768,52.381,350.530,310.296,359.939,24.199,17.622,24.199 +3840,108.309,336.546,531.633,197.833,407.395,332.556,527.907,43.043,10.574,43.043,350.514,309.664,361.432,25.074,18.926,25.074 +3841,108.339,336.546,531.633,197.833,407.395,332.556,527.907,43.043,10.574,43.043,350.514,309.664,361.432,25.074,18.926,25.074 +3842,108.368,346.052,520.450,188.692,419.320,340.944,517.028,33.815,9.256,33.815,349.448,309.554,361.745,25.803,19.359,25.803 +3843,108.400,353.130,507.967,181.592,431.331,346.838,505.011,25.164,7.845,25.164,347.884,309.314,361.786,25.816,20.438,25.816 +3844,108.430,357.833,498.234,177.307,443.973,350.354,495.981,16.765,5.799,16.765,345.764,308.476,361.386,19.956,19.672,19.956 +3845,108.461,369.338,487.257,174.360,457.241,352.929,484.787,8.563,3.576,8.563,328.173,309.646,361.360,18.994,18.152,18.994 +3846,108.493,429.937,474.096,173.061,469.958,353.560,472.529,1.175,2.268,1.175,208.243,308.590,361.028,17.863,18.866,17.863 +3847,108.525,399.469,456.226,173.500,482.000,352.905,461.399,173.660,0.000,173.660,267.465,309.000,361.166,17.779,18.000,17.779 +3848,108.555,378.592,444.471,175.482,493.507,350.829,451.119,166.535,177.930,166.535,303.698,309.376,360.793,17.793,18.939,17.793 +3849,108.585,372.428,432.602,178.496,503.948,347.724,442.198,158.772,175.986,158.772,307.201,310.062,360.206,22.063,18.901,22.063 +3850,108.616,363.274,423.472,182.854,513.183,343.987,433.609,152.272,173.660,152.272,315.731,310.423,359.308,22.038,18.884,22.038 +3851,108.647,354.637,415.462,187.685,521.915,339.168,425.704,146.491,171.416,146.491,321.738,311.117,358.842,20.304,19.477,20.304 +3852,108.677,345.916,409.333,193.114,529.541,333.853,419.239,140.605,168.845,140.605,326.312,311.426,357.532,19.872,19.291,19.872 +3853,108.708,345.916,409.333,193.114,529.541,333.853,419.239,140.605,168.845,140.605,326.312,311.426,357.532,19.872,19.291,19.872 +3854,108.735,337.388,404.390,198.988,536.411,328.261,413.468,135.154,166.239,135.154,330.963,312.143,356.709,19.283,18.990,19.283 +3855,108.768,330.437,398.383,205.176,542.239,322.354,408.020,129.987,163.379,129.987,331.118,312.637,356.275,19.254,19.579,19.254 +3856,108.800,322.946,394.058,211.717,548.128,316.065,403.907,124.939,160.887,124.939,331.946,313.118,355.974,19.315,20.001,19.315 +3857,108.832,315.737,390.298,218.448,552.121,309.987,400.213,120.114,158.199,120.114,331.739,313.454,354.663,19.013,19.498,19.013 +3858,108.864,308.650,387.261,225.208,556.260,303.797,397.460,115.445,154.747,115.445,331.734,314.077,354.324,19.167,21.160,19.167 +3859,108.895,302.376,385.194,231.899,559.308,298.419,395.417,111.161,152.152,111.161,331.784,314.573,353.707,19.494,20.670,19.494 +3860,108.927,294.854,383.351,238.488,561.642,291.829,393.495,106.604,149.199,106.604,331.584,315.382,352.755,19.197,20.730,19.197 +3861,108.959,288.488,382.053,245.333,563.753,286.193,392.383,102.529,145.939,102.529,331.144,315.917,352.307,19.198,21.575,19.198 +3862,108.989,281.493,380.935,251.697,564.761,279.964,391.470,98.259,142.964,98.259,329.817,316.610,351.109,18.931,20.297,18.931 +3863,109.020,274.936,381.070,258.312,565.782,274.167,391.279,94.304,139.236,94.304,329.927,317.041,350.402,18.475,20.920,18.475 +3864,109.051,268.650,381.011,265.319,566.295,268.581,391.140,90.390,136.005,90.390,330.088,316.983,350.346,18.115,22.053,18.115 +3865,109.082,262.572,381.744,271.457,566.002,263.176,391.347,86.401,132.510,86.401,330.416,317.959,349.660,18.724,21.193,18.724 +3866,109.114,256.337,382.253,278.122,565.598,257.676,392.216,82.342,128.660,82.342,329.014,318.438,349.119,19.055,21.552,19.055 +3867,109.147,250.650,383.641,284.751,564.592,252.633,393.226,78.311,126.027,78.311,329.065,318.863,348.639,19.923,21.468,19.923 +3868,109.179,244.725,385.370,291.467,563.160,247.382,394.755,74.191,122.518,74.191,328.584,319.436,348.091,20.611,22.061,20.611 +3869,109.213,238.906,387.575,298.124,561.294,242.226,396.675,69.955,118.729,69.955,328.239,319.952,347.613,21.416,21.559,21.416 +3870,109.244,233.071,390.386,304.981,558.760,236.959,398.991,65.684,114.842,65.684,328.327,320.017,347.211,21.736,21.342,21.736 +3871,109.275,233.071,390.386,304.981,558.760,236.959,398.991,65.684,114.842,65.684,328.327,320.017,347.211,21.736,21.342,21.736 +3872,109.302,227.729,393.405,311.417,555.585,232.126,401.417,61.240,110.947,61.240,328.322,320.849,346.601,23.437,21.611,23.437 +3873,109.333,221.895,397.423,318.280,552.552,226.882,404.962,56.514,107.216,56.514,328.963,321.726,347.040,23.404,21.660,23.404 +3874,109.364,216.485,401.865,324.830,547.820,221.810,408.632,51.806,103.513,51.806,328.958,321.860,346.181,24.126,21.655,24.126 +3875,109.396,210.729,406.978,331.361,542.222,216.416,412.999,46.637,99.620,46.637,329.175,321.232,345.740,24.840,21.607,24.840 +3876,109.429,204.956,413.018,337.662,536.016,211.121,418.369,40.956,95.758,40.956,329.033,321.496,345.361,25.392,21.973,25.392 +3877,109.461,200.655,419.682,343.909,529.012,206.777,424.055,35.538,91.736,35.538,330.143,320.489,345.188,25.691,22.535,25.691 +3878,109.493,196.326,425.940,349.432,520.966,202.729,429.675,30.256,87.905,30.256,330.611,320.554,345.435,25.625,22.899,25.625 +3879,109.524,191.628,434.409,354.183,512.324,198.412,437.402,23.806,84.036,23.806,330.689,321.326,345.518,25.968,23.158,25.968 +3880,109.554,187.461,445.500,358.089,502.337,194.189,447.685,17.987,79.992,17.987,331.387,321.271,345.533,19.022,23.229,19.022 +3881,109.584,185.025,455.836,361.035,491.480,191.541,457.121,11.155,75.809,11.155,332.596,320.632,345.878,18.821,23.435,18.821 +3882,109.619,183.634,466.079,363.038,479.808,190.439,466.554,3.991,72.255,3.991,332.564,320.967,346.207,18.722,23.887,18.722 +3883,109.649,183.839,476.435,363.423,467.928,190.088,476.107,177.002,68.334,177.002,334.537,321.072,347.051,18.028,24.418,18.028 +3884,109.680,185.183,488.378,361.857,455.031,190.879,487.265,168.944,64.312,168.944,336.363,320.291,347.971,18.862,24.446,18.862 +3885,109.712,187.881,500.095,358.751,441.573,193.654,498.085,160.801,60.408,160.801,336.774,319.999,348.998,19.748,25.067,19.748 +3886,109.742,187.881,500.095,358.751,441.573,193.654,498.085,160.801,60.408,160.801,336.774,319.999,348.998,19.748,25.067,19.748 +3887,109.770,192.472,511.476,353.591,428.590,197.769,508.744,152.723,57.002,152.723,338.537,319.487,350.457,19.470,24.638,19.470 +3888,109.804,198.560,522.085,346.053,415.969,203.465,518.602,144.617,53.286,144.617,339.330,318.790,351.361,18.789,24.687,18.789 +3889,109.835,206.566,532.553,336.230,404.301,210.844,528.401,135.855,49.214,135.855,340.893,318.555,352.815,18.805,24.956,18.805 +3890,109.868,216.807,542.219,324.724,394.355,220.374,537.432,126.690,45.481,126.690,342.215,316.820,354.156,19.292,24.991,19.292 +3891,109.899,228.181,549.868,312.528,386.257,230.965,544.474,117.300,42.114,117.300,343.868,314.768,356.007,18.661,25.097,18.661 +3892,109.930,241.478,555.641,298.137,379.851,243.353,549.856,107.952,38.784,107.952,345.064,313.279,357.227,19.243,24.903,19.243 +3893,109.963,253.794,559.886,281.512,378.275,254.504,554.741,97.860,35.242,97.860,346.615,311.597,357.003,22.614,20.152,22.614 +3894,110.000,270.042,561.487,265.649,376.654,269.974,555.861,89.312,31.900,89.312,347.239,311.338,358.493,20.179,21.146,20.179 +3895,110.033,284.422,560.025,249.958,377.998,283.380,554.714,78.898,28.261,78.898,348.868,309.995,359.691,23.147,21.837,23.147 +3896,110.064,301.081,555.847,233.414,383.598,299.193,550.806,69.464,24.667,69.464,348.547,309.418,359.314,21.673,19.346,21.673 +3897,110.097,315.771,548.423,218.557,390.753,313.165,543.998,59.505,21.038,59.505,349.845,309.584,360.116,23.234,19.385,23.234 +3898,110.130,328.293,539.125,206.155,399.740,325.098,535.328,49.915,17.080,49.915,350.730,308.348,360.654,24.459,19.588,24.459 +3899,110.163,339.106,529.329,194.768,410.571,334.534,525.377,40.840,12.616,40.840,349.545,308.920,361.631,25.594,19.394,25.594 +3900,110.195,347.409,517.145,186.580,422.440,342.501,514.126,31.597,8.130,31.597,350.164,308.157,361.689,24.880,21.072,24.880 +3901,110.228,353.803,504.924,180.110,434.776,348.017,502.458,23.085,2.837,23.085,349.420,308.711,361.999,25.321,21.199,25.321 +3902,110.259,356.281,495.105,175.979,447.137,350.837,493.636,15.093,176.737,15.093,350.589,308.924,361.866,19.851,21.500,19.851 +3903,110.290,358.319,483.566,173.556,459.518,353.131,482.886,7.461,169.867,7.461,351.711,310.024,362.176,19.406,20.752,19.406 +3904,110.320,358.532,472.649,172.773,471.282,353.394,472.612,0.415,162.474,0.415,350.976,310.667,361.251,18.304,20.075,18.304 +3905,110.350,357.238,462.140,173.344,482.124,352.901,462.622,173.660,154.514,173.660,352.497,311.011,361.225,19.326,19.920,19.326 +3906,110.381,355.359,452.606,175.116,492.631,351.320,453.500,167.519,145.620,167.519,352.720,312.314,360.994,19.639,20.198,19.639 +3907,110.412,353.511,443.998,177.134,501.143,348.880,445.523,161.772,136.903,161.772,351.300,312.792,361.052,19.969,20.873,19.969 +3908,110.443,353.511,443.998,177.134,501.143,348.880,445.523,161.772,136.903,161.772,351.300,312.792,361.052,19.969,20.873,19.969 +3909,110.471,349.140,436.848,179.960,509.220,345.778,438.299,156.658,126.870,156.658,353.368,314.000,360.693,19.658,19.800,19.658 +3910,110.502,345.952,430.545,182.700,516.100,342.375,432.463,151.801,116.565,151.801,352.375,314.391,360.491,19.606,20.125,19.606 +3911,110.534,342.810,424.861,187.133,522.826,339.451,427.013,147.358,106.060,147.358,351.903,315.519,359.881,19.499,19.118,19.499 +3912,110.564,338.657,420.015,191.041,528.243,335.865,422.086,143.444,95.458,143.444,352.170,315.715,359.123,19.044,19.085,19.044 +3913,110.594,335.629,415.203,194.931,533.322,332.329,418.000,139.712,84.738,139.712,350.105,315.166,358.757,19.252,19.195,19.252 +3914,110.626,332.506,411.457,199.130,537.449,329.308,414.504,136.384,73.856,136.384,349.277,315.242,358.112,19.008,19.818,19.008 +3915,110.656,328.847,407.887,203.249,540.855,325.853,411.079,133.162,62.684,133.162,348.307,315.747,357.060,19.381,20.728,19.381 +3916,110.687,325.687,404.886,206.694,543.363,322.738,408.362,130.314,51.571,130.314,346.919,314.398,356.035,19.340,21.217,19.340 +3917,110.718,322.432,401.948,208.435,547.301,318.876,406.546,127.718,40.179,127.718,346.186,313.931,357.812,18.817,24.415,18.817 +3918,110.748,319.790,399.706,211.603,549.047,316.320,404.600,125.340,29.454,125.340,344.803,314.424,356.802,18.806,24.811,18.806 +3919,110.780,317.358,397.041,215.047,550.361,313.935,402.276,123.179,18.768,123.179,343.608,313.400,356.117,18.542,25.325,18.542 +3920,110.812,315.053,394.651,217.811,552.174,311.265,400.910,121.185,6.277,121.185,340.962,313.290,355.595,18.596,23.230,18.596 +3921,110.843,315.053,394.651,217.811,552.174,311.265,400.910,121.185,6.277,121.185,340.962,313.290,355.595,18.596,23.230,18.596 +3922,110.872,312.801,392.573,219.961,553.568,308.781,399.733,119.310,174.872,119.310,338.819,313.433,355.243,18.664,22.065,18.664 +3923,110.903,312.029,390.146,222.102,554.840,307.370,398.889,118.048,163.369,118.048,335.645,314.068,355.458,19.127,21.528,19.127 +3924,110.934,310.772,386.621,223.387,555.292,305.181,397.881,116.405,151.361,116.405,329.584,314.687,354.728,18.884,20.018,18.884 +3925,110.964,311.113,381.691,224.891,556.472,303.689,397.552,115.084,140.343,115.084,319.651,315.732,354.676,19.790,19.409,19.790 +3926,110.996,313.647,369.635,226.592,557.968,301.494,396.745,114.146,128.346,114.146,296.094,316.885,355.513,17.873,19.595,17.873 +3927,111.029,331.828,323.069,228.086,559.281,300.283,396.672,113.199,116.959,113.199,195.647,317.998,355.802,17.070,19.525,17.070 +3928,111.063,302.199,389.772,228.179,559.855,299.444,396.582,112.023,105.524,112.023,341.471,319.085,356.165,17.759,21.144,17.759 +3929,111.096,299.719,392.218,230.964,561.497,298.057,396.473,111.346,94.618,111.346,347.113,320.219,356.250,18.649,20.801,18.649 +3930,111.130,299.316,391.398,232.676,562.239,297.447,396.278,110.956,82.546,110.956,345.845,320.632,356.297,19.194,18.960,19.194 +3931,111.164,298.534,391.575,234.449,562.175,296.992,395.688,110.556,71.447,110.556,346.910,320.026,355.694,18.961,22.259,18.961 +3932,111.197,298.087,390.930,234.822,561.415,296.503,395.241,110.171,59.216,110.171,345.316,318.142,354.502,18.735,20.509,18.735 +3933,111.229,297.974,390.443,233.651,562.432,296.068,395.669,110.034,47.121,110.034,344.985,317.247,356.109,18.743,24.444,18.743 +3934,111.261,297.869,390.361,233.872,561.889,296.010,395.472,109.983,35.640,109.983,344.392,317.013,355.267,18.796,24.688,18.796 +3935,111.292,298.447,389.747,234.044,560.905,296.475,395.119,110.158,24.775,110.158,342.845,316.808,354.291,18.822,25.213,18.822 +3936,111.322,299.325,388.549,234.140,560.225,297.012,394.776,110.376,12.995,110.376,340.687,314.878,353.973,18.882,25.709,18.882 +3937,111.352,300.236,388.090,233.018,560.232,297.519,395.240,110.807,0.830,110.807,338.990,314.184,354.288,19.238,23.679,19.238 +3938,111.383,301.723,387.667,231.991,559.950,298.590,395.604,111.541,170.218,111.541,337.573,314.328,354.639,19.019,23.073,19.019 +3939,111.415,302.918,386.586,230.558,558.957,299.276,395.584,112.036,159.044,112.036,335.025,314.531,354.440,18.870,21.379,18.870 +3940,111.446,304.705,384.329,228.747,558.096,299.880,395.965,112.521,147.995,112.521,328.830,315.137,354.023,19.263,20.034,19.263 +3941,111.477,308.526,379.940,226.984,557.833,301.365,396.648,113.199,137.726,113.199,318.549,315.954,354.905,20.352,19.508,20.352 +3942,111.509,308.526,379.940,226.984,557.833,301.365,396.648,113.199,137.726,113.199,318.549,315.954,354.905,20.352,19.508,20.352 +3943,111.537,314.938,367.836,225.964,557.810,301.701,396.959,114.444,127.763,114.444,291.566,316.699,355.547,17.794,19.641,17.794 +3944,111.568,336.952,325.501,224.912,557.671,302.608,397.622,115.463,119.236,115.463,196.050,317.522,355.812,17.799,19.699,17.799 +3945,111.600,307.022,392.799,223.016,557.197,304.278,398.457,115.866,110.898,115.866,344.002,317.991,356.578,18.078,20.077,18.078 +3946,111.631,307.194,395.825,222.494,556.776,305.551,399.052,116.992,102.529,116.992,349.237,318.671,356.480,18.392,20.391,18.392 +3947,111.663,309.266,396.785,220.585,555.978,307.452,400.120,118.540,93.050,118.540,349.251,318.720,356.843,18.633,19.108,18.633 +3948,111.696,311.826,397.440,218.169,554.480,309.694,401.096,120.256,83.136,120.256,348.751,318.001,357.214,18.859,20.004,18.859 +3949,111.728,314.944,398.513,216.376,552.678,312.504,402.357,122.400,72.284,122.400,347.750,318.412,356.857,18.770,20.414,18.770 +3950,111.762,318.136,400.248,214.013,549.932,315.760,403.680,124.695,62.511,124.695,347.977,316.737,356.325,19.227,21.233,19.227 +3951,111.798,321.506,401.627,209.037,548.171,318.091,406.150,127.057,51.340,127.057,346.773,315.471,358.109,18.697,24.207,18.697 +3952,111.846,328.412,406.147,202.446,540.883,324.673,410.260,132.274,30.343,132.274,346.628,313.906,357.744,19.238,24.270,19.238 +3953,111.877,328.412,406.147,202.446,540.883,324.673,410.260,132.274,30.343,132.274,346.628,313.906,357.744,19.238,24.270,19.238 +3954,111.906,333.074,409.153,199.014,536.362,328.700,413.418,135.725,19.654,135.725,345.148,312.793,357.366,19.225,24.216,19.225 +3955,111.941,338.306,411.195,195.127,532.141,331.978,416.751,138.715,8.409,138.715,341.099,312.001,357.939,19.831,22.176,19.831 +3956,111.971,345.735,413.281,191.379,526.965,335.674,420.935,142.738,177.709,142.738,332.795,311.391,358.077,18.857,19.464,18.857 +3957,112.002,359.154,413.231,187.200,521.711,339.443,426.371,146.310,166.874,146.310,311.742,311.888,359.120,21.633,19.731,21.633 +3958,112.034,407.883,393.847,183.341,516.045,342.009,430.901,150.642,155.632,150.642,208.906,312.096,360.067,17.922,19.622,17.922 +3959,112.065,351.529,433.420,180.413,509.877,345.126,436.408,154.983,144.930,154.983,346.524,313.278,360.657,19.211,19.494,19.211 +3960,112.097,351.501,441.289,177.697,502.691,347.826,442.643,159.775,134.096,159.775,352.965,312.725,360.798,19.853,20.421,19.853 +3961,112.130,354.099,449.023,175.446,494.465,350.476,450.006,164.805,122.784,164.805,353.621,313.701,361.128,19.920,19.208,19.920 +3962,112.164,356.689,457.135,174.542,485.612,352.687,457.802,170.538,111.636,170.538,352.471,313.460,360.586,19.563,19.531,19.563 +3963,112.197,358.484,466.238,174.278,475.845,353.885,466.514,176.558,100.993,176.558,350.472,312.617,359.686,18.726,18.990,18.726 +3964,112.230,359.428,476.122,175.000,464.500,354.405,475.900,2.526,90.000,2.526,349.410,311.000,359.467,18.864,18.000,18.864 +3965,112.261,359.116,486.370,176.656,453.876,353.829,485.513,9.211,79.315,9.211,349.195,310.595,359.906,19.209,19.468,19.209 +3966,112.293,356.705,497.042,179.871,443.363,351.739,495.626,15.910,68.394,15.910,348.892,307.689,359.221,19.593,20.114,19.593 +3967,112.322,354.098,506.155,187.442,440.540,351.924,505.188,23.962,55.474,23.962,348.365,290.423,353.123,25.587,22.040,25.587 +3968,112.352,352.735,518.441,193.366,428.176,347.026,515.016,30.964,45.507,30.964,339.567,289.252,352.883,25.382,20.874,25.382 +3969,112.384,363.106,546.946,194.358,411.921,335.240,525.161,38.019,34.891,38.019,290.729,306.232,361.471,18.320,19.362,18.320 +3970,112.416,334.423,536.794,203.301,402.353,329.387,531.549,46.169,24.924,46.169,346.497,306.050,361.039,24.787,20.636,24.787 +3971,112.446,322.228,544.540,212.405,395.370,319.304,540.364,55.008,14.415,55.008,349.976,308.063,360.172,23.512,17.444,23.512 +3972,112.478,309.900,550.800,224.528,388.572,308.167,547.334,63.435,3.698,63.435,351.063,308.296,358.813,22.361,17.888,22.361 +3973,112.510,309.900,550.800,224.528,388.572,308.167,547.334,63.435,3.698,63.435,351.063,308.296,358.813,22.361,17.888,22.361 +3974,112.538,297.454,557.218,238.230,382.889,295.970,552.676,71.908,173.052,71.908,349.086,310.819,358.645,20.837,18.394,20.837 +3975,112.569,282.608,561.120,252.857,378.721,281.667,555.908,79.771,162.515,79.771,348.381,312.474,358.973,23.619,18.688,23.619 +3976,112.600,270.171,562.509,267.368,376.249,270.093,555.665,89.349,152.194,89.349,345.182,314.618,358.871,20.192,19.117,20.192 +3977,112.631,254.301,560.909,282.175,376.084,255.249,553.628,97.419,142.058,97.419,344.385,316.616,359.070,22.720,19.462,22.720 +3978,112.663,242.184,558.165,296.897,379.409,244.564,550.467,107.184,131.540,107.184,341.652,317.808,357.767,19.096,20.767,19.096 +3979,112.697,227.294,556.913,308.431,383.024,233.174,544.977,116.225,121.866,116.225,330.464,318.413,357.076,18.312,21.186,18.312 +3980,112.730,202.556,566.919,320.392,390.444,222.225,538.432,124.624,112.049,124.624,285.878,318.120,355.114,17.986,19.976,17.986 +3981,112.763,202.288,543.705,332.073,399.298,214.083,531.095,133.086,102.319,133.086,319.176,317.674,353.708,19.784,22.324,19.784 +3982,112.795,198.188,528.847,342.012,409.091,206.510,522.162,141.223,91.736,141.223,331.556,316.521,352.903,19.385,23.898,19.385 +3983,112.827,193.997,517.176,348.983,420.553,200.275,513.423,149.128,81.469,149.128,335.956,317.053,350.585,19.685,23.438,19.685 +3984,112.858,189.479,506.099,355.150,431.950,195.638,503.414,156.448,71.565,156.448,336.122,317.493,349.560,19.603,24.350,19.603 +3985,112.890,186.832,496.128,359.481,444.066,192.594,494.432,163.598,60.945,163.598,336.623,318.582,348.635,20.087,25.059,20.087 +3986,112.921,184.987,485.922,362.659,455.573,191.018,484.923,170.591,51.340,170.591,336.034,320.312,348.260,19.077,23.426,19.077 +3987,112.952,183.397,475.992,363.780,467.459,190.334,475.637,177.064,41.104,177.064,333.382,322.383,347.275,18.770,21.473,18.770 +3988,112.982,182.601,466.812,364.579,477.674,190.732,467.297,3.417,32.005,3.417,332.021,323.511,348.312,18.743,22.154,18.743 +3989,113.012,181.817,458.063,364.558,486.119,192.412,459.798,9.298,21.991,9.298,326.800,324.231,348.272,18.715,24.411,18.715 +3990,113.043,181.817,458.063,364.558,486.119,192.412,459.798,9.298,21.991,9.298,326.800,324.231,348.272,18.715,24.411,18.715 +3991,113.072,115.271,432.092,362.686,495.292,193.866,452.944,14.859,13.654,14.859,185.442,325.010,348.069,17.635,20.285,17.635 +3992,113.103,173.390,438.663,360.524,502.231,195.771,446.516,19.335,5.049,19.335,300.379,324.651,347.816,19.170,20.338,19.170 +3993,113.134,186.309,431.804,357.487,509.801,199.280,437.569,23.962,176.186,23.962,319.428,324.280,347.815,25.993,21.220,25.993 +3994,113.165,192.229,426.580,353.812,516.728,202.189,432.012,28.610,165.727,28.610,324.662,323.801,347.351,25.858,22.962,25.858 +3995,113.196,196.028,422.955,350.105,522.902,204.583,428.302,32.005,155.298,32.005,326.903,322.678,347.080,25.970,24.257,25.970 +3996,113.229,200.053,418.112,345.649,528.416,207.606,423.639,36.193,144.689,36.193,327.831,321.888,346.552,25.746,25.093,25.746 +3997,113.261,204.235,413.059,340.926,533.369,211.058,418.907,40.601,133.831,40.601,328.216,320.585,346.188,25.381,24.931,25.381 +3998,113.293,208.150,409.265,336.240,537.656,214.225,415.180,44.236,123.056,44.236,328.766,320.954,345.723,24.869,24.293,24.869 +3999,113.322,210.715,406.963,331.496,542.402,216.729,413.330,46.637,111.975,46.637,327.762,322.376,345.277,24.840,23.314,24.840 +4000,113.353,215.096,403.133,327.419,545.776,220.646,409.885,50.583,101.004,50.583,328.076,321.043,345.556,24.425,21.950,24.425 +4001,113.384,217.699,399.869,323.000,549.500,223.435,407.561,53.286,90.000,53.286,327.417,321.000,346.609,23.967,18.000,23.967 +4002,113.415,218.897,395.841,320.059,552.583,225.933,406.152,55.692,79.330,55.692,323.052,322.813,348.017,22.614,19.384,22.614 +4003,113.445,214.845,386.249,317.151,554.940,226.956,405.928,58.392,68.429,58.392,302.142,323.107,348.357,17.688,18.578,17.688 +4004,113.477,214.845,386.249,317.151,554.940,226.956,405.928,58.392,68.429,58.392,302.142,323.107,348.357,17.688,18.578,17.688 +4005,113.506,216.207,378.067,314.245,556.842,231.254,403.355,59.247,57.177,59.247,289.827,323.487,348.680,21.025,19.368,21.025 +4006,113.537,230.456,394.540,312.514,557.587,234.100,401.580,62.632,46.975,62.632,333.329,322.931,349.184,22.547,20.226,22.547 +4007,113.568,233.769,395.084,309.840,558.544,236.285,400.387,64.612,36.719,64.612,337.100,323.599,348.839,22.356,20.565,22.356 +4008,113.599,235.728,393.921,306.647,559.727,238.050,399.266,66.525,26.952,66.525,337.360,323.799,349.014,21.788,23.372,21.788 +4009,113.630,237.825,392.067,304.714,561.258,240.431,398.600,68.250,16.060,68.250,335.733,321.285,349.799,22.051,24.621,22.051 +4010,113.661,239.632,390.876,302.059,561.946,242.169,397.736,69.702,6.054,69.702,334.947,320.129,349.576,21.649,24.619,21.649 +4011,113.694,241.201,389.288,299.612,562.453,243.803,396.885,71.092,175.601,71.092,333.376,318.827,349.438,21.309,24.926,21.309 +4012,113.724,242.781,388.094,297.060,562.726,245.325,396.111,72.399,165.124,72.399,332.096,318.593,348.919,21.049,24.721,21.049 +4013,113.755,244.323,387.168,294.496,563.068,246.746,395.387,73.578,155.078,73.578,331.542,318.490,348.679,20.719,24.724,20.719 +4014,113.786,245.858,386.312,292.179,563.339,248.122,394.615,74.745,144.744,74.745,331.528,318.620,348.742,20.435,23.934,20.435 +4015,113.819,247.197,385.437,289.902,563.895,249.447,394.315,75.784,134.534,75.784,330.325,318.302,348.643,20.202,22.822,20.202 +4016,113.852,248.466,384.422,287.000,564.000,250.648,393.731,76.809,123.690,76.809,329.021,319.507,348.144,20.035,21.633,20.035 +4017,113.884,249.295,382.389,285.156,564.849,251.736,393.562,77.675,113.658,77.675,326.073,320.027,348.946,19.900,19.950,19.900 +4018,113.914,249.768,379.328,283.919,566.339,252.823,394.184,78.381,104.365,78.381,319.449,321.845,349.781,19.700,20.095,19.700 +4019,113.947,249.378,375.534,283.410,567.886,253.144,394.759,78.917,95.991,78.917,312.252,324.103,351.432,18.585,20.572,18.585 +4020,113.979,246.952,360.443,281.918,568.002,253.403,394.634,79.315,88.431,79.315,281.709,322.317,351.298,18.096,21.882,18.096 +4021,114.010,246.952,360.443,281.918,568.002,253.403,394.634,79.315,88.431,79.315,281.709,322.317,351.298,18.096,21.882,18.096 +4022,114.039,239.000,314.500,283.330,567.919,253.558,394.570,79.695,81.085,79.695,188.992,323.205,351.757,17.889,19.700,17.889 +4023,114.070,252.183,383.416,283.129,568.105,254.294,394.509,79.227,74.228,79.227,329.270,323.607,351.853,18.913,19.306,18.913 +4024,114.102,253.691,387.767,283.371,567.930,254.863,394.344,79.902,67.413,79.902,338.429,322.924,351.790,19.650,21.435,19.650 +4025,114.133,254.042,387.426,284.062,567.365,255.164,393.900,80.172,59.146,80.172,338.564,322.073,351.705,19.520,20.559,19.520 +4026,114.165,254.477,388.423,283.712,567.583,255.418,394.029,80.473,50.380,80.473,340.317,322.132,351.686,19.421,20.810,19.421 +4027,114.196,255.104,389.048,283.126,567.230,255.900,393.980,80.838,41.540,80.838,340.757,321.400,350.749,19.299,22.921,19.299 +4028,114.228,255.557,388.188,282.224,566.945,256.382,393.508,81.193,31.855,81.193,339.930,322.131,350.697,19.333,23.882,19.333 +4029,114.260,255.869,387.391,281.900,567.026,256.761,393.392,81.545,21.477,81.545,338.751,320.679,350.885,19.061,25.141,19.061 +4030,114.291,256.284,386.456,281.833,566.922,257.271,393.411,81.922,11.911,81.922,336.435,318.851,350.482,19.214,25.631,19.214 +4031,114.321,256.586,385.535,281.479,566.738,257.601,392.956,82.213,1.606,82.213,335.849,317.268,350.829,19.104,24.766,19.104 +4032,114.352,256.825,384.589,280.477,566.348,257.902,392.718,82.451,171.439,82.451,333.780,317.700,350.180,18.991,25.179,18.991 +4033,114.383,257.049,384.238,279.636,566.392,258.133,392.719,82.716,160.866,82.716,332.893,317.882,349.994,18.891,24.718,18.891 +4034,114.413,257.339,383.708,278.808,566.039,258.416,392.330,82.875,150.255,82.875,332.413,317.901,349.792,18.853,23.691,18.853 +4035,114.445,257.595,383.129,277.755,565.662,258.681,392.175,83.157,138.366,83.157,330.827,317.815,349.048,18.944,22.921,18.944 +4036,114.476,257.595,383.129,277.755,565.662,258.681,392.175,83.157,138.366,83.157,330.827,317.815,349.048,18.944,22.921,18.944 +4037,114.505,257.678,382.125,276.887,565.908,258.877,392.285,83.267,129.094,83.267,328.614,318.886,349.075,18.834,21.343,18.834 +4038,114.536,257.660,380.134,275.760,565.858,259.054,392.177,83.400,117.387,83.400,324.652,319.425,348.899,18.767,19.727,18.767 +4039,114.567,257.275,376.123,275.504,567.350,259.211,392.950,83.437,106.827,83.437,316.365,321.646,350.239,18.717,19.816,18.717 +4040,114.598,256.093,368.143,275.171,568.769,259.038,393.660,83.418,95.654,83.418,300.239,322.680,351.610,18.111,24.080,18.111 +4041,114.629,249.878,312.902,276.811,568.510,258.850,393.650,83.660,86.895,83.660,189.059,322.045,351.548,17.890,22.022,17.890 +4042,114.660,258.229,385.444,276.128,569.094,259.218,393.852,83.290,75.847,83.290,335.101,323.313,352.034,18.578,20.658,18.578 +4043,114.692,258.643,386.876,277.300,568.646,259.405,393.682,83.616,66.109,83.616,338.037,321.864,351.736,18.903,20.704,18.903 +4044,114.724,258.681,387.377,279.235,567.578,259.349,393.263,83.526,54.911,83.526,339.044,321.549,350.892,18.717,20.477,18.717 +4045,114.754,258.655,387.943,279.250,567.250,259.250,393.111,83.434,45.000,83.434,340.164,320.319,350.568,18.668,21.213,18.668 +4046,114.786,258.477,387.912,278.368,567.981,259.116,393.382,83.333,35.385,83.333,340.294,321.203,351.308,18.768,24.184,18.768 +4047,114.817,258.179,387.336,278.823,567.451,258.861,393.053,83.202,25.017,83.202,339.556,321.212,351.070,18.899,25.011,18.899 +4048,114.848,257.857,386.320,279.797,567.272,258.672,393.042,83.089,14.765,83.089,337.469,318.983,351.011,19.012,25.636,19.012 +4049,114.880,257.354,385.331,280.041,567.012,258.301,392.908,82.875,4.803,82.875,335.638,317.486,350.911,18.977,24.569,18.977 +4050,114.913,256.953,384.636,280.275,566.446,257.997,392.676,82.600,174.958,82.600,334.168,316.945,350.384,18.880,25.138,18.880 +4051,114.945,256.593,384.285,280.283,566.200,257.715,392.590,82.304,164.798,82.304,333.375,317.403,350.137,18.990,25.080,18.990 +4052,114.977,256.115,383.984,280.381,565.746,257.302,392.427,81.995,154.904,81.995,332.633,317.475,349.687,19.047,24.531,19.047 +4053,115.007,256.115,383.984,280.381,565.746,257.302,392.427,81.995,154.904,81.995,332.633,317.475,349.687,19.047,24.531,19.047 +4054,115.036,255.645,383.689,280.459,565.651,256.942,392.650,81.759,144.811,81.759,331.063,317.557,349.171,19.275,23.596,19.275 +4055,115.068,254.879,383.211,280.500,565.500,256.332,392.660,81.254,135.000,81.254,329.888,318.198,349.009,19.311,22.627,19.311 +4056,115.100,254.010,382.513,280.281,565.350,255.681,392.845,80.811,123.792,80.811,327.507,319.244,348.439,19.308,21.915,19.308 +4057,115.131,252.988,381.313,280.715,565.632,254.962,392.782,80.230,115.084,80.230,326.154,319.882,349.428,19.331,20.060,19.331 +4058,115.164,251.510,378.723,281.976,566.559,254.250,393.640,79.592,106.138,79.592,319.833,321.713,350.167,19.530,20.696,19.530 +4059,115.197,249.692,376.462,283.925,567.355,253.283,394.413,78.690,97.696,78.690,314.570,322.823,351.185,19.612,22.391,19.612 +4060,115.228,246.179,370.415,284.962,566.951,251.474,394.649,77.675,91.102,77.675,301.345,322.229,350.958,18.923,20.150,18.923 +4061,115.260,241.210,360.710,288.744,566.662,249.566,395.525,76.504,84.723,76.504,279.503,322.859,351.110,17.892,20.283,17.892 +4062,115.291,226.101,314.684,291.108,566.479,247.588,396.336,75.256,78.838,75.256,182.370,323.780,351.233,17.865,19.609,17.865 +4063,115.321,222.952,319.838,293.293,566.064,245.656,397.029,73.610,72.824,73.610,190.293,323.638,351.215,17.833,18.865,17.833 +4064,115.352,239.156,381.476,296.029,564.701,244.535,397.158,71.068,66.873,71.068,317.217,323.282,350.375,20.047,19.025,20.047 +4065,115.383,239.241,389.912,298.869,563.797,242.305,398.072,69.416,61.198,69.416,332.632,322.928,350.064,20.947,20.235,20.947 +4066,115.414,238.662,391.711,302.641,562.443,241.277,398.464,68.839,53.973,68.839,335.664,323.053,350.147,21.780,19.630,21.780 +4067,115.446,236.824,392.993,305.627,560.528,239.314,398.925,67.230,46.254,67.230,336.485,322.611,349.350,21.925,19.784,21.925 +4068,115.478,235.167,394.603,307.942,559.542,237.535,399.838,65.666,38.306,65.666,337.564,323.619,349.055,22.164,20.389,22.164 +4069,115.510,235.167,394.603,307.942,559.542,237.535,399.838,65.666,38.306,65.666,337.564,323.619,349.055,22.164,20.389,22.164 +4070,115.539,233.169,395.636,310.205,558.144,235.584,400.594,64.026,29.954,64.026,337.605,323.986,348.635,22.383,22.747,22.383 +4071,115.569,230.375,395.851,313.168,556.910,233.457,401.736,62.354,20.056,62.354,335.604,322.528,348.889,22.315,24.200,22.315 +4072,115.600,227.913,396.113,315.934,555.850,231.751,402.919,60.581,10.739,60.581,333.494,321.459,349.121,22.975,24.596,22.975 +4073,115.633,225.289,397.128,318.994,554.149,229.640,404.269,58.643,0.490,58.643,332.250,320.065,348.973,23.257,23.734,23.257 +4074,115.664,222.791,398.638,321.495,551.971,227.374,405.582,56.575,169.992,56.575,331.407,320.634,348.047,23.419,24.562,23.419 +4075,115.697,220.052,400.253,324.504,549.367,225.095,407.296,54.392,159.775,54.392,329.448,320.222,346.772,23.730,24.743,23.730 +4076,115.731,216.643,401.710,327.316,546.687,222.177,408.759,51.870,149.574,51.870,328.905,320.182,346.828,23.869,24.965,23.869 +4077,115.764,213.718,404.171,330.268,543.734,219.426,410.831,49.399,138.945,49.399,328.541,319.852,346.085,24.513,24.714,24.513 +4078,115.798,209.631,407.473,333.512,540.610,215.798,413.821,45.830,128.660,45.830,328.227,320.469,345.929,24.797,24.675,24.797 +4079,115.831,207.410,410.360,336.383,537.623,213.613,416.218,43.363,117.759,43.363,328.166,321.179,345.229,25.001,23.986,25.001 +4080,115.865,203.124,415.660,340.031,533.509,209.484,420.835,39.130,106.966,39.130,328.350,321.068,344.748,25.322,23.442,25.322 +4081,115.897,200.486,419.002,343.869,529.365,206.962,423.697,35.942,96.818,35.942,329.734,321.493,345.731,25.503,23.442,25.503 +4082,115.928,197.846,423.146,347.565,524.384,204.388,427.295,32.381,85.764,32.381,330.326,321.896,345.819,25.459,22.420,25.459 +4083,115.960,194.818,428.361,350.725,518.811,201.313,431.872,28.393,75.411,28.393,330.793,322.091,345.559,25.060,20.721,25.060 +4084,115.990,192.237,434.216,354.371,512.327,198.669,437.075,23.962,65.026,23.962,331.612,322.900,345.690,25.587,20.514,25.587 +4085,116.020,187.672,444.091,357.488,505.654,194.698,446.508,18.981,54.673,18.981,331.494,323.623,346.353,18.973,19.541,18.973 +4086,116.050,185.059,451.265,360.347,497.146,192.769,453.192,14.036,44.465,14.036,330.576,324.634,346.471,19.403,19.441,19.403 +4087,116.082,183.022,458.696,363.090,488.095,191.623,460.056,8.985,34.548,8.985,330.070,324.828,347.485,18.767,20.767,18.767 +4088,116.114,181.159,467.768,365.051,478.013,191.013,468.254,2.822,23.914,2.822,328.882,323.995,348.614,18.864,21.187,18.864 +4089,116.147,180.771,476.525,365.211,468.188,190.998,476.000,177.064,13.687,177.064,328.287,324.511,348.768,17.976,20.551,17.976 +4090,116.179,181.528,486.626,364.494,457.091,191.731,484.948,170.665,3.915,170.665,329.306,324.158,349.987,18.600,19.718,18.600 +4091,116.213,183.286,496.948,361.954,445.538,193.563,494.075,164.378,174.308,164.378,329.142,323.983,350.483,18.221,18.939,18.221 +4092,116.244,184.602,507.856,358.013,434.048,196.382,502.921,157.270,164.578,157.270,325.834,323.636,351.379,18.596,19.247,18.596 +4093,116.274,184.602,507.856,358.013,434.048,196.382,502.921,157.270,164.578,157.270,325.834,323.636,351.379,18.596,19.247,18.596 +4094,116.302,185.789,521.027,352.497,422.493,200.822,512.374,150.075,155.199,150.075,317.893,322.742,352.584,18.581,18.942,18.581 +4095,116.332,186.176,536.146,344.824,411.510,205.889,520.871,142.229,145.670,142.229,303.737,322.042,353.615,18.152,18.812,18.152 +4096,116.364,172.791,569.861,335.680,401.209,212.660,528.929,134.246,136.225,134.246,240.377,320.533,354.656,17.685,18.162,17.685 +4097,116.397,173.608,601.128,325.010,392.127,220.593,536.352,125.955,126.722,125.955,196.070,318.994,356.112,17.484,19.030,17.484 +4098,116.429,192.971,613.830,312.697,384.858,230.234,543.160,117.801,117.176,117.801,197.195,317.623,356.980,17.579,19.830,17.579 +4099,116.461,214.512,623.552,299.227,379.448,240.699,548.603,109.259,107.825,109.259,199.203,316.311,357.988,18.119,19.592,18.119 +4100,116.492,239.096,630.019,285.018,376.276,254.416,553.419,101.310,98.593,101.310,203.176,313.934,359.410,21.377,19.534,21.377 +4101,116.522,260.508,632.024,270.521,376.030,261.742,555.482,90.924,89.655,90.924,206.038,312.025,359.141,22.175,18.042,22.175 +4102,116.553,284.507,630.491,255.079,376.573,275.021,555.789,82.763,80.151,82.763,209.996,311.623,360.600,23.053,19.486,23.053 +4103,116.584,308.160,620.592,240.322,380.955,288.998,553.881,73.974,70.999,73.974,220.468,308.648,359.287,21.697,19.379,21.697 +4104,116.615,325.613,598.449,226.271,386.594,303.214,549.170,65.556,61.631,65.556,251.427,307.826,359.687,18.456,19.833,18.456 +4105,116.647,336.502,575.726,213.593,393.707,314.946,542.792,56.793,52.083,56.793,281.771,308.453,360.493,18.301,20.146,18.301 +4106,116.679,345.219,557.208,202.989,402.233,325.300,535.045,48.053,42.580,48.053,301.478,308.322,361.077,18.500,20.140,18.500 +4107,116.709,345.219,557.208,202.989,402.233,325.300,535.045,48.053,42.580,48.053,301.478,308.322,361.077,18.500,20.140,18.500 +4108,116.738,350.680,539.731,194.711,411.122,334.161,526.188,39.347,33.204,39.347,318.865,308.682,361.587,18.675,21.432,18.675 +4109,116.769,355.686,524.383,186.798,422.428,341.605,515.873,31.151,23.822,31.151,328.741,309.056,361.648,19.322,20.878,19.322 +4110,116.801,357.577,509.815,180.927,434.442,347.126,505.342,23.171,14.604,23.171,338.643,309.552,361.379,19.600,20.478,19.600 +4111,116.831,358.854,496.934,176.831,445.871,350.712,494.667,15.559,5.213,15.559,344.292,309.092,361.195,19.550,21.325,19.550 +4112,116.863,360.413,485.144,173.966,458.554,352.942,484.064,8.227,175.691,8.227,346.470,309.383,361.568,19.389,19.144,19.389 +4113,116.894,359.598,474.091,172.882,469.529,353.459,473.955,1.273,165.964,1.273,348.980,310.931,361.261,18.551,19.403,18.551 +4114,116.925,358.220,463.515,173.531,481.320,353.388,463.969,174.638,156.038,174.638,351.678,311.610,361.383,19.133,19.292,19.133 +4115,116.956,355.844,453.831,174.622,490.920,351.571,454.716,168.303,146.870,168.303,352.501,312.284,361.229,19.550,20.046,19.550 +4116,116.985,352.878,444.992,176.923,500.336,349.129,446.192,162.264,137.222,162.264,353.158,313.369,361.031,20.079,19.936,20.079 +4117,117.015,349.254,437.106,179.785,508.837,345.882,438.557,156.714,127.117,156.714,353.360,314.394,360.702,20.068,19.418,20.068 +4118,117.047,346.172,430.062,183.031,516.516,342.289,432.178,151.425,117.165,151.425,351.552,314.882,360.397,18.999,20.100,18.999 +4119,117.080,341.866,423.544,186.864,523.801,338.166,426.005,146.372,107.379,146.372,351.396,315.395,360.283,19.422,20.617,19.422 +4120,117.114,337.209,418.098,192.188,530.592,334.221,420.457,141.710,97.595,141.710,351.834,315.937,359.448,19.581,19.560,19.581 +4121,117.146,332.848,413.076,196.672,536.408,329.681,415.992,137.366,87.580,137.366,350.216,315.521,358.826,19.572,19.715,19.572 +4122,117.178,332.848,413.076,196.672,536.408,329.681,415.992,137.366,87.580,137.366,350.216,315.521,358.826,19.572,19.715,19.572 +4123,117.205,328.766,408.831,202.140,541.034,325.939,411.814,133.452,77.719,133.452,349.680,315.968,357.900,19.219,19.549,19.219 +4124,117.236,324.225,404.450,207.385,545.923,321.321,407.979,129.462,67.380,129.462,348.686,317.077,357.827,19.114,19.692,19.114 +4125,117.268,319.961,401.025,212.262,548.426,317.303,404.699,125.882,57.546,125.882,346.966,315.453,356.035,18.928,20.936,18.928 +4126,117.299,315.565,397.904,215.412,552.617,312.536,402.656,122.520,47.090,122.520,346.050,314.469,357.321,18.805,23.943,18.805 +4127,117.331,311.298,395.325,220.115,555.021,308.520,400.270,119.332,37.020,119.332,345.091,314.606,356.436,18.673,24.503,18.673 +4128,117.365,307.450,392.982,224.828,556.954,304.874,398.198,116.286,27.553,116.286,343.940,314.506,355.576,18.730,25.056,18.730 +4129,117.398,303.521,390.645,229.146,558.601,300.999,396.484,113.364,17.819,113.364,341.915,314.883,354.636,19.138,25.467,19.138 +4130,117.431,299.907,388.598,233.397,560.344,297.396,395.247,110.695,6.981,110.695,339.909,313.921,354.123,19.042,24.450,19.042 +4131,117.464,296.700,386.900,237.430,562.066,294.212,394.365,108.435,177.917,108.435,338.364,313.302,354.102,18.974,23.675,18.974 +4132,117.502,292.427,385.600,240.795,562.931,290.293,393.216,105.651,168.341,105.651,337.732,314.206,353.551,18.996,22.914,18.996 +4133,117.545,285.683,382.211,247.623,564.215,283.831,391.805,100.929,150.255,100.929,332.756,315.668,352.297,19.109,21.582,19.109 +4134,117.576,285.683,382.211,247.623,564.215,283.831,391.805,100.929,150.255,100.929,332.756,315.668,352.297,19.109,21.582,19.109 +4135,117.604,282.339,380.516,250.656,564.787,280.639,391.519,98.781,140.194,98.781,329.362,316.763,351.629,18.809,20.742,18.809 +4136,117.639,279.209,378.824,253.990,565.208,277.736,391.133,96.823,131.722,96.823,326.534,317.236,351.327,18.551,19.866,18.551 +4137,117.670,275.607,376.827,257.122,566.077,274.463,391.190,94.554,123.802,94.554,322.607,318.408,351.424,18.314,18.612,18.314 +4138,117.702,271.737,374.126,260.948,567.000,271.057,391.543,92.237,115.974,92.237,316.579,319.303,351.438,18.127,19.409,18.127 +4139,117.733,267.500,371.500,265.162,567.522,267.500,391.761,90.000,109.016,90.000,311.000,319.764,351.522,17.000,19.747,17.000 +4140,117.765,262.970,368.362,269.653,568.535,264.102,392.685,87.337,102.854,87.337,303.137,321.841,351.836,17.795,19.610,17.795 +4141,117.798,257.986,367.144,274.097,568.752,260.310,393.174,84.898,97.423,84.898,299.950,322.744,352.217,18.195,20.608,18.195 +4142,117.831,252.333,363.519,279.350,568.167,256.702,393.791,81.787,93.347,81.787,290.475,323.144,351.646,18.101,20.906,18.101 +4143,117.865,246.423,364.115,284.076,567.512,252.531,394.657,78.690,89.651,78.690,289.075,323.043,351.369,18.043,20.000,18.043 +4144,117.897,241.024,368.220,290.359,566.132,248.146,395.817,75.530,86.460,75.530,293.919,322.929,350.922,17.866,20.332,17.866 +4145,117.929,236.361,374.395,295.668,564.806,243.835,397.403,72.004,83.830,72.004,302.073,323.332,350.455,18.034,19.427,18.034 +4146,117.961,232.574,378.507,301.224,563.039,240.502,398.688,68.552,81.975,68.552,306.982,323.986,350.347,20.842,18.801,20.842 +4147,117.990,228.406,384.880,306.816,560.448,235.955,400.751,64.564,80.633,64.564,314.156,323.698,349.305,21.343,18.431,21.343 +4148,118.021,223.929,389.483,313.154,556.731,231.457,402.728,60.388,80.272,60.388,318.042,323.031,348.513,22.829,18.586,22.829 +4149,118.052,219.455,395.478,319.638,552.724,226.425,405.755,55.852,80.655,55.852,323.072,323.210,347.907,23.403,19.060,23.403 +4150,118.084,214.948,401.615,325.408,548.090,221.418,409.652,51.165,81.339,51.165,325.456,322.505,346.093,24.397,18.391,24.397 +4151,118.114,209.143,407.444,332.057,542.240,215.637,414.076,45.603,82.972,45.603,327.484,322.490,346.049,24.770,18.816,24.770 +4152,118.146,204.394,414.456,338.547,535.496,210.507,419.586,40.006,84.644,40.006,329.218,322.492,345.179,25.359,20.162,25.359 +4153,118.177,204.394,414.456,338.547,535.496,210.507,419.586,40.006,84.644,40.006,329.218,322.492,345.179,25.359,20.162,25.359 +4154,118.206,199.735,420.591,344.975,527.595,205.879,424.833,34.624,86.424,34.624,330.765,321.934,345.699,25.608,21.583,25.608 +4155,118.236,195.459,428.097,350.643,518.974,201.718,431.524,28.706,88.683,28.706,330.979,320.352,345.250,25.707,22.615,25.707 +4156,118.267,190.944,435.935,355.401,509.016,197.508,438.670,22.620,90.666,22.620,331.385,320.141,345.607,25.769,23.312,25.769 +4157,118.299,186.123,448.321,359.184,498.557,193.215,450.347,15.945,92.759,15.945,330.902,319.882,345.654,18.956,24.129,18.956 +4158,118.331,183.321,458.509,361.943,487.131,191.022,459.749,9.147,95.194,9.147,330.598,319.863,346.200,18.758,24.716,18.758 +4159,118.364,181.980,469.741,363.466,474.512,190.187,469.964,1.559,97.352,1.559,330.259,319.416,346.678,18.537,24.794,18.537 +4160,118.396,182.012,480.618,363.379,461.648,190.481,479.762,174.228,99.574,174.228,330.662,319.119,347.686,18.746,25.032,18.746 +4161,118.429,183.686,493.725,360.812,448.210,192.037,491.623,165.872,102.095,165.872,331.313,318.973,348.535,19.870,23.328,19.870 +4162,118.459,186.297,505.843,356.378,434.598,195.171,502.171,157.521,104.470,157.521,330.384,318.751,349.590,19.500,21.708,19.500 +4163,118.490,190.688,518.841,349.734,421.220,200.277,513.142,149.275,106.699,149.275,328.574,318.765,350.883,19.796,20.306,19.796 +4164,118.521,194.138,533.494,342.056,409.409,206.967,522.956,140.599,109.584,140.599,319.715,318.782,352.919,19.097,21.561,19.097 +4165,118.552,199.314,549.732,331.690,398.776,215.126,532.141,131.952,111.801,131.952,306.910,319.210,354.216,19.479,21.541,19.479 +4166,118.581,199.334,579.970,318.604,388.824,224.574,539.898,122.206,113.923,122.206,261.172,318.407,355.888,17.687,19.959,17.687 +4167,118.612,227.545,568.240,304.984,381.738,236.660,546.867,113.097,116.922,113.097,310.921,317.996,357.391,18.532,19.142,18.532 +4168,118.643,246.975,561.178,290.254,376.911,249.127,551.955,103.134,118.575,103.134,340.682,317.554,359.622,19.964,20.261,19.964 +4169,118.673,246.975,561.178,290.254,376.911,249.127,551.955,103.134,118.575,103.134,340.682,317.554,359.622,19.964,20.261,19.964 +4170,118.703,260.625,562.784,275.416,375.257,261.085,554.538,93.190,121.675,93.190,343.084,316.948,359.602,23.354,19.773,23.354 +4171,118.733,276.210,563.258,258.800,375.539,275.335,555.502,83.565,123.959,83.565,345.755,316.202,361.365,23.176,18.620,23.176 +4172,118.765,293.064,559.482,242.190,379.157,291.163,552.776,74.171,126.573,74.171,346.846,315.618,360.787,22.530,18.886,22.530 +4173,118.797,309.534,553.030,227.115,386.262,306.867,547.527,64.144,129.806,64.144,347.575,314.971,359.804,22.532,18.693,22.532 +4174,118.829,323.181,544.213,212.498,394.498,319.754,539.447,54.278,131.791,54.278,348.862,314.492,360.601,24.062,19.841,24.062 +4175,118.861,334.963,533.472,200.140,405.620,331.142,529.712,44.537,134.734,44.537,350.104,313.281,360.825,24.906,19.437,24.906 +4176,118.892,344.601,520.838,190.321,417.849,340.646,518.079,34.902,137.454,34.902,351.625,312.487,361.270,26.206,19.064,26.206 +4177,118.922,351.342,508.108,182.939,431.634,347.246,506.133,25.747,140.364,25.747,351.621,313.046,360.714,25.744,20.744,25.744 +4178,118.952,354.532,497.751,177.580,445.788,350.590,496.553,16.907,143.273,16.907,352.351,312.404,360.591,20.043,20.718,20.043 +4179,118.982,356.887,484.871,174.217,459.558,353.103,484.314,8.379,146.127,8.379,353.519,312.021,361.169,19.411,20.741,19.411 +4180,119.012,357.516,472.260,173.012,472.827,353.513,472.248,0.177,148.837,0.177,352.989,311.964,360.996,18.573,20.631,18.573 +4181,119.043,357.516,472.260,173.012,472.827,353.513,472.248,0.177,148.837,0.177,352.989,311.964,360.996,18.573,20.631,18.573 +4182,119.072,356.736,460.280,173.703,484.961,352.631,460.828,172.391,151.157,172.391,352.812,311.888,361.095,19.294,20.159,19.294 +4183,119.103,356.744,448.186,175.438,494.906,350.251,449.931,164.956,153.215,164.956,347.543,312.163,360.990,20.654,21.103,20.654 +4184,119.134,359.343,436.095,178.275,505.034,346.948,441.042,158.241,153.583,158.241,334.063,311.731,360.754,18.663,19.524,18.663 +4185,119.165,410.812,395.999,182.946,515.261,342.574,431.823,152.301,154.799,152.301,206.098,311.896,360.238,17.796,19.161,17.796 +4186,119.197,377.577,397.615,187.992,523.881,337.563,424.291,146.310,155.578,146.310,263.205,311.762,359.387,17.750,19.864,17.750 +4187,119.228,353.452,400.040,193.560,530.910,332.365,417.656,140.126,157.999,140.126,303.317,311.982,358.269,17.881,19.602,17.881 +4188,119.259,337.332,401.193,200.198,538.173,326.767,412.157,133.939,160.974,133.939,326.680,312.103,357.133,19.233,19.951,19.233 +4189,119.290,327.769,397.699,207.232,544.305,320.549,406.790,128.454,163.940,128.454,333.099,312.098,356.318,19.624,20.137,19.624 +4190,119.320,318.532,394.461,214.875,550.192,313.481,402.271,122.894,167.518,122.894,336.913,312.272,355.515,18.912,21.383,18.912 +4191,119.350,310.563,391.362,222.743,555.226,306.678,398.796,117.590,171.754,117.590,338.255,312.819,355.031,18.892,22.232,18.892 +4192,119.382,302.649,388.678,230.874,559.192,299.647,395.977,112.357,176.017,112.357,338.429,312.775,354.213,19.078,23.159,19.078 +4193,119.414,294.897,386.749,238.496,562.261,292.650,393.944,107.340,0.855,107.340,338.540,313.174,353.616,19.139,23.639,19.139 +4194,119.446,287.454,385.322,246.917,564.457,285.867,392.487,102.485,4.934,102.485,337.971,314.026,352.648,18.948,24.191,18.948 +4195,119.477,287.454,385.322,246.917,564.457,285.867,392.487,102.485,4.934,102.485,337.971,314.026,352.648,18.948,24.191,18.948 +4196,119.505,279.894,384.948,254.942,565.933,278.978,391.766,97.654,9.238,97.654,337.876,315.475,351.634,18.760,26.049,18.760 +4197,119.537,272.458,384.817,262.789,567.632,272.101,391.749,92.951,15.124,92.951,338.375,316.352,352.258,18.316,25.856,18.316 +4198,119.567,265.425,386.048,270.324,567.744,265.616,392.297,88.247,19.933,88.247,338.515,318.930,351.018,18.165,25.992,18.165 +4199,119.598,258.788,387.248,278.401,567.313,259.428,392.963,83.610,24.538,83.610,339.255,320.289,350.757,18.683,24.918,18.683 +4200,119.633,252.320,388.728,285.962,566.180,253.365,394.014,78.811,29.389,78.811,339.661,321.613,350.437,19.577,24.487,19.577 +4201,119.666,246.038,390.632,293.843,564.230,247.458,395.605,74.055,34.205,74.055,339.418,322.832,349.761,20.604,23.789,20.604 +4202,119.701,239.433,392.284,302.269,561.927,241.571,397.918,69.217,38.884,69.217,337.697,322.640,349.748,21.740,21.645,21.740 +4203,119.735,232.821,395.296,310.173,558.841,235.652,401.147,64.179,43.815,64.179,335.818,322.752,348.817,22.185,20.633,22.185 +4204,119.767,223.713,396.242,317.375,555.166,228.944,404.610,57.995,48.311,57.995,329.341,323.956,349.079,22.578,19.311,22.578 +4205,119.799,173.849,344.957,323.979,550.885,221.763,409.872,53.569,52.980,53.569,186.949,323.795,348.314,17.969,19.110,17.969 +4206,119.833,202.368,399.216,330.845,545.284,216.337,414.671,47.891,57.953,47.891,305.695,323.829,347.361,18.233,18.785,18.233 +4207,119.865,204.716,409.822,337.254,538.379,213.060,417.421,42.325,63.034,42.325,323.964,323.831,346.535,24.887,18.592,24.887 +4208,119.899,200.910,418.772,343.530,530.593,207.546,423.615,36.119,68.412,36.119,329.382,323.476,345.813,25.587,19.560,25.587 +4209,119.930,195.908,426.258,349.640,521.514,202.741,430.219,30.101,73.511,30.101,329.957,322.796,345.752,25.415,20.942,25.415 +4210,119.962,191.560,435.526,354.477,511.208,197.894,438.240,23.199,78.530,23.199,331.549,321.848,345.331,25.473,21.873,25.473 +4211,119.992,186.854,447.898,358.860,500.016,193.559,449.870,16.390,83.541,16.390,331.489,320.931,345.468,18.962,23.904,18.962 +4212,120.022,183.730,458.122,361.748,488.412,191.100,459.350,9.462,88.939,9.462,331.264,319.168,346.208,18.741,24.551,18.741 +4213,120.053,182.013,469.544,363.097,475.040,190.012,469.780,1.685,93.814,1.685,330.328,319.225,346.331,18.610,24.679,18.610 +4214,120.084,182.004,481.041,363.345,461.548,190.504,480.156,174.053,99.310,174.053,330.586,318.923,347.677,18.069,25.091,18.069 +4215,120.115,183.395,494.453,360.777,447.581,192.243,492.159,165.466,104.323,165.466,330.374,318.959,348.655,19.790,23.398,19.790 +4216,120.147,185.709,507.337,356.246,433.469,195.697,503.082,156.924,109.440,156.924,328.261,318.897,349.975,19.728,21.855,19.728 +4217,120.179,189.023,521.301,349.137,420.064,200.820,514.074,148.508,115.017,148.508,323.493,319.460,351.162,19.559,20.117,19.559 +4218,120.209,189.023,521.301,349.137,420.064,200.820,514.074,148.508,115.017,148.508,323.493,319.460,351.162,19.559,20.117,19.559 +4219,120.238,189.012,540.105,341.663,408.472,208.051,523.995,139.764,120.311,139.764,303.358,319.885,353.238,19.672,20.825,19.672 +4220,120.269,181.534,572.240,330.000,397.553,215.418,532.635,130.549,122.978,130.549,250.017,317.603,354.262,17.434,20.120,17.434 +4221,120.300,214.364,559.861,318.647,388.478,226.218,540.795,121.872,126.469,121.872,311.413,318.384,356.314,18.793,19.090,18.793 +4222,120.332,234.081,555.802,304.690,381.164,237.614,547.192,112.306,128.480,112.306,339.513,318.589,358.127,18.883,20.554,18.883 +4223,120.365,248.441,559.770,289.816,377.216,250.053,552.357,102.265,132.745,102.265,344.009,317.662,359.181,20.478,18.626,20.478 +4224,120.397,262.059,562.410,274.252,375.819,262.317,555.380,92.108,137.441,92.108,345.686,317.715,359.756,24.204,17.947,24.204 +4225,120.431,277.251,562.033,257.729,377.155,276.430,555.765,82.532,141.916,82.532,346.411,316.715,359.053,24.561,17.710,24.561 +4226,120.465,295.448,558.211,240.434,381.146,293.823,552.888,73.023,146.104,73.023,348.563,315.639,359.694,21.321,18.469,21.321 +4227,120.499,311.422,551.204,224.459,388.282,309.074,546.683,62.557,149.560,62.557,348.957,315.063,359.145,23.037,18.354,23.037 +4228,120.533,324.917,541.726,210.352,397.750,322.321,538.344,52.492,153.816,52.492,350.883,313.102,359.409,24.348,18.374,24.348 +4229,120.565,336.787,530.833,197.932,408.849,333.449,527.766,42.572,158.362,42.572,351.429,312.707,360.495,25.144,18.353,25.144 +4230,120.597,346.084,518.185,188.447,421.973,342.420,515.816,32.888,162.072,32.888,351.781,311.542,360.506,25.560,18.357,25.560 +4231,120.629,352.368,505.065,180.867,435.603,348.253,503.272,23.542,167.099,23.542,351.989,310.534,360.965,25.525,20.198,25.525 +4232,120.660,356.675,494.395,175.850,447.950,351.168,492.967,14.528,171.870,14.528,350.631,309.996,362.010,19.974,21.072,19.974 +4233,120.690,362.344,481.631,173.692,461.462,353.297,480.708,5.830,175.030,5.830,343.075,310.914,361.262,19.015,19.752,19.015 +4234,120.720,429.722,464.658,172.475,475.969,352.823,467.674,177.754,178.589,177.754,207.154,309.054,361.070,17.790,18.812,17.790 +4235,120.751,375.728,451.504,174.486,488.274,352.047,455.810,169.695,2.862,169.695,312.871,309.613,361.009,18.067,18.477,18.067 +4236,120.782,364.165,439.987,177.686,500.315,348.982,445.068,161.497,6.294,161.497,327.928,309.535,359.949,19.907,19.755,19.907 +4237,120.815,355.026,430.022,182.196,511.403,344.758,435.001,154.128,10.109,154.128,336.394,309.636,359.216,20.312,20.506,20.312 +4238,120.846,346.779,421.476,187.902,521.952,339.542,426.161,147.084,13.707,147.084,341.458,309.725,358.701,19.949,22.274,19.949 +4239,120.877,346.779,421.476,187.902,521.952,339.542,426.161,147.084,13.707,147.084,341.458,309.725,358.701,19.949,22.274,19.949 +4240,120.905,338.417,414.319,194.398,530.760,333.517,418.369,140.425,17.784,140.425,344.954,310.566,357.668,19.506,23.338,19.506 +4241,120.936,330.957,407.853,201.052,538.721,326.845,412.116,133.977,20.158,133.977,345.064,312.116,356.909,19.253,24.847,19.253 +4242,120.967,322.910,401.648,208.954,545.983,319.434,406.124,127.835,24.050,127.835,345.119,312.424,356.452,18.847,25.592,18.847 +4243,121.000,315.112,396.759,216.861,552.299,312.033,401.714,121.861,27.269,121.861,344.603,313.108,356.270,18.820,25.310,18.820 +4244,121.033,306.951,393.252,224.940,557.239,304.452,398.355,116.092,30.033,116.092,343.958,315.425,355.324,18.657,24.849,18.657 +4245,121.066,298.873,390.206,233.411,561.373,296.916,395.451,110.459,33.232,110.459,344.109,316.759,355.305,18.904,24.748,18.904 +4246,121.099,291.125,388.718,241.962,564.462,289.742,393.802,105.216,35.655,105.216,343.898,317.826,354.435,19.036,24.782,19.036 +4247,121.132,282.600,387.752,250.854,567.180,281.727,392.886,99.652,38.956,99.652,343.590,318.299,354.006,18.912,23.891,18.912 +4248,121.171,274.768,386.785,259.438,568.445,274.336,392.271,94.507,41.634,94.507,342.593,318.978,353.599,18.362,24.166,18.362 +4249,121.203,266.990,387.526,268.431,568.594,267.045,392.783,89.400,44.346,89.400,341.117,319.737,351.632,17.915,23.906,17.915 +4250,121.233,259.738,387.376,277.379,568.169,260.307,393.072,84.289,46.585,84.289,340.402,320.568,351.852,18.508,22.781,18.508 +4251,121.264,252.911,388.491,285.872,567.114,254.023,394.351,79.254,48.270,79.254,339.416,321.714,351.344,19.821,21.764,19.821 +4252,121.296,246.038,390.632,294.987,564.734,247.568,395.989,74.055,49.586,74.055,339.418,322.569,350.560,20.604,20.180,20.604 +4253,121.327,239.255,392.359,302.555,562.384,241.499,398.225,69.066,50.362,69.066,337.716,322.903,350.276,21.733,20.259,21.733 +4254,121.357,231.600,394.200,309.988,559.332,235.265,401.531,63.435,50.013,63.435,332.727,323.679,349.119,22.361,19.229,22.361 +4255,121.388,223.356,396.508,317.127,555.457,228.676,404.837,57.437,49.118,57.437,329.331,324.091,349.098,22.543,19.116,22.543 +4256,121.418,213.925,395.835,323.762,550.759,223.588,408.277,52.167,47.370,52.167,316.443,325.132,347.950,21.795,18.949,21.795 +4257,121.449,198.080,390.734,331.250,545.250,218.617,412.665,46.881,45.000,46.881,287.441,324.562,347.531,21.797,18.385,21.797 +4258,121.480,150.035,361.096,337.836,539.222,212.151,419.329,43.152,42.634,43.152,177.095,324.279,347.383,17.782,19.000,17.782 +4259,121.513,161.582,389.503,343.998,532.175,207.370,424.809,37.635,40.462,37.635,231.878,324.966,347.517,18.004,18.081,18.004 +4260,121.544,161.582,389.503,343.998,532.175,207.370,424.809,37.635,40.462,37.635,231.878,324.966,347.517,18.004,18.081,18.004 +4261,121.572,182.272,418.549,349.508,523.849,202.760,431.310,31.917,37.988,31.917,298.700,325.824,346.974,18.097,18.067,18.097 +4262,121.604,186.296,432.709,354.581,514.589,198.600,438.606,25.607,35.424,25.607,319.713,325.947,347.001,18.351,19.128,18.351 +4263,121.635,185.473,443.236,358.616,504.805,195.253,446.615,19.058,34.114,19.058,326.125,325.880,346.819,18.938,20.458,18.938 +4264,121.665,182.964,454.300,362.246,493.149,192.496,456.256,11.592,33.511,11.592,327.941,325.613,347.402,19.039,21.656,19.039 +4265,121.700,182.607,465.966,364.182,480.736,191.044,466.552,3.972,33.486,3.972,330.496,325.075,347.411,18.857,22.352,18.857 +4266,121.731,183.290,477.347,364.798,466.814,190.762,476.849,176.186,32.681,176.186,333.659,324.513,348.637,18.692,21.503,18.692 +4267,121.765,185.400,490.552,362.468,453.064,191.862,489.105,167.381,33.408,167.381,335.472,323.679,348.717,19.400,21.118,19.400 +4268,121.799,189.117,503.023,358.633,438.544,194.992,500.719,158.587,33.996,158.587,337.469,322.837,350.090,19.587,22.443,19.587 +4269,121.832,194.581,515.639,351.414,425.103,199.754,512.632,149.826,34.114,149.826,338.243,322.034,350.210,19.823,20.965,19.823 +4270,121.865,201.662,526.582,343.683,410.235,206.977,522.285,141.044,34.641,141.044,339.841,320.401,353.510,19.044,25.789,19.044 +4271,121.899,211.575,537.190,332.341,398.517,215.829,532.336,131.231,35.256,131.231,341.956,318.522,354.864,18.708,25.736,18.708 +4272,121.931,223.231,546.661,317.546,390.828,225.977,542.147,121.314,35.676,121.314,343.165,316.660,353.734,19.009,20.829,19.009 +4273,121.963,236.559,554.001,302.450,383.080,238.566,548.869,111.360,36.690,111.360,344.318,315.219,355.338,19.226,21.415,19.226 +4274,121.995,252.049,559.444,287.080,376.560,253.334,553.256,101.725,36.870,101.725,347.094,314.400,359.734,22.151,24.400,22.151 +4275,122.025,265.171,561.542,269.695,374.928,265.258,554.982,90.756,37.030,90.756,347.075,313.010,360.195,22.156,23.837,22.156 +4276,122.056,283.796,560.634,259.467,383.774,283.477,558.500,81.503,38.246,81.503,348.396,292.513,352.712,23.634,20.983,23.634 +4277,122.087,299.441,557.756,242.546,388.021,298.508,555.080,70.792,37.999,70.792,346.674,291.372,352.341,21.366,21.227,21.366 +4278,122.118,315.508,550.905,226.941,396.956,314.292,548.793,60.073,39.005,60.073,345.466,288.765,350.341,22.485,20.725,22.485 +4279,122.148,331.651,547.415,211.293,404.634,325.234,539.821,49.802,38.660,49.802,333.713,294.231,353.598,18.759,19.053,18.759 +4280,122.180,393.438,575.857,194.234,411.569,334.224,526.063,40.061,38.546,40.061,206.926,307.814,361.663,18.317,19.089,18.317 +4281,122.211,393.438,575.857,194.234,411.569,334.224,526.063,40.061,38.546,40.061,206.926,307.814,361.663,18.317,19.089,18.317 +4282,122.239,356.875,521.518,185.599,424.254,343.078,513.045,31.555,38.766,31.555,328.938,308.295,361.319,24.263,20.556,24.263 +4283,122.270,358.122,501.523,179.252,438.320,349.766,498.432,20.300,38.797,20.300,343.735,308.449,361.555,25.838,21.089,25.838 +4284,122.302,359.791,489.630,175.163,452.798,352.333,488.173,11.058,38.853,11.058,346.132,308.300,361.330,19.744,20.550,19.744 +4285,122.331,360.401,475.560,173.259,467.210,353.622,475.298,2.211,38.991,2.211,347.513,308.899,361.082,18.928,21.319,18.928 +4286,122.364,359.430,461.857,173.687,481.273,353.114,462.562,173.636,38.726,173.636,348.080,309.690,360.791,19.319,20.748,19.319 +4287,122.398,355.894,448.504,175.731,495.447,350.299,449.969,165.324,38.395,165.324,349.221,308.781,360.789,21.697,22.034,21.697 +4288,122.429,351.700,437.193,179.553,507.786,346.292,439.431,157.521,37.794,157.521,348.705,309.863,360.411,19.882,22.755,19.882 +4289,122.462,346.388,427.025,184.827,518.918,341.241,430.022,149.791,37.381,149.791,347.891,311.202,359.803,20.314,23.187,20.314 +4290,122.492,339.965,417.930,191.443,529.234,335.104,421.621,142.786,36.674,142.786,346.778,311.807,358.986,18.568,23.737,18.568 +4291,122.524,332.532,410.006,198.840,537.756,328.242,414.181,135.776,36.339,135.776,345.868,312.237,357.842,18.939,24.184,18.939 +4292,122.555,324.763,402.993,206.838,545.527,320.940,407.688,129.155,35.538,129.155,345.756,313.287,357.865,19.031,24.528,19.031 +4293,122.585,315.996,397.855,215.401,551.930,312.936,402.617,122.722,35.096,122.722,345.364,314.186,356.684,18.863,24.502,18.863 +4294,122.615,307.445,393.728,224.521,557.230,304.962,398.715,116.467,34.095,116.467,344.362,315.089,355.504,18.757,24.665,18.757 +4295,122.647,298.742,390.474,233.128,561.292,296.787,395.729,110.410,33.440,110.410,343.525,317.285,354.739,18.766,24.593,18.766 +4296,122.677,298.742,390.474,233.128,561.292,296.787,395.729,110.410,33.440,110.410,343.525,317.285,354.739,18.766,24.593,18.766 +4297,122.706,289.917,388.446,242.978,565.034,288.543,393.773,104.470,32.829,104.470,343.426,316.765,354.428,18.803,24.802,18.803 +4298,122.736,281.300,387.088,252.534,566.837,280.482,392.451,98.673,31.875,98.673,342.362,318.321,353.212,18.783,24.163,18.783 +4299,122.767,272.590,386.318,262.106,567.822,272.293,391.870,93.061,30.796,93.061,341.368,319.000,352.489,18.204,24.763,18.204 +4300,122.798,264.135,386.609,271.892,567.938,264.402,392.379,87.352,29.745,87.352,339.885,319.265,351.437,18.148,25.055,18.148 +4301,122.831,256.205,387.907,281.316,566.914,256.994,393.335,81.724,28.330,81.724,339.572,320.831,350.544,19.000,24.562,19.000 +4302,122.864,248.545,389.480,290.680,565.143,249.925,395.050,76.088,26.764,76.088,338.325,321.565,349.804,20.348,24.488,20.348 +4303,122.896,240.884,391.901,300.528,562.008,242.810,397.270,70.265,25.102,70.265,337.694,322.003,349.104,21.468,24.711,21.468 +4304,122.930,233.441,395.248,309.534,558.611,235.957,400.495,64.381,22.751,64.381,337.131,322.857,348.770,22.484,24.037,22.484 +4305,122.972,225.933,398.349,318.723,553.609,229.428,404.035,58.426,20.225,58.426,335.026,322.889,348.374,23.890,23.755,23.890 +4306,123.004,218.435,402.665,327.569,548.178,223.193,408.851,52.431,17.354,52.431,332.536,322.614,348.145,24.998,22.908,24.998 +4307,123.035,210.389,407.628,335.372,541.575,216.779,414.307,46.267,14.621,46.267,329.400,322.595,347.887,25.109,22.297,25.109 +4308,123.071,202.762,413.284,342.735,533.801,211.137,420.283,39.887,11.079,39.887,325.717,323.390,347.545,25.562,21.494,25.562 +4309,123.104,194.665,421.947,349.370,524.575,204.841,428.373,32.276,6.888,32.276,323.066,323.121,347.137,25.454,20.309,25.454 +4310,123.134,188.300,428.400,355.396,514.907,201.040,434.770,26.565,2.045,26.565,319.310,323.294,347.798,25.491,19.987,25.491 +4311,123.166,182.353,437.528,359.920,504.130,197.113,442.889,19.963,176.662,19.963,316.457,323.142,347.865,26.659,20.532,26.659 +4312,123.199,176.148,451.051,362.998,491.991,193.133,454.908,12.793,170.087,12.793,312.886,323.581,347.721,19.503,20.505,19.503 +4313,123.232,172.742,463.340,364.975,479.918,191.435,465.040,5.194,163.346,5.194,310.809,323.363,348.350,18.650,20.660,18.650 +4314,123.265,171.057,475.531,365.418,467.573,191.153,474.784,177.870,155.973,177.870,308.605,322.987,348.825,18.285,21.370,18.285 +4315,123.299,172.834,488.929,364.107,454.667,191.930,485.619,170.166,147.362,170.166,311.108,322.354,349.868,18.852,21.336,18.852 +4316,123.331,175.522,502.634,360.529,441.595,194.026,496.600,161.940,138.397,161.940,311.777,321.552,350.703,20.007,21.821,20.007 +4317,123.363,181.190,514.974,354.587,429.008,197.508,506.986,153.918,127.942,153.918,314.395,321.348,350.732,19.816,19.756,19.816 +4318,123.395,188.098,526.609,347.286,416.722,202.619,516.807,145.981,118.118,145.981,316.765,319.351,351.804,19.312,20.346,19.312 +4319,123.425,197.125,537.244,339.182,405.961,209.531,526.019,137.862,106.798,137.862,319.920,317.038,353.379,19.245,22.073,19.245 +4320,123.457,208.244,546.607,328.674,396.972,217.811,534.873,129.193,94.899,129.193,323.588,314.105,353.868,19.530,22.062,19.530 +4321,123.487,221.225,551.727,317.038,388.808,227.047,541.920,120.700,82.875,120.700,332.388,313.436,355.198,18.756,23.443,18.756 +4322,123.518,235.285,556.005,303.209,382.659,238.271,548.492,111.680,69.791,111.680,340.015,312.323,356.183,19.423,24.359,19.423 +4323,123.549,249.173,560.181,289.024,378.444,250.734,553.344,102.861,57.381,102.861,344.042,311.674,358.069,20.389,24.695,20.389 +4324,123.580,260.858,561.111,273.568,376.405,261.210,555.198,93.411,44.281,93.411,346.577,311.191,358.423,22.615,26.708,22.615 +4325,123.610,260.858,561.111,273.568,376.405,261.210,555.198,93.411,44.281,93.411,346.577,311.191,358.423,22.615,26.708,22.615 +4326,123.639,274.750,561.334,258.728,377.364,274.275,556.333,84.570,32.661,84.570,349.228,310.826,359.274,22.234,20.594,22.234 +4327,123.669,289.639,558.867,243.638,381.127,288.576,554.512,76.273,20.283,76.273,349.228,311.231,358.193,21.846,19.453,21.846 +4328,123.702,304.054,553.861,230.343,385.683,302.398,549.877,67.435,7.556,67.435,349.920,311.708,358.548,21.757,18.360,21.757 +4329,123.734,316.344,547.151,218.160,392.344,314.358,543.879,58.749,175.048,58.749,351.256,311.519,358.909,22.849,18.688,22.849 +4330,123.766,327.833,539.392,207.200,400.640,325.164,536.186,50.220,162.623,50.220,350.947,311.876,359.291,24.488,18.583,24.488 +4331,123.799,337.540,529.935,197.580,409.903,334.360,527.084,41.873,150.427,41.873,351.591,312.453,360.133,25.129,18.565,25.129 +4332,123.832,345.365,519.481,189.928,419.919,341.629,516.979,33.808,138.302,33.808,351.118,312.918,360.111,25.528,18.653,25.528 +4333,123.865,351.379,508.647,184.002,430.869,347.362,506.678,26.114,126.293,26.114,351.157,312.994,360.104,25.512,20.024,25.512 +4334,123.896,354.660,500.525,179.630,442.191,350.472,499.118,18.576,114.362,18.576,351.315,312.509,360.151,19.533,20.591,19.533 +4335,123.927,357.652,489.747,176.748,453.429,353.244,488.855,11.438,102.330,11.438,351.038,312.272,360.033,19.649,20.585,19.649 +4336,123.958,359.432,479.332,175.027,464.008,354.439,478.927,4.635,90.313,4.635,350.040,310.077,360.061,18.911,19.726,18.911 +4337,123.988,359.464,468.833,174.368,474.302,354.242,468.997,178.204,78.291,178.204,349.455,311.068,359.903,19.078,19.675,19.078 +4338,124.018,358.692,459.373,174.853,484.181,353.213,460.140,172.030,66.144,172.030,348.878,310.696,359.942,19.391,19.618,19.391 +4339,124.051,356.609,449.492,176.459,494.065,351.293,450.791,166.268,53.778,166.268,349.272,311.491,360.218,21.221,21.247,21.221 +4340,124.082,354.170,441.917,178.260,501.434,348.828,443.783,160.741,41.987,160.741,348.759,310.177,360.076,20.064,21.407,20.064 +4341,124.115,351.349,434.273,181.387,509.302,345.759,436.796,155.702,30.548,155.702,347.027,309.738,359.293,20.228,23.111,20.228 +4342,124.148,349.879,427.072,184.909,515.707,342.869,430.990,150.797,18.172,150.797,342.373,309.603,358.433,20.256,22.564,20.256 +4343,124.180,348.005,419.517,188.242,521.908,339.091,425.419,146.489,5.343,146.489,336.712,309.921,358.092,19.752,20.013,19.752 +4344,124.211,348.005,419.517,188.242,521.908,339.091,425.419,146.489,5.343,146.489,336.712,309.921,358.092,19.752,20.013,19.752 +4345,124.239,346.812,412.140,191.591,527.711,335.411,420.948,142.313,172.909,142.313,329.355,310.829,358.168,19.315,19.448,19.315 +4346,124.270,345.649,404.404,195.240,532.764,331.593,416.970,138.205,160.503,138.205,319.948,311.911,357.658,21.146,19.516,21.146 +4347,124.300,352.408,387.940,198.766,537.131,327.370,412.561,135.481,147.653,135.481,287.848,313.456,358.078,17.909,19.234,17.909 +4348,124.331,376.155,351.547,202.339,541.307,323.395,409.718,132.207,135.553,132.207,200.528,314.050,357.594,17.846,19.030,17.846 +4349,124.364,325.171,401.537,205.452,544.794,320.334,407.583,128.660,123.056,128.660,342.333,316.511,357.820,18.429,20.594,18.429 +4350,124.396,320.018,400.927,210.144,548.673,316.935,405.185,125.910,110.886,125.910,347.186,317.905,357.701,18.601,19.977,18.601 +4351,124.427,315.734,399.684,213.923,551.708,313.445,403.171,123.280,98.302,123.280,349.232,318.197,357.575,18.734,19.230,18.734 +4352,124.458,312.782,397.675,217.291,554.333,310.421,401.629,120.849,85.823,120.849,348.497,318.197,357.708,18.818,19.504,18.818 +4353,124.489,309.812,396.573,221.659,556.765,307.724,400.374,118.780,72.543,118.780,348.344,319.451,357.017,18.764,20.369,18.764 +4354,124.519,307.300,394.400,225.213,556.815,305.358,398.283,116.565,60.546,116.565,346.591,316.924,355.274,18.783,20.611,18.783 +4355,124.549,304.812,392.990,226.862,559.168,302.558,397.873,114.775,47.490,114.775,345.583,316.055,356.340,18.648,23.650,18.648 +4356,124.580,302.415,391.617,229.322,559.826,300.274,396.672,112.954,34.992,112.954,344.830,316.060,355.810,18.817,24.577,18.817 +4357,124.610,302.415,391.617,229.322,559.826,300.274,396.672,112.954,34.992,112.954,344.830,316.060,355.810,18.817,24.577,18.817 +4358,124.638,300.351,390.159,232.267,560.043,298.237,395.562,111.371,23.199,111.371,342.819,315.661,354.422,19.070,25.867,19.070 +4359,124.669,298.592,388.437,234.585,561.004,296.227,394.978,109.877,9.762,109.877,340.275,314.530,354.186,19.004,25.200,19.004 +4360,124.702,296.839,386.951,236.436,560.973,294.456,394.066,108.520,176.424,108.520,338.377,313.638,353.385,19.030,23.704,19.030 +4361,124.733,295.410,385.570,237.828,561.767,292.865,393.682,107.418,165.466,107.418,336.701,314.133,353.705,19.195,22.766,19.195 +4362,124.766,294.264,383.517,239.100,562.200,291.368,393.400,106.333,153.435,106.333,332.775,314.838,353.373,19.042,21.913,19.042 +4363,124.800,293.533,381.058,240.073,562.342,290.231,393.087,105.350,141.340,105.350,328.041,315.783,352.989,19.551,19.678,19.551 +4364,124.834,292.528,376.892,241.297,563.189,288.416,392.906,104.400,130.529,104.400,320.235,317.044,353.302,18.639,19.553,18.639 +4365,124.867,292.714,368.420,242.885,564.303,286.701,392.970,103.761,119.511,103.761,303.124,318.136,353.675,17.999,19.244,17.999 +4366,124.899,297.479,338.291,244.918,565.293,285.069,392.899,102.804,109.573,102.804,242.010,318.908,354.011,17.996,19.431,17.996 +4367,124.930,299.462,314.692,246.712,566.584,283.765,393.174,101.310,100.305,101.310,194.547,321.278,354.619,18.043,19.141,18.043 +4368,124.962,283.664,387.310,248.069,566.982,282.623,393.097,100.204,91.127,100.204,342.752,320.331,354.512,18.306,22.074,18.306 +4369,124.993,282.025,388.594,251.520,567.815,281.282,393.080,99.400,82.235,99.400,345.404,321.885,354.499,18.528,21.708,18.528 +4370,125.023,281.179,387.987,252.671,567.777,280.432,392.826,98.776,71.642,98.776,344.484,321.922,354.277,18.653,19.544,18.653 +4371,125.054,280.622,387.925,252.762,567.797,279.896,392.826,98.427,60.852,98.427,344.206,320.138,354.115,18.648,21.549,18.648 +4372,125.085,280.093,387.802,253.292,567.902,279.386,392.772,98.097,49.635,98.097,344.080,319.329,354.120,18.658,23.125,18.658 +4373,125.118,280.118,387.096,253.627,567.706,279.369,392.431,97.989,38.290,97.989,343.528,318.952,354.303,18.538,24.042,18.538 +4374,125.150,280.075,386.459,254.100,566.800,279.289,392.157,97.853,26.565,97.853,341.389,318.416,352.893,18.719,24.597,18.719 +4375,125.182,280.211,384.892,255.054,565.783,279.313,391.431,97.815,13.885,97.815,338.862,316.758,352.063,18.688,26.626,18.688 +4376,125.214,280.005,383.904,254.551,566.188,278.968,391.620,97.654,2.246,97.654,336.959,315.503,352.530,18.819,24.119,18.819 +4377,125.245,280.086,383.484,254.215,565.829,279.008,391.469,97.684,170.311,97.684,336.105,315.820,352.220,18.924,23.586,18.924 +4378,125.275,280.086,383.484,254.215,565.829,279.008,391.469,97.684,170.311,97.684,336.105,315.820,352.220,18.924,23.586,18.924 +4379,125.304,280.265,383.170,253.431,565.328,279.149,391.453,97.670,158.199,97.670,334.789,315.868,351.503,19.384,22.469,19.384 +4380,125.334,280.795,381.529,252.500,565.000,279.452,391.167,97.933,146.310,97.933,332.314,316.456,351.777,19.045,21.079,19.045 +4381,125.367,281.855,379.149,251.220,564.758,280.062,391.170,98.482,133.575,98.482,327.579,317.621,351.887,18.410,19.385,18.410 +4382,125.401,283.069,373.549,250.523,565.494,280.246,391.899,98.746,121.293,98.746,315.062,318.653,352.193,18.095,19.269,18.095 +4383,125.434,286.874,353.040,250.192,566.197,280.599,392.259,99.090,109.179,99.090,273.679,319.158,353.115,18.011,19.383,18.011 +4384,125.466,283.558,379.105,249.324,567.191,281.282,392.951,99.335,96.589,99.335,326.170,321.483,354.233,18.248,19.219,18.248 +4385,125.500,282.605,388.500,250.972,567.344,281.872,392.739,99.800,85.480,99.800,346.031,322.051,354.634,18.705,22.641,18.705 +4386,125.534,283.428,388.481,249.953,567.014,282.589,393.071,100.359,73.516,100.359,344.623,320.878,353.953,18.743,20.293,18.743 +4387,125.566,285.034,388.513,249.164,566.248,284.173,392.844,101.244,61.032,101.244,344.972,319.555,353.804,19.031,20.232,19.031 +4388,125.599,286.005,387.975,247.187,566.391,284.893,393.258,101.889,48.447,101.889,343.574,318.575,354.373,18.747,23.675,18.747 +4389,125.632,287.380,388.069,245.872,565.672,286.226,393.176,102.734,36.656,102.734,343.827,318.207,354.298,19.034,24.366,19.034 +4390,125.664,288.833,387.477,244.796,564.433,287.532,392.870,103.570,25.201,103.570,342.508,317.645,353.603,18.872,25.761,18.872 +4391,125.697,290.823,386.454,243.472,564.121,289.046,393.250,104.651,13.092,104.651,339.637,315.782,353.686,19.350,25.166,19.350 +4392,125.728,292.203,386.168,241.500,563.000,290.230,393.272,105.524,0.000,105.524,338.409,315.000,353.156,19.110,24.000,19.110 +4393,125.759,294.257,385.977,239.251,562.172,291.945,393.682,106.699,169.380,106.699,336.963,314.580,353.051,19.252,22.422,19.252 +4394,125.790,296.544,385.327,236.724,561.348,293.687,394.117,108.004,157.068,108.004,334.812,314.900,353.297,19.068,21.962,19.068 +4395,125.821,299.721,382.600,233.784,560.186,295.576,394.482,109.231,145.528,109.231,328.450,315.659,353.619,19.411,20.241,19.411 +4396,125.852,304.110,378.041,231.250,559.750,297.632,395.315,110.556,135.000,110.556,317.650,316.077,354.547,19.897,19.799,19.897 +4397,125.883,311.886,364.608,229.208,559.614,298.879,396.042,112.479,124.439,112.479,287.529,317.096,355.565,17.843,19.746,17.843 +4398,125.915,333.246,323.990,226.717,558.819,300.544,396.941,114.146,115.484,114.146,195.938,317.718,355.829,17.810,19.429,17.810 +4399,125.945,305.096,393.614,224.687,557.908,303.061,397.986,114.955,106.415,114.955,346.472,318.961,356.116,18.285,20.427,18.285 +4400,125.976,305.096,393.614,224.687,557.908,303.061,397.986,114.955,106.415,114.955,346.472,318.961,356.116,18.285,20.427,18.285 +4401,126.004,306.862,395.666,223.919,557.171,305.299,398.757,116.814,96.870,116.814,349.255,318.875,356.181,18.466,21.076,18.466 +4402,126.036,310.208,396.726,219.746,555.545,308.128,400.469,119.055,86.617,119.055,348.400,317.923,356.964,18.746,20.103,18.746 +4403,126.067,313.592,398.333,217.480,553.614,311.355,401.989,121.460,75.390,121.460,348.087,317.715,356.661,18.946,20.138,18.946 +4404,126.099,317.066,399.536,214.899,551.113,314.542,403.291,123.906,64.960,123.906,347.491,317.766,356.539,18.939,21.348,18.939 +4405,126.131,321.360,401.520,209.382,548.471,317.956,406.059,126.870,53.326,126.870,346.800,315.612,358.147,18.800,24.044,18.800 +4406,126.164,325.402,403.918,205.420,544.692,321.629,408.445,129.806,42.166,129.806,346.340,314.620,358.126,19.206,23.760,19.206 +4407,126.195,329.545,406.809,201.619,540.304,325.473,411.172,133.025,31.264,133.025,345.887,314.165,357.822,19.349,24.484,19.349 +4408,126.226,334.135,410.317,198.130,535.139,329.804,414.410,136.618,19.781,136.618,345.330,312.335,357.247,19.240,24.738,19.240 +4409,126.256,340.188,412.426,193.992,530.060,333.384,418.096,140.194,7.933,140.194,339.810,311.677,357.524,19.334,20.775,19.334 +4410,126.286,348.293,414.483,189.424,524.619,336.931,422.689,144.162,176.849,144.162,330.487,311.629,358.519,19.141,19.384,19.141 +4411,126.316,364.649,412.888,185.329,518.841,340.266,427.729,148.671,165.466,148.671,302.349,311.695,359.439,18.235,19.575,18.235 +4412,126.348,413.798,398.618,181.000,512.000,343.643,434.235,153.083,153.435,153.083,203.094,311.261,360.453,17.847,18.783,17.847 +4413,126.381,351.287,438.246,178.763,505.689,346.788,440.075,157.874,142.667,157.874,351.018,313.251,360.730,19.423,19.730,19.423 +4414,126.411,351.287,438.246,178.763,505.689,346.788,440.075,157.874,142.667,157.874,351.018,313.251,360.730,19.423,19.730,19.423 +4415,126.440,352.805,446.223,176.164,497.407,349.684,447.175,163.025,130.960,163.025,354.725,313.259,361.250,20.246,19.356,20.246 +4416,126.471,355.984,454.407,174.703,488.460,352.138,455.171,168.756,119.416,168.756,353.197,313.218,361.040,19.427,19.154,19.427 +4417,126.503,357.924,463.656,174.120,478.697,353.847,464.024,174.841,107.622,174.841,352.449,313.124,360.636,18.750,19.824,18.750 +4418,126.534,359.042,473.881,174.802,468.153,354.427,473.789,1.146,96.680,1.146,350.170,312.200,359.403,18.436,19.077,18.436 +4419,126.565,359.224,484.053,176.055,456.374,354.101,483.364,7.651,85.355,7.651,349.769,310.981,360.108,19.304,19.137,19.304 +4420,126.596,357.345,494.939,179.221,445.721,352.385,493.648,14.589,74.134,14.589,349.056,308.367,359.306,19.673,19.997,19.673 +4421,126.627,355.317,503.195,189.310,446.683,354.895,503.025,21.949,61.624,21.949,348.373,280.531,349.284,25.652,20.487,25.652 +4422,126.657,351.982,515.186,195.790,434.893,350.561,514.383,29.476,49.362,29.476,344.440,277.453,347.704,25.549,22.323,25.549 +4423,126.687,396.480,569.360,199.345,419.465,339.502,526.626,36.870,39.226,36.870,210.400,288.190,352.845,18.400,19.319,18.400 +4424,126.717,336.027,536.010,202.366,403.008,330.381,530.325,45.197,28.118,45.197,345.061,305.710,361.088,24.761,20.918,24.761 +4425,126.748,323.835,543.607,211.299,396.154,320.719,539.337,53.881,17.089,53.881,349.752,307.980,360.324,23.644,17.601,23.644 +4426,126.779,323.835,543.607,211.299,396.154,320.719,539.337,53.881,17.089,53.881,349.752,307.980,360.324,23.644,17.601,23.644 +4427,126.806,311.429,550.685,223.477,389.224,309.482,546.930,62.592,5.886,62.592,350.729,309.073,359.188,22.424,17.659,22.424 +4428,126.839,298.447,556.650,237.339,383.248,296.983,552.338,71.241,174.751,71.241,349.471,310.266,358.578,20.939,18.375,20.939 +4429,126.870,283.453,560.603,251.933,378.970,282.499,555.545,79.315,163.599,79.315,348.066,312.528,358.361,23.398,18.887,23.398 +4430,126.900,269.023,562.094,266.964,376.430,268.854,555.854,88.445,152.719,88.445,346.334,314.456,358.819,20.884,18.955,20.884 +4431,126.931,255.177,560.537,281.076,376.098,255.994,553.801,96.911,142.014,96.911,345.291,316.441,358.861,22.562,19.438,22.562 +4432,126.963,243.355,558.666,295.725,378.888,245.550,551.145,106.270,131.088,106.270,343.161,317.589,358.830,18.927,20.603,18.927 +4433,126.993,229.509,556.597,307.096,382.562,234.589,545.769,115.136,120.899,115.136,333.182,318.128,357.102,18.213,20.183,18.213 +4434,127.023,206.008,566.645,318.437,389.407,223.696,539.673,123.257,110.785,123.257,290.711,317.900,355.221,17.841,19.913,17.841 +4435,127.054,204.364,545.208,330.286,397.320,215.632,532.478,131.514,100.154,131.514,320.397,317.867,354.397,19.293,22.243,19.293 +4436,127.085,200.266,531.146,340.123,406.967,208.136,524.405,139.419,88.819,139.419,332.554,316.201,353.278,19.767,23.871,19.767 +4437,127.116,195.621,519.553,347.291,417.706,201.639,515.662,147.113,78.166,147.113,336.666,316.900,350.998,19.484,23.714,19.484 +4438,127.148,191.155,509.322,353.476,428.843,196.790,506.601,154.231,67.380,154.231,337.303,317.308,349.818,20.340,24.692,20.340 +4439,127.180,188.081,499.263,358.539,440.175,193.548,497.410,161.278,56.976,161.278,337.717,318.734,349.263,19.857,24.273,19.857 +4440,127.211,188.081,499.263,358.539,440.175,193.548,497.410,161.278,56.976,161.278,337.717,318.734,349.263,19.857,24.273,19.857 +4441,127.239,185.858,489.863,361.755,451.279,191.589,488.586,167.437,46.302,167.437,336.672,321.104,348.414,20.386,23.553,20.386 +4442,127.270,183.484,480.339,363.698,462.409,190.443,479.636,174.229,36.384,174.229,334.228,322.446,348.218,18.692,22.118,18.692 +4443,127.301,182.500,471.477,365.105,472.334,191.034,471.532,0.370,26.298,0.370,331.077,323.340,348.145,18.161,22.053,18.161 +4444,127.332,179.858,462.743,364.896,481.113,191.344,464.005,6.271,15.945,6.271,325.655,324.858,348.765,17.914,21.703,17.914 +4445,127.366,113.515,441.386,364.155,489.207,192.698,457.470,11.482,6.833,11.482,187.086,324.591,348.686,17.609,20.962,17.609 +4446,127.400,174.681,444.788,361.988,495.723,194.157,450.510,16.374,177.553,16.374,306.943,324.473,347.541,19.812,20.673,19.812 +4447,127.438,183.948,439.616,359.901,504.041,196.645,443.952,18.853,167.829,18.853,320.997,324.288,347.830,25.944,22.464,25.944 +4448,127.470,188.805,433.446,356.855,510.658,199.042,437.925,23.629,157.068,23.629,325.121,323.543,347.469,25.939,23.839,25.939 +4449,127.501,193.116,427.783,353.385,516.564,201.710,432.380,28.142,145.679,28.142,327.409,322.304,346.901,25.715,24.697,25.715 +4450,127.533,196.508,422.691,349.529,522.017,204.290,427.582,32.152,134.673,32.152,328.060,321.765,346.441,25.447,24.680,25.447 +4451,127.564,199.172,419.486,345.556,527.191,206.270,424.473,35.096,123.207,35.096,328.692,321.491,346.041,25.806,24.934,25.806 +4452,127.595,202.600,416.079,341.810,531.724,209.100,421.219,38.333,111.801,38.333,328.707,321.253,345.279,25.612,24.326,25.612 +4453,127.626,206.740,411.844,337.803,535.964,212.519,417.107,42.325,100.408,42.325,329.681,321.279,345.314,25.151,22.602,25.151 +4454,127.656,209.250,408.750,334.538,539.970,215.127,414.627,45.000,88.898,45.000,329.512,322.171,346.135,24.749,20.727,24.749 +4455,127.686,210.659,405.173,331.438,543.513,217.545,412.657,47.386,77.809,47.386,326.488,322.890,346.827,24.639,19.175,24.639 +4456,127.717,210.494,400.076,329.246,546.240,219.958,411.118,49.399,66.477,49.399,318.345,323.126,347.431,24.079,19.352,24.079 +4457,127.749,190.809,375.167,327.260,548.321,219.728,411.583,51.546,55.382,51.546,254.903,323.751,347.907,17.827,19.061,17.827 +4458,127.783,215.456,399.607,325.022,549.978,222.813,408.966,51.829,44.249,51.829,324.244,323.994,348.052,23.022,19.069,23.022 +4459,127.814,221.155,401.098,323.316,551.027,225.319,406.985,54.728,33.792,54.728,333.954,325.055,348.376,23.835,20.521,23.835 +4460,127.845,221.155,401.098,323.316,551.027,225.319,406.985,54.728,33.792,54.728,333.954,325.055,348.376,23.835,20.521,23.835 +4461,127.873,223.254,399.825,321.958,552.011,227.238,405.840,56.482,22.543,56.482,333.907,323.919,348.337,23.701,22.881,23.701 +4462,127.903,224.436,398.357,320.245,553.353,228.598,404.925,57.642,12.057,57.642,333.310,322.189,348.861,23.272,23.300,23.272 +4463,127.935,225.588,397.250,318.998,554.110,229.784,404.170,58.772,1.206,58.772,332.751,320.266,348.937,23.223,23.816,23.223 +4464,127.966,226.308,396.406,317.198,554.661,230.572,403.673,59.597,170.311,59.597,331.279,320.412,348.130,22.660,24.595,22.660 +4465,127.998,227.047,395.258,315.742,554.661,231.301,402.732,60.350,159.864,60.350,330.418,319.969,347.618,23.010,24.724,23.010 +4466,128.031,227.533,394.529,314.505,554.833,231.816,402.207,60.846,148.761,60.846,329.561,319.689,347.145,22.813,24.431,22.813 +4467,128.062,228.212,394.424,313.447,555.004,232.170,401.665,61.336,138.468,61.336,330.564,319.562,347.068,22.872,23.998,22.872 +4468,128.094,228.300,393.938,312.533,555.414,232.423,401.537,61.514,127.786,61.514,329.621,319.959,346.911,22.743,23.194,22.743 +4469,128.126,228.293,393.640,311.641,555.809,232.496,401.418,61.614,116.966,61.614,329.225,320.250,346.907,22.748,22.360,22.748 +4470,128.157,227.873,393.392,310.622,556.453,232.331,401.583,61.444,106.227,61.444,328.259,321.962,346.909,22.777,21.424,22.777 +4471,128.187,226.928,392.557,311.297,556.367,232.036,401.815,61.113,96.302,61.113,326.077,321.573,347.224,22.705,19.196,22.705 +4472,128.217,225.829,392.005,312.064,556.997,231.787,402.607,60.665,87.077,60.665,323.520,322.601,347.842,22.810,17.960,22.810 +4473,128.247,223.027,390.374,313.958,556.300,230.561,403.363,59.886,78.232,59.886,318.245,322.656,348.276,22.058,18.234,22.058 +4474,128.278,223.027,390.374,313.958,556.300,230.561,403.363,59.886,78.232,59.886,318.245,322.656,348.276,22.058,18.234,22.058 +4475,128.306,216.267,386.827,316.029,555.629,227.639,405.634,58.841,70.178,58.841,304.223,323.289,348.180,17.831,17.940,17.831 +4476,128.337,203.200,371.100,318.619,554.405,226.069,407.037,57.529,62.671,57.529,262.839,323.432,348.032,17.717,18.412,17.717 +4477,128.370,178.959,341.573,321.470,552.822,224.278,408.041,55.713,55.047,55.713,187.854,323.681,348.748,17.764,19.441,17.764 +4478,128.402,212.917,394.217,323.845,550.640,223.616,408.133,52.446,47.992,52.446,313.025,325.116,348.133,21.904,18.320,21.904 +4479,128.435,214.598,402.155,326.935,548.659,221.314,410.309,50.528,40.601,50.528,326.754,324.203,347.881,23.794,19.090,23.794 +4480,128.467,215.540,404.467,329.871,545.918,220.696,410.661,50.226,32.471,50.226,331.483,324.886,347.601,24.440,20.555,24.440 +4481,128.501,212.295,406.598,333.152,543.139,217.958,412.809,47.643,22.868,47.643,331.030,324.420,347.841,24.885,21.198,24.885 +4482,128.534,209.764,407.730,335.994,540.927,216.431,414.582,45.785,13.392,45.785,328.745,323.574,347.865,24.834,21.541,24.834 +4483,128.567,207.800,410.186,338.526,538.501,214.660,416.742,43.698,3.013,43.698,328.366,321.818,347.345,25.096,22.811,25.096 +4484,128.598,204.555,412.858,341.543,534.818,212.017,419.312,40.855,172.304,40.855,327.321,322.421,347.054,25.389,23.355,25.389 +4485,128.630,201.056,416.428,344.323,530.925,208.775,422.365,37.569,160.758,37.569,327.781,321.950,347.258,25.852,23.995,25.852 +4486,128.659,199.024,419.466,347.146,526.889,206.932,425.003,34.992,149.931,34.992,327.283,321.392,346.591,25.642,25.097,25.642 +4487,128.690,195.791,423.709,349.641,522.096,203.809,428.618,31.477,138.366,31.477,327.564,321.054,346.368,25.934,24.748,25.934 +4488,128.724,193.723,427.490,352.290,517.219,201.735,431.845,28.523,127.073,28.523,327.861,321.204,346.098,25.767,25.301,25.767 +4489,128.768,190.667,433.401,354.612,511.522,198.569,436.949,24.179,115.145,24.179,328.473,320.731,345.796,26.028,25.162,26.028 +4490,128.801,188.525,438.989,357.090,505.277,196.260,441.830,20.171,103.799,20.171,329.205,320.628,345.687,25.823,24.909,25.823 +4491,128.835,186.123,448.321,359.209,498.523,193.354,450.387,15.945,91.848,15.945,330.352,319.576,345.394,18.956,23.923,18.956 +4492,128.872,184.571,455.627,360.980,491.086,191.498,457.003,11.234,80.665,11.234,331.624,320.736,345.749,18.824,23.750,18.824 +4493,128.904,184.186,463.205,363.009,483.120,190.917,463.903,5.921,69.353,5.921,332.778,321.159,346.312,18.935,23.937,18.935 +4494,128.935,184.012,471.233,363.661,474.525,190.321,471.294,0.546,57.955,0.546,334.109,321.920,346.726,18.218,22.964,18.218 +4495,128.967,183.833,479.716,363.290,464.760,190.075,479.133,174.668,46.874,174.668,335.064,322.685,347.601,18.705,22.235,18.705 +4496,128.998,184.885,488.923,362.198,454.914,191.142,487.672,168.690,36.158,168.690,335.555,323.422,348.317,19.023,21.613,19.023 +4497,129.031,187.149,498.459,361.190,443.088,194.130,496.188,161.975,24.775,161.975,335.902,322.675,350.584,20.015,23.747,20.015 +4498,129.062,190.346,508.166,357.085,433.651,196.918,505.141,155.283,13.684,155.283,336.303,322.593,350.772,20.201,19.610,20.201 +4499,129.093,193.511,518.382,351.968,422.636,201.205,513.680,148.570,2.853,148.570,334.202,322.397,352.236,19.673,19.750,19.673 +4500,129.124,200.188,526.471,344.985,412.392,206.332,521.627,141.749,172.113,141.749,337.379,321.990,353.026,19.163,19.150,19.163 +4501,129.155,207.643,535.205,336.277,402.323,213.075,529.626,134.236,161.625,134.236,338.740,321.606,354.313,19.194,19.768,19.194 +4502,129.186,217.024,543.152,326.047,393.585,221.336,537.251,126.158,150.945,126.158,340.936,321.010,355.553,19.160,20.494,19.160 +4503,129.217,226.549,550.453,314.643,386.566,230.172,543.702,118.217,140.580,118.217,341.482,320.128,356.804,18.848,19.276,18.848 +4504,129.249,237.979,556.593,301.412,380.347,240.815,548.713,109.790,130.110,109.790,341.127,319.089,357.877,18.850,20.130,18.850 +4505,129.281,251.001,562.085,287.623,376.498,252.892,552.973,101.725,119.773,101.725,341.090,317.529,359.701,21.171,20.109,21.171 +4506,129.312,261.636,564.320,273.232,374.905,262.073,554.927,92.663,109.502,92.663,341.886,316.075,360.693,22.301,19.933,22.301 +4507,129.343,261.636,564.320,273.232,374.905,262.073,554.927,92.663,109.502,92.663,341.886,316.075,360.693,22.301,19.933,22.301 +4508,129.371,277.972,565.207,259.149,375.608,277.162,555.297,85.325,99.462,85.325,341.232,314.824,361.118,22.660,19.563,22.660 +4509,129.402,290.545,562.360,243.640,378.505,288.297,553.264,76.118,89.176,76.118,341.999,313.025,360.737,21.837,19.077,21.837 +4510,129.434,304.852,558.560,229.658,384.753,301.385,549.945,68.076,78.917,68.076,341.482,311.635,360.054,21.564,20.183,21.564 +4511,129.466,318.154,552.911,216.879,391.438,313.049,544.123,59.853,68.638,59.853,340.336,310.550,360.662,22.430,20.177,22.430 +4512,129.500,332.188,547.143,205.201,400.714,323.887,536.652,51.647,58.765,51.647,333.742,307.327,360.497,22.502,20.687,22.502 +4513,129.533,345.812,539.773,195.902,409.347,332.988,527.560,43.603,48.136,43.603,326.172,308.688,361.590,22.207,20.205,22.207 +4514,129.564,360.361,532.085,188.462,419.107,340.391,517.742,35.687,37.694,35.687,312.703,308.889,361.877,22.379,20.537,22.379 +4515,129.595,407.349,539.327,182.605,429.431,345.396,508.534,26.429,27.607,26.429,223.601,308.307,361.970,19.012,21.194,19.012 +4516,129.626,422.976,523.622,177.921,440.479,349.598,498.290,19.047,16.960,19.047,207.033,308.342,362.288,19.220,20.663,19.220 +4517,129.656,367.435,492.382,175.441,452.512,352.404,489.294,11.609,6.582,11.609,330.802,309.332,361.491,19.329,19.486,19.329 +4518,129.686,362.667,480.036,173.828,463.453,353.782,479.279,4.865,176.148,4.865,343.460,310.778,361.295,18.741,19.679,18.741 +4519,129.717,359.936,469.144,172.958,473.842,353.544,469.318,178.442,165.905,178.442,348.497,311.412,361.285,19.008,20.406,19.008 +4520,129.749,357.223,459.951,173.956,484.844,352.767,460.554,172.293,154.799,172.293,351.912,311.524,360.906,19.067,19.906,19.067 +4521,129.781,355.304,451.138,175.303,493.639,350.984,452.188,166.334,144.806,166.334,352.110,312.706,361.002,20.196,19.682,20.196 +4522,129.812,355.304,451.138,175.303,493.639,350.984,452.188,166.334,144.806,166.334,352.110,312.706,361.002,20.196,19.682,20.196 +4523,129.841,352.902,442.810,177.338,501.842,348.482,444.330,161.017,134.265,161.017,351.738,313.377,361.088,20.123,20.205,20.123 +4524,129.873,349.151,435.971,179.812,509.865,345.251,437.707,155.993,123.408,155.993,352.432,314.532,360.970,19.890,20.106,19.890 +4525,129.904,345.922,429.536,183.017,516.960,341.959,431.712,151.229,112.714,151.229,351.663,315.003,360.704,19.507,20.294,19.507 +4526,129.935,342.609,423.874,187.583,523.518,338.952,426.268,146.793,101.944,146.793,351.080,315.762,359.821,19.472,19.266,19.472 +4527,129.966,338.592,418.648,191.500,529.500,335.145,421.270,142.745,91.302,142.745,351.046,315.214,359.706,18.946,19.063,18.946 +4528,129.998,334.827,414.452,195.648,534.223,331.563,417.314,138.752,80.467,138.752,349.858,315.648,358.540,19.652,19.950,19.652 +4529,130.031,331.338,410.314,200.089,538.404,328.221,413.388,135.406,69.444,135.406,349.272,315.426,358.027,18.876,19.780,18.876 +4530,130.063,328.077,406.716,204.464,541.805,325.016,410.109,132.056,58.679,132.056,347.930,314.716,357.070,19.539,21.462,19.539 +4531,130.094,324.073,403.346,206.605,545.990,320.449,407.827,128.967,47.564,128.967,346.507,313.852,358.033,18.980,23.765,18.980 +4532,130.126,320.785,400.478,210.410,548.769,317.266,405.294,126.158,36.491,126.158,345.843,314.013,357.774,18.787,24.074,18.787 +4533,130.157,317.808,398.038,214.345,550.276,314.566,402.900,123.690,26.281,123.690,344.746,313.953,356.433,18.582,24.829,18.582 +4534,130.187,314.600,395.368,217.869,552.146,311.277,400.882,121.079,15.255,121.079,342.665,312.759,355.540,18.912,25.084,18.912 +4535,130.217,311.994,393.154,220.868,554.519,308.342,399.762,118.926,3.743,118.926,340.423,312.836,355.521,18.795,23.678,18.795 +4536,130.249,309.171,391.104,223.470,555.691,305.552,398.258,116.834,174.447,116.834,339.028,313.024,355.064,18.854,21.841,18.854 +4537,130.280,306.939,388.832,225.990,556.966,303.045,397.204,114.944,163.780,114.944,336.246,313.757,354.713,18.936,21.439,18.936 +4538,130.311,305.052,386.016,228.225,557.960,300.720,396.166,113.117,153.970,113.117,332.458,314.394,354.530,18.990,20.563,18.990 +4539,130.341,305.052,386.016,228.225,557.960,300.720,396.166,113.117,153.970,113.117,332.458,314.394,354.530,18.990,20.563,18.990 +4540,130.371,303.378,382.821,230.362,558.812,298.456,395.405,111.362,143.616,111.362,326.946,315.624,353.970,19.471,19.618,19.471 +4541,130.402,302.566,377.960,232.547,560.051,296.510,394.828,109.747,134.792,109.747,318.389,316.103,354.235,19.958,19.279,19.958 +4542,130.434,301.731,371.951,234.850,561.523,294.008,394.476,108.925,126.254,108.925,306.784,317.455,354.408,17.514,19.407,17.514 +4543,130.467,301.839,360.894,237.573,562.949,291.367,394.157,107.475,118.610,107.475,284.565,318.277,354.311,17.399,19.314,17.399 +4544,130.502,305.771,334.182,240.512,564.107,289.354,393.496,105.471,111.682,105.471,231.828,318.832,354.916,17.296,19.212,17.296 +4545,130.535,305.912,315.353,243.423,565.257,286.423,393.306,104.036,105.555,104.036,193.786,319.513,354.491,17.948,19.446,17.948 +4546,130.567,287.811,378.235,245.748,566.622,284.650,393.472,101.717,99.246,101.717,323.761,321.558,354.884,18.379,19.166,18.379 +4547,130.599,283.807,386.515,248.609,567.006,282.685,392.751,100.204,93.169,100.204,342.397,321.114,355.070,18.306,20.135,18.306 +4548,130.631,281.531,386.957,252.356,567.954,280.591,392.963,98.893,86.941,98.893,342.345,322.769,354.504,18.846,21.572,18.846 +4549,130.660,279.812,387.130,253.809,568.266,279.042,392.721,97.838,79.862,97.838,343.406,322.084,354.693,18.433,21.187,18.433 +4550,130.690,278.237,388.044,256.041,568.149,277.700,392.475,96.911,71.489,96.911,345.080,321.608,354.008,18.531,19.817,18.531 +4551,130.721,277.135,387.410,256.639,568.414,276.579,392.460,96.277,63.072,96.277,343.995,320.671,354.157,18.528,20.520,18.528 +4552,130.751,276.315,387.492,257.676,568.373,275.825,392.489,95.599,54.184,95.599,343.588,320.172,353.631,18.207,21.643,18.207 +4553,130.782,275.732,386.750,258.341,568.649,275.224,392.374,95.161,44.661,95.161,342.862,319.648,354.157,18.056,23.623,18.056 +4554,130.813,274.945,387.053,259.187,568.236,274.511,392.450,94.604,35.311,94.604,342.067,319.576,352.898,18.470,24.243,18.470 +4555,130.844,274.945,387.053,259.187,568.236,274.511,392.450,94.604,35.311,94.604,342.067,319.576,352.898,18.470,24.243,18.470 +4556,130.872,274.400,386.584,260.128,567.700,273.986,392.158,94.247,25.769,94.247,340.992,319.323,352.171,18.360,25.619,18.360 +4557,130.902,274.056,384.865,261.426,567.499,273.579,391.740,93.968,15.826,93.968,338.574,317.309,352.357,18.291,25.636,18.291 +4558,130.936,273.438,383.996,261.641,567.632,272.950,391.793,93.576,5.877,93.576,336.780,316.826,352.404,18.090,25.147,18.090 +4559,130.968,273.093,383.591,262.106,567.444,272.626,391.726,93.286,175.815,93.286,335.768,315.790,352.063,18.233,24.885,18.233 +4560,131.000,272.735,382.670,262.285,567.104,272.270,391.532,93.002,165.530,93.002,333.957,316.346,351.707,18.286,24.832,18.286 +4561,131.034,272.390,382.568,262.202,566.478,271.972,391.160,92.787,154.134,92.787,333.968,316.680,351.172,18.342,24.159,18.342 +4562,131.067,272.128,381.640,262.179,566.536,271.697,391.273,92.564,145.342,92.564,331.742,317.172,351.027,18.325,23.082,18.325 +4563,131.100,271.890,380.537,261.750,566.250,271.430,391.544,92.395,135.000,92.395,327.884,317.491,349.917,18.281,21.213,18.281 +4564,131.133,272.012,377.128,260.769,566.346,271.415,391.217,92.426,123.690,92.426,322.643,318.675,350.846,18.221,19.415,18.221 +4565,131.165,271.867,373.035,261.135,567.199,271.099,392.040,92.314,113.241,92.314,312.795,319.603,350.837,17.905,19.583,17.905 +4566,131.197,272.284,358.126,261.300,568.341,270.973,392.202,92.203,102.832,92.203,284.559,321.618,352.760,18.025,19.771,18.025 +4567,131.228,274.092,311.795,261.181,568.548,270.740,392.238,92.386,92.322,92.386,192.083,321.709,353.109,17.901,22.063,17.901 +4568,131.258,271.201,385.364,261.444,569.007,270.945,392.529,92.045,82.901,92.045,339.070,322.614,353.409,18.060,21.584,18.060 +4569,131.288,271.090,386.375,263.938,568.867,270.868,392.430,92.095,73.072,92.095,341.028,322.316,353.145,18.049,20.672,18.049 +4570,131.319,271.081,386.318,263.300,568.600,270.862,392.234,92.121,63.435,92.121,341.210,320.652,353.051,18.099,21.466,18.099 +4571,131.349,271.167,386.818,263.301,568.780,270.959,392.326,92.161,53.223,92.161,342.209,320.396,353.235,18.044,22.735,18.044 +4572,131.384,271.240,386.874,263.200,568.786,271.027,392.390,92.217,43.025,92.217,342.092,320.007,353.133,18.032,23.394,18.032 +4573,131.415,271.431,386.376,263.303,568.532,271.195,392.248,92.306,32.957,92.306,341.166,319.623,352.918,18.032,24.425,18.032 +4574,131.448,271.698,385.818,263.542,567.770,271.445,391.808,92.420,22.881,92.420,340.288,318.835,352.278,17.900,25.780,17.900 +4575,131.478,271.698,385.818,263.542,567.770,271.445,391.808,92.420,22.881,92.420,340.288,318.835,352.278,17.900,25.780,17.900 +4576,131.507,271.830,384.882,263.504,567.981,271.498,392.369,92.540,12.707,92.540,336.601,317.461,351.589,18.091,25.430,18.091 +4577,131.538,272.297,383.514,263.036,567.706,271.901,391.751,92.752,2.603,92.752,335.862,316.537,352.355,18.104,24.838,18.104 +4578,131.567,272.510,383.076,262.661,567.302,272.082,391.563,92.885,172.972,92.885,334.986,316.277,351.981,18.237,25.043,18.237 +4579,131.599,272.854,383.046,261.821,566.904,272.376,391.814,93.118,163.301,93.118,333.249,315.987,350.810,18.245,24.616,18.245 +4580,131.631,273.269,382.190,261.100,566.700,272.736,391.361,93.325,153.435,93.325,333.065,316.180,351.438,18.305,23.702,18.305 +4581,131.660,273.779,381.203,259.980,566.140,273.165,391.112,93.547,143.130,93.547,331.162,317.000,351.017,18.390,22.200,18.390 +4582,131.691,274.631,379.288,258.669,566.120,273.803,391.162,93.991,132.825,93.991,327.367,317.718,351.173,18.560,20.822,18.560 +4583,131.721,275.070,377.302,257.631,566.057,274.044,391.156,94.236,124.582,94.236,323.484,318.497,351.270,18.357,19.217,18.357 +4584,131.752,275.709,372.785,257.460,566.500,274.279,391.369,94.399,116.108,94.399,314.532,318.885,351.810,18.254,19.119,18.254 +4585,131.783,276.348,364.321,257.775,567.418,274.058,391.807,94.764,108.642,94.764,297.552,319.719,352.714,18.021,19.887,18.021 +4586,131.815,278.534,337.323,257.765,568.362,274.137,392.282,94.574,101.605,94.574,243.382,321.260,353.651,18.022,19.819,18.022 +4587,131.845,278.534,337.323,257.765,568.362,274.137,392.282,94.574,101.605,94.574,243.382,321.260,353.651,18.022,19.819,18.022 +4588,131.874,280.493,311.835,257.654,568.829,273.863,392.500,94.699,95.280,94.699,192.256,321.863,354.129,17.940,21.095,17.940 +4589,131.904,275.207,378.251,259.338,568.986,274.130,392.528,94.316,89.382,94.316,325.508,322.068,354.142,18.099,22.085,18.099 +4590,131.935,274.682,385.747,259.351,568.849,274.170,392.462,94.354,83.610,94.354,340.537,322.464,354.005,18.307,21.545,18.307 +4591,131.967,274.979,386.750,259.737,568.563,274.521,392.294,94.731,76.477,94.731,342.649,322.094,353.776,18.131,20.787,18.131 +4592,131.999,275.448,387.231,259.219,568.721,274.997,392.351,95.032,68.806,95.032,343.871,322.007,354.150,18.250,20.588,18.250 +4593,132.032,276.347,387.535,258.124,568.147,275.860,392.403,95.711,60.482,95.711,343.487,320.370,353.273,18.110,20.891,18.110 +4594,132.063,277.268,387.425,257.650,567.281,276.774,391.915,96.277,51.285,96.277,343.776,319.846,352.811,18.260,20.355,18.260 +4595,132.095,278.369,387.316,255.379,567.965,277.717,392.682,96.925,42.709,96.925,342.584,319.413,353.395,18.516,23.401,18.516 +4596,132.126,279.970,386.720,253.692,567.462,279.193,392.348,97.853,33.690,97.853,342.550,319.507,353.912,18.583,24.407,18.583 +4597,132.157,281.046,386.629,253.160,566.016,280.241,391.957,98.588,23.962,98.588,341.527,318.108,352.303,18.698,26.094,18.698 +4598,132.188,283.278,385.290,251.853,565.088,282.182,391.674,99.744,14.036,99.744,339.137,316.509,352.092,18.865,26.436,18.865 +4599,132.218,284.320,384.967,249.947,565.218,282.969,392.237,100.530,4.236,100.530,337.418,315.432,352.207,19.089,24.378,19.089 +4600,132.249,286.296,384.681,247.812,564.842,284.685,392.479,101.675,175.030,101.675,336.593,315.245,352.518,18.932,23.910,18.932 +4601,132.281,288.198,384.227,245.394,563.728,286.342,392.397,102.804,165.069,102.804,335.534,315.250,352.291,19.015,22.996,19.015 +4602,132.312,290.403,383.852,242.929,563.340,288.147,392.839,104.095,156.194,104.095,334.228,315.566,352.759,18.957,22.415,18.957 +4603,132.342,290.403,383.852,242.929,563.340,288.147,392.839,104.095,156.194,104.095,334.228,315.566,352.759,18.957,22.415,18.957 +4604,132.371,293.237,382.035,239.874,562.058,290.231,392.888,105.479,146.195,105.479,330.426,315.915,352.948,19.126,20.535,19.126 +4605,132.404,296.858,378.518,236.904,561.351,292.293,393.582,106.858,135.939,106.858,321.763,316.208,353.245,19.459,19.750,19.459 +4606,132.435,302.375,371.152,234.341,561.165,294.401,394.503,108.853,125.754,108.853,304.909,317.472,354.258,18.027,19.509,18.027 +4607,132.467,323.972,322.823,231.946,560.743,296.328,395.388,110.854,115.974,110.854,199.580,318.012,354.884,17.978,19.317,17.978 +4608,132.500,301.999,389.877,228.419,559.829,299.256,396.636,112.087,106.422,112.087,341.114,318.961,355.705,18.304,20.456,18.304 +4609,132.532,303.457,394.357,227.700,559.080,302.100,397.377,114.201,96.553,114.201,349.360,318.957,355.982,18.652,20.554,18.652 +4610,132.564,306.734,394.871,223.495,557.917,304.715,398.936,116.415,86.820,116.415,347.953,318.731,357.030,18.819,19.636,18.819 +4611,132.594,309.715,396.520,220.882,555.913,307.717,400.157,118.768,77.157,118.768,348.345,318.471,356.645,18.769,20.025,18.769 +4612,132.625,313.289,397.465,218.753,553.686,311.013,401.228,121.159,67.366,121.159,347.606,318.308,356.401,18.607,21.708,18.607 +4613,132.656,317.122,399.574,214.910,550.274,314.795,403.037,123.896,57.291,123.896,347.492,316.045,355.837,18.767,20.843,18.767 +4614,132.685,321.344,401.257,209.290,548.323,317.847,405.934,126.787,46.872,126.787,346.407,315.026,358.086,18.838,24.057,18.838 +4615,132.716,325.607,403.672,205.558,544.587,321.683,408.380,129.806,37.003,129.806,345.700,314.397,357.957,19.206,24.132,19.206 +4616,132.748,329.892,406.771,201.829,539.941,325.768,411.175,133.118,28.009,133.118,345.346,313.532,357.411,19.224,24.288,19.224 +4617,132.779,329.892,406.771,201.829,539.941,325.768,411.175,133.118,28.009,133.118,345.346,313.532,357.411,19.224,24.288,19.224 +4618,132.807,334.176,410.334,198.095,534.568,329.978,414.299,136.637,17.103,136.637,345.372,311.805,356.921,19.225,25.291,19.225 +4619,132.838,340.000,412.291,193.698,530.050,333.124,418.048,140.064,7.765,140.064,339.674,311.076,357.608,19.312,20.357,19.312 +4620,132.871,347.970,415.463,188.997,524.369,337.047,423.256,144.494,178.686,144.494,331.654,310.262,358.492,19.161,19.018,19.161 +4621,132.901,359.927,415.983,185.236,518.968,340.468,428.145,147.995,170.209,147.995,313.653,311.541,359.547,21.306,20.328,21.306 +4622,132.932,390.728,409.370,181.655,512.481,343.536,433.572,152.850,162.173,152.850,254.031,311.450,360.104,17.842,20.809,17.842 +4623,132.964,359.817,434.367,178.231,504.982,346.549,439.918,157.297,154.380,157.297,332.013,311.710,360.777,18.083,19.991,18.083 +4624,132.995,354.157,444.383,176.286,498.601,349.186,445.985,162.140,147.414,162.140,350.963,312.148,361.409,20.051,20.483,20.051 +4625,133.025,355.284,453.010,174.262,490.306,351.333,453.872,167.697,139.456,167.697,353.448,312.164,361.536,19.452,20.966,19.452 +4626,133.057,356.902,462.120,173.453,480.960,353.069,462.548,173.625,130.711,173.625,353.388,312.600,361.100,19.093,19.356,19.093 +4627,133.088,358.000,472.000,173.742,470.587,353.871,472.000,0.000,121.967,0.000,352.000,312.699,360.258,18.000,19.576,18.000 +4628,133.119,358.142,482.277,175.534,459.586,354.092,481.808,6.613,113.199,6.613,351.702,312.115,359.857,19.147,21.140,19.147 +4629,133.151,356.953,493.193,177.989,447.645,352.444,492.107,13.545,104.517,13.545,350.756,312.161,360.032,19.523,20.788,19.523 +4630,133.184,355.227,501.406,181.574,435.666,350.226,499.491,20.956,96.038,20.956,349.938,311.493,360.648,25.552,19.545,25.552 +4631,133.215,350.541,512.841,186.949,423.954,345.468,510.073,28.610,88.201,28.610,349.243,310.569,360.802,25.698,18.530,25.698 +4632,133.247,343.934,523.943,192.914,413.439,338.935,520.249,36.455,79.099,36.455,349.397,310.618,361.828,25.767,17.515,25.767 +4633,133.277,343.934,523.943,192.914,413.439,338.935,520.249,36.455,79.099,36.455,349.397,310.618,361.828,25.767,17.515,25.767 +4634,133.305,336.250,535.750,206.236,419.240,335.619,535.119,45.000,69.933,45.000,345.068,277.914,346.853,24.749,20.368,24.749 +4635,133.336,329.958,552.530,218.512,411.023,325.345,546.085,54.413,62.103,54.413,328.164,274.286,344.015,22.263,20.015,22.263 +4636,133.369,315.520,562.062,233.229,402.207,311.619,554.831,61.654,52.696,61.654,326.656,273.401,343.087,18.945,19.962,18.945 +4637,133.402,299.051,557.934,243.307,389.296,298.358,555.907,71.147,42.647,71.147,346.641,287.869,350.925,20.958,23.905,20.958 +4638,133.435,283.513,560.310,249.911,377.991,282.490,554.865,79.354,35.080,79.354,348.616,310.005,359.696,23.402,19.940,23.402 +4639,133.468,269.215,561.507,264.571,376.872,269.088,556.022,88.674,26.395,88.674,347.439,310.374,358.412,19.902,19.501,19.902 +4640,133.504,254.525,559.827,280.211,379.039,255.122,555.216,97.381,17.266,97.381,346.581,311.581,355.881,22.845,18.170,22.845 +4641,133.550,229.739,550.627,311.003,386.439,232.237,545.589,116.364,179.653,116.364,343.900,316.031,355.148,19.158,18.054,19.158 +4642,133.582,218.455,542.968,324.382,393.330,221.871,538.147,125.327,170.694,125.327,343.037,318.276,354.854,19.114,18.456,19.114 +4643,133.614,208.642,534.673,335.616,401.381,213.388,529.750,133.947,161.858,133.947,340.820,320.368,354.497,19.250,20.114,19.250 +4644,133.648,198.360,527.026,344.705,411.393,206.041,521.087,142.289,154.113,142.289,334.173,322.024,353.591,19.060,20.533,19.060 +4645,133.679,198.360,527.026,344.705,411.393,206.041,521.087,142.289,154.113,142.289,334.173,322.024,353.591,19.060,20.533,19.060 +4646,133.707,129.978,551.580,351.823,420.730,200.453,511.581,150.422,146.368,150.422,190.908,321.730,352.977,17.300,19.198,17.300 +4647,133.738,172.490,511.598,356.723,431.945,195.696,501.986,157.499,138.296,157.499,300.913,322.380,351.147,19.494,20.897,19.494 +4648,133.770,178.971,496.593,361.061,444.551,192.947,492.817,164.882,129.611,164.882,320.813,323.167,349.768,19.674,22.527,19.674 +4649,133.802,180.084,484.635,363.871,456.312,191.205,483.064,171.961,120.651,171.961,326.958,321.399,349.420,19.115,24.948,19.115 +4650,133.834,181.033,473.448,364.514,468.005,190.753,473.282,179.021,111.161,179.021,328.208,320.864,347.651,18.108,25.751,18.108 +4651,133.866,181.975,463.767,363.434,479.090,190.526,464.572,5.373,101.659,5.373,329.836,320.455,347.015,18.951,25.448,18.951 +4652,133.898,184.533,454.839,361.622,490.047,191.927,456.374,11.729,91.660,11.729,330.892,320.329,345.994,18.922,24.859,18.922 +4653,133.928,187.273,446.539,358.896,500.084,193.921,448.627,17.430,82.117,17.430,331.689,320.618,345.626,18.971,23.727,18.971 +4654,133.960,191.005,436.820,355.930,509.562,197.674,439.548,22.249,72.962,22.249,331.556,321.732,345.966,25.158,22.823,25.158 +4655,133.990,194.270,429.165,351.400,518.300,201.196,432.793,27.646,63.435,27.646,329.825,322.888,345.462,25.605,20.125,25.605 +4656,134.020,197.168,422.716,348.024,525.396,204.815,427.566,32.381,54.082,32.381,328.555,323.865,346.666,25.459,19.862,25.459 +4657,134.051,189.962,411.692,344.250,531.750,207.148,425.060,37.875,45.000,37.875,303.901,323.855,347.447,17.980,19.092,17.980 +4658,134.083,196.492,405.690,339.773,536.819,212.088,418.900,40.264,35.458,40.264,306.412,325.839,347.290,23.176,19.072,23.176 +4659,134.115,210.615,407.785,336.100,540.300,216.874,414.319,46.232,26.565,46.232,328.805,325.124,346.901,24.903,20.125,24.903 +4660,134.145,210.615,407.785,336.100,540.300,216.874,414.319,46.232,26.565,46.232,328.805,325.124,346.901,24.903,20.125,24.903 +4661,134.173,214.974,404.441,331.292,545.213,220.514,411.039,49.982,17.745,49.982,330.752,323.824,347.981,24.348,22.630,24.348 +4662,134.204,219.066,401.321,326.360,549.367,224.166,408.215,53.509,9.189,53.509,331.358,322.731,348.508,23.711,23.082,23.711 +4663,134.234,223.124,398.223,321.502,552.209,227.733,405.290,56.889,0.374,56.889,331.694,321.065,348.568,23.271,23.588,23.271 +4664,134.266,226.819,396.104,316.495,554.811,230.875,403.188,60.208,171.501,60.208,331.924,320.658,348.249,22.120,24.555,22.120 +4665,134.298,230.708,393.147,311.799,557.048,234.619,400.905,63.249,162.597,63.249,330.965,319.808,348.342,22.506,24.838,22.506 +4666,134.328,234.437,391.151,306.902,558.835,237.881,399.010,66.337,153.812,66.337,331.018,319.339,348.179,22.476,24.567,22.476 +4667,134.359,237.694,389.462,301.896,560.507,240.806,397.537,68.923,145.176,68.923,330.763,319.404,348.072,21.043,24.056,21.043 +4668,134.390,241.363,388.205,297.408,561.964,244.094,396.348,71.466,136.710,71.466,330.767,319.080,347.945,20.673,23.820,20.673 +4669,134.420,244.803,386.346,292.105,563.187,247.233,394.900,74.141,128.387,74.141,330.501,319.399,348.287,20.310,22.345,20.310 +4670,134.451,248.009,383.900,287.179,564.055,250.358,393.724,76.551,118.443,76.551,328.245,319.769,348.447,19.980,21.616,19.980 +4671,134.484,250.984,381.219,283.114,565.284,253.314,393.102,78.906,110.788,78.906,325.180,320.480,349.398,19.549,20.325,19.549 +4672,134.517,253.538,376.603,279.691,567.191,256.165,393.389,81.104,103.266,81.104,316.718,321.629,350.699,19.210,20.076,19.210 +4673,134.549,255.218,367.549,276.916,568.758,258.374,393.586,83.089,96.621,83.089,299.806,322.939,352.261,17.929,20.585,17.929 +4674,134.580,255.848,335.752,273.061,568.960,260.854,393.321,85.030,90.583,85.030,236.499,322.085,352.072,17.932,21.029,17.932 +4675,134.610,255.848,335.752,273.061,568.960,260.854,393.321,85.030,90.583,85.030,236.499,322.085,352.072,17.932,21.029,17.932 +4676,134.638,260.433,343.677,271.384,569.082,263.274,392.921,86.698,85.815,86.698,254.020,321.701,352.671,18.028,21.236,18.028 +4677,134.670,265.601,383.543,268.508,569.089,265.887,392.934,88.257,79.763,88.257,333.515,322.535,352.306,18.135,20.504,18.135 +4678,134.702,268.534,385.966,266.693,569.227,268.489,392.601,90.387,74.310,90.387,339.999,322.820,353.268,17.946,20.986,17.946 +4679,134.735,271.336,386.316,264.200,568.577,271.104,392.210,92.261,67.238,92.261,341.208,321.846,353.005,18.131,20.867,18.131 +4680,134.768,274.494,387.272,259.624,568.640,274.109,392.343,94.336,60.009,94.336,343.606,320.755,353.776,18.388,21.563,18.388 +4681,134.802,277.870,387.136,255.537,568.297,277.229,392.644,96.639,51.953,96.639,342.875,320.035,353.966,18.326,22.598,18.326 +4682,134.835,281.667,387.550,251.677,567.814,280.805,392.981,99.019,43.568,99.019,343.478,319.141,354.475,18.702,23.893,18.702 +4683,134.868,285.058,387.712,247.833,566.536,283.964,393.178,101.310,35.707,101.310,343.007,318.868,354.156,18.827,24.513,18.827 +4684,134.901,289.382,387.971,243.972,564.607,288.016,393.436,104.036,27.181,104.036,342.218,318.008,353.485,18.675,24.908,18.675 +4685,134.933,293.344,387.567,240.453,562.146,291.622,393.394,106.460,17.819,106.460,340.517,315.937,352.668,19.071,26.521,19.071 +4686,134.965,297.553,387.906,235.892,561.174,295.305,394.385,109.134,9.118,109.134,340.382,314.799,354.098,18.953,24.904,18.953 +4687,134.995,302.017,388.926,231.014,559.282,299.183,395.915,112.068,0.674,112.068,338.936,314.131,354.020,18.910,23.575,18.910 +4688,135.025,306.365,390.065,226.237,557.106,302.938,397.434,114.944,172.093,114.944,337.996,314.096,354.250,18.936,22.671,18.936 +4689,135.057,311.685,390.465,221.184,554.107,307.185,398.903,118.072,163.179,118.072,335.706,314.077,354.832,18.706,20.925,18.706 +4690,135.087,318.695,389.953,215.863,550.677,311.827,401.192,121.430,154.290,121.430,328.845,314.049,355.188,19.246,19.722,19.246 +4691,135.118,329.322,386.531,210.847,547.779,316.791,404.400,125.042,145.324,125.042,312.788,314.583,356.438,20.043,19.478,20.043 +4692,135.151,362.545,354.366,205.821,544.292,320.074,406.895,128.956,136.197,128.956,222.253,314.845,357.354,17.753,18.845,17.753 +4693,135.183,330.352,404.955,200.481,539.986,324.915,410.927,132.313,127.253,132.313,342.251,315.822,358.404,18.115,20.046,18.115 +4694,135.214,332.751,412.204,197.137,536.534,329.469,415.289,136.771,118.361,136.771,349.916,316.026,358.926,18.930,20.605,18.930 +4695,135.244,336.633,417.425,192.014,530.529,333.664,419.819,141.116,109.259,141.116,351.893,315.956,359.521,19.335,19.256,19.335 +4696,135.274,336.633,417.425,192.014,530.529,333.664,419.819,141.116,109.259,141.116,351.893,315.956,359.521,19.335,19.256,19.335 +4697,135.304,341.372,422.837,187.802,524.240,337.947,425.161,145.840,100.460,145.840,351.470,315.560,359.748,19.357,19.728,19.357 +4698,135.334,345.748,429.152,184.383,517.023,342.334,431.058,150.832,91.478,150.832,351.817,314.231,359.637,19.028,18.555,19.028 +4699,135.367,349.963,435.305,181.217,508.641,345.960,437.103,155.810,82.467,155.810,350.405,313.486,359.182,19.844,18.828,19.844 +4700,135.400,354.063,443.188,178.324,499.219,349.538,444.712,161.390,73.496,161.390,349.764,312.249,359.313,19.892,18.679,19.892 +4701,135.432,357.103,452.402,175.991,489.564,352.220,453.501,167.320,64.359,167.320,349.683,311.278,359.694,20.146,18.535,20.146 +4702,135.463,358.990,462.012,175.409,480.165,354.027,462.551,173.797,55.037,173.797,348.966,309.915,358.951,19.040,19.977,19.040 +4703,135.495,359.981,472.787,174.166,468.375,354.082,472.738,0.470,45.549,0.470,348.095,307.625,359.893,18.196,21.190,18.196 +4704,135.526,360.818,483.783,174.866,456.848,353.556,482.846,7.352,36.919,7.352,346.450,307.200,361.096,19.260,21.067,19.260 +4705,135.557,365.721,496.968,177.411,445.424,351.535,493.316,14.436,28.720,14.436,331.835,306.317,361.131,19.445,21.107,19.445 +4706,135.586,419.164,532.303,180.856,433.564,347.558,504.284,21.371,20.854,21.371,208.234,306.734,362.020,19.232,20.025,19.232 +4707,135.618,349.523,515.389,186.133,422.957,343.750,512.021,30.256,13.782,30.256,348.679,307.324,362.046,25.050,21.183,25.050 +4708,135.650,341.565,524.773,193.134,413.604,337.842,521.877,37.875,5.464,37.875,351.963,308.038,361.398,25.259,17.330,25.259 +4709,135.680,331.164,536.164,203.059,403.672,328.375,533.136,47.353,177.138,47.353,352.016,308.565,360.251,24.757,17.528,24.757 +4710,135.710,331.164,536.164,203.059,403.672,328.375,533.136,47.353,177.138,47.353,352.016,308.565,360.251,24.757,17.528,24.757 +4711,135.738,321.044,544.905,214.545,394.744,318.586,541.296,55.739,168.766,55.739,350.655,309.864,359.388,23.393,17.957,23.393 +4712,135.769,308.993,552.385,227.718,387.113,306.946,548.087,64.537,160.442,64.537,349.278,311.245,358.799,22.443,18.325,22.443 +4713,135.801,295.134,558.161,242.078,380.696,293.546,552.846,73.361,152.301,73.361,348.263,312.745,359.358,21.266,18.793,21.266 +4714,135.836,279.057,561.924,256.577,376.717,278.116,555.387,81.809,144.273,81.809,346.625,314.453,359.833,23.845,19.042,23.845 +4715,135.869,264.137,562.470,271.297,375.261,264.255,555.124,90.921,136.411,90.921,345.213,315.587,359.906,23.174,19.034,23.174 +4716,135.900,252.195,560.937,287.105,376.941,253.752,553.426,101.710,128.172,101.710,343.823,316.886,359.163,23.130,20.168,23.130 +4717,135.932,236.090,557.765,300.738,380.145,239.670,548.458,111.038,120.925,111.038,338.086,317.785,358.032,18.811,20.391,18.811 +4718,135.963,197.902,593.475,314.112,386.405,227.664,542.217,120.141,113.199,120.141,237.761,318.155,356.306,17.993,20.484,17.993 +4719,135.994,204.743,550.922,327.028,395.151,217.946,534.744,129.219,105.945,129.219,312.474,317.852,354.238,19.424,21.291,19.424 +4720,136.024,199.893,534.226,338.330,404.690,209.552,525.564,138.112,98.130,138.112,327.200,317.774,353.147,19.296,22.910,19.296 +4721,136.055,194.577,521.154,347.000,416.500,202.109,516.193,146.630,90.000,146.630,333.641,317.000,351.678,19.285,22.000,19.285 +4722,136.086,190.002,509.188,353.726,428.992,196.607,506.076,154.774,82.235,154.774,335.371,317.516,349.975,20.059,23.690,20.059 +4723,136.118,186.379,497.810,358.721,441.938,192.921,495.763,162.633,74.427,162.633,334.904,318.123,348.614,19.862,24.382,19.862 +4724,136.150,184.449,486.704,361.897,454.979,190.729,485.625,170.248,66.519,170.248,335.025,318.941,347.770,19.033,24.336,19.033 +4725,136.182,183.937,475.475,363.624,467.425,190.292,475.214,177.647,58.878,177.647,334.293,320.023,347.013,18.026,24.051,18.026 +4726,136.213,184.021,465.236,363.451,479.658,190.572,465.757,4.551,51.563,4.551,333.730,321.422,346.874,18.895,21.397,18.895 +4727,136.243,184.021,465.236,363.451,479.658,190.572,465.757,4.551,51.563,4.551,333.730,321.422,346.874,18.895,21.397,18.895 +4728,136.272,184.369,455.147,361.979,491.022,191.960,456.659,11.262,44.081,11.262,331.432,323.972,346.912,18.825,19.630,18.825 +4729,136.304,185.480,445.414,360.109,500.534,194.546,448.295,17.628,37.107,17.628,328.194,325.212,347.218,19.061,19.983,19.061 +4730,136.334,183.757,436.088,357.723,508.625,197.364,441.964,23.356,30.675,23.356,317.650,325.669,347.292,17.840,21.836,17.840 +4731,136.366,154.472,410.835,354.257,517.441,200.632,435.714,28.323,24.711,28.323,243.142,324.912,348.018,18.320,20.299,18.320 +4732,136.399,191.299,418.311,350.225,523.830,205.396,427.432,32.905,18.583,32.905,314.345,324.766,347.926,25.977,20.567,25.977 +4733,136.431,200.771,414.287,345.287,530.195,209.883,421.540,38.517,12.395,38.517,323.924,324.540,347.215,25.612,20.800,25.612 +4734,136.462,206.802,410.676,340.058,536.787,213.951,417.327,42.930,4.611,42.930,327.866,323.450,347.396,25.065,22.202,25.065 +4735,136.493,210.840,407.095,334.572,542.193,217.152,413.779,46.637,176.532,46.637,329.579,322.227,347.965,24.840,23.865,24.840 +4736,136.524,216.891,402.672,329.065,546.808,222.344,409.553,51.605,168.079,51.605,330.149,321.894,347.711,23.926,24.657,23.926 +4737,136.554,221.275,398.653,322.801,550.637,226.305,406.018,55.670,159.444,55.670,329.857,321.278,347.694,23.445,24.696,23.445 +4738,136.584,226.061,395.500,316.805,553.960,230.576,403.207,59.636,151.133,59.636,329.461,320.218,347.326,22.991,24.959,22.991 +4739,136.615,230.800,392.600,310.635,556.676,234.699,400.398,63.435,142.465,63.435,330.044,319.911,347.480,22.361,24.495,22.361 +4740,136.646,235.501,390.315,304.435,558.938,238.779,398.101,67.166,133.958,67.166,330.528,319.174,347.422,22.119,23.369,22.119 +4741,136.675,235.501,390.315,304.435,558.938,238.779,398.101,67.166,133.958,67.166,330.528,319.174,347.422,22.119,23.369,22.119 +4742,136.704,240.135,387.717,298.025,561.164,243.172,396.320,70.560,125.263,70.560,329.159,319.915,347.406,21.522,22.268,21.522 +4743,136.737,244.096,385.040,291.522,562.799,246.885,394.719,73.926,115.866,73.926,327.588,320.279,347.734,20.358,21.432,20.358 +4744,136.770,248.156,381.161,285.783,565.417,251.120,394.083,77.082,106.251,77.082,322.981,321.560,349.494,19.923,20.550,19.923 +4745,136.802,251.065,372.973,281.152,567.648,254.691,394.046,80.238,97.326,80.238,308.383,322.517,351.150,18.343,20.956,18.343 +4746,136.834,252.121,334.104,277.000,568.500,258.625,393.572,83.758,90.000,83.758,232.131,321.000,351.777,17.862,22.000,17.862 +4747,136.869,262.571,380.178,270.542,569.076,263.341,392.882,86.532,80.599,86.532,327.157,322.550,352.613,17.997,20.986,17.997 +4748,136.900,268.000,385.500,267.998,569.161,268.000,392.581,90.000,72.181,90.000,339.000,322.908,353.161,18.000,20.911,18.000 +4749,136.932,272.142,386.764,263.249,568.128,271.890,391.956,92.776,63.595,92.776,342.374,320.665,352.768,18.191,19.987,18.191 +4750,136.963,276.873,387.460,257.432,567.851,276.370,392.231,96.009,55.146,96.009,343.680,320.403,353.275,18.267,20.515,18.267 +4751,136.994,281.796,387.647,251.572,567.878,280.933,393.043,99.090,46.005,99.090,343.629,319.092,354.557,18.761,23.567,18.761 +4752,137.024,286.368,387.994,246.200,565.900,285.247,393.156,102.254,36.870,102.254,343.626,319.000,354.191,18.863,24.400,18.863 +4753,137.054,291.957,388.424,240.993,563.917,290.461,393.731,105.751,28.926,105.751,343.422,317.713,354.449,18.805,24.599,18.805 +4754,137.085,297.279,388.903,235.586,561.002,295.379,394.378,109.134,20.072,109.134,342.445,317.056,354.036,18.818,26.372,18.818 +4755,137.117,302.453,389.814,230.240,558.834,299.867,396.020,112.620,11.619,112.620,340.692,314.981,354.140,18.846,25.943,18.846 +4756,137.149,308.038,391.245,224.430,556.354,304.742,397.930,116.247,2.974,116.247,340.307,313.824,355.214,19.066,23.825,19.066 +4757,137.179,308.038,391.245,224.430,556.354,304.742,397.930,116.247,2.974,116.247,340.307,313.824,355.214,19.066,23.825,19.066 +4758,137.207,314.511,393.656,218.336,552.697,310.390,400.656,120.483,174.806,120.483,339.198,313.797,355.445,18.904,21.910,18.904 +4759,137.238,320.585,395.258,212.237,548.396,315.081,403.352,124.216,166.608,124.216,335.964,313.151,355.541,19.052,20.614,19.052 +4760,137.270,329.060,395.819,206.305,543.974,320.396,406.763,128.367,159.638,128.367,328.875,313.314,356.793,19.601,20.480,19.601 +4761,137.303,341.318,395.007,200.828,539.627,325.920,411.603,132.856,152.365,132.856,312.587,313.204,357.865,20.473,19.606,20.473 +4762,137.335,375.034,373.161,195.615,534.172,329.636,415.067,137.291,146.157,137.291,234.968,313.154,358.531,17.805,19.991,17.805 +4763,137.367,355.679,403.332,190.821,528.192,334.440,420.158,141.613,139.962,141.613,305.127,314.215,359.319,17.896,18.538,17.896 +4764,137.401,343.115,422.923,186.437,522.429,338.437,426.042,146.310,134.837,146.310,348.629,313.978,359.875,18.860,20.556,18.860 +4765,137.434,346.093,430.325,182.756,515.302,342.520,432.260,151.569,128.956,151.569,351.935,314.047,360.063,19.089,21.211,19.089 +4766,137.466,349.763,437.743,178.784,506.485,346.225,439.227,157.238,121.737,157.238,353.172,313.791,360.846,20.196,19.905,20.196 +4767,137.500,353.901,446.491,176.282,497.089,349.789,447.717,163.402,114.685,163.402,352.178,313.394,360.761,20.328,19.391,20.328 +4768,137.532,356.421,456.224,174.571,486.463,352.409,456.933,169.976,107.412,169.976,352.380,313.129,360.528,19.635,19.445,19.635 +4769,137.563,358.948,466.990,174.195,474.802,354.268,467.230,177.064,100.114,177.064,351.077,312.590,360.450,18.770,19.524,18.770 +4770,137.593,359.356,478.496,175.087,462.608,354.339,478.133,4.135,92.951,4.135,349.750,311.823,359.809,18.746,19.984,18.746 +4771,137.623,358.118,490.424,177.448,449.764,353.020,489.381,11.566,86.579,11.566,349.491,310.939,359.899,19.202,19.075,19.202 +4772,137.653,355.049,502.200,181.350,437.158,349.998,500.422,19.398,79.531,19.398,349.462,311.007,360.172,19.795,19.977,19.795 +4773,137.685,351.401,511.738,186.084,425.156,345.944,508.865,27.759,72.399,27.759,348.565,310.219,360.900,25.709,19.419,25.709 +4774,137.716,345.542,524.627,200.618,431.952,345.983,524.949,36.158,63.891,36.158,345.563,272.369,344.472,25.526,19.431,25.526 +4775,137.749,336.680,538.804,210.540,419.145,335.487,537.546,46.515,56.626,46.515,340.317,272.652,343.783,24.534,20.785,24.534 +4776,137.780,336.680,538.804,210.540,419.145,335.487,537.546,46.515,56.626,46.515,340.317,272.652,343.783,24.534,20.785,24.534 +4777,137.808,334.598,564.871,224.542,408.164,322.721,548.618,53.842,49.086,53.842,302.399,271.897,342.658,18.818,19.346,18.818 +4778,137.839,310.562,553.013,232.797,395.714,310.078,552.034,63.719,43.485,63.719,346.575,285.182,348.759,22.161,22.081,22.161 +4779,137.870,295.641,557.957,239.090,380.432,293.867,552.194,72.897,34.256,72.897,348.492,309.571,360.551,21.248,20.492,21.248 +4780,137.901,279.380,560.871,254.199,377.621,278.621,555.673,81.690,26.878,81.690,348.915,310.393,359.423,23.048,19.965,23.048 +4781,137.934,263.765,561.529,269.624,378.146,263.847,556.590,90.952,19.259,90.952,347.151,310.667,357.031,24.130,18.039,24.130 +4782,137.965,251.631,559.766,286.636,379.764,252.683,554.775,101.907,11.665,101.907,346.302,312.620,356.502,22.352,18.071,22.352 +4783,137.996,236.407,554.247,302.909,383.779,238.403,549.153,111.397,4.086,111.397,344.076,314.841,355.018,19.249,18.097,19.249 +4784,138.027,223.897,546.838,317.955,389.762,226.811,541.981,120.964,176.524,120.964,343.512,316.934,354.840,19.208,18.429,19.208 +4785,138.058,212.384,538.477,330.625,397.145,216.733,533.354,130.330,169.016,130.330,341.651,319.270,355.092,19.229,20.156,19.229 +4786,138.088,202.106,529.623,341.761,407.793,208.429,524.203,139.399,161.350,139.399,337.327,320.975,353.984,19.741,20.679,19.741 +4787,138.119,192.724,519.734,349.662,417.766,201.751,514.201,148.496,155.240,148.496,331.827,322.535,353.003,18.400,20.048,18.400 +4788,138.151,127.298,534.331,356.184,429.477,196.810,504.032,156.448,148.888,156.448,200.122,322.930,351.778,17.206,20.386,17.206 +4789,138.183,172.137,500.150,360.806,442.095,193.534,493.949,163.839,142.512,163.839,305.637,323.209,350.191,20.421,21.409,20.421 +4790,138.213,177.248,485.583,364.101,455.608,191.446,483.493,171.624,134.523,171.624,321.048,323.154,349.750,19.058,23.104,19.058 +4791,138.243,177.248,485.583,364.101,455.608,191.446,483.493,171.624,134.523,171.624,321.048,323.154,349.750,19.058,23.104,19.058 +4792,138.271,179.516,472.660,364.580,468.560,190.788,472.574,179.563,126.870,179.563,325.090,323.000,347.634,18.045,24.400,18.045 +4793,138.304,181.647,462.143,364.067,480.577,191.260,463.222,6.402,118.393,6.402,327.981,321.450,347.328,19.114,25.488,19.114 +4794,138.336,183.976,452.102,361.456,492.169,192.477,454.134,13.444,110.323,13.444,328.901,320.918,346.383,19.002,25.215,19.002 +4795,138.369,188.166,440.577,357.983,503.207,195.798,443.218,19.093,101.889,19.093,329.618,320.861,345.771,25.769,25.082,25.769 +4796,138.403,192.414,432.371,353.453,513.127,199.149,435.541,25.201,93.715,25.201,330.418,320.947,345.306,25.761,23.677,25.761 +4797,138.435,197.938,423.254,348.674,522.749,204.391,427.323,32.229,85.475,32.229,330.628,321.448,345.887,26.169,22.225,26.169 +4798,138.467,201.310,418.493,342.886,531.026,207.583,423.100,36.293,77.181,36.293,330.311,322.149,345.876,26.346,20.354,26.346 +4799,138.500,206.403,410.305,337.075,538.394,213.571,416.973,42.930,68.962,42.930,326.674,323.153,346.256,25.065,19.241,25.065 +4800,138.532,205.369,402.314,331.725,544.374,216.457,414.601,47.936,60.741,47.936,314.032,323.630,347.135,18.958,19.829,18.958 +4801,138.563,172.045,346.242,325.677,549.701,220.978,410.744,52.815,52.229,52.815,186.041,323.991,347.968,17.802,19.116,17.802 +4802,138.593,222.308,398.461,320.062,553.912,227.374,406.061,56.310,44.712,56.310,330.601,323.879,348.868,23.297,19.259,23.297 +4803,138.624,230.125,396.234,314.120,556.340,233.115,401.841,61.928,36.870,61.928,336.177,324.600,348.886,22.824,20.400,22.824 +4804,138.654,235.773,393.974,307.350,559.890,238.189,399.501,66.389,29.846,66.389,337.258,323.727,349.324,22.430,23.348,22.430 +4805,138.685,240.877,391.581,300.764,562.127,242.933,397.330,70.322,21.571,70.322,337.081,323.107,349.293,21.414,24.114,21.414 +4806,138.716,245.969,388.990,294.749,564.032,247.804,395.536,74.338,14.407,74.338,336.231,320.627,349.827,20.571,25.547,20.571 +4807,138.748,251.103,386.895,287.841,565.927,252.628,394.212,78.232,6.340,78.232,335.627,319.478,350.575,19.743,25.289,19.743 +4808,138.778,251.103,386.895,287.841,565.927,252.628,394.212,78.232,6.340,78.232,335.627,319.478,350.575,19.743,25.289,19.743 +4809,138.807,256.584,385.192,281.065,566.645,257.659,393.101,82.260,178.603,82.260,334.266,318.296,350.229,19.135,24.700,19.135 +4810,138.839,261.751,383.518,274.358,566.829,262.348,391.867,85.914,171.254,85.914,334.006,317.343,350.747,18.382,25.622,18.382 +4811,138.869,268.000,383.000,267.606,566.865,268.000,391.432,90.000,163.740,90.000,334.000,316.920,350.865,18.000,25.440,18.000 +4812,138.900,273.630,382.193,260.548,566.223,273.078,391.130,93.532,155.872,93.532,333.156,316.797,351.065,18.262,22.873,18.262 +4813,138.933,279.767,381.919,253.768,565.421,278.564,391.298,97.306,147.529,97.306,332.814,316.526,351.725,18.795,22.089,18.795 +4814,138.965,286.439,380.579,246.344,563.713,284.197,391.960,101.143,140.194,101.143,328.462,316.635,351.661,19.281,19.974,19.281 +4815,138.997,293.685,378.355,239.636,562.631,289.706,393.188,105.018,134.012,105.018,322.544,316.907,353.260,19.505,19.174,19.505 +4816,139.029,302.614,372.564,233.621,561.093,294.816,394.874,109.265,127.569,109.265,306.938,317.415,354.204,17.863,19.755,17.863 +4817,139.061,318.397,353.741,227.856,558.908,300.092,396.453,113.199,122.421,113.199,262.613,317.370,355.550,17.858,20.054,17.858 +4818,139.092,341.424,327.706,221.667,555.929,305.241,398.682,117.013,118.186,117.013,196.768,317.584,356.101,17.923,19.581,17.923 +4819,139.124,314.198,395.724,215.817,552.700,310.738,401.535,120.774,113.708,120.774,343.368,317.617,356.893,18.111,19.630,18.111 +4820,139.154,318.683,400.725,211.506,549.346,316.000,404.548,125.068,108.970,125.068,347.756,317.839,357.099,18.472,20.569,18.472 +4821,139.186,323.926,405.689,204.969,544.628,321.511,408.586,129.806,103.671,129.806,350.693,317.473,358.237,19.206,19.355,19.206 +4822,139.217,330.250,410.750,199.107,538.813,327.324,413.676,135.000,97.633,135.000,350.018,316.664,358.295,18.385,19.455,18.385 +4823,139.249,336.156,415.787,193.509,532.467,332.650,418.708,140.194,91.252,140.194,350.309,315.231,359.436,19.334,19.077,19.334 +4824,139.280,341.122,422.483,188.728,523.935,338.102,424.547,145.654,84.920,145.654,351.491,315.246,358.807,19.595,18.992,19.595 +4825,139.312,341.122,422.483,188.728,523.935,338.102,424.547,145.654,84.920,145.654,351.491,315.246,358.807,19.595,18.992,19.595 +4826,139.340,347.126,430.236,184.110,515.062,343.299,432.286,151.821,78.261,151.821,350.136,313.600,358.820,19.109,19.111,19.109 +4827,139.372,351.522,437.833,179.900,505.200,347.084,439.650,157.738,71.565,157.738,349.521,312.749,359.112,20.317,19.290,20.317 +4828,139.404,355.728,447.307,176.879,494.526,350.770,448.706,164.240,64.844,164.240,349.296,312.215,359.599,20.506,19.261,20.506 +4829,139.437,358.440,458.390,174.420,483.417,352.941,459.226,171.347,57.644,171.347,349.133,311.767,360.257,19.171,20.977,19.171 +4830,139.468,360.102,470.080,174.242,471.118,354.214,470.199,178.850,51.577,178.850,348.131,311.886,359.909,18.177,20.846,18.177 +4831,139.501,360.010,481.940,174.581,457.414,353.513,481.222,6.302,44.787,6.302,347.855,309.737,360.927,19.208,22.522,19.208 +4832,139.536,359.756,494.962,176.872,445.466,351.285,492.834,14.099,38.025,14.099,343.927,309.078,361.395,19.713,20.911,19.713 +4833,139.567,366.663,511.103,181.182,433.022,348.031,502.760,24.121,31.397,24.121,320.734,308.366,361.562,23.839,20.847,23.839 +4834,139.599,353.544,523.426,187.905,420.250,341.359,516.115,30.964,24.146,30.964,333.393,308.271,361.815,19.036,20.484,19.036 +4835,139.630,338.728,530.551,196.436,408.291,333.800,526.181,41.566,16.955,41.566,348.811,308.050,361.985,25.495,21.160,25.495 +4836,139.660,327.811,539.574,206.483,400.097,324.820,535.984,50.194,9.728,50.194,350.949,308.443,360.296,23.303,17.431,23.303 +4837,139.691,316.010,547.728,219.044,391.505,313.843,544.078,59.300,2.537,59.300,350.686,308.716,359.177,22.813,17.774,22.813 +4838,139.721,301.898,555.111,233.615,384.443,300.296,550.955,68.916,175.438,68.916,349.795,310.248,358.704,21.539,18.001,21.539 +4839,139.754,286.445,560.253,249.166,379.717,285.370,555.296,77.771,168.302,77.771,348.383,311.844,358.528,22.902,18.381,22.902 +4840,139.786,273.385,561.973,265.612,377.302,273.207,556.185,88.241,161.241,88.241,346.482,313.436,358.064,23.204,18.259,23.204 +4841,139.819,254.262,560.408,282.238,376.478,255.088,553.798,97.125,153.565,97.125,345.313,315.740,358.636,23.691,18.814,23.691 +4842,139.853,241.404,556.647,298.077,379.615,243.557,549.975,107.879,146.310,107.879,343.720,317.843,357.741,19.525,18.860,19.525 +4843,139.884,227.332,550.912,313.099,385.695,231.016,543.878,117.646,139.246,117.646,340.539,318.766,356.420,19.320,20.422,19.320 +4844,139.915,212.866,545.868,325.168,392.299,220.332,536.104,127.405,133.345,127.405,331.247,319.765,355.830,18.130,18.974,18.130 +4845,139.945,212.866,545.868,325.168,392.299,220.332,536.104,127.405,133.345,127.405,331.247,319.765,355.830,18.130,18.974,18.130 +4846,139.974,168.907,567.551,335.933,401.938,211.148,527.308,136.388,127.077,136.388,236.965,320.016,353.650,17.743,21.083,17.743 +4847,140.004,186.024,529.906,345.011,413.311,203.368,517.830,145.152,121.275,145.152,309.661,320.881,351.930,18.833,20.234,18.833 +4848,140.038,186.734,512.547,352.995,425.998,197.571,507.205,153.759,113.595,153.759,326.461,319.623,350.624,19.771,21.204,19.771 +4849,140.070,184.216,499.322,359.440,439.817,193.792,496.234,162.128,105.524,162.128,329.813,319.192,349.936,19.742,24.516,19.742 +4850,140.103,182.669,486.900,362.261,453.522,191.093,485.455,170.263,97.907,170.263,331.113,319.461,348.206,18.866,24.762,18.866 +4851,140.139,182.485,474.500,363.161,467.501,190.081,474.268,178.249,90.392,178.249,331.212,319.061,346.412,18.280,23.753,18.280 +4852,140.171,183.514,463.358,362.896,480.307,190.654,464.076,5.739,82.117,5.739,331.651,319.628,346.003,19.010,24.337,19.010 +4853,140.203,186.043,452.243,360.888,492.964,192.376,453.767,13.528,74.157,13.528,332.986,320.740,346.013,19.445,23.283,19.445 +4854,140.234,188.646,442.737,358.023,504.635,195.371,445.203,20.136,66.721,20.136,332.018,321.838,346.342,18.965,22.505,18.965 +4855,140.266,192.471,432.334,353.378,515.283,199.580,435.734,25.560,58.835,25.560,330.377,322.950,346.137,24.907,20.183,24.907 +4856,140.298,195.313,423.116,348.853,524.729,204.378,428.694,31.608,51.478,31.608,325.465,324.211,346.751,25.812,19.914,25.812 +4857,140.328,188.159,408.427,343.673,532.764,208.001,424.301,38.660,43.932,38.660,296.574,324.677,347.396,17.960,18.382,17.960 +4858,140.360,200.549,404.584,337.324,539.419,213.924,416.832,42.481,36.334,42.481,311.324,325.838,347.594,23.248,19.209,23.248 +4859,140.391,214.815,405.008,331.636,544.256,220.011,411.113,49.600,29.134,49.600,331.448,325.579,347.480,24.499,20.591,24.499 +4860,140.422,221.000,401.500,324.672,550.033,225.243,407.440,54.462,22.166,54.462,333.050,324.441,347.649,23.831,22.672,23.831 +4861,140.454,227.124,397.220,317.694,554.810,230.913,403.696,59.668,15.721,59.668,333.501,322.939,348.508,22.983,24.386,22.983 +4862,140.486,232.961,393.708,310.365,558.937,236.281,400.684,64.552,8.188,64.552,334.014,321.730,349.465,22.475,24.553,22.475 +4863,140.520,238.810,390.641,302.997,561.712,241.582,397.945,69.217,0.868,69.217,334.182,320.160,349.806,21.740,24.664,21.740 +4864,140.552,244.687,387.822,295.609,563.554,246.995,395.721,73.706,174.068,73.706,333.003,319.540,349.462,20.732,24.840,20.732 +4865,140.584,250.684,385.751,287.878,565.164,252.396,393.881,78.111,167.196,78.111,333.222,318.381,349.838,19.777,25.088,19.777 +4866,140.616,256.869,384.124,280.081,566.223,257.974,392.555,82.528,160.159,82.528,333.131,317.801,350.137,18.985,24.660,18.985 +4867,140.647,263.100,383.268,272.508,566.517,263.575,391.655,86.760,153.593,86.760,333.372,317.082,350.173,18.216,24.590,18.216 +4868,140.677,263.100,383.268,272.508,566.517,263.575,391.655,86.760,153.593,86.760,333.372,317.082,350.173,18.216,24.590,18.216 +4869,140.705,269.581,382.047,264.537,566.265,269.416,391.126,91.042,144.951,91.042,332.236,317.285,350.398,17.997,23.020,17.997 +4870,140.739,276.695,380.158,256.558,565.637,275.662,391.261,95.315,138.814,95.315,328.489,317.587,350.792,18.594,20.696,18.594 +4871,140.771,284.006,378.841,248.577,564.571,281.802,391.788,99.660,132.689,99.660,325.552,317.268,351.817,18.416,18.845,18.416 +4872,140.803,292.049,375.258,241.860,563.520,287.653,392.940,103.962,126.870,103.962,316.739,317.800,353.179,18.053,19.600,18.053 +4873,140.836,303.183,365.217,235.276,561.860,293.546,394.564,108.178,121.938,108.178,292.472,317.890,354.250,17.981,19.893,17.981 +4874,140.868,329.808,322.389,228.804,559.426,299.308,396.293,112.426,117.897,112.426,195.483,317.644,355.384,17.842,19.391,17.842 +4875,140.900,311.300,386.400,221.875,556.331,305.121,398.758,116.565,114.001,116.565,328.702,318.111,356.334,17.889,18.844,17.889 +4876,140.930,313.647,397.088,216.545,553.128,310.867,401.721,120.964,110.323,120.964,345.913,318.001,356.718,18.350,19.866,18.350 +4877,140.961,319.395,402.332,210.703,548.914,317.158,405.407,126.027,106.189,126.027,349.742,317.596,357.346,18.821,20.942,18.821 +4878,140.992,325.632,406.317,203.363,543.376,322.801,409.589,130.855,101.030,130.855,349.992,317.117,358.645,19.481,19.722,19.481 +4879,141.023,331.964,411.909,197.494,536.952,328.965,414.758,136.469,95.460,136.469,350.682,316.001,358.955,19.394,19.082,19.394 +4880,141.054,337.898,418.079,191.390,529.489,334.467,420.740,142.206,89.549,142.206,350.729,315.069,359.413,18.869,18.881,18.869 +4881,141.086,343.756,425.608,186.207,520.704,340.156,427.847,148.109,83.766,148.109,351.057,314.390,359.536,19.755,19.673,19.755 +4882,141.119,348.885,433.635,182.127,510.814,345.088,435.458,154.359,77.628,154.359,350.620,313.583,359.044,19.942,19.384,19.942 +4883,141.152,353.771,442.830,178.357,499.883,349.331,444.349,161.107,71.629,161.107,350.106,312.442,359.490,19.818,19.434,19.818 +4884,141.184,357.678,453.360,175.611,488.042,352.411,454.449,168.311,65.583,168.311,349.123,311.925,359.879,19.349,19.591,19.349 +4885,141.214,359.411,465.256,174.011,475.993,353.803,465.657,175.914,59.689,175.914,348.897,311.398,360.142,18.809,19.736,18.809 +4886,141.245,359.411,465.256,174.011,475.993,353.803,465.657,175.914,59.689,175.914,348.897,311.398,360.142,18.809,19.736,18.809 +4887,141.274,360.193,477.530,174.775,463.313,354.235,477.167,3.489,53.448,3.489,348.000,311.422,359.939,18.758,20.928,18.758 +4888,141.304,358.930,490.237,176.445,448.839,352.506,488.925,11.544,46.888,11.544,347.931,309.871,361.044,19.295,23.733,19.295 +4889,141.337,358.150,500.964,179.833,436.262,349.848,497.945,19.983,41.210,19.983,344.050,309.026,361.717,25.802,21.670,25.802 +4890,141.370,369.712,526.074,185.882,423.586,344.186,511.231,30.179,34.898,30.179,302.758,308.692,361.815,23.477,21.693,23.477 +4891,141.407,344.492,531.566,194.113,411.528,335.502,524.630,37.648,28.009,37.648,339.358,308.348,362.066,18.528,19.761,18.528 +4892,141.449,318.532,546.479,215.951,393.293,316.100,542.658,57.529,14.783,57.529,350.503,308.602,359.563,23.239,17.941,23.239 +4893,141.482,305.121,553.448,230.083,385.939,303.461,549.575,66.801,8.383,66.801,350.194,308.770,358.622,21.666,17.412,21.666 +4894,141.516,288.943,559.275,245.914,380.794,287.870,554.918,76.168,1.768,76.168,349.237,310.223,358.212,23.289,17.634,23.289 +4895,141.554,275.917,561.895,262.168,378.003,275.623,556.555,86.851,175.220,86.851,347.345,311.588,358.041,24.183,18.389,24.183 +4896,141.585,257.036,561.003,279.011,378.096,257.557,555.506,95.412,168.871,95.412,346.239,313.773,357.284,23.463,18.048,23.463 +4897,141.616,243.901,557.472,295.422,379.816,245.560,551.650,105.910,161.878,105.910,345.733,315.929,357.840,19.778,18.161,19.778 +4898,141.647,230.616,551.575,310.258,384.135,233.627,545.307,115.654,155.126,115.654,343.012,318.134,356.921,19.276,19.200,19.276 +4899,141.677,230.616,551.575,310.258,384.135,233.627,545.307,115.654,155.126,115.654,343.012,318.134,356.921,19.276,19.200,19.276 +4900,141.705,218.283,543.998,323.704,391.644,222.427,538.074,124.974,148.392,124.974,341.618,319.830,356.078,19.081,20.440,19.081 +4901,141.738,206.334,536.393,334.760,400.180,213.174,529.363,134.215,143.130,134.215,335.137,321.000,354.754,18.112,18.800,18.112 +4902,141.771,141.476,568.969,344.175,410.529,205.686,520.548,142.980,137.978,142.980,192.787,320.952,353.629,17.382,19.340,17.382 +4903,141.804,176.283,523.140,352.165,422.246,199.560,510.301,151.120,132.089,151.120,299.145,321.546,352.310,18.117,19.917,18.117 +4904,141.837,180.775,505.663,357.250,434.750,194.754,500.341,159.156,125.538,159.156,320.484,322.006,350.399,19.715,20.808,19.715 +4905,141.871,181.264,492.478,361.628,447.619,192.157,489.964,167.005,118.740,167.005,326.946,320.998,349.305,20.087,23.363,20.087 +4906,141.903,180.882,480.091,363.987,460.770,190.661,479.177,174.664,111.194,174.664,328.931,320.504,348.573,18.704,25.041,18.704 +4907,141.935,181.469,468.829,363.912,473.353,190.362,469.165,2.161,104.036,2.161,329.369,320.390,347.169,18.779,25.224,18.779 +4908,141.968,183.379,458.236,362.511,485.616,191.389,459.548,9.297,96.546,9.297,329.939,320.064,346.172,18.880,25.358,18.880 +4909,142.000,186.310,447.950,360.000,497.000,193.534,450.080,16.425,90.000,16.425,330.815,320.000,345.879,19.467,24.000,19.467 +4910,142.032,190.189,438.130,356.216,507.759,196.936,440.737,21.125,81.995,21.125,330.995,321.168,345.462,25.928,22.993,25.928 +4911,142.063,194.584,429.068,352.127,517.465,201.231,432.550,27.646,74.745,27.646,331.132,321.793,346.140,26.069,22.102,26.069 +4912,142.094,198.846,421.731,346.621,526.619,205.550,426.200,33.690,67.447,33.690,330.047,322.996,346.161,25.239,19.959,25.239 +4913,142.125,201.019,415.158,341.482,534.150,209.507,421.827,38.157,60.180,38.157,324.749,323.485,346.340,25.612,19.394,25.612 +4914,142.155,197.500,403.000,336.360,540.229,212.647,418.147,45.000,53.011,45.000,304.763,324.014,347.606,17.678,19.263,17.678 +4915,142.187,200.090,390.714,330.000,546.034,219.195,411.996,48.085,45.659,48.085,290.331,325.329,347.528,21.588,19.066,21.588 +4916,142.220,219.905,400.791,324.634,550.613,225.116,408.007,54.162,39.267,54.162,329.947,324.710,347.749,23.960,19.915,23.960 +4917,142.252,226.273,398.350,318.993,553.567,229.634,403.897,58.782,32.735,58.782,335.652,324.575,348.624,23.220,21.991,23.220 +4918,142.284,231.787,396.117,312.212,557.282,234.391,401.232,63.020,25.301,63.020,337.265,324.250,348.744,22.652,23.078,22.652 +4919,142.315,236.693,393.047,306.340,560.470,239.220,399.086,67.297,18.853,67.297,336.475,322.290,349.568,21.613,23.982,21.613 +4920,142.345,236.693,393.047,306.340,560.470,239.220,399.086,67.297,18.853,67.297,336.475,322.290,349.568,21.613,23.982,21.613 +4921,142.374,241.951,390.196,299.892,562.463,244.197,396.807,71.235,13.092,71.235,335.572,320.788,349.536,21.498,26.185,21.498 +4922,142.406,247.019,388.422,293.120,564.782,248.878,395.439,75.163,5.618,75.163,335.533,319.801,350.051,20.396,25.125,20.396 +4923,142.438,252.008,386.081,286.996,565.759,253.521,393.875,79.019,178.977,79.019,334.347,318.271,350.227,19.707,24.514,19.707 +4924,142.471,257.266,384.466,280.135,566.515,258.306,392.664,82.763,172.405,82.763,333.906,317.986,350.433,18.896,24.979,18.896 +4925,142.504,262.428,383.376,273.441,566.283,262.955,391.562,86.317,166.103,86.317,333.661,317.458,350.067,18.485,24.478,18.485 +4926,142.535,268.000,382.500,266.925,566.966,268.000,391.483,90.000,159.444,90.000,333.000,317.064,350.966,18.000,24.462,18.000 +4927,142.567,274.027,382.199,260.079,566.132,273.442,391.092,93.761,152.892,93.761,333.253,316.702,351.078,18.341,22.837,18.341 +4928,142.598,280.008,381.457,253.269,565.154,278.736,391.220,97.422,146.310,97.422,331.840,316.456,351.532,18.788,21.079,18.788 +4929,142.629,286.399,380.471,246.320,563.984,284.118,392.082,101.113,140.194,101.113,328.263,316.763,351.928,19.257,19.590,19.257 +4930,142.660,294.211,379.016,240.039,562.543,290.312,393.262,105.306,134.738,105.306,323.554,316.128,353.095,19.991,19.263,19.991 +4931,142.691,301.254,375.297,233.816,560.766,294.626,394.477,109.065,129.768,109.065,313.477,317.146,354.062,17.868,20.103,17.868 +4932,142.721,312.995,364.761,227.930,558.950,299.644,396.471,112.834,125.506,112.834,286.338,317.358,355.150,17.948,19.766,17.948 +4933,142.753,340.100,327.300,222.753,556.596,304.556,398.388,116.565,122.005,116.565,197.221,317.151,356.178,17.441,19.504,17.441 +4934,142.786,334.291,358.909,216.535,552.797,309.718,400.750,120.426,119.018,120.426,259.548,317.709,356.595,17.875,19.271,17.875 +4935,142.818,318.499,398.644,211.005,549.749,314.806,404.096,124.114,116.261,124.114,344.441,317.110,357.611,18.321,20.148,18.321 +4936,142.850,323.220,403.583,206.903,545.879,320.172,407.411,128.522,112.770,128.522,347.971,317.087,357.757,18.427,20.559,18.427 +4937,142.880,323.220,403.583,206.903,545.879,320.172,407.411,128.522,112.770,128.522,347.971,317.087,357.757,18.427,20.559,18.427 +4938,142.908,328.683,409.199,201.239,540.422,326.023,411.996,133.561,108.800,133.561,350.387,316.906,358.108,19.210,20.262,19.210 +4939,142.940,334.300,414.574,194.633,534.160,331.066,417.429,138.558,104.162,138.558,350.440,316.273,359.067,19.498,20.208,19.498 +4940,142.971,339.593,420.259,190.179,527.190,336.259,422.695,143.842,99.162,143.842,350.936,315.662,359.195,18.881,19.203,18.881 +4941,143.003,344.793,426.804,185.099,518.614,341.057,429.012,149.421,94.086,149.421,351.023,314.271,359.703,19.332,19.522,19.332 +4942,143.036,349.326,434.850,181.324,509.479,345.583,436.567,155.364,88.568,155.364,351.165,313.327,359.401,19.731,19.119,19.731 +4943,143.068,353.793,443.857,178.096,499.255,349.582,445.246,161.742,83.341,161.742,350.678,313.077,359.547,19.962,19.210,19.962 +4944,143.101,357.187,453.920,175.573,488.053,352.369,454.897,168.536,77.821,168.536,349.885,311.848,359.717,19.587,19.648,19.587 +4945,143.132,359.192,465.138,174.474,476.102,354.026,465.515,175.834,73.202,175.834,349.333,311.583,359.693,18.785,18.948,18.785 +4946,143.165,360.240,477.112,174.956,463.497,354.335,476.779,3.225,67.778,3.225,347.857,310.689,359.685,18.703,19.627,18.703 +4947,143.197,358.903,489.153,177.377,450.506,353.444,488.094,10.981,62.567,10.981,348.881,310.127,360.004,19.385,22.494,19.385 +4948,143.228,356.611,498.575,180.012,438.699,350.917,496.608,19.058,55.676,19.058,348.844,310.098,360.892,25.950,22.036,25.950 +4949,143.259,352.981,511.998,191.583,433.849,350.080,510.489,27.489,50.013,27.489,345.413,287.569,351.954,25.589,23.579,25.589 +4950,143.290,351.596,531.457,191.582,414.460,338.020,520.934,37.780,45.390,37.780,327.587,308.301,361.940,23.847,18.404,23.847 +4951,143.320,343.250,548.750,207.487,408.079,330.141,535.641,45.000,39.369,45.000,316.784,293.550,353.861,17.678,18.930,17.678 +4952,143.353,322.896,545.423,213.308,393.538,318.986,539.837,55.008,33.690,55.008,347.272,308.413,360.909,23.430,20.524,23.430 +4953,143.387,309.460,552.881,226.550,385.580,306.689,547.142,64.231,27.613,64.231,347.923,308.267,360.670,22.234,21.239,22.234 +4954,143.420,294.740,558.208,240.465,381.586,293.320,553.263,73.974,21.801,73.974,348.903,309.554,359.193,21.840,17.827,21.840 +4955,143.451,276.853,561.568,256.156,378.696,276.243,556.827,82.661,16.049,82.661,348.914,310.293,358.475,24.765,17.759,24.765 +4956,143.482,261.963,561.535,272.464,378.025,262.143,556.509,92.058,10.049,92.058,347.423,311.426,357.479,24.308,18.085,24.308 +4957,143.513,261.963,561.535,272.464,378.025,262.143,556.509,92.058,10.049,92.058,347.423,311.426,357.479,24.308,18.085,24.308 +4958,143.541,250.155,559.318,288.804,379.757,251.338,554.036,102.622,4.059,102.622,345.682,313.058,356.508,21.367,18.116,21.367 +4959,143.573,235.500,553.797,304.040,383.702,237.609,548.590,112.051,178.112,112.051,344.295,314.456,355.533,19.100,18.342,19.100 +4960,143.604,223.208,546.823,318.256,389.858,226.340,541.665,121.275,172.157,121.275,342.863,317.613,354.931,18.974,18.468,18.974 +4961,143.635,212.492,538.493,330.740,396.937,216.912,533.275,130.264,166.258,130.264,341.530,319.655,355.208,19.210,20.132,19.210 +4962,143.666,202.543,530.049,341.455,407.372,208.856,524.560,138.991,160.396,138.991,337.177,321.337,353.910,19.620,20.157,19.620 +4963,143.699,193.526,520.452,349.318,417.092,202.332,514.910,147.815,155.903,147.815,332.194,322.777,353.004,18.264,19.386,18.264 +4964,143.730,123.706,538.852,355.764,428.067,197.600,505.320,155.592,151.424,155.592,189.610,322.745,351.903,17.088,19.563,17.088 +4965,143.762,165.671,503.727,360.388,440.086,193.777,494.900,162.565,146.470,162.565,291.839,323.404,350.760,18.521,19.353,18.521 +4966,143.794,174.410,489.164,363.329,452.537,191.668,486.123,170.009,141.340,170.009,314.724,323.124,349.771,19.641,21.864,19.641 +4967,143.824,178.126,476.203,365.000,465.000,191.028,475.603,177.337,135.000,177.337,322.721,322.441,348.553,18.027,24.042,18.027 +4968,143.855,180.223,465.873,364.402,477.122,190.981,466.641,4.086,128.660,4.086,325.884,323.280,347.455,19.237,25.144,19.237 +4969,143.886,182.670,455.838,362.971,488.007,192.077,457.637,10.832,121.380,10.832,327.957,322.111,347.112,18.860,25.448,18.860 +4970,143.917,185.313,446.753,360.121,498.056,193.812,449.344,16.952,114.864,16.952,328.803,321.144,346.571,19.305,25.449,19.305 +4971,143.948,189.717,436.068,356.180,507.719,197.460,439.228,22.203,107.819,22.203,328.940,320.732,345.666,25.697,25.127,25.697 +4972,143.978,189.717,436.068,356.180,507.719,197.460,439.228,22.203,107.819,22.203,328.940,320.732,345.666,25.697,25.127,25.697 +4973,144.010,194.171,428.491,351.731,516.739,201.045,432.158,28.072,101.004,28.072,329.941,321.234,345.523,25.765,24.131,25.765 +4974,144.042,197.794,422.924,346.891,525.028,204.338,427.123,32.681,94.086,32.681,330.151,321.253,345.701,26.013,23.013,26.013 +4975,144.074,203.105,416.521,341.371,532.360,209.113,421.210,37.972,87.207,37.972,330.054,321.642,345.296,25.880,20.878,25.880 +4976,144.105,207.703,410.091,335.676,538.554,213.684,415.792,43.630,80.538,43.630,329.485,322.551,346.010,24.962,19.235,24.962 +4977,144.136,210.367,404.019,330.990,544.271,217.941,412.434,48.013,73.677,48.013,324.597,323.080,347.239,23.860,19.598,23.860 +4978,144.169,211.306,395.534,325.603,549.241,222.072,409.351,52.074,66.801,52.074,312.928,323.408,347.961,22.465,18.777,22.465 +4979,144.201,197.038,366.308,320.463,553.155,224.684,407.776,56.310,59.995,56.310,248.506,323.487,348.183,17.473,18.869,17.473 +4980,144.233,223.291,392.229,315.117,556.408,230.373,404.015,58.995,53.054,58.995,321.044,324.399,348.544,20.883,19.115,20.883 +4981,144.265,231.800,394.600,311.126,558.439,235.100,401.201,63.435,46.701,63.435,334.516,323.530,349.276,22.361,20.210,22.361 +4982,144.295,237.062,392.805,305.726,560.736,239.579,398.862,67.433,40.479,67.433,336.609,323.352,349.727,21.875,20.675,21.875 +4983,144.326,241.863,392.244,299.763,562.895,243.636,397.337,70.807,34.651,70.807,338.830,323.438,349.616,21.243,23.058,21.243 +4984,144.357,246.038,390.632,294.440,564.181,247.474,395.661,74.055,28.237,74.055,339.418,323.064,349.877,20.604,24.081,20.604 +4985,144.389,250.121,388.537,289.994,564.823,251.402,394.207,77.276,22.762,77.276,338.226,321.072,349.852,19.886,27.096,19.886 +4986,144.421,254.225,386.968,284.323,567.006,255.390,393.880,80.433,15.124,80.433,337.033,319.875,351.053,19.334,25.413,19.334 +4987,144.453,258.516,385.725,279.141,567.253,259.338,392.983,83.541,9.051,83.541,336.173,318.629,350.783,18.711,25.134,18.711 +4988,144.484,262.820,384.161,273.584,566.884,263.283,391.882,86.566,2.961,86.566,335.137,317.558,350.608,18.147,24.881,18.147 +4989,144.517,267.364,383.498,268.236,567.414,267.419,391.698,89.621,176.553,89.621,335.032,317.052,351.434,17.914,25.099,17.914 +4990,144.547,267.364,383.498,268.236,567.414,267.419,391.698,89.621,176.553,89.621,335.032,317.052,351.434,17.914,25.099,17.914 +4991,144.576,272.144,383.146,262.964,567.231,271.751,391.605,92.663,170.352,92.663,334.754,316.489,351.690,18.190,24.853,18.190 +4992,144.607,276.736,383.122,257.388,566.336,275.906,391.491,95.662,164.219,95.662,334.820,316.202,351.638,18.354,23.618,18.354 +4993,144.640,281.674,383.176,251.855,565.410,280.355,391.969,98.531,157.932,98.531,333.717,316.219,351.499,19.383,22.693,19.383 +4994,144.671,286.756,382.678,246.141,564.150,284.770,392.221,101.760,152.049,101.760,332.893,315.987,352.387,19.253,21.633,19.253 +4995,144.703,293.248,382.024,240.554,562.324,290.232,393.060,105.285,146.094,105.285,329.866,316.184,352.746,19.293,20.422,19.293 +4996,144.736,298.800,381.600,234.988,560.610,294.608,394.176,108.435,141.340,108.435,326.980,316.252,353.492,19.606,19.366,19.606 +4997,144.770,305.661,379.251,229.456,558.835,299.054,395.942,111.595,136.648,111.595,318.246,316.251,354.148,19.971,19.709,19.971 +4998,144.802,313.286,375.517,224.288,556.765,302.955,397.470,115.201,132.641,115.201,306.733,316.478,355.259,17.883,19.221,17.883 +4999,144.834,326.464,364.105,219.884,554.587,307.281,399.519,118.443,129.289,118.443,275.402,316.267,355.952,17.916,19.841,17.916 +5000,144.865,353.376,334.798,214.970,551.977,311.439,401.897,122.005,127.064,122.005,198.538,316.416,356.792,17.808,19.312,17.808 +5001,144.896,361.616,340.644,210.016,548.065,315.779,404.307,125.754,125.087,125.754,200.027,316.795,356.924,17.789,18.739,17.789 +5002,144.926,324.688,402.449,204.856,544.234,320.498,407.677,128.711,123.362,128.711,344.357,316.204,357.758,18.228,20.007,18.228 +5003,144.956,329.105,407.172,201.162,540.397,325.319,411.267,132.754,120.964,132.754,347.047,316.415,358.202,18.537,19.894,18.537 +5004,144.988,332.599,413.524,196.532,535.596,330.123,415.810,137.291,118.339,137.291,352.084,316.292,358.823,18.992,20.728,18.992 +5005,145.020,337.886,417.946,190.961,529.284,334.338,420.734,141.843,114.944,141.843,350.586,315.412,359.610,19.433,20.117,19.433 +5006,145.052,342.182,424.735,185.872,522.141,338.912,426.851,147.095,110.781,147.095,352.718,314.965,360.508,19.508,20.430,19.508 +5007,145.083,346.610,431.293,182.610,514.326,343.278,433.030,152.461,106.390,152.461,352.589,314.841,360.103,19.856,19.074,19.856 +5008,145.114,346.610,431.293,182.610,514.326,343.278,433.030,152.461,106.390,152.461,352.589,314.841,360.103,19.856,19.074,19.856 +5009,145.142,350.809,439.267,179.098,504.944,347.236,440.693,158.254,101.944,158.254,352.258,314.013,359.953,19.881,19.210,19.881 +5010,145.173,354.925,447.940,176.437,494.876,350.818,449.086,164.407,97.291,164.407,352.015,313.689,360.543,20.272,19.578,20.272 +5011,145.206,357.729,458.253,174.965,484.150,353.348,458.932,171.193,92.896,171.193,351.413,312.612,360.281,19.152,19.500,19.152 +5012,145.237,359.483,468.917,174.144,472.392,354.185,469.071,178.328,88.297,178.328,349.523,311.308,360.123,18.875,19.274,18.875 +5013,145.270,359.399,480.562,175.182,460.185,354.307,480.077,5.440,84.349,5.440,350.177,311.043,360.407,18.962,18.944,18.962 +5014,145.304,358.065,492.559,178.396,447.577,352.874,491.363,12.975,79.992,12.975,349.057,311.076,359.709,19.714,20.738,19.714 +5015,145.336,355.155,502.862,181.826,435.267,349.781,500.713,21.801,75.455,21.801,348.922,310.476,360.497,25.626,19.621,25.626 +5016,145.369,350.051,513.692,187.105,423.116,344.911,510.810,29.281,70.821,29.281,349.282,310.247,361.068,25.482,18.931,25.482 +5017,145.401,343.954,526.559,200.111,426.800,343.314,526.062,37.842,65.158,37.842,346.347,279.365,347.968,25.257,19.460,25.257 +5018,145.432,333.948,540.352,211.352,418.301,333.350,539.689,47.932,60.505,47.932,341.917,273.015,343.704,24.319,21.118,24.319 +5019,145.464,359.419,606.401,224.892,409.235,320.850,550.494,55.399,55.914,55.399,205.688,269.849,341.529,18.927,19.609,18.927 +5020,145.495,308.919,558.929,238.213,398.912,307.630,556.179,64.891,50.505,64.891,337.651,274.669,343.725,19.137,19.979,19.137 +5021,145.526,294.161,559.951,252.188,390.831,293.962,559.225,74.698,45.252,74.698,345.392,278.653,346.897,21.839,23.356,21.839 +5022,145.556,276.579,561.631,262.088,380.585,276.161,558.138,83.166,40.840,83.166,348.896,297.228,355.933,23.751,23.465,23.751 +5023,145.586,261.780,561.600,272.054,376.247,262.040,555.646,92.505,36.336,92.505,347.411,311.218,359.331,23.328,20.905,23.328 +5024,145.617,250.109,559.258,287.670,378.580,251.382,553.585,102.640,31.363,102.640,345.783,311.489,357.410,21.148,21.030,21.148 +5025,145.647,235.923,553.875,302.091,383.837,237.827,549.134,111.882,26.338,111.882,344.460,313.065,354.678,19.373,19.095,19.373 +5026,145.678,235.923,553.875,302.091,383.837,237.827,549.134,111.882,26.338,111.882,344.460,313.065,354.678,19.373,19.095,19.373 +5027,145.708,223.752,546.851,316.277,390.858,226.200,542.765,120.927,21.251,120.927,343.682,314.603,353.209,18.846,18.485,18.846 +5028,145.739,213.556,538.547,329.011,399.195,216.540,534.957,129.736,16.091,129.736,343.261,316.610,352.596,18.852,18.662,18.852 +5029,145.772,204.701,529.349,340.170,408.162,208.896,525.616,138.334,11.219,138.334,341.064,318.887,352.296,19.560,18.669,19.560 +5030,145.804,195.635,520.445,349.019,418.327,202.389,516.000,146.650,6.221,146.650,336.189,320.137,352.360,19.248,18.973,19.248 +5031,145.837,190.290,509.562,356.447,429.720,197.758,505.973,154.335,1.369,154.335,335.544,321.267,352.117,20.368,19.166,20.368 +5032,145.869,185.265,499.282,360.945,440.980,194.398,496.288,161.847,176.894,161.847,331.755,322.827,350.978,19.986,19.754,19.986 +5033,145.901,173.991,490.257,363.955,451.090,192.225,486.876,169.495,173.809,169.495,313.666,324.112,350.754,17.679,18.960,17.679 +5034,145.931,115.706,483.378,365.441,462.160,191.320,477.977,175.914,170.172,175.914,197.996,324.389,349.610,17.242,19.970,17.242 +5035,145.962,163.851,468.219,365.457,472.245,191.120,469.183,2.025,166.452,2.025,294.099,324.776,348.672,18.287,20.439,18.287 +5036,145.993,174.912,458.551,364.752,483.293,192.029,461.038,8.264,162.387,8.264,313.664,324.471,348.257,18.819,21.589,18.819 +5037,146.023,180.836,450.106,363.046,493.777,193.768,453.374,14.181,156.873,14.181,321.356,324.068,348.034,19.198,23.211,19.198 +5038,146.054,186.035,439.838,360.072,502.719,196.650,443.531,19.179,151.260,19.179,325.112,323.629,347.591,26.035,23.900,26.035 +5039,146.087,189.775,433.501,356.248,511.355,199.074,437.676,24.179,145.081,24.179,326.741,322.940,347.127,25.115,25.187,25.115 +5040,146.120,194.400,425.800,352.049,519.057,202.831,430.618,29.745,139.086,29.745,327.452,322.125,346.872,25.799,25.643,25.799 +5041,146.152,198.389,420.240,347.063,525.480,205.835,425.335,34.380,132.683,34.380,328.168,320.887,346.214,25.324,24.692,25.324 +5042,146.183,203.606,414.215,342.240,531.550,210.363,419.760,39.369,126.621,39.369,328.239,321.418,345.721,25.690,24.924,25.690 +5043,146.214,203.606,414.215,342.240,531.550,210.363,419.760,39.369,126.621,39.369,328.239,321.418,345.721,25.690,24.924,25.690 +5044,146.241,207.649,409.674,336.730,537.220,213.799,415.572,43.807,120.324,43.807,328.807,321.106,345.849,24.935,24.153,24.935 +5045,146.272,211.114,406.955,331.302,542.633,216.863,413.087,46.848,113.875,46.848,328.748,322.583,345.557,24.850,23.490,24.850 +5046,146.304,216.325,402.461,326.109,547.133,221.573,409.066,51.532,107.430,51.532,329.389,322.314,346.261,24.347,22.277,24.347 +5047,146.337,220.231,399.033,320.944,550.570,225.319,406.288,54.958,100.968,54.958,328.343,322.024,346.067,23.605,20.989,23.605 +5048,146.371,223.609,395.158,315.825,553.949,228.938,403.801,58.344,94.316,58.344,326.509,321.425,346.816,23.233,19.511,23.233 +5049,146.403,226.757,391.142,311.005,557.561,232.669,402.015,61.468,87.657,61.468,323.390,323.425,348.144,22.655,18.239,22.655 +5050,146.435,228.739,384.738,307.631,560.130,236.323,400.629,64.486,81.511,64.486,314.104,323.432,349.321,22.193,19.072,22.193 +5051,146.466,225.550,370.521,303.424,562.485,237.857,400.057,67.380,75.005,67.380,286.308,323.886,350.303,17.846,18.508,17.846 +5052,146.498,225.805,354.702,299.236,563.620,242.114,398.059,69.386,68.517,69.386,257.496,323.303,350.143,19.355,18.962,19.355 +5053,146.530,242.440,388.992,295.136,564.930,245.050,396.971,71.882,62.784,71.882,333.624,322.989,350.414,20.874,20.581,20.874 +5054,146.561,247.290,389.449,292.308,565.961,248.976,395.871,75.285,56.310,75.285,337.758,322.558,351.037,20.204,19.415,20.204 +5055,146.591,250.829,389.411,289.057,565.952,251.963,394.600,77.675,49.998,77.675,340.021,322.147,350.642,19.900,20.388,19.900 +5056,146.621,254.257,388.977,284.613,567.378,255.123,393.960,80.134,44.579,80.134,341.697,321.132,351.812,19.533,21.608,19.533 +5057,146.652,257.344,388.050,280.561,567.549,258.041,393.306,82.455,38.660,82.455,340.779,321.406,351.382,18.881,23.270,18.881 +5058,146.687,260.319,387.294,276.511,567.766,260.830,392.830,84.726,32.535,84.726,340.154,321.352,351.274,18.414,23.795,18.414 +5059,146.730,263.421,386.692,272.629,568.249,263.738,392.602,86.934,26.346,86.934,339.905,320.660,351.743,18.063,25.168,18.063 +5060,146.765,267.000,386.025,268.920,568.070,267.080,392.503,89.293,20.266,89.293,338.196,319.631,351.154,18.171,25.790,18.171 +5061,146.798,270.278,384.940,265.379,567.969,270.090,391.982,91.534,14.534,91.534,338.013,318.005,352.100,18.101,25.993,18.101 +5062,146.837,273.712,384.657,261.551,567.168,273.243,391.887,93.708,8.791,93.708,336.849,317.117,351.339,18.323,25.083,18.323 +5063,146.870,277.344,383.984,257.491,566.803,276.529,391.721,96.009,1.736,96.009,336.666,315.552,352.226,18.477,24.655,18.477 +5064,146.900,281.061,384.009,253.386,565.951,279.916,391.862,98.297,176.820,98.297,336.317,315.735,352.190,18.842,23.797,18.842 +5065,146.931,284.795,384.120,248.966,564.953,283.305,392.037,100.660,171.027,100.660,336.456,315.616,352.567,19.111,23.186,19.111 +5066,146.962,289.498,384.480,244.547,563.777,287.521,392.708,103.510,165.256,103.510,335.826,315.521,352.750,19.175,22.853,19.175 +5067,146.993,293.302,384.943,240.077,562.522,290.858,393.495,105.945,159.228,105.945,335.160,315.546,352.948,18.956,22.569,18.956 +5068,147.024,298.041,384.698,235.543,560.642,294.831,394.180,108.699,154.592,108.699,333.347,315.312,353.367,18.944,21.001,18.944 +5069,147.056,302.488,384.157,231.023,559.261,298.145,395.376,111.161,149.859,111.161,330.069,315.341,354.130,19.313,21.006,19.313 +5070,147.088,307.887,383.505,226.248,557.136,302.026,396.691,113.962,145.305,113.962,325.926,315.469,354.785,19.292,19.986,19.292 +5071,147.120,315.090,382.844,221.771,554.957,306.846,398.990,117.051,141.153,117.051,318.931,315.482,355.190,20.825,19.382,20.825 +5072,147.151,321.879,378.959,217.549,552.911,309.438,400.420,120.101,137.603,120.101,306.410,315.333,356.023,17.905,19.490,17.905 +5073,147.182,332.324,372.856,213.438,550.451,312.860,402.475,123.311,135.374,123.311,285.644,315.400,356.528,17.860,19.281,17.860 +5074,147.213,332.324,372.856,213.438,550.451,312.860,402.475,123.311,135.374,123.311,285.644,315.400,356.528,17.860,19.281,17.860 +5075,147.241,350.746,358.224,209.317,547.765,316.781,404.926,126.027,133.847,126.027,241.959,314.898,357.453,17.792,19.283,17.792 +5076,147.273,370.193,346.431,205.151,544.568,320.228,407.500,129.289,132.879,129.289,200.103,314.997,357.913,17.871,19.524,17.871 +5077,147.305,377.166,352.819,200.903,540.364,324.357,410.429,132.510,132.064,132.510,202.103,315.372,358.406,17.815,18.415,17.815 +5078,147.337,335.167,407.637,196.752,536.222,328.436,414.218,135.644,131.389,135.644,340.073,315.240,358.900,18.177,18.605,18.177 +5079,147.370,336.164,414.765,192.905,531.198,332.287,418.076,139.502,130.703,139.502,348.710,314.980,358.908,18.506,19.727,18.506 +5080,147.402,340.568,419.546,188.875,526.075,336.194,422.752,143.762,129.415,143.762,348.957,314.942,359.803,18.606,19.980,18.606 +5081,147.434,343.785,426.038,185.458,520.108,340.260,428.220,148.241,127.235,148.241,351.686,314.388,359.977,19.435,20.796,19.435 +5082,147.466,347.300,432.600,180.919,512.229,343.622,434.439,153.435,124.452,153.435,352.404,314.010,360.630,20.125,20.529,20.125 +5083,147.497,351.380,440.081,178.115,504.172,347.443,441.592,159.007,121.079,159.007,352.585,314.014,361.017,19.682,19.241,19.682 +5084,147.528,354.084,448.972,175.735,494.884,350.546,449.935,164.770,117.607,164.770,353.626,313.201,360.959,19.914,19.292,19.914 +5085,147.559,356.711,458.137,174.084,484.485,352.851,458.736,171.189,114.111,171.189,353.390,313.337,361.203,19.680,20.004,19.680 +5086,147.588,358.466,468.510,174.022,473.629,354.126,468.658,178.042,110.478,178.042,351.649,312.742,360.336,18.852,20.198,18.852 +5087,147.619,358.534,479.604,175.067,462.079,354.344,479.244,4.909,106.830,4.909,351.766,312.340,360.177,18.961,21.368,18.961 +5088,147.650,357.363,491.133,177.173,449.878,352.889,490.165,12.200,103.440,12.200,351.367,312.177,360.523,19.443,20.361,19.443 +5089,147.679,357.363,491.133,177.173,449.878,352.889,490.165,12.200,103.440,12.200,351.367,312.177,360.523,19.443,20.361,19.443 +5090,147.708,355.328,499.847,181.544,437.371,350.811,498.204,19.983,99.791,19.983,350.116,311.881,359.730,25.631,21.701,25.631 +5091,147.740,350.979,511.766,185.955,425.042,345.801,509.023,27.920,96.248,27.920,349.409,311.300,361.127,25.632,19.308,25.632 +5092,147.771,344.579,523.706,192.793,413.691,339.271,519.833,36.119,92.883,36.119,348.638,311.411,361.782,25.740,18.178,25.740 +5093,147.803,335.000,534.500,201.837,402.529,330.342,529.842,45.000,89.467,45.000,348.604,311.080,361.779,24.749,17.581,24.749 +5094,147.835,324.887,545.219,212.515,393.901,320.260,538.858,53.973,86.269,53.973,345.477,311.295,361.208,23.527,18.222,23.527 +5095,147.867,311.700,554.400,224.279,386.530,307.734,546.468,63.435,82.185,63.435,343.013,311.433,360.750,22.361,19.212,22.361 +5096,147.898,299.975,565.008,239.138,392.876,297.568,557.496,72.232,78.977,72.232,333.421,289.659,349.198,20.193,19.873,20.193 +5097,147.928,286.291,597.685,254.942,389.774,279.986,561.824,80.028,75.466,80.028,274.753,285.272,347.575,22.999,18.715,22.999 +5098,147.959,267.500,571.500,270.256,385.758,267.500,560.379,90.000,71.792,90.000,327.000,290.627,349.242,23.000,20.086,23.000 +5099,147.988,254.250,564.068,286.781,386.181,255.241,558.390,99.904,67.778,99.904,338.607,291.378,350.135,23.001,22.319,23.001 +5100,148.020,239.960,556.995,300.376,386.815,241.471,552.499,108.579,63.848,108.579,342.146,297.862,351.633,19.388,24.037,19.388 +5101,148.051,227.817,550.252,310.990,385.306,230.873,544.393,117.544,60.461,117.544,342.993,314.078,356.209,19.231,24.622,19.231 +5102,148.083,217.110,542.779,323.785,392.668,221.044,537.411,126.232,57.095,126.232,341.648,314.789,354.959,19.276,24.990,19.276 +5103,148.113,217.110,542.779,323.785,392.668,221.044,537.411,126.232,57.095,126.232,341.648,314.789,354.959,19.276,24.990,19.276 +5104,148.142,207.615,533.601,334.309,401.787,211.973,529.204,134.751,53.427,134.751,340.853,316.032,353.234,18.732,24.482,18.732 +5105,148.173,200.050,524.390,343.620,412.547,204.827,520.780,142.921,49.616,142.921,339.998,317.464,351.972,19.476,24.524,19.476 +5106,148.204,193.903,514.326,351.156,423.857,199.171,511.388,150.855,45.562,150.855,338.681,318.321,350.744,19.974,25.059,19.974 +5107,148.235,189.232,503.324,357.271,435.201,195.006,501.035,158.373,42.274,158.373,337.790,319.654,350.212,19.538,23.745,19.538 +5108,148.267,186.269,493.124,361.272,447.659,192.320,491.525,165.199,38.526,165.199,336.587,320.793,349.104,21.671,22.219,21.671 +5109,148.298,184.399,483.299,363.453,459.466,190.819,482.377,171.824,35.538,171.824,335.304,322.587,348.275,20.923,21.390,20.923 +5110,148.328,182.944,473.376,364.381,470.285,190.671,473.211,178.772,32.074,178.772,332.009,323.828,347.467,18.931,21.274,18.931 +5111,148.359,182.191,463.935,364.902,480.036,191.335,464.780,5.277,28.334,5.277,330.105,324.964,348.470,19.119,21.884,19.119 +5112,148.389,182.576,455.548,363.040,490.467,192.378,457.460,11.035,26.346,11.035,327.673,325.124,347.648,18.791,22.497,18.791 +5113,148.420,180.660,446.578,361.968,497.461,194.366,450.630,16.470,24.228,16.470,319.419,325.602,348.004,17.928,21.020,17.928 +5114,148.452,155.882,428.954,359.470,505.239,196.312,444.706,21.286,23.139,21.286,261.224,325.380,348.006,17.619,19.326,17.619 +5115,148.482,141.970,412.146,356.833,512.423,198.812,439.430,25.641,21.547,25.641,221.991,324.967,348.093,17.526,20.159,17.526 +5116,148.513,141.970,412.146,356.833,512.423,198.812,439.430,25.641,21.547,25.641,221.991,324.967,348.093,17.526,20.159,17.526 +5117,148.542,179.035,420.334,353.558,518.339,202.342,432.601,27.759,19.983,27.759,294.817,325.083,347.494,23.567,20.419,23.567 +5118,148.572,192.409,417.894,350.171,523.974,205.805,426.941,34.035,17.969,34.035,315.560,324.804,347.889,25.980,19.641,25.980 +5119,148.604,198.320,415.740,346.514,529.262,208.547,423.411,36.870,15.422,36.870,322.200,324.766,347.769,25.600,20.443,25.600 +5120,148.636,203.576,412.994,342.571,534.091,211.670,419.931,40.601,11.592,40.601,326.046,324.374,347.365,24.622,21.200,24.622 +5121,148.667,208.402,409.100,338.296,538.625,215.432,415.992,44.433,7.169,44.433,327.479,323.482,347.170,24.839,22.396,24.839 +5122,148.698,210.939,406.998,334.401,542.624,217.311,413.767,46.736,2.153,46.736,329.575,323.298,348.167,24.844,22.766,24.844 +5123,148.729,215.556,403.365,330.508,546.163,221.274,410.334,50.631,177.079,50.631,330.558,321.908,348.589,24.144,23.897,24.144 +5124,148.759,218.908,401.068,326.273,548.928,224.043,408.065,53.723,171.937,53.723,330.737,321.870,348.095,23.068,24.390,23.068 +5125,148.790,221.962,398.692,322.263,551.597,226.832,405.998,56.310,166.504,56.310,330.601,321.355,348.162,22.465,24.932,22.465 +5126,148.821,225.147,396.213,318.493,553.425,229.736,403.813,58.878,160.907,58.878,330.150,320.714,347.907,23.195,24.751,23.195 +5127,148.854,228.314,394.007,314.500,555.000,232.473,401.604,61.302,155.556,61.302,330.561,320.201,347.884,23.158,24.911,23.158 +5128,148.886,231.000,392.500,310.812,556.540,234.889,400.278,63.435,149.954,63.435,330.044,320.160,347.437,22.808,25.035,22.808 +5129,148.917,233.545,391.390,307.361,558.310,237.124,399.273,65.581,143.820,65.581,330.382,319.760,347.695,22.240,24.348,22.240 +5130,148.947,233.545,391.390,307.361,558.310,237.124,399.273,65.581,143.820,65.581,330.382,319.760,347.695,22.240,24.348,22.240 +5131,148.975,236.027,390.136,303.928,559.420,239.285,398.049,67.620,138.111,67.620,330.545,319.548,347.659,22.247,24.167,22.247 +5132,149.005,238.218,388.596,300.302,560.645,241.384,396.980,69.312,132.397,69.312,329.931,319.507,347.854,21.654,23.728,21.654 +5133,149.038,240.597,387.919,297.379,561.677,243.503,396.371,71.021,126.277,71.021,329.808,319.872,347.683,21.374,22.462,21.374 +5134,149.072,242.448,386.253,294.325,562.398,245.324,395.359,72.474,120.288,72.474,328.986,320.099,348.083,20.778,21.503,20.778 +5135,149.105,244.632,384.681,291.259,563.237,247.474,394.666,74.107,113.671,74.107,327.471,320.655,348.234,20.732,20.990,20.732 +5136,149.138,246.075,383.073,288.634,564.387,249.034,394.489,75.466,107.120,75.466,325.211,320.479,348.798,20.328,20.384,20.328 +5137,149.172,247.315,379.838,286.511,566.211,250.821,394.737,76.759,100.966,76.759,319.567,323.006,350.180,20.041,20.766,20.041 +5138,149.204,248.366,375.182,285.197,567.019,252.454,394.511,78.056,95.505,78.056,311.586,322.553,351.099,19.793,20.615,19.793 +5139,149.236,247.195,363.404,284.000,568.000,253.057,394.803,79.426,90.000,79.426,287.986,322.000,351.869,17.983,20.000,17.983 +5140,149.268,241.000,312.000,281.994,567.944,254.698,394.188,80.538,83.517,80.538,185.113,322.583,351.757,17.755,19.556,17.755 +5141,149.299,254.470,378.970,280.118,568.519,256.788,393.913,81.180,77.196,81.180,321.991,323.656,352.235,18.622,19.946,18.622 +5142,149.329,257.403,386.966,278.693,569.101,258.297,393.863,82.614,71.742,82.614,338.905,323.824,352.813,18.879,20.795,18.879 +5143,149.360,258.823,386.909,277.827,568.406,259.570,393.630,83.660,65.898,83.660,337.920,322.057,351.447,18.663,20.154,18.663 +5144,149.391,260.239,387.351,276.488,568.218,260.772,393.060,84.668,59.959,84.668,340.255,321.620,351.722,18.440,20.359,18.440 +5145,149.421,261.552,387.260,274.870,568.660,262.005,393.287,85.696,54.377,85.696,339.599,321.550,351.687,18.432,21.589,18.432 +5146,149.452,262.996,387.678,273.332,568.590,263.295,392.728,86.609,48.540,86.609,342.177,321.025,352.295,18.087,21.777,18.087 +5147,149.483,264.295,387.686,271.498,568.881,264.526,392.928,87.474,42.785,87.474,341.682,320.818,352.178,18.188,23.680,18.188 +5148,149.513,264.295,387.686,271.498,568.881,264.526,392.928,87.474,42.785,87.474,341.682,320.818,352.178,18.188,23.680,18.188 +5149,149.542,266.027,387.038,269.977,568.544,266.172,392.703,88.531,37.057,88.531,340.427,320.585,351.761,18.302,24.283,18.302 +5150,149.573,267.243,386.533,268.205,568.347,267.300,392.161,89.421,31.430,89.421,341.114,320.692,352.372,18.070,25.314,18.070 +5151,149.605,268.666,386.462,266.600,567.881,268.623,391.927,90.451,25.577,90.451,340.997,320.335,351.928,17.984,25.834,17.984 +5152,149.639,270.216,385.408,264.994,567.903,270.059,391.905,91.386,19.817,91.386,339.143,319.602,352.139,18.285,26.147,18.285 +5153,149.671,271.620,384.922,263.773,567.892,271.330,391.943,92.370,14.265,92.370,338.166,317.723,352.220,18.102,25.823,18.102 +5154,149.703,273.138,384.745,262.067,567.547,272.707,392.108,93.352,8.427,93.352,336.770,317.058,351.522,18.374,25.536,18.374 +5155,149.735,275.079,383.741,260.073,567.159,274.462,391.613,94.485,3.122,94.485,336.476,316.675,352.267,18.297,24.309,18.297 +5156,149.767,276.633,383.609,258.105,566.770,275.861,391.675,95.469,177.839,95.469,335.773,316.454,351.980,18.448,24.360,18.448 +5157,149.797,278.356,383.384,256.232,566.448,277.406,391.700,96.520,172.569,96.520,335.303,315.932,352.044,18.962,24.574,18.962 +5158,149.828,280.336,383.520,253.905,565.791,279.254,391.504,97.722,167.260,97.722,336.111,315.761,352.225,18.878,23.418,18.878 +5159,149.860,282.023,383.660,251.600,565.300,280.748,391.830,98.875,161.565,98.875,335.243,315.912,351.781,19.419,23.085,19.419 +5160,149.891,284.203,383.488,249.021,564.675,282.689,391.870,100.237,157.166,100.237,335.041,315.684,352.076,19.122,21.925,19.122 +5161,149.920,286.750,383.171,246.624,564.087,284.895,392.164,101.659,151.699,101.659,333.855,315.954,352.220,18.981,22.147,18.981 +5162,149.951,289.635,381.848,244.154,563.273,287.175,392.393,103.134,146.944,103.134,330.717,316.218,352.372,19.282,21.166,19.282 +5163,149.982,292.361,381.116,241.359,562.660,289.297,392.861,104.621,142.651,104.621,328.527,316.202,352.803,19.436,20.773,19.436 +5164,150.012,292.361,381.116,241.359,562.660,289.297,392.861,104.621,142.651,104.621,328.527,316.202,352.803,19.436,20.773,19.436 +5165,150.040,294.580,380.375,238.805,561.920,290.922,393.250,105.862,138.814,105.862,326.217,316.270,352.985,19.459,19.943,19.459 +5166,150.072,297.887,378.409,235.805,561.251,292.987,393.967,107.482,135.696,107.482,320.848,316.199,353.470,19.151,19.196,19.151 +5167,150.105,301.501,376.885,233.323,560.766,295.355,394.642,109.093,132.930,109.093,316.970,316.509,354.551,19.118,19.054,19.118 +5168,150.138,304.907,374.993,231.087,559.771,297.186,395.204,110.908,131.019,110.908,311.367,316.934,354.639,18.001,19.054,18.001 +5169,150.172,308.674,372.816,228.981,558.985,299.084,395.945,112.521,129.529,112.521,304.835,316.764,354.913,18.002,19.941,18.002 +5170,150.204,312.284,371.737,226.586,557.940,301.126,396.841,113.962,129.174,113.962,300.035,316.612,354.977,17.972,19.725,17.972 +5171,150.235,316.129,370.228,224.315,556.762,303.210,397.358,115.463,129.732,115.463,295.579,316.255,355.678,18.143,19.516,18.143 +5172,150.267,319.366,370.466,221.985,555.685,305.076,398.397,117.096,130.960,117.096,292.995,316.537,355.743,17.929,19.807,17.929 +5173,150.298,321.267,373.510,219.706,554.598,307.102,399.480,118.610,133.112,118.610,296.888,315.711,356.053,17.718,19.648,17.718 +5174,150.328,322.234,377.896,217.647,553.134,309.093,400.311,120.379,136.019,120.379,304.205,314.902,356.172,18.027,19.871,18.027 +5175,150.358,323.650,381.450,215.360,551.426,311.383,401.267,121.759,139.764,121.759,309.820,315.220,356.433,17.856,19.554,17.856 +5176,150.389,325.647,385.690,213.141,549.700,314.329,403.139,122.969,144.713,122.969,314.452,314.679,356.048,20.657,18.988,20.657 +5177,150.420,326.228,390.460,210.954,547.669,316.620,404.185,124.992,150.255,124.992,322.777,314.552,356.285,19.907,19.225,19.907 +5178,150.452,327.615,393.578,208.939,545.732,318.742,405.440,126.798,156.125,126.798,326.595,313.649,356.222,19.634,19.248,19.634 +5179,150.482,328.062,396.829,206.638,543.798,320.364,406.523,128.454,163.250,128.454,331.694,313.209,356.451,19.002,19.672,19.002 +5180,150.512,328.062,396.829,206.638,543.798,320.364,406.523,128.454,163.250,128.454,331.694,313.209,356.451,19.002,19.672,19.002 +5181,150.541,329.794,400.824,204.309,541.903,323.107,408.625,130.601,170.134,130.601,336.459,312.655,357.009,19.415,20.047,19.415 +5182,150.573,332.352,404.111,201.926,539.580,325.905,411.056,132.865,177.797,132.865,338.131,312.192,357.084,19.694,20.370,19.694 +5183,150.605,334.594,407.125,199.115,536.799,328.384,413.245,135.418,5.477,135.418,340.156,312.021,357.594,18.890,21.859,18.890 +5184,150.638,336.019,411.280,196.532,533.373,331.139,415.702,137.816,14.250,137.816,344.351,311.677,357.521,19.520,23.354,19.520 +5185,150.670,338.338,414.847,193.642,529.441,333.880,418.509,140.599,22.380,140.599,346.016,311.997,357.556,19.401,25.021,19.401 +5186,150.702,341.365,419.189,190.090,526.005,336.726,422.563,143.973,30.665,143.973,347.389,311.967,358.862,18.969,24.047,18.969 +5187,150.733,344.372,423.690,186.484,522.142,339.406,426.882,147.265,38.820,147.265,348.488,312.041,360.295,19.467,24.135,19.467 +5188,150.765,347.316,428.687,184.484,515.620,342.825,431.171,151.049,47.070,151.049,348.599,311.639,358.864,19.046,20.706,19.046 +5189,150.797,350.325,433.304,182.222,510.219,345.558,435.557,154.706,55.561,154.706,348.611,312.926,359.155,20.467,19.911,20.467 +5190,150.828,353.097,439.755,179.493,503.297,348.297,441.589,159.092,64.799,159.092,349.143,312.216,359.421,20.058,18.842,20.058 +5191,150.859,355.493,446.478,177.396,495.648,350.792,447.853,163.686,73.610,163.686,349.883,312.527,359.680,20.389,18.905,20.389 +5192,150.890,357.550,454.255,175.796,487.621,352.864,455.178,168.857,82.278,168.857,350.448,311.925,360.000,19.445,19.180,19.445 +5193,150.919,358.835,462.810,174.541,479.024,354.041,463.279,174.413,90.531,174.413,350.728,312.061,360.360,18.715,18.601,18.715 +5194,150.951,359.000,472.000,174.484,469.905,354.242,472.000,0.000,99.267,0.000,350.000,312.697,359.516,18.000,19.625,18.000 +5195,150.980,358.280,481.363,175.101,460.301,353.970,480.906,6.054,107.599,6.054,351.423,312.566,360.090,19.165,19.940,19.165 +5196,151.010,358.280,481.363,175.101,460.301,353.970,480.906,6.054,107.599,6.054,351.423,312.566,360.090,19.165,19.940,19.165 +5197,151.040,356.753,491.352,177.303,450.115,352.731,490.465,12.445,115.840,12.445,351.763,312.266,360.002,19.301,20.480,19.301 +5198,151.071,354.937,498.360,180.556,439.736,351.228,497.072,19.148,124.177,19.148,352.219,311.721,360.072,25.703,20.111,25.703 +5199,151.104,351.146,508.672,184.903,429.209,347.353,506.805,26.211,132.587,26.211,351.581,311.127,360.036,25.452,19.716,25.452 +5200,151.136,345.795,518.786,190.237,417.953,341.827,516.161,33.481,139.591,33.481,351.713,311.518,361.228,26.060,19.211,26.060 +5201,151.169,338.175,529.240,197.855,408.354,334.683,526.176,41.252,147.724,41.252,351.824,311.229,361.115,25.309,19.046,25.309 +5202,151.200,328.284,539.311,207.347,400.440,325.585,536.109,49.874,155.386,49.874,351.499,311.090,359.875,23.321,18.384,23.321 +5203,151.231,318.304,547.172,218.133,393.101,316.011,543.517,57.894,162.532,57.894,350.236,310.973,358.865,23.120,17.830,23.120 +5204,151.261,306.392,553.381,229.357,385.786,304.505,549.137,66.038,171.133,66.038,350.294,310.512,359.584,21.931,19.583,21.931 +5205,151.292,293.336,558.110,242.069,380.853,292.012,553.502,73.968,178.981,73.968,349.865,310.164,359.454,21.973,19.150,21.973 +5206,151.322,278.932,560.949,255.549,378.755,278.272,556.238,82.022,6.047,82.022,348.323,310.605,357.837,23.047,18.148,23.047 +5207,151.354,265.126,561.508,268.877,378.077,265.145,556.545,90.216,13.593,90.216,347.035,311.670,356.962,23.034,18.053,23.034 +5208,151.386,254.914,560.257,282.240,379.477,255.713,555.597,99.733,21.038,99.733,346.685,311.953,356.140,22.021,18.236,22.021 +5209,151.416,241.607,556.018,296.175,380.989,243.261,550.889,107.879,28.980,107.879,345.102,312.852,355.880,19.525,20.753,19.525 +5210,151.447,241.607,556.018,296.175,380.989,243.261,550.889,107.879,28.980,107.879,345.102,312.852,355.880,19.525,20.753,19.525 +5211,151.475,230.049,551.242,309.425,383.926,233.032,545.119,115.974,36.529,115.974,343.114,314.221,356.737,18.971,24.970,18.971 +5212,151.507,219.699,544.487,320.750,391.265,223.098,539.459,124.061,43.264,124.061,342.789,314.154,354.926,18.996,24.802,18.996 +5213,151.539,210.923,536.716,330.822,398.827,214.882,532.280,131.751,50.673,131.751,341.640,315.708,353.532,18.953,24.679,18.953 +5214,151.570,203.173,528.942,339.880,407.386,208.098,524.699,139.260,58.079,139.260,339.817,316.831,352.819,19.754,25.213,19.754 +5215,151.602,196.789,519.961,347.088,417.190,202.100,516.448,146.521,65.225,146.521,338.637,317.227,351.373,19.141,25.004,19.141 +5216,151.633,191.274,511.033,352.890,427.347,197.353,507.981,153.336,72.646,153.336,336.760,317.603,350.363,19.649,24.399,19.649 +5217,151.663,187.207,501.799,357.487,437.502,194.116,499.270,159.900,80.036,159.900,334.580,318.488,349.295,19.537,24.237,19.537 +5218,151.694,184.588,493.353,360.621,447.445,191.887,491.528,165.964,87.173,165.964,333.729,317.847,348.775,19.888,24.575,19.888 +5219,151.724,182.588,484.212,362.844,456.870,190.652,483.085,172.047,94.485,172.047,332.040,318.981,348.324,18.977,25.041,18.977 +5220,151.755,181.587,475.281,363.732,466.252,190.359,474.948,177.829,101.575,177.829,329.597,320.656,347.155,18.053,24.787,18.053 +5221,151.787,181.369,467.437,364.208,475.253,190.480,467.928,3.086,108.838,3.086,329.492,320.997,347.741,19.051,25.431,19.051 +5222,151.818,182.094,459.850,363.509,483.504,191.410,461.175,8.097,116.053,8.097,328.239,321.562,347.057,18.806,25.434,18.806 +5223,151.849,183.766,452.142,362.161,491.768,192.874,454.270,13.147,123.486,13.147,328.053,322.855,346.759,19.703,25.495,19.703 +5224,151.880,183.766,452.142,362.161,491.768,192.874,454.270,13.147,123.486,13.147,328.053,322.855,346.759,19.703,25.495,19.703 +5225,151.908,185.039,445.964,360.661,498.506,194.291,448.879,17.488,130.914,17.488,327.787,322.226,347.188,19.376,25.240,19.376 +5226,151.940,187.708,438.803,358.910,504.580,196.875,442.136,19.983,138.252,19.983,327.732,322.459,347.239,26.143,24.990,26.143 +5227,151.972,189.624,434.372,356.557,510.318,198.661,438.274,23.356,145.747,23.356,327.352,322.866,347.039,26.144,24.911,26.144 +5228,152.005,192.553,428.441,354.323,515.630,201.558,433.139,27.553,153.204,27.553,326.880,322.920,347.194,25.711,24.533,25.711 +5229,152.037,194.205,425.145,351.967,520.258,203.276,430.397,30.069,160.677,30.069,326.448,323.506,347.410,25.826,24.266,25.826 +5230,152.074,196.224,422.435,349.549,524.136,204.835,427.895,32.381,168.232,32.381,327.113,323.431,347.506,25.994,23.496,25.994 +5231,152.106,199.762,417.825,347.205,527.815,208.151,423.978,36.254,175.832,36.254,326.271,323.474,347.079,25.805,23.008,25.805 +5232,152.138,201.888,415.380,345.301,530.750,210.049,421.850,38.407,3.498,38.407,326.450,323.924,347.279,25.612,22.251,25.612 +5233,152.171,202.481,413.627,343.115,533.423,210.894,420.598,39.644,11.310,39.644,325.741,323.984,347.595,25.477,21.965,25.477 +5234,152.202,203.217,412.593,341.449,535.108,211.541,419.683,40.426,18.911,40.426,325.615,324.214,347.482,25.262,21.496,25.262 +5235,152.234,206.122,409.872,339.509,536.481,213.755,417.139,43.595,26.781,43.595,325.657,325.154,346.736,26.727,19.847,26.727 +5236,152.264,204.325,408.791,337.595,539.025,213.774,417.390,42.306,34.756,42.306,321.336,325.584,346.889,23.832,19.550,23.832 +5237,152.295,181.051,384.079,336.041,541.046,215.003,415.909,43.152,42.489,43.152,254.700,324.597,347.778,22.114,18.937,22.114 +5238,152.326,189.746,392.282,334.751,541.936,213.959,416.886,45.458,50.599,45.458,278.670,323.800,347.711,17.886,19.125,17.886 +5239,152.355,203.748,404.335,333.885,542.477,215.091,416.114,46.081,58.824,46.081,314.140,323.806,346.845,19.769,19.154,19.769 +5240,152.388,206.750,406.250,333.090,542.608,215.425,414.925,45.000,66.903,45.000,322.441,323.406,346.976,24.749,18.979,24.749 +5241,152.420,208.000,407.500,332.956,542.246,215.301,414.801,45.000,75.124,45.000,325.976,323.168,346.625,24.749,19.420,24.749 +5242,152.452,209.000,408.000,333.192,541.478,215.417,414.417,45.000,83.355,45.000,328.098,322.180,346.248,25.456,20.425,25.456 +5243,152.481,209.250,408.750,333.647,540.532,215.045,414.545,45.000,91.580,45.000,329.512,321.347,345.902,24.749,21.109,24.749 +5244,152.512,209.250,408.750,333.647,540.532,215.045,414.545,45.000,91.580,45.000,329.512,321.347,345.902,24.749,21.109,24.749 +5245,152.541,208.592,409.357,334.833,539.471,214.464,415.156,44.644,99.728,44.644,329.488,321.566,345.995,24.111,22.585,24.111 +5246,152.572,207.793,410.509,336.065,538.326,213.808,416.260,43.711,107.850,43.711,328.801,321.955,345.444,24.226,23.619,24.226 +5247,152.604,206.394,411.733,337.738,536.852,212.642,417.435,42.384,116.274,42.384,328.882,322.024,345.799,24.146,24.733,24.146 +5248,152.636,204.343,413.825,339.979,533.828,210.835,419.326,40.280,124.418,40.280,328.084,320.914,345.102,25.253,24.733,25.253 +5249,152.667,202.595,415.021,342.361,531.617,209.543,420.618,38.853,132.455,38.853,328.288,320.851,346.132,25.461,25.289,25.461 +5250,152.698,200.197,417.733,344.769,528.932,207.572,423.183,36.469,140.505,36.469,328.034,321.123,346.374,25.769,25.279,25.769 +5251,152.729,198.240,420.611,347.640,526.228,206.200,426.058,34.380,148.438,34.380,327.299,321.598,346.591,24.976,25.672,24.976 +5252,152.760,195.926,423.311,350.256,522.846,204.402,428.558,31.759,156.181,31.759,327.352,322.267,347.288,25.953,25.047,25.953 +5253,152.791,193.146,426.131,352.772,518.933,202.711,431.496,29.291,163.730,29.291,325.373,322.961,347.307,25.484,24.176,25.484 +5254,152.822,189.605,429.759,355.390,514.448,200.687,435.165,26.003,170.945,26.003,322.943,323.252,347.603,25.911,22.607,25.911 +5255,152.854,185.932,432.507,357.595,508.929,199.002,438.197,23.526,177.761,23.526,318.778,323.574,347.288,25.953,20.705,25.953 +5256,152.885,177.414,435.382,360.326,503.252,197.237,442.730,20.339,3.614,20.339,305.634,324.060,347.915,27.297,19.498,27.297 +5257,152.915,155.821,439.377,361.970,497.694,194.465,450.418,15.945,8.702,15.945,267.716,324.335,348.097,17.857,20.062,17.857 +5258,152.946,155.821,439.377,361.970,497.694,194.465,450.418,15.945,8.702,15.945,267.716,324.335,348.097,17.857,20.062,17.857 +5259,152.975,133.911,442.815,363.765,491.941,193.323,455.744,12.277,14.036,12.277,226.877,324.998,348.482,17.619,19.403,17.619 +5260,153.005,180.110,459.730,364.865,484.910,191.937,461.420,8.130,18.263,8.130,325.128,325.409,349.023,18.385,20.825,18.385 +5261,153.040,181.177,467.594,365.397,478.234,191.173,468.113,2.974,23.806,2.974,329.011,324.419,349.029,19.013,22.335,19.013 +5262,153.072,182.861,474.594,365.440,469.286,191.131,474.333,178.191,29.249,178.191,332.213,324.712,348.762,18.244,21.568,18.244 +5263,153.105,184.255,483.713,363.630,460.549,190.752,482.820,172.176,36.265,172.176,335.481,323.690,348.599,19.133,21.597,19.133 +5264,153.138,186.428,492.708,361.725,450.043,192.175,491.284,166.083,41.820,166.083,337.140,323.552,348.983,19.911,22.553,19.911 +5265,153.170,188.886,501.329,358.651,439.471,194.356,499.318,159.809,48.200,159.809,338.053,321.473,349.710,19.516,24.057,19.516 +5266,153.202,192.333,510.703,354.317,429.277,197.797,507.927,153.068,54.941,153.068,338.078,319.338,350.336,20.024,24.212,20.024 +5267,153.233,196.907,519.870,348.006,418.774,202.049,516.468,146.505,61.020,146.505,338.932,318.384,351.264,19.205,24.831,19.205 +5268,153.263,202.515,529.357,341.036,409.155,207.929,524.728,139.467,67.457,139.467,338.303,316.461,352.549,19.430,25.286,19.430 +5269,153.295,209.096,538.088,334.505,406.653,213.471,533.290,132.357,74.249,132.357,337.268,301.518,350.253,19.430,24.604,19.430 +5270,153.330,217.114,548.099,323.939,399.845,221.609,541.496,124.249,80.647,124.249,333.383,298.566,349.358,19.328,24.354,19.328 +5271,153.373,226.063,558.023,309.784,384.989,232.399,545.246,116.375,87.754,116.375,327.382,314.660,355.906,19.147,21.043,19.147 +5272,153.406,234.714,575.233,296.960,379.364,243.125,549.894,108.362,94.667,108.362,304.217,315.156,357.613,19.563,19.303,19.563 +5273,153.438,239.307,630.215,284.058,376.212,252.335,552.910,99.567,101.310,99.567,202.238,315.355,359.027,21.373,18.239,21.373 +5274,153.477,263.885,564.937,270.635,374.893,264.124,554.978,91.373,106.365,91.373,340.454,315.458,360.379,22.233,20.865,22.233 +5275,153.509,277.037,563.786,257.888,375.595,276.077,555.514,83.377,113.199,83.377,344.978,315.529,361.633,22.571,19.171,22.571 +5276,153.541,291.886,560.030,245.305,378.858,290.236,553.410,76.006,120.518,76.006,346.828,315.415,360.473,21.828,18.644,21.828 +5277,153.573,304.635,555.408,232.334,383.620,302.206,549.550,67.484,126.634,67.484,347.395,314.997,360.077,21.700,18.477,21.700 +5278,153.605,316.411,549.314,219.859,389.695,313.318,544.059,59.516,132.366,59.516,348.677,314.404,360.875,22.998,19.378,22.998 +5279,153.639,326.337,541.571,209.069,397.507,322.927,537.257,51.674,138.851,51.674,349.484,314.203,360.482,23.430,19.673,23.430 +5280,153.671,335.412,532.478,199.659,406.187,331.854,529.050,43.939,145.511,43.939,351.005,313.187,360.888,24.810,19.597,24.810 +5281,153.703,342.974,523.109,191.603,416.030,339.168,520.304,36.396,152.123,36.396,351.851,312.237,361.306,25.763,18.816,25.763 +5282,153.734,348.734,513.144,185.362,426.926,345.033,511.061,29.381,158.641,29.381,352.330,311.279,360.824,25.497,20.271,25.497 +5283,153.766,353.390,503.442,180.024,436.595,348.927,501.592,22.521,165.693,22.521,352.171,310.673,361.834,25.752,20.583,25.752 +5284,153.798,355.279,496.814,176.379,445.574,350.503,495.428,16.176,172.550,16.176,352.294,309.725,362.240,19.487,20.884,19.487 +5285,153.828,358.528,488.016,174.405,454.153,352.547,486.958,10.033,178.091,10.033,350.116,309.228,362.265,19.118,20.189,19.118 +5286,153.860,404.683,482.789,173.518,463.088,353.675,478.558,4.742,2.490,4.742,259.271,307.275,361.638,18.058,18.461,18.058 +5287,153.890,387.500,470.500,172.923,471.216,353.462,470.500,0.000,8.645,0.000,293.000,308.750,361.077,17.000,19.646,17.000 +5288,153.921,367.922,462.297,173.511,479.519,353.497,463.713,174.393,14.470,174.393,332.347,307.787,361.337,19.336,19.241,19.336 +5289,153.952,362.327,454.810,175.540,485.280,353.102,456.478,169.753,21.346,169.753,340.959,307.715,359.708,19.598,22.311,19.598 +5290,153.983,357.251,448.330,176.354,493.571,351.121,449.958,165.128,29.129,165.128,347.527,308.869,360.213,20.690,23.259,20.690 +5291,154.013,357.251,448.330,176.354,493.571,351.121,449.958,165.128,29.129,165.128,347.527,308.869,360.213,20.690,23.259,20.690 +5292,154.041,353.928,442.186,178.181,501.136,348.887,443.926,160.946,35.770,160.946,349.394,309.227,360.059,21.053,20.965,21.053 +5293,154.074,351.674,436.786,180.529,506.566,346.903,438.797,157.145,43.647,157.145,348.910,309.894,359.267,20.174,19.994,20.174 +5294,154.106,349.429,431.874,183.876,512.326,345.112,434.014,153.630,51.623,153.630,348.847,311.755,358.484,20.178,20.488,20.178 +5295,154.139,346.916,427.854,186.067,517.960,342.536,430.359,150.228,59.436,150.228,348.538,313.847,358.630,19.843,19.642,19.843 +5296,154.172,344.112,424.176,187.881,521.842,340.002,426.800,147.446,67.416,147.446,348.970,313.463,358.723,19.548,19.594,19.548 +5297,154.203,341.188,421.132,190.008,525.970,337.515,423.712,144.914,75.211,144.914,349.986,314.404,358.963,19.240,19.585,19.240 +5298,154.235,338.567,418.633,191.771,529.342,335.194,421.223,142.484,82.930,142.484,350.700,315.666,359.206,19.702,19.802,19.702 +5299,154.267,336.268,416.397,193.426,532.008,333.116,418.993,140.528,90.498,140.528,351.183,316.031,359.350,19.389,18.869,19.389 +5300,154.298,334.633,414.446,194.975,534.355,331.437,417.257,138.672,98.073,138.672,351.092,316.639,359.605,19.641,19.008,19.641 +5301,154.328,332.720,413.564,195.723,535.702,329.988,416.076,137.395,105.593,137.395,352.186,316.892,359.608,19.126,19.958,19.126 +5302,154.358,331.981,411.384,198.069,537.172,328.843,414.407,136.075,113.199,136.075,349.996,316.711,358.709,18.768,20.484,18.768 +5303,154.391,330.906,410.395,198.593,538.055,327.774,413.511,135.154,120.510,135.154,350.003,316.385,358.839,18.491,19.877,18.491 +5304,154.423,332.467,407.494,198.731,538.178,327.183,412.874,134.481,127.666,134.481,343.729,315.831,358.811,18.021,19.484,18.021 +5305,154.455,381.750,355.750,199.340,538.852,325.622,411.878,135.000,135.415,135.000,199.404,314.680,358.158,17.678,19.491,17.678 +5306,154.486,369.979,366.427,199.675,538.547,325.858,411.740,134.236,142.765,134.236,231.269,314.420,357.760,18.025,19.395,18.025 +5307,154.519,345.220,392.145,199.809,538.399,326.324,411.580,134.193,149.982,134.193,304.026,313.828,358.240,17.845,20.011,17.845 +5308,154.550,340.828,399.749,199.502,537.287,328.006,412.842,134.403,157.659,134.403,320.994,313.466,357.646,20.836,19.006,20.836 +5309,154.580,337.861,402.833,199.192,536.697,328.022,412.755,134.760,164.624,134.760,329.497,312.933,357.443,19.308,19.043,19.308 +5310,154.610,337.861,402.833,199.192,536.697,328.022,412.755,134.760,164.624,134.760,329.497,312.933,357.443,19.308,19.043,19.308 +5311,154.639,336.583,405.625,198.444,536.119,328.598,413.453,135.567,171.573,135.567,335.264,312.552,357.629,18.790,19.931,18.790 +5312,154.672,336.805,407.403,197.534,534.801,329.580,414.258,136.507,178.519,136.507,337.601,311.336,357.520,19.402,20.054,19.402 +5313,154.705,337.647,409.820,196.159,533.392,331.060,415.779,137.862,5.654,137.862,340.118,312.039,357.883,19.668,20.927,19.668 +5314,154.738,338.659,411.935,194.778,531.224,332.651,417.085,139.399,12.281,139.399,342.099,312.272,357.924,19.198,23.265,19.198 +5315,154.772,339.362,415.317,192.867,528.878,334.480,419.241,141.203,19.463,141.203,345.600,312.186,358.128,19.500,23.777,19.500 +5316,154.803,341.524,418.430,190.620,526.254,336.683,421.993,143.647,26.003,143.647,346.854,312.618,358.876,18.878,24.157,18.878 +5317,154.836,343.326,421.677,188.132,523.229,338.485,424.951,145.923,32.586,145.923,347.514,312.921,359.201,19.367,24.009,19.367 +5318,154.869,345.332,424.974,185.339,519.945,340.335,428.053,148.364,38.470,148.364,348.586,312.507,360.325,20.038,23.911,20.038 +5319,154.900,348.135,429.466,183.959,514.547,343.443,431.992,151.699,44.838,151.699,348.463,311.855,359.121,19.099,20.071,19.099 +5320,154.930,349.962,433.584,181.889,510.078,345.496,435.702,154.631,51.189,154.631,349.506,312.651,359.392,20.018,20.090,20.018 +5321,154.961,352.711,438.532,180.213,504.684,348.024,440.394,158.330,57.319,158.330,349.296,313.221,359.383,20.088,19.756,20.088 +5322,154.991,354.818,443.930,177.822,498.097,349.877,445.507,162.300,63.886,162.300,349.423,312.212,359.797,21.040,18.856,21.040 +5323,155.022,356.767,451.029,176.284,491.167,352.023,452.169,166.487,69.963,166.487,350.216,312.523,359.973,20.223,19.099,20.223 +5324,155.055,358.464,458.262,174.797,483.679,353.312,459.048,171.317,76.119,171.317,349.953,312.155,360.375,19.318,19.500,19.318 +5325,155.086,359.511,466.176,174.175,475.337,354.288,466.490,176.558,82.108,176.558,350.172,312.115,360.637,18.726,19.046,18.726 +5326,155.117,359.550,474.865,174.716,466.900,354.395,474.709,1.736,88.210,1.736,349.355,312.254,359.668,18.658,20.053,18.658 +5327,155.148,359.550,474.865,174.716,466.900,354.395,474.709,1.736,88.210,1.736,349.355,312.254,359.668,18.658,20.053,18.658 +5328,155.176,358.867,483.531,175.233,457.656,353.851,482.884,7.352,93.991,7.352,350.642,312.055,360.756,19.260,19.859,19.260 +5329,155.208,357.259,493.020,177.796,448.081,352.711,491.943,13.316,99.997,13.316,351.283,312.234,360.630,19.359,21.232,19.359 +5330,155.239,355.279,499.831,180.368,437.962,350.620,498.159,19.747,105.945,19.747,351.259,312.083,361.158,25.171,20.467,25.171 +5331,155.271,351.800,509.400,185.485,428.118,347.418,507.209,26.565,112.595,26.565,350.615,312.155,360.415,25.938,19.944,25.938 +5332,155.303,346.598,519.073,190.306,417.728,341.904,515.983,33.358,118.043,33.358,350.060,312.293,361.299,26.053,19.018,26.053 +5333,155.334,338.396,530.190,197.729,408.497,334.349,526.583,41.711,124.287,41.711,350.277,312.314,361.119,24.911,18.665,24.911 +5334,155.365,330.247,538.672,206.600,400.300,326.680,534.577,48.945,130.601,48.945,349.383,312.488,360.244,24.155,19.090,24.155 +5335,155.396,319.796,546.665,216.209,392.218,316.752,542.028,56.725,136.231,56.725,349.729,312.682,360.823,22.390,19.919,22.390 +5336,155.427,309.128,553.007,227.511,385.664,306.601,547.712,64.486,142.419,64.486,348.891,312.781,360.625,22.049,19.902,22.049 +5337,155.457,297.052,558.027,240.228,381.479,295.349,552.686,72.316,148.173,72.316,348.511,313.254,359.722,20.657,18.751,20.657 +5338,155.488,282.953,561.152,253.597,378.770,282.024,555.934,79.905,154.204,79.905,348.207,313.607,358.808,22.819,18.472,22.819 +5339,155.520,271.768,561.995,266.503,376.911,271.652,556.006,88.891,160.983,88.891,346.342,314.027,358.321,21.996,18.592,21.996 +5340,155.551,258.758,561.359,280.564,377.137,259.548,555.298,97.424,167.934,97.424,346.543,314.783,358.767,22.936,19.367,22.936 +5341,155.581,244.610,558.112,294.548,380.472,246.157,552.564,105.583,174.213,105.583,346.011,314.833,357.532,19.211,18.580,19.211 +5342,155.611,244.610,558.112,294.548,380.472,246.157,552.564,105.583,174.213,105.583,346.011,314.833,357.532,19.211,18.580,19.211 +5343,155.640,232.780,552.231,307.451,385.323,234.972,547.325,114.075,0.843,114.075,344.204,315.172,354.953,19.251,18.248,19.251 +5344,155.671,222.134,545.952,319.115,391.876,224.865,541.632,122.300,7.633,122.300,343.670,316.337,353.892,19.256,18.300,19.256 +5345,155.702,212.940,537.874,329.991,399.324,216.128,534.125,130.373,14.783,130.373,343.064,317.049,352.906,19.054,18.761,19.054 +5346,155.734,204.901,529.063,339.281,408.281,208.561,525.783,138.131,21.873,138.131,341.707,317.542,351.537,18.910,18.899,18.910 +5347,155.766,197.365,521.036,347.336,417.514,202.743,517.367,145.697,28.909,145.697,338.416,318.288,351.436,18.953,20.722,18.953 +5348,155.798,192.504,511.507,353.487,426.702,198.147,508.612,152.845,36.158,152.845,338.518,319.665,351.203,19.050,23.663,19.050 +5349,155.829,188.698,501.688,357.784,437.385,194.240,499.630,159.630,43.264,159.630,338.143,319.766,349.966,19.473,23.302,19.473 +5350,155.860,186.185,492.745,361.047,448.139,192.074,491.279,166.018,50.572,166.018,336.645,320.574,348.781,20.140,23.447,20.140 +5351,155.891,184.425,483.443,363.096,458.753,190.646,482.606,172.340,57.995,172.340,335.627,320.437,348.181,19.155,24.168,19.155 +5352,155.921,183.951,474.263,363.754,468.649,190.356,474.084,178.396,65.026,178.396,334.149,320.429,346.964,18.229,24.438,18.229 +5353,155.952,184.025,466.140,363.205,478.067,190.461,466.584,3.945,72.474,3.945,333.346,320.354,346.250,18.783,23.739,18.783 +5354,155.982,184.579,458.520,362.531,486.583,191.383,459.633,9.289,79.939,9.289,332.720,320.638,346.508,18.732,24.759,18.732 +5355,156.012,184.579,458.520,362.531,486.583,191.383,459.633,9.289,79.939,9.289,332.720,320.638,346.508,18.732,24.759,18.732 +5356,156.040,185.540,451.366,360.745,494.895,192.688,453.176,14.210,87.316,14.210,331.565,320.632,346.312,18.935,24.473,18.935 +5357,156.073,187.189,444.457,358.213,501.640,194.262,446.841,18.628,94.667,18.628,330.802,320.790,345.732,18.995,24.205,18.995 +5358,156.106,189.896,436.366,356.029,508.447,197.443,439.454,22.249,102.426,22.249,329.495,321.277,345.803,25.158,24.911,25.158 +5359,156.140,192.250,430.944,353.401,514.146,199.875,434.672,26.053,109.983,26.053,328.689,321.409,345.664,25.873,25.118,25.873 +5360,156.173,194.885,426.077,350.364,519.675,202.329,430.331,29.745,117.096,29.745,328.568,322.021,345.716,25.799,24.782,25.799 +5361,156.204,197.031,422.341,347.764,524.181,204.468,427.123,32.735,124.472,32.735,328.360,321.738,346.044,26.016,25.212,26.016 +5362,156.235,200.483,417.987,344.919,528.212,207.517,423.171,36.384,131.730,36.384,328.378,321.290,345.853,25.592,25.092,25.592 +5363,156.267,203.004,414.608,342.578,531.870,210.121,420.415,39.207,138.759,39.207,327.809,321.634,346.180,25.326,25.391,25.326 +5364,156.298,205.034,412.530,340.028,535.041,211.877,418.538,41.285,145.784,41.285,328.123,321.774,346.334,25.311,25.370,25.311 +5365,156.328,208.420,409.072,337.571,538.083,214.878,415.409,44.454,152.793,44.454,328.891,322.049,346.986,24.835,25.247,24.835 +5366,156.358,210.302,407.664,335.367,540.829,216.539,414.084,45.830,159.574,45.830,329.518,322.209,347.419,25.494,25.348,25.494 +5367,156.393,212.828,405.707,333.078,542.942,218.801,412.398,48.240,166.357,48.240,329.038,321.831,346.977,24.589,24.814,24.589 +5368,156.424,214.650,404.373,331.260,545.072,220.380,411.127,49.686,172.842,49.686,330.028,321.992,347.743,24.169,24.353,24.169 +5369,156.456,216.697,403.648,329.532,546.433,221.997,410.225,51.137,179.236,51.137,330.171,321.185,347.065,24.146,23.225,24.146 +5370,156.488,217.772,402.176,328.117,547.952,223.013,408.968,52.341,5.536,52.341,331.328,322.590,348.486,23.982,24.006,23.982 +5371,156.520,219.241,401.563,326.675,549.089,224.159,408.193,53.427,11.555,53.427,331.964,322.616,348.474,23.912,23.609,23.912 +5372,156.551,220.421,401.057,325.561,549.923,225.204,407.723,54.345,17.126,54.345,331.675,323.052,348.084,23.935,23.414,23.935 +5373,156.581,221.687,401.068,324.232,549.872,225.709,406.823,55.049,22.297,55.049,333.340,324.283,347.382,23.805,22.618,23.805 +5374,156.611,221.687,401.068,324.232,549.872,225.709,406.823,55.049,22.297,55.049,333.340,324.283,347.382,23.805,22.618,23.805 +5375,156.641,222.257,401.011,323.092,550.801,226.048,406.524,55.491,26.996,55.491,334.355,324.725,347.737,23.485,21.822,23.485 +5376,156.671,223.170,400.891,322.601,551.514,226.773,406.271,56.189,31.357,56.189,335.056,324.671,348.007,23.120,21.282,23.120 +5377,156.702,223.692,400.031,321.686,551.953,227.378,405.640,56.689,34.663,56.689,334.712,325.022,348.135,23.758,20.598,23.758 +5378,156.734,223.920,399.377,321.031,552.646,227.796,405.340,56.976,37.275,56.976,334.413,324.386,348.638,23.435,20.380,23.435 +5379,156.766,224.087,398.585,320.683,553.049,228.352,405.235,57.328,39.202,57.328,332.738,324.363,348.538,23.249,20.269,23.249 +5380,156.797,224.573,397.768,320.182,553.285,228.920,404.677,57.821,40.222,57.821,332.442,324.322,348.766,23.965,19.852,23.965 +5381,156.828,224.923,398.047,319.650,553.657,229.011,404.671,58.319,40.574,58.319,333.209,324.421,348.775,23.959,20.181,23.959 +5382,156.859,225.597,398.550,319.140,554.238,229.358,404.726,58.661,40.030,58.661,334.328,324.444,348.790,24.259,20.337,24.259 +5383,156.889,225.767,398.142,318.591,554.387,229.626,404.467,58.620,38.859,58.620,333.815,324.373,348.633,23.432,20.918,23.432 +5384,156.921,226.405,398.557,318.180,554.260,229.942,404.405,58.829,36.870,58.829,334.116,324.600,347.783,23.334,21.000,23.334 +5385,156.952,226.819,398.710,318.298,554.057,229.963,403.938,58.985,33.990,58.985,336.145,324.514,348.346,23.198,20.716,23.198 +5386,156.982,227.191,398.485,318.052,554.069,230.302,403.669,59.036,30.685,59.036,336.137,324.649,348.229,23.495,21.594,23.495 +5387,157.012,227.191,398.485,318.052,554.069,230.302,403.669,59.036,30.685,59.036,336.137,324.649,348.229,23.495,21.594,23.495 +5388,157.040,226.950,398.328,317.769,553.992,230.129,403.657,59.184,26.369,59.184,335.603,324.236,348.013,23.113,22.200,23.113 +5389,157.073,226.666,397.999,318.163,554.388,230.207,403.923,59.133,21.532,59.133,334.751,323.644,348.556,23.126,23.192,23.126 +5390,157.107,226.176,398.195,318.536,554.379,229.911,404.400,58.955,16.739,58.955,333.919,322.692,348.404,22.658,23.141,22.658 +5391,157.140,225.726,397.666,318.866,554.145,229.693,404.200,58.736,11.733,58.736,333.611,322.209,348.899,23.323,23.566,23.323 +5392,157.173,225.093,397.751,319.622,553.902,229.370,404.680,58.314,6.340,58.314,332.485,321.687,348.770,23.343,24.405,23.343 +5393,157.205,224.151,398.036,320.491,553.135,228.519,404.947,57.709,0.455,57.709,332.457,321.069,348.807,22.971,23.753,22.971 +5394,157.237,223.271,398.298,321.514,552.144,227.856,405.358,57.002,174.472,57.002,331.392,321.177,348.229,23.418,24.081,23.418 +5395,157.269,222.043,398.807,322.423,551.115,226.694,405.725,56.083,168.690,56.083,331.465,320.846,348.136,23.493,24.318,23.493 +5396,157.300,220.325,399.973,323.791,549.941,225.262,407.012,54.955,162.790,54.955,329.992,320.475,347.187,22.884,24.937,22.884 +5397,157.330,218.509,400.525,325.298,548.682,223.814,407.752,53.723,156.371,53.723,329.391,320.655,347.320,23.068,24.736,23.068 +5398,157.361,216.925,401.393,327.195,546.839,222.438,408.490,52.158,150.154,52.158,329.071,320.513,347.044,23.848,24.883,23.848 +5399,157.392,215.290,403.287,329.170,545.233,220.957,410.161,50.492,143.791,50.492,328.297,320.411,346.113,24.067,25.128,24.067 +5400,157.422,213.003,404.804,331.043,543.002,218.814,411.428,48.743,137.490,48.743,328.215,320.109,345.839,24.557,24.510,24.557 +5401,157.455,209.874,407.208,333.581,540.640,216.065,413.582,45.830,130.653,45.830,328.268,320.622,346.039,25.515,24.756,25.515 +5402,157.486,208.224,409.206,335.914,538.256,214.347,415.176,44.275,124.408,44.275,328.823,320.654,345.927,24.792,24.355,24.792 +5403,157.518,205.572,411.994,338.446,535.418,211.905,417.641,41.724,117.784,41.724,328.693,321.598,345.662,25.234,24.068,25.234 +5404,157.548,205.572,411.994,338.446,535.418,211.905,417.641,41.724,117.784,41.724,328.693,321.598,345.662,25.234,24.068,25.234 +5405,157.577,202.598,416.103,341.789,531.802,209.092,421.265,38.480,110.956,38.480,328.726,321.147,345.318,24.508,24.221,24.508 +5406,157.607,199.979,419.589,344.971,527.866,206.679,424.335,35.311,104.250,35.311,328.960,320.892,345.383,25.671,24.400,25.671 +5407,157.639,197.254,423.951,347.839,523.249,203.699,427.951,31.827,97.722,31.827,330.276,321.028,345.447,25.841,23.665,25.841 +5408,157.671,194.559,428.405,350.738,518.487,201.173,431.974,28.355,90.939,28.355,330.385,321.170,345.417,25.269,22.702,25.269 +5409,157.703,191.881,434.200,354.084,512.842,198.501,437.174,24.193,84.289,24.193,331.342,321.895,345.856,25.528,23.284,25.528 +5410,157.734,189.592,439.787,357.000,506.500,196.286,442.239,20.113,77.905,20.113,331.765,321.837,346.022,25.221,23.258,25.221 +5411,157.766,186.798,448.516,359.274,499.247,193.283,450.392,16.138,71.222,16.138,332.557,321.941,346.059,19.490,22.363,19.490 +5412,157.797,184.834,456.256,361.827,491.553,191.851,457.600,10.847,64.747,10.847,332.366,322.114,346.656,18.808,23.345,18.808 +5413,157.828,183.747,463.888,363.131,483.110,190.615,464.538,5.404,58.276,5.404,333.202,322.530,346.998,18.956,22.409,18.956 +5414,157.859,184.000,472.000,363.859,473.537,190.429,472.000,0.000,51.789,0.000,334.000,322.955,346.859,18.000,22.218,18.000 +5415,157.891,184.188,480.481,363.592,463.409,190.550,479.822,174.094,45.339,174.094,334.834,322.477,347.626,18.488,22.426,18.488 +5416,157.922,185.795,490.565,362.604,452.992,191.855,489.237,167.638,38.841,167.638,336.693,322.643,349.099,19.991,22.375,19.991 +5417,157.953,188.064,499.735,359.574,442.956,193.720,497.785,160.986,32.471,160.986,337.369,322.585,349.335,19.790,20.631,19.790 +5418,157.983,191.273,509.529,356.096,431.317,197.471,506.535,154.217,26.307,154.217,337.332,321.557,351.101,19.901,22.240,19.901 +5419,158.013,191.273,509.529,356.096,431.317,197.471,506.535,154.217,26.307,154.217,337.332,321.557,351.101,19.901,22.240,19.901 +5420,158.041,196.174,518.928,349.973,421.941,201.413,515.575,147.381,20.095,147.381,338.762,321.501,351.202,19.204,19.378,19.204 +5421,158.074,202.818,528.072,342.824,411.706,207.497,524.147,140.013,14.036,140.013,339.670,320.632,351.884,19.550,18.918,19.550 +5422,158.106,210.446,535.626,334.100,402.300,214.019,531.710,132.374,8.130,132.374,342.463,320.461,353.067,18.145,18.668,18.145 +5423,158.139,219.833,544.045,323.501,393.975,222.880,539.576,124.287,2.189,124.287,343.147,319.455,353.966,19.304,18.509,19.304 +5424,158.173,229.962,550.744,312.033,387.029,232.430,545.726,116.188,176.408,116.188,343.891,318.816,355.074,19.065,18.358,19.065 +5425,158.205,241.338,556.123,299.177,381.583,243.117,550.639,107.969,170.727,107.969,344.677,318.437,356.208,19.179,18.530,19.179 +5426,158.237,252.690,560.129,285.292,378.095,253.614,554.382,99.135,165.048,99.135,346.518,317.828,358.160,21.369,18.450,21.369 +5427,158.268,265.270,562.010,271.093,376.750,265.353,555.886,90.774,159.516,90.774,346.144,317.302,358.395,22.079,18.525,22.079 +5428,158.300,278.410,561.665,256.673,377.329,277.580,555.700,82.081,154.036,82.081,347.057,316.675,359.101,23.790,19.209,23.790 +5429,158.330,293.933,558.646,241.940,380.723,292.378,553.306,73.765,148.707,73.765,348.481,315.721,359.604,21.840,18.833,21.840 +5430,158.361,308.433,553.151,228.079,385.931,306.037,548.056,64.819,143.486,64.819,348.515,315.025,359.776,22.266,19.014,22.266 +5431,158.391,320.765,545.790,215.657,393.237,317.834,541.427,56.104,138.305,56.104,349.464,314.073,359.977,23.605,19.002,23.605 +5432,158.423,331.248,537.295,204.391,401.959,327.657,533.362,47.603,133.202,47.603,349.657,313.383,360.308,23.985,18.769,23.985 +5433,158.456,340.727,527.043,195.038,412.030,336.741,523.791,39.202,128.224,39.202,350.606,313.292,360.896,25.183,18.729,25.183 +5434,158.489,347.957,515.951,187.831,423.390,343.937,513.522,31.142,123.081,31.142,351.050,313.158,360.443,25.450,20.042,25.450 +5435,158.521,353.041,504.770,182.201,434.949,348.950,503.005,23.338,118.202,23.338,351.224,312.896,360.134,25.891,20.334,25.891 +5436,158.553,355.683,496.602,178.136,446.416,351.378,495.377,15.887,113.225,15.887,351.102,312.902,360.054,19.621,20.675,19.621 +5437,158.583,358.291,485.622,175.686,457.728,353.757,484.921,8.797,108.375,8.797,351.094,312.750,360.270,19.235,20.419,19.235 +5438,158.613,358.291,485.622,175.686,457.728,353.757,484.921,8.797,108.375,8.797,351.094,312.750,360.270,19.235,20.419,19.235 +5439,158.640,358.630,475.139,174.320,469.057,354.195,474.990,1.931,103.513,1.931,351.070,312.913,359.946,18.697,20.185,18.697 +5440,158.671,358.372,464.853,174.345,479.553,353.823,465.206,175.555,98.717,175.555,350.973,313.008,360.099,19.077,19.551,19.077 +5441,158.704,357.059,455.162,175.449,489.212,352.492,456.024,169.311,94.108,169.311,350.959,313.133,360.254,19.708,19.001,19.708 +5442,158.735,354.421,445.875,177.350,498.489,350.009,447.188,163.426,89.284,163.426,351.033,313.088,360.239,21.291,18.936,21.291 +5443,158.768,351.411,438.305,180.500,507.000,347.419,439.918,157.997,84.289,157.997,351.176,313.536,359.788,20.379,19.105,20.379 +5444,158.799,347.949,431.441,183.499,514.639,343.866,433.526,152.949,79.760,152.949,350.254,313.583,359.423,19.991,19.700,19.991 +5445,158.830,344.124,424.990,187.583,521.516,340.346,427.345,148.067,74.650,148.067,350.004,313.898,358.909,20.269,19.646,20.269 +5446,158.861,340.214,419.568,191.465,527.962,336.476,422.312,143.710,69.829,143.710,349.554,314.148,358.828,18.815,19.559,18.815 +5447,158.897,336.037,414.696,196.387,533.528,332.585,417.637,139.568,64.601,139.568,348.594,315.311,357.663,19.002,20.029,19.002 +5448,158.939,331.882,410.335,200.737,538.197,328.711,413.438,135.619,59.772,135.619,348.576,315.927,357.447,18.827,20.505,18.827 +5449,158.970,327.785,406.406,204.754,541.613,324.818,409.703,131.987,54.741,131.987,347.862,314.340,356.732,18.954,20.304,18.954 +5450,159.001,323.530,403.124,207.241,546.505,320.042,407.489,128.626,49.338,128.626,346.864,314.330,358.037,18.888,24.002,18.888 +5451,159.037,319.693,400.213,211.709,549.771,316.429,404.795,125.461,44.215,125.461,346.425,314.701,357.676,18.811,23.981,18.811 +5452,159.068,315.757,397.707,215.682,552.534,312.702,402.497,122.531,38.884,122.531,345.976,315.006,357.338,18.735,24.382,18.735 +5453,159.100,312.055,395.745,219.123,554.326,309.289,400.579,119.771,33.851,119.771,345.313,316.193,356.451,18.615,24.570,18.615 +5454,159.132,308.590,393.760,223.492,556.354,305.995,398.805,117.221,28.523,117.221,344.332,315.789,355.678,18.703,25.060,18.703 +5455,159.163,305.331,391.959,226.950,557.615,302.893,397.232,114.821,23.532,114.821,343.276,315.790,354.894,18.742,25.627,18.742 +5456,159.195,302.351,390.145,230.583,559.268,299.856,396.161,112.525,18.217,112.525,341.379,314.951,354.403,19.176,25.779,19.176 +5457,159.226,299.841,388.758,234.086,560.407,297.471,395.053,110.634,12.724,110.634,340.714,314.879,354.166,18.804,25.299,18.804 +5458,159.256,296.653,387.386,237.055,561.467,294.380,394.182,108.499,5.856,108.499,339.326,314.453,353.659,19.019,24.385,19.019 +5459,159.288,294.401,386.728,240.000,563.000,292.180,394.055,106.858,0.000,106.858,338.323,314.000,353.635,19.227,24.000,19.227 +5460,159.320,291.501,385.634,242.469,563.183,289.491,393.124,105.018,174.382,105.018,337.362,314.923,352.871,19.058,23.232,19.058 +5461,159.349,289.584,384.381,244.750,563.750,287.613,392.571,103.536,168.690,103.536,336.065,315.355,352.913,19.174,23.338,19.174 +5462,159.380,289.584,384.381,244.750,563.750,287.613,392.571,103.536,168.690,103.536,336.065,315.355,352.913,19.174,23.338,19.174 +5463,159.410,286.742,383.656,247.169,564.439,284.937,392.269,101.839,162.699,101.839,334.910,315.759,352.512,19.258,23.290,19.258 +5464,159.441,284.598,383.200,248.987,564.612,282.987,392.031,100.342,157.011,100.342,333.809,315.676,351.762,18.971,22.038,18.971 +5465,159.473,282.754,382.199,251.019,564.934,281.236,391.765,99.019,150.945,99.019,332.159,316.348,351.530,19.173,21.854,19.173 +5466,159.507,280.603,381.056,253.128,565.480,279.201,391.394,97.722,144.462,97.722,331.156,316.775,352.021,18.744,21.855,18.744 +5467,159.540,278.878,380.399,254.559,565.503,277.585,391.347,96.736,138.366,96.736,329.263,317.400,351.310,18.572,20.761,18.572 +5468,159.573,277.133,378.850,255.927,565.542,275.971,390.916,95.500,131.760,95.500,327.242,318.142,351.486,18.433,19.528,18.433 +5469,159.605,275.362,377.297,257.349,565.766,274.307,391.009,94.399,125.335,94.399,323.583,318.625,351.087,18.561,19.159,18.561 +5470,159.637,273.566,375.116,259.542,566.524,272.660,391.256,93.215,119.055,93.215,319.126,319.165,351.456,18.218,19.329,18.218 +5471,159.667,271.827,372.071,261.436,567.262,271.070,391.606,92.220,112.913,92.220,312.695,320.001,351.795,17.971,19.523,17.971 +5472,159.698,270.010,367.046,263.237,568.424,269.439,392.196,91.302,106.172,91.302,302.331,321.561,352.645,17.927,19.612,17.927 +5473,159.730,268.500,354.500,265.027,568.838,268.500,392.919,90.000,99.462,90.000,275.000,321.893,351.838,17.000,19.728,17.000 +5474,159.762,265.416,308.543,268.019,569.183,266.600,392.569,89.193,93.468,89.193,185.165,322.499,353.233,17.688,21.597,17.688 +5475,159.793,264.467,362.571,267.621,568.993,265.530,392.848,87.990,86.515,87.990,291.628,322.681,352.219,18.077,21.959,18.077 +5476,159.824,263.642,382.203,270.536,568.923,264.204,392.886,86.987,80.267,86.987,330.858,322.581,352.253,17.975,20.320,17.975 +5477,159.856,262.007,384.708,273.036,569.352,262.588,393.067,86.028,74.521,86.028,336.412,323.472,353.170,18.151,20.253,18.151 +5478,159.888,260.745,386.821,275.310,569.276,261.323,393.581,85.115,68.199,85.115,338.927,323.110,352.496,18.446,20.798,18.446 +5479,159.919,259.401,387.872,277.468,568.440,259.997,393.641,84.094,61.699,84.094,339.739,321.846,351.338,18.590,20.725,18.590 +5480,159.949,257.965,387.809,280.192,567.755,258.628,393.252,83.047,54.884,83.047,340.695,321.792,351.661,19.054,20.144,19.054 +5481,159.979,257.965,387.809,280.192,567.755,258.628,393.252,83.047,54.884,83.047,340.695,321.792,351.661,19.054,20.144,19.054 +5482,160.008,256.530,388.210,281.237,568.002,257.302,393.617,81.870,49.214,81.870,341.108,321.821,352.033,19.092,20.993,19.092 +5483,160.041,255.082,388.719,283.426,567.409,255.902,393.755,80.754,43.112,80.754,341.436,321.365,351.640,19.350,21.512,19.350 +5484,160.074,253.494,388.831,284.806,566.932,254.456,394.049,79.552,37.030,79.552,340.431,321.988,351.042,19.543,23.459,19.543 +5485,160.107,251.685,388.979,287.229,566.617,252.818,394.456,78.311,30.877,78.311,339.938,321.383,351.124,19.653,23.881,19.653 +5486,160.141,249.872,389.340,289.462,565.692,251.125,394.755,76.971,24.305,76.971,339.242,321.684,350.359,19.952,24.284,19.952 +5487,160.175,247.887,388.912,292.158,564.997,249.480,395.141,75.660,18.925,75.660,337.412,320.405,350.270,20.251,25.405,20.251 +5488,160.207,246.009,388.984,294.851,563.516,247.788,395.297,74.256,13.722,74.256,336.240,319.700,349.356,20.821,26.557,20.821 +5489,160.239,243.845,388.981,296.904,563.822,246.137,396.354,72.734,6.654,72.734,334.538,319.566,349.980,21.034,24.865,21.034 +5490,160.271,241.571,389.838,299.496,562.775,244.053,397.124,71.188,0.875,71.188,333.967,319.131,349.360,21.220,24.554,21.220 +5491,160.301,239.346,390.243,302.098,561.644,242.073,397.568,69.578,175.088,69.578,333.784,319.144,349.416,22.113,24.776,22.113 +5492,160.333,236.473,391.033,304.801,560.458,239.588,398.653,67.765,169.196,67.765,332.439,319.494,348.901,21.738,24.714,21.738 +5493,160.366,233.512,391.946,307.717,558.924,237.017,399.714,65.714,163.511,65.714,331.354,319.244,348.398,21.298,24.455,21.298 +5494,160.397,230.900,392.800,310.693,557.478,234.865,400.730,63.435,158.062,63.435,330.491,319.218,348.222,22.361,24.955,22.361 +5495,160.428,228.223,394.242,313.826,555.568,232.412,401.921,61.390,152.684,61.390,330.248,319.418,347.743,22.825,25.005,22.825 +5496,160.459,225.265,395.941,317.196,553.306,229.726,403.376,59.036,147.301,59.036,329.792,319.527,347.134,23.152,24.871,23.152 +5497,160.490,222.265,397.510,320.619,550.877,227.079,404.771,56.459,141.892,56.459,329.499,319.694,346.924,23.834,24.485,23.834 +5498,160.522,218.751,400.116,324.327,548.401,223.927,407.174,53.746,136.548,53.746,329.013,319.801,346.518,23.870,24.644,23.870 +5499,160.554,215.844,403.374,327.955,545.579,221.166,409.917,50.877,131.392,50.877,328.390,319.831,345.258,24.401,24.528,24.401 +5500,160.584,211.081,406.658,331.847,542.253,216.845,412.834,46.975,126.135,46.975,329.267,320.256,346.162,24.856,24.229,24.856 +5501,160.614,211.081,406.658,331.847,542.253,216.845,412.834,46.975,126.135,46.975,329.267,320.256,346.162,24.856,24.229,24.856 +5502,160.642,208.765,409.626,335.644,538.484,214.635,415.365,44.356,121.072,44.356,328.776,320.526,345.194,24.835,24.136,24.835 +5503,160.673,203.995,414.439,339.307,534.642,210.360,419.792,40.061,116.162,40.061,328.584,322.017,345.218,24.718,23.888,24.718 +5504,160.705,200.632,418.536,343.699,529.384,207.266,423.390,36.193,111.038,36.193,328.953,321.430,345.392,25.746,23.980,25.746 +5505,160.736,197.976,422.558,347.941,523.627,204.785,426.949,32.814,106.113,32.814,329.206,321.007,345.409,25.590,24.231,25.590 +5506,160.769,194.631,428.279,351.619,517.626,201.434,431.955,28.382,101.470,28.382,330.246,321.038,345.712,25.869,24.444,25.869 +5507,160.801,190.931,435.328,354.782,510.475,197.864,438.299,23.199,96.546,23.199,330.236,321.024,345.322,25.342,23.550,25.342 +5508,160.833,187.317,444.600,358.109,502.990,194.394,446.990,18.658,91.444,18.658,331.114,320.377,346.054,19.269,23.976,19.269 +5509,160.864,185.338,453.038,360.884,494.120,192.416,454.674,13.021,86.760,13.021,331.520,320.619,346.048,19.041,24.207,19.041 +5510,160.895,183.860,461.208,362.743,484.824,190.909,462.117,7.352,81.933,7.352,332.438,320.326,346.653,18.748,24.503,18.748 +5511,160.925,183.038,470.216,363.693,474.656,190.324,470.373,1.232,77.125,1.232,332.267,320.283,346.842,18.426,24.734,18.426 +5512,160.956,183.789,479.630,363.247,464.399,190.068,479.072,174.920,72.329,174.920,334.990,320.399,347.596,18.217,24.461,18.217 +5513,160.986,185.594,490.095,361.591,453.168,191.356,488.867,167.969,67.640,167.969,336.092,320.156,347.874,20.058,24.275,20.058 +5514,161.018,187.655,500.004,358.928,441.780,193.650,497.929,160.907,62.755,160.907,336.415,319.841,349.103,19.772,24.980,19.772 +5515,161.048,187.655,500.004,358.928,441.780,193.650,497.929,160.907,62.755,160.907,336.415,319.841,349.103,19.772,24.980,19.772 +5516,161.077,192.054,510.109,354.361,430.215,197.360,507.480,153.650,58.039,153.650,338.121,319.588,349.965,19.739,24.633,19.739 +5517,161.109,197.256,519.887,348.270,418.689,202.273,516.563,146.476,53.471,146.476,339.494,318.982,351.530,18.872,24.375,18.872 +5518,161.141,204.258,529.294,339.971,408.186,208.659,525.428,138.705,48.231,138.705,340.347,318.649,352.061,19.260,24.852,19.260 +5519,161.174,212.226,538.124,330.483,398.925,216.060,533.667,130.707,43.264,130.707,341.775,317.752,353.534,18.968,24.759,18.968 +5520,161.206,222.347,546.283,319.439,389.951,225.628,541.045,122.067,38.660,122.067,343.329,317.033,355.692,19.103,24.675,19.103 +5521,161.237,233.419,552.835,306.529,383.710,235.878,547.187,113.527,33.802,113.527,343.858,315.619,356.180,18.836,22.873,18.836 +5522,161.268,245.516,558.028,292.330,379.897,246.924,552.647,104.664,28.695,104.664,346.112,314.606,357.236,19.692,20.868,19.692 +5523,161.299,257.340,560.681,277.264,378.333,257.826,555.735,95.611,23.575,95.611,346.965,314.073,356.904,22.481,18.431,22.481 +5524,161.330,273.949,561.366,262.842,377.977,273.760,556.475,87.782,18.335,87.782,347.785,313.385,357.575,23.099,18.179,23.099 +5525,161.360,285.961,559.557,247.672,379.910,285.040,555.200,78.068,13.109,78.068,349.552,312.635,358.458,22.503,18.198,22.503 +5526,161.392,301.354,555.595,233.299,384.478,299.756,551.373,69.266,7.740,69.266,350.202,312.111,359.229,21.679,18.355,21.679 +5527,161.424,315.108,548.763,219.534,391.183,312.833,544.822,60.006,2.397,60.006,350.307,311.648,359.408,23.005,18.416,23.005 +5528,161.456,326.443,540.311,207.999,399.474,323.870,537.129,51.041,176.955,51.041,351.605,310.784,359.791,23.506,18.495,23.506 +5529,161.487,336.893,530.720,197.484,409.392,333.565,527.692,42.288,171.404,42.288,351.537,311.174,360.536,24.301,18.166,24.301 +5530,161.518,345.000,519.500,188.794,420.176,341.277,517.018,33.690,165.964,33.690,352.235,311.416,361.183,24.684,18.675,24.684 +5531,161.548,345.000,519.500,188.794,420.176,341.277,517.018,33.690,165.964,33.690,352.235,311.416,361.183,24.684,18.675,24.684 +5532,161.575,351.336,507.608,182.744,432.547,347.553,505.801,25.530,160.017,25.530,352.191,310.986,360.576,25.535,19.821,25.535 +5533,161.608,354.239,498.667,178.078,444.741,350.503,497.483,17.585,154.306,17.585,352.766,311.781,360.605,19.799,20.071,19.799 +5534,161.640,356.562,487.300,174.936,456.686,352.998,486.673,9.967,148.707,9.967,353.891,311.968,361.129,19.632,20.006,19.632 +5535,161.673,358.147,476.453,173.504,468.181,353.769,476.242,2.767,143.480,2.767,352.121,312.197,360.888,18.944,18.916,18.944 +5536,161.706,357.850,465.415,172.808,478.748,353.075,465.757,175.899,137.366,175.899,351.893,312.859,361.469,19.091,20.389,19.091 +5537,161.738,356.463,455.174,174.309,489.454,351.904,456.040,169.246,131.285,169.246,352.139,313.351,361.422,19.698,19.098,19.698 +5538,161.769,353.392,445.891,176.914,499.632,349.536,447.075,162.929,124.667,162.929,352.825,314.075,360.892,20.225,19.086,20.225 +5539,161.802,350.138,437.290,179.335,508.131,346.070,439.016,157.011,119.014,157.011,352.136,314.402,360.974,20.002,20.143,20.002 +5540,161.835,345.647,430.429,182.869,516.733,342.244,432.277,151.493,112.917,151.493,352.975,315.291,360.720,19.083,20.593,19.083 +5541,161.866,341.541,423.568,187.699,524.559,338.204,425.802,146.190,106.658,146.190,351.978,315.797,360.011,19.133,19.478,19.133 +5542,161.897,336.930,417.544,192.152,531.344,333.792,420.064,141.240,100.460,141.240,352.183,316.362,360.230,19.198,20.091,19.198 +5543,161.927,332.405,412.279,197.606,537.470,329.273,415.233,136.668,94.338,136.668,350.700,316.367,359.311,18.940,19.076,18.940 +5544,161.957,327.206,408.324,202.575,542.931,324.616,411.173,132.274,88.101,132.274,351.472,316.456,359.173,19.440,19.475,19.440 +5545,161.988,322.189,403.577,208.150,547.050,319.621,406.847,128.157,81.870,128.157,349.912,316.925,358.227,18.759,19.799,18.759 +5546,162.019,317.423,399.927,213.816,551.161,314.845,403.718,124.223,75.530,124.223,348.301,317.501,357.469,19.055,19.553,19.055 +5547,162.048,317.423,399.927,213.816,551.161,314.845,403.718,124.223,75.530,124.223,348.301,317.501,357.469,19.055,19.553,19.055 +5548,162.077,312.293,397.700,219.776,554.814,310.270,401.132,120.510,68.883,120.510,348.723,318.847,356.692,18.723,21.256,18.723 +5549,162.109,307.839,394.890,224.496,556.966,305.856,398.783,116.996,62.608,116.996,347.018,317.158,355.757,18.981,20.704,18.981 +5550,162.142,302.992,392.906,229.846,559.269,301.294,396.797,113.568,56.310,113.568,346.486,317.566,354.976,19.094,20.524,19.094 +5551,162.175,298.467,391.057,233.312,562.308,296.684,395.850,110.410,49.554,110.410,345.987,317.605,356.215,18.875,24.153,18.875 +5552,162.207,294.182,389.619,238.379,564.021,292.612,394.642,107.354,43.506,107.354,345.164,317.549,355.689,18.851,24.562,18.851 +5553,162.239,289.841,388.304,242.901,565.130,288.460,393.682,104.400,37.405,104.400,343.677,317.650,354.783,18.717,24.905,18.717 +5554,162.270,285.647,387.520,247.596,566.247,284.495,393.164,101.543,32.005,101.543,342.411,318.211,353.933,18.837,24.592,18.837 +5555,162.301,281.498,386.613,252.356,566.812,280.604,392.394,98.791,26.398,98.791,341.671,317.978,353.371,18.818,24.793,18.818 +5556,162.331,277.633,385.580,257.022,567.116,276.947,391.888,96.203,20.497,96.203,340.019,318.001,352.710,18.457,25.308,18.457 +5557,162.362,273.363,384.839,261.876,567.582,272.941,391.761,93.489,14.868,93.489,338.469,316.736,352.338,18.307,25.993,18.307 +5558,162.399,269.433,384.440,266.431,567.929,269.306,391.924,90.971,9.090,90.971,337.087,317.126,352.058,18.031,25.555,18.031 +5559,162.431,265.658,384.038,270.758,567.580,265.892,392.218,88.363,3.400,88.363,334.492,316.452,350.858,18.278,25.361,18.278 +5560,162.462,261.354,384.511,275.022,567.121,261.962,392.449,85.620,177.936,85.620,334.395,316.623,350.318,18.643,25.668,18.643 +5561,162.494,257.883,384.454,279.056,566.550,258.860,392.615,83.177,172.176,83.177,333.764,317.029,350.203,18.738,24.926,18.738 +5562,162.523,254.626,384.730,283.545,565.689,255.993,392.976,80.586,166.504,80.586,333.069,317.504,349.787,20.175,24.621,20.175 +5563,162.555,250.294,385.721,287.679,564.981,252.042,393.839,77.845,161.075,77.845,333.009,317.568,349.618,19.822,24.838,19.822 +5564,162.586,246.467,386.711,292.142,563.917,248.646,394.907,75.110,155.638,75.110,332.063,317.957,349.024,20.446,24.544,20.446 +5565,162.616,242.199,387.956,296.452,562.304,244.769,395.978,72.232,150.616,72.232,331.480,318.508,348.328,20.335,24.846,20.335 +5566,162.647,242.199,387.956,296.452,562.304,244.769,395.978,72.232,150.616,72.232,331.480,318.508,348.328,20.335,24.846,20.335 +5567,162.675,238.658,389.435,301.026,561.037,241.594,397.236,69.376,145.069,69.376,331.807,318.515,348.476,21.596,24.166,21.596 +5568,162.707,234.404,391.017,305.615,559.041,237.821,398.861,66.460,140.001,66.460,330.740,318.933,347.853,21.966,23.959,21.966 +5569,162.739,230.632,392.657,310.250,556.750,234.558,400.394,63.094,135.000,63.094,330.014,318.905,347.366,22.680,24.042,22.680 +5570,162.771,226.181,395.229,315.003,554.003,230.530,402.693,59.772,130.045,59.772,329.248,319.574,346.526,22.886,23.577,22.886 +5571,162.803,221.438,398.200,319.771,551.191,226.229,405.362,56.221,125.096,56.221,329.206,320.068,346.439,22.543,23.108,22.543 +5572,162.834,217.331,401.563,324.773,547.779,222.483,408.282,52.524,120.426,52.524,328.950,320.182,345.884,23.226,23.528,23.226 +5573,162.866,212.843,405.191,329.684,544.107,218.541,411.686,48.743,115.694,48.743,328.400,320.826,345.682,23.806,23.633,23.806 +5574,162.897,208.833,409.611,334.636,539.820,214.744,415.446,44.630,111.003,44.630,328.784,322.003,345.396,24.096,23.347,24.096 +5575,162.927,203.849,414.468,339.924,533.918,210.211,419.751,39.710,106.348,39.710,328.917,320.995,345.456,25.217,23.324,25.217 +5576,162.958,199.930,420.101,344.598,527.809,206.293,424.555,34.992,101.944,34.992,329.495,321.068,345.031,25.642,23.330,25.642 +5577,162.989,196.434,425.688,349.488,521.259,202.888,429.502,30.579,97.431,30.579,330.791,320.891,345.783,25.319,24.057,25.319 +5578,163.020,192.458,432.715,353.501,513.975,199.183,435.880,25.201,92.862,25.201,330.898,320.799,345.764,25.388,23.471,25.388 +5579,163.050,188.476,442.475,357.158,505.440,195.228,444.950,20.136,88.698,20.136,331.329,321.167,345.712,19.090,23.608,19.090 +5580,163.081,188.476,442.475,357.158,505.440,195.228,444.950,20.136,88.698,20.136,331.329,321.167,345.712,19.090,23.608,19.090 +5581,163.111,185.925,450.905,360.167,496.169,192.817,452.679,14.434,84.036,14.434,331.585,320.806,345.817,19.369,23.573,19.369 +5582,163.141,184.291,460.421,362.708,485.873,191.220,461.391,7.970,79.824,7.970,332.458,320.368,346.451,18.658,24.506,18.658 +5583,163.173,183.550,469.977,363.364,475.274,190.170,470.139,1.406,75.343,1.406,333.292,320.452,346.536,18.485,23.666,18.485 +5584,163.205,184.159,479.776,363.447,463.846,190.520,479.194,174.772,70.974,174.772,334.439,320.710,347.213,17.977,24.352,17.977 +5585,163.235,185.497,491.296,361.682,451.921,191.708,489.878,167.137,66.615,167.137,335.575,320.258,348.317,20.112,24.683,20.112 +5586,163.265,188.491,501.623,358.195,439.929,194.126,499.540,159.717,61.928,159.717,337.107,319.471,349.122,19.494,25.588,19.494 +5587,163.296,192.923,512.419,353.322,427.678,198.278,509.558,151.882,58.109,151.882,338.525,319.264,350.669,19.693,24.547,19.693 +5588,163.326,198.648,522.304,346.132,415.929,203.583,518.787,144.520,53.616,144.520,339.441,319.183,351.562,18.591,24.533,18.591 +5589,163.358,206.186,532.259,336.983,405.079,210.538,528.089,136.219,48.906,136.219,340.748,317.878,352.804,18.802,24.790,18.802 +5590,163.390,215.442,541.116,326.592,395.406,219.210,536.249,127.747,44.370,127.747,341.899,316.842,354.210,18.952,25.175,18.952 +5591,163.422,226.610,548.929,314.688,387.005,229.622,543.429,118.706,40.236,118.706,343.571,315.690,356.114,18.878,24.487,18.878 +5592,163.453,238.872,554.854,299.976,382.034,240.701,549.774,109.799,35.676,109.799,345.005,315.265,355.804,19.006,21.120,19.006 +5593,163.483,253.023,559.681,286.148,377.095,254.185,553.756,101.094,31.065,101.094,346.942,313.839,359.019,21.974,23.809,21.974 +5594,163.514,253.023,559.681,286.148,377.095,254.185,553.756,101.094,31.065,101.094,346.942,313.839,359.019,21.974,23.809,21.974 +5595,163.543,264.298,561.536,270.039,376.932,264.409,555.974,91.142,26.328,91.142,347.110,313.075,358.237,22.235,20.559,22.235 +5596,163.573,278.380,560.947,254.382,378.556,277.718,556.191,82.081,21.666,82.081,348.710,312.721,358.313,23.652,18.167,23.652 +5597,163.605,294.982,557.804,238.939,382.202,293.616,553.257,73.284,16.736,73.284,349.609,311.870,359.106,21.053,18.168,21.053 +5598,163.636,310.049,551.262,224.497,388.132,308.035,547.196,63.654,11.848,63.654,350.155,311.280,359.230,22.642,18.164,22.642 +5599,163.666,322.678,543.412,211.685,396.068,320.033,539.737,54.253,6.988,54.253,350.744,310.700,359.801,24.030,18.103,24.030 +5600,163.697,334.033,533.996,200.517,406.006,330.668,530.615,45.141,1.931,45.141,350.724,309.465,360.265,24.938,17.900,24.938 +5601,163.726,343.097,523.066,190.868,416.020,338.896,520.004,36.091,176.947,36.091,351.350,310.465,361.746,24.930,19.705,24.930 +5602,163.757,350.189,510.909,183.500,429.500,345.891,508.673,27.487,171.806,27.487,351.515,310.565,361.204,25.391,19.329,25.391 +5603,163.789,354.239,501.385,178.113,440.496,349.245,499.641,19.250,167.142,19.250,351.547,310.450,362.126,19.871,22.741,19.871 +5604,163.820,356.564,489.163,174.800,453.900,352.326,488.320,11.245,161.565,11.245,353.020,310.852,361.661,19.511,19.922,19.511 +5605,163.851,358.653,477.529,173.449,466.998,353.711,477.222,3.549,155.772,3.549,351.194,311.695,361.098,18.770,20.153,18.770 +5606,163.880,358.653,477.529,173.449,466.998,353.711,477.222,3.549,155.772,3.549,351.194,311.695,361.098,18.770,20.153,18.770 +5607,163.910,357.893,465.891,173.244,478.695,353.278,466.197,176.211,150.461,176.211,351.680,312.077,360.932,19.117,20.069,19.117 +5608,163.940,356.329,454.507,174.764,490.294,351.922,455.354,169.123,144.828,169.123,352.161,312.706,361.136,20.661,20.134,20.661 +5609,163.972,353.397,445.025,176.855,500.416,349.140,446.376,162.387,139.505,162.387,352.187,312.926,361.120,20.106,20.285,20.106 +5610,164.004,349.040,436.204,180.292,509.782,345.530,437.759,156.105,134.061,156.105,352.823,313.426,360.500,19.918,19.680,19.918 +5611,164.035,345.788,428.267,185.088,518.958,341.765,430.591,149.982,127.875,149.982,350.444,315.039,359.737,19.415,20.786,19.415 +5612,164.066,340.182,421.155,189.975,526.920,337.024,423.411,144.462,121.950,144.462,351.882,315.774,359.644,18.832,20.237,18.832 +5613,164.097,335.130,414.708,194.551,533.526,331.710,417.688,138.918,116.670,138.918,349.944,316.187,359.016,19.443,20.561,19.443 +5614,164.133,329.224,409.750,200.357,540.325,326.334,412.743,133.995,110.749,133.995,350.249,317.288,358.570,19.176,19.749,19.176 +5615,164.181,323.400,404.700,206.265,545.939,320.592,408.155,129.094,104.660,129.094,349.154,317.550,358.059,18.772,19.243,18.772 +5616,164.214,317.217,401.275,212.487,550.573,315.163,404.263,124.509,98.593,124.509,350.218,318.337,357.471,18.901,18.765,18.901 +5617,164.246,311.519,397.772,218.697,554.533,309.673,400.955,120.107,92.679,120.107,349.629,317.775,356.988,18.785,18.956,18.785 +5618,164.277,305.938,394.761,225.126,558.023,304.213,398.326,115.821,86.424,115.821,348.478,318.815,356.400,19.019,19.213,19.019 +5619,164.313,300.037,392.819,230.973,561.338,298.604,396.415,111.724,80.538,111.724,348.744,319.920,356.485,19.080,20.221,19.080 +5620,164.343,294.883,390.982,238.131,564.192,293.542,395.089,108.083,74.778,108.083,347.262,320.739,355.902,19.051,21.195,19.051 +5621,164.375,289.461,389.219,244.433,565.159,288.346,393.604,104.265,68.666,104.265,345.123,319.577,354.172,18.907,20.473,18.907 +5622,164.407,283.644,387.887,250.076,566.675,282.750,392.785,100.345,62.387,100.345,343.905,319.827,353.862,18.824,20.339,18.824 +5623,164.439,278.274,387.553,255.947,568.034,277.689,392.423,96.843,57.225,96.843,344.091,320.128,353.902,18.468,20.790,18.468 +5624,164.471,272.938,387.237,261.389,568.892,272.641,392.385,93.302,51.411,93.302,343.410,320.156,353.724,18.296,22.912,18.296 +5625,164.503,267.787,387.009,267.578,568.910,267.810,392.446,89.758,45.847,89.758,342.048,320.378,352.922,17.835,23.496,17.835 +5626,164.534,262.610,387.189,273.851,568.402,262.965,392.633,86.269,40.215,86.269,341.297,320.566,352.210,18.244,23.741,18.244 +5627,164.565,257.749,387.848,279.432,568.129,258.452,393.408,82.801,34.200,82.801,340.735,320.913,351.944,18.882,24.090,18.882 +5628,164.595,252.819,388.509,285.464,566.994,253.913,394.273,79.254,28.330,79.254,339.416,321.443,351.150,19.635,24.562,19.635 +5629,164.626,247.901,389.540,291.390,564.913,249.317,395.039,75.564,23.334,75.564,338.643,322.094,349.999,20.289,25.674,20.289 +5630,164.656,242.962,390.500,298.339,563.527,245.018,396.825,71.996,17.030,71.996,336.737,320.328,350.040,21.113,24.481,21.113 +5631,164.687,238.091,391.958,304.426,561.353,240.688,398.487,68.308,11.889,68.308,335.728,320.295,349.781,22.367,24.206,22.367 +5632,164.717,232.834,393.783,310.284,558.890,236.160,400.696,64.306,6.520,64.306,334.037,320.343,349.379,22.979,24.583,22.979 +5633,164.747,232.834,393.783,310.284,558.890,236.160,400.696,64.306,6.520,64.306,334.037,320.343,349.379,22.979,24.583,22.979 +5634,164.776,227.503,396.643,316.479,555.809,231.432,403.508,60.215,0.932,60.215,333.036,319.202,348.856,23.222,24.428,23.222 +5635,164.809,221.877,399.098,322.567,551.403,226.633,406.126,55.917,175.764,55.917,331.192,320.566,348.164,23.635,23.491,23.635 +5636,164.842,216.388,403.089,328.357,547.125,221.786,409.890,51.563,170.727,51.563,330.125,320.914,347.491,23.548,24.291,23.548 +5637,164.875,210.604,407.374,334.450,542.241,216.899,414.040,46.637,165.506,46.637,329.499,320.907,347.835,24.113,24.547,24.113 +5638,164.906,205.977,412.466,340.118,536.252,212.831,418.579,41.730,160.560,41.730,328.269,321.338,346.638,25.414,24.740,25.414 +5639,164.938,200.211,417.892,345.617,529.370,207.970,423.609,36.384,155.739,36.384,327.827,321.451,347.102,25.762,24.808,25.762 +5640,164.969,195.458,424.242,350.652,522.161,203.958,429.382,31.159,150.680,31.159,327.208,321.502,347.074,25.572,25.118,25.572 +5641,165.000,190.953,431.549,355.232,513.602,200.014,435.864,25.463,146.032,25.463,327.050,321.467,347.123,26.312,24.811,26.312 +5642,165.030,187.012,439.560,359.080,504.347,196.671,442.994,19.573,141.267,19.573,326.655,321.716,347.157,26.089,24.971,26.089 +5643,165.061,183.101,451.124,362.179,494.248,193.216,453.609,13.804,136.637,13.804,326.727,321.340,347.559,19.422,24.840,19.422 +5644,165.091,180.750,461.556,364.258,483.416,191.548,462.871,6.944,132.274,6.944,326.097,321.538,347.854,18.472,24.620,18.472 +5645,165.124,180.000,472.000,364.711,472.060,190.855,472.000,0.000,128.234,0.000,326.000,322.504,347.711,18.000,25.088,18.000 +5646,165.157,179.850,483.705,363.923,459.615,190.957,482.269,172.632,123.690,172.632,326.489,321.726,348.887,19.159,24.407,19.159 +5647,165.188,181.735,495.735,361.141,446.361,192.731,492.778,164.949,119.358,164.949,326.599,320.250,349.372,19.687,22.715,19.687 +5648,165.218,184.881,507.736,355.892,433.479,195.561,503.180,156.898,115.201,156.898,326.423,319.561,349.646,19.721,20.651,19.721 +5649,165.248,189.923,519.866,349.564,420.908,200.436,513.542,148.973,110.993,148.973,326.540,319.202,351.077,19.703,20.116,19.703 +5650,165.278,189.923,519.866,349.564,420.908,200.436,513.542,148.973,110.993,148.973,326.540,319.202,351.077,19.703,20.116,19.703 +5651,165.308,194.626,533.488,342.310,409.698,207.182,523.215,140.711,106.809,140.711,320.489,318.194,352.934,19.701,21.977,19.701 +5652,165.340,203.065,544.603,332.281,399.178,214.788,531.767,132.405,102.829,132.405,319.507,317.409,354.274,19.424,22.329,19.424 +5653,165.373,215.163,554.564,319.930,389.938,224.631,540.057,123.130,98.505,123.130,320.949,316.657,355.597,19.525,21.028,19.525 +5654,165.404,227.440,564.859,306.345,382.751,235.547,546.541,113.875,94.297,113.875,316.797,316.063,356.859,19.248,20.687,19.248 +5655,165.436,241.149,576.321,291.500,378.000,247.500,551.956,104.610,90.000,104.610,308.502,314.000,358.860,20.023,19.000,20.023 +5656,165.468,255.435,588.815,275.358,375.906,258.174,554.573,94.574,86.032,94.574,290.233,313.328,358.936,23.166,18.983,23.166 +5657,165.499,280.043,625.365,259.825,375.954,276.344,555.454,86.971,81.991,86.971,220.226,312.380,360.244,23.338,18.954,23.338 +5658,165.530,296.825,593.988,244.350,379.736,287.435,554.307,76.686,78.398,76.686,278.046,311.789,359.601,22.100,18.800,22.100 +5659,165.561,307.893,564.342,229.677,385.162,302.095,549.875,68.158,74.089,68.158,328.491,310.303,359.663,19.922,19.551,19.922 +5660,165.591,318.530,551.982,222.077,406.709,317.709,550.594,59.412,69.749,59.412,341.826,279.325,345.052,23.442,19.802,23.442 +5661,165.622,330.600,541.837,204.126,401.071,325.146,535.360,49.899,65.722,49.899,344.411,310.457,361.346,24.477,20.977,24.477 +5662,165.653,341.865,530.160,194.441,411.301,335.386,524.681,40.222,61.677,40.222,344.698,310.330,361.667,25.367,19.995,25.367 +5663,165.683,349.323,517.975,187.157,422.578,343.042,514.103,31.649,57.265,31.649,346.695,310.215,361.453,25.817,20.909,25.817 +5664,165.713,349.323,517.975,187.157,422.578,343.042,514.103,31.649,57.265,31.649,346.695,310.215,361.453,25.817,20.909,25.817 +5665,165.743,354.735,505.612,181.707,433.869,348.509,502.919,23.390,53.531,23.390,347.446,309.853,361.014,25.928,22.552,25.928 +5666,165.774,357.044,495.975,177.198,445.904,351.209,494.370,15.387,48.918,15.387,349.163,308.660,361.266,19.825,23.038,19.825 +5667,165.807,359.775,484.161,174.500,458.000,353.280,483.281,7.714,45.000,7.714,348.001,309.006,361.110,19.448,21.920,19.448 +5668,165.839,359.995,472.799,173.527,470.232,353.773,472.757,0.390,40.830,0.390,348.074,308.922,360.517,18.469,20.981,18.469 +5669,165.871,359.399,461.422,173.543,481.943,353.028,462.166,173.342,36.961,173.342,348.304,309.201,361.135,19.351,21.962,19.351 +5670,165.902,357.128,450.118,175.655,492.191,351.175,451.545,166.522,32.565,166.522,348.076,309.316,360.319,21.941,22.337,21.941 +5671,165.932,355.090,440.643,178.684,502.275,348.512,443.004,160.258,28.024,160.258,345.756,309.944,359.734,20.901,22.852,20.901 +5672,165.963,351.718,431.952,182.107,511.086,344.888,435.238,154.312,23.238,154.312,343.983,310.409,359.141,20.362,23.309,20.362 +5673,165.993,347.683,423.936,186.664,519.515,340.933,428.059,148.581,18.712,148.581,342.830,310.236,358.649,20.103,22.915,20.103 +5674,166.023,342.979,416.819,191.532,526.824,336.368,421.723,143.432,13.745,143.432,341.421,310.934,357.883,19.098,22.355,19.098 +5675,166.055,337.262,411.034,196.569,533.527,331.556,416.128,138.240,8.337,138.240,342.465,311.006,357.764,19.741,21.520,19.741 +5676,166.085,331.783,406.103,201.990,539.150,326.583,411.563,133.603,3.778,133.603,341.552,311.039,356.633,19.138,20.841,19.138 +5677,166.115,331.783,406.103,201.990,539.150,326.583,411.563,133.603,3.778,133.603,341.552,311.039,356.633,19.138,20.841,19.138 +5678,166.144,326.305,400.677,207.480,544.279,321.033,407.187,129.000,178.379,129.000,339.250,311.328,356.004,18.989,21.124,18.989 +5679,166.175,320.801,396.440,212.652,548.602,315.886,403.535,124.709,173.157,124.709,338.808,312.200,356.070,19.232,21.526,19.232 +5680,166.207,315.317,392.873,218.156,552.340,310.667,400.723,120.642,168.288,120.642,336.946,313.194,355.194,18.923,21.148,18.923 +5681,166.238,310.076,389.551,223.688,555.822,305.656,398.320,116.751,163.142,116.751,335.437,313.875,355.078,18.898,21.751,18.898 +5682,166.269,304.449,387.037,229.157,558.389,300.572,396.192,112.954,158.009,112.954,334.528,314.585,354.411,19.424,21.772,19.424 +5683,166.300,299.275,384.803,234.424,560.356,295.837,394.545,109.440,152.241,109.440,332.931,314.612,353.594,19.026,21.052,19.026 +5684,166.330,293.858,382.813,239.522,562.245,290.875,393.297,105.884,146.575,105.884,331.303,315.649,353.104,19.330,20.715,19.330 +5685,166.364,288.945,380.264,244.707,563.134,286.387,391.796,102.507,141.340,102.507,328.971,316.408,352.596,19.415,20.459,19.415 +5686,166.396,283.932,377.905,249.632,563.559,281.869,390.288,99.462,135.725,99.462,327.318,316.848,352.425,18.577,19.762,18.577 +5687,166.426,278.733,377.194,254.516,564.680,277.266,390.285,96.394,129.806,96.394,325.343,318.172,351.688,18.548,19.334,18.548 +5688,166.458,273.103,377.145,259.289,566.358,272.323,391.189,93.180,123.887,93.180,323.113,318.674,351.245,18.305,19.168,18.305 \ No newline at end of file diff --git a/chaos_pdl/data/raw/metrics-20250920-000328.csv b/chaos_pdl/data/raw/metrics-20250920-000328.csv new file mode 100644 index 0000000..aa55f84 --- /dev/null +++ b/chaos_pdl/data/raw/metrics-20250920-000328.csv @@ -0,0 +1,10256 @@ +frameIndex,time,redRectCenterX,redRectCenterY,greenRectCenterX,greenRectCenterY,blueRectCenterX,blueRectCenterY,redRectRotation,greenRectRotation,blueRectRotation,redRectLength,greenRectLength,blueRectLength,redRectWidth,greenRectWidth,blueRectWidth +0,0.002,195.714,441.414,347.779,538.850,202.608,445.514,30.742,79.114,30.742,328.924,322.778,344.965,25.739,21.604,25.739 +1,0.035,192.026,448.445,352.803,530.330,199.152,451.771,25.017,74.592,25.017,329.186,322.239,344.915,25.675,21.232,25.675 +2,0.069,192.026,448.445,352.803,530.330,199.152,451.771,25.017,74.592,25.017,329.186,322.239,344.915,25.675,21.232,25.675 +3,0.101,187.985,459.728,357.453,520.801,195.003,462.168,19.168,70.317,19.168,330.532,321.871,345.392,19.179,22.284,19.179 +4,0.134,186.169,469.474,360.814,511.082,192.658,470.908,12.462,66.038,12.462,332.437,322.068,345.728,19.302,22.135,19.302 +5,0.167,184.154,479.016,362.879,500.019,190.918,479.716,5.906,61.294,5.906,332.673,321.560,346.275,18.933,22.408,18.933 +6,0.200,183.949,488.877,363.764,488.153,190.341,488.798,179.293,57.068,179.293,334.049,321.209,346.834,18.320,23.377,18.320 +7,0.232,184.041,500.387,362.264,475.919,189.848,499.531,171.607,52.734,171.607,336.294,321.013,348.033,19.202,23.044,19.202 +8,0.264,185.896,511.639,359.534,462.531,191.486,510.025,163.895,48.705,163.895,337.617,321.544,349.255,20.156,23.210,20.156 +9,0.296,189.170,522.764,355.939,450.532,194.702,520.285,155.868,44.119,155.868,339.204,319.052,351.327,20.267,23.430,20.267 +10,0.327,194.872,534.793,349.634,437.652,200.360,531.396,148.241,40.073,148.241,339.620,318.808,352.529,21.864,24.014,21.864 +11,0.358,201.083,544.193,341.726,425.688,206.223,539.865,139.899,35.972,139.899,340.949,317.246,354.387,18.841,24.958,18.841 +12,0.389,210.411,553.601,330.635,417.084,213.633,549.940,131.348,32.005,131.348,344.307,315.349,354.062,19.428,20.670,19.428 +13,0.420,221.205,563.001,317.797,408.883,223.652,559.101,122.106,27.943,122.106,345.353,314.472,354.562,20.180,18.790,20.180 +14,0.453,232.793,570.202,304.461,402.088,234.678,565.732,112.861,24.007,112.861,346.101,313.436,355.802,19.370,18.347,19.370 +15,0.484,245.653,575.418,289.541,397.250,246.746,570.767,103.226,20.171,103.226,347.854,312.520,357.411,20.439,18.256,20.439 +16,0.515,262.081,578.221,273.801,394.677,262.484,573.517,94.899,16.390,94.899,348.864,312.076,358.307,23.656,18.228,23.656 +17,0.547,275.810,578.224,258.363,394.598,275.443,573.819,85.236,12.865,85.236,351.199,310.980,360.040,22.339,18.300,22.339 +18,0.579,289.500,576.099,242.972,397.174,288.327,571.491,75.708,9.236,75.708,350.726,310.379,360.236,22.307,18.136,22.307 +19,0.609,304.799,569.921,228.713,402.329,303.170,566.162,66.571,5.609,66.571,351.668,309.146,359.861,21.593,18.145,21.593 +20,0.639,317.887,562.923,215.432,409.318,315.527,559.226,57.450,2.130,57.450,351.660,309.344,360.432,22.777,18.095,22.777 +21,0.669,328.923,553.753,203.555,418.552,326.260,550.748,48.464,178.472,48.464,352.607,309.183,360.637,23.543,17.820,23.543 +22,0.699,328.923,553.753,203.555,418.552,326.260,550.748,48.464,178.472,48.464,352.607,309.183,360.637,23.543,17.820,23.543 +23,0.728,338.707,542.811,193.775,428.411,335.692,540.316,39.604,175.030,39.604,353.532,309.094,361.359,25.077,18.019,25.077 +24,0.760,346.716,531.547,185.630,439.045,342.546,529.019,31.230,171.422,31.230,351.900,309.289,361.654,25.761,20.052,25.761 +25,0.796,351.250,519.750,179.845,452.990,347.803,518.273,23.199,166.390,23.199,352.689,309.756,360.189,25.867,19.326,25.867 +26,0.827,354.220,511.399,175.787,464.988,350.097,510.258,15.479,162.121,15.479,351.584,310.288,360.140,19.630,19.924,19.630 +27,0.858,355.945,500.422,173.362,476.155,351.790,499.821,8.224,158.199,8.224,351.562,310.668,359.957,19.245,20.612,19.245 +28,0.889,356.580,489.560,171.900,486.800,351.972,489.453,1.332,153.435,1.332,350.952,311.261,360.170,19.274,20.125,19.274 +29,0.919,355.307,479.821,172.411,497.549,351.329,480.173,174.945,147.922,174.945,351.520,312.168,359.507,18.838,20.879,18.838 +30,0.950,353.869,470.794,173.244,506.469,349.697,471.615,168.864,142.476,168.864,351.220,313.082,359.724,19.832,20.417,19.832 +31,0.982,351.206,462.688,175.124,515.110,347.349,463.845,163.301,136.054,163.301,351.331,314.084,359.385,20.593,20.663,20.593 +32,1.015,348.809,455.510,177.976,523.281,344.691,457.150,158.281,128.660,158.281,349.839,315.003,358.704,20.257,20.303,20.257 +33,1.048,345.730,449.472,180.517,530.123,341.722,451.484,153.338,121.477,153.338,349.731,315.572,358.702,21.440,19.807,21.440 +34,1.080,342.614,444.501,183.473,536.208,338.735,446.793,149.421,113.678,149.421,349.301,316.188,358.313,20.349,20.153,20.349 +35,1.110,338.919,439.713,187.496,542.057,335.586,442.017,145.346,105.593,145.346,349.302,316.623,357.407,20.686,18.861,20.686 +36,1.141,335.602,435.696,191.500,547.064,332.619,438.008,142.224,97.322,142.224,349.146,317.047,356.694,19.187,18.950,19.187 +37,1.172,332.450,431.634,194.825,550.967,329.305,434.359,139.097,88.965,139.097,347.666,316.238,355.990,19.146,18.154,19.146 +38,1.202,332.450,431.634,194.825,550.967,329.305,434.359,139.097,88.965,139.097,347.666,316.238,355.990,19.146,18.154,19.146 +39,1.234,330.366,428.725,198.365,554.595,326.942,432.002,136.259,80.293,136.259,345.832,316.975,355.310,19.701,19.273,19.701 +40,1.265,327.403,425.928,201.564,557.315,324.316,429.148,133.781,71.657,133.781,346.013,316.552,354.935,19.434,19.847,19.434 +41,1.297,324.923,423.549,205.427,559.754,321.894,426.978,131.455,63.099,131.455,344.083,316.638,353.235,19.699,21.587,19.699 +42,1.330,322.735,421.372,207.795,560.968,319.911,424.815,129.352,53.973,129.352,343.841,315.260,352.746,19.858,20.880,19.858 +43,1.361,320.578,419.293,208.381,564.104,316.950,424.019,127.513,44.673,127.513,342.543,314.686,354.460,19.382,24.405,19.382 +44,1.392,318.316,417.367,210.638,564.919,314.944,422.050,125.754,35.754,125.754,342.240,315.038,353.780,19.120,24.833,19.120 +45,1.423,316.773,415.871,212.703,565.749,313.423,420.766,124.380,27.646,124.380,341.199,314.006,353.062,19.112,25.309,19.112 +46,1.455,315.618,414.215,214.450,566.650,311.956,419.804,123.232,18.435,123.232,339.171,313.698,352.534,18.691,24.982,18.691 +47,1.486,314.320,412.769,215.304,567.434,310.325,419.139,122.096,8.383,122.096,337.197,313.832,352.236,19.329,24.722,19.329 +48,1.518,314.299,411.828,216.492,567.742,310.090,418.695,121.504,179.409,121.504,335.870,313.117,351.978,19.197,22.421,19.197 +49,1.550,314.457,410.084,216.530,568.178,309.354,418.547,121.088,170.311,121.088,332.376,314.354,352.140,19.155,22.119,19.155 +50,1.584,314.715,407.685,216.448,568.272,308.530,418.199,120.466,160.602,120.466,327.687,315.067,352.082,18.760,20.499,18.760 +51,1.616,316.506,404.828,216.246,568.450,308.717,418.232,120.160,151.356,120.160,321.676,316.044,352.682,20.073,19.875,20.073 +52,1.649,319.010,398.373,216.124,568.889,307.535,418.218,120.036,141.759,120.036,306.538,317.006,352.385,18.426,19.360,18.426 +53,1.680,329.382,382.029,215.644,569.223,307.668,418.219,120.964,132.230,120.964,269.253,318.043,353.661,17.150,19.320,17.150 +54,1.711,349.132,350.279,215.280,569.999,307.876,419.041,120.964,122.619,120.964,193.793,318.277,354.171,16.978,19.204,16.978 +55,1.741,312.124,414.382,214.279,569.474,308.992,419.638,120.784,113.318,120.784,342.160,319.466,354.397,17.602,20.203,17.602 +56,1.772,312.003,416.085,215.136,569.908,309.657,419.925,121.430,104.158,121.430,345.532,320.396,354.532,18.393,19.751,18.393 +57,1.803,312.003,416.085,215.136,569.908,309.657,419.925,121.430,104.158,121.430,345.532,320.396,354.532,18.393,19.751,18.393 +58,1.833,312.882,416.344,214.104,569.171,310.382,420.294,122.323,94.642,122.323,345.223,319.385,354.574,18.782,18.550,18.782 +59,1.865,314.346,417.731,212.629,568.489,311.946,421.332,123.690,85.030,123.690,346.410,318.840,355.066,18.582,19.968,18.582 +60,1.897,316.628,417.891,211.713,567.317,313.693,422.092,124.935,75.641,124.935,344.659,318.691,354.909,19.048,20.150,19.048 +61,1.929,318.649,418.999,211.536,565.375,315.926,422.675,126.529,66.075,126.529,344.458,318.717,353.607,19.375,21.185,19.375 +62,1.960,321.014,419.732,208.939,562.710,317.971,423.636,127.942,56.372,127.942,343.536,316.181,353.437,19.662,20.518,19.662 +63,1.990,323.763,421.801,206.451,560.143,320.565,425.615,129.987,46.420,129.987,342.858,314.899,352.812,19.946,20.716,19.946 +64,2.021,326.624,423.160,202.180,558.260,322.438,427.798,132.064,36.870,132.064,342.352,314.600,354.846,19.791,23.800,19.791 +65,2.055,329.134,425.570,199.928,554.755,325.204,429.582,134.405,28.018,134.405,342.936,312.706,354.168,19.583,24.710,19.583 +66,2.087,332.884,427.513,197.020,550.490,328.158,431.937,136.888,18.726,136.888,340.563,312.114,353.511,20.161,24.447,20.161 +67,2.118,337.403,428.728,193.234,547.405,330.403,434.708,139.497,8.337,139.497,336.576,311.705,354.990,19.976,21.665,19.976 +68,2.150,343.048,430.166,189.503,542.338,333.285,437.665,142.472,179.497,142.472,330.955,311.093,355.576,19.700,19.210,19.700 +69,2.182,354.333,432.474,186.466,538.165,337.648,443.678,146.117,170.910,146.117,316.172,311.873,356.368,23.045,19.828,23.045 +70,2.216,372.023,426.236,183.017,533.402,338.766,445.835,149.490,163.179,149.490,280.077,312.251,357.282,17.846,20.280,17.846 +71,2.247,410.291,415.548,180.270,528.886,341.123,450.396,153.260,155.669,153.260,203.031,312.273,357.933,17.657,19.697,17.657 +72,2.277,350.423,453.175,177.229,522.385,344.037,455.957,156.458,149.233,156.458,344.982,313.151,358.913,19.214,20.358,19.214 +73,2.309,350.648,459.542,175.808,517.207,346.394,461.017,160.880,142.537,160.880,350.156,313.447,359.161,19.766,19.602,19.766 +74,2.339,352.174,466.749,173.750,509.750,348.575,467.663,165.750,135.000,165.750,352.185,312.541,359.612,20.092,20.506,20.092 +75,2.369,352.174,466.749,173.750,509.750,348.575,467.663,165.750,135.000,165.750,352.185,312.541,359.612,20.092,20.506,20.092 +76,2.400,354.688,474.026,172.769,501.700,350.671,474.662,171.012,126.585,171.012,351.750,313.415,359.883,19.961,19.255,19.961 +77,2.434,356.456,482.702,172.373,492.475,351.837,482.957,176.842,118.535,176.842,350.178,312.848,359.431,18.806,18.932,18.806 +78,2.467,357.082,492.321,173.343,482.857,352.614,492.103,2.793,110.082,2.793,350.072,312.017,359.018,18.612,20.036,18.612 +79,2.498,357.114,501.281,175.476,472.312,352.594,500.566,8.989,101.929,8.989,349.563,311.077,358.714,20.329,20.436,20.329 +80,2.529,355.297,512.224,178.074,461.195,350.535,510.888,15.662,94.343,15.662,349.054,309.312,358.946,19.077,18.554,19.077 +81,2.561,352.485,522.845,182.127,450.526,347.517,520.779,22.580,86.067,22.580,348.614,308.129,359.375,19.637,17.976,19.637 +82,2.593,348.902,530.428,188.021,439.685,344.489,527.895,29.846,78.311,29.846,349.051,306.948,359.228,26.064,18.741,26.064 +83,2.623,343.114,542.004,199.700,445.480,343.586,542.366,37.476,68.725,37.476,347.467,273.024,346.276,25.052,18.192,25.052 +84,2.654,336.137,553.890,212.346,440.449,337.374,555.156,45.674,60.164,45.674,342.382,260.594,338.842,24.173,20.896,24.173 +85,2.684,363.544,618.601,223.486,427.618,323.823,565.501,53.202,51.843,53.202,208.398,265.214,341.023,18.878,19.546,18.878 +86,2.715,312.025,570.633,235.000,419.500,312.694,571.910,62.381,45.000,62.381,345.007,266.579,342.122,22.211,21.920,22.211 +87,2.748,298.607,574.065,243.542,404.392,297.996,572.316,70.741,34.743,70.741,349.270,286.315,352.975,21.440,20.251,21.440 +88,2.779,284.445,577.498,248.275,395.932,283.442,572.609,78.403,26.398,78.403,350.296,307.229,360.279,23.108,18.215,23.108 +89,2.810,273.077,578.364,261.870,394.962,272.910,573.963,87.825,17.805,87.825,349.773,308.321,358.582,23.173,17.256,23.173 +90,2.840,256.585,578.148,276.155,395.118,257.052,573.150,95.336,9.246,95.336,348.034,309.392,358.074,22.649,17.674,22.649 +91,2.871,244.795,575.322,290.489,396.840,246.104,570.137,104.165,0.735,104.165,347.083,311.051,357.779,19.918,17.870,19.918 +92,2.901,244.795,575.322,290.489,396.840,246.104,570.137,104.165,0.735,104.165,347.083,311.051,357.779,19.918,17.870,19.918 +93,2.930,233.192,570.370,304.282,401.080,235.239,565.502,112.812,172.278,112.812,346.096,313.638,356.659,19.393,17.568,19.393 +94,2.961,222.302,564.486,316.627,405.931,225.436,559.240,120.849,163.571,120.849,344.538,315.800,356.760,19.843,18.273,19.843 +95,2.992,212.279,557.421,327.096,412.577,216.557,552.100,128.797,154.824,128.797,342.345,317.220,355.999,19.607,20.352,19.607 +96,3.023,202.379,550.335,335.969,420.169,208.953,544.191,136.935,147.420,136.935,336.964,318.211,354.961,19.086,18.879,19.086 +97,3.056,138.487,583.302,343.416,428.300,202.878,535.920,143.653,140.168,143.653,194.065,318.044,353.957,17.385,18.863,17.385 +98,3.087,172.130,543.885,349.235,437.887,198.543,528.968,150.544,132.423,150.544,291.334,317.965,352.004,20.365,19.316,20.365 +99,3.118,179.823,525.772,353.731,448.431,193.945,519.745,156.888,124.670,156.888,319.200,318.887,349.909,20.246,18.800,20.246 +100,3.149,180.634,514.724,357.346,458.471,191.351,511.459,163.057,114.624,163.057,326.060,317.226,348.465,20.253,21.325,20.253 +101,3.181,180.371,504.572,360.196,469.193,189.523,502.829,169.216,105.524,169.216,329.271,317.265,347.904,19.506,23.392,19.506 +102,3.212,180.232,495.235,361.988,479.610,188.968,494.494,175.150,96.340,175.150,329.785,317.711,347.318,18.829,24.847,18.829 +103,3.243,181.019,486.743,362.064,489.354,189.007,486.864,0.868,87.274,0.868,330.174,317.497,346.151,18.362,24.163,18.362 +104,3.273,182.648,479.075,362.217,498.301,189.985,479.838,5.935,77.735,5.935,331.683,319.324,346.436,19.041,24.429,19.041 +105,3.305,184.738,472.263,361.424,506.639,191.473,473.560,10.894,68.629,10.894,332.562,320.550,346.279,18.999,23.484,18.999 +106,3.334,184.738,472.263,361.424,506.639,191.473,473.560,10.894,68.629,10.894,332.562,320.550,346.279,18.999,23.484,18.999 +107,3.366,186.283,465.648,359.441,514.654,192.953,467.479,15.356,59.594,15.356,332.239,322.205,346.073,18.776,21.613,18.776 +108,3.398,187.564,459.053,357.752,521.379,195.194,461.807,19.845,50.425,19.845,330.029,323.403,346.254,18.812,20.371,18.812 +109,3.431,189.694,450.217,355.554,526.939,198.670,454.154,23.682,41.522,23.682,326.213,325.122,345.815,25.192,19.747,25.192 +110,3.462,181.181,444.221,353.884,531.409,199.287,453.506,27.150,33.036,27.150,305.527,325.399,346.223,17.705,20.048,17.705 +111,3.494,172.148,431.098,351.995,535.629,202.955,447.518,28.058,24.102,28.058,276.117,324.411,345.936,22.803,20.466,22.803 +112,3.524,191.672,434.507,349.468,538.817,205.472,443.838,34.066,15.536,34.066,311.657,324.222,344.975,28.457,20.984,28.457 +113,3.556,196.214,435.147,346.547,543.155,206.648,442.302,34.439,7.696,34.439,319.523,323.867,344.827,25.543,21.105,25.543 +114,3.587,201.161,431.662,344.018,546.273,209.681,438.383,38.264,178.636,38.264,322.880,322.313,344.584,25.302,21.684,25.302 +115,3.617,203.559,430.523,341.458,549.096,211.123,436.893,40.101,169.992,40.101,324.161,322.372,343.938,24.477,23.403,24.477 +116,3.649,204.210,429.492,339.050,551.650,211.737,436.002,40.855,161.565,40.855,323.989,321.604,343.893,25.287,24.666,25.287 +117,3.680,207.348,426.135,336.800,553.600,214.310,432.772,43.630,153.435,43.630,324.824,321.099,344.062,25.516,25.044,25.516 +118,3.711,208.750,424.750,334.834,555.264,215.525,431.525,45.000,144.782,45.000,324.562,320.732,343.723,25.456,25.134,25.456 +119,3.743,208.500,425.500,333.025,556.582,215.152,432.152,45.000,136.548,45.000,323.855,320.565,342.669,24.042,24.797,24.042 +120,3.774,210.605,423.149,331.537,557.829,216.943,429.906,46.831,128.660,46.831,324.871,320.781,343.398,24.352,24.675,24.352 +121,3.806,211.246,423.063,330.694,559.114,217.601,429.988,47.459,120.411,47.459,324.406,321.250,343.206,23.595,24.748,23.595 +122,3.837,212.310,422.491,329.469,559.988,218.567,429.374,47.726,112.036,47.726,323.892,322.379,342.495,24.822,22.931,24.822 +123,3.868,212.310,422.491,329.469,559.988,218.567,429.374,47.726,112.036,47.726,323.892,322.379,342.495,24.822,22.931,24.822 +124,3.897,212.408,422.490,329.253,560.198,218.373,429.132,48.071,104.226,48.071,325.346,321.860,343.201,24.296,22.240,24.296 +125,3.930,212.075,422.685,329.149,560.792,218.417,429.740,48.042,96.399,48.042,324.006,322.464,342.979,23.482,20.962,23.482 +126,3.961,211.295,422.083,329.249,560.978,217.988,429.421,47.635,88.315,47.635,324.488,322.361,344.352,24.170,19.315,24.170 +127,3.992,210.109,422.637,330.326,560.450,217.294,430.281,46.771,81.203,46.771,323.540,323.506,344.521,24.205,18.647,24.205 +128,4.023,208.859,423.237,331.902,559.450,216.816,431.428,45.830,74.268,45.830,321.198,323.902,344.036,24.142,18.600,24.142 +129,4.056,207.250,423.750,333.992,558.207,216.050,432.550,45.000,67.834,45.000,319.612,324.578,344.502,24.749,18.693,24.749 +130,4.090,205.274,424.914,336.179,556.142,214.890,434.037,43.493,62.152,43.493,317.548,324.399,344.060,24.833,18.335,24.833 +131,4.122,201.641,427.835,338.901,553.420,211.805,436.547,40.601,57.225,40.601,318.345,324.573,345.117,24.296,19.120,24.296 +132,4.153,198.227,431.179,341.660,550.378,209.076,439.744,38.290,52.842,38.290,317.588,324.635,345.234,22.307,18.699,22.307 +133,4.186,194.843,434.993,344.618,546.675,206.184,443.328,36.314,49.244,36.314,317.354,324.851,345.503,18.679,18.424,18.679 +134,4.218,192.837,439.378,347.571,542.026,203.754,446.491,33.085,46.375,33.085,319.239,324.757,345.299,18.865,18.142,18.865 +135,4.251,192.314,444.003,350.992,536.935,201.994,449.352,28.926,43.966,28.926,323.425,325.318,345.544,22.825,18.724,22.825 +136,4.283,190.776,447.473,354.009,530.536,200.039,451.861,25.346,42.534,25.346,325.155,325.205,345.655,25.971,18.598,25.971 +137,4.316,186.848,457.144,357.027,523.531,195.849,460.569,20.831,41.682,20.831,326.802,325.450,346.065,18.916,18.702,18.916 +138,4.348,184.566,465.146,360.115,515.590,193.520,467.623,15.461,41.269,15.461,328.126,324.549,346.707,19.051,19.757,19.051 +139,4.380,183.398,473.247,361.914,507.034,191.517,474.679,10.008,41.634,10.008,330.366,324.127,346.855,19.116,19.433,19.116 +140,4.411,182.685,481.906,363.012,497.487,190.064,482.433,4.086,42.138,4.086,332.367,323.698,347.162,18.809,20.057,18.809 +141,4.442,182.393,490.501,362.994,486.542,189.406,490.287,178.255,42.983,178.255,333.211,323.470,347.243,18.205,21.653,18.205 +142,4.472,183.628,501.067,362.241,475.298,189.885,500.109,171.298,44.125,171.298,335.592,321.815,348.252,19.165,22.587,19.165 +143,4.503,183.628,501.067,362.241,475.298,189.885,500.109,171.298,44.125,171.298,335.592,321.815,348.252,19.165,22.587,19.165 +144,4.533,185.739,511.578,360.571,463.909,191.762,509.873,164.189,45.616,164.189,337.370,320.384,349.890,20.078,23.143,20.078 +145,4.568,188.799,522.027,356.126,451.937,194.358,519.663,156.965,46.655,156.965,338.658,319.724,350.740,20.659,23.803,20.659 +146,4.599,193.334,532.930,350.440,440.972,198.696,529.802,149.744,47.470,149.744,339.249,318.019,351.665,20.803,24.867,20.803 +147,4.631,199.354,542.169,342.887,430.099,203.899,538.634,142.125,48.652,142.125,341.176,316.080,352.691,19.646,24.744,19.646 +148,4.664,206.943,551.414,339.696,426.909,210.742,547.492,134.091,49.686,134.091,341.748,296.015,352.666,18.899,25.625,18.899 +149,4.695,216.463,560.409,333.749,423.799,218.685,557.314,125.676,51.033,125.676,343.509,279.252,351.128,19.808,24.995,19.808 +150,4.728,227.824,567.436,322.534,418.199,228.570,565.962,116.854,52.217,116.854,345.242,273.029,348.547,19.819,24.421,19.819 +151,4.760,239.560,573.171,312.231,416.954,239.217,574.216,108.199,53.271,108.199,346.598,261.399,344.398,18.947,24.642,18.947 +152,4.792,251.433,577.967,298.095,415.432,250.986,580.774,99.046,54.462,99.046,347.067,256.791,341.383,22.355,23.366,22.355 +153,4.824,268.134,580.612,282.856,414.519,268.081,583.703,90.971,55.261,90.971,345.001,255.951,338.819,22.895,22.505,22.895 +154,4.855,282.709,582.334,266.976,416.194,282.978,584.235,81.951,56.547,81.951,341.091,255.456,337.252,23.193,21.052,23.193 +155,4.887,297.721,584.820,249.356,419.092,296.523,581.096,72.167,57.475,72.167,329.504,259.302,337.330,20.877,19.955,20.877 +156,4.918,325.788,602.841,233.810,422.616,311.051,573.740,63.142,58.671,63.142,274.198,263.947,339.437,18.432,19.238,18.432 +157,4.949,329.878,571.585,221.470,432.891,325.993,565.989,55.222,59.765,55.222,324.259,260.432,337.883,21.173,20.046,21.173 +158,4.980,336.250,552.750,209.238,438.800,336.760,553.260,45.000,60.108,45.000,343.654,267.549,342.213,24.749,20.080,24.749 +159,5.011,344.393,540.646,196.517,442.712,342.911,539.559,36.265,60.856,36.265,346.970,284.582,350.646,25.375,19.392,25.375 +160,5.043,350.167,528.245,185.389,444.080,345.450,525.738,27.999,62.447,27.999,348.640,307.337,359.323,25.217,22.897,25.217 +161,5.074,354.136,518.770,180.148,455.937,349.046,516.928,19.892,62.858,19.892,348.320,306.850,359.146,19.852,20.574,19.852 +162,5.106,357.012,506.785,176.125,468.425,351.581,505.626,12.048,63.178,12.048,347.605,307.682,358.712,19.691,19.974,19.691 +163,5.138,357.897,495.268,174.426,480.320,352.860,494.859,4.648,63.877,4.648,347.941,307.722,358.049,18.994,19.770,18.994 +164,5.168,357.897,495.268,174.426,480.320,352.860,494.859,4.648,63.877,4.648,347.941,307.722,358.049,18.994,19.770,18.994 +165,5.198,358.054,483.774,173.990,492.044,352.579,484.006,177.578,64.330,177.578,346.578,308.679,357.538,18.895,19.843,18.895 +166,5.230,356.522,473.167,174.968,503.311,351.212,474.041,170.647,64.852,170.647,346.554,309.240,357.316,19.908,19.538,19.908 +167,5.262,353.621,463.424,177.159,513.785,348.834,464.786,164.118,65.433,164.118,347.107,310.261,357.061,20.480,19.853,20.480 +168,5.295,349.998,454.766,180.226,523.399,345.386,456.642,157.871,65.872,157.871,346.325,311.607,356.283,21.275,19.593,21.275 +169,5.327,345.895,447.357,184.022,532.490,341.507,449.681,152.091,66.150,152.091,345.926,312.631,355.857,20.014,19.727,20.014 +170,5.358,341.266,440.383,188.529,540.336,337.303,442.987,146.689,66.525,146.689,346.101,313.559,355.586,19.747,19.676,19.747 +171,5.390,336.443,434.529,193.164,547.429,332.581,437.581,141.680,66.580,141.680,345.143,314.477,354.985,19.753,20.148,19.753 +172,5.422,331.209,429.583,198.796,553.866,328.019,432.563,136.956,66.903,136.956,345.743,316.047,354.474,19.656,20.209,19.656 +173,5.455,325.884,424.982,203.995,559.864,322.650,428.528,132.368,66.956,132.368,344.396,317.492,353.993,19.486,20.299,19.486 +174,5.488,320.220,420.617,209.265,564.618,317.270,424.415,127.836,67.054,127.836,344.338,318.300,353.956,19.460,20.199,19.460 +175,5.521,314.784,417.510,214.342,568.854,312.156,421.417,123.930,66.854,123.930,344.440,319.343,353.858,18.948,20.706,18.948 +176,5.552,309.639,414.846,220.240,571.977,307.464,418.610,120.027,67.148,120.027,344.171,319.225,352.864,18.666,20.642,18.666 +177,5.584,305.200,412.600,225.687,574.861,303.096,416.807,116.565,67.036,116.565,342.566,319.860,351.973,18.783,20.506,18.783 +178,5.616,300.487,410.931,230.353,577.189,298.709,415.108,113.051,66.349,113.051,342.728,319.451,351.809,19.088,20.767,19.088 +179,5.647,295.360,408.889,235.554,579.307,293.741,413.464,109.489,65.961,109.489,341.802,319.828,351.508,18.784,20.460,18.784 +180,5.679,291.326,407.906,240.150,580.964,289.917,412.637,106.587,64.983,106.587,341.185,320.487,351.058,18.882,20.721,18.882 +181,5.709,287.078,407.545,244.604,582.482,285.983,412.042,103.681,64.179,103.681,341.527,320.689,350.783,18.960,21.168,18.960 +182,5.741,282.342,406.327,249.655,583.651,281.452,411.165,100.421,62.850,100.421,340.949,321.133,350.786,19.060,20.375,19.060 +183,5.772,278.401,405.578,253.802,584.528,277.699,410.737,97.757,61.661,97.757,340.441,321.375,350.854,19.004,20.827,19.004 +184,5.803,278.401,405.578,253.802,584.528,277.699,410.737,97.757,61.661,97.757,340.441,321.375,350.854,19.004,20.827,19.004 +185,5.833,275.004,405.211,257.928,585.124,274.488,410.564,95.505,59.785,95.505,339.931,321.615,350.687,18.253,21.629,18.253 +186,5.865,271.134,404.763,262.338,585.421,270.849,410.597,92.793,57.572,92.793,338.378,321.819,350.061,18.125,22.204,18.125 +187,5.898,267.573,404.963,266.071,585.754,267.532,410.860,90.395,55.125,90.395,338.006,322.118,349.800,18.069,23.816,18.069 +188,5.931,264.718,405.614,271.082,584.977,264.880,410.994,88.277,51.927,88.277,337.419,322.331,348.183,18.443,21.045,18.443 +189,5.962,261.343,405.185,274.596,584.664,261.732,410.767,86.021,48.786,86.021,337.549,321.820,348.741,18.304,22.225,18.304 +190,5.995,258.254,405.518,278.814,583.664,258.853,411.002,83.766,44.728,83.766,336.586,321.767,347.618,18.420,21.461,18.420 +191,6.027,255.409,406.385,281.798,583.925,256.209,411.768,81.545,40.914,81.545,337.214,322.327,348.097,18.874,22.822,18.874 +192,6.059,252.652,407.036,285.189,583.076,253.649,412.340,79.351,36.737,79.351,336.454,322.810,347.249,19.546,23.717,19.546 +193,6.090,249.712,407.634,288.800,582.227,250.906,412.885,77.196,32.137,77.196,336.288,322.546,347.058,19.902,23.981,19.902 +194,6.123,246.779,407.869,292.590,581.279,248.299,413.503,74.908,27.096,74.908,335.369,321.628,347.041,20.579,25.051,20.579 +195,6.155,243.461,407.952,296.086,580.024,245.429,414.235,72.607,22.011,72.607,333.536,322.575,346.704,20.707,25.269,20.707 +196,6.187,240.252,408.448,300.402,578.189,242.632,415.081,70.263,17.067,70.263,331.975,321.144,346.070,21.139,24.578,21.139 +197,6.217,237.149,409.641,304.205,577.008,239.934,416.566,68.088,11.689,68.088,330.744,320.860,345.672,22.199,24.785,22.199 +198,6.251,233.622,410.402,307.770,574.997,236.908,417.571,65.376,6.159,65.376,329.498,320.699,345.270,22.234,24.462,22.234 +199,6.283,230.168,411.914,311.500,573.000,233.890,419.140,62.745,0.000,62.745,328.382,319.000,344.639,22.844,24.000,22.844 +200,6.314,226.375,413.283,315.827,570.683,230.686,420.738,59.959,174.560,59.959,327.628,319.886,344.851,23.394,24.745,23.394 +201,6.346,222.674,415.527,319.911,567.994,227.540,422.942,56.725,168.341,56.725,326.163,320.284,343.902,23.331,24.764,23.331 +202,6.377,218.416,417.324,323.980,564.937,223.933,424.795,53.556,162.420,53.556,325.758,320.006,344.334,23.700,24.823,23.700 +203,6.408,214.484,420.097,328.366,561.332,220.457,427.273,50.224,156.280,50.224,325.467,320.030,344.140,24.046,25.094,24.046 +204,6.439,210.580,423.090,332.671,557.427,217.169,430.063,46.621,150.154,46.621,324.612,320.016,343.800,25.086,25.381,25.086 +205,6.470,205.216,428.316,336.897,553.042,212.468,434.829,41.923,143.746,41.923,323.631,320.197,343.125,25.419,25.321,25.419 +206,6.500,205.216,428.316,336.897,553.042,212.468,434.829,41.923,143.746,41.923,323.631,320.197,343.125,25.419,25.321,25.419 +207,6.530,202.476,431.560,341.154,548.076,209.891,437.564,39.000,137.521,39.000,324.036,319.925,343.117,25.612,25.236,25.612 +208,6.565,197.920,436.689,345.235,542.205,205.723,442.019,34.330,131.139,34.330,324.520,319.476,343.420,25.318,24.775,25.318 +209,6.596,193.816,442.781,349.014,536.323,201.933,447.360,29.427,124.461,29.427,324.987,320.655,343.626,25.392,25.156,25.392 +210,6.627,190.405,448.760,352.905,529.214,198.755,452.592,24.656,117.801,24.656,325.748,319.876,344.122,25.686,25.122,25.686 +211,6.660,186.245,458.453,356.211,521.081,194.661,461.513,19.983,110.973,19.983,326.450,319.497,344.361,18.967,25.102,18.967 +212,6.691,183.735,467.059,358.954,512.488,192.124,469.156,14.036,104.300,14.036,327.423,319.186,344.717,19.160,25.080,19.160 +213,6.723,182.064,475.565,361.063,503.220,190.501,476.815,8.427,98.005,8.427,328.122,318.909,345.180,18.685,24.973,18.685 +214,6.754,181.503,484.926,362.160,493.031,189.554,485.224,2.121,91.081,2.121,329.441,318.189,345.554,18.765,23.864,18.765 +215,6.787,181.010,494.137,362.099,482.490,188.931,493.576,175.950,84.289,175.950,331.153,317.218,347.036,18.017,24.577,18.017 +216,6.818,182.694,505.478,360.835,471.259,189.897,504.027,168.616,77.471,168.616,333.390,317.369,348.086,20.186,24.513,20.186 +217,6.850,185.462,515.869,358.241,459.746,192.045,513.647,161.346,71.075,161.346,335.519,317.189,349.413,20.193,24.730,20.193 +218,6.884,189.990,526.512,354.235,449.387,195.654,523.769,154.156,64.269,154.156,337.704,313.982,350.290,21.220,24.876,21.220 +219,6.917,195.635,536.442,348.340,437.968,200.517,533.251,146.837,57.662,146.837,340.068,313.231,351.733,20.414,24.849,20.414 +220,6.949,202.447,545.939,340.510,426.808,206.863,542.103,139.014,51.483,139.014,341.313,312.634,353.012,19.849,24.575,19.849 +221,6.981,210.604,554.957,330.000,416.000,214.448,550.522,130.914,45.000,130.914,342.932,313.955,354.670,19.799,24.042,19.799 +222,7.012,220.645,563.219,319.195,407.256,223.915,558.013,122.137,38.660,122.137,344.388,312.660,356.684,19.128,24.519,19.128 +223,7.042,232.488,570.075,305.583,401.782,234.581,565.232,113.372,32.237,113.372,345.859,311.723,356.411,19.664,20.971,19.664 +224,7.073,244.504,575.141,290.849,397.811,245.667,570.596,104.355,25.974,104.355,347.800,311.765,357.184,19.761,18.372,19.761 +225,7.104,259.668,578.066,276.233,395.246,260.161,573.566,96.248,19.714,96.248,348.966,311.246,358.020,22.863,18.192,22.863 +226,7.135,259.668,578.066,276.233,395.246,260.161,573.566,96.248,19.714,96.248,348.966,311.246,358.020,22.863,18.192,22.863 +227,7.165,273.765,578.829,261.311,394.782,273.540,573.874,87.397,13.570,87.397,349.003,310.966,358.924,23.158,18.201,23.158 +228,7.198,286.297,577.054,246.024,396.819,285.298,572.516,77.584,7.516,77.584,350.772,310.847,360.065,22.677,18.210,22.677 +229,7.230,301.874,572.002,231.524,401.593,300.274,567.920,68.602,1.507,68.602,351.122,309.393,359.891,21.467,17.889,21.467 +230,7.261,315.578,564.796,218.051,408.157,313.334,561.019,59.290,175.541,59.290,351.386,309.478,360.172,22.962,18.101,22.962 +231,7.293,327.220,555.835,205.832,416.816,324.521,552.584,50.295,169.641,50.295,352.100,310.098,360.550,24.207,18.405,24.207 +232,7.325,337.355,545.495,195.537,426.848,334.144,542.663,41.406,163.788,41.406,352.558,310.161,361.120,24.942,18.469,24.942 +233,7.356,345.298,534.108,187.067,438.383,341.594,531.720,32.809,157.694,32.809,352.086,310.643,360.901,25.454,18.551,25.454 +234,7.389,350.688,522.044,180.927,450.735,347.216,520.453,24.624,151.896,24.624,352.793,311.293,360.432,26.098,19.859,26.098 +235,7.421,353.487,513.370,176.671,463.003,349.760,512.255,16.650,146.213,16.650,352.105,311.739,359.887,19.591,20.429,19.591 +236,7.453,355.837,501.879,173.443,474.929,351.758,501.231,9.030,140.862,9.030,352.208,312.191,360.468,19.503,19.021,19.503 +237,7.486,356.582,490.871,172.240,486.238,352.132,490.733,1.776,134.772,1.776,350.986,312.567,359.890,18.735,18.131,18.735 +238,7.519,355.306,480.297,172.251,497.590,351.245,480.654,174.976,128.157,174.976,351.425,313.573,359.579,19.518,19.096,19.518 +239,7.552,353.479,470.475,173.714,508.135,349.507,471.294,168.347,122.097,168.347,351.110,314.078,359.221,20.537,19.028,20.537 +240,7.585,351.275,461.172,176.059,517.765,346.927,462.563,162.255,116.131,162.255,349.997,314.430,359.127,20.687,19.074,20.687 +241,7.616,347.620,453.344,179.471,526.708,343.621,455.092,156.384,109.756,156.384,349.456,315.421,358.184,20.903,19.128,20.903 +242,7.650,344.446,447.491,183.605,534.759,340.714,449.539,151.232,103.186,151.232,348.947,316.014,357.462,21.021,19.328,21.021 +243,7.680,339.549,440.343,187.880,542.044,336.055,442.693,146.067,96.582,146.067,348.378,316.401,356.799,19.656,18.951,19.656 +244,7.711,335.047,434.547,192.500,548.000,331.834,437.105,141.480,90.000,141.480,347.940,316.000,356.155,19.225,19.000,19.225 +245,7.742,331.220,430.074,196.860,553.900,327.743,433.288,137.251,83.367,137.251,346.493,316.750,355.963,19.919,19.612,19.919 +246,7.772,326.559,425.657,202.002,558.759,323.315,429.138,132.979,76.472,132.979,345.552,317.233,355.068,19.670,19.562,19.670 +247,7.805,321.476,421.732,207.600,563.270,318.564,425.319,129.083,68.990,129.083,344.837,318.127,354.078,19.158,20.165,19.158 +248,7.835,321.476,421.732,207.600,563.270,318.564,425.319,129.083,68.990,129.083,344.837,318.127,354.078,19.158,20.165,19.158 +249,7.868,317.302,418.433,212.677,566.102,314.762,421.996,125.487,62.423,125.487,344.447,316.744,353.200,19.285,20.950,19.285 +250,7.906,308.865,413.317,220.280,572.331,306.264,418.011,118.989,47.603,118.989,342.581,316.618,353.314,18.724,24.177,18.724 +251,7.948,304.764,411.428,224.405,574.522,302.274,416.553,115.907,40.280,115.907,340.837,316.511,352.231,19.070,24.865,19.070 +252,7.982,301.121,409.552,228.958,576.064,298.882,414.776,113.199,33.207,113.199,340.215,316.699,351.582,18.777,24.766,18.777 +253,8.015,297.596,407.911,233.137,577.203,295.537,413.402,110.556,26.147,110.556,338.834,317.089,350.564,18.844,25.673,18.844 +254,8.048,294.189,405.751,237.341,578.462,292.095,412.207,107.969,19.026,107.969,336.502,315.983,350.076,18.819,25.362,18.819 +255,8.087,291.116,404.315,241.156,579.053,289.156,411.266,105.751,9.335,105.751,334.587,315.627,349.033,18.854,25.899,18.854 +256,8.120,287.349,402.932,244.569,580.103,285.582,410.504,103.134,2.083,103.134,333.411,315.591,348.963,19.152,24.257,19.152 +257,8.151,283.805,402.058,247.910,580.964,282.258,410.158,100.812,175.030,100.812,331.942,315.765,348.435,19.202,23.650,19.202 +258,8.183,280.742,400.765,251.090,581.680,279.387,409.664,98.657,167.320,98.657,330.629,316.171,348.631,19.430,23.561,19.430 +259,8.216,277.456,400.171,254.091,582.234,276.364,409.478,96.688,158.791,96.688,329.605,316.775,348.347,18.803,23.738,18.803 +260,8.247,274.517,399.293,257.043,582.499,273.683,409.304,94.764,151.477,94.764,327.864,317.394,347.956,18.187,22.882,18.187 +261,8.278,271.662,398.085,260.140,583.020,271.079,409.459,92.936,143.130,92.936,325.009,318.200,347.787,18.284,21.800,18.284 +262,8.310,268.471,397.521,262.813,583.284,268.295,409.626,90.830,135.481,90.830,323.227,318.935,347.439,18.375,21.201,18.375 +263,8.340,265.556,396.947,265.106,582.944,265.773,409.433,89.004,126.235,89.004,321.969,320.196,346.946,18.241,20.534,18.241 +264,8.372,262.656,395.341,268.507,583.737,263.408,410.260,87.114,118.072,87.114,317.152,321.294,347.028,18.733,20.059,18.733 +265,8.405,258.935,393.247,271.922,584.110,260.455,410.883,85.073,109.891,85.073,311.740,321.829,347.144,18.311,20.050,18.311 +266,8.436,258.935,393.247,271.922,584.110,260.455,410.883,85.073,109.891,85.073,311.740,321.829,347.144,18.311,20.050,18.311 +267,8.467,255.593,390.627,275.412,584.879,258.137,411.707,83.118,101.614,83.118,305.524,323.622,347.990,18.555,20.373,18.555 +268,8.500,250.698,382.505,280.378,585.454,255.352,412.547,81.193,94.279,81.193,288.599,324.338,349.400,18.038,21.715,18.038 +269,8.533,242.366,359.850,283.129,584.682,252.612,412.946,79.077,85.601,79.077,240.665,324.580,348.815,17.622,18.254,17.622 +270,8.564,231.750,334.750,287.344,584.210,250.018,413.910,77.005,77.833,77.005,186.184,325.054,348.665,17.764,19.416,17.764 +271,8.595,244.076,400.624,291.136,583.381,248.026,414.416,74.020,69.269,74.020,319.914,325.479,348.608,19.607,19.227,19.607 +272,8.626,243.324,407.336,294.627,581.699,245.649,414.776,72.646,61.991,72.646,332.278,324.052,347.867,20.700,20.438,20.700 +273,8.659,239.946,408.732,299.924,579.686,242.466,415.807,70.396,53.181,70.396,332.293,324.199,347.314,20.363,20.022,20.363 +274,8.690,237.500,410.000,304.044,577.469,240.101,416.503,68.199,45.226,68.199,332.395,323.187,346.402,22.098,19.927,22.098 +275,8.722,234.700,412.364,307.795,575.840,237.206,417.869,65.526,37.972,65.526,333.944,323.806,346.042,22.289,21.035,22.289 +276,8.753,231.460,414.036,311.702,573.368,234.043,419.056,62.765,30.256,62.765,334.197,324.349,345.489,22.542,21.810,22.542 +277,8.786,227.289,414.572,316.129,571.161,230.937,420.864,59.895,21.954,59.895,330.960,323.497,345.507,22.935,22.806,22.935 +278,8.818,223.325,416.251,320.441,568.730,227.902,423.246,56.802,14.300,56.802,328.093,321.865,344.814,23.244,22.553,23.244 +279,8.852,219.276,418.263,324.612,565.532,224.434,425.306,53.784,6.582,53.784,327.183,321.597,344.644,24.053,22.925,24.053 +280,8.884,215.405,420.579,329.014,561.696,221.184,427.541,50.305,178.877,50.305,326.099,320.291,344.194,24.748,22.760,24.748 +281,8.915,211.298,423.720,333.303,557.723,217.666,430.500,46.798,171.254,46.798,325.198,320.917,343.801,25.399,23.721,25.399 +282,8.947,205.572,428.865,337.750,553.347,212.854,435.419,41.987,163.540,41.987,323.853,320.770,343.448,24.603,24.760,24.603 +283,8.977,202.385,431.551,342.077,548.045,210.202,437.874,38.964,156.114,38.964,323.525,320.545,343.634,25.612,24.831,25.612 +284,9.009,197.994,436.581,346.077,542.127,206.083,442.106,34.330,148.671,34.330,324.439,320.362,344.031,25.580,24.735,25.580 +285,9.045,193.535,442.179,350.098,535.622,202.167,447.083,29.604,141.340,29.604,324.861,319.844,344.717,25.155,24.832,25.155 +286,9.089,190.073,448.659,353.607,528.590,198.906,452.707,24.624,134.193,24.624,325.066,319.740,344.500,25.681,25.155,25.681 +287,9.124,185.698,458.336,356.560,520.920,194.768,461.608,19.836,126.870,19.836,325.355,320.400,344.638,19.230,25.200,19.230 +288,9.157,183.232,466.547,359.428,511.892,192.357,468.886,14.381,119.539,14.381,326.191,319.153,345.033,19.373,25.405,19.373 +289,9.194,180.950,475.850,361.287,502.323,190.213,477.173,8.130,112.329,8.130,327.108,318.686,345.822,18.668,25.223,18.668 +290,9.233,180.025,485.230,362.416,492.114,189.209,485.531,1.878,105.306,1.878,328.283,317.848,346.660,18.678,25.453,18.678 +291,9.266,180.144,494.874,362.149,481.244,189.003,494.192,175.601,98.427,175.601,329.488,316.985,347.258,18.330,24.840,18.330 +292,9.298,181.854,506.203,360.279,470.035,189.753,504.563,168.267,91.577,168.267,331.834,316.376,347.969,20.117,23.652,20.117 +293,9.330,184.713,516.561,357.526,458.903,191.979,514.085,161.184,84.623,161.184,333.645,316.085,348.996,19.836,23.953,19.836 +294,9.361,189.535,527.609,352.972,447.006,195.943,524.435,153.650,77.560,153.650,335.860,315.848,350.161,21.079,24.126,21.079 +295,9.392,195.192,537.538,350.435,445.848,199.647,534.568,146.310,70.769,146.310,338.644,293.536,349.353,20.524,24.154,20.524 +296,9.424,202.161,547.308,344.300,436.100,205.951,543.945,138.417,63.435,138.417,339.988,289.347,350.123,19.785,25.491,19.785 +297,9.456,210.846,555.795,335.982,425.851,213.711,552.430,130.412,56.555,130.412,342.448,288.174,351.286,19.653,25.280,19.653 +298,9.487,221.775,563.894,325.141,416.655,223.660,560.818,121.504,49.254,121.504,344.671,287.530,351.887,19.747,25.864,19.747 +299,9.519,233.166,570.544,312.638,407.311,234.796,566.672,112.834,42.825,112.834,345.759,290.188,354.160,19.257,24.525,19.257 +300,9.551,245.641,575.414,289.624,396.453,246.881,570.262,103.536,36.001,103.536,347.372,311.216,357.970,20.345,20.415,20.345 +301,9.585,258.151,577.826,274.758,394.533,258.534,572.936,94.485,28.936,94.485,348.440,310.711,358.250,22.636,19.197,22.636 +302,9.617,274.930,578.852,259.690,394.776,274.630,573.932,86.511,21.801,86.511,349.607,310.483,359.466,22.690,18.012,22.690 +303,9.651,287.447,576.861,245.223,397.147,286.367,572.169,77.037,14.651,77.037,349.954,309.974,359.583,22.337,18.015,22.337 +304,9.683,302.498,571.706,231.084,401.706,300.937,567.797,68.231,7.400,68.231,351.890,309.724,360.307,21.397,17.837,21.397 +305,9.715,314.774,564.790,218.500,408.500,312.887,561.599,59.400,0.000,59.400,352.238,309.000,359.651,22.240,17.000,22.240 +306,9.748,326.787,556.353,206.620,416.472,324.175,553.163,50.696,172.937,50.696,352.222,309.712,360.468,24.186,17.776,24.186 +307,9.779,336.344,546.755,196.292,425.628,333.020,543.745,42.166,165.466,42.166,352.296,310.225,361.265,24.152,18.428,24.152 +308,9.811,344.203,535.492,188.277,436.678,340.763,533.183,33.864,157.788,33.864,352.501,310.480,360.787,25.545,18.531,25.545 +309,9.841,349.856,524.160,182.177,448.685,346.467,522.510,25.959,150.255,25.959,352.522,311.203,360.060,25.589,19.722,25.589 +310,9.872,353.043,515.855,177.419,460.061,349.043,514.534,18.274,143.256,18.274,351.674,312.200,360.099,19.607,20.060,19.607 +311,9.905,355.545,502.588,174.242,471.750,351.706,501.847,10.934,135.909,10.934,352.081,311.963,359.902,23.620,18.831,23.620 +312,9.936,356.631,494.101,172.460,482.860,352.205,493.795,3.960,128.073,3.960,351.267,313.186,360.142,18.855,18.867,18.855 +313,9.967,356.631,494.101,172.460,482.860,352.205,493.795,3.960,128.073,3.960,351.267,313.186,360.142,18.855,18.867,18.855 +314,9.996,355.900,483.415,172.399,493.814,351.757,483.613,177.266,120.192,177.266,350.985,313.554,359.281,18.919,18.733,18.919 +315,10.027,354.638,473.757,173.454,504.187,350.443,474.434,170.831,112.405,170.831,350.440,313.847,358.938,19.935,18.677,19.935 +316,10.059,352.599,464.715,175.660,513.935,348.309,465.891,164.667,104.676,164.667,349.519,314.304,358.416,20.859,18.610,20.859 +317,10.091,349.332,456.447,178.670,522.900,345.344,457.973,159.057,96.860,159.057,349.201,314.425,357.741,20.627,18.207,20.627 +318,10.123,345.947,449.358,182.080,530.948,341.972,451.328,153.633,88.843,153.633,348.365,314.198,357.238,20.623,18.481,20.623 +319,10.153,342.277,443.183,186.516,537.760,338.738,445.348,148.550,81.003,148.550,347.857,314.631,356.153,20.093,18.379,20.093 +320,10.186,338.536,437.474,190.702,544.175,334.874,440.119,144.162,73.020,144.162,346.565,314.374,355.601,19.231,19.143,19.231 +321,10.219,334.483,432.207,195.396,550.108,330.671,435.432,139.764,64.815,139.764,344.698,315.302,354.683,19.378,19.682,19.378 +322,10.251,330.099,427.580,200.349,554.127,326.859,430.752,135.603,57.070,135.603,344.349,313.999,353.418,19.485,20.905,19.485 +323,10.282,325.365,423.381,202.838,559.758,321.467,427.803,131.394,48.478,131.394,343.074,314.173,354.863,20.371,24.333,20.371 +324,10.314,321.173,419.568,207.456,563.283,317.451,424.316,128.094,40.882,128.094,342.390,314.115,354.457,18.912,24.250,18.912 +325,10.344,317.072,416.856,211.972,566.264,313.668,421.758,124.778,32.661,124.778,341.462,314.237,353.399,18.937,24.997,18.937 +326,10.375,312.840,414.179,216.364,568.344,309.757,419.218,121.461,25.320,121.461,340.079,314.978,351.895,19.070,25.563,19.070 +327,10.408,309.287,411.472,220.994,570.988,306.123,417.290,118.540,18.083,118.540,338.139,313.719,351.386,19.049,25.278,19.049 +328,10.440,305.762,409.356,224.839,572.999,302.610,415.849,115.897,9.181,115.897,336.235,314.006,350.672,19.048,23.902,19.048 +329,10.470,305.762,409.356,224.839,572.999,302.610,415.849,115.897,9.181,115.897,336.235,314.006,350.672,19.048,23.902,19.048 +330,10.501,301.746,407.028,228.533,575.090,298.638,414.354,112.989,2.045,112.989,334.785,313.586,350.701,19.304,24.127,19.304 +331,10.534,298.240,405.337,232.190,576.244,295.364,413.036,110.483,174.560,110.483,333.555,314.340,349.992,19.144,22.991,19.144 +332,10.568,294.970,403.644,235.432,577.905,292.150,412.268,108.108,167.661,108.108,331.980,315.203,350.125,19.158,23.018,19.158 +333,10.599,292.270,402.232,238.650,578.704,289.633,411.373,106.091,159.677,106.091,330.782,315.813,349.811,18.939,22.610,18.939 +334,10.630,289.238,400.680,241.686,579.354,286.703,410.890,103.943,152.324,103.943,327.653,316.663,348.694,19.170,21.762,19.170 +335,10.661,285.828,398.677,244.961,580.440,283.441,410.415,101.497,146.689,101.497,324.608,317.258,348.566,19.399,21.036,19.399 +336,10.693,282.568,397.095,248.053,581.141,280.449,409.807,99.462,139.214,99.462,322.880,317.902,348.656,18.906,20.710,18.906 +337,10.724,279.335,396.009,250.832,581.871,277.525,409.649,97.559,133.294,97.559,320.954,318.478,348.473,18.360,19.706,18.360 +338,10.757,276.442,394.696,254.064,582.612,274.920,409.795,95.758,127.783,95.758,317.725,319.426,348.075,18.377,19.464,18.377 +339,10.789,273.161,393.139,257.697,583.350,272.098,409.691,93.674,122.525,93.674,315.277,320.290,348.450,18.357,19.490,18.357 +340,10.820,269.142,392.537,261.249,583.867,268.750,409.925,91.292,117.915,91.292,313.349,320.816,348.134,18.063,19.452,18.063 +341,10.852,265.934,391.953,265.172,584.190,266.150,410.064,89.318,113.902,89.318,311.978,321.251,348.203,18.177,19.563,18.177 +342,10.887,261.486,392.828,269.311,584.551,262.513,410.669,86.706,110.674,86.706,312.232,321.988,347.972,18.013,19.824,18.013 +343,10.919,257.588,392.688,273.423,584.650,259.446,411.099,84.237,108.015,84.237,311.144,322.899,348.153,18.521,19.932,18.521 +344,10.950,253.636,394.883,277.993,584.498,256.155,411.778,81.518,106.276,81.518,313.941,323.522,348.104,18.922,19.941,18.922 +345,10.982,249.385,395.923,282.727,583.621,252.670,412.349,78.690,105.030,78.690,314.178,323.557,347.681,19.612,20.040,19.612 +346,11.013,245.299,398.657,288.021,582.747,249.056,413.350,75.660,104.517,75.660,317.205,323.596,347.538,20.229,20.658,20.229 +347,11.044,241.230,401.480,292.201,581.172,245.262,414.246,72.474,104.084,72.474,319.852,324.272,346.626,20.728,20.619,20.728 +348,11.075,236.923,404.202,297.706,578.793,241.208,415.504,69.237,104.621,69.237,321.253,322.848,345.426,21.722,20.699,21.722 +349,11.106,232.709,407.046,303.651,576.557,237.291,417.161,65.628,105.721,65.628,322.941,322.668,345.150,22.611,20.649,22.611 +350,11.137,232.709,407.046,303.651,576.557,237.291,417.161,65.628,105.721,65.628,322.941,322.668,345.150,22.611,20.649,22.611 +351,11.166,227.968,410.177,309.500,574.000,232.998,419.563,61.811,107.038,61.811,323.218,323.058,344.516,22.611,20.942,22.611 +352,11.198,223.392,413.738,315.200,570.900,228.704,422.184,57.833,108.435,57.833,323.922,323.501,343.876,23.207,21.187,23.207 +353,11.230,218.286,416.849,321.448,567.161,224.263,424.978,53.673,109.787,53.673,324.061,323.289,344.242,23.672,22.606,23.672 +354,11.261,213.654,421.217,327.170,562.353,219.721,428.269,49.295,111.468,49.295,324.835,322.571,343.441,24.164,23.161,24.164 +355,11.293,209.000,425.000,333.351,556.937,215.572,431.572,45.000,113.070,45.000,325.269,322.094,343.857,25.456,24.347,25.456 +356,11.324,203.704,431.109,338.669,550.808,210.481,436.690,39.472,114.702,39.472,325.437,321.497,342.995,25.973,23.948,25.973 +357,11.355,199.020,436.856,343.737,544.117,206.038,441.657,34.380,116.288,34.380,325.996,321.569,343.003,26.149,24.521,26.149 +358,11.386,194.538,442.533,348.938,536.234,202.167,446.868,29.604,118.106,29.604,325.967,320.825,343.516,25.530,25.069,25.530 +359,11.418,189.546,450.425,353.298,527.804,197.832,454.009,23.385,120.069,23.385,325.914,320.390,343.970,26.395,25.006,26.395 +360,11.450,184.995,461.016,357.466,518.354,193.961,463.965,18.205,122.005,18.205,325.750,320.225,344.627,18.999,25.334,18.999 +361,11.482,181.663,470.640,360.306,508.207,191.254,472.613,11.622,124.046,11.622,325.929,320.059,345.514,18.867,25.328,18.867 +362,11.513,179.357,480.693,362.191,497.239,190.056,481.595,4.821,126.219,4.821,324.210,319.820,345.683,19.281,25.430,19.281 +363,11.543,178.019,490.658,362.558,485.725,189.204,490.327,178.308,128.171,178.308,324.449,319.695,346.829,18.051,24.510,18.051 +364,11.574,176.820,502.969,361.541,473.457,189.634,500.888,170.776,130.195,170.776,322.198,319.804,348.163,19.100,23.369,19.100 +365,11.605,175.995,516.273,358.290,460.265,191.433,511.580,163.091,132.477,163.091,316.866,318.699,349.137,19.885,20.718,19.885 +366,11.635,175.995,516.273,358.290,460.265,191.433,511.580,163.091,132.477,163.091,316.866,318.699,349.137,19.885,20.718,19.885 +367,11.664,174.928,531.774,354.131,447.165,195.540,522.284,155.277,134.588,155.277,305.562,318.231,350.944,21.108,19.463,21.108 +368,11.695,158.395,557.390,347.859,435.414,199.549,530.893,147.225,136.795,147.225,254.879,317.933,352.772,17.254,18.936,17.254 +369,11.727,146.526,592.890,339.495,424.072,206.161,540.578,138.743,139.152,138.743,195.471,317.551,354.126,17.383,18.746,17.383 +370,11.758,208.501,557.913,329.246,414.180,214.948,550.439,130.782,141.528,130.782,335.925,317.827,355.665,19.467,18.776,19.467 +371,11.791,220.933,565.232,317.702,405.952,225.015,558.576,121.517,143.587,121.517,341.509,317.273,357.125,19.752,19.649,19.752 +372,11.822,233.575,571.531,304.544,399.570,236.227,565.090,112.380,146.222,112.380,344.198,316.457,358.129,19.527,18.727,19.527 +373,11.855,246.524,576.050,290.217,395.537,247.879,570.102,102.839,148.551,102.839,347.018,315.713,359.218,20.525,18.768,20.525 +374,11.886,259.647,579.363,274.536,393.489,260.012,573.113,93.343,151.526,93.343,347.809,314.604,360.330,22.604,17.938,22.604 +375,11.919,277.360,579.343,259.499,395.019,276.909,573.996,85.179,153.601,85.179,348.882,313.963,359.614,23.255,18.359,23.255 +376,11.951,291.289,576.165,243.877,398.146,290.147,571.637,75.839,156.360,75.839,349.738,312.867,359.078,22.074,18.322,22.074 +377,11.985,305.127,571.034,229.124,403.458,303.361,567.003,66.337,159.204,66.337,350.376,312.125,359.179,20.871,18.163,20.871 +378,12.019,318.412,563.048,215.513,410.661,316.215,559.637,57.216,162.226,57.216,351.433,311.213,359.548,23.440,18.262,23.440 +379,12.053,329.954,554.026,203.312,419.145,326.938,550.645,48.262,165.530,48.262,351.788,310.442,360.851,24.537,18.054,24.537 +380,12.085,339.336,542.729,193.411,429.085,336.078,540.049,39.437,168.861,39.437,352.912,309.864,361.347,25.971,18.098,25.971 +381,12.116,346.591,531.701,185.390,440.730,342.852,529.450,31.038,171.870,31.038,352.594,309.713,361.324,25.735,18.809,25.735 +382,12.149,352.764,520.328,179.693,453.749,347.940,518.288,22.924,173.717,22.924,349.721,308.658,360.197,25.821,19.442,25.821 +383,12.179,355.338,511.948,175.488,462.732,349.605,510.373,15.360,177.478,15.360,349.141,307.759,361.033,19.131,20.403,19.131 +384,12.209,359.949,501.367,173.457,473.389,351.589,500.168,8.161,178.483,8.161,343.367,309.156,360.259,18.880,19.298,18.880 +385,12.241,412.558,491.509,172.000,484.497,351.971,489.753,1.660,179.657,1.660,238.871,308.060,360.095,17.906,18.155,17.906 +386,12.271,406.865,475.534,172.104,494.812,351.222,480.011,175.400,1.426,175.400,247.808,308.203,359.455,17.633,19.844,17.633 +387,12.302,406.865,475.534,172.104,494.812,351.222,480.011,175.400,1.426,175.400,247.808,308.203,359.455,17.633,19.844,17.633 +388,12.331,374.984,466.501,173.646,504.706,350.012,471.331,169.053,3.000,169.053,308.121,307.783,358.989,18.497,19.196,18.497 +389,12.361,364.131,458.025,176.153,513.936,347.779,463.118,162.699,5.590,162.699,323.694,308.149,357.948,20.473,18.842,20.473 +390,12.392,357.199,449.968,179.208,523.074,344.465,455.387,156.949,8.282,156.949,329.455,308.752,357.132,20.655,20.368,20.655 +391,12.424,350.108,444.032,183.180,530.952,341.150,448.918,151.390,12.575,151.390,335.516,309.020,355.925,20.431,20.143,20.431 +392,12.455,343.923,437.885,187.716,538.427,337.149,442.400,146.310,17.030,146.310,338.922,309.672,355.204,19.692,22.672,19.692 +393,12.486,337.708,433.284,192.447,545.861,332.745,437.219,141.582,21.413,141.582,342.199,310.470,354.867,19.804,23.913,19.804 +394,12.517,332.293,428.449,197.250,552.004,328.016,432.453,136.888,26.381,136.888,342.613,311.722,354.331,19.602,24.339,19.602 +395,12.550,327.163,423.649,202.500,557.843,323.048,428.151,132.436,30.669,132.436,341.918,312.127,354.117,19.632,24.424,19.632 +396,12.581,321.570,419.662,207.347,562.718,317.856,424.394,128.132,35.042,128.132,342.049,313.851,354.080,19.539,24.785,19.539 +397,12.612,316.165,416.748,212.508,567.090,312.849,421.610,124.295,39.806,124.295,341.682,314.587,353.451,19.344,24.583,19.344 +398,12.642,311.156,414.316,218.065,570.903,308.264,419.200,120.637,44.421,120.637,341.631,315.382,352.985,18.796,24.283,18.796 +399,12.673,306.284,412.355,222.841,574.065,303.798,417.214,117.096,49.399,117.096,342.104,316.827,353.020,19.047,23.971,19.047 +400,12.703,306.284,412.355,222.841,574.065,303.798,417.214,117.096,49.399,117.096,342.104,316.827,353.020,19.047,23.971,19.047 +401,12.733,301.530,410.971,229.493,575.568,299.811,414.872,113.782,54.310,113.782,342.289,317.930,350.815,19.093,20.133,19.093 +402,12.765,297.238,409.269,234.109,578.230,295.552,413.737,110.674,58.955,110.674,341.636,319.155,351.186,18.783,20.546,18.783 +403,12.796,292.535,408.254,238.518,580.264,291.114,412.772,107.447,63.846,107.447,341.639,320.238,351.111,18.889,20.348,18.889 +404,12.828,288.001,407.709,242.818,581.986,286.900,411.974,104.483,68.709,104.483,342.457,321.076,351.268,18.936,20.389,18.936 +405,12.859,284.144,406.710,247.544,583.700,283.138,411.618,101.582,73.985,101.582,341.430,323.075,351.450,19.080,19.936,19.080 +406,12.891,279.990,406.302,251.592,584.581,279.243,411.127,98.804,78.829,98.804,341.517,323.006,351.284,19.066,20.202,19.066 +407,12.922,276.334,404.931,255.788,585.792,275.643,411.203,96.291,83.379,96.291,338.806,324.695,351.427,17.978,20.505,17.978 +408,12.953,273.065,396.718,259.169,585.578,272.176,410.731,93.633,88.091,93.633,322.557,323.454,350.639,17.869,20.822,17.869 +409,12.984,270.419,329.903,262.510,586.113,268.487,411.038,91.364,92.583,91.364,188.018,322.754,350.335,17.590,21.204,17.590 +410,13.015,263.907,367.423,267.163,585.653,264.893,410.797,88.698,97.489,88.698,262.955,323.475,349.725,17.518,20.146,17.518 +411,13.046,259.898,385.766,271.074,585.344,261.640,411.027,86.055,102.319,86.055,298.463,323.446,349.106,17.992,20.101,17.992 +412,13.078,256.328,393.003,274.716,584.566,258.446,411.428,83.443,106.991,83.443,310.633,323.273,347.727,18.602,19.765,18.602 +413,13.109,252.685,396.725,279.000,583.000,255.064,411.327,80.744,111.801,80.744,316.989,321.624,346.576,19.191,19.684,19.191 +414,13.140,249.212,399.715,283.400,581.700,251.747,411.706,78.064,116.565,78.064,321.219,321.099,345.730,19.735,20.125,19.735 +415,13.170,249.212,399.715,283.400,581.700,251.747,411.706,78.064,116.565,78.064,321.219,321.099,345.730,19.735,20.125,19.735 +416,13.199,245.586,402.058,288.398,580.627,248.359,412.615,75.285,121.759,75.285,323.514,320.752,345.344,20.350,21.500,20.350 +417,13.231,242.039,403.540,293.482,579.591,245.236,413.665,72.474,126.357,72.474,324.268,320.457,345.504,21.029,22.840,21.029 +418,13.262,238.176,405.506,298.397,577.713,241.635,414.823,69.632,130.986,69.632,325.047,320.053,344.923,21.366,23.463,21.366 +419,13.293,234.475,407.858,303.312,575.820,238.154,416.404,66.710,135.659,66.710,325.769,318.990,344.377,22.142,23.943,22.142 +420,13.325,230.500,410.000,308.539,573.449,234.544,418.087,63.435,140.092,63.435,326.019,319.578,344.103,22.361,24.477,22.361 +421,13.355,226.239,411.990,313.618,570.666,230.756,419.853,60.124,144.567,60.124,325.958,319.445,344.093,22.785,24.710,22.785 +422,13.387,222.220,415.038,319.008,567.676,227.256,422.684,56.634,148.983,56.634,324.800,319.677,343.111,23.303,25.239,23.303 +423,13.419,217.897,418.078,324.353,564.200,223.422,425.407,52.989,153.255,52.989,324.815,319.770,343.172,23.870,25.258,23.870 +424,13.453,213.578,421.000,329.705,560.203,219.698,428.073,49.132,157.504,49.132,325.094,319.773,343.799,24.848,25.085,24.848 +425,13.488,209.250,425.250,335.112,555.852,215.991,431.991,45.000,161.651,45.000,324.562,320.339,343.629,25.456,25.508,25.456 +426,13.521,204.879,429.842,340.135,550.478,212.126,436.152,41.049,165.635,41.049,324.013,321.124,343.231,25.493,24.738,25.493 +427,13.554,199.096,434.313,345.086,544.632,207.651,440.556,36.119,169.410,36.119,323.553,321.213,344.735,25.369,24.155,25.369 +428,13.587,193.838,439.603,349.687,538.000,203.870,445.622,30.964,172.905,30.964,321.731,322.115,345.130,26.239,23.143,26.239 +429,13.619,188.778,444.455,353.724,530.318,200.725,450.455,26.670,176.138,26.670,318.398,322.022,345.136,26.384,22.161,26.384 +430,13.651,180.999,454.248,357.526,522.097,196.063,460.301,21.888,178.644,21.888,313.251,323.194,345.721,20.771,20.154,20.771 +431,13.682,171.690,460.868,360.975,513.163,193.836,467.119,15.762,0.535,15.762,300.703,322.070,346.724,18.759,19.672,18.759 +432,13.713,154.994,467.309,362.972,504.016,191.906,473.953,10.204,1.046,10.204,272.363,322.220,347.373,17.538,19.581,17.538 +433,13.743,105.756,475.114,364.004,494.858,190.496,481.509,4.316,1.414,4.316,178.078,322.396,348.041,17.272,19.266,17.272 +434,13.773,156.372,490.965,364.071,485.090,189.986,490.111,178.544,1.685,178.544,281.062,322.302,348.312,17.740,17.816,17.740 +435,13.804,179.813,500.399,362.994,474.732,190.245,498.993,172.324,1.397,172.324,327.831,322.221,348.885,18.537,17.946,18.537 +436,13.835,179.813,500.399,362.994,474.732,190.245,498.993,172.324,1.397,172.324,327.831,322.221,348.885,18.537,17.946,18.537 +437,13.865,182.573,511.435,361.022,463.758,191.668,508.954,164.745,1.736,164.745,331.703,322.246,350.558,19.909,18.295,19.909 +438,13.896,187.226,521.853,357.515,452.187,194.719,518.686,157.087,2.781,157.087,335.413,321.544,351.682,21.081,18.885,21.081 +439,13.927,192.855,532.901,351.538,441.003,198.956,529.319,149.589,4.399,149.589,338.442,320.131,352.591,21.767,18.330,21.767 +440,13.958,198.449,543.074,344.166,430.586,204.269,538.530,142.017,6.170,142.017,338.629,319.355,353.397,19.629,18.057,19.629 +441,13.989,207.739,551.773,334.455,420.310,211.459,547.876,133.668,8.326,133.668,343.627,318.341,354.402,19.761,18.196,19.761 +442,14.019,217.663,560.569,322.822,411.753,220.454,556.558,124.841,10.235,124.841,344.888,316.712,354.662,19.778,18.329,19.778 +443,14.053,228.762,568.139,309.732,404.214,230.955,563.650,116.042,12.450,116.042,345.678,315.417,355.670,19.419,18.236,19.419 +444,14.090,241.146,574.276,295.387,398.874,242.586,569.596,107.103,14.470,107.103,347.609,314.097,357.401,18.821,18.304,18.821 +445,14.121,253.587,577.577,280.089,395.904,254.207,572.842,97.457,16.314,97.457,348.052,311.961,357.602,22.463,18.165,22.463 +446,14.153,268.316,578.504,264.550,394.850,268.217,574.003,88.736,18.435,88.736,349.378,310.852,358.382,19.973,17.709,19.973 +447,14.187,282.845,578.189,249.168,396.396,281.942,573.351,79.432,20.323,79.432,350.086,309.561,359.930,22.793,17.505,22.793 +448,14.221,298.293,573.647,234.466,400.347,296.777,569.272,70.894,22.019,70.894,350.773,308.650,360.032,21.214,17.621,21.214 +449,14.254,312.427,567.545,220.912,406.064,309.928,562.896,61.736,23.736,61.736,350.018,307.727,360.573,22.663,18.263,22.663 +450,14.287,324.904,559.787,209.654,413.026,321.297,555.022,52.874,25.463,52.874,349.244,307.230,361.198,23.979,20.121,23.979 +451,14.320,336.028,551.411,199.038,422.020,330.509,546.020,44.326,27.300,44.326,345.959,306.861,361.390,24.073,19.779,24.073 +452,14.352,352.238,548.693,190.883,432.165,337.365,537.994,35.730,28.794,35.730,324.778,306.718,361.423,18.822,20.270,18.822 +453,14.385,380.683,545.465,183.582,444.010,344.738,525.412,29.157,30.811,29.157,278.469,306.297,360.790,22.614,19.216,22.614 +454,14.417,360.995,521.211,178.672,455.859,348.381,516.702,19.669,32.347,19.669,333.781,306.247,360.571,19.699,19.375,19.699 +455,14.447,359.252,507.466,174.971,467.069,350.852,505.654,12.171,33.923,12.171,342.937,307.299,360.125,19.704,21.002,19.704 +456,14.478,360.043,494.006,173.989,478.579,352.750,493.368,4.998,34.824,4.998,344.097,306.876,358.740,23.049,20.451,23.049 +457,14.508,358.153,484.753,173.379,490.115,352.283,484.943,178.152,36.185,178.152,346.207,307.616,357.955,19.119,20.888,19.119 +458,14.538,356.864,473.930,173.944,500.758,351.109,474.791,171.491,37.235,171.491,346.475,308.401,358.113,21.018,20.828,21.018 +459,14.569,356.864,473.930,173.944,500.758,351.109,474.791,171.491,37.235,171.491,346.475,308.401,358.113,21.018,20.828,21.018 +460,14.598,354.525,464.983,176.036,510.549,349.183,466.398,165.167,38.211,165.167,346.307,309.079,357.360,20.954,20.312,20.954 +461,14.628,351.124,456.662,179.042,519.591,346.278,458.481,159.418,38.928,159.418,345.738,309.710,356.090,20.126,19.838,20.126 +462,14.659,347.610,449.251,181.667,528.997,342.474,451.784,153.744,39.867,153.744,345.295,310.107,356.748,19.706,22.385,19.706 +463,14.690,343.573,442.252,185.302,537.066,338.392,445.426,148.508,40.657,148.508,344.672,311.403,356.824,20.189,23.946,20.189 +464,14.721,338.895,436.405,189.913,543.960,334.214,439.832,143.794,41.285,143.794,344.286,311.756,355.888,19.308,23.661,19.308 +465,14.752,334.357,431.175,194.396,550.116,329.803,435.101,139.236,41.915,139.236,343.290,312.334,355.315,19.327,24.286,19.327 +466,14.785,329.750,426.750,199.391,555.483,325.477,431.023,135.000,42.510,135.000,342.240,312.922,354.326,19.092,23.896,19.092 +467,14.817,324.558,422.324,204.313,560.201,320.778,426.705,130.792,42.979,130.792,342.739,313.627,354.312,19.569,24.210,19.569 +468,14.848,319.731,419.156,208.977,564.495,316.229,423.797,127.042,43.345,127.042,342.197,314.797,353.826,19.247,24.693,19.247 +469,14.878,315.135,416.265,213.814,568.170,312.010,420.984,123.511,43.580,123.511,342.548,315.413,353.868,18.816,24.805,18.816 +470,14.909,310.381,413.978,218.625,571.357,307.508,418.920,120.165,44.534,120.165,341.480,315.428,352.914,18.755,24.420,18.755 +471,14.940,306.161,412.049,223.383,574.093,303.639,417.012,116.943,44.519,116.943,341.658,316.119,352.792,18.971,24.433,18.971 +472,14.969,306.161,412.049,223.383,574.093,303.639,417.012,116.943,44.519,116.943,341.658,316.119,352.792,18.971,24.433,18.971 +473,14.998,301.938,410.639,227.675,576.339,299.725,415.619,113.962,44.519,113.962,341.359,316.856,352.259,19.089,24.516,19.089 +474,15.029,297.887,408.995,232.178,578.338,295.921,414.105,111.038,44.444,111.038,341.389,317.552,352.338,18.739,25.194,18.739 +475,15.061,294.287,407.922,236.461,580.055,292.489,413.279,108.553,44.549,108.553,340.571,317.553,351.873,18.961,24.598,18.961 +476,15.092,290.107,406.907,240.668,581.337,288.588,412.319,105.676,44.526,105.676,340.118,318.246,351.359,18.780,24.508,18.780 +477,15.124,286.656,406.213,244.750,582.750,285.352,411.752,103.241,45.000,103.241,340.123,318.905,351.504,19.010,24.042,19.010 +478,15.155,282.897,405.934,248.464,583.548,281.871,411.325,100.775,44.397,100.775,339.889,319.654,350.865,18.991,23.951,18.991 +479,15.187,279.644,405.352,252.461,584.500,278.799,411.037,98.455,44.256,98.455,339.406,319.696,350.901,18.914,23.985,18.914 +480,15.220,276.359,404.922,256.057,584.901,275.710,410.690,96.419,43.877,96.419,339.024,319.828,350.633,18.359,24.287,18.359 +481,15.252,273.340,404.762,259.605,584.921,272.914,410.431,94.304,43.182,94.304,338.623,320.584,349.993,18.099,23.738,18.099 +482,15.283,270.442,404.816,263.236,585.242,270.210,410.544,92.314,42.406,92.314,338.209,320.855,349.674,17.985,24.170,17.985 +483,15.314,267.000,404.500,266.536,585.022,267.000,410.511,90.000,41.609,90.000,337.000,321.055,349.022,18.000,24.930,18.000 +484,15.344,264.797,405.609,270.217,585.158,264.958,411.069,88.315,40.409,88.315,337.413,321.612,348.337,18.374,24.572,18.374 +485,15.374,262.052,405.189,273.420,584.711,262.410,410.779,86.338,39.207,86.338,337.358,321.691,348.561,18.794,25.326,18.794 +486,15.404,262.052,405.189,273.420,584.711,262.410,410.779,86.338,39.207,86.338,337.358,321.691,348.561,18.794,25.326,18.794 +487,15.434,259.100,405.887,277.118,584.197,259.617,411.093,84.336,37.551,84.336,337.510,321.989,347.972,18.397,24.220,18.397 +488,15.466,256.464,405.910,280.435,583.590,257.182,411.232,82.316,35.942,82.316,337.096,322.245,347.838,18.798,24.410,18.798 +489,15.497,253.808,406.372,283.443,583.333,254.748,411.907,80.362,33.770,80.362,336.392,322.281,347.620,19.141,24.337,19.141 +490,15.528,251.188,406.889,286.584,582.552,252.319,412.373,78.350,31.608,78.350,335.984,322.582,347.183,19.537,24.305,19.537 +491,15.559,248.550,407.457,290.105,581.525,249.848,412.812,76.373,29.219,76.373,335.877,322.758,346.896,20.055,24.038,20.055 +492,15.590,245.857,408.103,293.500,580.500,247.358,413.438,74.291,26.565,74.291,335.544,322.441,346.630,20.426,24.597,20.426 +493,15.621,242.899,408.155,297.049,579.388,244.853,414.249,72.216,23.703,72.216,333.581,322.664,346.380,20.913,24.521,20.913 +494,15.653,239.971,409.057,300.822,578.308,242.305,415.464,69.990,20.556,69.990,332.435,321.746,346.074,21.383,24.579,21.383 +495,15.685,236.604,410.068,304.479,577.164,239.388,416.911,67.865,17.376,67.865,331.158,321.601,345.935,21.101,24.671,21.101 +496,15.715,233.904,411.000,308.147,575.412,237.015,417.820,65.480,14.036,65.480,330.807,321.602,345.800,22.490,24.011,22.490 +497,15.746,230.732,412.150,311.923,573.417,234.239,419.068,63.118,10.460,63.118,330.078,321.642,345.590,23.035,23.843,23.035 +498,15.776,227.377,413.285,315.588,571.257,231.409,420.351,60.293,6.733,60.293,329.306,321.490,345.577,23.542,23.697,23.542 +499,15.807,223.844,415.599,319.906,568.999,228.487,422.884,57.485,2.690,57.485,327.425,320.774,344.702,23.493,24.061,23.493 +500,15.838,220.102,417.571,323.479,566.093,225.301,424.865,54.525,178.668,54.525,326.064,321.099,343.979,23.916,23.924,23.916 +501,15.868,220.102,417.571,323.479,566.093,225.301,424.865,54.525,178.668,54.525,326.064,321.099,343.979,23.916,23.924,23.916 +502,15.898,216.240,419.808,327.647,562.995,221.930,426.909,51.294,174.401,51.294,326.409,321.088,344.609,23.933,24.354,23.933 +503,15.929,212.558,422.898,331.706,559.177,218.776,429.807,48.013,170.074,48.013,324.819,320.972,343.411,24.454,24.429,24.454 +504,15.960,208.781,425.699,336.064,555.178,215.631,432.441,44.549,165.480,44.549,324.635,320.692,343.858,25.488,24.863,25.488 +505,15.991,203.402,430.918,340.160,550.458,211.037,437.281,39.806,160.801,39.806,323.421,320.719,343.298,25.479,24.984,25.479 +506,16.021,199.722,434.163,344.288,545.026,207.854,440.156,36.384,155.854,36.384,323.887,320.952,344.091,25.592,24.701,25.592 +507,16.054,195.782,439.242,348.113,539.104,204.257,444.515,31.891,150.945,31.891,324.264,320.621,344.226,26.377,24.768,26.377 +508,16.087,192.061,444.467,352.043,532.563,201.147,449.207,27.553,145.823,27.553,324.182,320.086,344.679,26.135,25.085,26.135 +509,16.119,187.223,453.647,355.342,525.304,196.777,457.735,23.166,141.033,23.166,323.938,320.003,344.722,19.307,24.709,19.307 +510,16.151,184.014,460.995,358.299,517.305,193.951,464.225,18.011,135.516,18.011,324.516,319.676,345.413,19.020,24.601,19.020 +511,16.182,181.522,469.713,360.500,509.000,191.766,471.925,12.189,130.236,12.189,324.555,319.976,345.516,18.939,25.074,18.939 +512,16.213,179.418,478.234,362.151,499.450,190.108,479.433,6.399,124.667,6.399,324.888,319.579,346.404,18.668,25.297,18.668 +513,16.243,179.000,488.000,362.809,489.068,189.404,488.000,0.000,118.867,0.000,326.000,318.287,346.809,18.000,25.329,18.000 +514,16.273,179.141,497.801,362.383,478.319,189.531,496.676,173.817,113.499,173.817,326.747,317.506,347.648,19.155,25.040,19.155 +515,16.303,180.838,508.605,360.406,466.970,190.521,506.354,166.917,107.613,166.917,328.897,316.589,348.781,19.844,24.539,19.844 +516,16.336,180.838,508.605,360.406,466.970,190.521,506.354,166.917,107.613,166.917,328.897,316.589,348.781,19.844,24.539,19.844 +517,16.364,183.615,519.036,356.024,455.615,192.221,515.876,159.837,102.381,159.837,330.737,315.512,349.072,19.867,22.275,19.867 +518,16.397,188.268,529.907,351.329,445.537,195.991,525.898,152.567,96.340,152.567,332.384,312.411,349.787,20.312,22.197,20.312 +519,16.428,193.859,539.912,344.862,436.869,200.400,535.390,145.342,91.813,145.342,333.806,308.036,349.710,19.173,21.831,19.173 +520,16.459,201.013,550.196,338.802,439.274,204.514,546.987,137.490,86.260,137.490,334.054,281.230,343.551,19.596,23.127,19.596 +521,16.490,209.881,559.223,331.740,434.390,211.682,557.028,129.369,80.218,129.369,336.247,270.968,341.926,19.525,23.277,19.525 +522,16.521,221.024,566.710,324.696,430.604,221.105,566.575,120.877,71.058,120.877,339.407,259.649,339.723,19.687,24.877,19.687 +523,16.554,232.888,572.594,315.352,424.652,232.380,573.834,112.296,64.708,112.296,341.696,255.574,339.015,19.422,24.501,19.422 +524,16.586,245.384,576.713,303.974,418.341,244.809,579.100,103.536,58.140,103.536,345.193,255.796,340.283,20.237,23.993,20.237 +525,16.618,257.807,578.817,292.201,413.841,257.556,581.833,94.764,51.582,94.764,346.632,255.799,340.579,22.505,23.910,22.505 +526,16.650,273.949,579.408,276.758,408.684,274.036,581.258,87.308,44.269,87.308,348.214,263.883,344.511,23.162,24.629,23.162 +527,16.681,285.729,577.715,263.029,408.570,286.212,580.007,78.111,38.395,78.111,349.754,266.015,345.070,22.146,20.348,22.146 +528,16.711,299.960,573.134,234.490,400.171,298.256,568.482,69.880,30.861,69.880,350.043,304.936,359.950,21.327,20.288,21.327 +529,16.742,312.206,567.668,221.498,405.898,309.740,563.075,61.771,23.466,61.771,350.015,305.943,360.442,23.047,19.484,23.047 +530,16.772,323.237,559.145,210.121,413.569,320.765,555.804,53.499,15.732,53.499,351.986,306.603,360.299,23.745,18.220,23.745 +531,16.803,323.237,559.145,210.121,413.569,320.765,555.804,53.499,15.732,53.499,351.986,306.603,360.299,23.745,18.220,23.745 +532,16.833,332.641,550.501,200.150,421.900,329.664,547.463,45.579,7.756,45.579,352.150,307.967,360.658,24.755,18.208,24.755 +533,16.864,340.923,541.342,192.005,431.173,337.299,538.509,38.012,179.614,38.012,351.950,308.054,361.149,25.267,17.713,25.267 +534,16.895,346.675,531.535,185.569,440.948,343.050,529.362,30.927,171.215,30.927,352.608,308.906,361.061,25.036,18.831,25.036 +535,16.925,350.635,521.217,180.547,451.689,347.418,519.781,24.050,162.058,24.050,353.223,309.946,360.268,25.599,19.299,25.599 +536,16.956,352.729,514.698,176.931,461.404,349.476,513.668,17.568,153.762,17.568,353.722,310.847,360.546,19.435,19.521,19.435 +537,16.987,355.023,505.413,174.333,470.712,351.210,504.642,11.436,145.505,11.436,352.404,311.539,360.185,19.648,19.030,19.648 +538,17.018,356.322,496.782,172.474,479.879,351.847,496.335,5.711,136.723,5.711,351.248,312.182,360.242,19.005,18.477,19.005 +539,17.049,356.514,488.436,172.201,488.654,352.102,488.416,0.262,127.461,0.262,350.974,312.839,359.797,18.137,19.174,18.137 +540,17.080,356.254,480.509,172.576,496.861,351.824,480.873,175.307,118.648,175.307,351.021,313.330,359.911,18.951,18.868,18.951 +541,17.111,354.554,473.324,173.773,504.418,350.518,473.997,170.538,109.747,170.538,350.499,314.142,358.683,19.892,18.969,19.892 +542,17.144,353.274,467.060,175.306,511.445,349.236,468.057,166.125,100.934,166.125,350.200,314.169,358.519,20.159,19.157,20.159 +543,17.176,351.854,460.945,177.364,517.546,347.541,462.336,162.128,91.920,162.128,348.754,313.427,357.817,20.356,19.012,20.356 +544,17.207,350.133,455.815,179.674,522.987,345.846,457.516,158.362,82.999,158.362,347.983,313.435,357.208,20.834,18.858,20.834 +545,17.237,350.133,455.815,179.674,522.987,345.846,457.516,158.362,82.999,158.362,347.983,313.435,357.208,20.834,18.858,20.834 +546,17.266,348.015,450.875,181.864,527.455,343.757,452.849,155.131,73.701,155.131,347.124,312.876,356.511,21.000,19.600,21.000 +547,17.296,346.136,447.308,184.111,531.710,341.911,449.530,152.262,64.606,152.262,346.281,312.647,355.830,19.609,19.221,19.609 +548,17.327,344.262,443.759,186.119,535.362,339.943,446.326,149.270,55.570,149.270,345.394,312.619,355.443,21.165,20.381,21.165 +549,17.359,342.205,440.649,187.443,537.660,337.917,443.410,147.225,46.015,147.225,344.879,311.304,355.081,20.064,20.562,20.064 +550,17.390,340.967,438.866,187.921,541.267,336.059,442.234,145.539,36.773,145.539,344.453,312.200,356.358,20.403,24.266,20.403 +551,17.422,339.187,435.460,190.138,542.799,334.386,439.006,143.547,27.967,143.547,343.455,311.354,355.391,19.652,23.995,19.652 +552,17.454,338.808,433.034,191.636,544.109,333.138,437.465,141.990,18.591,141.990,339.933,311.177,354.324,20.241,23.635,20.241 +553,17.487,339.407,430.232,192.208,545.601,331.925,436.311,140.906,8.461,140.906,335.427,311.710,354.708,20.082,21.303,20.082 +554,17.520,340.286,427.633,192.502,546.110,331.177,435.259,140.064,178.854,140.064,331.221,311.218,354.980,19.954,19.516,19.954 +555,17.554,343.935,426.055,192.843,547.020,331.764,436.365,139.733,169.315,139.733,323.145,312.616,355.047,22.550,19.598,22.550 +556,17.587,350.619,418.968,192.658,547.753,330.956,435.853,139.347,159.444,139.347,303.808,313.436,355.645,21.589,19.195,21.589 +557,17.619,368.695,400.912,192.409,548.342,329.192,434.338,139.764,149.931,139.764,252.622,314.469,356.117,17.793,19.495,17.793 +558,17.651,389.861,384.033,191.793,548.546,329.124,434.646,140.194,140.092,140.194,198.713,315.241,356.835,17.797,18.898,17.797 +559,17.682,335.154,431.825,191.634,548.039,330.432,435.833,139.670,130.376,139.670,344.470,317.043,356.857,18.776,18.905,18.776 +560,17.712,333.967,434.044,191.220,547.927,330.735,436.719,140.389,121.088,140.389,348.378,316.936,356.768,19.313,20.578,19.313 +561,17.742,334.856,435.437,190.543,547.209,331.850,437.831,141.459,111.073,141.459,349.666,317.194,357.352,19.567,18.971,19.567 +562,17.772,336.370,436.194,189.787,545.656,332.895,438.831,142.802,101.237,142.802,348.430,317.120,357.154,19.367,18.766,19.367 +563,17.803,336.370,436.194,189.787,545.656,332.895,438.831,142.802,101.237,142.802,348.430,317.120,357.154,19.367,18.766,19.367 +564,17.833,337.878,438.230,188.787,543.518,334.611,440.563,144.462,91.283,144.462,348.975,315.279,357.006,19.762,18.518,19.762 +565,17.864,340.385,440.077,187.966,540.633,336.650,442.567,146.310,81.539,146.310,347.242,315.520,356.220,19.969,18.760,19.969 +566,17.895,343.203,443.333,186.677,536.953,339.225,445.754,148.671,71.754,148.671,346.136,314.013,355.450,20.984,18.848,20.984 +567,17.925,345.735,446.331,185.062,533.194,341.464,448.691,151.074,61.444,151.074,345.767,313.727,355.526,21.282,18.864,21.282 +568,17.956,347.903,449.388,183.001,529.002,343.302,451.639,153.925,51.376,153.925,345.737,310.165,355.980,19.799,20.442,19.799 +569,17.988,349.388,452.686,180.175,523.339,344.756,454.705,156.453,40.925,156.453,346.488,309.529,356.594,20.921,20.828,20.921 +570,18.019,352.445,457.092,177.693,517.877,346.508,459.255,159.978,31.661,159.978,344.731,309.089,357.367,20.240,22.698,20.240 +571,18.050,358.055,461.382,176.259,510.613,348.809,464.109,163.568,21.455,163.568,338.033,308.079,357.314,20.646,21.426,20.646 +572,18.080,363.288,467.047,173.715,505.475,349.761,470.053,167.471,11.821,167.471,331.361,308.752,359.076,20.175,20.805,20.175 +573,18.111,383.183,471.839,172.235,498.585,350.616,476.280,172.235,3.945,172.235,293.781,309.059,359.517,18.105,20.125,18.105 +574,18.142,428.923,478.275,171.549,491.159,351.530,483.143,176.401,175.711,176.401,205.167,308.459,360.258,17.952,18.697,17.952 +575,18.173,358.542,489.845,171.769,483.846,351.859,489.714,1.118,168.690,1.118,346.973,310.256,360.341,18.465,21.573,18.465 +576,18.203,358.542,489.845,171.769,483.846,351.859,489.714,1.118,168.690,1.118,346.973,310.256,360.341,18.465,21.573,18.465 +577,18.232,356.262,497.606,172.802,476.865,351.880,497.126,6.246,160.735,6.246,351.621,309.678,360.438,19.090,20.805,19.090 +578,18.264,354.796,506.632,174.810,468.405,351.158,505.845,12.200,151.437,12.200,353.111,309.892,360.555,19.126,19.665,19.126 +579,18.297,353.127,515.612,177.933,458.898,349.338,514.374,18.089,142.948,18.089,352.344,310.405,360.316,19.341,20.433,19.341 +580,18.328,351.273,522.741,182.334,448.840,347.386,520.947,24.775,133.983,24.775,351.590,310.484,360.153,25.563,18.951,25.563 +581,18.359,347.227,532.146,187.662,438.970,343.273,529.754,31.176,125.410,31.176,351.027,310.498,360.268,25.394,18.771,25.394 +582,18.390,341.660,542.246,194.200,429.100,337.394,538.900,38.114,116.565,38.114,350.026,309.472,360.869,25.103,18.336,25.103 +583,18.420,333.628,551.913,202.254,420.258,329.574,547.756,45.725,107.949,45.725,348.728,309.611,360.340,23.395,17.713,23.395 +584,18.453,324.086,560.702,211.600,411.803,320.484,555.798,53.707,98.945,53.707,348.849,308.233,361.019,23.513,18.449,23.513 +585,18.486,313.572,568.961,223.188,406.032,310.482,563.263,61.526,91.548,61.526,346.696,306.321,359.659,22.736,18.101,22.736 +586,18.518,302.620,575.954,234.949,418.747,302.773,576.358,69.174,81.591,69.174,343.717,272.362,342.854,21.578,19.518,21.578 +587,18.549,301.557,635.854,251.012,418.873,288.295,583.369,75.819,73.720,75.819,228.965,259.361,337.234,22.065,17.712,22.065 +588,18.580,278.319,587.168,268.459,415.534,278.094,584.583,85.030,64.093,85.030,333.307,258.981,338.496,22.870,20.406,22.870 +589,18.610,261.960,580.048,282.075,407.890,261.955,580.228,91.890,54.825,91.890,346.175,270.754,345.815,23.284,23.167,23.284 +590,18.641,250.304,576.867,291.563,401.529,250.838,573.914,100.231,45.751,100.231,347.752,287.227,353.754,21.377,25.089,21.377 +591,18.671,239.357,573.123,296.191,398.301,241.028,568.130,108.505,37.569,108.505,346.581,309.428,357.112,19.341,20.364,19.341 +592,18.702,239.357,573.123,296.191,398.301,241.028,568.130,108.505,37.569,108.505,346.581,309.428,357.112,19.341,20.364,19.341 +593,18.732,228.708,568.339,307.947,403.597,230.950,563.778,116.169,28.668,116.169,345.275,311.096,355.439,19.923,19.076,19.923 +594,18.762,219.226,561.818,319.337,409.952,221.901,557.796,123.629,19.826,123.629,344.464,313.127,354.125,19.949,18.021,19.949 +595,18.795,210.847,554.499,329.777,416.637,214.191,550.647,130.962,11.083,130.962,343.739,315.176,353.941,19.908,18.312,19.908 +596,18.826,203.430,546.976,338.920,423.997,207.824,543.010,137.932,2.291,137.932,342.279,316.467,354.119,19.895,18.385,19.895 +597,18.857,196.323,540.750,345.938,431.956,203.039,535.987,144.656,173.537,144.656,337.016,318.607,353.484,21.816,18.871,21.816 +598,18.890,190.843,532.114,351.393,440.095,198.314,527.945,150.837,165.223,150.837,335.857,320.353,352.968,21.628,20.050,21.628 +599,18.921,148.167,539.017,355.379,447.448,194.818,519.410,157.203,158.199,157.203,250.593,320.882,351.802,17.529,18.570,17.529 +600,18.952,155.175,523.644,358.380,456.037,192.230,511.695,162.128,150.281,162.128,272.557,320.630,350.425,17.695,20.011,17.695 +601,18.983,170.843,510.224,360.902,465.378,190.795,505.707,167.242,141.340,167.242,308.714,320.156,349.628,20.132,21.083,20.132 +602,19.013,175.939,500.317,362.382,474.391,189.795,498.483,172.461,132.788,172.461,320.557,319.975,348.512,19.302,23.314,19.302 +603,19.044,178.082,491.888,362.704,482.613,189.313,491.399,177.510,123.136,177.510,324.737,319.786,347.219,18.026,24.807,18.026 +604,19.075,179.411,485.286,362.637,490.280,189.255,485.602,1.838,113.749,1.838,327.185,318.823,346.884,18.696,25.409,18.696 +605,19.105,180.947,479.020,361.756,497.550,189.760,479.924,5.856,103.707,5.856,328.074,318.943,345.793,19.028,24.904,19.028 +606,19.136,180.947,479.020,361.756,497.550,189.760,479.924,5.856,103.707,5.856,328.074,318.943,345.793,19.028,24.904,19.028 +607,19.165,182.582,473.527,360.871,504.230,190.707,474.934,9.830,93.900,9.830,328.843,319.236,345.334,18.799,24.579,18.799 +608,19.197,184.539,468.668,360.030,510.709,192.006,470.394,13.019,84.508,13.019,330.247,319.794,345.574,19.565,24.158,19.565 +609,19.228,186.251,463.513,358.544,516.313,193.416,465.678,16.809,74.876,16.809,330.460,321.179,345.430,19.146,22.803,19.146 +610,19.258,188.298,459.835,357.373,520.921,194.829,462.148,19.502,65.556,19.502,331.824,322.270,345.681,18.853,21.932,18.853 +611,19.291,188.517,456.207,355.788,525.467,196.179,459.271,21.801,55.894,21.801,329.052,323.422,345.555,18.941,20.213,18.941 +612,19.323,189.665,453.129,354.949,528.520,197.627,456.667,23.962,46.660,23.962,328.464,324.610,345.890,18.987,19.617,18.987 +613,19.353,188.594,449.682,354.066,530.747,198.667,454.566,25.866,36.830,25.866,323.742,325.402,346.132,18.487,20.305,18.487 +614,19.384,128.188,416.245,354.134,531.750,199.805,453.380,27.408,28.179,27.408,184.817,324.699,346.162,17.558,19.959,17.558 +615,19.416,177.409,438.699,353.236,533.310,201.212,450.436,26.247,18.880,26.247,292.920,324.484,346.000,23.906,19.964,23.906 +616,19.446,188.796,439.993,352.374,534.205,202.654,448.093,30.305,10.105,30.305,313.325,324.052,345.428,28.278,19.982,28.278 +617,19.477,191.997,439.790,351.508,535.236,203.399,446.441,30.256,1.685,30.256,318.950,323.243,345.349,26.273,21.314,26.273 +618,19.508,192.377,441.215,350.820,536.240,202.807,447.175,29.745,171.870,29.745,321.374,322.582,345.400,25.799,23.052,25.799 +619,19.539,192.969,441.554,350.685,536.134,202.733,447.133,29.745,163.740,29.745,322.738,322.120,345.229,25.799,24.400,25.799 +620,19.570,192.969,441.554,350.685,536.134,202.733,447.133,29.745,163.740,29.745,322.738,322.120,345.229,25.799,24.400,25.799 +621,19.598,193.615,441.923,350.552,535.607,202.623,447.070,29.745,154.163,29.745,323.979,321.617,344.728,25.799,24.329,25.799 +622,19.628,193.104,442.814,350.744,534.908,201.897,447.722,29.168,145.305,29.168,324.789,320.971,344.929,25.363,24.855,25.363 +623,19.660,192.516,444.106,351.263,533.860,201.300,448.820,28.217,136.532,28.217,324.761,320.526,344.699,25.188,25.364,25.188 +624,19.691,191.500,446.500,351.483,532.372,199.968,450.734,26.565,127.569,26.565,325.124,320.830,344.059,25.491,25.242,25.491 +625,19.723,191.427,447.445,352.101,530.781,199.487,451.314,25.641,118.768,25.641,326.063,321.000,343.945,26.252,25.266,26.252 +626,19.755,190.170,449.742,353.301,528.111,198.296,453.354,23.962,110.225,23.962,326.231,320.222,344.015,25.587,24.841,25.587 +627,19.787,187.987,455.830,354.841,525.363,195.887,459.030,22.051,101.768,22.051,327.413,320.494,344.460,19.335,24.882,19.335 +628,19.819,187.281,458.384,356.187,522.012,194.894,461.192,20.248,93.576,20.248,328.520,320.624,344.749,19.356,23.953,19.356 +629,19.851,186.421,462.501,358.143,518.078,193.772,464.823,17.526,84.806,17.526,330.140,320.497,345.558,19.072,23.811,19.072 +630,19.883,185.321,466.837,359.573,513.244,192.524,468.706,14.551,76.569,14.551,330.877,320.931,345.761,19.358,23.271,19.358 +631,19.913,184.780,472.530,361.453,507.722,191.636,473.835,10.784,67.874,10.784,332.358,321.079,346.317,18.805,23.444,18.805 +632,19.944,184.208,477.810,362.130,502.011,190.555,478.591,7.017,59.580,7.017,333.514,321.906,346.303,18.842,21.796,18.842 +633,19.975,183.067,483.674,363.139,494.807,190.038,484.027,2.899,51.633,2.899,332.890,322.177,346.849,18.634,21.757,18.634 +634,20.004,182.910,489.725,363.503,487.597,189.684,489.582,178.796,43.152,178.796,334.094,322.547,347.645,18.164,21.065,18.164 +635,20.036,182.910,489.725,363.503,487.597,189.684,489.582,178.796,43.152,178.796,334.094,322.547,347.645,18.164,21.065,18.164 +636,20.067,182.739,497.695,363.061,479.725,189.808,496.896,173.550,35.882,173.550,333.943,322.245,348.170,19.312,20.480,19.312 +637,20.098,183.385,505.951,362.520,470.506,190.791,504.399,168.158,27.626,168.158,334.926,321.641,350.060,20.300,20.105,20.300 +638,20.129,185.481,513.940,360.178,461.512,192.262,511.806,162.532,20.024,162.532,336.321,321.409,350.539,20.438,19.121,20.438 +639,20.160,188.284,522.501,356.761,451.846,194.721,519.709,156.557,12.740,156.557,337.291,321.172,351.325,20.549,18.939,20.549 +640,20.191,191.843,531.459,352.109,441.920,198.209,527.850,150.450,5.779,150.450,337.887,320.009,352.522,20.152,18.936,20.152 +641,20.222,195.362,540.805,346.021,432.813,202.534,535.732,144.728,179.072,144.728,335.587,320.104,353.155,21.008,17.455,21.008 +642,20.253,204.092,548.022,338.663,423.263,208.557,543.875,137.121,172.670,137.121,342.633,319.258,354.821,19.628,17.746,19.628 +643,20.284,211.954,556.226,329.558,414.826,215.821,551.536,129.508,166.504,129.508,343.511,318.476,355.668,19.762,17.814,19.762 +644,20.315,221.118,563.953,319.365,408.105,224.388,558.680,121.805,161.084,121.805,343.633,317.540,356.042,20.060,17.591,20.060 +645,20.345,231.499,570.057,307.338,401.230,234.054,564.285,113.875,155.126,113.875,344.904,316.385,357.529,19.548,17.411,19.548 +646,20.376,242.788,575.299,294.468,396.799,244.529,569.124,105.739,149.657,105.739,345.987,315.569,358.819,19.075,16.881,19.075 +647,20.408,253.938,578.492,280.704,393.890,254.728,572.179,97.125,144.379,97.125,347.545,314.452,360.270,22.326,17.234,22.326 +648,20.439,266.989,579.592,267.346,393.910,266.878,573.561,88.951,139.838,88.951,347.162,314.100,359.225,21.886,17.776,21.886 +649,20.470,266.989,579.592,267.346,393.910,266.878,573.561,88.951,139.838,88.951,347.162,314.100,359.225,21.886,17.776,21.886 +650,20.499,282.729,578.963,253.250,395.250,281.793,573.098,80.929,135.000,80.929,348.369,312.541,360.248,22.828,17.678,22.828 +651,20.530,296.416,575.410,238.929,399.189,294.754,570.204,72.296,129.777,72.296,348.856,312.028,359.784,20.874,17.930,20.874 +652,20.565,310.200,569.400,225.253,404.359,307.697,564.395,63.435,124.439,63.435,348.827,311.488,360.019,22.361,17.838,22.361 +653,20.598,322.516,561.660,212.948,411.815,319.342,557.172,54.732,119.358,54.732,349.227,311.098,360.221,23.641,18.249,23.641 +654,20.633,333.155,552.481,201.851,420.711,329.159,548.305,46.266,113.962,46.266,348.847,310.290,360.407,24.469,18.378,24.469 +655,20.664,341.847,541.910,193.059,430.862,337.674,538.670,37.836,108.853,37.836,350.119,310.241,360.684,25.610,18.396,25.610 +656,20.699,348.420,531.004,187.339,441.842,344.390,528.675,30.027,104.307,30.027,349.540,309.951,358.850,25.227,19.217,25.227 +657,20.733,352.209,522.493,181.326,453.212,347.734,520.645,22.436,99.090,22.436,349.412,309.740,359.096,19.703,18.801,19.703 +658,20.766,355.723,511.526,177.568,464.579,351.023,510.258,15.106,94.236,15.106,348.993,309.707,358.730,19.190,19.244,19.190 +659,20.797,357.494,500.545,174.833,475.457,352.472,499.833,8.069,88.939,8.069,348.462,309.225,358.605,19.506,19.237,19.506 +660,20.828,358.029,490.272,173.804,486.293,352.914,490.149,1.369,83.437,1.369,348.068,309.789,358.302,18.616,19.007,18.616 +661,20.860,357.374,480.029,174.280,496.527,352.286,480.466,175.095,78.294,175.095,347.242,310.662,357.455,18.986,18.861,18.986 +662,20.891,355.946,470.727,175.425,506.256,350.833,471.737,168.826,72.956,168.826,347.120,310.552,357.544,20.614,18.989,20.614 +663,20.922,353.388,462.131,177.722,515.005,348.541,463.597,163.174,67.944,163.174,346.644,310.683,356.773,20.568,19.152,20.568 +664,20.953,350.199,454.487,180.628,523.175,345.628,456.357,157.751,62.592,157.751,346.155,311.339,356.031,21.246,18.906,21.246 +665,20.984,346.960,447.947,184.066,530.853,342.459,450.256,152.845,57.301,152.845,345.318,312.140,355.436,19.644,19.428,19.644 +666,21.016,343.414,442.361,187.190,536.909,339.068,445.035,148.392,52.097,148.392,344.791,310.919,354.998,19.785,20.183,19.785 +667,21.047,338.955,436.254,191.110,542.801,334.825,439.270,143.856,46.902,143.856,344.010,311.284,354.239,19.690,20.346,19.690 +668,21.078,335.109,431.448,193.647,549.446,330.260,435.558,139.712,42.022,139.712,342.992,311.809,355.704,19.550,24.140,19.550 +669,21.109,331.311,427.920,197.900,553.800,327.030,432.007,136.320,36.870,136.320,343.165,312.400,355.003,19.768,23.800,19.768 +670,21.140,327.500,424.000,201.987,557.650,323.310,428.540,132.709,32.330,132.709,341.966,312.696,354.322,19.614,24.344,19.614 +671,21.170,327.500,424.000,201.987,557.650,323.310,428.540,132.709,32.330,132.709,341.966,312.696,354.322,19.614,24.344,19.614 +672,21.200,323.094,420.296,206.105,560.974,319.236,425.043,129.104,27.951,129.104,341.443,313.120,353.676,19.794,25.311,19.794 +673,21.231,319.771,417.671,209.952,563.611,316.113,422.642,126.347,23.459,126.347,340.579,313.957,352.923,19.270,26.430,19.270 +674,21.262,316.027,415.000,214.023,566.476,312.475,420.375,123.453,18.166,123.453,339.455,313.389,352.340,19.056,25.001,19.056 +675,21.293,312.706,412.824,217.605,568.988,309.171,418.715,120.964,13.536,120.964,338.195,313.578,351.937,18.865,24.504,18.865 +676,21.325,309.374,410.783,220.883,570.982,305.888,417.232,118.393,8.653,118.393,336.690,313.758,351.352,18.997,23.856,18.997 +677,21.354,306.064,408.775,224.097,572.692,302.694,415.686,115.999,4.236,115.999,335.766,313.659,351.143,19.398,23.454,19.398 +678,21.388,303.366,407.552,227.000,574.500,300.057,414.997,113.962,0.000,113.962,334.557,314.000,350.853,19.190,23.000,19.190 +679,21.422,300.363,406.046,229.953,575.323,297.300,413.690,111.843,176.028,111.843,333.704,314.493,350.172,19.140,23.028,19.140 +680,21.454,297.965,405.038,232.646,576.347,295.078,412.900,110.171,172.405,110.171,333.151,314.814,349.901,19.271,22.666,19.271 +681,21.487,295.400,403.800,235.269,577.846,292.537,412.390,108.435,168.690,108.435,332.039,315.159,350.149,18.974,23.338,18.974 +682,21.521,293.838,403.027,237.643,578.516,291.080,411.991,107.103,164.476,107.103,330.994,315.499,349.751,19.116,23.178,19.116 +683,21.553,291.633,402.097,239.537,578.962,289.024,411.413,105.642,160.710,105.642,330.027,316.004,349.375,19.144,22.369,19.144 +684,21.585,289.764,401.213,241.763,579.642,287.320,410.815,104.281,157.751,104.281,329.881,316.285,349.697,19.382,22.297,19.382 +685,21.616,287.307,400.469,244.000,580.000,285.082,410.356,102.680,153.435,102.680,328.780,316.627,349.049,19.195,22.361,19.195 +686,21.647,285.250,399.750,245.670,580.406,283.205,409.977,101.310,150.945,101.310,328.102,317.028,348.961,19.219,21.368,19.219 +687,21.678,283.288,398.903,247.433,581.079,281.337,409.973,99.997,148.392,99.997,326.308,317.341,348.788,19.222,21.554,19.222 +688,21.708,281.422,398.457,249.221,581.561,279.637,409.863,98.893,145.827,98.893,325.583,317.604,348.673,19.215,21.458,19.215 +689,21.738,279.722,398.013,250.820,581.610,278.141,409.475,97.853,142.624,97.853,325.368,318.211,348.507,18.719,21.125,18.719 +690,21.769,279.722,398.013,250.820,581.610,278.141,409.475,97.853,142.624,97.853,325.368,318.211,348.507,18.719,21.125,18.719 +691,21.798,278.051,397.748,252.732,582.103,276.628,409.523,96.888,140.528,96.888,324.680,318.308,348.401,18.403,21.523,18.403 +692,21.829,276.513,397.708,254.423,582.330,275.281,409.620,95.906,139.268,95.906,323.927,318.684,347.878,18.247,21.260,18.247 +693,21.860,274.827,396.783,256.183,582.631,273.752,409.414,94.865,136.790,94.865,322.812,318.021,348.165,18.232,21.976,18.232 +694,21.892,273.119,397.208,257.717,582.688,272.306,409.407,93.814,135.644,93.814,323.282,318.321,347.735,18.359,20.831,18.359 +695,21.925,271.459,397.096,259.500,583.000,270.855,409.481,92.793,135.000,92.793,322.933,318.905,347.733,18.320,20.506,18.320 +696,21.957,269.486,397.027,261.602,583.111,269.148,409.524,91.548,134.356,91.548,322.450,319.004,347.455,18.156,21.450,18.156 +697,21.987,267.676,397.512,263.129,583.089,267.591,409.541,90.403,133.112,90.403,323.091,318.584,347.150,18.133,21.839,18.133 +698,22.020,266.157,397.469,265.090,583.118,266.275,409.537,89.438,133.025,89.438,322.985,319.764,347.121,18.205,21.834,18.205 +699,22.052,264.626,398.411,267.097,583.188,264.958,410.039,88.363,133.082,88.363,323.011,319.670,346.278,18.421,21.742,18.421 +700,22.084,262.772,398.359,269.411,582.928,263.358,409.880,87.089,134.157,87.089,323.193,319.068,346.264,18.739,21.928,18.739 +701,22.115,261.033,399.204,271.443,582.935,261.809,409.778,85.802,134.502,85.802,325.592,319.010,346.796,18.903,21.987,18.903 +702,22.146,259.267,399.691,273.500,583.000,260.272,410.309,84.592,135.000,84.592,325.008,318.905,346.339,19.310,21.920,19.310 +703,22.177,257.140,400.128,275.876,582.371,258.363,410.458,83.246,136.134,83.246,324.757,319.081,345.561,19.143,22.539,19.143 +704,22.208,255.450,400.150,278.200,582.562,256.941,410.590,81.870,137.102,81.870,325.411,319.235,346.502,19.799,23.293,19.799 +705,22.239,253.144,401.472,280.696,582.097,254.782,411.224,80.467,138.336,80.467,325.834,319.476,345.610,19.415,23.507,19.415 +706,22.270,253.144,401.472,280.696,582.097,254.782,411.224,80.467,138.336,80.467,325.834,319.476,345.610,19.415,23.507,19.415 +707,22.298,250.993,401.913,283.429,581.590,252.867,411.471,78.906,139.538,78.906,326.162,319.215,345.641,19.376,23.519,19.376 +708,22.329,248.913,402.571,285.966,581.183,250.995,411.865,77.367,140.782,77.367,326.688,319.571,345.735,19.667,23.412,19.667 +709,22.360,246.941,403.265,288.779,580.661,249.218,412.373,75.964,142.407,75.964,326.938,319.308,345.716,20.130,24.339,20.130 +710,22.392,244.686,404.095,291.583,579.796,247.177,412.863,74.141,143.791,74.141,327.200,319.229,345.429,20.660,23.730,20.660 +711,22.424,242.281,405.118,294.565,579.049,244.985,413.643,72.408,145.491,72.408,327.423,319.265,345.310,20.739,24.206,20.739 +712,22.456,240.006,405.914,297.790,578.012,242.998,414.414,70.610,147.319,70.610,326.997,319.288,345.019,21.474,24.727,21.474 +713,22.488,237.404,406.867,300.882,576.971,240.693,415.302,68.697,149.036,68.697,326.871,319.159,344.978,22.003,24.867,22.003 +714,22.520,234.689,407.979,304.221,575.497,238.203,416.131,66.682,150.998,66.682,327.208,319.459,344.963,22.562,24.755,22.562 +715,22.553,231.583,409.277,308.014,574.008,235.549,417.522,64.312,152.978,64.312,326.565,319.347,344.863,22.141,24.988,22.141 +716,22.585,229.017,411.406,311.619,572.256,233.217,419.357,62.152,155.045,62.152,325.650,319.524,343.633,22.839,24.991,22.839 +717,22.615,225.646,412.889,315.357,570.044,230.248,420.686,59.448,157.249,59.448,325.664,319.704,343.770,22.875,24.869,22.875 +718,22.646,222.513,414.991,319.416,567.954,227.586,422.749,56.821,159.305,56.821,325.034,319.869,343.572,23.274,25.071,23.274 +719,22.676,219.299,417.509,323.500,565.500,224.644,424.876,54.043,161.565,54.043,325.546,320.022,343.750,23.835,25.298,23.835 +720,22.706,215.682,419.853,327.681,562.131,221.388,426.909,51.036,164.004,51.036,325.811,320.741,343.962,24.146,25.198,24.146 +721,22.738,215.682,419.853,327.681,562.131,221.388,426.909,51.036,164.004,51.036,325.811,320.741,343.962,24.146,25.198,24.146 +722,22.768,212.108,422.949,331.852,558.890,218.330,429.813,47.808,166.357,47.808,325.225,320.887,343.753,24.620,25.021,24.620 +723,22.802,208.360,426.121,336.296,555.031,215.247,432.860,44.377,168.830,44.377,324.658,321.431,343.928,24.801,24.920,24.801 +724,22.834,204.182,429.709,340.710,550.381,211.839,436.309,40.764,171.347,40.764,323.963,321.516,344.181,25.595,24.264,25.595 +725,22.865,199.420,434.073,344.887,544.950,207.968,440.371,36.384,173.873,36.384,323.293,321.801,344.528,25.380,23.065,25.380 +726,22.896,194.117,438.810,348.884,539.036,204.047,444.904,31.535,176.634,31.535,322.062,322.501,345.363,26.325,22.608,26.325 +727,22.927,189.574,442.923,353.005,532.389,201.545,449.299,28.045,179.334,28.045,318.356,322.141,345.483,25.471,21.359,25.471 +728,22.958,181.448,451.385,356.561,524.854,196.933,458.215,23.800,2.121,23.800,312.042,323.408,345.890,21.368,20.023,21.368 +729,22.989,170.490,456.591,359.883,516.407,194.566,464.314,17.784,4.764,17.784,296.085,323.545,346.655,18.254,19.100,18.254 +730,23.021,127.012,456.722,361.968,508.238,192.489,471.095,12.381,7.539,12.381,212.930,323.269,347.003,17.605,19.550,17.605 +731,23.057,163.498,475.870,363.825,498.891,190.885,479.176,6.882,11.109,6.882,292.943,323.987,348.113,18.110,19.251,18.110 +732,23.090,179.529,487.211,364.465,489.646,190.222,487.323,0.603,13.373,0.603,327.129,323.805,348.516,18.052,19.906,18.052 +733,23.123,181.171,497.383,363.995,479.517,190.303,496.419,173.970,16.777,173.970,330.646,323.072,349.013,19.259,19.015,19.259 +734,23.156,184.154,507.492,362.060,468.701,190.935,505.934,167.062,20.106,167.062,336.320,322.004,350.236,20.098,19.234,20.098 +735,23.189,186.960,517.515,358.614,457.684,193.103,515.281,160.017,23.518,160.017,337.386,321.292,350.459,19.907,19.544,19.907 +736,23.222,191.144,527.849,353.782,445.933,196.647,524.997,152.605,26.783,152.605,339.387,319.755,351.783,20.356,21.111,20.356 +737,23.255,195.961,537.442,346.961,435.066,201.091,533.959,145.826,30.211,145.826,340.064,318.016,352.465,19.508,21.068,19.508 +738,23.288,203.771,547.299,338.171,424.990,207.703,543.724,137.726,33.896,137.726,342.189,316.443,352.816,19.508,21.011,19.508 +739,23.321,212.141,556.293,329.132,414.016,216.075,551.516,129.472,37.333,129.472,343.645,314.154,356.022,19.480,25.094,19.480 +740,23.354,222.460,564.372,318.004,406.919,225.466,559.340,120.854,40.956,120.854,344.895,310.537,356.618,19.678,24.352,19.678 +741,23.387,234.018,570.534,316.604,412.392,234.804,568.618,112.319,44.083,112.319,347.032,275.782,351.173,19.602,25.764,19.602 +742,23.419,245.848,575.818,304.058,411.497,245.790,576.067,103.285,47.936,103.285,347.622,267.062,347.112,20.222,25.169,20.222 +743,23.450,258.211,579.092,291.141,413.340,257.997,581.903,94.355,52.206,94.355,346.823,257.160,341.186,23.237,23.965,23.237 +744,23.481,275.022,582.383,274.846,414.769,275.135,584.334,86.695,56.310,86.695,342.508,255.717,338.600,23.365,21.633,23.365 +745,23.512,290.654,585.426,258.548,418.375,290.271,583.688,77.589,59.184,77.589,332.977,254.000,336.536,22.560,19.843,22.560 +746,23.542,312.594,601.276,241.477,421.550,303.561,578.551,68.321,62.567,68.321,288.749,259.063,337.659,18.239,18.429,18.239 +747,23.575,322.776,579.626,227.298,428.524,318.063,571.272,60.573,64.555,60.573,318.666,259.939,337.851,20.568,19.764,20.568 +748,23.605,328.500,560.000,213.004,431.031,328.264,559.705,51.340,66.356,51.340,344.207,274.100,344.962,23.895,21.046,23.895 +749,23.636,328.500,560.000,213.004,431.031,328.264,559.705,51.340,66.356,51.340,344.207,274.100,344.962,23.895,21.046,23.895 +750,23.664,338.419,549.088,199.847,432.828,335.602,546.499,42.580,70.017,42.580,346.094,290.225,353.746,24.876,18.625,24.876 +751,23.695,345.610,536.100,189.906,436.576,341.456,533.313,33.864,74.814,33.864,349.486,304.511,359.491,26.102,19.067,26.102 +752,23.727,351.466,524.608,183.757,447.357,346.973,522.444,25.717,79.287,25.717,349.288,306.907,359.263,25.763,19.306,25.763 +753,23.759,353.926,515.335,179.243,459.587,350.029,514.080,17.856,83.701,17.856,350.350,308.871,358.537,19.707,19.731,19.707 +754,23.791,357.120,503.831,175.591,471.928,352.209,502.948,10.192,87.421,10.192,348.658,308.858,358.638,19.463,18.954,19.463 +755,23.822,358.089,490.723,174.079,484.069,353.118,490.473,2.873,91.534,2.873,348.314,310.237,358.270,23.075,18.868,23.075 +756,23.854,356.788,481.466,173.690,496.068,352.362,481.776,175.994,95.618,175.994,349.595,311.839,358.468,19.043,19.202,19.043 +757,23.886,354.724,470.395,174.219,506.701,350.003,471.287,169.299,99.386,169.299,348.996,313.344,358.606,21.672,18.827,21.672 +758,23.918,351.714,461.805,176.324,516.542,347.459,463.109,162.962,103.134,162.962,349.659,314.356,358.561,21.482,19.444,21.482 +759,23.948,347.583,454.180,178.870,525.960,343.847,455.774,156.891,107.057,156.891,350.448,315.702,358.572,21.032,19.044,21.032 +760,23.979,344.054,447.757,182.383,534.031,340.366,449.758,151.504,110.993,151.504,349.708,316.260,358.099,20.063,18.738,20.063 +761,24.010,339.371,440.573,186.550,541.255,335.828,442.951,146.129,114.852,146.129,348.929,316.807,357.463,19.677,19.227,19.677 +762,24.040,335.070,434.724,191.454,547.975,331.573,437.539,141.170,118.568,141.170,347.819,317.318,356.798,19.456,20.591,19.456 +763,24.072,335.070,434.724,191.454,547.975,331.573,437.539,141.170,118.568,141.170,347.819,317.318,356.798,19.456,20.591,19.456 +764,24.101,330.758,429.161,195.596,553.060,326.962,432.758,136.540,122.164,136.540,345.745,317.900,356.204,19.480,19.645,19.480 +765,24.132,328.384,422.040,200.225,558.025,322.417,428.643,132.105,125.873,132.105,338.038,317.832,355.838,18.826,19.329,18.826 +766,24.163,367.101,362.463,205.062,562.551,316.899,424.478,128.991,129.542,128.991,195.792,316.531,355.368,17.544,19.108,17.544 +767,24.194,344.245,375.407,210.164,566.091,312.308,421.397,124.778,133.152,124.778,242.236,317.075,354.220,17.751,19.059,17.751 +768,24.226,323.294,393.177,215.501,568.971,307.970,418.717,120.964,136.637,120.964,293.263,316.453,352.833,17.836,19.629,17.836 +769,24.257,313.619,397.567,220.394,571.477,303.971,416.624,116.852,140.454,116.852,309.092,316.765,351.814,19.288,19.051,19.288 +770,24.288,306.674,399.889,225.877,574.018,300.062,415.001,113.629,143.924,113.629,317.849,316.956,350.839,19.583,19.952,19.583 +771,24.321,300.183,400.360,230.997,576.057,295.487,413.078,110.266,147.371,110.266,323.340,316.695,350.455,19.931,20.726,19.931 +772,24.352,294.928,400.918,235.800,577.535,291.468,411.946,107.418,150.676,107.418,326.206,316.379,349.320,19.083,20.952,19.083 +773,24.384,289.748,400.447,240.997,579.494,287.049,411.004,104.345,153.954,104.345,327.499,316.232,349.293,19.125,22.475,19.125 +774,24.415,285.277,400.564,245.647,580.525,283.289,410.357,101.476,157.003,101.476,328.524,316.178,348.510,19.232,22.462,19.232 +775,24.446,281.373,400.526,250.531,581.468,279.922,409.836,98.858,160.115,98.858,329.375,316.447,348.220,19.300,23.209,19.300 +776,24.477,276.582,400.668,255.273,582.251,275.651,409.468,96.044,163.142,96.044,330.236,316.659,347.936,18.777,24.245,18.777 +777,24.507,272.531,400.625,260.000,583.000,271.988,409.438,93.521,165.964,93.521,330.283,316.751,347.942,18.089,24.739,18.089 +778,24.538,268.500,400.526,264.686,583.109,268.344,409.520,90.988,169.234,90.988,329.261,316.685,347.252,18.152,25.446,18.152 +779,24.570,268.500,400.526,264.686,583.109,268.344,409.520,90.988,169.234,90.988,329.261,316.685,347.252,18.152,25.446,18.152 +780,24.599,264.657,401.510,269.021,583.151,264.912,410.063,88.290,171.973,88.290,329.152,317.068,346.266,18.410,25.161,18.410 +781,24.629,261.339,401.441,273.783,582.644,261.924,409.714,85.956,174.732,85.956,330.085,317.603,346.672,19.013,24.831,19.013 +782,24.660,257.131,402.424,278.403,582.423,258.105,410.543,83.157,177.337,83.157,329.794,317.540,346.148,18.666,25.182,18.666 +783,24.691,253.711,403.210,283.005,582.391,255.058,411.352,80.605,179.673,80.605,330.109,318.058,346.614,19.221,25.194,19.221 +784,24.723,250.144,404.505,287.421,581.616,251.767,412.081,77.905,2.148,77.905,330.986,319.113,346.483,19.905,25.157,19.905 +785,24.755,246.342,405.571,292.075,580.570,248.329,413.076,75.174,4.586,75.174,330.698,319.301,346.224,20.386,25.432,20.386 +786,24.790,242.903,406.986,296.715,579.360,245.163,414.083,72.337,6.877,72.337,331.360,320.023,346.255,21.107,25.988,21.107 +787,24.822,239.170,408.183,301.490,577.756,241.884,415.453,69.532,8.898,69.532,330.280,320.086,345.800,21.805,25.273,21.805 +788,24.856,235.146,409.869,306.504,575.977,238.279,417.112,66.607,10.784,66.607,330.008,321.038,345.790,22.234,24.558,22.234 +789,24.891,231.200,411.900,311.218,574.010,234.724,418.948,63.435,12.435,63.435,330.044,321.707,345.802,22.808,24.373,22.808 +790,24.923,227.310,414.259,316.200,571.204,231.083,420.824,60.113,14.105,60.113,330.442,322.089,345.587,23.160,23.953,23.160 +791,24.956,223.048,416.469,321.065,568.265,227.633,423.416,56.579,15.406,56.579,328.068,322.504,344.716,23.349,23.193,23.349 +792,24.990,218.407,418.567,326.009,564.669,223.725,425.670,53.177,16.376,53.177,327.397,322.967,345.143,24.158,22.311,24.158 +793,25.022,213.723,421.737,330.982,560.945,219.838,428.895,49.497,17.216,49.497,326.359,323.273,345.188,23.778,23.019,23.778 +794,25.055,209.398,424.600,335.772,556.618,216.439,431.801,45.644,17.157,45.644,325.201,323.415,345.345,24.739,21.617,24.739 +795,25.088,203.187,428.362,340.105,551.809,212.116,436.100,40.914,16.666,40.914,321.369,323.650,345.002,25.089,20.929,25.089 +796,25.121,198.436,431.428,344.525,546.411,208.900,439.400,37.304,15.507,37.304,319.158,323.797,345.467,25.454,20.152,25.454 +797,25.155,193.578,435.648,348.674,540.335,205.725,443.884,34.139,13.707,34.139,315.539,323.540,344.890,28.436,20.094,28.436 +798,25.188,187.383,439.973,352.375,534.084,202.208,448.549,30.048,11.070,30.048,311.377,323.220,345.630,29.566,20.033,29.566 +799,25.224,182.438,445.571,355.969,526.746,199.326,453.527,25.226,7.125,25.226,308.485,323.110,345.821,28.418,19.846,28.418 +800,25.256,175.795,454.907,358.936,519.354,195.466,462.181,20.292,2.726,20.292,304.357,322.682,346.304,20.430,19.359,20.430 +801,25.288,172.238,462.292,360.938,511.462,193.253,468.024,15.255,177.709,15.255,302.848,322.542,346.413,19.383,19.704,19.383 +802,25.321,169.516,471.296,362.510,503.068,191.569,475.110,9.811,171.663,9.811,301.651,322.299,346.410,18.796,20.138,18.796 +803,25.355,167.340,480.035,363.430,494.735,190.178,481.833,4.502,165.203,4.502,301.641,322.139,347.460,18.808,20.869,18.808 +804,25.389,168.009,488.911,363.629,486.090,189.797,488.708,179.465,157.797,179.465,304.118,320.910,347.697,18.102,20.633,18.102 +805,25.422,170.198,499.256,362.962,476.935,189.876,497.037,173.565,149.566,173.565,308.891,320.333,348.497,19.202,21.641,19.202 +806,25.455,172.623,509.331,361.120,467.539,190.583,505.376,167.583,140.505,167.583,312.586,319.079,349.367,19.980,21.997,19.980 +807,25.488,176.462,518.869,358.040,457.746,192.255,513.573,161.460,130.665,161.460,316.551,318.667,349.865,19.899,20.867,19.899 +808,25.522,182.057,527.969,352.980,447.476,194.808,522.102,155.289,120.770,155.289,321.697,316.772,349.769,20.203,20.129,20.203 +809,25.555,188.461,538.079,347.973,438.776,199.289,531.548,148.903,109.654,148.903,325.173,313.600,350.465,22.766,20.786,22.766 +810,25.589,194.208,546.071,342.695,430.324,203.772,538.714,142.431,100.069,142.431,328.268,312.173,352.400,20.486,21.100,20.486 +811,25.621,202.169,553.207,336.215,421.533,209.913,545.594,135.490,89.182,135.490,332.364,311.154,354.082,19.291,21.726,19.291 +812,25.653,211.456,560.640,327.475,413.505,217.290,553.185,128.047,78.408,128.047,336.881,310.685,355.813,20.133,23.234,20.133 +813,25.684,221.930,566.041,327.939,431.018,221.760,566.327,120.754,63.715,120.754,341.815,256.746,341.150,20.149,25.766,20.149 +814,25.714,232.612,570.405,318.169,417.839,232.835,569.884,113.199,52.829,113.199,345.599,267.247,346.732,19.565,24.579,19.565 +815,25.745,243.425,574.756,293.400,396.300,244.969,569.171,105.456,41.634,105.456,347.465,309.427,359.053,18.926,24.332,18.926 +816,25.776,256.287,578.324,279.401,394.822,257.038,573.030,98.073,30.595,98.073,348.469,310.284,359.164,21.922,20.123,21.922 +817,25.808,268.958,578.542,266.637,395.188,268.984,574.125,90.343,19.364,90.343,349.006,309.965,357.840,21.994,18.199,21.994 +818,25.840,278.424,578.439,253.594,395.858,277.754,573.797,81.781,8.331,81.781,349.748,310.570,359.129,23.083,18.142,23.083 +819,25.871,278.424,578.439,253.594,395.858,277.754,573.797,81.781,8.331,81.781,349.748,310.570,359.129,23.083,18.142,23.083 +820,25.899,292.100,575.313,241.115,398.545,290.961,571.193,74.543,177.406,74.543,350.827,310.587,359.376,21.573,18.288,21.573 +821,25.930,304.969,571.151,229.522,402.675,303.163,566.946,66.752,166.504,66.752,350.849,311.164,360.001,21.623,18.592,21.623 +822,25.962,315.573,565.296,218.599,408.331,313.273,561.407,59.400,155.772,59.400,350.868,311.512,359.904,23.101,18.512,23.101 +823,25.993,325.870,558.065,208.856,415.234,323.036,554.460,51.832,145.267,51.832,350.868,311.801,360.039,23.912,18.308,23.912 +824,26.024,334.480,549.991,199.915,422.906,330.926,546.479,44.667,134.723,44.667,350.098,311.164,360.091,24.465,18.672,24.465 +825,26.056,341.388,542.233,192.533,431.364,337.291,539.014,38.157,124.349,38.157,350.249,311.268,360.670,25.612,18.624,25.612 +826,26.088,347.676,532.206,186.980,440.712,343.488,529.693,30.964,113.875,30.964,350.200,310.996,359.969,25.039,19.998,25.039 +827,26.121,352.340,522.561,182.648,449.872,347.915,520.543,24.516,103.443,24.516,349.658,310.464,359.385,26.001,20.453,26.001 +828,26.153,354.600,516.700,179.034,459.111,349.682,515.061,18.435,93.132,18.435,348.799,308.961,359.168,19.290,20.248,19.290 +829,26.184,356.798,507.901,176.412,467.693,351.618,506.741,12.622,82.737,12.622,348.391,308.855,359.009,19.313,19.781,19.313 +830,26.215,358.086,499.286,175.023,476.008,352.932,498.637,7.181,72.087,7.181,348.294,308.689,358.684,19.234,20.434,19.234 +831,26.246,358.369,491.503,174.022,484.131,353.002,491.302,2.137,61.499,2.137,347.504,308.302,358.246,18.771,20.429,18.771 +832,26.276,358.158,483.536,173.539,492.254,352.366,483.795,177.440,51.009,177.440,346.459,309.084,358.054,18.847,21.319,18.847 +833,26.306,357.484,476.901,173.736,498.286,351.675,477.622,172.930,40.400,172.930,346.554,308.472,358.260,19.356,20.707,19.356 +834,26.337,357.069,470.355,174.744,504.257,350.671,471.630,168.733,30.050,168.733,344.776,308.364,357.823,20.599,20.974,20.599 +835,26.367,357.069,470.355,174.744,504.257,350.671,471.630,168.733,30.050,168.733,344.776,308.364,357.823,20.599,20.974,20.599 +836,26.396,359.095,463.720,175.885,509.532,349.361,466.329,164.997,19.236,164.997,337.340,308.688,357.494,20.474,20.816,20.474 +837,26.427,362.087,456.769,176.797,515.500,347.365,461.656,161.638,8.445,161.638,326.667,309.183,357.692,20.254,19.269,20.254 +838,26.459,366.984,449.469,177.903,520.064,345.712,457.942,158.281,177.709,158.281,311.977,310.272,357.770,21.745,19.145,21.745 +839,26.492,381.914,437.268,178.863,524.303,343.471,453.899,156.606,166.715,156.606,274.290,311.437,358.061,18.024,19.397,18.024 +840,26.523,411.744,417.123,180.141,528.486,341.621,450.886,154.290,155.726,154.290,202.659,312.192,358.316,17.820,18.732,17.820 +841,26.555,347.073,445.883,181.598,531.850,340.607,449.407,151.407,144.891,151.407,343.415,314.098,358.145,19.189,18.462,19.189 +842,26.588,343.894,444.614,182.865,534.844,339.105,447.422,149.621,134.297,149.621,346.894,315.467,357.998,19.515,19.533,19.515 +843,26.621,342.052,442.968,184.442,537.462,337.857,445.565,148.241,123.561,148.241,347.758,315.918,357.626,19.678,20.263,19.678 +844,26.652,340.992,442.425,185.423,539.354,337.259,444.814,147.381,112.282,147.381,348.835,316.788,357.699,20.585,18.890,20.585 +845,26.683,339.852,441.255,186.796,540.959,336.530,443.441,146.659,101.421,146.659,349.424,316.139,357.376,19.742,18.653,19.742 +846,26.714,339.749,439.672,187.971,541.516,336.106,442.165,145.620,90.474,145.620,347.889,315.072,356.718,20.720,17.801,20.720 +847,26.744,339.363,439.122,188.796,541.756,335.958,441.466,145.458,79.351,145.458,347.903,315.194,356.170,19.876,18.404,19.876 +848,26.774,340.543,439.324,189.413,541.045,336.780,441.870,145.923,68.416,145.923,346.174,314.197,355.260,19.757,18.863,19.757 +849,26.805,340.543,439.324,189.413,541.045,336.780,441.870,145.923,68.416,145.923,346.174,314.197,355.260,19.757,18.863,19.757 +850,26.834,340.762,438.886,189.633,540.588,336.833,441.554,145.827,56.985,145.827,345.324,312.908,354.823,19.917,21.249,19.917 +851,26.866,341.643,439.476,188.250,539.250,337.286,442.368,146.432,45.000,146.432,345.042,310.420,355.500,19.982,21.213,19.982 +852,26.897,343.009,440.853,185.959,537.639,337.842,444.165,147.339,34.399,147.339,344.350,311.228,356.624,20.917,23.401,20.917 +853,26.927,345.209,441.982,185.149,534.655,339.188,445.654,148.627,23.356,148.627,341.602,310.931,355.706,21.053,23.369,21.053 +854,26.958,349.631,442.493,183.822,531.505,340.716,447.553,150.422,12.137,150.422,335.276,310.104,355.777,20.191,21.161,20.191 +855,26.989,355.392,441.154,182.079,529.857,341.085,448.867,151.670,1.713,151.670,324.283,310.310,356.790,20.513,19.316,20.513 +856,27.020,367.700,438.900,180.231,527.102,342.172,451.664,153.435,171.939,153.435,300.080,310.698,357.163,21.019,20.453,21.019 +857,27.056,404.327,427.516,178.344,523.991,343.464,454.296,156.251,162.933,156.251,225.424,311.802,358.412,17.904,20.729,17.904 +858,27.087,354.822,454.322,176.806,520.537,345.107,458.248,157.993,154.139,157.993,337.803,312.263,358.759,18.883,19.790,18.883 +859,27.119,351.038,459.225,175.843,517.483,346.311,460.864,160.875,145.905,160.875,349.212,313.166,359.219,20.092,19.454,20.092 +860,27.150,352.009,464.045,174.499,512.926,347.830,465.244,163.994,137.026,163.994,350.824,313.527,359.518,20.320,20.932,20.320 +861,27.181,353.448,469.481,173.517,507.257,349.524,470.341,167.631,127.073,167.631,351.627,313.402,359.660,20.204,19.255,20.204 +862,27.212,354.799,475.601,172.873,500.934,350.755,476.182,171.824,117.300,171.824,351.016,313.138,359.188,19.370,18.804,19.370 +863,27.243,356.411,482.092,173.160,493.707,352.207,482.360,176.362,107.407,176.362,350.391,312.530,358.814,19.008,19.378,19.008 +864,27.274,357.514,489.766,173.627,485.517,352.806,489.677,1.076,97.489,1.076,349.032,311.708,358.450,18.466,19.187,18.466 +865,27.304,357.514,489.766,173.627,485.517,352.806,489.677,1.076,97.489,1.076,349.032,311.708,358.450,18.466,19.187,18.466 +866,27.333,357.877,497.639,175.238,476.468,353.024,497.115,6.155,88.502,6.155,348.187,309.469,357.950,19.076,18.745,19.076 +867,27.363,357.166,506.079,176.830,467.732,352.171,505.058,11.560,78.621,11.560,348.333,308.494,358.529,19.238,18.701,19.238 +868,27.394,355.050,515.141,179.763,457.825,350.191,513.622,17.354,69.044,17.354,348.445,308.073,358.626,19.090,19.392,19.090 +869,27.426,352.773,522.709,193.352,464.822,355.062,523.745,24.362,58.392,24.362,348.260,270.107,343.234,25.575,20.833,25.575 +870,27.457,351.468,532.302,199.496,453.180,351.591,532.373,29.798,47.651,29.798,342.961,268.394,342.678,25.188,21.498,25.188 +871,27.488,398.065,584.990,202.775,438.864,341.795,543.596,36.339,37.926,36.339,208.380,279.082,348.090,18.462,20.304,18.462 +872,27.521,335.690,552.306,199.464,421.605,329.948,546.596,44.840,26.966,44.840,345.122,306.349,361.317,24.049,19.890,24.049 +873,27.554,326.006,557.530,207.584,415.559,323.191,553.980,51.582,16.739,51.582,351.520,306.412,360.581,23.883,17.468,23.883 +874,27.586,315.409,564.266,217.541,408.656,313.554,561.164,59.128,6.754,59.128,353.103,307.352,360.333,23.268,16.830,23.268 +875,27.616,305.664,570.508,228.639,402.883,303.932,566.572,66.251,176.669,66.251,351.701,307.818,360.300,21.601,17.547,21.601 +876,27.647,293.715,575.408,240.988,398.520,292.433,571.043,73.622,166.430,73.622,350.959,309.725,360.057,21.276,17.497,21.276 +877,27.677,280.020,578.577,253.979,395.454,279.207,573.513,80.885,156.038,80.885,349.356,311.102,359.614,23.222,17.058,23.222 +878,27.708,269.363,579.518,267.123,394.182,269.322,573.617,89.598,145.993,89.598,347.090,312.310,358.892,21.119,16.340,21.119 +879,27.738,269.363,579.518,267.123,394.182,269.322,573.617,89.598,145.993,89.598,347.090,312.310,358.892,21.119,16.340,21.119 +880,27.766,254.949,578.766,279.306,393.329,255.707,572.114,96.503,135.510,96.503,347.223,312.617,360.614,22.538,17.708,22.538 +881,27.797,244.109,577.641,290.819,395.473,246.192,569.568,104.470,124.992,104.470,342.770,313.110,359.446,19.959,20.727,19.959 +882,27.828,229.282,583.091,300.648,399.067,236.339,565.859,112.270,116.742,112.270,320.199,310.840,357.443,18.623,18.498,18.623 +883,27.860,209.193,592.280,311.001,404.920,226.569,561.113,119.141,107.157,119.141,283.709,310.121,355.076,18.079,19.437,18.079 +884,27.892,209.291,568.944,322.344,411.086,219.185,555.418,126.185,98.858,126.185,321.277,310.422,354.794,20.014,21.468,20.014 +885,27.923,204.691,556.553,331.580,419.577,211.667,549.110,133.142,88.877,133.142,332.624,307.274,353.026,20.423,23.133,20.423 +886,27.955,199.705,546.623,340.219,427.604,205.692,541.589,139.939,75.174,139.939,337.003,308.692,352.645,19.847,24.736,19.847 +887,27.987,195.595,537.384,346.516,435.296,200.892,533.844,146.249,64.144,146.249,338.925,311.392,351.666,20.503,25.232,20.503 +888,28.018,191.957,529.327,351.524,442.918,197.130,526.616,152.346,53.765,152.346,339.527,316.058,351.207,21.249,24.648,21.249 +889,28.048,188.081,520.201,356.224,452.296,193.639,517.948,157.938,42.994,157.938,338.686,317.717,350.680,19.989,24.104,19.989 +890,28.079,185.761,512.861,359.346,461.267,191.752,511.046,163.151,33.147,163.151,337.135,319.820,349.656,20.563,20.641,20.563 +891,28.111,183.520,505.599,362.291,469.122,190.857,504.088,168.366,22.834,168.366,334.945,320.778,349.926,20.338,20.761,20.338 +892,28.144,181.229,498.139,363.520,477.907,190.163,497.113,173.447,12.212,173.447,330.845,322.256,348.832,19.071,20.999,19.071 +893,28.180,171.380,491.057,364.502,483.453,190.233,490.548,178.452,2.983,178.452,311.076,321.970,348.795,17.264,19.485,17.264 +894,28.226,148.863,483.135,364.046,489.869,190.438,484.699,2.155,172.875,2.155,264.152,322.862,347.360,17.676,20.094,17.676 +895,28.260,170.597,477.907,363.342,495.970,190.468,479.955,5.886,163.402,5.886,307.258,322.691,347.210,19.033,20.908,19.033 +896,28.294,177.054,473.176,362.234,502.442,190.988,475.498,9.462,153.812,9.462,318.441,322.016,346.692,18.741,23.096,18.741 +897,28.331,180.469,468.884,361.196,507.953,191.992,471.452,12.562,143.842,12.562,322.573,321.217,346.185,18.985,24.563,18.985 +898,28.362,183.185,464.110,359.680,512.634,193.095,466.917,15.814,132.990,15.814,324.879,321.176,345.478,19.243,25.143,19.243 +899,28.394,184.914,460.778,358.038,517.192,193.965,463.760,18.236,123.690,18.236,326.048,320.894,345.107,19.308,25.239,19.308 +900,28.427,186.477,458.061,356.579,520.534,194.832,461.152,20.302,113.629,20.302,326.789,320.140,344.605,18.964,25.080,18.964 +901,28.460,187.776,455.810,355.167,523.912,195.677,458.971,21.801,103.891,21.801,327.381,320.390,344.401,19.127,24.457,19.127 +902,28.492,189.150,453.862,354.283,526.596,196.650,457.132,23.559,94.276,23.559,328.154,320.647,344.516,19.250,23.877,19.250 +903,28.523,191.598,450.155,353.634,528.856,198.656,453.291,23.962,84.958,23.962,329.175,321.574,344.622,25.993,22.618,25.993 +904,28.555,192.718,448.777,353.500,530.500,199.526,452.010,25.401,75.964,25.401,330.441,322.330,345.515,25.111,22.071,25.111 +905,28.590,192.772,447.758,353.074,531.532,199.971,451.252,25.891,66.482,25.891,329.579,322.727,345.582,25.521,20.461,25.521 +906,28.622,192.869,447.597,353.038,531.976,200.129,451.140,26.017,57.553,26.017,329.586,323.507,345.742,25.516,19.549,25.516 +907,28.654,192.024,447.653,353.951,531.230,200.345,451.664,25.736,48.814,25.736,327.365,324.455,345.839,25.527,19.567,25.527 +908,28.686,189.851,448.739,354.545,529.786,199.452,453.170,24.775,40.741,24.775,324.700,325.504,345.849,24.655,19.594,24.655 +909,28.716,185.133,451.688,356.231,527.154,197.700,457.259,23.908,33.690,23.908,319.018,325.054,346.510,18.114,21.079,18.114 +910,28.747,176.210,450.836,357.261,523.994,196.727,459.263,22.329,27.277,22.329,301.821,325.233,346.180,17.939,19.331,17.939 +911,28.778,119.914,433.665,358.538,521.900,195.868,461.681,20.247,21.075,20.247,185.005,324.154,346.917,17.518,20.082,17.518 +912,28.808,124.481,441.603,360.161,517.344,194.836,464.385,17.942,13.981,17.942,199.298,324.030,347.200,17.596,19.602,17.596 +913,28.841,157.308,457.554,361.037,512.698,193.514,467.365,15.161,6.981,15.161,272.073,322.975,347.096,17.747,20.216,17.747 +914,28.874,164.473,464.880,361.991,507.843,192.460,471.081,12.492,179.543,12.492,289.606,322.085,346.938,17.860,18.848,17.860 +915,28.907,168.651,471.566,362.661,502.328,191.211,475.373,9.578,171.139,9.578,301.333,322.677,347.091,18.760,20.156,18.760 +916,28.940,171.732,477.378,363.303,497.860,190.587,479.503,6.429,162.860,6.429,309.422,321.952,347.370,18.559,21.273,18.559 +917,28.971,173.335,483.179,363.478,492.493,190.145,484.054,2.978,152.592,2.978,313.409,320.775,347.075,18.807,22.095,18.807 +918,29.002,173.335,483.179,363.478,492.493,190.145,484.054,2.978,152.592,2.978,313.409,320.775,347.075,18.807,22.095,18.807 +919,29.029,175.005,488.456,363.305,486.748,189.643,488.385,179.721,142.253,179.721,318.060,320.039,347.336,18.073,22.982,18.073 +920,29.061,176.661,495.116,362.852,480.812,189.331,494.151,175.643,131.532,175.643,322.655,319.326,348.067,18.261,23.570,18.261 +921,29.091,178.716,501.910,362.046,473.669,189.850,500.204,171.289,119.745,171.289,325.930,318.149,348.457,19.012,25.055,19.012 +922,29.124,181.083,508.958,360.288,466.257,190.658,506.688,166.665,108.034,166.665,329.081,316.574,348.764,19.792,24.590,19.792 +923,29.156,183.668,516.021,358.061,458.754,191.995,513.270,161.719,97.017,161.719,332.029,314.779,349.570,19.957,24.492,19.957 +924,29.190,186.993,523.448,354.671,451.718,194.007,520.410,156.584,85.601,156.584,334.174,313.842,349.461,20.557,23.623,20.557 +925,29.224,191.482,531.191,351.318,443.844,197.431,527.915,151.157,73.780,151.157,337.126,313.565,350.708,21.721,24.337,21.721 +926,29.256,195.820,537.497,346.691,435.972,200.770,534.138,145.840,61.675,145.840,339.767,312.571,351.732,19.534,25.715,19.534 +927,29.289,201.552,545.062,340.413,426.616,206.032,541.289,139.899,50.711,139.899,341.593,315.564,353.308,19.968,24.767,19.968 +928,29.321,207.209,551.743,333.893,418.828,211.388,547.379,133.751,39.806,133.751,343.066,314.587,355.150,18.966,24.199,18.966 +929,29.352,215.024,558.258,324.517,413.552,217.703,554.734,127.235,28.635,127.235,345.216,314.606,354.070,19.522,19.191,19.522 +930,29.382,223.618,564.907,315.425,407.736,225.935,560.917,120.141,17.605,120.141,345.581,315.031,354.810,19.890,18.138,19.890 +931,29.412,232.601,569.901,305.343,402.330,234.453,565.571,113.160,6.729,113.160,346.515,315.296,355.934,19.282,18.027,19.282 +932,29.444,242.421,574.688,294.502,398.032,243.866,569.694,106.133,175.958,106.133,347.546,314.336,357.944,18.800,18.174,18.800 +933,29.475,254.370,577.975,282.934,395.149,255.269,572.538,99.389,165.256,99.389,348.030,314.554,359.051,22.195,18.476,22.195 +934,29.505,263.297,579.496,270.864,393.711,263.422,573.376,91.173,154.799,91.173,347.316,314.132,359.559,22.016,18.629,22.016 +935,29.537,274.837,579.724,258.828,393.867,274.216,573.712,84.101,144.324,84.101,348.862,313.515,360.949,22.056,18.788,22.056 +936,29.569,274.837,579.724,258.828,393.867,274.216,573.712,84.101,144.324,84.101,348.862,313.515,360.949,22.056,18.788,22.056 +937,29.597,288.151,577.615,246.019,396.019,286.776,571.714,76.880,133.919,76.880,348.603,312.672,360.722,21.426,18.408,21.426 +938,29.628,301.387,574.099,233.404,399.768,299.120,568.094,69.326,123.576,69.326,348.538,312.016,361.375,21.307,18.473,21.307 +939,29.659,312.850,568.238,222.214,404.740,309.937,562.813,61.763,113.356,61.763,349.216,310.535,361.531,22.482,19.008,22.482 +940,29.695,323.144,561.610,212.081,411.472,319.619,556.678,54.439,102.793,54.439,349.206,309.560,361.330,23.573,19.103,23.573 +941,29.739,340.007,545.115,194.978,427.503,335.380,541.222,40.079,82.224,40.079,349.199,307.878,361.293,25.362,18.590,25.362 +942,29.772,346.532,536.209,188.663,436.281,341.265,532.729,33.453,71.768,33.453,348.350,307.074,360.976,25.507,19.141,25.507 +943,29.807,351.299,526.893,184.553,445.511,346.267,524.320,27.081,61.645,27.081,348.418,307.281,359.722,25.587,21.749,25.587 +944,29.847,354.211,520.861,179.838,453.765,347.999,518.478,20.988,50.669,20.988,347.059,306.480,360.365,19.349,23.478,19.349 +945,29.879,357.806,512.389,176.563,462.580,350.354,510.362,15.222,40.452,15.222,345.033,306.615,360.478,19.036,21.555,19.036 +946,29.909,360.952,503.721,174.612,470.850,351.766,502.159,9.650,30.058,9.650,341.156,306.998,359.791,19.589,20.588,19.589 +947,29.939,369.670,496.137,173.196,479.130,352.502,494.767,4.564,19.544,4.564,325.519,307.202,359.963,19.099,20.594,19.099 +948,29.970,369.670,496.137,173.196,479.130,352.502,494.767,4.564,19.544,4.564,325.519,307.202,359.963,19.099,20.594,19.099 +949,29.998,385.500,487.500,172.413,487.354,352.207,487.500,0.000,8.873,0.000,293.000,308.383,359.587,17.000,19.215,17.000 +950,30.029,426.235,475.059,172.360,494.313,351.805,480.784,175.601,178.294,175.601,210.609,309.161,359.908,17.794,19.123,17.794 +951,30.061,364.667,473.357,172.643,500.906,350.722,475.528,171.153,167.363,171.153,331.503,310.856,359.728,18.659,19.335,18.659 +952,30.092,354.989,468.745,173.608,507.590,349.311,470.031,167.234,156.711,167.234,347.673,312.374,359.317,19.689,18.978,19.689 +953,30.123,352.584,463.331,174.885,513.577,347.717,464.739,163.872,146.310,163.872,349.062,313.683,359.194,20.428,19.137,20.428 +954,30.156,350.789,459.023,176.051,518.992,346.083,460.661,160.803,135.865,160.803,349.548,314.048,359.514,20.406,20.087,20.406 +955,30.189,348.781,455.490,177.799,523.361,344.602,457.182,157.954,124.661,157.954,349.879,315.405,358.896,20.368,18.721,20.368 +956,30.221,346.966,452.228,179.449,527.303,343.105,453.986,155.519,113.832,155.519,350.164,315.780,358.649,20.681,18.474,20.681 +957,30.254,345.630,449.272,181.374,530.658,341.857,451.167,153.338,102.894,153.338,349.731,315.631,358.177,20.992,18.497,20.992 +958,30.285,344.641,447.410,183.170,533.083,341.029,449.363,151.607,92.203,151.607,349.148,314.460,357.360,20.447,18.409,20.447 +959,30.315,344.392,445.562,184.986,535.036,340.449,447.815,150.255,81.170,150.255,347.421,314.682,356.506,21.210,18.477,21.210 +960,30.346,343.485,443.309,186.345,536.295,339.503,445.698,149.036,70.183,149.036,346.599,313.466,355.887,20.237,18.841,20.237 +961,30.377,342.822,441.800,187.468,537.415,338.794,444.304,148.134,58.831,148.134,345.866,313.317,355.351,20.498,19.646,20.498 +962,30.407,343.165,441.739,186.874,537.657,338.568,444.629,147.848,47.432,147.848,345.016,311.010,355.875,20.972,21.281,20.972 +963,30.439,343.165,441.739,186.874,537.657,338.568,444.629,147.848,47.432,147.848,345.016,311.010,355.875,20.972,21.281,20.972 +964,30.468,343.141,441.094,186.498,538.188,338.030,444.328,147.680,36.119,147.680,344.378,310.257,356.475,19.833,23.382,19.833 +965,30.499,343.490,440.045,186.467,536.984,337.944,443.600,147.339,25.641,147.339,342.666,310.448,355.842,20.076,23.512,20.076 +966,30.529,346.057,439.674,185.941,535.842,338.453,444.477,147.724,14.421,147.724,337.484,310.222,355.472,20.959,21.252,20.959 +967,30.561,349.731,437.676,184.757,534.805,338.474,444.667,148.160,3.979,148.160,329.777,310.268,356.277,20.299,19.700,20.299 +968,30.595,356.408,435.491,184.075,533.966,339.232,445.946,148.671,173.991,148.671,316.388,310.861,356.601,22.358,19.838,22.358 +969,30.626,370.146,429.631,182.493,532.646,339.501,447.143,150.255,164.701,150.255,286.892,312.142,357.485,18.109,20.200,18.109 +970,30.657,407.188,412.206,181.696,531.691,339.958,448.407,151.699,156.038,151.699,204.947,312.422,357.660,17.880,19.292,17.880 +971,30.688,348.845,446.741,180.346,529.753,341.163,450.739,152.509,148.138,152.509,340.942,313.341,358.262,18.930,18.807,18.930 +972,30.720,346.122,450.671,179.237,527.286,342.297,452.535,154.026,140.290,154.026,350.145,313.948,358.655,21.184,20.484,21.184 +973,30.751,347.487,453.683,178.306,524.774,343.774,455.307,156.384,131.878,156.384,350.772,314.131,358.878,20.388,21.002,20.388 +974,30.782,348.925,457.209,177.137,521.086,345.287,458.611,158.931,122.179,158.931,350.940,314.610,358.737,20.958,19.210,20.958 +975,30.814,351.090,461.180,175.886,516.371,347.186,462.440,162.121,112.726,162.121,350.966,314.617,359.170,20.354,18.949,20.354 +976,30.845,353.032,466.185,174.975,511.109,348.924,467.245,165.530,102.973,165.530,350.298,314.129,358.783,20.053,19.071,20.053 +977,30.876,355.206,471.430,174.590,504.976,350.632,472.288,169.380,93.366,169.380,348.797,312.871,358.103,19.719,19.378,19.719 +978,30.906,355.206,471.430,174.590,504.976,350.632,472.288,169.380,93.366,169.380,348.797,312.871,358.103,19.719,19.378,19.719 +979,30.935,357.249,477.816,174.132,497.262,352.267,478.387,173.454,83.631,173.454,348.223,311.086,358.252,19.300,19.045,19.300 +980,30.965,358.484,484.534,174.182,489.723,353.170,484.712,178.080,73.848,178.080,347.475,310.287,358.110,18.855,19.473,18.855 +981,30.997,358.284,492.407,174.471,481.286,353.161,492.155,2.810,63.835,2.810,347.759,308.648,358.017,18.616,20.573,18.616 +982,31.028,358.346,500.263,180.629,479.767,355.945,499.934,7.815,54.293,7.815,348.012,291.869,352.859,19.465,20.732,19.465 +983,31.061,357.637,509.663,183.331,470.673,354.999,509.028,13.536,44.326,13.536,346.328,287.132,351.753,19.210,20.896,19.210 +984,31.093,359.249,519.546,178.888,454.783,348.592,515.848,19.134,34.401,19.134,338.126,306.753,360.689,19.261,20.490,19.261 +985,31.125,414.386,557.167,182.706,445.317,344.834,524.935,24.864,24.201,24.864,207.841,306.132,361.155,18.965,19.472,18.965 +986,31.156,347.886,533.700,187.315,436.780,342.149,530.162,31.667,14.487,31.667,348.129,306.601,361.609,25.096,20.281,25.096 +987,31.188,340.952,542.274,193.597,429.174,336.965,539.115,38.387,4.180,38.387,351.119,306.448,361.293,25.124,17.085,25.124 +988,31.220,332.705,550.435,201.270,421.138,329.818,547.476,45.707,174.169,45.707,352.130,307.769,360.397,24.145,17.196,24.145 +989,31.251,323.853,559.132,210.501,413.746,321.306,555.720,53.267,164.004,53.267,351.590,308.789,360.106,23.529,17.502,23.529 +990,31.282,313.806,566.526,221.269,407.546,311.728,562.819,60.732,153.783,60.732,350.854,309.510,359.354,22.767,16.835,22.767 +991,31.312,302.828,572.569,232.319,401.252,300.962,567.905,68.199,143.820,68.199,350.407,310.628,360.454,21.541,17.264,21.541 +992,31.342,291.021,576.972,244.678,397.199,289.626,571.633,75.353,134.256,75.353,349.224,310.513,360.261,21.582,17.704,21.582 +993,31.372,276.156,580.307,256.124,393.761,275.279,573.614,82.532,123.559,82.532,348.134,310.629,361.635,25.601,17.945,25.601 +994,31.404,276.156,580.307,256.124,393.761,275.279,573.614,82.532,123.559,82.532,348.134,310.629,361.635,25.601,17.945,25.601 +995,31.434,267.715,581.525,267.809,393.782,267.879,573.483,91.173,113.003,91.173,343.235,308.789,359.323,22.729,20.424,22.729 +996,31.465,251.395,585.187,279.204,394.910,253.303,572.357,98.459,104.231,98.459,332.710,307.812,358.652,22.202,20.046,22.202 +997,31.496,233.522,602.112,291.792,407.216,241.992,574.137,106.846,95.988,106.846,289.922,289.294,348.380,19.161,18.382,19.161 +998,31.526,227.573,576.903,306.437,421.189,229.624,572.410,114.533,86.967,114.533,329.050,268.789,338.927,20.327,20.190,20.327 +999,31.559,218.579,566.681,323.099,426.556,220.215,564.092,122.285,74.476,122.285,336.326,269.517,342.453,20.251,23.660,20.251 +1000,31.591,210.693,556.998,332.411,423.819,213.950,553.104,129.917,63.759,129.917,340.191,289.838,350.344,19.641,24.900,19.641 +1001,31.622,203.770,547.915,337.024,423.004,208.176,543.844,137.261,53.531,137.261,341.285,311.985,353.284,19.849,24.790,19.849 +1002,31.654,197.503,539.398,344.665,431.787,202.402,535.885,144.355,43.025,144.355,340.489,314.939,352.546,20.219,24.125,20.219 +1003,31.685,192.218,531.207,350.715,441.701,197.829,528.111,151.113,33.158,151.113,338.396,317.565,351.213,21.104,20.885,21.104 +1004,31.716,188.136,521.632,356.165,451.956,194.139,519.113,157.242,23.127,157.242,337.761,319.077,350.781,21.120,19.217,21.120 +1005,31.747,185.292,512.966,360.072,460.694,192.154,510.891,163.174,13.198,163.174,336.181,320.655,350.519,20.568,19.635,20.568 +1006,31.777,181.137,505.036,362.444,470.065,190.764,503.259,169.540,3.036,169.540,330.129,321.821,349.707,18.941,20.403,18.941 +1007,31.809,109.324,501.972,363.977,477.786,190.037,494.953,175.030,173.923,175.030,187.510,322.225,349.546,17.239,19.116,17.239 +1008,31.839,161.514,488.461,363.780,485.466,189.890,488.302,179.680,164.141,179.680,291.051,322.664,347.806,17.720,20.452,17.720 +1009,31.871,161.514,488.461,363.780,485.466,189.890,488.302,179.680,164.141,179.680,291.051,322.664,347.806,17.720,20.452,17.720 +1010,31.900,174.180,480.459,363.305,493.652,190.455,481.774,4.620,154.954,4.620,313.836,322.236,346.491,18.989,21.523,18.989 +1011,31.931,178.513,473.419,362.550,502.070,191.111,475.518,9.462,144.605,9.462,321.400,321.439,346.942,18.741,23.876,18.741 +1012,31.962,181.757,468.156,360.667,509.169,192.096,470.592,13.255,135.272,13.255,324.605,320.373,345.851,18.896,24.263,18.896 +1013,31.993,184.203,461.947,358.219,515.875,193.308,464.806,17.430,125.662,17.430,326.186,322.013,345.273,19.082,25.367,19.082 +1014,32.023,186.607,457.218,356.400,521.200,195.133,460.460,20.815,116.565,20.815,326.407,320.205,344.651,19.181,25.044,19.181 +1015,32.058,188.504,453.833,354.154,526.351,196.467,457.273,23.362,106.928,23.362,326.955,320.694,344.304,19.175,24.790,19.175 +1016,32.089,192.681,446.663,352.224,531.226,200.006,450.343,26.672,97.472,26.672,328.261,320.891,344.656,25.935,24.073,25.935 +1017,32.122,194.420,444.649,350.567,535.429,201.557,448.492,28.301,88.409,28.301,328.619,321.320,344.832,25.534,22.825,25.534 +1018,32.154,195.960,442.413,348.783,538.980,202.938,446.473,30.192,79.426,30.192,329.018,322.627,345.165,25.616,21.679,25.616 +1019,32.185,196.996,440.666,347.006,541.933,204.106,445.073,31.787,70.454,31.787,328.247,323.283,344.978,25.512,20.007,25.512 +1020,32.216,198.769,438.346,345.826,544.094,206.000,443.167,33.690,61.721,33.690,327.273,324.012,344.653,25.239,18.956,25.239 +1021,32.247,197.658,436.424,345.546,545.360,206.603,442.544,34.380,53.588,34.380,323.781,324.436,345.458,25.324,18.864,25.324 +1022,32.277,193.390,434.239,345.343,546.169,206.312,443.711,36.241,46.017,36.241,313.368,324.749,345.411,18.394,19.219,18.394 +1023,32.308,172.963,418.660,345.603,545.980,206.658,443.506,36.404,39.617,36.404,261.560,324.840,345.291,17.707,18.475,17.707 +1024,32.339,176.178,419.701,345.802,545.473,207.625,441.217,34.380,32.705,34.380,269.615,325.355,345.820,21.979,19.327,21.979 +1025,32.369,176.178,419.701,345.802,545.473,207.625,441.217,34.380,32.705,34.380,269.615,325.355,345.820,21.979,19.327,21.979 +1026,32.399,190.595,431.331,346.482,544.110,206.867,442.399,34.224,25.755,34.224,305.930,324.664,345.290,24.382,19.925,24.382 +1027,32.430,194.915,432.115,346.786,543.123,207.583,441.446,36.375,18.075,36.375,313.296,324.157,344.762,27.544,19.936,27.544 +1028,32.462,195.388,435.164,347.149,542.913,206.565,442.764,34.216,10.397,34.216,318.102,323.868,345.134,25.304,20.782,25.304 +1029,32.493,196.231,436.654,347.490,542.009,206.095,443.230,33.690,1.102,33.690,321.171,323.075,344.882,25.239,21.881,25.239 +1030,32.524,197.000,437.000,348.133,540.364,206.015,443.010,33.690,171.254,33.690,322.836,322.361,344.504,25.516,22.809,25.516 +1031,32.556,196.282,438.212,348.745,538.713,205.081,443.835,32.580,161.030,32.580,323.407,321.652,344.292,26.147,23.524,26.147 +1032,32.588,194.588,440.353,349.733,536.914,203.442,445.665,30.964,150.593,30.964,324.132,321.123,344.782,25.725,24.709,25.725 +1033,32.619,193.027,443.538,350.811,534.574,201.757,448.319,28.706,140.194,28.706,324.421,320.348,344.329,25.310,25.223,25.310 +1034,32.650,191.827,445.401,351.896,532.092,200.572,449.866,27.051,130.006,27.051,324.692,320.341,344.329,25.581,25.154,25.581 +1035,32.680,190.383,448.801,353.034,529.019,198.751,452.636,24.624,119.197,24.624,325.748,320.524,344.157,25.681,25.187,25.681 +1036,32.710,187.721,455.507,354.750,525.250,195.898,458.843,22.198,108.435,22.198,326.673,320.022,344.335,19.348,24.982,19.348 +1037,32.742,186.780,458.953,356.266,521.101,194.594,461.773,19.843,97.539,19.843,327.808,319.697,344.423,19.152,24.288,19.152 +1038,32.774,185.949,463.654,358.163,516.435,193.290,465.850,16.652,86.820,16.652,329.586,319.840,344.909,19.161,23.686,19.161 +1039,32.807,185.138,468.760,360.201,510.831,192.218,470.409,13.103,76.430,13.103,331.005,320.888,345.545,19.253,23.799,19.253 +1040,32.838,185.138,468.760,360.201,510.831,192.218,470.409,13.103,76.430,13.103,331.005,320.888,345.545,19.253,23.799,19.253 +1041,32.866,184.368,474.731,361.705,504.908,190.959,475.801,9.224,65.956,9.224,333.056,321.050,346.409,18.754,22.999,18.754 +1042,32.897,183.597,481.286,362.823,497.933,190.383,481.826,4.548,55.452,4.548,332.733,321.992,346.349,18.895,22.873,18.895 +1043,32.929,183.000,488.000,363.327,489.701,189.663,488.000,0.000,45.352,0.000,334.000,322.452,347.327,18.000,21.794,18.000 +1044,32.960,182.288,495.018,363.519,481.972,189.624,494.392,175.121,35.032,175.121,333.920,322.123,348.644,18.652,20.412,18.652 +1045,32.992,183.241,503.023,362.998,472.429,190.505,501.751,170.064,24.944,170.064,335.180,321.759,349.930,19.010,21.487,19.010 +1046,33.023,184.630,511.683,361.054,463.798,191.951,509.628,164.320,14.919,164.320,335.185,321.691,350.392,20.100,19.550,20.100 +1047,33.056,187.151,520.110,357.938,454.210,194.081,517.391,158.580,5.003,158.580,336.336,321.484,351.225,20.151,19.407,20.151 +1048,33.090,189.987,528.999,353.523,444.758,197.025,525.392,152.870,174.983,152.870,336.284,320.664,352.099,19.491,19.182,19.491 +1049,33.123,194.346,537.769,348.018,435.069,201.144,533.237,146.310,165.111,146.310,336.980,320.148,353.321,19.415,19.862,19.415 +1050,33.157,199.489,546.792,341.013,425.920,206.390,541.016,140.072,155.722,140.072,336.215,319.538,354.214,19.496,19.461,19.496 +1051,33.191,206.862,554.577,332.357,417.038,212.801,548.202,132.967,146.244,132.967,337.504,317.848,354.930,19.067,19.302,19.067 +1052,33.225,214.829,562.797,322.667,409.646,220.216,555.319,125.770,136.755,125.770,337.730,317.068,356.161,19.429,18.778,19.429 +1053,33.257,224.288,570.078,311.665,402.891,228.996,561.342,118.317,127.414,118.317,337.561,315.828,357.408,19.154,19.402,19.154 +1054,33.290,234.479,577.055,299.992,398.082,238.472,566.407,110.556,117.865,110.556,335.674,314.056,358.418,18.727,18.504,18.727 +1055,33.322,246.941,583.265,287.033,395.009,249.729,570.719,102.529,108.496,102.529,333.531,312.438,359.235,20.175,18.596,20.175 +1056,33.353,257.425,591.514,273.386,394.075,258.765,573.395,94.230,99.237,94.230,323.483,310.355,359.820,22.235,18.771,22.235 +1057,33.384,274.758,597.198,261.225,393.508,273.762,573.290,87.614,90.385,87.614,312.437,309.074,360.295,22.314,17.597,22.314 +1058,33.415,291.173,611.865,247.629,396.561,283.374,572.869,78.690,80.605,78.690,280.250,307.765,359.788,22.357,18.348,22.357 +1059,33.446,321.387,640.710,234.436,399.522,296.789,568.867,71.099,71.259,71.099,208.950,306.703,360.825,18.999,18.314,18.999 +1060,33.478,342.697,632.415,222.225,405.917,307.554,564.472,62.650,61.699,62.650,207.077,304.846,360.066,18.316,19.303,18.316 +1061,33.509,361.513,620.311,223.745,427.994,323.321,566.266,54.752,51.633,54.752,208.424,264.942,340.778,18.489,20.059,18.489 +1062,33.540,351.262,577.040,215.526,433.108,332.959,557.497,46.874,42.510,46.874,288.577,267.771,342.127,18.503,19.719,18.503 +1063,33.573,350.988,555.805,194.125,427.953,334.180,542.213,38.960,32.974,38.960,318.266,306.448,361.497,18.672,20.599,18.672 +1064,33.604,350.988,555.805,194.125,427.953,334.180,542.213,38.960,32.974,38.960,318.266,306.448,361.497,18.672,20.599,18.672 +1065,33.632,351.789,539.607,186.789,438.559,340.854,532.844,31.734,23.663,31.734,335.535,306.741,361.249,19.383,19.471,19.383 +1066,33.663,353.433,526.969,181.252,448.045,345.523,523.333,24.687,14.271,24.687,343.994,307.555,361.405,19.366,21.129,19.366 +1067,33.694,355.916,516.172,177.090,459.366,348.968,513.921,17.952,4.541,17.952,346.042,307.652,360.650,19.518,18.732,19.518 +1068,33.725,356.155,505.786,174.048,469.538,351.030,504.741,11.522,174.951,11.522,350.432,309.445,360.894,19.672,18.282,19.672 +1069,33.756,357.385,496.499,172.741,480.674,352.049,495.985,5.492,164.511,5.492,349.178,310.469,359.900,19.066,18.531,19.066 +1070,33.789,357.000,488.000,172.326,489.700,352.163,488.000,0.000,155.033,0.000,350.000,311.489,359.674,18.000,19.349,18.000 +1071,33.821,355.761,479.069,172.653,498.225,351.462,479.492,174.375,145.869,174.375,350.931,312.607,359.569,18.743,19.394,18.743 +1072,33.853,354.006,471.404,173.265,506.317,349.831,472.199,169.216,136.138,169.216,351.163,313.950,359.662,19.694,19.046,19.694 +1073,33.884,352.025,464.530,174.629,513.730,347.905,465.688,164.305,126.085,164.305,351.065,314.820,359.624,20.368,18.587,20.368 +1074,33.914,349.493,458.230,177.164,520.841,345.817,459.567,160.017,116.237,160.017,351.056,315.293,358.878,20.248,18.529,20.248 +1075,33.945,347.212,452.629,179.684,527.346,343.414,454.334,155.833,106.294,155.833,350.217,315.638,358.543,20.762,18.517,20.762 +1076,33.975,344.701,448.058,182.868,532.830,341.203,449.920,151.982,96.566,151.982,349.524,315.292,357.449,20.475,18.439,20.475 +1077,34.006,342.858,443.292,185.976,537.852,338.861,445.716,148.770,86.583,148.770,347.652,314.813,357.002,20.031,18.206,20.031 +1078,34.037,342.858,443.292,185.976,537.852,338.861,445.716,148.770,86.583,148.770,347.652,314.813,357.002,20.031,18.206,20.031 +1079,34.066,340.141,439.729,189.091,541.619,336.596,442.124,145.954,76.527,145.954,347.291,314.587,355.848,19.640,18.771,19.640 +1080,34.097,338.202,436.265,191.825,545.209,334.330,439.162,143.200,66.560,143.200,345.593,314.355,355.265,19.969,19.761,19.969 +1081,34.129,335.868,433.231,194.924,547.872,332.263,436.195,140.572,56.184,140.572,344.691,314.231,354.023,20.306,21.172,20.306 +1082,34.160,333.824,430.365,196.031,550.016,329.822,433.916,138.406,45.451,138.406,343.559,312.609,354.260,19.924,20.801,19.924 +1083,34.192,331.564,428.174,197.459,553.257,327.297,432.226,136.481,35.538,136.481,343.216,312.590,354.985,19.603,24.063,19.603 +1084,34.223,329.902,425.884,199.696,554.565,325.697,430.121,134.777,25.866,134.777,342.232,312.208,354.171,19.331,24.568,19.331 +1085,34.255,328.783,423.599,201.189,555.840,323.973,428.694,133.350,15.945,133.350,339.474,311.808,353.486,19.157,24.038,19.157 +1086,34.287,328.384,422.061,202.213,556.871,323.158,427.839,132.125,5.711,132.125,338.068,312.044,353.650,20.206,21.791,20.206 +1087,34.318,328.699,419.303,203.320,557.477,322.080,426.859,131.222,175.914,131.222,332.923,312.062,353.013,20.129,20.234,20.129 +1088,34.348,328.621,416.580,203.500,558.443,320.498,426.133,130.378,166.350,130.378,328.092,313.168,353.172,19.153,20.337,19.153 +1089,34.379,330.877,413.220,203.768,559.423,320.213,426.060,129.710,158.148,129.710,320.598,313.828,353.981,20.275,19.552,20.275 +1090,34.411,333.679,406.773,204.061,560.104,318.787,425.075,129.136,149.826,129.136,307.104,314.841,354.293,18.319,19.180,18.319 +1091,34.442,340.168,397.183,204.294,560.885,317.666,424.686,129.289,142.656,129.289,283.339,315.826,354.409,17.801,19.852,17.801 +1092,34.474,364.977,365.606,205.055,561.606,317.274,424.316,129.094,135.924,129.094,203.342,316.161,354.635,17.802,19.397,17.802 +1093,34.506,366.902,362.622,205.071,562.560,317.219,424.726,128.660,129.958,128.660,196.310,317.029,355.375,17.179,19.557,17.179 +1094,34.538,366.902,362.622,205.071,562.560,317.219,424.726,128.660,129.958,128.660,196.310,317.029,355.375,17.179,19.557,17.179 +1095,34.565,324.187,417.088,204.965,562.586,317.839,425.239,127.915,124.330,127.915,334.770,317.913,355.433,17.808,18.772,17.808 +1096,34.596,321.513,420.831,204.715,562.344,317.973,425.335,128.170,118.682,128.170,343.957,318.678,355.414,18.317,20.343,18.317 +1097,34.628,322.211,422.444,204.694,562.373,319.158,426.170,129.323,112.584,129.323,346.165,319.231,355.799,19.208,20.395,19.208 +1098,34.659,322.409,423.587,204.457,561.851,319.784,426.726,129.908,105.313,129.908,347.095,318.905,355.279,19.456,20.576,19.456 +1099,34.689,324.295,424.879,202.214,560.395,321.342,428.228,131.403,97.595,131.403,346.913,318.581,355.843,20.026,20.089,20.026 +1100,34.722,326.128,425.688,200.755,558.505,322.892,429.163,132.965,89.630,132.965,346.285,317.077,355.782,18.847,19.567,18.847 +1101,34.754,327.968,426.992,199.195,556.122,324.780,430.232,134.542,81.399,134.542,346.539,317.647,355.630,19.719,19.941,19.719 +1102,34.785,331.189,429.100,197.216,553.282,327.514,432.540,136.888,73.072,136.888,345.207,316.368,355.276,20.161,19.633,20.161 +1103,34.817,334.408,431.803,195.540,549.945,330.688,434.965,139.635,64.269,139.635,345.120,316.186,354.884,19.658,19.971,19.658 +1104,34.848,336.895,434.366,192.710,545.833,333.154,437.298,141.911,55.985,141.911,345.475,315.066,354.981,20.229,20.739,20.229 +1105,34.879,340.556,438.192,189.175,540.836,336.286,441.149,145.305,46.861,145.305,345.005,312.698,355.393,19.543,21.575,19.543 +1106,34.910,343.928,442.655,185.054,536.806,338.712,445.842,148.570,38.589,148.570,344.868,311.882,357.093,21.048,23.789,21.048 +1107,34.940,347.203,446.716,182.803,530.386,341.693,449.633,152.103,30.069,152.103,343.949,311.326,356.417,19.963,23.275,19.963 +1108,34.972,347.203,446.716,182.803,530.386,341.693,449.633,152.103,30.069,152.103,343.949,311.326,356.417,19.963,23.275,19.963 +1109,35.001,351.912,449.902,180.269,523.772,344.122,453.456,155.477,21.463,155.477,339.394,310.139,356.517,20.669,21.699,20.669 +1110,35.032,359.039,454.468,177.310,517.518,346.340,459.127,159.854,11.821,159.854,330.547,309.935,357.599,20.215,19.826,20.215 +1111,35.064,368.947,459.864,174.627,510.927,348.426,465.640,164.277,2.834,164.277,316.500,309.759,359.136,20.093,19.273,20.093 +1112,35.096,422.851,459.620,172.866,502.639,350.114,473.018,169.563,174.386,169.563,211.442,309.849,359.363,17.728,19.330,17.728 +1113,35.128,357.409,480.008,171.852,493.539,351.319,480.565,174.774,165.256,174.774,347.574,311.449,359.805,17.907,20.309,17.907 +1114,35.158,357.017,488.522,172.570,487.897,352.290,488.496,0.320,155.943,0.320,349.989,311.005,359.442,18.139,20.073,18.139 +1115,35.191,356.327,497.471,173.059,477.447,352.053,497.011,6.155,147.490,6.155,351.521,310.855,360.118,19.076,19.343,19.076 +1116,35.225,354.653,507.319,176.021,467.862,351.627,506.641,12.633,138.633,12.633,353.471,311.006,359.673,19.078,19.961,19.078 +1117,35.257,352.857,517.024,179.636,457.530,349.462,515.849,19.084,129.766,19.084,351.935,311.131,359.120,19.434,18.856,19.434 +1118,35.290,350.889,524.678,184.125,446.358,347.001,522.781,26.003,120.735,26.003,351.133,310.618,359.786,25.472,19.769,25.472 +1119,35.324,346.283,535.033,189.887,435.840,342.028,532.257,33.111,110.993,33.111,350.048,309.942,360.209,26.039,17.999,26.039 +1120,35.355,339.674,545.635,196.981,426.096,335.334,541.904,40.689,101.310,40.689,349.371,307.706,360.818,25.823,17.258,25.823 +1121,35.388,330.395,556.225,205.924,417.978,326.496,551.726,49.086,92.203,49.086,348.171,304.659,360.077,23.981,16.987,23.981 +1122,35.419,320.025,565.344,218.418,421.828,319.418,564.397,57.355,83.928,57.355,346.812,280.714,349.060,23.801,18.428,23.801 +1123,35.450,309.429,574.263,232.777,425.923,310.215,575.965,65.225,74.445,65.225,341.113,260.519,337.366,22.350,20.946,22.350 +1124,35.481,303.531,605.201,247.970,421.513,296.171,582.358,72.140,67.046,72.140,287.753,254.893,335.753,20.263,18.048,20.263 +1125,35.511,282.130,583.633,264.532,415.185,282.202,584.051,80.225,57.095,80.225,339.677,257.205,338.829,23.175,20.644,23.175 +1126,35.543,269.616,579.493,276.951,406.729,269.622,579.964,89.354,47.774,89.354,347.226,270.084,346.283,21.010,24.424,21.010 +1127,35.573,253.625,577.643,280.598,393.663,254.331,572.081,97.237,39.382,97.237,349.401,306.276,360.613,23.321,23.615,23.321 +1128,35.605,241.950,574.381,293.518,397.616,243.407,569.502,106.618,30.364,106.618,347.891,308.579,358.074,18.990,20.446,18.990 +1129,35.635,241.950,574.381,293.518,397.616,243.407,569.502,106.618,30.364,106.618,347.891,308.579,358.074,18.990,20.446,18.990 +1130,35.664,230.004,568.974,306.785,403.549,232.072,564.596,115.283,21.332,115.283,345.373,310.874,355.058,19.946,18.288,19.946 +1131,35.696,219.423,561.615,319.814,409.839,221.970,557.795,123.690,12.490,123.690,345.578,313.464,354.762,19.692,18.353,19.692 +1132,35.727,209.600,553.239,331.049,417.271,213.150,549.298,132.006,3.831,132.006,343.402,315.303,354.010,19.403,18.539,19.403 +1133,35.760,200.608,545.629,340.928,425.630,206.273,540.875,139.991,175.269,139.991,339.668,317.645,354.459,20.065,19.348,20.065 +1134,35.793,192.660,536.461,348.567,435.775,200.365,531.602,147.761,166.393,147.761,334.728,319.915,352.946,19.324,20.272,19.324 +1135,35.826,178.606,530.014,354.037,445.029,195.808,522.268,155.758,158.700,155.758,314.248,320.871,351.979,17.853,18.916,17.853 +1136,35.859,153.822,524.534,358.328,455.833,192.318,511.912,161.847,150.063,161.847,269.413,320.755,350.438,17.976,20.318,17.976 +1137,35.892,171.455,508.146,361.003,467.140,190.448,504.244,168.389,141.843,168.389,310.284,320.649,349.065,20.141,21.231,20.141 +1138,35.924,175.862,496.503,362.631,478.148,189.469,495.274,174.839,133.668,174.839,320.675,320.512,348.001,19.379,23.147,19.379 +1139,35.957,178.436,486.335,362.940,489.021,189.431,486.547,1.102,125.335,1.102,325.055,320.731,347.050,18.420,24.961,18.420 +1140,35.991,180.562,477.665,362.068,498.536,190.288,478.828,6.818,117.553,6.818,326.220,319.440,345.811,18.822,25.364,18.822 +1141,36.024,182.812,469.864,360.345,507.788,191.485,471.755,12.299,108.825,12.299,327.567,319.426,345.321,18.865,25.427,18.865 +1142,36.059,185.355,462.466,357.946,516.476,193.401,464.969,17.281,101.023,17.281,327.983,320.253,344.836,18.970,24.628,18.970 +1143,36.091,189.013,454.529,355.262,524.543,196.536,457.395,20.854,93.240,20.854,328.361,320.016,344.463,25.988,23.717,25.988 +1144,36.125,193.400,446.700,352.423,531.809,200.331,450.166,26.565,85.503,26.565,329.596,321.367,345.095,25.938,23.052,25.938 +1145,36.158,195.667,442.519,348.987,538.283,202.804,446.642,30.018,77.612,30.018,328.355,322.683,344.841,25.591,21.205,25.591 +1146,36.193,198.500,438.000,345.853,543.919,205.931,442.954,33.690,69.922,33.690,326.996,323.540,344.857,25.516,20.197,25.516 +1147,36.225,200.037,434.059,342.457,548.721,208.315,440.201,36.573,62.501,36.573,324.167,323.871,344.782,25.596,18.518,25.596 +1148,36.257,201.874,428.054,340.167,552.694,211.849,436.747,41.070,55.896,41.070,319.367,324.811,345.829,24.179,18.718,24.179 +1149,36.291,193.908,418.972,337.441,555.469,212.234,436.220,43.264,50.013,43.264,295.478,324.717,345.809,17.905,18.413,17.905 +1150,36.323,158.357,377.566,335.066,558.345,214.290,434.897,45.707,44.018,45.707,185.213,324.648,345.404,18.087,19.166,18.087 +1151,36.354,207.662,421.266,332.162,560.050,217.359,431.271,45.898,38.705,45.898,316.878,326.404,344.744,23.312,19.945,23.312 +1152,36.385,214.765,421.696,330.574,561.451,220.410,428.452,50.123,32.550,50.123,327.787,325.422,345.395,25.383,20.015,25.383 +1153,36.416,217.066,420.343,328.293,562.978,222.216,426.851,51.643,25.577,51.643,328.546,324.336,345.144,24.264,21.941,24.264 +1154,36.447,218.878,418.091,326.208,564.899,224.267,425.341,53.379,18.012,53.379,327.567,323.541,345.636,24.577,22.480,24.577 +1155,36.478,220.766,417.314,323.493,566.541,225.787,424.494,55.032,9.660,55.032,327.280,323.035,344.802,23.418,23.093,23.418 +1156,36.508,222.699,416.199,320.999,568.029,227.454,423.392,56.535,0.963,56.535,327.240,322.055,344.486,23.514,23.971,23.514 +1157,36.540,224.056,415.090,318.719,568.934,228.609,422.374,57.995,172.255,57.995,326.903,321.029,344.083,23.320,24.526,23.320 +1158,36.571,224.056,415.090,318.719,568.934,228.609,422.374,57.995,172.255,57.995,326.903,321.029,344.083,23.320,24.526,23.320 +1159,36.600,224.907,413.357,316.910,569.702,229.556,421.088,58.981,163.217,58.981,326.712,320.686,344.755,22.674,24.756,22.674 +1160,36.630,226.179,412.311,314.996,570.492,230.831,420.404,60.108,154.398,60.108,325.459,319.863,344.131,23.164,25.157,23.164 +1161,36.661,227.226,411.857,313.279,571.181,231.709,419.874,60.786,145.222,60.786,325.376,320.403,343.747,22.733,24.801,22.733 +1162,36.693,228.035,411.269,311.533,571.969,232.387,419.291,61.521,136.219,61.521,325.629,320.352,343.883,22.739,23.555,22.739 +1163,36.725,228.222,411.030,310.380,572.660,232.705,419.499,62.103,126.870,62.103,324.246,321.000,343.411,21.991,23.400,21.991 +1164,36.758,228.733,410.013,309.353,573.395,233.337,418.774,62.276,117.838,62.276,324.674,321.547,344.468,22.375,22.494,22.375 +1165,36.792,228.938,409.924,307.828,573.968,233.576,418.813,62.447,107.650,62.447,323.758,322.652,343.810,22.396,21.051,22.396 +1166,36.824,228.642,408.841,308.334,574.728,233.969,419.139,62.650,99.253,62.650,321.535,323.554,344.724,22.481,19.446,22.481 +1167,36.858,227.616,407.339,309.000,575.500,234.022,419.658,62.526,90.000,62.526,317.943,323.000,345.713,22.571,18.000,22.571 +1168,36.891,225.969,404.652,310.123,575.480,234.107,420.140,62.281,80.655,62.281,310.750,324.859,345.742,22.296,18.998,22.296 +1169,36.925,219.478,398.645,311.159,574.782,231.685,421.535,61.928,71.483,61.928,293.353,324.135,345.235,17.765,18.515,17.765 +1170,36.958,191.803,349.971,312.386,574.319,230.837,421.535,61.390,62.526,61.390,183.321,324.721,346.356,17.558,18.632,17.558 +1171,36.992,224.062,408.843,313.476,573.664,231.426,421.220,59.247,53.437,59.247,317.121,325.203,345.925,21.940,19.973,21.940 +1172,37.025,226.991,413.795,316.207,571.779,231.119,420.935,59.967,44.671,59.967,329.858,323.906,346.355,22.861,20.103,22.861 +1173,37.060,226.778,416.136,317.577,570.395,230.033,421.550,58.985,36.327,58.985,332.711,325.033,345.345,23.024,20.852,23.024 +1174,37.093,225.293,416.760,319.130,569.272,228.895,422.484,57.815,27.150,57.815,331.064,324.327,344.590,23.159,21.903,23.159 +1175,37.126,223.337,416.608,321.266,568.223,227.790,423.359,56.592,18.886,56.592,328.616,322.592,344.791,24.155,23.106,24.155 +1176,37.159,220.765,417.164,323.231,566.563,225.751,424.287,55.008,10.513,55.008,327.529,322.079,344.917,23.676,22.938,23.676 +1177,37.192,218.808,418.643,325.484,565.146,224.135,425.789,53.293,1.397,53.293,326.778,321.270,344.603,23.923,23.725,23.923 +1178,37.225,215.963,420.030,327.689,562.561,221.573,426.982,51.096,172.725,51.096,326.433,320.759,344.300,24.097,23.786,24.097 +1179,37.258,213.366,421.185,330.106,560.376,219.604,428.419,49.228,164.291,49.228,325.086,320.864,344.192,24.371,24.487,24.371 +1180,37.291,210.602,423.431,332.787,557.742,217.087,430.298,46.637,155.695,46.637,325.298,320.450,344.189,24.193,24.813,24.193 +1181,37.323,207.854,425.638,335.439,554.682,214.685,432.320,44.366,147.265,44.366,324.660,320.129,343.771,24.786,25.055,24.786 +1182,37.354,204.434,429.686,338.367,551.347,211.598,435.882,40.855,138.965,40.855,323.887,320.314,342.831,25.287,24.976,25.287 +1183,37.385,201.615,432.923,341.307,547.764,208.923,438.607,37.875,130.764,37.875,324.511,320.071,343.027,25.610,25.021,25.610 +1184,37.416,198.790,436.470,344.281,543.551,206.294,441.665,34.695,122.005,34.695,324.639,320.755,342.892,25.551,24.804,25.551 +1185,37.447,195.544,440.927,347.719,538.716,203.246,445.548,30.964,114.102,30.964,325.676,320.351,343.639,25.725,24.910,25.725 +1186,37.477,192.588,445.964,350.755,533.213,200.276,449.897,27.096,105.781,27.096,326.555,320.324,343.825,25.155,24.246,25.155 +1187,37.508,189.070,453.892,354.141,527.312,196.699,457.212,23.518,97.883,23.518,328.033,320.451,344.674,19.256,24.230,19.256 +1188,37.539,186.954,460.236,357.000,520.500,194.488,462.837,19.041,90.000,19.041,328.925,319.000,344.866,19.232,24.000,19.232 +1189,37.570,186.954,460.236,357.000,520.500,194.488,462.837,19.041,90.000,19.041,328.925,319.000,344.866,19.232,24.000,19.232 +1190,37.598,185.214,467.181,359.459,512.935,192.470,469.018,14.207,81.973,14.207,330.350,320.470,345.320,19.143,23.397,19.143 +1191,37.630,183.890,475.448,361.464,504.519,190.771,476.500,8.691,74.181,8.691,332.009,320.196,345.932,18.700,23.572,18.700 +1192,37.661,183.082,483.462,362.871,495.557,189.933,483.828,3.059,66.140,3.059,332.914,320.545,346.636,18.615,23.233,18.615 +1193,37.691,182.858,491.778,363.123,485.685,189.436,491.488,177.474,58.223,177.474,334.381,320.753,347.549,17.938,23.427,17.938 +1194,37.724,183.675,501.437,362.367,474.970,189.942,500.450,171.051,50.673,171.051,335.892,320.983,348.580,19.134,22.750,19.134 +1195,37.757,185.495,511.193,360.485,464.157,191.579,509.493,164.389,42.436,164.389,337.117,320.473,349.750,19.843,23.406,19.843 +1196,37.790,188.787,520.985,357.865,452.480,194.754,518.516,157.521,35.049,157.521,339.019,319.826,351.933,20.265,23.888,20.265 +1197,37.822,192.750,531.552,351.579,443.315,198.036,528.598,150.803,27.300,150.803,339.164,318.929,351.275,20.848,18.776,20.848 +1198,37.854,197.611,541.150,345.010,432.880,202.947,537.189,143.415,19.544,143.415,339.193,318.784,352.484,19.842,18.313,19.842 +1199,37.885,205.696,549.188,336.798,422.966,209.443,545.542,135.785,11.816,135.785,343.060,318.084,353.515,19.293,18.085,19.293 +1200,37.916,214.444,558.073,326.896,413.957,217.725,553.807,127.569,4.086,127.569,344.060,317.121,354.822,19.816,17.456,19.816 +1201,37.946,224.807,565.612,315.508,406.129,227.425,560.940,119.271,176.309,119.271,345.515,316.149,356.225,20.208,17.641,20.208 +1202,37.976,235.694,572.002,302.635,400.167,237.769,566.565,110.883,168.733,110.883,345.541,316.139,357.179,19.287,17.998,19.287 +1203,38.007,247.857,576.469,289.200,396.600,249.037,571.002,102.187,161.565,102.187,346.716,315.595,357.901,20.605,17.709,20.605 +1204,38.038,247.857,576.469,289.200,396.600,249.037,571.002,102.187,161.565,102.187,346.716,315.595,357.901,20.605,17.709,20.605 +1205,38.066,260.108,578.923,274.396,394.270,260.426,573.147,93.158,153.159,93.158,347.182,314.411,358.751,22.517,16.727,22.517 +1206,38.097,276.461,579.465,259.622,393.676,275.993,573.363,85.615,145.389,85.615,348.584,313.700,360.824,22.700,18.141,22.700 +1207,38.129,289.086,577.230,244.845,396.439,287.667,571.534,76.015,138.013,76.015,348.768,312.555,360.507,22.560,18.136,22.560 +1208,38.161,304.746,572.127,230.282,401.395,302.409,566.603,67.068,130.126,67.068,348.515,312.165,360.511,21.678,18.329,21.678 +1209,38.192,317.791,564.834,217.518,408.329,314.861,560.117,58.154,122.471,58.154,349.494,311.234,360.601,23.156,18.100,23.156 +1210,38.224,329.422,555.921,205.500,417.000,325.712,551.599,49.353,114.444,49.353,349.469,310.269,360.861,24.143,18.290,24.143 +1211,38.256,339.242,545.553,195.611,427.129,335.007,541.917,40.644,106.607,40.644,349.913,310.048,361.076,24.894,18.191,24.894 +1212,38.289,346.999,534.210,188.178,438.611,342.460,531.343,32.276,99.260,32.276,349.187,309.232,359.925,25.543,18.227,25.543 +1213,38.320,352.541,522.471,182.769,450.524,348.054,520.449,24.259,91.818,24.259,348.994,307.353,358.838,25.665,18.039,25.665 +1214,38.351,354.955,513.535,178.623,461.783,350.562,512.236,16.474,84.155,16.474,349.214,308.381,358.375,19.440,18.862,19.440 +1215,38.381,357.921,502.155,175.697,473.484,352.754,501.338,8.995,76.394,8.995,348.006,307.782,358.469,19.499,19.414,19.499 +1216,38.411,358.398,491.101,174.394,484.948,353.215,490.930,1.881,68.385,1.881,347.470,308.075,357.841,18.778,19.155,18.778 +1217,38.441,357.349,480.113,174.512,496.141,352.422,480.532,175.145,60.385,175.145,347.298,308.104,357.187,18.997,18.980,18.997 +1218,38.473,355.450,470.199,175.799,507.050,350.822,471.147,168.430,51.875,168.430,347.887,308.522,357.335,20.550,20.573,20.550 +1219,38.504,355.450,470.199,175.799,507.050,350.822,471.147,168.430,51.875,168.430,347.887,308.522,357.335,20.550,20.573,20.550 +1220,38.532,352.740,460.825,177.334,515.715,347.836,462.387,162.331,44.176,162.331,346.993,308.348,357.289,20.701,20.397,20.701 +1221,38.564,350.096,452.368,179.763,524.986,344.279,454.904,156.448,36.964,156.448,344.936,309.209,357.629,20.919,22.554,20.919 +1222,38.595,346.104,445.887,183.747,532.502,340.976,448.736,150.945,30.228,150.945,344.515,309.593,356.247,21.271,23.778,21.271 +1223,38.626,342.426,438.109,188.224,539.594,336.736,441.958,145.923,22.834,145.923,341.691,309.766,355.433,19.660,23.429,19.660 +1224,38.658,338.671,431.963,192.552,546.091,332.476,436.920,141.340,15.068,141.340,339.053,310.557,354.921,19.834,22.172,19.834 +1225,38.690,333.407,426.511,197.079,552.137,327.529,432.085,136.521,8.531,136.521,338.328,311.020,354.529,19.617,21.905,19.617 +1226,38.721,329.645,420.899,202.080,556.874,323.233,427.971,132.198,1.469,132.198,334.649,310.360,353.744,20.161,20.660,20.161 +1227,38.752,324.214,416.914,207.152,561.168,318.359,424.376,128.118,174.806,128.118,333.565,312.258,352.534,19.959,20.642,19.959 +1228,38.782,318.788,412.044,211.962,565.308,312.898,420.773,124.010,168.690,124.010,331.476,313.197,352.537,19.247,21.377,19.247 +1229,38.813,314.330,408.958,216.946,568.912,308.638,418.641,120.446,162.474,120.446,329.560,314.331,352.025,19.072,21.280,19.072 +1230,38.844,309.100,405.300,222.105,571.893,303.632,416.236,116.565,156.975,116.565,326.913,314.891,351.367,19.230,20.638,19.230 +1231,38.875,304.155,403.138,226.980,574.463,299.259,414.561,113.199,151.294,113.199,326.034,315.567,350.891,19.039,21.050,19.039 +1232,38.905,304.155,403.138,226.980,574.463,299.259,414.561,113.199,151.294,113.199,326.034,315.567,350.891,19.039,21.050,19.039 +1233,38.933,299.010,400.401,232.052,576.805,294.465,413.060,109.747,147.171,109.747,323.505,316.467,350.406,19.355,20.438,19.355 +1234,38.964,293.588,398.461,237.054,578.420,289.763,411.633,106.195,142.431,106.195,322.306,317.233,349.739,19.521,19.877,19.521 +1235,38.994,288.358,397.269,242.252,580.221,285.244,410.866,102.899,138.366,102.899,321.457,317.483,349.356,19.123,20.097,19.123 +1236,39.025,282.988,396.255,247.250,581.250,280.626,410.040,99.722,135.000,99.722,320.805,318.198,348.776,18.948,19.092,18.948 +1237,39.058,277.722,395.255,252.493,582.172,276.075,409.623,96.540,131.392,96.540,319.297,319.118,348.222,18.288,19.226,18.288 +1238,39.090,272.536,395.116,258.253,583.010,271.714,409.510,93.270,128.431,93.270,319.137,319.532,347.971,18.199,20.129,18.199 +1239,39.123,267.000,395.500,263.623,583.262,267.000,409.631,90.000,126.185,90.000,319.000,319.977,347.262,18.000,19.819,18.000 +1240,39.155,261.969,396.733,268.961,582.927,262.746,409.739,86.583,124.301,86.583,320.444,320.127,346.501,18.802,20.281,18.802 +1241,39.186,256.538,398.451,275.228,582.991,258.005,410.586,83.108,123.374,83.108,322.008,320.359,346.453,18.765,20.082,18.765 +1242,39.220,251.507,400.036,281.404,582.312,253.610,411.395,79.509,122.112,79.509,323.136,320.656,346.241,19.265,20.842,19.265 +1243,39.251,246.390,401.647,287.293,580.981,249.091,412.375,75.870,121.201,75.870,323.535,320.700,345.661,20.161,21.179,20.161 +1244,39.282,241.233,403.794,293.693,579.323,244.471,413.814,72.096,119.932,72.096,324.193,320.887,345.252,20.481,21.587,20.481 +1245,39.313,236.433,406.030,299.977,577.415,240.285,415.691,68.261,119.745,68.261,323.862,320.754,344.663,22.040,21.706,22.040 +1246,39.343,231.066,408.774,306.423,574.677,235.325,417.573,64.169,119.268,64.169,325.218,320.734,344.770,22.250,22.336,22.250 +1247,39.373,226.026,412.097,312.507,571.449,230.594,420.006,59.990,119.014,59.990,325.951,321.009,344.218,22.895,22.370,22.895 +1248,39.404,226.026,412.097,312.507,571.449,230.594,420.006,59.990,119.014,59.990,325.951,321.009,344.218,22.895,22.370,22.895 +1249,39.432,220.669,415.455,319.193,567.784,225.993,423.220,55.561,118.729,55.561,325.037,320.913,343.866,23.399,23.345,23.399 +1250,39.464,215.560,419.624,325.402,563.219,221.391,426.840,51.064,118.586,51.064,324.340,320.510,342.896,24.123,23.504,24.123 +1251,39.495,209.936,424.211,331.786,558.113,216.247,430.803,46.245,118.474,46.245,325.469,320.906,343.722,23.744,24.524,23.744 +1252,39.525,204.135,430.259,337.417,552.139,210.837,436.003,40.601,118.551,40.601,325.721,321.154,343.374,24.730,24.194,24.730 +1253,39.558,199.321,435.623,342.949,545.472,206.620,440.809,35.395,118.465,35.395,325.600,321.382,343.509,25.571,24.700,25.571 +1254,39.591,194.717,441.690,348.158,537.764,202.501,446.219,30.192,118.726,30.192,325.859,320.913,343.872,25.616,24.841,25.616 +1255,39.623,190.572,448.942,353.022,529.012,198.720,452.646,24.444,118.780,24.444,326.242,320.519,344.143,26.070,25.183,26.070 +1256,39.653,185.150,460.550,357.068,519.090,193.894,463.465,18.435,118.926,18.435,326.347,319.832,344.782,19.290,25.037,19.290 +1257,39.684,182.136,469.376,360.438,508.686,191.633,471.446,12.295,119.219,12.295,326.289,318.779,345.728,19.541,25.576,19.541 +1258,39.714,180.262,480.115,362.215,497.406,190.035,481.003,5.194,119.578,5.194,326.291,318.517,345.917,18.650,25.268,18.650 +1259,39.744,179.004,490.643,362.774,485.450,189.317,490.339,178.308,120.192,178.308,326.419,318.300,347.053,18.022,24.988,18.022 +1260,39.774,178.388,502.866,361.404,472.739,189.645,501.019,170.683,120.579,170.683,325.330,318.151,348.144,19.089,23.597,19.089 +1261,39.806,178.388,502.866,361.404,472.739,189.645,501.019,170.683,120.579,170.683,325.330,318.151,348.144,19.089,23.597,19.089 +1262,39.835,179.808,515.685,357.584,459.360,191.524,512.024,162.646,120.754,162.646,323.867,317.632,348.417,20.163,20.234,20.163 +1263,39.866,181.894,528.962,352.776,447.174,194.964,522.811,154.799,122.152,154.799,321.104,317.900,349.995,20.066,19.690,20.066 +1264,39.897,183.122,545.496,346.038,434.797,200.862,533.965,146.976,122.471,146.976,309.218,317.140,351.534,21.841,19.634,21.841 +1265,39.927,181.193,564.826,337.742,423.513,206.547,542.008,138.013,122.735,138.013,285.351,316.704,353.571,17.690,20.068,17.690 +1266,39.958,170.570,605.685,326.482,412.969,214.953,551.157,129.144,123.179,129.144,214.542,315.666,355.157,17.513,19.959,17.513 +1267,39.990,215.313,577.412,314.550,404.853,225.861,559.569,120.589,124.242,120.589,315.178,314.829,356.634,18.659,18.777,18.659 +1268,40.020,234.327,574.261,300.798,398.205,237.601,565.876,111.329,124.494,111.329,340.345,314.112,358.347,18.808,20.236,18.808 +1269,40.050,249.880,578.652,286.908,394.435,251.534,570.950,102.125,125.256,102.125,344.258,313.960,360.014,21.929,20.429,21.929 +1270,40.081,261.804,579.899,271.922,393.068,262.023,572.988,91.813,126.769,91.813,346.459,313.406,360.287,23.210,19.410,23.210 +1271,40.111,276.395,580.214,255.740,393.801,275.502,573.516,82.405,127.405,82.405,347.987,312.790,361.501,25.309,18.504,25.309 +1272,40.142,294.182,576.096,240.098,397.878,292.440,570.321,73.221,128.660,73.221,348.360,312.347,360.423,22.218,18.116,22.218 +1273,40.173,294.182,576.096,240.098,397.878,292.440,570.321,73.221,128.660,73.221,348.360,312.347,360.423,22.218,18.116,22.218 +1274,40.201,310.200,569.400,225.007,404.332,307.667,564.334,63.435,129.566,63.435,348.827,312.172,360.154,22.361,18.100,22.361 +1275,40.232,323.376,560.536,211.045,412.538,320.197,556.182,53.867,130.236,53.867,349.971,311.638,360.753,23.912,19.202,23.912 +1276,40.263,334.793,550.103,199.921,423.769,331.448,546.837,44.320,131.760,44.320,350.818,311.829,360.169,23.983,17.689,23.983 +1277,40.293,344.002,537.287,189.815,435.247,340.206,534.628,35.010,132.510,35.010,351.122,312.185,360.390,26.134,17.630,26.134 +1278,40.325,350.126,524.665,182.645,448.217,346.429,522.852,26.120,133.438,26.120,351.597,311.892,359.832,25.749,19.792,25.749 +1279,40.356,353.552,514.753,177.372,461.884,349.660,513.524,17.526,135.390,17.526,351.521,311.889,359.683,20.075,19.096,20.075 +1280,40.389,355.891,502.090,173.838,474.886,351.918,501.446,9.211,136.597,9.211,352.023,312.775,360.072,19.689,18.366,19.689 +1281,40.420,356.111,490.101,171.999,487.184,352.047,490.009,1.297,137.526,1.297,352.000,312.923,360.131,18.599,18.595,18.599 +1282,40.451,354.975,478.296,172.383,499.641,351.070,478.731,173.635,138.660,173.635,351.948,313.348,359.807,19.208,18.813,19.208 +1283,40.481,353.362,467.376,174.030,511.124,348.743,468.499,166.340,139.616,166.340,350.166,313.576,359.674,20.197,20.400,20.197 +1284,40.511,349.478,457.780,176.569,520.995,345.293,459.351,159.418,139.532,159.418,350.308,314.113,359.250,21.062,20.141,21.062 +1285,40.540,346.846,449.231,180.593,530.417,341.644,451.876,153.048,138.366,153.048,346.643,314.908,358.314,19.913,19.848,19.913 +1286,40.572,346.846,449.231,180.593,530.417,341.644,451.876,153.048,138.366,153.048,346.643,314.908,358.314,19.913,19.848,19.913 +1287,40.600,341.936,441.844,184.140,537.605,337.222,444.873,147.278,137.663,147.278,346.624,315.144,357.831,20.203,20.927,20.203 +1288,40.631,339.436,433.354,189.327,545.321,332.515,438.752,142.049,135.976,142.049,339.340,315.468,356.895,19.166,19.576,19.166 +1289,40.662,340.714,421.541,194.339,551.774,327.773,433.574,137.085,133.577,137.085,321.071,316.172,356.413,18.931,18.304,18.931 +1290,40.692,357.958,390.102,199.877,557.334,322.309,428.441,132.917,131.511,132.917,250.819,316.911,355.524,17.782,18.351,17.782 +1291,40.725,367.000,362.500,205.304,562.569,317.112,424.556,128.797,129.352,128.797,195.990,316.823,355.236,17.620,19.285,17.620 +1292,40.757,357.309,355.869,210.503,566.617,312.210,421.468,124.509,127.584,124.509,195.246,317.295,354.459,17.459,19.384,17.459 +1293,40.790,347.716,349.833,216.156,570.393,307.226,418.666,120.466,125.720,120.466,194.189,318.056,353.906,17.695,19.102,17.695 +1294,40.821,329.500,362.000,221.983,573.634,302.271,416.457,116.565,124.108,116.565,231.209,318.454,352.979,17.889,19.731,17.889 +1295,40.852,314.205,374.139,227.517,576.511,297.155,414.633,112.834,123.403,112.834,264.558,319.238,352.432,17.754,19.566,17.754 +1296,40.883,303.310,382.305,233.208,578.479,292.643,412.927,109.204,123.317,109.204,286.924,319.526,351.779,16.892,19.511,16.892 +1297,40.913,293.620,387.840,239.147,580.410,287.211,411.646,105.068,124.039,105.068,301.606,319.544,350.914,17.752,19.591,17.752 +1298,40.943,285.718,391.623,245.627,581.592,282.057,410.537,100.954,125.781,100.954,311.193,319.453,349.722,18.179,19.236,18.179 +1299,40.974,278.713,394.333,251.888,582.303,276.819,409.759,97.001,127.999,97.001,317.509,319.519,348.593,18.284,18.962,18.284 +1300,41.005,272.177,395.620,258.810,582.907,271.415,409.454,93.151,130.696,93.151,320.057,319.211,347.767,18.376,20.395,18.376 +1301,41.036,272.177,395.620,258.810,582.907,271.415,409.454,93.151,130.696,93.151,320.057,319.211,347.767,18.376,20.395,18.376 +1302,41.065,265.682,397.942,265.456,582.940,265.864,409.428,89.091,134.502,89.091,323.991,318.998,346.967,18.252,20.536,18.252 +1303,41.097,259.687,399.633,272.821,582.747,260.605,410.093,84.987,137.936,84.987,325.120,318.794,346.122,18.805,22.453,18.805 +1304,41.127,254.211,401.066,280.060,582.076,255.762,410.761,80.910,141.445,80.910,326.369,318.592,346.005,19.986,23.560,19.986 +1305,41.159,248.206,403.248,287.298,580.860,250.271,412.050,76.799,145.091,76.799,327.530,318.515,345.611,19.856,24.148,19.856 +1306,41.191,242.526,404.894,294.330,578.879,245.211,413.454,72.582,148.968,72.582,327.141,318.306,345.085,20.598,24.557,20.598 +1307,41.223,237.050,407.390,301.370,576.674,240.284,415.601,68.508,152.870,68.508,326.856,318.506,344.507,21.814,25.250,21.814 +1308,41.255,231.331,409.613,308.737,573.711,235.372,417.864,63.905,156.705,63.905,326.088,318.816,344.462,22.671,25.156,22.671 +1309,41.285,225.310,412.911,315.716,570.113,229.905,420.637,59.257,160.641,59.257,326.694,319.349,344.672,22.959,24.606,22.959 +1310,41.315,219.996,416.648,322.794,565.931,225.199,423.976,54.623,164.846,54.623,326.520,319.771,344.495,24.446,24.975,24.446 +1311,41.345,214.300,420.893,329.501,561.069,220.299,427.938,49.584,168.973,49.584,325.811,320.635,344.318,24.863,24.760,24.863 +1312,41.374,208.556,425.932,336.156,555.301,215.450,432.745,44.661,173.157,44.661,324.619,320.977,344.004,25.029,24.147,25.029 +1313,41.405,208.556,425.932,336.156,555.301,215.450,432.745,44.661,173.157,44.661,324.619,320.977,344.004,25.029,24.147,25.029 +1314,41.434,202.652,431.202,342.504,548.591,210.764,437.835,39.272,177.397,39.272,323.234,321.622,344.191,25.611,23.203,25.611 +1315,41.465,195.998,436.241,347.997,541.095,206.068,442.921,33.559,1.562,33.559,320.918,322.371,345.085,26.080,21.637,26.080 +1316,41.495,187.568,442.436,353.333,532.049,201.384,449.805,28.072,6.170,28.072,314.235,323.117,345.552,27.412,20.986,27.412 +1317,41.525,170.961,450.394,357.984,522.091,196.321,460.192,21.125,10.169,21.125,291.839,323.598,346.213,18.571,19.580,18.571 +1318,41.558,115.467,447.781,361.394,512.772,193.762,468.138,14.574,14.931,14.574,185.144,324.268,346.940,17.692,19.196,17.692 +1319,41.590,179.601,475.773,364.022,500.936,191.511,477.467,8.096,18.877,8.096,324.134,324.484,348.193,18.542,22.306,18.542 +1320,41.621,181.024,487.148,364.529,490.936,190.262,487.242,0.585,24.501,0.585,330.115,323.339,348.592,18.234,22.588,18.234 +1321,41.652,182.715,498.702,363.870,478.551,190.248,497.768,172.930,28.848,172.930,334.153,322.577,349.334,19.356,20.985,19.356 +1322,41.682,185.078,510.422,360.864,465.740,191.271,508.767,165.041,33.389,165.041,337.085,321.744,349.905,20.222,20.665,20.222 +1323,41.713,188.861,522.175,356.181,453.183,194.217,519.886,156.861,38.089,156.861,338.646,319.757,350.295,20.631,20.697,20.631 +1324,41.745,193.994,533.832,349.844,439.671,199.172,530.757,149.300,42.466,149.300,340.073,318.150,352.118,21.523,23.806,21.523 +1325,41.775,200.912,544.187,341.611,428.431,205.274,540.573,140.356,47.037,140.356,341.736,314.260,353.064,19.361,25.233,19.361 +1326,41.806,200.912,544.187,341.611,428.431,205.274,540.573,140.356,47.037,140.356,341.736,314.260,353.064,19.361,25.233,19.361 +1327,41.835,209.669,554.150,338.556,426.837,212.830,550.586,131.573,52.765,131.573,342.486,288.434,352.013,19.223,24.649,19.223 +1328,41.865,220.343,564.528,331.157,427.152,221.489,562.698,122.050,57.995,122.050,341.849,264.999,346.167,20.158,25.122,20.158 +1329,41.897,232.585,571.799,317.049,424.475,232.014,573.154,112.834,62.942,112.834,342.994,255.831,340.052,19.354,24.115,19.354 +1330,41.929,245.433,579.948,299.444,422.219,245.000,581.822,103.033,70.728,103.033,339.387,251.866,335.539,20.540,21.183,20.540 +1331,41.960,258.635,589.095,280.473,419.508,258.816,585.969,93.311,74.650,93.311,328.608,253.656,334.869,23.193,18.946,23.193 +1332,41.992,280.638,615.157,261.905,417.145,278.142,585.098,85.254,78.232,85.254,277.118,259.838,337.442,23.087,18.682,23.087 +1333,42.024,294.460,584.510,243.262,414.951,293.097,579.201,75.604,81.331,75.604,332.002,272.794,342.965,22.081,20.029,22.081 +1334,42.057,307.856,572.884,227.612,410.487,306.031,568.868,65.556,84.835,65.556,344.450,290.803,353.270,22.014,19.564,22.014 +1335,42.088,321.632,563.550,213.500,412.000,318.110,558.374,55.770,90.000,55.770,347.209,304.000,359.729,23.637,17.000,23.637 +1336,42.119,333.466,552.652,202.018,420.649,329.246,548.257,46.169,95.618,46.169,348.142,307.157,360.328,24.585,17.848,24.585 +1337,42.150,342.991,540.168,191.661,432.315,338.700,536.974,36.656,100.729,36.656,350.184,309.483,360.883,24.981,18.709,24.981 +1338,42.180,350.096,527.530,184.421,445.493,345.596,525.179,27.580,106.189,27.580,349.354,310.564,359.507,25.357,19.424,25.357 +1339,42.211,353.773,516.753,178.489,459.353,349.250,515.217,18.759,111.205,18.759,349.757,311.293,359.310,19.974,19.874,19.974 +1340,42.242,356.303,503.826,174.700,473.100,351.855,503.022,10.244,116.565,10.244,350.266,312.602,359.305,19.586,20.125,19.586 +1341,42.274,356.650,491.425,172.515,486.309,352.308,491.265,2.106,120.964,2.106,351.020,313.156,359.709,18.833,19.036,18.833 +1342,42.305,356.650,491.425,172.515,486.309,352.308,491.265,2.106,120.964,2.106,351.020,313.156,359.709,18.833,19.036,18.833 +1343,42.334,355.755,479.085,172.182,498.845,351.205,479.547,174.204,125.538,174.204,350.967,314.101,360.113,19.479,19.181,19.479 +1344,42.364,352.883,467.829,173.913,510.500,348.734,468.820,166.556,130.406,166.556,350.910,314.337,359.442,20.235,18.590,20.235 +1345,42.395,349.721,457.103,176.917,521.416,345.185,458.811,159.365,135.401,159.365,349.380,314.689,359.072,20.115,19.601,20.115 +1346,42.427,347.011,447.667,181.177,531.300,341.162,450.742,152.272,139.781,152.272,344.976,315.103,358.191,19.962,18.398,19.962 +1347,42.459,356.716,428.861,185.879,539.834,335.942,442.900,145.949,144.019,145.949,307.071,314.818,357.218,19.072,18.346,19.072 +1348,42.492,379.537,394.045,192.169,548.103,329.737,435.130,140.477,148.755,140.477,226.899,314.377,356.020,17.491,18.766,17.491 +1349,42.524,341.868,412.230,198.895,554.783,324.694,430.040,133.958,153.236,133.958,304.751,313.972,354.234,19.667,18.308,19.667 +1350,42.556,328.596,411.945,206.039,560.596,318.681,424.504,128.290,157.647,128.290,321.224,314.227,353.227,19.870,19.042,19.870 +1351,42.587,318.047,410.138,213.227,566.154,311.578,420.197,122.748,162.087,122.748,328.002,314.033,351.921,19.407,20.559,19.407 +1352,42.617,309.826,407.742,221.128,571.073,305.176,416.619,117.646,166.278,117.646,331.596,314.086,351.638,19.109,21.688,19.109 +1353,42.648,302.197,406.350,228.918,574.972,298.819,414.349,112.891,170.407,112.891,332.960,314.178,350.326,19.387,23.081,19.387 +1354,42.678,294.439,403.940,237.089,577.945,291.885,411.921,107.745,174.644,107.745,332.891,313.998,349.651,19.087,23.615,19.087 +1355,42.708,287.303,402.685,245.047,580.373,285.460,410.672,102.995,178.047,102.995,332.492,314.431,348.886,19.188,25.099,19.188 +1356,42.738,287.303,402.685,245.047,580.373,285.460,410.672,102.995,178.047,102.995,332.492,314.431,348.886,19.188,25.099,19.188 +1357,42.766,279.650,401.950,252.974,582.080,278.524,409.831,98.130,2.526,98.130,332.340,314.797,348.262,19.092,24.344,19.092 +1358,42.798,272.675,401.544,260.636,583.616,272.146,409.732,93.691,6.654,93.691,332.116,316.172,348.528,18.285,25.444,18.285 +1359,42.829,265.881,402.537,268.632,583.794,265.984,409.880,89.193,10.582,89.193,333.178,317.280,347.867,18.252,25.698,18.252 +1360,42.861,258.751,403.822,276.834,583.143,259.420,410.571,84.336,14.452,84.336,333.332,318.469,346.896,18.833,25.377,18.833 +1361,42.892,253.091,405.013,284.443,582.619,254.273,411.712,79.992,17.802,79.992,333.494,319.405,347.099,19.174,25.611,19.174 +1362,42.925,247.020,407.018,291.803,581.134,248.648,413.241,75.343,20.898,75.343,333.833,321.201,346.698,20.242,25.598,20.242 +1363,42.957,241.044,409.364,299.610,578.858,243.083,415.156,70.610,24.421,70.610,334.090,322.103,346.369,21.142,25.096,21.142 +1364,42.990,235.125,412.063,306.944,575.151,237.406,417.157,65.879,27.621,65.879,334.070,323.917,345.232,22.163,24.572,22.163 +1365,43.020,228.822,415.267,314.551,571.779,231.696,420.434,60.919,29.946,60.919,333.250,324.485,345.074,21.872,22.727,21.872 +1366,43.050,222.794,417.815,321.976,567.101,226.763,423.689,55.954,31.608,55.954,330.092,324.875,344.271,23.604,21.291,23.604 +1367,43.081,216.163,421.384,328.269,562.588,221.253,427.698,51.123,33.111,51.123,328.138,326.158,344.359,24.002,20.576,24.002 +1368,43.112,209.083,423.861,334.918,557.338,216.815,431.824,45.847,33.268,45.847,322.447,325.875,344.645,24.736,19.341,24.736 +1369,43.143,197.205,426.621,340.772,551.353,211.069,437.696,38.622,32.835,38.622,309.065,325.656,344.554,23.396,18.804,23.396 +1370,43.175,172.497,419.505,346.820,544.388,207.017,442.234,33.362,32.005,33.362,263.222,324.889,345.884,21.707,19.292,21.707 +1371,43.206,131.943,410.579,352.088,536.016,201.717,450.203,29.592,31.027,29.592,185.786,324.652,346.267,17.767,19.613,17.767 +1372,43.237,131.943,410.579,352.088,536.016,201.717,450.203,29.592,31.027,29.592,185.786,324.652,346.267,17.767,19.613,17.767 +1373,43.265,177.393,448.103,356.184,527.181,197.926,457.208,23.912,29.914,23.912,301.149,325.457,346.072,18.378,19.318,18.378 +1374,43.297,183.509,461.283,360.036,517.773,194.832,464.906,17.745,28.543,17.745,323.138,324.978,346.914,18.363,20.730,18.363 +1375,43.328,182.088,471.918,362.495,507.338,192.213,473.850,10.802,27.937,10.802,326.467,324.458,347.082,18.948,21.444,18.948 +1376,43.359,181.175,482.643,364.012,495.250,190.500,483.215,3.511,28.426,3.511,329.160,324.567,347.845,18.762,20.695,18.762 +1377,43.391,181.793,493.446,364.497,483.115,190.101,492.883,176.121,29.320,176.121,332.660,323.031,349.315,18.754,20.257,18.754 +1378,43.423,184.053,506.438,362.475,470.235,190.981,504.935,167.754,30.579,167.754,335.725,321.713,349.904,20.227,20.114,20.227 +1379,43.454,187.363,518.301,358.517,456.573,193.468,516.012,159.444,32.005,159.444,337.781,320.967,350.821,19.780,20.776,19.780 +1380,43.485,192.397,531.631,351.802,443.580,198.072,528.510,151.189,33.341,151.189,338.307,319.789,351.260,21.730,20.446,21.730 +1381,43.516,199.092,542.119,343.339,431.175,203.662,538.578,142.237,34.725,142.237,340.827,317.619,352.389,19.741,20.507,19.741 +1382,43.546,207.976,552.084,334.081,418.011,212.393,547.419,133.433,35.981,133.433,342.421,315.849,355.269,19.607,25.352,19.607 +1383,43.577,219.077,562.210,320.030,409.766,222.046,557.735,123.563,37.465,123.563,344.201,314.612,354.941,19.927,20.659,19.927 +1384,43.608,231.795,569.740,305.397,401.757,233.931,564.925,113.918,38.726,113.918,345.727,313.289,356.261,19.977,20.630,19.977 +1385,43.639,231.795,569.740,305.397,401.757,233.931,564.925,113.918,38.726,113.918,345.727,313.289,356.261,19.977,20.630,19.977 +1386,43.666,245.206,575.170,302.155,404.224,245.909,572.332,103.912,40.156,103.912,347.551,283.218,353.400,20.126,24.027,20.126 +1387,43.697,258.771,578.586,288.548,404.595,258.826,577.761,93.863,41.257,93.863,347.896,273.851,349.550,23.419,24.017,23.419 +1388,43.729,277.430,579.169,272.014,406.268,277.512,580.140,85.179,42.064,85.179,349.386,270.792,347.437,23.423,23.956,23.423 +1389,43.760,291.603,576.829,255.684,411.233,292.250,579.189,74.690,43.063,74.690,348.195,267.134,343.301,22.275,22.280,22.275 +1390,43.793,309.338,572.801,237.163,418.344,309.558,573.267,64.733,46.219,64.733,343.036,269.482,342.005,22.239,23.164,22.239 +1391,43.825,326.901,572.818,224.264,425.280,322.053,565.896,54.989,46.701,54.989,325.648,269.604,342.550,18.787,19.090,18.787 +1392,43.857,355.335,575.563,211.367,435.720,335.625,554.568,46.809,48.036,46.809,285.797,270.634,343.391,21.887,19.696,21.887 +1393,43.889,345.660,542.120,197.234,442.353,342.939,540.080,36.870,48.594,36.870,343.600,283.043,350.401,25.800,20.462,25.800 +1394,43.920,353.000,526.500,189.999,453.344,350.269,525.134,26.565,49.219,26.565,344.802,285.568,350.909,25.938,22.716,25.938 +1395,43.950,355.221,515.430,182.048,462.460,351.811,514.336,17.780,50.320,17.780,347.828,297.330,354.990,20.001,23.727,20.001 +1396,43.980,357.945,502.423,175.231,472.974,352.446,501.532,9.211,50.951,9.211,347.861,308.266,359.003,19.689,22.668,19.689 +1397,44.010,358.478,489.724,173.533,486.792,352.799,489.621,1.038,51.766,1.038,347.215,308.912,358.575,18.624,21.422,18.624 +1398,44.041,356.952,477.229,174.615,499.405,352.004,477.828,173.095,52.985,173.095,347.427,309.397,357.393,19.374,19.658,19.374 +1399,44.072,356.952,477.229,174.615,499.405,352.004,477.828,173.095,52.985,173.095,347.427,309.397,357.393,19.374,19.658,19.374 +1400,44.099,354.194,465.679,176.952,511.720,349.607,466.867,165.481,53.616,165.481,347.297,310.243,356.773,20.295,19.830,20.295 +1401,44.131,349.953,454.888,180.830,522.832,345.772,456.557,158.241,54.395,158.241,346.512,311.079,355.516,20.437,20.015,20.437 +1402,44.162,345.722,446.099,185.492,533.401,341.409,448.495,150.945,54.941,150.945,345.195,312.042,355.061,21.271,20.019,21.271 +1403,44.195,339.518,437.818,191.073,542.541,335.805,440.443,144.741,55.462,144.741,345.145,312.878,354.239,19.457,20.057,19.457 +1404,44.228,333.520,430.590,197.195,550.512,329.958,433.732,138.586,55.864,138.586,344.131,313.435,353.631,19.103,20.370,19.103 +1405,44.260,326.794,424.848,204.068,557.780,323.797,428.095,132.709,56.189,132.709,344.171,314.239,353.006,19.501,20.360,19.501 +1406,44.293,319.320,419.240,211.154,564.231,316.532,422.957,126.870,56.310,126.870,343.200,315.624,352.492,19.200,20.524,19.200 +1407,44.327,312.144,415.254,218.603,569.602,309.841,419.019,121.441,56.583,121.441,343.303,316.751,352.130,19.061,20.342,19.061 +1408,44.359,304.885,411.964,225.808,574.462,302.816,416.188,116.095,56.310,116.095,342.620,317.843,352.027,19.079,20.801,19.079 +1409,44.393,297.778,409.376,233.865,577.920,296.095,413.753,111.038,56.541,111.038,341.748,318.701,351.127,18.811,20.364,18.811 +1410,44.425,290.632,408.091,241.231,580.846,289.417,412.287,106.144,56.310,106.144,341.885,319.507,350.621,18.807,21.079,18.807 +1411,44.458,283.537,406.123,248.859,582.941,282.559,411.103,101.116,56.535,101.116,340.073,320.340,350.222,19.205,20.870,19.205 +1412,44.490,276.573,405.495,256.744,584.501,275.998,410.536,96.513,56.149,96.513,339.902,321.176,350.051,18.416,20.671,18.416 +1413,44.522,270.014,404.861,263.767,585.632,269.808,410.761,91.992,55.582,91.992,338.143,321.525,349.950,18.024,23.404,18.024 +1414,44.553,263.742,405.576,271.485,585.653,263.988,411.229,87.510,54.429,87.510,337.855,322.471,349.170,18.548,23.051,18.548 +1415,44.584,257.332,405.825,279.730,584.439,258.034,411.577,83.047,52.481,83.047,336.846,322.784,348.435,18.570,21.103,18.570 +1416,44.614,251.502,406.808,286.725,583.497,252.708,412.780,78.579,50.711,78.579,335.960,322.811,348.146,19.455,21.178,19.455 +1417,44.645,245.734,408.279,294.497,581.201,247.327,413.938,74.268,47.984,74.268,335.818,323.556,347.575,20.159,21.432,20.159 +1418,44.675,240.224,410.017,301.345,579.129,242.349,415.817,69.877,44.687,69.877,334.927,323.185,347.280,21.281,20.131,21.281 +1419,44.706,234.837,412.300,307.988,576.118,237.401,417.970,65.665,40.802,65.665,333.920,324.196,346.367,22.339,20.380,22.339 +1420,44.737,234.837,412.300,307.988,576.118,237.401,417.970,65.665,40.802,65.665,333.920,324.196,346.367,22.339,20.380,22.339 +1421,44.766,229.213,414.486,314.417,572.613,232.352,420.176,61.123,36.357,61.123,333.232,324.607,346.229,22.703,20.805,22.703 +1422,44.798,224.178,417.867,320.916,567.966,227.668,423.190,56.755,30.828,56.755,331.673,324.635,344.403,23.461,21.606,23.461 +1423,44.829,218.010,419.492,326.837,563.924,223.013,425.954,52.253,24.963,52.253,328.967,324.291,345.310,24.614,21.758,24.614 +1424,44.860,212.017,423.030,332.950,559.150,218.558,430.229,47.745,18.435,47.745,325.235,323.185,344.687,24.686,21.187,24.686 +1425,44.893,206.415,427.055,338.438,553.805,214.163,434.283,43.011,11.560,43.011,323.616,323.195,344.807,24.915,21.309,24.915 +1426,44.925,200.690,431.622,343.594,547.185,209.618,438.639,38.169,4.086,38.169,322.108,322.108,344.820,25.209,21.374,25.209 +1427,44.956,195.176,438.222,348.449,540.237,204.940,444.413,32.381,176.186,32.381,321.902,322.285,345.024,25.685,22.217,25.685 +1428,44.988,190.430,444.664,352.689,532.535,200.979,450.089,27.216,168.003,27.216,321.516,321.692,345.240,25.180,23.097,25.180 +1429,45.018,185.238,454.357,356.618,524.122,196.540,458.999,22.329,159.146,22.329,321.197,321.286,345.634,19.045,23.718,19.045 +1430,45.048,182.272,462.771,359.589,515.012,193.694,466.157,16.513,149.808,16.513,322.048,320.752,345.877,19.175,23.997,19.175 +1431,45.079,179.633,472.552,361.727,505.063,191.256,474.631,10.141,140.477,10.141,322.716,320.081,346.331,18.775,24.048,18.775 +1432,45.110,178.340,482.605,362.649,495.131,189.779,483.309,3.521,131.424,3.521,323.619,319.916,346.540,18.949,24.612,18.949 +1433,45.141,178.024,492.485,362.873,483.423,189.323,491.924,177.158,121.329,177.158,324.891,318.468,347.516,18.112,24.809,18.112 +1434,45.172,178.024,492.485,362.873,483.423,189.323,491.924,177.158,121.329,177.158,324.891,318.468,347.516,18.112,24.809,18.112 +1435,45.200,179.597,504.351,361.463,471.679,189.853,502.522,169.891,111.161,169.891,327.883,316.983,348.718,19.796,24.638,19.796 +1436,45.231,183.033,515.239,357.287,459.742,191.370,512.580,162.309,101.535,162.309,330.755,315.557,348.255,20.089,21.856,20.089 +1437,45.263,187.552,526.799,353.375,449.012,195.048,523.272,154.799,91.790,154.799,333.186,312.535,349.754,20.971,22.989,20.971 +1438,45.294,194.005,536.884,347.468,438.599,199.785,533.155,147.171,81.545,147.171,336.959,310.975,350.716,20.520,23.365,20.520 +1439,45.325,200.248,546.704,345.550,443.150,203.603,543.841,139.527,71.565,139.527,337.856,277.648,346.677,20.163,24.982,20.163 +1440,45.356,209.735,555.705,339.949,434.752,211.837,553.290,131.049,61.080,131.049,340.651,269.920,347.053,19.777,25.780,19.777 +1441,45.387,221.323,563.563,325.077,416.146,223.356,560.287,121.827,51.419,121.827,344.514,289.844,352.224,20.069,24.708,20.069 +1442,45.418,232.965,570.259,305.182,400.244,235.242,564.898,113.009,41.698,113.009,346.138,311.669,357.786,19.455,24.368,19.455 +1443,45.448,245.146,575.268,290.294,396.736,246.363,570.287,103.725,32.137,103.725,347.782,311.201,358.037,20.548,20.713,20.548 +1444,45.479,257.865,577.767,274.908,395.290,258.220,573.285,94.529,22.348,94.529,348.522,310.856,357.514,23.323,18.159,23.323 +1445,45.509,274.930,578.852,260.434,395.292,274.646,574.181,86.521,12.724,86.521,349.483,310.536,358.843,22.748,18.187,22.748 +1446,45.541,287.337,576.998,245.122,397.312,286.269,572.377,76.990,3.180,76.990,350.183,310.909,359.668,22.336,18.028,22.336 +1447,45.572,287.337,576.998,245.122,397.312,286.269,572.377,76.990,3.180,76.990,350.183,310.909,359.668,22.336,18.028,22.336 +1448,45.601,302.640,572.048,231.493,401.939,301.010,567.967,68.230,173.746,68.230,351.148,310.865,359.938,21.392,18.124,21.392 +1449,45.632,315.443,565.077,218.473,408.403,313.272,561.406,59.400,164.486,59.400,351.377,310.841,359.906,23.101,18.510,23.101 +1450,45.663,327.052,556.534,206.862,416.283,324.239,553.106,50.627,155.211,50.627,351.590,311.149,360.458,24.238,18.667,24.238 +1451,45.693,336.949,546.663,196.893,426.332,333.686,543.731,41.947,146.145,41.947,351.658,311.737,360.431,25.420,18.142,25.420 +1452,45.727,344.757,535.630,188.677,436.729,341.121,533.200,33.752,137.121,33.752,351.953,311.542,360.698,25.522,18.529,25.522 +1453,45.759,350.724,524.451,182.662,448.529,346.692,522.493,25.907,128.603,25.907,350.757,312.039,359.722,25.520,19.266,25.520 +1454,45.793,353.676,515.953,178.170,460.155,349.578,514.600,18.271,119.233,18.271,351.039,311.902,359.670,19.800,20.223,19.800 +1455,45.827,356.212,504.814,175.448,471.536,351.970,503.994,10.934,110.313,10.934,350.307,312.027,358.948,19.503,20.539,19.503 +1456,45.860,357.591,494.192,173.631,482.931,352.823,493.860,3.976,101.427,3.976,349.477,311.832,359.037,18.858,19.478,18.858 +1457,45.894,357.406,483.521,173.581,493.617,352.359,483.760,177.284,92.591,177.284,347.984,311.586,358.090,19.219,18.953,19.219 +1458,45.927,356.130,473.180,174.810,503.693,351.341,473.944,170.936,83.758,170.936,348.327,311.641,358.026,20.938,18.981,20.938 +1459,45.959,353.741,464.542,176.962,512.962,349.196,465.774,164.842,74.678,164.842,347.743,311.441,357.161,20.631,19.421,20.631 +1460,45.993,350.551,456.314,179.692,521.513,346.230,457.950,159.263,65.753,159.263,347.270,311.192,356.511,20.675,19.249,20.675 +1461,46.026,347.639,449.740,183.453,529.567,343.281,451.873,153.925,56.790,153.925,345.718,312.607,355.421,19.398,20.325,19.398 +1462,46.060,344.162,443.603,186.336,536.232,339.675,446.295,149.036,47.454,149.036,345.055,311.013,355.519,20.751,21.113,20.751 +1463,46.093,339.626,436.959,189.159,542.927,334.780,440.439,144.310,38.660,144.310,344.195,312.191,356.126,19.287,24.051,19.287 +1464,46.126,335.877,431.852,194.049,547.924,331.435,435.554,140.194,29.809,140.194,343.395,312.069,354.960,19.590,24.006,19.590 +1465,46.158,331.491,427.071,198.409,552.548,327.163,431.264,135.909,20.339,135.909,341.680,311.785,353.731,19.325,24.266,19.325 +1466,46.190,328.111,422.328,202.597,556.978,323.183,427.748,132.274,10.528,132.274,338.825,311.881,353.476,19.440,22.848,19.440 +1467,46.222,323.600,417.962,207.008,560.702,318.617,424.235,128.459,1.577,128.459,336.531,312.267,352.553,19.625,21.084,19.625 +1468,46.253,320.484,413.971,210.629,563.829,314.878,421.878,125.340,172.093,125.340,332.804,313.243,352.190,19.207,20.855,19.207 +1469,46.283,316.895,409.626,214.389,567.081,310.717,419.494,122.050,162.350,122.050,329.135,314.379,352.420,19.192,20.661,19.192 +1470,46.313,314.632,405.043,218.071,569.640,307.413,417.876,119.358,152.987,119.358,322.701,315.346,352.149,19.120,20.141,19.120 +1471,46.344,312.100,400.300,221.440,571.920,303.960,416.580,116.565,143.130,116.565,315.286,316.400,351.689,19.230,19.200,19.230 +1472,46.374,310.180,392.961,224.905,574.410,299.887,415.364,114.677,133.509,114.677,302.344,317.770,351.652,17.437,18.967,17.437 +1473,46.405,310.180,392.961,224.905,574.410,299.887,415.364,114.677,133.509,114.677,302.344,317.770,351.652,17.437,18.967,17.437 +1474,46.434,311.531,377.744,228.763,576.674,296.522,414.305,112.319,123.511,112.319,272.831,319.236,351.874,17.070,19.368,17.070 +1475,46.465,320.695,337.355,232.345,578.708,293.498,413.506,109.654,114.057,109.654,190.568,320.446,352.291,17.019,19.176,17.019 +1476,46.496,295.236,399.689,235.780,580.193,291.095,413.160,107.087,104.113,107.087,323.642,321.120,351.827,17.310,18.354,17.310 +1477,46.526,289.889,406.664,240.058,582.465,288.209,412.915,105.038,94.565,105.038,339.528,322.608,352.473,17.571,19.141,17.571 +1478,46.559,286.367,407.423,245.769,583.690,285.223,412.342,103.092,85.299,103.092,341.560,323.539,351.662,18.393,23.332,18.393 +1479,46.591,283.610,406.131,247.950,584.260,282.482,411.835,101.193,75.822,101.193,340.070,323.551,351.698,19.016,20.881,19.016 +1480,46.622,280.957,405.916,251.402,583.818,280.149,410.818,99.367,65.695,99.367,340.807,321.449,350.745,19.377,20.227,19.377 +1481,46.654,278.421,405.580,254.298,583.962,277.760,410.428,97.765,56.206,97.765,340.440,320.894,350.226,19.006,19.971,19.006 +1482,46.684,276.154,405.412,255.883,585.142,275.554,410.864,96.274,46.931,96.274,339.800,319.955,350.769,18.256,23.615,18.256 +1483,46.714,273.935,405.046,258.788,584.779,273.474,410.692,94.667,37.333,94.667,338.079,320.219,349.409,18.266,24.110,18.266 +1484,46.745,271.820,404.240,261.715,584.096,271.503,409.945,93.180,28.018,93.180,337.424,319.825,348.852,18.083,25.561,18.083 +1485,46.777,269.551,403.358,264.469,584.107,269.360,409.985,91.648,18.285,91.648,335.120,318.439,348.381,18.050,26.016,18.050 +1486,46.811,267.000,402.000,266.934,583.915,267.000,409.958,90.000,9.002,90.000,332.000,317.799,347.915,18.000,25.729,18.000 +1487,46.844,265.333,401.503,269.000,583.500,265.505,409.739,88.807,0.000,88.807,331.116,316.000,347.591,18.309,25.000,18.309 +1488,46.877,263.207,401.444,270.829,582.997,263.603,409.967,87.337,170.340,87.337,329.295,317.309,346.359,18.538,25.359,18.538 +1489,46.910,261.119,400.846,272.998,582.907,261.770,409.825,85.855,160.498,85.855,328.877,317.685,346.881,18.820,24.135,18.820 +1490,46.941,258.911,401.109,274.781,582.519,259.802,410.018,84.289,151.579,84.289,328.362,318.007,346.270,19.105,24.067,19.105 +1491,46.972,258.911,401.109,274.781,582.519,259.802,410.018,84.289,151.579,84.289,328.362,318.007,346.270,19.105,24.067,19.105 +1492,46.999,256.340,400.639,277.373,582.601,257.608,410.620,82.755,141.582,82.755,326.079,318.748,346.201,18.773,22.694,18.773 +1493,47.030,254.032,400.457,279.295,582.334,255.633,410.862,81.254,133.363,81.254,325.098,319.886,346.153,19.083,22.861,19.083 +1494,47.064,251.626,400.518,281.555,582.167,253.613,411.338,79.592,124.430,79.592,324.129,320.395,346.132,19.430,21.232,19.430 +1495,47.098,248.778,399.679,283.879,581.980,251.422,411.842,77.735,114.880,77.735,321.406,321.210,346.300,19.671,20.063,19.671 +1496,47.129,245.882,399.029,286.887,581.859,249.304,412.714,75.964,106.883,75.964,318.207,322.401,346.419,20.130,20.754,20.130 +1497,47.161,242.614,398.603,290.290,582.636,247.084,414.115,73.926,99.340,73.926,315.503,325.333,347.791,20.488,20.929,20.488 +1498,47.193,238.850,398.550,293.557,581.332,244.328,414.983,71.565,92.797,71.565,312.117,323.689,346.760,20.871,20.464,20.871 +1499,47.226,234.705,398.019,298.888,580.035,241.597,416.127,69.163,86.730,69.163,308.383,324.442,347.133,21.266,18.370,21.266 +1500,47.258,230.263,398.704,303.443,578.804,238.562,417.727,66.431,81.584,66.431,305.658,325.300,347.166,21.795,18.245,21.795 +1501,47.290,225.106,400.436,308.395,576.524,234.707,419.502,63.273,76.984,63.273,304.079,324.846,346.773,21.170,18.091,21.170 +1502,47.320,219.999,402.908,313.519,573.645,230.762,421.593,60.058,73.187,60.058,303.002,324.317,346.128,20.887,18.153,20.887 +1503,47.351,216.376,407.782,318.814,570.703,227.198,424.179,56.575,69.969,56.575,306.218,324.659,345.512,21.566,18.174,21.566 +1504,47.381,212.704,412.780,324.365,566.848,223.447,426.806,52.549,67.433,52.549,309.748,324.616,345.084,22.870,18.349,22.870 +1505,47.412,209.059,418.503,330.005,562.272,219.169,429.877,48.366,65.726,48.366,314.742,324.596,345.178,23.502,18.625,23.502 +1506,47.443,205.943,424.853,335.604,556.978,215.043,433.594,43.847,64.687,43.847,319.604,324.397,344.840,24.786,18.776,24.786 +1507,47.475,201.657,432.812,340.929,550.794,209.605,439.012,37.954,64.385,37.954,324.437,324.334,344.598,25.611,18.924,25.611 +1508,47.506,201.657,432.812,340.929,550.794,209.605,439.012,37.954,64.385,37.954,324.437,324.334,344.598,25.611,18.924,25.611 +1509,47.535,198.416,438.312,346.306,543.593,205.952,443.297,33.483,64.470,33.483,326.717,324.298,344.788,25.534,18.950,25.534 +1510,47.566,193.852,446.075,351.283,535.173,201.107,449.860,27.553,65.120,27.553,328.846,323.511,345.213,24.632,19.590,24.632 +1511,47.597,190.700,453.895,355.768,525.603,197.362,456.524,21.541,66.038,21.541,331.086,322.982,345.411,25.628,21.018,25.628 +1512,47.627,186.260,466.179,359.588,515.123,193.076,468.016,15.086,67.203,15.086,331.951,322.380,346.068,19.050,22.686,19.050 +1513,47.659,183.470,476.210,361.845,503.862,190.594,477.228,8.130,68.199,8.130,332.199,321.253,346.592,18.668,22.841,18.668 +1514,47.692,182.535,486.754,362.876,491.733,189.438,486.861,0.881,69.495,0.881,333.176,320.339,346.985,18.352,23.454,18.352 +1515,47.724,182.734,498.227,362.160,479.119,189.391,497.446,173.316,70.652,173.316,334.050,319.169,347.456,19.166,23.847,19.166 +1516,47.756,184.144,510.136,360.098,466.131,190.871,508.382,165.379,71.903,165.379,334.922,317.813,348.825,19.773,24.534,19.773 +1517,47.787,187.451,522.264,355.597,453.073,193.820,519.588,157.209,73.229,157.209,336.007,316.370,349.824,20.577,24.002,20.577 +1518,47.817,192.465,533.805,351.244,446.433,197.931,530.554,149.265,74.624,149.265,336.822,302.327,349.541,19.793,24.009,19.793 +1519,47.848,198.881,545.188,344.618,440.471,203.008,541.812,140.711,75.964,140.711,336.883,288.375,347.546,19.419,24.739,19.419 +1520,47.879,207.184,556.215,335.496,436.340,209.541,553.607,132.112,77.276,132.112,335.883,273.123,342.913,20.059,23.851,20.059 +1521,47.911,217.888,567.247,323.308,430.038,219.242,565.120,122.471,78.690,122.471,334.627,266.130,339.668,20.325,22.946,20.325 +1522,47.943,230.414,576.034,308.429,423.584,231.221,574.152,113.199,81.666,113.199,333.518,264.042,337.615,19.959,20.469,19.959 +1523,47.976,243.313,586.316,292.194,417.672,244.763,580.293,103.536,82.504,103.536,326.019,265.318,338.410,20.237,19.777,20.237 +1524,48.007,256.821,602.548,275.040,410.845,258.044,581.747,93.366,83.358,93.366,301.538,274.175,343.212,23.430,18.512,23.430 +1525,48.038,256.821,602.548,275.040,410.845,258.044,581.747,93.366,83.358,93.366,301.538,274.175,343.212,23.430,18.512,23.430 +1526,48.066,283.655,650.488,258.647,409.131,278.220,580.917,85.533,84.485,85.533,206.013,276.837,345.578,22.790,18.123,22.790 +1527,48.097,290.884,580.663,241.879,397.428,288.466,571.544,75.150,85.344,75.150,341.612,308.747,360.480,22.547,19.397,22.547 +1528,48.128,306.724,572.954,228.029,401.998,303.580,565.908,65.953,86.634,65.953,345.510,308.408,360.941,20.876,19.202,20.876 +1529,48.160,320.163,563.906,214.553,409.624,316.664,558.585,56.669,87.932,56.669,348.392,307.377,361.130,23.334,18.436,23.334 +1530,48.193,331.985,554.217,202.928,419.021,327.734,549.589,47.437,89.246,47.437,348.604,308.092,361.174,24.576,17.959,24.576 +1531,48.224,341.782,543.014,193.088,430.005,336.911,539.150,38.425,90.441,38.425,348.576,308.076,361.012,25.126,18.499,25.126 +1532,48.256,349.215,530.623,185.932,442.047,344.246,527.783,29.745,91.861,29.745,348.538,308.390,359.985,25.675,19.733,25.675 +1533,48.287,354.155,518.051,180.074,454.218,349.040,516.048,21.385,93.063,21.385,348.770,308.842,359.756,26.175,20.409,26.175 +1534,48.317,355.940,508.639,176.339,467.173,351.299,507.540,13.314,94.236,13.314,349.567,309.522,359.107,19.945,21.016,19.945 +1535,48.349,357.520,494.713,173.823,479.771,352.770,494.245,5.621,95.477,5.621,349.461,311.025,359.008,23.070,20.468,23.070 +1536,48.378,356.932,484.863,173.245,492.530,352.162,485.014,178.187,96.888,178.187,348.585,311.807,358.131,19.155,19.443,19.155 +1537,48.409,355.767,472.861,174.059,504.008,350.815,473.644,171.016,98.049,171.016,348.630,313.107,358.657,21.937,19.483,21.937 +1538,48.440,355.767,472.861,174.059,504.008,350.815,473.644,171.016,98.049,171.016,348.630,313.107,358.657,21.937,19.483,21.937 +1539,48.468,352.474,463.392,175.998,514.824,347.934,464.684,164.118,99.206,164.118,348.749,313.659,358.188,21.716,19.279,21.716 +1540,48.499,348.253,455.212,179.093,524.882,344.550,456.721,157.834,100.340,157.834,349.891,314.751,357.889,19.791,19.292,19.791 +1541,48.530,344.555,447.260,182.818,534.064,340.433,449.498,151.499,101.459,151.499,348.353,315.939,357.733,20.439,19.297,20.439 +1542,48.561,339.667,440.027,187.465,542.272,335.755,442.670,145.949,102.400,145.949,347.829,316.608,357.270,19.662,19.423,19.662 +1543,48.593,334.295,434.304,192.302,549.218,331.037,436.970,140.711,103.241,140.711,348.492,317.506,356.910,19.560,19.239,19.560 +1544,48.626,329.171,428.620,197.616,555.529,325.882,431.839,135.616,103.815,135.616,347.162,318.448,356.367,19.342,19.183,19.342 +1545,48.657,323.451,424.162,203.301,561.069,320.654,427.401,130.815,103.893,130.815,347.175,318.689,355.734,20.228,19.751,20.228 +1546,48.687,318.130,420.607,208.839,565.598,315.695,423.876,126.686,103.601,126.686,346.823,319.414,354.977,18.833,20.442,18.833 +1547,48.718,313.448,416.859,213.927,569.322,310.846,420.907,122.735,102.724,122.735,344.883,319.976,354.507,18.746,20.579,18.746 +1548,48.749,308.537,414.579,219.276,572.553,306.310,418.594,119.012,100.784,119.012,344.518,320.289,353.700,18.938,20.302,18.938 +1549,48.779,304.326,411.971,223.688,575.029,302.082,416.629,115.718,98.746,115.718,343.114,320.689,353.455,18.688,20.072,18.688 +1550,48.811,300.205,410.619,228.396,577.540,298.248,415.291,112.738,95.711,112.738,343.147,320.999,353.276,18.668,20.398,18.668 +1551,48.843,296.199,409.246,232.908,579.997,294.315,414.400,110.072,91.868,110.072,342.254,322.416,353.229,19.110,20.174,19.110 +1552,48.874,296.199,409.246,232.908,579.997,294.315,414.400,110.072,91.868,110.072,342.254,322.416,353.229,19.110,20.174,19.110 +1553,48.902,292.753,407.971,237.074,581.425,290.988,413.539,107.592,87.284,107.592,340.978,321.824,352.660,18.716,20.116,18.716 +1554,48.933,289.326,408.214,241.578,582.707,288.079,412.745,105.388,81.967,105.388,343.016,323.428,352.416,18.735,21.341,18.735 +1555,48.963,286.618,406.955,244.275,583.070,285.387,412.118,103.412,76.373,103.412,341.038,322.330,351.652,19.006,21.116,19.006 +1556,48.994,284.194,406.818,247.151,583.568,283.186,411.704,101.662,69.444,101.662,341.224,321.395,351.202,18.890,21.184,18.890 +1557,49.026,281.972,406.196,250.366,583.555,281.119,411.000,100.064,62.819,100.064,340.791,321.566,350.548,18.899,19.907,18.899 +1558,49.059,280.156,405.986,253.064,583.758,279.418,410.784,98.746,55.808,98.746,340.228,320.913,349.939,18.855,19.890,18.855 +1559,49.090,277.814,405.092,254.235,584.733,277.084,410.798,97.289,48.576,97.289,339.352,320.490,350.857,18.777,23.289,18.777 +1560,49.122,275.902,404.957,256.518,584.766,275.299,410.621,96.082,41.186,96.082,338.917,319.939,350.309,18.428,23.800,18.428 +1561,49.153,274.157,404.999,258.524,584.706,273.674,410.631,94.899,33.425,94.899,338.160,320.073,349.465,18.190,24.905,18.190 +1562,49.184,272.761,404.280,260.603,583.872,272.379,409.907,93.879,25.602,93.879,337.446,319.468,348.726,18.128,25.777,18.128 +1563,49.214,271.129,403.292,263.004,583.861,270.818,409.827,92.726,17.745,92.726,335.334,318.186,348.419,17.980,26.173,17.980 +1564,49.245,269.527,401.959,264.579,584.027,269.305,409.959,91.584,9.549,91.584,332.260,317.787,348.265,18.012,25.465,18.012 +1565,49.275,267.798,401.491,265.996,583.663,267.734,409.814,90.437,1.332,90.437,331.067,316.263,347.714,18.183,24.947,18.183 +1566,49.306,267.798,401.491,265.996,583.663,267.734,409.814,90.437,1.332,90.437,331.067,316.263,347.714,18.183,24.947,18.183 +1567,49.334,266.389,400.993,267.300,583.295,266.455,409.637,89.563,173.326,89.563,330.029,317.514,347.317,18.122,25.401,18.122 +1568,49.365,264.935,400.976,268.623,583.112,265.170,410.034,88.512,164.792,88.512,328.097,317.581,346.219,18.331,24.546,18.331 +1569,49.397,263.411,400.847,269.798,582.682,263.811,409.778,87.436,156.371,87.436,328.119,317.678,345.998,18.608,23.534,18.608 +1570,49.428,261.948,399.818,271.384,583.107,262.572,409.906,86.460,147.653,86.460,326.613,318.356,346.828,18.892,23.514,18.892 +1571,49.461,260.426,400.140,272.715,582.752,261.239,410.142,85.352,139.436,85.352,325.876,318.995,345.945,19.075,22.882,19.075 +1572,49.494,258.713,398.629,273.671,582.718,259.856,410.057,84.289,130.601,84.289,323.387,319.755,346.357,19.204,21.259,19.204 +1573,49.527,256.990,398.081,274.907,582.929,258.499,410.659,83.157,121.218,83.157,320.660,321.062,345.995,19.421,20.188,19.421 +1574,49.561,254.726,396.620,276.728,583.275,256.716,410.879,82.057,112.249,82.057,318.219,321.628,347.015,18.772,20.236,18.772 +1575,49.594,252.569,393.929,278.991,584.361,255.427,411.792,80.910,103.614,80.910,312.071,323.773,348.250,18.998,20.121,18.998 +1576,49.627,249.526,387.454,282.215,584.622,254.058,412.549,79.765,95.758,79.765,297.673,323.594,348.676,19.381,21.187,19.381 +1577,49.661,243.991,375.094,283.825,584.840,251.783,413.344,78.486,86.756,78.486,270.809,324.613,348.880,17.946,19.071,17.946 +1578,49.693,231.999,334.296,286.654,584.469,250.101,413.945,77.196,78.640,77.196,185.408,324.775,348.769,17.685,19.416,17.685 +1579,49.726,245.867,401.966,289.188,583.748,249.061,413.984,75.117,69.852,75.117,323.879,325.508,348.750,19.307,19.816,19.307 +1580,49.759,245.321,405.608,292.067,582.465,247.699,414.128,74.407,62.148,74.407,330.444,324.032,348.135,20.406,20.622,20.406 +1581,49.790,243.507,407.766,296.056,580.946,245.618,414.638,72.924,52.922,72.924,333.195,323.987,347.574,20.137,20.281,20.137 +1582,49.821,242.026,409.336,299.266,579.215,243.889,414.852,71.333,44.694,71.333,335.237,323.192,346.882,21.086,20.290,21.086 +1583,49.852,239.900,410.151,300.967,578.723,241.955,415.686,69.632,37.126,69.632,334.955,324.393,346.764,21.366,21.565,21.366 +1584,49.883,237.805,411.485,303.912,577.159,239.877,416.598,67.932,28.887,67.932,334.678,324.024,345.713,21.966,23.550,21.966 +1585,49.913,234.665,410.993,307.292,575.895,237.569,417.482,65.889,20.487,65.889,331.930,322.325,346.149,22.155,24.283,22.155 +1586,49.944,231.789,411.592,310.445,574.454,235.173,418.519,63.964,12.281,63.964,330.883,321.491,346.301,22.866,23.604,22.866 +1587,49.980,228.821,412.596,313.513,572.322,232.719,419.835,61.699,4.086,61.699,328.687,320.398,345.130,23.095,23.512,23.095 +1588,50.011,225.870,413.671,316.619,570.186,230.116,420.816,59.278,175.962,59.278,328.574,320.250,345.196,23.849,23.905,23.849 +1589,50.042,222.205,415.865,320.067,567.999,227.105,423.306,56.628,167.800,56.628,326.125,320.301,343.943,22.553,24.700,22.553 +1590,50.074,218.746,417.686,323.563,565.172,224.040,424.937,53.868,159.905,53.868,325.934,319.966,343.891,22.843,24.578,22.843 +1591,50.105,218.746,417.686,323.563,565.172,224.040,424.937,53.868,159.905,53.868,325.934,319.966,343.891,22.843,24.578,22.843 +1592,50.134,215.552,419.863,327.194,562.363,221.470,427.164,50.977,151.928,50.977,324.410,320.353,343.206,24.195,25.059,24.195 +1593,50.165,211.950,422.637,330.883,558.960,218.313,429.643,47.752,144.058,47.752,323.896,320.262,342.823,24.279,25.057,24.279 +1594,50.197,208.208,425.752,334.808,554.926,214.944,432.368,44.487,136.432,44.487,323.905,319.760,342.789,24.767,24.653,24.767 +1595,50.230,203.985,429.988,338.490,550.785,210.896,435.862,40.365,128.830,40.365,325.158,320.155,343.297,25.144,24.814,25.144 +1596,50.261,200.046,434.402,342.141,546.490,207.372,439.800,36.384,120.735,36.384,325.370,321.048,343.570,25.592,24.625,25.592 +1597,50.293,197.077,439.139,346.116,540.844,204.343,443.797,32.661,113.334,32.661,326.196,320.528,343.457,24.933,24.072,24.933 +1598,50.325,193.981,444.113,350.191,534.620,201.579,448.254,28.591,106.189,28.591,326.337,320.601,343.642,25.859,24.566,25.859 +1599,50.366,189.180,453.189,353.581,527.731,196.810,456.553,23.793,98.297,23.793,327.648,320.609,344.325,18.999,23.831,18.999 +1600,50.399,186.500,461.000,357.098,520.502,194.119,463.540,18.435,91.123,18.435,329.193,319.252,345.256,19.290,23.858,19.290 +1601,50.430,184.814,468.128,359.957,511.616,192.196,469.909,13.570,83.660,13.570,330.541,319.920,345.729,19.442,24.295,19.442 +1602,50.462,183.322,477.067,361.585,502.717,190.341,477.995,7.533,76.651,7.533,331.855,320.375,346.015,18.631,23.467,18.631 +1603,50.494,182.568,485.872,362.857,492.743,189.437,486.050,1.488,69.254,1.488,333.329,320.349,347.071,18.539,23.492,18.539 +1604,50.526,182.848,495.152,362.926,482.040,189.347,494.616,175.285,61.582,175.285,335.007,320.356,348.050,18.196,24.277,18.196 +1605,50.559,184.342,505.741,361.782,470.801,190.407,504.478,168.232,54.713,168.232,336.892,320.255,349.282,20.110,23.383,20.110 +1606,50.589,186.752,515.776,358.612,459.081,192.409,513.843,161.134,47.203,161.134,338.007,320.436,349.963,20.148,23.508,20.148 +1607,50.620,190.150,526.306,354.537,447.268,196.125,523.384,153.939,40.101,153.939,338.191,319.693,351.493,20.262,23.310,20.262 +1608,50.650,195.410,536.915,348.154,437.262,200.661,533.539,147.265,32.928,147.265,339.776,317.900,352.262,22.051,20.416,22.051 +1609,50.680,202.534,545.812,339.801,427.415,206.313,542.531,139.028,25.602,139.028,342.527,317.627,352.536,19.889,18.205,19.889 +1610,50.710,210.602,554.338,330.194,417.931,213.729,550.768,131.209,18.213,131.209,343.833,317.175,353.324,19.849,17.852,19.849 +1611,50.742,220.459,563.028,319.038,409.412,223.197,558.687,122.242,10.840,122.242,344.513,316.358,354.777,19.388,17.804,19.388 +1612,50.773,231.658,569.850,306.910,402.508,233.800,564.967,113.691,3.421,113.691,345.622,314.992,356.287,19.043,17.604,19.043 +1613,50.804,231.658,569.850,306.910,402.508,233.800,564.967,113.691,3.421,113.691,345.622,314.992,356.287,19.043,17.604,19.043 +1614,50.832,243.986,574.967,293.024,397.836,245.245,570.215,104.834,175.885,104.834,347.901,315.128,357.732,19.819,17.243,19.819 +1615,50.865,255.835,578.332,278.512,395.008,256.372,573.016,95.768,168.453,95.768,347.977,314.377,358.663,22.693,17.119,22.693 +1616,50.896,272.834,579.420,263.969,394.910,272.647,573.966,88.040,160.872,88.040,347.584,313.736,358.498,23.123,16.356,23.123 +1617,50.927,286.522,577.708,249.210,396.411,285.544,572.621,79.121,153.279,79.121,349.442,313.067,359.801,22.548,16.904,22.548 +1618,50.958,299.727,573.470,234.866,399.804,297.972,568.621,70.105,145.751,70.105,350.120,312.384,360.433,21.197,18.168,21.197 +1619,50.990,313.146,567.232,222.191,406.284,310.776,562.902,61.314,138.621,61.314,349.961,311.846,359.833,22.577,17.901,22.577 +1620,51.020,324.376,559.578,210.082,413.571,321.269,555.476,52.848,130.601,52.848,350.213,311.621,360.506,23.062,18.222,23.062 +1621,51.050,334.890,550.064,199.747,422.838,331.016,546.264,44.446,122.735,44.446,349.431,311.236,360.284,24.731,18.145,24.731 +1622,51.081,343.243,539.572,191.027,432.978,338.975,536.446,36.219,114.963,36.219,350.409,310.583,360.990,25.589,18.476,25.589 +1623,51.111,349.389,528.584,185.809,444.401,345.437,526.445,28.418,107.775,28.418,349.885,310.297,358.874,25.210,19.310,25.210 +1624,51.143,353.051,520.366,180.478,455.434,348.572,518.655,20.901,99.934,20.901,349.584,309.693,359.175,19.545,18.754,19.545 +1625,51.174,356.209,509.195,177.597,466.661,351.732,508.106,13.677,92.564,13.677,348.776,309.227,357.992,19.802,19.562,19.802 +1626,51.205,356.209,509.195,177.597,466.661,351.732,508.106,13.677,92.564,13.677,348.776,309.227,357.992,19.802,19.562,19.802 +1627,51.233,358.219,496.664,174.958,477.300,353.228,496.067,6.816,84.165,6.816,348.421,309.273,358.475,23.269,18.952,23.269 +1628,51.264,358.491,487.942,174.385,487.923,353.196,487.924,0.200,76.201,0.200,347.029,308.992,357.620,19.294,18.912,19.294 +1629,51.295,357.370,478.514,174.479,497.710,352.364,479.041,173.991,68.009,173.991,347.658,309.199,357.724,19.314,19.115,19.314 +1630,51.327,355.612,469.357,176.192,507.467,350.739,470.400,167.920,59.962,167.920,346.911,309.636,356.878,20.467,18.780,20.467 +1631,51.358,353.100,460.884,178.240,516.413,348.196,462.446,162.340,51.546,162.340,346.345,310.181,356.638,20.399,20.361,20.399 +1632,51.391,349.570,453.521,180.057,523.468,344.861,455.519,157.005,43.435,157.005,346.278,309.219,356.507,21.060,20.410,21.060 +1633,51.422,346.898,447.610,182.652,531.481,341.675,450.356,152.266,35.858,152.266,345.214,309.502,357.015,20.148,23.046,20.148 +1634,51.453,342.889,440.900,186.647,537.491,337.992,444.010,147.582,28.695,147.582,344.143,309.971,355.747,20.100,23.398,20.100 +1635,51.489,339.470,435.151,190.377,543.018,334.293,438.996,143.393,20.999,143.393,342.221,310.442,355.118,19.289,23.491,19.289 +1636,51.532,336.648,429.337,194.070,548.275,330.428,434.678,139.351,13.627,139.351,338.517,310.727,354.913,19.520,23.177,19.520 +1637,51.565,333.063,425.118,197.951,552.939,326.752,431.267,135.744,6.340,135.744,336.701,311.527,354.324,19.357,21.755,19.357 +1638,51.597,329.445,421.153,201.522,556.553,323.163,428.017,132.466,178.781,132.466,335.279,311.249,353.888,19.742,20.655,19.742 +1639,51.628,325.366,416.707,205.662,560.023,318.934,424.703,128.811,172.235,128.811,332.351,312.697,352.875,19.717,20.492,19.717 +1640,51.664,322.213,412.820,209.328,563.335,315.321,422.364,125.838,165.530,125.838,329.136,313.378,352.679,19.141,20.428,19.141 +1641,51.696,318.947,410.081,212.911,566.252,312.111,420.536,123.179,160.201,123.179,327.513,314.219,352.495,19.637,20.135,19.637 +1642,51.727,315.142,406.536,216.668,568.771,308.238,418.411,120.174,154.290,120.174,324.552,314.550,352.025,19.039,19.722,19.039 +1643,51.760,311.834,403.479,220.127,571.052,304.974,416.770,117.300,149.216,117.300,322.111,315.729,352.025,19.865,19.375,19.865 +1644,51.793,308.687,400.712,224.056,573.283,301.743,415.670,114.905,144.638,114.905,318.360,316.653,351.343,19.792,19.888,19.792 +1645,51.825,304.279,398.331,227.632,575.163,297.839,414.200,112.087,140.964,112.087,316.848,317.231,351.100,19.405,19.524,19.405 +1646,51.857,300.737,396.482,231.264,576.695,294.722,413.239,109.747,137.545,109.747,314.962,317.774,350.569,19.282,19.309,19.282 +1647,51.888,296.619,395.319,235.250,578.250,291.301,412.336,107.354,135.000,107.354,314.501,318.198,350.160,19.269,19.092,19.269 +1648,51.919,291.913,394.529,239.189,579.676,287.494,411.337,104.730,132.979,104.730,315.417,318.017,350.177,18.571,19.421,18.571 +1649,51.949,287.507,394.435,243.112,580.656,283.956,410.806,102.239,131.553,102.239,315.792,318.405,349.296,18.759,19.134,18.759 +1650,51.980,283.597,394.782,247.207,581.459,280.878,410.190,100.008,130.675,100.008,317.737,318.892,349.030,18.363,19.067,18.363 +1651,52.011,279.101,394.965,251.258,582.220,277.186,409.811,97.352,130.471,97.352,318.681,319.326,348.619,18.300,19.242,18.300 +1652,52.043,274.891,395.787,255.828,582.854,273.726,409.538,94.844,130.426,94.844,320.816,319.327,348.416,18.425,20.356,18.425 +1653,52.075,270.375,396.067,260.108,583.039,269.892,409.514,92.058,131.532,92.058,320.619,319.155,347.529,18.276,20.019,18.276 +1654,52.106,270.375,396.067,260.108,583.039,269.892,409.514,92.058,131.532,92.058,320.619,319.155,347.529,18.276,20.019,18.276 +1655,52.135,267.000,397.500,264.986,583.354,267.000,409.677,90.000,132.357,90.000,323.000,319.381,347.354,18.000,21.495,18.000 +1656,52.166,262.607,398.755,269.815,583.322,263.204,410.013,86.961,133.905,86.961,324.287,319.104,346.833,18.770,22.173,18.770 +1657,52.197,258.753,399.622,274.059,582.552,259.803,410.047,84.249,135.490,84.249,325.175,318.960,346.130,19.413,21.877,19.413 +1658,52.228,254.443,400.406,278.817,582.223,255.996,410.722,81.439,137.193,81.439,325.111,319.240,345.974,19.043,22.966,19.043 +1659,52.261,250.603,402.077,283.671,581.473,252.500,411.502,78.616,138.969,78.616,326.330,319.099,345.559,19.442,23.270,19.442 +1660,52.293,246.744,403.182,288.675,580.331,249.029,412.239,75.842,140.922,75.842,326.685,319.225,345.368,20.153,23.861,20.153 +1661,52.325,242.997,405.116,293.635,579.178,245.644,413.719,72.897,142.829,72.897,326.509,319.199,344.511,20.660,24.115,20.660 +1662,52.356,238.809,406.422,298.818,577.660,241.918,414.911,69.883,144.811,69.883,326.699,319.097,344.781,21.482,24.507,21.482 +1663,52.386,234.836,408.285,303.813,575.534,238.306,416.382,66.801,147.160,66.801,326.559,319.232,344.178,22.059,24.892,22.059 +1664,52.417,230.500,410.000,309.102,573.328,234.576,418.152,63.435,149.349,63.435,326.019,319.168,344.247,22.361,25.076,22.361 +1665,52.449,226.354,412.084,314.310,570.718,230.978,420.095,60.007,151.699,60.007,325.719,319.408,344.219,23.361,25.127,23.361 +1666,52.480,221.867,415.092,319.752,567.570,227.026,422.853,56.388,154.026,56.388,325.063,319.372,343.702,23.279,25.195,23.279 +1667,52.512,217.595,418.544,325.089,564.005,223.195,425.855,52.543,156.501,52.543,324.849,320.018,343.267,23.686,25.120,23.686 +1668,52.544,212.643,422.319,330.417,559.889,218.727,429.145,48.289,158.997,48.289,325.545,320.353,343.834,24.327,25.181,24.327 +1669,52.576,208.542,425.942,335.715,555.156,215.296,432.593,44.559,161.653,44.559,324.634,320.654,343.593,24.775,25.182,24.775 +1670,52.607,204.010,430.124,340.947,549.595,211.583,436.532,40.236,164.358,40.236,323.734,321.283,343.574,26.249,24.690,26.249 +1671,52.636,204.010,430.124,340.947,549.595,211.583,436.532,40.236,164.358,40.236,323.734,321.283,343.574,26.249,24.690,26.249 +1672,52.665,198.655,435.073,345.882,543.657,207.208,441.123,35.272,167.026,35.272,323.898,321.623,344.850,26.245,24.405,26.245 +1673,52.696,193.353,440.055,350.518,536.394,203.437,446.007,30.551,169.857,30.551,321.795,321.804,345.213,26.260,23.164,26.260 +1674,52.729,188.006,446.377,354.765,528.567,199.905,452.017,25.358,172.684,25.358,319.113,322.133,345.448,26.399,22.283,26.399 +1675,52.764,180.208,456.700,358.483,519.280,195.250,462.117,19.807,175.657,19.807,313.917,322.426,345.892,19.267,20.523,19.267 +1676,52.796,169.455,464.278,361.030,509.641,192.520,469.801,13.465,178.479,13.465,298.876,322.338,346.311,18.820,19.188,18.820 +1677,52.829,135.209,470.270,363.485,499.702,191.230,477.453,7.306,1.219,7.306,234.415,323.182,347.373,17.422,19.294,17.422 +1678,52.862,162.581,486.197,364.495,489.561,190.237,486.783,1.212,4.667,1.212,293.231,322.783,348.556,17.774,18.693,17.774 +1679,52.895,180.080,497.255,363.961,478.800,190.316,496.241,174.346,7.312,174.346,328.463,323.125,349.037,18.415,19.635,18.415 +1680,52.926,183.011,508.445,362.213,467.486,191.417,506.446,166.626,10.929,166.626,333.072,322.626,350.352,20.015,18.859,20.015 +1681,52.962,187.051,518.818,358.535,455.844,193.716,516.286,159.201,14.153,159.201,336.822,321.602,351.081,19.726,18.845,19.726 +1682,52.994,191.568,530.295,353.022,444.432,197.615,526.992,151.356,17.671,151.356,338.147,320.399,351.927,20.900,19.174,20.900 +1683,53.026,197.777,540.378,345.427,433.495,202.721,536.757,143.775,20.980,143.775,340.035,319.061,352.291,19.896,18.702,19.896 +1684,53.059,205.878,549.375,335.802,423.646,209.192,546.131,135.616,24.362,135.616,343.041,316.978,352.316,19.220,18.632,19.220 +1685,53.090,215.075,558.679,324.452,414.091,217.843,555.011,127.030,28.009,127.030,344.214,315.110,353.405,19.454,18.822,19.454 +1686,53.123,226.292,566.713,312.318,405.289,228.698,562.165,117.883,32.171,117.883,345.250,312.890,355.540,19.853,20.383,19.853 +1687,53.154,238.235,572.775,299.127,400.138,239.834,568.163,109.117,36.027,109.117,346.591,308.864,356.354,19.134,19.924,19.134 +1688,53.185,250.872,576.820,286.167,395.016,251.747,571.695,99.689,39.898,99.689,349.504,305.492,359.902,21.710,24.387,21.710 +1689,53.217,264.286,578.525,284.794,407.901,264.271,580.391,90.442,43.234,90.442,349.020,264.550,345.288,22.092,24.410,22.092 +1690,53.247,278.880,579.295,271.202,413.279,279.515,583.565,81.542,46.882,81.542,347.947,255.476,339.313,23.298,23.485,23.298 +1691,53.277,295.469,579.074,255.320,418.642,296.262,581.738,73.421,51.605,73.421,341.552,253.150,335.994,20.727,20.910,20.727 +1692,53.309,312.954,583.131,239.027,424.127,309.859,576.659,64.440,54.689,64.440,321.983,255.994,336.331,18.396,19.143,18.396 +1693,53.339,356.923,620.385,225.130,429.938,322.313,568.470,56.310,56.921,56.310,213.560,259.116,338.346,18.305,19.349,18.305 +1694,53.370,356.923,620.385,225.130,429.938,322.313,568.470,56.310,56.921,56.310,213.560,259.116,338.346,18.305,19.349,18.305 +1695,53.400,333.375,559.675,213.241,437.356,332.858,559.077,49.118,59.084,49.118,339.054,262.916,340.636,23.878,20.338,23.878 +1696,53.431,339.947,546.812,203.312,444.857,341.237,547.917,40.601,62.577,40.601,346.980,269.320,343.582,24.947,19.829,24.947 +1697,53.462,348.219,532.816,188.992,441.248,344.251,530.408,31.257,67.471,31.257,348.692,301.230,357.973,26.284,20.034,26.284 +1698,53.495,353.195,521.200,182.767,451.116,348.678,519.234,23.519,72.031,23.519,348.766,304.828,358.621,25.982,19.899,25.982 +1699,53.527,355.406,512.830,178.476,462.625,350.888,511.539,15.945,76.559,15.945,349.033,306.996,358.431,19.230,19.868,19.230 +1700,53.560,358.229,499.488,175.614,474.416,353.108,498.714,8.596,80.826,8.596,347.908,309.040,358.265,23.546,20.075,23.546 +1701,53.590,358.431,490.819,173.799,485.791,352.937,490.655,1.710,84.806,1.710,347.412,309.904,358.406,18.708,19.013,18.708 +1702,53.620,356.978,480.250,173.955,497.469,352.104,480.678,174.983,89.488,174.983,348.085,311.086,357.870,19.520,18.633,19.520 +1703,53.651,354.802,470.481,174.821,507.265,350.357,471.363,168.781,93.514,168.781,349.270,312.701,358.333,19.820,18.850,19.820 +1704,53.681,352.030,461.876,176.744,516.874,347.796,463.191,162.751,97.765,162.751,349.686,314.093,358.554,20.483,18.916,20.483 +1705,53.711,347.660,454.341,179.423,525.697,344.196,455.811,157.011,102.065,157.011,350.435,315.343,357.961,21.062,18.901,21.062 +1706,53.744,344.349,448.280,182.480,533.424,340.789,450.179,151.928,106.006,151.928,349.647,316.480,357.718,20.235,19.064,20.235 +1707,53.775,340.073,441.588,185.605,540.223,336.498,443.933,146.731,110.260,146.731,349.415,316.961,357.967,20.850,19.361,20.850 +1708,53.806,340.073,441.588,185.605,540.223,336.498,443.933,146.731,110.260,146.731,349.415,316.961,357.967,20.850,19.361,20.850 +1709,53.834,336.166,435.956,189.805,546.229,332.512,438.758,142.524,114.444,142.524,348.076,317.221,357.285,19.073,19.863,19.073 +1710,53.867,332.136,430.936,194.027,551.515,328.435,434.278,137.916,118.540,137.916,346.681,317.872,356.654,19.656,20.113,19.656 +1711,53.898,328.399,425.938,198.186,556.117,324.051,430.447,133.958,122.265,133.958,343.134,317.993,355.661,18.587,19.000,18.587 +1712,53.931,326.734,418.928,202.352,559.940,319.971,426.914,130.263,125.993,130.263,334.125,318.123,355.054,18.563,19.209,18.563 +1713,53.961,363.560,360.046,206.990,563.726,315.314,423.369,127.304,130.143,127.304,195.373,317.157,354.589,17.613,19.138,17.613 +1714,53.994,340.154,377.769,211.507,566.507,311.576,420.635,123.690,134.193,123.690,250.725,316.932,353.762,17.750,19.558,17.750 +1715,54.025,321.077,396.023,215.719,569.246,307.719,418.630,120.579,138.262,120.579,300.424,316.490,352.943,17.766,19.408,17.766 +1716,54.056,314.200,399.400,219.947,571.159,305.013,417.118,117.408,141.866,117.408,311.898,316.379,351.815,19.794,19.032,19.794 +1717,54.087,308.527,400.859,224.281,573.143,301.749,415.545,114.775,145.658,114.775,318.764,316.524,351.113,20.254,19.786,20.254 +1718,54.118,302.958,401.295,228.650,574.754,297.844,413.884,112.109,149.331,112.109,322.989,316.557,350.166,18.964,20.403,18.964 +1719,54.149,297.851,401.651,232.931,576.402,294.022,412.545,109.365,152.622,109.365,326.591,316.269,349.687,19.050,21.518,19.050 +1720,54.179,294.669,401.837,236.769,577.757,291.506,411.917,107.418,156.371,107.418,328.114,315.960,349.242,19.139,21.816,19.139 +1721,54.212,290.207,401.715,240.564,579.397,287.707,411.179,104.797,159.835,104.797,329.783,315.872,349.360,19.008,23.271,19.008 +1722,54.244,287.115,401.427,244.316,580.395,285.067,410.515,102.700,163.113,102.700,330.734,316.078,349.365,19.236,23.358,19.236 +1723,54.274,283.631,401.585,247.817,581.255,282.031,410.151,100.584,166.159,100.584,331.529,316.281,348.956,19.013,24.359,19.013 +1724,54.304,283.631,401.585,247.817,581.255,282.031,410.151,100.584,166.159,100.584,331.529,316.281,348.956,19.013,24.359,19.013 +1725,54.332,280.655,401.326,251.296,581.628,279.388,409.699,98.604,169.695,98.604,331.457,316.448,348.394,19.163,23.881,19.163 +1726,54.362,277.610,401.251,254.800,582.430,276.622,409.563,96.778,172.725,96.778,331.727,316.537,348.468,18.957,24.735,18.957 +1727,54.395,274.719,401.343,257.940,582.677,273.989,409.620,95.035,175.834,95.035,330.978,316.836,347.595,18.448,24.445,18.448 +1728,54.428,272.034,401.058,261.064,583.314,271.554,409.574,93.221,178.888,93.221,331.052,316.290,348.110,18.140,25.325,18.140 +1729,54.461,269.363,401.483,264.469,583.502,269.145,409.696,91.521,1.746,91.521,331.308,317.310,347.739,18.073,25.318,18.073 +1730,54.493,267.000,401.500,267.633,583.557,267.000,409.778,90.000,4.600,90.000,331.000,317.228,347.557,18.000,25.710,18.000 +1731,54.526,264.458,403.117,270.476,583.684,264.697,410.343,88.107,7.331,88.107,332.414,318.167,346.874,18.387,25.828,18.387 +1732,54.557,262.056,402.718,273.638,583.225,262.522,410.099,86.386,10.081,86.386,332.170,318.320,346.963,18.847,25.861,18.847 +1733,54.588,259.258,403.805,276.672,583.218,259.898,410.603,84.623,12.431,84.623,333.198,318.777,346.854,18.378,25.023,18.378 +1734,54.618,256.977,404.315,279.721,583.168,257.808,410.966,82.875,14.876,82.875,333.777,319.695,347.181,18.729,25.808,18.729 +1735,54.648,254.551,404.463,282.691,582.883,255.641,411.395,81.069,17.232,81.069,333.183,320.045,347.216,19.122,25.926,19.122 +1736,54.678,251.720,405.530,285.818,582.455,252.975,412.120,79.216,19.220,79.216,333.527,320.763,346.945,18.524,25.634,18.524 +1737,54.710,249.396,406.036,288.616,581.979,250.870,412.588,77.320,21.418,77.320,333.658,321.241,347.090,19.244,25.753,19.244 +1738,54.740,249.396,406.036,288.616,581.979,250.870,412.588,77.320,21.418,77.320,333.658,321.241,347.090,19.244,25.753,19.244 +1739,54.769,247.196,406.990,291.869,580.969,248.767,413.028,75.411,23.256,75.411,334.287,321.966,346.765,20.058,25.163,20.058 +1740,54.801,244.966,408.250,295.083,579.887,246.562,413.642,73.511,25.185,73.511,335.115,322.913,346.361,20.842,25.398,20.842 +1741,54.832,242.168,409.285,298.500,579.000,243.955,414.594,71.390,26.565,71.390,335.229,322.888,346.432,20.927,24.597,20.927 +1742,54.863,239.676,410.686,301.949,578.098,241.706,416.086,69.399,27.597,69.399,334.159,323.029,345.698,21.576,23.827,21.576 +1743,54.895,236.697,411.167,305.209,576.622,238.980,416.654,67.404,28.940,67.404,334.382,324.023,346.270,22.440,24.771,22.440 +1744,54.926,234.022,412.690,308.513,574.976,236.375,417.733,64.983,29.358,64.983,334.865,324.335,345.995,22.413,23.424,22.413 +1745,54.957,231.372,414.326,312.387,573.312,234.028,419.445,62.580,29.358,62.580,333.798,324.226,345.332,22.492,22.715,22.492 +1746,54.988,228.299,415.615,315.660,571.304,231.342,420.927,60.193,28.899,60.193,332.549,324.689,344.792,23.001,22.083,23.001 +1747,55.019,225.094,416.890,319.579,569.064,228.722,422.625,57.680,28.272,57.680,331.081,324.012,344.655,23.283,21.707,23.283 +1748,55.050,222.070,418.299,323.438,566.571,226.284,424.346,55.131,27.150,55.131,329.725,324.327,344.465,24.308,21.652,24.308 +1749,55.080,218.414,419.566,326.734,564.207,223.446,426.125,52.507,25.058,52.507,328.318,324.353,344.852,24.749,21.988,24.749 +1750,55.111,214.692,421.762,330.551,561.375,220.349,428.429,49.686,22.267,49.686,327.856,323.733,345.343,24.377,21.933,24.377 +1751,55.144,210.655,423.823,334.375,557.851,217.546,431.186,46.900,19.549,46.900,324.454,323.345,344.624,24.028,21.265,24.028 +1752,55.175,207.134,425.361,337.645,554.759,215.093,433.021,43.905,15.732,43.905,323.346,323.359,345.438,25.478,21.447,25.478 +1753,55.206,207.134,425.361,337.645,554.759,215.093,433.021,43.905,15.732,43.905,323.346,323.359,345.438,25.478,21.447,25.478 +1754,55.234,203.571,429.598,341.081,550.650,211.980,436.714,40.236,11.520,40.236,322.267,323.196,344.299,26.014,21.476,26.014 +1755,55.265,199.700,432.900,344.366,546.194,208.664,439.623,36.870,6.404,36.870,322.600,323.012,345.009,26.200,21.112,26.200 +1756,55.296,195.731,436.654,347.983,541.424,205.976,443.484,33.690,1.081,33.690,320.339,322.226,344.967,24.684,21.072,24.684 +1757,55.328,192.566,440.039,351.026,536.302,203.414,446.420,30.466,175.030,30.466,320.437,321.916,345.609,25.757,22.350,25.757 +1758,55.365,189.100,445.300,353.923,530.115,200.492,450.996,26.565,168.690,26.565,319.758,322.219,345.232,25.491,22.161,25.491 +1759,55.399,185.157,454.581,356.709,524.094,196.504,459.178,22.056,162.181,22.056,321.229,321.922,345.715,18.760,23.325,18.760 +1760,55.434,182.375,460.968,358.988,516.890,194.076,464.687,17.632,155.225,17.632,321.398,321.208,345.954,19.230,23.258,19.230 +1761,55.468,180.531,467.467,361.035,509.617,192.514,470.323,13.403,147.381,13.403,321.442,320.737,346.079,19.223,23.786,19.223 +1762,55.504,178.710,475.530,362.139,501.467,190.571,477.224,8.130,140.194,8.130,322.582,320.220,346.545,18.668,24.199,18.668 +1763,55.547,178.030,492.147,362.897,484.016,189.361,491.619,177.331,126.027,177.331,324.720,319.083,347.405,18.074,23.821,18.074 +1764,55.580,179.222,501.940,362.100,473.800,189.879,500.294,171.222,116.565,171.222,326.927,317.969,348.493,19.003,25.044,19.003 +1765,55.614,181.405,511.845,358.728,463.250,190.691,509.332,164.854,107.928,164.854,329.242,316.915,348.481,19.929,22.583,19.929 +1766,55.653,185.011,521.749,355.108,453.351,193.086,518.495,158.051,99.462,158.051,331.844,314.660,349.256,20.945,22.358,20.945 +1767,55.684,190.143,532.013,350.667,443.994,197.198,528.165,151.390,90.955,151.390,333.999,312.257,350.070,22.666,22.497,22.666 +1768,55.715,195.386,540.956,345.170,434.946,201.864,536.367,144.689,82.376,144.689,335.250,311.177,351.128,20.843,23.577,20.843 +1769,55.746,201.944,549.484,339.133,428.185,207.224,544.632,137.420,73.856,137.420,337.497,303.412,351.837,19.582,24.621,19.582 +1770,55.777,210.632,557.610,338.482,436.777,212.160,555.768,129.685,65.136,129.685,339.688,264.846,344.474,19.567,25.139,19.567 +1771,55.810,221.059,564.273,329.823,425.300,222.049,562.671,121.724,56.653,121.724,343.269,268.213,347.035,20.028,24.770,20.028 +1772,55.841,221.059,564.273,329.823,425.300,222.049,562.671,121.724,56.653,121.724,343.269,268.213,347.035,20.028,24.770,20.028 +1773,55.869,231.974,569.586,319.547,416.248,232.462,568.475,113.703,47.911,113.703,346.359,270.030,348.786,19.452,25.758,19.452 +1774,55.901,243.443,574.603,293.763,395.901,245.035,568.913,105.631,40.030,105.631,347.669,310.325,359.486,18.951,24.472,18.951 +1775,55.932,254.374,577.606,279.411,395.225,254.939,572.958,96.939,31.799,96.939,349.412,308.804,358.776,22.322,19.837,22.322 +1776,55.964,269.289,578.491,265.262,395.051,269.257,574.043,89.591,23.369,89.591,349.134,309.072,358.030,21.028,18.155,21.028 +1777,55.995,280.742,578.130,251.795,396.073,280.010,573.683,80.642,15.186,80.642,350.653,309.598,359.668,22.531,18.171,22.531 +1778,56.028,294.736,574.448,238.348,399.247,293.519,570.452,73.057,6.948,73.057,351.350,309.826,359.704,20.785,18.067,20.785 +1779,56.062,307.798,569.288,225.556,404.238,305.964,565.405,64.713,178.821,64.713,351.552,309.202,360.141,22.093,17.737,22.093 +1780,56.094,318.719,562.621,214.757,410.503,316.511,559.233,56.908,170.773,56.908,352.233,310.058,360.322,23.515,18.319,23.515 +1781,56.127,328.845,554.530,204.546,418.148,326.093,551.361,49.036,162.838,49.036,352.162,310.923,360.555,24.270,18.365,24.270 +1782,56.158,337.652,545.779,195.665,426.855,334.197,542.739,41.332,155.019,41.332,351.906,311.004,361.111,25.223,18.613,25.223 +1783,56.190,344.299,535.867,188.711,436.599,340.879,533.551,34.110,147.095,34.110,352.454,311.283,360.716,25.259,18.174,25.259 +1784,56.221,349.669,526.256,183.399,446.785,345.986,524.374,27.068,139.970,27.068,351.900,311.764,360.171,25.110,19.173,25.110 +1785,56.252,352.193,519.138,178.894,456.767,348.329,517.701,20.400,132.274,20.400,351.852,311.784,360.097,19.458,19.306,19.458 +1786,56.283,355.294,509.824,175.944,466.656,350.874,508.719,14.036,124.129,14.036,350.707,312.340,359.818,18.918,20.014,18.918 +1787,56.314,356.460,500.204,174.500,476.500,352.405,499.638,7.943,116.565,7.943,350.603,312.602,358.791,19.486,20.125,19.486 +1788,56.344,357.189,489.617,173.281,485.611,352.751,489.446,2.211,108.939,2.211,350.087,312.757,358.969,22.871,19.437,22.871 +1789,56.374,356.892,482.975,173.269,494.154,352.222,483.224,176.953,101.310,176.953,349.209,312.805,358.562,19.068,19.023,19.068 +1790,56.406,356.892,482.975,173.269,494.154,352.222,483.224,176.953,101.310,176.953,349.209,312.805,358.562,19.068,19.023,19.068 +1791,56.435,355.843,475.402,174.371,502.491,351.372,476.044,171.839,93.853,171.839,348.892,312.246,357.925,19.514,19.376,19.514 +1792,56.466,354.583,468.187,175.634,509.390,350.055,469.229,167.039,86.160,167.039,348.678,311.909,357.970,20.318,19.172,20.318 +1793,56.497,352.886,461.527,177.546,516.382,348.209,462.984,162.699,78.536,162.699,347.845,312.417,357.642,20.473,19.327,20.473 +1794,56.529,350.447,455.864,179.832,522.195,346.093,457.555,158.772,70.962,158.772,347.430,312.103,356.771,19.991,19.112,19.991 +1795,56.564,348.133,450.639,182.350,527.317,343.916,452.603,155.023,63.182,155.023,346.705,312.164,356.009,20.973,19.591,20.973 +1796,56.596,346.548,447.089,184.434,532.338,341.965,449.557,151.699,55.681,151.699,345.483,312.314,355.895,21.267,20.336,21.267 +1797,56.628,343.525,442.500,186.570,536.027,339.175,445.153,148.622,47.726,148.622,345.016,311.178,355.206,20.199,20.449,20.199 +1798,56.660,341.447,438.922,187.697,540.573,336.393,442.352,145.827,39.999,145.827,344.170,311.396,356.386,20.744,23.598,20.744 +1799,56.691,339.130,435.715,190.175,543.341,334.363,439.224,143.653,32.211,143.653,343.846,311.632,355.684,19.665,23.809,19.665 +1800,56.723,337.483,432.858,192.254,545.312,332.603,436.753,141.409,24.066,141.409,342.342,311.413,354.829,20.157,24.228,20.157 +1801,56.754,336.996,430.373,194.126,547.350,331.309,435.156,139.932,16.227,139.932,339.542,311.400,354.405,19.518,22.270,19.518 +1802,56.785,336.538,427.855,195.362,549.419,329.738,433.899,138.366,7.989,138.366,336.168,311.682,354.363,19.931,21.578,19.931 +1803,56.816,336.127,425.330,196.500,551.000,328.281,432.611,137.139,0.000,137.139,332.848,311.000,354.254,19.820,20.000,19.820 +1804,56.846,336.199,422.785,197.028,551.339,327.223,431.425,136.091,171.511,136.091,329.001,312.553,353.920,19.600,19.309,19.600 +1805,56.878,338.405,419.948,197.394,552.648,326.764,431.421,135.418,163.222,135.418,321.782,313.406,354.472,20.913,19.192,20.913 +1806,56.910,341.896,413.327,197.547,553.530,325.342,430.284,134.310,154.936,134.310,307.527,314.447,354.923,19.525,19.721,19.525 +1807,56.940,356.976,397.490,197.707,554.313,324.423,429.736,135.272,146.535,135.272,263.751,315.349,355.392,16.950,19.286,16.950 +1808,56.970,356.976,397.490,197.707,554.313,324.423,429.736,135.272,146.535,135.272,263.751,315.349,355.392,16.950,19.286,16.950 +1809,56.999,380.000,374.500,197.349,554.889,324.365,430.135,135.000,138.053,135.000,198.697,315.233,356.056,16.263,19.074,16.263 +1810,57.031,330.436,424.968,197.211,554.933,324.848,430.673,134.405,129.611,134.405,340.195,317.137,356.167,18.565,18.729,18.565 +1811,57.063,329.250,427.250,196.873,554.618,325.314,431.186,135.000,121.383,135.000,345.068,318.133,356.201,19.092,19.533,19.092 +1812,57.095,329.021,428.977,196.839,554.506,326.043,431.890,135.633,113.062,135.633,347.875,318.021,356.208,19.099,20.342,19.099 +1813,57.128,330.602,430.382,195.497,553.382,327.421,433.338,137.095,104.307,137.095,348.026,318.217,356.712,19.786,19.542,19.786 +1814,57.162,332.200,431.600,194.667,552.120,328.788,434.633,138.366,95.856,138.366,347.462,317.718,356.593,20.097,19.054,20.097 +1815,57.195,334.228,433.083,193.827,549.985,330.762,436.000,139.914,87.292,139.914,347.268,316.639,356.329,20.402,18.473,20.402 +1816,57.227,335.846,434.908,192.898,547.432,332.634,437.449,141.659,78.906,141.659,347.460,316.137,355.651,19.829,18.683,19.829 +1817,57.259,338.396,436.676,191.222,544.032,334.732,439.363,143.746,70.427,143.746,346.163,314.742,355.249,19.300,19.075,19.300 +1818,57.290,340.847,438.802,189.451,540.756,336.829,441.531,145.814,61.571,145.814,345.620,315.079,355.334,19.916,19.340,19.916 +1819,57.321,344.012,442.841,187.105,536.447,339.636,445.504,148.671,52.627,148.671,344.911,311.202,355.155,20.984,20.494,20.984 +1820,57.351,346.489,447.122,184.398,531.909,342.070,449.501,151.699,43.418,151.699,345.754,309.337,355.791,21.267,20.830,21.267 +1821,57.382,348.189,449.476,180.777,526.607,342.957,451.988,154.351,35.218,154.351,345.391,310.496,356.998,20.805,22.875,20.805 +1822,57.415,352.485,453.691,179.062,520.413,345.563,456.512,157.834,26.980,157.834,341.659,309.055,356.610,21.266,22.684,21.266 +1823,57.446,357.678,458.567,176.700,513.900,347.648,461.858,161.834,18.435,161.834,336.192,308.638,357.305,20.295,20.871,20.295 +1824,57.480,363.433,464.203,174.349,507.523,349.305,467.763,165.856,10.739,165.856,329.596,309.246,358.736,20.356,20.209,20.356 +1825,57.511,379.714,469.388,173.038,500.922,350.536,474.135,170.759,3.798,170.759,299.867,308.980,358.990,18.236,20.035,18.236 +1826,57.543,427.439,474.598,171.810,493.671,351.688,481.120,175.079,177.489,175.079,208.520,308.318,360.583,17.736,19.078,17.736 +1827,57.573,427.439,474.598,171.810,493.671,351.688,481.120,175.079,177.489,175.079,208.520,308.318,360.583,17.736,19.078,17.736 +1828,57.601,360.500,488.487,172.243,485.300,352.143,488.524,179.748,171.412,179.748,343.054,310.427,359.768,17.656,19.909,17.656 +1829,57.632,357.631,496.057,172.505,478.095,352.116,495.556,5.194,165.446,5.194,349.830,309.472,360.907,19.013,20.187,19.013 +1830,57.662,355.228,504.810,174.675,470.793,351.696,504.133,10.847,157.193,10.847,353.074,309.526,360.266,18.996,20.374,18.996 +1831,57.694,353.265,514.144,177.469,460.721,349.854,513.089,17.186,150.629,17.186,353.185,309.955,360.324,19.403,19.978,19.403 +1832,57.727,351.464,521.206,181.656,450.393,347.821,519.587,23.962,143.707,23.962,351.919,310.249,359.892,25.993,20.452,25.993 +1833,57.758,346.941,531.765,187.099,440.128,343.403,529.642,30.964,136.357,30.964,351.915,309.961,360.168,25.039,18.802,25.039 +1834,57.790,341.785,541.400,193.772,429.814,337.927,538.415,37.725,129.118,37.725,351.185,310.154,360.940,25.251,18.458,25.251 +1835,57.821,334.061,551.501,201.931,420.645,330.241,547.603,45.579,121.950,45.579,350.050,310.263,360.965,24.126,18.485,24.126 +1836,57.852,323.887,560.951,211.487,412.297,320.377,556.182,53.643,114.905,53.643,349.013,309.679,360.856,22.740,18.367,22.740 +1837,57.882,313.200,568.582,222.599,405.360,310.253,563.125,61.627,108.130,61.627,348.530,308.932,360.934,22.669,17.931,22.669 +1838,57.915,301.613,574.769,235.106,399.713,299.159,568.251,69.370,101.650,69.370,346.670,309.248,360.599,21.195,18.548,21.195 +1839,57.945,288.419,579.870,245.564,396.896,286.609,572.137,76.832,93.088,76.832,344.085,307.118,359.969,22.105,19.644,22.105 +1840,57.976,281.513,639.752,258.681,410.116,277.306,581.452,85.872,87.138,85.872,227.563,276.155,344.465,22.735,18.327,22.735 +1841,58.007,259.023,596.567,275.151,414.402,259.590,583.571,92.499,80.283,92.499,313.356,265.836,339.373,23.153,18.525,23.153 +1842,58.037,259.023,596.567,275.151,414.402,259.590,583.571,92.499,80.283,92.499,313.356,265.836,339.373,23.153,18.525,23.153 +1843,58.067,249.278,582.292,291.602,413.007,249.886,579.392,101.842,72.255,101.842,336.884,270.412,342.810,21.942,21.639,21.942 +1844,58.099,237.202,573.815,306.068,414.057,237.519,572.924,109.564,64.466,109.564,343.407,273.860,345.300,19.445,23.282,19.445 +1845,58.130,226.995,567.331,315.211,410.254,228.759,563.929,117.408,57.219,117.408,344.777,292.427,352.441,20.090,24.571,20.090 +1846,58.162,217.245,560.779,321.211,409.405,220.552,556.070,125.083,50.064,125.083,344.238,312.017,355.748,19.610,24.518,19.610 +1847,58.194,208.753,553.567,331.095,416.865,212.837,549.115,132.532,43.137,132.532,342.714,312.928,354.796,20.183,23.839,20.183 +1848,58.227,201.530,545.302,340.449,424.386,206.647,540.957,139.664,36.158,139.664,341.464,315.255,354.890,20.262,25.247,20.262 +1849,58.258,195.106,536.679,347.199,435.541,200.495,533.129,146.624,29.087,146.624,339.487,316.155,352.392,19.512,20.522,19.512 +1850,58.289,190.945,527.872,353.041,445.399,196.466,525.052,152.941,22.011,152.941,338.941,318.275,351.340,21.334,18.937,21.334 +1851,58.320,186.792,519.264,357.790,454.293,193.657,516.643,159.106,14.872,159.106,336.455,319.892,351.152,21.216,19.097,21.216 +1852,58.351,183.892,511.111,361.060,463.080,191.904,508.888,164.495,8.130,164.495,333.862,321.451,350.491,21.094,19.092,21.094 +1853,58.381,180.623,502.612,362.953,471.802,190.501,501.053,171.027,2.045,171.027,329.809,322.330,349.809,17.832,19.381,17.832 +1854,58.413,141.720,497.661,364.057,478.525,190.092,494.134,175.830,176.820,175.830,252.278,322.558,349.279,17.298,18.361,17.298 +1855,58.444,143.000,487.500,364.144,485.755,190.072,487.500,0.000,170.981,0.000,254.000,322.267,348.144,17.000,20.035,17.000 +1856,58.476,166.250,480.345,363.544,492.788,190.104,482.131,4.282,165.069,4.282,299.659,322.851,347.502,18.771,20.742,18.771 +1857,58.506,166.250,480.345,363.544,492.788,190.104,482.131,4.282,165.069,4.282,299.659,322.851,347.502,18.771,20.742,18.771 +1858,58.535,174.924,474.339,362.831,500.589,191.046,476.757,8.531,158.305,8.531,314.235,322.000,346.839,18.691,22.410,18.691 +1859,58.567,179.354,468.943,361.515,507.277,192.020,471.721,12.374,150.255,12.374,320.420,321.870,346.354,18.962,23.567,18.962 +1860,58.598,182.656,463.167,359.916,513.392,193.551,466.379,16.425,141.953,16.425,323.019,321.097,345.737,18.901,24.755,18.901 +1861,58.629,184.987,459.422,357.743,518.766,194.573,462.744,19.116,134.119,19.116,324.747,321.076,345.036,19.413,24.800,19.413 +1862,58.662,186.951,455.357,355.288,524.068,195.874,458.966,22.023,125.789,22.023,325.139,321.528,344.389,19.509,25.033,19.509 +1863,58.694,190.811,448.102,353.354,528.446,199.129,452.027,25.263,117.553,25.263,325.782,320.789,344.177,25.972,25.017,25.972 +1864,58.727,192.995,445.270,351.423,531.973,200.653,449.273,27.597,109.026,27.597,326.574,320.384,343.855,25.902,24.580,25.902 +1865,58.758,194.708,443.726,349.637,535.595,201.827,447.682,29.055,100.739,29.055,327.518,321.087,343.807,25.059,23.969,25.059 +1866,58.790,195.798,442.227,348.349,538.555,202.876,446.375,30.379,92.322,30.379,327.825,321.466,344.233,25.286,23.562,25.286 +1867,58.821,197.984,439.525,346.843,540.965,204.718,443.854,32.735,84.144,32.735,328.120,322.309,344.131,25.295,21.783,25.295 +1868,58.852,198.615,438.077,345.988,542.986,205.762,442.841,33.690,75.500,33.690,327.273,323.061,344.451,25.516,20.815,25.516 +1869,58.882,198.731,438.654,345.290,544.548,205.881,443.420,33.690,67.426,33.690,326.996,323.693,344.182,24.684,19.433,24.684 +1870,58.914,198.817,437.143,345.124,545.426,206.726,442.545,34.330,59.189,34.330,325.466,324.318,344.621,25.580,19.117,25.580 +1871,58.946,196.912,436.016,345.510,545.684,206.786,442.852,34.695,51.064,34.695,321.161,324.670,345.181,24.160,19.992,24.160 +1872,58.979,190.096,432.897,345.848,545.513,205.719,444.153,35.770,42.925,35.770,307.378,325.092,345.890,18.147,18.869,18.147 +1873,59.011,135.448,394.463,346.490,544.733,205.724,444.396,35.395,34.841,35.395,173.312,325.078,345.731,17.526,19.183,17.526 +1874,59.042,185.720,429.713,347.547,542.883,206.483,443.060,32.735,27.170,32.735,295.915,324.763,345.280,23.733,19.856,23.733 +1875,59.072,185.720,429.713,347.547,542.883,206.483,443.060,32.735,27.170,32.735,295.915,324.763,345.280,23.733,19.856,23.733 +1876,59.101,192.576,433.168,348.229,541.418,206.583,442.865,34.695,19.301,34.695,311.042,323.981,345.115,27.196,19.879,27.196 +1877,59.133,193.560,435.894,349.015,539.928,205.460,443.750,33.433,12.070,33.433,317.067,323.935,345.584,26.138,20.407,26.138 +1878,59.165,192.824,439.294,349.989,538.135,203.805,445.883,30.964,4.548,30.964,320.016,323.206,345.630,25.725,21.183,25.725 +1879,59.198,192.399,440.461,351.032,535.581,203.105,446.715,30.292,176.820,30.292,320.313,322.946,345.110,25.408,21.467,25.408 +1880,59.230,191.187,443.229,352.439,532.672,201.600,448.855,28.382,169.439,28.382,321.427,322.260,345.100,25.393,22.710,25.393 +1881,59.262,189.833,445.792,354.204,529.624,200.460,451.022,26.204,161.878,26.204,321.616,321.925,345.304,26.391,23.950,26.391 +1882,59.293,186.522,453.287,355.500,525.500,196.782,457.675,23.157,153.435,23.157,322.887,321.547,345.205,19.170,23.702,19.170 +1883,59.325,185.228,456.715,357.297,521.447,195.558,460.646,20.833,146.437,20.833,323.469,321.182,345.575,19.271,24.438,19.271 +1884,59.356,183.651,462.128,358.761,516.723,193.727,465.241,17.171,139.236,17.171,324.664,320.620,345.754,19.194,24.603,19.194 +1885,59.386,182.294,466.824,360.119,511.106,192.363,469.341,14.036,131.760,14.036,324.998,320.220,345.755,19.403,25.255,19.403 +1886,59.416,181.073,472.902,361.094,505.366,190.962,474.660,10.081,124.992,10.081,325.671,320.156,345.760,18.772,25.478,18.772 +1887,59.446,180.278,479.156,362.164,498.324,190.030,480.162,5.891,117.646,5.891,326.568,318.984,346.177,18.521,25.394,18.521 +1888,59.478,179.499,486.023,362.652,491.002,189.308,486.254,1.348,110.283,1.348,327.192,318.592,346.814,18.536,25.448,18.536 +1889,59.509,180.079,493.359,362.315,483.100,189.058,492.836,176.666,103.349,176.666,329.073,318.198,347.061,18.444,25.001,18.444 +1890,59.539,180.079,493.359,362.315,483.100,189.058,492.836,176.666,103.349,176.666,329.073,318.198,347.061,18.444,25.001,18.444 +1891,59.568,181.135,501.389,361.729,474.369,189.625,500.102,171.384,96.520,171.384,330.860,316.852,348.034,19.025,25.207,19.025 +1892,59.599,182.754,509.976,360.000,466.000,190.741,507.952,165.784,90.000,165.784,332.277,316.000,348.756,20.098,24.000,20.098 +1893,59.629,185.524,518.291,356.738,456.535,192.373,515.780,159.864,82.405,159.864,334.835,316.334,349.426,19.873,23.789,19.873 +1894,59.662,189.434,527.398,353.136,447.202,195.870,524.231,153.800,75.324,153.800,335.888,315.824,350.234,21.121,24.161,21.121 +1895,59.694,194.679,536.461,351.431,446.328,199.494,533.430,147.804,68.199,147.804,338.587,296.927,349.966,22.127,24.697,22.127 +1896,59.727,199.561,543.451,346.938,438.258,203.686,540.151,141.340,61.066,141.340,340.459,293.137,351.025,19.522,25.375,19.522 +1897,59.758,206.864,551.378,339.424,426.987,210.641,547.519,134.384,54.583,134.384,341.642,296.897,352.440,19.676,24.358,19.676 +1898,59.790,215.060,558.920,330.047,418.129,217.918,555.110,126.870,47.054,126.870,344.200,297.352,353.725,19.600,25.242,19.600 +1899,59.821,224.346,565.607,314.931,404.824,227.296,560.381,119.454,40.498,119.454,345.085,312.720,357.087,19.597,24.345,19.597 +1900,59.852,234.588,571.232,302.462,400.814,236.509,566.416,111.747,33.476,111.747,346.138,312.309,356.506,19.282,20.194,19.282 +1901,59.882,245.529,575.383,289.663,397.703,246.632,570.931,103.912,26.188,103.912,347.809,312.175,356.984,19.395,18.329,19.395 +1902,59.913,255.937,577.747,276.927,395.209,256.403,573.149,95.782,19.213,95.782,348.962,311.849,358.204,22.493,17.956,22.493 +1903,59.944,268.880,578.503,264.222,394.805,268.765,574.000,88.539,12.025,88.539,349.499,311.433,358.507,19.687,17.883,19.687 +1904,59.976,282.541,577.810,250.953,396.059,281.786,573.391,80.311,4.792,80.311,351.018,311.339,359.984,22.528,17.669,22.528 +1905,60.006,282.541,577.810,250.953,396.059,281.786,573.391,80.311,4.792,80.311,351.018,311.339,359.984,22.528,17.669,22.528 +1906,60.034,296.003,574.435,237.976,399.473,294.667,570.227,72.387,177.427,72.387,350.977,310.496,359.807,20.742,17.331,20.742 +1907,60.066,309.205,568.972,225.119,404.682,307.175,564.826,63.914,170.092,63.914,350.592,311.072,359.825,22.079,17.878,22.079 +1908,60.098,320.254,561.761,214.029,411.702,318.025,558.472,55.870,162.719,55.870,351.733,310.923,359.680,23.562,17.400,23.562 +1909,60.130,330.402,553.732,203.535,419.143,327.375,550.371,47.983,154.916,47.983,351.729,311.365,360.775,24.416,18.480,24.416 +1910,60.162,339.003,544.500,194.793,428.175,335.400,541.449,40.252,147.458,40.252,351.568,311.773,361.010,25.134,17.928,25.134 +1911,60.194,345.466,534.398,187.968,438.462,341.870,532.080,32.804,140.231,32.804,351.601,311.770,360.157,25.180,18.264,25.180 +1912,60.227,350.783,524.264,182.584,448.945,347.011,522.445,25.738,133.025,25.738,351.686,312.209,360.062,25.668,18.715,25.668 +1913,60.258,353.214,516.959,178.644,459.171,349.323,515.625,18.925,125.455,18.925,351.297,312.251,359.525,19.568,19.735,19.568 +1914,60.289,355.479,507.318,175.529,469.296,351.318,506.403,12.391,117.489,12.391,350.793,312.194,359.314,19.061,19.574,19.061 +1915,60.320,357.367,495.628,174.145,479.087,352.889,495.140,6.218,109.634,6.218,349.852,312.457,358.862,23.170,19.463,23.170 +1916,60.350,357.506,488.728,173.448,488.507,352.728,488.692,0.428,101.703,0.428,348.998,312.215,358.553,18.238,18.962,18.238 +1917,60.380,356.850,479.860,173.891,497.592,352.083,480.296,174.768,93.783,174.768,348.480,311.840,358.054,19.545,18.662,19.545 +1918,60.411,355.690,471.799,175.023,505.814,350.966,472.659,169.676,85.778,169.676,348.470,311.294,358.073,19.764,18.748,19.764 +1919,60.443,353.583,463.977,177.028,513.129,349.056,465.217,164.687,77.800,164.687,347.759,311.505,357.147,21.828,18.967,21.828 +1920,60.473,353.583,463.977,177.028,513.129,349.056,465.217,164.687,77.800,164.687,347.759,311.505,357.147,21.828,18.967,21.828 +1921,60.501,351.622,457.944,179.115,519.665,346.976,459.606,160.317,69.727,160.317,346.696,311.679,356.564,20.309,18.668,20.309 +1922,60.532,349.167,451.754,181.742,525.869,344.587,453.797,155.969,61.540,155.969,346.129,311.892,356.160,21.204,18.668,21.204 +1923,60.564,346.917,447.799,184.000,531.509,342.269,450.226,152.425,53.301,152.425,345.345,312.011,355.833,20.328,20.508,20.328 +1924,60.595,343.581,442.938,186.331,535.682,339.362,445.492,148.815,45.159,148.815,345.374,311.141,355.238,20.037,20.144,20.037 +1925,60.627,341.137,438.634,187.931,541.437,336.063,442.094,145.713,37.451,145.713,344.424,310.879,356.707,19.529,24.087,19.529 +1926,60.659,338.360,434.955,190.987,544.780,333.538,438.608,142.853,29.859,142.853,343.378,310.589,355.477,19.106,24.203,19.106 +1927,60.689,336.164,431.697,193.847,547.145,331.608,435.494,140.194,22.080,140.194,342.755,311.060,354.617,19.462,23.813,19.462 +1928,60.719,334.691,428.424,195.930,550.293,329.163,433.420,137.891,14.142,137.891,339.521,310.935,354.422,19.874,23.189,19.874 +1929,60.750,333.079,425.139,197.910,552.372,326.893,431.151,135.815,6.450,135.815,336.710,311.762,353.962,19.556,21.135,19.556 +1930,60.780,331.461,422.340,199.968,554.772,324.612,429.439,133.977,179.506,133.977,333.752,312.014,353.481,19.240,20.353,19.240 +1931,60.812,330.739,419.950,201.498,556.152,323.386,428.022,132.330,172.569,132.330,331.767,312.570,353.606,20.305,20.091,20.305 +1932,60.843,329.852,416.465,202.873,557.553,321.286,426.375,130.840,165.774,130.840,327.156,313.354,353.355,19.183,19.796,19.183 +1933,60.874,329.852,416.465,202.873,557.553,321.286,426.375,130.840,165.774,130.840,327.156,313.354,353.355,19.183,19.796,19.183 +1934,60.901,329.489,413.882,204.088,559.241,319.862,425.536,129.560,160.017,129.560,323.402,313.891,353.633,19.710,19.308,19.710 +1935,60.933,329.835,410.532,205.187,560.739,318.546,424.809,128.333,154.573,128.333,317.469,314.498,353.870,19.848,19.676,19.848 +1936,60.964,330.063,406.314,206.486,561.976,316.957,423.660,127.073,149.895,127.073,310.424,314.974,353.905,19.557,19.497,19.557 +1937,60.997,330.280,402.960,207.529,563.042,315.245,423.007,126.870,145.848,126.870,303.200,315.386,353.317,17.200,19.295,17.200 +1938,61.028,330.414,399.749,208.732,564.307,314.202,422.121,125.929,142.866,125.929,298.786,316.010,354.043,17.134,19.659,17.134 +1939,61.062,331.201,395.745,209.664,565.199,313.033,421.644,125.049,140.563,125.049,290.501,316.265,353.772,17.265,19.468,17.265 +1940,61.092,330.719,393.834,210.965,566.031,312.077,421.080,124.380,138.814,124.380,287.424,316.364,353.451,16.897,19.379,16.897 +1941,61.124,329.231,393.654,211.749,566.581,311.289,420.567,123.690,138.612,123.690,288.721,316.436,353.412,17.196,19.492,17.196 +1942,61.154,326.764,394.785,212.635,567.155,310.411,420.106,122.856,138.888,122.856,292.859,316.836,353.145,17.151,19.644,17.151 +1943,61.185,324.207,396.577,213.876,567.944,309.670,419.618,122.250,139.743,122.250,298.633,316.628,353.120,17.237,19.423,17.237 +1944,61.216,321.338,398.726,214.585,568.239,308.932,419.117,121.316,141.618,121.316,305.133,316.722,352.869,17.630,19.372,17.630 +1945,61.247,318.740,401.395,215.248,568.351,308.557,418.806,120.324,144.752,120.324,312.051,316.409,352.391,19.332,19.850,19.332 +1946,61.279,316.970,403.795,216.225,568.858,308.343,418.718,120.033,147.848,120.033,317.698,315.771,352.173,19.790,19.352,19.790 +1947,61.310,315.177,405.315,216.908,568.879,307.899,418.051,119.745,152.152,119.745,322.862,315.724,352.199,19.225,19.652,19.225 +1948,61.340,313.924,406.723,217.612,569.095,307.615,417.856,119.539,156.801,119.539,326.316,314.873,351.908,19.430,19.827,19.430 +1949,61.370,313.924,406.723,217.612,569.095,307.615,417.856,119.539,156.801,119.539,326.316,314.873,351.908,19.430,19.827,19.430 +1950,61.399,312.773,407.833,218.461,569.880,307.210,417.769,119.249,161.834,119.249,329.388,314.680,352.163,19.195,21.497,19.195 +1951,61.432,312.218,409.025,218.874,569.952,307.228,417.920,119.291,167.005,119.291,331.244,314.728,351.643,19.166,22.186,19.166 +1952,61.465,311.763,409.545,219.146,570.169,307.101,417.880,119.219,172.875,119.219,332.595,314.056,351.694,19.171,22.698,19.171 +1953,61.498,311.487,410.754,218.988,569.816,307.521,417.771,119.476,178.995,119.476,335.734,314.074,351.856,19.455,22.225,19.455 +1954,61.530,311.875,411.153,218.842,569.881,307.927,418.019,119.899,4.814,119.899,336.273,313.753,352.113,19.007,23.307,19.007 +1955,61.563,312.220,412.095,218.042,569.277,308.509,418.425,120.379,10.649,120.379,337.107,314.337,351.782,19.277,24.049,19.277 +1956,61.596,312.988,413.314,217.094,568.698,309.558,418.963,121.264,17.393,121.264,338.740,314.382,351.957,18.988,25.811,18.988 +1957,61.629,313.803,414.315,215.969,567.571,310.637,419.381,122.005,23.305,122.005,339.729,314.747,351.678,19.292,26.507,19.292 +1958,61.661,314.870,415.265,214.029,567.209,311.661,420.200,123.033,29.604,123.033,341.163,315.277,352.936,19.162,24.957,19.162 +1959,61.692,317.085,416.905,212.000,566.500,313.636,421.883,124.719,35.838,124.719,341.398,315.850,353.510,19.151,24.771,19.151 +1960,61.722,319.369,418.535,210.102,565.555,315.886,423.261,126.384,41.966,126.384,342.869,315.007,354.611,19.448,24.582,19.448 +1961,61.753,320.704,419.882,209.325,562.336,317.837,423.579,127.794,48.691,127.794,342.939,315.694,352.294,19.449,19.803,19.449 +1962,61.784,323.162,421.805,206.929,560.661,320.209,425.363,129.685,55.235,129.685,343.667,315.590,352.915,19.812,20.392,19.812 +1963,61.815,326.034,424.126,204.474,558.712,322.968,427.517,132.114,61.858,132.114,344.429,316.766,353.570,19.542,20.999,19.542 +1964,61.846,328.473,426.985,200.634,556.447,325.301,430.196,134.653,68.308,134.653,345.833,316.975,354.859,19.387,19.770,19.387 +1965,61.878,331.458,429.871,197.147,553.020,328.046,433.022,137.272,74.962,137.272,345.868,316.537,355.155,19.968,19.358,19.968 +1966,61.909,334.482,432.978,193.717,549.392,330.912,435.958,140.143,81.448,140.143,346.728,316.658,356.029,19.473,19.205,19.473 +1967,61.940,336.940,436.420,190.197,545.461,333.372,439.096,143.130,88.140,143.130,347.800,315.418,356.719,19.400,18.808,19.400 +1968,61.970,336.940,436.420,190.197,545.461,333.372,439.096,143.130,88.140,143.130,347.800,315.418,356.719,19.400,18.808,19.400 +1969,61.999,340.154,441.231,186.669,540.474,336.699,443.534,146.310,94.461,146.310,348.906,316.224,357.211,21.633,18.730,21.633 +1970,62.029,343.664,445.907,183.376,534.572,339.947,448.011,150.489,100.823,150.489,349.252,315.983,357.794,20.361,18.720,20.361 +1971,62.062,346.165,450.236,180.123,528.503,342.244,452.130,154.224,107.227,154.224,349.694,315.402,358.403,20.773,18.658,20.773 +1972,62.094,348.587,456.681,177.323,521.486,345.167,458.027,158.519,113.582,158.519,351.495,314.989,358.847,20.868,18.570,20.868 +1973,62.127,351.629,463.072,174.731,513.846,347.616,464.266,163.436,119.745,163.436,351.317,314.304,359.691,20.620,18.233,20.620 +1974,62.158,354.019,470.596,172.989,505.265,349.758,471.448,168.690,126.027,168.690,351.244,313.643,359.936,19.612,18.674,19.612 +1975,62.189,355.405,479.045,171.966,496.334,351.259,479.455,174.343,132.299,174.343,351.835,312.521,360.167,18.720,18.524,18.720 +1976,62.220,356.000,488.000,172.038,486.855,352.019,488.000,0.000,138.366,0.000,352.000,312.168,359.962,18.000,17.772,18.000 +1977,62.250,356.332,497.418,172.987,477.085,352.057,496.957,6.155,144.494,6.155,351.735,311.193,360.336,19.183,18.195,19.183 +1978,62.279,354.497,507.279,175.045,466.643,350.877,506.468,12.626,149.697,12.626,353.153,310.242,360.572,19.095,21.225,19.095 +1979,62.311,352.306,517.631,178.635,456.627,348.764,516.383,19.409,155.736,19.409,353.127,309.689,360.637,19.284,19.628,19.284 +1980,62.341,348.969,526.650,183.701,446.457,345.732,524.955,27.646,160.844,27.646,352.603,308.934,359.912,25.478,18.445,25.478 +1981,62.371,348.969,526.650,183.701,446.457,345.732,524.955,27.646,160.844,27.646,352.603,308.934,359.912,25.478,18.445,25.478 +1982,62.399,344.052,535.723,189.624,435.146,340.840,533.561,33.951,166.741,33.951,353.053,308.287,360.798,25.271,16.737,25.271 +1983,62.432,335.682,547.187,197.296,425.665,332.896,544.604,42.839,172.211,42.839,353.009,308.191,360.605,24.811,16.764,24.811 +1984,62.463,327.001,556.311,206.654,416.602,324.427,553.170,50.659,177.549,50.659,352.439,307.403,360.560,23.924,17.346,23.924 +1985,62.497,316.315,564.586,217.395,409.098,314.175,561.050,58.815,2.872,58.815,351.948,307.717,360.215,23.121,17.386,23.121 +1986,62.531,305.044,570.890,229.238,403.372,303.389,567.058,66.644,7.962,66.644,350.992,307.420,359.340,21.658,17.667,21.658 +1987,62.565,290.431,575.698,242.190,398.402,289.354,571.767,74.690,13.392,74.690,351.180,307.499,359.331,22.011,17.742,22.011 +1988,62.596,275.801,578.714,255.822,395.548,275.268,574.416,82.928,18.699,82.928,351.139,307.408,359.803,24.194,17.910,24.194 +1989,62.628,262.096,578.563,269.500,395.000,262.206,574.036,91.397,23.749,91.397,349.262,308.534,358.320,24.164,18.050,24.164 +1990,62.660,249.394,576.653,284.656,395.614,250.365,571.603,100.886,29.211,100.886,348.310,308.868,358.595,21.566,19.352,21.566 +1991,62.690,237.050,572.123,299.217,399.179,238.851,567.231,110.215,34.114,110.215,346.693,309.508,357.119,19.499,20.404,19.499 +1992,62.722,225.193,566.091,313.178,403.280,228.227,560.597,118.906,39.036,118.906,345.007,311.080,357.561,19.937,24.562,19.937 +1993,62.753,214.462,558.503,324.504,411.419,218.049,553.820,127.457,43.568,127.457,343.766,312.762,355.564,19.551,24.052,19.551 +1994,62.784,205.154,549.684,334.856,420.523,209.523,545.423,135.718,48.200,135.718,341.656,313.826,353.862,19.517,24.995,19.517 +1995,62.816,198.590,541.168,343.722,430.337,203.491,537.573,143.746,53.616,143.746,340.841,315.370,352.997,22.579,24.067,22.579 +1996,62.846,192.473,530.371,350.719,441.551,197.578,527.598,151.487,57.995,151.487,339.665,315.667,351.284,21.293,24.380,21.293 +1997,62.879,187.346,519.662,356.327,453.075,193.357,517.309,158.620,62.808,158.620,337.434,316.254,350.343,20.728,24.538,20.728 +1998,62.910,184.673,509.670,359.985,464.506,191.061,508.018,165.506,67.521,165.506,335.680,317.384,348.876,20.048,24.566,20.048 +1999,62.941,182.869,499.521,362.024,475.992,189.530,498.630,172.381,72.474,172.381,334.505,318.095,347.945,19.293,24.542,19.293 +2000,62.971,182.869,499.521,362.024,475.992,189.530,498.630,172.381,72.474,172.381,334.505,318.095,347.945,19.293,24.542,19.293 +2001,63.000,181.984,488.857,362.549,486.644,189.260,488.785,179.433,77.074,179.433,332.053,318.410,346.605,18.009,23.951,18.009 +2002,63.030,182.603,480.353,362.170,496.690,189.936,481.009,5.117,81.870,5.117,331.167,319.047,345.892,18.999,24.183,18.999 +2003,63.063,183.700,471.973,360.927,506.354,191.218,473.437,11.020,86.547,11.020,330.425,319.565,345.743,18.815,24.266,18.815 +2004,63.096,185.702,463.661,358.781,515.516,193.333,465.950,16.699,91.193,16.699,329.492,319.306,345.426,18.869,24.495,18.869 +2005,63.129,188.938,454.664,355.842,523.588,196.582,457.531,20.556,95.964,20.556,328.300,320.806,344.627,26.100,24.479,26.100 +2006,63.161,191.758,448.241,352.358,530.755,199.355,451.846,25.388,100.620,25.388,327.300,321.031,344.118,25.786,24.449,25.786 +2007,63.193,194.801,442.518,348.691,537.274,202.200,446.793,30.018,105.593,30.018,327.124,321.013,344.214,24.725,24.326,24.725 +2008,63.223,198.942,437.228,344.796,543.110,206.091,442.111,34.330,110.410,34.330,325.688,321.271,343.004,25.580,24.411,25.580 +2009,63.255,201.615,432.923,340.913,548.482,208.801,438.512,37.875,115.463,37.875,325.388,322.106,343.596,25.610,24.764,25.610 +2010,63.286,206.366,427.831,336.837,552.611,213.015,433.931,42.534,120.411,42.534,324.900,321.550,342.946,24.878,24.298,24.878 +2011,63.316,209.764,424.810,332.988,556.703,216.107,431.280,45.567,125.407,45.567,324.651,321.310,342.773,24.292,24.776,24.292 +2012,63.348,211.978,422.285,329.141,560.120,218.102,429.138,48.215,130.409,48.215,324.932,320.851,343.312,23.575,24.777,23.575 +2013,63.380,216.564,418.816,325.470,562.987,222.225,426.043,51.927,135.498,51.927,324.587,320.387,342.946,23.945,24.865,23.945 +2014,63.412,219.417,416.701,322.092,565.613,224.761,424.153,54.360,140.659,54.360,325.017,320.768,343.356,23.568,25.104,23.568 +2015,63.443,222.642,414.610,318.619,567.911,227.608,422.261,57.011,145.771,57.011,325.196,320.649,343.441,23.162,24.919,23.162 +2016,63.473,222.642,414.610,318.619,567.911,227.608,422.261,57.011,145.771,57.011,325.196,320.649,343.441,23.162,24.919,23.162 +2017,63.502,225.498,412.728,315.442,569.894,230.111,420.535,59.421,151.113,59.421,325.861,320.431,343.996,22.893,24.818,22.893 +2018,63.533,228.466,411.213,312.510,571.815,232.796,419.274,61.763,156.435,61.763,325.903,320.139,344.204,23.526,25.129,23.526 +2019,63.564,230.429,410.284,309.781,573.401,234.466,418.411,63.587,161.975,63.587,326.477,320.023,344.627,21.358,25.335,21.358 +2020,63.596,233.562,409.700,307.071,574.800,237.013,417.270,65.493,167.425,65.493,328.156,320.191,344.796,22.065,25.091,22.065 +2021,63.628,235.805,408.617,304.346,575.839,238.985,416.290,67.493,173.054,67.493,328.220,319.727,344.832,22.361,24.786,22.361 +2022,63.660,238.160,408.515,302.112,576.960,241.008,415.921,68.962,178.568,68.962,328.609,320.225,344.479,21.754,24.217,21.754 +2023,63.690,239.958,407.550,300.383,578.063,242.623,415.021,70.372,4.282,70.372,330.077,320.424,345.941,21.367,24.312,21.367 +2024,63.720,242.011,407.489,298.083,579.038,244.308,414.431,71.692,10.217,71.692,331.710,321.100,346.334,20.851,24.993,20.851 +2025,63.752,243.373,407.764,296.091,580.178,245.417,414.435,72.967,15.838,72.967,332.680,321.143,346.634,19.764,24.979,19.764 +2026,63.782,245.483,407.355,294.086,580.535,247.244,413.569,74.174,21.801,74.174,333.907,322.181,346.823,20.446,24.326,20.446 +2027,63.813,247.132,407.753,291.820,580.837,248.542,413.121,75.285,28.072,75.285,335.316,323.529,346.416,20.253,25.059,20.253 +2028,63.844,248.693,407.544,290.510,581.730,250.025,413.042,76.373,33.860,76.373,335.642,323.405,346.955,20.291,23.744,20.291 +2029,63.875,248.693,407.544,290.510,581.730,250.025,413.042,76.373,33.860,76.373,335.642,323.405,346.955,20.291,23.744,20.291 +2030,63.903,249.917,407.424,288.760,582.688,251.155,412.895,77.242,39.726,77.242,336.594,323.166,347.811,19.966,23.485,19.966 +2031,63.933,250.979,407.130,287.820,582.718,252.164,412.806,78.212,45.843,78.212,335.630,323.186,347.226,19.706,21.325,19.706 +2032,63.964,252.040,406.571,286.237,583.224,253.185,412.503,79.077,51.546,79.077,335.701,323.287,347.782,19.534,19.440,19.534 +2033,63.996,253.002,406.036,284.618,583.852,254.119,412.281,79.859,57.812,79.859,335.833,323.731,348.521,19.375,20.088,19.375 +2034,64.028,254.023,406.075,282.807,584.351,255.096,412.561,80.605,64.134,80.605,334.871,323.415,348.019,19.214,20.559,19.214 +2035,64.061,254.743,404.078,280.894,585.497,256.051,412.579,81.254,70.155,81.254,332.169,325.510,349.370,19.083,21.599,19.083 +2036,64.092,254.803,400.778,278.764,585.685,256.531,412.320,81.483,75.872,81.483,326.150,325.243,349.492,18.556,20.200,18.556 +2037,64.123,246.528,332.463,278.606,585.485,257.142,412.064,82.405,82.167,82.405,188.862,324.410,349.473,17.842,20.631,17.842 +2038,64.154,248.735,337.174,276.991,585.500,257.663,412.171,83.211,88.703,83.211,197.747,323.415,348.798,17.685,21.153,17.685 +2039,64.185,254.750,377.250,276.052,585.665,258.592,411.825,83.660,94.584,83.660,279.833,324.045,349.409,18.000,21.450,18.000 +2040,64.216,256.855,387.159,273.529,585.150,259.317,411.366,84.193,100.081,84.193,299.995,323.702,348.659,18.127,20.391,18.127 +2041,64.246,258.222,391.700,272.452,585.049,260.050,411.308,84.674,106.239,84.674,308.898,323.760,348.285,18.133,19.873,18.133 +2042,64.277,259.236,395.136,271.512,583.971,260.572,410.700,85.091,112.479,85.091,315.898,321.685,347.141,18.087,20.042,18.087 +2043,64.307,259.236,395.136,271.512,583.971,260.572,410.700,85.091,112.479,85.091,315.898,321.685,347.141,18.087,20.042,18.087 +2044,64.336,260.605,395.730,270.514,583.238,261.668,409.901,85.711,118.334,85.711,318.605,321.236,347.027,18.997,20.184,18.997 +2045,64.366,261.397,397.702,270.060,583.008,262.215,409.789,86.129,124.548,86.129,322.481,320.710,346.708,18.837,20.092,18.837 +2046,64.399,262.025,398.288,269.719,582.966,262.718,409.811,86.558,130.452,86.558,323.438,319.863,346.525,18.808,21.907,18.808 +2047,64.432,262.800,399.303,269.698,583.131,263.350,409.936,87.039,137.309,87.039,325.289,319.301,346.583,18.647,22.039,18.647 +2048,64.465,263.473,400.371,269.106,582.641,263.881,409.763,87.510,143.059,87.510,327.082,319.002,345.884,18.635,22.032,18.635 +2049,64.498,264.104,400.407,269.076,583.118,264.447,410.027,87.955,148.962,87.955,327.042,318.306,346.293,18.524,24.059,18.524 +2050,64.530,264.789,400.909,268.726,583.121,265.042,410.028,88.409,154.938,88.409,328.012,318.012,346.258,18.354,25.260,18.354 +2051,64.563,265.249,400.473,267.986,583.281,265.449,409.631,88.755,160.475,88.755,329.009,317.962,347.330,18.300,24.652,18.300 +2052,64.595,265.742,400.957,267.757,583.089,265.876,409.537,89.105,166.225,89.105,329.960,317.714,347.121,18.232,25.196,18.232 +2053,64.627,267.000,401.000,267.110,583.265,267.000,409.633,90.000,171.817,90.000,330.000,317.493,347.265,18.000,25.464,18.000 +2054,64.658,267.000,401.000,266.625,583.218,267.000,409.609,90.000,177.363,90.000,330.000,317.723,347.218,18.000,25.572,18.000 +2055,64.688,267.684,401.495,266.407,583.486,267.630,409.726,90.377,2.672,90.377,331.065,317.634,347.528,18.164,25.506,18.164 +2056,64.718,268.439,401.961,265.593,583.829,268.317,409.876,90.881,7.888,90.881,332.115,318.195,347.948,18.321,25.647,18.321 +2057,64.749,269.189,402.430,264.902,583.921,269.002,409.899,91.432,13.103,91.432,333.196,318.478,348.140,18.194,25.751,18.194 +2058,64.781,269.972,403.349,264.050,583.850,269.755,409.849,91.909,18.435,91.909,335.181,318.758,348.188,18.090,26.247,18.090 +2059,64.814,270.772,403.797,263.089,583.954,270.510,409.889,92.463,23.305,92.463,336.248,319.735,348.445,18.026,26.154,18.026 +2060,64.848,271.757,404.296,262.136,584.180,271.445,410.001,93.122,28.179,93.122,337.426,319.946,348.854,18.028,25.815,18.028 +2061,64.881,272.628,404.681,261.021,584.747,272.233,410.691,93.752,32.669,93.752,336.785,319.892,348.832,18.027,24.843,18.027 +2062,64.913,273.559,404.735,259.779,584.791,273.125,410.375,94.399,37.271,94.399,338.538,320.598,349.851,17.947,24.459,17.947 +2063,64.944,274.565,405.019,258.368,585.087,274.052,410.810,95.057,41.706,95.057,338.333,320.887,349.961,18.018,24.444,18.018 +2064,64.974,274.565,405.019,258.368,585.087,274.052,410.810,95.057,41.706,95.057,338.333,320.887,349.961,18.018,24.444,18.018 +2065,65.002,275.576,404.999,257.184,585.270,274.974,410.920,95.807,46.019,95.807,338.610,320.508,350.512,18.043,23.952,18.043 +2066,65.033,276.770,404.956,255.672,585.107,276.092,410.853,96.560,50.194,96.560,339.021,321.117,350.892,18.160,23.431,18.160 +2067,65.066,277.981,405.543,255.270,583.806,277.362,410.302,97.402,54.227,97.402,340.208,321.302,349.807,18.639,20.208,18.639 +2068,65.099,279.407,405.824,253.465,583.896,278.697,410.648,98.371,57.933,98.371,340.398,321.500,350.150,18.827,20.195,18.827 +2069,65.132,281.845,406.197,251.456,583.749,281.004,411.077,99.782,61.157,99.782,340.459,321.308,350.363,19.199,20.058,19.199 +2070,65.165,282.661,406.493,249.047,583.707,281.732,411.422,100.676,64.058,100.676,340.687,321.634,350.717,19.170,20.804,19.170 +2071,65.198,285.288,406.966,246.502,583.146,284.240,411.741,102.381,66.894,102.381,341.241,321.579,351.019,18.987,21.020,18.987 +2072,65.231,287.220,407.200,243.877,582.671,285.993,412.227,103.707,69.444,103.707,340.790,321.395,351.140,18.956,21.067,18.956 +2073,65.265,289.846,407.977,241.241,582.064,288.517,412.723,105.642,71.147,105.642,341.775,321.574,351.632,18.874,21.327,18.874 +2074,65.299,292.576,408.761,238.588,581.026,291.185,413.163,107.526,73.374,107.526,342.587,321.833,351.820,18.821,20.448,18.821 +2075,65.331,294.992,409.251,234.799,580.634,293.304,414.085,109.250,74.258,109.250,342.810,322.816,353.050,18.942,21.233,18.942 +2076,65.364,298.522,410.313,231.602,579.372,296.610,415.110,111.732,75.118,111.732,342.987,322.595,353.315,18.962,20.938,18.962 +2077,65.396,301.634,411.448,228.235,577.441,299.716,415.764,113.962,75.964,113.962,344.101,322.087,353.547,19.190,20.130,19.190 +2078,65.429,305.100,412.800,223.603,575.228,302.915,417.171,116.565,75.905,116.565,343.907,320.876,353.680,18.783,20.951,18.783 +2079,65.462,309.272,414.735,220.088,572.355,307.037,418.673,119.578,76.149,119.578,344.090,319.911,353.146,18.781,20.855,18.781 +2080,65.493,313.351,416.763,215.408,569.774,310.868,420.634,122.669,76.028,122.669,344.953,319.420,354.150,18.777,19.817,18.777 +2081,65.524,317.437,419.510,210.937,566.516,314.878,423.054,125.838,75.819,125.838,345.575,318.693,354.317,19.501,20.016,19.501 +2082,65.555,321.538,421.810,206.558,562.725,318.546,425.486,129.144,75.426,129.144,344.782,317.968,354.263,19.173,19.724,19.173 +2083,65.585,326.794,425.807,201.781,558.424,323.546,429.266,133.191,74.899,133.191,345.521,317.501,355.012,19.849,19.861,19.849 +2084,65.615,331.341,429.790,197.322,553.269,327.927,432.960,137.121,74.300,137.121,345.826,316.622,355.143,19.733,19.727,19.733 +2085,65.646,335.729,434.533,192.998,547.762,332.242,437.314,141.435,73.540,141.435,346.540,315.800,355.459,19.812,19.442,19.812 +2086,65.677,340.459,439.439,188.777,541.300,336.418,442.173,145.923,72.920,145.923,345.906,314.820,355.663,19.660,19.390,19.660 +2087,65.706,340.459,439.439,188.777,541.300,336.418,442.173,145.923,72.920,145.923,345.906,314.820,355.663,19.660,19.390,19.660 +2088,65.735,345.028,446.050,184.944,534.050,340.981,448.322,150.684,72.110,150.684,346.775,313.756,356.057,21.161,19.203,21.161 +2089,65.767,347.943,451.216,181.700,526.100,343.903,453.084,155.177,71.565,155.177,346.838,313.065,355.741,20.591,18.974,20.591 +2090,65.799,351.835,458.594,178.304,517.367,347.322,460.169,160.763,70.656,160.763,347.290,312.183,356.851,20.398,18.881,20.398 +2091,65.831,354.809,467.286,175.779,508.098,349.965,468.448,166.504,69.638,166.504,347.298,311.091,357.260,20.226,19.002,20.226 +2092,65.863,357.219,476.735,174.372,497.666,352.071,477.385,172.804,69.044,172.804,347.303,310.517,357.680,19.341,19.094,19.341 +2093,65.895,358.525,487.243,174.086,486.966,353.073,487.286,179.551,68.199,179.551,347.052,309.368,357.957,18.109,19.127,18.109 +2094,65.926,358.207,497.696,175.636,475.527,353.275,497.160,6.203,67.380,6.203,347.951,309.000,357.873,19.191,19.538,19.191 +2095,65.956,356.721,509.339,177.719,463.778,351.588,508.109,13.476,66.409,13.476,348.269,308.226,358.825,19.216,19.674,19.216 +2096,65.987,353.434,520.439,181.871,452.142,348.595,518.601,20.797,65.353,20.797,348.562,307.870,358.915,19.578,20.434,19.578 +2097,66.017,350.004,529.493,191.891,451.381,349.039,528.964,28.752,64.470,28.752,347.983,284.877,350.184,25.145,21.374,25.145 +2098,66.048,344.774,541.803,198.772,443.333,343.487,540.842,36.741,62.333,36.741,345.383,280.385,348.594,25.598,20.026,25.598 +2099,66.080,334.989,555.402,209.508,436.890,334.717,555.115,46.591,61.080,46.591,343.070,270.520,343.860,24.720,21.317,24.720 +2100,66.111,330.793,573.146,221.027,429.120,324.910,564.810,54.793,60.422,54.793,321.118,267.158,341.523,21.515,19.392,21.515 +2101,66.143,325.811,602.555,233.316,420.216,310.403,573.023,62.447,58.841,62.447,275.651,268.919,342.270,18.734,19.304,18.734 +2102,66.175,299.388,583.578,246.950,415.397,297.716,578.456,71.922,57.588,71.922,330.752,267.522,341.527,20.525,19.779,20.525 +2103,66.206,299.388,583.578,246.950,415.397,297.716,578.456,71.922,57.588,71.922,330.752,267.522,341.527,20.525,19.779,20.525 +2104,66.236,283.147,581.839,262.548,410.610,283.064,581.316,80.949,55.833,80.949,342.557,268.426,343.617,23.343,21.298,23.343 +2105,66.267,265.804,580.022,277.831,408.493,265.815,580.892,89.249,54.669,89.249,346.193,269.830,344.453,23.985,22.285,23.985 +2106,66.298,253.816,578.426,289.155,402.530,254.318,575.545,99.880,53.418,99.880,347.007,286.628,352.855,23.002,23.444,23.002 +2107,66.330,238.577,572.886,302.803,403.976,239.771,569.412,108.977,51.843,108.977,346.534,292.679,353.882,19.362,24.769,19.362 +2108,66.361,226.080,566.460,311.638,403.239,228.873,561.260,118.241,50.528,118.241,344.942,310.498,356.747,19.612,24.929,19.612 +2109,66.394,214.505,558.783,324.014,411.615,218.059,554.107,127.235,48.906,127.235,343.369,311.385,355.116,19.713,25.255,19.713 +2110,66.425,204.788,549.319,334.928,421.271,209.008,545.261,136.123,47.451,136.123,341.703,312.981,353.412,19.462,24.795,19.462 +2111,66.457,197.412,539.081,344.563,432.015,202.145,535.725,144.660,46.097,144.660,340.724,314.808,352.328,20.008,24.714,20.008 +2112,66.489,191.227,528.863,352.101,443.428,196.944,525.926,152.810,44.569,152.810,338.564,317.477,351.417,21.458,24.498,21.458 +2113,66.519,187.006,516.518,357.678,455.921,192.707,514.501,160.511,43.485,160.511,338.031,318.925,350.125,20.348,22.874,20.348 +2114,66.550,184.351,506.139,361.477,468.418,190.683,504.782,167.905,41.963,167.905,336.294,319.244,349.245,20.254,22.279,20.254 +2115,66.581,182.446,494.845,363.233,480.642,189.611,494.255,175.288,40.633,175.288,333.928,321.166,348.306,18.865,21.285,18.865 +2116,66.613,182.497,484.565,363.791,492.146,190.298,484.892,2.398,39.393,2.398,331.673,322.807,347.288,18.863,20.912,18.863 +2117,66.644,183.334,474.838,362.621,503.479,191.261,476.063,8.785,38.324,8.785,331.034,323.618,347.075,19.469,19.918,19.469 +2118,66.674,184.432,465.130,360.813,513.384,193.556,467.654,15.461,37.842,15.461,327.860,324.164,346.792,19.010,19.423,19.010 +2119,66.704,184.432,465.130,360.813,513.384,193.556,467.654,15.461,37.842,15.461,327.860,324.164,346.792,19.010,19.423,19.010 +2120,66.733,186.732,457.701,358.046,522.509,196.051,461.180,20.477,37.905,20.477,326.534,324.513,346.428,19.074,18.997,19.074 +2121,66.764,189.249,449.878,354.549,530.439,199.042,454.642,25.942,38.660,25.942,324.211,324.998,345.992,18.471,19.053,18.471 +2122,66.797,190.688,442.815,350.755,537.382,201.829,449.430,30.700,40.206,30.700,320.000,325.322,345.914,18.218,18.320,18.218 +2123,66.829,190.279,434.740,346.938,543.569,205.333,445.264,34.958,42.236,34.958,308.029,325.310,344.764,17.893,18.480,17.893 +2124,66.862,189.708,426.252,343.283,549.211,208.407,441.275,38.779,44.764,38.779,297.521,324.603,345.494,17.910,18.687,17.910 +2125,66.894,190.165,418.611,338.998,553.662,211.171,437.642,42.176,47.394,42.176,288.567,324.958,345.257,17.824,18.346,17.824 +2126,66.925,193.000,413.500,335.216,557.763,214.245,434.745,45.000,50.528,45.000,284.964,324.846,345.053,17.678,18.526,17.678 +2127,66.954,198.281,411.352,331.481,561.286,217.038,432.273,48.122,53.973,48.122,288.713,324.671,344.911,17.818,18.527,17.818 +2128,66.985,201.871,408.570,328.064,564.145,219.237,429.906,50.856,57.841,50.856,290.601,324.891,345.621,17.910,18.538,17.910 +2129,67.015,206.599,408.035,324.736,566.814,221.590,427.861,52.907,62.059,52.907,296.379,324.351,346.091,17.763,18.772,17.763 +2130,67.046,212.426,408.737,321.709,568.697,224.474,425.857,54.866,66.876,54.866,303.679,324.595,345.547,19.536,18.552,19.536 +2131,67.078,217.811,408.494,319.210,570.249,227.828,423.667,56.567,72.474,56.567,308.989,324.519,345.351,23.270,18.921,23.270 +2132,67.108,217.811,408.494,319.210,570.249,227.828,423.667,56.567,72.474,56.567,308.989,324.519,345.351,23.270,18.921,23.270 +2133,67.137,220.780,409.488,316.401,571.520,229.067,422.639,57.783,78.398,57.783,313.950,323.998,345.038,22.959,18.262,22.959 +2134,67.167,222.836,409.784,314.548,572.079,229.921,421.540,58.921,85.236,58.921,317.780,323.628,345.233,23.054,18.353,23.054 +2135,67.200,224.264,410.698,313.025,572.455,230.317,420.989,59.534,92.632,59.534,321.096,323.486,344.976,22.258,18.624,22.258 +2136,67.232,225.706,411.289,312.194,572.732,231.060,420.583,60.058,100.976,60.058,323.223,323.387,344.675,22.828,20.057,22.828 +2137,67.264,226.277,411.308,311.709,572.363,231.187,420.022,60.599,109.065,60.599,324.497,322.825,344.500,23.343,21.315,23.343 +2138,67.296,226.322,411.762,312.197,571.816,230.990,419.982,60.408,117.699,60.408,325.356,321.599,344.262,22.437,22.356,22.437 +2139,67.328,226.482,411.951,312.666,571.352,230.991,419.880,60.371,126.158,60.371,325.847,321.062,344.090,22.997,23.228,22.997 +2140,67.358,226.281,412.453,313.624,570.612,230.803,420.292,60.018,134.694,60.018,325.086,319.661,343.185,22.887,23.693,22.887 +2141,67.388,225.711,412.740,314.713,570.287,230.233,420.458,59.630,143.471,59.630,326.071,320.024,343.962,23.108,24.702,23.108 +2142,67.420,224.495,413.198,316.064,569.575,229.184,420.993,58.973,152.337,58.973,326.018,319.913,344.210,22.164,24.821,22.164 +2143,67.450,224.108,414.312,317.691,569.020,228.905,422.042,58.173,161.125,58.173,325.207,320.052,343.402,22.472,24.812,22.472 +2144,67.481,223.440,415.219,319.391,568.557,228.064,422.443,57.381,170.008,57.381,327.441,320.459,344.596,23.483,25.066,23.483 +2145,67.511,222.385,416.411,321.086,567.822,227.136,423.510,56.206,178.860,56.206,327.287,320.275,344.370,23.387,24.428,23.387 +2146,67.541,222.385,416.411,321.086,567.822,227.136,423.510,56.206,178.860,56.206,327.287,320.275,344.370,23.387,24.428,23.387 +2147,67.569,220.699,417.360,323.467,566.240,225.657,424.416,54.904,7.943,54.904,327.299,322.296,344.547,23.728,23.701,23.728 +2148,67.600,219.118,418.913,325.592,564.979,224.177,425.720,53.379,16.947,53.379,327.567,322.981,344.530,23.980,23.344,23.980 +2149,67.630,217.609,420.809,327.903,562.823,222.397,426.876,51.720,25.665,51.720,328.699,325.091,344.158,24.199,21.866,24.199 +2150,67.662,214.418,421.993,329.991,561.735,220.045,428.630,49.708,34.682,49.708,327.853,325.905,345.255,23.629,20.499,23.629 +2151,67.694,199.803,411.674,332.148,560.408,218.297,430.523,45.546,43.182,45.546,292.082,324.960,344.895,21.455,19.082,21.455 +2152,67.725,195.250,415.750,334.447,558.314,213.940,434.440,45.000,52.306,45.000,292.742,325.038,345.606,17.678,19.027,17.678 +2153,67.756,203.612,427.022,337.193,555.358,213.065,435.479,41.820,61.699,41.820,319.512,324.826,344.880,25.181,19.370,25.181 +2154,67.788,203.557,430.631,339.524,551.818,211.143,436.952,39.806,70.821,39.806,324.573,323.839,344.321,25.095,19.013,25.095 +2155,67.818,200.950,435.463,342.950,547.398,207.911,440.550,36.158,80.096,36.158,326.900,323.065,344.143,25.588,21.219,25.588 +2156,67.849,198.137,438.515,345.841,542.492,205.134,443.154,33.546,89.449,33.546,327.542,321.139,344.333,24.695,22.268,24.695 +2157,67.880,194.978,442.999,348.849,536.864,202.176,447.089,29.604,98.820,29.604,327.192,320.765,343.751,25.155,23.614,25.155 +2158,67.911,191.594,447.189,352.130,530.519,199.588,451.094,26.035,107.650,26.035,326.054,319.793,343.848,25.954,24.733,25.954 +2159,67.942,187.121,455.948,355.308,523.689,195.648,459.359,21.801,117.051,21.801,325.895,319.367,344.264,19.127,24.823,19.127 +2160,67.972,187.121,455.948,355.308,523.689,195.648,459.359,21.801,117.051,21.801,325.895,319.367,344.264,19.127,24.823,19.127 +2161,68.001,183.951,462.808,358.117,516.825,193.291,465.647,16.902,126.431,16.902,325.646,320.412,345.171,19.464,25.612,19.464 +2162,68.031,180.958,469.695,360.796,508.340,191.651,471.992,12.124,135.704,12.124,324.139,319.029,346.012,18.931,25.252,18.931 +2163,68.064,177.733,477.175,362.816,499.633,190.790,478.776,6.992,144.246,6.992,320.261,320.264,346.570,18.597,23.859,18.597 +2164,68.096,172.432,485.543,363.651,490.274,189.802,486.004,1.521,152.949,1.521,313.049,321.111,347.801,18.524,22.265,18.524 +2165,68.128,160.127,495.308,363.447,479.847,189.675,493.227,175.972,161.075,175.972,289.326,321.649,348.567,17.576,20.378,17.576 +2166,68.159,111.085,515.140,362.855,470.172,190.531,501.176,170.032,168.009,170.032,188.851,321.631,350.179,17.304,19.408,17.304 +2167,68.191,182.010,512.967,360.581,460.932,192.192,510.114,164.349,175.021,164.349,329.680,322.566,350.828,18.960,20.102,18.960 +2168,68.222,187.567,522.498,357.423,451.295,194.989,519.289,156.615,1.916,156.615,335.985,321.355,352.158,20.962,18.785,20.962 +2169,68.253,192.521,533.675,351.923,441.453,199.270,529.759,149.871,9.680,149.871,337.101,320.581,352.707,23.437,18.518,23.437 +2170,68.283,198.180,541.240,344.678,432.823,203.080,537.565,143.130,16.997,143.130,340.000,319.077,352.249,19.800,18.358,19.800 +2171,68.314,205.928,549.427,335.992,422.561,209.564,545.860,135.556,26.065,135.556,343.006,317.109,353.193,19.235,19.802,19.235 +2172,68.346,214.635,558.340,325.451,413.585,217.725,554.292,127.349,33.495,127.349,344.235,314.809,354.419,19.748,20.370,19.748 +2173,68.376,224.681,565.789,322.201,411.210,227.131,561.435,119.358,41.576,119.358,345.089,292.907,355.082,20.046,23.987,20.046 +2174,68.406,224.681,565.789,322.201,411.210,227.131,561.435,119.358,41.576,119.358,345.089,292.907,355.082,20.046,23.987,20.046 +2175,68.435,235.833,571.582,314.536,414.096,236.187,570.653,110.898,48.879,110.898,346.425,271.780,348.412,19.296,25.051,19.296 +2176,68.470,248.318,577.571,302.322,416.893,247.878,579.550,102.529,57.619,102.529,345.245,257.555,341.189,20.391,23.481,20.391 +2177,68.500,258.995,585.031,284.466,418.586,258.975,585.341,93.564,66.801,93.564,336.656,253.815,336.034,22.517,21.666,22.517 +2178,68.531,275.076,601.410,264.601,416.629,273.721,585.155,85.236,75.296,85.236,304.777,260.911,337.401,22.838,18.666,22.838 +2179,68.564,290.452,588.368,245.598,413.957,288.513,580.214,76.627,82.632,76.627,326.588,274.114,343.350,22.376,20.809,22.376 +2180,68.596,303.638,574.345,231.500,400.500,300.828,567.319,68.199,90.000,68.199,346.136,307.000,361.270,21.355,19.000,21.355 +2181,68.626,316.095,566.651,218.748,407.193,312.856,561.138,59.566,98.811,59.566,348.021,308.837,360.807,22.999,18.455,22.999 +2182,68.658,327.617,557.361,207.776,415.354,324.142,553.109,50.741,107.103,50.741,349.621,309.599,360.605,24.025,18.160,24.025 +2183,68.688,337.292,547.533,197.217,425.284,333.244,543.846,42.330,114.546,42.330,349.854,311.014,360.804,24.960,18.178,24.960 +2184,68.719,344.818,536.385,188.731,436.280,340.644,533.560,34.103,122.367,34.103,350.583,311.541,360.663,25.558,18.451,25.558 +2185,68.749,350.216,525.034,182.711,447.969,346.293,523.092,26.336,130.653,26.336,351.105,311.832,359.860,25.642,18.670,25.642 +2186,68.780,353.141,516.665,177.749,459.436,348.892,515.222,18.753,137.911,18.753,351.007,312.258,359.984,19.698,21.186,19.698 +2187,68.812,355.100,505.558,174.275,470.819,351.267,504.776,11.526,145.578,11.526,352.591,311.748,360.415,19.635,21.075,19.635 +2188,68.843,356.679,495.348,172.528,482.021,352.266,494.981,4.764,153.172,4.764,351.531,311.282,360.388,19.017,20.678,19.017 +2189,68.873,356.679,495.348,172.528,482.021,352.266,494.981,4.764,153.172,4.764,351.531,311.282,360.388,19.017,20.678,19.017 +2190,68.902,357.919,485.110,171.283,489.861,351.693,485.284,178.394,161.200,178.394,348.480,311.166,360.936,19.030,20.665,19.030 +2191,68.934,361.692,475.717,171.950,498.780,350.852,477.182,172.304,167.099,172.304,338.491,310.615,360.367,18.802,19.141,18.802 +2192,68.964,402.638,456.324,173.802,507.500,349.160,468.399,167.276,174.338,167.276,249.681,309.753,359.329,17.652,19.778,17.652 +2193,68.997,367.857,454.551,176.499,516.067,347.114,461.605,161.218,1.273,161.218,314.309,309.190,358.130,21.112,18.418,21.112 +2194,69.028,356.341,449.275,179.798,523.823,344.393,454.534,156.242,8.691,156.242,331.014,308.518,357.123,20.867,20.375,20.867 +2195,69.061,349.092,444.586,183.530,530.810,341.489,448.733,151.390,17.409,151.390,338.628,308.956,355.949,20.431,21.930,20.431 +2196,69.092,342.675,439.805,186.868,538.278,337.346,443.272,146.947,26.757,146.947,343.172,310.376,355.886,20.036,24.462,20.036 +2197,69.122,337.924,435.036,190.513,544.982,333.221,438.603,142.821,35.487,142.821,344.171,311.659,355.976,19.395,24.103,19.395 +2198,69.154,334.383,430.939,194.812,550.724,329.826,434.916,138.888,44.150,138.888,343.644,311.957,355.741,19.973,24.152,19.973 +2199,69.184,329.750,426.750,200.733,554.090,326.411,430.089,135.000,53.569,135.000,343.654,313.803,353.099,19.092,20.651,19.092 +2200,69.215,325.839,424.457,204.937,559.216,322.793,427.849,131.929,62.567,131.929,343.856,316.171,352.973,20.087,21.328,20.087 +2201,69.247,321.281,421.524,207.603,563.465,318.407,425.117,128.660,71.284,128.660,345.300,317.523,354.501,19.522,19.848,19.522 +2202,69.277,317.220,419.223,210.781,566.783,314.589,422.892,125.655,80.369,125.655,345.823,318.441,354.853,19.095,19.395,19.095 +2203,69.307,317.220,419.223,210.781,566.783,314.589,422.892,125.655,80.369,125.655,345.823,318.441,354.853,19.095,19.395,19.095 +2204,69.336,313.873,417.118,213.560,569.484,311.150,421.307,123.024,89.132,123.024,344.852,319.130,354.846,18.781,19.286,18.781 +2205,69.367,310.076,415.791,217.212,571.240,307.997,419.349,120.303,97.989,120.303,345.652,319.743,353.892,18.961,20.119,18.961 +2206,69.400,308.042,412.659,219.643,573.041,305.108,418.173,118.021,105.980,118.021,341.239,320.600,353.730,18.174,19.787,18.174 +2207,69.432,310.708,400.144,222.047,573.979,302.630,416.770,115.913,114.605,115.913,316.266,319.537,353.237,17.387,18.949,17.387 +2208,69.465,321.416,367.543,225.129,575.085,299.830,415.340,114.305,123.321,114.305,247.775,318.953,352.666,16.963,19.683,16.963 +2209,69.498,306.598,392.166,227.612,575.190,297.438,414.150,112.620,132.368,112.620,303.385,318.033,351.017,17.692,19.169,17.692 +2210,69.532,301.574,398.020,230.491,576.107,295.858,413.341,110.462,141.022,110.462,317.988,317.671,350.693,19.801,19.429,19.801 +2211,69.565,296.941,400.492,233.708,577.209,292.954,412.307,108.647,149.630,108.647,325.439,316.580,350.378,19.067,21.355,19.067 +2212,69.598,294.367,401.927,236.552,577.879,291.285,411.786,107.354,158.199,107.354,329.057,316.053,349.716,18.911,22.098,18.911 +2213,69.632,291.708,402.774,239.197,578.815,289.230,411.445,105.945,166.430,105.945,331.314,315.759,349.350,18.818,23.129,18.818 +2214,69.664,289.908,403.136,241.967,579.654,287.792,411.144,104.797,174.523,104.797,332.683,315.430,349.250,18.862,24.204,18.862 +2215,69.695,288.765,403.441,243.933,579.942,286.917,410.833,104.036,2.648,104.036,333.729,314.912,348.969,19.160,24.638,19.160 +2216,69.728,286.547,403.348,245.855,580.750,284.940,410.490,102.680,10.934,102.680,334.732,316.512,349.374,18.976,25.896,18.976 +2217,69.759,285.163,404.221,247.768,580.585,283.952,410.016,101.802,19.335,101.802,336.888,317.662,348.729,19.080,27.911,19.080 +2218,69.790,283.538,405.333,248.911,582.223,282.479,410.827,100.911,27.867,100.911,338.112,318.527,349.303,18.952,25.617,18.952 +2219,69.821,282.297,405.339,249.856,583.201,281.304,410.900,100.125,35.572,100.125,338.995,319.681,350.293,18.845,24.618,18.845 +2220,69.851,281.102,405.525,251.091,583.937,280.206,410.995,99.310,43.112,99.310,339.663,319.858,350.748,18.944,24.293,18.944 +2221,69.881,280.179,405.335,252.108,584.319,279.313,410.969,98.746,50.835,98.746,339.544,320.775,350.943,19.007,23.250,19.007 +2222,69.913,279.025,405.363,253.965,584.022,278.275,410.626,98.104,58.079,98.104,339.552,321.395,350.184,18.948,19.842,18.948 +2223,69.944,278.424,406.014,253.934,584.726,277.769,410.836,97.734,65.136,97.734,341.299,321.830,351.031,18.729,20.514,18.729 +2224,69.974,278.424,406.014,253.934,584.726,277.769,410.836,97.734,65.136,97.734,341.299,321.830,351.031,18.729,20.514,18.729 +2225,70.002,278.135,406.056,254.371,585.206,277.472,411.075,97.520,71.887,97.520,341.188,323.205,351.313,18.515,20.137,18.515 +2226,70.033,277.925,406.037,254.143,585.180,277.276,411.052,97.374,78.111,97.374,341.202,323.642,351.315,18.481,21.013,18.481 +2227,70.066,278.037,405.548,253.862,585.392,277.303,411.179,97.431,82.875,97.431,340.205,323.979,351.563,18.668,20.218,18.668 +2228,70.099,278.769,404.790,253.330,585.418,277.863,411.464,97.734,87.421,97.734,337.874,323.708,351.345,18.375,20.925,18.375 +2229,70.132,279.570,404.792,250.530,585.480,278.587,411.643,98.168,90.567,98.168,338.279,323.133,352.121,18.073,22.019,18.073 +2230,70.164,281.363,402.516,249.722,584.592,279.983,411.469,98.765,94.300,98.765,333.308,322.571,351.425,17.315,20.319,17.315 +2231,70.197,283.537,394.001,247.891,584.359,280.597,411.458,99.560,97.240,99.560,316.459,322.506,351.864,18.186,19.857,18.186 +2232,70.229,297.087,332.935,246.214,584.039,281.795,411.750,100.981,100.355,100.981,191.254,323.246,351.824,16.645,18.795,16.645 +2233,70.260,299.773,332.349,244.997,583.856,283.333,411.807,101.689,103.371,101.689,190.213,322.880,352.495,16.782,19.498,16.782 +2234,70.291,302.763,332.713,243.400,582.526,284.435,411.666,103.069,106.504,103.069,189.323,321.446,351.427,17.012,19.318,17.012 +2235,70.322,304.443,335.970,241.361,581.809,286.050,411.994,103.601,109.756,103.601,194.690,320.803,351.124,16.962,19.373,16.962 +2236,70.352,300.873,359.364,239.597,581.042,286.929,411.923,104.859,113.518,104.859,242.449,320.257,351.203,17.773,19.451,17.773 +2237,70.382,299.067,376.247,237.847,580.184,288.576,412.282,106.232,117.924,106.232,275.717,319.986,350.778,17.234,19.518,17.234 +2238,70.414,298.448,385.265,235.992,579.342,289.992,412.326,107.354,123.136,107.354,294.338,319.530,351.041,17.360,19.202,17.360 +2239,70.445,298.251,391.392,234.339,578.368,291.381,412.577,107.969,129.369,107.969,306.062,318.724,350.604,17.688,19.069,17.688 +2240,70.476,298.251,391.392,234.339,578.368,291.381,412.577,107.969,129.369,107.969,306.062,318.724,350.604,17.688,19.069,17.688 +2241,70.504,298.500,395.500,233.015,577.500,292.776,412.673,108.435,135.881,108.435,314.330,317.638,350.534,18.974,19.362,18.974 +2242,70.535,299.939,399.558,231.920,576.560,295.039,413.169,109.799,143.130,109.799,321.294,316.800,350.225,20.286,20.000,20.286 +2243,70.567,299.756,401.654,230.625,575.914,295.414,413.309,110.433,151.113,110.433,325.112,316.265,349.986,19.146,20.561,19.146 +2244,70.598,300.687,403.254,229.642,575.524,296.728,413.316,111.477,159.305,111.477,329.390,315.441,351.015,19.466,22.181,19.466 +2245,70.629,301.987,405.248,228.111,574.935,298.228,414.248,112.669,168.232,112.669,331.085,314.824,350.593,19.259,22.761,19.259 +2246,70.662,303.952,407.328,226.635,574.072,300.559,414.869,114.228,176.987,114.228,334.493,313.881,351.031,19.150,23.546,19.150 +2247,70.692,305.585,408.741,224.895,572.615,302.342,415.497,115.641,5.356,115.641,335.330,314.278,350.319,18.932,23.957,18.932 +2248,70.722,307.462,410.250,222.919,571.701,304.365,416.289,117.150,14.783,117.150,337.332,314.659,350.906,19.074,25.381,19.074 +2249,70.753,309.745,412.359,219.870,570.292,306.814,417.635,119.055,23.929,119.055,339.270,315.975,351.341,19.134,26.165,19.134 +2250,70.783,312.221,414.134,217.176,569.301,309.252,419.051,121.122,32.330,121.122,340.940,316.130,352.429,18.930,25.135,18.930 +2251,70.814,314.982,416.004,214.101,568.452,311.711,420.988,123.275,41.463,123.275,341.761,315.154,353.684,19.046,24.689,19.046 +2252,70.846,317.929,418.309,212.460,564.896,315.179,422.131,125.742,50.711,125.742,342.338,315.915,351.756,19.320,20.264,19.320 +2253,70.878,320.905,420.533,209.445,562.805,318.162,424.032,128.108,60.081,128.108,343.685,316.659,352.577,19.424,21.341,19.424 +2254,70.908,320.905,420.533,209.445,562.805,318.162,424.032,128.108,60.081,128.108,343.685,316.659,352.577,19.424,21.341,19.424 +2255,70.936,323.783,423.522,204.964,560.821,320.951,426.814,130.711,68.900,130.711,345.776,317.554,354.461,20.202,20.160,20.202 +2256,70.967,327.220,426.747,200.528,557.494,324.072,430.009,133.981,78.366,133.981,345.985,317.315,355.051,19.237,19.733,19.237 +2257,70.998,330.916,430.291,196.034,553.478,327.599,433.366,137.167,87.580,137.167,347.235,317.435,356.281,19.731,20.010,19.731 +2258,71.029,334.274,434.121,191.896,548.660,331.058,436.778,140.440,96.520,140.440,348.743,317.164,357.087,20.514,20.041,20.514 +2259,71.063,337.649,438.608,188.128,543.535,334.396,440.932,144.462,105.422,144.462,349.324,316.888,357.320,19.413,18.748,19.413 +2260,71.094,341.209,443.427,183.516,537.007,337.742,445.585,148.092,114.362,148.092,350.322,316.393,358.489,20.998,19.989,20.998 +2261,71.126,344.726,448.534,180.391,530.428,340.925,450.542,152.160,123.275,152.160,349.923,315.373,358.520,20.189,20.039,20.189 +2262,71.158,348.349,453.807,177.797,523.598,343.804,455.749,156.862,132.408,156.862,348.745,314.466,358.630,21.024,18.471,21.024 +2263,71.189,351.490,460.889,175.019,515.259,346.767,462.422,162.019,141.022,162.019,349.408,313.635,359.341,20.333,18.562,20.333 +2264,71.220,354.123,468.828,173.235,506.559,349.215,469.933,167.307,149.036,167.307,349.392,312.642,359.454,20.144,19.722,20.144 +2265,71.251,355.884,477.532,172.261,496.842,351.072,478.109,173.169,157.548,173.169,349.848,311.395,359.540,19.263,19.324,19.263 +2266,71.280,357.493,487.168,172.608,488.411,352.330,487.213,179.506,165.336,179.506,349.125,310.345,359.452,18.137,18.390,18.137 +2267,71.312,359.594,497.059,173.322,476.709,352.412,496.341,5.711,174.319,5.711,345.875,309.957,360.310,19.105,18.532,19.105 +2268,71.342,358.177,508.187,175.593,465.198,351.132,506.652,12.288,2.965,12.288,346.257,307.934,360.679,18.420,17.952,18.420 +2269,71.373,358.177,508.187,175.593,465.198,351.132,506.652,12.288,2.965,12.288,346.257,307.934,360.679,18.420,17.952,18.420 +2270,71.402,357.069,519.851,179.036,453.782,348.191,516.790,19.026,11.155,19.026,342.127,308.275,360.909,19.168,19.263,19.168 +2271,71.433,355.700,532.100,184.385,443.077,344.469,526.485,26.565,19.440,26.565,335.857,307.526,360.970,19.230,18.971,19.230 +2272,71.465,349.717,544.744,205.895,439.849,345.132,541.622,34.249,27.121,34.249,333.647,272.375,344.741,18.678,20.189,18.678 +2273,71.497,342.330,557.187,213.808,433.612,337.379,552.674,42.346,35.838,42.346,329.663,269.551,343.062,18.505,19.862,18.505 +2274,71.529,331.615,567.666,222.298,428.830,327.749,562.985,50.440,43.668,50.440,329.033,265.734,341.175,19.140,19.596,19.140 +2275,71.561,320.196,577.468,234.951,428.939,318.056,573.921,58.891,51.340,58.891,325.853,252.221,334.138,18.925,20.303,18.925 +2276,71.592,308.385,589.053,239.812,417.704,303.208,576.603,67.423,59.133,67.423,315.154,268.924,342.121,18.778,20.502,18.778 +2277,71.622,293.059,597.235,244.185,397.268,286.772,572.089,75.964,67.061,75.964,308.020,305.335,359.860,22.798,19.812,22.798 +2278,71.654,278.428,600.742,258.098,394.523,276.395,573.698,85.700,74.634,85.700,305.843,306.956,360.085,23.235,18.696,23.235 +2279,71.684,257.448,601.082,272.423,394.211,259.006,573.566,93.240,82.379,93.240,304.531,307.806,359.652,23.246,18.651,23.246 +2280,71.714,241.577,598.222,287.000,395.500,248.057,570.616,103.211,90.000,103.211,302.048,309.000,358.762,20.723,18.000,20.723 +2281,71.745,225.704,590.539,301.331,399.372,236.039,565.672,112.567,97.487,112.567,303.389,312.699,357.247,19.824,19.495,19.824 +2282,71.775,225.704,590.539,301.331,399.372,236.039,565.672,112.567,97.487,112.567,303.389,312.699,357.247,19.824,19.495,19.824 +2283,71.805,210.887,582.863,314.461,405.627,225.068,559.538,121.298,105.366,121.298,301.311,313.559,355.906,20.192,19.800,20.192 +2284,71.836,195.411,575.183,326.086,413.390,215.202,551.586,129.987,113.102,129.987,292.685,314.748,354.281,19.501,19.258,19.501 +2285,71.868,184.155,563.372,336.673,422.399,207.295,542.916,138.524,120.710,138.524,291.733,317.286,353.505,19.273,19.768,19.273 +2286,71.900,175.322,551.009,344.978,432.376,201.016,534.007,146.508,128.206,146.508,290.662,317.956,352.282,21.106,19.564,21.106 +2287,71.931,171.557,534.267,352.050,443.552,195.456,522.744,154.259,135.971,154.259,297.833,319.015,350.896,17.790,20.132,17.790 +2288,71.963,166.147,521.926,357.660,455.380,192.324,513.164,161.494,143.130,161.494,295.048,320.200,350.256,19.906,19.400,19.906 +2289,71.994,162.802,509.405,361.072,466.636,190.429,503.733,168.398,151.858,168.398,292.827,320.949,349.234,19.163,19.768,19.163 +2290,72.023,161.249,496.182,363.029,477.579,189.606,493.964,175.528,159.800,175.528,291.456,322.444,348.345,17.611,19.629,17.611 +2291,72.054,160.345,483.919,363.875,488.755,190.329,484.974,2.015,167.943,2.015,287.139,322.673,347.144,17.893,19.521,17.893 +2292,72.085,158.891,472.194,363.111,499.106,191.146,476.876,8.259,176.035,8.259,281.565,323.096,346.750,18.164,18.974,18.164 +2293,72.116,158.765,460.441,361.925,509.040,193.205,469.051,14.036,4.122,14.036,275.763,323.324,346.763,17.948,19.283,17.948 +2294,72.147,154.132,447.458,359.347,518.688,195.587,462.090,19.440,12.529,19.440,258.601,324.203,346.523,18.083,19.198,18.083 +2295,72.179,129.810,424.478,356.218,527.234,198.211,456.399,25.017,20.985,25.017,195.313,324.369,346.278,17.580,19.364,17.580 +2296,72.209,129.810,424.478,356.218,527.234,198.211,456.399,25.017,20.985,25.017,195.313,324.369,346.278,17.580,19.364,17.580 +2297,72.238,130.871,410.376,352.639,534.530,201.268,450.854,29.899,29.374,29.899,183.459,324.879,345.868,17.598,20.053,17.598 +2298,72.268,178.687,428.059,347.673,542.200,204.485,445.649,34.287,37.986,34.287,282.945,325.824,345.393,17.651,18.606,17.651 +2299,72.300,192.857,429.169,343.359,549.031,208.249,441.428,38.536,46.525,38.536,306.089,324.842,345.444,18.053,18.314,18.053 +2300,72.332,200.455,427.238,338.484,554.165,211.587,437.133,41.634,55.353,41.634,315.407,324.381,345.194,20.512,19.136,20.512 +2301,72.364,206.250,422.750,333.473,559.013,216.122,432.622,45.000,63.947,45.000,316.784,324.257,344.705,24.749,18.926,24.749 +2302,72.397,211.822,419.231,328.425,562.865,220.091,428.899,49.461,72.387,49.461,319.004,323.911,344.447,23.309,18.775,23.309 +2303,72.429,216.476,416.604,323.306,566.377,223.397,425.728,52.815,81.309,52.815,321.973,323.648,344.876,23.873,18.813,23.873 +2304,72.460,220.456,414.802,318.628,569.003,226.502,423.669,55.713,89.493,55.713,322.492,322.094,343.955,23.435,18.796,23.435 +2305,72.493,224.092,411.929,314.183,571.677,229.759,421.324,58.903,98.489,58.903,322.754,323.477,344.699,23.065,19.604,23.065 +2306,72.524,227.213,410.343,310.176,573.434,232.338,419.811,61.574,107.241,61.574,322.776,323.339,344.307,21.687,21.934,21.687 +2307,72.555,231.034,408.801,306.912,574.695,235.446,417.897,64.123,116.188,64.123,324.314,321.604,344.534,22.205,22.728,22.205 +2308,72.585,233.854,407.701,303.092,575.868,237.710,416.648,66.682,124.824,66.682,324.707,320.974,344.192,21.248,22.914,21.248 +2309,72.617,237.699,406.651,300.058,577.027,241.043,415.315,68.895,133.363,68.895,325.656,319.926,344.229,21.817,23.709,21.817 +2310,72.649,240.377,405.512,297.056,578.455,243.434,414.417,71.053,141.483,71.053,326.294,320.315,345.123,21.020,24.223,21.020 +2311,72.682,243.350,404.789,293.913,578.997,245.942,413.351,73.159,150.499,73.159,326.985,319.384,344.878,20.482,24.919,20.482 +2312,72.712,246.019,403.967,291.012,580.031,248.318,412.669,75.203,158.848,75.203,327.430,319.059,345.431,20.267,24.903,20.267 +2313,72.743,246.019,403.967,291.012,580.031,248.318,412.669,75.203,158.848,75.203,327.430,319.059,345.431,20.267,24.903,20.267 +2314,72.771,248.747,403.829,288.265,580.675,250.664,412.216,77.125,167.311,77.125,327.998,319.097,345.205,19.915,25.249,19.915 +2315,72.802,251.286,403.530,285.609,581.403,252.860,411.593,78.959,175.553,78.959,329.446,318.682,345.877,19.558,25.335,19.558 +2316,72.834,253.768,403.697,282.908,582.468,255.034,411.386,80.647,3.597,80.647,331.092,319.005,346.677,19.049,25.504,19.049 +2317,72.865,256.387,403.842,280.249,582.702,257.292,410.764,82.550,11.782,82.550,332.965,319.678,346.927,18.718,25.404,18.718 +2318,72.898,258.881,404.312,277.355,583.313,259.512,410.623,84.289,19.592,84.289,334.532,320.522,347.216,18.408,25.612,18.408 +2319,72.931,261.596,404.670,274.656,584.054,262.005,410.444,85.950,27.426,85.950,336.565,320.811,348.140,18.802,25.563,18.802 +2320,72.962,264.006,405.660,270.998,584.287,264.205,410.635,87.709,34.968,87.709,337.610,322.614,347.569,18.505,25.579,18.505 +2321,72.993,266.220,405.046,268.547,585.395,266.289,410.697,89.301,42.127,89.301,338.121,321.545,349.425,17.901,24.371,17.901 +2322,73.022,268.718,404.906,265.465,585.459,268.604,410.688,91.123,49.399,91.123,338.033,321.925,349.598,17.977,23.971,17.977 +2323,73.053,271.407,404.758,262.632,585.076,271.109,410.422,93.013,56.146,93.013,338.374,322.007,349.717,18.238,21.504,18.238 +2324,73.083,273.931,405.246,259.402,585.051,273.496,410.508,94.731,62.536,94.731,339.660,322.415,350.220,18.104,20.538,18.104 +2325,73.115,276.774,406.266,255.991,585.611,276.167,411.413,96.727,68.578,96.727,340.359,323.504,350.725,18.467,20.275,18.467 +2326,73.147,280.017,406.387,252.224,584.648,279.278,411.196,98.746,73.960,98.746,341.368,323.063,351.098,18.703,19.606,18.703 +2327,73.178,283.210,406.856,247.923,584.115,282.296,411.525,101.079,78.690,101.079,342.441,323.395,351.957,19.010,20.592,19.010 +2328,73.208,283.210,406.856,247.923,584.115,282.296,411.525,101.079,78.690,101.079,342.441,323.395,351.957,19.010,20.592,19.010 +2329,73.237,286.925,407.510,244.235,582.972,285.794,412.164,103.654,83.194,103.654,342.002,322.959,351.581,18.687,22.037,18.687 +2330,73.267,291.028,408.180,238.741,582.016,289.568,413.123,106.449,86.505,106.449,342.435,323.108,352.745,18.588,20.039,18.588 +2331,73.299,294.966,409.897,233.640,580.010,293.502,414.039,109.468,89.301,109.468,344.080,322.135,352.866,18.769,19.499,18.769 +2332,73.332,299.988,410.742,228.438,577.999,297.958,415.599,112.676,91.320,112.676,342.765,322.214,353.295,18.738,19.294,18.738 +2333,73.365,304.510,413.029,223.394,574.970,302.590,416.933,116.192,92.797,116.192,344.832,320.692,353.532,19.169,20.005,19.169 +2334,73.397,310.269,415.777,217.326,571.555,308.034,419.582,120.420,93.772,120.420,345.134,319.954,353.960,19.066,19.386,19.066 +2335,73.431,315.369,418.384,211.109,567.902,312.723,422.251,124.380,94.050,124.380,345.804,319.254,355.174,19.112,19.871,19.112 +2336,73.463,320.619,421.500,205.271,563.119,317.579,425.312,128.577,93.851,128.577,345.778,318.827,355.530,19.051,20.377,19.051 +2337,73.496,326.723,426.734,199.890,557.646,323.654,429.939,133.768,93.486,133.768,346.797,317.812,355.671,19.255,19.821,19.255 +2338,73.528,332.372,432.285,194.552,551.549,329.285,434.994,138.727,92.670,138.727,348.080,317.448,356.295,20.049,19.321,20.049 +2339,73.561,337.132,436.828,189.471,544.515,333.610,439.437,143.471,91.813,143.471,347.970,315.475,356.737,19.643,18.775,19.643 +2340,73.593,342.777,445.122,184.688,536.495,339.281,447.184,149.466,90.872,149.466,348.942,315.146,357.060,20.985,19.236,20.985 +2341,73.624,346.815,450.990,180.859,527.496,343.152,452.720,154.722,89.814,154.722,349.266,313.041,357.367,20.471,18.727,20.471 +2342,73.656,351.275,459.390,177.317,517.469,347.040,460.845,161.030,88.659,161.030,348.870,313.195,357.825,20.125,19.536,20.125 +2343,73.687,354.500,469.000,175.049,506.942,350.078,469.977,167.542,87.859,167.542,348.707,312.343,357.764,20.403,18.576,20.403 +2344,73.717,357.106,479.677,174.125,495.758,352.309,480.111,174.837,87.007,174.837,348.106,310.883,357.739,18.839,18.837,18.839 +2345,73.749,358.384,491.294,174.338,483.226,353.169,491.111,2.010,85.914,2.010,347.558,310.281,357.996,18.725,19.023,18.725 +2346,73.781,357.689,502.865,176.363,470.623,352.808,502.051,9.462,85.061,9.462,348.526,309.784,358.423,19.563,19.114,19.563 +2347,73.814,354.807,515.302,179.694,457.928,350.105,513.827,17.418,84.068,17.418,348.806,308.495,358.661,19.326,19.609,19.326 +2348,73.845,350.700,525.600,185.299,445.283,346.676,523.588,26.565,83.112,26.565,349.721,307.956,358.718,25.491,19.503,25.491 +2349,73.876,350.700,525.600,185.299,445.283,346.676,523.588,26.565,83.112,26.565,349.721,307.956,358.718,25.491,19.503,25.491 +2350,73.905,345.350,537.221,190.666,433.893,340.647,534.018,34.256,80.891,34.256,349.265,307.449,360.645,25.309,17.831,25.309 +2351,73.936,336.470,549.116,199.720,422.460,332.113,544.990,43.435,79.695,43.435,348.763,307.594,360.763,24.643,17.889,24.643 +2352,73.969,326.142,560.892,213.527,427.432,325.720,560.335,52.815,78.232,52.815,345.984,277.867,347.381,23.544,18.560,23.544 +2353,74.001,313.235,570.948,226.512,421.661,313.064,570.622,62.354,76.897,62.354,343.492,275.825,344.229,22.230,19.370,22.230 +2354,74.033,302.338,587.222,239.990,415.369,298.962,577.038,71.657,76.264,71.657,322.567,274.345,344.026,20.238,18.543,20.238 +2355,74.067,286.186,615.194,255.753,412.567,280.230,582.354,79.721,74.859,79.721,276.108,271.109,342.860,23.615,18.216,23.615 +2356,74.100,268.948,591.623,271.628,411.486,269.103,582.297,90.949,73.698,90.949,323.005,270.482,341.660,24.881,19.187,24.881 +2357,74.132,251.446,584.156,289.096,411.984,252.245,579.958,100.776,71.834,100.776,335.259,271.983,343.805,23.155,21.067,23.155 +2358,74.165,235.950,574.904,303.538,410.244,237.267,571.331,110.247,70.463,110.247,340.517,284.279,348.133,19.572,22.618,19.572 +2359,74.198,222.928,567.186,317.498,413.550,225.388,562.915,119.937,69.179,119.937,340.950,291.875,350.807,20.303,23.920,20.303 +2360,74.231,210.749,558.029,327.236,413.296,215.892,551.786,129.484,67.913,129.484,339.195,311.611,355.372,19.392,24.683,19.392 +2361,74.263,201.705,546.943,338.128,423.944,207.024,542.277,138.743,66.501,138.743,339.030,313.319,353.183,20.047,24.681,20.047 +2362,74.295,194.787,535.909,347.310,436.088,200.199,532.487,147.704,65.225,147.704,338.909,314.573,351.716,21.531,24.375,21.531 +2363,74.326,189.071,523.293,354.041,449.228,194.523,520.886,156.176,63.574,156.176,337.818,315.296,349.739,20.339,25.161,20.339 +2364,74.357,185.494,511.257,359.271,462.140,191.350,509.611,164.298,62.488,164.298,336.838,317.127,349.004,20.518,24.704,20.518 +2365,74.388,183.507,499.553,362.145,475.645,189.693,498.717,172.304,61.157,172.304,335.491,318.286,347.976,19.284,24.463,19.284 +2366,74.418,183.000,488.000,363.229,488.867,189.615,488.000,0.000,59.950,0.000,334.000,320.025,347.229,18.000,23.521,18.000 +2367,74.449,183.701,476.956,362.636,501.116,190.776,477.878,7.420,58.878,7.420,332.573,320.895,346.843,19.270,22.678,19.270 +2368,74.481,185.948,466.320,359.989,513.140,193.087,468.223,14.931,57.653,14.931,330.903,322.045,345.680,19.067,20.895,19.067 +2369,74.513,189.515,455.532,356.953,523.725,196.818,458.222,20.225,56.864,20.225,330.247,322.879,345.813,25.632,20.388,25.632 +2370,74.543,189.515,455.532,356.953,523.725,196.818,458.222,20.225,56.864,20.225,330.247,322.879,345.813,25.632,20.388,25.632 +2371,74.572,193.697,445.418,352.462,533.692,201.504,449.521,27.728,56.310,27.728,327.931,323.390,345.570,25.897,18.860,25.897 +2372,74.605,198.046,438.120,347.532,542.143,205.909,443.315,33.453,56.099,33.453,326.434,324.212,345.282,25.537,18.652,25.537 +2373,74.635,199.880,432.869,342.457,549.528,209.216,439.964,37.235,56.634,37.235,321.299,324.250,344.753,25.413,18.761,25.413 +2374,74.668,203.394,424.433,336.956,555.764,214.129,434.647,43.575,57.724,43.575,315.307,324.579,344.943,22.691,18.423,22.691 +2375,74.700,204.353,418.363,331.472,561.224,216.814,432.087,47.759,59.657,47.759,308.290,324.641,345.364,18.500,18.397,18.500 +2376,74.735,206.819,410.196,325.842,566.055,221.072,428.521,52.125,62.148,52.125,299.340,324.766,345.770,17.892,18.658,17.892 +2377,74.768,210.846,404.269,320.254,569.883,225.012,425.518,56.310,65.225,56.310,294.823,324.770,345.899,17.750,18.718,17.750 +2378,74.802,215.922,400.295,315.141,573.061,228.902,422.546,59.744,68.942,59.744,295.412,324.445,346.931,17.707,18.195,17.707 +2379,74.835,221.306,398.065,309.769,575.875,232.770,420.484,62.916,73.061,62.916,296.454,324.312,346.815,17.847,18.608,17.847 +2380,74.868,227.098,395.345,304.890,578.451,237.317,418.338,66.038,77.932,66.038,297.192,325.607,347.514,20.002,18.290,20.002 +2381,74.903,233.521,396.748,300.533,580.110,241.384,417.041,68.819,83.488,68.819,303.323,325.026,346.849,21.528,19.218,21.528 +2382,74.934,237.429,397.829,295.262,581.014,243.375,415.241,71.147,89.349,71.147,310.495,324.081,347.293,19.989,19.931,19.989 +2383,74.967,240.969,397.467,290.678,582.136,245.978,414.282,73.413,96.568,73.413,312.169,324.576,347.259,19.616,19.941,19.616 +2384,75.000,244.973,398.357,287.881,582.594,248.889,413.420,75.426,103.851,75.426,315.955,323.769,347.083,20.053,20.908,20.053 +2385,75.033,248.285,399.875,284.410,581.933,251.018,412.060,77.358,112.380,77.358,321.151,321.679,346.126,19.688,19.853,19.688 +2386,75.066,250.950,399.835,282.324,582.201,253.219,411.607,79.089,121.827,79.089,322.059,320.754,346.037,19.532,21.036,19.532 +2387,75.099,253.492,400.675,279.695,582.082,255.159,410.909,80.744,129.908,80.744,325.046,320.094,345.782,19.191,21.897,19.191 +2388,75.131,255.958,400.528,278.001,582.386,257.311,410.446,82.235,140.013,82.235,326.298,319.329,346.318,19.591,23.183,19.591 +2389,75.164,257.843,400.853,275.692,582.175,258.853,410.087,83.758,149.500,83.758,327.220,318.614,345.797,18.421,23.736,18.421 +2390,75.196,259.873,401.255,273.709,582.546,260.624,410.080,85.135,159.037,85.135,328.197,318.127,345.910,18.444,24.898,18.444 +2391,75.227,262.512,401.330,271.714,582.548,262.984,409.711,86.775,168.623,86.775,329.323,317.717,346.110,18.759,24.921,18.759 +2392,75.258,264.452,402.002,270.077,583.098,264.711,410.044,88.152,178.305,88.152,330.183,316.542,346.275,18.442,25.669,18.442 +2393,75.288,267.000,402.000,268.056,583.740,267.000,409.870,90.000,7.796,90.000,332.000,317.921,347.740,18.000,25.665,18.000 +2394,75.318,268.412,403.429,265.738,583.941,268.311,409.939,90.888,17.324,90.888,335.022,318.857,348.043,18.261,26.441,18.261 +2395,75.349,270.667,404.316,263.207,584.097,270.427,409.977,92.437,27.192,92.437,337.205,319.787,348.539,17.941,25.983,17.941 +2396,75.380,272.811,404.784,260.478,584.699,272.435,410.329,93.879,36.773,93.879,338.443,320.404,349.559,18.026,24.258,18.026 +2397,75.411,274.808,405.064,257.632,584.900,274.278,410.761,95.315,46.515,95.315,338.423,320.525,349.866,18.108,23.525,18.108 +2398,75.441,274.808,405.064,257.632,584.900,274.278,410.761,95.315,46.515,95.315,338.423,320.525,349.866,18.108,23.525,18.108 +2399,75.470,276.957,405.402,255.962,584.192,276.371,410.346,96.761,56.310,96.761,340.123,321.449,350.080,18.479,20.247,18.479 +2400,75.502,279.270,405.313,252.463,584.474,278.447,410.978,98.263,65.450,98.263,339.410,321.851,350.858,18.996,21.651,18.996 +2401,75.534,281.725,406.167,250.268,584.306,280.823,411.337,99.901,75.840,99.901,340.797,323.305,351.294,18.982,20.349,18.982 +2402,75.567,284.214,406.720,248.023,583.838,283.178,411.747,101.646,85.417,101.646,341.023,323.367,351.289,18.818,23.326,18.818 +2403,75.599,287.475,407.037,242.249,582.763,286.193,412.398,103.453,94.635,103.453,340.804,322.536,351.828,17.472,19.261,17.472 +2404,75.632,295.167,388.307,238.414,581.234,288.452,412.684,105.400,104.340,105.400,301.000,321.350,351.571,18.093,18.459,18.093 +2405,75.665,313.768,341.726,235.118,579.500,290.995,412.890,107.745,114.092,107.745,201.990,320.447,351.428,17.525,19.327,17.525 +2406,75.696,305.266,381.642,231.423,577.615,293.747,413.321,109.983,123.690,109.983,283.988,319.507,351.404,17.685,19.137,17.685 +2407,75.728,305.795,392.846,227.869,575.375,297.193,413.906,112.218,133.668,112.218,305.890,317.750,351.388,17.759,18.741,17.759 +2408,75.759,308.144,399.884,224.733,573.331,301.175,415.215,114.444,143.372,114.444,317.470,316.787,351.151,19.531,19.461,19.531 +2409,75.795,309.800,403.900,221.383,571.274,303.683,416.133,116.565,152.554,116.565,323.783,316.136,351.137,19.230,19.537,19.230 +2410,75.828,312.921,407.716,218.033,569.103,307.344,417.584,119.476,162.350,119.476,329.035,314.985,351.705,18.963,20.834,18.963 +2411,75.861,316.210,411.669,214.423,566.475,311.232,419.519,122.381,171.617,122.381,333.313,314.383,351.902,19.444,21.515,19.444 +2412,75.893,319.260,415.163,210.493,564.041,314.556,421.803,125.311,0.785,125.311,336.168,313.149,352.441,19.245,22.121,19.245 +2413,75.924,323.604,418.898,206.697,560.708,318.970,424.659,128.811,10.069,128.811,337.975,313.397,352.760,19.717,23.308,19.717 +2414,75.955,327.260,423.392,202.351,556.415,323.112,427.933,132.417,19.817,132.417,340.315,313.618,352.616,19.768,25.579,19.768 +2415,75.985,331.123,427.747,198.197,552.733,327.193,431.525,136.123,28.811,136.123,343.089,313.247,353.990,19.601,25.104,19.601 +2416,76.016,335.358,432.007,193.292,548.436,330.866,435.771,140.036,37.082,140.036,343.898,313.013,355.618,19.480,24.870,19.480 +2417,76.047,339.014,436.260,190.198,541.851,334.776,439.353,143.881,45.830,143.881,343.922,312.672,354.416,19.693,20.904,19.693 +2418,76.078,343.172,442.279,187.159,535.888,339.181,444.735,148.393,54.878,148.393,345.118,313.432,354.489,20.178,20.559,20.178 +2419,76.109,343.172,442.279,187.159,535.888,339.181,444.735,148.393,54.878,148.393,345.118,313.432,354.489,20.178,20.559,20.178 +2420,76.137,346.632,448.260,183.025,528.995,342.469,450.378,153.041,63.593,153.041,346.175,313.061,355.517,20.908,19.581,20.908 +2421,76.169,350.172,455.431,179.514,521.363,345.848,457.161,158.199,72.440,158.199,347.250,312.776,356.564,20.984,18.646,20.984 +2422,76.200,353.377,463.575,176.721,512.729,348.805,464.899,163.856,81.043,163.856,347.674,312.340,357.194,20.020,18.645,20.020 +2423,76.238,355.663,472.114,174.798,503.467,351.112,472.926,169.875,89.497,169.875,348.628,311.076,357.874,19.794,18.955,19.794 +2424,76.268,356.924,481.846,173.443,493.261,352.387,482.145,176.231,97.651,176.231,349.482,311.782,358.576,18.971,19.615,18.971 +2425,76.300,357.103,492.304,173.396,482.692,352.686,492.098,2.675,106.109,2.675,350.225,311.826,359.068,18.914,19.867,18.914 +2426,76.333,356.539,502.768,174.916,471.665,352.173,502.035,9.522,115.168,9.522,350.821,311.048,359.676,19.572,18.886,19.572 +2427,76.365,354.151,513.999,178.060,460.345,350.050,512.759,16.821,123.147,16.821,351.029,310.644,359.598,19.233,21.051,19.233 +2428,76.398,351.273,522.741,182.624,448.612,347.462,520.982,24.775,132.117,24.775,351.590,310.174,359.986,25.563,18.819,25.563 +2429,76.430,345.770,533.705,188.132,436.729,341.938,531.277,32.347,139.970,32.347,351.980,309.590,361.053,25.147,19.051,25.147 +2430,76.461,338.509,544.808,196.088,425.769,334.852,541.684,40.512,148.405,40.512,351.973,309.350,361.593,25.378,19.026,25.378 +2431,76.493,328.347,555.591,206.211,417.126,325.501,552.229,49.764,156.371,49.764,351.569,308.802,360.379,23.959,18.380,23.959 +2432,76.524,316.727,564.417,217.558,408.619,314.357,560.539,58.570,165.241,58.570,351.126,308.293,360.214,23.086,18.607,23.086 +2433,76.555,304.496,571.309,230.188,402.669,302.760,567.206,67.068,173.571,67.068,350.711,307.659,359.621,21.501,17.915,21.501 +2434,76.586,290.005,576.077,243.487,398.329,288.973,572.088,75.503,2.316,75.503,350.986,307.719,359.227,22.551,17.846,22.551 +2435,76.616,277.164,578.803,258.000,395.500,276.752,574.273,84.806,11.310,84.806,350.373,307.706,359.472,23.358,17.847,23.358 +2436,76.648,259.622,578.589,272.698,395.178,259.870,574.090,93.147,20.225,93.147,349.681,307.826,358.693,23.569,18.125,23.569 +2437,76.679,246.453,575.954,287.752,396.948,247.573,571.136,103.092,28.951,103.092,347.630,308.571,357.523,20.703,19.809,20.703 +2438,76.708,246.453,575.954,287.752,396.948,247.573,571.136,103.092,28.951,103.092,347.630,308.571,357.523,20.703,19.809,20.703 +2439,76.738,233.445,570.652,303.816,398.995,235.885,564.826,112.724,38.784,112.724,345.765,309.535,358.399,19.677,24.582,19.677 +2440,76.771,221.453,563.635,316.856,406.866,224.411,558.850,121.724,46.695,121.724,344.522,309.310,355.773,20.028,25.553,20.028 +2441,76.803,210.594,555.373,329.515,415.851,214.601,550.722,130.746,56.583,130.746,342.089,309.222,354.369,19.709,25.049,19.709 +2442,76.835,201.129,546.318,339.597,426.635,206.209,541.964,139.399,65.659,139.399,339.279,309.213,352.660,19.958,25.251,19.958 +2443,76.866,193.781,535.913,347.165,437.589,199.526,532.292,147.775,75.203,147.775,337.211,311.194,350.793,20.708,23.405,20.708 +2444,76.899,187.587,524.606,353.169,448.925,194.309,521.561,155.630,84.401,155.630,334.596,312.346,349.355,20.709,23.105,20.709 +2445,76.931,183.510,513.376,357.425,459.432,191.126,511.098,163.344,93.633,163.344,332.362,315.698,348.261,20.315,22.795,20.315 +2446,76.963,180.616,502.305,361.293,471.746,189.800,500.819,170.806,102.758,170.806,329.264,317.179,347.871,19.104,24.714,19.104 +2447,76.994,179.583,490.963,362.688,483.567,189.339,490.634,178.067,111.644,178.067,327.455,318.461,346.978,18.099,25.037,18.099 +2448,77.024,179.725,480.745,362.573,495.044,190.067,481.620,4.834,120.964,4.834,325.291,319.502,346.048,19.369,25.039,19.369 +2449,77.055,181.027,470.841,361.389,506.329,191.533,472.962,11.413,130.276,11.413,324.763,321.322,346.199,18.841,24.583,18.841 +2450,77.086,183.812,461.133,358.912,515.598,193.925,464.395,17.879,138.547,17.879,324.226,321.149,345.478,19.034,24.627,19.034 +2451,77.117,187.247,452.710,355.808,524.755,197.058,457.028,23.762,147.219,23.762,323.727,321.752,345.164,19.220,24.417,19.220 +2452,77.149,191.958,444.078,352.132,533.401,201.617,449.229,28.072,155.726,28.072,322.941,322.183,344.835,25.353,24.970,25.353 +2453,77.181,197.038,437.192,347.681,540.868,205.782,443.022,33.690,163.954,33.690,323.668,322.523,344.685,25.239,24.336,25.239 +2454,77.213,202.644,430.825,342.887,547.758,210.596,437.373,39.472,172.006,39.472,323.984,322.575,344.585,25.610,23.687,25.610 +2455,77.249,207.920,426.583,338.001,553.817,214.972,433.383,43.958,179.748,43.958,324.727,322.045,344.320,24.860,22.401,24.860 +2456,77.291,213.008,422.719,332.369,559.526,219.211,429.684,48.311,7.275,48.311,325.788,323.608,344.442,24.375,22.857,24.375 +2457,77.325,218.438,419.307,326.880,564.054,223.622,426.129,52.776,14.715,52.776,327.444,323.309,344.581,23.907,23.047,23.907 +2458,77.357,223.869,416.525,320.888,567.864,227.912,422.776,57.109,21.224,57.109,329.753,324.541,344.642,23.446,23.268,23.446 +2459,77.389,229.367,414.902,314.746,571.939,232.288,420.188,61.074,27.646,61.074,333.329,325.227,345.406,22.710,22.989,22.710 +2460,77.426,234.109,412.847,308.520,575.219,236.507,417.994,65.014,33.766,65.014,334.500,325.055,345.856,21.622,22.389,21.622 +2461,77.458,239.430,410.863,302.394,578.396,241.496,416.275,69.102,39.001,69.102,334.773,324.666,346.358,21.419,22.308,21.419 +2462,77.489,244.052,408.750,296.754,580.661,245.827,414.539,72.962,43.935,72.962,335.395,323.315,347.505,20.356,21.488,20.356 +2463,77.519,249.264,407.251,290.468,582.125,250.619,413.089,76.931,47.911,76.931,335.350,323.700,347.337,19.952,21.497,19.952 +2464,77.551,254.492,406.724,283.320,584.055,255.364,412.155,80.877,51.553,80.877,337.314,323.448,348.316,19.163,20.700,19.163 +2465,77.583,259.705,405.754,276.198,585.155,260.225,411.475,84.806,54.782,84.806,337.336,322.943,348.825,18.288,21.962,18.288 +2466,77.614,265.656,405.559,269.564,585.367,265.746,410.675,88.986,57.508,88.986,339.230,322.893,349.464,18.263,22.034,18.263 +2467,77.645,271.520,404.787,262.022,585.576,271.203,410.718,93.066,59.520,93.066,338.318,322.464,350.197,18.099,22.373,18.099 +2468,77.676,277.443,405.560,254.597,584.946,276.781,410.909,97.055,61.028,97.055,340.108,321.977,350.888,18.478,21.876,18.478 +2469,77.706,277.443,405.560,254.597,584.946,276.781,410.909,97.055,61.028,97.055,340.108,321.977,350.888,18.478,21.876,18.478 +2470,77.736,284.180,406.720,248.383,583.233,283.221,411.418,101.535,62.003,101.535,341.032,321.234,350.622,19.196,20.331,19.196 +2471,77.767,290.302,407.943,241.017,581.225,289.046,412.338,105.945,62.939,105.945,342.028,320.656,351.168,18.681,20.443,18.681 +2472,77.800,297.082,409.281,234.089,578.473,295.428,413.693,110.556,64.191,110.556,342.228,320.224,351.652,18.844,20.189,18.844 +2473,77.832,303.664,411.891,226.764,575.163,301.712,416.001,115.408,64.612,115.408,342.749,319.445,351.849,18.811,20.748,18.811 +2474,77.865,310.812,414.919,219.494,571.193,308.456,418.925,120.466,65.304,120.466,343.405,318.699,352.700,19.165,21.122,19.165 +2475,77.897,317.318,418.655,212.400,566.818,314.556,422.521,125.538,65.587,125.538,344.093,318.796,353.594,19.181,20.743,19.181 +2476,77.927,324.128,424.111,205.402,561.044,321.309,427.354,130.990,65.842,130.990,345.285,318.402,353.878,19.870,20.207,19.870 +2477,77.958,330.725,429.153,199.073,554.189,327.560,432.148,136.577,66.153,136.577,345.703,317.396,354.417,19.662,20.274,19.662 +2478,77.990,337.164,435.212,192.329,545.978,333.342,438.162,142.340,66.304,142.340,345.355,315.160,355.011,20.008,19.870,20.008 +2479,78.020,343.284,442.962,186.697,537.111,339.071,445.548,148.465,66.516,148.465,345.636,313.837,355.522,20.843,19.368,20.843 +2480,78.052,347.393,449.740,182.081,527.110,343.165,451.776,154.281,66.750,154.281,346.251,312.777,355.636,20.788,18.982,20.788 +2481,78.083,352.095,459.277,178.138,516.655,347.426,460.872,161.134,66.801,161.134,346.595,311.721,356.462,20.148,18.908,20.148 +2482,78.115,355.780,469.837,175.300,504.872,350.667,470.907,168.179,66.845,168.179,346.765,310.668,357.211,20.304,18.996,20.304 +2483,78.146,358.167,481.416,174.275,492.456,352.849,481.784,176.042,66.894,176.042,347.107,309.364,357.770,18.848,18.690,18.848 +2484,78.177,358.167,481.416,174.275,492.456,352.849,481.784,176.042,66.894,176.042,347.107,309.364,357.770,18.848,18.690,18.848 +2485,78.205,358.643,493.930,174.758,479.549,353.195,493.572,3.764,67.166,3.764,347.026,308.845,357.946,18.815,19.791,18.815 +2486,78.236,357.368,506.972,176.922,466.251,351.819,505.791,12.011,66.563,12.011,347.248,308.452,358.594,19.354,19.679,19.354 +2487,78.267,353.873,519.551,181.814,452.953,348.944,517.730,20.277,67.380,20.277,347.934,307.769,358.444,19.819,20.000,19.819 +2488,78.300,349.482,530.032,192.397,450.759,348.833,529.669,29.219,66.801,29.219,348.615,284.278,350.103,25.088,20.615,25.088 +2489,78.333,342.685,543.530,200.548,443.434,342.623,543.481,38.333,65.489,38.333,346.839,276.331,346.998,25.120,19.956,25.120 +2490,78.364,332.009,557.367,212.068,435.502,332.427,557.845,48.814,64.983,48.814,343.928,269.438,342.659,23.988,20.842,23.988 +2491,78.397,323.359,572.822,225.478,428.934,321.032,569.052,58.309,65.204,58.309,329.985,262.047,338.846,21.531,19.239,21.531 +2492,78.428,328.810,634.224,240.197,422.322,304.780,578.154,66.801,64.754,66.801,215.343,259.418,337.347,18.908,18.435,18.908 +2493,78.460,288.909,590.282,255.410,416.815,287.151,583.162,76.130,64.093,76.130,323.543,261.243,338.210,23.540,18.941,23.540 +2494,78.492,274.330,585.444,271.400,412.800,274.235,583.149,87.606,63.435,87.606,336.044,263.856,340.638,24.397,20.572,24.397 +2495,78.522,254.504,581.275,286.603,410.692,254.614,580.275,96.275,62.944,96.275,342.116,270.138,344.128,23.518,22.336,23.518 +2496,78.554,241.195,575.816,302.662,413.656,241.291,575.499,106.846,62.546,106.846,344.704,271.062,345.367,18.959,23.404,18.959 +2497,78.585,228.352,568.414,313.647,412.083,229.581,565.934,116.370,61.847,116.370,344.827,287.932,350.362,20.026,24.740,20.026 +2498,78.615,215.538,561.114,326.143,416.654,218.831,556.567,125.910,61.721,125.910,341.293,295.770,352.521,19.885,25.015,19.885 +2499,78.647,205.290,550.800,333.886,419.787,210.075,546.040,135.150,61.139,135.150,340.134,312.853,353.632,19.267,25.055,19.267 +2500,78.677,197.542,539.823,343.845,431.248,202.468,536.260,144.121,60.776,144.121,340.036,314.031,352.194,20.122,24.802,20.122 +2501,78.707,197.542,539.823,343.845,431.248,202.468,536.260,144.121,60.776,144.121,340.036,314.031,352.194,20.122,24.802,20.122 +2502,78.735,191.292,528.975,351.546,443.686,196.718,526.176,152.723,60.119,152.723,338.620,315.294,350.832,21.442,25.049,21.442 +2503,78.768,186.718,516.129,357.288,456.711,192.284,514.204,160.923,59.604,160.923,337.689,316.788,349.468,20.103,24.556,20.103 +2504,78.805,184.000,505.000,361.136,469.717,190.246,503.751,168.690,59.204,168.690,335.751,317.959,348.491,20.396,24.518,20.396 +2505,78.836,182.935,492.887,362.954,482.725,189.456,492.507,176.662,58.782,176.662,334.481,319.170,347.546,18.119,23.790,18.119 +2506,78.868,183.486,482.195,363.133,495.341,190.425,482.683,4.024,58.392,4.024,332.430,320.420,346.341,19.078,23.060,19.078 +2507,78.901,184.722,471.882,361.548,507.281,191.652,473.256,11.217,58.145,11.217,332.408,321.810,346.539,18.823,21.861,18.823 +2508,78.933,187.199,461.865,358.598,518.438,194.308,464.192,18.122,57.829,18.122,331.066,322.570,346.027,19.008,20.834,19.008 +2509,78.967,190.496,451.946,354.982,528.447,198.325,455.242,22.834,58.046,22.834,328.587,323.191,345.576,26.000,20.229,26.000 +2510,79.000,194.665,443.703,350.092,537.677,202.401,448.000,29.055,58.339,29.055,327.615,323.700,345.313,25.059,18.626,25.059 +2511,79.033,198.618,437.166,345.283,545.232,206.536,442.574,34.330,59.100,34.330,325.768,323.790,344.945,25.318,18.630,25.318 +2512,79.065,201.672,430.827,340.027,552.334,210.477,437.981,39.094,60.482,39.094,322.621,324.375,345.311,25.466,18.377,25.466 +2513,79.098,206.500,423.000,334.825,557.815,215.910,432.410,45.000,62.681,45.000,318.905,324.290,345.521,24.749,18.770,24.749 +2514,79.129,209.305,416.786,329.370,563.014,219.949,429.122,49.214,65.556,49.214,313.121,324.587,345.708,23.219,18.538,23.219 +2515,79.160,213.453,412.977,323.886,567.044,223.476,426.084,52.595,69.083,52.595,312.930,324.666,345.931,23.644,18.418,23.644 +2516,79.191,217.831,408.663,318.594,570.621,227.554,423.504,56.768,73.383,56.768,310.414,324.321,345.900,22.354,18.232,22.354 +2517,79.222,222.990,406.418,313.742,573.346,231.352,420.959,60.101,78.288,60.101,312.801,324.204,346.349,22.800,18.604,22.800 +2518,79.253,227.166,404.860,308.678,576.084,234.685,419.577,62.935,84.193,62.935,313.018,324.496,346.070,22.275,18.093,22.275 +2519,79.283,231.233,403.817,304.200,577.489,237.479,417.672,65.731,90.468,65.731,315.839,323.112,346.235,22.106,18.220,22.106 +2520,79.315,235.184,404.022,298.944,578.927,240.078,416.217,68.136,97.510,68.136,319.575,324.444,345.856,21.783,21.343,21.783 +2521,79.347,238.302,403.490,296.185,579.258,242.439,414.963,70.174,104.773,70.174,321.177,322.702,345.570,21.214,20.942,21.214 +2522,79.376,238.302,403.490,296.185,579.258,242.439,414.963,70.174,104.773,70.174,321.177,322.702,345.570,21.214,20.942,21.214 +2523,79.405,241.149,402.808,293.395,579.521,244.685,413.781,72.144,113.448,72.144,322.325,321.849,345.383,20.781,20.460,20.781 +2524,79.437,243.972,402.651,290.977,580.301,246.954,413.089,74.055,122.237,74.055,324.034,320.844,345.745,20.467,21.603,20.467 +2525,79.468,246.412,402.388,288.427,580.806,248.967,412.458,75.763,130.998,75.763,324.985,320.151,345.763,20.196,23.101,20.196 +2526,79.500,248.565,402.647,286.167,581.110,250.660,411.925,77.276,139.545,77.276,326.678,319.439,345.702,19.257,23.069,19.257 +2527,79.533,251.151,402.478,283.879,581.447,252.913,411.433,78.871,148.713,78.871,327.333,319.021,345.586,19.576,24.697,19.576 +2528,79.565,253.236,402.622,282.018,581.957,254.701,411.277,80.395,157.496,80.395,328.134,318.374,345.691,19.098,24.535,19.098 +2529,79.596,255.300,402.100,280.156,582.160,256.523,410.660,81.870,166.675,81.870,328.946,318.479,346.239,18.950,25.377,18.950 +2530,79.627,257.211,402.475,278.181,582.453,258.185,410.655,83.211,175.776,83.211,329.436,317.646,345.912,18.418,24.705,18.418 +2531,79.657,259.671,402.717,276.371,582.986,260.384,410.381,84.685,4.955,84.685,331.291,318.666,346.686,19.127,24.693,19.127 +2532,79.687,261.664,403.194,274.352,583.577,262.145,410.222,86.082,14.381,86.082,333.479,319.187,347.568,18.928,25.781,18.928 +2533,79.719,263.466,404.159,271.682,584.043,263.752,410.503,87.417,23.412,87.417,334.742,320.655,347.442,18.568,25.666,18.568 +2534,79.750,265.395,405.077,269.372,584.747,265.518,410.866,88.781,32.845,88.781,336.264,321.455,347.846,18.272,25.821,18.272 +2535,79.781,267.500,405.000,267.294,585.175,267.500,410.587,90.000,42.149,90.000,338.000,321.013,349.175,17.000,24.499,17.000 +2536,79.813,269.024,405.392,264.549,585.561,268.908,410.740,91.245,51.340,91.245,339.050,321.718,349.749,18.235,23.582,18.235 +2537,79.843,269.024,405.392,264.549,585.561,268.908,410.740,91.245,51.340,91.245,339.050,321.718,349.749,18.235,23.582,18.235 +2538,79.872,270.895,405.263,262.390,585.499,270.644,410.654,92.663,60.611,92.663,339.284,322.214,350.079,18.259,21.983,18.259 +2539,79.904,273.089,405.256,260.786,585.786,272.690,410.843,94.086,69.727,94.086,339.492,323.629,350.694,18.026,20.333,18.026 +2540,79.935,275.099,405.977,257.231,585.860,274.590,411.234,95.528,79.177,95.528,340.410,324.549,350.973,17.981,20.323,17.981 +2541,79.967,277.468,405.571,254.667,585.463,276.782,411.225,96.918,88.203,96.918,339.875,323.437,351.266,17.981,23.271,17.981 +2542,79.999,283.865,376.806,250.386,584.986,278.682,411.416,98.517,97.017,98.517,281.699,323.101,351.692,17.868,19.759,17.868 +2543,80.030,294.320,336.740,247.332,583.244,280.808,411.057,100.305,106.323,100.305,199.726,321.723,350.796,17.710,19.489,17.710 +2544,80.064,290.677,378.211,244.120,582.041,283.277,411.293,102.609,115.787,102.609,282.557,320.315,350.356,17.335,19.232,17.335 +2545,80.096,290.907,390.089,241.030,580.614,285.699,411.352,103.761,125.119,103.761,306.276,319.671,350.058,17.781,19.254,17.781 +2546,80.127,293.501,394.695,238.081,579.058,288.769,411.731,105.524,134.384,105.524,314.214,318.286,349.577,19.003,19.448,19.003 +2547,80.159,295.762,398.863,235.531,577.899,291.591,412.207,107.354,143.616,107.354,321.779,317.404,349.741,19.746,20.042,19.746 +2548,80.190,297.545,401.538,232.865,576.681,293.699,412.585,109.197,152.771,109.197,326.554,316.689,349.949,18.980,21.116,18.980 +2549,80.222,300.517,404.188,229.873,575.614,296.792,413.644,111.501,161.792,111.501,330.126,315.600,350.451,19.200,22.361,19.200 +2550,80.251,304.040,406.808,226.812,573.901,300.521,414.673,114.111,170.665,114.111,333.660,314.992,350.893,19.142,22.966,19.142 +2551,80.283,307.300,408.900,223.000,572.500,303.600,416.300,116.565,0.000,116.565,334.963,314.000,351.510,19.230,23.000,19.230 +2552,80.314,310.354,410.863,219.920,570.529,306.694,417.450,119.055,8.569,119.055,336.842,314.288,351.912,18.746,24.450,18.746 +2553,80.344,313.581,413.907,216.156,567.516,310.301,419.206,121.759,17.850,121.759,338.851,314.372,351.314,19.192,26.249,19.192 +2554,80.374,313.581,413.907,216.156,567.516,310.301,419.206,121.759,17.850,121.759,338.851,314.372,351.314,19.192,26.249,19.192 +2555,80.403,317.738,416.816,211.900,564.700,314.422,421.533,125.096,26.565,125.096,340.633,315.286,352.165,19.040,26.386,19.040 +2556,80.435,321.443,419.848,207.235,562.390,317.789,424.506,128.108,34.196,128.108,341.602,315.389,353.444,19.424,25.153,19.424 +2557,80.468,325.877,423.782,203.058,559.066,322.169,427.941,131.722,42.647,131.722,343.135,314.329,354.280,20.214,24.060,20.214 +2558,80.501,330.067,427.075,200.537,553.671,326.757,430.338,135.406,51.340,135.406,343.645,314.690,352.941,19.578,20.615,19.578 +2559,80.535,334.060,431.570,196.246,549.767,330.610,434.533,139.338,59.534,139.338,344.926,315.721,354.021,19.460,20.636,19.460 +2560,80.568,337.600,435.800,191.234,544.493,333.877,438.593,143.130,67.681,143.130,346.000,314.936,355.309,19.600,19.845,19.600 +2561,80.600,341.857,441.979,186.898,538.288,338.175,444.297,147.804,76.190,147.804,347.488,314.341,356.191,20.122,18.988,20.122 +2562,80.632,345.679,448.385,183.013,531.343,341.889,450.362,152.447,84.060,152.447,348.081,314.735,356.632,20.507,18.639,20.507 +2563,80.664,348.488,454.552,179.148,523.545,344.715,456.112,157.539,92.227,157.539,349.372,313.618,357.539,19.887,18.381,19.887 +2564,80.695,352.200,461.913,176.017,515.093,347.740,463.293,162.808,100.192,162.808,349.384,313.934,358.721,20.495,19.132,20.495 +2565,80.727,354.541,470.727,173.731,505.560,350.135,471.617,168.584,107.928,168.584,350.277,313.697,359.266,20.377,19.309,20.377 +2566,80.758,356.359,480.303,172.409,495.409,351.869,480.678,175.236,115.833,175.236,351.116,312.645,360.126,18.768,19.566,18.768 +2567,80.789,356.581,490.572,172.414,484.612,352.217,490.451,1.591,123.835,1.591,351.059,311.765,359.792,18.604,19.552,18.604 +2568,80.820,355.806,500.934,174.180,473.546,352.001,500.371,8.427,132.634,8.427,351.973,311.002,359.666,19.418,18.754,19.418 +2569,80.850,354.243,512.139,176.758,462.066,350.113,510.976,15.732,139.606,15.732,351.666,310.643,360.246,19.251,21.499,19.251 +2570,80.882,351.196,521.309,180.979,450.030,347.435,519.638,23.962,147.394,23.962,352.528,309.619,360.760,25.587,20.647,25.587 +2571,80.914,346.607,531.549,187.154,439.002,343.206,529.489,31.218,154.716,31.218,352.756,308.323,360.708,25.915,18.657,25.915 +2572,80.944,339.510,543.339,195.100,428.494,336.313,540.711,39.421,162.522,39.421,352.416,308.164,360.692,25.198,18.014,25.198 +2573,80.974,339.510,543.339,195.100,428.494,336.313,540.711,39.421,162.522,39.421,352.416,308.164,360.692,25.198,18.014,25.198 +2574,81.003,329.428,554.172,204.450,417.805,326.563,550.910,48.705,170.889,48.705,352.500,307.765,361.182,24.032,18.686,24.032 +2575,81.034,318.029,563.305,215.604,409.862,315.822,559.830,57.572,178.452,57.572,352.414,307.158,360.647,23.137,17.912,23.137 +2576,81.066,305.685,570.666,228.762,403.114,303.929,566.659,66.337,6.429,66.337,351.178,306.119,359.927,22.188,17.971,22.188 +2577,81.099,292.623,575.236,242.148,398.383,291.564,571.262,75.088,14.281,75.088,351.321,306.570,359.547,22.351,17.902,22.351 +2578,81.131,275.900,578.717,256.496,395.439,275.381,574.322,83.266,22.380,83.266,350.876,306.939,359.726,23.006,18.058,23.006 +2579,81.169,261.155,578.566,271.092,394.840,261.341,573.912,92.283,29.899,92.283,349.321,307.362,358.636,23.420,19.744,23.420 +2580,81.214,235.510,571.473,301.154,398.982,237.563,566.179,111.194,45.955,111.194,346.401,308.397,357.757,19.332,25.158,19.332 +2581,81.247,223.688,565.262,320.272,412.950,225.605,561.939,119.974,54.567,119.974,345.043,289.925,352.716,19.819,24.569,19.819 +2582,81.279,212.391,558.507,333.018,425.752,215.025,555.201,128.556,62.403,128.556,341.088,281.356,349.543,19.956,25.358,19.956 +2583,81.316,202.545,549.691,339.384,431.040,206.895,545.631,136.975,70.821,136.975,338.186,293.205,350.087,19.690,24.269,19.690 +2584,81.347,195.001,539.368,344.673,433.654,201.190,535.050,145.094,78.887,145.094,336.290,311.056,351.383,19.471,23.603,19.471 +2585,81.377,189.544,529.464,350.914,444.250,196.186,526.040,152.726,86.878,152.726,335.065,312.354,350.011,22.165,22.930,22.165 +2586,81.407,189.544,529.464,350.914,444.250,196.186,526.040,152.726,86.878,152.726,335.065,312.354,350.011,22.165,22.930,22.165 +2587,81.436,184.463,518.169,355.442,455.620,191.958,515.466,160.168,95.356,160.168,332.249,313.718,348.184,19.940,22.153,19.940 +2588,81.468,181.356,507.791,360.285,465.866,190.438,505.740,167.276,102.888,167.276,330.297,316.969,348.918,20.138,24.684,20.138 +2589,81.501,179.419,497.119,362.301,477.497,189.290,496.114,174.188,110.898,174.188,328.172,318.348,348.015,19.290,25.071,19.290 +2590,81.534,178.950,486.651,362.864,488.426,189.398,486.818,0.914,118.551,0.914,326.038,319.475,346.938,18.397,24.892,18.397 +2591,81.568,180.042,477.182,362.280,499.184,190.406,478.472,7.091,126.444,7.091,325.344,320.796,346.232,18.850,25.346,18.850 +2592,81.600,181.921,467.393,360.753,508.679,192.244,469.889,13.595,134.045,13.595,324.572,321.123,345.812,19.440,24.910,19.440 +2593,81.631,184.293,460.098,358.665,517.580,194.428,463.497,18.540,141.450,18.540,324.442,321.402,345.820,19.309,25.124,19.309 +2594,81.662,187.593,452.541,355.678,525.615,197.315,456.862,23.962,148.696,23.962,323.997,321.921,345.275,19.190,24.686,19.190 +2595,81.692,191.878,443.727,352.122,533.387,201.522,448.902,28.217,155.847,28.217,323.407,322.367,345.297,25.253,24.996,25.253 +2596,81.723,196.885,436.923,348.182,540.086,205.852,442.901,33.690,162.743,33.690,323.113,322.318,344.668,25.516,24.297,25.516 +2597,81.754,201.215,432.723,343.968,546.006,209.134,438.882,37.875,169.426,37.875,324.336,322.811,344.399,25.435,23.461,25.435 +2598,81.785,204.948,428.621,339.650,551.621,212.577,435.402,41.634,175.948,41.634,323.960,322.388,344.374,25.412,23.317,25.412 +2599,81.817,210.211,424.276,334.977,556.626,216.761,431.117,46.245,2.083,46.245,325.884,322.514,344.824,24.758,22.658,24.758 +2600,81.848,214.457,420.958,330.610,561.254,220.535,428.169,49.874,8.059,49.874,326.540,323.148,345.402,24.217,23.150,24.217 +2601,81.880,218.420,418.431,325.878,565.010,223.776,425.640,53.393,13.910,53.393,327.565,323.311,345.528,23.371,23.700,23.371 +2602,81.912,223.365,416.241,321.422,568.227,227.818,423.065,56.874,18.947,56.874,329.147,323.542,345.444,23.357,23.194,23.357 +2603,81.942,227.927,414.760,316.243,571.212,231.360,420.756,60.205,23.839,60.205,331.672,324.288,345.491,22.829,23.378,22.829 +2604,81.973,227.927,414.760,316.243,571.212,231.360,420.756,60.205,23.839,60.205,331.672,324.288,345.491,22.829,23.378,22.829 +2605,82.003,232.211,413.392,311.431,574.130,234.969,418.945,63.579,28.202,63.579,333.596,324.072,345.996,22.704,23.220,22.704 +2606,82.034,235.930,412.039,306.372,576.201,238.202,417.309,66.677,32.493,66.677,334.318,324.810,345.796,21.649,22.452,21.649 +2607,82.067,240.065,410.967,301.845,578.528,241.922,415.950,69.555,36.132,69.555,335.899,324.448,346.536,21.435,23.065,21.435 +2608,82.100,243.715,408.874,296.846,580.575,245.513,414.602,72.582,39.123,72.582,335.448,323.735,347.456,20.711,22.581,20.711 +2609,82.132,247.531,407.387,291.676,581.804,249.055,413.346,75.660,41.855,75.660,335.227,323.786,347.530,20.229,22.919,20.229 +2610,82.163,251.654,407.269,286.949,583.474,252.756,412.781,78.690,43.885,78.690,336.928,323.293,348.168,19.612,22.034,19.612 +2611,82.195,255.462,406.449,281.785,584.223,256.280,411.980,81.591,45.785,81.591,337.059,322.546,348.242,18.899,21.928,18.899 +2612,82.226,259.535,405.775,276.847,584.681,260.045,411.283,84.710,47.386,84.710,337.353,322.191,348.417,18.403,22.696,18.403 +2613,82.257,264.102,405.572,271.310,585.282,264.311,411.059,87.814,48.462,87.814,337.746,322.385,348.727,18.559,23.832,18.559 +2614,82.287,268.132,404.942,265.830,585.647,268.062,410.795,90.686,49.145,90.686,338.024,322.272,349.732,18.298,24.081,18.298 +2615,82.317,272.811,405.284,260.245,585.365,272.446,410.670,93.879,49.525,93.879,339.441,321.497,350.239,17.959,23.754,17.959 +2616,82.349,277.282,405.486,254.866,585.037,276.620,410.919,96.953,49.713,96.953,339.993,320.972,350.941,18.546,23.824,18.546 +2617,82.380,282.773,406.312,249.105,584.050,281.819,411.482,100.460,49.316,100.460,340.765,320.622,351.279,19.123,24.173,19.123 +2618,82.410,282.773,406.312,249.105,584.050,281.819,411.482,100.460,49.316,100.460,340.765,320.622,351.279,19.123,24.173,19.123 +2619,82.439,287.685,407.052,243.706,582.686,286.399,412.230,103.956,49.185,103.956,340.770,320.171,351.441,19.168,24.253,19.168 +2620,82.470,292.671,407.799,238.000,580.932,290.992,413.150,107.418,49.160,107.418,340.686,319.411,351.903,18.896,24.376,18.896 +2621,82.502,297.609,409.089,232.624,578.502,295.664,414.195,110.854,48.403,110.854,341.043,318.980,351.970,18.912,24.350,18.912 +2622,82.536,302.652,410.928,226.748,575.882,300.468,415.712,114.538,48.145,114.538,342.122,318.215,352.640,19.084,24.021,19.084 +2623,82.568,308.635,413.253,220.762,572.716,306.042,417.993,118.679,47.764,118.679,342.530,316.902,353.336,19.009,24.247,19.009 +2624,82.601,314.035,416.057,214.791,568.875,311.056,420.684,122.779,47.144,122.779,342.414,316.517,353.422,18.783,23.942,18.783 +2625,82.634,319.680,419.260,209.042,564.880,316.236,423.851,126.870,46.582,126.870,342.800,315.640,354.278,19.800,24.376,19.800 +2626,82.667,325.691,423.613,203.258,559.305,321.981,427.795,131.576,46.042,131.576,343.149,314.803,354.330,20.210,23.909,20.210 +2627,82.698,331.106,428.111,197.750,553.750,326.994,432.045,136.264,45.000,136.264,343.664,313.248,355.045,19.581,24.042,19.581 +2628,82.730,336.529,433.536,192.179,547.295,331.947,437.215,141.230,44.370,141.230,344.055,313.299,355.808,19.682,23.792,19.682 +2629,82.762,341.731,439.846,187.040,539.934,336.798,443.134,146.310,43.636,146.310,344.746,312.655,356.602,20.524,24.018,20.524 +2630,82.793,346.422,447.042,183.602,530.343,341.836,449.487,151.928,42.510,151.928,344.941,311.693,355.336,20.471,20.456,20.471 +2631,82.824,349.772,453.553,179.525,521.405,345.025,455.531,157.380,41.448,157.380,345.923,310.607,356.210,20.231,20.530,20.231 +2632,82.854,353.719,462.414,176.479,511.284,348.624,463.931,163.413,40.770,163.413,346.365,310.434,356.998,20.615,19.804,20.615 +2633,82.884,356.745,472.267,174.119,500.439,351.089,473.254,170.096,39.600,170.096,346.535,309.858,358.018,19.827,19.928,19.827 +2634,82.917,358.776,483.214,173.459,489.551,352.435,483.520,177.236,38.367,177.236,345.418,308.424,358.116,18.785,21.202,18.785 +2635,82.948,359.063,494.809,173.815,477.430,352.673,494.329,4.300,37.304,4.300,346.428,308.249,359.244,18.924,21.212,18.924 +2636,82.979,359.158,507.459,184.129,471.961,355.826,506.750,12.011,36.254,12.011,343.544,286.596,350.356,19.562,20.214,19.562 +2637,83.009,359.793,520.797,188.274,459.878,353.268,518.475,19.584,34.592,19.584,336.330,284.917,350.182,19.649,20.552,19.649 +2638,83.039,359.793,520.797,188.274,459.878,353.268,518.475,19.584,34.592,19.584,336.330,284.917,350.182,19.649,20.552,19.649 +2639,83.069,375.687,543.944,192.409,446.345,348.170,528.457,29.373,33.179,29.373,288.873,288.980,352.025,23.134,19.830,23.134 +2640,83.101,351.024,550.234,200.502,434.518,340.057,542.207,36.203,31.176,36.203,325.252,288.483,352.435,18.651,19.218,18.651 +2641,83.134,335.063,552.991,209.846,424.115,332.794,550.692,45.377,29.445,45.377,346.447,287.358,352.907,24.050,19.622,24.050 +2642,83.166,321.267,562.038,212.739,410.662,318.101,557.476,55.235,27.520,55.235,350.266,306.060,361.372,22.741,20.092,22.741 +2643,83.198,308.398,569.648,225.343,403.733,306.122,564.940,64.198,25.887,64.198,350.131,306.320,360.591,22.258,18.615,22.258 +2644,83.230,293.900,575.331,239.107,398.762,292.450,570.640,72.820,24.114,72.820,350.112,306.852,359.931,21.835,17.438,21.835 +2645,83.261,277.926,578.511,254.076,395.587,277.243,573.768,81.811,22.195,81.811,349.744,307.362,359.327,24.267,17.785,24.267 +2646,83.291,262.981,578.545,269.402,394.764,263.065,573.898,91.029,20.266,91.029,349.141,308.374,358.437,24.158,17.867,24.158 +2647,83.322,248.818,576.752,284.868,396.422,249.770,571.776,100.835,18.199,100.835,347.516,309.914,357.650,22.736,18.037,22.736 +2648,83.352,236.216,571.958,299.802,400.451,237.964,567.314,110.630,16.074,110.630,345.977,311.138,355.900,19.136,18.176,19.136 +2649,83.383,224.419,565.454,313.824,406.206,226.869,561.148,119.635,14.036,119.635,345.433,313.113,355.342,20.169,18.433,20.169 +2650,83.414,213.312,557.350,326.554,414.117,216.605,553.219,128.556,11.889,128.556,344.045,314.578,354.613,19.956,18.232,19.956 +2651,83.445,204.393,547.506,337.700,423.236,208.383,543.816,137.238,9.819,137.238,342.752,316.468,353.621,19.664,18.381,19.664 +2652,83.475,204.393,547.506,337.700,423.236,208.383,543.816,137.238,9.819,137.238,342.752,316.468,353.621,19.664,18.381,19.664 +2653,83.504,195.434,539.174,346.772,433.669,201.975,534.693,145.582,7.778,145.582,337.245,317.607,353.101,21.219,18.023,21.219 +2654,83.535,190.469,527.438,353.634,444.186,196.683,524.318,153.334,5.842,153.334,338.531,318.916,352.439,21.439,19.165,21.439 +2655,83.568,185.635,516.383,358.976,455.833,193.131,513.741,160.585,4.198,160.585,335.431,320.971,351.326,21.306,18.720,21.306 +2656,83.601,181.973,506.873,362.309,467.846,191.083,504.898,167.764,3.270,167.764,331.734,321.789,350.378,20.229,19.568,20.229 +2657,83.633,178.302,496.000,363.936,477.702,190.065,495.066,175.462,3.024,175.462,325.801,322.659,349.401,17.864,18.608,17.864 +2658,83.665,158.570,485.862,364.840,488.286,190.365,486.710,1.528,3.294,1.528,285.299,322.790,348.910,17.234,18.186,17.234 +2659,83.695,106.831,467.972,363.892,498.269,191.135,479.012,7.461,3.504,7.461,177.544,322.926,347.590,17.364,19.535,17.364 +2660,83.726,154.489,462.794,362.487,506.730,192.648,471.296,12.562,3.167,12.562,268.773,323.667,346.961,17.962,19.520,17.962 +2661,83.757,170.899,456.936,360.414,515.026,194.564,464.520,17.771,2.426,17.771,297.002,323.557,346.703,18.618,20.101,18.618 +2662,83.788,181.307,451.234,357.441,523.815,197.175,458.158,23.575,1.450,23.575,311.673,323.226,346.299,20.514,20.183,20.514 +2663,83.818,189.516,442.470,353.504,531.726,201.730,449.047,28.301,178.919,28.301,317.918,323.225,345.662,25.398,20.789,25.398 +2664,83.849,194.174,439.346,349.106,538.548,204.076,445.422,31.535,176.088,31.535,321.403,323.160,344.638,25.473,21.659,25.473 +2665,83.881,199.437,434.085,345.012,545.089,208.058,440.438,36.384,172.661,36.384,323.251,323.254,344.669,25.380,22.917,25.380 +2666,83.911,205.378,428.578,340.070,550.856,212.633,435.091,41.915,168.930,41.915,324.832,322.601,344.329,25.571,23.767,25.571 +2667,83.941,205.378,428.578,340.070,550.856,212.633,435.091,41.915,168.930,41.915,324.832,322.601,344.329,25.571,23.767,25.571 +2668,83.969,208.750,425.250,335.299,556.120,215.605,432.105,45.000,165.069,45.000,325.269,322.207,344.657,24.749,24.864,24.749 +2669,84.001,213.562,421.447,330.237,560.191,219.577,428.402,49.145,161.046,49.145,325.747,321.622,344.139,24.183,24.781,24.183 +2670,84.033,217.997,418.126,325.199,563.966,223.558,425.508,53.011,156.879,53.011,325.010,321.040,343.494,23.828,25.121,23.828 +2671,84.065,221.991,415.181,320.166,567.284,227.146,422.940,56.404,152.592,56.404,324.779,320.348,343.409,23.216,25.252,23.216 +2672,84.097,225.930,412.666,315.146,570.042,230.491,420.485,59.744,148.223,59.744,325.573,320.550,343.678,22.962,24.796,22.962 +2673,84.129,229.623,410.421,310.268,572.372,233.727,418.380,62.719,144.181,62.719,325.982,320.397,343.892,22.376,24.848,22.376 +2674,84.160,232.800,408.558,305.443,574.934,236.571,416.906,65.695,139.497,65.695,326.418,320.086,344.738,21.226,24.269,21.226 +2675,84.192,236.849,406.878,301.000,577.000,240.247,415.509,68.508,135.000,68.508,326.490,319.612,345.041,21.814,24.042,21.814 +2676,84.223,240.224,405.065,296.460,578.614,243.427,414.396,71.053,130.440,71.053,325.349,320.737,345.080,21.020,23.429,21.020 +2677,84.253,243.950,403.330,291.694,579.779,246.858,413.146,73.496,125.858,73.496,324.535,320.849,345.011,21.307,22.196,21.307 +2678,84.284,246.596,401.232,287.290,580.978,249.347,412.319,76.068,121.185,76.068,322.821,321.375,345.666,20.096,21.185,20.096 +2679,84.315,249.788,399.533,283.114,582.065,252.286,411.782,78.476,116.147,78.476,321.017,321.153,346.018,19.654,20.206,19.654 +2680,84.345,252.764,396.712,278.791,583.111,255.150,411.351,80.744,110.854,80.744,316.989,321.998,346.652,19.030,19.980,19.030 +2681,84.375,252.764,396.712,278.791,583.111,255.150,411.351,80.744,110.854,80.744,316.989,321.998,346.652,19.030,19.980,19.030 +2682,84.403,255.737,393.104,275.211,584.484,257.984,411.451,83.019,106.086,83.019,310.720,323.613,347.689,18.576,19.785,18.576 +2683,84.435,258.634,386.614,272.283,585.262,260.698,411.376,85.236,101.535,85.236,298.798,323.615,348.494,18.104,20.056,18.104 +2684,84.469,261.851,370.853,268.965,586.118,263.637,411.486,87.483,96.981,87.483,268.049,324.474,349.395,17.807,20.338,17.807 +2685,84.502,266.500,329.000,264.569,586.388,266.500,411.194,90.000,91.866,90.000,186.000,323.480,350.388,17.000,21.184,17.000 +2686,84.536,270.118,397.342,262.177,586.392,269.672,411.166,91.848,87.691,91.848,323.090,323.423,350.752,17.797,20.967,17.797 +2687,84.569,273.188,403.766,259.161,585.980,272.677,410.997,94.044,83.019,94.044,336.503,324.474,351.002,17.915,20.135,17.915 +2688,84.601,276.165,405.410,255.998,585.399,275.549,410.984,96.307,78.507,96.307,339.799,323.994,351.014,18.404,20.416,18.404 +2689,84.635,279.626,405.924,252.549,584.632,278.845,411.178,98.452,73.724,98.452,340.248,322.961,350.870,18.766,19.843,18.766 +2690,84.667,282.966,406.440,247.952,583.823,281.991,411.531,100.848,68.629,100.848,340.870,321.684,351.239,18.996,21.904,18.996 +2691,84.698,287.161,407.442,244.766,582.381,286.080,411.873,103.707,63.962,103.707,341.762,320.746,350.884,18.956,20.686,18.956 +2692,84.730,290.757,408.057,241.041,580.909,289.521,412.309,106.209,59.439,106.209,342.005,320.539,350.861,18.859,20.355,18.859 +2693,84.762,294.481,408.462,237.053,579.053,292.993,412.834,108.800,54.819,108.800,341.519,319.821,350.756,18.611,20.688,18.611 +2694,84.794,298.600,409.352,231.245,578.137,296.547,414.539,111.595,49.808,111.595,341.142,318.567,352.299,19.003,24.273,19.003 +2695,84.824,302.307,410.784,226.456,576.075,299.984,415.927,114.305,45.616,114.305,341.147,317.571,352.434,18.962,24.633,18.962 +2696,84.855,307.423,412.198,222.107,573.297,304.763,417.281,117.618,40.815,117.618,341.638,316.834,353.112,19.042,24.666,19.042 +2697,84.885,311.735,414.043,217.285,569.975,308.704,419.121,120.838,36.254,120.838,340.950,316.433,352.778,18.813,24.784,18.813 +2698,84.917,316.142,416.420,212.600,566.427,312.868,421.260,124.077,31.866,124.077,341.155,315.659,352.842,18.977,24.698,18.977 +2699,84.948,321.170,419.346,207.883,562.217,317.627,423.915,127.794,28.369,127.794,341.520,314.795,353.084,19.368,24.849,19.368 +2700,84.978,326.506,423.071,203.128,557.710,322.519,427.544,131.716,23.728,131.716,341.238,313.330,353.221,20.200,25.381,20.200 +2701,85.009,326.506,423.071,203.128,557.710,322.519,427.544,131.716,23.728,131.716,341.238,313.330,353.221,20.200,25.381,20.200 +2702,85.038,331.508,426.603,198.273,552.744,326.853,431.135,135.771,19.822,135.771,340.928,312.339,353.921,19.493,23.705,19.493 +2703,85.069,336.973,430.662,193.413,546.995,331.155,435.533,140.064,15.366,140.064,339.157,311.799,354.332,19.561,22.354,19.561 +2704,85.102,342.700,434.161,188.619,540.881,334.826,439.848,144.162,11.222,144.162,335.936,311.032,355.362,19.727,21.634,19.727 +2705,85.135,349.511,440.036,184.198,533.470,339.313,446.112,149.216,7.368,149.216,332.198,310.586,355.939,20.289,19.741,20.289 +2706,85.169,356.804,444.601,180.456,526.084,342.513,451.623,153.831,4.289,153.831,324.725,310.154,356.570,20.232,19.246,20.232 +2707,85.202,365.167,451.235,176.619,518.140,345.643,458.738,158.978,2.036,158.978,316.334,309.480,358.165,20.609,19.494,20.609 +2708,85.235,375.411,458.958,174.512,509.186,348.531,466.037,165.245,0.251,165.245,302.949,309.041,358.540,18.290,18.956,18.290 +2709,85.268,400.276,466.251,172.998,500.305,350.604,474.360,170.727,179.412,170.727,258.274,308.138,358.932,18.147,19.358,18.147 +2710,85.301,428.868,478.449,171.900,491.625,351.691,483.219,176.464,178.303,176.464,205.288,308.102,359.935,17.725,19.725,17.725 +2711,85.332,361.622,492.845,172.036,480.208,351.935,492.399,2.632,178.290,2.632,341.145,308.400,360.539,17.682,18.648,17.682 +2712,85.362,357.709,502.710,173.910,470.066,351.522,501.706,9.211,178.249,9.211,348.235,308.223,360.772,19.048,19.794,19.048 +2713,85.393,353.987,513.336,176.567,461.115,349.501,512.024,16.302,176.583,16.302,351.195,307.646,360.543,19.232,19.905,19.232 +2714,85.424,351.439,521.270,181.125,449.482,347.405,519.473,24.004,175.170,24.004,351.911,307.439,360.743,26.000,19.901,26.000 +2715,85.454,346.028,532.955,187.562,437.517,342.301,530.626,32.005,173.173,32.005,352.343,307.355,361.133,25.334,18.600,25.334 +2716,85.486,338.631,543.899,195.797,426.784,335.427,541.180,40.314,170.538,40.314,352.556,307.755,360.961,25.787,17.919,25.787 +2717,85.518,328.325,555.453,205.942,418.047,325.724,552.385,49.720,167.823,49.720,351.811,307.727,359.856,23.960,17.518,23.960 +2718,85.551,316.692,564.442,217.873,410.176,314.712,561.199,58.601,165.141,58.601,351.122,308.491,358.719,23.068,17.793,23.068 +2719,85.582,304.044,571.607,231.047,403.411,302.523,567.956,67.380,162.939,67.380,350.846,308.792,358.756,21.462,17.501,21.462 +2720,85.612,289.941,576.765,245.579,398.565,288.878,572.510,75.964,160.612,75.964,349.736,309.913,358.507,22.798,17.923,22.798 +2721,85.642,289.941,576.765,245.579,398.565,288.878,572.510,75.964,160.612,75.964,349.736,309.913,358.507,22.798,17.923,22.798 +2722,85.670,276.873,579.320,260.119,394.818,276.463,573.916,85.668,159.513,85.668,348.804,310.981,359.642,23.539,17.428,23.539 +2723,85.702,258.992,579.277,275.087,393.622,259.381,573.173,93.644,157.479,93.644,348.142,312.000,360.373,23.462,18.745,23.462 +2724,85.735,246.219,576.201,289.657,395.343,247.639,570.127,103.151,155.333,103.151,347.046,313.396,359.521,20.941,18.592,20.941 +2725,85.768,233.463,571.277,303.700,399.400,235.998,565.177,112.567,153.435,112.567,344.920,314.838,358.131,19.512,18.336,19.512 +2726,85.801,221.479,564.879,316.871,405.688,225.180,558.797,121.320,151.645,121.320,342.682,315.956,356.920,19.681,18.411,19.681 +2727,85.833,211.038,556.693,328.084,413.146,215.746,551.083,130.009,149.942,130.009,341.105,317.292,355.751,19.260,20.107,19.260 +2728,85.866,200.830,548.742,337.993,422.311,207.744,542.634,138.545,148.688,138.545,336.101,318.618,354.552,19.049,18.406,19.049 +2729,85.897,166.278,555.889,346.070,432.110,201.106,533.239,146.962,147.465,146.962,270.229,319.666,353.320,17.798,18.169,17.798 +2730,85.929,131.367,554.304,352.827,443.246,196.136,523.165,154.323,145.827,154.323,207.964,319.554,351.694,17.193,18.475,17.193 +2731,85.959,164.686,522.470,357.405,454.445,192.319,513.028,161.136,144.841,161.136,291.915,320.490,350.320,18.555,20.318,18.555 +2732,85.990,170.495,508.749,361.062,466.584,190.606,504.535,168.163,143.493,168.163,308.138,321.006,349.233,20.096,21.303,20.096 +2733,86.019,173.830,496.403,363.042,478.332,189.639,495.065,175.161,141.976,175.161,316.661,321.167,348.392,18.901,22.430,18.901 +2734,86.050,175.915,485.600,363.583,489.224,189.741,485.979,1.569,141.147,1.569,320.072,321.387,347.733,18.623,23.622,18.623 +2735,86.082,178.580,476.079,362.794,499.645,190.705,477.732,7.765,140.092,7.765,322.470,321.503,346.944,18.646,24.379,18.646 +2736,86.112,181.371,467.612,360.642,509.087,192.160,470.211,13.545,139.070,13.545,323.606,321.469,345.801,18.905,24.219,18.905 +2737,86.142,181.371,467.612,360.642,509.087,192.160,470.211,13.545,139.070,13.545,323.606,321.469,345.801,18.905,24.219,18.905 +2738,86.170,184.482,459.982,358.287,517.886,194.335,463.346,18.853,138.390,18.853,324.736,321.306,345.560,19.319,25.200,19.319 +2739,86.202,188.554,451.371,355.042,526.090,197.780,455.233,22.714,137.406,22.714,324.849,321.337,344.852,26.086,25.243,26.086 +2740,86.235,192.891,444.271,351.487,533.457,201.499,448.889,28.217,136.637,28.217,324.761,321.259,344.298,25.253,25.647,25.253 +2741,86.267,197.184,437.706,347.326,539.870,205.240,443.049,33.551,135.929,33.551,324.516,320.495,343.850,24.976,25.231,24.976 +2742,86.300,200.546,434.402,343.000,545.500,207.914,439.831,36.384,135.000,36.384,324.565,320.319,342.869,26.185,24.749,26.185 +2743,86.331,203.735,430.134,338.679,550.688,210.843,436.160,40.292,134.661,40.292,324.503,321.038,343.142,25.254,24.928,25.254 +2744,86.361,209.000,425.500,334.313,555.289,215.401,431.901,45.000,134.136,45.000,324.562,321.118,342.666,24.749,24.643,24.749 +2745,86.392,212.388,422.258,329.943,559.403,218.544,429.137,48.180,133.746,48.180,324.258,320.568,342.720,24.318,24.913,24.318 +2746,86.423,216.567,419.287,325.547,562.961,222.079,426.265,51.694,133.375,51.694,325.023,320.612,342.807,23.878,24.623,23.878 +2747,86.453,219.809,416.444,321.564,566.059,225.160,423.988,54.652,132.856,54.652,324.810,320.704,343.308,23.436,24.531,23.436 +2748,86.485,223.365,414.359,317.187,568.600,228.201,421.959,57.529,132.814,57.529,324.963,320.761,342.980,23.086,24.240,23.086 +2749,86.518,226.700,412.667,313.306,570.781,231.069,420.293,60.191,132.571,60.191,325.337,320.781,342.915,22.840,23.806,22.840 +2750,86.551,229.639,410.653,309.549,572.922,233.792,418.694,62.681,132.558,62.681,325.490,320.661,343.590,22.459,24.489,22.459 +2751,86.582,232.436,408.863,306.168,574.653,236.344,417.238,64.983,132.330,64.983,325.863,320.663,344.348,22.050,23.906,22.050 +2752,86.612,235.235,407.559,302.459,575.963,238.802,416.030,67.166,132.302,67.166,325.822,320.730,344.205,21.731,23.187,21.731 +2753,86.642,235.235,407.559,302.459,575.963,238.802,416.030,67.166,132.302,67.166,325.822,320.730,344.205,21.731,23.187,21.731 +2754,86.670,237.589,406.450,299.518,577.474,240.917,415.229,69.239,132.479,69.239,326.186,320.174,344.964,20.914,23.778,20.914 +2755,86.702,240.415,405.501,296.458,578.539,243.449,414.351,71.075,132.678,71.075,326.297,320.095,345.010,21.000,23.688,21.000 +2756,86.736,242.751,404.344,293.153,579.144,245.517,413.320,72.872,133.169,72.872,326.213,320.082,344.997,20.610,23.384,20.610 +2757,86.769,245.106,403.509,290.235,580.174,247.681,412.882,74.634,133.531,74.634,325.733,319.942,345.174,20.293,23.272,20.293 +2758,86.803,247.416,402.655,287.792,580.782,249.768,412.300,76.293,133.939,76.293,325.530,319.793,345.387,20.260,23.069,20.260 +2759,86.835,249.413,402.263,285.383,581.385,251.474,411.807,77.811,134.506,77.811,326.299,319.686,345.828,19.729,22.870,19.729 +2760,86.868,251.373,401.240,282.567,581.551,253.259,411.185,79.261,135.481,79.261,325.440,319.660,345.686,19.311,22.567,19.311 +2761,86.902,253.330,400.782,280.157,582.118,255.006,410.989,80.676,136.308,80.676,325.199,319.787,345.886,19.368,22.492,19.368 +2762,86.935,255.260,400.184,277.915,582.312,256.700,410.482,82.038,137.586,82.038,325.427,319.378,346.224,18.928,22.896,18.928 +2763,86.968,257.093,400.200,275.868,582.408,258.291,410.547,83.400,137.891,83.400,324.652,319.462,345.484,18.611,22.884,18.611 +2764,87.001,259.351,400.181,273.697,582.639,260.298,410.134,84.560,140.004,84.560,326.001,319.329,345.997,19.151,23.184,19.151 +2765,87.033,261.095,399.811,271.815,582.768,261.823,409.817,85.840,141.470,85.840,326.374,318.910,346.439,18.968,23.106,18.968 +2766,87.067,262.860,399.776,270.074,582.928,263.375,409.818,87.064,143.054,87.064,326.340,319.002,346.451,18.642,23.210,18.642 +2767,87.098,264.591,399.907,268.069,583.017,264.894,409.968,88.277,144.819,88.277,326.003,318.615,346.133,18.413,23.448,18.413 +2768,87.130,266.211,399.469,266.182,583.006,266.309,409.486,89.438,145.886,89.438,326.984,318.695,347.021,18.136,23.556,18.136 +2769,87.161,267.740,399.510,264.493,583.130,267.682,409.559,90.331,148.650,90.331,327.075,318.320,347.174,18.063,23.549,18.063 +2770,87.193,269.656,399.547,262.719,583.175,269.370,409.559,91.637,150.739,91.637,327.438,318.117,347.470,17.964,23.629,17.964 +2771,87.224,271.573,399.604,260.666,582.854,271.081,409.389,92.880,153.122,92.880,327.944,317.957,347.538,18.103,23.753,18.103 +2772,87.254,273.155,400.214,258.839,582.846,272.528,409.464,93.879,155.556,93.879,329.278,317.635,347.821,18.094,24.083,18.094 +2773,87.284,275.017,400.313,256.686,582.487,274.216,409.321,95.080,157.981,95.080,329.988,317.348,348.076,18.195,23.436,18.195 +2774,87.316,276.881,400.704,254.834,582.449,275.913,409.615,96.195,160.626,96.195,330.270,317.004,348.198,18.758,23.792,18.758 +2775,87.346,278.899,400.943,252.849,582.169,277.766,409.629,97.431,163.399,97.431,331.108,316.857,348.627,19.185,24.107,19.185 +2776,87.375,278.899,400.943,252.849,582.169,277.766,409.629,97.431,163.399,97.431,331.108,316.857,348.627,19.185,24.107,19.185 +2777,87.405,281.022,400.967,250.794,581.677,279.646,409.877,98.783,165.964,98.783,330.351,316.509,348.381,19.163,23.526,19.163 +2778,87.436,283.085,401.696,248.384,581.389,281.516,410.392,100.229,169.249,100.229,330.652,316.360,348.326,19.075,24.263,19.075 +2779,87.468,285.437,402.301,246.202,580.803,283.698,410.608,101.821,172.278,101.821,331.560,316.074,348.534,19.007,23.850,19.007 +2780,87.502,287.764,402.802,243.547,580.085,285.849,410.822,103.431,175.389,103.431,332.429,315.990,348.919,18.785,23.504,18.785 +2781,87.535,290.838,403.554,241.440,579.821,288.649,411.528,105.350,178.409,105.350,333.033,315.212,349.573,19.192,24.213,19.192 +2782,87.568,292.927,404.239,238.484,579.015,290.578,411.958,106.928,1.790,106.928,333.838,315.440,349.975,18.967,24.238,18.967 +2783,87.600,295.792,405.110,235.496,577.544,293.295,412.447,108.800,5.042,108.800,334.329,315.041,349.830,18.933,23.966,18.933 +2784,87.631,298.667,406.323,232.593,576.335,296.032,413.257,110.807,8.000,110.807,335.120,315.489,349.954,18.976,24.939,18.976 +2785,87.662,301.102,407.378,229.329,575.319,298.357,413.948,112.671,11.768,112.671,336.773,315.028,351.015,19.261,25.046,19.261 +2786,87.693,304.218,409.032,226.077,573.490,301.365,415.165,114.944,16.026,114.944,337.089,315.243,350.617,19.231,25.480,19.231 +2787,87.723,307.909,410.775,222.307,571.874,304.886,416.579,117.512,20.283,117.512,338.672,315.289,351.759,19.106,25.244,19.106 +2788,87.754,311.199,413.036,218.085,569.299,308.151,418.292,120.114,22.834,120.114,339.473,316.266,351.626,19.100,26.291,19.100 +2789,87.785,314.992,415.320,214.642,567.272,311.781,420.260,123.024,27.588,123.024,340.618,315.315,352.402,18.865,25.248,18.865 +2790,87.817,318.911,417.935,210.489,564.849,315.399,422.764,126.027,31.065,126.027,341.287,314.541,353.228,19.189,25.119,19.189 +2791,87.848,322.651,420.622,205.953,561.567,318.809,425.363,129.019,34.992,129.019,341.542,314.667,353.747,19.772,24.577,19.772 +2792,87.879,327.108,424.100,201.788,558.263,322.978,428.589,132.614,38.911,132.614,342.767,313.928,354.967,19.723,24.637,19.723 +2793,87.909,327.108,424.100,201.788,558.263,322.978,428.589,132.614,38.911,132.614,342.767,313.928,354.967,19.723,24.637,19.723 +2794,87.938,331.296,427.831,197.715,553.806,326.925,432.017,136.240,42.987,136.240,343.004,313.378,355.109,19.641,23.873,19.641 +2795,87.969,335.382,432.155,193.131,548.879,330.782,435.995,140.145,47.186,140.145,344.038,313.123,356.023,19.592,24.542,19.592 +2796,88.001,339.522,436.922,190.936,541.981,335.590,439.747,144.293,51.878,144.293,344.574,313.182,354.257,19.412,20.104,19.412 +2797,88.033,343.544,442.890,187.420,535.876,339.639,445.276,148.570,56.133,148.570,345.105,313.681,354.258,21.048,20.084,21.048 +2798,88.066,346.601,447.696,183.337,529.809,342.205,449.951,152.845,60.422,152.845,345.728,313.792,355.608,20.419,19.157,20.419 +2799,88.098,350.265,454.417,179.736,521.656,345.564,456.313,158.029,64.954,158.029,346.325,312.211,356.462,20.386,19.186,20.386 +2800,88.129,353.358,462.526,177.057,513.222,348.628,463.943,163.322,69.274,163.322,347.117,311.324,356.992,20.311,18.908,20.311 +2801,88.161,356.016,471.084,175.095,503.826,350.952,472.045,169.256,73.720,169.256,347.089,311.001,357.398,19.700,19.020,19.700 +2802,88.192,357.975,480.682,174.025,493.970,352.676,481.092,175.570,78.152,175.570,347.592,310.301,358.223,18.782,19.266,18.782 +2803,88.223,358.386,491.029,173.984,483.373,352.986,490.854,1.848,82.632,1.848,347.497,310.108,358.302,18.668,19.211,18.668 +2804,88.253,357.455,501.301,175.538,472.450,352.567,500.566,8.552,87.230,8.552,348.599,309.654,358.484,19.584,19.171,19.584 +2805,88.284,355.253,512.601,178.467,461.485,350.711,511.324,15.701,91.621,15.701,349.171,309.159,358.608,19.156,18.577,19.156 +2806,88.317,353.022,520.613,182.272,449.777,348.454,518.650,23.256,95.711,23.256,349.801,308.760,359.746,25.877,18.806,25.877 +2807,88.347,347.750,532.250,188.085,438.454,343.396,529.638,30.964,99.972,30.964,350.029,308.932,360.183,25.039,18.680,25.039 +2808,88.377,347.750,532.250,188.085,438.454,343.396,529.638,30.964,99.972,30.964,350.029,308.932,360.183,25.039,18.680,25.039 +2809,88.405,340.970,544.077,195.711,427.935,336.557,540.490,39.111,104.265,39.111,349.202,308.508,360.576,24.255,18.299,24.255 +2810,88.437,331.061,554.997,205.495,418.354,327.315,550.822,48.094,108.901,48.094,348.687,308.947,359.905,23.262,18.598,23.262 +2811,88.469,320.225,563.693,215.913,409.386,317.024,558.832,56.634,112.932,56.634,349.203,309.374,360.845,23.120,18.207,23.120 +2812,88.502,307.864,571.138,228.375,402.491,305.278,565.547,65.179,117.408,65.179,348.234,309.925,360.553,21.896,18.478,21.896 +2813,88.535,293.982,576.208,241.127,397.195,292.169,570.119,73.421,121.651,73.421,347.895,310.592,360.600,21.941,18.238,21.941 +2814,88.567,278.439,580.082,255.179,393.995,277.418,573.096,81.690,126.119,81.690,346.747,311.065,360.868,24.148,18.536,24.148 +2815,88.599,264.270,579.994,269.508,393.007,264.324,573.015,90.442,130.855,90.442,346.129,311.703,360.087,22.084,18.480,22.084 +2816,88.630,250.834,578.135,283.558,394.073,251.954,571.482,99.554,135.754,99.554,346.893,313.230,360.387,22.525,18.727,22.525 +2817,88.661,239.100,574.200,297.306,396.868,241.385,567.345,108.435,140.332,108.435,344.372,314.587,358.824,19.290,18.136,19.290 +2818,88.691,227.664,568.331,309.912,401.873,230.690,562.307,116.669,145.491,116.669,344.366,315.093,357.849,19.736,18.026,19.736 +2819,88.721,217.037,561.871,321.161,407.798,221.267,555.758,124.681,151.699,124.681,342.157,316.360,357.025,19.728,18.896,19.728 +2820,88.753,208.522,553.564,331.603,416.259,212.967,548.694,132.391,158.409,132.391,342.400,317.723,355.587,19.548,18.731,19.548 +2821,88.785,200.828,545.886,340.459,424.819,206.537,541.037,139.652,165.826,139.652,339.636,318.703,354.617,20.315,19.530,20.315 +2822,88.817,193.958,537.936,347.793,433.903,201.306,533.088,146.585,173.047,146.585,336.182,319.148,353.789,20.455,17.868,20.455 +2823,88.849,190.394,528.319,353.450,443.609,197.037,524.912,152.845,1.353,152.845,337.628,319.265,352.559,21.309,17.570,21.309 +2824,88.879,187.035,519.589,357.816,453.055,193.940,516.885,158.620,9.866,158.620,336.906,320.579,351.737,21.821,18.334,21.821 +2825,88.910,187.035,519.589,357.816,453.055,193.940,516.885,158.620,9.866,158.620,336.906,320.579,351.737,21.821,18.334,21.821 +2826,88.938,184.687,511.656,360.715,462.767,191.851,509.615,164.103,19.093,164.103,335.579,320.677,350.477,20.751,18.863,20.751 +2827,88.969,183.486,503.923,362.818,470.975,190.615,502.596,169.452,28.217,169.452,335.658,320.699,350.162,20.530,20.589,20.530 +2828,89.001,182.488,496.378,363.419,479.882,189.732,495.672,174.437,38.019,174.437,334.243,321.339,348.800,19.421,20.726,19.421 +2829,89.033,182.975,488.770,363.393,487.135,189.680,488.710,179.484,47.070,179.484,334.031,322.009,347.441,18.008,21.267,18.008 +2830,89.064,183.028,483.487,363.209,494.514,190.016,483.869,3.132,56.976,3.132,333.034,321.208,347.031,19.011,21.925,19.011 +2831,89.096,184.180,478.005,362.773,500.532,190.762,478.799,6.882,66.552,6.882,333.494,320.655,346.752,18.829,23.411,18.829 +2832,89.127,183.868,472.987,361.322,506.061,191.110,474.310,10.359,76.201,10.359,331.570,320.407,346.294,18.786,23.665,18.786 +2833,89.158,184.677,467.763,360.027,510.895,192.100,469.598,13.885,86.055,13.885,330.567,320.411,345.861,19.176,24.150,19.176 +2834,89.188,185.201,463.635,358.775,515.134,193.202,466.008,16.516,96.009,16.516,328.726,320.335,345.416,19.175,24.706,19.175 +2835,89.221,185.750,460.750,357.214,518.560,193.880,463.460,18.435,105.751,18.435,327.612,320.446,344.752,19.290,24.802,19.290 +2836,89.252,186.633,457.151,356.311,521.392,195.086,460.378,20.898,115.769,20.898,326.671,320.658,344.766,19.262,24.998,19.262 +2837,89.284,187.084,455.525,355.507,524.368,195.977,459.133,22.083,125.972,22.083,325.510,321.292,344.704,19.136,25.506,19.136 +2838,89.315,187.964,452.702,354.962,525.999,197.039,456.750,24.037,136.081,24.037,324.999,321.156,344.872,19.389,25.505,19.389 +2839,89.345,189.712,447.974,354.623,527.658,199.154,452.383,25.032,145.886,25.032,324.592,321.473,345.434,25.977,24.864,25.977 +2840,89.375,189.712,447.974,354.623,527.658,199.154,452.383,25.032,145.886,25.032,324.592,321.473,345.434,25.977,24.864,25.977 +2841,89.404,189.656,446.644,354.413,528.701,199.802,451.549,25.800,156.176,25.800,323.015,321.863,345.555,25.960,24.165,25.960 +2842,89.436,189.668,445.631,354.252,529.085,200.403,450.925,26.250,166.293,26.250,321.166,322.568,345.105,26.390,22.937,26.390 +2843,89.467,188.397,444.689,354.599,529.526,200.752,450.829,26.429,176.309,26.429,317.998,322.265,345.590,26.388,21.729,26.388 +2844,89.499,185.240,443.540,354.914,528.762,200.526,451.284,26.867,6.445,26.867,311.202,323.781,345.474,28.569,19.986,28.569 +2845,89.530,172.828,441.898,355.536,528.593,199.516,453.399,23.313,16.243,23.313,287.958,324.161,346.079,22.954,19.345,22.954 +2846,89.561,145.739,431.656,355.888,527.712,198.353,455.970,24.803,26.806,24.803,230.275,324.274,346.197,17.626,19.974,17.626 +2847,89.592,187.636,452.677,355.329,528.231,197.568,457.076,23.890,36.823,23.890,324.398,325.205,346.123,18.391,21.034,18.391 +2848,89.622,189.586,453.034,356.030,526.504,197.789,456.316,21.801,46.897,21.801,328.309,324.688,345.980,25.626,19.442,25.626 +2849,89.652,187.735,458.179,356.673,524.180,195.578,461.096,20.403,57.155,20.403,329.226,323.433,345.961,19.071,20.312,19.071 +2850,89.683,187.053,461.326,357.654,520.409,194.315,463.734,18.346,67.659,18.346,330.450,322.171,345.753,19.283,22.059,19.283 +2851,89.713,186.386,463.852,358.444,516.801,193.450,465.959,16.607,78.071,16.607,330.542,321.068,345.285,19.166,23.358,19.166 +2852,89.743,186.386,463.852,358.444,516.801,193.450,465.959,16.607,78.071,16.607,330.542,321.068,345.285,19.166,23.358,19.166 +2853,89.772,184.529,467.382,359.222,512.442,192.098,469.274,14.036,88.781,14.036,329.606,319.204,345.208,19.403,23.612,19.403 +2854,89.803,182.528,472.349,360.527,506.586,190.926,473.924,10.620,99.273,10.620,328.341,319.263,345.430,18.797,25.076,18.797 +2855,89.836,181.001,476.496,361.694,500.751,190.296,477.751,7.690,109.904,7.690,327.108,318.588,345.867,18.695,25.517,18.695 +2856,89.868,179.363,482.712,362.676,494.251,189.762,483.358,3.554,120.466,3.554,325.677,318.764,346.515,19.143,25.351,19.143 +2857,89.899,177.500,488.000,362.928,487.746,189.464,488.000,0.000,131.121,0.000,323.000,319.382,346.928,18.000,24.907,18.000 +2858,89.930,173.675,495.749,363.118,480.029,189.520,494.518,175.559,140.906,175.559,316.610,320.001,348.396,18.788,22.992,18.788 +2859,89.959,165.845,504.638,362.007,471.902,189.971,500.747,170.838,150.642,170.838,299.994,320.631,348.869,19.108,20.645,19.108 +2860,89.990,124.658,522.680,360.863,463.975,191.028,506.379,166.201,159.603,166.201,213.411,321.162,350.095,17.412,20.370,17.412 +2861,90.020,179.425,518.260,358.929,455.666,193.096,513.742,161.715,168.036,161.715,322.568,321.690,351.363,18.379,20.133,18.379 +2862,90.051,188.074,524.563,356.128,449.325,195.523,521.172,155.526,175.982,155.526,335.507,321.245,351.878,20.682,20.251,20.682 +2863,90.083,193.187,533.456,351.763,440.756,199.443,529.853,150.058,4.919,150.058,338.481,319.573,352.920,22.634,18.526,22.634 +2864,90.113,197.183,540.437,345.890,432.935,202.746,536.381,143.909,14.218,143.909,339.447,318.951,353.217,20.134,18.837,20.134 +2865,90.144,197.183,540.437,345.890,432.935,202.746,536.381,143.909,14.218,143.909,339.447,318.951,353.217,20.134,18.837,20.134 +2866,90.174,203.598,547.560,338.190,425.724,207.348,544.139,137.626,23.199,137.626,342.787,317.630,352.938,19.623,18.252,19.623 +2867,90.206,210.821,554.984,329.888,417.247,214.240,551.017,130.746,32.471,130.746,343.185,315.146,353.660,19.873,20.478,19.873 +2868,90.237,218.818,562.055,327.446,414.503,221.872,557.503,123.857,41.906,123.857,344.176,296.132,355.139,19.794,23.968,19.794 +2869,90.269,228.100,567.800,323.162,418.564,228.803,566.393,116.565,51.147,116.565,345.696,271.266,348.842,19.677,24.639,19.677 +2870,90.302,237.639,573.921,311.944,420.901,237.135,575.364,109.250,60.524,109.250,344.039,257.762,340.982,19.227,24.527,19.227 +2871,90.334,248.650,582.163,295.267,420.800,248.533,582.721,101.889,72.843,101.889,337.291,255.055,336.151,20.395,20.611,20.395 +2872,90.365,257.882,598.153,276.878,416.749,258.775,584.267,93.681,81.283,93.681,308.841,261.919,336.670,21.599,18.682,21.599 +2873,90.397,272.125,598.511,259.500,408.000,270.970,580.713,86.288,90.000,86.288,310.515,280.000,346.186,22.822,19.000,22.822 +2874,90.427,284.418,580.209,249.269,395.040,282.885,572.279,79.059,98.531,79.059,344.638,309.240,360.793,22.202,20.619,22.202 +2875,90.458,297.331,576.407,237.165,398.243,295.088,569.485,72.044,107.969,72.044,346.966,309.584,361.518,20.655,18.922,20.655 +2876,90.489,308.407,570.590,226.532,403.082,305.786,565.100,64.486,118.040,64.486,348.542,310.941,360.709,21.106,18.247,21.106 +2877,90.521,319.017,564.390,216.040,409.280,315.883,559.489,57.400,126.870,57.400,349.039,311.600,360.673,23.236,18.000,23.236 +2878,90.554,328.049,556.459,206.285,416.308,324.700,552.440,50.194,135.822,50.194,350.309,311.278,360.773,24.071,19.364,24.071 +2879,90.586,335.821,548.322,197.806,424.009,332.233,544.940,43.299,144.992,43.299,351.676,311.471,361.538,24.759,19.208,24.759 +2880,90.619,342.320,539.196,190.922,432.842,338.813,536.597,36.545,153.846,36.545,352.461,310.429,361.191,26.191,17.856,26.191 +2881,90.653,346.787,530.305,185.295,442.274,343.724,528.516,30.293,163.142,30.293,353.501,309.960,360.597,25.530,19.198,25.530 +2882,90.684,351.099,521.849,180.556,450.428,347.230,520.104,24.286,172.593,24.286,352.675,309.079,361.163,25.633,18.881,25.633 +2883,90.715,354.610,517.199,177.593,457.213,348.752,515.214,18.712,2.322,18.712,349.069,307.194,361.439,19.294,19.687,19.294 +2884,90.745,374.643,513.835,175.847,464.957,350.664,508.053,13.556,9.111,13.556,310.767,307.765,360.098,18.667,19.282,18.667 +2885,90.775,374.643,513.835,175.847,464.957,350.664,508.053,13.556,9.111,13.556,310.767,307.765,360.098,18.667,19.282,18.667 +2886,90.804,380.002,505.105,174.712,471.902,352.244,500.651,9.114,18.741,9.114,303.462,304.859,359.689,18.000,20.462,18.000 +2887,90.837,362.210,494.972,175.533,479.634,353.691,494.350,4.175,27.496,4.175,340.430,301.902,357.514,19.161,20.936,19.161 +2888,90.871,359.000,488.000,174.155,487.138,353.078,488.000,0.000,37.235,0.000,346.000,304.421,357.845,18.000,21.178,18.000 +2889,90.903,357.776,481.412,176.936,496.998,353.981,481.680,175.960,46.848,175.960,347.758,298.563,355.369,19.034,19.789,19.034 +2890,90.936,357.389,475.820,175.463,501.172,352.360,476.513,172.154,57.061,172.154,347.059,308.171,357.213,19.267,19.291,19.267 +2891,90.969,355.980,470.401,175.989,506.504,351.122,471.384,168.562,68.074,168.562,347.327,309.171,357.239,20.373,19.090,20.373 +2892,91.001,354.227,466.006,176.437,511.200,349.615,467.196,165.530,78.212,165.530,347.830,311.642,357.358,20.303,18.906,20.303 +2893,91.031,352.352,461.903,177.048,515.965,348.097,463.218,162.832,88.107,162.832,349.086,312.424,357.994,20.499,18.337,20.499 +2894,91.063,350.494,458.658,177.506,519.933,346.314,460.138,160.511,98.194,160.511,349.301,314.239,358.171,20.348,18.735,20.348 +2895,91.095,349.205,455.750,177.848,523.113,344.889,457.469,158.281,107.904,158.281,349.658,315.292,358.949,21.375,18.841,21.375 +2896,91.125,347.576,453.711,178.132,525.306,343.673,455.400,156.598,117.741,156.598,350.871,315.449,359.378,20.958,19.058,20.958 +2897,91.157,346.595,451.956,179.322,527.246,342.908,453.658,155.225,127.385,155.225,350.612,315.594,358.734,20.534,20.089,20.534 +2898,91.188,347.260,450.432,179.571,528.031,342.396,452.781,154.224,137.529,154.224,347.893,314.949,358.695,19.468,18.599,19.468 +2899,91.221,349.000,448.500,179.868,528.078,342.132,451.934,153.435,146.640,153.435,343.013,313.678,358.371,18.783,18.391,18.783 +2900,91.253,411.000,416.000,179.969,528.680,341.252,450.874,153.435,156.038,153.435,202.141,312.117,358.103,17.889,19.698,17.889 +2901,91.284,376.300,433.100,180.706,528.324,341.518,450.491,153.435,165.964,153.435,279.508,311.658,357.284,17.441,18.918,17.441 +2902,91.316,362.035,441.038,181.050,527.637,342.460,451.133,152.720,175.533,152.720,312.997,311.083,357.046,21.247,18.849,21.247 +2903,91.346,356.000,444.500,181.067,526.681,342.491,451.255,153.435,4.672,153.435,326.019,309.827,356.227,21.466,19.670,21.466 +2904,91.375,356.000,444.500,181.067,526.681,342.491,451.255,153.435,4.672,153.435,326.019,309.827,356.227,21.466,19.670,21.466 +2905,91.405,352.301,447.629,180.883,525.517,343.273,451.951,154.423,14.494,154.423,336.455,310.007,356.474,20.823,21.873,20.823 +2906,91.437,351.347,450.263,180.449,524.115,344.167,453.530,155.537,23.868,155.537,340.724,309.992,356.500,20.685,23.687,20.685 +2907,91.469,350.694,452.957,179.598,522.594,344.859,455.439,156.953,33.425,156.953,344.040,309.557,356.723,21.047,23.469,21.047 +2908,91.501,350.967,455.808,178.990,519.404,346.238,457.630,158.931,42.068,158.931,346.412,310.628,356.549,20.239,19.967,20.239 +2909,91.534,352.018,458.962,177.977,517.212,347.322,460.577,161.030,51.116,161.030,347.185,311.717,357.117,20.450,21.143,20.450 +2910,91.565,353.783,462.452,177.281,512.989,348.910,463.900,163.449,60.094,163.449,346.835,311.350,357.003,20.623,19.750,20.623 +2911,91.596,354.714,466.872,176.000,509.000,349.881,468.057,166.230,69.597,166.230,347.308,311.332,357.259,20.178,19.523,20.178 +2912,91.626,355.821,471.531,175.022,504.093,351.167,472.391,169.519,78.621,169.519,348.482,311.632,357.947,19.740,18.898,19.740 +2913,91.657,356.647,477.198,174.071,498.421,351.851,477.785,173.013,87.122,173.013,348.277,311.562,357.940,19.243,19.093,19.243 +2914,91.687,357.416,482.936,173.589,492.376,352.875,483.181,176.914,95.978,176.914,349.947,312.064,359.042,19.056,19.402,19.056 +2915,91.718,357.494,489.809,173.294,485.835,352.642,489.716,1.096,104.494,1.096,349.070,311.943,358.777,18.456,19.917,18.456 +2916,91.750,357.130,496.677,173.710,478.446,352.754,496.249,5.592,113.173,5.592,351.063,311.982,359.855,18.986,20.429,18.986 +2917,91.779,355.860,504.050,174.916,470.635,351.866,503.312,10.469,122.005,10.469,351.762,311.533,359.885,19.517,20.458,19.517 +2918,91.809,355.860,504.050,174.916,470.635,351.866,503.312,10.469,122.005,10.469,351.762,311.533,359.885,19.517,20.458,19.517 +2919,91.839,353.977,512.315,177.198,462.504,350.309,511.278,15.798,131.538,15.798,352.077,311.263,359.701,18.972,19.220,18.972 +2920,91.871,352.845,518.138,179.827,453.635,348.914,516.566,21.801,139.441,21.801,352.264,310.432,360.731,25.997,21.355,25.997 +2921,91.904,348.832,527.496,183.600,444.587,344.983,525.449,28.009,148.264,28.009,352.191,309.740,360.909,25.002,20.620,25.002 +2922,91.935,344.550,534.876,188.701,435.791,341.165,532.655,33.275,156.721,33.275,353.126,309.224,361.224,24.951,18.393,24.951 +2923,91.967,338.899,543.643,195.284,427.978,335.880,541.118,39.908,165.256,39.908,352.995,307.988,360.867,25.104,17.916,25.104 +2924,91.998,331.132,552.194,202.790,419.285,328.192,549.055,46.882,174.572,46.882,352.274,307.182,360.877,23.485,18.509,23.485 +2925,92.027,321.966,559.953,211.451,412.986,319.911,557.075,54.462,2.849,54.462,353.509,306.114,360.582,23.482,17.969,23.482 +2926,92.058,311.802,566.922,221.402,406.923,310.068,563.691,61.773,11.560,61.773,352.788,306.339,360.122,23.045,17.991,23.045 +2927,92.089,301.462,572.586,232.219,401.582,299.857,568.424,68.902,20.556,68.902,351.089,305.829,360.010,21.598,18.024,21.598 +2928,92.121,289.501,576.362,244.437,396.573,288.276,571.519,75.811,29.476,75.811,350.719,305.492,360.710,22.064,20.401,22.064 +2929,92.154,275.936,578.766,257.070,394.940,275.388,574.229,83.115,38.956,83.115,351.245,304.500,360.385,23.261,20.731,23.261 +2930,92.186,263.720,579.069,284.000,408.500,263.694,580.655,90.939,45.000,90.939,348.101,263.751,344.929,22.194,26.163,22.194 +2931,92.217,253.075,578.399,297.602,415.283,252.622,580.958,100.047,54.652,100.047,347.161,256.437,341.963,22.186,23.796,22.186 +2932,92.247,239.680,575.044,307.116,419.462,239.248,576.377,107.946,62.403,107.946,343.189,258.576,340.386,19.293,23.626,19.293 +2933,92.277,228.104,570.767,315.424,422.941,228.306,570.353,115.948,70.523,115.948,340.421,264.978,341.341,20.272,24.156,20.272 +2934,92.307,228.104,570.767,315.424,422.941,228.306,570.353,115.948,70.523,115.948,340.421,264.978,341.341,20.272,24.156,20.272 +2935,92.337,216.030,566.025,319.979,409.743,221.712,557.523,123.755,80.910,123.755,334.485,307.568,354.937,20.271,22.553,20.271 +2936,92.369,206.043,558.275,329.770,416.678,213.330,550.131,131.820,87.274,131.820,332.338,309.554,354.194,19.808,23.069,19.808 +2937,92.401,197.527,549.922,338.256,425.735,206.278,542.354,139.145,94.044,139.145,329.079,311.062,352.219,19.911,22.902,19.911 +2938,92.432,191.283,540.684,345.038,434.308,200.695,534.425,146.375,101.310,146.375,328.659,312.805,351.265,21.100,21.769,21.100 +2939,92.463,186.343,531.114,350.850,442.950,196.459,525.991,153.141,108.435,153.141,327.828,316.228,350.507,22.720,21.187,22.720 +2940,92.494,181.458,520.456,355.361,452.869,192.574,516.358,159.764,115.017,159.764,325.705,317.225,349.399,20.789,20.963,20.789 +2941,92.524,178.986,510.472,359.565,463.718,190.822,507.534,166.057,122.905,166.057,324.266,318.049,348.657,20.147,22.767,20.147 +2942,92.555,177.060,500.605,362.054,474.440,189.686,498.884,172.235,128.434,172.235,322.695,320.179,348.181,19.141,22.818,19.141 +2943,92.587,176.540,490.190,363.239,483.707,189.596,489.879,178.636,133.714,178.636,321.361,320.540,347.481,18.352,24.254,18.352 +2944,92.618,177.256,482.305,363.141,492.830,189.929,483.118,3.672,139.364,3.672,321.558,321.059,346.957,18.988,23.723,18.988 +2945,92.650,178.500,474.163,362.362,501.304,190.947,476.131,8.986,144.885,8.986,321.282,321.549,346.486,18.716,23.677,18.716 +2946,92.680,180.551,466.858,360.882,509.533,192.560,469.813,13.824,150.092,13.824,321.137,322.013,345.873,19.136,23.772,19.136 +2947,92.712,182.864,459.915,358.916,516.893,194.513,463.781,18.359,155.037,18.359,320.981,322.181,345.527,19.284,23.337,19.284 +2948,92.745,185.750,452.913,356.636,524.061,197.011,457.747,23.230,159.636,23.230,321.172,322.341,345.681,19.297,23.761,19.297 +2949,92.777,190.300,445.400,353.669,530.086,200.585,450.542,26.565,163.964,26.565,321.994,322.931,344.991,26.386,23.106,26.386 +2950,92.807,190.300,445.400,353.669,530.086,200.585,450.542,26.565,163.964,26.565,321.994,322.931,344.991,26.386,23.106,26.386 +2951,92.839,192.877,441.715,351.062,536.158,202.788,447.379,29.745,168.064,29.745,322.738,322.874,345.569,25.427,23.672,25.427 +2952,92.874,196.923,436.615,347.873,541.080,206.128,442.752,33.690,171.768,33.690,322.836,323.016,344.962,26.071,23.083,26.071 +2953,92.908,200.079,433.235,344.611,545.820,208.771,439.813,37.117,175.176,37.117,322.777,322.806,344.578,25.409,23.019,25.409 +2954,92.939,204.153,429.479,341.522,549.770,212.130,436.381,40.872,178.343,40.872,322.986,323.270,344.083,25.593,22.710,25.593 +2955,92.970,206.269,428.346,338.428,553.615,213.495,434.953,42.436,1.140,42.436,324.965,323.095,344.547,25.367,22.742,25.367 +2956,93.005,209.987,424.972,335.022,556.649,216.591,431.760,45.785,3.614,45.785,325.258,322.999,344.199,24.814,22.534,24.814 +2957,93.040,212.941,422.497,332.237,559.499,219.104,429.429,48.366,6.009,48.366,326.203,323.005,344.754,24.332,22.926,24.332 +2958,93.071,215.919,420.566,329.327,562.247,221.598,427.550,50.889,7.923,50.889,326.940,322.847,344.944,24.268,23.373,24.268 +2959,93.105,218.271,418.673,326.524,564.357,223.626,425.772,52.970,9.628,52.970,327.422,322.737,345.207,23.935,23.134,23.935 +2960,93.139,220.776,417.510,323.931,566.358,225.683,424.468,54.811,10.954,54.811,328.129,322.847,345.156,23.522,23.214,23.522 +2961,93.171,223.073,416.452,321.420,568.215,227.699,423.465,56.586,12.054,56.586,328.067,323.024,344.870,23.308,23.644,23.308 +2962,93.205,225.132,415.728,319.052,569.448,229.237,422.354,58.223,12.955,58.223,329.096,322.899,344.686,22.765,23.435,22.765 +2963,93.238,226.821,414.104,316.794,570.847,230.827,421.015,59.903,13.658,59.903,329.505,322.594,345.482,23.294,24.466,23.294 +2964,93.272,228.546,413.298,314.980,572.062,232.374,420.271,61.232,13.897,61.232,329.714,322.572,345.623,23.014,24.128,23.014 +2965,93.305,230.384,413.080,312.978,573.081,233.884,419.815,62.537,13.972,62.537,329.759,322.572,344.940,22.988,24.089,22.988 +2966,93.337,231.598,412.191,311.392,573.936,235.111,419.259,63.571,13.969,63.571,329.141,322.341,344.926,22.710,24.570,22.710 +2967,93.370,232.723,411.370,309.764,574.983,236.092,418.438,64.511,13.496,64.511,330.365,322.133,346.025,22.420,24.660,22.420 +2968,93.404,233.856,411.023,308.490,575.185,236.957,417.811,65.450,13.143,65.450,330.812,322.146,345.738,22.515,24.142,22.515 +2969,93.437,234.750,410.211,307.141,575.865,237.871,417.300,66.238,12.529,66.238,330.577,321.925,346.068,22.271,25.055,22.271 +2970,93.470,235.603,410.241,306.117,576.033,238.515,417.035,66.801,11.743,66.801,330.761,321.433,345.543,22.191,24.702,22.191 +2971,93.504,236.167,409.676,305.353,576.781,239.164,416.895,67.452,10.679,67.452,330.455,321.404,346.088,22.398,25.258,22.398 +2972,93.538,236.748,409.717,304.712,576.746,239.661,416.839,67.751,9.615,67.751,329.873,321.566,345.264,22.129,25.069,22.129 +2973,93.570,236.911,409.239,304.360,576.962,239.888,416.586,67.941,8.255,67.941,329.843,320.894,345.698,21.958,24.792,21.958 +2974,93.602,237.142,409.342,303.958,576.844,240.037,416.601,68.254,6.911,68.254,329.413,320.864,345.043,21.676,24.848,21.676 +2975,93.635,237.309,408.960,303.611,576.824,240.160,416.168,68.422,5.395,68.422,329.964,320.784,345.466,22.260,24.922,22.260 +2976,93.665,237.301,408.971,303.824,576.630,240.144,416.120,68.311,3.834,68.311,329.973,320.621,345.360,21.995,25.062,21.995 +2977,93.696,237.052,408.379,303.975,576.765,240.113,416.033,68.199,1.868,68.199,329.423,320.352,345.909,22.469,24.650,22.469 +2978,93.728,236.190,409.050,304.002,576.618,239.265,416.609,67.865,0.282,67.865,328.898,320.026,345.218,21.101,24.793,21.101 +2979,93.759,235.527,409.023,304.571,576.236,238.613,416.482,67.521,178.182,67.521,329.523,319.537,345.668,21.412,25.479,21.412 +2980,93.790,235.404,409.254,305.554,575.755,238.648,416.867,66.919,175.935,66.919,328.246,320.324,344.797,22.089,24.633,22.089 +2981,93.821,234.343,409.069,306.489,575.401,237.818,417.012,66.371,173.817,66.371,327.927,319.787,345.268,22.446,25.161,22.446 +2982,93.852,233.473,409.740,307.360,574.553,236.895,417.270,65.556,171.607,65.556,328.146,320.173,344.689,22.428,25.105,22.428 +2983,93.884,232.174,409.892,308.656,574.199,235.853,417.638,64.592,169.196,64.592,328.161,320.056,345.310,22.356,25.277,22.356 +2984,93.914,230.602,410.691,310.074,573.425,234.476,418.495,63.598,166.695,63.598,327.348,320.143,344.773,21.439,25.361,21.439 +2985,93.945,229.402,411.313,311.812,572.583,233.629,419.390,62.379,163.909,62.379,325.730,320.194,343.963,22.676,25.074,22.676 +2986,93.975,229.402,411.313,311.812,572.583,233.629,419.390,62.379,163.909,62.379,325.730,320.194,343.963,22.676,25.074,22.676 +2987,94.005,227.670,411.906,313.487,571.450,231.972,419.723,61.174,161.440,61.174,326.612,320.033,344.456,23.055,25.395,23.055 +2988,94.037,225.680,412.688,315.653,570.165,230.327,420.618,59.630,158.587,59.630,325.950,320.145,344.332,23.108,24.881,23.108 +2989,94.071,223.667,413.955,317.721,568.765,228.539,421.771,58.062,155.813,58.062,325.417,320.132,343.839,23.596,25.008,23.596 +2990,94.103,221.236,415.336,320.344,567.172,226.425,423.076,56.162,152.939,56.162,325.338,319.823,343.974,22.868,25.302,22.868 +2991,94.137,219.028,416.812,323.080,565.273,224.488,424.368,54.149,149.959,54.149,325.262,320.160,343.906,23.746,25.229,23.746 +2992,94.169,216.557,418.780,325.815,562.986,222.358,426.181,51.911,147.061,51.911,324.182,320.323,342.989,23.867,25.213,23.867 +2993,94.201,213.617,420.760,328.747,560.519,219.651,427.811,49.444,143.746,49.444,324.963,320.250,343.522,24.042,25.160,24.042 +2994,94.233,210.624,423.078,331.959,557.667,217.040,429.939,46.918,140.572,46.918,324.782,320.213,343.569,24.475,25.181,24.475 +2995,94.263,207.773,426.168,335.255,554.276,214.513,432.690,44.061,137.231,44.061,323.881,320.031,342.639,24.803,25.014,24.803 +2996,94.294,203.859,429.816,338.689,550.663,210.996,435.891,40.400,133.877,40.400,324.513,319.828,343.259,25.147,24.924,25.147 +2997,94.325,200.080,434.060,341.999,546.431,207.543,439.657,36.870,130.836,36.870,324.600,320.168,343.258,24.800,24.827,24.800 +2998,94.355,197.577,437.385,345.573,541.678,205.432,442.621,33.690,127.042,33.690,324.222,320.390,343.103,25.516,25.075,25.516 +2999,94.385,194.062,442.392,348.923,536.615,202.134,447.005,29.745,123.690,29.745,325.219,320.617,343.815,25.427,24.962,25.427 +3000,94.417,191.466,446.972,352.250,530.722,199.740,451.029,26.127,120.018,26.127,325.610,320.755,344.040,25.951,25.168,25.951 +3001,94.448,187.122,456.174,355.559,523.530,195.654,459.561,21.656,116.735,21.656,326.088,319.763,344.449,19.149,25.371,19.149 +3002,94.479,184.555,463.317,358.202,515.932,193.262,465.929,16.699,112.932,16.699,326.523,319.363,344.704,19.444,25.397,19.444 +3003,94.510,184.555,463.317,358.202,515.932,193.262,465.929,16.699,112.932,16.699,326.523,319.363,344.704,19.444,25.397,19.444 +3004,94.539,182.275,471.116,360.408,507.653,191.187,472.913,11.399,108.886,11.399,327.317,319.081,345.499,18.839,25.397,18.839 +3005,94.571,181.039,479.124,361.835,498.955,189.910,480.050,5.964,105.154,5.964,328.080,318.726,345.918,18.526,25.237,18.526 +3006,94.603,180.500,488.000,362.344,489.073,189.172,488.000,0.000,101.929,0.000,329.000,318.078,346.344,18.000,25.259,18.000 +3007,94.635,180.543,497.413,362.055,478.852,189.330,496.507,174.114,97.853,174.114,329.583,317.033,347.250,18.900,25.073,18.900 +3008,94.668,182.076,507.573,360.581,468.363,190.302,505.731,167.381,94.086,167.381,331.801,315.981,348.660,19.939,25.293,19.939 +3009,94.698,184.676,517.427,357.168,458.511,192.107,514.821,160.672,90.535,160.672,333.041,313.098,348.791,19.718,23.597,19.718 +3010,94.731,189.300,528.600,352.928,451.634,195.344,525.578,153.435,86.309,153.435,334.516,305.655,348.032,21.913,23.467,21.913 +3011,94.762,194.556,538.133,347.552,444.830,198.983,535.213,146.592,82.316,146.592,336.964,296.630,347.571,21.118,22.959,21.118 +3012,94.794,199.647,547.588,342.584,440.983,203.443,544.334,139.399,78.541,139.399,335.808,282.617,345.808,19.958,24.435,19.958 +3013,94.825,207.833,556.739,336.052,437.486,209.701,554.633,131.573,74.476,131.573,337.334,268.822,342.964,19.861,24.249,19.861 +3014,94.858,218.336,564.867,328.104,432.620,218.662,564.366,122.981,71.030,122.981,338.985,260.005,340.181,19.731,24.145,19.731 +3015,94.890,229.875,570.637,317.844,424.970,229.435,571.588,114.864,66.272,114.864,342.499,259.328,340.402,19.740,24.184,19.740 +3016,94.921,241.832,575.978,306.096,419.217,241.288,577.830,106.361,61.719,106.361,344.753,258.248,340.892,18.785,24.127,18.785 +3017,94.953,255.960,579.286,294.270,416.326,255.516,582.333,98.301,57.216,98.301,345.882,255.478,339.724,22.203,23.868,22.203 +3018,94.984,268.915,579.997,281.174,413.250,268.927,583.164,89.789,52.607,89.789,346.071,257.419,339.736,21.073,23.378,21.073 +3019,95.015,280.613,579.066,268.175,412.521,281.276,583.058,80.573,47.703,80.573,348.850,258.507,340.758,22.689,23.069,22.689 +3020,95.046,295.628,575.724,252.427,413.291,296.603,578.812,72.483,42.138,72.483,348.760,264.163,342.283,19.984,22.317,19.984 +3021,95.077,295.628,575.724,252.427,413.291,296.603,578.812,72.483,42.138,72.483,348.760,264.163,342.283,19.984,22.317,19.984 +3022,95.106,309.983,569.800,225.838,404.727,307.526,564.832,63.686,37.042,63.686,348.370,302.966,359.453,22.220,20.301,22.220 +3023,95.138,321.662,562.603,213.708,411.074,318.363,557.810,55.460,30.595,55.460,348.780,304.259,360.417,23.599,20.003,23.599 +3024,95.170,331.675,553.876,203.806,419.235,327.994,549.864,47.464,23.653,47.464,349.535,304.107,360.424,24.477,19.573,24.477 +3025,95.203,339.951,544.333,193.862,428.004,335.480,540.631,39.632,16.054,39.632,350.207,306.870,361.816,25.477,19.427,25.477 +3026,95.236,345.835,534.050,187.017,437.378,341.657,531.387,32.504,8.089,32.504,351.955,307.307,361.865,25.159,20.826,25.159 +3027,95.267,351.040,524.216,181.506,448.107,346.471,522.020,25.671,179.415,25.671,351.264,307.137,361.403,25.574,19.060,25.574 +3028,95.299,352.278,517.281,177.786,458.977,348.860,516.083,19.312,169.046,19.312,353.424,309.071,360.667,19.447,19.509,19.447 +3029,95.330,354.844,508.543,174.896,468.384,350.852,507.599,13.302,159.412,13.302,352.310,310.625,360.516,19.128,19.778,19.128 +3030,95.361,356.284,499.909,173.308,476.811,352.162,499.349,7.726,150.496,7.726,352.200,311.322,360.520,19.315,18.926,19.315 +3031,95.392,356.130,492.088,172.199,484.741,352.120,491.909,2.554,140.460,2.554,352.096,312.308,360.123,18.918,19.150,18.918 +3032,95.422,356.375,484.210,172.239,492.700,352.139,484.371,177.818,129.946,177.818,351.697,313.176,360.174,18.910,19.262,18.910 +3033,95.454,355.612,477.711,172.781,499.875,351.422,478.206,173.264,119.801,173.264,351.463,313.813,359.899,19.510,18.775,19.510 +3034,95.487,354.518,471.502,173.813,506.433,350.125,472.350,169.081,109.634,169.081,350.204,314.137,359.152,20.465,19.061,20.465 +3035,95.518,353.359,466.025,175.672,512.346,349.084,467.132,165.481,99.039,165.481,349.588,314.163,358.419,20.044,19.258,20.044 +3036,95.551,352.142,460.841,177.573,517.447,347.793,462.244,162.121,88.522,162.121,348.755,313.231,357.895,20.354,18.729,20.354 +3037,95.582,350.399,456.641,179.559,521.642,346.248,458.240,158.931,78.062,158.931,347.781,312.978,356.677,20.958,19.109,20.958 +3038,95.613,349.133,452.661,181.163,525.391,344.749,454.579,156.371,67.380,156.371,346.937,312.538,356.507,20.900,19.077,20.900 +3039,95.643,349.133,452.661,181.163,525.391,344.749,454.579,156.371,67.380,156.371,346.937,312.538,356.507,20.900,19.077,20.900 +3040,95.672,348.134,449.775,182.900,528.774,343.521,452.032,153.925,56.785,153.925,345.737,312.348,356.010,20.697,20.358,20.697 +3041,95.703,346.275,447.344,183.520,531.047,341.874,449.679,152.049,45.963,152.049,346.074,310.578,356.039,20.479,21.038,20.479 +3042,95.736,345.594,445.190,184.020,533.384,340.562,448.046,150.422,35.695,150.422,344.960,311.078,356.531,21.225,23.150,21.225 +3043,95.769,345.471,442.118,185.620,534.670,339.595,445.643,149.036,25.670,149.036,341.968,310.517,355.673,20.237,24.216,20.237 +3044,95.801,346.215,439.418,186.130,535.476,338.542,444.279,147.646,13.941,147.646,336.941,310.451,355.109,20.951,21.910,20.951 +3045,95.832,348.399,436.389,186.110,536.661,337.568,443.397,147.095,2.684,147.095,329.852,310.690,355.652,20.051,19.166,20.051 +3046,95.864,354.579,433.688,185.972,537.322,338.115,444.425,146.889,171.832,146.889,317.054,311.833,356.366,22.106,19.546,22.106 +3047,95.896,366.543,423.117,185.609,537.952,336.476,442.516,147.171,160.735,147.171,285.457,313.033,357.022,17.755,19.540,17.755 +3048,95.927,401.881,400.648,185.334,538.933,336.234,442.849,147.265,149.800,147.265,201.703,313.476,357.784,17.785,18.346,17.785 +3049,95.957,343.201,440.282,184.643,538.026,337.125,444.265,146.755,138.638,146.755,343.325,315.509,357.856,19.684,18.919,19.684 +3050,95.988,342.358,442.484,184.584,537.883,337.816,445.353,147.724,128.280,147.724,347.184,316.101,357.931,20.158,20.410,20.158 +3051,96.019,341.869,443.839,183.760,536.621,338.313,446.018,148.496,117.101,148.496,349.897,316.225,358.237,20.930,19.723,20.930 +3052,96.051,343.004,445.297,183.374,535.249,339.426,447.389,149.680,105.893,149.680,349.835,316.204,358.124,21.157,18.768,21.157 +3053,96.082,345.018,448.589,182.985,533.086,341.501,450.450,152.124,95.006,152.124,349.561,315.420,357.519,21.471,18.411,21.471 +3054,96.113,346.948,450.373,182.072,529.828,342.970,452.321,153.905,83.774,153.905,348.320,314.172,357.179,20.600,18.617,20.600 +3055,96.143,346.948,450.373,182.072,529.828,342.970,452.321,153.905,83.774,153.905,348.320,314.172,357.179,20.600,18.617,20.600 +3056,96.172,348.632,451.686,181.224,525.806,344.235,453.676,155.649,72.676,155.649,346.850,312.832,356.501,20.714,18.637,20.714 +3057,96.205,350.704,455.016,180.179,521.627,346.100,456.841,158.381,61.239,158.381,346.332,310.928,356.238,20.101,18.680,20.101 +3058,96.238,352.285,459.269,178.288,517.535,347.527,460.892,161.170,49.335,161.170,346.874,309.010,356.928,20.155,20.878,20.155 +3059,96.270,354.386,463.655,176.631,511.046,349.257,465.096,164.310,37.875,164.310,346.586,307.497,357.241,20.791,20.699,20.791 +3060,96.303,358.566,468.613,175.243,504.603,350.667,470.323,167.787,27.160,167.787,341.249,306.851,357.412,20.233,21.694,20.233 +3061,96.335,363.994,473.417,173.103,498.440,351.273,475.255,171.777,16.325,171.777,333.604,308.123,359.309,20.916,20.663,20.916 +3062,96.365,386.330,479.751,172.202,492.240,351.847,482.150,176.021,6.563,176.021,290.689,308.567,359.823,18.061,20.265,18.061 +3063,96.396,369.500,488.500,171.925,484.635,351.962,488.500,0.000,176.853,0.000,325.000,308.743,360.075,17.000,19.534,17.000 +3064,96.428,357.138,495.326,172.285,478.482,352.006,494.905,4.699,168.071,4.699,350.626,309.479,360.924,18.922,20.877,18.922 +3065,96.459,355.301,502.747,174.000,472.000,351.887,502.160,9.752,158.199,9.752,353.920,309.740,360.849,19.603,20.426,19.603 +3066,96.490,353.754,511.584,176.533,463.460,350.374,510.648,15.482,148.062,15.482,353.243,310.153,360.258,19.274,19.772,19.274 +3067,96.521,351.454,520.328,180.017,454.073,347.952,518.970,21.188,137.946,21.188,352.567,310.321,360.079,19.214,19.996,19.214 +3068,96.553,349.606,526.909,184.732,444.570,345.808,524.935,27.460,127.907,27.460,351.411,310.829,359.973,25.090,18.826,25.090 +3069,96.585,345.230,536.439,190.060,434.810,340.945,533.558,33.917,117.451,33.917,350.294,309.993,360.623,25.253,18.601,25.253 +3070,96.616,339.265,545.953,197.107,425.691,334.946,542.230,40.764,107.475,40.764,349.584,309.418,360.988,25.073,17.894,25.073 +3071,96.646,331.044,555.578,205.330,417.277,326.819,550.795,48.545,97.595,48.545,348.230,307.875,360.995,24.008,17.644,24.008 +3072,96.677,321.641,563.566,215.211,424.559,321.392,563.198,55.886,88.112,55.886,347.779,279.244,348.667,23.235,18.155,23.235 +3073,96.706,321.641,563.566,215.211,424.559,321.392,563.198,55.886,88.112,55.886,347.779,279.244,348.667,23.235,18.155,23.235 +3074,96.737,311.500,571.500,228.875,425.971,312.682,573.863,63.435,76.759,63.435,344.802,265.457,339.517,21.913,19.354,21.913 +3075,96.769,317.773,627.630,243.833,421.594,300.911,580.090,70.471,67.694,70.471,236.032,257.932,336.916,19.365,17.887,19.365 +3076,96.803,287.023,582.631,260.395,415.427,287.100,582.990,77.816,56.689,77.816,339.584,259.069,338.851,22.349,20.487,22.349 +3077,96.835,272.723,579.481,271.828,406.173,272.796,580.355,85.182,44.750,85.182,349.050,271.514,347.295,22.907,26.129,22.907 +3078,96.866,259.814,578.600,272.736,393.485,260.109,573.228,93.147,35.955,93.147,349.572,308.199,360.331,23.185,20.739,23.185 +3079,96.899,248.090,576.623,285.824,396.865,249.083,571.864,101.779,25.688,101.779,347.905,309.112,357.628,21.578,18.023,21.578 +3080,96.930,236.741,572.371,299.297,400.564,238.433,567.753,110.130,15.338,110.130,346.008,311.005,355.844,19.586,17.926,19.586 +3081,96.960,226.292,566.889,311.998,405.023,228.797,562.206,118.142,5.274,118.142,345.065,313.253,355.687,20.014,17.847,20.014 +3082,96.990,216.437,560.094,323.542,410.990,219.826,555.396,125.809,175.061,125.809,343.997,314.851,355.583,19.882,17.786,19.882 +3083,97.021,207.841,552.433,333.130,417.973,212.288,547.725,133.363,164.685,133.363,341.656,317.584,354.608,19.508,19.426,19.508 +3084,97.053,199.013,546.120,340.788,425.545,205.960,540.377,140.418,155.023,140.418,336.136,318.616,354.164,20.172,20.365,20.172 +3085,97.085,133.177,574.717,347.263,433.151,200.418,531.581,147.319,146.470,147.319,193.717,318.683,353.492,17.501,18.600,17.501 +3086,97.116,169.599,538.218,352.084,443.000,196.461,524.851,153.543,136.654,153.543,291.575,318.555,351.583,20.150,19.832,20.150 +3087,97.146,178.214,522.090,356.506,453.273,193.142,516.516,159.522,127.524,159.522,318.464,319.427,350.333,20.734,19.967,20.734 +3088,97.177,178.214,522.090,356.506,453.273,193.142,516.516,159.522,127.524,159.522,318.464,319.427,350.333,20.734,19.967,20.734 +3089,97.207,179.938,511.517,359.900,462.700,191.256,508.498,165.069,116.565,165.069,326.072,317.969,349.500,20.677,24.597,20.677 +3090,97.239,180.459,501.922,361.339,472.361,189.714,500.466,171.064,105.101,171.064,329.077,317.838,347.814,19.136,24.934,19.136 +3091,97.270,180.623,493.523,362.104,481.719,189.031,493.013,176.532,94.028,176.532,330.031,318.043,346.879,18.421,24.475,18.421 +3092,97.302,181.542,485.877,362.205,490.620,189.070,486.072,1.484,83.246,1.484,331.329,318.276,346.390,18.590,24.278,18.590 +3093,97.335,183.169,478.937,362.356,499.045,190.106,479.687,6.170,72.474,6.170,332.710,319.701,346.666,18.756,24.040,18.756 +3094,97.367,184.408,472.810,361.530,506.671,191.310,474.095,10.546,61.557,10.546,332.573,321.381,346.614,18.794,22.715,18.794 +3095,97.401,185.979,466.212,359.855,513.617,192.986,468.091,15.011,51.054,15.011,331.425,323.146,345.933,19.059,20.626,19.059 +3096,97.435,186.000,461.000,358.897,518.867,194.634,463.878,18.435,40.549,18.435,328.244,324.854,346.446,18.974,20.313,18.974 +3097,97.469,183.442,454.920,357.546,523.285,196.292,460.094,21.934,29.655,21.934,318.664,324.976,346.370,17.886,22.373,17.886 +3098,97.502,156.087,437.014,356.255,527.687,198.416,456.207,24.390,19.669,24.390,253.585,324.229,346.540,18.113,20.051,18.113 +3099,97.536,185.224,441.585,354.135,530.697,201.215,450.223,28.377,9.538,28.377,309.232,324.358,345.583,29.105,19.978,29.105 +3100,97.569,191.509,440.617,351.500,534.500,202.772,447.110,29.962,0.000,29.962,318.992,323.000,344.993,25.287,21.000,25.287 +3101,97.601,193.985,440.191,349.709,537.628,203.576,445.945,30.964,169.509,30.964,322.589,322.808,344.957,25.382,22.688,25.382 +3102,97.635,197.115,437.077,347.848,540.405,205.810,442.873,33.690,158.962,33.690,323.668,322.220,344.567,25.516,24.195,25.516 +3103,97.668,197.995,436.740,346.088,542.647,206.209,442.350,34.330,149.036,34.330,324.258,321.560,344.152,25.318,24.867,25.318 +3104,97.699,199.304,435.074,344.249,544.436,207.199,440.714,35.538,138.991,35.538,324.215,320.806,343.619,26.272,24.804,26.272 +3105,97.731,200.360,434.483,342.549,545.939,207.679,439.893,36.469,128.660,36.469,324.782,320.937,342.984,25.594,24.832,25.594 +3106,97.763,201.401,433.525,341.274,547.831,208.445,438.878,37.235,118.610,37.235,325.662,321.868,343.357,26.210,24.741,26.210 +3107,97.795,201.766,433.416,341.091,548.402,208.598,438.690,37.666,108.925,37.666,326.580,321.297,343.840,25.609,24.270,25.609 +3108,97.826,202.144,433.091,340.928,549.072,209.071,438.464,37.794,99.554,37.794,326.425,322.054,343.959,26.222,23.472,26.222 +3109,97.858,201.953,433.674,341.000,549.500,208.780,438.944,37.666,90.000,37.666,327.191,321.000,344.439,25.428,22.000,25.428 +3110,97.889,201.611,434.064,341.372,549.111,208.754,439.493,37.235,79.992,37.235,325.885,323.241,343.828,25.605,20.275,25.605 +3111,97.921,200.931,435.223,342.203,548.602,207.976,440.450,36.573,70.959,36.573,326.939,323.806,344.481,24.792,19.500,24.792 +3112,97.953,199.372,435.480,343.634,547.194,207.479,441.271,35.538,62.021,35.538,324.796,323.993,344.722,25.691,18.490,25.691 +3113,97.984,197.936,436.700,345.856,545.007,206.912,442.830,34.330,53.797,34.330,322.989,324.662,344.728,25.318,19.175,25.318 +3114,98.014,192.943,439.493,347.534,542.059,203.616,446.463,33.147,46.332,33.147,320.042,324.754,345.537,18.454,18.314,18.454 +3115,98.044,192.943,439.493,347.534,542.059,203.616,446.463,33.147,46.332,33.147,320.042,324.754,345.537,18.454,18.314,18.454 +3116,98.073,188.606,441.135,350.186,538.449,202.033,449.150,30.835,39.421,30.835,314.691,325.621,345.966,17.957,18.802,17.957 +3117,98.105,179.492,441.275,352.654,533.766,200.131,452.314,28.142,33.383,28.142,299.007,325.900,345.818,17.861,18.882,17.861 +3118,98.137,156.014,436.129,355.606,528.764,198.451,455.998,25.088,27.274,25.088,252.649,324.774,346.364,17.833,19.068,17.833 +3119,98.170,118.581,428.990,357.937,523.852,196.714,459.803,21.523,20.833,21.523,178.979,324.445,346.957,17.531,20.363,17.531 +3120,98.204,112.718,437.875,360.048,517.716,194.861,464.312,17.840,14.755,17.840,174.627,324.072,347.211,17.506,19.953,17.506 +3121,98.236,139.136,455.981,361.783,510.993,193.196,469.259,13.799,8.259,13.799,236.020,323.720,347.352,17.515,20.192,17.515 +3122,98.267,150.702,467.744,363.022,503.609,191.608,474.736,9.700,1.386,9.700,264.657,322.365,347.656,17.574,19.615,17.574 +3123,98.298,157.713,477.612,363.725,495.477,190.732,480.656,5.268,173.782,5.268,280.929,322.450,347.247,17.543,19.890,17.543 +3124,98.329,161.473,486.680,363.735,487.486,189.855,486.964,0.573,165.350,0.573,290.985,322.342,347.752,17.629,20.293,17.629 +3125,98.359,166.166,495.803,363.433,480.174,189.682,494.109,175.878,156.861,175.878,301.452,321.041,348.607,18.879,20.859,18.879 +3126,98.390,169.941,504.207,362.231,471.846,190.115,500.923,170.754,146.310,170.754,308.222,320.062,349.102,18.937,20.524,18.937 +3127,98.422,174.238,512.819,360.399,463.927,191.178,508.382,165.324,135.868,165.324,314.903,318.986,349.925,19.762,22.003,19.762 +3128,98.454,179.132,521.107,356.623,455.382,192.670,516.175,159.981,125.146,159.981,320.900,318.429,349.716,20.496,21.136,20.496 +3129,98.487,184.932,529.541,351.820,446.388,195.482,524.452,154.245,112.543,154.245,326.030,314.840,349.457,21.711,20.668,21.711 +3130,98.518,190.386,536.878,348.330,438.741,199.156,531.481,148.392,101.689,148.392,330.706,312.789,351.300,20.898,21.341,20.898 +3131,98.549,196.557,544.513,343.000,430.000,204.054,538.716,142.289,90.000,142.289,333.887,312.000,352.841,20.495,22.000,20.495 +3132,98.580,203.217,551.274,336.167,422.586,209.219,545.466,135.939,75.530,135.939,336.653,311.129,353.358,19.333,24.269,19.333 +3133,98.610,203.217,551.274,336.167,422.586,209.219,545.466,135.939,75.530,135.939,336.653,311.129,353.358,19.333,24.269,19.333 +3134,98.640,211.282,557.822,327.867,414.978,215.717,552.402,129.289,62.396,129.289,340.752,310.542,354.758,19.349,26.197,19.349 +3135,98.671,221.212,563.380,318.435,407.682,224.177,558.628,121.961,50.638,121.961,344.714,311.350,355.916,20.122,24.535,20.122 +3136,98.703,230.522,568.941,308.634,401.207,233.062,563.485,114.955,38.660,114.955,345.987,311.723,358.023,19.785,25.144,19.785 +3137,98.736,240.412,573.451,295.735,399.527,241.805,569.084,107.691,26.477,107.691,346.688,312.161,355.854,18.865,18.067,18.865 +3138,98.767,250.480,577.171,283.950,396.619,251.279,572.600,99.913,14.563,99.913,348.677,312.626,357.957,21.719,17.997,21.719 +3139,98.799,261.608,578.643,271.928,395.003,261.790,574.054,92.268,2.736,92.268,349.439,312.551,358.624,22.339,18.300,22.339 +3140,98.830,273.617,579.167,259.834,395.126,273.189,574.349,84.925,171.058,84.925,349.732,312.705,359.405,21.583,18.261,21.583 +3141,98.861,286.746,577.666,247.107,396.785,285.630,572.653,77.448,159.467,77.448,349.801,312.852,360.073,22.126,18.471,22.126 +3142,98.892,299.697,573.830,234.531,400.248,297.874,568.852,69.894,148.057,69.894,349.606,312.489,360.208,20.374,18.634,20.374 +3143,98.922,312.326,568.202,222.996,405.528,309.826,563.496,62.021,136.779,62.021,349.824,312.057,360.482,22.464,18.464,22.464 +3144,98.953,322.739,561.462,212.078,412.055,319.549,557.012,54.369,125.430,54.369,349.904,311.313,360.855,22.674,18.782,22.674 +3145,98.984,332.499,553.292,202.653,419.742,328.491,549.008,46.909,114.183,46.909,348.999,310.693,360.731,24.358,18.400,24.358 +3146,99.014,339.697,545.359,194.854,428.528,335.346,541.677,40.236,102.642,40.236,349.279,309.780,360.676,25.603,19.406,25.603 +3147,99.044,339.697,545.359,194.854,428.528,335.346,541.677,40.236,102.642,40.236,349.279,309.780,360.676,25.603,19.406,25.603 +3148,99.073,346.478,534.813,188.366,437.538,342.025,531.956,32.684,91.577,32.684,350.049,309.213,360.631,25.172,19.066,25.172 +3149,99.105,351.532,524.934,183.459,446.920,346.862,522.647,26.095,80.122,26.095,349.713,308.071,360.113,25.952,20.233,25.952 +3150,99.137,354.074,518.584,179.832,456.192,349.156,516.821,19.713,68.572,19.713,349.254,307.383,359.703,19.466,21.523,19.466 +3151,99.170,356.687,509.821,177.006,465.849,351.358,508.516,13.761,57.085,13.761,348.022,308.220,358.994,19.188,22.251,19.188 +3152,99.203,358.848,499.086,174.790,473.767,352.560,498.205,7.974,45.711,7.974,346.184,307.647,358.883,22.462,23.506,22.462 +3153,99.234,359.353,492.263,173.737,482.013,352.825,491.970,2.573,34.464,2.573,345.640,306.849,358.709,18.925,22.527,18.925 +3154,99.264,362.147,483.902,173.157,489.777,352.662,484.312,177.519,23.020,177.519,340.157,307.643,359.146,19.595,21.951,19.595 +3155,99.295,368.077,475.578,173.056,498.233,351.352,477.685,172.818,11.356,172.818,325.217,308.103,358.932,19.468,20.199,19.468 +3156,99.326,382.027,464.726,173.500,505.500,349.883,470.939,169.061,0.000,169.061,293.996,309.000,359.473,17.854,19.000,17.854 +3157,99.355,420.938,446.017,174.634,511.775,348.098,465.441,165.069,168.024,165.069,208.320,310.456,359.091,17.908,19.505,17.908 +3158,99.386,355.979,458.056,176.107,517.744,346.557,461.323,160.875,156.272,160.875,339.109,312.123,359.054,19.064,18.430,19.064 +3159,99.417,348.576,454.580,178.217,523.310,344.387,456.324,157.398,144.988,157.398,349.229,314.094,358.304,21.158,19.299,21.158 +3160,99.448,346.362,451.114,179.680,528.171,342.495,452.958,154.509,133.586,154.509,350.098,314.968,358.669,19.942,20.142,19.942 +3161,99.478,346.362,451.114,179.680,528.171,342.495,452.958,154.509,133.586,154.509,350.098,314.968,358.669,19.942,20.142,19.942 +3162,99.507,343.897,447.952,181.245,532.227,340.517,449.773,151.685,121.608,151.685,350.971,315.769,358.650,20.453,20.440,20.453 +3163,99.539,342.625,444.691,183.511,536.183,338.783,446.978,149.233,109.747,149.233,349.160,316.290,358.102,21.114,19.234,21.114 +3164,99.573,341.226,442.030,186.069,539.366,337.518,444.430,147.095,98.191,147.095,348.619,316.076,357.452,21.730,18.896,21.730 +3165,99.604,339.731,439.635,188.355,541.882,336.120,442.092,145.770,86.373,145.770,347.873,315.079,356.608,19.647,18.210,19.647 +3166,99.636,339.063,437.973,190.219,543.382,335.386,440.581,144.660,74.450,144.660,346.746,314.855,355.761,19.459,18.548,19.459 +3167,99.667,338.234,436.292,191.877,545.002,334.405,439.130,143.448,61.994,143.448,345.563,314.941,355.094,19.113,19.900,19.113 +3168,99.698,337.380,434.547,192.013,544.989,333.210,437.759,142.392,50.029,142.392,344.062,312.409,354.590,19.388,21.470,19.388 +3169,99.729,337.620,434.362,191.534,546.409,332.843,438.085,142.067,38.130,142.067,343.978,311.608,356.091,19.869,23.717,19.869 +3170,99.760,337.593,433.649,192.000,545.500,332.884,437.369,141.694,26.565,141.694,343.157,311.708,355.159,19.756,24.150,19.756 +3171,99.791,339.123,431.921,191.884,545.017,332.714,436.985,141.687,14.520,141.687,338.613,311.193,354.950,18.977,22.349,18.977 +3172,99.821,341.989,430.392,191.128,544.394,332.974,437.488,141.789,2.822,141.789,332.217,310.707,355.162,19.760,20.088,19.760 +3173,99.853,346.941,428.659,190.020,543.797,333.776,438.832,142.306,171.469,142.306,322.592,312.108,355.867,21.473,19.581,21.473 +3174,99.885,356.980,420.140,188.928,543.291,332.807,438.270,143.130,161.015,143.130,295.800,312.817,356.232,17.800,20.638,17.800 +3175,99.916,391.843,396.659,188.142,542.755,333.470,439.113,143.973,150.945,143.973,212.624,313.822,356.982,17.792,19.911,17.792 +3176,99.946,349.124,430.392,186.924,541.404,334.629,440.823,144.260,141.780,144.260,321.561,314.579,357.276,18.684,18.138,18.684 +3177,99.976,349.124,430.392,186.924,541.404,334.629,440.823,144.260,141.780,144.260,321.561,314.579,357.276,18.684,18.138,18.684 +3178,100.008,339.694,439.598,186.149,540.197,335.748,442.308,145.528,133.325,145.528,347.897,315.607,357.471,18.949,20.890,18.949 +3179,100.038,340.733,441.544,185.808,539.538,336.896,444.029,147.072,123.690,147.072,348.325,316.179,357.468,19.649,21.356,19.649 +3180,100.071,342.375,444.119,183.551,536.239,338.546,446.409,149.119,113.421,149.119,349.335,316.190,358.257,20.261,19.375,20.261 +3181,100.103,344.226,447.153,182.577,532.903,340.641,449.100,151.499,102.953,151.499,349.633,316.302,357.792,20.940,18.936,20.940 +3182,100.136,346.474,450.840,181.140,528.526,342.960,452.536,154.231,92.302,154.231,349.725,315.268,357.529,21.241,18.688,21.241 +3183,100.168,349.216,454.611,179.851,523.351,345.179,456.287,157.453,81.516,157.453,348.072,313.542,356.814,20.788,18.934,20.788 +3184,100.199,352.033,459.141,178.284,517.340,347.496,460.700,161.037,70.549,161.037,347.273,312.129,356.868,20.127,19.670,20.127 +3185,100.232,354.243,464.721,176.677,510.844,349.501,466.016,164.725,59.615,164.725,347.225,311.107,357.056,20.169,20.097,20.169 +3186,100.263,356.253,470.824,174.467,504.347,350.676,471.922,168.864,48.888,168.864,346.940,310.068,358.308,20.427,21.507,20.427 +3187,100.293,357.931,477.810,173.734,495.919,352.151,478.464,173.541,37.968,173.541,346.860,308.193,358.495,19.179,21.315,19.179 +3188,100.324,361.123,485.708,173.061,487.457,352.618,485.910,178.641,27.160,178.641,342.070,308.174,359.086,18.208,21.106,18.208 +3189,100.355,376.703,494.930,172.771,479.818,352.293,493.296,3.830,16.043,3.830,311.111,307.963,360.042,18.202,19.386,18.202 +3190,100.385,367.733,504.526,174.059,470.273,351.581,501.970,8.994,4.614,8.994,327.883,309.254,360.589,17.878,19.834,17.878 +3191,100.416,355.733,511.632,175.997,462.969,350.062,510.109,15.030,174.315,15.030,348.927,308.259,360.670,19.316,19.893,19.316 +3192,100.447,352.845,518.138,179.294,453.812,348.542,516.417,21.801,163.301,21.801,351.521,309.282,360.789,25.997,20.306,25.997 +3193,100.477,352.845,518.138,179.294,453.812,348.542,516.417,21.801,163.301,21.801,351.521,309.282,360.789,25.997,20.306,25.997 +3194,100.507,348.783,528.155,184.608,445.019,345.239,526.215,28.686,151.232,28.686,351.699,309.742,359.780,25.937,19.319,25.937 +3195,100.538,344.420,536.525,190.140,434.463,340.650,533.952,34.315,140.343,34.315,351.671,310.231,360.799,25.539,18.254,25.539 +3196,100.572,336.741,547.696,197.780,425.322,333.167,544.403,42.647,129.082,42.647,350.797,310.056,360.516,24.873,17.751,24.873 +3197,100.603,329.384,556.321,206.289,416.652,325.666,551.956,49.574,117.759,49.574,349.354,309.675,360.823,23.965,17.698,23.965 +3198,100.636,319.700,564.400,216.535,409.511,316.515,559.478,57.095,107.103,57.095,348.718,307.981,360.444,23.162,17.498,23.162 +3199,100.669,309.531,570.778,228.121,404.456,307.012,565.562,64.231,96.605,64.231,347.178,305.475,358.764,21.955,18.414,21.955 +3200,100.701,297.526,577.992,239.166,420.496,298.158,579.954,72.160,84.144,72.160,343.849,263.285,339.727,20.833,19.309,20.833 +3201,100.732,290.750,621.750,256.247,421.604,283.697,586.487,78.690,74.982,78.690,262.207,251.991,334.129,22.749,18.210,22.749 +3202,100.764,270.772,585.985,274.078,418.502,270.785,586.212,86.808,65.225,86.808,334.985,251.295,334.531,22.909,19.556,22.909 +3203,100.796,257.264,578.868,290.020,410.717,257.136,580.351,94.937,51.667,94.937,346.646,262.560,343.670,22.607,23.368,22.607 +3204,100.829,245.699,575.671,290.816,395.543,247.102,569.951,103.786,40.566,103.786,347.821,306.086,359.601,20.121,24.062,20.121 +3205,100.860,233.886,570.974,301.970,400.898,235.801,566.283,112.212,29.464,112.212,346.115,310.450,356.250,19.750,19.664,19.750 +3206,100.891,223.437,564.756,314.400,407.300,225.729,560.836,120.305,18.435,120.305,345.517,312.117,354.598,19.960,18.025,19.960 +3207,100.922,213.789,557.516,326.274,413.897,217.013,553.427,128.248,7.409,128.248,344.023,315.069,354.437,19.793,18.668,19.793 +3208,100.953,205.354,549.365,336.046,421.291,209.588,545.259,135.876,176.679,135.876,342.373,316.917,354.168,19.273,18.903,19.273 +3209,100.984,196.607,542.644,344.442,430.275,203.810,537.266,143.257,165.426,143.257,335.416,318.936,353.394,20.687,21.040,20.687 +3210,101.014,187.007,534.697,350.562,438.636,198.602,528.309,151.150,155.540,151.150,326.259,320.117,352.736,18.168,19.480,18.168 +3211,101.045,187.007,534.697,350.562,438.636,198.602,528.309,151.150,155.540,151.150,326.259,320.117,352.736,18.168,19.480,18.168 +3212,101.074,157.464,534.463,355.272,448.388,194.347,518.876,157.091,144.919,157.091,271.258,320.156,351.342,17.756,20.162,17.756 +3213,101.105,174.272,516.790,358.328,458.360,191.809,511.424,162.987,134.208,162.987,312.833,319.680,349.514,20.238,20.338,20.238 +3214,101.137,177.954,505.493,360.500,469.000,189.773,503.235,169.182,124.509,169.182,324.173,320.089,348.238,20.295,22.970,20.295 +3215,101.170,179.285,495.896,362.491,479.057,189.331,495.053,175.206,112.989,175.206,327.617,318.800,347.781,19.011,25.051,19.011 +3216,101.201,180.465,487.029,362.556,488.354,189.255,487.132,0.670,102.804,0.670,329.024,318.691,346.607,18.291,24.822,18.291 +3217,101.232,181.659,479.394,361.892,497.995,189.826,480.203,5.659,92.490,5.659,329.548,318.655,345.962,18.997,24.281,18.997 +3218,101.263,183.931,472.692,361.155,506.138,191.086,474.026,10.566,82.235,10.566,331.592,319.903,346.148,18.795,24.050,18.795 +3219,101.294,186.238,465.824,359.664,513.791,192.897,467.661,15.422,71.862,15.422,332.245,320.697,346.060,19.280,22.660,19.280 +3220,101.324,187.387,460.409,357.898,520.714,194.765,462.933,18.886,61.798,18.886,330.510,322.590,346.107,18.998,21.189,18.998 +3221,101.355,189.618,454.713,355.878,526.704,197.243,457.971,23.139,51.885,23.139,329.184,323.567,345.766,19.311,19.604,19.311 +3222,101.385,190.919,446.542,354.043,531.407,200.663,451.341,26.222,42.459,26.222,324.224,325.089,345.946,25.065,19.156,25.065 +3223,101.417,181.335,440.797,352.417,534.404,200.599,451.499,29.055,34.059,29.055,301.876,326.173,345.950,17.580,18.992,17.580 +3224,101.452,172.879,429.214,351.112,537.712,203.834,446.711,29.476,25.423,29.476,274.871,324.728,345.986,22.521,20.177,22.521 +3225,101.484,192.355,434.244,349.167,540.124,205.757,443.370,34.253,16.504,34.253,313.562,324.322,345.989,27.312,20.667,27.312 +3226,101.514,196.908,434.632,346.602,543.230,207.112,441.730,34.824,7.524,34.824,320.082,323.736,344.942,26.198,20.988,26.198 +3227,101.545,196.908,434.632,346.602,543.230,207.112,441.730,34.824,7.524,34.824,320.082,323.736,344.942,26.198,20.988,26.198 +3228,101.576,200.397,432.976,344.528,545.998,209.105,439.566,37.117,176.820,37.117,322.583,322.003,344.425,26.207,22.465,26.207 +3229,101.606,202.936,430.972,342.404,548.110,210.825,437.481,39.523,166.109,39.523,323.340,322.332,343.797,25.610,23.830,25.610 +3230,101.637,203.650,429.916,340.447,549.958,211.176,436.254,40.101,154.983,40.101,324.564,321.272,344.243,26.007,24.709,26.007 +3231,101.670,205.634,428.250,338.431,551.589,212.872,434.814,42.207,143.842,42.207,323.367,320.845,342.910,25.563,24.998,25.563 +3232,101.701,205.289,428.061,336.611,553.040,212.305,434.346,41.855,133.112,41.855,324.733,320.681,343.572,26.085,24.681,26.085 +3233,101.732,207.075,426.801,335.459,554.282,213.665,433.088,43.655,121.551,43.655,325.345,321.403,343.561,24.101,24.339,24.101 +3234,101.763,208.312,426.540,334.605,555.644,214.741,432.778,44.136,110.225,44.136,325.253,322.197,343.169,24.799,23.903,24.799 +3235,101.799,208.355,426.554,334.345,556.211,214.823,432.889,44.403,98.931,44.403,325.251,322.217,343.360,24.099,22.848,24.099 +3236,101.833,207.619,426.736,334.369,556.896,214.357,433.174,43.698,87.917,43.698,325.844,322.478,344.483,24.758,21.022,24.758 +3237,101.864,207.313,426.071,334.548,556.872,214.541,433.084,44.136,76.809,44.136,324.514,323.636,344.658,24.082,19.381,24.082 +3238,101.895,205.993,425.291,335.780,556.192,214.464,433.374,43.655,65.581,43.655,321.695,324.091,345.112,24.792,18.938,24.792 +3239,101.928,199.179,424.660,337.432,555.337,211.862,436.475,42.969,54.567,42.969,311.132,324.678,345.798,18.463,19.242,18.463 +3240,101.958,151.330,384.330,338.872,553.690,211.023,437.628,41.760,43.927,41.760,185.286,324.704,345.334,17.689,18.668,17.689 +3241,101.990,196.630,425.821,340.588,551.643,211.025,437.414,38.848,32.645,38.848,308.148,325.656,345.113,23.575,19.446,23.575 +3242,102.022,200.231,429.319,343.126,548.419,210.519,437.980,40.092,22.143,40.092,318.245,324.063,345.141,27.942,20.097,27.942 +3243,102.054,198.740,432.680,344.561,546.213,208.651,440.113,36.870,12.043,36.870,320.000,323.585,344.777,25.400,20.499,25.400 +3244,102.085,197.718,435.403,346.014,543.930,206.968,441.878,34.992,0.735,34.992,322.286,322.153,344.868,25.396,22.062,25.396 +3245,102.116,196.290,437.060,348.227,540.259,205.681,443.251,33.398,171.085,33.398,322.312,322.159,344.809,25.541,23.013,25.541 +3246,102.146,194.178,440.526,350.077,536.716,203.343,445.998,30.841,160.253,30.841,323.636,321.744,344.984,25.387,24.037,25.387 +3247,102.177,194.178,440.526,350.077,536.716,203.343,445.998,30.841,160.253,30.841,323.636,321.744,344.984,25.387,24.037,25.387 +3248,102.208,192.166,444.311,352.246,532.565,201.308,449.180,28.040,149.744,28.040,324.122,320.894,344.838,25.471,24.834,25.471 +3249,102.239,189.392,449.619,354.163,528.118,198.575,453.700,23.962,138.621,23.962,324.708,320.493,344.806,25.993,25.191,25.993 +3250,102.271,186.581,456.294,355.972,522.978,195.630,459.848,21.440,128.234,21.440,325.199,320.481,344.644,19.181,25.350,19.181 +3251,102.304,184.867,461.852,357.964,516.950,193.716,464.682,17.735,117.979,17.735,326.149,319.467,344.729,19.354,25.279,19.354 +3252,102.335,183.429,467.793,359.481,510.810,191.879,469.833,13.570,107.526,13.570,327.692,319.450,345.076,19.442,25.094,19.442 +3253,102.365,182.214,475.110,361.077,503.885,190.546,476.392,8.746,97.125,8.746,328.596,319.017,345.456,18.703,24.683,18.703 +3254,102.396,181.650,482.243,362.153,495.993,189.558,482.771,3.814,87.230,3.814,330.333,318.692,346.184,18.758,23.956,18.758 +3255,102.433,181.948,489.396,362.614,487.945,189.253,489.273,179.037,76.729,179.037,332.104,318.993,346.718,18.132,23.974,18.132 +3256,102.477,183.177,498.295,362.466,478.653,189.520,497.539,173.199,66.695,173.199,335.157,319.339,347.931,19.267,24.077,19.267 +3257,102.510,184.667,507.022,361.245,469.180,190.535,505.699,167.289,56.626,167.289,337.095,319.524,349.125,20.141,23.661,20.141 +3258,102.542,186.767,515.818,358.665,458.872,192.479,513.863,161.105,46.618,161.105,338.004,320.531,350.078,20.141,23.090,20.141 +3259,102.579,194.418,535.673,349.700,440.100,199.912,532.258,148.134,26.565,148.134,338.796,318.863,351.733,22.839,18.336,22.839 +3260,102.610,199.292,543.235,343.032,430.392,204.307,539.294,141.843,16.523,141.843,339.970,318.676,352.727,20.388,17.862,20.388 +3261,102.641,199.292,543.235,343.032,430.392,204.307,539.294,141.843,16.523,141.843,339.970,318.676,352.727,20.388,17.862,20.388 +3262,102.671,207.089,550.658,334.948,420.951,210.802,546.855,134.314,6.573,134.314,342.998,318.158,353.629,19.150,17.861,19.150 +3263,102.702,215.897,558.816,325.516,412.273,219.018,554.590,126.444,176.594,126.444,344.990,317.747,355.498,19.467,17.814,19.467 +3264,102.733,225.716,566.118,314.268,405.021,228.396,561.198,118.578,166.651,118.578,345.249,317.275,356.453,19.777,18.041,19.777 +3265,102.765,236.123,572.171,302.283,399.664,238.230,566.553,110.556,156.891,110.556,345.505,316.453,357.507,19.078,16.746,19.078 +3266,102.796,247.725,577.077,288.618,394.909,249.170,570.385,102.187,147.152,102.187,346.004,315.138,359.697,20.605,18.829,20.605 +3267,102.827,259.418,579.307,274.749,393.272,259.810,573.038,93.576,137.564,93.576,348.133,313.789,360.696,22.456,17.734,22.456 +3268,102.857,275.683,580.117,260.617,393.306,275.237,573.222,86.302,128.157,86.302,347.150,312.674,360.969,23.275,17.636,23.275 +3269,102.889,287.754,578.057,246.731,396.130,286.332,571.956,76.880,119.476,76.880,347.922,311.321,360.451,22.400,18.055,22.400 +3270,102.920,303.156,573.339,232.797,400.796,300.904,567.698,68.231,110.410,68.231,348.368,309.915,360.516,21.387,17.829,21.387 +3271,102.950,316.237,566.892,219.481,407.096,312.981,561.350,59.566,101.310,59.566,347.870,308.687,360.724,22.999,18.239,22.999 +3272,102.980,328.006,557.995,207.354,415.994,324.206,553.341,50.771,92.386,50.771,348.566,306.609,360.583,24.122,17.943,24.122 +3273,103.010,328.006,557.995,207.354,415.994,324.206,553.341,50.771,92.386,50.771,348.566,306.609,360.583,24.122,17.943,24.122 +3274,103.040,337.578,547.966,197.377,425.568,333.286,544.074,42.207,83.797,42.207,348.982,306.240,360.569,24.151,18.132,24.151 +3275,103.072,346.174,536.243,189.533,435.869,341.372,533.035,33.751,76.159,33.751,348.914,306.572,360.465,26.082,19.250,26.082 +3276,103.106,352.147,524.695,184.051,447.872,347.287,522.355,25.717,68.600,25.717,347.987,304.355,358.775,26.197,19.665,26.197 +3277,103.138,355.087,515.822,179.361,459.764,350.077,514.201,17.928,59.421,17.928,347.837,305.981,358.368,19.645,22.228,19.645 +3278,103.170,357.888,504.347,177.868,473.445,353.468,503.539,10.364,52.017,10.364,347.310,301.174,356.297,19.685,22.069,19.685 +3279,103.201,358.944,491.047,173.971,483.550,353.095,490.734,3.059,44.608,3.059,346.788,303.366,358.503,23.089,21.029,23.089 +3280,103.233,358.252,481.760,173.127,493.477,352.226,482.163,176.172,38.040,176.172,346.830,307.230,358.909,19.154,20.940,19.154 +3281,103.264,356.594,471.170,174.506,504.191,350.572,472.299,169.380,32.005,169.380,345.602,307.399,357.857,19.719,21.412,19.719 +3282,103.296,355.792,460.949,176.659,514.073,348.072,463.324,162.897,24.775,162.897,341.360,308.287,357.515,20.512,22.350,20.512 +3283,103.327,353.170,451.393,179.937,523.397,344.632,455.078,156.658,19.799,156.658,337.973,308.762,356.571,20.973,21.716,20.973 +3284,103.356,349.618,444.006,183.747,532.006,341.120,448.740,150.876,13.938,150.876,336.548,308.999,356.004,20.903,20.693,20.903 +3285,103.387,344.509,435.463,188.300,539.978,336.052,441.297,145.402,8.443,145.402,334.764,310.025,355.311,19.870,20.579,19.870 +3286,103.418,338.906,429.079,193.179,546.636,331.204,435.549,139.970,3.576,139.970,334.154,310.956,354.273,20.705,19.836,20.705 +3287,103.449,333.000,423.500,198.486,552.949,326.134,430.366,135.000,178.531,135.000,334.461,311.231,353.881,19.092,19.814,19.092 +3288,103.480,327.523,418.936,204.190,558.823,321.053,426.511,130.503,174.428,130.503,333.091,312.249,353.015,19.754,21.241,19.754 +3289,103.510,327.523,418.936,204.190,558.823,321.053,426.511,130.503,174.428,130.503,333.091,312.249,353.015,19.754,21.241,19.754 +3290,103.540,321.567,413.715,209.604,563.617,315.301,422.391,125.838,170.433,125.838,331.343,312.702,352.747,19.141,20.918,19.141 +3291,103.573,315.541,410.371,215.646,568.040,310.058,419.280,121.608,166.373,121.608,331.426,313.643,352.348,18.999,21.528,18.999 +3292,103.604,309.416,406.987,221.480,571.270,304.507,416.515,117.255,162.474,117.255,329.756,314.431,351.192,18.992,20.878,18.992 +3293,103.636,303.532,404.080,227.642,574.682,299.103,414.461,113.106,159.102,113.106,328.250,315.324,350.823,19.070,21.844,19.070 +3294,103.667,297.290,402.291,233.853,577.491,293.652,412.823,109.058,156.801,109.058,328.050,315.529,350.336,19.024,22.322,19.024 +3295,103.698,290.982,400.666,239.900,579.300,288.122,411.330,105.013,153.435,105.013,327.373,316.180,349.456,18.984,21.913,18.984 +3296,103.729,284.840,399.458,246.126,580.632,282.727,410.250,101.079,151.049,101.079,326.486,316.632,348.480,19.421,21.522,19.421 +3297,103.759,278.895,399.181,252.172,582.108,277.505,409.914,97.383,148.782,97.383,326.398,317.123,348.044,18.875,21.872,18.875 +3298,103.790,273.140,399.179,258.523,583.035,272.439,409.529,93.879,146.430,93.879,327.350,317.561,348.098,18.196,22.133,18.196 +3299,103.823,267.000,399.500,264.691,583.261,267.000,409.631,90.000,143.781,90.000,327.000,317.991,347.261,18.000,23.283,18.000 +3300,103.855,262.076,399.753,270.554,582.572,262.673,409.610,86.532,143.057,86.532,326.492,318.203,346.243,18.814,23.203,18.814 +3301,103.886,256.296,400.516,277.020,582.524,257.561,410.437,82.737,140.964,82.737,326.331,318.932,346.333,18.779,23.135,18.779 +3302,103.918,251.019,401.905,283.510,581.591,252.903,411.471,78.857,139.222,78.857,326.157,319.105,345.656,19.578,23.352,19.578 +3303,103.948,245.693,403.644,289.724,580.099,248.090,412.586,74.995,137.675,74.995,326.645,319.383,345.161,20.184,23.355,20.184 +3304,103.977,245.693,403.644,289.724,580.099,248.090,412.586,74.995,137.675,74.995,326.645,319.383,345.161,20.184,23.355,20.184 +3305,104.008,240.429,405.485,296.044,578.503,243.430,414.257,71.114,136.181,71.114,326.327,319.085,344.869,21.065,23.453,21.065 +3306,104.039,235.189,407.572,302.582,576.073,238.807,416.106,67.031,134.576,67.031,325.805,318.975,344.343,22.243,23.077,22.243 +3307,104.071,229.778,410.086,309.127,573.178,234.021,418.340,62.796,133.264,62.796,325.531,319.808,344.092,22.916,23.474,22.916 +3308,104.103,224.352,413.557,315.529,569.575,229.090,421.281,58.470,132.089,58.470,325.084,320.062,343.207,23.125,23.723,23.125 +3309,104.135,218.712,416.887,321.985,565.552,224.083,424.251,53.893,131.023,53.893,325.475,319.952,343.705,23.639,24.301,23.639 +3310,104.166,213.278,421.231,328.147,560.705,219.202,428.078,49.132,129.908,49.132,325.051,320.220,343.159,24.092,24.226,24.092 +3311,104.198,208.305,426.119,334.415,555.232,214.792,432.461,44.351,128.660,44.351,324.581,320.000,342.724,24.803,24.675,24.803 +3312,104.229,203.148,431.544,340.327,548.865,210.100,437.235,39.307,127.875,39.307,324.991,319.863,342.960,25.611,24.908,25.611 +3313,104.260,197.577,437.885,345.824,541.490,205.129,442.919,33.690,127.057,33.690,325.332,320.210,343.485,24.684,24.902,24.684 +3314,104.291,192.300,445.091,350.743,533.578,200.639,449.442,27.553,126.254,27.553,325.184,320.465,343.996,25.248,25.321,25.248 +3315,104.324,187.038,455.407,355.147,524.750,195.843,458.977,22.068,125.218,22.068,325.686,320.732,344.689,19.311,25.614,19.311 +3316,104.355,183.554,464.310,358.781,514.572,192.909,466.949,15.751,124.574,15.751,325.703,320.199,345.144,19.249,25.258,19.249 +3317,104.391,180.716,474.263,361.437,503.794,190.722,475.873,9.139,123.887,9.139,325.695,319.802,345.965,18.759,25.573,18.759 +3318,104.425,178.943,485.284,362.804,492.016,189.399,485.616,1.818,123.476,1.818,326.121,319.224,347.043,18.657,25.279,18.657 +3319,104.455,178.210,496.760,362.679,479.587,189.287,495.729,174.685,122.905,174.685,326.034,318.691,348.284,18.733,24.891,18.733 +3320,104.487,178.425,509.430,360.322,466.805,190.443,506.602,166.759,122.600,166.759,324.262,318.377,348.956,19.812,24.196,19.812 +3321,104.517,180.572,522.547,355.338,453.260,192.983,517.726,158.769,122.499,158.769,322.732,317.907,349.361,20.561,20.004,20.561 +3322,104.548,183.200,537.400,349.566,440.800,197.997,529.053,150.573,121.805,150.573,316.768,317.710,350.746,22.422,19.817,22.422 +3323,104.578,183.200,537.400,349.566,440.800,197.997,529.053,150.573,121.805,150.573,316.768,317.710,350.746,22.422,19.817,22.422 +3324,104.608,184.764,554.791,341.882,428.824,204.575,539.534,142.400,121.152,142.400,302.662,317.118,352.672,23.040,19.926,23.040 +3325,104.640,183.993,574.941,332.152,418.017,210.534,546.942,133.468,120.639,133.468,277.314,316.078,354.472,17.418,20.054,17.418 +3326,104.672,175.904,619.934,320.663,408.628,220.137,555.680,124.544,120.426,124.544,200.241,314.858,356.256,17.530,19.518,17.530 +3327,104.703,223.982,579.793,307.512,400.918,232.074,563.113,115.880,120.486,115.880,320.635,314.506,357.713,19.099,18.674,19.099 +3328,104.736,241.513,577.781,293.118,395.842,244.090,568.863,106.119,119.914,106.119,341.097,313.691,359.663,19.108,20.161,19.108 +3329,104.767,255.009,580.226,279.212,393.707,255.878,572.329,96.275,120.256,96.275,344.313,313.120,360.203,22.743,20.515,22.743 +3330,104.800,273.209,580.530,264.167,393.502,272.937,573.275,87.855,120.885,87.855,345.432,312.481,359.951,23.096,18.576,23.096 +3331,104.831,286.566,578.709,247.500,395.888,285.146,572.356,77.402,120.630,77.402,347.840,312.126,360.859,23.101,18.523,23.101 +3332,104.862,303.102,572.947,231.452,400.972,300.899,567.500,67.977,120.411,67.977,349.085,311.613,360.837,20.999,18.373,20.999 +3333,104.892,317.859,565.349,217.276,408.456,314.707,560.257,58.241,120.411,58.241,348.730,311.613,360.709,23.281,18.486,23.281 +3334,104.923,330.071,555.287,204.680,418.194,326.502,551.246,48.547,120.466,48.547,349.954,311.462,360.738,23.748,18.709,23.748 +3335,104.955,340.694,543.426,194.129,429.874,336.746,540.237,38.928,120.735,38.928,350.433,311.454,360.584,25.463,18.770,25.463 +3336,104.986,347.961,530.596,185.483,442.490,343.891,528.251,29.954,120.579,29.954,350.743,311.773,360.139,25.215,20.427,25.215 +3337,105.016,352.311,520.194,179.588,455.853,348.221,518.615,21.114,120.964,21.114,351.073,312.299,359.841,19.978,20.408,19.978 +3338,105.047,355.512,507.712,175.091,469.357,351.145,506.734,12.619,121.135,12.619,350.983,312.641,359.934,19.517,20.234,19.517 +3339,105.078,355.512,507.712,175.091,469.357,351.145,506.734,12.619,121.135,12.619,350.983,312.641,359.934,19.517,20.234,19.517 +3340,105.107,356.664,494.879,172.929,482.457,352.440,494.552,4.425,121.464,4.425,351.343,313.344,359.817,19.062,19.325,19.062 +3341,105.140,355.859,482.616,172.119,495.266,351.633,482.866,176.609,121.544,176.609,351.398,313.868,359.866,19.255,19.028,19.255 +3342,105.173,353.856,471.238,173.431,507.381,349.785,472.042,168.826,121.621,168.826,351.420,314.393,359.719,20.420,19.416,20.420 +3343,105.206,350.736,460.660,176.085,518.744,346.449,462.076,161.717,121.701,161.717,350.054,315.121,359.082,20.270,19.293,20.270 +3344,105.238,346.571,451.445,179.627,528.698,342.539,453.331,154.929,121.774,154.929,350.096,315.772,358.998,20.526,19.858,20.526 +3345,105.269,341.522,444.118,184.555,538.033,338.192,446.185,148.179,121.342,148.179,350.110,316.425,357.948,21.478,20.812,21.478 +3346,105.301,336.263,436.724,190.076,546.044,333.042,439.183,142.646,120.282,142.646,348.858,317.295,356.962,19.727,20.902,19.727 +3347,105.332,330.775,430.600,195.376,553.112,327.621,433.523,137.167,118.673,137.167,347.969,317.965,356.569,19.472,20.262,19.472 +3348,105.362,325.340,425.503,200.759,558.878,322.376,428.789,132.049,116.455,132.049,347.261,318.425,356.111,19.846,19.705,19.846 +3349,105.392,319.624,421.067,206.570,564.164,316.813,424.749,127.363,113.414,127.363,346.158,319.217,355.422,19.435,19.668,19.435 +3350,105.424,314.569,416.908,212.433,568.437,311.666,421.341,123.219,109.747,123.219,344.248,319.524,354.845,18.545,19.837,18.545 +3351,105.455,308.873,414.527,218.754,572.337,306.603,418.576,119.272,105.046,119.272,344.882,320.400,354.164,18.569,19.906,18.569 +3352,105.487,304.096,412.347,223.733,575.318,302.006,416.705,115.618,100.389,115.618,344.060,320.918,353.726,18.411,19.820,18.411 +3353,105.517,299.312,410.899,229.618,578.050,297.577,415.135,112.276,94.635,112.276,343.881,321.378,353.036,18.362,20.473,18.362 +3354,105.548,295.024,409.268,234.170,580.525,293.325,414.149,109.197,88.301,109.197,342.811,321.511,353.149,18.658,19.792,18.658 +3355,105.578,295.024,409.268,234.170,580.525,293.325,414.149,109.197,88.301,109.197,342.811,321.511,353.149,18.658,19.792,18.658 +3356,105.607,291.509,408.303,240.258,582.147,290.068,413.105,106.699,81.114,106.699,342.423,323.204,352.451,18.965,21.614,18.965 +3357,105.639,287.706,407.676,243.735,583.080,286.512,412.451,104.036,73.095,104.036,341.975,322.775,351.819,18.675,20.740,18.675 +3358,105.671,284.231,406.624,248.358,583.334,283.256,411.375,101.592,65.120,101.592,341.228,321.342,350.928,18.989,19.932,18.989 +3359,105.702,280.951,406.000,252.172,583.727,280.165,410.795,99.310,56.611,99.310,340.650,320.928,350.366,19.089,19.982,19.089 +3360,105.733,277.615,405.077,254.833,584.703,276.909,410.726,97.125,48.289,97.125,339.359,320.887,350.744,18.605,22.574,18.605 +3361,105.765,274.721,404.700,257.933,584.970,274.194,410.460,95.231,39.251,95.231,338.963,320.281,350.531,18.114,24.025,18.114 +3362,105.796,272.134,404.268,261.689,584.819,271.771,410.315,93.434,30.256,93.434,337.473,319.742,349.589,18.028,25.338,18.028 +3363,105.827,269.258,403.418,265.028,584.220,269.091,410.062,91.444,21.161,91.444,335.120,318.848,348.412,17.994,26.322,17.994 +3364,105.857,266.391,402.516,268.280,584.152,266.450,410.066,89.552,11.725,89.552,333.091,318.292,348.191,18.117,25.753,18.117 +3365,105.889,263.669,402.119,271.479,583.483,264.010,410.230,87.597,2.517,87.597,330.590,317.397,346.827,18.613,25.492,18.613 +3366,105.920,260.245,401.441,273.987,582.905,260.917,409.879,85.452,172.451,85.452,330.105,317.584,347.035,18.362,24.246,18.362 +3367,105.951,257.726,401.530,276.768,582.750,258.717,410.449,83.660,162.801,83.660,328.534,317.905,346.481,18.552,24.724,18.552 +3368,105.980,255.086,402.054,279.371,582.245,256.372,410.951,81.773,153.130,81.773,327.665,318.029,345.645,18.828,24.251,18.828 +3369,106.011,252.152,401.432,282.444,581.751,253.891,411.075,79.778,143.427,79.778,326.472,318.985,346.069,19.215,23.912,19.215 +3370,106.041,252.152,401.432,282.444,581.751,253.891,411.075,79.778,143.427,79.778,326.472,318.985,346.069,19.215,23.912,19.215 +3371,106.072,249.310,401.785,285.275,581.314,251.465,411.762,77.811,133.423,77.811,325.321,319.958,345.735,19.729,22.930,19.729 +3372,106.112,242.899,401.845,290.912,580.464,246.318,413.384,73.496,112.306,73.496,321.659,321.840,345.729,20.561,20.449,20.561 +3373,106.156,239.357,401.690,294.390,580.760,243.816,414.820,71.241,102.200,71.241,319.045,324.290,346.778,20.992,22.375,20.992 +3374,106.189,235.492,401.537,299.073,579.528,241.201,416.314,68.875,92.827,68.875,314.523,323.840,346.205,21.476,18.570,21.476 +3375,106.222,230.874,400.171,303.563,578.668,238.483,417.730,66.571,83.341,66.571,308.819,325.227,347.091,22.266,18.206,22.266 +3376,106.260,221.861,396.325,308.314,576.467,233.600,420.009,63.635,73.610,63.635,293.858,324.435,346.725,17.600,18.510,17.600 +3377,106.291,189.820,348.392,312.952,574.041,230.523,422.167,61.113,63.825,61.113,177.078,324.694,345.594,17.663,18.132,17.663 +3378,106.321,216.287,403.950,317.398,571.342,228.735,422.817,56.583,53.781,56.583,300.393,325.411,345.601,20.859,18.897,20.859 +3379,106.352,219.237,415.831,322.584,567.902,225.765,424.971,54.462,44.349,54.462,322.703,324.646,345.167,23.133,18.938,23.133 +3380,106.382,217.027,420.370,327.165,564.562,222.509,427.385,51.995,35.340,51.995,327.253,325.492,345.059,23.742,19.889,23.742 +3381,106.413,213.199,423.164,331.998,559.565,219.119,429.780,48.180,25.253,48.180,326.220,325.152,343.976,24.318,20.682,24.318 +3382,106.443,213.199,423.164,331.998,559.565,219.119,429.780,48.180,25.253,48.180,326.220,325.152,343.976,24.318,20.682,24.318 +3383,106.473,208.445,425.548,336.621,555.879,215.841,432.884,44.764,16.327,44.764,323.899,323.362,344.734,24.943,21.132,24.943 +3384,106.506,203.564,430.016,341.066,550.499,211.394,436.641,40.236,7.524,40.236,324.557,322.744,345.071,25.368,22.297,25.368 +3385,106.538,199.187,434.244,345.043,545.114,207.843,440.561,36.119,177.797,36.119,323.488,322.454,344.919,25.587,22.137,25.587 +3386,106.571,194.645,439.634,349.115,538.577,203.970,445.357,31.535,168.690,31.535,323.050,322.023,344.932,25.473,22.749,25.473 +3387,106.602,190.700,446.100,352.884,531.856,200.425,450.962,26.565,159.444,26.565,323.335,321.278,345.080,25.491,23.993,25.491 +3388,106.633,186.313,454.671,356.315,524.177,196.463,458.845,22.353,150.255,22.353,323.423,320.630,345.374,19.310,24.683,19.310 +3389,106.665,182.950,462.835,358.998,515.724,193.461,465.988,16.699,140.826,16.699,323.745,320.488,345.694,19.444,24.492,19.444 +3390,106.695,181.022,471.456,361.328,506.899,191.555,473.506,11.017,131.820,11.017,324.587,319.787,346.050,18.815,25.221,18.815 +3391,106.725,179.801,480.834,362.410,497.020,190.145,481.714,4.865,122.242,4.865,325.123,319.282,345.885,18.953,25.361,18.953 +3392,106.756,179.497,489.843,362.844,486.213,189.369,489.630,178.765,113.629,178.765,327.269,318.307,347.018,18.168,25.080,18.168 +3393,106.788,180.195,500.854,361.590,475.153,189.569,499.505,171.809,104.534,171.809,328.531,317.216,347.472,19.084,24.523,19.084 +3394,106.819,182.908,511.761,358.958,463.737,190.940,509.524,164.434,95.906,164.434,331.609,315.935,348.284,20.546,23.392,20.546 +3395,106.850,186.388,522.630,354.889,452.505,193.600,519.625,157.380,87.173,157.380,333.769,315.702,349.396,20.231,22.836,20.231 +3396,106.880,192.050,533.193,350.005,440.999,198.335,529.576,150.081,78.350,150.081,336.773,315.386,351.276,20.695,23.960,20.695 +3397,106.911,192.050,533.193,350.005,440.999,198.335,529.576,150.081,78.350,150.081,336.773,315.386,351.276,20.695,23.960,20.695 +3398,106.940,198.281,543.004,348.219,443.918,202.211,539.947,142.125,69.444,142.125,338.457,284.878,348.415,19.646,24.813,19.646 +3399,106.972,206.527,552.040,342.559,435.466,209.421,549.068,134.236,60.324,134.236,340.248,278.208,348.544,19.628,25.497,19.628 +3400,107.004,216.489,560.568,333.634,423.829,218.679,557.514,125.640,51.941,125.640,343.740,279.427,351.255,19.673,24.683,19.673 +3401,107.035,227.643,567.594,318.539,409.889,229.678,563.610,117.051,43.059,117.051,345.688,292.275,354.635,19.536,25.214,19.536 +3402,107.067,239.812,573.258,296.677,398.467,241.448,568.270,108.156,34.611,108.156,346.615,312.309,357.115,19.100,20.518,19.100 +3403,107.098,251.829,577.361,281.849,395.879,252.576,572.540,98.811,25.821,98.811,348.365,311.775,358.122,22.353,18.265,22.353 +3404,107.129,268.577,578.579,267.122,394.742,268.637,573.924,90.744,16.949,90.744,348.984,311.375,358.295,22.985,17.874,22.985 +3405,107.160,282.745,577.882,252.090,395.870,282.075,573.285,81.714,8.130,81.714,350.478,311.268,359.768,23.336,17.819,23.336 +3406,107.191,296.356,574.453,237.015,399.903,295.024,570.319,72.147,179.076,72.147,351.301,310.185,359.988,20.938,17.127,20.938 +3407,107.223,310.815,567.499,223.131,405.763,308.948,563.904,62.557,170.272,62.557,351.688,311.400,359.791,22.610,17.769,22.610 +3408,107.257,323.322,559.178,210.574,414.216,321.083,556.161,53.411,160.974,53.411,352.173,310.897,359.687,23.944,17.408,23.944 +3409,107.291,334.389,549.521,199.135,423.254,331.227,546.423,44.421,152.066,44.421,352.250,311.407,361.103,24.769,18.229,24.769 +3410,107.323,343.232,538.064,190.176,434.571,339.736,535.571,35.487,142.943,35.487,352.235,312.002,360.823,25.573,17.769,25.573 +3411,107.355,349.833,526.004,183.733,447.225,346.170,524.131,27.085,134.680,27.085,351.048,311.881,359.278,26.237,18.677,26.237 +3412,107.386,353.226,516.924,178.737,459.445,349.419,515.618,18.929,125.395,18.929,351.297,312.128,359.348,19.725,19.307,19.725 +3413,107.416,356.180,505.081,175.352,471.663,352.088,504.279,11.098,116.120,11.098,351.079,312.229,359.418,19.551,19.765,19.551 +3414,107.447,357.611,491.686,173.649,483.643,352.942,491.401,3.495,106.650,3.495,349.509,312.350,358.865,23.239,18.929,23.239 +3415,107.477,357.611,491.686,173.649,483.643,352.942,491.401,3.495,106.650,3.495,349.509,312.350,358.865,23.239,18.929,23.239 +3416,107.509,356.886,482.193,173.515,495.377,352.339,482.480,176.384,97.125,176.384,349.452,312.195,358.563,19.203,18.977,19.203 +3417,107.540,355.257,471.555,175.040,506.435,350.681,472.418,169.327,87.574,169.327,348.492,311.610,357.805,20.508,18.737,20.508 +3418,107.573,352.904,461.582,177.752,516.535,348.297,463.013,162.737,78.331,162.737,347.842,311.673,357.491,20.480,18.863,20.480 +3419,107.604,349.058,452.838,181.306,525.881,344.640,454.763,156.458,68.671,156.458,346.652,311.602,356.291,20.922,18.577,20.922 +3420,107.636,345.244,445.047,185.899,534.741,340.830,447.544,150.507,58.753,150.507,345.425,312.975,355.567,20.362,19.423,20.362 +3421,107.667,340.336,438.046,189.594,541.486,336.014,441.055,145.152,49.128,145.152,344.567,311.745,355.099,19.520,20.736,19.520 +3422,107.698,335.212,431.941,193.771,549.475,330.562,435.853,139.927,39.806,139.927,343.489,311.386,355.644,19.398,24.071,19.398 +3423,107.729,330.000,426.500,199.499,554.852,325.912,430.588,135.000,30.466,135.000,342.947,311.716,354.510,19.092,24.388,19.092 +3424,107.760,324.916,421.474,205.116,559.701,320.798,426.327,130.314,21.224,130.314,340.356,312.324,353.085,19.756,25.078,19.756 +3425,107.791,319.138,416.754,210.823,564.425,315.179,422.264,125.695,11.592,125.695,339.116,312.443,352.685,19.460,23.862,19.460 +3426,107.824,314.020,412.350,216.096,568.063,309.910,419.059,121.492,2.246,121.492,336.391,312.662,352.127,19.082,22.414,19.082 +3427,107.858,308.873,408.245,221.647,571.444,304.651,416.409,117.350,173.418,117.350,333.296,313.726,351.678,19.173,22.352,19.173 +3428,107.891,303.797,405.667,227.076,574.173,299.850,414.662,113.694,164.476,113.694,330.971,314.589,350.619,18.874,21.679,18.874 +3429,107.924,298.368,402.533,232.626,576.937,294.577,413.064,109.799,156.468,109.799,327.956,315.554,350.341,19.345,21.620,19.345 +3430,107.958,292.676,399.905,238.064,578.719,289.345,411.591,105.911,147.804,105.911,325.264,316.711,349.567,19.203,20.717,19.203 +3431,107.991,287.180,397.295,243.398,580.381,284.317,410.540,102.195,139.538,102.195,322.202,317.917,349.304,19.416,19.983,19.416 +3432,108.024,281.908,395.463,248.845,581.860,279.575,410.113,99.051,132.176,99.051,319.214,318.717,348.884,18.423,19.357,18.423 +3433,108.058,276.038,393.645,254.735,582.960,274.505,409.946,95.371,125.235,95.371,315.463,319.915,348.210,18.253,18.838,18.253 +3434,108.093,269.852,392.554,260.940,583.923,269.344,409.958,91.672,118.556,91.672,313.450,320.586,348.273,17.949,19.455,17.949 +3435,108.125,263.766,392.362,267.414,584.338,264.434,410.569,87.898,112.665,87.898,311.084,321.694,347.523,18.465,19.500,18.465 +3436,108.159,257.059,392.669,273.906,584.815,259.060,411.180,83.830,107.324,83.830,311.214,322.912,348.450,18.406,20.258,18.406 +3437,108.191,250.944,393.885,280.658,584.036,254.196,412.096,79.875,102.947,79.875,310.833,323.717,347.830,19.196,20.253,19.196 +3438,108.224,244.909,397.129,287.699,583.267,249.108,413.556,75.660,98.944,75.660,314.051,324.815,347.963,20.229,20.735,20.229 +3439,108.256,238.899,400.671,294.413,582.311,243.969,415.543,71.175,96.096,71.175,316.823,326.734,348.249,21.017,20.524,21.017 +3440,108.288,232.854,404.269,302.480,577.999,238.456,417.259,66.672,93.865,66.672,317.612,323.492,345.905,22.176,18.323,22.176 +3441,108.319,226.400,408.928,310.031,574.931,232.586,420.343,61.545,92.017,61.545,319.658,324.433,345.624,21.691,18.425,21.691 +3442,108.349,221.000,414.000,317.184,569.977,227.100,423.150,56.310,90.725,56.310,322.281,322.151,344.274,23.297,17.859,23.297 +3443,108.379,214.644,419.328,325.301,564.501,221.283,427.410,50.599,89.732,50.599,323.000,323.039,343.917,23.872,19.355,23.872 +3444,108.409,214.644,419.328,325.301,564.501,221.283,427.410,50.599,89.732,50.599,323.000,323.039,343.917,23.872,19.355,23.872 +3445,108.438,208.750,425.750,332.740,558.013,215.438,432.438,45.000,89.037,45.000,324.562,322.207,343.479,24.042,20.384,24.042 +3446,108.471,203.427,432.341,339.535,550.959,210.104,437.683,38.660,88.466,38.660,326.559,322.313,343.662,25.925,20.814,25.925 +3447,108.503,197.677,439.203,346.063,542.405,204.825,443.785,32.661,88.224,32.661,327.275,321.404,344.255,25.472,21.765,25.472 +3448,108.535,192.810,447.707,351.730,532.510,199.850,451.149,26.053,87.898,26.053,328.689,321.224,344.362,25.873,22.489,25.873 +3449,108.565,187.556,459.531,356.379,521.899,194.682,462.065,19.573,87.563,19.573,329.670,320.391,344.797,18.970,23.213,18.970 +3450,108.596,184.070,470.354,360.074,510.332,191.682,471.993,12.155,87.306,12.155,329.806,319.540,345.379,18.860,23.950,18.860 +3451,108.626,181.746,481.318,362.030,497.450,189.577,481.925,4.430,87.230,4.430,330.566,317.886,346.274,18.873,24.149,18.873 +3452,108.657,181.012,492.724,362.131,484.493,188.936,492.304,176.966,86.987,176.966,330.861,317.823,346.731,18.201,24.177,18.201 +3453,108.688,182.147,506.118,360.876,470.929,189.945,504.500,168.283,87.039,168.283,332.443,316.870,348.372,20.120,24.622,20.120 +3454,108.719,185.215,518.448,356.621,456.549,192.333,515.835,159.837,86.785,159.837,334.147,315.906,349.310,19.867,23.345,19.867 +3455,108.750,190.962,532.056,350.847,443.036,197.663,528.358,151.113,86.878,151.113,335.376,314.896,350.684,22.584,22.930,22.584 +3456,108.780,196.433,544.216,343.143,436.154,202.443,539.606,142.507,86.906,142.507,334.056,302.423,349.206,20.499,22.993,20.499 +3457,108.811,196.433,544.216,343.143,436.154,202.443,539.606,142.507,86.906,142.507,334.056,302.423,349.206,20.499,22.993,20.499 +3458,108.841,204.224,555.690,333.448,432.133,208.352,551.355,133.603,87.026,133.603,333.241,286.445,345.213,19.621,23.060,19.621 +3459,108.873,215.000,568.000,321.269,427.117,218.091,563.363,123.690,86.987,123.690,330.047,274.620,341.192,19.969,22.075,19.969 +3460,108.905,227.827,578.309,306.760,420.667,230.374,572.559,113.887,88.176,113.887,327.050,271.308,339.627,19.554,20.232,19.554 +3461,108.937,241.439,591.108,290.654,416.514,244.226,579.751,103.786,87.663,103.786,315.808,269.102,339.196,20.561,19.168,20.561 +3462,108.968,255.951,618.585,273.651,410.067,258.124,581.434,93.347,87.178,93.347,269.534,276.158,343.963,23.428,18.653,23.428 +3463,108.999,280.295,604.246,257.055,410.620,278.241,581.654,84.806,87.184,84.806,299.130,275.208,344.500,22.996,18.224,22.996 +3464,109.029,293.998,578.730,240.378,397.839,291.816,570.668,74.859,86.547,74.859,343.824,307.647,360.528,22.099,19.499,22.099 +3465,109.059,309.432,571.794,226.503,403.050,306.138,564.887,64.502,87.138,64.502,345.406,308.565,360.711,22.037,19.376,22.037 +3466,109.091,323.051,562.255,211.792,411.627,319.202,556.825,54.675,86.702,54.675,347.830,307.642,361.141,23.654,18.539,23.654 +3467,109.123,334.710,551.286,200.115,422.276,330.545,547.141,44.861,86.878,44.861,349.306,307.743,361.060,23.922,17.919,23.922 +3468,109.154,344.270,538.709,190.202,434.284,339.704,535.472,35.340,86.657,35.340,349.771,307.819,360.966,25.436,19.047,25.436 +3469,109.185,351.325,525.844,183.951,446.805,346.455,523.434,26.325,86.767,26.325,348.399,308.694,359.266,25.259,21.059,25.259 +3470,109.215,354.898,514.995,178.446,460.752,350.038,513.462,17.504,86.809,17.504,348.810,308.747,359.001,19.947,20.275,19.947 +3471,109.246,357.429,501.950,175.097,474.347,352.470,501.172,8.915,86.622,8.915,348.736,309.701,358.775,19.487,20.527,19.487 +3472,109.275,357.429,501.950,175.097,474.347,352.470,501.172,8.915,86.622,8.915,348.736,309.701,358.775,19.487,20.527,19.487 +3473,109.307,358.023,489.410,173.744,487.838,352.895,489.336,0.827,86.622,0.827,348.050,310.640,358.308,18.471,19.764,18.471 +3474,109.338,356.672,476.911,174.156,500.835,351.720,477.537,172.791,86.437,172.791,348.183,310.830,358.167,19.340,19.738,19.340 +3475,109.369,353.508,465.253,176.386,513.316,349.004,466.445,165.167,86.352,165.167,348.413,311.960,357.730,20.954,19.692,20.954 +3476,109.400,349.452,454.927,179.499,524.532,344.951,456.761,157.834,86.356,157.834,347.868,313.638,357.588,21.266,19.782,21.266 +3477,109.431,344.286,446.319,184.169,534.956,340.373,448.497,150.903,86.248,150.903,348.114,314.832,357.070,20.394,19.090,20.394 +3478,109.462,338.643,438.094,189.921,544.358,334.881,440.771,144.563,85.771,144.563,347.101,315.912,356.336,19.429,19.405,19.429 +3479,109.493,332.621,431.448,195.523,552.460,329.084,434.592,138.366,85.622,138.366,346.798,316.371,356.263,19.765,19.684,19.765 +3480,109.525,325.636,425.300,202.321,559.848,322.502,428.736,132.376,85.236,132.376,346.416,317.483,355.718,19.455,19.599,19.455 +3481,109.559,318.736,420.186,209.317,565.659,315.953,423.922,126.686,84.611,126.686,345.423,318.416,354.740,19.559,19.555,19.559 +3482,109.592,311.740,416.007,216.412,571.185,309.146,420.250,121.441,83.830,121.441,344.346,319.140,354.293,18.964,19.965,18.964 +3483,109.624,304.991,412.514,224.077,575.298,302.768,417.016,116.284,82.714,116.284,343.487,320.147,353.528,19.096,19.454,19.096 +3484,109.656,297.748,410.532,231.711,579.708,295.994,415.016,111.371,80.850,111.371,343.952,322.574,353.584,18.868,20.859,18.868 +3485,109.687,291.901,408.399,239.516,581.997,290.420,413.242,107.008,79.357,107.008,342.399,323.057,352.528,18.990,20.553,18.990 +3486,109.717,285.073,406.867,246.493,583.618,283.993,411.862,102.195,76.908,102.195,341.382,322.668,351.603,19.069,19.797,19.069 +3487,109.747,278.911,406.285,253.499,585.142,278.209,411.284,97.996,74.029,97.996,341.113,323.073,351.209,18.683,20.251,18.683 +3488,109.778,278.911,406.285,253.499,585.142,278.209,411.284,97.996,74.029,97.996,341.113,323.073,351.209,18.683,20.251,18.683 +3489,109.809,273.091,405.721,260.297,586.072,272.716,410.969,94.086,70.419,94.086,340.561,324.164,351.085,18.097,20.949,18.097 +3490,109.841,267.000,404.000,266.639,585.999,267.000,410.999,90.000,66.251,90.000,336.000,322.996,349.999,18.000,21.455,18.000 +3491,109.874,262.341,404.631,272.963,585.697,262.742,411.242,86.532,61.223,86.532,336.262,322.839,349.508,18.753,21.418,18.753 +3492,109.906,257.036,405.310,279.846,584.570,257.836,411.670,82.828,55.376,82.828,335.770,323.183,348.590,18.746,20.847,18.746 +3493,109.937,252.352,407.007,285.348,584.056,253.458,412.782,79.160,49.367,79.160,336.670,323.120,348.430,19.288,21.070,19.288 +3494,109.968,247.503,408.012,291.684,582.189,248.957,413.680,75.619,42.917,75.619,335.977,322.844,347.681,19.497,22.214,19.497 +3495,109.999,243.207,409.402,297.014,579.794,244.890,414.612,72.096,36.055,72.096,335.465,324.301,346.414,20.788,22.844,20.788 +3496,110.029,238.524,410.666,302.774,577.567,240.613,415.999,68.607,28.393,68.607,334.764,323.066,346.220,21.722,24.513,21.722 +3497,110.060,233.377,411.467,309.028,575.166,236.491,418.094,64.836,20.031,64.836,331.374,321.928,346.018,22.166,24.310,22.166 +3498,110.091,227.988,413.382,314.628,572.411,231.971,420.620,61.178,12.246,61.178,329.151,321.407,345.673,22.176,23.764,22.176 +3499,110.123,223.605,415.867,319.999,569.021,228.296,423.142,57.186,3.614,57.186,327.282,321.002,344.594,23.381,24.036,23.381 +3500,110.154,218.420,418.560,325.453,564.952,223.890,425.853,53.130,175.073,53.130,326.200,320.656,344.433,24.000,24.272,24.000 +3501,110.184,213.350,422.071,330.663,560.181,219.523,429.107,48.738,166.504,48.738,324.932,320.382,343.652,24.189,24.543,24.189 +3502,110.215,208.338,425.643,336.035,555.084,215.422,432.571,44.361,157.557,44.361,323.961,320.156,343.779,25.502,25.056,25.502 +3503,110.245,208.338,425.643,336.035,555.084,215.422,432.571,44.361,157.557,44.361,323.961,320.156,343.779,25.502,25.056,25.502 +3504,110.274,202.938,431.463,340.845,549.069,210.374,437.529,39.207,148.761,39.207,324.016,320.026,343.209,25.183,25.076,25.183 +3505,110.306,198.153,436.848,345.786,542.506,206.231,442.365,34.330,139.497,34.330,323.875,319.864,343.440,25.318,25.330,25.318 +3506,110.338,193.751,442.637,350.012,535.153,202.156,447.393,29.504,130.601,29.504,324.491,319.539,343.805,25.435,25.164,25.435 +3507,110.368,189.670,449.742,353.740,527.645,198.217,453.541,23.962,121.239,23.962,325.723,320.699,344.430,25.993,25.174,25.993 +3508,110.399,185.099,461.630,357.276,518.310,193.705,464.386,17.758,111.801,17.758,326.377,319.396,344.449,19.240,24.883,19.240 +3509,110.430,182.654,470.756,359.976,508.606,191.151,472.514,11.689,102.529,11.689,327.917,318.996,345.272,18.842,24.947,18.842 +3510,110.461,181.602,480.373,361.782,497.986,189.834,481.121,5.194,93.576,5.194,329.007,318.628,345.538,18.560,24.639,18.560 +3511,110.492,181.415,490.102,362.677,486.929,189.274,489.906,178.568,83.991,178.568,331.122,318.242,346.845,18.219,24.915,18.219 +3512,110.523,182.602,501.440,361.767,475.563,189.584,500.354,171.158,74.814,171.158,333.764,318.284,347.896,19.148,24.596,19.148 +3513,110.555,185.472,512.732,359.571,463.517,191.536,510.922,163.379,65.739,163.379,336.492,317.393,349.148,20.323,24.371,20.323 +3514,110.587,189.319,523.711,355.269,450.654,194.821,521.242,155.829,56.310,155.829,338.508,317.566,350.569,20.351,24.684,20.351 +3515,110.617,195.260,535.109,349.319,438.781,200.111,532.124,148.392,47.239,148.392,340.598,317.094,351.990,22.209,24.781,22.209 +3516,110.647,201.048,544.558,341.495,426.750,205.891,540.549,140.383,38.541,140.383,341.471,316.881,354.046,20.084,24.287,20.084 +3517,110.677,201.048,544.558,341.495,426.750,205.891,540.549,140.383,38.541,140.383,341.471,316.881,354.046,20.084,24.287,20.084 +3518,110.706,210.231,553.928,330.720,418.113,213.451,550.305,131.634,29.670,131.634,343.725,315.671,353.420,19.848,20.011,19.848 +3519,110.741,220.079,562.765,318.937,409.973,222.708,558.676,122.735,20.915,122.735,344.523,315.188,354.245,19.107,18.057,19.107 +3520,110.774,232.316,569.770,305.835,402.764,234.146,565.548,113.429,12.189,113.429,346.530,314.992,355.734,19.299,17.970,19.299 +3521,110.807,244.854,575.837,291.498,397.534,246.182,570.499,103.974,3.558,103.974,346.578,313.948,357.579,20.370,17.924,20.370 +3522,110.839,257.787,578.579,276.158,394.844,258.232,573.071,94.620,175.101,94.620,347.131,313.593,358.183,23.086,17.934,23.086 +3523,110.871,275.275,579.362,260.995,394.593,274.941,573.861,86.520,166.684,86.520,348.545,313.153,359.568,23.261,18.230,23.261 +3524,110.903,289.455,576.764,245.973,396.933,288.335,571.821,77.236,158.369,77.236,349.715,312.723,359.851,22.561,18.159,22.561 +3525,110.933,303.222,572.570,231.324,401.318,301.161,567.525,67.775,150.210,67.775,349.648,312.070,360.548,20.465,18.697,20.465 +3526,110.964,316.433,565.327,218.308,408.394,313.806,560.998,58.749,142.036,58.749,349.882,311.711,360.009,22.206,18.423,22.206 +3527,110.995,328.341,556.270,206.031,417.015,325.099,552.415,49.939,134.119,49.939,350.449,311.286,360.524,24.248,18.644,24.248 +3528,111.025,338.262,546.177,195.871,427.136,334.397,542.814,41.025,126.127,41.025,350.627,311.654,360.873,24.738,18.536,24.738 +3529,111.057,346.220,534.544,187.951,438.283,341.971,531.814,32.722,118.355,32.722,350.172,311.011,360.274,25.475,18.900,25.475 +3530,111.088,351.664,522.784,182.042,449.987,347.461,520.855,24.651,110.200,24.651,350.555,311.084,359.804,25.710,19.992,25.710 +3531,111.119,354.768,514.112,178.095,462.066,350.324,512.772,16.783,102.308,16.783,349.788,310.744,359.070,19.498,20.748,19.498 +3532,111.149,357.816,500.571,175.016,473.750,352.775,499.744,9.317,94.739,9.317,349.029,310.587,359.246,23.653,19.457,23.653 +3533,111.180,358.033,491.627,173.987,485.305,353.021,491.436,2.186,86.804,2.186,348.243,309.802,358.275,18.902,19.269,18.902 +3534,111.210,358.033,491.627,173.987,485.305,353.021,491.436,2.186,86.804,2.186,348.243,309.802,358.275,18.902,19.269,18.902 +3535,111.241,357.887,480.589,174.170,496.369,352.651,481.008,175.426,78.944,175.426,347.769,310.270,358.275,19.019,19.166,19.019 +3536,111.272,355.808,470.538,175.542,506.622,350.816,471.537,168.690,70.953,168.690,347.322,310.246,357.502,20.592,19.546,20.592 +3537,111.304,353.105,461.244,178.166,516.147,348.323,462.746,162.565,62.883,162.565,346.654,310.842,356.680,20.445,19.636,20.445 +3538,111.335,349.392,453.070,181.245,525.179,344.876,455.016,156.686,54.913,156.686,346.240,311.399,356.076,20.980,20.362,20.980 +3539,111.365,345.484,446.095,184.457,532.658,341.145,448.489,151.113,46.724,151.113,345.793,310.083,355.704,20.319,21.066,20.319 +3540,111.396,341.227,439.327,187.534,540.458,336.465,442.524,146.129,38.741,146.129,345.005,311.567,356.475,19.677,23.699,19.677 +3541,111.427,337.194,433.765,192.651,546.740,332.631,437.385,141.569,30.877,141.569,343.603,311.279,355.253,19.643,24.085,19.643 +3542,111.458,332.607,428.255,197.401,551.243,328.308,432.272,136.948,22.130,136.948,341.984,311.816,353.751,19.663,25.159,19.663 +3543,111.490,328.345,423.126,202.465,556.703,323.676,428.184,132.709,14.520,132.709,339.536,311.659,353.302,19.557,24.181,19.557 +3544,111.522,323.484,418.362,207.115,560.841,318.739,424.356,128.367,5.648,128.367,337.303,312.038,352.592,20.222,22.013,20.222 +3545,111.553,318.927,414.540,211.835,564.758,314.152,421.391,124.875,177.079,124.875,335.543,312.614,352.245,18.894,21.961,18.894 +3546,111.583,314.625,410.484,216.231,568.154,309.473,418.991,121.195,168.690,121.195,331.891,314.178,351.781,18.866,21.965,18.866 +3547,111.613,311.018,406.359,220.681,570.835,305.504,416.796,117.848,160.201,117.848,328.036,314.746,351.645,19.085,21.076,19.085 +3548,111.643,311.018,406.359,220.681,570.835,305.504,416.796,117.848,160.201,117.848,328.036,314.746,351.645,19.085,21.076,19.085 +3549,111.674,306.551,402.887,224.715,572.982,301.034,415.026,114.444,151.189,114.444,324.090,315.744,350.758,19.945,19.408,19.945 +3550,111.704,304.011,399.317,229.080,575.606,297.982,414.286,111.938,142.853,111.938,318.484,317.025,350.760,20.020,19.662,20.020 +3551,111.737,299.578,394.712,233.000,577.500,293.359,412.873,108.905,133.919,108.905,312.213,317.715,350.606,18.843,19.315,18.843 +3552,111.768,295.988,388.167,237.692,579.737,289.051,411.868,106.314,124.931,106.314,301.685,319.583,351.075,17.533,19.234,17.533 +3553,111.799,293.349,377.208,242.099,581.560,284.963,411.514,103.736,116.030,103.736,280.087,320.266,350.721,17.787,19.309,17.787 +3554,111.830,294.727,345.121,246.632,583.101,282.004,411.279,100.886,107.403,100.886,216.079,321.603,350.821,16.656,19.327,16.656 +3555,111.861,289.680,330.740,251.107,584.870,278.200,411.099,98.130,98.306,98.130,189.363,323.289,351.712,17.678,19.458,17.678 +3556,111.892,275.788,401.933,255.876,585.505,274.879,411.098,95.664,89.569,95.664,332.444,323.089,350.862,17.838,22.150,17.838 +3557,111.925,272.043,402.245,259.994,585.888,271.549,410.890,93.270,81.187,93.270,333.428,323.660,350.745,17.914,20.599,17.914 +3558,111.957,268.558,403.914,265.761,586.233,268.434,411.074,90.996,72.529,90.996,336.036,324.221,350.358,17.980,20.685,17.980 +3559,111.989,265.352,405.078,269.926,585.537,265.473,410.757,88.772,63.789,88.772,338.308,322.912,349.669,18.339,20.373,18.339 +3560,112.019,261.989,405.664,274.564,584.696,262.323,410.780,86.269,54.866,86.269,338.433,322.609,348.687,18.548,20.657,18.548 +3561,112.049,258.374,405.338,277.751,584.794,259.022,411.327,83.830,46.782,83.830,336.902,321.996,348.951,18.514,22.447,18.514 +3562,112.079,258.374,405.338,277.751,584.794,259.022,411.327,83.830,46.782,83.830,336.902,321.996,348.951,18.514,22.447,18.514 +3563,112.110,255.384,406.392,282.154,583.231,256.143,411.455,81.469,37.875,81.469,337.227,322.407,347.467,19.037,22.102,19.037 +3564,112.141,251.981,406.589,285.532,583.163,253.118,412.415,78.959,29.335,78.959,335.718,322.374,347.590,19.366,24.316,19.366 +3565,112.173,248.575,406.437,289.884,581.644,250.118,412.899,76.569,20.556,76.569,333.445,321.395,346.732,20.019,24.696,20.019 +3566,112.205,244.949,406.375,294.259,580.335,247.009,413.559,73.996,12.529,73.996,331.733,319.972,346.679,20.484,24.622,20.484 +3567,112.237,241.345,407.227,298.299,578.890,243.817,414.551,71.350,3.979,71.350,330.805,319.480,346.265,21.070,24.619,21.070 +3568,112.267,237.445,407.804,302.491,577.391,240.598,415.862,68.629,175.301,68.629,328.648,318.966,345.953,21.702,25.053,21.702 +3569,112.298,233.564,408.971,306.526,575.261,237.257,417.184,65.786,166.908,65.786,327.152,319.158,345.161,22.239,25.030,22.239 +3570,112.329,229.780,410.855,310.765,572.941,233.931,418.897,62.700,158.499,62.700,326.152,319.384,344.252,22.445,24.811,22.445 +3571,112.358,225.593,412.675,315.049,570.345,230.248,420.565,59.459,150.376,59.459,325.861,319.507,344.184,22.781,24.920,22.781 +3572,112.389,221.557,415.120,319.555,567.363,226.662,422.752,56.222,142.275,56.222,325.330,319.681,343.693,23.373,25.072,23.373 +3573,112.421,217.532,418.422,323.934,563.979,222.986,425.566,52.643,134.157,52.643,324.570,319.723,342.546,23.913,24.143,23.913 +3574,112.451,212.966,421.553,328.425,560.532,218.990,428.370,48.532,125.910,48.532,324.808,320.486,343.002,24.832,23.823,24.832 +3575,112.482,209.000,426.000,333.242,556.599,215.210,432.210,45.000,117.897,45.000,325.269,321.179,342.834,24.042,24.174,24.042 +3576,112.513,204.184,430.724,337.878,551.721,210.927,436.409,40.135,110.171,40.135,325.132,321.159,342.772,25.364,23.333,25.364 +3577,112.543,204.184,430.724,337.878,551.721,210.927,436.409,40.135,110.171,40.135,325.132,321.159,342.772,25.364,23.333,25.364 +3578,112.572,200.154,435.731,342.922,546.198,207.103,440.734,35.754,102.095,35.754,326.561,321.278,343.688,25.352,23.677,25.352 +3579,112.604,196.290,441.559,347.591,540.048,203.337,445.820,31.159,94.635,31.159,327.924,321.378,344.395,24.896,23.383,24.896 +3580,112.635,193.300,446.900,351.659,532.937,200.351,450.426,26.565,86.906,26.565,328.702,320.883,344.468,25.491,22.535,25.491 +3581,112.665,188.758,457.013,355.561,524.678,195.788,459.768,21.400,79.287,21.400,329.783,321.221,344.883,18.822,22.360,18.822 +3582,112.696,186.088,465.567,358.800,516.077,192.972,467.471,15.461,71.996,15.461,331.284,321.331,345.570,19.051,21.969,19.051 +3583,112.726,184.135,474.228,361.719,506.396,191.160,475.410,9.549,64.470,9.549,332.423,321.631,346.671,18.746,22.424,18.746 +3584,112.758,183.102,483.572,363.039,495.651,190.014,483.939,3.039,57.095,3.039,332.965,321.753,346.806,18.876,22.372,18.876 +3585,112.789,182.825,493.060,363.456,484.013,189.588,492.658,176.600,49.927,176.600,334.598,322.027,348.148,17.968,22.592,17.968 +3586,112.821,184.180,504.302,362.411,472.452,190.495,503.112,169.324,42.337,169.324,336.386,321.534,349.239,19.895,22.455,19.895 +3587,112.851,186.480,514.939,359.133,460.516,192.315,513.010,161.711,35.395,161.711,337.437,321.181,349.729,20.269,20.380,20.269 +3588,112.882,190.376,525.743,354.822,448.900,195.748,523.147,154.204,28.207,154.204,339.131,319.947,351.064,20.333,19.748,20.333 +3589,112.911,190.376,525.743,354.822,448.900,195.748,523.147,154.204,28.207,154.204,339.131,319.947,351.064,20.333,19.748,20.333 +3590,112.941,195.940,536.649,348.302,437.514,200.784,533.459,146.634,21.054,146.634,340.342,319.275,351.943,20.289,18.409,20.289 +3591,112.972,203.086,546.534,340.021,426.417,207.178,542.897,138.366,13.923,138.366,342.397,318.457,353.346,19.848,18.238,19.848 +3592,113.004,211.896,555.741,329.581,416.331,215.216,551.768,129.890,6.886,129.890,344.166,317.763,354.522,19.480,17.506,19.480 +3593,113.035,222.574,564.044,318.000,407.969,225.183,559.694,120.964,179.488,120.964,345.570,316.077,355.715,19.551,16.848,19.551 +3594,113.066,234.268,571.000,304.415,400.843,236.312,565.964,112.087,172.619,112.087,346.352,316.187,357.222,19.298,17.697,19.298 +3595,113.097,248.087,576.520,290.032,397.138,249.275,571.359,102.961,166.027,102.961,347.254,315.292,357.847,20.388,17.449,20.388 +3596,113.128,259.812,579.352,274.620,394.564,260.123,573.717,93.160,158.369,93.160,348.071,314.197,359.358,23.186,16.187,23.186 +3597,113.159,277.471,579.371,259.021,394.539,276.980,573.772,84.987,151.174,84.987,348.993,313.817,360.234,22.790,17.157,22.790 +3598,113.190,290.212,576.791,243.881,396.957,288.826,571.486,75.353,144.068,75.353,349.477,313.056,360.444,22.549,17.950,22.549 +3599,113.222,305.805,571.554,229.393,401.922,303.504,566.295,66.371,137.031,66.371,349.113,312.215,360.594,21.759,18.042,21.759 +3600,113.253,318.831,564.048,216.628,409.783,316.103,559.786,57.381,129.958,57.381,349.812,312.015,359.932,23.247,17.630,23.247 +3601,113.283,330.367,555.023,205.065,418.399,326.930,551.137,48.510,122.735,48.510,349.954,311.236,360.329,24.407,18.206,24.407 +3602,113.313,340.080,544.585,194.573,428.534,335.852,541.075,39.699,114.974,39.699,350.183,311.004,361.174,25.478,18.031,25.478 +3603,113.343,340.080,544.585,194.573,428.534,335.852,541.075,39.699,114.974,39.699,350.183,311.004,361.174,25.478,18.031,25.478 +3604,113.372,347.505,533.037,188.116,440.189,343.483,530.581,31.421,108.199,31.421,349.989,310.239,359.414,25.163,19.338,25.163 +3605,113.405,352.993,520.870,182.020,451.896,348.577,518.970,23.286,101.094,23.286,349.395,310.076,359.010,26.277,18.549,26.277 +3606,113.437,355.369,512.174,178.068,463.669,350.924,510.935,15.570,93.764,15.570,349.169,309.712,358.399,19.397,18.552,19.397 +3607,113.469,357.639,500.514,175.241,475.781,352.771,499.826,8.036,86.129,8.036,348.462,309.188,358.296,19.501,18.694,19.501 +3608,113.500,358.468,489.533,173.820,487.126,352.936,489.446,0.906,78.378,0.906,347.194,309.681,358.260,18.456,19.118,18.456 +3609,113.532,357.382,478.646,174.530,498.131,352.381,479.170,174.026,71.053,174.026,347.660,309.298,357.716,19.475,19.100,19.475 +3610,113.564,355.384,468.730,176.200,508.400,350.514,469.810,167.495,63.435,167.495,347.091,309.472,357.068,20.395,18.783,20.395 +3611,113.594,352.607,459.278,178.843,518.041,347.727,460.926,161.348,55.432,161.348,346.261,311.176,356.562,20.513,19.888,20.513 +3612,113.624,348.674,451.068,181.230,526.438,343.866,453.267,155.427,47.921,155.427,346.093,309.721,356.668,21.072,20.537,21.072 +3613,113.655,344.683,444.269,184.335,535.359,339.567,447.233,149.921,40.601,149.921,345.168,310.102,356.992,20.314,23.537,20.314 +3614,113.686,340.574,438.248,188.711,542.165,335.740,441.632,145.008,33.417,145.008,344.405,310.909,356.206,20.071,23.776,20.071 +3615,113.716,335.523,431.719,193.879,547.769,331.029,435.491,139.997,26.787,139.997,342.733,310.820,354.467,19.574,23.600,19.574 +3616,113.746,335.523,431.719,193.879,547.769,331.029,435.491,139.997,26.787,139.997,342.733,310.820,354.467,19.574,23.600,19.574 +3617,113.777,331.394,426.437,198.964,553.201,326.801,430.928,135.644,19.654,135.644,340.931,311.380,353.777,19.448,24.485,19.448 +3618,113.808,327.083,421.716,203.865,557.952,322.312,427.132,131.379,12.065,131.379,338.483,311.498,352.918,19.938,23.358,19.938 +3619,113.841,321.937,417.101,208.999,563.011,317.174,423.395,127.117,5.080,127.117,337.432,312.147,353.217,19.677,23.131,19.677 +3620,113.873,316.840,413.368,213.989,566.747,312.240,420.364,123.326,179.193,123.326,335.836,312.180,352.582,19.023,22.364,19.023 +3621,113.905,312.036,409.782,218.640,569.526,307.541,417.736,119.476,172.235,119.476,333.501,313.057,351.775,19.455,21.753,19.455 +3622,113.936,306.995,407.463,223.588,572.353,302.851,415.948,116.030,165.964,116.030,331.759,314.326,350.647,18.995,21.343,18.995 +3623,113.966,303.188,404.348,228.404,574.911,298.910,414.466,112.920,159.444,112.920,328.500,315.192,350.472,19.521,21.653,19.521 +3624,113.997,297.478,402.014,233.074,577.068,293.742,412.758,109.170,154.398,109.170,327.492,315.824,350.242,19.256,21.456,19.256 +3625,114.027,292.862,399.965,237.966,578.646,289.517,411.620,106.015,147.995,106.015,325.282,316.621,349.532,18.992,20.988,18.992 +3626,114.058,288.260,398.244,242.649,580.196,285.387,410.840,102.848,142.696,102.848,323.397,317.605,349.238,19.534,20.795,19.534 +3627,114.091,283.207,396.879,247.540,581.176,280.945,410.032,99.755,138.504,99.755,321.967,317.978,348.659,19.144,19.820,19.144 +3628,114.122,278.276,395.839,252.189,582.207,276.590,409.664,96.953,133.279,96.953,320.600,318.479,348.456,18.424,20.178,18.424 +3629,114.153,273.387,395.193,257.451,582.989,272.431,409.541,93.814,129.472,93.814,319.358,319.443,348.119,18.093,20.206,18.093 +3630,114.184,268.289,395.518,262.027,583.087,268.096,409.538,90.790,125.618,90.790,319.190,320.033,347.233,18.081,19.898,18.081 +3631,114.215,263.686,396.314,267.566,583.602,264.234,410.164,87.732,122.047,87.732,319.146,320.335,346.868,18.540,20.673,18.540 +3632,114.246,263.686,396.314,267.566,583.602,264.234,410.164,87.732,122.047,87.732,319.146,320.335,346.868,18.540,20.673,18.540 +3633,114.275,258.467,396.615,272.777,583.374,259.806,410.404,84.455,119.454,84.455,319.121,320.857,346.829,18.785,19.669,18.785 +3634,114.308,253.523,397.950,278.527,582.759,255.554,410.943,81.119,117.051,81.119,320.301,321.148,346.604,19.266,19.972,19.266 +3635,114.340,248.693,400.300,284.000,582.000,251.260,412.004,77.631,115.017,77.631,322.160,321.272,346.126,19.819,20.178,19.819 +3636,114.372,243.538,402.132,290.414,580.742,246.727,413.294,74.055,113.749,74.055,322.797,321.678,346.014,19.917,20.320,19.917 +3637,114.409,238.995,404.426,296.078,578.922,242.678,414.694,70.267,112.109,70.267,323.411,321.802,345.229,21.475,20.411,21.475 +3638,114.443,233.392,407.097,302.419,576.586,237.605,416.822,66.580,110.937,66.580,323.530,322.001,344.727,21.341,20.888,21.341 +3639,114.477,228.444,410.218,308.525,573.962,233.175,419.240,62.328,110.050,62.328,323.662,321.841,344.036,21.449,20.927,21.449 +3640,114.511,223.931,413.679,315.217,571.017,228.999,421.834,58.145,109.456,58.145,325.232,323.167,344.435,23.082,21.881,23.082 +3641,114.544,218.548,417.161,321.462,567.156,224.283,424.971,53.711,108.699,53.711,324.871,323.219,344.249,23.725,22.456,23.725 +3642,114.578,213.302,421.399,327.450,562.150,219.413,428.442,49.054,108.435,49.054,324.944,322.552,343.591,24.259,22.452,24.259 +3643,114.613,202.453,432.642,339.662,549.735,209.146,437.946,38.395,107.526,38.395,326.364,321.006,343.443,25.612,23.488,25.612 +3644,114.645,202.453,432.642,339.662,549.735,209.146,437.946,38.395,107.526,38.395,326.364,321.006,343.443,25.612,23.488,25.612 +3645,114.677,198.154,437.769,345.581,542.487,205.390,442.594,33.690,107.103,33.690,326.718,320.701,344.113,25.516,24.483,25.516 +3646,114.710,193.239,444.953,350.339,534.300,200.894,449.015,27.951,106.821,27.951,326.641,320.488,343.973,25.329,24.465,25.329 +3647,114.742,187.884,455.549,354.760,525.226,195.913,458.795,22.011,106.543,22.011,327.013,319.738,344.332,19.134,25.047,19.134 +3648,114.776,184.573,464.739,358.202,515.412,192.786,467.050,15.719,106.390,15.719,327.602,319.412,344.665,19.073,25.000,19.073 +3649,114.810,182.081,474.014,360.887,504.549,190.584,475.431,9.462,106.213,9.462,328.305,318.959,345.545,18.741,25.191,18.741 +3650,114.842,180.432,484.755,362.481,493.011,189.256,485.097,2.224,106.189,2.224,329.140,318.401,346.802,18.763,25.465,18.763 +3651,114.876,179.690,495.776,362.401,480.761,189.126,494.989,175.236,106.123,175.236,328.777,317.464,347.716,18.768,25.195,18.768 +3652,114.910,181.022,507.831,360.514,468.025,190.310,505.749,167.367,106.260,167.367,329.632,317.040,348.668,19.936,24.280,19.936 +3653,114.943,183.343,520.123,355.777,454.878,192.545,516.712,159.661,106.504,159.661,329.463,316.368,349.092,20.418,21.804,20.418 +3654,114.975,188.072,533.805,350.190,442.504,197.608,528.611,151.425,106.587,151.425,328.649,315.411,350.365,23.155,21.207,23.155 +3655,115.008,191.648,546.715,342.909,430.822,203.216,538.107,143.344,106.756,143.344,323.393,314.651,352.232,21.436,21.529,21.436 +3656,115.042,197.750,559.750,333.702,419.909,210.698,546.802,135.000,106.928,135.000,316.784,313.623,353.407,20.506,21.837,20.506 +3657,115.076,204.094,577.289,322.128,410.192,219.742,555.584,125.789,106.966,125.789,302.116,313.919,355.630,19.846,20.264,19.846 +3658,115.111,210.905,600.698,308.357,402.341,229.878,562.521,116.426,107.103,116.426,271.475,313.348,356.739,17.753,19.116,17.753 +3659,115.144,219.437,642.703,294.546,396.356,242.645,568.105,107.281,107.592,107.281,202.578,311.427,358.827,18.312,18.321,18.312 +3660,115.176,253.120,581.497,278.629,393.419,254.379,571.783,97.383,107.241,97.383,340.410,312.042,360.002,22.717,21.077,22.717 +3661,115.210,268.312,581.671,264.114,393.036,268.093,573.132,88.531,107.354,88.531,343.195,311.041,360.279,20.891,20.521,20.891 +3662,115.244,284.292,579.635,250.255,395.097,282.879,572.493,78.813,108.792,78.813,346.151,310.561,360.710,22.757,19.821,22.757 +3663,115.277,300.179,574.712,234.997,399.518,297.936,568.515,70.108,109.081,70.108,347.478,310.282,360.658,21.182,18.473,21.182 +3664,115.310,314.458,567.621,220.823,405.961,311.338,562.058,60.709,109.204,60.709,348.091,310.576,360.848,22.782,18.378,22.782 +3665,115.343,326.595,558.834,208.363,414.805,322.925,554.220,51.499,109.440,51.499,349.058,310.022,360.848,23.300,18.527,23.300 +3666,115.375,336.942,548.062,197.554,425.057,332.891,544.322,42.709,109.708,42.709,349.653,310.375,360.682,24.814,18.702,24.814 +3667,115.408,345.550,536.446,188.575,436.434,340.893,533.327,33.811,109.934,33.811,349.738,310.903,360.948,25.254,19.404,25.254 +3668,115.440,351.284,524.254,182.458,448.794,346.811,522.124,25.463,110.511,25.463,349.923,311.095,359.830,25.151,20.605,25.151 +3669,115.474,354.205,514.751,177.329,461.316,349.616,513.312,17.406,110.872,17.406,350.286,311.673,359.904,19.864,20.778,19.864 +3670,115.505,356.764,502.937,174.687,473.965,352.310,502.183,9.605,111.397,9.605,350.645,312.495,359.682,19.583,21.396,19.583 +3671,115.539,357.170,491.570,172.889,485.955,352.524,491.392,2.194,111.876,2.194,350.126,313.085,359.424,18.906,20.585,18.906 +3672,115.572,356.232,480.408,172.657,497.593,351.871,480.787,175.040,112.370,175.040,351.238,313.683,359.993,19.538,19.887,19.538 +3673,115.607,353.983,470.039,173.902,508.459,349.604,470.959,168.134,112.932,168.134,350.369,314.475,359.317,20.502,19.234,20.502 +3674,115.639,351.047,460.594,176.317,518.705,346.712,462.015,161.844,113.352,161.844,350.028,315.146,359.152,20.608,19.273,20.608 +3675,115.671,347.005,452.696,179.583,527.974,343.250,454.396,155.649,113.640,155.649,350.647,315.674,358.890,20.216,19.427,20.216 +3676,115.704,343.112,445.236,182.665,535.682,338.993,447.618,149.952,114.018,149.952,349.312,316.484,358.828,20.316,20.852,20.316 +3677,115.738,338.051,438.943,188.140,543.624,334.745,441.271,144.846,113.644,144.846,349.509,316.991,357.596,19.657,19.697,19.657 +3678,115.769,333.564,433.201,192.845,549.934,330.317,435.935,139.908,113.247,139.908,348.678,317.766,357.168,19.527,20.667,19.527 +3679,115.804,328.615,428.581,197.851,555.534,325.661,431.499,135.345,112.068,135.345,347.882,318.297,356.188,19.266,20.514,19.266 +3680,115.835,324.264,425.404,202.430,560.347,321.603,428.405,131.566,110.450,131.566,347.554,318.700,355.575,19.933,20.614,19.933 +3681,115.866,320.046,420.885,207.161,564.389,317.034,424.810,127.500,108.166,127.500,345.348,319.387,355.244,19.461,20.621,19.461 +3682,115.897,315.567,418.183,211.768,567.975,312.861,422.153,124.269,105.038,124.269,345.252,319.694,354.862,18.626,20.468,18.626 +3683,115.928,311.725,415.814,215.608,570.728,309.141,420.068,121.278,101.621,121.278,344.692,320.080,354.647,18.603,20.514,18.603 +3684,115.958,307.888,414.260,220.099,573.135,305.677,418.320,118.576,97.017,118.576,344.535,320.505,353.780,18.976,20.232,18.976 +3685,115.990,304.792,412.922,223.363,574.995,302.767,417.040,116.188,92.027,116.188,344.391,320.472,353.568,18.741,19.386,18.741 +3686,116.022,301.896,411.613,226.671,576.926,299.933,416.007,114.075,86.392,114.075,343.991,320.939,353.615,18.998,19.942,18.998 +3687,116.052,299.441,410.449,229.963,578.415,297.486,415.210,112.324,79.607,112.324,342.951,321.360,353.244,18.648,21.253,18.648 +3688,116.083,297.323,409.486,233.530,579.412,295.564,414.130,110.746,73.846,110.746,343.147,321.966,353.079,18.746,21.416,18.746 +3689,116.114,295.910,408.753,235.744,579.531,294.250,413.401,109.654,66.652,109.654,342.390,320.383,352.260,18.902,20.390,18.902 +3690,116.145,295.910,408.753,235.744,579.531,294.250,413.401,109.654,66.652,109.654,342.390,320.383,352.260,18.902,20.390,18.902 +3691,116.175,293.418,408.500,237.975,579.827,292.021,412.770,108.122,59.300,108.122,342.177,320.027,351.162,18.559,20.341,18.559 +3692,116.207,291.806,408.026,239.917,579.992,290.528,412.212,106.966,51.821,106.966,341.738,319.466,350.493,18.903,20.438,18.903 +3693,116.239,290.980,407.123,239.955,581.516,289.355,412.722,106.189,44.421,106.189,340.086,318.939,351.747,18.804,24.626,18.804 +3694,116.270,289.850,406.725,241.180,581.260,288.360,412.156,105.333,36.870,105.333,339.859,319.000,351.122,18.821,25.000,18.821 +3695,116.303,288.777,406.033,242.763,580.913,287.342,411.557,104.560,29.846,104.560,338.835,318.779,350.249,18.666,25.225,18.666 +3696,116.335,288.353,405.088,244.138,580.155,286.927,410.792,104.036,21.801,104.036,337.610,317.539,349.368,19.160,26.554,19.160 +3697,116.365,287.380,403.853,245.437,578.129,286.008,409.660,103.299,12.095,103.299,334.634,316.738,346.568,18.933,30.242,18.933 +3698,116.398,286.967,403.106,245.218,580.757,285.240,410.680,102.848,5.553,102.848,333.900,316.204,349.436,19.003,25.187,19.003 +3699,116.430,286.833,402.575,245.528,580.827,284.996,410.740,102.680,178.025,102.680,332.463,315.502,349.203,19.195,24.158,19.195 +3700,116.460,285.659,402.353,245.530,580.671,283.915,410.548,102.011,169.992,102.011,332.015,316.521,348.773,19.416,23.751,19.416 +3701,116.491,285.801,401.195,245.507,580.458,283.872,410.359,101.889,162.255,101.889,329.977,316.281,348.707,19.056,22.972,19.056 +3702,116.523,286.040,400.240,244.964,580.364,283.921,410.378,101.802,153.905,101.802,328.005,317.089,348.721,19.402,21.847,19.402 +3703,116.556,286.055,398.632,244.489,580.219,283.641,410.295,101.696,145.744,101.696,324.846,317.907,348.665,19.523,20.578,19.523 +3704,116.587,286.609,396.646,243.694,580.099,283.762,410.344,101.744,137.010,101.744,320.734,317.965,348.714,19.395,19.464,19.395 +3705,116.617,287.719,392.369,243.293,580.835,283.754,410.833,102.121,128.541,102.121,311.646,319.532,349.415,18.373,19.474,18.373 +3706,116.650,289.928,385.941,243.122,581.397,284.175,411.110,102.875,120.417,102.875,298.669,320.181,350.306,17.436,19.217,17.436 +3707,116.682,296.539,360.833,242.766,581.999,284.638,411.412,103.241,112.109,103.241,247.362,321.079,351.284,16.892,19.195,16.892 +3708,116.714,303.805,333.620,242.211,582.687,285.090,412.221,103.392,103.671,103.392,189.929,322.357,351.524,17.047,18.698,17.047 +3709,116.746,303.805,333.620,242.211,582.687,285.090,412.221,103.392,103.671,103.392,189.929,322.357,351.524,17.047,18.698,17.047 +3710,116.776,287.734,405.984,242.441,582.803,286.206,412.398,103.403,95.036,103.403,338.629,322.745,351.817,17.244,19.453,17.244 +3711,116.811,287.828,406.710,242.718,582.968,286.389,412.491,103.976,87.427,103.976,340.040,322.753,351.954,18.657,20.608,18.657 +3712,116.845,288.492,407.582,242.613,582.690,287.192,412.553,104.664,79.129,104.664,341.483,322.777,351.760,18.788,20.883,18.788 +3713,116.877,289.836,407.838,241.129,581.741,288.550,412.448,105.593,70.378,105.593,342.047,321.001,351.618,18.771,20.862,18.771 +3714,116.910,291.978,407.928,240.279,580.789,290.566,412.568,106.928,62.021,106.928,341.449,320.350,351.150,19.217,20.560,19.217 +3715,116.942,292.764,408.162,238.981,579.802,291.424,412.406,107.526,53.599,107.526,341.935,319.648,350.836,18.821,20.545,18.821 +3716,116.974,294.786,408.066,236.000,580.000,292.946,413.471,108.800,45.000,108.800,340.572,318.198,351.993,18.933,24.042,18.933 +3717,117.007,296.138,407.973,234.254,578.508,294.229,413.291,109.747,36.501,109.747,340.230,317.791,351.530,18.969,25.080,18.969 +3718,117.039,298.425,408.312,232.327,577.310,296.335,413.721,111.125,29.168,111.125,339.729,316.727,351.328,18.995,25.242,18.995 +3719,117.071,300.497,408.257,230.144,575.631,298.075,414.110,112.479,21.346,112.479,337.776,316.055,350.444,18.958,25.651,18.958 +3720,117.102,303.267,408.236,227.259,574.335,300.369,414.722,114.075,12.529,114.075,336.900,314.983,351.107,19.251,25.055,19.251 +3721,117.133,306.239,408.836,224.319,572.788,302.870,415.741,116.003,4.514,116.003,335.811,314.311,351.176,19.050,23.348,19.050 +3722,117.164,309.130,409.422,220.986,571.258,305.232,416.785,117.897,176.730,117.897,335.216,314.458,351.878,18.819,23.105,18.819 +3723,117.196,313.454,409.299,217.776,569.158,308.288,418.184,120.174,169.330,120.174,331.468,314.396,352.023,19.180,21.876,19.180 +3724,117.226,317.735,409.366,214.200,567.100,311.111,419.824,122.347,161.565,122.347,327.790,314.647,352.549,19.206,20.555,19.206 +3725,117.258,322.882,408.517,210.268,564.563,313.842,421.646,124.548,154.537,124.548,321.020,314.883,352.900,19.646,19.820,19.646 +3726,117.290,330.540,404.280,206.627,562.203,316.204,423.394,126.870,147.966,126.870,305.800,315.456,353.586,18.400,20.047,18.400 +3727,117.321,343.754,395.295,203.433,560.053,318.748,425.303,129.806,141.953,129.806,276.560,315.824,354.682,17.413,19.722,17.413 +3728,117.351,374.430,369.894,200.210,557.728,321.497,427.640,132.510,137.319,132.510,199.032,316.304,355.703,17.815,19.369,17.815 +3729,117.382,337.200,418.721,196.866,553.954,325.304,430.810,134.539,132.688,134.539,321.797,317.096,355.719,18.153,18.464,18.153 +3730,117.411,337.200,418.721,196.866,553.954,325.304,430.810,134.539,132.688,134.539,321.797,317.096,355.719,18.153,18.464,18.153 +3731,117.441,332.809,429.654,193.209,550.566,328.127,433.944,137.503,128.587,137.503,343.820,317.037,356.521,19.244,20.781,19.244 +3732,117.473,335.686,434.844,190.385,546.923,331.835,437.901,141.563,123.690,141.563,347.308,316.734,357.141,19.806,20.524,19.806 +3733,117.505,339.174,439.531,187.134,542.072,335.393,442.161,145.176,118.186,145.176,348.314,316.829,357.525,20.130,20.640,20.130 +3734,117.537,342.638,444.555,183.603,536.241,338.823,446.832,149.172,111.801,149.172,349.330,316.053,358.215,21.135,19.127,21.135 +3735,117.569,345.718,449.913,180.862,529.508,342.134,451.680,153.750,105.255,153.750,350.136,315.390,358.126,20.210,19.120,20.210 +3736,117.600,349.611,456.244,178.152,521.906,345.444,457.886,158.499,98.713,158.499,349.270,314.834,358.229,20.864,19.254,20.864 +3737,117.630,353.105,463.625,175.998,513.060,348.546,464.934,163.971,92.302,163.971,348.771,312.592,358.257,20.449,18.447,20.449 +3738,117.661,355.726,471.979,174.769,503.734,351.143,472.804,169.796,85.962,169.796,348.814,311.202,358.127,19.782,18.753,19.782 +3739,117.692,357.564,481.410,174.005,493.217,352.688,481.751,175.992,79.340,175.992,348.318,310.650,358.094,18.903,18.661,18.903 +3740,117.724,358.389,491.472,174.495,482.384,353.244,491.280,2.141,72.848,2.141,347.617,309.672,357.913,18.697,18.580,18.697 +3741,117.755,357.982,501.848,176.470,471.148,352.927,501.066,8.797,66.615,8.797,347.682,308.450,357.913,19.471,19.597,19.471 +3742,117.786,356.028,513.151,185.887,471.567,355.457,512.988,15.945,59.230,15.945,347.660,282.462,348.848,19.505,20.136,19.505 +3743,117.816,353.933,522.526,193.859,462.037,355.041,523.018,23.962,51.539,23.962,346.538,271.301,344.113,25.587,23.813,25.587 +3744,117.847,353.933,522.526,193.859,462.037,355.041,523.018,23.962,51.539,23.962,346.538,271.301,344.113,25.587,23.813,25.587 +3745,117.877,352.326,534.963,199.750,449.750,350.187,533.683,30.897,45.000,30.897,339.391,272.236,344.376,25.209,21.213,25.209 +3746,117.909,394.009,590.496,202.690,433.610,338.143,545.680,38.737,37.776,38.737,208.329,285.478,351.569,18.472,18.535,18.472 +3747,117.941,332.679,555.284,210.454,421.880,329.993,552.359,47.437,30.486,47.437,345.974,290.474,353.917,23.524,19.737,23.524 +3748,117.972,319.831,562.635,213.866,410.507,317.164,558.612,56.459,23.499,56.459,351.386,306.381,361.038,23.216,18.182,23.216 +3749,118.003,307.664,569.099,225.970,404.099,305.936,565.426,64.799,16.557,64.799,351.921,306.887,360.041,21.875,17.202,21.875 +3750,118.033,294.271,574.911,239.601,398.899,292.983,570.640,73.221,9.533,73.221,350.760,307.593,359.681,21.363,17.232,21.363 +3751,118.068,278.902,578.439,254.025,395.906,278.209,573.879,81.365,2.372,81.365,349.948,308.605,359.172,23.644,17.074,23.644 +3752,118.099,267.848,579.104,268.624,394.515,267.960,573.867,91.223,175.321,91.223,348.177,310.417,358.652,22.867,17.663,22.867 +3753,118.131,251.299,577.549,283.877,395.850,252.153,572.378,99.369,168.481,99.369,348.192,312.037,358.675,22.358,17.712,22.358 +3754,118.161,239.107,573.869,297.718,397.688,241.147,567.775,108.505,160.852,108.505,345.644,314.065,358.495,19.341,18.119,19.341 +3755,118.192,227.603,568.044,310.661,402.318,230.538,562.273,116.959,153.553,116.959,344.846,315.730,357.794,20.324,18.889,20.324 +3756,118.224,216.333,561.529,322.403,409.361,220.516,555.610,125.248,146.441,125.248,341.976,316.471,356.472,19.818,19.381,19.818 +3757,118.255,205.245,554.819,332.141,416.836,211.980,547.790,133.774,140.755,133.774,335.905,317.184,355.374,18.869,17.572,18.869 +3758,118.286,143.342,589.191,340.000,425.000,204.820,539.240,140.906,135.000,140.906,195.484,316.784,353.908,17.414,18.385,17.414 +3759,118.316,175.792,547.510,347.095,434.988,200.254,532.366,148.241,128.445,148.241,294.678,318.127,352.219,22.026,19.446,22.026 +3760,118.347,180.973,528.859,352.100,445.749,194.728,522.510,155.225,122.045,155.225,319.811,318.529,350.109,20.674,19.599,20.674 +3761,118.377,180.973,528.859,352.100,445.749,194.728,522.510,155.225,122.045,155.225,319.811,318.529,350.109,20.674,19.599,20.674 +3762,118.407,180.983,516.544,356.681,456.643,191.727,513.038,161.930,113.552,161.930,326.018,317.388,348.622,20.005,21.272,20.005 +3763,118.439,180.858,506.183,359.895,467.890,189.836,504.341,168.408,105.624,168.408,329.498,317.161,347.829,20.145,22.836,20.145 +3764,118.470,180.305,496.014,362.094,479.221,189.103,495.251,175.047,97.907,175.047,329.797,317.755,347.459,18.756,24.900,18.756 +3765,118.501,181.017,486.545,362.000,489.500,188.966,486.686,1.017,90.000,1.017,330.214,317.000,346.114,18.423,24.000,18.423 +3766,118.533,182.614,478.041,362.010,499.570,190.307,478.954,6.771,81.870,6.771,330.378,319.047,345.872,18.700,24.466,18.700 +3767,118.564,184.800,470.600,360.490,508.939,191.618,472.061,12.095,74.268,12.095,331.754,320.472,345.701,18.858,23.209,18.858 +3768,118.595,186.800,463.383,358.872,517.204,193.769,465.513,16.991,66.615,16.991,331.429,321.969,346.004,19.180,22.177,19.180 +3769,118.625,189.414,456.466,356.449,524.728,196.371,459.248,21.801,58.835,21.801,330.909,323.109,345.895,19.127,21.556,19.127 +3770,118.657,192.922,447.036,353.570,531.742,200.734,450.884,26.222,51.292,26.222,328.254,324.218,345.670,25.949,20.016,25.949 +3771,118.688,191.876,443.927,350.818,537.634,201.832,449.735,30.256,43.363,30.256,322.909,324.854,345.962,18.715,20.558,18.715 +3772,118.718,164.593,419.156,348.051,542.136,204.405,446.006,33.996,36.481,33.996,249.647,325.411,345.687,17.488,18.776,17.488 +3773,118.748,192.036,429.351,345.251,546.043,208.262,440.929,35.509,28.822,35.509,305.266,325.647,345.132,23.687,20.443,23.687 +3774,118.779,202.223,428.672,342.244,549.407,211.885,437.112,41.139,21.631,41.139,318.445,324.599,344.104,26.169,20.419,26.169 +3775,118.821,206.855,426.653,338.531,553.883,214.610,433.992,43.418,14.783,43.418,323.474,324.073,344.828,24.892,21.258,24.892 +3776,118.859,210.151,424.315,335.194,557.293,216.927,431.369,46.153,7.595,46.153,325.924,323.471,345.486,24.701,22.996,24.701 +3777,118.896,212.844,422.579,331.999,559.556,218.948,429.502,48.597,0.535,48.597,326.177,322.089,344.636,23.728,22.887,23.728 +3778,118.933,215.619,420.312,328.826,562.139,221.432,427.417,50.711,172.962,50.711,326.188,321.865,344.549,23.922,24.322,23.922 +3779,118.973,218.055,418.338,325.871,564.013,223.470,425.460,52.753,166.218,52.753,326.651,321.343,344.543,24.493,24.775,24.493 +3780,119.008,219.568,416.595,323.041,565.743,224.953,424.134,54.462,159.228,54.462,325.958,320.930,344.489,23.482,25.019,23.482 +3781,119.044,221.598,415.428,320.427,567.255,226.821,423.214,56.146,152.152,56.146,324.782,320.762,343.533,23.439,25.041,23.439 +3782,119.084,224.828,413.484,315.664,569.686,229.513,421.219,58.799,138.608,58.799,325.157,320.492,343.243,23.131,24.210,23.131 +3783,119.121,226.132,412.526,313.808,570.778,230.730,420.462,59.910,132.049,59.910,325.080,320.426,343.423,22.925,24.228,22.925 +3784,119.158,227.232,411.857,312.155,571.755,231.698,419.855,60.819,125.331,60.819,325.377,320.731,343.699,22.814,23.494,22.814 +3785,119.194,228.238,411.651,310.528,572.742,232.648,419.758,61.454,118.686,61.454,324.746,321.475,343.204,22.565,21.998,22.565 +3786,119.235,228.635,410.573,309.617,573.644,233.353,419.473,62.071,111.975,62.071,323.723,322.376,343.869,22.514,21.801,22.514 +3787,119.272,228.837,409.736,308.030,574.592,233.831,419.304,62.435,105.524,62.435,322.408,323.903,343.993,22.368,20.394,22.368 +3788,119.310,228.402,408.259,307.734,574.780,233.874,418.853,62.681,99.866,62.681,321.019,323.578,344.866,22.459,19.105,22.459 +3789,119.347,227.580,407.348,308.796,575.510,233.987,419.620,62.430,89.164,62.430,317.936,323.214,345.624,22.373,18.334,22.373 +3790,119.387,226.298,406.447,310.007,575.592,233.688,420.336,61.982,84.717,61.982,314.358,324.943,345.822,22.524,18.128,22.524 +3791,119.428,224.569,405.932,311.285,574.694,232.549,420.420,61.152,80.919,61.152,313.157,324.710,346.237,22.662,18.426,22.662 +3792,119.468,222.718,405.998,313.268,573.549,231.409,421.103,60.086,78.024,60.086,311.066,324.418,345.920,22.809,18.498,22.809 +3793,119.507,220.809,406.987,315.700,572.323,230.027,422.141,58.686,75.819,58.686,310.188,324.510,345.663,22.939,18.661,22.939 +3794,119.547,216.912,411.698,320.673,569.248,226.030,424.678,54.913,73.337,54.913,313.678,324.418,345.402,23.439,18.587,23.439 +3795,119.586,214.698,414.904,323.913,566.876,223.414,426.291,52.568,73.301,52.568,316.759,324.416,345.440,23.930,18.678,23.930 +3796,119.625,212.588,419.032,327.575,563.764,220.610,428.487,49.686,74.055,49.686,319.907,324.308,344.708,24.054,18.818,24.054 +3797,119.664,210.178,423.074,330.956,560.512,217.555,430.872,46.591,75.277,46.591,322.748,324.071,344.216,24.189,18.673,24.189 +3798,119.702,207.266,426.993,334.907,556.407,214.309,433.658,43.423,77.179,43.423,324.536,323.789,343.931,24.837,18.977,24.837 +3799,119.740,203.165,431.863,339.362,551.657,210.463,437.781,39.036,79.579,39.036,324.894,323.427,343.686,25.318,20.077,25.318 +3800,119.778,196.706,441.323,347.877,539.866,203.616,445.470,30.964,84.428,30.964,328.420,322.081,344.538,26.239,21.920,26.239 +3801,119.816,193.200,447.100,351.684,532.872,200.248,450.624,26.565,87.274,26.565,328.702,320.684,344.462,25.044,22.498,25.044 +3802,119.851,188.525,456.444,355.500,525.000,195.978,459.432,21.845,90.000,21.845,328.871,320.000,344.931,19.120,23.000,19.120 +3803,119.886,185.272,464.325,358.100,516.556,193.043,466.569,16.105,92.936,16.105,328.713,319.811,344.890,19.107,24.020,19.107 +3804,119.920,182.800,472.400,360.584,507.261,191.015,473.940,10.620,95.648,10.620,328.894,318.807,345.610,18.797,24.857,18.797 +3805,119.954,181.409,481.123,361.767,497.191,189.826,481.807,4.648,98.561,4.648,328.356,318.391,345.245,18.589,24.732,18.589 +3806,119.988,180.021,489.966,362.395,486.386,189.143,489.763,178.727,101.505,178.727,328.319,317.932,346.567,18.018,24.983,18.018 +3807,120.022,180.267,500.856,361.571,475.296,189.273,499.558,171.802,104.534,171.802,329.798,317.503,347.995,19.083,24.487,19.083 +3808,120.056,181.558,511.824,358.525,463.312,190.586,509.327,164.539,107.819,164.539,329.521,316.549,348.256,20.302,22.339,20.302 +3809,120.091,183.657,523.476,354.658,451.629,193.660,519.308,157.380,110.772,157.380,327.615,316.481,349.289,20.769,21.215,20.769 +3810,120.125,186.879,536.644,348.987,439.941,198.447,530.003,150.141,114.102,150.141,324.112,316.075,350.789,23.159,20.346,23.159 +3811,120.161,187.890,552.305,341.850,429.422,204.543,539.657,142.784,117.646,142.784,310.216,315.904,352.039,23.538,19.530,23.538 +3812,120.197,183.929,572.456,333.063,419.300,209.780,545.930,134.262,120.069,134.262,279.384,315.562,353.463,17.600,20.087,17.600 +3813,120.232,172.288,617.438,322.960,410.004,218.415,554.090,126.060,123.294,126.060,199.313,315.085,356.037,17.479,19.225,17.479 +3814,120.273,224.067,571.201,310.533,402.411,229.249,561.497,118.101,126.599,118.101,335.238,314.790,357.240,19.030,19.445,19.030 +3815,120.309,237.817,574.417,298.824,397.681,240.330,567.158,109.093,129.598,109.093,343.212,314.958,358.575,18.972,20.244,18.972 +3816,120.344,250.011,577.799,285.201,394.256,251.155,571.286,99.960,132.982,99.960,347.276,314.259,360.502,22.360,19.618,22.360 +3817,120.379,263.714,579.987,269.983,392.537,263.832,572.790,90.942,136.020,90.942,346.266,313.438,360.661,22.194,18.940,22.194 +3818,120.413,277.787,579.890,255.012,393.847,276.876,573.372,82.052,139.399,82.052,348.484,313.681,361.647,23.766,19.090,23.766 +3819,120.448,308.860,569.652,225.746,403.850,306.564,564.900,64.213,146.032,64.213,349.786,312.562,360.341,22.247,18.708,22.247 +3820,120.482,321.443,561.605,212.916,411.902,318.736,557.714,55.176,149.482,55.176,350.776,312.169,360.256,23.806,18.590,23.806 +3821,120.515,332.446,551.765,201.391,421.265,329.380,548.562,46.252,153.217,46.252,352.055,311.704,360.923,24.550,18.475,24.550 +3822,120.548,341.478,540.818,191.747,431.758,337.907,538.078,37.509,156.975,37.509,352.358,310.934,361.359,25.054,18.084,25.054 +3823,120.581,348.050,528.922,184.377,444.321,344.654,527.030,29.122,160.181,29.122,352.760,310.305,360.535,25.830,18.959,25.830 +3824,120.613,353.005,517.304,178.960,456.750,349.159,515.820,21.099,163.551,21.099,351.860,309.872,360.106,25.787,19.666,25.787 +3825,120.645,353.005,517.304,178.960,456.750,349.159,515.820,21.099,163.551,21.099,351.860,309.872,360.106,25.787,19.666,25.787 +3826,120.676,355.701,509.060,174.335,466.177,350.133,507.732,13.412,168.637,13.412,349.837,309.670,361.286,19.365,21.222,19.365 +3827,120.712,357.471,497.656,172.466,477.126,351.790,497.039,6.194,171.014,6.194,349.421,309.898,360.851,19.082,20.333,19.082 +3828,120.745,364.980,486.993,171.907,487.765,351.980,487.121,179.436,172.776,179.436,334.141,310.459,360.142,18.122,19.101,18.122 +3829,120.777,427.575,468.528,171.937,499.371,350.657,477.332,173.470,174.245,173.470,205.292,309.055,360.134,17.590,19.899,17.590 +3830,120.811,387.124,460.306,174.027,507.570,349.329,468.705,167.471,177.274,167.471,281.684,308.888,359.117,17.788,19.882,17.788 +3831,120.845,369.172,453.436,176.500,517.000,346.834,461.183,160.875,0.000,160.875,311.153,309.000,358.439,21.037,18.000,21.037 +3832,120.878,359.028,446.562,180.075,525.251,343.734,453.555,155.427,3.417,155.427,323.669,309.062,357.304,20.657,19.324,20.657 +3833,120.912,350.220,441.091,184.169,533.221,340.009,447.051,149.727,7.549,149.727,332.410,309.785,356.057,21.302,20.077,21.302 +3834,120.945,336.366,431.120,193.612,547.649,331.045,435.608,139.855,17.784,139.855,340.661,310.835,354.583,20.446,23.680,20.446 +3835,120.979,336.366,431.120,193.612,547.649,331.045,435.608,139.855,17.784,139.855,340.661,310.835,354.583,20.446,23.680,20.446 +3836,121.011,330.993,427.057,198.962,553.089,326.930,431.018,135.725,22.834,135.725,342.338,311.707,353.686,19.404,25.224,19.404 +3837,121.044,325.994,422.813,204.112,558.923,322.062,427.286,131.319,28.163,131.319,341.575,312.358,353.485,19.915,24.605,19.915 +3838,121.078,320.226,418.538,208.963,563.787,316.590,423.353,127.057,32.998,127.057,341.790,314.205,353.858,19.251,24.714,19.251 +3839,121.112,315.237,415.997,214.079,568.169,312.011,420.895,123.378,38.234,123.378,341.992,315.196,353.721,19.000,24.779,19.000 +3840,121.145,309.902,413.592,219.217,571.844,307.117,418.495,119.604,43.668,119.604,342.230,315.613,353.507,18.911,24.528,18.911 +3841,121.176,304.914,411.751,226.175,573.548,302.973,415.730,116.003,49.086,116.003,342.168,317.339,351.023,18.874,20.404,18.874 +3842,121.209,300.002,410.249,231.124,576.335,298.292,414.346,112.653,54.353,112.653,341.844,318.285,350.724,19.010,20.513,19.010 +3843,121.241,295.450,408.742,235.619,578.847,293.905,413.103,109.511,59.744,109.511,342.134,319.382,351.387,18.800,20.371,18.800 +3844,121.272,291.236,407.740,240.116,580.982,289.835,412.482,106.460,65.095,106.460,341.476,320.498,351.364,18.832,20.634,18.832 +3845,121.304,287.161,407.442,244.352,582.698,286.032,412.070,103.707,70.498,103.707,341.762,321.613,351.290,18.956,20.620,18.956 +3846,121.334,282.631,406.778,249.027,584.232,281.755,411.474,100.568,76.618,100.568,342.105,323.064,351.659,19.001,20.273,19.001 +3847,121.365,278.714,406.046,253.279,585.240,278.016,411.103,97.860,81.674,97.860,341.559,324.133,351.768,18.485,20.417,18.485 +3848,121.396,274.973,404.487,256.786,585.539,274.356,411.127,95.305,86.845,95.305,337.242,323.776,350.580,17.902,20.677,17.902 +3849,121.428,274.440,331.259,259.489,586.410,270.635,411.176,92.726,91.474,92.726,191.117,323.253,351.131,17.647,21.122,17.647 +3850,121.461,267.500,353.500,264.319,586.041,267.500,411.021,90.000,97.400,90.000,235.000,324.212,350.041,17.000,20.477,17.000 +3851,121.494,262.515,384.349,268.451,585.601,263.673,411.216,87.532,102.575,87.532,295.071,323.555,348.856,17.777,19.805,17.777 +3852,121.527,258.578,392.632,272.347,584.790,260.244,411.118,84.848,107.850,84.848,310.993,323.213,348.114,18.278,19.699,18.278 +3853,121.562,254.890,396.605,276.558,583.238,256.837,410.837,82.213,113.051,82.213,318.235,321.702,346.965,18.876,20.008,18.876 +3854,121.599,251.328,399.569,281.105,582.403,253.524,411.429,79.509,118.887,79.509,322.152,321.307,346.276,19.447,20.561,19.447 +3855,121.644,247.900,401.700,286.248,581.328,250.356,412.139,76.759,124.261,76.759,324.377,320.914,345.825,20.098,21.524,20.098 +3856,121.676,243.655,403.380,291.075,579.978,246.448,413.083,73.940,129.753,73.940,325.260,320.227,345.454,19.802,23.208,19.802 +3857,121.710,240.289,405.045,296.189,578.188,243.353,413.991,71.092,134.789,71.092,326.001,319.641,344.915,20.985,23.483,20.985 +3858,121.747,236.534,407.086,301.463,576.638,239.952,415.631,68.199,139.747,68.199,326.267,319.447,344.672,21.726,24.499,21.726 +3859,121.778,232.438,408.867,306.661,574.642,236.286,417.144,65.068,144.728,65.068,326.716,319.338,344.973,22.278,24.712,22.278 +3860,121.811,228.154,411.649,311.757,571.943,232.361,419.481,61.758,149.850,61.758,325.984,319.665,343.765,21.767,25.113,21.767 +3861,121.845,224.273,413.831,316.990,569.041,229.075,421.622,58.352,154.817,58.352,324.947,319.401,343.250,23.226,25.165,23.226 +3862,121.879,220.096,416.844,322.430,565.986,225.235,424.125,54.782,159.495,54.782,326.066,320.339,343.891,23.788,25.008,23.788 +3863,121.913,211.378,423.684,333.124,558.158,217.770,430.562,47.099,168.822,47.099,325.206,321.043,343.986,24.706,24.737,24.706 +3864,121.946,206.839,427.635,338.354,553.272,213.922,434.222,42.923,173.234,42.923,325.041,321.138,344.385,25.036,24.153,25.036 +3865,121.978,206.839,427.635,338.354,553.272,213.922,434.222,42.923,173.234,42.923,325.041,321.138,344.385,25.036,24.153,25.036 +3866,122.011,196.192,436.462,347.985,541.234,206.049,443.033,33.690,1.169,33.690,321.449,322.280,345.141,25.516,21.445,25.516 +3867,122.045,189.961,441.280,352.445,534.189,202.386,448.220,29.186,4.564,29.186,317.394,322.767,345.859,25.806,21.147,25.806 +3868,122.078,189.961,441.280,352.445,534.189,202.386,448.220,29.186,4.564,29.186,317.394,322.767,345.859,25.806,21.147,25.806 +3869,122.112,181.056,445.795,356.393,526.337,199.102,454.124,24.775,7.275,24.775,306.401,323.861,346.151,28.496,19.987,28.496 +3870,122.145,166.203,453.367,359.658,517.968,195.274,463.148,18.595,8.702,18.595,285.224,323.800,346.567,18.212,19.729,18.212 +3871,122.179,111.388,450.596,362.089,509.973,193.074,469.862,13.271,9.620,13.271,179.564,324.023,347.419,17.620,19.368,17.620 +3872,122.213,151.543,472.147,363.913,500.959,191.416,477.763,8.017,10.766,8.017,267.556,323.797,348.091,18.131,18.935,18.131 +3873,122.245,177.631,485.258,364.472,491.145,190.214,485.697,2.001,11.049,2.001,323.501,324.202,348.683,18.207,18.747,18.207 +3874,122.276,179.731,495.109,364.137,481.336,189.960,494.297,175.462,11.653,175.462,328.792,323.222,349.314,17.991,19.641,17.991 +3875,122.309,183.014,506.218,362.761,469.987,191.165,504.481,167.969,13.627,167.969,333.366,322.595,350.034,20.475,18.936,20.475 +3876,122.340,186.048,516.708,359.634,458.505,193.134,514.228,160.710,16.074,160.710,336.108,321.562,351.122,20.057,18.762,20.057 +3877,122.371,190.863,527.731,354.345,446.960,196.597,524.815,153.048,18.642,153.048,338.938,320.644,351.803,21.363,18.700,21.363 +3878,122.402,196.005,538.007,347.057,436.147,201.128,534.490,145.539,21.125,145.539,339.505,319.271,351.934,19.319,18.338,19.319 +3879,122.433,203.840,547.737,338.050,425.803,207.524,544.355,137.447,23.703,137.447,342.652,317.505,352.653,19.515,18.402,19.515 +3880,122.464,212.965,557.068,327.100,415.800,216.023,553.282,128.928,26.565,128.928,343.760,315.733,353.493,19.897,18.336,19.897 +3881,122.496,223.722,565.553,315.438,406.226,226.565,560.599,119.852,29.476,119.852,344.829,314.311,356.254,19.767,21.310,19.767 +3882,122.527,235.852,571.588,301.423,400.123,237.699,566.747,110.883,32.152,110.883,346.426,312.699,356.788,19.287,20.416,19.287 +3883,122.559,249.998,576.751,286.603,395.631,251.105,571.595,102.124,34.765,102.124,348.444,311.231,358.991,21.372,20.276,21.372 +3884,122.591,261.570,578.595,285.246,404.056,261.581,578.287,92.108,37.349,92.108,349.352,275.220,349.967,23.315,20.418,23.315 +3885,122.621,275.924,579.267,271.191,405.457,276.045,580.266,83.082,39.620,83.082,350.255,270.781,348.242,23.763,23.140,23.763 +3886,122.651,293.292,576.252,253.621,409.930,293.750,577.899,74.476,41.424,74.476,348.579,271.044,345.162,21.840,23.157,21.840 +3887,122.681,309.607,572.895,238.935,418.099,309.946,573.612,64.644,46.042,64.644,343.469,267.371,341.883,22.156,20.490,22.156 +3888,122.711,309.607,572.895,238.935,418.099,309.946,573.612,64.644,46.042,64.644,343.469,267.371,341.883,22.156,20.490,22.156 +3889,122.740,329.054,577.078,225.553,426.265,322.060,566.975,55.305,47.816,55.305,316.671,266.037,341.247,18.594,19.127,18.594 +3890,122.772,344.595,566.327,211.596,435.009,334.631,555.417,47.596,50.528,47.596,314.210,270.948,343.759,21.745,19.525,21.745 +3891,122.804,345.420,542.783,201.224,445.056,344.564,542.137,37.078,52.365,37.078,343.633,273.144,345.778,25.231,20.342,25.231 +3892,122.837,351.080,529.428,188.966,449.523,347.757,527.632,28.402,55.008,28.402,346.106,292.466,353.660,25.138,20.972,25.138 +3893,122.868,354.066,518.939,179.984,456.210,348.956,517.079,19.999,56.681,19.999,348.322,307.587,359.199,19.721,22.276,19.721 +3894,122.899,356.755,506.544,176.393,468.682,351.946,505.533,11.866,59.574,11.866,348.929,307.809,358.759,19.877,21.283,19.877 +3895,122.930,358.204,494.567,174.349,481.351,353.100,494.196,4.163,61.673,4.163,348.190,308.033,358.424,18.972,20.596,18.972 +3896,122.961,358.068,482.727,174.207,493.408,352.705,483.026,176.808,63.662,176.808,346.855,308.602,357.599,19.134,19.477,19.134 +3897,122.993,356.168,471.720,175.548,505.302,351.090,472.668,169.421,65.717,169.421,346.770,309.689,357.100,20.524,19.278,20.524 +3898,123.026,353.021,461.463,178.031,516.371,348.283,462.940,162.686,67.675,162.686,346.953,310.856,356.879,20.470,19.317,20.470 +3899,123.058,348.756,452.314,181.234,526.493,344.208,454.320,156.194,69.775,156.194,346.539,311.925,356.480,21.258,19.458,21.258 +3900,123.090,344.288,444.763,185.550,535.650,340.166,447.136,150.063,71.565,150.063,346.807,313.382,356.318,20.326,19.606,20.326 +3901,123.120,338.903,437.762,190.266,543.921,335.129,440.455,144.488,73.431,144.488,346.764,314.555,356.037,19.417,19.882,19.417 +3902,123.151,333.257,431.570,195.484,551.238,329.707,434.655,139.006,75.107,139.006,346.165,315.572,355.571,19.391,19.873,19.391 +3903,123.182,327.389,426.432,201.071,557.866,324.050,429.908,133.854,76.792,133.854,345.310,317.108,354.949,19.003,20.007,19.003 +3904,123.212,327.389,426.432,201.071,557.866,324.050,429.908,133.854,76.792,133.854,345.310,317.108,354.949,19.003,20.007,19.003 +3905,123.241,321.215,422.063,206.940,563.409,318.404,425.554,128.834,78.326,128.834,345.596,317.719,354.560,19.552,19.772,19.552 +3906,123.272,315.432,418.090,212.705,568.373,312.780,421.978,124.295,79.802,124.295,345.249,318.678,354.663,19.043,20.033,19.043 +3907,123.304,309.544,415.089,218.612,572.324,307.322,418.958,119.876,81.014,119.876,345.422,319.412,354.346,19.039,20.448,19.039 +3908,123.335,303.985,412.289,224.817,575.597,301.831,416.761,115.717,81.903,115.717,343.114,320.178,353.043,19.023,19.660,19.023 +3909,123.365,298.741,410.397,230.901,579.210,296.871,415.073,111.801,82.511,111.801,343.722,322.614,353.796,18.755,19.699,18.755 +3910,123.397,293.435,408.513,237.485,581.320,291.801,413.527,108.045,82.760,108.045,342.181,323.246,352.729,18.844,20.865,18.844 +3911,123.428,288.390,407.930,242.207,583.112,287.123,412.801,104.586,81.970,104.586,342.202,323.288,352.267,18.996,20.806,18.996 +3912,123.460,283.756,406.354,247.858,584.398,282.700,411.653,101.271,81.125,101.271,341.638,323.883,352.445,18.994,20.499,18.994 +3913,123.493,279.341,405.394,252.713,585.366,278.454,411.479,98.293,79.357,98.293,339.266,324.224,351.564,18.982,20.553,18.982 +3914,123.524,275.307,405.931,257.574,585.600,274.795,411.051,95.711,76.724,95.711,340.502,323.575,350.793,18.110,20.461,18.110 +3915,123.557,271.499,403.765,261.910,586.027,271.126,410.918,92.987,73.575,92.987,336.377,323.929,350.702,18.184,20.836,18.184 +3916,123.587,267.910,404.447,266.530,586.242,267.846,411.093,90.548,69.528,90.548,337.013,324.322,350.307,18.277,20.710,18.277 +3917,123.617,264.862,405.617,269.910,586.042,265.029,411.519,88.386,65.045,88.386,337.373,323.087,349.182,18.415,21.059,18.415 +3918,123.648,261.852,405.675,274.136,585.332,262.209,411.091,86.228,59.534,86.228,338.441,322.769,349.296,18.454,20.788,18.454 +3919,123.679,258.781,405.885,277.115,585.314,259.375,411.624,84.094,53.717,84.094,337.646,322.993,349.187,18.453,21.751,18.453 +3920,123.711,258.781,405.885,277.115,585.314,259.375,411.624,84.094,53.717,84.094,337.646,322.993,349.187,18.453,21.751,18.453 +3921,123.740,256.130,405.969,281.279,583.864,256.886,411.398,82.079,46.848,82.079,337.402,322.729,348.364,18.905,20.381,18.905 +3922,123.771,253.438,406.361,284.129,583.682,254.443,412.100,80.074,40.601,80.074,336.609,322.576,348.262,19.159,22.561,19.159 +3923,123.802,250.858,406.951,287.034,582.931,252.056,412.642,78.111,33.389,78.111,336.055,323.413,347.685,19.622,24.024,19.622 +3924,123.833,248.029,407.118,290.798,581.413,249.484,412.935,75.964,26.053,75.964,334.942,322.021,346.935,19.888,25.035,19.888 +3925,123.865,245.292,406.774,294.530,580.408,247.234,413.570,74.055,18.083,74.055,332.687,320.703,346.824,20.741,24.852,20.741 +3926,123.896,242.280,407.388,297.722,579.313,244.625,414.570,71.917,10.587,71.917,331.063,320.478,346.173,20.855,24.712,20.855 +3927,123.927,239.192,408.038,300.981,577.957,241.890,415.331,69.702,2.386,69.702,330.502,318.599,346.053,21.405,24.312,21.405 +3928,123.959,235.485,408.536,304.251,576.544,238.769,416.507,67.604,174.218,67.604,328.589,319.014,345.830,21.336,24.936,21.336 +3929,123.991,232.484,409.672,307.794,574.677,236.218,417.688,65.019,165.964,65.019,327.371,319.419,345.058,21.899,24.981,21.899 +3930,124.022,229.224,410.907,311.431,572.549,233.527,419.111,62.324,157.659,62.324,325.606,319.446,344.134,22.468,24.986,22.468 +3931,124.053,225.341,412.838,314.896,570.324,229.943,420.702,59.668,149.452,59.668,325.862,319.833,344.085,22.221,24.989,22.221 +3932,124.085,222.282,415.026,318.703,567.750,227.278,422.622,56.666,140.947,56.666,324.802,320.002,342.985,23.276,24.440,23.276 +3933,124.116,217.921,417.240,322.628,565.116,223.454,424.742,53.591,132.337,53.591,325.030,319.645,343.674,22.887,24.344,22.887 +3934,124.149,214.144,420.056,326.731,562.154,220.140,427.271,50.271,123.690,50.271,324.964,320.617,343.727,23.368,24.129,23.368 +3935,124.182,210.847,423.927,330.941,559.205,217.135,430.638,46.868,114.905,46.868,324.874,321.826,343.265,23.798,23.971,23.798 +3936,124.219,207.274,427.416,335.534,554.659,213.811,433.555,43.199,106.557,43.199,325.331,321.265,343.266,24.803,23.678,24.803 +3937,124.251,202.475,432.618,340.018,550.073,209.357,438.076,38.418,98.017,38.418,326.367,321.726,343.934,25.612,23.124,25.612 +3938,124.282,199.333,437.198,344.157,544.498,206.229,441.939,34.509,89.145,34.509,326.784,321.143,343.522,25.597,21.610,25.597 +3939,124.312,199.333,437.198,344.157,544.498,206.229,441.939,34.509,89.145,34.509,326.784,321.143,343.522,25.597,21.610,25.597 +3940,124.341,196.288,442.082,348.685,538.727,203.139,446.126,30.551,80.789,30.551,328.911,322.543,344.821,25.751,21.930,25.751 +3941,124.372,193.071,448.103,352.730,531.764,199.991,451.444,25.769,72.121,25.769,329.571,322.599,344.939,25.526,21.306,25.526 +3942,124.403,189.509,455.226,356.510,523.756,196.614,457.857,20.323,63.750,20.323,330.504,322.910,345.658,26.049,21.279,26.049 +3943,124.434,185.865,465.827,359.636,515.370,193.189,467.824,15.255,55.376,15.255,331.002,323.242,346.185,19.032,21.395,19.032 +3944,124.466,184.027,474.338,361.632,505.952,191.060,475.510,9.462,47.186,9.462,332.250,323.533,346.511,18.741,20.691,18.741 +3945,124.497,182.107,483.519,363.207,495.366,190.089,483.951,3.094,38.660,3.094,330.976,324.061,346.964,18.945,20.303,18.945 +3946,124.527,181.842,492.388,364.187,484.531,189.978,491.976,177.101,30.514,177.101,332.435,322.923,348.726,18.028,20.610,18.028 +3947,124.560,183.291,503.293,362.972,473.568,190.446,502.051,170.151,22.448,170.151,335.187,322.386,349.711,19.835,19.357,19.835 +3948,124.592,185.386,513.631,360.451,461.744,192.408,511.462,162.838,14.400,162.838,335.765,321.844,350.463,20.205,19.699,20.205 +3949,124.623,189.307,524.073,356.331,449.989,195.512,521.260,155.618,6.494,155.618,338.168,321.364,351.795,20.293,19.145,20.293 +3950,124.654,193.313,536.384,350.009,438.380,200.485,531.971,148.392,178.645,148.392,335.946,320.242,352.788,22.078,18.708,22.078 +3951,124.684,199.771,544.722,342.383,427.899,205.538,539.980,140.572,170.939,140.572,338.837,319.774,353.770,19.396,18.012,19.396 +3952,124.714,208.918,553.463,332.920,417.733,213.088,548.946,132.709,163.346,132.709,343.097,318.957,355.391,19.614,18.326,19.614 +3953,124.745,208.918,553.463,332.920,417.733,213.088,548.946,132.709,163.346,132.709,343.097,318.957,355.391,19.614,18.326,19.614 +3954,124.776,218.364,562.408,321.907,409.019,222.140,556.809,123.996,155.794,123.996,343.120,317.805,356.627,19.801,18.350,19.801 +3955,124.808,229.699,569.149,308.908,401.542,232.472,563.280,115.292,148.280,115.292,344.796,316.622,357.779,19.474,19.291,19.474 +3956,124.839,241.595,575.431,295.226,396.663,243.570,568.819,106.628,140.870,106.628,345.674,315.294,359.476,18.878,18.959,18.878 +3957,124.871,253.696,579.021,280.745,393.782,254.559,572.163,97.172,133.551,97.172,346.684,314.105,360.509,22.702,18.434,22.702 +3958,124.902,267.896,580.135,265.576,392.820,267.739,573.021,88.736,126.345,88.736,346.181,313.422,360.411,20.885,18.722,20.885 +3959,124.933,282.705,579.646,251.144,394.866,281.476,572.951,79.601,119.592,79.601,347.655,312.194,361.269,23.344,18.196,23.344 +3960,124.963,298.422,575.014,235.961,398.484,296.294,568.782,71.151,112.023,71.151,348.142,311.056,361.314,20.938,18.666,20.938 +3961,124.995,312.096,568.975,222.727,404.835,309.107,563.289,62.272,105.255,62.272,348.051,310.303,360.898,22.708,18.331,22.708 +3962,125.026,324.940,560.420,210.224,412.810,321.155,555.373,53.130,97.943,53.130,348.600,308.707,361.217,23.800,18.633,23.800 +3963,125.057,335.000,551.500,199.482,422.512,330.498,546.998,45.000,90.693,45.000,348.604,307.183,361.336,24.749,18.628,24.749 +3964,125.089,343.900,539.446,190.714,432.976,339.150,536.009,35.886,83.611,35.886,349.586,307.994,361.313,25.721,18.621,25.721 +3965,125.120,349.748,527.919,184.471,444.524,345.355,525.592,27.906,76.430,27.906,350.292,307.815,360.235,25.224,20.045,25.224 +3966,125.151,353.868,519.094,180.630,455.750,349.255,517.407,20.087,70.602,20.087,349.262,307.468,359.087,19.799,19.928,19.799 +3967,125.181,357.365,505.605,176.595,467.619,352.212,504.455,12.575,61.991,12.575,348.285,307.653,358.846,23.875,21.846,23.875 +3968,125.211,357.365,505.605,176.595,467.619,352.212,504.455,12.575,61.991,12.575,348.285,307.653,358.846,23.875,21.846,23.875 +3969,125.239,357.864,496.444,174.136,479.757,352.749,495.961,5.398,54.428,5.398,348.417,308.984,358.691,19.143,22.075,19.143 +3970,125.271,358.587,485.473,173.301,490.388,352.686,485.620,178.568,47.454,178.568,347.092,308.248,358.896,19.269,20.871,19.269 +3971,125.302,357.341,475.408,173.894,500.174,351.608,476.221,171.933,40.272,171.933,347.051,308.585,358.633,19.381,20.452,19.381 +3972,125.333,354.886,465.973,175.831,509.994,349.394,467.374,165.696,33.573,165.696,346.090,308.152,357.424,20.083,22.533,20.083 +3973,125.363,354.067,456.532,178.066,518.809,346.554,459.311,159.700,25.419,159.700,341.307,309.508,357.328,21.122,22.490,21.122 +3974,125.394,351.428,447.880,181.793,527.143,343.275,451.849,154.047,18.587,154.047,338.160,309.583,356.297,21.627,21.775,21.627 +3975,125.426,348.811,440.341,185.124,534.615,339.548,445.940,148.849,10.437,148.849,334.413,310.461,356.058,20.897,20.161,20.897 +3976,125.457,345.013,433.419,189.108,541.453,335.341,440.328,144.462,3.013,144.462,331.771,310.780,355.545,19.297,20.025,19.297 +3977,125.487,341.287,427.117,193.237,546.951,331.182,435.643,139.844,175.078,139.844,327.977,312.256,354.418,20.182,19.183,20.182 +3978,125.517,336.808,421.365,197.632,552.354,326.773,431.157,135.702,167.412,135.702,326.099,313.028,354.141,19.347,19.349,19.347 +3979,125.549,333.171,415.249,201.903,557.056,322.263,427.573,131.511,159.567,131.511,320.543,313.904,353.460,19.866,19.807,19.866 +3980,125.579,333.171,415.249,201.903,557.056,322.263,427.573,131.511,159.567,131.511,320.543,313.904,353.460,19.866,19.807,19.866 +3981,125.608,329.992,408.708,206.197,561.529,317.779,424.455,127.794,151.390,127.794,313.540,315.085,353.396,19.691,18.675,19.691 +3982,125.639,327.096,400.292,210.599,565.435,312.680,421.171,124.624,143.448,124.624,302.689,316.034,353.433,17.810,18.864,17.810 +3983,125.670,325.967,390.508,215.140,569.119,308.484,419.118,121.430,135.437,121.430,286.276,316.850,353.335,17.634,19.561,17.634 +3984,125.700,329.782,370.504,219.580,572.182,304.513,417.252,118.393,127.164,118.393,247.079,318.428,353.360,17.499,19.344,17.499 +3985,125.732,334.919,343.512,223.904,574.886,300.513,415.947,115.408,119.249,115.408,192.488,319.651,352.872,17.591,18.986,17.591 +3986,125.764,307.499,389.992,228.282,577.107,297.497,414.802,111.957,110.758,111.957,299.325,320.477,352.825,18.003,18.807,18.003 +3987,125.796,296.595,406.960,232.677,579.195,294.126,414.023,109.269,102.980,109.269,337.430,321.174,352.395,17.506,18.753,17.506 +3988,125.829,292.193,406.356,237.356,581.401,290.140,413.189,106.725,94.942,106.725,338.303,322.650,352.572,18.305,18.817,18.305 +3989,125.860,287.932,407.837,242.806,582.928,286.735,412.539,104.281,86.832,104.281,342.215,322.890,351.919,18.677,21.078,18.677 +3990,125.892,284.642,406.792,247.071,583.610,283.605,411.714,101.899,78.981,101.899,341.410,322.815,351.470,19.064,21.475,19.064 +3991,125.928,281.517,405.652,251.205,584.395,280.561,411.265,99.660,70.463,99.660,339.815,322.949,351.203,19.108,20.065,19.108 +3992,125.971,278.185,406.061,254.456,584.486,277.567,410.722,97.549,62.605,97.549,341.185,321.597,350.589,18.561,20.155,18.561 +3993,126.004,275.080,405.974,258.276,584.444,274.643,410.480,95.545,54.372,95.545,340.409,321.185,349.463,18.186,20.171,18.186 +3994,126.037,272.360,404.741,260.960,585.510,271.990,410.662,93.576,46.618,93.576,338.527,320.571,350.391,18.027,23.233,18.027 +3995,126.075,269.273,404.864,264.405,585.248,269.124,410.570,91.494,38.737,91.494,338.068,320.773,349.484,17.942,24.481,17.942 +3996,126.106,266.370,404.527,268.139,584.759,266.421,410.372,89.502,30.877,89.502,337.100,320.366,348.790,18.069,25.598,18.069 +3997,126.138,263.633,404.126,271.277,584.245,263.916,410.589,87.492,22.510,87.492,334.686,320.538,347.625,18.595,25.759,18.595 +3998,126.168,260.509,403.660,275.245,583.670,261.076,410.718,85.409,14.744,85.409,332.899,318.931,347.062,18.502,25.602,18.502 +3999,126.200,257.509,403.288,278.323,582.915,258.380,410.817,83.400,7.125,83.400,331.343,318.397,346.501,18.496,25.055,18.496 +4000,126.231,254.555,402.796,281.511,582.424,255.801,410.977,81.339,179.334,81.339,330.179,317.199,346.728,18.980,25.161,18.980 +4001,126.261,251.523,403.207,284.804,581.701,253.120,411.520,79.126,171.431,79.126,329.274,318.243,346.204,19.402,24.978,19.402 +4002,126.293,248.642,403.504,287.853,580.749,250.604,411.986,76.971,163.960,76.971,328.219,318.546,345.631,20.025,25.288,20.025 +4003,126.325,245.401,404.253,291.387,579.995,247.752,412.844,74.694,156.038,74.694,327.666,318.514,345.480,20.275,24.876,20.275 +4004,126.356,242.307,405.112,294.772,579.130,245.027,413.704,72.440,148.360,72.440,327.427,318.917,345.452,20.770,24.647,20.770 +4005,126.386,239.026,406.040,298.285,577.737,242.189,414.764,70.071,140.839,70.071,326.110,319.369,344.668,21.309,23.709,21.309 +4006,126.417,235.898,407.700,301.915,576.419,239.312,416.041,67.738,133.636,67.738,326.255,319.269,344.280,22.141,23.412,22.141 +4007,126.447,235.898,407.700,301.915,576.419,239.312,416.041,67.738,133.636,67.738,326.255,319.269,344.280,22.141,23.412,22.141 +4008,126.477,232.040,408.602,305.871,575.039,236.109,417.264,64.841,126.254,64.841,325.792,320.627,344.931,22.162,23.278,22.162 +4009,126.509,228.614,410.810,309.652,573.248,233.161,419.349,61.970,119.168,61.970,324.238,321.296,343.586,22.499,22.338,22.499 +4010,126.541,224.956,412.426,313.931,571.172,229.882,420.636,59.036,111.801,59.036,325.504,321.996,344.653,23.495,21.541,23.495 +4011,126.571,220.976,415.126,318.090,569.256,226.581,423.391,55.860,105.018,55.860,324.195,323.699,344.168,23.345,20.707,23.345 +4012,126.602,217.079,418.102,322.888,565.634,222.945,425.747,52.496,98.561,52.496,324.371,322.591,343.643,23.836,20.213,23.836 +4013,126.633,212.850,421.257,327.529,561.984,219.217,428.534,48.814,91.953,48.814,324.172,322.494,343.511,24.082,19.409,24.082 +4014,126.665,209.000,425.500,332.872,558.010,215.720,432.220,45.000,85.696,45.000,324.562,323.193,343.570,24.749,19.751,24.749 +4015,126.694,203.551,430.852,337.812,553.216,210.717,436.845,39.908,79.695,39.908,325.617,323.246,344.300,25.481,19.409,25.481 +4016,126.726,200.784,435.775,343.038,547.132,207.738,440.811,35.910,74.055,35.910,326.714,323.347,343.887,25.583,20.055,25.583 +4017,126.758,196.441,440.964,347.930,540.808,203.933,445.482,31.088,68.676,31.088,327.578,323.507,345.076,26.258,19.757,26.258 +4018,126.789,193.100,447.300,352.148,533.187,200.397,450.948,26.565,63.631,26.565,328.702,323.347,345.018,24.597,19.611,24.597 +4019,126.820,189.168,455.162,356.401,524.863,196.842,458.013,20.376,58.761,20.376,329.331,323.292,345.702,26.328,20.058,26.328 +4020,126.850,185.355,465.843,359.840,515.256,193.232,467.975,15.149,54.293,15.149,330.026,323.410,346.348,19.044,20.757,19.044 +4021,126.881,183.877,475.095,362.043,504.884,191.133,476.233,8.910,49.970,8.910,331.882,323.556,346.571,18.771,20.490,18.771 +4022,126.913,183.877,475.095,362.043,504.884,191.133,476.233,8.910,49.970,8.910,331.882,323.556,346.571,18.771,20.490,18.771 +4023,126.943,182.608,485.254,363.154,493.419,189.618,485.487,1.909,45.674,1.909,333.382,323.200,347.408,18.656,21.694,18.656 +4024,126.975,182.369,495.557,363.421,481.763,189.576,494.902,174.806,41.855,174.806,334.167,322.731,348.641,18.741,21.367,18.741 +4025,127.005,184.187,507.113,361.908,468.981,190.868,505.607,167.300,38.211,167.300,336.120,322.219,349.816,20.143,21.884,20.143 +4026,127.036,187.181,518.144,358.279,457.323,193.063,515.955,159.582,34.380,159.582,338.031,320.350,350.582,19.811,20.111,19.811 +4027,127.068,192.019,530.111,353.013,444.822,197.604,527.092,151.607,30.651,151.607,338.972,319.168,351.669,21.850,20.328,21.850 +4028,127.099,197.421,539.891,345.321,433.819,202.279,536.382,144.162,26.940,144.162,340.035,317.983,352.021,20.042,18.444,20.042 +4029,127.131,206.500,550.000,335.821,423.099,209.930,546.570,135.000,23.025,135.000,342.947,316.985,352.650,19.092,18.038,19.092 +4030,127.162,216.028,559.284,324.380,413.279,218.881,555.412,126.384,19.220,126.384,344.394,315.956,354.013,20.042,17.915,20.042 +4031,127.193,227.158,567.311,311.469,405.446,229.355,563.028,117.160,15.255,117.160,345.752,315.127,355.379,19.489,17.804,19.489 +4032,127.225,239.706,573.394,297.385,399.577,241.257,568.646,108.092,11.310,108.092,346.292,314.374,356.281,19.348,17.847,19.348 +4033,127.256,252.224,577.606,281.898,395.780,252.967,572.539,98.333,7.417,98.333,347.929,313.086,358.172,22.637,18.072,22.637 +4034,127.286,269.000,578.500,266.386,394.964,269.000,573.982,90.000,3.318,90.000,349.000,311.868,358.036,22.000,17.709,22.000 +4035,127.317,282.050,577.956,251.014,396.122,281.258,573.517,79.883,179.279,79.883,350.878,310.152,359.897,22.994,17.602,22.994 +4036,127.347,297.840,573.684,235.784,401.084,296.574,569.960,71.219,174.744,71.219,351.045,310.632,358.912,20.940,17.558,20.940 +4037,127.377,297.840,573.684,235.784,401.084,296.574,569.960,71.219,174.744,71.219,351.045,310.632,358.912,20.940,17.558,20.940 +4038,127.407,311.538,567.105,221.836,406.699,309.695,563.665,61.821,171.322,61.821,351.899,311.180,359.704,21.754,18.002,21.754 +4039,127.439,324.395,558.781,209.521,415.145,321.933,555.542,52.772,166.350,52.772,351.457,310.933,359.594,23.925,17.020,23.925 +4040,127.469,334.685,548.612,198.637,424.470,331.950,545.981,43.898,162.072,43.898,353.039,310.870,360.629,24.812,17.126,24.812 +4041,127.500,343.156,537.376,189.494,434.986,339.862,535.061,35.101,157.548,35.101,353.083,311.074,361.134,25.320,18.301,25.320 +4042,127.533,349.522,525.556,182.688,447.791,345.956,523.750,26.854,152.592,26.854,351.950,310.878,359.946,25.545,19.268,25.545 +4043,127.564,352.516,516.551,177.478,459.427,348.886,515.314,18.814,148.660,18.814,352.877,311.448,360.547,19.875,20.181,19.875 +4044,127.595,355.206,504.869,174.502,471.708,351.486,504.145,11.010,144.638,11.010,352.263,311.997,359.843,19.769,18.046,19.769 +4045,127.626,356.176,493.753,172.479,483.346,352.251,493.501,3.671,139.844,3.671,352.238,312.691,360.106,19.051,18.916,19.051 +4046,127.657,356.390,482.608,172.048,494.540,351.619,482.886,176.660,134.542,176.660,350.330,313.312,359.888,19.150,18.497,19.150 +4047,127.687,354.402,472.184,173.065,505.554,350.067,472.966,169.774,129.710,169.774,351.140,314.457,359.950,19.779,18.359,19.779 +4048,127.717,351.726,462.765,175.201,515.640,347.376,464.074,163.258,124.743,163.258,350.377,314.902,359.462,20.585,18.449,20.585 +4049,127.748,347.797,454.463,178.262,525.292,343.903,456.106,157.123,119.745,157.123,350.565,315.792,359.017,21.090,18.605,21.090 +4050,127.779,347.797,454.463,178.262,525.292,343.903,456.106,157.123,119.745,157.123,350.565,315.792,359.017,21.090,18.605,21.090 +4051,127.807,344.048,447.338,181.700,533.552,340.208,449.432,151.390,114.685,151.390,350.121,316.391,358.869,20.431,19.905,20.431 +4052,127.840,339.552,440.618,186.641,541.584,335.982,443.031,145.949,109.604,145.949,349.217,316.962,357.836,20.468,19.099,20.468 +4053,127.871,334.572,434.505,191.531,548.508,331.232,437.213,140.969,104.390,140.969,348.616,317.499,357.215,19.756,19.213,19.756 +4054,127.902,329.903,429.791,196.364,554.897,326.618,432.908,136.500,99.174,136.500,347.851,317.955,356.909,19.607,20.112,19.607 +4055,127.933,324.877,425.493,201.914,560.387,321.813,428.910,131.889,94.059,131.889,346.685,318.258,355.865,20.000,19.551,20.000 +4056,127.963,319.547,420.514,207.698,564.987,316.514,424.500,127.263,88.968,127.263,345.373,318.237,355.389,19.878,19.573,19.878 +4057,127.994,314.218,417.496,213.568,568.937,311.734,421.265,123.389,83.613,123.389,345.616,318.711,354.644,19.090,19.475,19.090 +4058,128.026,309.042,414.888,219.182,572.655,306.846,418.756,119.588,78.425,119.588,345.335,319.500,354.230,19.065,20.136,19.065 +4059,128.058,304.756,412.158,225.397,576.408,302.368,417.043,116.053,72.669,116.053,343.083,321.721,353.956,18.986,20.676,18.986 +4060,128.089,299.773,410.660,231.001,577.564,298.023,414.876,112.543,67.694,112.543,342.774,319.776,351.904,18.698,20.781,18.698 +4061,128.120,294.699,408.693,236.200,579.604,293.118,413.292,108.970,62.199,108.970,341.836,319.828,351.562,18.736,20.474,18.736 +4062,128.151,289.929,407.858,241.913,580.769,288.790,411.917,105.671,57.242,105.671,342.044,320.128,350.475,18.895,20.053,18.895 +4063,128.181,289.929,407.858,241.913,580.769,288.790,411.917,105.671,57.242,105.671,342.044,320.128,350.475,18.895,20.053,18.895 +4064,128.211,285.588,406.353,245.403,583.293,284.402,411.691,102.529,51.953,102.529,341.015,320.206,351.951,18.873,24.310,18.873 +4065,128.243,281.135,405.689,250.643,583.935,280.230,411.119,99.462,47.021,99.462,339.648,319.430,350.657,19.235,23.544,19.235 +4066,128.274,276.959,405.031,255.637,584.755,276.300,410.701,96.626,42.397,96.626,339.134,319.443,350.551,18.106,23.953,18.106 +4067,128.305,272.674,404.716,260.448,584.772,272.309,410.293,93.752,37.678,93.752,338.584,320.399,349.762,17.994,24.073,17.994 +4068,128.337,268.400,404.431,265.477,584.801,268.310,410.372,90.862,33.147,90.862,337.022,320.623,348.905,18.133,25.255,18.133 +4069,128.367,264.487,405.117,270.528,584.092,264.668,410.532,88.091,28.301,88.091,336.480,321.237,347.316,18.423,25.398,18.423 +4070,128.400,260.137,404.702,275.591,583.948,260.663,410.857,85.115,23.356,85.115,335.112,320.654,347.467,18.446,25.518,18.446 +4071,128.430,256.121,404.458,280.800,583.100,257.013,411.035,82.278,18.435,82.278,334.129,319.706,347.402,18.727,24.982,18.727 +4072,128.461,252.075,404.958,285.506,582.477,253.409,412.020,79.303,13.903,79.303,332.531,319.429,346.904,19.423,25.017,19.423 +4073,128.494,248.022,405.482,290.381,581.177,249.779,412.702,76.319,9.310,76.319,331.734,319.765,346.596,20.014,24.752,20.014 +4074,128.526,243.823,406.307,295.090,579.890,246.078,413.784,73.217,4.648,73.217,330.746,319.385,346.365,20.607,24.642,20.607 +4075,128.558,239.765,407.947,300.500,578.500,242.537,415.603,70.096,0.000,70.096,329.515,319.000,345.799,21.286,25.000,21.286 +4076,128.588,235.431,409.080,305.062,575.841,238.623,416.671,67.195,175.795,67.195,328.487,319.490,344.957,22.627,24.537,22.627 +4077,128.618,230.800,410.600,309.987,573.728,234.744,418.489,63.435,171.416,63.435,327.360,319.382,345.000,22.361,24.869,22.361 +4078,128.649,226.239,412.726,315.316,570.880,230.735,420.531,60.054,167.106,60.054,326.981,319.812,344.995,23.330,24.828,23.330 +4079,128.680,221.946,415.871,320.530,567.598,226.948,423.336,56.170,163.113,56.170,325.904,320.025,343.875,23.418,25.169,23.418 +4080,128.710,221.946,415.871,320.530,567.598,226.948,423.336,56.170,163.113,56.170,325.904,320.025,343.875,23.418,25.169,23.418 +4081,128.739,216.704,418.892,325.739,563.824,222.471,426.333,52.224,158.887,52.224,325.038,319.845,343.867,23.060,25.067,23.060 +4082,128.771,212.459,422.537,330.892,559.268,218.708,429.502,48.106,154.933,48.106,324.299,319.999,343.014,24.379,24.734,24.379 +4083,128.804,207.649,426.307,335.998,554.401,214.589,432.994,43.939,151.060,43.939,324.061,320.132,343.335,24.836,25.142,24.836 +4084,128.836,202.354,432.183,341.151,548.736,209.835,438.168,38.660,147.301,38.660,324.061,320.067,343.223,25.456,25.277,25.456 +4085,128.867,197.994,436.581,346.050,542.395,206.136,442.142,34.330,143.379,34.330,324.439,320.019,344.160,25.580,25.314,25.580 +4086,128.897,193.623,442.631,350.398,535.064,202.205,447.487,29.504,139.821,29.504,324.491,320.095,344.212,25.320,24.992,25.320 +4087,128.929,189.144,450.019,354.251,527.219,198.211,453.962,23.499,136.169,23.499,324.842,319.777,344.617,26.316,24.845,26.316 +4088,128.960,184.550,460.350,357.933,518.438,194.186,463.562,18.435,132.656,18.435,325.082,319.419,345.396,19.290,25.054,19.290 +4089,128.992,181.990,469.867,360.267,509.219,191.667,471.951,12.155,129.401,12.155,325.535,320.405,345.333,18.935,25.196,18.935 +4090,129.022,179.764,479.340,362.144,498.566,190.062,480.380,5.768,126.158,5.768,325.375,319.975,346.076,18.612,25.122,18.612 +4091,129.053,179.004,488.868,363.006,487.116,189.479,488.762,179.418,122.829,179.418,326.115,318.635,347.068,18.090,24.857,18.090 +4092,129.084,178.450,500.720,362.228,475.684,189.658,499.154,172.047,119.094,172.047,325.683,318.002,348.316,19.116,24.770,19.116 +4093,129.114,178.450,500.720,362.228,475.684,189.658,499.154,172.047,119.094,172.047,325.683,318.002,348.316,19.116,24.770,19.116 +4094,129.144,180.080,512.451,358.286,462.888,190.589,509.577,164.707,116.307,164.707,326.355,317.085,348.145,19.902,21.122,19.902 +4095,129.177,183.450,524.401,354.569,450.672,193.960,519.920,156.909,113.199,156.909,326.950,316.186,349.800,20.644,21.534,20.644 +4096,129.209,188.482,537.501,348.278,438.921,199.066,531.192,149.199,109.654,149.199,326.185,314.878,350.829,22.861,20.113,22.861 +4097,129.240,192.396,549.623,341.540,428.165,204.790,539.735,141.419,106.949,141.419,321.245,314.208,352.957,20.158,22.575,20.158 +4098,129.270,199.751,561.236,331.829,418.082,211.793,548.427,133.232,103.917,133.232,319.211,313.098,354.374,19.585,22.144,19.585 +4099,129.301,210.264,574.030,319.903,409.092,221.643,557.189,124.046,101.017,124.046,314.797,311.992,355.446,20.088,20.222,20.088 +4100,129.331,222.245,585.792,306.973,402.767,232.361,564.295,115.201,98.661,115.201,308.330,310.492,355.846,19.853,19.765,19.853 +4101,129.361,234.573,602.551,292.847,397.438,244.221,569.748,106.390,95.458,106.390,289.672,309.318,358.057,19.469,18.990,19.469 +4102,129.394,247.714,639.867,276.968,408.905,254.551,579.960,96.511,92.157,96.511,224.397,278.593,344.988,22.425,18.226,22.425 +4103,129.426,274.194,635.578,262.310,393.513,272.915,573.231,88.825,89.377,88.825,235.074,308.971,359.795,23.077,18.303,23.077 +4104,129.457,284.880,583.551,247.289,396.720,282.745,573.147,78.403,86.082,78.403,338.666,307.307,359.906,23.134,19.885,23.134 +4105,129.487,300.959,576.696,233.583,401.709,298.272,569.275,70.096,83.168,70.096,343.375,306.005,359.160,21.107,19.153,21.107 +4106,129.518,314.526,569.209,220.833,407.453,311.077,562.977,61.032,80.451,61.032,345.302,305.290,359.546,22.091,19.373,22.091 +4107,129.550,326.802,559.764,208.546,415.209,322.797,554.634,52.019,77.619,52.019,347.397,305.673,360.413,23.895,18.415,23.895 +4108,129.579,326.802,559.764,208.546,415.209,322.797,554.634,52.019,77.619,52.019,347.397,305.673,360.413,23.895,18.415,23.895 +4109,129.610,337.075,549.451,198.169,423.954,332.166,544.828,43.276,74.745,43.276,347.351,307.496,360.838,24.759,18.418,24.759 +4110,129.641,345.187,538.010,190.186,434.792,340.345,534.650,34.753,72.051,34.753,348.806,307.092,360.593,25.164,18.437,25.164 +4111,129.671,351.119,526.259,183.720,446.334,346.281,523.831,26.647,68.821,26.647,349.278,306.843,360.104,25.141,19.902,25.141 +4112,129.701,354.421,517.162,179.111,457.848,349.379,515.442,18.840,65.817,18.840,348.833,307.044,359.488,19.840,20.713,19.840 +4113,129.733,356.900,505.511,176.368,469.508,352.123,504.560,11.267,62.745,11.267,348.691,307.316,358.433,19.607,21.686,19.607 +4114,129.765,358.207,494.564,174.422,481.254,353.134,494.199,4.116,59.802,4.116,348.187,308.071,358.360,19.102,20.212,19.102 +4115,129.797,358.142,483.486,174.217,492.847,352.695,483.744,177.284,56.565,177.284,346.512,309.523,357.418,19.219,20.344,19.219 +4116,129.828,356.155,473.418,175.188,503.373,351.351,474.221,170.502,53.366,170.502,347.374,309.997,357.117,20.708,20.308,20.708 +4117,129.861,353.538,463.416,177.071,513.187,348.928,464.710,164.324,50.120,164.324,347.550,309.971,357.126,21.756,20.730,21.756 +4118,129.892,350.402,455.778,179.730,521.851,345.916,457.554,158.405,46.948,158.405,346.721,309.476,356.371,20.843,20.018,20.843 +4119,129.923,347.216,448.855,183.263,529.721,342.778,451.113,153.034,43.386,153.034,345.675,310.028,355.634,20.202,20.777,20.202 +4120,129.954,342.946,441.290,187.415,536.836,338.597,444.035,147.734,40.384,147.734,344.471,311.291,354.756,19.893,19.840,19.893 +4121,129.983,338.162,435.369,190.536,544.952,333.468,438.905,143.000,36.968,143.000,344.189,312.001,355.942,19.179,24.330,19.179 +4122,130.014,333.479,430.218,195.571,550.877,329.267,433.978,138.257,33.425,138.257,343.879,312.027,355.172,20.088,24.104,20.088 +4123,130.044,333.479,430.218,195.571,550.877,329.267,433.978,138.257,33.425,138.257,343.879,312.027,355.172,20.088,24.104,20.088 +4124,130.073,328.788,425.693,200.556,555.775,324.767,429.834,134.162,29.805,134.162,342.224,312.330,353.767,19.066,24.515,19.066 +4125,130.105,324.077,421.581,205.300,559.900,320.384,425.985,129.987,26.565,129.987,341.623,313.497,353.118,19.748,25.491,19.748 +4126,130.136,319.835,417.851,210.362,564.155,316.117,422.899,126.369,23.199,126.369,340.368,313.560,352.905,19.456,25.736,19.456 +4127,130.168,314.926,414.555,215.325,567.010,311.581,419.773,122.661,18.988,122.661,339.407,313.763,351.803,19.083,25.551,19.083 +4128,130.199,310.267,411.545,220.169,570.534,306.956,417.474,119.181,15.180,119.181,338.315,313.900,351.897,19.480,25.362,19.480 +4129,130.229,305.893,409.177,224.591,572.898,302.739,415.665,115.925,10.784,115.925,336.726,314.161,351.153,19.074,24.278,19.074 +4130,130.261,301.517,407.218,229.269,574.993,298.598,414.138,112.865,6.116,112.865,335.288,314.592,350.309,19.372,25.000,19.372 +4131,130.292,297.485,405.540,233.517,577.147,294.762,413.029,109.983,2.793,109.983,334.396,313.846,350.334,19.052,24.215,19.052 +4132,130.324,294.108,404.324,238.010,578.384,291.658,412.083,107.526,178.531,107.526,333.202,314.358,349.475,19.072,23.121,19.072 +4133,130.354,289.565,403.035,241.966,579.682,287.479,411.081,104.534,173.884,104.534,332.632,315.409,349.255,18.966,24.076,18.966 +4134,130.385,285.684,402.249,245.885,580.641,283.946,410.505,101.889,169.796,101.889,331.780,316.179,348.654,19.262,23.660,19.262 +4135,130.415,281.700,401.022,249.955,581.482,280.269,409.788,99.273,165.426,99.273,330.904,316.033,348.669,19.678,23.750,19.678 +4136,130.446,281.700,401.022,249.955,581.482,280.269,409.788,99.273,165.426,99.273,330.904,316.033,348.669,19.678,23.750,19.678 +4137,130.475,278.088,400.377,253.589,582.179,276.962,409.610,96.953,160.665,96.953,329.655,316.619,348.259,18.909,23.805,18.909 +4138,130.506,274.483,399.792,257.340,582.269,273.697,409.178,94.787,156.161,94.787,328.864,317.396,347.703,18.129,23.016,18.129 +4139,130.538,270.912,399.560,261.269,583.006,270.491,409.454,92.437,151.991,92.437,327.767,317.402,347.573,18.111,23.631,18.111 +4140,130.569,267.000,399.500,264.903,583.349,267.000,409.675,90.000,147.160,90.000,327.000,318.392,347.349,18.000,23.533,18.000 +4141,130.600,264.179,399.889,268.499,583.154,264.532,410.032,88.008,142.624,88.008,326.012,318.630,346.309,18.545,23.454,18.545 +4142,130.630,260.828,399.713,271.824,582.756,261.579,409.715,85.711,137.750,85.711,326.583,318.782,346.644,18.847,22.398,18.847 +4143,130.662,257.144,399.636,275.348,582.817,258.418,410.649,83.400,132.274,83.400,323.774,319.587,345.946,18.611,21.795,18.611 +4144,130.694,253.700,399.578,279.331,582.370,255.469,410.903,81.119,127.569,81.119,323.265,320.159,346.190,19.112,21.584,19.112 +4145,130.725,250.233,400.448,282.806,581.876,252.487,411.618,78.589,122.471,78.589,322.991,320.745,345.782,19.452,20.708,19.452 +4146,130.755,246.736,400.960,286.691,581.307,249.538,412.369,76.201,117.324,76.201,322.349,321.196,345.847,20.053,21.026,20.053 +4147,130.785,243.010,401.826,290.078,580.443,246.354,413.251,73.686,111.380,73.686,321.676,322.008,345.484,20.295,21.104,20.295 +4148,130.817,239.675,403.243,294.646,579.606,243.489,414.391,71.114,106.213,71.114,322.194,322.800,345.759,21.040,20.594,21.040 +4149,130.847,239.675,403.243,294.646,579.606,243.489,414.391,71.114,106.213,71.114,322.194,322.800,345.759,21.040,20.594,21.040 +4150,130.878,235.807,404.192,298.612,579.227,240.497,416.049,68.416,101.126,68.416,320.727,324.582,346.229,21.530,20.507,21.530 +4151,130.910,231.840,405.489,303.523,577.447,237.306,417.572,65.659,96.384,65.659,319.387,324.778,345.911,22.170,18.528,22.170 +4152,130.941,227.789,407.262,308.720,575.484,234.138,419.528,62.632,91.146,62.632,317.950,323.275,345.573,22.494,18.816,22.494 +4153,130.971,223.745,410.383,313.332,572.976,230.307,421.521,59.496,85.855,59.496,319.416,323.326,345.271,22.014,18.560,22.014 +4154,131.002,219.562,412.115,318.578,570.070,227.146,423.456,56.229,80.597,56.229,318.114,323.869,345.400,23.367,18.939,23.367 +4155,131.033,215.507,415.447,323.626,566.841,223.710,426.213,52.696,75.750,52.696,317.756,324.523,344.827,23.674,19.046,23.674 +4156,131.065,210.614,418.415,328.596,563.081,219.784,428.939,48.935,70.509,48.935,317.321,324.500,345.238,24.060,18.335,24.060 +4157,131.096,207.000,423.500,333.668,558.652,216.080,432.580,45.000,65.362,45.000,318.905,324.156,344.587,24.749,18.644,24.749 +4158,131.128,201.895,429.443,338.862,553.508,211.108,437.152,39.920,60.255,39.920,321.268,324.475,345.294,25.481,18.853,25.481 +4159,131.162,198.955,434.210,343.670,547.690,208.006,440.815,36.119,55.305,36.119,322.767,324.829,345.176,25.369,19.416,25.369 +4160,131.195,195.488,438.853,348.566,541.279,204.860,444.738,32.125,50.194,32.125,323.945,325.086,346.080,25.032,19.206,25.032 +4161,131.229,192.264,445.661,352.560,533.951,201.205,450.246,27.150,45.300,27.150,325.650,324.606,345.748,25.075,19.006,25.075 +4162,131.260,187.879,456.052,356.327,525.705,196.504,459.502,21.801,40.163,21.801,327.381,325.563,345.959,18.755,19.192,18.755 +4163,131.291,184.543,463.348,359.899,516.642,194.083,466.206,16.676,35.327,16.676,326.713,325.151,346.631,19.446,20.238,19.446 +4164,131.321,182.141,472.518,362.642,506.450,191.897,474.313,10.426,30.606,10.426,327.644,324.648,347.484,18.891,21.335,18.891 +4165,131.351,180.729,481.775,364.165,496.681,190.608,482.476,4.057,26.171,4.057,328.445,323.797,348.254,18.875,20.904,18.875 +4166,131.381,180.844,490.988,364.510,485.475,190.149,490.667,178.025,21.323,178.025,330.252,323.667,348.872,18.093,20.224,18.093 +4167,131.413,180.844,490.988,364.510,485.475,190.149,490.667,178.025,21.323,178.025,330.252,323.667,348.872,18.093,20.224,18.093 +4168,131.442,182.037,502.157,363.377,474.409,190.458,500.786,170.754,16.763,170.754,332.759,322.980,349.822,19.097,19.162,19.097 +4169,131.474,184.894,512.974,360.874,462.573,192.280,510.763,163.337,12.369,163.337,335.243,322.134,350.664,20.314,18.945,20.314 +4170,131.505,188.888,523.626,356.640,450.991,195.233,520.800,155.993,7.887,155.993,337.801,321.746,351.692,20.396,18.735,20.396 +4171,131.536,193.185,535.483,350.499,439.021,200.039,531.308,148.655,3.652,148.655,336.961,320.136,353.013,21.312,18.707,21.312 +4172,131.567,199.623,544.191,342.517,428.394,205.027,539.797,140.882,179.493,140.882,339.986,319.085,353.916,19.550,17.840,19.550 +4173,131.598,208.920,553.039,333.061,418.251,212.748,548.901,132.764,175.344,132.764,343.944,319.142,355.217,20.043,17.864,20.043 +4174,131.630,219.346,561.731,321.769,409.493,222.351,557.224,123.690,171.275,123.690,345.301,317.648,356.133,19.692,17.992,19.692 +4175,131.662,229.976,569.489,309.123,403.040,232.461,564.208,115.201,167.196,115.201,345.268,317.140,356.940,19.746,17.774,19.746 +4176,131.695,242.592,574.882,295.470,398.534,244.042,569.855,106.091,162.959,106.091,347.264,315.856,357.727,18.958,18.243,18.958 +4177,131.726,257.440,578.559,280.261,394.700,258.176,573.057,97.623,159.563,97.623,348.318,315.080,359.421,22.664,18.043,22.664 +4178,131.756,271.728,579.495,265.412,394.807,271.603,573.951,88.717,155.510,88.717,347.383,314.240,358.475,23.084,18.282,23.084 +4179,131.787,283.271,578.245,250.561,396.985,282.341,573.578,78.731,151.876,78.731,349.281,313.116,358.798,22.947,18.110,22.947 +4180,131.818,299.172,574.022,235.290,399.481,297.366,568.923,70.494,148.946,70.494,350.068,312.808,360.888,21.225,18.736,21.225 +4181,131.848,299.172,574.022,235.290,399.481,297.366,568.923,70.494,148.946,70.494,350.068,312.808,360.888,21.225,18.736,21.225 +4182,131.879,311.879,567.991,221.828,405.979,309.437,563.441,61.771,145.555,61.771,350.015,312.572,360.344,22.166,19.218,22.166 +4183,131.912,324.763,559.263,209.973,414.243,321.860,555.439,52.786,141.959,52.786,350.629,312.057,360.230,23.873,18.599,23.873 +4184,131.946,343.275,538.769,190.538,434.039,339.445,536.005,35.818,135.735,35.818,351.387,311.926,360.834,25.581,18.084,25.581 +4185,131.977,343.275,538.769,190.538,434.039,339.445,536.005,35.818,135.735,35.818,351.387,311.926,360.834,25.581,18.084,25.581 +4186,132.005,349.223,527.300,184.396,445.874,345.745,525.459,27.888,133.363,27.888,351.801,312.050,359.671,25.617,19.064,25.617 +4187,132.036,352.349,518.690,178.822,457.373,348.555,517.295,20.181,130.061,20.181,351.885,312.407,359.969,19.733,19.064,19.733 +4188,132.068,355.363,507.901,175.588,469.172,351.318,506.981,12.804,126.431,12.804,351.181,312.788,359.479,19.325,20.919,19.325 +4189,132.099,356.467,496.865,173.324,480.193,352.378,496.453,5.755,123.203,5.755,351.344,313.382,359.564,19.213,20.336,19.213 +4190,132.132,356.462,486.591,172.433,491.044,352.234,486.658,179.093,120.256,179.093,351.241,313.480,359.697,18.276,18.931,18.276 +4191,132.163,355.704,476.715,172.932,501.465,351.105,477.310,172.626,117.076,172.626,350.326,314.007,359.600,19.450,19.160,19.450 +4192,132.194,353.582,467.662,174.624,511.055,349.234,468.701,166.556,113.916,166.556,350.403,314.758,359.345,20.235,19.213,20.235 +4193,132.226,350.437,459.433,177.095,520.036,346.474,460.807,160.875,110.726,160.875,350.484,315.318,358.872,20.092,19.363,20.092 +4194,132.257,347.168,452.078,180.074,528.181,343.177,453.898,155.484,107.526,155.484,349.673,315.987,358.444,20.671,19.423,20.671 +4195,132.287,343.760,445.827,183.660,535.661,339.772,448.104,150.282,104.191,150.282,348.783,316.274,357.968,21.466,19.412,21.466 +4196,132.317,339.936,439.934,187.750,542.206,336.039,442.581,145.821,100.663,145.821,347.867,316.732,357.290,20.744,19.231,20.744 +4197,132.348,335.654,435.305,191.836,547.980,332.299,437.969,141.546,96.977,141.546,348.254,317.263,356.823,20.637,19.217,20.637 +4198,132.378,335.654,435.305,191.836,547.980,332.299,437.969,141.546,96.977,141.546,348.254,317.263,356.823,20.637,19.217,20.637 +4199,132.407,331.965,430.805,195.595,553.035,328.352,434.078,137.834,93.417,137.834,346.758,317.107,356.508,19.803,19.160,19.803 +4200,132.439,327.950,426.984,199.701,557.487,324.566,430.443,134.370,89.556,134.370,346.586,317.083,356.264,19.176,19.488,19.176 +4201,132.469,324.377,424.022,203.650,561.289,321.114,427.767,131.065,85.449,131.065,345.733,318.222,355.669,19.872,19.828,19.872 +4202,132.500,320.439,421.283,208.011,564.498,317.513,425.035,127.954,81.158,127.954,345.112,318.635,354.629,19.933,19.499,19.933 +4203,132.532,316.711,418.738,211.951,567.512,313.979,422.611,125.194,76.569,125.194,344.956,318.753,354.435,18.856,19.961,18.856 +4204,132.563,313.655,416.814,216.093,570.304,311.147,420.716,122.735,71.701,122.735,345.184,320.032,354.462,19.047,20.230,19.047 +4205,132.595,310.420,414.995,220.031,571.864,308.223,418.761,120.256,67.437,120.256,344.648,319.615,353.368,19.003,21.389,19.003 +4206,132.626,307.822,413.065,222.596,573.161,305.491,417.416,118.179,62.259,118.179,342.990,318.478,352.862,18.763,20.743,18.763 +4207,132.656,304.803,411.926,226.076,574.313,302.793,416.037,116.053,57.458,116.053,342.624,318.590,351.776,19.106,20.344,19.106 +4208,132.687,302.142,410.716,228.605,575.530,300.217,415.002,114.193,52.184,114.193,342.156,318.376,351.553,18.904,20.823,18.904 +4209,132.717,300.745,409.908,229.895,577.633,298.501,415.203,112.973,47.083,112.973,341.146,317.975,352.647,19.114,24.527,19.114 +4210,132.747,300.745,409.908,229.895,577.633,298.501,415.203,112.973,47.083,112.973,341.146,317.975,352.647,19.114,24.527,19.114 +4211,132.778,298.158,409.093,232.096,578.342,296.173,414.219,111.161,42.166,111.161,341.380,317.977,352.374,18.772,24.907,18.772 +4212,132.810,296.316,408.352,234.419,578.596,294.450,413.524,109.832,36.690,109.832,340.299,317.797,351.296,18.721,25.141,18.721 +4213,132.847,294.710,407.551,236.180,579.112,292.878,412.978,108.658,32.005,108.658,339.629,317.999,351.084,18.826,24.804,18.826 +4214,132.879,293.332,406.837,237.900,578.700,291.663,412.101,107.592,26.565,107.592,339.071,317.969,350.115,18.809,26.386,18.809 +4215,132.913,292.197,406.009,239.732,578.877,290.497,411.678,106.699,20.410,106.699,337.634,317.282,349.470,18.965,26.722,18.965 +4216,132.946,290.986,404.778,240.996,579.725,289.062,411.598,105.751,15.619,105.751,335.549,316.623,349.722,18.854,25.796,18.854 +4217,132.977,289.699,403.817,241.978,579.648,287.825,410.913,104.797,8.415,104.797,335.018,316.104,349.697,18.917,25.896,18.917 +4218,133.008,289.292,403.460,243.024,580.135,287.324,411.135,104.381,3.814,104.381,333.568,315.367,349.415,19.125,24.479,19.125 +4219,133.038,288.477,402.988,243.541,579.977,286.547,410.810,103.861,177.614,103.861,332.974,315.560,349.088,19.178,23.896,19.178 +4220,133.069,287.489,402.195,244.155,580.496,285.504,410.731,103.092,172.147,103.092,331.910,316.077,349.437,19.027,24.458,19.027 +4221,133.100,287.520,402.081,244.478,580.411,285.540,410.659,102.995,166.329,102.995,331.668,316.554,349.275,19.038,23.766,19.038 +4222,133.133,287.138,400.929,244.678,580.496,284.988,410.506,102.653,160.201,102.653,329.752,316.703,349.383,19.196,23.071,19.196 +4223,133.164,286.443,400.204,244.442,580.325,284.229,410.448,102.195,154.058,102.195,327.935,317.138,348.897,19.627,22.408,19.627 +4224,133.195,286.605,399.344,244.056,580.298,284.219,410.476,102.095,147.653,102.095,326.167,317.596,348.936,19.626,21.402,19.626 +4225,133.227,286.633,398.242,243.829,580.149,284.040,410.388,102.053,141.736,102.053,323.992,318.125,348.831,19.416,20.392,19.416 +4226,133.258,287.780,395.891,243.250,580.250,284.549,410.608,102.381,135.000,102.381,318.967,318.198,349.103,19.106,19.092,19.106 +4227,133.288,288.625,392.821,242.860,580.673,284.575,410.709,102.758,128.967,102.758,313.278,319.523,349.960,18.145,19.381,18.145 +4228,133.319,290.292,387.510,242.444,581.180,284.749,411.067,103.241,122.692,103.241,302.160,320.305,350.561,17.751,19.507,17.751 +4229,133.349,293.677,377.294,242.133,581.577,285.113,411.550,104.036,116.003,104.036,280.129,320.268,350.749,17.463,19.247,17.463 +4230,133.379,293.677,377.294,242.133,581.577,285.113,411.550,104.036,116.003,104.036,280.129,320.268,350.749,17.463,19.247,17.463 +4231,133.408,304.000,338.500,241.898,581.785,285.669,411.822,104.036,109.683,104.036,199.849,321.067,351.007,16.735,19.536,16.735 +4232,133.441,305.941,334.735,240.729,582.203,286.527,412.392,104.036,103.173,104.036,191.603,322.208,351.696,16.735,18.666,16.735 +4233,133.473,289.224,404.775,240.328,582.720,287.183,412.737,104.381,96.868,104.381,336.151,323.360,352.589,18.107,19.331,18.107 +4234,133.504,289.458,406.641,240.353,582.015,287.839,412.647,105.086,90.632,105.086,339.339,322.135,351.780,18.614,19.241,18.614 +4235,133.536,290.359,407.745,239.943,582.506,288.893,412.873,105.945,84.382,105.945,342.440,323.374,353.106,18.681,19.986,18.681 +4236,133.567,291.628,408.478,239.273,582.018,290.190,413.222,106.858,78.017,106.858,342.702,323.085,352.616,18.705,20.722,18.705 +4237,133.598,293.420,408.497,237.688,580.776,291.877,413.236,108.034,71.689,108.034,342.203,321.916,352.170,18.841,21.050,18.841 +4238,133.628,295.270,408.724,236.206,579.469,293.691,413.265,109.179,64.942,109.179,342.113,320.365,351.728,18.972,20.400,18.972 +4239,133.660,297.062,409.401,234.481,578.281,295.509,413.554,110.511,58.392,110.511,342.467,319.634,351.335,19.089,20.440,19.089 +4240,133.691,298.750,409.409,232.261,577.115,296.936,413.980,111.644,51.821,111.644,341.138,318.512,350.974,18.870,20.828,18.870 +4241,133.722,300.914,410.034,228.500,577.000,298.651,415.315,113.199,45.000,113.199,341.003,317.491,352.492,18.777,24.749,18.777 +4242,133.752,303.728,410.940,226.176,575.258,301.370,415.994,115.017,38.928,115.017,341.087,317.340,352.241,18.909,24.834,18.909 +4243,133.782,305.900,411.200,223.429,573.337,303.276,416.449,116.565,32.905,116.565,340.330,316.666,352.066,18.783,24.792,18.783 +4244,133.813,305.900,411.200,223.429,573.337,303.276,416.449,116.565,32.905,116.565,340.330,316.666,352.066,18.783,24.792,18.783 +4245,133.844,309.261,412.418,220.639,571.282,306.355,417.710,118.768,27.192,118.768,339.666,316.205,351.740,19.044,25.183,19.044 +4246,133.876,312.353,413.412,217.452,569.127,309.032,418.947,120.964,20.898,120.964,338.881,315.103,351.792,18.865,25.632,18.865 +4247,133.912,315.902,414.736,214.035,566.983,312.096,420.528,123.311,14.850,123.311,338.628,313.896,352.491,19.030,24.905,19.030 +4248,133.954,323.963,418.171,206.424,561.163,318.738,424.703,128.660,2.632,128.660,336.711,313.359,353.440,19.522,22.333,19.522 +4249,133.986,329.115,419.702,202.774,557.323,322.347,427.341,131.540,176.906,131.540,332.759,312.463,353.169,20.144,20.700,20.144 +4250,134.018,333.973,421.425,198.442,553.253,325.564,429.936,134.657,171.529,134.657,330.209,313.100,354.136,19.392,19.656,19.392 +4251,134.054,340.935,422.631,194.345,549.224,328.947,433.516,137.764,166.715,137.764,322.485,313.437,354.869,19.610,19.330,19.610 +4252,134.087,352.373,419.947,190.380,544.909,331.959,436.976,140.167,162.676,140.167,302.547,313.129,355.715,22.790,20.266,22.790 +4253,134.118,364.893,419.515,186.899,540.122,334.706,440.379,145.349,159.069,145.349,283.214,313.182,356.604,17.832,19.644,17.832 +4254,134.149,398.279,408.632,183.677,535.060,337.927,444.844,149.036,156.549,149.036,216.603,312.918,357.368,17.836,20.095,17.836 +4255,134.180,398.279,408.632,183.677,535.060,337.927,444.844,149.036,156.549,149.036,216.603,312.918,357.368,17.836,20.095,17.836 +4256,134.209,410.583,414.061,180.309,529.575,340.876,450.116,152.650,154.117,152.650,201.288,312.261,358.248,17.734,18.595,17.734 +4257,134.240,353.329,451.965,177.579,522.651,344.165,455.971,156.384,152.214,156.384,338.691,312.750,358.693,18.856,18.847,18.856 +4258,134.271,352.292,459.424,175.066,515.463,346.449,461.417,161.162,150.524,161.162,346.962,313.213,359.308,19.831,21.764,19.831 +4259,134.302,353.577,467.274,173.809,508.982,348.994,468.397,166.230,147.369,166.230,350.184,312.618,359.621,19.940,20.618,19.940 +4260,134.332,355.751,475.737,172.722,500.580,351.088,476.396,171.954,144.189,171.954,350.572,312.246,359.990,19.243,21.023,19.243 +4261,134.364,355.969,485.408,172.101,490.435,352.130,485.517,178.377,140.396,178.377,352.510,312.275,360.192,18.248,19.803,18.248 +4262,134.396,356.576,495.046,172.750,479.763,352.269,494.702,4.574,136.469,4.574,351.637,311.424,360.278,18.979,18.451,18.979 +4263,134.430,355.629,505.876,175.796,469.707,352.031,505.135,11.641,132.946,11.641,352.171,311.485,359.517,19.589,18.525,19.589 +4264,134.463,353.189,516.450,179.609,458.303,349.757,515.301,18.516,128.797,18.516,351.643,310.788,358.882,19.439,18.415,19.439 +4265,134.496,350.700,525.600,184.191,446.505,346.677,523.589,26.565,124.490,26.565,350.615,310.664,359.610,25.491,18.592,25.491 +4266,134.530,345.769,535.846,190.086,434.760,341.475,532.983,33.690,120.069,33.690,350.571,310.597,360.894,26.071,18.402,26.071 +4267,134.564,336.409,548.629,198.331,424.407,332.493,544.953,43.191,116.095,43.191,349.896,309.923,360.639,24.848,18.401,24.848 +4268,134.597,327.290,558.148,208.482,414.903,323.778,553.804,51.044,112.286,51.044,349.834,309.932,361.006,22.932,18.051,22.932 +4269,134.629,315.767,566.468,219.551,406.861,312.828,561.439,59.697,108.277,59.697,349.397,309.275,361.046,22.919,17.876,22.919 +4270,134.660,303.360,573.754,232.670,400.382,300.916,567.657,68.158,104.845,68.158,348.175,309.458,361.314,21.579,18.447,21.579 +4271,134.691,289.292,579.551,246.942,396.288,287.426,571.911,76.268,101.310,76.268,344.696,308.883,360.425,22.817,20.004,22.817 +4272,134.721,273.729,583.083,258.492,394.022,272.863,573.779,84.685,96.051,84.685,341.942,309.295,360.631,23.248,20.577,23.248 +4273,134.751,254.313,650.580,272.417,393.949,258.987,573.461,93.468,92.680,93.468,205.471,306.741,359.991,23.381,18.537,23.381 +4274,134.781,242.652,596.835,286.985,409.034,247.148,577.167,102.875,89.572,102.875,305.214,282.044,345.565,20.973,18.388,20.973 +4275,134.813,242.652,596.835,286.985,409.034,247.148,577.167,102.875,89.572,102.875,305.214,282.044,345.565,20.973,18.388,20.973 +4276,134.843,231.293,579.517,302.439,412.549,234.505,571.488,111.801,85.030,111.801,328.309,283.842,345.604,19.869,20.964,19.869 +4277,134.874,220.645,569.628,315.518,413.657,224.524,562.983,120.273,80.942,120.273,334.282,293.826,349.670,19.946,21.998,19.946 +4278,134.905,210.774,560.414,327.821,419.988,215.362,554.658,128.553,76.817,128.553,336.090,296.725,350.811,20.114,24.253,20.114 +4279,134.936,202.931,550.045,336.348,421.438,208.831,544.474,136.645,73.101,136.645,338.142,312.747,354.371,19.555,24.877,19.555 +4280,134.967,196.282,539.690,344.183,431.668,201.903,535.668,144.420,69.146,144.420,338.631,314.121,352.455,19.362,24.252,19.362 +4281,134.997,191.845,530.081,350.936,442.529,197.236,527.201,151.885,65.145,151.885,338.707,315.058,350.931,21.299,24.592,21.299 +4282,135.029,187.670,519.439,356.190,453.623,193.174,517.311,158.866,61.332,158.866,338.223,316.525,350.027,20.944,24.530,20.944 +4283,135.060,185.195,509.751,360.136,464.596,191.068,508.227,165.450,57.555,165.450,337.076,317.907,349.213,20.290,24.341,20.290 +4284,135.092,183.483,499.877,362.518,475.525,189.860,498.992,172.093,53.842,172.093,335.612,319.385,348.489,19.260,23.445,19.260 +4285,135.123,182.954,489.820,363.604,485.914,189.775,489.675,178.781,50.268,178.781,334.095,321.498,347.740,18.017,22.272,18.017 +4286,135.153,182.598,481.674,363.169,495.889,190.064,482.227,4.236,46.469,4.236,332.312,322.625,347.284,18.837,21.061,18.837 +4287,135.184,183.648,473.624,362.183,505.304,191.457,474.947,9.616,43.025,9.616,330.957,323.516,346.797,19.585,19.690,19.585 +4288,135.214,183.648,473.624,362.183,505.304,191.457,474.947,9.616,43.025,9.616,330.957,323.516,346.797,19.585,19.690,19.585 +4289,135.243,184.646,465.631,360.591,513.274,193.333,468.000,15.255,40.014,15.255,328.546,324.445,346.554,19.295,19.289,19.295 +4290,135.273,186.305,458.872,358.571,520.683,195.521,462.187,19.784,37.340,19.784,326.863,324.612,346.452,19.158,19.196,19.158 +4291,135.305,187.917,453.130,356.091,527.464,197.633,457.392,23.682,35.647,23.682,325.298,325.033,346.518,18.428,20.053,18.428 +4292,135.336,183.932,445.285,353.978,532.076,199.761,453.516,27.474,34.484,27.474,310.455,325.651,346.137,17.886,18.617,17.886 +4293,135.366,168.492,430.117,351.423,536.615,201.769,449.710,30.489,33.690,30.489,268.875,325.886,346.109,17.645,18.860,17.645 +4294,135.400,132.686,399.651,348.951,541.503,204.311,446.719,33.311,33.071,33.311,174.448,325.104,345.860,17.621,20.385,17.621 +4295,135.431,175.361,419.942,346.467,544.552,207.464,441.726,34.160,31.855,34.160,267.925,325.529,345.518,21.839,19.857,21.839 +4296,135.464,191.981,427.043,344.159,547.246,209.173,439.825,36.629,30.844,36.629,301.993,325.674,344.838,22.916,19.955,22.916 +4297,135.497,198.770,428.641,341.826,550.019,210.338,437.984,38.928,29.168,38.928,315.635,325.682,345.373,23.967,19.982,23.967 +4298,135.531,204.879,426.593,339.479,552.550,213.613,434.727,42.963,26.779,42.963,320.946,325.162,344.816,24.831,19.791,24.831 +4299,135.563,207.702,424.807,337.375,554.571,215.467,432.493,44.706,23.629,44.706,323.191,325.007,345.043,24.774,20.556,24.774 +4300,135.596,210.206,425.195,334.941,557.561,216.997,432.237,46.042,19.708,46.042,324.598,324.229,344.166,24.089,21.498,24.089 +4301,135.629,212.932,422.445,332.508,559.644,219.426,429.786,48.504,15.306,48.504,324.776,323.899,344.378,24.659,22.174,24.659 +4302,135.660,215.115,421.322,330.400,561.570,220.965,428.307,50.057,9.964,50.057,326.640,323.186,344.861,24.185,22.653,24.185 +4303,135.691,216.329,420.037,328.326,562.733,221.889,426.986,51.340,4.456,51.340,327.184,322.283,344.983,24.207,22.516,24.207 +4304,135.721,217.887,418.465,326.509,564.305,223.483,425.841,52.815,178.409,52.815,326.643,321.376,345.161,23.873,23.519,23.873 +4305,135.751,219.287,418.022,324.708,565.162,224.614,425.291,53.765,172.875,53.765,325.947,321.870,343.970,23.699,24.311,23.699 +4306,135.781,220.317,416.981,323.118,565.997,225.402,424.201,54.846,166.651,54.846,326.731,321.348,344.393,23.757,24.687,23.757 +4307,135.812,220.317,416.981,323.118,565.997,225.402,424.201,54.846,166.651,54.846,326.731,321.348,344.393,23.757,24.687,23.757 +4308,135.843,221.009,416.150,321.895,566.704,226.321,423.876,55.491,160.427,55.491,324.930,320.855,343.683,23.434,25.251,23.434 +4309,135.874,221.202,415.700,320.562,567.129,226.424,423.459,56.056,154.250,56.056,324.800,320.255,343.503,22.495,25.304,22.495 +4310,135.905,221.975,415.191,319.761,567.414,227.099,422.901,56.394,147.724,56.394,324.779,320.351,343.293,23.225,25.187,23.225 +4311,135.936,221.618,415.454,319.085,567.732,226.679,423.127,56.592,141.340,56.592,324.798,320.625,343.181,21.882,24.988,21.882 +4312,135.967,222.125,415.107,318.617,568.085,227.212,422.789,56.489,134.421,56.489,324.791,320.396,343.219,23.143,24.455,23.143 +4313,135.999,222.047,415.312,318.727,567.893,227.119,422.948,56.407,128.157,56.407,324.511,320.986,342.846,23.275,24.264,23.275 +4314,136.030,221.356,415.401,318.832,567.811,226.561,423.123,56.017,121.329,56.017,324.477,321.550,343.102,22.917,23.509,22.917 +4315,136.063,220.550,415.876,319.677,568.041,226.016,423.839,55.528,114.692,55.528,324.469,321.916,343.786,22.849,23.591,22.849 +4316,136.095,219.689,416.047,320.093,567.844,225.357,424.088,54.819,108.020,54.819,324.484,323.518,344.159,23.153,21.986,23.153 +4317,136.126,218.762,416.894,321.560,566.905,224.661,424.988,53.915,101.129,53.915,323.490,322.813,343.522,23.628,21.265,23.628 +4318,136.156,216.842,418.062,322.702,565.976,222.742,425.778,52.595,94.574,52.595,324.752,323.048,344.177,22.849,19.657,22.849 +4319,136.187,215.469,418.440,324.396,564.985,221.915,426.531,51.459,87.839,51.459,323.602,322.601,344.293,23.889,18.968,23.889 +4320,136.217,213.047,419.169,326.942,563.700,220.432,427.933,49.879,81.203,49.879,321.985,323.882,344.908,24.083,18.871,24.083 +4321,136.248,213.047,419.169,326.942,563.700,220.432,427.933,49.879,81.203,49.879,321.985,323.882,344.908,24.083,18.871,24.083 +4322,136.277,211.117,420.767,329.578,561.842,219.179,429.785,48.205,74.707,48.205,319.869,324.162,344.061,24.298,18.968,24.298 +4323,136.309,208.766,422.387,332.397,559.741,217.552,431.604,46.370,68.199,46.370,318.513,324.410,343.980,24.657,18.755,24.657 +4324,136.340,204.567,424.710,335.651,556.918,214.545,434.101,43.264,61.621,43.264,317.324,324.492,344.728,24.759,18.941,24.759 +4325,136.370,199.547,428.102,338.540,554.081,210.987,438.156,41.309,55.187,41.309,314.215,324.829,344.675,19.007,18.911,19.007 +4326,136.402,194.740,429.246,341.748,550.662,208.559,440.489,39.130,48.662,39.130,310.061,325.390,345.690,18.486,19.273,18.486 +4327,136.434,186.633,429.408,345.114,546.375,205.904,443.532,36.238,42.553,36.238,298.369,325.262,346.155,18.205,18.585,18.205 +4328,136.466,168.559,424.273,348.520,541.341,203.442,446.845,32.905,36.158,32.905,263.181,325.627,346.278,17.829,18.259,17.829 +4329,136.496,127.413,409.191,352.082,535.857,201.302,450.569,29.249,29.689,29.249,177.084,324.974,346.456,17.660,19.741,17.660 +4330,136.528,120.590,417.662,355.211,529.814,198.836,454.922,25.463,23.508,25.463,173.435,324.324,346.766,17.541,20.158,17.541 +4331,136.559,141.087,438.062,357.877,523.390,196.716,459.695,21.251,17.491,21.251,227.202,323.919,346.577,17.656,19.548,17.656 +4332,136.590,149.253,451.461,360.366,516.156,194.455,465.183,16.887,11.535,16.887,252.651,323.995,347.128,17.651,19.396,17.651 +4333,136.620,149.014,461.757,362.189,508.087,192.677,471.161,12.155,5.646,12.155,257.645,323.586,346.974,17.657,19.517,17.657 +4334,136.650,147.086,472.338,363.493,499.247,191.161,477.810,7.076,179.772,7.076,258.492,323.029,347.320,17.500,18.777,17.500 +4335,136.681,141.449,483.595,363.996,490.465,190.000,485.161,1.848,173.884,1.848,250.998,322.334,348.153,17.410,19.957,17.410 +4336,136.711,141.449,483.595,363.996,490.465,190.000,485.161,1.848,173.884,1.848,250.998,322.334,348.153,17.410,19.957,17.410 +4337,136.739,140.124,496.302,363.846,480.755,189.854,492.872,176.055,168.296,176.055,249.132,322.616,348.827,17.338,19.939,17.338 +4338,136.770,134.041,511.028,362.518,470.557,190.295,500.983,169.875,162.646,169.875,235.489,321.481,349.778,17.227,20.223,17.227 +4339,136.802,126.714,528.915,359.797,460.012,191.798,509.666,163.523,157.363,163.523,214.626,321.308,350.366,17.180,19.763,17.180 +4340,136.834,119.198,550.629,355.770,449.510,194.199,518.486,156.801,152.049,156.801,188.162,320.295,351.358,17.332,19.362,17.332 +4341,136.865,128.899,567.739,350.631,439.173,198.051,527.631,149.886,146.768,149.886,192.850,319.240,352.734,17.266,18.748,17.266 +4342,136.897,139.737,584.848,343.866,428.961,203.194,536.322,142.595,141.537,142.595,194.150,318.149,353.921,17.382,18.609,17.382 +4343,136.929,154.250,600.250,335.452,419.523,209.732,544.768,135.000,136.370,135.000,197.990,317.031,354.917,17.678,18.616,17.678 +4344,136.959,205.627,569.265,324.969,411.147,217.943,553.430,127.875,131.458,127.875,315.916,316.165,356.038,19.208,18.202,19.208 +4345,136.989,220.685,571.677,313.678,404.030,227.192,560.289,119.745,126.254,119.745,330.925,315.573,357.158,19.225,19.623,19.225 +4346,137.019,233.726,575.015,301.279,398.757,237.296,565.940,111.473,121.329,111.473,338.497,314.234,358.002,18.722,18.570,18.722 +4347,137.049,246.278,579.004,288.400,395.200,248.192,570.433,102.585,116.565,102.585,342.004,313.049,359.568,20.609,18.783,20.609 +4348,137.081,246.278,579.004,288.400,395.200,248.192,570.433,102.585,116.565,102.585,342.004,313.049,359.568,20.609,18.783,20.609 +4349,137.111,258.553,581.685,276.417,393.997,259.142,573.352,94.046,112.420,94.046,343.547,311.998,360.254,22.510,19.400,22.510 +4350,137.142,275.178,582.187,261.143,393.344,274.674,573.251,86.772,106.771,86.772,342.865,311.110,360.766,23.245,20.225,23.245 +4351,137.173,286.750,579.896,247.815,395.909,285.082,572.528,77.242,102.707,77.242,345.868,309.465,360.977,22.340,19.434,22.340 +4352,137.204,301.975,574.435,232.698,400.088,299.455,567.854,69.044,97.176,69.044,346.997,309.349,361.091,21.459,20.272,21.459 +4353,137.235,315.248,567.569,219.712,406.560,311.925,561.800,60.058,92.822,60.058,347.777,307.859,361.093,21.920,18.541,21.920 +4354,137.265,326.746,559.009,208.502,414.576,322.904,554.178,51.503,88.264,51.503,348.596,307.404,360.941,23.268,18.476,23.268 +4355,137.296,336.969,549.442,197.894,424.073,332.285,545.026,43.315,83.148,43.315,348.640,307.990,361.514,24.842,18.553,24.842 +4356,137.328,344.751,538.140,190.415,434.320,340.124,534.912,34.902,78.845,34.902,349.393,307.115,360.676,25.386,18.544,25.386 +4357,137.359,350.850,526.792,184.396,445.330,346.118,524.368,27.117,74.373,27.117,349.309,307.686,359.943,25.698,19.133,25.698 +4358,137.389,353.982,518.351,179.724,456.448,349.052,516.590,19.654,68.879,19.654,348.915,307.781,359.384,19.642,21.273,19.642 +4359,137.420,356.266,507.792,176.479,467.784,351.656,506.764,12.567,64.167,12.567,349.479,307.766,358.924,19.521,20.966,19.521 +4360,137.450,357.888,496.647,174.478,479.013,352.918,496.163,5.556,59.398,5.556,348.538,308.174,358.525,19.077,20.182,19.077 +4361,137.480,357.888,496.647,174.478,479.013,352.918,496.163,5.556,59.398,5.556,348.538,308.174,358.525,19.077,20.182,19.077 +4362,137.508,358.551,486.170,174.148,490.019,353.102,486.257,179.085,54.300,179.085,347.084,309.682,357.982,19.103,20.837,19.103 +4363,137.540,357.038,476.719,174.205,499.676,351.863,477.379,172.739,49.335,172.739,347.668,308.903,358.102,19.460,20.587,19.460 +4364,137.571,354.924,466.803,175.702,508.724,349.881,467.988,166.772,44.226,166.772,347.396,309.006,357.757,21.990,21.001,21.990 +4365,137.602,352.397,459.138,177.917,516.889,347.429,460.828,161.218,39.539,161.218,346.575,309.591,357.071,20.487,20.204,20.487 +4366,137.632,349.654,451.463,180.332,525.805,343.940,454.016,155.924,34.841,155.924,344.806,309.838,357.322,21.193,23.118,21.193 +4367,137.663,346.323,445.388,183.849,532.629,340.823,448.436,151.011,29.638,151.011,343.644,309.962,356.221,20.402,23.542,20.402 +4368,137.695,343.039,439.077,187.546,538.678,337.401,442.792,146.611,24.249,146.611,342.276,310.601,355.781,19.716,23.837,19.716 +4369,137.730,338.801,433.683,191.447,544.153,333.425,437.838,142.298,18.925,142.298,341.115,310.946,354.702,20.285,23.514,20.285 +4370,137.763,335.021,428.707,195.337,549.615,329.474,433.650,138.293,13.658,138.293,339.729,311.406,354.589,20.416,22.649,20.416 +4371,137.798,331.500,425.000,199.304,553.812,326.123,430.377,135.000,7.921,135.000,338.704,311.676,353.912,19.092,22.471,19.092 +4372,137.833,328.290,420.424,203.112,557.648,322.195,427.281,131.634,2.726,131.634,334.756,312.503,353.104,19.433,21.452,19.433 +4373,137.866,324.171,417.414,206.943,560.992,318.671,424.345,128.437,176.785,128.437,335.285,312.743,352.981,19.334,21.427,19.334 +4374,137.897,320.906,413.570,210.347,563.796,315.008,421.849,125.470,171.170,125.470,332.345,313.694,352.674,18.996,20.809,18.996 +4375,137.929,317.558,410.966,213.727,566.367,311.716,420.053,122.735,165.353,122.735,330.523,314.141,352.129,19.287,20.625,19.287 +4376,137.960,314.359,407.364,217.105,568.784,308.091,418.203,120.036,159.647,120.036,326.761,314.947,351.803,19.021,20.747,19.021 +4377,137.991,311.948,405.098,220.030,570.579,305.662,416.930,117.979,152.956,117.979,324.931,315.331,351.729,19.153,20.280,19.153 +4378,138.021,309.418,401.921,222.946,572.619,302.699,415.918,115.641,147.848,115.641,320.509,316.424,351.562,19.653,19.956,19.653 +4379,138.052,307.280,398.880,225.476,574.206,300.129,415.154,113.720,141.633,113.720,315.743,317.179,351.293,19.670,19.536,19.670 +4380,138.083,305.137,394.763,228.229,575.699,297.367,414.055,111.938,135.481,111.938,309.942,317.569,351.538,18.706,19.192,18.706 +4381,138.114,305.137,394.763,228.229,575.699,297.367,414.055,111.938,135.481,111.938,309.942,317.569,351.538,18.706,19.192,18.706 +4382,138.142,303.737,390.108,230.826,577.041,294.937,413.289,110.788,129.245,110.788,302.102,318.874,351.691,17.538,19.263,17.538 +4383,138.174,303.156,382.428,233.292,578.515,292.457,413.041,109.265,123.048,109.265,286.601,319.571,351.458,17.148,19.127,17.148 +4384,138.205,305.490,365.438,235.651,579.798,290.629,412.808,107.418,116.934,107.418,252.288,320.247,351.581,17.025,19.254,17.025 +4385,138.240,311.236,333.925,238.195,580.952,288.778,412.527,105.945,110.717,105.945,188.184,321.157,351.681,16.895,19.300,16.895 +4386,138.271,307.279,334.773,240.261,581.566,287.158,412.160,104.574,104.149,104.574,191.590,321.610,351.511,16.995,18.611,16.995 +4387,138.302,287.797,403.898,241.935,583.130,285.777,412.520,103.191,97.897,103.191,334.513,323.285,352.225,17.175,19.737,17.175 +4388,138.334,285.604,405.848,244.866,583.551,284.284,412.030,102.053,91.560,102.053,339.298,323.261,351.941,17.836,18.892,17.836 +4389,138.364,283.622,405.839,248.002,583.962,282.517,411.484,101.079,85.717,101.079,340.286,323.416,351.792,18.591,21.613,18.591 +4390,138.395,282.287,406.153,249.727,584.234,281.354,411.346,100.192,79.587,100.192,340.961,323.246,351.513,18.534,21.041,18.534 +4391,138.427,280.885,405.906,251.093,584.623,280.011,411.223,99.335,73.217,99.335,340.810,323.269,351.588,19.046,20.394,19.046 +4392,138.458,279.839,405.795,252.353,584.192,279.074,410.854,98.598,66.448,98.598,340.538,322.089,350.770,18.810,20.520,18.810 +4393,138.489,278.623,406.029,254.003,584.299,277.989,410.578,97.938,60.461,97.938,341.552,321.502,350.737,19.047,19.779,19.047 +4394,138.519,278.392,405.591,254.946,584.184,277.737,410.561,97.505,54.713,97.505,340.198,321.071,350.226,18.576,20.570,18.576 +4395,138.550,277.108,405.534,254.876,585.110,276.454,410.997,96.831,48.366,96.831,339.883,320.556,350.887,18.503,23.751,18.503 +4396,138.581,277.108,405.534,254.876,585.110,276.454,410.997,96.831,48.366,96.831,339.883,320.556,350.887,18.503,23.751,18.503 +4397,138.610,276.397,404.986,256.062,584.872,275.755,410.737,96.371,41.820,96.371,338.914,320.140,350.488,18.366,24.358,18.366 +4398,138.642,275.752,404.510,256.735,584.489,275.133,410.514,95.886,36.027,95.886,337.818,320.259,349.889,18.192,24.483,18.192 +4399,138.673,275.222,404.538,257.588,584.061,274.662,410.324,95.528,30.292,95.528,337.520,319.962,349.147,18.013,24.818,18.013 +4400,138.704,274.721,404.066,258.312,583.424,274.183,409.987,95.194,23.887,95.194,336.431,319.526,348.323,17.926,26.281,17.926 +4401,138.735,274.268,403.271,259.273,583.687,273.720,409.809,94.790,18.311,94.790,335.834,318.447,348.955,17.948,25.421,17.948 +4402,138.766,273.928,402.415,259.486,583.565,273.345,409.790,94.514,12.588,94.514,333.856,317.690,348.652,18.075,25.148,18.075 +4403,138.798,273.623,401.583,259.693,583.333,273.026,409.643,94.236,6.605,94.236,332.238,317.510,348.401,18.099,24.719,18.099 +4404,138.830,273.320,401.523,260.000,583.000,272.728,409.802,94.086,0.000,94.086,330.729,316.000,347.329,17.954,24.000,17.954 +4405,138.862,273.014,401.172,259.864,583.351,272.432,409.675,93.912,175.280,93.912,331.210,317.232,348.256,18.112,25.071,18.112 +4406,138.894,272.670,400.608,259.952,583.236,272.095,409.529,93.691,169.695,93.691,330.378,317.164,348.257,18.285,25.133,18.285 +4407,138.925,272.430,401.027,259.831,583.135,271.882,409.911,93.532,164.219,93.532,329.472,317.165,347.274,18.335,24.853,18.335 +4408,138.955,272.650,400.603,259.707,583.017,272.098,409.430,93.576,158.199,93.576,330.355,317.353,348.044,18.090,24.326,18.090 +4409,138.985,272.648,400.134,259.400,582.800,272.071,409.361,93.576,153.435,93.576,329.295,317.522,347.784,18.152,23.255,18.152 +4410,139.015,272.538,399.624,259.254,582.913,271.945,409.415,93.468,148.355,93.468,328.276,317.868,347.896,18.209,23.065,18.209 +4411,139.046,272.538,399.624,259.254,582.913,271.945,409.415,93.468,148.355,93.468,328.276,317.868,347.896,18.209,23.065,18.209 +4412,139.076,272.676,398.133,258.963,582.950,271.983,409.445,93.504,143.366,93.504,325.289,318.392,347.954,18.313,22.181,18.313 +4413,139.108,272.706,397.135,258.759,582.851,271.955,409.399,93.504,138.270,93.504,323.293,318.890,347.867,18.252,21.280,18.252 +4414,139.139,272.749,396.136,258.144,582.702,271.949,409.343,93.468,133.008,93.468,321.289,319.179,347.752,18.330,20.856,18.330 +4415,139.170,272.778,395.168,258.018,583.014,271.907,409.531,93.468,129.472,93.468,319.232,319.852,348.011,18.390,19.571,18.390 +4416,139.202,272.688,394.628,258.101,583.129,271.816,409.580,93.338,125.838,93.338,318.151,320.038,348.106,18.219,19.321,18.219 +4417,139.232,272.522,393.612,258.302,583.424,271.627,409.711,93.180,122.367,93.180,316.124,320.356,348.370,18.305,19.546,18.305 +4418,139.264,272.275,392.124,258.458,583.691,271.308,409.850,93.122,119.701,93.122,313.062,320.753,348.566,18.282,19.831,18.282 +4419,139.295,271.812,391.587,259.072,583.775,270.934,409.882,92.748,117.795,92.748,311.889,320.809,348.522,18.155,19.571,18.155 +4420,139.327,271.271,391.093,259.800,583.900,270.498,409.954,92.347,116.565,92.347,310.723,321.099,348.476,18.173,19.230,18.173 +4421,139.358,270.228,391.057,260.311,584.151,269.604,410.074,91.878,115.974,91.878,310.522,321.147,348.577,17.958,19.547,17.958 +4422,139.388,269.349,391.544,261.329,584.161,268.912,410.075,91.353,116.095,91.353,311.362,321.140,348.434,17.901,19.537,17.901 +4423,139.419,268.210,392.518,262.584,584.035,268.026,410.015,90.603,116.922,90.603,313.141,320.699,348.136,17.694,19.811,17.694 +4424,139.450,266.736,393.480,263.646,584.003,266.826,409.985,89.689,118.275,89.689,314.984,320.963,347.996,17.935,20.102,17.935 +4425,139.480,266.736,393.480,263.646,584.003,266.826,409.985,89.689,118.275,89.689,314.984,320.963,347.996,17.935,20.102,17.935 +4426,139.508,265.546,394.939,265.054,583.654,265.800,409.780,89.021,120.336,89.021,317.988,320.683,347.672,18.237,19.908,18.237 +4427,139.545,264.213,396.393,267.091,583.714,264.676,410.286,88.091,123.179,88.091,319.023,320.624,346.824,18.456,19.991,18.456 +4428,139.588,260.965,398.255,270.758,582.991,261.784,409.825,85.950,129.094,85.950,323.535,319.856,346.734,18.449,21.731,18.449 +4429,139.620,259.666,399.714,273.183,583.146,260.629,410.389,84.844,133.403,84.844,324.936,319.843,346.372,19.185,21.836,19.185 +4430,139.652,257.598,399.878,275.346,582.769,258.764,410.375,83.660,136.848,83.660,325.221,319.264,346.343,18.663,22.844,18.663 +4431,139.684,255.821,400.625,277.757,582.565,257.139,410.549,82.432,141.230,82.432,326.446,319.069,346.467,18.696,23.451,18.696 +4432,139.720,254.135,401.512,280.178,582.169,255.588,410.851,81.158,144.782,81.158,327.220,319.098,346.122,18.950,23.740,18.950 +4433,139.751,252.325,401.990,282.552,581.886,253.976,411.136,79.765,149.556,79.765,327.633,318.662,346.221,19.395,24.382,19.395 +4434,139.782,250.558,402.783,285.100,581.200,252.354,411.538,78.408,153.435,78.408,327.690,318.416,345.564,19.667,24.597,19.667 +4435,139.813,250.558,402.783,285.100,581.200,252.354,411.538,78.408,153.435,78.408,327.690,318.416,345.564,19.667,24.597,19.667 +4436,139.842,248.233,403.601,287.640,580.853,250.216,412.221,77.047,158.311,77.047,327.772,318.474,345.461,19.111,25.057,19.111 +4437,139.874,246.500,404.000,290.420,580.242,248.693,412.496,75.530,162.851,75.530,328.152,318.862,345.702,20.209,25.314,20.209 +4438,139.904,244.442,404.873,293.352,579.578,246.811,413.106,73.946,167.433,73.946,328.565,319.109,345.700,20.499,25.402,20.499 +4439,139.936,241.904,406.146,296.012,579.086,244.428,414.068,72.324,171.964,72.324,329.152,319.048,345.781,19.956,25.570,19.956 +4440,139.966,240.283,407.251,299.433,578.392,242.967,414.907,70.681,176.560,70.681,329.695,319.685,345.920,21.358,25.119,21.358 +4441,139.997,237.946,408.293,302.454,577.510,240.852,415.821,68.895,1.302,68.895,329.911,319.304,346.050,21.817,25.084,21.817 +4442,140.030,235.355,409.989,305.837,576.013,238.414,417.155,66.879,6.147,66.879,329.565,320.562,345.148,21.597,24.443,21.597 +4443,140.061,232.559,411.152,308.923,574.988,235.922,418.276,64.730,10.928,64.730,330.000,321.042,345.756,21.394,24.318,21.394 +4444,140.093,230.019,413.011,312.542,573.373,233.537,419.768,62.501,15.848,62.501,330.226,322.118,345.461,21.702,23.758,21.702 +4445,140.124,227.512,414.279,316.255,571.310,231.306,420.908,60.215,20.610,60.215,330.187,323.032,345.462,23.096,23.472,23.096 +4446,140.154,224.979,416.968,319.619,568.895,228.586,422.635,57.529,25.498,57.529,331.099,324.687,344.535,23.162,22.385,23.162 +4447,140.186,221.906,419.270,323.607,566.472,225.746,424.720,54.834,30.579,54.834,331.155,325.313,344.487,23.763,20.467,23.763 +4448,140.216,217.464,420.028,327.692,563.730,222.836,426.927,52.097,35.426,52.097,327.235,325.602,344.722,24.483,19.994,24.483 +4449,140.247,217.464,420.028,327.692,563.730,222.836,426.927,52.097,35.426,52.097,327.235,325.602,344.722,24.483,19.994,24.483 +4450,140.276,207.784,419.093,330.789,561.245,218.248,430.367,47.134,40.701,47.134,314.212,326.262,344.975,22.362,19.631,22.362 +4451,140.307,153.500,373.000,335.067,558.410,214.869,434.369,45.000,45.690,45.000,171.827,324.700,345.406,17.678,18.741,17.678 +4452,140.338,196.164,424.496,338.613,554.218,211.196,438.071,42.083,51.024,42.083,304.310,325.332,344.817,18.509,19.534,18.509 +4453,140.368,199.709,433.119,342.534,549.477,209.058,440.224,37.235,56.418,37.235,321.267,324.779,344.752,24.808,19.632,24.808 +4454,140.399,198.154,437.769,345.838,544.274,206.007,443.005,33.690,61.514,33.690,326.164,324.497,345.041,25.516,19.078,25.516 +4455,140.431,195.496,442.896,349.698,537.779,202.813,447.087,29.805,66.985,29.805,328.202,323.681,345.066,25.796,20.632,25.796 +4456,140.462,192.697,449.134,353.432,530.731,199.543,452.352,25.176,72.451,25.176,330.098,322.864,345.226,25.974,21.897,25.974 +4457,140.494,188.241,458.773,356.494,522.940,195.215,461.342,20.225,77.638,20.225,330.396,321.371,345.259,19.360,22.882,19.360 +4458,140.525,185.275,466.229,359.032,513.936,192.624,468.193,14.962,83.157,14.962,329.939,320.143,345.153,19.322,23.988,19.322 +4459,140.556,182.634,474.661,360.945,504.974,190.562,475.930,9.090,88.452,9.090,329.608,318.370,345.665,18.722,24.261,18.722 +4460,140.586,181.101,483.584,362.083,494.615,189.503,484.027,3.013,94.160,3.013,328.966,318.268,345.794,19.026,24.553,19.026 +4461,140.616,180.074,492.903,362.259,483.722,189.053,492.426,176.961,99.620,176.961,328.864,317.305,346.847,18.443,24.916,18.443 +4462,140.646,180.074,492.903,362.259,483.722,189.053,492.426,176.961,99.620,176.961,328.864,317.305,346.847,18.443,24.916,18.443 +4463,140.675,180.459,503.678,361.403,472.431,189.765,502.083,170.272,105.306,170.272,329.479,316.883,348.362,19.684,24.783,19.684 +4464,140.705,181.412,514.492,358.340,460.693,191.357,511.461,163.055,110.647,163.055,328.265,316.372,349.060,20.253,22.987,20.253 +4465,140.737,183.141,526.685,353.600,448.800,194.557,521.600,155.993,116.565,155.993,324.813,316.627,349.807,21.310,20.572,21.310 +4466,140.768,183.508,540.813,347.835,438.031,199.054,531.391,148.782,121.884,148.782,314.894,316.944,351.251,21.872,19.757,21.872 +4467,140.800,175.975,560.969,341.135,427.377,203.894,538.474,141.141,125.767,141.141,281.433,315.980,353.142,17.576,20.436,17.576 +4468,140.831,156.560,604.057,334.226,418.769,210.925,546.706,133.468,130.210,133.468,197.307,316.103,355.353,17.418,18.974,17.418 +4469,140.864,211.849,565.925,322.666,409.610,219.823,555.030,126.203,132.486,126.203,329.171,315.500,356.175,19.400,18.098,19.400 +4470,140.896,225.905,568.932,313.251,404.368,229.550,561.904,117.408,136.444,117.408,340.931,315.590,356.765,19.629,19.769,19.629 +4471,140.929,238.148,573.534,298.896,397.624,240.356,567.125,109.011,139.464,109.011,345.092,315.094,358.650,19.092,18.916,19.092 +4472,140.960,249.963,577.876,285.900,394.941,251.079,571.552,100.008,144.197,100.008,347.107,315.172,359.950,22.360,16.806,22.360 +4473,140.990,263.223,579.495,271.066,393.718,263.324,573.372,90.945,148.173,90.945,347.266,314.191,359.515,23.145,16.524,23.145 +4474,141.020,276.854,579.452,255.901,394.766,276.125,574.063,82.293,152.987,82.293,349.900,313.983,360.778,24.610,17.067,24.610 +4475,141.050,293.058,575.958,240.984,399.152,291.730,571.421,73.681,157.203,73.681,349.719,312.920,359.175,21.278,15.685,21.278 +4476,141.081,293.058,575.958,240.984,399.152,291.730,571.421,73.681,157.203,73.681,349.719,312.920,359.175,21.278,15.685,21.278 +4477,141.110,308.393,569.445,226.282,404.864,306.549,565.587,64.455,161.645,64.455,350.695,311.801,359.247,22.059,15.931,22.059 +4478,141.142,320.775,561.370,213.193,412.712,318.637,558.263,55.462,165.665,55.462,351.818,310.940,359.360,23.655,16.869,23.655 +4479,141.173,331.603,551.746,201.682,421.787,329.005,549.003,46.556,169.796,46.556,352.278,310.372,359.835,24.731,17.184,24.731 +4480,141.203,341.150,541.635,191.949,431.481,337.338,538.686,37.725,174.428,37.725,351.543,309.263,361.184,24.818,17.211,24.818 +4481,141.234,347.805,530.157,184.511,443.831,343.975,527.991,29.495,178.144,29.495,351.668,309.065,360.468,24.327,17.537,24.327 +4482,141.265,354.525,518.598,178.690,453.134,348.210,516.107,21.527,3.793,21.527,348.026,307.915,361.604,25.738,20.375,25.738 +4483,141.297,361.625,510.940,175.743,463.511,350.397,508.199,13.717,6.963,13.717,337.424,309.464,360.539,19.215,21.535,19.215 +4484,141.328,404.608,502.836,172.829,477.902,352.067,496.655,6.710,10.758,6.710,254.597,307.892,360.403,17.760,19.580,17.760 +4485,141.359,370.563,486.578,172.865,487.818,352.473,486.828,179.210,15.208,179.210,323.024,307.669,359.209,18.205,20.087,18.205 +4486,141.389,362.521,475.370,174.094,498.340,351.901,476.799,172.337,19.093,172.337,336.751,307.738,358.183,19.461,20.499,19.461 +4487,141.420,358.942,465.248,175.703,509.018,349.747,467.574,165.804,22.791,165.804,338.818,308.551,357.787,20.347,20.871,20.347 +4488,141.451,353.799,456.313,178.466,519.086,346.574,458.971,159.808,26.996,159.808,341.656,308.602,357.053,20.206,22.730,20.206 +4489,141.481,353.799,456.313,178.466,519.086,346.574,458.971,159.808,26.996,159.808,341.656,308.602,357.053,20.206,22.730,20.206 +4490,141.509,348.570,449.701,181.990,528.282,343.302,452.286,153.869,29.954,153.869,344.853,309.829,356.590,20.260,23.614,20.260 +4491,141.541,343.958,442.887,185.837,536.781,339.033,445.896,148.570,33.147,148.570,344.678,310.576,356.223,20.621,23.939,20.621 +4492,141.572,338.877,436.046,190.108,544.211,334.205,439.489,143.606,36.384,143.606,344.648,311.260,356.254,19.277,24.533,19.277 +4493,141.603,333.931,430.422,195.121,550.651,329.491,434.316,138.752,39.742,138.752,343.646,312.410,355.459,19.375,24.502,19.375 +4494,141.633,328.841,426.344,199.997,556.503,324.764,430.495,134.484,43.221,134.484,343.016,313.383,354.652,19.187,24.706,19.187 +4495,141.664,323.346,421.954,205.213,561.777,319.671,426.359,129.833,46.042,129.833,343.138,314.186,354.611,19.853,24.732,19.853 +4496,141.696,318.229,418.581,210.418,566.206,314.938,423.130,125.882,49.173,125.882,343.139,315.629,354.369,19.463,24.650,19.463 +4497,141.727,313.196,415.548,217.394,568.655,310.781,419.380,122.217,52.381,122.217,343.098,316.376,352.157,18.717,19.955,18.717 +4498,141.758,308.215,413.213,222.388,572.183,305.934,417.406,118.543,55.105,118.543,342.223,317.618,351.770,19.282,20.719,19.282 +4499,141.789,303.510,411.335,227.292,575.067,301.564,415.495,115.071,57.995,115.071,342.834,318.423,352.020,19.053,20.776,19.053 +4500,141.819,298.849,409.835,232.105,577.599,297.093,414.214,111.849,60.684,111.849,342.234,319.161,351.668,19.155,20.403,19.155 +4501,141.849,294.520,408.815,236.755,579.620,293.082,413.039,108.800,63.260,108.800,342.768,320.206,351.691,18.913,20.506,18.913 +4502,141.881,294.520,408.815,236.755,579.620,293.082,413.039,108.800,63.260,108.800,342.768,320.206,351.691,18.913,20.506,18.913 +4503,141.910,290.434,407.981,241.034,581.528,289.139,412.513,105.945,65.462,105.945,342.028,320.606,351.454,18.956,20.824,18.956 +4504,141.941,286.133,407.376,244.991,583.092,285.043,412.095,103.010,67.647,103.010,341.561,321.409,351.249,18.973,21.125,18.973 +4505,141.972,282.741,406.397,249.075,584.534,281.756,411.715,100.491,69.444,100.491,340.944,322.682,351.762,18.937,21.536,18.937 +4506,142.003,278.763,406.047,253.853,585.179,278.065,411.039,97.970,70.769,97.970,341.549,323.509,351.630,18.916,19.894,18.916 +4507,142.034,275.582,404.998,257.700,585.600,274.964,411.056,95.826,71.565,95.826,338.609,323.501,350.789,18.130,19.922,18.130 +4508,142.065,272.408,405.172,261.018,585.994,272.041,410.870,93.691,71.792,93.691,339.520,323.825,350.941,18.349,20.886,18.349 +4509,142.097,269.677,403.849,264.392,586.037,269.455,410.949,91.790,70.974,91.790,336.117,324.165,350.323,18.147,20.407,18.147 +4510,142.129,267.000,404.500,267.460,586.458,267.000,411.229,90.000,69.647,90.000,337.000,324.670,350.458,18.000,20.596,18.000 +4511,142.161,264.862,405.617,270.335,586.362,265.033,411.685,88.386,67.590,88.386,337.373,324.779,349.514,18.415,20.853,18.415 +4512,142.191,262.888,405.198,272.333,585.609,263.220,411.274,86.864,64.851,86.864,336.974,323.502,349.145,18.657,21.062,18.657 +4513,142.223,260.724,405.297,274.819,585.554,261.232,411.751,85.498,61.410,85.498,335.717,323.224,348.665,18.572,21.385,18.572 +4514,142.254,258.882,405.364,277.420,585.052,259.500,411.497,84.249,57.221,84.249,336.628,323.433,348.954,18.518,21.083,18.518 +4515,142.285,257.337,405.888,279.627,584.747,258.068,411.842,82.999,52.409,82.999,336.490,323.270,348.487,18.702,20.571,18.702 +4516,142.316,255.880,406.160,281.719,583.867,256.648,411.535,81.870,47.083,81.870,337.431,322.163,348.291,18.950,20.814,18.950 +4517,142.348,254.409,406.749,283.375,583.899,255.282,412.097,80.735,41.748,80.735,337.329,322.459,348.167,18.990,22.230,18.990 +4518,142.380,254.409,406.749,283.375,583.899,255.282,412.097,80.735,41.748,80.735,337.329,322.459,348.167,18.990,22.230,18.990 +4519,142.409,252.841,406.765,285.030,583.267,253.835,412.167,79.574,35.882,79.574,336.857,322.831,347.841,19.253,23.290,19.253 +4520,142.441,251.284,406.864,286.837,582.786,252.437,412.492,78.419,29.638,78.419,335.977,322.235,347.467,19.513,24.277,19.513 +4521,142.472,249.612,406.879,288.791,582.318,250.942,412.761,77.260,23.106,77.260,335.396,321.567,347.457,19.482,25.251,19.482 +4522,142.503,247.895,406.019,290.973,581.408,249.599,412.929,76.144,16.543,76.144,332.734,320.697,346.968,20.072,25.057,20.072 +4523,142.535,246.041,405.939,292.924,580.940,248.076,413.439,74.814,9.752,74.814,331.257,320.072,346.800,20.239,25.101,20.239 +4524,142.568,244.147,406.198,294.664,579.836,246.348,413.617,73.474,2.961,73.474,330.717,319.504,346.193,20.586,24.674,20.586 +4525,142.600,242.021,406.130,296.984,578.770,244.583,414.018,72.007,176.088,72.007,329.176,319.442,345.764,20.802,24.677,20.802 +4526,142.631,239.938,406.522,299.113,578.099,242.839,414.774,70.633,168.811,70.633,327.993,319.470,345.488,21.401,25.269,21.401 +4527,142.663,237.746,407.212,301.350,577.050,240.981,415.600,68.908,161.565,68.908,326.737,319.390,344.717,21.446,24.982,21.446 +4528,142.694,235.341,407.730,303.676,575.865,238.887,416.203,67.292,154.312,67.292,326.223,319.754,344.593,22.004,24.754,22.004 +4529,142.725,233.027,408.934,306.280,574.661,236.768,417.131,65.469,146.952,65.469,326.321,319.783,344.343,22.340,24.742,22.340 +4530,142.755,230.229,410.107,308.905,573.388,234.341,418.233,63.159,139.525,63.159,326.000,319.975,344.213,22.199,24.281,22.199 +4531,142.787,227.610,411.460,311.869,571.882,231.926,419.292,61.144,132.138,61.144,326.563,320.343,344.449,22.647,24.153,22.647 +4532,142.817,224.660,412.987,314.790,570.200,229.378,420.798,58.867,124.624,58.867,325.837,320.714,344.088,23.088,23.511,23.088 +4533,142.847,224.660,412.987,314.790,570.200,229.378,420.798,58.867,124.624,58.867,325.837,320.714,344.088,23.088,23.511,23.088 +4534,142.876,221.372,415.093,318.305,568.646,226.788,423.238,56.376,117.004,56.376,323.950,321.145,343.513,22.408,23.080,22.408 +4535,142.907,218.577,417.140,321.579,566.852,224.259,424.879,53.715,109.359,53.715,324.871,323.275,344.073,23.662,22.516,23.662 +4536,142.939,215.463,419.864,325.466,563.702,221.459,427.222,50.826,101.842,50.826,324.020,322.045,343.004,23.917,21.658,23.917 +4537,142.969,212.283,423.061,329.710,560.630,218.505,429.906,47.726,94.362,47.726,324.565,322.200,343.066,24.283,21.488,24.283 +4538,143.000,208.526,425.898,333.180,557.075,215.146,432.420,44.569,86.748,44.569,324.547,322.786,343.134,24.764,19.276,24.764 +4539,143.031,204.193,430.629,337.759,553.164,211.296,436.630,40.192,79.177,40.192,325.020,323.379,343.618,25.366,19.428,25.366 +4540,143.064,201.160,434.620,342.242,548.413,208.377,440.032,36.870,71.828,36.870,326.200,323.514,344.242,24.400,19.452,24.400 +4541,143.096,198.379,438.827,346.415,543.019,205.497,443.498,33.275,64.423,33.275,327.809,323.511,344.835,25.264,19.112,25.264 +4542,143.128,194.463,444.615,350.654,536.724,201.887,448.642,28.474,57.051,28.474,328.639,324.224,345.531,25.134,19.829,25.134 +4543,143.159,190.225,450.864,354.630,529.689,198.741,454.554,23.429,49.624,23.429,327.262,324.625,345.822,25.997,19.512,25.997 +4544,143.189,186.350,460.020,357.768,521.660,195.002,462.986,18.925,42.436,18.925,327.703,325.154,345.995,19.054,19.210,19.054 +4545,143.220,183.679,466.835,360.532,512.955,192.853,469.152,14.178,35.455,14.178,327.674,324.913,346.600,19.636,20.438,19.636 +4546,143.250,181.889,475.408,363.504,503.042,191.698,476.880,8.531,27.780,8.531,327.734,323.881,347.572,18.641,21.708,18.641 +4547,143.280,180.607,484.742,364.427,493.376,190.696,485.134,2.224,20.786,2.224,327.646,323.605,347.839,18.801,20.160,18.801 +4548,143.311,180.607,484.742,364.427,493.376,190.696,485.134,2.224,20.786,2.224,327.646,323.605,347.839,18.801,20.160,18.801 +4549,143.340,180.258,493.770,364.260,482.941,190.011,493.138,176.292,13.782,176.292,329.540,323.065,349.087,17.925,19.589,17.925 +4550,143.370,181.447,504.387,362.879,472.023,190.713,502.740,169.919,6.746,169.919,330.944,322.483,349.768,18.991,19.830,18.991 +4551,143.401,183.855,514.977,360.003,460.246,192.529,512.211,162.309,0.192,162.309,332.479,322.018,350.689,20.089,18.545,20.089 +4552,143.432,187.712,525.256,355.671,448.968,195.458,521.754,155.669,173.342,155.669,334.941,321.370,351.944,19.309,19.030,19.309 +4553,143.464,193.019,535.918,349.910,437.738,200.291,531.410,148.201,166.709,148.201,335.933,320.709,353.044,20.313,19.480,20.313 +4554,143.497,198.974,545.740,342.145,427.012,205.938,540.069,140.847,160.226,140.847,336.052,319.789,354.014,19.615,19.470,19.615 +4555,143.528,208.152,554.215,332.740,416.988,213.199,548.761,132.780,153.838,132.780,340.953,318.884,355.815,19.532,19.652,19.532 +4556,143.560,217.406,562.748,321.628,408.700,221.719,556.472,124.496,147.494,124.496,341.513,317.676,356.743,19.733,19.499,19.733 +4557,143.590,228.703,569.642,309.481,402.096,231.867,563.124,115.894,141.116,115.894,343.021,316.412,357.512,19.433,18.833,19.433 +4558,143.620,240.860,575.692,296.250,397.250,242.936,568.914,107.030,135.000,107.030,345.326,315.370,359.502,18.692,19.092,18.692 +4559,143.651,253.068,579.035,281.766,393.903,254.052,571.771,97.712,129.130,97.712,345.296,314.084,359.957,22.338,19.209,22.338 +4560,143.683,269.000,580.500,267.121,393.093,269.000,573.047,90.000,123.319,90.000,345.000,312.864,359.907,22.000,18.360,22.000 +4561,143.713,269.000,580.500,267.121,393.093,269.000,573.047,90.000,123.319,90.000,345.000,312.864,359.907,22.000,18.360,22.000 +4562,143.742,281.473,579.838,252.659,394.358,280.308,572.849,80.538,117.350,80.538,347.046,312.193,361.216,22.687,18.469,22.687 +4563,143.773,296.401,576.057,238.007,397.773,294.326,569.494,72.456,111.058,72.456,347.655,310.876,361.421,20.718,18.854,20.718 +4564,143.804,310.177,570.176,224.885,403.516,307.298,564.352,63.693,105.306,63.693,348.410,310.477,361.405,22.179,18.448,22.179 +4565,143.835,322.213,562.458,212.521,410.821,318.581,557.247,55.125,99.019,55.125,348.843,309.538,361.546,23.692,19.094,23.692 +4566,143.866,332.709,553.459,202.341,419.607,328.385,548.850,46.828,93.330,46.828,348.351,308.050,360.990,24.556,18.409,24.556 +4567,143.898,341.455,543.179,193.752,429.552,336.937,539.570,38.621,87.614,38.621,349.514,307.650,361.078,25.141,18.442,25.141 +4568,143.930,348.325,532.293,187.601,440.077,343.699,529.533,30.812,82.235,30.812,348.997,308.283,359.772,25.704,19.096,25.704 +4569,143.960,352.680,521.242,182.410,451.042,348.407,519.396,23.364,76.504,23.364,349.678,307.780,358.986,25.124,19.448,25.124 +4570,143.991,355.427,513.205,178.533,461.786,350.837,511.876,16.150,70.641,16.150,349.317,307.466,358.874,19.278,19.660,19.278 +4571,144.021,358.011,502.515,175.400,472.800,352.581,501.635,9.211,63.435,9.211,348.021,307.683,359.024,19.529,20.572,19.529 +4572,144.052,358.367,492.366,174.019,483.948,353.026,492.118,2.663,57.360,2.663,347.694,309.013,358.386,18.956,20.276,18.956 +4573,144.082,358.367,492.366,174.019,483.948,353.026,492.118,2.663,57.360,2.663,347.694,309.013,358.386,18.956,20.276,18.956 +4574,144.111,358.196,482.195,173.912,494.068,352.579,482.539,176.492,51.310,176.492,346.820,309.536,358.075,19.045,20.551,19.045 +4575,144.142,356.581,472.987,174.368,503.119,350.994,473.918,170.538,44.811,170.538,346.717,308.997,358.046,19.892,21.148,19.892 +4576,144.173,354.273,464.005,176.297,511.156,349.102,465.407,164.823,38.934,164.823,346.796,308.603,357.510,21.854,20.209,21.854 +4577,144.204,351.930,456.986,178.520,519.909,346.474,459.026,159.495,33.163,159.495,345.628,309.294,357.278,21.078,22.801,21.078 +4578,144.235,350.085,449.739,181.331,526.426,343.664,452.769,154.739,27.121,154.739,342.284,309.496,356.484,19.998,23.814,19.998 +4579,144.267,347.263,443.317,184.590,533.260,340.453,447.264,149.901,20.674,149.901,340.201,310.284,355.945,21.040,22.666,21.040 +4580,144.303,344.265,436.876,188.089,539.093,336.913,441.834,146.008,13.761,146.008,337.799,310.676,355.534,19.937,22.102,19.937 +4581,144.336,341.162,431.999,191.243,544.603,333.259,438.124,142.224,7.294,142.224,334.958,310.967,354.955,19.800,20.989,19.800 +4582,144.366,337.791,427.041,194.500,549.000,329.729,434.115,138.731,0.000,138.731,333.384,311.000,354.836,19.297,20.000,19.297 +4583,144.400,334.500,422.000,198.144,552.634,326.128,430.372,135.000,173.962,135.000,330.219,312.641,353.900,19.092,19.535,19.092 +4584,144.432,332.190,418.406,201.469,556.199,323.392,428.065,132.330,167.005,132.330,327.529,313.229,353.660,20.239,19.038,20.239 +4585,144.466,329.186,413.606,204.577,559.536,319.635,425.279,129.289,160.253,129.289,323.373,314.069,353.537,19.490,19.258,19.490 +4586,144.499,327.640,409.223,207.750,562.508,316.869,423.620,126.802,153.315,126.802,317.194,314.850,353.154,20.036,19.254,20.036 +4587,144.534,326.051,402.567,210.503,565.004,313.300,421.390,124.114,146.227,124.114,307.639,315.906,353.109,19.363,18.989,19.363 +4588,144.567,325.352,395.825,213.175,567.548,310.061,419.717,122.619,139.086,122.619,296.749,316.936,353.481,17.587,19.396,17.587 +4589,144.599,327.810,384.967,216.129,569.713,307.692,418.823,120.719,132.117,120.719,274.214,317.978,352.980,16.932,19.398,16.932 +4590,144.631,341.793,351.296,218.597,571.718,305.519,417.798,118.610,124.992,118.610,201.996,319.009,353.498,16.999,19.170,16.999 +4591,144.663,339.867,345.887,220.983,573.491,303.212,417.102,117.235,117.920,117.235,193.178,319.359,353.366,16.815,19.115,16.815 +4592,144.694,305.398,408.777,223.466,575.109,301.663,416.726,115.165,110.746,115.165,335.638,320.349,353.202,17.431,18.717,17.431 +4593,144.725,302.889,409.571,225.856,576.344,300.101,415.908,113.749,103.627,113.749,339.655,320.917,353.501,17.611,18.848,17.611 +4594,144.755,299.920,411.092,228.281,577.593,298.135,415.377,112.620,96.762,112.620,343.923,321.373,353.208,18.385,19.680,18.385 +4595,144.786,298.705,409.693,230.140,578.981,296.598,415.002,111.638,89.339,111.638,342.437,322.105,353.860,18.721,18.418,18.721 +4596,144.818,297.335,409.679,232.345,579.662,295.522,414.463,110.758,82.020,110.758,343.500,322.714,353.732,18.634,19.214,18.634 +4597,144.848,297.335,409.679,232.345,579.662,295.522,414.463,110.758,82.020,110.758,343.500,322.714,353.732,18.634,19.214,18.634 +4598,144.876,296.686,409.644,233.869,580.354,294.941,414.364,110.298,74.745,110.298,343.671,322.845,353.736,18.797,20.611,18.797 +4599,144.908,295.414,408.911,235.348,579.444,293.822,413.421,109.440,67.590,109.440,342.472,320.480,352.038,19.026,20.758,19.026 +4600,144.939,295.129,408.657,236.353,579.291,293.590,413.095,109.134,60.173,109.134,342.156,320.130,351.551,19.107,20.427,19.107 +4601,144.970,294.807,408.565,237.280,579.040,293.324,412.899,108.886,53.130,108.886,341.515,319.600,350.675,18.923,20.800,18.923 +4602,145.000,294.200,407.900,235.858,580.148,292.371,413.388,108.435,45.490,108.435,340.577,318.307,352.147,18.657,25.068,18.657 +4603,145.032,294.300,407.600,236.275,579.682,292.511,412.966,108.435,38.333,108.435,340.577,318.290,351.889,18.657,24.882,18.657 +4604,145.063,294.400,407.300,236.567,579.208,292.597,412.708,108.435,31.430,108.435,339.945,317.847,351.347,18.657,24.982,18.657 +4605,145.095,294.550,406.850,236.177,578.109,292.693,412.422,108.435,24.362,108.435,338.364,318.043,350.111,18.657,25.936,18.657 +4606,145.125,295.546,405.835,236.187,577.898,293.374,412.215,108.800,17.259,108.800,337.068,315.994,350.547,18.933,26.192,18.933 +4607,145.156,296.047,405.690,235.193,577.347,293.681,412.509,109.134,9.527,109.134,335.369,315.821,349.805,18.818,25.034,18.818 +4608,145.187,297.310,405.472,234.069,577.172,294.680,412.779,109.799,2.974,109.799,334.881,315.082,350.412,19.345,24.253,19.345 +4609,145.217,298.726,405.397,233.026,576.955,295.776,413.264,110.556,176.682,110.556,333.801,314.921,350.604,19.195,23.815,19.195 +4610,145.248,298.726,405.397,233.026,576.955,295.776,413.264,110.556,176.682,110.556,333.801,314.921,350.604,19.195,23.815,19.195 +4611,145.276,299.698,405.238,231.110,576.136,296.522,413.443,111.161,170.218,111.161,333.077,315.517,350.673,18.982,22.666,18.982 +4612,145.307,301.478,404.408,229.501,575.726,297.628,413.920,112.036,163.811,112.036,330.567,315.675,351.091,19.069,22.739,19.069 +4613,145.338,303.475,403.764,227.563,574.651,298.982,414.336,113.025,157.249,113.025,327.983,315.926,350.956,19.097,21.567,19.097 +4614,145.368,305.883,403.068,225.445,573.684,300.541,414.985,114.146,151.699,114.146,324.948,316.292,351.066,18.974,20.319,18.974 +4615,145.402,309.516,401.421,223.317,572.972,302.494,416.103,115.560,146.066,115.560,318.806,316.758,351.356,19.572,20.066,19.572 +4616,145.433,312.102,399.020,221.280,572.229,303.582,416.318,116.222,140.845,116.222,313.901,317.186,352.464,19.830,19.297,19.830 +4617,145.466,316.946,394.351,219.342,571.361,304.758,417.033,118.250,136.548,118.250,301.252,317.050,352.750,17.565,19.333,17.565 +4618,145.498,323.217,387.975,217.505,570.903,306.093,418.145,119.578,132.990,119.578,283.776,317.816,353.159,16.994,19.725,16.994 +4619,145.532,333.142,376.366,215.693,569.811,307.922,418.841,120.700,130.492,120.700,255.001,317.916,353.797,16.955,19.562,16.955 +4620,145.565,351.652,353.147,213.641,568.608,309.458,419.840,122.320,128.729,122.320,196.058,317.816,353.897,17.126,19.186,17.126 +4621,145.596,355.538,354.692,211.654,567.472,311.376,420.935,123.690,127.376,123.690,195.254,318.067,354.483,16.641,19.492,16.641 +4622,145.627,359.438,356.956,209.222,566.028,313.450,422.308,125.134,126.188,125.134,195.213,317.832,355.035,16.720,19.506,16.720 +4623,145.657,329.981,404.876,206.736,563.813,315.960,423.824,126.501,125.311,126.501,307.855,318.522,354.999,17.443,18.667,17.443 +4624,145.688,324.402,417.732,204.025,561.805,318.158,425.605,128.418,124.403,128.418,335.175,318.224,355.270,18.507,18.654,18.507 +4625,145.718,325.278,422.445,201.262,559.344,320.845,427.583,130.792,123.281,130.792,342.190,318.142,355.760,18.320,18.966,18.320 +4626,145.749,326.963,426.539,198.666,556.490,323.915,429.748,133.531,121.418,133.531,347.456,318.132,356.307,18.379,19.910,18.379 +4627,145.782,326.963,426.539,198.666,556.490,323.915,429.748,133.531,121.418,133.531,347.456,318.132,356.307,18.379,19.910,18.379 +4628,145.811,330.024,429.896,195.813,553.116,327.057,432.716,136.444,119.184,136.444,347.964,317.826,356.152,19.104,20.796,19.104 +4629,145.842,333.680,433.429,191.888,548.944,330.437,436.153,139.970,116.725,139.970,348.794,317.520,357.266,19.235,21.186,19.235 +4630,145.873,337.397,437.984,187.553,543.523,334.005,440.451,143.973,112.949,143.973,349.742,316.989,358.130,19.116,20.624,19.116 +4631,145.904,341.326,443.608,184.456,537.985,337.971,445.690,148.173,108.879,148.173,350.315,316.591,358.211,20.831,19.130,20.831 +4632,145.935,344.941,448.440,181.464,531.230,341.185,450.421,152.187,104.631,152.187,349.454,315.570,357.946,22.015,19.244,22.015 +4633,145.966,348.579,454.787,178.765,523.549,344.829,456.348,157.398,100.403,157.398,350.152,314.935,358.275,20.774,19.222,20.774 +4634,145.999,352.184,461.868,176.194,515.179,347.795,463.229,162.777,96.040,162.777,349.387,313.951,358.577,20.488,18.908,20.488 +4635,146.031,355.041,470.273,174.523,506.041,350.506,471.207,168.358,91.559,168.358,349.523,312.320,358.784,20.337,19.367,20.337 +4636,146.063,357.047,479.513,174.052,495.834,352.306,479.951,174.732,87.656,174.732,348.395,310.559,357.919,18.814,18.487,18.814 +4637,146.099,358.466,489.560,173.953,484.946,352.993,489.471,0.932,83.157,0.932,347.231,310.214,358.179,18.404,18.666,18.404 +4638,146.144,358.183,499.892,175.596,474.001,353.071,499.214,7.553,79.114,7.553,348.185,309.256,358.498,19.290,18.998,19.290 +4639,146.175,356.683,511.048,177.996,462.451,351.241,509.628,14.621,74.615,14.621,347.837,308.545,359.086,19.100,18.714,19.100 +4640,146.206,354.224,518.690,182.412,451.994,349.659,516.864,21.801,70.271,21.801,348.922,305.936,358.755,25.997,18.904,25.997 +4641,146.242,348.632,532.973,194.443,454.166,349.037,533.215,30.801,65.493,30.801,347.477,276.585,346.533,24.876,20.393,24.876 +4642,146.273,344.709,542.727,203.570,447.884,345.795,543.559,37.476,60.068,37.476,344.901,267.287,342.165,25.845,19.538,25.845 +4643,146.304,338.896,559.531,211.843,436.768,335.309,555.689,46.975,55.954,46.975,331.850,267.365,342.362,23.296,20.065,23.296 +4644,146.335,341.743,591.896,227.097,429.332,324.092,567.768,53.813,50.528,53.813,278.209,259.278,337.999,18.980,18.980,18.980 +4645,146.365,311.600,572.200,238.411,419.112,312.063,573.127,63.435,45.274,63.435,343.460,263.805,341.387,22.361,20.509,22.361 +4646,146.398,296.774,575.098,250.493,410.419,297.346,576.836,71.763,40.365,71.763,349.100,270.488,345.440,20.018,22.096,20.018 +4647,146.430,281.476,578.470,258.539,400.555,281.112,576.428,79.905,36.384,79.905,350.068,288.803,354.215,23.170,19.491,23.170 +4648,146.461,269.359,579.001,265.616,393.687,269.321,573.363,89.614,31.608,89.614,348.120,307.711,359.395,21.033,19.916,21.033 +4649,146.491,253.396,577.255,279.400,395.700,253.993,572.822,97.672,26.565,97.672,348.910,309.025,357.857,22.738,17.889,22.738 +4650,146.523,241.307,574.401,294.008,398.733,242.725,569.781,107.067,21.743,107.067,347.466,310.299,357.133,19.102,17.897,19.102 +4651,146.554,229.444,568.753,307.796,403.677,231.624,564.207,115.626,16.734,115.626,345.283,312.057,355.367,19.499,18.164,19.499 +4652,146.585,218.726,561.653,320.513,409.936,221.610,557.382,124.037,11.802,124.037,344.782,313.600,355.088,19.946,18.365,19.946 +4653,146.615,209.483,553.438,331.479,417.678,213.041,549.521,132.248,6.870,132.248,343.869,315.418,354.453,20.021,18.242,20.021 +4654,146.646,209.483,553.438,331.479,417.678,213.041,549.521,132.248,6.870,132.248,343.869,315.418,354.453,20.021,18.242,20.021 +4655,146.674,200.700,544.641,341.002,426.449,205.654,540.508,140.164,1.956,140.164,341.089,316.533,353.992,19.456,18.077,19.456 +4656,146.704,194.174,536.276,348.956,436.074,200.782,532.101,147.715,177.274,147.715,337.483,318.782,353.115,21.535,18.408,21.535 +4657,146.736,188.195,525.910,354.829,446.190,195.931,522.232,154.577,172.587,154.577,335.182,320.890,352.313,20.862,20.091,20.862 +4658,146.766,182.897,516.611,359.041,455.725,193.006,513.384,162.293,169.676,162.293,330.187,321.458,351.411,17.606,19.409,17.606 +4659,146.800,112.039,521.349,361.926,465.219,191.133,504.400,167.905,166.070,167.905,188.646,321.850,350.424,17.181,19.435,17.181 +4660,146.832,150.223,500.556,363.167,474.848,190.117,496.236,173.820,162.553,173.820,268.437,322.314,348.693,17.503,20.143,17.503 +4661,146.864,166.500,488.000,363.524,484.769,189.762,488.000,0.000,158.854,0.000,301.000,322.367,347.524,18.000,21.047,18.000 +4662,146.896,174.128,479.717,363.507,495.014,190.519,481.163,5.042,153.699,5.042,314.162,322.021,347.071,18.985,22.731,18.985 +4663,146.927,178.577,471.777,362.135,503.916,191.436,474.163,10.513,147.995,10.513,320.366,321.709,346.523,18.793,23.108,18.793 +4664,146.957,182.135,464.630,360.085,512.465,193.144,467.673,15.450,142.206,15.450,322.836,321.265,345.681,19.316,24.416,19.316 +4665,146.987,185.382,458.061,357.459,519.999,195.018,461.580,20.061,136.169,20.061,324.734,320.556,345.250,19.578,24.816,19.578 +4666,147.018,189.399,450.084,354.363,527.305,198.345,453.984,23.552,130.030,23.552,325.121,321.106,344.639,26.396,25.697,26.396 +4667,147.047,189.399,450.084,354.363,527.305,198.345,453.984,23.552,130.030,23.552,325.121,321.106,344.639,26.396,25.697,26.396 +4668,147.077,193.417,443.341,350.500,534.000,201.550,447.854,29.023,123.690,29.023,325.477,321.726,344.080,25.353,25.239,25.353 +4669,147.107,195.906,440.403,347.098,539.790,203.566,445.118,31.608,117.597,31.608,325.727,321.559,343.716,25.288,24.996,25.288 +4670,147.138,199.232,436.312,343.924,544.554,206.450,441.365,34.992,111.251,34.992,325.972,321.283,343.595,25.642,24.595,25.642 +4671,147.170,202.293,432.945,340.241,549.200,209.063,438.264,38.157,105.083,38.157,326.154,321.809,343.372,25.612,23.796,25.612 +4672,147.201,204.653,430.024,337.161,553.524,211.575,436.043,41.009,98.489,41.009,325.366,322.296,343.712,24.640,23.058,24.640 +4673,147.232,208.750,425.250,333.565,557.021,215.397,431.897,45.000,92.161,45.000,325.269,322.450,344.069,24.749,21.306,24.749 +4674,147.265,211.433,422.915,330.611,560.137,218.041,430.087,47.342,85.855,47.342,324.336,323.254,343.840,24.263,20.165,24.263 +4675,147.297,212.882,419.755,327.784,563.133,220.161,428.273,49.485,79.509,49.485,322.476,323.791,344.884,23.968,19.047,23.968 +4676,147.328,214.069,416.468,325.743,565.477,222.638,427.243,51.506,73.301,51.506,317.203,324.512,344.736,23.757,18.965,23.757 +4677,147.359,212.170,411.388,323.598,567.328,223.300,426.298,53.259,67.195,53.259,308.814,324.611,346.026,21.388,18.950,21.388 +4678,147.389,203.352,397.003,322.027,568.873,223.881,426.329,55.008,60.917,55.008,274.525,324.992,346.118,17.613,18.859,17.613 +4679,147.420,200.911,386.954,320.163,570.091,226.962,424.389,55.167,54.363,55.167,254.445,325.140,345.661,20.546,19.160,20.546 +4680,147.450,221.390,413.744,319.258,570.109,227.926,423.522,56.243,48.419,56.243,321.725,325.871,345.247,22.176,20.270,22.176 +4681,147.481,221.390,413.744,319.258,570.109,227.926,423.522,56.243,48.419,56.243,321.725,325.871,345.247,22.176,20.270,22.176 +4682,147.510,225.536,414.584,318.050,571.238,229.988,421.929,58.782,42.709,58.782,329.484,324.953,346.662,23.013,19.614,23.013 +4683,147.542,227.365,415.163,316.579,571.406,230.793,421.032,59.712,37.011,59.712,332.632,325.392,346.226,22.917,20.418,22.917 +4684,147.573,227.936,415.104,315.471,572.048,231.224,420.895,60.408,31.329,60.408,332.763,325.004,346.080,21.943,21.949,21.943 +4685,147.603,229.173,414.681,314.741,572.047,232.447,420.597,61.037,25.372,61.037,331.193,324.253,344.717,22.743,23.092,22.743 +4686,147.635,229.337,413.860,314.374,572.352,232.714,420.075,61.489,19.747,61.489,331.431,323.023,345.576,22.836,23.530,22.836 +4687,147.666,229.286,413.116,313.870,573.018,233.050,420.099,61.675,14.121,61.675,330.045,322.334,345.912,22.706,24.153,22.706 +4688,147.697,228.908,412.815,313.350,573.036,232.909,420.329,61.966,8.246,61.966,328.170,321.726,345.194,22.090,24.354,22.090 +4689,147.728,229.214,412.653,313.354,572.799,233.171,420.068,61.909,2.534,61.909,328.180,321.261,344.990,23.013,24.498,23.013 +4690,147.759,228.864,412.573,313.554,572.553,232.824,419.900,61.607,177.079,61.607,328.701,320.063,345.357,22.753,24.906,22.753 +4691,147.789,228.141,412.196,313.591,571.925,232.211,419.642,61.336,171.431,61.336,328.341,320.221,345.312,22.942,24.599,22.942 +4692,147.821,227.427,412.441,314.365,571.455,231.762,420.183,60.751,166.115,60.751,326.945,320.150,344.691,22.860,25.142,22.860 +4693,147.853,226.121,413.005,314.905,570.677,230.638,420.870,60.130,160.994,60.130,325.607,320.089,343.748,22.282,25.318,22.282 +4694,147.885,225.158,412.906,315.997,570.092,229.929,420.893,59.146,155.556,59.146,325.841,320.366,344.449,22.911,25.159,22.911 +4695,147.916,225.158,412.906,315.997,570.092,229.929,420.893,59.146,155.556,59.146,325.841,320.366,344.449,22.911,25.159,22.911 +4696,147.945,223.862,414.033,317.151,569.005,228.723,421.858,58.155,150.396,58.155,324.885,320.256,343.310,22.545,24.898,22.545 +4697,147.976,222.701,414.771,318.456,568.155,227.703,422.470,56.989,145.146,56.989,324.856,320.227,343.219,23.175,24.633,23.175 +4698,148.007,220.960,415.635,320.267,566.918,226.229,423.344,55.646,140.110,55.646,324.520,320.346,343.194,23.356,24.610,23.356 +4699,148.038,219.587,417.042,322.250,565.750,224.893,424.372,54.103,135.000,54.103,325.123,320.319,343.220,24.155,24.042,24.155 +4700,148.069,216.814,418.675,324.144,563.772,222.295,425.788,52.381,130.365,52.381,324.972,320.319,342.930,23.050,23.925,23.050 +4701,148.100,214.646,419.898,326.736,562.168,220.509,426.987,50.412,125.433,50.412,325.346,320.730,343.743,23.801,24.177,23.801 +4702,148.132,212.655,422.346,329.470,560.185,218.640,429.054,48.257,120.719,48.257,325.283,321.210,343.263,24.255,24.370,24.255 +4703,148.164,209.849,424.746,332.077,558.026,216.291,431.331,45.630,116.017,45.630,324.643,322.043,343.068,24.258,23.954,24.258 +4704,148.195,207.234,427.021,335.386,555.150,213.830,433.257,43.394,111.251,43.394,325.987,322.370,344.140,24.838,24.025,24.838 +4705,148.226,204.603,430.226,338.491,551.300,211.109,435.818,40.681,106.821,40.681,326.595,321.156,343.752,25.597,23.418,25.597 +4706,148.257,201.051,434.734,341.690,547.324,207.850,439.800,36.690,102.265,36.690,326.178,321.618,343.135,25.393,22.985,25.393 +4707,148.287,198.500,438.500,345.612,543.084,205.654,443.269,33.690,97.800,33.690,326.441,321.572,343.638,24.684,23.629,24.684 +4708,148.318,195.359,442.552,348.694,538.011,202.544,446.703,30.018,93.180,30.018,327.855,321.005,344.451,25.226,23.020,25.226 +4709,148.350,193.110,447.240,352.240,532.440,200.304,450.820,26.453,88.939,26.453,328.701,321.130,344.773,25.942,23.496,25.942 +4710,148.382,193.110,447.240,352.240,532.440,200.304,450.820,26.453,88.939,26.453,328.701,321.130,344.773,25.942,23.496,25.942 +4711,148.410,189.338,456.223,355.258,525.840,196.199,459.024,22.208,84.806,22.208,330.207,321.492,345.029,19.064,23.358,19.064 +4712,148.441,186.897,462.611,358.243,518.459,193.884,464.835,17.661,80.538,17.661,331.099,320.907,345.763,19.361,23.673,19.361 +4713,148.473,184.613,470.197,360.316,510.553,191.771,471.762,12.339,76.185,12.339,331.230,320.884,345.884,18.866,23.433,18.866 +4714,148.504,183.269,477.818,362.164,501.799,190.543,478.713,7.017,71.847,7.017,331.651,320.368,346.310,18.598,23.616,18.598 +4715,148.536,183.057,486.085,362.874,492.552,189.438,486.237,1.364,67.620,1.364,334.310,320.755,347.075,18.542,23.280,18.542 +4716,148.569,182.826,494.766,363.070,482.461,189.382,494.257,175.559,63.249,175.559,335.010,320.221,348.160,18.246,24.437,18.246 +4717,148.601,184.149,504.667,361.730,472.059,190.170,503.513,169.150,58.867,169.150,336.565,319.862,348.828,19.683,24.524,19.683 +4718,148.631,186.135,514.359,359.305,460.936,192.142,512.435,162.242,55.008,162.242,337.195,319.910,349.811,20.074,23.840,20.074 +4719,148.663,189.420,524.325,355.072,449.625,195.166,521.683,155.304,50.774,155.304,338.123,319.081,350.772,20.625,23.762,20.625 +4720,148.693,194.351,534.385,349.353,439.236,199.394,531.285,148.422,45.909,148.422,340.075,317.529,351.914,20.907,25.318,20.907 +4721,148.723,200.170,543.335,342.767,428.599,204.947,539.501,141.242,42.138,141.242,341.551,316.777,353.801,19.209,23.800,19.209 +4722,148.754,207.474,551.996,333.962,418.402,211.776,547.505,133.774,37.694,133.774,343.065,316.010,355.503,19.557,24.710,19.557 +4723,148.785,216.743,560.459,322.390,411.928,219.698,556.323,125.538,33.319,125.538,344.209,314.559,354.376,19.646,19.564,19.646 +4724,148.817,227.473,567.732,310.642,405.150,229.736,563.286,116.980,28.856,116.980,345.285,313.818,355.262,19.881,18.804,19.881 +4725,148.849,227.473,567.732,310.642,405.150,229.736,563.286,116.980,28.856,116.980,345.285,313.818,355.262,19.881,18.804,19.881 +4726,148.878,238.903,573.146,297.614,399.747,240.450,568.592,108.759,24.331,108.759,346.898,313.247,356.518,19.027,18.224,19.027 +4727,148.909,250.602,577.281,283.876,396.238,251.436,572.531,99.960,19.747,99.960,348.847,312.453,358.494,21.721,18.148,21.721 +4728,148.940,263.318,578.546,269.636,394.710,263.411,573.867,91.142,15.068,91.142,349.130,311.708,358.491,22.155,18.198,22.155 +4729,148.971,276.613,579.224,255.460,395.453,275.982,574.390,82.559,10.371,82.559,350.424,310.902,360.174,24.053,17.944,24.053 +4730,149.001,292.223,575.030,240.820,398.310,291.100,571.039,74.285,5.673,74.285,351.488,309.951,359.782,21.569,17.839,21.569 +4731,149.034,307.075,569.739,226.967,403.642,305.278,565.841,65.253,0.707,65.253,351.588,310.075,360.172,21.895,17.727,21.895 +4732,149.067,319.470,562.392,214.226,410.662,317.126,558.847,56.529,175.914,56.529,352.225,309.711,360.723,23.308,17.883,23.308 +4733,149.100,330.031,553.589,202.984,419.400,327.166,550.423,47.856,170.800,47.856,352.406,310.218,360.947,23.720,17.998,23.720 +4734,149.133,339.777,543.255,193.493,429.433,336.136,540.286,39.196,165.700,39.196,351.810,310.218,361.206,25.468,17.765,25.468 +4735,149.168,346.590,532.072,185.885,440.666,342.872,529.821,31.196,161.046,31.196,352.240,310.597,360.932,25.185,18.896,25.185 +4736,149.202,351.299,520.170,180.190,452.977,347.994,518.745,23.331,154.954,23.331,353.062,311.001,360.260,26.192,19.728,26.192 +4737,149.235,354.150,512.205,176.023,464.150,350.022,511.037,15.806,150.116,15.806,351.804,311.457,360.383,19.457,19.985,19.457 +4738,149.267,356.001,501.176,173.451,475.651,351.843,500.550,8.563,145.285,8.563,351.810,312.435,360.220,19.437,19.443,19.437 +4739,149.300,356.624,490.748,172.052,486.379,352.072,490.615,1.672,139.764,1.672,351.026,312.812,360.134,18.722,18.497,18.722 +4740,149.333,355.732,480.415,172.061,497.059,351.595,480.774,175.030,134.136,175.030,352.236,312.698,360.540,19.492,18.418,19.492 +4741,149.365,353.889,470.957,173.328,507.158,349.804,471.777,168.648,128.463,168.648,351.643,314.373,359.976,20.389,18.799,20.389 +4742,149.396,350.842,462.267,175.482,516.635,347.260,463.379,162.766,122.869,162.766,352.187,315.137,359.688,20.486,18.737,20.486 +4743,149.428,347.782,454.433,178.477,525.263,343.987,456.036,157.100,117.300,157.100,350.567,315.747,358.806,21.084,18.288,21.084 +4744,149.459,344.672,448.035,182.065,533.316,340.786,450.128,151.685,111.562,151.685,349.548,316.252,358.376,21.333,18.608,21.333 +4745,149.489,340.314,441.930,186.237,540.349,336.930,444.150,146.731,105.742,146.731,349.442,316.770,357.534,21.686,18.526,21.686 +4746,149.520,336.290,436.755,189.960,546.726,332.863,439.366,142.696,100.081,142.696,348.854,317.510,357.469,19.810,20.216,19.810 +4747,149.552,331.960,431.717,194.920,552.494,328.757,434.579,138.215,94.205,138.215,348.142,317.906,356.734,19.736,19.418,19.736 +4748,149.583,328.005,427.035,199.621,557.459,324.603,430.507,134.421,88.546,134.421,346.579,317.304,356.300,19.198,19.517,19.198 +4749,149.614,328.005,427.035,199.621,557.459,324.603,430.507,134.421,88.546,134.421,346.579,317.304,356.300,19.198,19.517,19.198 +4750,149.642,323.689,423.873,204.316,561.589,320.778,427.258,130.696,82.569,130.696,346.642,318.045,355.572,19.834,19.875,19.834 +4751,149.673,319.080,420.060,209.482,565.298,316.335,423.720,126.870,76.759,126.870,345.600,318.479,354.749,19.800,19.239,19.800 +4752,149.704,314.846,417.731,214.329,569.202,312.312,421.533,123.690,70.253,123.690,345.301,319.451,354.439,18.860,20.658,18.860 +4753,149.740,310.800,415.195,219.455,571.057,308.578,418.940,120.677,65.095,120.677,343.891,318.976,352.599,18.659,21.056,18.659 +4754,149.772,306.990,412.681,223.320,573.202,304.774,416.898,117.719,58.861,117.719,342.979,318.294,352.507,18.890,20.595,18.890 +4755,149.804,303.696,411.419,227.673,574.857,301.716,415.638,115.137,52.907,115.137,341.866,317.780,351.186,19.011,20.467,19.011 +4756,149.835,299.588,409.804,229.897,577.690,297.507,414.869,112.337,46.848,112.337,341.645,317.850,352.598,18.916,24.439,18.916 +4757,149.867,296.968,408.254,233.760,579.069,294.951,413.744,110.171,41.348,110.171,340.871,317.492,352.570,18.927,24.804,18.927 +4758,149.900,293.200,407.294,237.355,579.809,291.489,412.686,107.613,35.655,107.613,340.023,318.409,351.338,18.866,24.676,18.866 +4759,149.933,290.539,406.527,240.915,580.410,289.017,411.940,105.709,29.914,105.709,339.154,318.547,350.401,19.133,25.517,19.133 +4760,149.964,287.095,405.455,244.600,580.700,285.782,410.990,103.349,24.775,103.349,337.889,318.484,349.266,18.965,26.051,18.965 +4761,149.995,284.308,403.962,248.100,581.200,283.079,410.106,101.310,18.435,101.310,336.731,317.176,349.263,19.023,26.879,19.023 +4762,150.025,281.468,403.084,251.168,582.350,280.311,410.130,99.330,14.470,99.330,335.052,316.783,349.332,19.108,25.144,19.108 +4763,150.056,278.714,402.395,254.189,582.442,277.713,409.904,97.595,7.253,97.595,333.119,316.556,348.268,18.701,25.972,18.701 +4764,150.087,276.059,401.852,256.799,583.103,275.238,409.829,95.877,3.708,95.877,332.464,316.503,348.502,18.344,24.495,18.344 +4765,150.119,273.471,401.182,259.919,583.357,272.848,409.634,94.214,178.727,94.214,331.459,316.233,348.408,18.245,25.238,18.245 +4766,150.149,273.471,401.182,259.919,583.357,272.848,409.634,94.214,178.727,94.214,331.459,316.233,348.408,18.245,25.238,18.245 +4767,150.178,270.826,401.036,262.306,583.285,270.460,409.548,92.463,173.530,92.463,330.812,317.276,347.853,18.241,25.199,18.241 +4768,150.209,268.460,400.514,264.731,583.154,268.328,409.547,90.836,168.690,90.836,329.213,317.120,347.281,18.275,25.299,18.275 +4769,150.240,265.780,400.496,267.279,583.253,265.919,409.622,89.132,163.511,89.132,329.008,317.434,347.263,18.240,24.854,18.240 +4770,150.270,263.816,400.887,269.912,583.276,264.184,410.089,87.709,158.654,87.709,328.138,317.554,346.555,18.505,25.223,18.505 +4771,150.300,261.402,400.726,272.156,582.768,262.032,409.712,85.986,154.016,85.986,328.665,317.989,346.681,18.866,24.527,18.866 +4772,150.332,258.619,401.188,274.816,582.686,259.518,410.182,84.289,148.946,84.289,328.263,318.307,346.340,18.508,23.351,18.508 +4773,150.363,256.162,401.024,277.514,582.519,257.392,410.482,82.589,143.673,82.589,327.316,319.014,346.391,18.793,23.056,18.793 +4774,150.394,253.610,401.079,280.214,582.254,255.202,410.950,80.838,139.830,80.838,326.204,319.331,346.201,19.012,22.835,19.012 +4775,150.425,251.045,401.409,282.862,581.801,253.004,411.498,79.011,135.807,79.011,325.188,319.660,345.744,19.357,23.262,19.357 +4776,150.455,248.628,402.065,286.026,581.465,250.895,412.080,77.242,131.483,77.242,325.387,319.909,345.922,20.114,22.735,20.114 +4777,150.486,245.427,402.596,288.865,580.512,248.088,412.687,75.225,127.539,75.225,324.476,320.588,345.349,19.753,22.144,19.753 +4778,150.516,242.879,403.134,292.166,579.937,245.967,413.402,73.261,123.275,73.261,324.125,320.912,345.569,20.701,21.894,20.701 +4779,150.548,242.879,403.134,292.166,579.937,245.967,413.402,73.261,123.275,73.261,324.125,320.912,345.569,20.701,21.894,20.701 +4780,150.577,239.759,404.210,295.573,579.042,243.240,414.351,71.053,119.887,71.053,324.078,321.254,345.522,20.695,22.064,20.695 +4781,150.607,236.578,406.111,299.045,578.022,240.445,416.070,68.782,116.200,68.782,322.994,321.161,344.362,20.629,21.292,20.629 +4782,150.638,233.739,406.943,303.116,576.838,238.060,416.899,66.536,112.900,66.536,323.528,322.090,345.234,22.298,21.656,22.298 +4783,150.670,230.470,408.781,306.835,575.083,235.119,418.202,63.733,109.680,63.733,323.829,322.346,344.841,22.139,21.382,22.139 +4784,150.702,226.695,411.227,310.663,573.452,231.769,420.374,60.981,106.607,60.981,323.345,323.649,344.264,21.830,20.864,21.830 +4785,150.734,223.564,413.396,315.059,571.265,228.918,421.951,57.961,104.036,57.961,324.354,324.028,344.539,22.904,20.616,22.904 +4786,150.766,219.954,416.213,319.788,568.058,225.622,424.254,54.819,101.310,54.819,323.907,323.003,343.583,23.395,20.788,23.395 +4787,150.799,216.095,419.237,324.504,564.582,222.027,426.682,51.454,99.224,51.454,324.384,322.569,343.421,23.889,21.125,23.889 +4788,150.831,211.941,423.235,329.275,560.792,218.106,430.016,47.726,96.882,47.726,324.766,322.727,343.094,23.544,21.037,23.544 +4789,150.862,207.968,426.864,334.479,556.498,214.589,433.269,44.048,94.814,44.048,325.271,322.469,343.696,24.109,21.891,24.109 +4790,150.893,203.961,432.058,339.220,551.460,210.586,437.489,39.341,92.936,39.341,326.333,321.910,343.468,25.192,21.997,25.192 +4791,150.924,199.721,436.755,343.830,545.496,206.559,441.542,34.992,91.302,34.992,327.447,321.281,344.140,25.314,22.540,25.314 +4792,150.954,196.153,441.566,348.535,538.976,203.334,445.868,30.921,89.326,30.921,328.075,322.060,344.817,25.384,22.904,25.384 +4793,150.985,192.254,448.649,352.447,531.482,199.247,451.940,25.201,87.739,25.201,329.514,321.460,344.973,26.399,23.048,26.399 +4794,151.015,187.739,458.621,356.246,523.447,195.133,461.332,20.136,85.914,20.136,329.546,320.398,345.297,19.247,23.512,19.247 +4795,151.046,187.739,458.621,356.246,523.447,195.133,461.332,20.136,85.914,20.136,329.546,320.398,345.297,19.247,23.512,19.247 +4796,151.074,185.775,466.229,359.173,514.233,192.760,468.095,14.962,84.289,14.962,330.905,320.701,345.365,19.064,23.781,19.064 +4797,151.106,183.412,474.899,361.275,504.594,190.754,476.061,8.997,82.632,8.997,330.903,320.025,345.770,18.766,23.922,18.766 +4798,151.140,182.076,484.618,362.363,494.022,189.665,484.926,2.322,80.910,2.322,330.661,319.062,345.851,18.755,23.936,18.755 +4799,151.186,182.700,505.494,361.226,471.235,189.994,504.024,168.605,77.800,168.605,333.792,317.660,348.672,20.183,24.805,20.183 +4800,151.219,185.231,516.163,358.112,459.459,192.094,513.842,161.318,76.329,161.318,334.892,317.236,349.380,19.866,24.213,19.866 +4801,151.252,189.359,527.243,353.349,447.542,195.619,524.159,153.768,74.624,153.768,336.744,315.753,350.701,20.670,24.009,20.670 +4802,151.288,195.269,537.654,350.080,446.368,199.481,534.846,146.310,73.101,146.310,338.644,292.908,348.769,20.247,23.921,20.247 +4803,151.319,201.742,547.894,344.749,440.916,204.973,545.016,138.311,71.395,138.311,338.576,279.874,347.231,19.754,25.195,19.754 +4804,151.350,210.254,557.795,336.051,433.994,212.233,555.420,129.806,69.611,129.806,338.914,272.254,345.096,19.590,24.819,19.590 +4805,151.380,210.254,557.795,336.051,433.994,212.233,555.420,129.806,69.611,129.806,338.914,272.254,345.096,19.590,24.819,19.590 +4806,151.409,220.674,566.321,324.726,425.704,221.798,564.471,121.278,67.797,121.278,339.748,270.763,344.076,19.665,24.393,19.665 +4807,151.439,232.987,572.820,312.628,420.112,233.088,572.574,112.426,66.071,112.426,342.018,267.547,342.550,19.529,24.297,19.529 +4808,151.471,245.625,578.502,299.813,416.874,245.438,579.291,103.285,64.498,103.285,342.756,262.726,341.133,19.884,23.311,19.884 +4809,151.501,258.756,582.555,285.961,415.698,258.667,583.783,94.139,62.494,94.139,341.699,258.850,339.235,22.664,23.176,22.664 +4810,151.534,273.748,584.979,271.140,415.028,273.722,584.668,85.236,61.080,85.236,337.912,259.532,338.537,22.754,21.196,22.754 +4811,151.566,292.351,585.241,255.393,416.668,291.609,582.090,76.759,59.139,76.759,332.164,260.519,338.639,22.789,20.822,22.789 +4812,151.598,310.070,588.126,240.269,422.763,305.823,578.162,66.915,58.213,66.915,315.654,259.409,337.317,18.429,20.460,18.429 +4813,151.629,354.783,625.635,225.846,425.269,319.176,568.541,58.050,56.310,58.050,207.338,267.643,341.912,18.540,19.415,18.540 +4814,151.660,337.241,565.137,213.746,433.973,331.784,558.627,50.024,54.782,50.024,325.730,269.359,342.718,21.712,20.184,21.712 +4815,151.690,341.227,548.592,203.914,442.906,340.619,548.058,41.248,52.284,41.248,342.605,270.941,344.223,24.835,20.610,24.835 +4816,151.720,350.009,533.656,194.187,449.184,347.978,532.441,30.890,50.290,30.890,344.708,281.690,349.441,25.370,20.888,25.370 +4817,151.750,355.397,520.544,185.839,457.745,351.655,518.990,22.554,47.989,22.554,345.146,290.177,353.250,26.141,22.812,26.141 +4818,151.782,355.397,520.544,185.839,457.745,351.655,518.990,22.554,47.989,22.554,345.146,290.177,353.250,26.141,22.812,26.141 +4819,151.811,356.711,511.069,177.208,463.864,350.936,509.584,14.421,46.236,14.421,347.357,307.118,359.282,19.425,22.724,19.425 +4820,151.842,358.677,498.729,174.202,476.202,352.553,498.004,6.748,44.002,6.748,347.022,307.582,359.355,19.285,21.983,19.285 +4821,151.873,358.547,487.017,173.145,488.194,352.601,487.086,179.336,42.325,179.336,347.023,308.015,358.915,18.315,20.636,18.315 +4822,151.904,357.337,475.995,173.940,499.785,351.655,476.763,172.304,40.018,172.304,346.928,308.181,358.395,19.418,20.526,19.418 +4823,151.937,354.391,465.428,175.369,511.024,349.025,466.823,165.426,37.801,165.426,347.293,308.637,358.382,21.002,21.799,21.002 +4824,151.969,351.066,456.172,178.295,521.085,345.650,458.239,159.106,35.433,159.106,345.933,310.263,357.527,20.061,22.736,20.061 +4825,152.000,347.469,447.877,182.739,530.084,342.159,450.589,152.949,32.881,152.949,344.342,309.801,356.267,19.650,23.277,19.650 +4826,152.032,342.668,440.596,187.026,538.456,337.696,443.791,147.278,30.466,147.278,344.043,310.296,355.864,19.830,24.185,19.830 +4827,152.066,337.513,434.062,192.201,545.669,333.062,437.558,141.843,27.780,141.843,343.790,311.352,355.109,19.714,24.252,19.714 +4828,152.098,332.104,428.231,197.604,551.719,328.000,432.100,136.685,25.253,136.685,342.591,312.217,353.870,19.479,24.983,19.479 +4829,152.130,326.843,423.508,203.256,557.893,322.824,427.973,131.987,22.881,131.987,341.098,312.386,353.111,20.069,25.045,20.069 +4830,152.161,320.969,418.372,209.064,562.718,317.189,423.357,127.173,19.692,127.173,340.241,312.594,352.753,19.886,24.797,19.886 +4831,152.192,315.379,414.687,214.881,567.247,311.818,420.191,122.905,16.928,122.905,339.137,313.290,352.249,19.063,25.165,19.063 +4832,152.222,309.769,411.018,220.807,570.656,306.426,417.114,118.734,12.875,118.734,337.685,313.821,351.591,19.372,25.151,19.372 +4833,152.252,304.074,408.454,226.603,573.907,301.035,415.061,114.698,9.806,114.698,336.286,314.193,350.831,19.167,24.112,19.167 +4834,152.282,298.788,406.181,232.377,576.544,296.060,413.342,110.854,6.710,110.854,335.036,314.712,350.362,19.046,24.245,19.046 +4835,152.314,298.788,406.181,232.377,576.544,296.060,413.342,110.854,6.710,110.854,335.036,314.712,350.362,19.046,24.245,19.046 +4836,152.342,293.184,404.403,238.192,578.539,290.879,411.895,107.103,3.715,107.103,333.861,314.960,349.538,18.969,23.677,18.969 +4837,152.373,287.863,403.065,244.008,580.287,285.989,410.900,103.453,0.670,103.453,332.898,314.119,349.010,19.032,23.566,19.032 +4838,152.403,282.667,401.942,249.561,581.624,281.233,410.128,99.936,176.878,99.936,332.153,315.785,348.776,19.096,24.545,19.096 +4839,152.434,277.406,401.219,255.006,582.555,276.435,409.654,96.568,173.660,96.568,331.452,315.945,348.433,18.705,24.516,18.705 +4840,152.466,272.425,400.676,260.853,583.156,271.889,409.546,93.453,170.134,93.453,330.149,316.638,347.920,18.157,25.016,18.157 +4841,152.498,267.000,400.500,266.321,583.256,267.000,409.628,90.000,166.464,90.000,329.000,317.269,347.256,18.000,25.098,18.000 +4842,152.530,262.520,400.860,271.840,582.988,263.021,409.877,86.820,162.646,86.820,328.604,317.305,346.666,18.804,24.936,18.804 +4843,152.560,257.409,401.606,277.031,582.510,258.435,410.475,83.400,158.725,83.400,328.207,317.918,346.065,18.685,24.706,18.685 +4844,152.591,252.598,402.452,282.666,581.852,254.145,411.194,79.963,154.722,79.963,328.278,318.120,346.034,19.180,24.817,19.180 +4845,152.621,247.925,403.296,288.130,580.622,250.037,412.077,76.472,150.668,76.472,327.496,318.613,345.559,20.037,24.394,20.037 +4846,152.652,243.014,404.768,293.846,579.269,245.676,413.443,72.943,146.310,72.943,327.174,318.953,345.322,20.543,24.129,20.543 +4847,152.684,238.185,406.493,299.273,577.353,241.383,415.022,69.444,142.253,69.444,326.428,319.248,344.644,21.536,24.206,21.536 +4848,152.715,238.185,406.493,299.273,577.353,241.383,415.022,69.444,142.253,69.444,326.428,319.248,344.644,21.536,24.206,21.536 +4849,152.744,233.620,408.597,304.937,575.330,237.407,417.018,65.786,137.726,65.786,325.695,319.520,344.162,22.649,24.082,22.649 +4850,152.776,228.174,411.343,310.531,572.485,232.451,419.378,61.975,133.713,61.975,325.477,319.881,343.682,22.026,23.948,22.026 +4851,152.807,223.722,413.782,316.464,569.378,228.741,421.736,57.745,129.155,57.745,324.537,320.432,343.348,23.523,23.839,23.523 +4852,152.838,218.409,417.224,322.226,565.618,223.991,424.793,53.591,124.695,53.591,324.476,320.402,343.286,23.691,23.970,23.691 +4853,152.869,213.482,421.354,327.748,561.145,219.394,428.190,49.145,120.353,49.145,324.807,320.956,342.884,24.183,23.906,24.183 +4854,152.901,208.615,425.834,333.416,556.960,215.250,432.387,44.642,115.684,44.642,324.569,322.527,343.221,24.770,24.312,24.770 +4855,152.933,204.042,431.080,339.206,550.464,210.838,436.775,39.963,111.038,39.963,325.088,321.214,342.821,25.606,24.123,25.606 +4856,152.964,198.868,437.337,344.473,543.492,205.996,442.205,34.330,106.390,34.330,325.688,320.992,342.952,25.318,23.871,25.318 +4857,152.996,194.443,443.430,349.438,536.195,201.986,447.636,29.148,101.768,29.148,326.554,320.657,343.828,25.076,24.189,25.076 +4858,153.027,190.291,451.452,353.568,527.887,197.642,454.585,23.085,96.934,23.085,328.382,320.865,344.363,25.999,23.932,25.999 +4859,153.057,185.827,461.873,357.287,518.551,193.579,464.365,17.819,92.261,17.819,328.586,319.620,344.873,19.041,23.679,19.041 +4860,153.088,183.569,471.635,360.143,508.494,191.190,473.148,11.229,87.546,11.229,329.662,319.564,345.202,18.824,23.821,18.824 +4861,153.118,181.780,481.405,361.997,497.254,189.547,482.010,4.451,82.776,4.451,330.646,318.773,346.227,18.644,24.382,18.644 +4862,153.149,181.780,481.405,361.997,497.254,189.547,482.010,4.451,82.776,4.451,330.646,318.773,346.227,18.644,24.382,18.644 +4863,153.178,181.897,491.289,362.853,485.926,189.314,491.007,177.825,78.111,177.825,332.368,319.110,347.213,18.025,24.979,18.025 +4864,153.208,182.723,502.897,361.551,473.835,189.651,501.700,170.204,73.301,170.204,334.206,318.382,348.268,19.028,24.712,19.028 +4865,153.239,185.934,514.219,358.882,461.546,191.807,512.352,162.368,68.908,162.368,336.905,317.700,349.230,20.102,24.738,20.102 +4866,153.270,189.997,525.993,354.246,449.136,195.502,523.362,154.458,64.004,154.458,338.263,316.213,350.467,21.303,24.668,21.303 +4867,153.301,195.945,537.442,348.696,438.883,200.859,534.220,146.753,59.250,146.753,340.064,310.920,351.815,21.976,25.075,21.976 +4868,153.333,202.793,546.890,342.186,429.171,207.142,543.017,138.318,55.054,138.318,341.482,305.243,353.129,19.837,24.956,19.837 +4869,153.364,211.565,555.973,330.667,417.295,215.126,551.718,129.932,50.412,129.932,343.383,308.021,354.480,19.579,24.690,19.579 +4870,153.395,223.001,564.772,317.685,407.868,225.725,560.160,120.564,45.486,120.564,345.075,308.965,355.789,20.069,25.695,20.069 +4871,153.426,234.849,571.229,303.773,399.868,236.960,565.872,111.501,41.525,111.501,346.366,309.446,357.880,18.946,24.529,18.946 +4872,153.457,249.342,576.521,289.360,394.926,250.608,570.836,102.552,37.266,102.552,348.604,308.366,360.254,21.367,24.601,21.367 +4873,153.488,260.802,578.553,272.140,394.237,261.002,573.616,92.319,32.881,92.319,349.483,308.570,359.365,24.183,19.977,24.183 +4874,153.518,275.581,578.872,257.164,394.595,275.016,574.102,83.241,28.511,83.241,351.113,307.347,360.720,23.532,20.482,23.532 +4875,153.550,275.581,578.872,257.164,394.595,275.016,574.102,83.241,28.511,83.241,351.113,307.347,360.720,23.532,20.482,23.532 +4876,153.578,293.062,575.412,240.342,398.235,291.799,570.840,74.567,24.071,74.567,350.661,308.248,360.149,21.839,18.051,21.839 +4877,153.609,307.810,569.553,225.913,404.018,305.866,565.430,64.757,19.537,64.757,351.072,307.140,360.190,22.145,17.967,22.145 +4878,153.640,320.666,561.939,212.826,411.650,317.986,558.051,55.419,14.971,55.419,351.000,307.001,360.443,22.980,17.920,22.980 +4879,153.671,332.080,552.157,201.262,420.333,328.756,548.651,46.521,10.125,46.521,352.015,307.071,361.677,24.721,19.829,24.721 +4880,153.701,341.441,540.680,191.177,431.522,337.706,537.831,37.344,5.128,37.344,352.561,307.904,361.956,25.417,18.043,25.417 +4881,153.734,348.541,529.216,184.006,443.858,344.310,526.869,29.019,179.613,29.019,351.219,308.061,360.896,25.219,18.986,25.219 +4882,153.765,352.432,520.071,178.445,456.019,347.805,518.296,20.987,173.494,20.987,350.946,308.762,360.858,19.708,19.871,19.708 +4883,153.799,355.386,508.870,174.572,467.035,350.503,507.712,13.341,167.724,13.341,351.100,309.553,361.138,19.076,20.280,19.076 +4884,153.830,356.983,497.549,172.344,478.489,351.809,496.987,6.194,160.821,6.194,350.415,310.288,360.825,19.190,20.450,19.190 +4885,153.861,355.480,487.286,171.574,489.641,351.805,487.319,179.482,153.315,179.482,353.139,311.720,360.490,18.472,20.139,18.472 +4886,153.891,354.767,477.583,172.663,500.654,351.039,478.036,173.075,144.881,173.075,352.093,312.615,359.603,19.372,20.476,19.372 +4887,153.922,353.484,468.738,174.195,509.802,349.387,469.672,167.156,136.762,167.156,351.055,313.513,359.460,20.116,19.398,20.116 +4888,153.952,351.065,460.660,176.418,518.322,346.837,462.051,161.786,127.626,161.786,350.036,314.494,358.938,20.285,19.767,20.285 +4889,153.983,351.065,460.660,176.418,518.322,346.837,462.051,161.786,127.626,161.786,350.036,314.494,358.938,20.285,19.767,20.285 +4890,154.011,347.670,453.906,178.726,525.849,343.906,455.524,156.744,118.822,156.744,350.857,315.263,359.052,20.995,19.437,20.995 +4891,154.042,344.974,448.554,182.118,532.926,341.144,450.573,152.210,109.486,152.210,349.500,315.957,358.160,20.084,19.261,20.084 +4892,154.073,341.563,442.737,186.005,539.175,337.832,445.107,147.579,99.881,147.579,348.352,316.638,357.191,21.788,18.744,21.788 +4893,154.105,338.140,438.105,189.370,544.505,334.513,440.709,144.324,90.363,144.324,347.945,315.076,356.875,19.204,18.696,19.204 +4894,154.137,334.575,433.556,193.497,549.081,331.181,436.351,140.528,80.838,140.528,347.096,316.299,355.891,19.752,19.299,19.752 +4895,154.169,331.923,430.230,197.584,553.096,328.566,433.301,137.545,70.710,137.545,345.905,315.626,355.005,19.732,19.915,19.732 +4896,154.200,328.917,426.432,201.696,556.178,325.583,429.814,134.588,61.038,134.588,344.428,315.664,353.925,19.310,21.730,19.310 +4897,154.233,326.015,423.669,204.774,558.637,322.834,427.219,131.870,50.681,131.870,343.787,314.646,353.320,19.339,20.637,19.339 +4898,154.265,322.787,421.012,206.206,562.177,319.121,425.510,129.174,40.601,129.174,342.941,314.224,354.548,19.611,24.079,19.611 +4899,154.297,320.520,418.893,209.137,563.876,316.955,423.608,127.093,30.530,127.093,342.001,314.354,353.823,19.689,25.002,19.689 +4900,154.328,317.922,416.553,212.158,565.092,314.373,421.604,125.096,21.194,125.096,339.992,313.825,352.337,19.040,25.516,19.040 +4901,154.358,315.658,414.053,214.314,566.681,311.756,420.055,123.033,8.973,123.033,337.768,313.485,352.085,19.162,24.642,19.162 +4902,154.388,314.564,412.197,216.500,568.000,310.285,419.138,121.651,0.000,121.651,335.559,313.000,351.867,18.914,22.000,18.914 +4903,154.419,313.078,409.568,217.848,569.077,308.174,418.050,120.033,169.216,120.033,332.320,314.582,351.915,19.019,21.986,19.019 +4904,154.450,312.234,406.772,218.881,569.892,306.474,417.286,118.720,158.962,118.720,327.869,315.184,351.846,19.077,20.534,19.077 +4905,154.481,312.234,406.772,218.881,569.892,306.474,417.286,118.720,158.962,118.720,327.869,315.184,351.846,19.077,20.534,19.077 +4906,154.508,312.939,403.068,219.573,570.506,305.633,416.985,117.699,148.173,117.699,320.425,316.506,351.862,19.921,19.630,19.921 +4907,154.540,314.587,396.064,220.618,572.035,303.839,416.774,117.429,137.564,117.429,305.621,317.837,352.286,17.752,19.400,17.752 +4908,154.571,322.616,376.817,221.689,573.384,302.526,416.531,116.834,127.216,116.834,263.895,319.006,352.907,17.038,19.486,17.038 +4909,154.602,336.931,344.255,222.800,574.400,301.684,416.350,116.053,116.565,116.053,192.773,319.310,353.273,17.109,18.783,17.109 +4910,154.632,304.427,410.801,223.337,575.099,301.658,416.743,114.990,106.287,114.990,340.123,320.880,353.235,17.659,20.319,17.659 +4911,154.664,303.003,411.848,225.133,575.788,300.949,416.301,114.760,96.242,114.760,343.350,320.914,353.157,18.506,20.441,18.506 +4912,154.694,303.184,412.417,225.803,576.354,301.241,416.570,115.067,85.373,115.067,344.222,320.542,353.392,18.832,18.794,18.832 +4913,154.725,303.413,412.023,226.471,576.787,301.253,416.636,115.096,74.416,115.096,343.313,321.328,353.501,18.857,20.510,18.857 +4914,154.755,303.669,411.408,227.003,575.535,301.605,415.816,115.096,64.274,115.096,342.831,319.388,352.565,18.914,20.900,18.914 +4915,154.786,304.374,411.737,226.841,574.277,302.381,415.879,115.688,53.656,115.688,341.782,318.209,350.975,18.696,20.558,18.696 +4916,154.817,305.410,411.219,224.312,574.747,302.838,416.454,116.162,42.614,116.162,341.732,317.098,353.398,19.038,24.639,19.038 +4917,154.849,305.410,411.219,224.312,574.747,302.838,416.454,116.162,42.614,116.162,341.732,317.098,353.398,19.038,24.639,19.038 +4918,154.878,305.800,411.400,223.476,573.336,303.281,416.439,116.565,32.082,116.565,340.777,316.835,352.045,18.783,24.951,18.783 +4919,154.909,307.771,410.901,222.341,571.655,304.890,416.442,117.474,21.975,117.474,339.094,315.706,351.584,19.093,26.535,19.093 +4920,154.940,309.217,410.737,220.614,570.906,305.833,417.007,118.361,10.886,118.361,337.566,314.582,351.817,19.196,24.286,19.196 +4921,154.972,311.323,410.602,218.511,569.687,307.317,417.662,119.572,0.764,119.572,335.863,313.199,352.097,19.272,22.798,19.272 +4922,155.004,315.040,410.666,216.057,568.359,309.785,419.254,121.464,171.027,121.464,332.072,314.317,352.209,18.994,22.043,18.994 +4923,155.034,318.159,410.031,213.279,566.313,311.663,420.136,122.735,161.042,122.735,328.300,314.706,352.325,19.287,19.976,19.287 +4924,155.067,323.890,407.167,210.373,564.854,313.878,421.772,124.430,151.323,124.430,317.661,315.251,353.076,20.175,19.675,20.175 +4925,155.100,332.551,398.383,207.814,563.758,314.812,422.416,126.431,142.431,126.431,294.781,316.440,354.522,17.624,19.511,17.624 +4926,155.132,365.160,362.731,205.204,562.206,316.616,424.220,128.290,134.807,128.290,197.997,316.806,354.678,17.681,19.808,17.681 +4927,155.163,329.575,413.822,202.909,560.299,319.382,426.155,129.575,127.060,129.575,323.199,318.207,355.199,18.169,18.791,18.169 +4928,155.194,325.200,424.400,200.482,558.547,321.833,428.188,131.634,119.997,131.634,345.967,318.291,356.104,18.768,20.553,18.768 +4929,155.224,327.367,427.892,198.399,556.458,324.660,430.658,134.370,112.380,134.370,348.699,318.089,356.440,18.741,21.431,18.741 +4930,155.254,331.097,430.968,195.041,553.128,327.836,433.954,137.514,103.271,137.514,347.996,318.020,356.839,19.656,19.604,19.656 +4931,155.285,334.550,434.334,191.829,548.948,331.205,437.059,140.837,94.441,140.837,348.825,317.297,357.454,19.609,20.056,19.609 +4932,155.315,334.550,434.334,191.829,548.948,331.205,437.059,140.837,94.441,140.837,348.825,317.297,357.454,19.609,20.056,19.609 +4933,155.343,338.534,438.547,189.783,543.893,335.176,440.946,144.462,85.236,144.462,348.045,315.656,356.297,20.111,18.519,20.111 +4934,155.374,342.670,443.274,186.835,537.787,339.049,445.522,148.173,75.887,148.173,347.444,314.326,355.969,21.680,19.258,21.680 +4935,155.405,345.833,446.757,183.895,531.232,341.682,448.985,151.773,66.346,151.773,346.426,313.440,355.847,21.016,19.531,21.016 +4936,155.438,349.481,452.457,180.885,524.273,344.821,454.499,156.340,56.937,156.340,346.136,313.158,356.312,20.892,20.012,20.892 +4937,155.469,352.346,459.479,177.333,515.851,347.418,461.146,161.313,47.361,161.313,346.886,309.974,357.291,20.185,20.824,20.185 +4938,155.500,355.178,466.805,175.183,506.976,349.972,468.062,166.421,37.818,166.421,347.368,309.863,358.078,20.713,20.674,20.713 +4939,155.533,358.687,475.428,173.681,497.385,351.786,476.390,172.064,28.361,172.064,344.662,309.181,358.596,19.394,20.730,19.394 +4940,155.564,367.168,484.925,173.080,487.859,352.662,485.375,178.224,18.805,178.224,330.120,308.024,359.146,18.425,21.168,18.425 +4941,155.595,415.140,499.375,172.686,478.828,352.172,494.730,4.219,9.009,4.219,234.061,308.754,360.339,17.878,19.464,17.878 +4942,155.625,357.747,505.191,173.998,467.745,351.018,503.924,10.670,179.551,10.670,347.623,308.085,361.316,18.985,20.909,18.985 +4943,155.657,353.916,515.184,177.399,459.472,349.379,513.751,17.526,169.216,17.526,351.169,308.875,360.684,19.272,19.413,19.272 +4944,155.686,350.088,523.752,182.381,449.491,346.940,522.229,25.821,158.410,25.821,352.630,309.006,359.623,25.959,19.373,25.959 +4945,155.718,345.560,533.452,188.226,437.738,342.346,531.420,32.312,149.614,32.312,353.054,309.738,360.660,25.058,18.017,25.058 +4946,155.750,339.281,544.518,195.858,426.831,335.611,541.422,40.156,139.821,40.156,351.813,309.823,361.417,25.126,18.235,25.126 +4947,155.782,339.281,544.518,195.858,426.831,335.611,541.422,40.156,139.821,40.156,351.813,309.823,361.417,25.126,18.235,25.126 +4948,155.810,329.388,555.492,205.585,417.571,326.138,551.749,49.028,129.987,49.028,350.792,309.714,360.706,23.227,17.894,23.227 +4949,155.841,319.476,564.259,216.486,409.492,316.421,559.520,57.189,120.324,57.189,349.211,309.738,360.489,23.057,17.589,23.057 +4950,155.873,307.618,571.258,228.163,402.875,305.107,565.780,65.376,110.410,65.376,348.248,308.150,360.301,21.742,17.829,21.742 +4951,155.904,294.103,577.322,240.462,398.399,292.225,570.963,73.546,99.648,73.546,347.056,306.148,360.318,21.164,19.402,21.164 +4952,155.935,279.637,583.929,252.319,407.953,279.004,579.700,81.480,90.839,81.480,339.059,282.189,347.610,23.698,19.346,23.698 +4953,155.967,266.500,612.500,269.471,416.192,266.500,584.596,90.000,82.828,90.000,281.000,261.711,336.808,23.000,18.010,23.000 +4954,155.999,251.621,585.167,288.152,418.904,251.865,583.528,98.459,74.516,98.459,333.030,256.397,336.343,22.349,20.270,22.349 +4955,156.031,240.441,575.950,306.432,418.270,240.172,576.811,107.341,61.970,107.341,343.973,260.296,342.168,19.140,24.157,19.140 +4956,156.061,229.422,568.425,313.026,408.026,231.126,564.884,115.688,51.988,115.688,345.854,293.366,353.713,19.677,24.769,19.677 +4957,156.092,218.926,561.966,320.258,408.164,222.251,557.004,123.828,42.207,123.828,344.462,310.981,356.408,19.785,24.116,19.785 +4958,156.123,209.857,553.820,330.021,417.382,213.118,550.184,131.884,32.242,131.884,344.068,313.362,353.836,19.899,20.872,19.899 +4959,156.153,202.003,545.261,339.619,426.917,205.955,541.887,139.521,22.543,139.521,342.217,315.694,352.611,20.098,19.029,20.098 +4960,156.184,194.477,536.465,347.945,436.242,200.432,532.599,147.005,12.920,147.005,338.189,317.803,352.389,19.497,18.935,19.497 +4961,156.215,194.477,536.465,347.945,436.242,200.432,532.599,147.005,12.920,147.005,338.189,317.803,352.389,19.497,18.935,19.497 +4962,156.243,190.402,527.336,353.974,445.435,196.715,524.237,153.849,3.414,153.849,337.718,318.865,351.784,22.033,19.674,22.033 +4963,156.274,184.550,517.642,358.574,456.203,193.015,514.688,160.764,173.991,160.764,333.236,321.330,351.168,19.124,20.204,19.124 +4964,156.306,111.947,523.012,361.710,464.772,191.086,505.425,167.471,164.802,167.471,188.621,321.620,350.760,17.354,19.764,17.354 +4965,156.338,162.821,500.700,362.850,474.264,190.024,497.462,173.211,155.410,173.211,293.924,321.926,348.713,19.269,21.438,19.269 +4966,156.367,173.518,488.943,363.310,484.710,189.650,488.789,179.454,146.768,179.454,315.119,321.461,347.383,18.085,22.238,18.085 +4967,156.399,178.093,481.069,362.851,494.338,190.155,482.037,4.586,137.347,4.586,322.051,320.948,346.252,18.982,23.552,18.982 +4968,156.431,180.834,473.354,361.504,503.781,190.956,475.102,9.802,127.875,9.802,325.337,321.442,345.881,18.625,25.435,18.625 +4969,156.462,183.341,466.547,359.677,511.500,192.534,468.926,14.511,118.740,14.511,325.965,320.121,344.957,19.180,25.314,19.180 +4970,156.492,185.775,460.161,357.153,518.906,194.065,462.986,18.818,109.398,18.818,327.299,319.890,344.816,19.359,25.175,19.359 +4971,156.523,188.945,453.829,354.428,525.952,196.573,457.150,23.523,100.539,23.523,327.753,320.660,344.393,19.255,24.235,19.255 +4972,156.554,192.828,447.716,351.645,532.079,199.749,451.099,26.053,92.121,26.053,328.649,320.484,344.057,25.873,22.984,25.873 +4973,156.586,196.167,443.019,348.893,538.070,202.631,446.754,30.018,83.418,30.018,329.721,322.361,344.653,25.226,21.855,25.226 +4974,156.617,198.769,438.346,346.178,543.088,205.774,443.016,33.690,74.638,33.690,327.828,323.371,344.666,25.239,20.387,25.239 +4975,156.647,198.769,438.346,346.178,543.088,205.774,443.016,33.690,74.638,33.690,327.828,323.371,344.666,25.239,20.387,25.239 +4976,156.675,200.155,436.271,343.626,547.223,207.378,441.413,35.446,66.134,35.446,326.985,324.203,344.718,25.337,19.155,25.337 +4977,156.706,201.059,431.625,341.746,550.347,209.965,438.657,38.290,58.097,38.290,322.587,324.471,345.281,25.116,18.834,25.116 +4978,156.737,197.036,427.113,339.990,552.788,210.158,438.639,41.295,50.880,41.295,310.822,325.142,345.753,18.539,18.367,18.539 +4979,156.769,152.555,382.758,338.801,554.680,211.991,437.242,42.510,44.336,42.510,184.411,324.679,345.670,17.569,18.307,17.569 +4980,156.807,200.337,421.329,336.932,555.784,214.248,433.983,42.290,37.458,42.290,307.816,326.065,345.427,22.552,19.035,22.552 +4981,156.839,209.000,425.500,335.951,556.236,215.797,432.297,45.000,30.556,45.000,325.976,325.664,345.200,24.749,19.360,24.749 +4982,156.870,210.338,424.126,334.905,557.539,217.066,431.243,46.606,22.834,46.606,325.868,324.561,345.457,23.993,21.052,23.993 +4983,156.903,211.916,423.076,333.375,558.900,218.271,430.052,47.670,14.597,47.670,326.658,323.774,345.531,24.689,21.673,24.689 +4984,156.935,212.941,422.497,332.385,559.703,219.187,429.523,48.366,5.440,48.366,326.203,322.872,345.005,24.332,22.565,24.332 +4985,156.967,213.776,421.694,330.992,560.385,219.786,428.644,49.145,175.786,49.145,326.401,321.560,344.778,24.183,23.610,24.183 +4986,156.999,214.007,420.919,329.761,561.028,220.082,428.067,49.635,166.171,49.635,325.919,321.600,344.682,24.192,24.798,24.192 +4987,157.031,214.574,420.519,328.858,561.176,220.626,427.748,50.064,156.280,50.064,324.713,321.056,343.569,24.001,24.983,24.001 +4988,157.061,213.414,420.723,328.154,561.231,219.512,427.896,49.635,146.310,49.635,325.081,320.617,343.910,23.544,24.962,23.544 +4989,157.092,213.346,420.731,327.653,561.163,219.383,427.833,49.635,136.809,49.635,324.777,320.539,343.419,23.430,24.580,23.430 +4990,157.123,213.974,420.560,327.557,561.279,219.830,427.481,49.764,126.384,49.764,325.320,321.048,343.451,24.135,23.940,24.135 +4991,157.155,213.551,421.078,327.900,561.200,219.495,427.976,49.246,116.565,49.246,325.165,321.547,343.376,24.000,23.255,24.000 +4992,157.186,212.384,422.064,328.986,561.078,218.670,429.171,48.504,106.220,48.504,324.805,322.084,343.781,23.478,23.097,23.478 +4993,157.217,212.384,422.064,328.986,561.078,218.670,429.171,48.504,106.220,48.504,324.805,322.084,343.781,23.478,23.097,23.478 +4994,157.244,212.171,423.154,329.916,560.153,218.332,429.913,47.651,96.170,47.651,324.555,322.123,342.846,24.363,21.523,24.363 +4995,157.275,210.183,423.517,331.571,559.418,216.986,430.660,46.397,85.601,46.397,324.793,322.432,344.523,24.241,20.248,24.241 +4996,157.306,208.000,425.000,333.531,557.992,215.631,432.631,45.000,76.092,45.000,322.441,323.783,344.024,24.042,19.358,24.042 +4997,157.338,206.538,426.213,335.978,556.178,214.576,433.833,43.468,66.069,43.468,322.401,324.201,344.553,24.834,18.670,24.834 +4998,157.368,201.891,427.115,338.744,553.672,212.175,436.240,41.583,56.229,41.583,317.727,324.780,345.225,22.756,19.461,22.756 +4999,157.400,191.281,425.738,341.635,550.873,208.872,440.265,39.551,46.648,39.551,299.970,324.855,345.598,18.219,18.692,18.219 +5000,157.432,138.004,390.674,344.673,547.237,207.055,442.665,36.978,36.469,36.978,172.810,324.992,345.679,17.594,19.021,17.594 +5001,157.464,185.200,430.473,347.764,542.463,206.237,443.804,32.361,26.988,32.361,294.898,324.741,344.709,23.217,19.951,23.217 +5002,157.494,188.647,435.952,350.585,537.728,204.300,445.611,31.675,17.396,31.675,308.944,324.166,345.731,25.929,19.847,25.929 +5003,157.524,187.506,441.583,353.132,532.569,201.663,449.389,28.872,8.049,28.872,313.279,323.428,345.611,27.719,19.853,27.719 +5004,157.555,185.697,446.492,355.491,527.797,199.588,452.913,24.809,179.226,24.809,315.266,323.119,345.872,25.981,20.579,25.981 +5005,157.586,182.706,455.561,357.586,521.490,195.841,460.622,21.073,170.028,21.073,317.476,322.601,345.628,19.596,21.300,19.596 +5006,157.616,180.743,462.023,359.665,514.972,193.705,465.912,16.699,160.741,16.699,319.052,321.996,346.117,19.157,22.543,19.157 +5007,157.647,180.743,462.023,359.665,514.972,193.705,465.912,16.699,160.741,16.699,319.052,321.996,346.117,19.157,22.543,19.157 +5008,157.675,178.802,469.430,361.227,507.919,191.777,472.189,12.002,151.526,12.002,319.821,320.981,346.351,18.916,23.525,18.916 +5009,157.706,178.188,476.971,362.557,500.316,190.666,478.547,7.199,141.470,7.199,321.373,320.315,346.527,18.735,23.787,18.735 +5010,157.737,177.447,485.091,362.904,491.913,189.451,485.494,1.925,132.221,1.925,323.120,320.059,347.142,18.729,24.617,18.729 +5011,157.770,178.086,493.443,362.577,482.885,189.190,492.785,176.609,123.690,176.609,325.089,319.230,347.337,18.316,24.684,18.316 +5012,157.803,179.420,503.083,361.733,473.053,189.843,501.386,170.754,114.167,170.754,327.296,317.489,348.417,19.763,24.610,19.763 +5013,157.836,181.807,512.401,358.485,462.696,190.889,509.874,164.450,105.642,164.450,329.365,316.469,348.218,19.854,22.572,19.854 +5014,157.869,185.353,522.076,354.695,452.744,193.173,518.909,157.954,96.340,157.954,332.223,315.834,349.095,20.368,21.645,20.368 +5015,157.902,190.731,532.140,350.696,442.968,197.603,528.353,151.137,87.337,151.137,334.892,314.683,350.585,22.591,23.138,22.591 +5016,157.935,195.727,540.214,345.194,434.072,201.774,535.886,144.413,78.476,144.413,336.893,312.398,351.767,19.174,24.001,19.174 +5017,157.966,202.654,549.207,344.548,441.793,205.460,546.612,137.231,69.286,137.231,338.915,274.115,346.561,19.545,25.160,19.545 +5018,157.997,211.041,556.951,338.106,431.939,213.209,554.350,129.806,60.186,129.806,341.218,273.376,347.990,19.462,25.357,19.462 +5019,158.028,221.634,563.810,329.574,421.849,222.974,561.627,121.551,51.483,121.551,344.666,274.711,349.789,19.959,24.750,19.959 +5020,158.058,232.278,569.992,316.168,409.693,233.782,566.538,113.532,42.709,113.532,345.854,284.708,353.389,19.756,24.531,19.756 +5021,158.089,243.388,574.742,292.185,397.725,244.653,570.106,105.255,33.968,105.255,348.017,311.733,357.628,19.734,19.293,19.734 +5022,158.121,254.636,577.753,278.553,395.458,255.173,573.217,96.756,25.017,96.756,349.414,311.062,358.550,22.435,18.003,22.435 +5023,158.152,269.626,578.493,264.998,394.739,269.576,573.902,89.370,16.105,89.370,349.221,311.122,358.404,21.021,17.835,21.021 +5024,158.184,282.635,577.811,251.286,396.241,281.902,573.411,80.538,6.995,80.538,350.663,310.962,359.585,22.358,17.629,22.358 +5025,158.215,282.635,577.811,251.286,396.241,281.902,573.411,80.538,6.995,80.538,350.663,310.962,359.585,22.358,17.629,22.358 +5026,158.248,310.187,568.130,224.162,405.325,308.258,564.315,63.174,168.887,63.174,351.110,311.214,359.660,22.157,17.768,22.157 +5027,158.292,321.967,560.922,212.303,412.813,319.517,557.462,54.703,159.532,54.703,351.537,311.331,360.015,23.784,17.253,23.784 +5028,158.324,332.057,551.782,201.539,420.830,328.921,548.487,46.411,150.405,46.411,351.482,311.464,360.580,24.536,18.091,24.536 +5029,158.355,341.176,541.819,192.776,430.843,337.403,538.856,38.142,141.159,38.142,351.318,311.870,360.913,25.274,18.086,25.274 +5030,158.390,347.637,531.141,186.302,442.237,343.977,528.999,30.343,132.614,30.343,351.331,311.740,359.813,25.238,18.958,25.238 +5031,158.422,352.467,519.828,180.890,453.088,348.636,518.215,22.834,123.460,22.834,351.434,312.041,359.748,26.194,19.660,26.194 +5032,158.453,354.863,512.198,177.295,464.348,350.687,511.032,15.597,113.682,15.597,350.446,312.123,359.119,19.145,20.324,19.145 +5033,158.485,356.819,501.408,175.062,475.168,352.580,500.762,8.667,104.604,8.667,350.120,311.616,358.696,19.344,19.749,19.344 +5034,158.517,357.576,491.364,173.710,485.976,352.901,491.198,2.037,94.764,2.037,349.170,311.254,358.526,18.842,18.851,18.842 +5035,158.548,357.576,491.364,173.710,485.976,352.901,491.198,2.037,94.764,2.037,349.170,311.254,358.526,18.842,18.851,18.842 +5036,158.576,357.843,481.318,173.818,495.389,352.518,481.701,175.884,85.197,175.884,347.763,310.678,358.442,19.087,18.732,19.087 +5037,158.607,356.227,471.977,175.221,504.924,351.185,472.879,169.852,75.466,169.852,347.470,310.942,357.715,19.791,18.894,19.791 +5038,158.637,353.725,463.534,177.329,513.451,349.061,464.861,164.116,65.751,164.116,347.248,310.601,356.946,20.753,18.580,20.753 +5039,158.669,351.062,455.964,179.832,521.901,346.181,457.839,158.978,55.561,158.978,346.057,311.441,356.516,20.034,20.383,20.034 +5040,158.700,347.401,449.327,182.272,528.704,342.969,451.513,153.744,45.934,153.744,346.646,309.787,356.530,21.548,20.899,21.548 +5041,158.732,344.546,443.246,184.706,535.552,339.242,446.424,149.075,36.682,149.075,344.374,310.596,356.741,21.098,22.725,21.098 +5042,158.763,340.733,437.770,188.649,540.834,335.849,441.170,145.152,27.504,145.152,343.600,310.456,355.502,19.520,24.322,19.520 +5043,158.794,337.879,432.210,192.564,545.792,332.384,436.642,141.116,18.289,141.116,340.593,310.860,354.713,19.661,23.488,19.661 +5044,158.825,334.940,427.628,196.027,550.513,328.854,433.177,137.643,8.601,137.643,337.942,311.324,354.415,19.843,21.462,19.843 +5045,158.855,331.958,422.387,199.500,555.000,324.919,429.635,134.157,0.000,134.157,334.415,311.000,354.622,19.111,20.000,19.111 +5046,158.885,328.958,418.503,203.109,558.040,321.689,426.874,130.972,170.961,130.972,331.400,312.547,353.573,19.869,20.043,19.869 +5047,158.916,328.958,418.503,203.109,558.040,321.689,426.874,130.972,170.961,130.972,331.400,312.547,353.573,19.869,20.043,19.869 +5048,158.944,326.252,413.812,206.512,561.340,318.048,424.344,127.917,162.646,127.917,326.532,313.845,353.233,19.814,20.163,19.814 +5049,158.975,323.151,409.196,209.996,564.333,314.287,421.914,124.875,155.148,124.875,321.944,314.705,352.947,19.714,19.246,19.714 +5050,159.006,321.181,404.322,213.715,567.549,311.152,420.222,122.242,147.724,122.242,315.587,315.679,353.184,20.039,19.313,20.039 +5051,159.037,317.895,398.906,217.280,569.976,307.120,418.099,119.310,141.340,119.310,308.805,316.564,352.827,19.031,19.366,19.031 +5052,159.068,314.716,394.121,220.884,572.346,303.242,416.571,117.072,135.958,117.072,301.956,317.529,352.379,17.611,18.959,17.611 +5053,159.101,311.632,389.942,224.882,574.678,299.864,415.494,114.727,130.711,114.727,295.643,318.135,351.905,17.282,19.320,17.282 +5054,159.133,307.965,385.400,229.089,576.818,296.353,414.140,112.001,126.804,112.001,290.067,318.796,352.061,17.148,19.384,17.148 +5055,159.165,303.335,382.969,233.000,578.500,292.729,413.155,109.359,123.690,109.359,287.602,319.230,351.592,17.135,18.860,17.135 +5056,159.196,297.844,383.353,237.422,580.036,289.159,412.302,106.699,121.430,106.699,290.605,319.696,351.052,16.954,19.246,16.954 +5057,159.228,291.655,384.751,241.734,581.348,285.310,411.398,103.392,119.827,103.392,296.057,320.142,350.842,17.927,19.872,17.927 +5058,159.259,286.350,386.550,246.313,582.332,281.677,410.767,100.923,119.358,100.923,300.990,320.467,350.317,17.571,19.284,17.571 +5059,159.290,280.543,388.913,250.683,582.979,277.656,410.168,97.734,119.320,97.734,306.838,320.463,349.738,17.885,18.895,17.885 +5060,159.320,275.183,391.260,255.686,583.526,273.664,409.871,94.667,120.198,94.667,311.739,320.532,349.084,18.184,19.567,18.184 +5061,159.351,270.058,393.066,260.560,583.611,269.522,409.797,91.833,121.682,91.833,314.543,320.551,348.023,17.967,19.413,17.967 +5062,159.382,270.058,393.066,260.560,583.611,269.522,409.797,91.833,121.682,91.833,314.543,320.551,348.023,17.967,19.413,17.967 +5063,159.410,265.209,395.922,265.673,583.451,265.498,409.669,88.794,123.587,88.794,319.992,320.614,347.493,18.333,19.922,18.333 +5064,159.441,260.482,397.726,271.085,583.182,261.441,409.902,85.498,126.714,85.498,322.576,320.216,347.004,18.965,20.408,18.965 +5065,159.473,255.715,399.068,276.928,582.731,257.251,410.491,82.342,128.904,82.342,323.601,320.181,346.652,19.172,21.749,19.172 +5066,159.505,251.470,401.131,282.955,581.958,253.466,411.398,78.996,132.510,78.996,325.187,320.048,346.106,20.341,22.360,20.341 +5067,159.537,246.516,403.230,288.867,580.864,248.898,412.558,75.677,135.679,75.677,326.670,319.657,345.925,20.182,23.107,20.182 +5068,159.572,241.995,404.699,294.409,578.895,244.847,413.580,72.195,139.173,72.195,326.446,319.655,345.102,21.078,24.323,21.078 +5069,159.605,237.366,407.189,300.481,576.976,240.693,415.727,68.714,142.431,68.714,325.578,319.306,343.906,21.624,24.571,21.624 +5070,159.638,232.046,409.084,306.434,574.640,235.860,417.289,65.072,145.852,65.072,326.780,319.524,344.875,21.368,25.051,21.368 +5071,159.671,227.990,411.628,312.493,571.677,232.334,419.515,61.150,149.361,61.150,325.902,319.486,343.910,23.124,25.097,23.124 +5072,159.702,222.835,414.463,318.404,568.274,227.833,422.232,57.249,152.987,57.249,325.174,319.800,343.649,23.326,25.068,23.326 +5073,159.735,218.102,417.675,324.635,564.616,223.711,425.136,53.061,156.534,53.061,325.601,319.980,344.269,24.459,25.400,24.459 +5074,159.769,213.239,422.109,330.406,559.941,219.273,428.969,48.664,160.369,48.664,325.209,320.058,343.481,24.201,25.131,24.201 +5075,159.803,208.116,426.350,336.267,554.941,214.993,433.023,44.136,164.181,44.136,324.706,320.869,343.872,24.799,25.240,24.799 +5076,159.836,203.155,431.205,341.804,548.785,210.789,437.497,39.495,168.003,39.495,323.981,321.276,343.766,25.610,24.099,25.610 +5077,159.869,197.407,436.437,347.208,541.977,206.316,442.511,34.287,171.973,34.287,323.318,322.006,344.884,25.350,23.447,25.350 +5078,159.903,191.151,441.930,351.774,534.296,202.163,448.054,29.078,175.878,29.078,320.132,322.111,345.333,25.447,22.249,25.447 +5079,159.935,182.283,451.146,356.500,525.000,197.188,457.642,23.547,0.000,23.547,313.393,323.000,345.912,19.722,20.000,19.722 +5080,159.969,170.600,457.794,360.062,515.528,194.236,465.100,17.176,3.672,17.176,297.165,323.324,346.645,18.465,19.361,18.465 +5081,160.002,108.618,456.776,362.684,506.138,192.293,472.823,10.856,7.707,10.856,176.832,323.867,347.232,17.516,19.715,17.516 +5082,160.035,174.301,480.814,364.117,495.266,190.517,482.137,4.662,12.236,4.662,315.643,324.422,348.185,18.009,19.875,18.009 +5083,160.067,180.300,491.796,364.550,485.069,190.162,491.376,177.563,16.020,177.563,329.255,323.627,348.997,17.941,19.433,17.941 +5084,160.099,182.721,503.392,363.145,473.450,190.455,502.050,170.151,20.501,170.151,334.373,322.685,350.073,19.835,19.230,19.835 +5085,160.130,186.094,514.226,360.239,461.557,192.437,512.205,162.332,25.074,162.332,337.204,321.444,350.518,20.094,20.018,20.094 +5086,160.161,190.364,525.714,355.292,449.242,195.869,523.090,154.519,29.667,154.519,339.173,319.762,351.371,21.320,20.810,21.320 +5087,160.192,195.836,536.781,348.038,437.692,200.571,533.693,146.889,33.690,146.889,340.616,318.675,351.924,21.159,21.079,21.159 +5088,160.223,202.698,546.592,339.890,425.012,207.359,542.475,138.545,38.660,138.545,341.747,316.564,354.186,19.799,24.207,19.799 +5089,160.253,211.468,555.788,330.081,415.884,215.221,551.331,130.101,43.299,130.101,343.526,311.536,355.180,19.525,23.961,19.525 +5090,160.284,222.503,564.495,329.906,421.587,223.843,562.250,120.838,47.070,120.838,345.063,272.493,350.291,19.518,26.512,19.518 +5091,160.315,222.503,564.495,329.906,421.587,223.843,562.250,120.838,47.070,120.838,345.063,272.493,350.291,19.518,26.512,19.518 +5092,160.343,234.632,571.243,318.660,420.001,234.356,571.939,111.650,52.907,111.650,346.139,259.200,344.643,19.405,24.358,19.405 +5093,160.373,248.693,577.675,302.568,417.824,248.161,580.026,102.753,57.642,102.753,345.243,255.557,340.423,21.365,24.039,21.365 +5094,160.405,260.210,583.081,284.265,417.196,260.130,584.764,92.726,64.741,92.726,340.424,254.470,337.054,23.354,20.514,23.354 +5095,160.437,276.505,591.890,266.897,419.239,275.938,586.725,83.731,68.405,83.731,324.552,252.539,334.943,22.753,18.693,22.753 +5096,160.468,306.029,635.930,248.886,420.696,291.243,583.326,74.300,71.684,74.300,226.764,256.772,336.048,22.262,18.240,22.262 +5097,160.500,308.206,576.690,232.345,423.904,307.879,575.944,66.274,74.407,66.274,337.535,264.633,339.164,21.034,20.250,21.034 +5098,160.533,321.233,565.347,214.953,414.340,317.851,560.261,56.377,78.269,56.377,344.755,297.859,356.971,22.500,19.138,22.500 +5099,160.564,332.714,553.972,203.085,420.768,328.641,549.601,47.029,83.660,47.029,347.748,304.349,359.697,24.566,17.890,24.566 +5100,160.594,342.611,542.427,192.561,430.498,337.540,538.485,37.852,88.264,37.852,348.631,307.374,361.477,25.082,17.810,25.082 +5101,160.625,349.205,529.826,186.157,443.156,344.877,527.428,28.985,94.149,28.985,349.460,308.929,359.353,24.782,18.888,24.782 +5102,160.656,353.295,519.551,179.682,456.345,348.606,517.805,20.429,98.973,20.429,349.495,309.898,359.503,19.812,19.547,19.812 +5103,160.686,356.347,506.890,175.971,469.618,351.787,505.908,12.155,104.036,12.155,349.704,311.658,359.032,19.852,20.130,19.852 +5104,160.717,357.316,492.699,173.451,482.684,352.870,492.373,4.196,108.933,4.196,350.379,312.729,359.294,23.258,19.721,23.258 +5105,160.747,357.316,492.699,173.451,482.684,352.870,492.373,4.196,108.933,4.196,350.379,312.729,359.294,23.258,19.721,23.258 +5106,160.776,355.866,482.671,172.719,495.247,351.933,482.898,176.698,113.499,176.698,351.377,313.678,359.256,19.103,19.378,19.103 +5107,160.808,354.046,471.626,173.382,506.938,349.874,472.424,169.164,117.929,169.164,351.172,314.579,359.666,20.668,19.502,20.668 +5108,160.838,351.326,461.329,175.529,517.519,346.773,462.785,162.264,122.709,162.264,349.996,315.382,359.556,20.384,18.913,20.384 +5109,160.871,347.240,452.223,178.963,527.359,342.934,454.177,155.592,127.730,155.592,349.658,315.830,359.114,20.700,20.229,20.700 +5110,160.904,343.295,444.131,183.495,535.948,338.756,446.829,149.270,132.127,149.270,347.438,315.437,357.998,19.794,19.283,19.794 +5111,160.935,340.647,434.671,188.559,544.062,333.634,439.861,143.499,136.494,143.499,339.752,316.172,357.201,19.019,18.440,19.019 +5112,160.966,386.717,380.807,193.960,551.069,327.692,433.273,138.366,141.033,138.366,198.479,315.338,356.424,17.606,18.603,17.606 +5113,160.998,348.510,399.833,200.365,556.983,322.134,427.858,133.264,145.460,133.264,278.001,315.200,354.971,17.734,18.764,17.734 +5114,161.028,330.490,406.780,206.644,561.891,317.357,423.998,127.333,149.657,127.333,310.259,315.358,353.568,19.757,18.692,19.757 +5115,161.058,319.443,407.174,213.368,566.786,311.227,420.183,122.276,154.075,122.276,321.642,314.804,352.414,20.069,19.899,20.069 +5116,161.088,310.635,406.622,220.580,570.713,305.262,416.842,117.728,158.299,117.728,328.112,314.747,351.204,19.042,20.924,19.042 +5117,161.119,303.760,405.355,227.568,574.715,299.696,414.690,113.527,162.474,113.527,330.666,314.933,351.030,19.329,22.484,19.329 +5118,161.150,303.760,405.355,227.568,574.715,299.696,414.690,113.527,162.474,113.527,330.666,314.933,351.030,19.329,22.484,19.329 +5119,161.178,296.541,403.714,234.714,577.530,293.530,412.496,108.925,166.741,108.925,331.811,315.044,350.378,18.946,23.489,18.946 +5120,161.213,289.747,402.715,241.526,579.709,287.516,411.290,104.586,170.690,104.586,331.423,315.138,349.145,18.996,23.765,18.996 +5121,161.244,283.344,402.022,248.797,581.470,281.839,410.224,100.392,174.289,100.392,332.115,315.526,348.794,19.233,24.577,19.233 +5122,161.275,277.136,401.515,255.560,582.617,276.219,409.689,96.404,178.675,96.404,331.855,315.332,348.306,18.739,24.687,18.739 +5123,161.306,271.234,401.511,262.828,583.583,270.849,409.718,92.684,2.415,92.684,331.667,316.351,348.100,18.058,25.219,18.058 +5124,161.338,265.027,402.062,269.489,583.603,265.219,409.777,88.568,6.302,88.568,332.321,317.377,347.757,18.344,25.849,18.344 +5125,161.368,259.488,403.731,276.482,583.106,260.109,410.473,84.738,9.919,84.738,333.274,318.312,346.814,18.527,25.321,18.527 +5126,161.400,253.755,404.369,283.150,582.455,254.926,411.506,80.676,13.541,80.676,332.062,319.213,346.527,18.720,25.868,18.720 +5127,161.432,248.660,406.174,290.110,581.459,250.208,412.693,76.640,16.642,76.640,333.437,320.202,346.838,19.909,25.041,19.909 +5128,161.463,243.303,407.849,296.774,579.872,245.333,414.296,72.518,19.983,72.518,333.248,321.238,346.764,20.721,25.374,20.721 +5129,161.494,237.697,410.301,303.256,577.266,240.011,416.179,68.508,22.834,68.508,333.480,322.863,346.115,20.883,24.157,20.883 +5130,161.524,232.434,412.744,310.086,574.364,235.166,418.380,64.141,25.602,64.141,333.557,323.357,346.085,21.427,23.654,21.427 +5131,161.555,227.440,415.326,316.286,570.960,230.732,420.970,59.744,27.915,59.744,332.267,324.456,345.333,23.034,22.483,23.034 +5132,161.586,222.201,418.554,323.002,566.633,226.114,424.199,55.273,30.069,55.273,330.778,324.854,344.515,23.617,22.410,23.617 +5133,161.618,216.416,421.569,329.353,562.412,221.516,427.788,50.648,30.964,50.648,328.871,324.818,344.956,24.110,21.609,24.110 +5134,161.648,216.416,421.569,329.353,562.412,221.516,427.788,50.648,30.964,50.648,328.871,324.818,344.956,24.110,21.609,24.110 +5135,161.677,211.176,424.810,334.750,557.250,217.334,431.252,46.287,30.964,46.287,326.601,325.676,344.425,25.664,19.894,25.664 +5136,161.707,201.309,429.034,340.278,551.879,211.203,437.261,39.744,30.393,39.744,319.322,325.862,345.057,23.803,19.449,23.803 +5137,161.738,188.637,428.237,345.510,545.654,207.570,441.441,34.893,29.306,34.893,299.346,325.204,345.512,22.592,19.357,22.592 +5138,161.769,169.023,426.340,350.416,539.093,204.088,446.232,29.567,27.392,29.567,265.560,324.753,346.188,21.678,19.897,21.678 +5139,161.803,122.228,415.503,354.263,531.441,199.573,453.820,26.354,25.176,26.354,173.508,324.885,346.140,17.601,19.994,17.601 +5140,161.834,148.811,442.309,358.230,522.773,196.389,460.676,21.109,23.488,21.109,244.688,325.121,346.689,18.094,19.702,18.094 +5141,161.867,172.654,462.318,360.766,513.305,193.413,468.045,15.422,20.947,15.422,303.658,325.598,346.727,18.283,19.050,18.283 +5142,161.898,180.113,474.224,363.065,503.306,191.465,476.067,9.224,18.560,9.224,324.493,325.389,347.494,18.392,19.666,18.392 +5143,161.929,179.704,484.459,364.553,493.322,190.309,484.935,2.573,16.460,2.573,327.658,324.039,348.889,18.206,20.096,18.206 +5144,161.959,180.247,495.212,364.326,481.340,190.031,494.459,175.601,15.695,175.601,329.948,323.361,349.575,18.714,19.032,18.714 +5145,161.989,182.649,507.451,362.717,469.027,191.243,505.504,167.234,15.382,167.234,332.967,322.575,350.592,20.351,18.812,20.351 +5146,162.020,187.008,519.022,358.876,456.450,193.728,516.496,159.390,15.468,159.390,337.072,321.708,351.429,20.704,18.694,20.704 +5147,162.052,191.836,531.203,352.953,443.915,197.952,527.818,151.040,15.945,151.040,338.507,320.737,352.489,21.687,18.544,21.687 +5148,162.085,198.493,541.648,344.764,432.299,203.514,537.823,142.696,16.440,142.696,339.990,319.244,352.613,19.962,18.129,19.962 +5149,162.119,207.376,551.410,334.391,421.514,210.802,547.876,134.119,16.821,134.119,343.657,317.906,353.502,19.601,18.031,19.601 +5150,162.151,217.621,560.889,322.395,411.936,220.391,556.907,124.824,17.354,124.824,344.816,316.291,354.517,19.523,18.254,19.523 +5151,162.182,217.621,560.889,322.395,411.936,220.391,556.907,124.824,17.354,124.824,344.816,316.291,354.517,19.523,18.254,19.523 +5152,162.211,229.910,568.749,308.520,403.980,231.983,564.359,115.278,17.969,115.278,345.699,314.675,355.409,19.466,18.305,19.466 +5153,162.241,243.088,575.011,293.150,398.550,244.417,570.294,105.739,18.435,105.739,347.247,313.065,357.048,19.198,18.025,19.198 +5154,162.271,255.917,578.239,276.993,395.485,256.403,573.332,95.656,18.853,95.656,348.159,312.134,358.021,23.282,18.096,23.282 +5155,162.302,274.334,578.413,260.872,394.863,274.125,573.993,87.292,19.385,87.292,350.264,310.856,359.114,24.209,17.853,24.209 +5156,162.336,289.561,576.459,244.362,397.486,288.529,571.936,77.144,19.654,77.144,350.527,309.766,359.807,23.006,17.624,23.006 +5157,162.367,304.949,571.296,228.575,402.791,303.038,566.852,66.725,19.855,66.725,350.592,308.502,360.266,21.868,17.505,21.868 +5158,162.400,319.269,563.254,214.172,410.525,316.519,559.042,56.860,19.952,56.860,350.560,308.249,360.621,23.452,17.750,23.452 +5159,162.430,331.944,554.016,202.154,419.286,327.634,549.375,47.121,20.879,47.121,348.757,308.070,361.424,23.973,19.245,23.973 +5160,162.461,343.359,542.302,191.909,430.603,337.649,537.933,37.418,20.772,37.418,347.553,307.131,361.933,25.420,19.119,25.420 +5161,162.493,356.998,535.438,184.651,442.932,343.552,528.191,28.325,20.556,28.325,330.108,308.052,360.658,19.953,19.312,19.953 +5162,162.523,418.725,540.154,178.038,456.084,348.754,514.996,19.776,20.788,19.776,212.449,307.002,361.162,19.550,19.936,19.550 +5163,162.554,374.656,507.763,174.417,469.551,351.529,503.184,11.201,20.528,11.201,313.390,307.349,360.542,18.531,19.724,18.531 +5164,162.585,366.403,492.329,173.143,482.889,352.600,491.754,2.386,20.171,2.386,331.712,307.577,359.342,19.108,20.153,19.108 +5165,162.616,362.928,478.935,173.487,495.272,352.019,479.988,174.485,19.885,174.485,336.429,307.823,358.349,19.530,20.348,19.530 +5166,162.645,362.928,478.935,173.487,495.272,352.019,479.988,174.485,19.885,174.485,336.429,307.823,358.349,19.530,20.348,19.530 +5167,162.674,360.444,466.388,175.465,507.751,350.073,468.825,166.772,19.335,166.772,336.459,308.127,357.766,20.272,20.047,20.272 +5168,162.704,355.439,455.173,178.707,519.451,346.356,458.570,159.495,19.026,159.495,337.313,308.974,356.707,20.142,21.907,20.142 +5169,162.736,349.948,445.803,183.229,529.849,342.154,449.902,152.262,18.726,152.262,338.133,309.594,355.744,20.494,22.649,20.494 +5170,162.770,343.602,437.123,188.662,539.495,336.832,441.721,145.821,18.268,145.821,338.644,310.234,355.013,19.620,22.837,19.620 +5171,162.804,335.990,430.417,194.693,548.358,330.825,434.825,139.522,16.699,139.522,340.919,310.910,354.500,19.331,24.041,19.331 +5172,162.835,328.981,424.319,201.519,555.934,324.447,429.075,133.630,15.945,133.630,340.139,311.671,353.283,18.853,24.038,18.853 +5173,162.867,321.914,418.756,208.500,562.500,317.804,424.066,127.747,15.255,127.747,339.323,312.233,352.752,19.972,24.207,19.972 +5174,162.899,314.412,413.831,215.838,567.660,310.802,419.571,122.163,14.142,122.163,338.269,312.874,351.830,19.356,25.334,19.356 +5175,162.930,307.050,410.032,223.705,572.591,303.876,416.302,116.850,12.693,116.850,337.246,313.586,351.301,18.858,24.767,18.858 +5176,162.960,299.659,406.959,231.633,575.949,297.007,413.654,111.610,10.660,111.610,335.527,314.153,349.928,18.855,25.771,18.855 +5177,162.991,292.596,404.679,239.648,578.690,290.519,411.604,106.699,9.142,106.699,334.856,314.801,349.316,18.965,26.101,18.965 +5178,163.021,285.010,403.105,247.437,581.396,283.485,410.548,101.582,9.058,101.582,334.018,315.623,349.214,19.233,24.946,19.233 +5179,163.057,277.656,402.079,255.565,583.009,276.718,409.876,96.862,7.595,96.862,333.132,316.202,348.839,18.633,24.979,18.633 +5180,163.101,270.212,401.839,263.520,583.814,269.912,409.838,92.148,6.082,92.148,332.179,317.041,348.187,18.250,25.405,18.250 +5181,163.135,263.572,402.083,271.493,583.586,263.923,410.220,87.528,4.600,87.528,330.771,316.632,347.061,18.630,25.630,18.630 +5182,163.167,256.481,402.824,279.539,582.709,257.503,410.760,82.661,2.793,82.661,330.708,317.549,346.711,18.807,25.092,18.807 +5183,163.205,250.014,404.427,287.498,581.680,251.671,412.142,77.876,0.764,77.876,330.780,317.145,346.562,19.634,24.784,19.634 +5184,163.237,243.434,405.979,295.052,579.624,245.816,413.764,72.985,178.869,72.985,329.732,318.254,346.015,20.562,24.785,20.562 +5185,163.267,236.920,408.330,303.152,576.686,239.975,415.985,68.245,176.753,68.245,328.861,318.962,345.345,22.055,24.797,22.055 +5186,163.299,229.810,411.352,310.946,573.434,233.741,419.060,62.978,174.560,62.978,327.890,319.602,345.195,21.808,25.219,21.808 +5187,163.330,223.942,415.119,318.539,568.930,228.500,422.319,57.670,172.194,57.670,327.029,319.591,344.072,23.306,24.585,23.306 +5188,163.360,217.484,419.400,326.227,563.777,222.958,426.458,52.201,169.909,52.201,325.732,320.181,343.596,23.968,25.039,23.968 +5189,163.390,210.697,423.815,333.458,558.019,217.184,430.695,46.685,167.211,46.685,325.898,320.641,344.810,24.717,24.936,24.717 +5190,163.420,203.963,430.044,340.208,550.752,211.350,436.322,40.365,164.554,40.365,325.196,320.845,344.585,25.030,24.237,25.030 +5191,163.452,197.913,436.178,346.455,542.863,206.516,442.118,34.624,161.792,34.624,323.888,320.975,344.797,25.353,24.623,25.353 +5192,163.483,197.913,436.178,346.455,542.863,206.516,442.118,34.624,161.792,34.624,323.888,320.975,344.797,25.353,24.623,25.353 +5193,163.512,192.045,443.496,352.002,533.782,201.710,448.743,28.496,158.629,28.496,323.318,321.076,345.312,25.386,24.131,25.386 +5194,163.544,185.440,455.138,356.585,523.688,196.239,459.477,21.892,155.695,21.892,322.173,320.949,345.449,19.121,23.901,19.121 +5195,163.575,180.864,464.859,360.445,512.845,193.155,468.172,15.086,152.241,15.086,320.843,320.434,346.302,19.311,24.172,19.311 +5196,163.605,177.277,476.170,362.712,500.848,190.849,477.980,7.595,148.658,7.595,319.374,320.400,346.757,18.635,23.587,18.635 +5197,163.636,175.000,488.000,363.613,488.543,189.807,488.000,0.000,144.192,0.000,318.000,320.038,347.613,18.000,22.626,18.000 +5198,163.668,174.369,500.750,362.775,475.733,189.862,498.673,172.367,139.874,172.367,317.593,319.571,348.856,19.159,22.524,19.159 +5199,163.699,174.378,514.634,359.800,462.305,191.586,509.816,164.358,134.774,164.358,313.849,318.928,349.589,19.837,21.096,19.837 +5200,163.730,177.784,528.396,354.429,449.376,194.556,520.958,156.084,129.560,156.084,313.637,317.804,350.331,20.421,19.643,20.421 +5201,163.761,182.222,543.407,347.596,437.229,199.887,532.496,148.299,123.896,148.299,309.941,316.482,351.466,22.046,19.273,22.046 +5202,163.792,188.719,557.122,339.364,426.386,206.370,542.187,139.764,117.553,139.764,306.411,314.506,352.655,21.551,20.199,21.551 +5203,163.823,198.012,568.336,329.156,416.191,213.694,550.582,131.455,110.113,131.455,306.947,312.455,354.323,19.549,20.050,19.549 +5204,163.855,212.414,576.348,318.111,408.096,223.599,558.710,122.381,102.068,122.381,313.848,310.521,355.619,20.062,19.167,20.062 +5205,163.886,226.438,582.639,305.354,401.377,234.274,565.009,113.962,93.281,113.962,318.210,309.581,356.795,20.002,18.645,20.002 +5206,163.918,241.594,585.809,291.747,396.416,245.744,569.936,104.653,83.618,104.653,326.212,308.655,359.026,19.824,18.719,19.824 +5207,163.948,241.594,585.809,291.747,396.416,245.744,569.936,104.653,83.618,104.653,326.212,308.655,359.026,19.824,18.719,19.824 +5208,163.977,255.394,586.782,277.290,394.264,256.765,572.692,95.557,73.337,95.557,330.843,306.985,359.155,22.478,19.317,22.478 +5209,164.008,272.874,584.400,262.762,394.208,272.498,573.617,88.000,60.255,88.000,337.702,305.746,359.280,23.021,22.946,23.021 +5210,164.039,286.333,579.284,260.680,409.521,286.481,580.075,79.422,48.945,79.422,346.391,269.256,344.783,22.544,21.941,22.544 +5211,164.070,298.142,574.553,235.279,399.319,296.308,569.238,70.959,37.260,70.959,349.822,306.360,361.066,20.554,20.972,20.554 +5212,164.102,310.122,568.089,223.007,404.910,308.075,564.115,62.745,24.944,62.745,352.034,306.240,360.973,21.955,20.833,21.955 +5213,164.135,322.179,560.600,211.431,412.811,319.677,557.085,54.549,12.442,54.549,351.991,307.504,360.621,23.591,18.349,23.591 +5214,164.167,330.928,551.966,201.998,420.879,328.418,549.292,46.812,179.793,46.812,352.961,308.023,360.297,23.706,17.346,23.706 +5215,164.199,339.561,543.127,193.360,430.075,336.282,540.457,39.158,167.125,39.158,352.590,309.782,361.049,24.692,18.578,24.692 +5216,164.230,345.843,533.045,186.810,439.650,342.460,530.932,31.982,154.496,31.982,352.769,310.537,360.745,25.120,18.796,25.120 +5217,164.261,350.971,523.218,181.737,449.748,347.229,521.467,25.071,142.306,25.071,352.316,311.802,360.579,25.743,18.991,25.743 +5218,164.291,353.514,516.466,178.091,459.845,349.481,515.116,18.505,130.215,18.505,351.636,312.284,360.142,19.299,19.457,19.299 +5219,164.322,355.904,507.135,175.639,469.343,351.700,506.224,12.229,117.229,12.229,351.152,312.243,359.756,19.026,19.528,19.026 +5220,164.352,357.238,497.860,174.078,479.051,352.669,497.352,6.340,104.853,6.340,349.847,311.962,359.041,19.105,19.476,19.105 +5221,164.382,357.238,497.860,174.078,479.051,352.669,497.352,6.340,104.853,6.340,349.847,311.962,359.041,19.105,19.476,19.105 +5222,164.410,357.528,489.185,173.636,487.661,352.832,489.128,0.696,92.539,0.696,349.011,311.492,358.403,18.387,18.878,18.387 +5223,164.442,357.827,480.780,174.060,495.810,352.630,481.184,175.553,79.838,175.553,347.905,310.727,358.332,19.009,19.185,19.009 +5224,164.473,356.581,472.987,175.234,503.355,351.396,473.851,170.538,67.276,170.538,346.717,309.918,357.231,19.892,19.630,19.892 +5225,164.504,354.730,466.399,176.608,510.929,349.964,467.600,165.858,54.527,165.858,347.547,310.966,357.377,20.356,20.491,20.356 +5226,164.537,352.813,459.959,177.422,516.789,347.484,461.720,161.707,41.778,161.707,346.280,309.431,357.504,20.268,21.214,20.268 +5227,164.570,351.880,453.926,179.434,522.292,345.397,456.584,157.704,30.050,157.704,342.954,309.323,356.967,20.855,23.063,20.855 +5228,164.604,352.022,447.572,181.501,526.697,343.238,451.849,154.036,16.858,154.036,336.822,309.757,356.363,21.625,21.983,21.625 +5229,164.635,353.546,441.366,183.158,531.437,340.849,448.484,150.728,3.529,150.728,327.119,310.766,356.231,21.147,19.118,21.147 +5230,164.666,356.917,433.452,185.071,535.828,338.567,445.046,147.715,170.870,147.715,313.097,311.520,356.510,21.535,20.099,21.535 +5231,164.696,370.846,417.769,186.624,539.841,335.445,441.370,146.310,157.920,146.310,271.803,313.262,356.897,17.750,19.600,17.750 +5232,164.726,397.161,392.652,187.926,543.395,333.098,439.074,144.071,144.682,144.071,199.304,313.523,357.533,17.744,18.721,17.744 +5233,164.756,337.276,433.230,190.509,546.508,331.894,437.551,141.237,132.089,141.237,343.122,316.112,356.925,19.248,18.720,19.248 +5234,164.787,333.955,432.695,192.528,549.516,330.228,435.885,139.446,119.687,139.446,347.194,317.408,357.005,19.770,20.346,19.770 +5235,164.819,331.615,431.897,194.186,551.852,328.654,434.552,138.122,106.513,138.122,348.895,318.001,356.848,19.616,18.878,19.616 +5236,164.850,331.615,431.897,194.186,551.852,328.654,434.552,138.122,106.513,138.122,348.895,318.001,356.848,19.616,18.878,19.616 +5237,164.879,330.792,430.612,195.913,553.559,327.664,433.504,137.239,93.708,137.239,347.962,317.889,356.482,19.673,19.468,19.673 +5238,164.909,330.250,429.141,198.404,554.688,327.054,432.190,136.348,80.707,136.348,346.453,316.787,355.285,19.561,18.553,19.561 +5239,164.941,330.064,428.040,199.417,555.120,326.577,431.438,135.744,67.463,135.744,345.039,316.235,354.778,19.357,19.742,19.357 +5240,164.973,329.923,427.399,199.892,554.649,326.441,430.827,135.444,54.462,135.444,344.323,314.566,354.097,19.448,21.855,19.448 +5241,165.005,330.000,426.500,198.652,555.253,325.600,430.900,135.000,41.129,135.000,342.947,313.642,355.392,19.092,24.560,19.092 +5242,165.036,330.435,426.967,198.840,554.021,326.365,430.971,135.466,28.393,135.466,342.987,312.771,354.407,19.419,24.204,19.419 +5243,165.070,331.627,426.152,198.515,553.071,326.704,430.970,135.616,14.931,135.616,340.258,312.029,354.036,19.433,23.576,19.433 +5244,165.103,334.284,424.882,197.549,551.969,327.312,431.567,136.206,1.848,136.206,334.670,311.386,353.988,19.646,20.602,19.646 +5245,165.136,338.107,423.186,195.551,550.562,328.046,432.571,136.992,169.556,136.992,327.223,313.049,354.740,19.726,19.986,19.726 +5246,165.169,348.857,414.936,194.129,549.813,328.575,433.510,137.517,157.634,137.517,300.393,313.466,355.398,19.198,20.336,19.198 +5247,165.202,383.671,387.282,192.731,549.346,328.866,434.257,139.399,146.310,139.399,212.158,314.792,356.521,17.788,19.692,17.788 +5248,165.234,337.875,430.071,190.874,547.803,330.513,436.272,139.890,135.944,139.890,338.051,315.536,357.303,18.702,19.537,18.702 +5249,165.265,336.135,435.259,190.591,546.854,332.327,438.243,141.911,125.395,141.911,347.432,316.655,357.109,19.761,20.573,19.761 +5250,165.296,336.629,437.484,188.625,544.328,333.689,439.671,143.361,114.671,143.361,350.388,316.883,357.716,20.431,20.418,20.431 +5251,165.326,338.854,440.076,186.940,541.372,335.789,442.157,145.827,102.882,145.827,350.348,316.606,357.757,20.092,19.038,20.092 +5252,165.356,341.986,443.342,185.673,537.512,338.558,445.437,148.570,91.042,148.570,348.897,315.202,356.934,20.194,18.997,20.194 +5253,165.386,345.489,447.122,183.630,532.475,341.400,449.323,151.699,79.015,151.699,347.380,314.200,356.667,20.454,19.200,20.454 +5254,165.416,345.489,447.122,183.630,532.475,341.400,449.323,151.699,79.015,151.699,347.380,314.200,356.667,20.454,19.200,20.454 +5255,165.444,348.077,450.599,181.835,526.710,343.801,452.607,154.845,66.701,154.845,346.761,312.896,356.208,20.504,19.623,20.504 +5256,165.476,350.956,455.694,179.450,520.907,346.169,457.581,158.486,54.638,158.486,346.364,312.366,356.654,20.861,20.361,20.861 +5257,165.507,353.353,461.223,176.625,513.764,348.120,462.863,162.601,42.302,162.601,346.769,309.761,357.738,20.453,21.382,20.453 +5258,165.539,356.363,467.719,175.120,506.247,350.149,469.162,166.931,30.466,166.931,345.004,308.927,357.764,20.073,21.498,20.073 +5259,165.570,363.125,474.326,173.291,498.108,351.571,475.996,171.777,18.065,171.777,335.870,308.656,359.219,19.365,20.875,19.365 +5260,165.603,392.785,481.535,172.261,490.901,351.846,483.643,177.052,5.734,177.052,277.456,308.166,359.442,18.002,19.675,18.002 +5261,165.634,359.094,492.062,172.612,481.737,352.250,491.797,2.217,173.211,2.217,346.089,310.332,359.787,17.922,20.427,17.922 +5262,165.668,356.667,500.302,173.100,474.300,351.844,499.629,7.943,161.565,7.943,351.317,309.903,361.058,19.347,20.871,19.347 +5263,165.700,354.314,509.774,176.082,465.610,350.774,508.881,14.155,148.768,14.155,352.638,310.593,359.939,18.912,19.830,18.912 +5264,165.732,352.148,519.103,179.996,455.495,348.723,517.829,20.404,136.234,20.404,352.440,310.607,359.747,19.334,19.738,19.334 +5265,165.762,349.431,528.130,185.119,445.106,345.739,526.150,28.202,124.346,28.202,351.328,310.621,359.705,25.059,18.811,25.059 +5266,165.793,345.377,536.718,190.607,434.728,341.151,533.867,34.007,111.571,34.007,350.292,309.569,360.488,25.258,17.713,25.258 +5267,165.824,337.636,547.994,197.853,425.136,333.433,544.156,42.397,99.039,42.397,349.368,307.362,360.751,24.820,17.395,24.820 +5268,165.856,329.994,556.576,206.904,417.721,326.305,552.272,49.399,86.906,49.399,348.390,303.530,359.728,23.971,17.110,23.971 +5269,165.887,320.127,566.739,221.949,430.961,321.445,568.794,57.339,73.457,57.339,344.350,262.952,339.467,22.429,20.121,22.429 +5270,165.918,337.844,634.382,238.100,427.200,310.240,577.776,64.004,63.435,64.004,207.966,249.992,333.922,18.659,17.889,18.659 +5271,165.949,337.844,634.382,238.100,427.200,310.240,577.776,64.004,63.435,64.004,207.966,249.992,333.922,18.659,17.889,18.659 +5272,165.978,296.740,577.847,254.961,417.772,297.807,581.229,72.496,49.950,72.496,344.643,253.875,337.550,20.402,20.801,20.402 +5273,166.009,282.009,578.459,251.847,396.372,281.176,573.820,79.809,38.118,79.809,350.250,302.737,359.676,23.168,19.196,23.168 +5274,166.040,270.696,578.462,263.977,395.012,270.598,574.048,88.722,25.775,88.722,349.448,306.031,358.279,21.084,18.311,21.084 +5275,166.073,258.733,578.136,277.216,395.686,259.262,573.787,96.934,13.465,96.934,349.170,309.259,357.933,22.952,18.135,22.952 +5276,166.104,244.924,575.481,291.427,397.534,246.204,570.523,104.470,1.380,104.470,347.362,311.175,357.602,19.959,18.224,19.959 +5277,166.137,233.739,570.684,304.124,400.663,235.830,565.651,112.557,169.443,112.557,346.226,314.146,357.126,19.479,18.723,19.479 +5278,166.170,223.300,565.175,315.589,405.499,226.347,559.946,120.240,157.671,120.240,344.646,316.076,356.749,19.932,18.913,19.932 +5279,166.204,212.955,559.465,325.741,411.619,217.758,553.273,127.794,145.747,127.794,340.552,317.273,356.225,19.885,20.570,19.885 +5280,166.236,153.616,601.111,333.833,417.847,210.146,545.189,135.310,134.752,135.310,195.938,316.787,354.974,17.536,18.770,17.536 +5281,166.270,181.604,557.225,340.822,427.466,204.553,539.508,142.331,122.619,142.331,294.680,317.604,352.665,21.692,21.293,21.692 +5282,166.302,187.626,538.702,346.996,436.582,199.329,531.669,148.994,111.251,148.994,323.793,316.001,351.099,22.289,20.504,22.289 +5283,166.334,186.328,526.526,352.491,446.655,194.769,522.616,155.146,98.881,155.146,331.478,316.071,350.083,21.490,21.922,21.490 +5284,166.363,184.771,516.765,357.210,456.513,192.272,514.233,161.350,87.337,161.350,333.636,315.543,349.470,20.821,23.974,20.821 +5285,166.393,183.383,507.998,360.090,466.604,190.297,506.383,166.853,75.774,166.853,334.578,316.508,348.780,20.059,24.397,20.059 +5286,166.424,183.417,499.375,362.010,476.029,189.512,498.565,172.429,63.954,172.429,335.631,318.488,347.928,19.299,24.163,19.299 +5287,166.456,182.933,491.229,363.317,484.878,189.604,490.977,177.839,52.722,177.839,334.290,320.633,347.641,18.025,22.909,18.025 +5288,166.487,182.541,484.531,363.274,493.121,190.082,484.850,2.424,41.348,2.424,331.677,322.657,346.772,18.872,20.359,18.872 +5289,166.518,182.187,477.895,364.069,499.236,191.378,478.965,6.639,30.372,6.639,329.248,323.422,347.754,19.267,22.071,19.267 +5290,166.549,182.187,477.895,364.069,499.236,191.378,478.965,6.639,30.372,6.639,329.248,323.422,347.754,19.267,22.071,19.267 +5291,166.577,180.498,471.487,363.062,504.950,192.169,473.802,11.219,19.934,11.219,323.581,324.570,347.376,17.948,22.274,17.948 +5292,166.609,118.461,450.087,361.901,510.726,193.190,469.372,14.470,9.995,14.470,193.031,323.878,347.385,17.367,20.040,17.367 +5293,166.640,173.627,458.153,360.500,515.000,194.449,464.884,17.915,0.000,17.915,303.066,323.000,346.831,19.732,20.000,19.732 +5294,166.671,182.248,455.994,358.439,520.185,195.726,461.075,20.655,169.114,20.655,317.401,323.193,346.209,19.067,22.133,19.067 +5295,166.701,186.205,452.832,356.414,524.466,197.071,457.547,23.454,156.801,23.454,321.937,322.357,345.625,19.420,23.504,19.420 +5296,166.734,190.454,446.994,354.170,528.455,199.853,451.542,25.821,144.926,25.821,323.941,321.549,344.822,25.959,24.622,25.959 +5297,166.764,191.400,446.200,352.151,532.141,200.289,450.644,26.565,133.069,26.565,324.677,321.178,344.552,25.938,25.028,25.938 +5298,166.795,193.663,443.560,349.746,535.316,201.678,447.960,28.768,120.379,28.768,325.383,321.251,343.668,25.713,24.751,25.713 +5299,166.825,195.603,441.162,348.413,537.972,203.101,445.661,30.964,108.104,30.964,326.705,320.993,344.194,25.382,24.530,25.382 +5300,166.856,196.428,440.729,347.389,540.332,203.792,445.248,31.535,95.599,31.535,326.963,321.595,344.243,25.473,23.827,25.473 +5301,166.887,198.378,438.399,346.051,542.378,205.425,443.066,33.515,83.387,33.515,327.259,322.175,344.163,25.250,21.379,25.250 +5302,166.920,198.615,438.077,345.872,543.701,206.002,443.001,33.690,71.084,33.690,326.718,323.242,344.474,25.516,20.211,25.516 +5303,166.952,197.846,437.731,345.630,544.526,206.032,443.188,33.690,58.835,33.690,325.054,324.302,344.730,25.239,19.327,25.239 +5304,166.982,197.846,437.731,345.630,544.526,206.032,443.188,33.690,58.835,33.690,325.054,324.302,344.730,25.239,19.327,25.239 +5305,167.011,193.731,437.012,346.477,544.578,205.364,445.108,34.836,46.675,34.836,316.942,325.419,345.288,18.629,18.931,18.629 +5306,167.042,135.444,397.399,347.180,544.034,205.306,445.429,34.509,35.134,34.509,175.984,324.911,345.544,17.562,19.779,17.562 +5307,167.073,188.615,434.489,348.256,541.897,205.150,444.914,32.233,23.015,32.233,306.464,324.438,345.558,24.239,20.053,24.239 +5308,167.105,194.013,435.480,348.812,540.503,205.955,443.421,33.622,11.768,33.622,316.743,324.206,345.426,25.535,20.069,25.535 +5309,167.138,193.311,438.807,349.011,539.092,203.881,445.311,31.608,0.699,31.608,320.682,322.074,345.503,25.288,21.742,25.288 +5310,167.170,193.985,440.191,350.085,537.397,203.663,445.998,30.964,167.989,30.964,322.589,322.400,345.160,25.382,23.204,25.382 +5311,167.204,193.362,441.992,351.060,534.974,202.640,447.294,29.745,156.801,29.745,323.359,321.569,344.732,25.427,23.898,25.427 +5312,167.237,191.655,445.719,352.209,532.493,200.612,450.301,27.096,144.462,27.096,324.671,321.076,344.792,25.569,24.993,25.569 +5313,167.270,190.681,447.092,353.523,529.521,199.621,451.419,25.828,133.315,25.828,325.247,320.015,345.110,25.959,25.341,25.959 +5314,167.301,188.043,453.747,354.444,526.359,196.673,457.485,23.421,121.253,23.421,325.488,320.881,344.298,19.299,25.304,19.299 +5315,167.333,186.816,457.659,355.989,522.032,194.978,460.729,20.612,109.654,20.612,327.128,320.125,344.568,19.304,24.754,19.304 +5316,167.363,185.368,462.803,357.928,517.720,193.448,465.286,17.080,98.746,17.080,328.347,320.156,345.252,19.187,24.557,19.187 +5317,167.393,184.882,467.471,359.314,512.457,192.143,469.286,14.036,86.987,14.036,330.333,319.768,345.301,19.403,23.494,19.403 +5318,167.424,183.932,473.124,361.353,506.412,191.223,474.450,10.305,75.964,10.305,331.385,320.632,346.206,18.694,23.768,18.694 +5319,167.454,183.696,479.595,362.618,499.731,190.318,480.276,5.866,64.573,5.866,333.457,321.205,346.772,18.621,22.904,18.621 +5320,167.487,183.046,486.069,363.521,492.503,189.761,486.230,1.375,53.471,1.375,334.288,322.197,347.721,18.547,22.202,18.547 +5321,167.518,183.046,486.069,363.521,492.503,189.761,486.230,1.375,53.471,1.375,334.288,322.197,347.721,18.547,22.202,18.547 +5322,167.547,182.324,492.943,363.488,484.118,189.598,492.523,176.698,42.158,176.698,333.599,323.346,348.172,17.970,21.698,17.970 +5323,167.577,183.140,501.150,363.232,475.562,190.350,500.045,171.293,31.576,171.293,334.603,322.122,349.192,19.164,20.147,19.164 +5324,167.608,184.433,509.802,361.612,466.395,191.493,507.982,165.543,20.875,165.543,335.650,322.086,350.230,20.305,19.257,20.305 +5325,167.639,186.589,518.404,358.940,456.322,193.524,515.804,159.444,10.491,159.444,336.727,321.643,351.540,20.131,19.447,20.131 +5326,167.671,190.219,527.961,354.516,446.111,196.794,524.626,153.104,0.666,153.104,337.615,321.060,352.359,21.378,18.394,21.378 +5327,167.701,194.463,537.177,348.898,436.026,201.024,532.893,146.853,171.040,146.853,337.881,320.452,353.553,20.419,19.465,20.419 +5328,167.734,200.498,546.411,341.761,426.742,206.598,541.212,139.554,162.525,139.554,338.215,319.698,354.245,20.211,19.289,20.211 +5329,167.764,208.537,554.675,332.591,417.220,213.450,549.250,132.158,154.146,132.158,341.037,318.480,355.676,19.995,18.656,19.995 +5330,167.796,217.635,562.912,321.969,408.968,221.913,556.614,124.186,146.564,124.186,341.484,317.301,356.711,19.962,18.742,19.962 +5331,167.827,228.764,569.683,309.846,402.315,231.902,563.166,115.710,140.084,115.710,343.015,316.119,357.480,19.722,19.325,19.722 +5332,167.858,240.675,575.476,296.282,396.831,242.821,568.509,107.119,133.838,107.119,345.037,314.813,359.617,18.980,19.123,18.980 +5333,167.888,252.874,578.993,282.844,394.779,253.839,572.098,97.964,129.071,97.964,345.331,313.115,359.255,22.481,18.119,22.481 +5334,167.921,269.000,580.500,267.154,393.769,269.000,573.385,90.000,123.690,90.000,345.000,311.742,359.231,22.000,18.305,22.000 +5335,167.954,284.387,579.354,252.700,395.390,283.335,572.951,80.676,119.134,80.676,347.379,311.589,360.357,23.506,18.157,23.506 +5336,167.986,298.063,575.135,237.067,399.530,296.143,569.541,71.056,114.507,71.056,348.133,310.600,359.962,20.147,18.011,20.147 +5337,168.017,312.763,568.628,222.538,405.831,309.903,563.343,61.579,110.056,61.579,348.199,309.451,360.217,21.894,18.191,21.894 +5338,168.048,312.763,568.628,222.538,405.831,309.903,563.343,61.579,110.056,61.579,348.199,309.451,360.217,21.894,18.191,21.894 +5339,168.076,326.098,559.144,209.186,414.330,322.627,554.690,52.069,105.524,52.069,349.592,309.610,360.886,24.070,18.307,24.070 +5340,168.108,337.256,548.644,198.096,424.519,332.955,544.660,42.803,101.310,42.803,349.434,309.275,361.158,24.928,18.435,24.928 +5341,168.140,345.543,536.442,190.053,436.347,341.383,533.655,33.811,97.745,33.811,349.753,309.003,359.768,25.254,18.541,25.254 +5342,168.174,352.043,523.971,182.905,449.025,347.291,521.732,25.229,93.576,25.229,348.888,308.835,359.393,25.688,18.277,25.688 +5343,168.206,355.050,514.143,178.500,461.500,350.447,512.751,16.821,90.000,16.821,349.226,309.000,358.843,19.745,19.000,19.745 +5344,168.239,357.606,501.815,175.804,474.808,352.874,501.081,8.813,86.091,8.813,348.434,309.192,358.011,19.473,19.464,19.473 +5345,168.270,358.485,489.816,174.069,487.063,353.068,489.715,1.073,81.649,1.073,347.201,309.582,358.036,18.540,19.307,18.540 +5346,168.303,357.341,478.073,174.484,499.171,352.303,478.633,173.660,77.515,173.660,347.859,310.535,357.998,19.436,19.046,19.436 +5347,168.334,354.813,467.228,176.295,510.314,349.950,468.405,166.393,73.350,166.393,347.272,310.720,357.280,20.441,18.920,20.441 +5348,168.365,351.159,457.085,179.514,520.870,346.688,458.750,159.571,69.444,159.571,347.143,311.212,356.685,21.682,18.844,21.682 +5349,168.395,347.003,449.007,183.646,530.476,342.782,451.144,153.143,65.433,153.143,346.157,311.924,355.621,20.485,18.709,20.485 +5350,168.426,342.011,441.018,188.478,539.967,337.866,443.681,147.278,61.425,147.278,345.604,313.884,355.459,19.830,19.548,19.830 +5351,168.457,336.704,433.999,194.280,547.182,333.014,436.933,141.511,57.435,141.511,344.984,314.607,354.413,19.690,20.078,19.690 +5352,168.487,331.022,428.003,199.495,553.287,327.502,431.389,136.117,53.531,136.117,343.754,313.419,353.521,19.350,20.384,19.350 +5353,168.519,324.813,422.906,205.235,559.441,321.626,426.592,130.838,49.399,130.838,343.493,314.224,353.238,19.887,20.391,19.887 +5354,168.551,318.904,418.698,210.065,565.937,315.409,423.475,126.193,45.868,126.193,342.515,314.134,354.354,19.329,24.285,19.329 +5355,168.583,318.904,418.698,210.065,565.937,315.409,423.475,126.193,45.868,126.193,342.515,314.134,354.354,19.329,24.285,19.329 +5356,168.611,312.508,414.588,216.758,570.270,309.412,419.655,121.418,41.906,121.418,341.787,315.444,353.662,19.052,24.541,19.052 +5357,168.642,306.256,411.851,223.173,573.635,303.706,416.870,116.940,37.875,116.940,341.220,316.267,352.478,18.970,24.821,18.970 +5358,168.673,300.373,409.405,229.945,576.563,298.183,414.661,112.620,34.019,112.620,340.000,316.745,351.387,18.846,25.114,18.846 +5359,168.704,294.288,407.265,236.207,578.985,292.508,412.627,108.369,31.088,108.369,339.950,317.629,351.248,18.637,24.948,18.637 +5360,168.737,288.886,406.067,242.758,580.570,287.471,411.551,104.470,27.929,104.470,338.335,318.581,349.661,18.991,25.697,18.991 +5361,168.769,282.800,404.600,249.797,582.267,281.725,410.511,100.305,24.702,100.305,337.378,317.645,349.394,18.962,26.019,18.962 +5362,168.802,276.849,403.583,256.065,582.680,276.152,409.682,96.513,20.244,96.513,336.041,318.645,348.319,18.302,26.823,18.302 +5363,168.833,271.111,403.294,262.650,584.050,270.800,409.930,92.684,18.435,92.684,335.335,318.125,348.621,18.074,25.614,18.074 +5364,168.864,265.753,403.044,269.157,584.261,265.866,410.118,89.083,15.208,89.083,334.197,318.284,348.347,18.222,25.886,18.222 +5365,168.895,260.514,403.666,275.574,583.659,261.102,410.720,85.236,12.246,85.236,332.929,318.347,347.088,19.017,25.378,19.017 +5366,168.926,254.892,403.893,281.892,582.615,255.985,411.151,81.439,9.345,81.439,332.139,318.614,346.820,18.895,25.380,18.895 +5367,168.956,249.559,404.765,288.148,581.820,251.249,412.371,77.471,6.059,77.471,331.253,318.712,346.837,19.632,25.099,19.632 +5368,168.988,243.972,406.096,294.920,580.038,246.233,413.792,73.632,2.981,73.632,330.414,318.870,346.457,19.914,24.404,19.914 +5369,169.020,238.662,408.181,301.000,578.000,241.433,415.654,69.659,0.000,69.659,329.916,318.000,345.856,20.509,24.000,20.509 +5370,169.053,233.803,410.089,307.405,575.371,237.186,417.562,65.647,177.455,65.647,329.042,319.529,345.447,22.354,25.197,22.354 +5371,169.084,233.803,410.089,307.405,575.371,237.186,417.562,65.647,177.455,65.647,329.042,319.529,345.447,22.354,25.197,22.354 +5372,169.112,228.236,412.871,313.809,571.913,232.319,420.370,61.432,174.763,61.432,327.048,319.593,344.124,22.876,24.472,22.876 +5373,169.143,222.512,415.959,320.172,568.144,227.298,423.260,56.753,172.067,56.753,326.711,320.177,344.172,22.478,24.266,22.478 +5374,169.175,217.367,419.269,326.363,563.954,222.915,426.407,52.152,169.479,52.152,326.089,320.407,344.170,23.855,24.650,23.855 +5375,169.206,211.662,423.232,332.472,558.564,217.981,430.096,47.372,167.125,47.372,325.459,320.868,344.119,24.439,24.316,24.439 +5376,169.237,205.173,428.865,338.436,552.611,212.447,435.373,41.820,164.846,41.820,324.611,320.817,344.132,24.515,24.372,24.515 +5377,169.268,200.618,433.522,344.085,545.854,208.593,439.557,37.117,162.496,37.117,324.372,321.057,344.373,25.603,24.216,25.603 +5378,169.300,194.721,440.308,349.260,538.228,203.679,445.725,31.159,160.346,31.159,323.944,321.067,344.882,25.413,24.149,25.413 +5379,169.331,189.838,446.732,354.072,529.682,200.039,451.663,25.800,158.311,25.800,322.609,321.261,345.270,25.960,24.297,25.960 +5380,169.361,183.731,458.154,357.959,519.765,195.046,462.195,19.654,156.337,19.654,321.538,321.344,345.569,19.171,23.371,19.171 +5381,169.392,179.416,468.044,361.110,509.282,192.354,471.015,12.933,154.552,12.933,319.528,321.204,346.079,19.031,23.384,19.031 +5382,169.423,175.713,478.079,363.109,498.285,190.490,479.721,6.340,152.537,6.340,317.491,321.172,347.226,18.552,22.813,18.552 +5383,169.454,172.509,489.248,363.580,486.411,189.763,489.030,179.278,150.524,179.278,313.164,320.897,347.673,18.087,21.726,18.087 +5384,169.487,169.218,502.968,362.502,473.503,190.119,499.864,171.552,149.096,171.552,306.509,320.702,348.770,19.195,21.245,19.195 +5385,169.520,165.157,518.254,359.609,460.669,191.846,510.478,163.757,147.240,163.757,294.398,320.428,349.997,19.444,19.612,19.444 +5386,169.552,155.295,537.875,354.953,447.976,194.567,520.188,155.754,145.514,155.754,265.644,319.573,351.786,17.247,18.619,17.247 +5387,169.583,155.295,537.875,354.953,447.976,194.567,520.188,155.754,145.514,155.754,265.644,319.573,351.786,17.247,18.619,17.247 +5388,169.611,131.903,574.006,348.374,435.758,199.557,530.677,147.362,144.039,147.362,192.339,318.785,353.020,17.334,18.331,17.334 +5389,169.645,189.003,556.919,339.655,424.227,206.935,541.577,139.451,142.815,139.451,307.073,318.402,354.272,19.469,18.241,19.469 +5390,169.676,208.815,558.203,329.356,414.321,215.230,550.705,130.549,141.216,130.549,335.914,317.803,355.649,19.250,18.402,19.250 +5391,169.706,220.948,565.938,317.176,406.115,225.140,559.089,121.464,139.899,121.464,340.983,316.875,357.043,19.122,18.519,19.122 +5392,169.739,234.465,572.086,303.722,399.534,237.009,565.726,111.801,138.922,111.801,344.465,316.082,358.164,19.498,20.213,19.498 +5393,169.772,247.622,577.555,288.410,394.850,249.150,570.481,102.187,137.776,102.187,345.449,315.081,359.922,20.605,18.641,20.605 +5394,169.805,261.184,579.447,272.824,392.867,261.446,572.955,92.312,136.469,92.312,347.807,314.215,360.801,23.385,18.705,23.385 +5395,169.838,275.868,580.328,257.142,393.666,275.044,573.710,82.902,135.410,82.902,348.415,313.316,361.753,24.314,18.860,24.314 +5396,169.871,293.274,576.195,240.238,397.241,291.594,570.402,73.824,134.732,73.824,349.164,312.551,361.227,21.840,19.062,21.840 +5397,169.904,309.170,569.962,225.532,403.985,306.682,564.835,64.120,134.330,64.120,348.882,311.970,360.279,22.288,18.330,22.288 +5398,169.937,322.918,561.042,212.043,412.541,319.935,556.894,54.278,133.636,54.278,350.158,312.032,360.376,23.834,18.312,23.834 +5399,169.969,334.250,550.750,200.125,423.115,330.810,547.310,45.000,132.709,45.000,350.725,311.557,360.455,24.749,17.748,24.749 +5400,170.000,343.681,538.082,190.138,435.028,339.945,535.443,35.238,132.109,35.238,351.439,311.730,360.587,25.424,17.905,25.424 +5401,170.031,350.407,525.145,183.291,448.557,346.635,523.279,26.322,131.912,26.322,350.664,312.334,359.081,25.718,18.053,25.718 +5402,170.062,353.830,514.886,178.274,462.062,350.229,513.742,17.620,131.367,17.620,351.505,312.204,359.063,20.129,19.670,20.129 +5403,170.092,356.299,502.157,173.936,474.869,351.965,501.454,9.211,130.219,9.211,351.196,313.104,359.977,19.689,20.253,19.689 +5404,170.124,356.621,487.863,172.184,487.739,352.172,487.775,1.128,129.550,1.128,351.011,313.312,359.909,22.507,19.640,22.507 +5405,170.155,355.426,478.028,172.389,500.217,351.013,478.537,173.418,128.884,173.418,350.979,314.077,359.863,19.410,19.008,19.410 +5406,170.187,353.036,466.660,174.521,511.907,348.708,467.746,165.911,128.012,165.911,350.471,314.421,359.396,20.848,19.507,20.848 +5407,170.220,348.997,457.107,177.860,523.020,345.253,458.553,158.884,126.870,158.884,350.731,315.000,358.756,20.948,20.200,20.948 +5408,170.251,345.027,448.650,181.341,532.160,341.045,450.744,152.262,125.920,152.262,349.494,315.849,358.491,20.036,20.903,20.036 +5409,170.281,345.027,448.650,181.341,532.160,341.045,450.744,152.262,125.920,152.262,349.494,315.849,358.491,20.036,20.903,20.036 +5410,170.310,340.360,440.535,186.440,540.960,336.246,443.271,146.371,123.789,146.371,347.790,316.744,357.672,19.437,20.084,19.437 +5411,170.341,334.674,434.156,191.622,548.574,331.070,437.103,140.726,121.218,140.726,347.717,317.278,357.029,19.361,20.162,19.361 +5412,170.371,329.120,428.577,197.556,555.505,325.832,431.808,135.504,117.667,135.504,347.170,318.185,356.388,19.097,20.164,19.097 +5413,170.405,323.688,423.947,202.943,560.753,320.702,427.431,130.601,113.962,130.601,346.546,319.225,355.724,19.415,20.002,19.415 +5414,170.438,318.201,420.178,208.558,565.343,315.637,423.669,126.301,109.607,126.301,346.480,319.788,355.142,19.090,20.130,19.090 +5415,170.471,312.748,417.391,214.267,569.684,310.607,420.775,122.323,104.370,122.323,346.689,320.404,354.696,18.509,20.343,18.509 +5416,170.504,308.109,414.198,219.742,573.036,305.878,418.294,118.576,98.476,118.576,344.856,320.360,354.185,18.647,20.685,18.647 +5417,170.537,303.211,412.450,225.224,576.007,301.357,416.383,115.238,91.710,115.238,344.999,320.395,353.696,18.529,19.872,18.529 +5418,170.569,299.087,410.816,229.814,578.968,297.221,415.408,112.116,84.264,112.116,343.892,322.296,353.806,18.647,20.536,18.647 +5419,170.601,294.948,409.238,235.265,581.059,293.221,414.189,109.222,75.964,109.222,342.811,322.815,353.296,18.921,20.858,18.921 +5420,170.631,292.197,408.484,239.803,581.175,290.834,412.913,107.103,67.981,107.103,342.389,320.681,351.658,19.189,21.084,19.189 +5421,170.662,288.521,407.231,244.462,581.844,287.337,411.820,104.470,59.490,104.470,341.208,320.538,350.687,19.116,20.123,19.116 +5422,170.692,284.545,406.283,247.247,583.484,283.441,411.601,101.725,50.826,101.725,340.443,320.344,351.305,19.102,23.257,19.102 +5423,170.723,281.867,405.551,250.854,583.933,280.929,411.052,99.678,41.906,99.678,339.792,320.062,350.953,19.211,23.988,19.211 +5424,170.753,278.466,404.668,254.107,583.838,277.710,410.440,97.461,33.559,97.461,338.349,320.621,349.991,18.709,24.793,18.709 +5425,170.785,278.466,404.668,254.107,583.838,277.710,410.440,97.461,33.559,97.461,338.349,320.621,349.991,18.709,24.793,18.709 +5426,170.813,275.173,404.091,258.112,583.369,274.619,409.954,95.398,24.076,95.398,336.619,319.126,348.397,18.030,26.225,18.030 +5427,170.844,272.239,402.718,261.776,583.961,271.816,409.858,93.391,14.859,93.391,334.480,317.762,348.785,17.954,25.722,17.954 +5428,170.875,269.028,401.490,265.064,583.874,268.851,409.880,91.210,5.826,91.210,331.285,317.718,348.070,18.355,25.358,18.355 +5429,170.906,265.894,401.009,267.841,583.400,266.017,409.692,89.189,176.511,89.189,330.066,317.118,347.434,18.192,25.173,18.192 +5430,170.938,263.358,400.984,270.723,583.324,263.777,410.120,87.378,166.724,87.378,328.389,317.451,346.681,18.576,25.261,18.576 +5431,170.970,260.396,400.765,273.396,582.560,261.119,409.664,85.352,157.249,85.352,328.785,318.008,346.643,18.913,24.483,18.913 +5432,171.002,257.754,400.741,276.506,582.509,258.839,410.187,83.447,147.155,83.447,327.408,318.637,346.424,19.534,23.694,19.534 +5433,171.032,254.388,400.562,279.253,582.185,255.942,410.817,81.384,137.490,81.384,325.108,319.802,345.852,19.055,22.606,19.055 +5434,171.062,251.185,400.801,282.145,581.964,253.212,411.481,79.254,127.405,79.254,324.034,320.593,345.776,19.126,21.121,19.126 +5435,171.093,248.096,400.524,284.981,581.727,250.723,412.083,77.196,116.966,77.196,322.326,321.579,346.035,19.902,20.046,19.902 +5436,171.124,244.707,400.141,288.602,581.380,248.167,413.057,75.005,106.740,75.005,319.367,322.404,346.109,20.302,20.248,20.302 +5437,171.160,241.035,399.743,292.101,582.273,245.681,414.661,72.699,97.400,72.699,316.416,325.500,347.666,20.692,20.593,20.692 +5438,171.204,235.875,397.433,297.527,580.961,242.521,415.993,70.297,87.829,70.297,308.282,324.487,347.709,20.159,19.100,20.159 +5439,171.237,228.616,393.326,301.786,579.941,238.670,418.044,67.865,78.279,67.865,294.122,325.386,347.492,17.819,18.758,17.819 +5440,171.271,200.788,343.993,306.416,577.430,235.271,419.228,65.376,68.385,65.376,181.396,324.248,346.918,17.575,18.173,17.575 +5441,171.310,224.178,403.003,310.744,575.318,233.617,420.148,61.167,58.496,61.167,307.115,324.814,346.258,20.565,18.977,20.565 +5442,171.341,224.971,412.618,316.138,572.080,230.389,421.648,59.036,49.074,59.036,325.161,325.046,346.224,22.638,20.095,22.638 +5443,171.372,223.163,417.220,321.000,568.899,227.482,423.827,56.832,39.768,56.832,329.410,325.085,345.197,22.978,19.923,22.978 +5444,171.405,219.653,419.257,325.080,565.366,224.113,425.277,53.471,30.685,53.471,330.351,325.320,345.335,23.779,20.092,23.779 +5445,171.438,215.124,421.314,330.196,561.795,220.983,428.321,50.099,20.925,50.099,326.634,323.567,344.902,24.276,21.785,24.276 +5446,171.472,210.683,424.302,334.333,557.964,217.145,431.101,46.454,12.236,46.454,326.614,323.021,345.376,24.687,21.712,24.687 +5447,171.505,204.697,428.841,338.541,552.794,212.338,435.634,41.634,3.334,41.634,323.877,321.794,344.325,24.748,22.205,24.748 +5448,171.538,201.801,432.123,343.080,547.751,209.878,438.574,38.614,173.962,38.614,323.753,322.011,344.427,24.988,23.408,24.988 +5449,171.570,197.340,436.765,347.105,541.885,206.198,442.785,34.200,164.805,34.200,323.065,321.441,344.487,25.117,24.543,25.117 +5450,171.602,193.673,442.310,351.004,534.904,202.550,447.333,29.504,155.638,29.504,324.262,321.189,344.660,25.927,24.166,25.927 +5451,171.632,189.706,448.459,354.462,527.682,199.100,452.761,24.605,146.674,24.605,324.236,320.601,344.900,26.401,24.952,26.401 +5452,171.663,184.904,459.742,357.660,519.714,194.602,463.062,18.895,137.231,18.895,324.733,320.031,345.235,19.373,24.959,19.373 +5453,171.693,182.331,467.187,359.824,511.425,192.184,469.607,13.799,127.999,13.799,325.263,320.824,345.553,19.423,25.365,19.423 +5454,171.724,180.702,476.750,362.028,501.349,190.466,478.041,7.533,119.055,7.533,326.579,319.164,346.275,18.689,25.642,18.689 +5455,171.755,179.505,486.264,362.651,491.055,189.316,486.465,1.177,110.095,1.177,327.157,318.500,346.784,18.448,25.402,18.448 +5456,171.788,180.226,496.461,362.270,480.132,189.096,495.647,174.758,102.011,174.758,329.917,317.510,347.733,18.921,24.973,18.921 +5457,171.819,182.007,507.300,360.137,468.902,189.978,505.542,167.560,93.013,167.560,331.788,316.509,348.113,19.976,23.494,19.976 +5458,171.850,182.007,507.300,360.137,468.902,189.978,505.542,167.560,93.013,167.560,331.788,316.509,348.113,19.976,23.494,19.976 +5459,171.879,185.287,517.708,356.899,457.306,192.291,515.210,160.374,84.174,160.374,334.114,316.012,348.986,19.649,23.368,19.649 +5460,171.910,190.120,529.162,352.459,446.011,196.443,525.922,152.870,75.379,152.870,336.372,315.612,350.582,21.771,23.938,21.771 +5461,171.942,196.307,538.615,350.428,444.883,200.596,535.652,145.359,66.626,145.359,339.309,292.945,349.735,20.119,24.419,20.119 +5462,171.973,203.199,548.171,343.470,432.706,207.192,544.523,137.579,57.963,137.579,341.244,294.045,352.060,19.384,24.979,19.384 +5463,172.005,212.400,557.034,334.536,422.173,215.526,553.162,128.915,49.185,128.915,343.402,292.959,353.355,19.595,25.078,19.595 +5464,172.037,223.062,565.095,316.351,405.371,226.278,559.628,120.466,41.009,120.466,344.571,313.752,357.257,19.875,24.180,19.875 +5465,172.070,234.707,571.483,302.364,400.715,236.712,566.470,111.801,32.356,111.801,345.765,312.779,356.563,19.498,20.032,19.498 +5466,172.102,247.329,576.124,288.156,397.287,248.366,571.428,102.443,23.629,102.443,347.628,312.238,357.248,20.493,17.922,20.493 +5467,172.135,259.817,578.632,273.446,395.095,260.076,574.068,93.254,14.808,93.254,349.743,311.905,358.886,23.133,17.936,23.133 +5468,172.166,274.120,579.391,258.701,395.337,273.637,574.432,84.444,6.009,84.444,349.436,311.961,359.400,22.601,17.692,22.601 +5469,172.196,289.233,576.303,243.572,397.959,288.178,572.128,75.811,177.173,75.811,350.964,311.559,359.577,22.554,17.214,22.554 +5470,172.227,304.946,571.234,229.276,402.848,303.128,566.997,66.776,168.434,66.776,350.720,311.260,359.940,21.644,17.776,21.644 +5471,172.257,317.775,563.676,216.550,409.948,315.586,560.203,57.779,159.215,57.779,351.628,311.676,359.839,23.254,17.436,23.254 +5472,172.289,329.481,555.094,204.762,418.328,326.387,551.544,48.926,150.164,48.926,351.257,311.570,360.677,24.421,18.242,24.421 +5473,172.321,339.028,544.713,194.829,428.537,335.476,541.724,40.079,141.340,40.079,351.700,311.723,360.984,24.718,17.804,24.718 +5474,172.353,346.610,532.981,187.480,440.409,343.053,530.778,31.781,132.833,31.781,351.318,311.707,359.685,25.493,18.234,25.493 +5475,172.384,346.610,532.981,187.480,440.409,343.053,530.778,31.781,132.833,31.781,351.318,311.707,359.685,25.493,18.234,25.493 +5476,172.412,351.961,521.251,181.447,451.978,348.157,519.582,23.688,124.046,23.688,351.341,311.729,359.649,25.730,19.617,25.730 +5477,172.443,354.758,512.597,177.411,463.920,350.579,511.401,15.969,114.723,15.969,350.404,311.992,359.097,19.734,19.618,19.734 +5478,172.475,356.790,501.043,174.686,475.830,352.493,500.406,8.427,105.524,8.427,350.288,311.698,358.977,19.344,19.431,19.344 +5479,172.508,357.552,490.110,173.907,487.265,352.999,490.011,1.245,96.282,1.245,349.113,311.531,358.220,18.626,19.169,18.626 +5480,172.539,357.283,479.270,174.355,497.897,352.305,479.755,174.438,86.820,174.438,347.737,310.909,357.740,19.447,18.582,19.447 +5481,172.571,355.430,469.177,175.768,508.483,350.493,470.246,167.782,77.152,167.782,347.617,311.287,357.720,20.444,18.798,20.444 +5482,172.603,352.438,459.806,178.524,517.786,347.751,461.361,161.638,67.834,161.638,346.897,310.893,356.772,20.569,18.556,20.569 +5483,172.634,348.983,451.681,182.136,526.976,344.449,453.725,155.742,57.966,155.742,346.208,311.956,356.154,20.738,19.275,20.738 +5484,172.665,345.068,444.734,185.034,534.194,340.463,447.375,150.173,48.393,150.173,345.428,310.760,356.044,19.965,20.942,19.965 +5485,172.696,340.671,438.428,188.347,542.300,335.669,441.870,145.469,39.218,145.469,344.448,310.782,356.592,19.575,23.750,19.575 +5486,172.728,336.164,432.526,193.560,547.826,331.586,436.286,140.599,30.256,140.599,343.063,311.320,354.911,19.567,23.754,19.567 +5487,172.760,331.441,427.017,198.361,552.856,327.026,431.300,135.872,21.306,135.872,341.676,311.760,353.978,19.344,23.841,19.344 +5488,172.793,327.188,421.785,203.400,558.066,322.235,427.345,131.693,11.689,131.693,338.413,311.472,353.306,19.484,22.861,19.484 +5489,172.824,322.173,417.034,208.555,562.460,317.267,423.483,127.263,3.045,127.263,336.652,311.889,352.859,19.912,21.852,19.912 +5490,172.856,317.752,412.992,213.158,565.914,312.729,420.553,123.596,174.560,123.596,334.197,312.728,352.351,18.926,21.285,18.926 +5491,172.889,313.038,408.740,217.801,569.342,307.763,417.951,119.798,165.256,119.798,330.931,314.299,352.161,19.002,21.123,19.002 +5492,172.922,309.000,405.500,222.346,572.046,303.625,416.249,116.565,157.306,116.565,327.360,314.918,351.396,19.230,20.246,19.230 +5493,172.954,304.504,401.991,227.265,574.441,299.224,414.398,113.051,149.036,113.051,323.914,315.900,350.881,19.480,20.237,19.480 +5494,172.987,299.212,398.598,232.038,576.692,294.213,412.914,109.250,142.125,109.250,319.912,316.881,350.240,19.886,19.383,19.886 +5495,173.017,294.076,395.951,237.250,578.750,289.564,411.714,105.976,135.000,105.976,317.173,317.491,349.966,19.247,18.385,19.247 +5496,173.048,294.076,395.951,237.250,578.750,289.564,411.714,105.976,135.000,105.976,317.173,317.491,349.966,19.247,18.385,19.247 +5497,173.077,289.140,393.225,242.250,580.585,285.038,411.003,102.995,128.956,102.995,313.229,318.894,349.721,18.064,19.193,18.064 +5498,173.109,283.883,391.175,247.688,582.294,280.532,410.441,99.866,123.414,99.866,310.770,319.789,349.879,18.334,19.268,18.334 +5499,173.141,277.837,390.200,253.035,583.436,275.665,410.180,96.203,118.443,96.203,309.179,320.575,349.374,18.089,18.941,18.089 +5500,173.172,272.005,389.074,259.138,584.164,270.973,410.053,92.816,114.167,92.816,306.957,321.267,348.965,17.962,19.452,17.962 +5501,173.204,265.664,389.963,265.020,584.628,265.903,410.286,89.326,110.772,89.326,307.990,321.639,348.640,17.634,20.151,17.634 +5502,173.237,259.550,392.258,271.497,584.835,261.017,410.777,85.471,108.153,85.471,311.529,322.580,348.683,18.052,20.064,18.052 +5503,173.269,253.834,395.433,277.643,584.316,256.242,411.726,81.591,106.182,81.591,314.788,323.358,347.728,18.899,20.438,18.899 +5504,173.300,247.888,397.247,284.823,583.315,251.306,412.626,77.471,105.255,77.471,316.285,323.459,347.792,19.632,20.172,19.632 +5505,173.331,242.170,400.399,291.108,581.760,246.270,414.065,73.301,104.349,73.301,318.477,324.053,347.013,20.593,20.367,20.593 +5506,173.362,236.638,404.403,298.014,578.867,240.960,415.601,68.895,104.171,68.895,321.711,323.296,345.717,21.457,20.654,21.457 +5507,173.392,230.570,408.300,305.606,576.228,235.420,418.373,64.290,104.931,64.290,322.992,323.367,345.352,21.257,20.227,21.257 +5508,173.424,224.925,412.389,313.106,572.529,230.105,421.169,59.459,105.489,59.459,324.690,323.740,345.078,21.919,21.131,21.919 +5509,173.456,219.432,416.405,320.186,567.908,225.185,424.459,54.462,106.314,54.462,324.098,323.642,343.893,23.482,21.465,23.482 +5510,173.487,213.517,421.108,327.176,562.519,219.633,428.205,49.251,107.210,49.251,325.165,322.774,343.903,24.104,22.604,24.104 +5511,173.518,208.061,426.744,334.499,555.835,214.539,432.982,43.919,108.225,43.919,325.265,321.925,343.251,24.784,23.804,24.784 +5512,173.549,208.061,426.744,334.499,555.835,214.539,432.982,43.919,108.225,43.919,325.265,321.925,343.251,24.784,23.804,24.784 +5513,173.578,201.442,434.225,340.970,548.664,208.311,439.508,37.569,109.199,37.569,326.073,320.761,343.404,24.206,24.343,24.206 +5514,173.609,196.407,440.131,346.795,540.241,203.813,444.739,31.891,110.136,31.891,326.264,320.313,343.708,25.528,24.317,25.528 +5515,173.641,191.577,447.648,351.990,530.996,199.435,451.431,25.710,111.125,25.710,326.496,319.780,343.938,25.829,24.868,25.829 +5516,173.673,186.328,459.081,356.394,520.661,194.494,461.998,19.654,112.203,19.654,327.053,319.228,344.396,19.171,25.187,19.171 +5517,173.704,182.806,469.365,359.916,509.837,191.696,471.356,12.626,113.595,12.626,326.907,318.823,345.127,18.876,25.248,18.876 +5518,173.737,180.320,479.904,362.290,497.902,190.062,480.825,5.398,114.944,5.398,326.569,318.196,346.140,18.485,25.409,18.485 +5519,173.768,179.013,490.890,362.900,485.200,189.364,490.542,178.075,116.565,178.075,326.521,317.969,347.235,18.259,25.044,18.259 +5520,173.801,179.162,504.273,361.318,471.725,189.841,502.398,170.042,117.867,170.042,326.713,317.694,348.396,19.646,23.818,19.646 +5521,173.832,180.229,517.204,357.090,458.199,191.652,513.424,161.692,119.578,161.692,324.757,317.529,348.821,19.951,21.272,19.951 +5522,173.863,182.623,532.219,351.920,445.057,196.157,525.408,153.287,121.218,153.287,320.212,317.797,350.515,21.871,19.618,21.871 +5523,173.893,183.276,549.328,344.301,432.559,202.124,536.174,145.088,122.242,145.088,305.813,316.745,351.781,21.492,19.453,21.492 +5524,173.924,179.423,572.460,335.072,420.556,208.430,544.196,135.744,123.579,135.744,272.975,316.455,353.977,17.594,19.820,17.594 +5525,173.956,170.758,616.806,323.903,410.191,217.861,553.399,126.607,125.134,126.607,198.415,314.825,356.391,17.500,19.446,17.500 +5526,173.988,225.039,570.674,310.262,402.321,229.650,561.934,117.818,126.923,117.818,337.810,315.004,357.573,19.462,19.436,19.462 +5527,174.018,239.349,575.461,296.356,396.779,241.860,567.776,108.094,128.063,108.094,342.762,314.628,358.932,18.776,20.308,18.776 +5528,174.051,239.349,575.461,296.356,396.779,241.860,567.776,108.094,128.063,108.094,342.762,314.628,358.932,18.776,20.308,18.776 +5529,174.080,252.716,578.492,281.438,393.634,253.640,571.605,97.645,130.133,97.645,346.277,313.859,360.174,23.328,19.611,23.328 +5530,174.111,269.986,580.052,264.706,392.843,269.880,572.966,89.145,131.805,89.145,346.185,313.080,360.360,21.042,19.200,21.042 +5531,174.146,284.365,578.429,248.768,394.801,283.106,572.157,78.649,133.655,78.649,348.497,312.721,361.290,23.137,19.050,23.137 +5532,174.177,300.826,573.569,233.412,399.911,298.787,568.116,69.499,135.274,69.499,349.253,311.888,360.896,21.364,18.885,21.364 +5533,174.209,315.497,566.384,219.582,407.130,312.703,561.580,59.811,137.259,59.811,349.542,312.344,360.657,22.901,18.672,22.901 +5534,174.241,327.740,556.914,206.506,416.182,324.419,552.891,50.469,139.293,50.469,350.551,312.054,360.984,24.194,19.256,24.194 +5535,174.273,338.058,545.904,195.817,427.373,334.521,542.831,40.982,141.116,40.982,351.486,311.566,360.858,24.737,18.531,24.737 +5536,174.305,346.106,533.551,186.802,439.232,342.268,531.142,32.115,143.434,32.115,352.012,311.836,361.076,25.274,19.704,25.274 +5537,174.337,351.616,520.841,180.199,452.254,347.760,519.163,23.519,145.651,23.519,352.273,311.750,360.684,25.787,20.441,25.787 +5538,174.368,353.976,511.246,175.286,465.045,349.970,510.160,15.181,147.842,15.181,352.504,311.853,360.805,19.420,20.138,19.420 +5539,174.399,356.363,499.123,173.087,478.530,352.129,498.589,7.187,149.411,7.187,351.754,311.811,360.289,19.322,20.618,19.322 +5540,174.430,356.981,487.332,172.319,490.906,352.168,487.374,179.500,151.260,179.500,350.117,311.891,359.745,18.354,20.619,18.354 +5541,174.460,355.652,476.401,172.362,500.755,350.903,477.037,172.376,153.122,172.376,350.636,312.153,360.219,19.292,20.637,19.292 +5542,174.492,354.403,466.177,174.082,510.153,348.701,467.643,165.585,153.753,165.585,347.632,313.082,359.408,20.063,20.972,20.063 +5543,174.521,355.074,456.062,176.719,519.944,345.678,459.628,159.214,153.522,159.214,338.632,312.603,358.733,19.645,18.695,19.645 +5544,174.554,412.366,416.790,179.928,528.840,341.521,451.071,154.179,152.996,154.179,201.258,312.218,358.665,17.771,18.051,17.771 +5545,174.587,402.927,404.527,184.454,536.982,337.272,444.389,148.736,152.870,148.736,203.745,313.034,357.362,17.676,19.006,17.676 +5546,174.617,377.288,405.564,189.000,543.500,332.974,438.390,143.471,153.435,143.471,246.216,313.497,356.512,17.678,19.677,17.678 +5547,174.647,377.288,405.564,189.000,543.500,332.974,438.390,143.471,153.435,143.471,246.216,313.497,356.512,17.678,19.677,17.678 +5548,174.676,353.206,410.799,194.187,549.848,328.087,432.982,138.552,154.398,138.552,288.422,313.625,355.446,17.707,19.427,17.707 +5549,174.706,338.652,413.909,199.637,555.553,324.164,429.432,133.025,156.092,133.025,311.868,314.051,354.336,20.908,19.453,20.908 +5550,174.738,328.263,412.474,205.698,560.508,318.681,424.597,128.320,158.682,128.320,322.466,313.987,353.371,19.854,19.404,19.854 +5551,174.770,320.096,410.762,212.200,565.600,313.171,421.033,123.990,161.565,123.990,327.849,313.698,352.626,19.554,19.606,19.554 +5552,174.803,312.553,408.431,218.862,569.985,307.223,417.936,119.281,164.962,119.281,329.881,314.087,351.677,19.124,21.722,19.124 +5553,174.835,305.115,406.437,225.538,573.192,301.162,415.008,114.760,168.690,114.760,331.752,313.982,350.630,19.203,22.161,19.203 +5554,174.866,298.758,405.541,232.042,576.837,295.752,413.506,110.674,172.972,110.674,333.586,314.183,350.613,18.818,23.643,18.818 +5555,174.897,292.770,404.030,238.959,578.802,290.460,411.745,106.668,176.611,106.668,333.510,314.456,349.618,19.068,24.122,19.068 +5556,174.928,286.641,402.865,245.521,580.799,284.898,410.708,102.529,1.005,102.529,333.097,315.162,349.165,19.198,24.558,19.198 +5557,174.958,280.311,402.121,252.549,582.336,279.136,409.998,98.483,5.932,98.483,332.820,315.832,348.749,18.983,24.556,18.983 +5558,174.989,274.441,402.286,258.848,583.336,273.824,409.660,94.786,10.305,94.786,333.841,316.448,348.641,18.466,25.044,18.466 +5559,175.021,268.605,402.916,265.458,584.156,268.482,410.039,90.988,14.931,90.988,334.037,317.762,348.286,18.308,26.217,18.308 +5560,175.052,263.481,403.638,271.889,584.230,263.798,410.576,87.383,19.458,87.383,333.794,318.899,347.685,18.586,26.119,18.586 +5561,175.084,263.481,403.638,271.889,584.230,263.798,410.576,87.383,19.458,87.383,333.794,318.899,347.685,18.586,26.119,18.586 +5562,175.112,258.070,405.329,278.149,583.289,258.714,411.073,83.601,23.962,83.601,335.058,320.951,346.618,18.566,24.774,18.566 +5563,175.144,253.044,406.031,284.388,583.209,254.105,411.941,79.824,28.301,79.824,335.838,321.372,347.848,19.206,24.924,19.206 +5564,175.175,248.145,407.585,290.791,581.777,249.518,413.110,76.050,32.905,76.050,335.900,322.889,347.285,20.102,24.051,20.102 +5565,175.207,242.627,409.432,297.312,580.092,244.372,414.814,72.031,37.405,72.031,335.782,323.397,347.097,19.847,22.569,19.847 +5566,175.239,238.057,411.181,304.184,577.741,240.305,416.785,68.136,42.029,68.136,334.258,324.153,346.335,21.783,20.989,21.783 +5567,175.271,232.146,411.899,310.534,575.086,235.573,418.893,63.892,46.397,63.892,330.910,324.655,346.488,22.306,19.966,22.306 +5568,175.302,223.400,412.307,315.837,572.614,229.597,422.262,58.100,51.096,58.100,322.981,325.328,346.434,21.770,20.356,21.770 +5569,175.334,175.497,357.015,321.794,568.952,224.197,426.319,54.904,55.408,54.904,176.221,324.772,345.628,17.912,18.678,17.912 +5570,175.364,205.097,413.355,327.414,564.688,218.799,429.941,50.440,60.117,50.440,303.089,325.090,346.117,18.134,18.823,18.134 +5571,175.394,206.750,423.250,333.303,559.128,216.108,432.608,45.000,65.165,45.000,318.198,324.420,344.666,24.749,18.683,24.749 +5572,175.425,204.215,429.928,338.488,552.956,211.954,436.576,40.662,69.914,40.662,323.228,324.227,343.633,25.597,19.029,25.597 +5573,175.456,199.765,437.274,344.247,545.703,206.831,442.156,34.641,74.932,34.641,326.654,323.556,343.831,25.609,20.092,25.609 +5574,175.488,195.658,443.560,349.635,537.385,202.510,447.452,29.595,79.778,29.595,328.931,322.616,344.692,25.432,22.151,25.432 +5575,175.519,190.714,451.632,353.635,528.488,197.779,454.643,23.085,84.806,23.085,329.302,321.221,344.661,25.999,22.543,25.999 +5576,175.551,190.714,451.632,353.635,528.488,197.779,454.643,23.085,84.806,23.085,329.302,321.221,344.661,25.999,22.543,25.999 +5577,175.580,185.966,462.358,358.000,518.500,193.767,464.821,17.526,90.000,17.526,329.187,319.000,345.548,19.072,24.000,19.072 +5578,175.611,182.825,472.282,360.516,507.541,191.030,473.832,10.701,94.485,10.701,328.895,318.688,345.596,18.801,24.963,18.801 +5579,175.642,180.958,482.653,362.135,495.689,189.545,483.203,3.662,99.462,3.662,328.863,318.276,346.071,19.177,25.153,19.177 +5580,175.672,180.021,493.363,362.479,483.274,189.134,492.832,176.666,104.574,176.666,328.957,317.504,347.214,18.444,25.183,18.444 +5581,175.704,180.077,505.885,361.368,470.506,190.205,503.859,168.690,109.323,168.690,328.102,316.999,348.760,20.200,24.928,20.200 +5582,175.736,181.190,518.007,356.699,456.863,191.977,514.302,161.042,114.444,161.042,326.084,316.808,348.895,19.803,20.856,19.803 +5583,175.773,183.470,532.396,351.454,444.331,196.336,525.867,153.094,119.745,153.094,321.589,317.157,350.446,21.389,19.473,21.389 +5584,175.816,181.723,550.755,344.576,432.736,202.347,536.388,145.138,123.481,145.138,301.632,316.183,351.903,22.403,19.321,22.403 +5585,175.850,169.170,580.753,335.799,420.993,208.052,543.706,136.384,126.617,136.384,246.862,316.190,354.273,17.389,20.007,17.389 +5586,175.883,184.566,594.467,325.494,412.421,217.166,553.335,128.399,130.426,128.399,250.474,316.282,355.443,19.309,17.762,19.309 +5587,175.920,236.370,573.719,302.230,399.852,238.788,567.123,110.136,136.065,110.136,343.723,314.805,357.773,19.153,20.069,19.153 +5588,175.951,249.233,577.809,286.489,394.850,250.481,571.009,100.402,139.748,100.402,345.706,315.102,359.532,22.541,17.633,22.541 +5589,175.982,249.233,577.809,286.489,394.850,250.481,571.009,100.402,139.748,100.402,345.706,315.102,359.532,22.541,17.633,22.541 +5590,176.010,263.678,579.489,270.235,393.315,263.761,573.166,90.754,143.186,90.754,347.194,314.401,359.842,23.130,17.682,23.130 +5591,176.041,279.224,579.190,255.157,395.379,278.402,573.661,81.545,147.450,81.545,348.348,313.531,359.526,23.485,16.267,23.485 +5592,176.073,295.313,575.167,239.539,399.388,293.893,570.574,72.820,151.167,72.820,349.590,312.941,359.205,20.949,16.127,20.949 +5593,176.106,309.830,568.822,224.688,405.462,307.782,564.758,63.259,154.815,63.259,350.195,312.323,359.297,21.337,16.343,21.337 +5594,176.139,322.795,560.153,211.670,413.967,320.526,557.029,54.003,158.481,54.003,351.723,311.799,359.446,23.934,16.368,23.934 +5595,176.171,333.750,550.250,199.985,423.600,330.896,547.396,45.000,162.110,45.000,352.139,310.901,360.211,24.749,17.160,24.749 +5596,176.204,342.776,539.669,190.287,434.609,339.004,536.903,36.254,165.804,36.254,351.485,310.201,360.839,24.999,17.217,24.999 +5597,176.236,349.203,526.824,183.060,447.324,345.688,524.988,27.580,169.435,27.580,352.278,309.980,360.210,25.781,18.674,25.781 +5598,176.267,353.624,517.802,177.661,459.767,348.782,516.101,19.363,172.742,19.363,349.972,308.962,360.237,19.987,19.461,19.987 +5599,176.297,357.077,506.158,173.991,468.770,350.796,504.892,11.397,177.797,11.397,348.101,308.618,360.914,19.226,19.678,19.226 +5600,176.328,378.199,495.570,172.500,480.500,352.179,493.800,3.890,0.000,3.890,308.172,309.000,360.334,18.621,19.000,18.621 +5601,176.358,396.706,480.090,172.623,492.877,351.907,482.343,177.122,4.343,177.122,269.464,308.315,359.174,17.592,18.466,17.592 +5602,176.388,369.942,469.385,173.811,503.969,350.589,472.972,169.501,7.326,169.501,319.566,308.475,358.932,20.356,18.774,20.356 +5603,176.419,362.006,459.151,176.556,514.192,348.175,463.390,162.962,10.305,162.962,329.010,308.667,357.943,20.526,20.035,20.526 +5604,176.451,362.006,459.151,176.556,514.192,348.175,463.390,162.962,10.305,162.962,329.010,308.667,357.943,20.526,20.035,20.526 +5605,176.479,354.704,450.626,179.955,523.058,344.794,454.915,156.598,13.196,156.598,335.092,309.368,356.688,20.958,21.298,20.958 +5606,176.510,348.530,443.337,184.335,531.924,340.880,447.625,150.728,17.301,150.728,338.009,309.968,355.548,19.891,22.163,19.891 +5607,176.543,342.067,437.036,188.909,540.248,336.160,441.140,145.207,20.163,145.207,340.571,310.833,354.956,19.389,23.952,19.389 +5608,176.574,335.652,431.367,194.118,547.909,330.952,435.328,139.871,22.810,139.871,342.072,311.077,354.366,19.519,24.604,19.519 +5609,176.605,330.250,426.250,199.305,553.939,326.091,430.409,135.000,25.796,135.000,342.240,312.706,354.002,19.092,25.345,19.092 +5610,176.636,324.429,421.902,204.919,559.917,320.640,426.380,130.236,28.787,130.236,341.645,313.729,353.378,19.672,25.301,19.672 +5611,176.668,318.431,417.592,210.838,565.103,314.957,422.437,125.643,30.964,125.643,341.302,314.357,353.225,19.444,25.039,19.444 +5612,176.698,312.624,414.465,216.815,569.521,309.615,419.387,121.440,33.311,121.440,341.455,315.348,352.994,19.061,25.000,19.061 +5613,176.728,306.944,411.937,222.637,573.114,304.309,417.035,117.330,35.707,117.330,340.830,316.432,352.307,19.134,25.223,19.134 +5614,176.760,301.408,409.877,228.631,576.424,299.131,415.132,113.422,38.157,113.422,340.597,317.055,352.051,18.839,25.050,18.839 +5615,176.791,295.943,408.229,234.399,578.934,294.040,413.553,109.668,40.135,109.668,340.305,317.277,351.613,18.844,24.690,18.844 +5616,176.822,291.008,407.280,240.081,581.366,289.454,412.658,106.113,42.510,106.113,340.370,317.836,351.566,18.915,24.879,18.915 +5617,176.853,285.771,406.282,245.750,582.750,284.626,411.431,102.529,45.000,102.529,340.798,318.905,351.346,18.981,24.042,18.981 +5618,176.884,285.771,406.282,245.750,582.750,284.626,411.431,102.529,45.000,102.529,340.798,318.905,351.346,18.981,24.042,18.981 +5619,176.912,280.607,405.463,251.431,584.501,279.704,411.170,98.992,46.861,98.992,339.685,319.949,351.241,19.029,23.927,19.029 +5620,176.943,275.597,405.050,257.526,584.538,275.036,410.541,95.837,48.705,95.837,338.711,320.589,349.750,18.141,22.113,18.141 +5621,176.975,270.699,405.264,262.514,585.576,270.458,410.686,92.545,50.450,92.545,339.287,321.391,350.140,18.293,23.858,18.293 +5622,177.006,266.378,405.025,268.249,585.519,266.425,410.753,89.534,51.875,89.534,338.095,322.164,349.551,18.121,23.112,18.121 +5623,177.039,262.059,405.687,274.055,585.081,262.396,410.985,86.367,52.896,86.367,338.350,322.605,348.969,18.407,22.014,18.407 +5624,177.071,257.802,406.255,278.816,585.011,258.449,411.827,83.379,53.241,83.379,337.537,323.001,348.756,18.545,21.680,18.545 +5625,177.104,253.843,406.954,284.167,584.128,254.767,412.362,80.300,53.243,80.300,337.557,323.204,348.529,19.116,20.499,19.116 +5626,177.136,249.661,406.979,289.479,582.742,251.050,413.139,77.289,52.240,77.289,335.173,323.814,347.803,19.503,20.477,19.503 +5627,177.167,246.095,408.169,294.129,581.679,247.722,414.018,74.450,50.974,74.450,335.790,323.887,347.931,20.399,20.117,20.399 +5628,177.198,242.350,409.050,298.703,580.099,244.350,415.050,71.565,49.214,71.565,334.885,324.093,347.535,20.871,20.473,20.871 +5629,177.229,238.575,410.551,303.528,578.474,240.913,416.600,68.868,46.715,68.868,334.155,324.133,347.125,21.482,20.315,21.482 +5630,177.259,234.834,411.394,307.493,576.397,237.631,417.749,66.240,43.466,66.240,332.810,324.117,346.698,22.050,20.272,22.050 +5631,177.291,231.938,413.535,311.765,574.163,234.759,419.136,63.260,39.644,63.260,333.650,324.839,346.192,22.504,21.143,22.504 +5632,177.323,228.545,415.544,315.707,571.484,231.408,420.571,60.337,34.811,60.337,334.137,325.149,345.709,22.875,20.859,22.875 +5633,177.354,224.852,417.052,319.939,569.107,228.559,422.859,57.450,29.495,57.450,331.107,324.457,344.885,23.261,21.628,23.261 +5634,177.385,224.852,417.052,319.939,569.107,228.559,422.859,57.450,29.495,57.450,331.107,324.457,344.885,23.261,21.628,23.261 +5635,177.412,220.652,418.748,323.749,566.266,225.125,425.030,54.551,23.051,54.551,329.084,324.580,344.509,23.297,22.182,23.297 +5636,177.444,216.895,420.481,328.207,563.463,222.350,427.343,51.520,16.909,51.520,327.320,323.272,344.853,24.368,22.197,24.368 +5637,177.476,212.996,422.896,332.288,559.858,219.271,429.923,48.240,9.951,48.240,325.549,322.720,344.389,24.429,22.049,24.429 +5638,177.508,209.000,425.500,336.465,555.756,215.805,432.305,45.000,2.684,45.000,325.976,321.678,345.224,24.749,22.507,24.749 +5639,177.540,204.627,429.853,340.088,551.514,212.132,436.343,40.855,175.030,40.855,324.398,321.829,344.242,25.287,23.563,25.287 +5640,177.573,200.852,432.897,343.870,546.325,209.073,439.246,37.680,166.759,37.680,323.494,321.628,344.270,25.584,23.591,25.584 +5641,177.606,196.923,437.362,347.647,540.588,205.599,443.117,33.555,158.839,33.555,323.682,321.285,344.505,25.247,24.006,25.247 +5642,177.638,192.856,442.583,351.221,534.629,202.146,447.792,29.281,150.376,29.281,323.694,320.751,344.998,25.335,24.732,25.335 +5643,177.670,189.160,449.515,354.468,527.752,198.634,453.726,23.962,142.306,23.962,324.200,320.291,344.935,25.993,25.069,25.993 +5644,177.700,185.189,458.360,357.256,520.285,194.907,461.869,19.855,133.854,19.855,324.413,319.831,345.076,19.151,24.744,19.151 +5645,177.731,182.900,465.882,359.614,512.480,192.649,468.436,14.682,124.992,14.682,325.198,320.238,345.353,19.600,25.642,19.600 +5646,177.761,181.125,474.926,361.601,503.293,190.684,476.402,8.781,116.030,8.781,326.694,318.469,346.038,18.633,25.452,18.633 +5647,177.792,180.482,483.868,362.511,493.818,189.711,484.322,2.816,107.475,2.816,327.637,318.250,346.116,19.010,25.630,19.010 +5648,177.823,180.506,493.111,362.248,483.739,189.028,492.637,176.820,98.489,176.820,329.825,317.646,346.894,18.472,24.800,18.472 +5649,177.855,181.531,503.565,361.000,473.000,189.531,502.180,170.172,90.000,170.172,331.628,316.000,347.866,19.838,24.000,19.838 +5650,177.887,184.131,513.579,358.769,463.118,191.195,511.433,163.106,80.811,163.106,334.003,314.485,348.766,20.264,24.447,20.264 +5651,177.917,184.131,513.579,358.769,463.118,191.195,511.433,163.106,80.811,163.106,334.003,314.485,348.766,20.264,24.447,20.264 +5652,177.946,188.072,523.912,356.947,457.030,194.168,521.203,156.038,71.996,156.038,336.283,303.594,349.625,20.408,24.656,20.408 +5653,177.977,193.736,534.397,352.943,446.522,199.000,531.278,149.349,63.153,149.349,339.050,301.436,351.289,22.399,24.806,22.399 +5654,178.008,199.767,543.105,342.833,429.616,204.478,539.386,141.710,54.421,141.710,341.217,314.457,353.222,20.366,24.937,20.366 +5655,178.039,207.463,552.007,333.685,419.378,211.467,547.829,133.774,45.490,133.774,343.035,313.944,354.607,19.557,25.032,19.557 +5656,178.072,217.068,560.695,324.066,409.991,220.739,555.494,125.218,37.405,125.218,344.184,313.164,356.916,19.655,25.139,19.655 +5657,178.105,228.300,567.900,310.342,404.568,230.521,563.459,116.565,28.887,116.565,345.696,313.155,355.627,20.125,19.927,20.125 +5658,178.137,239.625,573.535,296.933,399.679,241.151,568.900,108.228,20.501,108.228,346.597,312.854,356.356,19.138,18.065,19.138 +5659,178.169,253.425,577.747,282.857,396.160,254.252,572.983,99.848,12.221,99.848,348.550,313.248,358.220,22.189,18.119,22.189 +5660,178.202,264.149,579.004,268.486,394.692,264.169,573.848,90.222,4.041,90.222,348.028,312.130,358.342,23.019,18.009,23.019 +5661,178.233,278.428,578.438,254.463,395.486,277.735,573.679,81.720,175.886,81.720,349.756,312.064,359.375,23.296,18.203,23.296 +5662,178.264,293.205,575.660,240.227,398.559,291.817,570.978,73.481,167.905,73.481,350.175,311.709,359.942,21.555,18.508,21.555 +5663,178.294,307.290,570.265,226.765,403.608,305.188,565.761,64.983,160.051,64.983,350.270,311.668,360.210,21.084,18.668,21.084 +5664,178.325,319.784,563.012,214.760,410.491,317.106,558.956,56.566,152.140,56.566,350.853,311.454,360.574,23.341,18.604,23.341 +5665,178.355,330.087,554.070,204.047,418.966,327.135,550.761,48.262,144.462,48.262,351.708,311.892,360.575,24.398,18.135,24.398 +5666,178.386,339.237,544.457,194.632,428.573,335.636,541.431,40.038,136.866,40.038,351.703,311.561,361.112,25.238,18.634,25.238 +5667,178.417,339.237,544.457,194.632,428.573,335.636,541.431,40.038,136.866,40.038,351.703,311.561,361.112,25.238,18.634,25.238 +5668,178.445,346.352,533.896,187.646,439.121,342.434,531.423,32.256,129.536,32.256,351.057,311.770,360.324,25.141,18.705,25.141 +5669,178.477,351.602,522.943,182.153,450.331,347.543,521.071,24.760,121.711,24.760,350.685,311.843,359.625,25.700,20.555,25.700 +5670,178.509,354.091,515.132,177.784,461.128,349.823,513.782,17.547,114.322,17.547,350.865,311.924,359.817,19.552,19.914,19.552 +5671,178.540,356.387,504.439,175.473,472.142,352.220,503.656,10.633,106.753,10.633,350.576,311.870,359.056,19.600,20.617,19.600 +5672,178.573,357.606,494.471,174.005,482.583,353.012,494.151,3.976,99.345,3.976,349.547,311.856,358.757,19.413,19.959,19.413 +5673,178.606,357.918,484.358,173.606,492.569,352.832,484.552,177.814,91.882,177.814,348.624,311.456,358.804,19.337,19.295,19.337 +5674,178.639,356.638,475.457,174.543,501.807,351.806,476.145,171.901,84.596,171.901,348.458,311.542,358.221,19.378,18.848,19.378 +5675,178.670,354.615,466.936,176.304,510.814,349.826,468.114,166.178,76.981,166.178,347.533,311.730,357.397,20.407,19.137,20.407 +5676,178.701,351.966,458.949,178.742,518.844,347.405,460.519,161.010,69.376,161.010,347.275,311.559,356.924,20.447,19.634,20.447 +5677,178.732,349.108,452.119,181.406,526.083,344.530,454.153,156.038,61.949,156.038,346.538,311.939,356.557,20.815,19.693,20.815 +5678,178.762,346.029,446.303,184.604,532.852,341.493,448.776,151.390,54.395,151.390,345.651,312.474,355.984,20.351,20.106,20.351 +5679,178.792,342.399,440.679,187.363,538.239,337.948,443.535,147.305,46.614,147.305,345.188,310.795,355.764,20.072,20.906,20.072 +5680,178.824,338.973,436.181,189.922,544.357,334.205,439.689,143.653,38.884,143.653,344.651,312.043,356.490,19.103,24.357,19.103 +5681,178.855,335.257,431.672,194.049,548.771,330.865,435.381,139.821,31.247,139.821,343.881,311.966,355.378,19.389,24.495,19.389 +5682,178.887,332.343,427.988,197.665,551.968,327.943,432.132,136.718,23.459,136.718,341.909,312.122,353.998,19.620,24.266,19.620 +5683,178.918,332.343,427.988,197.665,551.968,327.943,432.132,136.718,23.459,136.718,341.909,312.122,353.998,19.620,24.266,19.620 +5684,178.947,328.919,424.262,201.028,555.667,324.333,429.069,133.655,16.060,133.655,340.141,312.214,353.428,19.110,23.486,19.110 +5685,178.978,326.719,420.716,204.456,558.824,321.651,426.575,130.855,7.740,130.855,337.890,312.245,353.383,19.931,22.444,19.931 +5686,179.009,323.537,417.373,207.007,561.262,318.267,424.118,127.999,179.444,127.999,336.019,312.112,353.138,20.021,21.378,20.021 +5687,179.041,321.487,414.018,209.788,563.574,315.500,422.308,125.838,171.529,125.838,332.378,313.689,352.830,19.366,21.192,19.366 +5688,179.072,319.692,410.462,212.189,565.350,312.871,420.693,123.690,162.979,123.690,327.828,314.531,352.421,18.860,20.412,18.860 +5689,179.105,317.509,407.236,214.385,567.255,310.054,419.350,121.608,154.949,121.608,323.761,315.353,352.208,18.933,19.576,18.933 +5690,179.138,317.604,403.394,216.581,568.877,308.619,418.797,120.256,146.476,120.256,316.359,316.183,352.023,20.011,19.278,20.011 +5691,179.170,317.557,396.198,218.636,570.704,305.666,417.601,119.055,137.891,119.055,303.235,317.237,352.203,17.483,19.246,17.483 +5692,179.202,321.492,383.015,220.531,572.525,303.821,417.032,117.451,129.611,117.451,276.098,318.439,352.764,17.068,19.552,17.068 +5693,179.233,337.800,344.400,222.250,574.042,301.817,416.367,116.565,121.403,116.565,192.302,319.507,353.225,16.994,19.299,16.994 +5694,179.263,308.780,399.753,223.775,575.115,301.163,416.371,114.624,112.706,114.624,316.544,320.538,353.105,17.424,18.476,17.424 +5695,179.294,302.530,410.040,226.056,576.386,299.944,415.937,113.679,104.400,113.679,340.352,320.876,353.230,17.622,19.202,17.622 +5696,179.325,300.588,410.341,227.771,577.474,298.389,415.526,112.982,96.554,112.982,342.066,321.481,353.331,18.322,19.996,18.322 +5697,179.355,299.210,411.353,229.193,578.512,297.532,415.435,112.351,87.797,112.351,344.799,321.570,353.626,18.488,18.794,18.488 +5698,179.386,299.411,410.827,230.815,578.550,297.605,415.242,112.249,78.996,112.249,343.336,321.452,352.876,18.890,19.769,18.890 +5699,179.417,299.411,410.827,230.815,578.550,297.605,415.242,112.249,78.996,112.249,343.336,321.452,352.876,18.890,19.769,18.890 +5700,179.445,299.231,409.883,231.862,578.514,297.288,414.699,111.975,70.989,111.975,342.404,321.003,352.791,18.889,20.983,18.889 +5701,179.477,298.270,409.429,232.738,577.832,296.557,413.794,111.422,62.447,111.422,342.652,319.787,352.030,18.899,20.430,18.899 +5702,179.509,298.815,409.634,232.862,577.257,297.191,413.732,111.615,53.584,111.615,342.632,319.053,351.447,18.822,20.237,18.822 +5703,179.541,298.704,409.091,231.433,578.062,296.676,414.213,111.595,44.630,111.595,341.704,317.535,352.721,19.003,24.570,19.003 +5704,179.573,298.845,408.751,231.057,577.279,296.755,414.031,111.600,36.384,111.600,340.580,317.616,351.938,19.005,24.787,19.005 +5705,179.605,299.738,408.880,230.374,576.394,297.597,414.160,112.068,28.560,112.068,339.813,317.718,351.208,19.061,25.038,19.061 +5706,179.636,301.087,408.360,230.055,575.474,298.656,414.162,112.736,19.983,112.736,337.999,316.198,350.581,18.780,25.802,18.780 +5707,179.667,301.871,407.802,228.841,574.805,299.101,414.265,113.199,11.201,113.199,336.407,314.954,350.472,18.777,24.621,18.777 +5708,179.697,303.777,407.747,227.116,574.383,300.558,414.916,114.179,3.136,114.179,335.399,315.007,351.116,19.120,23.759,19.120 +5709,179.728,305.144,407.937,225.485,573.330,301.684,415.339,115.051,175.101,115.051,334.446,314.504,350.787,18.897,22.831,18.897 +5710,179.759,307.592,407.013,223.396,572.716,303.240,415.862,116.188,167.005,116.188,332.255,314.803,351.979,18.933,22.861,18.933 +5711,179.792,310.105,406.369,221.145,571.221,304.838,416.526,117.408,160.278,117.408,328.831,315.349,351.713,18.939,20.727,18.939 +5712,179.823,313.587,405.146,218.564,570.072,306.668,417.748,118.768,152.241,118.768,323.097,315.869,351.849,19.250,19.655,19.250 +5713,179.856,317.953,401.915,216.294,569.198,308.249,418.735,119.982,145.703,119.982,313.726,316.483,352.562,19.756,19.416,19.756 +5714,179.887,323.795,396.751,213.669,568.025,309.505,419.559,122.067,139.544,122.067,299.559,317.044,353.389,17.234,20.026,17.234 +5715,179.918,323.795,396.751,213.669,568.025,309.505,419.559,122.067,139.544,122.067,299.559,317.044,353.389,17.234,20.026,17.234 +5716,179.946,336.071,383.022,212.006,567.025,311.273,420.678,123.366,133.903,123.366,263.466,316.915,353.641,17.009,19.741,17.009 +5717,179.977,358.198,356.789,209.695,566.161,312.657,421.847,124.992,129.629,124.992,195.715,317.667,354.543,17.777,19.399,17.777 +5718,180.009,359.640,363.980,207.271,564.403,315.192,423.244,126.870,125.389,126.870,207.200,318.178,355.360,17.000,19.040,17.000 +5719,180.041,322.104,419.519,204.677,562.496,317.676,425.184,128.010,121.499,128.010,341.164,318.515,355.546,18.443,19.255,18.443 +5720,180.073,323.565,423.286,202.786,560.401,320.426,426.997,130.236,116.996,130.236,345.931,318.454,355.653,19.202,20.158,19.202 +5721,180.107,325.722,426.310,199.919,557.877,322.929,429.307,132.971,112.286,132.971,347.648,318.472,355.842,18.616,20.903,18.616 +5722,180.140,329.114,429.551,195.960,554.342,326.178,432.392,135.939,106.348,135.939,348.592,318.283,356.763,19.170,20.663,19.170 +5723,180.174,333.521,433.346,193.174,550.353,330.287,436.090,139.686,100.115,139.686,348.467,317.619,356.950,20.149,19.453,20.149 +5724,180.206,337.060,436.580,189.912,545.526,333.386,439.336,143.130,93.560,143.130,347.800,316.193,356.986,19.000,18.866,19.000 +5725,180.239,340.692,441.254,187.032,539.574,337.281,443.466,147.031,87.122,147.031,348.577,315.557,356.708,20.044,18.797,20.044 +5726,180.270,345.523,447.117,183.989,533.245,341.419,449.334,151.631,80.293,151.631,347.457,314.809,356.787,20.203,18.987,20.203 +5727,180.300,348.239,451.821,181.018,525.760,344.144,453.677,155.624,73.610,155.624,347.676,313.317,356.669,20.708,19.244,20.708 +5728,180.331,351.821,458.489,178.421,517.534,347.316,460.067,160.696,66.775,160.696,347.245,311.986,356.793,20.384,18.858,20.384 +5729,180.362,354.980,466.401,176.337,508.723,350.111,467.624,165.899,59.815,165.899,347.062,311.244,357.102,20.363,19.375,20.363 +5730,180.391,356.820,475.193,174.793,499.644,351.909,475.909,171.703,52.903,171.703,347.450,310.775,357.375,19.213,19.690,19.213 +5731,180.423,358.666,484.624,173.384,489.202,352.808,484.834,177.946,45.864,177.946,347.207,309.003,358.931,18.311,20.323,18.311 +5732,180.454,359.678,494.513,173.949,478.323,352.806,494.022,4.086,38.876,4.086,345.263,307.674,359.042,18.880,21.267,18.880 +5733,180.484,359.678,494.513,173.949,478.323,352.806,494.022,4.086,38.876,4.086,345.263,307.674,359.042,18.880,21.267,18.880 +5734,180.513,360.966,505.889,175.120,467.416,351.510,504.075,10.860,32.077,10.860,341.018,307.819,360.276,19.453,21.398,19.453 +5735,180.544,380.525,523.683,178.035,457.218,349.312,513.851,17.484,25.074,17.484,295.306,306.528,360.756,19.319,20.940,19.319 +5736,180.577,355.781,528.889,182.851,446.249,345.524,524.171,24.702,17.625,24.702,338.122,308.011,360.703,19.278,20.706,19.278 +5737,180.608,346.547,534.503,187.892,437.649,342.029,531.625,32.504,9.462,32.504,350.268,306.768,360.982,25.159,17.755,25.159 +5738,180.639,339.019,545.459,196.036,426.733,335.090,542.109,40.450,2.690,40.450,351.015,306.742,361.341,24.390,16.988,24.390 +5739,180.672,328.400,555.300,205.328,417.931,325.770,552.232,49.399,175.236,49.399,352.620,307.933,360.703,23.212,17.357,23.212 +5740,180.703,317.761,563.503,216.363,410.007,315.643,560.139,57.804,167.981,57.804,351.939,308.290,359.889,23.005,16.899,23.005 +5741,180.734,305.731,570.979,229.364,403.829,304.048,567.154,66.251,160.396,66.251,350.785,309.297,359.143,21.858,16.105,21.858 +5742,180.764,293.278,575.825,242.728,397.930,291.983,571.108,74.644,153.020,74.644,350.296,310.838,360.079,22.104,17.062,22.104 +5743,180.795,276.435,579.706,257.365,395.025,275.728,574.335,82.504,146.019,82.504,349.514,311.768,360.348,24.995,16.410,24.995 +5744,180.825,262.798,579.976,271.495,393.994,262.926,573.501,91.134,138.731,91.134,346.328,312.508,359.282,23.174,17.333,23.174 +5745,180.857,252.042,578.532,284.972,394.609,253.329,571.775,100.784,130.914,100.784,346.157,312.503,359.915,22.173,18.691,22.173 +5746,180.889,237.656,575.515,296.882,397.432,240.414,567.553,109.101,123.443,109.101,341.613,312.531,358.466,19.197,20.453,19.197 +5747,180.923,194.163,630.796,308.969,402.442,229.489,562.254,117.266,118.443,117.266,202.715,311.709,356.934,17.853,17.806,17.853 +5748,180.955,200.597,582.975,319.347,409.569,219.444,556.178,125.121,111.386,125.121,289.262,311.928,354.784,18.034,19.502,18.034 +5749,180.985,200.597,582.975,319.347,409.569,219.444,556.178,125.121,111.386,125.121,289.262,311.928,354.784,18.034,19.502,18.034 +5750,181.013,199.358,561.761,330.422,417.978,211.617,548.821,133.452,105.484,133.452,317.738,311.270,353.386,20.136,20.726,20.136 +5751,181.044,195.794,547.824,339.921,427.545,204.785,540.518,140.906,96.072,140.906,329.072,311.392,352.242,20.227,23.273,20.227 +5752,181.076,192.608,535.998,347.000,437.500,199.162,531.923,148.128,87.797,148.128,335.376,311.462,350.812,20.817,22.560,20.817 +5753,181.107,188.225,525.286,353.097,447.394,194.739,522.257,155.066,79.902,155.066,335.950,315.124,350.318,20.562,23.709,20.562 +5754,181.139,185.362,515.080,357.947,458.355,191.888,512.941,161.851,72.013,161.851,335.868,316.243,349.601,20.298,24.952,20.298 +5755,181.172,184.062,505.800,360.783,469.142,190.094,504.543,168.232,63.983,168.232,336.321,317.614,348.643,20.110,24.671,20.110 +5756,181.204,183.031,496.320,362.908,479.726,189.486,495.695,174.472,56.136,174.472,335.337,319.527,348.308,19.329,23.687,19.329 +5757,181.236,182.505,487.387,363.432,489.617,189.707,487.443,0.448,48.468,0.448,333.068,321.380,347.473,18.218,22.115,18.218 +5758,181.267,182.643,479.126,362.767,498.771,190.276,479.920,5.935,40.806,5.935,331.683,323.679,347.031,19.144,20.390,19.144 +5759,181.297,182.923,471.385,362.670,506.740,192.162,473.233,11.310,33.163,11.310,328.691,323.715,347.535,18.827,21.790,18.827 +5760,181.327,181.798,463.127,361.008,514.176,194.096,466.777,16.530,25.510,16.530,321.341,324.606,346.998,18.171,23.421,18.171 +5761,181.358,115.663,430.634,358.773,521.679,196.101,461.277,20.854,18.509,20.854,174.883,324.449,347.036,17.533,19.682,17.533 +5762,181.388,177.517,446.146,356.163,527.182,198.719,455.078,22.846,11.264,22.846,300.162,324.376,346.175,24.647,19.957,24.647 +5763,181.419,177.517,446.146,356.163,527.182,198.719,455.078,22.846,11.264,22.846,300.162,324.376,346.175,24.647,19.957,24.647 +5764,181.447,189.112,440.897,352.912,533.068,202.298,448.214,29.023,4.699,29.023,315.577,323.375,345.737,25.449,21.121,25.449 +5765,181.479,193.426,439.956,349.581,538.292,203.705,446.123,30.964,177.397,30.964,321.045,323.530,345.018,25.553,21.886,25.553 +5766,181.510,197.993,435.734,346.522,543.035,206.893,441.878,34.624,170.248,34.624,323.124,322.890,344.753,26.176,23.468,26.176 +5767,181.543,202.004,431.995,343.181,547.097,209.939,438.369,38.774,163.142,38.774,323.581,322.314,343.937,24.986,24.245,24.986 +5768,181.574,203.716,430.937,339.948,550.634,211.028,437.058,39.936,156.038,39.936,324.445,321.865,343.518,25.481,24.876,25.481 +5769,181.606,207.442,426.516,336.632,553.721,214.393,433.169,43.746,149.036,43.746,324.087,321.388,343.329,24.820,24.867,24.820 +5770,181.639,208.250,425.250,333.604,556.419,215.006,432.006,45.000,142.125,45.000,324.562,321.266,343.670,24.042,24.908,24.042 +5771,181.671,211.534,422.787,330.772,558.784,217.786,429.665,47.726,135.431,47.726,324.497,321.071,343.086,23.544,24.721,23.544 +5772,181.702,214.069,421.029,328.171,561.136,220.013,427.998,49.538,128.541,49.538,324.652,321.084,342.970,23.966,24.539,23.966 +5773,181.732,215.615,419.975,325.798,563.124,221.317,427.007,50.964,122.005,50.964,324.957,321.391,343.064,24.205,23.956,24.205 +5774,181.763,217.252,418.633,323.648,564.834,222.864,425.976,52.612,115.278,52.612,324.567,322.113,343.051,23.313,22.933,23.313 +5775,181.793,218.121,417.339,321.800,566.600,223.849,425.132,53.683,108.435,53.683,324.654,323.185,343.999,22.933,22.136,22.933 +5776,181.824,219.282,416.453,320.205,567.544,224.937,424.399,54.560,102.095,54.560,324.224,322.675,343.730,22.893,20.743,22.893 +5777,181.856,219.988,415.390,319.112,568.458,225.734,423.680,55.275,96.116,55.275,324.194,323.115,344.369,23.152,19.282,23.152 +5778,181.888,220.285,414.404,318.599,569.487,226.662,423.776,55.768,90.377,55.768,321.706,323.052,344.377,23.422,18.888,23.422 +5779,181.918,220.285,414.404,318.599,569.487,226.662,423.776,55.768,90.377,55.768,321.706,323.052,344.377,23.422,18.888,23.422 +5780,181.946,219.545,413.728,318.879,569.827,226.471,423.836,55.582,84.738,55.582,320.822,323.761,345.329,23.358,18.684,23.358 +5781,181.977,219.279,413.102,319.136,569.748,226.558,423.848,55.886,79.695,55.886,319.470,324.051,345.430,22.835,18.246,22.835 +5782,182.008,217.863,411.651,320.054,569.600,226.601,424.339,55.446,75.579,55.446,314.471,324.279,345.282,23.387,18.567,23.387 +5783,182.040,216.128,412.068,321.445,568.839,225.350,425.054,54.620,72.168,54.620,313.889,324.538,345.743,22.652,18.773,22.652 +5784,182.072,213.691,411.149,323.167,567.813,224.396,425.578,53.427,69.397,53.427,310.229,324.904,346.162,23.575,18.742,23.575 +5785,182.104,212.082,412.441,325.267,566.388,223.229,426.789,52.158,67.274,52.158,309.342,324.763,345.682,23.841,18.553,23.841 +5786,182.136,210.303,415.005,327.482,564.508,221.088,427.970,50.247,65.961,50.247,312.288,324.802,346.017,24.027,18.811,24.027 +5787,182.167,209.105,418.785,330.380,562.284,219.322,430.240,48.270,65.376,48.270,314.231,324.915,344.931,23.518,18.712,23.518 +5788,182.197,207.014,422.562,333.318,559.401,216.341,432.069,45.546,65.556,45.546,318.992,324.753,345.629,23.610,18.952,23.610 +5789,182.229,204.587,427.880,336.389,555.989,213.193,435.589,41.855,66.240,41.855,321.086,324.607,344.195,25.418,18.628,25.418 +5790,182.259,202.786,431.746,339.691,552.013,210.549,438.080,39.207,67.767,39.207,324.138,324.405,344.176,24.551,19.094,24.551 +5791,182.290,199.727,435.967,343.912,547.032,207.237,441.313,35.446,69.986,35.446,326.874,323.973,345.310,25.337,20.174,25.337 +5792,182.325,196.657,441.058,347.238,541.583,203.792,445.449,31.608,72.378,31.608,328.347,323.260,345.103,24.960,20.261,24.960 +5793,182.356,194.156,445.601,350.983,534.871,201.196,449.332,27.922,75.005,27.922,328.874,322.851,344.810,25.421,21.216,25.421 +5794,182.387,189.747,454.604,354.654,527.819,196.862,457.667,23.292,77.816,23.292,329.850,322.045,345.343,19.161,22.526,19.161 +5795,182.417,189.747,454.604,354.654,527.819,196.862,457.667,23.292,77.816,23.292,329.850,322.045,345.343,19.161,22.526,19.161 +5796,182.445,186.817,461.969,357.581,519.987,194.017,464.293,17.892,80.538,17.892,330.398,321.400,345.529,19.250,22.851,19.250 +5797,182.476,184.272,469.565,360.144,511.064,191.856,471.270,12.670,83.182,12.670,330.292,319.626,345.837,18.999,24.035,18.999 +5798,182.508,182.800,477.600,361.773,501.718,190.425,478.553,7.125,86.228,7.125,330.429,318.956,345.796,18.605,24.628,18.605 +5799,182.541,181.049,486.420,362.117,491.483,189.062,486.573,1.091,89.105,1.091,330.207,317.211,346.235,18.416,23.872,18.416 +5800,182.574,180.671,496.337,362.069,480.624,188.965,495.563,174.668,92.322,174.668,330.829,317.550,347.487,19.356,24.196,19.356 +5801,182.606,181.860,506.688,360.044,469.272,189.882,504.977,167.963,95.315,167.963,331.330,316.332,347.735,20.056,23.387,20.056 +5802,182.638,183.729,517.123,357.063,457.802,191.992,514.286,161.049,98.337,161.049,331.462,315.833,348.935,19.805,22.808,19.805 +5803,182.670,187.035,529.117,352.195,446.439,195.663,524.867,153.778,101.392,153.778,330.919,315.371,350.154,22.012,21.786,22.012 +5804,182.700,191.576,541.143,346.034,435.143,201.154,534.798,146.476,105.005,146.476,328.656,314.745,351.635,23.050,21.489,23.050 +5805,182.730,193.596,553.190,338.832,424.772,206.531,542.019,139.185,108.094,139.185,319.345,314.613,353.527,19.987,22.032,19.987 +5806,182.761,196.633,571.115,328.722,415.392,214.344,550.681,130.914,111.306,130.914,300.210,314.713,354.293,19.749,20.413,19.749 +5807,182.792,193.961,602.742,317.295,406.733,222.548,557.620,122.356,114.228,122.356,249.503,313.883,356.334,17.666,19.652,17.666 +5808,182.823,224.528,584.384,305.844,400.414,233.619,564.248,114.297,118.673,114.297,313.893,314.209,358.079,18.675,17.287,18.675 +5809,182.855,242.727,577.835,291.910,395.472,245.098,569.139,105.255,120.535,105.255,341.702,313.648,359.728,19.383,20.410,19.383 +5810,182.886,255.105,579.792,278.877,393.582,255.921,572.344,96.254,123.871,96.254,345.411,313.408,360.398,22.523,20.575,22.523 +5811,182.917,255.105,579.792,278.877,393.582,255.921,572.344,96.254,123.871,96.254,345.411,313.408,360.398,22.523,20.575,22.523 +5812,182.945,271.587,580.077,263.849,392.644,271.396,572.863,88.481,127.174,88.481,346.276,313.236,360.711,22.019,18.944,22.019 +5813,182.976,283.808,578.538,249.677,395.090,282.599,572.493,78.690,131.091,78.690,348.498,312.892,360.828,22.946,18.316,22.946 +5814,183.007,299.749,574.370,234.342,399.275,297.657,568.562,70.195,133.934,70.195,349.106,312.645,361.453,20.768,19.256,20.768 +5815,183.041,313.368,567.650,220.891,405.964,310.584,562.582,61.213,137.269,61.213,349.345,311.779,360.909,22.941,19.016,22.941 +5816,183.075,325.747,558.688,208.798,414.581,322.562,554.603,52.052,140.605,52.052,350.394,312.182,360.753,24.120,18.938,24.120 +5817,183.108,335.803,548.409,198.000,424.691,332.437,545.233,43.332,144.151,43.332,351.757,312.111,361.013,24.800,18.545,24.800 +5818,183.141,344.259,536.845,188.890,435.416,340.289,534.098,34.682,147.829,34.682,351.646,311.853,361.302,26.182,18.581,26.182 +5819,183.175,350.031,525.458,182.532,447.825,346.209,523.542,26.640,151.529,26.640,351.953,311.416,360.503,25.598,20.567,25.598 +5820,183.207,352.546,516.449,177.611,459.990,349.063,515.267,18.759,154.813,18.759,352.883,310.992,360.240,19.759,19.810,19.759 +5821,183.240,355.194,505.503,173.956,471.387,351.174,504.706,11.224,158.629,11.224,352.431,310.914,360.628,19.209,20.042,19.209 +5822,183.273,356.716,494.493,171.796,481.358,351.865,494.144,4.116,162.395,4.116,351.315,310.567,361.043,19.174,20.722,19.174 +5823,183.309,357.865,483.892,171.812,490.975,351.978,484.147,177.520,164.766,177.520,348.799,311.181,360.585,19.202,20.603,19.202 +5824,183.354,422.618,448.471,174.062,509.893,348.542,466.990,165.964,168.254,165.964,206.640,310.828,359.352,17.705,19.862,17.705 +5825,183.386,385.247,445.564,176.565,518.379,345.863,459.348,160.710,170.259,160.710,275.135,310.416,358.588,17.745,19.999,17.745 +5826,183.417,385.247,445.564,176.565,518.379,345.863,459.348,160.710,170.259,160.710,275.135,310.416,358.588,17.745,19.999,17.745 +5827,183.446,368.528,441.102,179.827,526.094,343.213,453.218,154.423,172.968,154.423,301.547,310.703,357.676,22.195,19.662,22.195 +5828,183.481,355.571,437.793,183.857,533.275,339.922,447.139,149.151,176.317,149.151,319.855,310.709,356.309,22.846,18.502,22.846 +5829,183.513,346.646,433.424,188.000,540.500,335.617,441.133,145.044,0.000,145.044,328.924,310.000,355.836,19.503,19.000,19.503 +5830,183.545,339.403,429.488,192.719,546.459,331.557,435.968,140.448,4.927,140.448,334.464,310.778,354.817,19.610,20.510,19.610 +5831,183.577,333.460,426.052,197.707,552.309,327.444,431.797,136.320,9.846,136.320,337.477,310.939,354.113,19.501,22.075,19.501 +5832,183.607,327.962,422.731,202.758,557.204,323.293,427.883,132.184,15.341,132.184,339.627,311.704,353.532,20.146,23.529,20.146 +5833,183.640,322.061,419.109,207.750,561.849,318.194,424.064,127.972,20.999,127.972,340.572,312.884,353.142,20.112,25.226,20.112 +5834,183.672,317.222,416.690,212.900,565.700,313.984,421.374,124.651,26.565,124.651,341.015,313.497,352.403,18.933,25.491,18.933 +5835,183.703,312.211,414.128,217.074,569.544,309.175,419.157,121.115,30.964,121.115,340.940,315.557,352.690,18.927,25.210,18.927 +5836,183.735,307.634,412.042,221.849,572.705,304.943,417.127,117.886,36.304,117.886,341.247,316.169,352.754,18.970,25.032,18.970 +5837,183.765,303.273,410.741,226.444,575.563,300.907,415.867,114.775,41.795,114.775,341.113,317.000,352.404,18.997,25.009,18.997 +5838,183.797,299.043,409.315,230.957,577.998,296.967,414.494,111.841,47.490,111.841,341.490,317.529,352.650,19.150,24.019,19.150 +5839,183.828,295.449,408.432,236.449,578.901,293.805,413.129,109.290,52.836,109.290,340.874,319.173,350.827,18.783,20.501,18.783 +5840,183.859,291.647,407.844,240.504,580.691,290.279,412.404,106.699,58.496,106.699,341.465,319.973,350.986,18.965,20.435,18.965 +5841,183.890,288.003,407.238,244.101,582.207,286.792,412.033,104.178,63.997,104.178,341.002,320.729,350.894,18.901,20.518,18.901 +5842,183.924,284.077,406.407,247.861,583.494,283.088,411.279,101.470,69.600,101.470,341.619,321.751,351.561,18.834,20.667,18.834 +5843,183.957,280.568,406.451,251.604,584.590,279.806,411.216,99.090,75.667,99.090,341.654,323.083,351.305,18.959,20.180,18.959 +5844,183.988,277.362,405.498,254.709,585.313,276.685,411.075,96.918,81.190,96.918,339.996,323.660,351.232,18.210,20.559,18.210 +5845,184.019,274.317,402.693,257.383,585.741,273.633,410.907,94.764,86.186,94.764,334.673,324.014,351.159,18.021,21.419,18.021 +5846,184.049,274.317,402.693,257.383,585.741,273.633,410.907,94.764,86.186,94.764,334.673,324.014,351.159,18.021,21.419,18.021 +5847,184.078,272.504,371.746,261.055,586.456,270.685,411.166,92.643,91.762,92.643,272.172,323.247,351.095,17.704,20.713,17.704 +5848,184.110,268.676,349.033,263.813,585.976,267.461,410.970,91.123,97.237,91.123,226.192,323.970,350.089,17.114,20.345,17.114 +5849,184.144,263.998,382.438,266.965,585.659,264.720,411.298,88.568,102.529,88.568,290.984,323.660,348.724,17.669,19.958,17.669 +5850,184.175,260.641,390.727,270.147,585.048,261.967,410.833,86.228,108.034,86.228,308.451,323.208,348.751,17.939,19.769,17.939 +5851,184.207,257.668,395.121,273.227,583.598,259.261,410.525,84.094,113.273,84.094,316.209,321.571,347.182,18.453,19.993,18.453 +5852,184.240,254.762,397.750,276.911,582.904,256.612,410.788,81.927,118.686,81.927,320.185,321.392,346.522,18.938,20.276,18.938 +5853,184.272,251.756,399.908,281.205,582.143,253.804,411.171,79.695,124.824,79.695,323.335,320.653,346.231,19.230,21.415,19.230 +5854,184.303,248.829,401.482,285.415,581.271,251.127,411.820,77.471,130.126,77.471,324.528,319.931,345.708,19.632,22.131,19.632 +5855,184.334,245.517,403.199,289.421,580.397,248.043,412.712,75.132,135.639,75.132,325.691,319.640,345.376,19.630,22.994,19.630 +5856,184.364,242.633,404.529,293.760,578.934,245.368,413.350,72.773,140.874,72.773,326.501,319.567,344.974,20.680,24.072,20.680 +5857,184.394,239.478,406.117,298.187,577.760,242.487,414.562,70.388,146.010,70.388,326.923,318.980,344.853,21.352,24.560,21.352 +5858,184.425,235.919,407.701,302.421,576.097,239.295,415.997,67.855,151.308,67.855,326.260,319.241,344.172,21.659,25.279,21.659 +5859,184.457,232.508,409.066,307.324,574.500,236.300,417.221,65.056,156.176,65.056,327.137,319.226,345.123,22.288,25.032,22.288 +5860,184.489,229.128,411.195,311.834,572.452,233.235,419.007,62.268,161.208,62.268,327.137,319.443,344.788,22.756,25.153,22.756 +5861,184.520,225.307,413.213,316.598,569.918,229.858,420.826,59.128,166.100,59.128,327.214,319.900,344.952,22.923,25.092,22.923 +5862,184.550,225.307,413.213,316.598,569.918,229.858,420.826,59.128,166.100,59.128,327.214,319.900,344.952,22.923,25.092,22.923 +5863,184.579,221.906,416.401,321.395,567.461,226.798,423.650,55.985,170.882,55.985,326.752,320.564,344.244,23.577,25.269,23.577 +5864,184.609,218.070,419.329,325.935,564.186,223.310,426.184,52.607,175.396,52.607,326.667,320.894,343.925,24.058,24.043,24.058 +5865,184.640,213.873,422.043,331.000,560.500,219.916,429.024,49.122,0.000,49.122,325.749,322.000,344.217,24.431,23.000,24.431 +5866,184.672,208.750,425.250,335.511,556.346,215.714,432.214,45.000,4.120,45.000,325.269,322.254,344.967,24.749,23.177,24.749 +5867,184.703,204.517,428.481,340.210,551.586,212.545,435.607,41.594,7.927,41.594,323.468,322.434,344.937,25.495,22.116,25.495 +5868,184.734,199.120,432.840,344.881,546.092,208.784,440.088,36.870,11.368,36.870,320.800,323.785,344.960,25.200,20.946,25.200 +5869,184.765,192.294,435.817,349.238,540.039,205.171,444.462,33.876,14.178,33.876,314.749,324.020,345.769,27.683,20.391,27.683 +5870,184.796,181.431,441.149,353.155,533.413,200.988,450.881,26.457,15.781,26.457,302.310,324.445,346.001,24.563,19.665,24.563 +5871,184.826,167.192,441.767,356.547,526.843,198.938,454.523,21.892,16.722,21.892,277.990,324.320,346.417,21.685,20.034,21.685 +5872,184.857,114.033,434.103,359.179,520.037,195.449,462.487,19.220,17.176,19.220,174.654,324.298,347.099,17.724,19.838,17.724 +5873,184.890,162.549,461.425,361.736,511.853,193.384,469.365,14.441,17.985,14.441,283.577,325.087,347.258,18.304,18.991,18.304 +5874,184.921,178.035,474.147,363.175,503.003,191.462,476.290,9.069,17.969,9.069,320.362,325.447,347.555,18.350,19.539,18.350 +5875,184.952,180.629,483.860,364.645,494.057,190.782,484.355,2.793,18.175,2.793,327.927,323.840,348.258,18.904,20.049,18.904 +5876,184.982,180.629,483.860,364.645,494.057,190.782,484.355,2.793,18.175,2.793,327.927,323.840,348.258,18.904,20.049,18.904 +5877,185.010,180.762,492.774,364.594,483.738,190.149,492.245,176.775,19.685,176.775,330.490,323.555,349.294,18.365,19.562,18.365 +5878,185.043,183.529,503.919,363.216,472.712,190.875,502.578,169.655,21.746,169.655,334.871,322.557,349.806,19.940,19.083,19.940 +5879,185.076,186.129,514.339,360.391,461.241,192.584,512.273,162.255,24.305,162.255,337.196,321.537,350.753,20.077,19.639,20.077 +5880,185.109,189.877,525.184,355.601,449.750,195.610,522.471,154.673,27.187,154.673,338.761,320.220,351.445,20.458,20.289,20.458 +5881,185.142,195.043,536.006,349.013,437.976,200.287,532.646,147.349,29.358,147.349,340.141,318.779,352.599,20.379,20.536,20.379 +5882,185.175,201.909,545.393,340.245,427.317,206.108,541.815,139.574,31.921,139.574,341.685,317.889,352.719,19.877,20.148,19.877 +5883,185.208,210.371,554.634,330.168,417.172,213.899,550.609,131.231,34.439,131.231,343.266,315.659,353.970,19.748,20.830,19.748 +5884,185.240,220.785,563.549,318.093,408.365,223.710,558.917,122.276,37.020,122.276,344.425,314.593,355.380,19.891,20.759,19.891 +5885,185.272,232.439,570.338,304.420,402.169,234.449,565.688,113.374,39.472,113.374,345.586,312.541,355.718,19.541,18.890,19.541 +5886,185.303,244.839,575.346,300.993,403.771,245.617,572.275,104.222,41.800,104.222,347.554,285.857,353.890,20.164,23.995,20.164 +5887,185.338,257.486,577.889,289.308,406.253,257.462,578.176,94.954,43.580,94.954,348.640,272.310,348.063,22.609,25.062,22.609 +5888,185.369,274.468,579.395,277.451,411.116,274.637,582.570,86.943,45.785,86.943,348.480,259.668,342.120,23.234,24.233,23.234 +5889,185.400,289.122,578.314,261.204,414.261,289.938,581.999,77.526,48.608,77.526,347.517,258.962,339.969,22.561,21.705,22.561 +5890,185.430,305.775,579.228,244.902,419.878,305.309,578.088,67.751,51.340,67.751,336.142,259.248,338.606,20.110,19.678,20.110 +5891,185.460,335.273,598.083,229.290,427.368,318.684,570.938,58.570,54.324,58.570,274.615,260.631,338.240,18.488,19.579,18.488 +5892,185.491,335.123,564.636,215.119,434.594,331.317,560.022,50.486,56.733,50.486,329.434,265.733,341.395,21.029,20.083,21.029 +5893,185.523,341.687,547.279,204.357,444.169,341.963,547.512,40.188,58.510,40.188,344.341,268.873,343.617,24.602,20.577,24.602 +5894,185.554,348.424,533.807,194.627,451.711,348.265,533.710,31.440,60.440,31.440,347.334,278.984,347.706,25.458,21.837,25.458 +5895,185.585,348.424,533.807,194.627,451.711,348.265,533.710,31.440,60.440,31.440,347.334,278.984,347.706,25.458,21.837,25.458 +5896,185.612,353.588,520.966,181.881,451.108,348.480,518.789,23.082,62.382,23.082,348.485,306.835,359.591,25.848,23.924,25.848 +5897,185.643,355.956,511.532,177.598,463.766,350.982,510.200,14.988,65.313,14.988,348.689,307.107,358.988,19.487,20.041,19.487 +5898,185.674,358.571,499.392,175.103,476.336,352.986,498.686,7.209,67.479,7.209,347.304,308.237,358.564,19.238,20.300,19.238 +5899,185.707,358.014,487.165,173.875,488.669,352.943,487.184,179.780,69.291,179.780,348.001,308.998,358.144,18.988,19.803,18.988 +5900,185.739,357.078,476.602,174.647,500.451,352.022,477.256,172.626,71.405,172.626,347.572,309.929,357.769,19.321,19.434,19.321 +5901,185.771,354.409,466.143,176.499,511.596,349.529,467.392,165.646,73.226,165.646,347.102,311.386,357.175,20.322,19.380,20.322 +5902,185.803,350.669,456.823,179.397,521.996,346.209,458.526,159.106,75.132,159.106,347.410,312.613,356.958,20.995,19.125,20.995 +5903,185.834,346.718,449.431,183.027,531.529,342.437,451.594,153.199,76.921,153.199,347.066,313.903,356.657,20.170,19.609,20.170 +5904,185.865,341.641,441.380,187.410,540.220,337.483,444.045,147.344,78.785,147.344,346.616,314.769,356.493,19.839,19.525,19.839 +5905,185.897,336.021,435.120,192.176,547.554,332.544,437.856,141.804,80.538,141.804,347.445,315.482,356.294,19.763,19.892,19.763 +5906,185.927,330.967,429.825,197.457,554.589,327.507,433.058,136.931,82.093,136.931,346.524,316.930,355.994,19.550,19.947,19.550 +5907,185.957,325.154,425.735,202.668,560.370,322.241,428.957,132.122,83.628,132.122,346.653,317.604,355.340,20.058,20.245,20.058 +5908,185.988,319.175,420.737,208.046,565.452,316.345,424.470,127.173,85.019,127.173,346.177,318.668,355.547,19.886,20.633,19.886 +5909,186.020,313.960,417.495,213.873,569.873,311.334,421.522,123.111,86.121,123.111,345.387,319.166,355.001,19.119,20.259,19.119 +5910,186.050,313.960,417.495,213.873,569.873,311.334,421.522,123.111,86.121,123.111,345.387,319.166,355.001,19.119,20.259,19.119 +5911,186.080,308.384,414.334,219.697,573.440,306.035,418.598,118.848,87.138,118.848,344.831,319.751,354.567,19.032,19.925,19.032 +5912,186.111,303.366,412.264,225.713,576.035,301.367,416.523,115.145,87.440,115.145,343.676,320.529,353.085,18.918,19.444,18.918 +5913,186.143,298.331,410.250,230.963,579.372,296.397,415.153,111.531,87.530,111.531,343.008,321.650,353.549,18.597,19.319,18.597 +5914,186.174,293.499,409.179,236.085,581.330,291.979,413.808,108.172,86.845,108.172,343.452,321.944,353.196,18.799,19.852,18.799 +5915,186.207,289.032,408.155,241.331,582.676,287.768,412.824,105.149,85.352,105.149,342.495,322.781,352.170,18.900,20.339,18.900 +5916,186.240,285.467,406.336,246.468,584.004,284.226,412.000,102.352,83.333,102.352,340.601,324.118,352.198,18.781,21.490,18.781 +5917,186.272,281.717,405.521,250.245,584.712,280.710,411.371,99.762,80.630,99.762,340.121,323.708,351.993,18.905,20.472,18.905 +5918,186.304,278.152,406.060,254.401,585.023,277.504,410.986,97.490,77.035,97.490,341.191,323.874,351.128,18.597,20.570,18.597 +5919,186.337,275.003,405.968,258.380,585.573,274.513,411.027,95.528,72.801,95.528,340.410,323.933,350.576,18.237,20.448,18.237 +5920,186.367,272.135,405.266,261.586,585.966,271.793,410.922,93.468,68.199,93.468,339.347,323.853,350.680,18.209,20.798,18.209 +5921,186.398,269.526,404.856,264.120,585.704,269.354,410.788,91.660,62.959,91.660,338.119,322.437,349.989,18.050,22.007,18.050 +5922,186.429,267.000,405.000,267.417,585.577,267.000,410.789,90.000,56.940,90.000,338.000,322.551,349.577,18.000,21.622,18.000 +5923,186.460,264.875,405.618,269.979,585.606,265.037,411.302,88.363,50.567,88.363,337.377,322.033,348.749,18.335,22.714,18.335 +5924,186.491,262.956,405.692,272.774,585.179,263.247,411.070,86.906,43.966,86.906,337.966,321.280,348.739,18.675,23.543,18.675 +5925,186.522,260.755,405.183,275.504,584.494,261.238,411.126,85.352,37.098,85.352,335.981,321.787,347.908,18.913,24.217,18.913 +5926,186.554,258.361,405.503,277.918,583.763,258.956,410.990,83.806,29.795,83.806,336.582,321.622,347.620,18.519,24.642,18.519 +5927,186.585,258.361,405.503,277.918,583.763,258.956,410.990,83.806,29.795,83.806,336.582,321.622,347.620,18.519,24.642,18.519 +5928,186.613,256.201,404.947,280.737,583.151,257.028,411.054,82.288,21.982,82.288,335.118,320.522,347.444,18.725,24.773,18.725 +5929,186.644,253.983,404.740,283.117,583.054,255.120,411.681,80.695,14.676,80.695,333.224,319.901,347.290,19.085,25.704,19.085 +5930,186.676,251.864,405.008,285.732,582.101,253.190,411.892,79.099,6.953,79.099,332.563,319.269,346.584,19.341,24.768,19.341 +5931,186.707,249.360,404.200,288.013,581.343,251.132,412.144,77.425,179.438,77.425,330.064,318.161,346.341,19.655,25.313,19.655 +5932,186.739,246.895,404.164,290.618,580.520,249.039,412.574,75.700,171.254,75.700,328.667,318.560,346.025,19.969,25.089,19.969 +5933,186.769,244.436,404.588,293.193,579.642,246.877,413.097,73.996,163.301,73.996,328.015,318.765,345.719,20.484,25.287,20.484 +5934,186.802,241.901,405.226,295.672,578.713,244.649,413.756,72.140,155.136,72.140,327.390,318.975,345.312,20.823,25.095,20.823 +5935,186.833,239.472,406.385,298.538,577.797,242.546,414.896,70.145,146.674,70.145,326.372,319.503,344.470,21.580,24.197,21.580 +5936,186.864,236.672,407.431,301.472,576.836,240.125,416.063,68.199,138.552,68.199,325.524,319.651,344.117,21.726,24.054,21.726 +5937,186.894,233.055,408.083,304.447,575.609,237.011,416.953,65.961,130.236,65.961,325.308,320.740,344.731,21.281,23.430,21.281 +5938,186.925,230.233,409.891,307.697,574.246,234.627,418.736,63.585,121.938,63.585,323.807,321.075,343.561,21.354,22.714,21.354 +5939,186.958,227.405,411.521,311.037,572.798,232.147,420.123,61.137,113.582,61.137,323.935,322.088,343.580,22.260,21.959,22.260 +5940,186.989,223.585,413.003,314.512,571.414,228.938,421.762,58.570,105.313,58.570,324.105,323.635,344.635,22.422,20.909,22.422 +5941,187.020,219.904,414.982,318.727,568.843,225.791,423.573,55.582,97.017,55.582,323.908,322.734,344.737,22.533,20.156,22.533 +5942,187.050,219.904,414.982,318.727,568.843,225.791,423.573,55.582,97.017,55.582,323.908,322.734,344.737,22.533,20.156,22.533 +5943,187.079,216.916,417.505,322.690,566.019,223.250,425.788,52.595,88.683,52.595,322.743,322.306,343.597,23.644,18.662,23.644 +5944,187.111,213.136,420.043,327.650,563.305,220.176,428.292,49.521,80.372,49.521,323.241,324.040,344.930,24.059,19.173,24.059 +5945,187.143,208.914,423.228,332.304,559.724,216.769,431.345,45.939,72.181,45.939,322.606,324.166,345.197,24.363,18.905,24.363 +5946,187.174,204.496,426.064,337.093,555.222,213.757,434.574,42.580,63.990,42.580,319.745,324.301,344.900,24.816,18.922,24.816 +5947,187.207,200.473,432.535,341.700,550.348,209.429,439.501,37.875,55.877,37.875,322.231,324.784,344.924,24.821,19.100,24.821 +5948,187.239,193.450,437.008,346.273,544.391,205.004,444.993,34.648,47.773,34.648,317.365,325.037,345.455,18.727,19.237,18.727 +5949,187.271,188.451,442.289,350.312,538.010,201.575,449.927,30.200,39.380,30.200,315.346,325.980,345.716,18.255,19.588,18.255 +5950,187.301,180.323,446.623,354.568,529.890,198.562,455.312,25.474,31.809,25.474,305.426,326.057,345.831,18.120,19.503,18.120 +5951,187.332,165.602,450.216,358.423,521.556,195.812,461.509,20.497,24.151,20.497,282.180,325.326,346.684,18.244,19.815,18.244 +5952,187.363,116.015,447.209,361.513,512.955,193.746,468.019,14.988,16.356,14.988,186.427,324.322,347.363,17.494,19.608,17.494 +5953,187.395,110.085,461.911,363.071,504.015,191.585,475.205,9.265,8.359,9.265,182.622,323.724,347.775,17.548,19.174,17.548 +5954,187.426,106.156,478.266,364.015,493.806,190.469,483.084,3.270,0.710,3.270,178.851,322.174,347.751,17.343,18.817,17.343 +5955,187.457,105.767,496.132,364.051,482.931,189.928,491.644,176.947,173.264,176.947,180.117,322.600,348.679,17.309,19.315,17.309 +5956,187.488,109.347,514.526,362.842,471.373,190.328,500.644,170.272,165.809,170.272,185.635,322.091,349.958,17.262,19.590,17.262 +5957,187.518,109.347,514.526,362.842,471.373,190.328,500.644,170.272,165.809,170.272,185.635,322.091,349.958,17.262,19.590,17.262 +5958,187.547,112.747,533.820,359.932,459.828,191.847,510.019,163.254,158.486,163.254,185.629,321.639,350.836,17.084,19.610,17.084 +5959,187.579,120.052,552.866,355.568,448.715,194.708,519.685,156.038,151.209,156.038,188.245,320.038,351.641,17.261,19.565,17.261 +5960,187.611,130.224,571.425,349.376,437.519,198.727,529.324,148.426,144.122,148.426,192.020,319.228,352.832,17.359,18.833,17.359 +5961,187.642,142.980,589.369,341.478,426.905,204.416,538.775,140.528,136.995,140.528,194.663,317.815,353.838,17.437,18.683,17.437 +5962,187.673,158.202,606.143,332.018,416.928,211.750,547.727,132.510,129.859,132.510,196.882,316.375,355.374,17.569,19.256,17.569 +5963,187.705,176.161,620.969,320.745,408.188,220.539,555.708,124.216,122.885,124.216,198.826,314.694,356.668,17.564,19.293,17.564 +5964,187.736,196.771,633.463,308.220,401.089,230.959,562.490,115.720,116.131,115.720,200.323,313.955,357.879,17.865,18.837,17.865 +5965,187.767,230.875,606.399,294.479,396.640,242.674,568.643,107.354,109.398,107.354,280.140,312.291,359.251,18.612,18.307,18.612 +5966,187.798,251.189,591.323,279.888,394.202,253.903,572.025,98.005,102.454,98.005,320.441,310.637,359.417,22.343,18.751,22.343 +5967,187.828,269.000,589.500,265.000,393.854,269.000,573.427,90.000,95.553,90.000,327.000,310.328,359.146,22.000,19.298,22.000 +5968,187.859,282.176,583.054,250.164,395.189,280.504,573.024,80.538,88.420,80.538,340.470,308.159,360.807,23.016,20.061,23.016 +5969,187.891,296.990,578.503,236.729,399.263,294.265,570.037,72.160,81.565,72.160,342.591,308.117,360.379,20.264,19.411,20.264 +5970,187.922,310.420,572.539,223.922,405.792,306.877,565.238,64.110,74.834,64.110,343.100,307.423,359.330,22.321,19.247,22.321 +5971,187.953,323.975,564.017,211.774,413.197,319.382,557.491,54.866,68.001,54.866,343.903,305.436,359.864,23.504,19.794,23.504 +5972,187.983,323.975,564.017,211.774,413.197,319.382,557.491,54.866,68.001,54.866,343.903,305.436,359.864,23.504,19.794,23.504 +5973,188.011,333.559,556.765,201.475,421.842,327.813,550.444,47.726,61.085,47.726,343.198,304.816,360.282,24.687,19.874,24.687 +5974,188.043,342.274,546.187,203.796,447.207,343.187,546.944,39.639,54.256,39.639,344.310,266.541,341.938,25.609,19.433,25.609 +5975,188.075,351.249,532.567,197.941,454.555,351.258,532.572,29.954,47.087,29.954,343.606,268.717,343.585,25.082,21.394,25.082 +5976,188.107,354.757,523.311,187.780,458.079,351.452,521.954,22.322,40.277,22.322,344.189,286.331,351.334,19.697,21.021,19.697 +5977,188.140,359.313,512.457,176.328,462.983,350.251,510.043,14.918,33.506,14.918,341.595,306.752,360.351,19.449,21.097,19.449 +5978,188.172,363.830,501.330,173.816,473.864,352.161,499.712,7.896,26.463,7.896,336.849,307.236,360.410,19.557,21.032,19.557 +5979,188.204,366.949,490.328,173.134,484.690,352.585,490.013,1.259,19.301,1.259,330.316,307.463,359.050,18.655,20.361,18.655 +5980,188.235,369.446,478.940,172.908,495.560,351.703,480.541,174.846,11.889,174.846,323.213,308.346,358.842,19.560,19.056,19.560 +5981,188.266,372.175,467.456,173.761,504.875,350.232,471.740,168.954,4.783,168.954,314.388,308.766,359.101,19.653,19.080,19.653 +5982,188.296,373.986,455.879,175.514,513.796,347.735,463.536,163.740,177.309,163.740,304.120,309.645,358.809,17.920,19.175,17.920 +5983,188.327,376.797,443.517,178.329,522.353,344.675,456.204,158.448,169.579,158.448,288.959,311.082,358.031,17.695,19.014,17.695 +5984,188.357,385.500,427.500,181.076,529.676,340.995,449.752,153.435,162.255,153.435,258.042,312.205,357.558,17.441,19.087,17.441 +5985,188.388,399.417,406.658,184.466,536.818,337.312,444.364,148.736,154.633,148.736,211.957,313.215,357.267,17.676,18.547,17.676 +5986,188.418,399.417,406.658,184.466,536.818,337.312,444.364,148.736,154.633,148.736,211.957,313.215,357.267,17.676,18.547,17.676 +5987,188.447,397.263,393.760,188.105,542.844,333.641,439.438,144.324,147.095,144.324,200.415,314.345,357.059,17.621,19.211,17.621 +5988,188.479,390.197,384.836,191.869,548.429,329.757,435.202,140.194,139.316,140.194,199.481,315.526,356.830,17.669,18.386,17.669 +5989,188.510,332.644,426.075,196.154,553.476,326.427,432.113,135.830,131.566,135.830,338.679,317.062,356.013,18.875,18.564,18.875 +5990,188.542,327.189,423.807,199.846,557.731,322.603,428.848,132.289,123.690,132.289,342.254,318.121,355.883,18.868,19.415,18.868 +5991,188.575,322.408,421.795,204.157,561.838,318.951,426.037,129.174,116.241,129.174,344.635,318.881,355.579,19.209,19.695,19.209 +5992,188.607,318.193,419.323,208.908,565.801,315.199,423.442,126.012,108.583,126.012,345.111,319.716,355.295,19.103,19.423,19.103 +5993,188.639,314.232,417.512,213.114,568.906,311.698,421.374,123.269,100.869,123.269,345.628,319.909,354.865,18.625,19.814,18.625 +5994,188.671,310.412,416.171,217.001,571.477,308.352,419.650,120.630,92.663,120.630,346.285,319.724,354.371,18.863,18.492,18.863 +5995,188.702,307.525,414.167,220.443,573.869,305.323,418.258,118.301,84.806,118.301,345.212,319.772,354.505,18.693,19.737,18.693 +5996,188.733,304.951,412.491,224.818,575.783,302.711,417.040,116.211,76.527,116.211,343.506,321.080,353.647,18.923,20.047,18.923 +5997,188.764,302.077,411.416,228.927,576.717,300.152,415.719,114.102,69.228,114.102,342.667,320.349,352.095,18.929,21.150,18.929 +5998,188.796,298.796,410.014,231.875,577.510,297.109,414.222,111.856,60.772,111.856,342.605,319.340,351.673,19.144,20.290,19.144 +5999,188.831,296.445,409.196,233.378,579.323,294.691,413.979,110.136,52.352,110.136,342.502,318.998,352.690,18.934,24.229,18.934 +6000,188.876,294.200,407.900,236.000,580.000,292.400,413.300,108.435,45.000,108.435,340.577,318.198,351.962,18.657,24.042,18.657 +6001,188.909,292.435,407.211,238.653,580.286,290.769,412.625,107.103,36.733,107.103,339.816,318.588,351.146,18.895,24.725,18.895 +6002,188.944,290.795,406.591,240.903,580.516,289.245,412.058,105.832,29.454,105.832,339.149,318.132,350.513,19.112,25.272,19.112 +6003,188.982,288.585,405.260,243.368,580.337,287.090,411.145,104.250,21.463,104.250,337.354,318.053,349.498,19.046,26.369,19.046 +6004,189.013,286.515,404.210,245.627,580.455,285.076,410.561,102.766,13.173,102.766,335.802,316.697,348.824,19.033,26.538,19.033 +6005,189.044,285.590,402.648,247.090,581.008,284.005,410.205,101.842,5.194,101.842,334.042,316.332,349.486,19.069,24.988,19.069 +6006,189.076,283.715,402.353,248.527,581.711,282.177,410.558,100.620,178.727,100.620,332.149,315.300,348.845,19.105,24.505,19.105 +6007,189.109,282.071,401.515,249.682,581.738,280.660,409.922,99.527,171.634,99.527,332.097,315.984,349.146,19.414,24.065,19.414 +6008,189.143,280.763,400.767,250.840,581.689,279.410,409.691,98.616,164.055,98.616,330.620,316.341,348.673,19.175,23.214,19.175 +6009,189.175,279.255,399.939,252.016,582.180,277.945,409.649,97.681,156.371,97.681,329.301,317.105,348.898,19.788,23.477,19.788 +6010,189.208,278.215,399.271,252.851,582.081,276.966,409.484,96.973,148.891,96.973,327.916,317.956,348.496,18.831,22.276,18.831 +6011,189.241,277.207,397.634,253.742,582.312,275.884,409.546,96.340,142.125,96.340,324.337,318.460,348.308,18.442,21.576,18.442 +6012,189.273,276.111,396.608,254.556,582.490,274.839,409.653,95.572,136.273,95.572,321.765,318.402,347.979,18.303,20.077,18.303 +6013,189.305,275.254,395.326,255.590,582.854,274.015,409.577,94.970,129.111,94.970,319.837,319.566,348.444,18.149,20.325,18.149 +6014,189.335,273.995,393.572,256.834,583.380,272.792,410.108,94.160,123.906,94.160,314.787,320.361,347.946,18.206,19.361,18.206 +6015,189.365,272.454,391.606,258.294,583.812,271.465,409.896,93.094,118.301,93.094,312.112,320.966,348.746,18.136,19.303,18.136 +6016,189.395,270.946,389.579,259.973,584.267,270.116,410.119,92.314,113.824,92.314,307.719,321.162,348.832,18.006,19.222,18.006 +6017,189.427,269.302,387.030,261.807,584.707,268.760,410.338,91.332,109.879,91.332,302.337,321.828,348.966,17.809,19.924,17.809 +6018,189.458,267.500,386.000,263.734,585.462,267.500,410.731,90.000,106.943,90.000,300.000,323.064,349.462,17.000,19.981,17.000 +6019,189.490,264.577,384.943,266.324,585.486,265.149,410.710,88.727,104.906,88.727,297.971,323.366,349.518,17.507,19.689,17.507 +6020,189.521,262.062,386.334,269.258,585.821,263.225,411.336,87.337,103.583,87.337,299.095,324.006,349.153,17.841,20.263,17.841 +6021,189.552,262.062,386.334,269.258,585.821,263.225,411.336,87.337,103.583,87.337,299.095,324.006,349.153,17.841,20.263,17.841 +6022,189.581,259.183,387.211,271.666,585.538,261.056,411.095,85.515,102.967,85.515,301.564,323.797,349.478,17.964,19.823,17.964 +6023,189.611,256.603,390.603,274.310,585.341,258.895,411.424,83.717,102.961,83.717,307.226,324.021,349.119,18.321,20.125,18.321 +6024,189.644,253.756,392.675,277.941,584.735,256.503,411.719,81.793,104.036,81.793,310.127,323.542,348.610,18.834,20.130,18.834 +6025,189.676,251.036,395.948,281.103,584.054,253.986,412.175,79.695,105.566,79.695,314.928,323.903,347.914,19.230,20.154,19.230 +6026,189.710,247.409,397.961,284.553,582.540,250.656,412.461,77.381,107.628,77.381,317.033,322.609,346.752,19.109,20.459,19.109 +6027,189.742,244.786,400.979,288.583,581.279,248.003,412.908,74.908,110.610,74.908,321.548,321.984,346.259,20.319,19.960,20.319 +6028,189.775,241.058,403.180,293.232,580.057,244.550,414.068,72.216,114.305,72.216,322.981,321.537,345.851,20.158,20.521,20.158 +6029,189.808,237.882,405.112,297.861,578.398,241.597,415.078,69.555,117.860,69.555,324.100,321.280,345.372,21.435,21.597,21.435 +6030,189.841,234.334,407.283,302.695,576.535,238.266,416.443,66.764,121.405,66.764,325.111,321.214,345.048,22.093,22.335,22.093 +6031,189.874,230.738,409.898,307.650,574.107,234.801,418.079,63.587,125.362,63.587,326.026,320.731,344.293,22.254,23.439,22.254 +6032,189.906,226.287,412.201,312.567,571.462,230.802,420.152,60.408,129.155,60.408,325.613,320.144,343.900,21.943,23.573,21.943 +6033,189.937,223.087,414.702,317.541,568.475,228.018,422.308,57.043,133.135,57.043,324.565,319.949,342.695,23.688,23.911,23.688 +6034,189.967,218.536,417.271,322.882,564.955,223.853,424.451,53.482,137.291,53.482,325.828,319.922,343.697,24.429,24.644,24.429 +6035,189.998,213.903,420.542,328.174,560.970,219.852,427.566,49.737,141.397,49.737,325.201,319.847,343.613,24.146,24.825,24.146 +6036,190.029,209.357,424.667,333.501,556.686,215.835,431.330,45.807,145.528,45.807,325.217,320.089,343.804,23.920,25.396,23.920 +6037,190.059,204.622,429.781,338.646,551.604,211.774,435.967,40.855,149.676,40.855,324.296,320.536,343.209,25.389,25.081,25.389 +6038,190.091,200.420,433.940,343.470,545.965,208.242,439.807,36.870,154.011,36.870,324.200,320.270,343.755,25.400,24.685,25.400 +6039,190.124,195.643,439.467,348.364,539.449,204.285,444.844,31.891,158.429,31.891,324.264,321.247,344.622,25.849,24.503,25.849 +6040,190.155,191.209,444.151,352.865,532.302,201.360,449.481,27.705,162.842,27.705,322.351,321.728,345.282,25.898,24.063,25.898 +6041,190.186,191.209,444.151,352.865,532.302,201.360,449.481,27.705,162.842,27.705,322.351,321.728,345.282,25.898,24.063,25.898 +6042,190.214,184.466,453.794,356.567,524.023,196.581,458.789,22.407,167.328,22.407,319.337,321.927,345.546,19.252,22.728,19.252 +6043,190.245,177.853,461.156,359.790,514.551,193.842,465.953,16.699,171.957,16.699,312.443,322.718,345.828,19.157,21.009,19.157 +6044,190.276,166.155,468.833,362.510,504.663,191.789,473.653,10.649,176.455,10.649,294.858,322.179,347.023,18.026,19.688,18.026 +6045,190.308,105.736,475.390,364.000,495.034,190.477,481.819,4.338,0.774,4.338,178.081,322.187,348.050,17.419,18.904,17.419 +6046,190.340,176.315,491.476,364.276,484.210,190.078,490.971,177.896,5.790,177.896,321.114,323.196,348.658,17.845,19.494,17.845 +6047,190.372,181.077,502.425,363.507,474.305,190.543,500.872,170.683,9.964,170.683,330.781,322.720,349.966,19.089,19.778,19.089 +6048,190.403,185.068,513.054,360.847,462.568,192.307,510.893,163.379,15.086,163.379,335.534,322.069,350.642,19.937,19.227,19.937 +6049,190.434,189.579,523.567,356.288,451.475,195.076,521.086,155.711,19.826,155.711,339.091,321.069,351.152,20.730,18.987,20.730 +6050,190.466,193.618,534.029,349.781,439.972,199.058,530.765,149.036,24.914,149.036,339.224,319.169,351.913,20.580,19.165,20.580 +6051,190.497,200.479,543.863,341.615,428.923,204.792,540.332,140.693,29.745,140.693,341.738,317.529,352.887,19.493,20.590,19.493 +6052,190.527,209.479,553.575,331.210,418.492,212.794,549.917,132.184,35.181,132.184,343.934,316.163,353.806,20.007,20.634,20.007 +6053,190.558,219.192,561.961,321.588,409.223,222.385,557.172,123.690,40.426,123.690,344.746,311.207,356.258,19.692,24.106,19.692 +6054,190.591,230.793,569.092,322.000,416.000,231.648,567.222,114.582,45.000,114.582,346.093,270.115,350.204,19.184,25.456,19.184 +6055,190.622,243.095,575.165,309.749,416.705,242.693,576.614,105.497,50.774,105.497,347.030,257.867,344.023,19.588,24.014,19.588 +6056,190.651,243.095,575.165,309.749,416.705,242.693,576.614,105.497,50.774,105.497,347.030,257.867,344.023,19.588,24.014,19.588 +6057,190.679,255.235,579.747,292.847,415.601,254.940,582.419,96.297,56.634,96.297,345.318,255.990,339.940,22.525,22.753,22.525 +6058,190.710,272.134,584.935,275.737,418.141,272.160,585.774,88.264,63.598,88.264,336.573,251.334,334.895,22.081,20.074,22.081 +6059,190.741,289.329,593.882,257.714,418.704,287.530,584.191,79.487,67.463,79.487,316.585,256.305,336.299,22.725,18.661,22.725 +6060,190.773,322.191,640.607,240.557,420.150,300.873,578.985,70.917,71.342,70.917,209.244,263.070,339.653,19.335,19.613,19.335 +6061,190.804,312.656,571.679,225.249,419.761,311.870,570.169,62.488,74.544,62.488,343.421,279.752,346.825,21.674,19.921,21.674 +6062,190.836,325.053,561.846,210.504,414.093,320.936,556.308,53.371,79.361,53.371,346.232,304.074,360.033,22.882,18.549,22.882 +6063,190.867,334.978,551.023,200.221,422.148,330.804,546.871,44.848,85.236,44.848,349.306,307.268,361.079,24.619,17.689,24.619 +6064,190.898,343.306,540.406,191.199,432.507,338.645,536.975,36.357,90.585,36.357,349.773,307.117,361.348,24.786,17.591,24.786 +6065,190.928,349.867,528.820,185.230,443.882,345.226,526.311,28.393,96.749,28.393,349.339,309.103,359.891,25.250,19.303,25.250 +6066,190.959,353.170,519.876,180.038,455.984,348.749,518.211,20.635,102.232,20.635,350.182,310.446,359.632,19.813,19.997,19.813 +6067,190.991,355.837,508.696,176.207,468.032,351.450,507.668,13.191,107.832,13.191,350.319,311.857,359.330,19.351,20.251,19.351 +6068,191.022,357.481,495.546,173.778,479.469,352.788,495.039,6.157,113.046,6.157,349.854,312.520,359.294,23.160,20.407,23.160 +6069,191.052,357.481,495.546,173.778,479.469,352.788,495.039,6.157,113.046,6.157,349.854,312.520,359.294,23.160,20.407,23.160 +6070,191.081,356.465,486.527,172.457,490.541,352.238,486.577,179.322,118.009,179.322,351.177,313.589,359.631,19.052,20.175,19.052 +6071,191.112,355.208,477.162,172.493,500.811,350.908,477.699,172.875,123.341,172.875,351.142,314.271,359.809,19.225,19.347,19.225 +6072,191.143,353.158,467.962,173.646,510.317,348.899,468.976,166.608,128.660,166.608,351.368,314.534,360.124,20.475,18.897,20.475 +6073,191.175,350.231,459.340,176.066,519.032,346.119,460.765,160.880,134.061,160.880,350.811,314.191,359.515,20.421,19.611,20.421 +6074,191.207,347.785,452.368,179.004,526.934,343.202,454.484,155.225,138.814,155.225,348.796,314.859,358.892,20.604,18.720,20.604 +6075,191.240,346.677,444.185,182.491,533.850,339.733,448.153,150.255,143.707,150.255,342.088,314.606,358.083,19.597,18.349,19.597 +6076,191.271,400.615,397.923,186.387,540.638,335.179,441.547,146.310,148.775,146.310,200.247,313.521,357.536,17.750,18.667,17.750 +6077,191.301,366.922,408.535,190.745,545.971,331.364,436.608,141.710,153.719,141.710,265.662,313.522,356.271,17.598,19.139,17.598 +6078,191.332,345.357,416.417,195.056,550.377,327.956,432.682,136.931,158.412,136.931,307.282,313.635,354.919,19.486,19.233,19.486 +6079,191.362,334.837,418.111,199.922,555.073,324.349,429.255,133.264,163.301,133.264,323.192,313.592,353.798,20.304,19.252,20.304 +6080,191.392,327.220,416.157,204.681,559.493,319.696,425.277,129.523,168.062,129.523,329.801,313.448,353.448,18.899,20.579,18.899 +6081,191.425,321.711,414.712,209.416,563.359,315.844,422.740,126.158,172.519,126.158,332.769,313.300,352.657,19.377,21.933,19.377 +6082,191.456,316.101,412.994,214.083,566.624,311.600,419.992,122.748,177.064,122.748,335.512,312.922,352.153,19.593,22.304,19.593 +6083,191.487,312.124,411.305,218.511,569.500,308.113,418.246,120.018,1.219,120.018,335.552,313.270,351.584,18.876,23.271,18.876 +6084,191.517,312.124,411.305,218.511,569.500,308.113,418.246,120.018,1.219,120.018,335.552,313.270,351.584,18.876,23.271,18.876 +6085,191.546,307.912,409.726,222.873,571.810,304.475,416.410,117.216,5.528,117.216,335.998,313.921,351.031,19.005,23.599,19.005 +6086,191.577,303.690,408.264,226.875,574.236,300.648,414.988,114.341,9.654,114.341,336.242,314.498,351.000,19.307,24.829,19.307 +6087,191.608,300.359,407.348,231.061,575.340,297.829,413.588,112.068,13.416,112.068,336.507,315.096,349.974,19.061,26.977,19.061 +6088,191.641,296.561,406.629,234.660,577.486,294.372,412.758,109.654,18.667,109.654,337.413,315.944,350.430,18.700,26.079,18.700 +6089,191.674,293.363,406.351,238.495,578.023,291.682,411.675,107.526,21.718,107.526,338.120,316.976,349.286,18.871,27.800,18.871 +6090,191.705,290.049,406.139,241.900,580.200,288.553,411.578,105.376,26.565,105.376,338.629,317.522,349.913,18.923,26.386,18.923 +6091,191.736,287.075,405.949,244.857,581.514,285.788,411.367,103.360,29.982,103.360,338.862,319.023,350.000,18.826,25.286,18.826 +6092,191.766,283.930,405.388,247.304,582.550,282.849,410.814,101.269,34.061,101.269,339.676,320.059,350.742,19.021,24.958,19.021 +6093,191.797,281.250,405.043,250.846,583.552,280.302,410.756,99.431,37.674,99.431,338.993,320.039,350.574,19.068,24.547,19.068 +6094,191.828,278.678,405.047,253.590,584.471,277.910,410.683,97.757,41.070,97.757,339.585,320.411,350.960,18.599,24.341,18.599 +6095,191.858,276.221,404.983,256.377,585.109,275.588,410.827,96.178,44.542,96.178,338.917,320.360,350.674,18.147,24.426,18.147 +6096,191.891,273.814,404.785,259.410,585.082,273.355,410.513,94.585,47.684,94.585,338.757,320.994,350.250,18.225,22.834,18.225 +6097,191.924,271.601,404.739,261.701,585.745,271.279,410.762,93.053,50.711,93.053,338.426,321.896,350.490,18.081,23.641,18.081 +6098,191.955,269.436,404.854,265.241,584.954,269.276,410.395,91.648,53.591,91.648,338.119,322.233,349.205,18.136,21.207,18.136 +6099,191.984,269.436,404.854,265.241,584.954,269.276,410.395,91.648,53.591,91.648,338.119,322.233,349.205,18.136,21.207,18.136 +6100,192.013,267.000,405.000,267.321,585.284,267.000,410.642,90.000,56.083,90.000,338.000,322.580,349.284,18.000,21.876,18.000 +6101,192.044,265.774,405.554,269.752,585.286,265.859,410.635,89.037,58.079,89.037,339.221,322.870,349.384,18.182,21.317,18.182 +6102,192.077,264.225,406.066,271.347,585.590,264.415,411.212,87.879,59.534,87.879,338.731,323.124,349.030,18.506,21.193,18.506 +6103,192.109,262.717,405.128,273.355,585.451,263.055,411.148,86.791,60.514,86.791,337.153,323.093,349.212,18.812,20.819,18.812 +6104,192.143,261.075,405.256,274.917,585.490,261.520,411.203,85.724,60.895,85.724,337.674,323.245,349.601,18.472,21.141,18.472 +6105,192.178,259.975,405.730,276.136,585.423,260.507,411.581,84.806,60.573,84.806,337.336,323.356,349.087,18.831,21.261,18.831 +6106,192.211,258.538,405.364,277.656,585.201,259.191,411.562,83.991,59.689,83.991,336.771,323.484,349.235,18.372,21.091,18.372 +6107,192.244,257.729,405.883,279.124,584.988,258.439,411.950,83.316,58.079,83.316,336.324,323.399,348.540,18.685,20.566,18.685 +6108,192.277,256.875,405.838,279.934,584.706,257.630,411.703,82.666,55.879,82.666,337.041,323.396,348.869,18.805,20.787,18.805 +6109,192.310,256.081,406.115,281.765,584.149,256.861,411.717,82.079,52.571,82.079,337.127,323.210,348.438,18.767,20.509,18.767 +6110,192.343,255.583,406.504,282.204,584.196,256.401,412.054,81.607,49.574,81.607,336.910,323.331,348.130,19.007,20.864,19.007 +6111,192.375,254.718,406.015,282.425,584.572,255.690,412.211,81.085,46.141,81.085,336.299,322.574,348.844,18.693,22.330,18.693 +6112,192.408,254.378,406.755,283.162,583.820,255.242,412.047,80.727,41.941,80.727,337.330,323.038,348.054,19.034,22.045,19.034 +6113,192.444,253.816,406.628,284.002,583.498,254.767,412.204,80.322,37.641,80.322,336.231,323.025,347.542,19.112,23.103,19.112 +6114,192.475,253.174,406.596,284.457,583.296,254.155,412.072,79.846,32.969,79.846,336.643,322.887,347.769,19.202,24.489,19.202 +6115,192.507,252.538,406.334,285.132,582.848,253.600,412.011,79.408,27.734,79.408,335.893,322.109,347.444,19.284,24.519,19.284 +6116,192.540,251.772,406.135,286.041,582.401,252.949,412.116,78.871,22.452,78.871,334.748,322.066,346.940,19.383,25.290,19.383 +6117,192.572,251.001,405.416,287.219,582.294,252.402,412.291,78.486,17.199,78.486,333.031,320.703,347.063,19.652,25.452,19.652 +6118,192.602,250.121,405.119,287.966,582.161,251.691,412.428,77.873,11.911,77.873,332.178,320.036,347.131,19.707,25.631,19.707 +6119,192.632,249.212,404.855,288.822,581.574,250.913,412.399,77.289,6.459,77.289,331.271,319.806,346.740,19.884,25.554,19.884 +6120,192.662,248.228,404.900,289.508,581.065,250.060,412.579,76.584,0.466,76.584,330.293,319.055,346.082,20.016,23.942,20.016 +6121,192.693,246.993,404.637,290.639,580.555,249.017,412.600,75.735,174.883,75.735,329.632,319.126,346.064,20.106,25.034,20.106 +6122,192.724,245.754,404.566,291.740,580.230,248.012,412.942,74.908,168.949,74.908,328.458,319.034,345.808,20.319,25.165,20.319 +6123,192.754,244.387,404.604,293.004,579.771,246.828,413.149,74.055,162.937,74.055,328.017,319.081,345.792,20.192,25.140,20.192 +6124,192.784,244.387,404.604,293.004,579.771,246.828,413.149,74.055,162.937,74.055,328.017,319.081,345.792,20.192,25.140,20.192 +6125,192.812,243.056,404.761,294.279,579.156,245.708,413.446,73.018,156.975,73.018,327.179,319.194,345.341,20.657,24.987,20.657 +6126,192.844,241.715,405.291,295.864,578.649,244.489,413.818,71.980,150.709,71.980,327.344,319.098,345.278,20.795,24.824,20.795 +6127,192.875,240.117,405.746,297.473,578.162,243.127,414.425,70.872,144.462,70.872,326.636,319.797,345.009,21.184,24.528,21.184 +6128,192.908,238.129,406.392,298.998,577.434,241.371,415.078,69.532,138.447,69.532,325.972,319.646,344.514,21.106,23.947,21.106 +6129,192.939,236.672,407.431,300.947,576.904,240.100,416.001,68.199,132.098,68.199,325.524,320.420,343.984,21.726,23.861,21.726 +6130,192.970,234.370,407.408,302.900,576.146,238.250,416.441,66.755,125.685,66.755,324.851,320.951,344.512,22.101,23.031,22.101 +6131,193.001,232.039,407.892,305.434,575.302,236.357,417.193,65.095,119.197,65.095,324.482,321.397,344.990,22.254,22.671,22.254 +6132,193.031,229.786,409.328,307.700,574.294,234.468,418.567,63.130,112.791,63.130,323.309,321.993,344.024,22.206,22.049,22.206 +6133,193.061,227.097,410.482,310.354,573.736,232.258,419.907,61.294,106.113,61.294,323.377,323.761,344.867,22.053,21.200,22.053 +6134,193.092,224.209,411.902,313.331,571.971,229.679,421.098,59.257,99.866,59.257,323.464,323.064,344.864,22.099,19.833,22.099 +6135,193.124,221.949,413.611,316.795,569.988,227.874,422.737,57.006,93.366,57.006,322.091,322.971,343.851,23.222,19.202,23.222 +6136,193.156,218.500,414.937,320.428,568.029,225.122,424.230,54.527,87.075,54.527,322.012,322.907,344.833,23.476,19.019,23.476 +6137,193.186,218.500,414.937,320.428,568.029,225.122,424.230,54.527,87.075,54.527,322.012,322.907,344.833,23.476,19.019,23.476 +6138,193.215,215.381,417.189,324.235,565.792,222.528,426.343,52.017,80.618,52.017,321.786,323.862,345.012,24.056,18.549,24.056 +6139,193.246,211.702,419.356,328.506,562.858,219.846,428.746,49.066,74.373,49.066,320.158,324.172,345.019,24.035,19.288,24.035 +6140,193.277,207.620,421.995,332.545,559.670,216.777,431.414,45.807,67.909,45.807,319.043,324.408,345.317,24.119,18.374,24.119 +6141,193.309,203.090,427.024,337.004,555.688,212.882,435.729,41.634,61.636,41.634,318.729,324.561,344.933,25.329,19.057,25.329 +6142,193.341,199.673,430.991,341.198,550.981,209.962,439.137,38.367,55.345,38.367,318.388,324.768,344.633,24.828,19.394,24.828 +6143,193.372,194.555,436.393,345.256,545.979,205.789,444.351,35.311,49.101,35.311,317.570,324.846,345.103,19.041,19.035,19.041 +6144,193.403,191.169,441.174,349.108,539.922,202.618,448.237,31.671,42.879,31.671,318.722,325.727,345.626,18.546,19.000,18.546 +6145,193.435,187.172,446.782,352.506,533.662,199.602,453.181,27.242,36.729,27.242,317.605,326.386,345.567,18.151,19.618,18.151 +6146,193.466,182.458,452.827,356.748,525.424,196.928,458.889,22.730,30.714,22.730,314.854,325.832,346.232,18.472,20.966,18.472 +6147,193.498,180.281,460.481,359.602,517.209,194.345,464.965,17.684,24.983,17.684,317.112,325.445,346.635,18.116,20.247,18.116 +6148,193.528,174.878,468.056,361.815,508.596,192.373,471.952,12.555,19.191,12.555,310.864,325.770,346.711,18.192,19.843,18.192 +6149,193.559,175.998,477.381,363.444,499.838,190.753,479.164,6.890,13.367,6.890,318.124,324.778,347.849,18.081,18.264,18.081 +6150,193.590,174.055,486.829,364.322,489.825,190.149,487.106,0.988,7.645,0.988,316.194,324.133,348.388,17.687,18.538,17.687 +6151,193.620,176.184,497.043,364.011,479.167,189.978,495.784,174.784,1.909,174.784,321.944,322.454,349.646,18.235,18.190,18.235 +6152,193.650,176.184,497.043,364.011,479.167,189.978,495.784,174.784,1.909,174.784,321.944,322.454,349.646,18.235,18.190,18.235 +6153,193.678,178.299,507.626,362.393,468.307,191.056,504.976,168.261,176.376,168.261,324.370,322.128,350.428,18.793,18.300,18.793 +6154,193.709,183.469,517.465,359.078,456.986,193.106,514.211,161.342,170.927,161.342,330.769,322.379,351.113,18.457,18.237,18.457 +6155,193.740,187.527,528.450,354.225,445.868,196.477,524.202,154.608,165.466,154.608,332.384,321.590,352.198,20.366,18.356,20.366 +6156,193.772,193.406,538.096,348.204,435.183,201.068,533.063,146.701,160.058,146.701,335.095,320.469,353.430,18.798,18.784,18.798 +6157,193.804,200.811,547.708,339.800,424.572,207.136,542.208,138.991,155.010,138.991,337.834,319.583,354.598,19.390,19.410,19.390 +6158,193.835,209.800,556.158,330.423,415.227,214.835,550.353,130.938,149.808,130.938,340.262,318.520,355.630,19.378,18.859,19.378 +6159,193.867,219.787,564.220,319.219,407.103,223.792,557.990,122.735,144.696,122.735,342.239,317.604,357.052,19.708,19.258,19.708 +6160,193.898,231.198,571.038,306.862,400.837,234.157,564.355,113.886,139.720,113.886,343.286,316.511,357.904,19.280,19.202,19.280 +6161,193.929,243.410,576.437,293.687,396.699,245.229,569.684,105.078,135.484,105.078,345.283,315.394,359.270,19.686,19.177,19.686 +6162,193.959,255.510,579.341,278.519,393.242,256.269,572.229,96.089,130.336,96.089,346.368,314.223,360.674,22.406,19.011,22.406 +6163,193.990,269.297,580.230,264.482,393.213,268.991,573.294,87.474,125.972,87.474,346.325,313.421,360.209,22.757,18.235,22.757 +6164,194.020,283.388,579.121,250.796,395.613,282.225,573.242,78.813,121.787,78.813,348.716,312.289,360.703,22.757,18.138,22.757 +6165,194.051,283.388,579.121,250.796,395.613,282.225,573.242,78.813,121.787,78.813,348.716,312.289,360.703,22.757,18.138,22.757 +6166,194.079,298.460,575.167,236.222,398.875,296.374,569.153,70.873,116.928,70.873,348.442,311.713,361.174,20.076,18.567,20.076 +6167,194.111,311.571,568.918,222.937,404.678,308.792,563.602,62.403,112.203,62.403,349.233,310.688,361.229,22.196,18.498,22.196 +6168,194.143,323.899,560.977,211.626,412.346,320.441,556.250,53.811,107.850,53.811,349.070,310.226,360.783,23.782,18.408,23.782 +6169,194.183,333.849,552.206,200.737,421.169,329.627,547.900,45.567,102.920,45.567,349.392,309.398,361.454,24.026,18.959,24.026 +6170,194.225,349.080,530.997,185.797,442.021,344.111,528.149,29.812,94.128,29.812,348.909,309.145,360.364,25.248,19.629,25.248 +6171,194.258,353.868,519.820,180.778,452.996,348.819,517.740,22.392,89.812,22.392,349.148,308.048,360.069,25.730,18.562,25.730 +6172,194.291,356.021,512.086,177.389,463.805,350.847,510.673,15.275,85.329,15.275,348.631,309.257,359.357,19.208,20.391,19.208 +6173,194.322,358.024,501.341,175.139,474.653,352.613,500.534,8.476,80.794,8.476,347.760,309.738,358.701,19.425,20.794,19.425 +6174,194.356,358.438,491.291,173.849,485.052,352.974,491.103,1.975,76.390,1.975,347.518,309.961,358.453,18.816,19.858,18.816 +6175,194.387,358.031,481.433,174.062,494.991,352.659,481.812,175.962,71.940,175.962,347.394,309.917,358.164,19.105,19.800,19.105 +6176,194.417,358.031,481.433,174.062,494.991,352.659,481.812,175.962,71.940,175.962,347.394,309.917,358.164,19.105,19.800,19.105 +6177,194.445,356.468,472.315,175.184,504.339,351.276,473.222,170.096,67.454,170.096,347.098,310.153,357.639,19.827,19.545,19.827 +6178,194.478,354.217,464.284,176.983,512.997,349.308,465.642,164.534,62.913,164.534,347.239,310.447,357.425,20.403,19.600,20.403 +6179,194.511,351.389,456.853,179.755,521.343,346.675,458.635,159.291,58.318,159.291,346.539,312.167,356.620,21.035,19.792,21.035 +6180,194.544,348.376,450.347,182.595,528.099,343.786,452.525,154.622,53.777,154.622,345.891,312.457,356.052,19.970,19.819,19.970 +6181,194.577,345.268,444.971,185.560,534.145,340.812,447.507,150.350,49.028,150.350,345.313,311.392,355.567,19.948,20.088,19.948 +6182,194.609,341.408,439.120,189.192,539.729,337.168,441.972,146.067,44.170,146.067,344.470,311.197,354.690,19.611,20.043,19.611 +6183,194.642,337.831,434.737,191.073,545.801,333.042,438.407,142.535,39.327,142.535,343.950,312.539,356.018,19.020,24.185,19.020 +6184,194.674,334.137,430.942,194.952,550.291,329.875,434.672,138.814,34.729,138.814,344.022,312.688,355.350,20.037,24.011,20.037 +6185,194.704,330.725,427.268,198.819,553.948,326.668,431.226,135.707,30.069,135.707,343.086,312.464,354.423,19.413,24.505,19.413 +6186,194.735,327.672,423.932,202.227,556.581,323.705,428.224,132.749,25.153,132.749,341.741,313.230,353.429,19.592,24.896,19.592 +6187,194.765,324.236,420.795,205.866,559.881,320.251,425.546,129.987,19.411,129.987,340.461,312.957,352.864,18.982,24.980,18.982 +6188,194.796,321.694,418.330,208.748,562.587,317.629,423.638,127.451,15.216,127.451,339.662,313.112,353.034,19.779,24.162,19.779 +6189,194.826,318.628,415.549,211.578,565.049,314.357,421.626,125.096,9.744,125.096,338.024,313.174,352.879,19.040,23.813,19.040 +6190,194.858,316.633,413.711,214.150,566.821,312.276,420.354,123.265,3.945,123.265,336.692,313.325,352.580,19.338,23.290,19.338 +6191,194.890,313.518,411.614,216.521,568.489,309.283,418.660,121.005,178.781,121.005,335.970,313.291,352.410,18.874,22.867,18.874 +6192,194.920,313.518,411.614,216.521,568.489,309.283,418.660,121.005,178.781,121.005,335.970,313.291,352.410,18.874,22.867,18.874 +6193,194.948,311.395,409.909,218.827,569.501,307.154,417.448,119.358,173.418,119.358,334.358,314.299,351.657,19.011,21.970,19.011 +6194,194.979,310.246,408.164,220.794,571.029,305.511,417.042,118.072,168.024,118.072,331.353,314.991,351.475,18.706,22.262,18.706 +6195,195.010,308.500,406.500,222.487,571.879,303.673,416.154,116.565,162.429,116.565,329.596,315.382,351.184,19.230,21.609,19.230 +6196,195.043,307.523,404.702,223.867,572.698,302.264,415.745,115.463,156.251,115.463,326.363,315.967,350.825,19.089,21.016,19.089 +6197,195.076,306.687,402.765,225.241,573.533,301.036,415.229,114.386,150.945,114.386,323.583,316.348,350.952,19.564,20.591,19.564 +6198,195.108,306.678,400.674,226.099,574.143,300.416,414.951,113.682,145.125,113.682,320.092,317.370,351.271,19.971,19.839,19.971 +6199,195.140,305.724,397.429,226.770,574.733,298.607,414.459,112.681,139.236,112.681,314.245,317.799,351.159,19.211,19.405,19.211 +6200,195.172,306.707,392.503,227.511,575.539,297.655,414.228,112.620,133.299,112.620,304.692,318.436,351.763,17.538,18.951,17.538 +6201,195.204,309.027,385.250,228.358,576.392,297.045,414.260,112.443,127.278,112.443,289.374,319.042,352.148,17.360,19.477,17.360 +6202,195.236,315.566,367.448,228.738,576.932,296.600,414.169,112.094,121.218,112.094,251.824,319.844,352.672,17.128,19.125,17.128 +6203,195.267,326.259,339.603,229.067,577.532,296.275,414.562,111.801,115.292,111.801,191.080,320.354,352.547,16.898,19.394,16.898 +6204,195.298,302.289,400.141,228.965,577.468,296.677,414.586,111.233,109.120,111.233,321.699,321.043,352.694,17.407,18.884,17.407 +6205,195.327,299.600,407.870,229.537,578.125,296.831,414.977,111.289,103.134,111.289,337.642,321.238,352.896,17.358,19.347,17.358 +6206,195.358,298.675,409.686,229.595,578.013,296.706,414.668,111.567,97.502,111.567,342.442,321.414,353.156,18.508,19.356,18.508 +6207,195.389,299.069,410.614,229.630,578.961,297.134,415.407,111.991,91.637,111.991,343.525,322.326,353.863,18.349,19.306,18.349 +6208,195.420,299.069,410.614,229.630,578.961,297.134,415.407,111.991,91.637,111.991,343.525,322.326,353.863,18.349,19.306,18.349 +6209,195.448,300.017,410.959,229.134,578.449,298.129,415.460,112.751,85.400,112.751,344.216,322.452,353.979,18.801,19.099,18.801 +6210,195.480,300.879,410.871,228.516,577.595,298.938,415.375,113.305,78.853,113.305,343.882,321.044,353.691,18.580,20.038,18.580 +6211,195.511,301.885,411.603,227.754,577.268,299.941,415.939,114.146,72.870,114.146,343.985,321.657,353.486,19.289,20.841,19.289 +6212,195.544,303.931,412.016,227.043,575.642,301.909,416.268,115.436,67.209,115.436,342.746,320.002,352.161,19.185,20.825,19.185 +6213,195.576,305.042,412.044,225.251,574.303,302.940,416.314,116.200,60.895,116.200,342.596,318.777,352.114,19.113,20.159,19.113 +6214,195.608,307.019,412.703,223.443,572.774,304.916,416.727,117.597,54.758,117.597,342.989,318.184,352.070,19.296,20.214,19.296 +6215,195.639,309.488,413.593,221.595,571.035,307.198,417.682,119.249,48.618,119.249,341.883,317.098,351.255,19.090,20.302,19.090 +6216,195.670,311.832,414.202,217.468,570.835,308.804,419.259,120.906,42.274,120.906,342.147,316.358,353.934,18.736,24.687,18.736 +6217,195.700,314.506,415.362,214.765,568.460,311.318,420.330,122.692,36.327,122.692,341.822,316.171,353.628,19.030,24.572,19.030 +6218,195.731,316.892,416.581,212.299,566.307,313.549,421.429,124.592,30.651,124.592,341.718,314.675,353.497,18.877,25.140,18.877 +6219,195.761,320.280,418.460,209.204,563.061,316.702,423.230,126.870,24.963,126.870,340.800,314.568,352.726,19.800,25.791,19.800 +6220,195.793,323.713,420.129,206.115,560.190,319.746,424.977,129.289,18.759,129.289,340.682,313.418,353.210,19.701,25.691,19.701 +6221,195.825,327.639,422.336,202.553,557.129,322.925,427.554,132.098,13.134,132.098,339.620,313.090,353.684,19.507,23.113,19.507 +6222,195.856,331.750,424.750,198.784,553.312,326.118,430.382,135.000,7.407,135.000,337.997,312.738,353.926,19.092,21.479,19.092 +6223,195.886,331.750,424.750,198.784,553.312,326.118,430.382,135.000,7.407,135.000,337.997,312.738,353.926,19.092,21.479,19.092 +6224,195.915,336.816,427.090,195.090,549.337,329.420,433.705,138.190,2.386,138.190,334.575,312.521,354.422,20.074,20.066,20.074 +6225,195.946,342.576,427.710,191.322,544.423,332.025,436.276,140.929,177.151,140.929,327.620,311.510,354.801,20.085,18.963,20.085 +6226,195.976,351.689,432.337,187.417,539.857,336.769,442.795,144.975,172.656,144.975,319.582,311.962,356.023,23.433,19.157,23.433 +6227,196.009,360.728,431.154,184.034,534.634,338.501,445.171,147.763,168.845,147.763,304.201,312.034,356.756,21.550,19.553,21.550 +6228,196.041,376.521,431.428,180.772,529.079,341.097,449.832,152.546,165.847,152.546,277.769,311.914,357.610,17.797,19.722,17.797 +6229,196.074,405.714,428.306,177.964,523.079,343.858,455.064,156.607,163.625,156.607,223.733,311.963,358.525,17.773,19.912,17.773 +6230,196.106,420.400,435.270,175.593,516.748,346.365,460.955,160.866,161.274,160.866,202.525,311.183,359.252,17.815,18.652,17.815 +6231,196.138,357.535,465.257,173.277,508.263,348.576,467.646,165.069,160.017,165.069,341.145,311.670,359.690,18.552,21.017,18.552 +6232,196.169,355.721,472.865,172.361,500.878,350.254,473.798,170.311,158.505,170.311,348.734,311.969,359.826,19.691,21.594,19.691 +6233,196.200,356.407,481.647,171.634,493.052,351.520,481.983,176.067,156.038,176.067,350.647,311.001,360.444,18.855,20.510,18.855 +6234,196.231,356.115,491.054,172.903,485.317,352.492,490.933,1.909,152.063,1.909,352.104,310.724,359.354,18.690,21.565,18.690 +6235,196.261,355.612,500.737,174.033,474.503,352.296,500.249,8.366,148.510,8.366,353.521,310.594,360.224,19.554,19.492,19.554 +6236,196.292,354.277,511.485,176.911,463.502,350.618,510.487,15.255,144.830,15.255,352.314,310.402,359.899,19.032,19.984,19.032 +6237,196.324,351.549,520.803,181.102,452.366,348.093,519.295,23.575,141.109,23.575,352.101,310.461,359.644,25.596,20.400,25.596 +6238,196.354,347.731,530.499,186.693,440.769,344.118,528.414,29.982,137.987,29.982,351.971,310.250,360.315,25.186,19.054,25.186 +6239,196.383,347.731,530.499,186.693,440.769,344.118,528.414,29.982,137.987,29.982,351.971,310.250,360.315,25.186,19.054,25.186 +6240,196.413,341.590,541.500,194.500,430.475,338.189,538.874,37.683,134.275,37.683,351.367,309.867,359.960,25.429,17.954,25.429 +6241,196.444,332.291,552.808,203.757,421.018,329.312,549.654,46.637,130.828,46.637,350.784,310.090,359.460,23.466,18.439,23.466 +6242,196.478,322.258,561.869,213.720,411.540,319.262,557.589,55.008,126.870,55.008,349.894,310.000,360.344,23.348,18.200,23.348 +6243,196.511,309.965,570.025,225.223,403.974,307.300,564.650,63.623,123.247,63.623,348.825,310.356,360.825,22.673,18.185,22.673 +6244,196.544,297.129,575.466,238.023,398.085,295.123,569.350,71.841,119.745,71.841,348.189,310.955,361.062,21.193,18.233,21.193 +6245,196.576,283.868,579.522,252.461,394.739,282.722,572.703,80.463,116.834,80.463,347.206,311.261,361.036,23.676,18.707,23.676 +6246,196.611,269.708,580.551,265.514,392.491,269.625,572.779,89.390,112.094,89.390,345.098,312.161,360.643,21.041,20.641,21.041 +6247,196.643,253.410,581.920,278.265,393.401,254.638,572.201,97.199,109.039,97.199,341.111,311.910,360.703,22.704,20.811,22.704 +6248,196.676,221.479,643.748,292.449,395.985,243.750,569.097,106.612,106.504,106.612,203.813,311.361,359.618,18.678,17.898,18.678 +6249,196.709,217.758,595.756,305.190,400.692,232.589,564.011,115.043,103.241,115.043,287.319,313.097,357.395,19.286,19.354,19.286 +6250,196.740,212.157,574.070,317.711,407.450,222.725,557.951,123.251,99.744,123.251,317.334,312.726,355.883,20.370,21.085,20.370 +6251,196.771,203.803,561.159,328.659,415.073,213.586,550.153,131.634,96.340,131.634,325.372,313.405,354.821,19.848,21.865,19.848 +6252,196.802,198.147,549.077,338.271,424.570,206.430,541.952,139.297,93.145,139.297,331.145,313.845,352.996,19.939,23.141,19.939 +6253,196.833,193.176,538.591,345.895,434.497,200.582,533.747,146.814,89.497,146.814,334.177,313.102,351.876,21.244,22.324,21.244 +6254,196.864,188.900,527.428,351.819,445.362,195.605,524.148,153.933,86.594,153.933,334.958,315.572,349.888,21.158,23.078,21.158 +6255,196.894,185.240,517.474,356.731,455.846,192.272,515.014,160.720,82.875,160.720,334.645,315.916,349.544,21.003,23.815,21.003 +6256,196.926,183.016,507.769,359.906,466.886,190.223,506.131,167.196,79.778,167.196,333.540,317.083,348.322,20.123,23.926,20.123 +6257,196.958,182.044,497.891,361.801,477.683,189.043,497.099,173.548,76.329,173.548,333.605,317.998,347.692,19.311,23.977,19.311 +6258,196.988,182.500,488.000,363.086,488.022,189.543,488.000,0.000,73.217,0.000,333.000,319.044,347.086,18.000,24.558,18.000 +6259,197.018,182.500,488.000,363.086,488.022,189.543,488.000,0.000,73.217,0.000,333.000,319.044,347.086,18.000,24.558,18.000 +6260,197.045,183.017,480.313,362.690,497.398,190.185,480.962,5.168,70.396,5.168,332.172,320.059,346.567,19.008,23.590,19.008 +6261,197.078,184.497,472.828,361.601,506.407,191.320,474.098,10.545,67.218,10.545,332.756,321.071,346.636,18.794,22.884,18.794 +6262,197.111,186.344,465.036,359.839,514.852,193.319,467.022,15.890,64.163,15.890,332.000,321.674,346.505,18.962,21.705,18.962 +6263,197.144,188.355,458.699,357.576,522.320,195.577,461.383,20.389,61.363,20.389,330.751,322.748,346.160,19.095,21.318,19.095 +6264,197.178,191.887,450.505,354.880,529.074,199.087,453.705,23.962,58.483,23.962,330.191,323.494,345.950,25.587,20.082,25.587 +6265,197.211,194.318,444.426,352.040,534.955,202.130,448.641,28.355,56.063,28.355,328.081,323.954,345.834,26.345,19.253,26.345 +6266,197.244,195.985,441.191,349.275,540.082,204.046,446.027,30.964,54.233,30.964,327.048,324.809,345.847,25.725,18.669,25.725 +6267,197.277,197.231,437.154,346.839,543.992,206.289,443.192,33.690,53.036,33.690,323.945,325.000,345.718,25.516,19.028,25.516 +6268,197.310,198.185,434.584,344.378,547.444,208.022,441.680,35.803,52.535,35.803,320.663,324.797,344.921,24.770,18.990,24.770 +6269,197.343,197.481,431.596,342.322,550.277,208.829,440.422,37.875,52.740,37.875,316.881,324.836,345.634,22.628,18.925,22.628 +6270,197.376,198.878,428.754,340.500,552.500,210.284,438.634,40.900,53.499,40.900,315.776,325.025,345.954,19.296,19.083,19.296 +6271,197.410,199.517,427.666,338.652,554.345,210.744,437.639,41.614,55.039,41.614,316.235,324.906,346.268,19.347,18.996,19.347 +6272,197.441,201.345,426.862,337.464,555.523,212.280,436.582,41.634,57.216,41.634,315.905,324.872,345.167,23.253,18.880,23.253 +6273,197.474,204.267,424.001,336.923,556.115,214.587,433.789,43.485,60.255,43.485,317.436,324.847,345.884,24.796,19.349,24.796 +6274,197.506,205.423,424.856,336.000,556.500,214.550,433.548,43.603,63.435,43.603,320.276,324.677,345.483,24.793,18.336,24.793 +6275,197.538,206.473,426.272,336.036,556.282,214.562,433.923,43.409,67.891,43.409,322.395,324.408,344.665,24.837,18.674,24.837 +6276,197.570,204.968,428.682,336.349,555.583,212.664,435.568,41.820,72.810,41.820,323.749,324.524,344.401,24.515,18.921,24.515 +6277,197.602,204.604,429.833,336.918,554.226,211.687,435.959,40.855,78.215,40.855,325.441,323.960,344.169,25.287,19.015,25.287 +6278,197.632,203.785,431.426,338.472,552.398,210.685,437.136,39.611,84.026,39.611,325.956,323.316,343.868,25.210,20.400,25.210 +6279,197.662,202.356,433.083,340.500,550.000,209.407,438.613,38.108,90.000,38.108,325.865,322.000,343.786,25.611,21.000,25.611 +6280,197.692,200.836,435.116,342.218,547.181,207.806,440.252,36.384,96.009,36.384,325.963,322.115,343.279,25.380,22.455,25.380 +6281,197.723,199.124,437.694,344.314,544.173,206.124,442.475,34.330,102.011,34.330,325.990,321.485,342.944,25.016,23.329,25.016 +6282,197.753,199.124,437.694,344.314,544.173,206.124,442.475,34.330,102.011,34.330,325.990,321.485,342.944,25.016,23.329,25.016 +6283,197.782,196.359,440.101,346.809,540.264,203.823,444.745,31.891,108.034,31.891,326.151,320.687,343.732,25.528,24.214,25.528 +6284,197.813,194.423,442.885,349.442,536.044,202.084,447.262,29.745,114.167,29.745,326.335,320.355,343.982,24.931,25.148,24.931 +6285,197.845,191.800,446.400,351.733,531.824,200.058,450.529,26.565,120.662,26.565,325.572,321.017,344.037,25.938,25.302,25.938 +6286,197.877,188.663,451.417,354.481,526.503,197.545,455.135,22.714,127.185,22.714,325.386,320.600,344.644,26.086,25.439,26.086 +6287,197.909,185.229,458.760,357.209,520.649,194.831,462.190,19.654,133.531,19.654,324.766,320.450,345.160,19.306,25.629,19.306 +6288,197.941,182.807,464.470,359.412,514.166,193.127,467.364,15.665,139.724,15.665,324.055,320.442,345.491,19.339,24.583,19.339 +6289,197.970,179.618,470.373,361.419,507.125,191.656,472.828,11.527,146.140,11.527,321.816,320.619,346.387,18.855,23.755,18.855 +6290,198.001,176.182,477.108,362.857,499.219,190.833,478.894,6.953,152.935,6.953,316.920,321.566,346.439,18.715,23.088,18.715 +6291,198.032,168.907,484.686,363.446,490.529,189.684,485.403,1.975,159.481,1.975,306.094,321.862,347.672,18.679,21.393,18.679 +6292,198.061,151.592,494.109,363.639,481.077,189.756,491.928,176.730,165.769,176.730,271.985,322.338,348.438,17.229,19.695,17.229 +6293,198.093,116.794,510.937,362.837,472.133,190.264,499.566,171.203,172.706,171.203,200.788,322.132,349.477,17.365,19.410,17.365 +6294,198.124,181.866,511.002,361.042,464.306,191.496,508.556,165.750,178.966,165.750,330.569,322.200,350.442,18.646,19.953,18.646 +6295,198.155,186.804,519.992,358.189,454.546,193.962,517.223,158.850,5.515,158.850,336.207,321.882,351.558,20.579,18.514,20.579 +6296,198.185,186.804,519.992,358.189,454.546,193.962,517.223,158.850,5.515,158.850,336.207,321.882,351.558,20.579,18.514,20.579 +6297,198.214,191.233,529.493,353.719,445.286,197.224,526.335,152.205,12.328,152.205,338.919,320.851,352.465,22.020,19.118,22.020 +6298,198.247,195.856,538.025,347.593,436.099,201.198,534.405,145.871,19.239,145.871,339.767,319.447,352.674,20.189,19.339,20.189 +6299,198.283,202.589,546.173,339.800,426.400,206.681,542.592,138.814,26.565,138.814,342.516,317.522,353.391,19.849,20.572,19.849 +6300,198.314,209.963,554.021,330.948,417.847,213.308,550.275,131.760,33.056,131.760,344.224,315.420,354.267,19.794,21.033,19.794 +6301,198.346,218.823,562.059,322.224,409.478,222.226,556.987,123.864,40.446,123.864,344.197,310.981,356.414,19.765,24.515,19.765 +6302,198.378,229.094,568.289,324.178,417.899,229.953,566.521,115.931,46.931,115.931,345.794,268.929,349.724,19.826,25.076,19.826 +6303,198.412,239.652,573.868,312.193,418.717,239.190,575.280,108.122,54.707,108.122,345.979,257.829,343.007,19.094,24.229,19.094 +6304,198.445,250.543,579.852,296.461,419.568,250.023,582.869,99.782,64.584,99.782,343.756,252.580,337.633,21.544,21.613,21.544 +6305,198.478,265.357,587.754,279.553,419.829,265.418,586.355,92.481,70.866,92.481,331.166,251.190,333.965,22.978,19.975,22.978 +6306,198.512,278.437,610.891,261.989,418.121,275.529,585.965,83.346,76.675,83.346,286.374,257.892,336.564,22.382,18.719,22.382 +6307,198.545,291.794,585.431,245.046,418.774,290.933,582.025,75.811,81.927,75.811,332.009,264.881,339.037,22.064,20.167,22.064 +6308,198.577,304.725,574.585,230.730,402.664,301.990,567.931,67.654,88.025,67.654,345.509,303.130,359.898,21.499,18.851,21.499 +6309,198.610,316.464,566.538,219.300,408.480,313.553,561.629,59.329,95.768,59.329,348.192,305.385,359.608,23.081,17.899,23.081 +6310,198.642,327.404,558.260,208.245,415.169,323.769,553.745,51.161,102.758,51.161,349.186,308.714,360.777,24.047,17.924,24.047 +6311,198.674,336.984,548.877,198.199,424.143,332.675,544.850,43.065,109.654,43.065,349.541,309.968,361.336,24.759,18.364,24.759 +6312,198.705,344.175,538.201,190.227,434.383,339.921,535.205,35.154,117.072,35.154,350.476,310.861,360.884,25.323,18.798,25.323 +6313,198.736,349.578,527.500,184.482,445.988,345.787,525.506,27.742,124.735,27.742,350.989,311.735,359.556,25.268,19.822,25.268 +6314,198.766,352.318,519.314,179.330,457.067,348.693,517.958,20.507,131.579,20.507,352.185,312.260,359.924,19.592,18.889,19.592 +6315,198.797,354.755,508.872,175.119,467.324,350.743,507.903,13.570,137.647,13.570,352.229,312.796,360.484,19.375,20.699,19.375 +6316,198.828,356.395,498.776,172.718,477.604,351.929,498.229,6.990,144.508,6.990,351.780,312.473,360.779,19.205,19.963,19.205 +6317,198.859,356.569,489.245,172.164,488.393,352.115,489.187,0.751,150.926,0.751,350.983,312.075,359.891,18.378,20.570,18.378 +6318,198.891,356.733,480.003,172.238,496.870,351.710,480.452,174.902,157.453,174.902,350.356,311.773,360.441,19.228,19.552,19.228 +6319,198.922,363.072,470.241,173.043,504.382,350.002,472.721,169.257,163.895,169.257,332.911,311.399,359.517,18.729,18.200,18.729 +6320,198.952,402.966,449.450,175.028,512.671,347.940,464.857,164.358,170.789,164.358,244.516,310.538,358.801,17.873,18.995,17.873 +6321,198.983,402.966,449.450,175.028,512.671,347.940,464.857,164.358,170.789,164.358,244.516,310.538,358.801,17.873,18.995,17.873 +6322,199.012,367.205,450.303,177.546,519.573,345.812,458.666,158.647,177.563,158.647,311.847,309.613,357.786,21.463,18.621,21.463 +6323,199.045,357.057,445.658,180.613,526.730,343.043,452.396,154.319,3.638,154.319,326.097,310.091,357.197,20.832,19.042,20.832 +6324,199.079,350.300,441.900,184.375,532.664,340.606,447.439,150.255,10.620,150.255,333.529,310.465,355.859,19.970,20.579,19.970 +6325,199.111,343.846,437.769,187.803,538.495,337.087,442.275,146.310,16.763,146.310,338.922,310.625,355.169,19.969,22.519,19.969 +6326,199.145,339.353,434.954,191.179,543.923,334.236,438.817,142.951,23.305,142.951,342.181,311.201,355.005,19.836,24.726,19.836 +6327,199.178,334.843,431.238,194.287,548.874,330.509,434.948,139.446,29.615,139.446,343.731,311.956,355.141,19.308,25.047,19.308 +6328,199.212,331.746,428.378,197.409,553.040,327.513,432.376,136.637,35.311,136.637,343.231,313.183,354.876,19.589,24.345,19.589 +6329,199.245,327.953,425.455,200.545,557.021,323.956,429.640,133.683,41.135,133.683,343.132,313.727,354.707,18.957,24.578,18.957 +6330,199.279,324.898,423.042,203.623,560.317,321.133,427.373,131.009,47.045,131.009,343.378,314.412,354.856,20.177,24.657,20.177 +6331,199.312,322.407,421.115,208.446,561.535,319.605,424.577,128.991,53.032,128.991,343.875,315.790,352.783,19.431,20.481,19.431 +6332,199.344,319.500,419.500,210.907,564.243,316.845,423.040,126.870,58.861,126.870,344.200,316.582,353.050,19.800,20.488,19.800 +6333,199.377,316.696,418.234,213.321,566.891,314.115,421.914,125.047,64.470,125.047,344.154,318.574,353.142,18.938,20.525,18.938 +6334,199.410,315.000,417.500,214.913,569.479,312.338,421.494,123.690,69.775,123.690,344.746,320.370,354.346,18.860,20.545,18.860 +6335,199.444,312.690,416.730,216.084,570.345,310.302,420.521,122.211,75.136,122.211,345.011,319.439,353.972,18.919,20.462,18.919 +6336,199.477,311.324,415.986,217.205,571.386,309.040,419.760,121.185,80.774,121.185,345.712,319.743,354.536,18.776,19.972,18.776 +6337,199.511,309.602,415.121,217.761,572.368,307.170,419.350,119.904,85.717,119.904,344.682,320.051,354.440,19.008,20.159,19.008 +6338,199.546,308.842,415.280,218.729,572.995,306.743,418.994,119.476,90.243,119.476,346.219,320.039,354.751,18.622,18.254,18.622 +6339,199.579,308.360,414.500,219.351,572.725,306.128,418.562,118.791,94.514,118.791,344.529,320.293,353.799,18.704,19.387,18.704 +6340,199.611,307.998,414.628,219.225,572.896,305.932,418.397,118.734,98.259,118.734,345.719,320.464,354.315,19.006,20.623,19.006 +6341,199.645,308.649,414.418,218.599,572.421,306.369,418.527,119.023,101.085,119.023,344.906,320.659,354.304,18.160,20.244,18.160 +6342,199.678,309.134,414.879,217.865,572.084,306.909,418.812,119.497,103.046,119.497,345.460,320.426,354.498,18.586,20.137,18.586 +6343,199.711,310.060,415.861,216.370,571.208,307.998,419.374,120.411,104.511,120.411,346.504,320.441,354.651,18.298,19.909,18.298 +6344,199.745,311.789,416.644,214.991,570.133,309.586,420.235,121.529,105.124,121.529,346.044,320.396,354.471,18.533,20.038,18.533 +6345,199.779,313.912,417.318,212.942,568.712,311.421,421.149,123.033,105.255,123.033,345.648,320.302,354.787,18.530,20.435,18.530 +6346,199.812,315.779,419.450,210.377,566.968,313.578,422.605,124.902,104.744,124.902,347.200,319.491,354.892,18.539,20.563,18.539 +6347,199.845,319.000,420.500,207.795,564.923,316.282,424.125,126.870,103.261,126.870,346.400,319.682,355.461,19.400,20.521,19.400 +6348,199.878,322.311,423.426,204.154,562.231,319.540,426.752,129.806,101.310,129.806,347.236,319.277,355.893,19.462,19.612,19.462 +6349,199.911,325.920,425.963,200.405,558.875,322.774,429.357,132.818,98.865,132.818,347.093,318.634,356.349,19.643,20.214,19.643 +6350,199.945,329.473,428.901,197.020,555.110,326.123,432.158,135.807,96.185,135.807,347.205,318.255,356.549,19.160,19.947,19.160 +6351,199.978,333.027,432.235,193.737,550.625,329.670,435.159,138.945,93.196,138.945,347.778,317.678,356.681,19.995,19.401,19.995 +6352,200.011,337.136,436.674,189.873,545.992,333.328,439.519,143.233,90.285,143.233,347.790,316.041,357.297,19.100,19.786,19.100 +6353,200.044,341.273,442.146,187.033,539.915,337.762,444.399,147.315,86.831,147.315,348.541,315.013,356.884,20.535,19.212,20.535 +6354,200.077,345.268,447.071,183.605,533.262,341.191,449.275,151.607,83.552,151.607,347.864,315.175,357.134,20.447,19.125,20.447 +6355,200.109,348.283,452.403,180.503,525.826,344.135,454.266,155.821,80.166,155.821,348.077,314.156,357.172,20.256,19.470,20.256 +6356,200.141,351.917,458.815,178.231,517.718,347.460,460.357,160.917,77.106,160.917,347.936,313.012,357.367,20.428,18.873,20.428 +6357,200.174,354.861,466.973,175.900,508.797,350.004,468.162,166.239,73.673,166.239,347.546,311.962,357.546,19.941,18.864,19.941 +6358,200.205,357.169,475.723,174.732,499.095,352.193,476.412,172.117,70.498,172.117,347.744,310.635,357.791,19.400,18.715,19.400 +6359,200.237,358.580,485.438,174.235,488.902,353.216,485.584,178.440,67.261,178.440,347.280,309.856,358.011,18.238,18.818,18.238 +6360,200.268,358.653,495.292,174.920,478.299,353.322,494.861,4.624,63.730,4.624,347.615,309.039,358.312,18.989,19.021,18.989 +6361,200.298,357.807,506.321,177.670,466.991,352.665,505.268,11.578,60.536,11.578,347.733,308.974,358.232,19.392,21.755,19.392 +6362,200.328,355.351,516.970,182.739,460.173,351.803,515.793,18.352,56.505,18.352,348.480,299.014,355.956,19.617,22.185,19.617 +6363,200.359,352.600,526.300,190.065,453.122,350.450,525.225,26.565,52.184,26.565,346.591,286.718,351.398,25.938,22.120,25.938 +6364,200.390,349.063,538.418,196.916,443.753,345.722,536.209,33.471,48.614,33.471,342.228,283.045,350.239,24.673,19.812,24.673 +6365,200.420,349.063,538.418,196.916,443.753,345.722,536.209,33.471,48.614,33.471,342.228,283.045,350.239,24.673,19.812,24.673 +6366,200.449,360.886,569.386,203.195,431.341,336.554,546.755,42.926,45.616,42.926,286.047,287.844,352.506,22.703,18.931,22.703 +6367,200.484,332.406,565.802,214.172,422.426,325.892,558.156,49.574,41.795,49.574,331.451,285.665,351.540,18.749,18.887,18.749 +6368,200.526,304.339,572.062,230.347,400.730,302.154,566.829,67.335,33.584,67.335,350.544,306.478,361.884,21.427,20.227,21.427 +6369,200.557,291.235,575.941,243.754,396.431,290.014,571.056,75.964,29.745,75.964,351.192,307.110,361.262,22.313,20.094,22.313 +6370,200.588,277.877,578.648,257.330,395.245,277.459,574.051,84.806,25.769,84.806,350.554,307.678,359.786,22.996,17.607,22.996 +6371,200.622,260.486,578.572,271.914,394.966,260.708,573.971,92.764,21.801,92.764,349.462,308.440,358.675,23.263,17.827,23.263 +6372,200.652,260.486,578.572,271.914,394.966,260.708,573.971,92.764,21.801,92.764,349.462,308.440,358.675,23.263,17.827,23.263 +6373,200.681,247.479,576.259,287.370,396.972,248.518,571.495,102.299,17.716,102.299,347.835,309.958,357.586,21.245,17.927,21.245 +6374,200.711,234.337,571.434,302.110,401.118,236.298,566.559,111.915,13.559,111.915,345.588,311.670,356.098,19.227,18.179,19.227 +6375,200.743,222.840,564.702,316.068,407.095,225.550,560.153,120.788,9.462,120.788,345.048,313.509,355.640,19.873,18.248,19.873 +6376,200.775,212.375,555.984,328.339,414.697,215.740,551.907,129.523,5.429,129.523,344.418,315.002,354.991,19.381,18.265,19.381 +6377,200.807,203.482,547.034,338.522,423.584,207.869,543.074,137.929,1.404,137.929,342.279,317.125,354.100,19.747,18.235,19.747 +6378,200.838,194.783,538.677,347.059,433.810,201.647,534.068,146.116,177.429,146.116,336.690,318.622,353.224,21.287,18.365,21.287 +6379,200.869,189.324,528.151,354.037,445.342,196.674,524.493,153.543,173.853,153.543,335.872,320.241,352.292,22.390,20.145,22.390 +6380,200.900,183.650,517.450,358.627,455.320,193.034,514.322,161.565,171.190,161.565,331.723,321.684,351.507,17.709,19.042,17.709 +6381,200.930,143.224,514.640,361.957,465.278,191.249,504.984,168.632,169.003,168.632,252.399,322.215,350.371,17.735,18.667,17.735 +6382,200.961,132.820,501.308,363.587,475.851,189.973,495.777,174.472,166.128,174.472,234.614,322.332,349.452,17.338,19.990,17.338 +6383,200.993,162.968,487.266,363.834,486.253,189.892,487.466,0.424,163.496,0.424,294.007,322.689,347.856,18.192,20.632,18.192 +6384,201.024,173.013,477.147,363.315,496.994,190.836,479.238,6.693,159.905,6.693,310.857,322.692,346.746,18.693,21.691,18.693 +6385,201.054,173.013,477.147,363.315,496.994,190.836,479.238,6.693,159.905,6.693,310.857,322.692,346.746,18.693,21.691,18.693 +6386,201.082,178.457,468.436,361.836,507.325,192.230,471.505,12.562,155.376,12.562,318.451,322.680,346.673,18.985,23.408,18.985 +6387,201.114,183.100,460.200,359.161,516.281,194.314,463.938,18.435,150.199,18.435,322.236,322.238,345.878,19.290,23.919,19.290 +6388,201.146,187.401,452.861,355.859,524.799,197.055,457.114,23.772,145.008,23.772,324.128,321.794,345.228,19.403,24.413,19.403 +6389,201.177,192.876,443.478,352.018,532.611,201.699,448.290,28.610,139.699,28.610,324.582,321.618,344.683,25.858,24.878,25.858 +6390,201.210,196.853,437.934,347.609,539.581,204.957,443.239,33.215,134.275,33.215,324.867,321.108,344.239,25.268,25.167,25.268 +6391,201.242,199.918,434.745,343.158,545.627,207.387,440.210,36.193,128.811,36.193,325.135,321.239,343.644,25.746,25.223,25.746 +6392,201.274,204.069,430.569,338.270,551.349,211.008,436.474,40.400,123.341,40.400,324.513,321.482,342.736,24.726,24.667,24.726 +6393,201.304,208.500,425.500,333.300,556.579,214.970,431.970,45.000,117.759,45.000,325.269,322.017,343.569,24.042,24.079,24.042 +6394,201.335,212.421,422.348,328.858,561.349,218.545,429.238,48.366,112.166,48.366,325.621,323.103,344.058,23.419,23.804,23.419 +6395,201.366,216.688,418.806,324.207,565.292,222.568,426.400,52.253,106.314,52.253,324.885,323.244,344.093,23.059,22.566,23.059 +6396,201.396,220.262,415.219,319.126,568.492,225.993,423.539,55.437,100.620,55.437,324.206,323.426,344.411,23.461,20.210,23.461 +6397,201.427,223.501,412.233,314.944,571.324,229.277,421.630,58.422,94.899,58.422,322.716,322.731,344.776,23.057,19.358,23.057 +6398,201.459,226.100,408.472,310.763,574.976,232.660,420.412,61.213,89.226,61.213,318.901,324.133,346.147,22.604,18.579,22.604 +6399,201.489,227.743,402.919,307.932,577.121,235.732,419.203,63.869,83.563,63.869,310.872,325.769,347.150,22.241,19.589,22.241 +6400,201.519,227.743,402.919,307.932,577.121,235.732,419.203,63.869,83.563,63.869,310.872,325.769,347.150,22.241,19.589,22.241 +6401,201.548,227.043,395.953,304.183,579.039,236.977,418.696,66.405,78.085,66.405,298.040,325.754,347.677,18.086,18.618,18.086 +6402,201.580,214.072,351.088,301.107,580.497,239.716,417.763,68.962,72.607,68.962,204.977,325.534,347.850,17.734,18.695,17.734 +6403,201.612,236.699,397.501,297.371,581.198,243.261,415.857,70.330,66.801,70.330,308.826,324.721,347.813,19.285,19.433,19.285 +6404,201.645,243.601,406.522,293.968,582.224,246.085,414.781,73.261,62.144,73.261,331.030,324.450,348.278,19.930,21.393,19.930 +6405,201.678,247.098,407.127,291.692,582.538,248.859,413.875,75.379,56.310,75.379,334.080,323.945,348.028,20.236,19.969,20.236 +6406,201.710,249.960,407.402,289.277,582.737,251.202,412.966,77.417,50.819,77.417,336.574,323.589,347.976,19.859,20.441,19.859 +6407,201.743,252.419,406.488,285.507,583.513,253.557,412.510,79.299,46.181,79.299,335.665,322.664,347.923,19.304,21.085,19.304 +6408,201.774,254.985,406.469,282.584,583.673,255.807,411.756,81.167,40.914,81.167,337.276,322.780,347.978,18.815,21.613,18.815 +6409,201.806,257.440,405.811,279.290,583.915,258.104,411.280,83.073,36.069,83.073,336.841,322.833,347.860,18.657,23.710,18.657 +6410,201.837,259.956,405.228,275.956,583.898,260.458,410.816,84.872,30.822,84.872,336.328,322.253,347.549,18.592,24.478,18.592 +6411,201.868,262.610,404.639,272.954,584.178,262.952,410.503,86.666,25.641,86.666,336.178,321.231,347.925,18.667,25.531,18.667 +6412,201.898,264.932,404.100,270.130,584.495,265.120,410.746,88.386,20.389,88.386,334.346,319.636,347.643,18.190,25.839,18.190 +6413,201.929,267.000,403.000,267.080,584.212,267.000,410.106,90.000,15.422,90.000,334.000,318.982,348.212,18.000,25.961,18.000 +6414,201.959,270.047,402.382,263.878,583.962,269.790,409.908,91.958,10.513,91.958,333.250,318.328,348.310,18.024,25.817,18.024 +6415,201.990,272.811,401.586,260.660,583.624,272.276,409.776,93.740,5.356,93.740,332.056,317.421,348.472,18.157,25.326,18.157 +6416,202.020,275.579,401.556,257.500,583.000,274.775,409.808,95.562,0.000,95.562,331.522,317.000,348.102,18.251,24.000,18.251 +6417,202.050,275.579,401.556,257.500,583.000,274.775,409.808,95.562,0.000,95.562,331.522,317.000,348.102,18.251,24.000,18.251 +6418,202.080,278.559,401.394,253.821,582.571,277.477,409.794,97.339,175.786,97.339,331.828,317.056,348.767,18.807,24.670,18.807 +6419,202.111,281.384,401.549,250.203,581.716,280.025,409.927,99.211,170.538,99.211,331.721,316.797,348.696,19.502,23.838,19.502 +6420,202.144,284.942,401.288,246.559,580.735,283.190,410.050,101.310,165.964,101.310,331.240,316.509,349.110,19.219,23.041,19.219 +6421,202.176,289.015,401.747,242.750,579.724,286.736,410.952,103.908,160.974,103.908,329.829,316.570,348.795,19.414,22.722,19.414 +6422,202.209,291.726,401.763,238.991,578.647,289.009,411.467,105.642,156.801,105.642,328.794,316.711,348.948,19.144,21.928,19.144 +6423,202.241,296.007,401.144,234.800,577.600,292.376,412.281,108.060,153.435,108.060,326.617,316.627,350.046,19.159,21.466,19.159 +6424,202.272,300.406,400.961,231.059,576.246,295.797,413.284,110.511,149.184,110.511,324.315,316.769,350.628,19.440,20.823,19.440 +6425,202.302,304.444,400.935,227.012,574.757,298.748,414.604,112.620,145.923,112.620,321.231,317.038,350.848,20.154,19.830,20.154 +6426,202.333,309.869,400.337,223.073,572.920,302.394,416.079,115.399,143.246,115.399,316.553,317.007,351.406,20.055,19.452,20.055 +6427,202.363,314.663,397.878,219.156,571.076,304.800,416.929,117.371,140.977,117.371,309.624,317.189,352.529,19.360,19.143,19.360 +6428,202.394,320.932,396.435,215.290,568.753,307.856,418.591,120.548,139.574,120.548,301.281,317.044,352.735,17.549,19.792,17.549 +6429,202.426,328.216,394.109,211.823,566.644,311.078,420.243,123.254,139.044,123.254,291.205,316.679,353.709,17.671,19.607,17.671 +6430,202.457,336.208,391.982,208.164,564.191,314.095,422.203,126.193,139.371,126.193,279.390,316.285,354.285,17.637,19.741,17.637 +6431,202.487,336.208,391.982,208.164,564.191,314.095,422.203,126.193,139.371,126.193,279.390,316.285,354.285,17.637,19.741,17.637 +6432,202.516,343.500,391.500,205.005,561.696,317.234,424.333,128.660,139.948,128.660,270.649,316.112,354.742,17.648,20.057,17.648 +6433,202.547,354.894,387.666,201.432,558.377,320.496,426.755,131.348,141.754,131.348,250.798,315.981,354.935,17.717,19.514,17.717 +6434,202.579,362.812,389.272,197.992,554.900,323.944,429.355,134.119,144.310,134.119,243.956,315.368,355.621,17.860,19.664,17.860 +6435,202.611,366.604,395.689,194.721,551.130,327.086,432.385,137.121,147.469,137.121,247.737,314.608,355.593,17.744,19.697,17.744 +6436,202.642,368.525,403.729,191.166,546.433,330.500,435.417,140.194,151.991,140.194,257.226,314.002,356.220,17.669,19.517,17.669 +6437,202.674,368.691,413.128,188.132,542.424,333.360,438.981,143.807,156.090,143.807,269.017,313.439,356.576,17.715,19.500,17.715 +6438,202.704,366.185,423.826,185.114,536.790,336.834,442.864,147.031,162.294,147.031,286.834,312.816,356.802,17.822,19.724,17.822 +6439,202.735,366.700,433.100,182.562,531.357,340.450,448.100,150.255,168.447,150.255,296.319,312.017,356.785,20.714,19.059,20.714 +6440,202.766,363.979,441.462,180.296,525.672,342.944,451.934,153.533,175.878,153.533,309.933,310.142,356.929,21.942,19.247,21.942 +6441,202.796,362.069,449.894,178.097,519.540,345.347,456.724,157.782,3.814,157.782,321.041,309.180,357.168,20.875,18.891,20.875 +6442,202.827,359.647,458.552,176.512,513.044,347.996,462.314,162.104,11.768,162.104,333.065,308.909,357.552,20.043,20.599,20.043 +6443,202.859,359.565,465.850,175.728,506.140,350.344,468.066,166.483,21.623,166.483,338.389,307.514,357.356,20.727,20.276,20.727 +6444,202.890,357.257,474.422,174.727,499.884,351.798,475.262,171.254,31.633,171.254,346.462,306.268,357.510,19.159,21.408,19.159 +6445,202.920,357.257,474.422,174.727,499.884,351.798,475.262,171.254,31.633,171.254,346.462,306.268,357.510,19.159,21.408,19.159 +6446,202.949,358.315,481.905,185.930,502.213,358.324,481.904,176.322,41.411,176.322,346.699,274.882,346.682,18.997,20.192,18.997 +6447,202.979,358.934,490.511,174.442,483.804,353.222,490.361,1.507,51.759,1.507,346.354,308.008,357.782,18.599,20.920,18.599 +6448,203.011,358.019,498.923,175.528,474.489,353.132,498.323,6.995,63.589,6.995,348.521,307.254,358.368,19.327,19.962,19.327 +6449,203.044,357.099,508.874,177.942,465.153,351.981,507.684,13.086,74.713,13.086,347.788,307.937,358.299,19.481,19.678,19.481 +6450,203.077,354.393,517.809,180.445,456.087,349.522,516.123,19.093,85.285,19.093,348.518,307.513,358.827,19.300,18.545,19.300 +6451,203.109,351.200,525.600,184.270,446.578,346.824,523.412,26.565,95.768,26.565,349.721,308.762,359.507,25.938,18.241,25.938 +6452,203.141,346.916,534.559,189.318,436.670,342.391,531.683,32.437,106.113,32.437,349.584,309.606,360.307,25.075,18.488,25.075 +6453,203.172,340.194,544.557,195.268,427.377,335.782,540.906,39.611,116.131,39.611,349.812,309.958,361.267,24.307,18.464,24.307 +6454,203.204,331.531,553.263,203.840,418.880,328.065,549.525,47.167,126.870,47.167,350.329,310.000,360.525,23.398,18.000,23.398 +6455,203.236,321.322,562.395,213.002,410.936,318.232,557.925,55.342,136.848,55.342,350.633,309.962,361.500,22.686,19.333,22.686 +6456,203.267,310.906,568.511,224.243,404.671,308.622,564.054,62.865,147.588,62.865,350.634,309.853,360.649,22.304,18.573,22.304 +6457,203.297,298.495,573.942,236.342,400.677,296.995,569.694,70.548,157.102,70.548,350.127,309.765,359.137,21.036,16.212,21.036 +6458,203.328,286.994,577.591,248.626,395.833,285.928,572.393,78.417,167.547,78.417,350.295,309.558,360.908,22.556,19.001,22.556 +6459,203.358,274.953,578.974,261.535,393.932,274.645,573.558,86.748,177.850,86.748,349.312,309.458,360.161,23.303,19.229,23.303 +6460,203.389,258.667,579.012,274.610,395.031,259.022,573.961,94.021,7.337,94.021,349.037,309.369,359.164,22.647,17.904,22.647 +6461,203.419,258.667,579.012,274.610,395.031,259.022,573.961,94.021,7.337,94.021,349.037,309.369,359.164,22.647,17.904,22.647 +6462,203.448,246.939,576.173,288.112,397.489,247.993,571.573,102.897,17.176,102.897,347.857,310.193,357.295,20.447,17.545,20.447 +6463,203.479,235.045,571.403,300.886,401.172,236.747,567.102,111.591,27.150,111.591,346.528,310.432,355.778,19.388,18.207,19.388 +6464,203.511,224.163,565.873,314.597,403.718,227.459,560.091,119.689,37.349,119.689,344.696,311.809,358.007,20.071,25.271,20.071 +6465,203.545,214.195,558.235,324.600,412.032,217.614,553.800,127.637,46.488,127.637,343.996,312.041,355.195,19.837,24.768,19.837 +6466,203.577,205.822,550.369,334.716,420.211,210.232,546.020,135.398,57.011,135.398,341.559,313.453,353.946,19.887,24.604,19.887 +6467,203.609,197.888,541.973,342.931,429.672,203.433,537.774,142.864,66.801,142.864,339.029,313.691,352.941,19.713,24.817,19.713 +6468,203.640,192.556,533.923,349.210,439.602,198.777,530.329,149.982,76.908,149.982,336.918,314.582,351.287,22.666,24.010,22.666 +6469,203.671,187.070,523.295,353.779,449.586,193.977,520.313,156.654,87.138,156.654,334.445,315.656,349.493,20.575,23.071,20.575 +6470,203.701,183.169,514.313,357.363,459.275,191.206,511.849,162.956,96.633,162.956,331.725,315.456,348.538,19.861,22.592,19.861 +6471,203.731,180.628,505.236,360.326,469.143,189.834,503.450,169.024,106.928,169.024,329.057,317.699,347.812,20.265,23.251,20.265 +6472,203.763,179.232,495.805,362.431,479.206,189.246,494.976,175.269,116.267,175.269,327.694,318.437,347.790,18.853,24.992,18.853 +6473,203.794,178.457,486.987,362.819,488.592,189.387,487.121,0.703,126.573,0.703,325.012,320.799,346.874,18.342,24.404,18.342 +6474,203.826,178.643,478.910,362.845,496.936,190.249,480.125,5.974,136.384,5.974,323.478,321.172,346.816,18.631,24.240,18.631 +6475,203.858,179.738,471.482,361.842,504.769,191.565,473.746,10.840,146.413,10.840,322.063,321.733,346.147,18.807,23.846,18.807 +6476,203.889,180.796,464.581,360.429,511.987,193.094,467.935,15.255,156.501,15.255,320.565,322.490,346.059,19.295,23.365,19.295 +6477,203.919,180.796,464.581,360.429,511.987,193.094,467.935,15.255,156.501,15.255,320.565,322.490,346.059,19.295,23.365,19.295 +6478,203.947,182.024,457.202,358.627,518.531,195.078,461.918,19.864,166.517,19.864,318.350,323.026,346.110,19.150,22.321,19.150 +6479,203.978,183.268,451.169,356.956,524.773,197.472,457.401,23.688,176.522,23.688,315.207,323.045,346.229,19.166,21.149,19.166 +6480,204.009,186.351,442.834,354.410,529.764,200.946,450.526,27.790,6.746,27.790,312.416,323.711,345.413,28.357,19.488,28.357 +6481,204.041,184.058,439.186,352.237,534.893,202.145,448.898,28.233,16.390,28.233,304.775,324.322,345.834,24.699,19.300,24.699 +6482,204.072,177.197,427.999,349.600,539.800,204.890,444.775,31.206,26.565,31.206,281.257,324.677,346.012,22.657,19.677,22.657 +6483,204.104,157.378,409.392,346.711,544.377,205.897,444.326,35.754,37.414,35.754,225.899,325.220,345.473,17.724,19.130,17.724 +6484,204.135,195.390,431.963,343.646,548.737,207.817,441.741,38.199,47.592,38.199,314.194,324.965,345.819,18.500,19.110,18.500 +6485,204.166,201.429,431.485,340.585,551.570,210.253,438.593,38.853,58.079,38.853,322.080,324.456,344.741,24.834,18.924,24.834 +6486,204.196,203.895,429.153,337.976,554.116,212.073,436.225,40.855,68.515,40.855,323.069,324.035,344.694,25.389,19.135,25.389 +6487,204.227,207.164,426.622,335.475,555.908,214.213,433.325,43.561,79.019,43.561,325.238,323.607,344.693,24.830,19.487,24.830 +6488,204.258,208.500,425.500,333.669,556.998,215.167,432.167,45.000,89.193,45.000,325.269,322.151,344.125,24.042,20.547,24.042 +6489,204.289,208.750,425.250,332.557,558.010,215.392,431.892,45.000,100.008,45.000,325.269,322.372,344.055,24.749,22.650,24.749 +6490,204.319,208.750,425.250,332.557,558.010,215.392,431.892,45.000,100.008,45.000,325.269,322.372,344.055,24.749,22.650,24.749 +6491,204.348,210.671,424.033,331.177,558.756,216.933,430.664,46.637,110.701,46.637,324.894,322.218,343.135,23.466,23.498,23.466 +6492,204.378,211.143,423.143,330.727,558.835,217.224,429.743,47.342,121.159,47.342,325.749,321.039,343.697,23.528,24.319,23.528 +6493,204.411,211.891,422.477,330.556,558.839,218.091,429.325,47.842,131.811,47.842,324.508,320.885,342.984,24.262,24.961,24.262 +6494,204.443,212.112,422.207,330.791,558.876,218.389,429.199,48.085,142.240,48.085,324.375,320.651,343.169,24.396,25.193,24.396 +6495,204.474,212.233,422.342,331.195,558.769,218.453,429.270,48.085,152.592,48.085,324.739,320.742,343.360,24.396,25.285,24.396 +6496,204.505,212.177,422.792,332.109,558.575,218.372,429.645,47.891,162.767,47.891,325.354,321.296,343.830,24.539,24.722,24.539 +6497,204.536,211.987,423.512,332.984,558.321,218.131,430.193,47.394,172.779,47.394,325.958,321.875,344.111,24.402,24.182,24.402 +6498,204.567,210.953,424.044,333.998,557.547,217.445,430.942,46.736,2.568,46.736,325.206,322.438,344.150,24.802,22.883,24.802 +6499,204.597,209.931,424.567,335.454,557.012,216.715,431.584,45.971,12.265,45.971,325.893,323.445,345.414,24.853,23.197,24.853 +6500,204.627,208.000,425.000,337.028,555.427,215.614,432.614,45.000,21.114,45.000,323.855,323.872,345.390,24.042,21.613,24.042 +6501,204.659,206.513,425.987,338.005,554.168,214.678,433.815,43.794,29.268,43.794,322.005,325.585,344.627,24.096,20.495,24.096 +6502,204.688,196.675,421.377,338.966,553.867,213.330,435.706,40.707,36.374,40.707,300.666,325.793,344.606,22.382,18.952,22.382 +6503,204.718,196.675,421.377,338.966,553.867,213.330,435.706,40.707,36.374,40.707,300.666,325.793,344.606,22.382,18.952,22.382 +6504,204.747,165.416,399.239,340.404,552.572,210.380,438.583,41.186,43.380,41.186,226.337,325.299,345.831,17.686,18.621,17.686 +6505,204.783,196.091,429.380,341.480,551.101,209.262,440.320,39.710,50.268,39.710,310.741,324.964,344.984,18.776,18.727,18.776 +6506,204.815,199.847,433.837,343.218,548.678,208.666,440.408,36.690,57.724,36.690,323.175,324.890,345.169,25.393,18.957,25.393 +6507,204.846,198.925,437.217,345.073,545.468,206.486,442.380,34.330,66.349,34.330,326.856,324.205,345.167,25.580,19.590,25.580 +6508,204.879,196.374,441.002,347.716,541.309,203.852,445.591,31.535,75.069,31.535,327.815,323.560,345.362,24.950,21.450,24.950 +6509,204.912,194.788,444.194,349.935,536.688,201.867,448.134,29.100,83.928,29.100,328.685,322.224,344.888,24.960,21.940,24.960 +6510,204.945,191.532,449.015,352.522,531.024,198.917,452.423,24.775,92.603,24.775,328.542,320.669,344.810,26.401,23.294,26.401 +6511,204.978,187.724,456.190,355.110,524.727,195.656,459.362,21.801,101.575,21.801,327.567,320.279,344.652,19.127,24.610,19.127 +6512,205.012,185.254,461.715,357.560,517.652,193.578,464.405,17.908,110.630,17.908,327.326,319.640,344.822,19.339,25.181,19.339 +6513,205.045,182.693,467.781,360.134,510.314,192.097,470.032,13.459,120.069,13.459,326.257,319.433,345.596,19.451,25.507,19.451 +6514,205.077,180.196,474.998,361.755,502.628,190.832,476.614,8.637,129.719,8.637,324.268,320.102,345.783,18.634,25.182,18.634 +6515,205.109,177.291,483.159,363.062,493.712,189.944,483.882,3.270,138.784,3.270,321.447,319.937,346.794,18.769,24.061,18.769 +6516,205.141,172.525,491.258,363.513,484.319,189.692,490.693,178.114,147.922,178.114,313.521,320.857,347.874,18.221,22.460,18.221 +6517,205.172,159.267,502.901,362.585,473.706,189.760,498.621,172.011,157.521,172.011,287.637,321.462,349.221,17.982,20.360,17.982 +6518,205.203,113.989,525.997,361.119,463.024,191.295,506.467,165.822,167.226,165.822,191.111,321.927,350.582,17.339,20.030,17.339 +6519,205.234,185.056,519.271,358.586,455.208,193.674,516.159,160.145,175.914,160.145,333.296,322.179,351.621,18.733,20.020,18.733 +6520,205.264,190.776,528.596,354.254,445.193,197.218,525.273,152.712,5.228,152.712,338.050,320.680,352.547,20.842,18.993,20.842 +6521,205.295,195.586,537.885,347.931,436.204,201.265,534.062,146.056,14.482,146.056,338.934,319.688,352.627,20.213,18.858,20.213 +6522,205.328,202.554,546.062,339.789,427.481,206.380,542.723,138.888,23.703,138.888,342.425,317.572,352.580,19.863,18.201,19.863 +6523,205.359,210.066,554.114,330.769,417.846,213.363,550.404,131.634,33.690,131.634,344.224,315.070,354.151,19.848,20.524,19.848 +6524,205.390,219.038,562.192,321.462,409.464,222.310,557.285,123.690,42.879,123.690,344.191,310.233,355.987,19.692,24.339,19.692 +6525,205.420,219.038,562.192,321.462,409.464,222.310,557.285,123.690,42.879,123.690,344.191,310.233,355.987,19.692,24.339,19.692 +6526,205.450,229.578,568.729,324.576,422.819,229.456,568.986,115.481,53.005,115.481,346.310,258.807,345.741,19.613,24.179,19.613 +6527,205.482,240.316,575.381,308.803,423.522,239.361,578.432,107.376,65.889,107.376,343.552,250.810,337.159,19.165,22.078,19.165 +6528,205.514,252.502,585.846,290.149,421.500,252.685,584.761,99.602,74.876,99.602,332.245,251.882,334.446,21.859,19.281,21.859 +6529,205.547,263.656,612.539,270.523,416.344,264.004,584.669,90.716,83.403,90.716,281.040,261.610,336.786,22.123,18.692,22.123 +6530,205.579,277.197,586.052,253.471,398.879,275.897,575.919,82.689,91.375,82.689,336.476,300.322,356.908,24.160,20.338,24.160 +6531,205.612,292.232,577.800,241.789,397.781,290.425,571.198,74.690,100.235,74.690,346.519,306.953,360.208,21.575,19.490,21.575 +6532,205.644,306.448,571.634,229.173,401.951,303.938,565.986,66.038,111.038,66.038,348.162,309.943,360.524,21.830,18.523,21.830 +6533,205.676,318.420,564.733,216.657,409.054,315.337,559.886,57.546,120.324,57.546,348.969,310.959,360.458,22.414,17.736,22.414 +6534,205.706,328.991,555.852,205.321,417.507,325.679,552.013,49.220,129.611,49.220,350.786,312.036,360.926,23.643,18.250,23.643 +6535,205.738,338.435,545.455,195.232,427.121,334.667,542.192,40.890,138.871,40.890,351.500,311.945,361.469,25.188,18.481,25.188 +6536,205.768,345.324,534.648,187.474,437.870,341.524,532.182,32.979,148.116,32.979,352.068,311.321,361.128,25.192,20.205,25.192 +6537,205.799,350.573,523.639,181.695,449.811,347.016,521.948,25.419,156.958,25.419,352.683,310.797,360.560,25.736,19.841,25.736 +6538,205.832,353.039,515.316,177.206,461.324,349.436,514.141,18.067,165.964,18.067,352.658,310.203,360.237,19.967,20.130,19.967 +6539,205.861,356.880,505.555,173.921,468.831,351.069,504.420,11.051,176.112,11.051,349.529,309.054,361.370,19.200,19.663,19.200 +6540,205.893,429.584,500.504,172.094,481.038,352.054,493.941,4.839,3.691,4.839,205.197,307.490,360.813,17.788,18.091,17.788 +6541,205.924,371.138,484.629,172.673,490.348,352.406,485.253,178.091,13.643,178.091,322.121,307.990,359.606,18.323,20.379,18.323 +6542,205.954,360.994,475.006,174.356,498.497,351.964,476.279,171.975,23.131,171.975,339.703,307.782,357.942,19.476,21.669,19.476 +6543,205.984,360.994,475.006,174.356,498.497,351.964,476.279,171.975,23.131,171.975,339.703,307.782,357.942,19.476,21.669,19.476 +6544,206.014,355.320,466.846,175.675,509.175,349.736,468.215,166.230,32.791,166.230,346.118,308.229,357.616,20.416,22.439,20.416 +6545,206.045,352.328,458.869,178.274,517.188,347.477,460.565,160.731,41.257,160.731,346.540,309.593,356.819,21.335,19.757,21.335 +6546,206.077,349.065,451.879,181.710,525.325,344.663,453.850,155.882,50.117,155.882,346.221,310.749,355.868,20.775,20.498,20.775 +6547,206.109,345.764,446.075,185.442,533.428,341.597,448.391,150.945,58.725,150.945,346.069,313.309,355.604,21.271,19.911,21.271 +6548,206.145,341.626,440.693,188.222,539.887,337.655,443.279,146.921,67.763,146.921,346.405,313.803,355.882,19.603,19.510,19.603 +6549,206.188,333.220,432.444,194.704,551.026,330.024,435.211,139.118,84.966,139.118,347.766,317.063,356.221,20.007,19.329,20.007 +6550,206.219,333.220,432.444,194.704,551.026,330.024,435.211,139.118,84.966,139.118,347.766,317.063,356.221,20.007,19.329,20.007 +6551,206.248,329.697,428.632,197.626,555.507,326.148,432.083,135.802,93.108,135.802,346.468,317.781,356.370,19.219,19.279,19.219 +6552,206.279,325.707,425.804,200.336,558.869,322.551,429.215,132.778,101.155,132.778,347.044,318.874,356.338,18.675,19.843,18.675 +6553,206.317,322.754,423.945,204.490,562.005,320.065,427.120,130.259,108.726,130.259,346.926,319.097,355.249,19.669,20.835,19.669 +6554,206.347,320.469,420.330,205.853,563.655,316.980,424.897,127.385,115.841,127.385,343.959,318.917,355.453,19.062,20.180,19.062 +6555,206.378,321.217,414.229,208.325,565.349,314.814,423.208,125.487,121.689,125.487,333.055,318.397,355.112,17.793,18.998,17.793 +6556,206.410,357.078,355.553,210.874,566.902,312.229,421.332,124.287,127.913,124.287,195.515,317.671,354.742,16.975,19.708,16.975 +6557,206.443,331.780,386.603,212.954,567.937,310.289,420.130,122.661,134.484,122.661,274.280,316.847,353.928,17.118,19.798,17.118 +6558,206.474,320.325,398.673,215.292,568.662,308.374,418.854,120.633,142.125,120.633,305.752,316.443,352.661,18.310,18.944,18.310 +6559,206.506,314.972,404.151,217.755,569.666,307.231,418.085,119.055,149.913,119.055,320.039,315.926,351.918,19.911,19.585,19.911 +6560,206.537,311.018,406.359,220.435,570.893,305.465,416.870,117.848,158.658,117.848,328.036,314.760,351.811,19.085,20.781,19.085 +6561,206.568,308.100,407.800,223.037,572.180,303.868,416.264,116.565,168.232,116.565,332.280,314.579,351.207,18.783,21.905,18.783 +6562,206.599,305.568,408.190,225.130,573.358,302.039,415.640,115.346,177.397,115.346,334.431,314.448,350.918,19.169,22.976,19.169 +6563,206.628,303.898,407.856,227.349,574.348,300.714,414.917,114.274,6.411,114.274,335.500,314.191,350.992,19.179,24.576,19.179 +6564,206.660,301.845,407.862,229.047,574.842,299.213,414.003,113.199,16.621,113.199,337.589,315.125,350.950,18.777,25.414,18.777 +6565,206.690,300.447,408.728,230.211,575.631,298.294,413.894,112.620,25.831,112.620,339.769,316.681,350.963,19.231,26.750,19.231 +6566,206.720,300.447,408.728,230.211,575.631,298.294,413.894,112.620,25.831,112.620,339.769,316.681,350.963,19.231,26.750,19.231 +6567,206.748,299.444,409.161,230.692,577.147,297.308,414.453,111.975,35.166,111.975,340.191,317.703,351.603,19.035,25.156,19.035 +6568,206.780,298.974,409.194,231.448,578.066,296.937,414.316,111.689,44.626,111.689,341.693,317.526,352.718,18.785,24.586,18.785 +6569,206.813,298.363,409.470,233.433,577.689,296.663,413.824,111.337,54.293,111.337,341.932,318.970,351.280,19.095,20.605,19.095 +6570,206.846,297.956,409.822,233.118,578.228,296.329,414.025,111.161,64.075,111.161,342.884,319.813,351.898,18.922,20.573,18.922 +6571,206.879,298.101,409.956,233.505,579.423,296.354,414.446,111.251,73.951,111.251,343.444,322.523,353.079,18.899,21.906,18.899 +6572,206.913,297.305,410.279,231.874,579.515,295.637,414.643,110.917,83.350,110.917,344.199,322.181,353.542,18.873,19.131,18.873 +6573,206.946,297.765,410.441,230.702,579.097,296.067,414.826,111.161,93.257,111.161,344.178,322.503,353.581,18.411,19.968,18.411 +6574,206.979,299.325,408.853,229.352,577.969,296.942,414.892,111.526,101.929,111.526,340.021,321.481,353.005,17.757,19.472,17.757 +6575,207.012,314.709,373.146,227.616,576.955,297.505,414.970,112.360,111.490,112.360,262.339,320.709,352.787,17.099,18.273,17.099 +6576,207.045,322.119,359.111,226.572,576.043,298.410,414.998,112.989,120.888,112.989,231.205,319.844,352.622,16.989,19.309,16.989 +6577,207.078,311.418,388.541,225.240,574.630,299.433,415.132,114.261,130.389,114.261,293.459,318.680,351.794,17.360,19.280,17.360 +6578,207.110,309.187,398.185,223.967,573.554,301.236,415.578,114.567,139.899,114.567,313.353,317.277,351.601,19.567,19.163,19.567 +6579,207.142,309.681,402.553,223.015,572.696,303.120,416.144,115.769,149.112,115.769,321.435,316.587,351.618,20.030,20.075,20.030 +6580,207.173,310.011,405.783,221.527,571.068,304.563,416.443,117.072,158.459,117.072,327.007,315.518,350.949,19.214,20.341,19.214 +6581,207.204,310.883,408.332,219.997,570.798,306.056,417.243,118.443,167.800,118.443,331.750,315.071,352.017,18.868,22.586,18.868 +6582,207.236,312.567,411.065,218.521,569.365,308.366,418.322,120.069,176.673,120.069,334.692,313.749,351.463,19.267,22.706,19.267 +6583,207.267,314.309,412.618,216.000,568.000,310.178,419.301,121.724,6.072,121.724,336.294,314.269,352.007,19.177,23.358,19.177 +6584,207.296,316.870,415.599,213.655,565.940,313.272,420.932,124.004,15.455,124.004,338.976,314.161,351.844,19.547,25.400,19.547 +6585,207.328,319.300,417.752,210.661,564.145,315.841,422.529,125.910,24.399,125.910,340.986,314.657,352.781,19.969,26.100,19.969 +6586,207.359,322.217,420.068,207.465,562.478,318.510,424.750,128.367,32.381,128.367,341.877,314.837,353.821,20.091,25.150,20.091 +6587,207.388,325.187,423.035,203.845,560.177,321.401,427.378,131.082,41.186,131.082,343.179,314.765,354.702,20.004,24.929,20.004 +6588,207.419,325.187,423.035,203.845,560.177,321.401,427.378,131.082,41.186,131.082,343.179,314.765,354.702,20.004,24.929,20.004 +6589,207.449,327.932,425.916,201.874,555.833,324.779,429.191,133.919,49.653,133.919,343.860,314.797,352.950,19.155,20.824,19.155 +6590,207.480,331.690,429.132,199.094,552.612,328.426,432.176,136.989,58.610,136.989,344.522,315.716,353.449,19.772,20.849,19.772 +6591,207.513,335.022,432.822,194.605,548.977,331.459,435.779,140.315,66.491,140.315,345.943,315.832,355.205,19.599,20.348,19.599 +6592,207.546,338.048,437.195,190.244,544.195,334.492,439.790,143.881,75.530,143.881,347.328,315.783,356.132,19.321,19.865,19.321 +6593,207.579,341.858,442.984,186.579,539.117,338.333,445.211,147.724,83.897,147.724,348.564,315.266,356.904,21.538,18.949,21.538 +6594,207.611,345.027,448.110,183.145,533.022,341.387,450.044,152.021,91.931,152.021,349.107,314.529,357.351,20.201,18.798,20.201 +6595,207.642,347.583,452.815,179.629,525.935,343.824,454.487,156.015,100.008,156.015,349.890,315.015,358.119,20.708,18.943,20.708 +6596,207.673,350.689,459.636,176.607,518.026,346.650,461.022,161.058,108.127,161.058,350.137,314.651,358.677,20.131,19.137,20.131 +6597,207.703,353.095,467.343,174.068,509.511,349.041,468.333,166.278,116.061,166.278,351.148,313.975,359.495,20.186,19.376,20.186 +6598,207.734,355.185,475.768,172.581,500.233,351.036,476.354,171.968,124.129,171.968,351.700,313.168,360.081,19.385,19.159,19.385 +6599,207.765,356.462,485.234,171.984,490.288,352.074,485.366,178.277,132.029,178.277,351.533,312.331,360.313,18.262,19.939,18.262 +6600,207.795,356.591,494.829,172.744,480.122,352.299,494.496,4.433,140.583,4.433,351.650,311.408,360.259,18.951,18.488,18.951 +6601,207.828,355.089,505.550,174.375,468.931,351.228,504.785,11.208,147.395,11.208,353.025,310.394,360.898,19.026,20.445,19.026 +6602,207.860,353.159,516.012,177.611,457.939,349.083,514.681,18.094,154.891,18.094,352.654,309.243,361.230,19.406,20.469,19.406 +6603,207.891,349.400,525.200,182.682,447.516,346.176,523.588,26.565,161.485,26.565,353.299,308.320,360.508,25.044,19.547,25.044 +6604,207.921,349.400,525.200,182.682,447.516,346.176,523.588,26.565,161.485,26.565,353.299,308.320,360.508,25.044,19.547,25.044 +6605,207.949,344.803,535.260,188.857,435.226,341.113,532.821,33.465,169.540,33.465,352.818,308.026,361.664,25.225,18.548,25.225 +6606,207.979,336.112,547.296,197.126,424.808,332.796,544.235,42.709,176.864,42.709,352.367,306.800,361.391,24.814,18.260,24.814 +6607,208.011,326.983,556.423,207.035,416.440,324.447,553.324,50.711,3.532,50.711,352.573,307.021,360.583,23.922,17.608,23.922 +6608,208.043,315.041,564.831,218.413,407.958,313.029,561.408,59.556,10.739,59.556,352.527,306.349,360.469,23.005,18.057,23.005 +6609,208.075,302.475,572.081,231.405,402.419,300.977,568.383,67.954,17.241,67.954,351.909,305.258,359.888,20.843,18.014,20.843 +6610,208.106,287.780,576.954,245.203,397.768,286.719,572.611,76.268,24.274,76.268,350.459,305.399,359.401,22.580,18.214,22.580 +6611,208.137,275.754,578.316,260.202,394.547,275.455,573.850,86.174,31.608,86.174,350.891,305.418,359.842,23.082,19.981,23.082 +6612,208.168,258.122,578.509,275.899,392.386,258.587,572.510,94.428,38.737,94.428,349.811,307.658,361.846,23.163,24.147,23.163 +6613,208.198,244.458,575.376,291.094,396.381,245.817,570.012,104.222,44.356,104.222,347.800,306.277,358.867,20.888,24.533,20.888 +6614,208.230,231.675,569.856,317.955,415.944,232.197,568.681,113.962,51.483,113.962,346.233,269.713,348.805,20.002,25.197,20.002 +6615,208.262,219.321,563.518,326.148,419.408,221.417,560.313,123.184,58.116,123.184,342.835,282.812,350.495,20.127,25.347,20.127 +6616,208.294,208.137,555.031,334.427,424.841,211.928,550.849,132.195,65.225,132.195,339.973,293.550,351.263,20.011,24.375,20.011 +6617,208.325,199.140,545.022,343.046,434.183,204.065,541.026,140.950,72.204,140.950,337.804,297.612,350.488,20.235,24.497,20.235 +6618,208.355,192.614,534.415,348.634,439.861,198.652,530.840,149.372,79.046,149.372,336.785,311.478,350.819,21.730,23.721,21.730 +6619,208.385,192.614,534.415,348.634,439.861,198.652,530.840,149.372,79.046,149.372,336.785,311.478,350.819,21.730,23.721,21.730 +6620,208.414,186.483,522.535,354.484,450.188,193.746,519.488,157.242,85.732,157.242,334.310,315.064,350.064,20.733,23.740,20.733 +6621,208.446,182.946,511.440,358.290,462.533,190.578,509.341,164.624,92.386,164.624,332.410,315.768,348.241,20.586,23.188,20.586 +6622,208.478,180.816,499.862,361.920,474.545,189.583,498.690,172.381,99.058,172.381,330.345,317.398,348.034,19.161,25.261,19.161 +6623,208.511,180.000,488.000,362.509,486.647,189.254,488.000,0.000,106.074,0.000,328.000,318.809,346.509,18.000,25.049,18.000 +6624,208.545,181.023,478.124,362.254,498.189,190.325,479.201,6.605,112.620,6.605,327.214,319.231,345.944,18.728,25.385,18.728 +6625,208.576,182.545,468.444,360.411,508.951,191.933,470.640,13.167,119.168,13.167,326.269,320.037,345.551,19.162,25.363,19.162 +6626,208.606,185.295,459.471,357.296,519.298,194.317,462.604,19.152,125.863,19.152,326.017,321.884,345.118,19.419,25.201,19.419 +6627,208.636,190.479,447.497,354.045,527.950,199.335,451.727,25.530,132.274,25.530,325.281,321.538,344.910,25.966,25.427,25.966 +6628,208.668,193.708,442.262,349.961,536.079,202.325,447.186,29.745,138.315,29.745,324.723,321.716,344.573,25.303,25.675,25.303 +6629,208.697,198.655,435.573,345.247,543.267,206.669,441.242,35.272,144.782,35.272,324.475,321.405,344.107,25.428,25.326,25.428 +6630,208.728,202.912,430.813,340.222,549.897,210.390,437.009,39.644,150.843,39.644,324.575,321.986,343.997,25.477,25.022,25.477 +6631,208.759,209.692,424.336,335.081,555.860,216.361,431.165,45.682,156.852,45.682,325.229,321.961,344.319,25.454,25.406,25.454 +6632,208.790,214.142,421.079,329.576,560.863,220.102,428.090,49.635,162.814,49.635,325.729,321.885,344.132,24.192,25.213,24.192 +6633,208.820,214.142,421.079,329.576,560.863,220.102,428.090,49.635,162.814,49.635,325.729,321.885,344.132,24.192,25.213,24.192 +6634,208.848,219.824,417.483,323.923,565.115,224.877,424.545,54.416,168.690,54.416,326.545,321.827,343.911,23.970,24.907,23.970 +6635,208.879,224.542,414.588,318.354,569.050,228.938,421.751,58.465,174.261,58.465,327.815,320.901,344.624,22.819,24.310,22.819 +6636,208.913,229.269,412.185,312.516,572.841,233.195,419.714,62.458,179.687,62.458,327.920,321.061,344.903,22.157,24.333,22.157 +6637,208.945,234.640,410.046,307.349,575.644,237.833,417.252,66.101,5.247,66.101,330.186,320.956,345.949,21.981,25.037,21.981 +6638,208.976,239.192,408.226,301.819,577.966,241.885,415.492,69.666,10.620,69.666,330.853,321.645,346.351,21.440,25.063,21.440 +6639,209.008,244.086,407.534,296.101,579.907,246.075,414.097,73.142,15.826,73.142,332.667,321.559,346.383,20.620,25.507,20.620 +6640,209.038,248.610,406.309,290.486,581.127,250.110,412.595,76.584,21.110,76.584,333.675,321.793,346.602,19.927,26.103,19.927 +6641,209.069,253.183,406.090,284.491,583.018,254.220,411.925,79.919,25.514,79.919,335.648,322.063,347.502,19.188,25.495,19.188 +6642,209.099,257.687,405.714,278.909,583.298,258.303,410.931,83.264,30.217,83.264,336.683,323.343,347.189,18.603,24.442,18.603 +6643,209.129,262.581,405.141,273.469,584.544,262.905,410.704,86.666,34.824,86.666,337.176,322.045,348.321,18.784,25.698,18.784 +6644,209.161,267.500,405.000,267.625,585.108,267.500,410.554,90.000,38.946,90.000,338.000,321.857,349.108,17.000,25.271,17.000 +6645,209.193,271.983,404.797,261.751,585.188,271.653,410.523,93.302,42.780,93.302,338.418,321.388,349.890,17.951,23.574,17.951 +6646,209.224,276.558,405.494,255.631,584.847,275.957,410.769,96.497,46.710,96.497,339.903,320.704,350.520,18.362,23.662,18.362 +6647,209.254,276.558,405.494,255.631,584.847,275.957,410.769,96.497,46.710,96.497,339.903,320.704,350.520,18.362,23.662,18.362 +6648,209.282,282.401,405.857,251.089,583.190,281.514,410.822,100.125,50.488,100.125,339.979,320.988,350.065,19.161,20.605,19.161 +6649,209.312,287.276,406.970,245.107,582.055,286.127,411.680,103.707,53.746,103.707,340.790,320.627,350.486,18.956,20.859,18.956 +6650,209.345,292.563,408.758,239.169,580.241,291.313,412.719,107.507,57.002,107.507,342.589,320.119,350.896,18.875,20.477,18.875 +6651,209.376,297.832,409.585,233.271,578.130,296.134,413.986,111.092,60.408,111.092,342.105,319.784,351.539,19.060,20.419,19.060 +6652,209.407,303.664,411.901,226.800,575.600,301.650,416.182,115.201,63.435,115.201,342.767,319.310,352.230,18.895,20.572,18.895 +6653,209.438,309.370,414.516,220.967,572.510,307.100,418.539,119.435,66.750,119.435,343.611,319.468,352.849,19.067,20.812,19.067 +6654,209.470,315.231,417.154,214.509,568.997,312.387,421.420,123.690,69.567,123.690,343.914,319.876,354.169,18.860,20.138,18.860 +6655,209.501,320.420,421.153,208.107,563.985,317.568,424.788,128.108,72.235,128.108,344.920,318.148,354.161,19.424,20.405,19.424 +6656,209.531,326.661,425.684,202.012,558.607,323.437,429.139,133.025,75.417,133.025,345.545,317.465,354.997,19.641,19.733,19.641 +6657,209.562,332.207,431.061,195.974,552.295,328.836,434.092,138.046,78.136,138.046,346.594,316.379,355.660,19.815,19.910,19.815 +6658,209.594,337.175,436.721,190.600,545.228,333.775,439.252,143.326,80.744,143.326,347.780,315.980,356.257,19.283,19.476,19.283 +6659,209.624,342.893,443.495,185.819,537.281,338.956,445.873,148.857,83.143,148.857,347.484,315.298,356.683,19.937,19.354,19.937 +6660,209.654,342.893,443.495,185.819,537.281,338.956,445.873,148.857,83.143,148.857,347.484,315.298,356.683,19.937,19.354,19.937 +6661,209.682,346.967,450.373,181.299,528.438,342.945,452.327,154.093,85.542,154.093,348.367,314.152,357.310,21.203,19.081,21.203 +6662,209.713,351.015,458.630,177.634,518.895,346.583,460.200,160.498,88.078,160.498,348.301,312.462,357.703,20.011,19.130,20.011 +6663,209.745,354.252,468.421,175.271,508.037,350.064,469.383,167.065,90.944,167.065,349.425,312.155,358.019,20.099,18.465,20.099 +6664,209.779,356.884,478.873,173.536,496.588,352.035,479.374,174.104,93.260,174.104,348.895,311.862,358.645,19.381,18.438,19.381 +6665,209.811,357.527,490.488,173.689,484.659,352.857,490.365,1.507,95.386,1.507,349.169,311.015,358.512,18.625,20.260,18.625 +6666,209.844,357.261,502.015,175.311,471.956,352.377,501.244,8.973,97.834,8.973,349.044,310.405,358.933,19.495,20.518,19.495 +6667,209.875,354.718,514.431,178.436,459.310,350.006,513.002,16.873,100.342,16.873,349.690,310.098,359.536,19.556,20.127,19.556 +6668,209.907,351.200,525.600,183.624,446.705,346.391,523.195,26.565,102.718,26.565,348.827,309.781,359.581,25.938,20.752,25.938 +6669,209.938,345.663,536.509,189.867,434.369,340.981,533.374,33.805,105.119,33.805,350.027,309.334,361.298,25.253,19.216,25.253 +6670,209.968,335.530,550.000,199.499,423.312,331.428,546.018,44.145,108.004,44.145,348.829,309.609,360.262,24.757,18.593,24.757 +6671,209.999,325.781,559.785,210.308,413.174,322.044,554.905,52.561,110.433,52.561,348.630,308.870,360.923,23.659,18.595,23.659 +6672,210.030,312.417,568.812,222.977,404.839,309.428,563.219,61.876,112.989,61.876,348.181,310.152,360.863,21.623,18.523,21.623 +6673,210.062,298.417,575.187,236.772,398.416,296.322,569.047,71.166,115.436,71.166,348.466,310.500,361.440,21.006,18.557,21.006 +6674,210.093,283.651,579.559,252.411,394.765,282.498,572.748,80.388,118.465,80.388,347.201,311.416,361.017,23.679,18.377,23.679 +6675,210.124,268.000,580.500,268.586,393.584,268.000,573.292,90.000,121.487,90.000,345.000,312.108,359.416,24.000,19.859,24.000 +6676,210.160,250.051,579.506,283.641,393.918,251.410,571.390,99.508,123.111,99.508,344.259,313.157,360.717,23.345,20.212,23.345 +6677,210.191,236.393,574.912,299.168,397.895,239.323,566.901,110.090,126.027,110.090,341.497,314.451,358.558,19.079,19.704,19.079 +6678,210.221,236.393,574.912,299.168,397.895,239.323,566.901,110.090,126.027,110.090,341.497,314.451,358.558,19.079,19.704,19.079 +6679,210.250,222.297,568.301,312.822,403.457,226.990,560.227,120.167,128.726,120.167,338.665,315.159,357.342,18.702,18.459,18.702 +6680,210.281,201.015,569.848,325.962,411.853,216.075,551.753,129.768,131.556,129.768,308.567,316.244,355.651,18.473,18.440,18.473 +6681,210.313,147.129,594.431,337.552,422.065,207.048,542.060,138.846,134.603,138.846,195.297,317.537,354.458,17.656,18.580,17.656 +6682,210.346,150.192,562.899,346.741,433.716,200.086,531.593,147.894,137.596,147.894,234.687,318.704,352.493,17.705,18.592,17.705 +6683,210.378,165.830,534.248,354.029,446.594,195.057,521.272,156.060,140.671,156.060,287.240,319.855,351.196,21.329,18.896,21.329 +6684,210.411,168.112,516.695,359.358,459.992,191.678,510.025,164.197,143.931,164.197,300.953,320.697,349.936,19.807,20.188,19.807 +6685,210.443,170.044,501.506,362.429,473.171,189.948,498.803,172.266,147.426,172.266,308.551,321.278,348.723,19.145,21.208,19.145 +6686,210.474,172.000,488.000,363.520,486.429,189.760,488.000,0.000,150.776,0.000,312.000,321.989,347.520,18.000,21.702,18.000 +6687,210.505,175.543,475.913,363.092,498.776,190.769,477.954,7.633,154.359,7.633,316.398,322.529,347.124,18.709,22.538,18.709 +6688,210.536,179.686,464.518,360.704,510.504,192.986,468.107,15.101,158.003,15.101,318.390,322.930,345.942,19.309,22.719,19.309 +6689,210.568,184.304,455.551,357.748,521.258,195.982,460.130,21.413,161.673,21.413,320.748,323.181,345.835,18.985,23.056,18.985 +6690,210.599,190.100,445.800,353.388,531.486,200.552,451.026,26.565,165.379,26.565,321.994,323.100,345.366,25.491,23.686,25.491 +6691,210.629,196.923,437.115,348.257,540.336,205.974,443.150,33.690,169.089,33.690,322.836,323.230,344.592,25.239,23.117,25.239 +6692,210.661,202.799,430.741,342.452,548.608,210.799,437.419,39.855,173.019,39.855,323.798,323.482,344.641,24.839,23.721,24.839 +6693,210.691,209.250,425.750,336.130,555.476,215.901,432.401,45.000,177.000,45.000,325.269,322.815,344.082,24.749,23.422,24.749 +6694,210.721,209.250,425.750,336.130,555.476,215.901,432.401,45.000,177.000,45.000,325.269,322.815,344.082,24.749,23.422,24.749 +6695,210.749,214.844,421.213,329.962,561.514,220.782,428.339,50.194,1.091,50.194,325.854,322.227,344.405,23.303,23.005,23.303 +6696,210.782,221.367,416.813,322.813,567.024,226.351,424.051,55.446,5.266,55.446,327.353,322.844,344.928,23.472,24.000,23.472 +6697,210.815,227.423,413.461,316.121,571.285,231.510,420.671,60.450,9.638,60.450,328.927,322.552,345.503,23.063,23.810,23.063 +6698,210.848,233.612,411.103,308.833,575.159,236.762,417.920,65.197,13.943,65.197,330.919,322.331,345.937,22.371,24.350,22.371 +6699,210.881,239.287,409.191,301.895,578.293,241.713,415.734,69.664,18.138,69.664,332.728,322.564,346.685,20.747,24.675,20.747 +6700,210.914,245.487,407.498,294.164,579.944,247.139,413.314,74.148,23.263,74.148,334.184,323.537,346.277,20.451,25.440,20.451 +6701,210.946,251.324,406.853,286.965,582.599,252.459,412.406,78.449,27.277,78.449,335.974,322.511,347.310,19.502,24.817,19.502 +6702,210.979,257.014,405.880,279.847,583.544,257.688,411.175,82.755,32.035,82.755,336.899,322.560,347.575,18.756,23.929,18.756 +6703,211.011,263.158,405.119,272.320,584.900,263.449,410.859,87.101,36.699,87.101,337.037,322.025,348.533,18.685,25.353,18.685 +6704,211.043,268.713,404.905,265.363,585.015,268.603,410.466,91.140,41.216,91.140,338.033,321.348,349.158,18.156,23.594,18.156 +6705,211.074,275.070,405.525,257.802,585.162,274.552,410.903,95.505,45.862,95.505,339.319,321.139,350.125,18.061,23.507,18.061 +6706,211.105,281.162,405.527,250.247,584.212,280.229,411.124,99.462,50.064,99.462,339.977,320.719,351.324,19.235,23.930,19.235 +6707,211.136,287.706,407.176,244.513,581.591,286.593,411.629,104.036,55.008,104.036,341.005,320.729,350.185,18.918,20.808,18.918 +6708,211.168,294.369,408.938,237.149,579.729,292.940,413.149,108.741,59.394,108.741,342.451,320.029,351.345,18.923,20.729,18.923 +6709,211.198,300.664,410.784,229.620,576.995,298.747,415.256,113.199,64.636,113.199,342.053,319.875,351.784,18.646,20.629,18.646 +6710,211.229,306.893,413.388,223.176,574.020,304.798,417.357,117.824,69.887,117.824,344.320,320.563,353.296,18.793,21.346,18.793 +6711,211.260,313.734,417.038,214.958,569.512,311.230,420.918,122.829,74.745,122.829,344.874,319.337,354.109,19.002,20.172,19.002 +6712,211.290,320.344,420.991,207.435,564.333,317.311,424.902,127.794,79.875,127.794,345.133,318.497,355.032,19.885,20.216,19.885 +6713,211.320,320.344,420.991,207.435,564.333,317.311,424.902,127.794,79.875,127.794,345.133,318.497,355.032,19.885,20.216,19.885 +6714,211.348,326.486,426.015,201.143,558.398,323.333,429.359,133.315,84.877,133.315,346.229,316.956,355.421,19.063,19.034,19.063 +6715,211.379,332.537,432.399,193.864,551.482,329.262,435.262,138.838,89.444,138.838,348.158,317.063,356.859,20.034,19.795,20.034 +6716,211.411,337.851,438.392,188.783,543.607,334.562,440.742,144.462,94.764,144.462,348.743,316.320,356.829,19.530,18.768,19.530 +6717,211.442,343.592,445.898,183.448,534.743,339.868,448.008,150.461,99.533,150.461,349.140,315.648,357.701,20.359,18.489,20.359 +6718,211.474,347.491,453.536,178.821,524.954,343.771,455.156,156.468,104.457,156.468,350.083,314.845,358.200,20.925,18.633,20.925 +6719,211.505,351.518,462.895,175.477,514.168,347.815,464.006,163.301,109.392,163.301,351.235,314.297,358.968,20.593,18.473,20.593 +6720,211.536,354.790,473.714,173.206,502.541,350.544,474.417,170.599,114.146,170.599,350.494,313.337,359.101,19.241,18.628,19.241 +6721,211.567,356.008,485.248,172.334,490.185,351.781,485.375,178.277,118.944,178.277,350.563,312.369,359.021,18.262,18.795,18.262 +6722,211.598,356.352,497.111,173.705,477.485,352.408,496.702,5.921,123.968,5.921,351.537,311.750,359.465,19.039,19.066,19.039 +6723,211.628,354.704,509.698,177.024,465.025,351.187,508.815,14.099,128.737,14.099,351.916,311.096,359.168,19.235,18.909,19.235 +6724,211.660,351.739,521.185,181.698,451.656,348.164,519.612,23.749,133.235,23.749,351.664,310.132,359.474,25.592,18.214,25.592 +6725,211.690,346.607,532.536,187.850,438.838,343.059,530.377,31.314,137.306,31.314,352.043,309.974,360.350,24.548,18.972,24.548 +6726,211.719,346.607,532.536,187.850,438.838,343.059,530.377,31.314,137.306,31.314,352.043,309.974,360.350,24.548,18.972,24.548 +6727,211.749,338.831,545.261,196.265,426.330,335.072,542.061,40.400,141.254,40.400,351.556,309.853,361.429,24.726,18.256,24.726 +6728,211.781,327.262,557.376,207.553,416.317,324.199,553.632,50.711,145.917,50.711,350.603,309.559,360.279,23.148,18.180,23.148 +6729,211.813,314.554,566.395,220.604,407.509,312.245,562.357,60.229,149.079,60.229,350.524,309.559,359.828,23.087,17.388,23.087 +6730,211.845,300.598,573.479,234.928,400.836,298.936,569.001,69.640,153.194,69.640,350.302,309.495,359.856,21.223,16.366,21.223 +6731,211.878,286.092,577.793,250.445,396.777,285.181,572.991,79.267,157.457,79.267,349.426,310.693,359.200,23.901,15.684,23.901 +6732,211.910,267.329,579.103,266.300,394.900,267.219,574.081,88.736,161.565,88.736,348.268,311.168,358.315,21.973,15.811,21.973 +6733,211.942,251.563,577.585,283.087,395.344,252.375,572.222,98.616,165.854,98.616,348.118,312.394,358.966,23.639,17.123,23.639 +6734,211.972,237.876,572.985,299.040,399.044,239.763,567.637,109.428,169.936,109.428,346.077,312.761,357.420,19.683,17.777,19.683 +6735,212.004,224.598,565.620,314.263,405.199,227.306,560.828,119.467,173.168,119.467,345.537,314.543,356.546,20.095,17.717,20.095 +6736,212.035,212.364,556.389,327.667,414.224,215.896,552.072,129.289,177.039,129.289,343.778,315.613,354.932,19.490,17.700,19.490 +6737,212.065,202.810,545.854,339.929,424.919,207.022,542.168,138.814,1.198,138.814,343.269,316.245,354.463,20.037,17.436,20.037 +6738,212.096,194.292,535.269,348.850,436.034,200.299,531.517,148.016,5.572,148.016,338.990,317.905,353.153,20.589,18.983,20.589 +6739,212.128,188.739,522.548,356.177,449.339,195.021,519.805,156.410,9.972,156.410,338.068,319.765,351.776,21.310,18.442,21.310 +6740,212.160,184.276,510.663,361.045,462.769,191.732,508.668,165.025,14.421,165.025,335.410,321.125,350.846,20.219,18.955,20.219 +6741,212.190,181.876,499.022,363.848,475.921,190.484,497.933,172.790,19.895,172.790,332.160,321.749,349.512,19.340,19.084,19.340 +6742,212.221,181.876,499.022,363.848,475.921,190.484,497.933,172.790,19.895,172.790,332.160,321.749,349.512,19.340,19.084,19.340 +6743,212.249,181.504,487.138,364.766,488.488,190.356,487.233,0.610,25.641,0.610,331.120,322.168,348.826,18.286,20.194,18.286 +6744,212.280,182.257,476.560,363.661,500.928,191.226,477.749,7.556,32.133,7.556,329.876,323.295,347.971,19.290,20.422,19.290 +6745,212.319,184.515,466.071,360.828,512.337,193.221,468.392,14.931,38.774,14.931,328.520,324.680,346.541,19.325,19.197,19.325 +6746,212.362,192.700,446.600,353.286,532.019,200.818,450.659,26.565,53.973,26.565,327.360,324.009,345.514,25.491,18.527,25.491 +6747,212.394,196.279,441.368,348.846,539.843,203.762,445.857,30.964,62.354,30.964,328.077,323.455,345.528,25.725,19.615,25.725 +6748,212.427,200.020,436.372,343.453,547.022,207.128,441.449,35.538,71.358,35.538,327.121,323.521,344.591,24.761,19.362,24.761 +6749,212.459,203.344,431.287,337.892,552.851,210.456,437.213,39.806,80.538,39.806,325.342,323.537,343.857,24.839,19.235,24.839 +6750,212.494,208.750,425.750,333.000,558.000,215.250,432.250,45.000,90.000,45.000,325.976,322.000,344.361,24.042,20.000,24.042 +6751,212.526,212.752,421.217,327.682,561.945,219.143,428.521,48.814,99.782,48.814,324.361,322.891,343.771,24.177,21.102,24.177 +6752,212.557,217.900,417.200,322.574,565.891,223.677,424.903,53.130,110.010,53.130,325.000,323.376,344.258,24.400,22.578,24.400 +6753,212.587,217.900,417.200,322.574,565.891,223.677,424.903,53.130,110.010,53.130,325.000,323.376,344.258,24.400,22.578,24.400 +6754,212.616,222.050,415.152,318.211,568.621,227.171,422.938,56.669,119.827,56.669,324.847,321.622,343.486,22.709,23.585,22.709 +6755,212.648,226.273,412.253,313.648,570.961,230.864,420.231,60.081,129.950,60.081,325.457,320.717,343.866,22.870,23.916,22.870 +6756,212.680,230.300,410.341,309.227,573.270,234.422,418.478,63.130,139.970,63.130,325.534,320.616,343.777,22.206,24.104,22.206 +6757,212.711,234.102,408.370,305.146,575.131,237.697,416.643,66.516,150.255,66.516,326.437,319.886,344.478,21.917,24.683,21.917 +6758,212.744,238.161,407.249,300.913,577.174,241.279,415.464,69.217,160.626,69.217,327.120,319.783,344.694,21.515,25.025,21.515 +6759,212.776,241.950,406.166,296.752,578.596,244.475,413.941,72.013,171.043,72.013,329.151,319.566,345.502,20.974,25.205,20.974 +6760,212.808,245.280,405.521,293.413,580.463,247.454,413.438,74.650,1.441,74.650,330.045,319.251,346.465,19.665,25.288,19.665 +6761,212.838,249.358,405.433,289.077,581.634,250.940,412.452,77.300,11.957,77.300,332.465,320.447,346.855,19.882,25.885,19.882 +6762,212.870,252.912,405.647,285.010,582.421,254.005,411.711,79.778,22.237,79.778,334.684,321.669,347.007,19.215,25.227,19.215 +6763,212.900,256.347,405.995,280.462,583.383,257.046,411.149,82.278,32.836,82.278,337.236,322.891,347.637,18.693,23.766,18.693 +6764,212.930,259.629,405.767,276.737,584.682,260.141,411.269,84.685,43.191,84.685,337.357,322.087,348.409,18.478,22.810,18.478 +6765,212.962,263.257,405.637,273.006,584.862,263.519,410.880,87.138,53.791,87.138,337.978,322.558,348.477,18.627,20.921,18.627 +6766,212.993,267.000,405.000,268.195,585.440,267.000,410.720,90.000,64.231,90.000,338.000,322.925,349.440,18.000,20.464,18.000 +6767,213.023,269.747,403.847,263.617,586.152,269.516,411.018,91.848,74.784,91.848,336.115,323.896,350.466,18.184,20.673,18.184 +6768,213.054,269.747,403.847,263.617,586.152,269.516,411.018,91.848,74.784,91.848,336.115,323.896,350.466,18.184,20.673,18.184 +6769,213.083,273.501,403.741,258.667,585.849,272.968,410.934,94.236,84.827,94.236,336.559,323.754,350.986,18.025,21.160,18.025 +6770,213.114,280.022,380.529,252.428,584.955,276.404,411.059,96.759,94.554,96.759,289.529,323.365,351.017,17.809,22.089,17.809 +6771,213.146,292.080,335.924,248.970,584.085,279.727,411.164,99.324,105.186,99.324,198.742,322.406,351.238,17.718,19.729,17.718 +6772,213.179,290.161,379.249,244.138,582.067,283.279,411.364,102.095,115.750,102.095,284.540,320.287,350.229,17.740,19.338,17.740 +6773,213.212,292.402,390.998,239.535,580.156,287.033,411.517,104.664,126.501,104.664,307.921,319.608,350.341,17.956,18.987,17.956 +6774,213.244,296.591,395.810,235.514,578.047,291.456,412.242,107.354,136.790,107.354,315.456,317.844,349.888,19.507,19.546,19.507 +6775,213.275,299.658,400.793,231.433,576.463,295.104,413.190,110.171,147.461,110.171,324.013,316.992,350.428,19.521,20.672,19.521 +6776,213.305,303.878,404.312,227.433,574.543,299.412,414.640,113.385,157.443,113.385,328.171,316.077,350.675,19.374,21.908,19.374 +6777,213.337,307.900,407.700,223.098,571.959,303.718,416.064,116.565,167.957,116.565,332.280,315.201,350.982,19.230,22.259,19.230 +6778,213.367,311.700,410.900,218.596,569.589,307.708,417.886,119.745,177.879,119.745,335.762,313.526,351.854,18.977,22.540,18.977 +6779,213.399,316.475,414.119,214.026,566.312,312.356,420.370,123.378,7.930,123.378,336.962,313.796,351.935,19.000,23.386,19.000 +6780,213.432,320.924,418.081,209.392,562.788,317.015,423.265,127.011,18.789,127.011,339.409,313.723,352.395,19.730,25.386,19.730 +6781,213.464,325.430,422.409,204.176,558.849,321.676,426.736,130.943,28.652,130.943,342.128,314.127,353.584,19.974,24.861,19.974 +6782,213.496,330.000,426.500,198.856,554.989,325.717,430.783,135.000,37.539,135.000,342.947,314.244,355.062,19.092,24.715,19.092 +6783,213.529,334.534,431.539,195.425,548.604,330.876,434.664,139.490,47.031,139.490,344.371,313.097,353.991,19.406,21.070,19.406 +6784,213.561,339.096,437.019,191.539,543.151,335.421,439.671,144.186,57.095,144.186,345.393,314.839,354.457,19.393,20.594,19.393 +6785,213.592,343.500,443.500,186.401,536.181,339.563,445.862,149.036,66.695,149.036,346.427,313.956,355.609,19.894,19.075,19.894 +6786,213.623,346.778,449.539,182.250,528.590,342.751,451.543,153.541,76.354,153.541,347.040,313.613,356.035,21.049,19.250,21.049 +6787,213.653,346.778,449.539,182.250,528.590,342.751,451.543,153.541,76.354,153.541,347.040,313.613,356.035,21.049,19.250,21.049 +6788,213.681,350.119,457.146,178.324,520.440,346.021,458.679,159.484,85.823,159.484,348.661,313.844,357.411,20.139,18.625,20.139 +6789,213.713,353.563,465.833,175.632,511.012,349.202,466.976,165.311,95.086,165.311,349.108,313.520,358.125,20.267,18.784,20.267 +6790,213.746,355.486,475.440,173.368,500.718,351.142,476.068,171.784,104.084,171.784,350.166,313.116,358.944,19.366,19.262,19.366 +6791,213.778,356.979,486.032,172.677,489.585,352.399,486.130,178.781,113.324,178.781,350.346,312.515,359.509,18.187,19.693,18.187 +6792,213.809,356.587,496.615,173.426,478.196,352.553,496.218,5.618,122.661,5.618,351.957,311.711,360.063,19.088,20.184,19.088 +6793,213.841,355.231,507.992,176.034,466.532,351.218,507.070,12.938,132.861,12.938,351.387,310.811,359.624,19.110,18.507,19.110 +6794,213.872,352.916,516.421,179.304,454.119,349.122,514.989,20.674,141.159,20.674,352.634,310.140,360.745,25.526,20.534,25.526 +6795,213.903,348.302,529.057,184.868,442.291,344.323,526.846,29.055,150.422,29.055,351.800,309.091,360.904,25.059,20.590,25.059 +6796,213.934,341.520,540.140,192.524,431.002,338.248,537.686,36.870,159.156,36.870,353.000,308.738,361.179,24.800,18.297,24.800 +6797,213.964,331.710,551.482,201.760,420.724,329.098,548.745,46.332,168.460,46.332,353.491,307.898,361.056,23.509,18.170,23.509 +6798,213.995,321.047,561.361,213.091,411.652,318.642,557.878,55.376,178.025,55.376,352.141,306.439,360.604,23.492,17.714,23.492 +6799,214.027,308.911,569.117,225.713,404.855,307.077,565.357,63.997,6.953,63.997,351.484,306.728,359.851,21.527,17.650,21.527 +6800,214.058,294.342,574.869,239.367,399.159,293.111,570.838,73.020,16.336,73.020,351.352,306.320,359.781,21.917,18.034,21.917 +6801,214.088,294.342,574.869,239.367,399.159,293.111,570.838,73.020,16.336,73.020,351.352,306.320,359.781,21.917,18.034,21.917 +6802,214.117,278.063,578.983,253.622,395.866,277.391,574.349,81.751,25.677,81.751,350.727,306.876,360.093,24.064,18.181,24.064 +6803,214.148,262.795,578.554,269.409,394.034,262.878,573.537,90.942,35.628,90.942,349.134,306.893,359.170,24.079,19.819,24.079 +6804,214.181,251.389,577.084,297.878,407.067,251.556,576.252,101.378,43.866,101.378,348.299,271.728,349.997,22.357,25.115,22.357 +6805,214.213,236.689,572.497,310.097,412.384,237.128,571.311,110.346,53.973,110.346,346.235,274.088,348.765,19.639,24.115,19.639 +6806,214.245,223.680,567.570,321.869,421.354,224.897,565.406,119.358,62.769,119.358,341.222,272.272,346.188,20.046,25.214,20.046 +6807,214.278,211.824,559.832,331.536,431.753,213.543,557.652,128.244,73.009,128.244,338.285,270.860,343.836,20.021,24.174,20.021 +6808,214.309,201.310,550.906,336.555,423.262,208.131,544.547,137.010,82.333,137.010,334.628,310.450,353.278,19.502,24.357,19.502 +6809,214.341,194.214,540.434,344.534,433.512,201.436,535.451,145.402,91.302,145.402,333.799,311.374,351.348,21.032,22.721,21.032 +6810,214.371,187.381,529.742,350.559,444.334,195.727,525.550,153.333,100.008,153.333,330.945,313.625,349.624,21.884,21.028,21.884 +6811,214.402,182.707,517.972,356.091,455.070,192.143,514.732,161.050,109.093,161.050,328.920,316.934,348.874,20.751,21.153,20.751 +6812,214.433,179.329,506.533,361.148,467.920,190.442,504.249,168.386,117.759,168.386,326.360,318.198,349.049,20.140,24.778,20.140 +6813,214.464,177.752,494.988,362.731,480.196,189.405,494.145,175.865,127.235,175.865,324.395,320.567,347.762,18.878,23.757,18.878 +6814,214.497,177.791,483.795,363.155,491.630,189.928,484.387,2.793,134.569,2.793,322.446,320.390,346.749,18.953,24.392,18.953 +6815,214.528,178.685,473.368,362.368,502.292,191.048,475.451,9.563,142.633,9.563,321.721,321.433,346.796,18.591,23.944,18.591 +6816,214.560,181.876,463.133,360.096,512.444,193.461,466.521,16.299,150.582,16.299,321.514,322.216,345.653,19.477,23.653,19.477 +6817,214.591,184.965,455.086,357.362,522.155,196.269,459.608,21.801,158.199,21.801,321.253,322.553,345.601,19.127,23.955,19.127 +6818,214.621,190.200,445.600,353.638,531.031,200.661,450.831,26.565,165.457,26.565,321.994,322.882,345.386,25.938,22.996,25.938 +6819,214.651,190.200,445.600,353.638,531.031,200.661,450.831,26.565,165.457,26.565,321.994,322.882,345.386,25.938,22.996,25.938 +6820,214.681,194.606,439.133,349.101,539.266,204.419,445.238,31.891,172.471,31.891,321.925,323.137,345.038,25.321,22.828,25.321 +6821,214.713,200.800,432.400,344.038,546.774,209.480,439.151,37.875,179.045,37.875,322.582,322.239,344.575,25.435,22.614,25.435 +6822,214.746,205.923,427.672,338.721,552.970,213.577,434.705,42.580,5.371,42.580,323.546,323.394,344.335,25.254,21.912,25.254 +6823,214.778,212.517,422.831,333.135,558.827,218.984,430.040,48.102,11.310,48.102,324.813,324.180,344.183,24.674,21.965,24.674 +6824,214.809,218.065,419.367,327.243,564.198,223.372,426.290,52.524,16.837,52.524,327.839,323.938,345.286,23.888,22.732,23.888 +6825,214.841,223.911,416.989,320.763,568.361,227.811,423.047,57.225,21.601,57.225,330.586,324.755,344.997,22.506,22.942,22.506 +6826,214.872,229.822,414.368,314.069,572.377,232.843,419.936,61.518,26.375,61.518,332.782,325.117,345.452,22.545,22.664,22.545 +6827,214.904,235.175,411.990,307.353,575.927,237.636,417.482,65.868,30.769,65.868,334.166,324.977,346.202,21.983,23.155,21.983 +6828,214.935,240.634,410.359,300.644,578.845,242.498,415.495,70.051,34.641,70.051,335.843,324.829,346.772,21.181,24.143,21.181 +6829,214.966,245.894,408.233,294.237,581.339,247.494,413.923,74.291,37.848,74.291,335.815,324.072,347.637,20.426,23.262,20.426 +6830,214.999,251.232,406.878,287.238,583.065,252.424,412.676,78.381,40.804,78.381,335.981,322.992,347.820,19.526,23.400,19.526 +6831,215.031,256.790,405.853,280.628,584.285,257.531,411.549,82.589,43.509,82.589,337.055,322.699,348.544,18.793,23.219,18.793 +6832,215.062,262.693,405.632,273.269,585.224,263.002,411.034,86.730,45.790,86.730,338.163,321.869,348.985,18.541,24.054,18.541 +6833,215.094,268.383,404.936,265.874,585.658,268.301,410.799,90.796,47.622,90.796,338.023,322.076,349.751,18.012,24.227,18.012 +6834,215.124,274.222,405.500,258.223,585.373,273.748,410.982,94.943,49.086,94.943,339.156,321.470,350.160,18.278,23.729,18.278 +6835,215.155,274.222,405.500,258.223,585.373,273.748,410.982,94.943,49.086,94.943,339.156,321.470,350.160,18.278,23.729,18.278 +6836,215.184,281.110,406.026,251.095,584.422,280.255,411.245,99.310,50.670,99.310,340.650,320.908,351.227,19.089,23.674,19.089 +6837,215.216,287.552,407.150,243.984,582.809,286.270,412.350,103.851,51.459,103.851,340.540,320.474,351.252,18.940,24.260,18.940 +6838,215.248,293.720,408.253,238.230,579.301,292.311,412.551,108.153,52.696,108.153,341.553,319.991,350.600,18.880,20.454,18.880 +6839,215.281,300.618,410.488,230.745,576.583,298.802,414.761,113.025,53.616,113.025,341.811,319.014,351.098,19.097,20.847,19.097 +6840,215.314,306.742,412.570,223.772,572.898,304.559,416.779,117.408,54.819,117.408,342.081,318.280,351.565,19.202,20.407,19.202 +6841,215.346,313.462,416.203,216.688,568.512,311.098,419.918,122.471,55.784,122.471,343.294,317.308,352.099,19.097,20.475,19.097 +6842,215.377,320.877,420.515,209.787,563.174,318.129,424.048,127.875,56.768,127.875,343.719,316.240,352.671,19.909,20.623,19.909 +6843,215.409,327.306,425.318,202.879,557.177,324.145,428.688,133.166,57.653,133.166,344.112,315.681,353.353,19.683,19.994,19.683 +6844,215.441,333.656,431.177,196.771,550.784,330.145,434.258,138.735,58.241,138.735,344.873,316.096,354.214,20.048,20.163,20.048 +6845,215.472,338.987,436.982,190.827,542.791,335.164,439.743,144.162,58.841,144.162,345.259,314.690,354.690,19.501,20.179,19.501 +6846,215.503,345.511,445.910,185.815,533.847,341.412,448.212,150.673,59.574,150.673,345.796,314.707,355.198,20.895,19.819,20.895 +6847,215.533,349.628,452.944,181.378,523.783,345.311,454.821,156.501,60.158,156.501,346.254,313.076,355.669,20.415,20.220,20.415 +6848,215.565,353.405,462.544,177.066,512.745,348.703,463.942,163.436,60.499,163.436,347.041,311.665,356.853,20.620,19.491,20.620 +6849,215.597,356.806,473.908,174.953,500.853,351.608,474.742,170.882,61.113,170.882,346.589,310.317,357.120,19.113,19.202,19.113 +6850,215.627,358.592,485.618,174.293,488.696,353.233,485.754,178.550,61.545,178.550,347.193,309.255,357.913,18.222,19.501,18.222 +6851,215.657,358.202,497.731,175.457,475.545,353.183,497.184,6.226,62.422,6.226,347.954,308.303,358.051,19.195,20.065,19.195 +6852,215.687,356.532,510.770,177.958,462.313,351.162,509.390,14.407,62.192,14.407,347.853,308.281,358.941,19.371,19.959,19.371 +6853,215.717,356.532,510.770,177.958,462.313,351.162,509.390,14.407,62.192,14.407,347.853,308.281,358.941,19.371,19.959,19.371 +6854,215.747,353.237,522.216,183.358,449.332,348.252,520.001,23.962,63.146,23.962,347.858,307.726,358.768,25.587,21.186,25.587 +6855,215.780,347.164,536.046,194.396,448.789,346.389,535.540,33.147,61.963,33.147,347.536,282.592,349.387,25.562,20.494,25.562 +6856,215.813,339.398,549.362,205.542,442.501,339.970,549.882,42.274,62.422,42.274,344.947,269.754,343.402,24.889,19.523,24.889 +6857,215.846,330.354,562.817,217.189,434.662,329.820,562.150,51.340,62.488,51.340,338.116,263.321,339.824,22.958,20.528,22.958 +6858,215.877,330.858,596.139,230.955,428.531,317.742,572.718,60.751,63.236,60.751,282.727,257.573,336.415,20.905,18.525,20.905 +6859,215.908,307.976,597.319,244.724,421.170,301.633,579.939,69.948,62.987,69.948,300.311,258.520,337.314,20.084,18.674,20.084 +6860,215.939,284.610,587.712,260.413,416.285,283.932,584.175,79.146,62.555,79.146,331.426,260.172,338.629,23.947,19.299,23.947 +6861,215.969,266.584,584.535,276.819,414.309,266.572,583.851,88.962,62.341,88.962,337.289,260.559,338.657,22.942,21.460,22.942 +6862,216.000,253.676,579.984,290.996,410.762,253.761,579.493,99.836,62.526,99.836,344.227,270.637,345.224,23.174,22.926,23.174 +6863,216.031,237.841,573.841,306.065,413.727,238.087,573.137,109.250,62.458,109.250,344.324,273.337,345.817,19.556,23.678,19.556 +6864,216.064,224.953,566.897,317.786,414.351,226.498,564.085,118.782,62.403,118.782,343.961,286.754,350.378,19.876,24.472,19.876 +6865,216.097,212.826,558.826,328.816,418.835,216.281,554.425,128.132,62.396,128.132,341.094,296.584,352.283,19.987,24.627,19.987 +6866,216.128,203.124,548.677,336.588,422.192,208.138,544.053,137.314,62.328,137.314,340.441,313.207,354.082,19.462,25.035,19.462 +6867,216.159,195.600,537.141,345.771,433.833,200.741,533.694,146.163,62.308,146.163,339.761,314.515,352.141,19.477,24.466,19.477 +6868,216.190,190.173,525.908,353.018,446.491,195.517,523.355,154.458,62.063,154.458,338.654,315.824,350.500,21.303,24.657,21.303 +6869,216.220,190.173,525.908,353.018,446.491,195.517,523.355,154.458,62.063,154.458,338.654,315.824,350.500,21.303,24.657,21.303 +6870,216.250,186.083,513.767,358.434,459.502,191.761,511.989,162.619,61.928,162.619,337.585,317.294,349.484,20.158,24.765,20.158 +6871,216.281,183.897,502.392,361.538,472.679,189.861,501.384,170.401,61.907,170.401,336.023,317.826,348.120,19.053,23.807,19.053 +6872,216.313,182.957,490.592,362.994,485.503,189.471,490.395,178.264,61.798,178.264,334.150,319.474,347.183,18.022,23.654,18.022 +6873,216.345,183.537,480.103,362.856,498.000,190.311,480.740,5.373,61.680,5.373,333.198,320.493,346.805,18.951,23.416,18.951 +6874,216.376,185.143,469.190,360.964,509.519,192.201,470.804,12.885,61.882,12.885,331.814,321.357,346.295,19.496,21.841,19.496 +6875,216.407,188.075,460.819,357.954,520.433,194.834,463.133,18.901,62.049,18.901,331.483,322.116,345.771,18.726,20.858,18.726 +6876,216.438,192.927,449.659,353.899,530.313,199.508,452.696,24.775,62.511,24.775,330.916,322.630,345.413,25.563,19.985,25.563 +6877,216.470,196.706,441.824,349.340,539.082,203.834,446.100,30.964,62.949,30.964,328.591,323.422,345.217,25.382,19.063,25.382 +6878,216.501,199.679,436.505,344.129,546.449,207.144,441.785,35.272,63.979,35.272,326.268,323.819,344.553,25.090,19.055,25.090 +6879,216.531,202.906,430.146,338.773,553.564,211.242,437.174,40.135,65.323,40.135,323.243,324.078,345.049,24.600,18.321,24.600 +6880,216.564,208.088,422.550,333.450,559.107,216.799,431.566,45.982,67.490,45.982,320.478,324.392,345.552,24.733,18.809,24.733 +6881,216.595,212.142,417.614,327.850,564.054,221.127,428.346,50.064,70.244,50.064,317.135,324.495,345.129,24.001,18.465,24.001 +6882,216.626,216.252,413.055,322.247,568.135,224.999,425.120,54.058,73.686,54.058,315.930,324.321,345.735,23.580,18.282,23.580 +6883,216.657,220.918,410.198,316.985,571.289,228.907,422.796,57.619,77.879,57.619,315.311,324.211,345.145,23.008,18.170,23.008 +6884,216.688,224.578,406.462,312.031,574.185,232.250,420.299,60.994,82.840,60.994,314.896,324.599,346.539,22.695,18.403,22.695 +6885,216.721,224.578,406.462,312.031,574.185,232.250,420.299,60.994,82.840,60.994,314.896,324.599,346.539,22.695,18.403,22.695 +6886,216.749,228.775,404.896,307.032,576.999,235.659,418.950,63.905,88.396,63.905,315.367,324.377,346.665,22.232,17.977,22.232 +6887,216.782,232.843,404.197,302.402,577.911,238.421,417.137,66.682,94.616,66.682,317.756,323.772,345.937,22.166,18.443,22.166 +6888,216.814,236.505,404.043,297.386,580.489,241.249,416.459,69.092,101.058,69.092,319.943,326.334,346.526,21.276,21.221,21.276 +6889,216.848,239.888,403.348,294.393,579.630,243.671,414.474,71.222,108.301,71.222,321.884,322.245,345.386,20.999,20.425,20.999 +6890,216.880,243.202,403.043,291.900,580.200,246.338,413.536,73.361,116.565,73.361,323.561,321.547,345.464,20.870,20.572,20.870 +6891,216.913,245.790,402.503,288.772,580.648,248.460,412.647,75.256,124.778,75.256,324.479,320.973,345.458,20.105,21.538,20.105 +6892,216.943,248.551,402.687,286.272,581.222,250.713,412.136,77.112,133.075,77.112,326.131,320.050,345.516,19.752,22.995,19.752 +6893,216.974,251.019,402.405,283.816,581.625,252.818,411.535,78.857,141.009,78.857,327.139,319.374,345.749,19.385,23.243,19.385 +6894,217.005,253.515,402.501,281.404,582.046,254.973,411.313,80.608,149.676,80.608,327.653,318.956,345.516,19.057,24.267,19.057 +6895,217.035,255.822,401.753,278.970,582.424,257.018,410.572,82.278,158.261,82.278,328.687,318.283,346.486,18.861,24.868,18.861 +6896,217.065,258.277,401.808,276.582,582.512,259.191,410.267,83.830,166.954,83.830,329.217,318.109,346.233,18.863,24.973,18.863 +6897,217.097,260.762,401.900,274.476,582.694,261.419,410.174,85.462,175.601,85.462,329.424,318.214,346.025,18.972,24.773,18.972 +6898,217.129,262.901,402.110,272.353,583.412,263.322,410.119,86.987,4.399,86.987,331.016,318.290,347.055,18.606,25.923,18.606 +6899,217.160,265.124,403.095,269.759,584.040,265.305,410.522,88.603,13.062,88.603,332.291,318.844,347.150,18.287,25.904,18.287 +6900,217.190,267.000,403.500,266.983,584.293,267.000,410.147,90.000,21.801,90.000,335.000,319.953,348.293,18.000,26.183,18.000 +6901,217.221,267.000,403.500,266.983,584.293,267.000,410.147,90.000,21.801,90.000,335.000,319.953,348.293,18.000,26.183,18.000 +6902,217.251,269.571,404.368,263.856,584.591,269.396,410.235,91.710,30.561,91.710,337.148,321.400,348.888,17.843,25.291,17.843 +6903,217.282,272.074,404.740,261.339,585.197,271.734,410.514,93.366,39.310,93.366,338.415,320.909,349.984,17.969,24.468,17.969 +6904,217.314,274.298,405.228,258.538,585.019,273.848,410.516,94.857,48.192,94.857,339.730,320.964,350.345,18.124,23.369,18.124 +6905,217.346,276.618,405.444,256.790,584.312,276.055,410.390,96.496,57.095,96.496,340.016,321.506,349.971,18.248,19.755,18.248 +6906,217.378,278.878,406.274,253.126,584.621,278.202,411.047,98.063,65.659,98.063,341.111,321.860,350.751,19.076,20.890,19.076 +6907,217.409,281.743,405.679,250.622,584.428,280.762,411.360,99.796,74.904,99.796,339.814,323.370,351.345,18.964,20.148,18.964 +6908,217.441,284.248,406.831,247.868,584.194,283.196,411.945,101.622,83.914,101.622,341.226,323.644,351.669,19.006,23.254,19.006 +6909,217.472,287.591,406.555,242.013,582.962,286.150,412.516,103.591,92.186,103.591,339.826,322.529,352.091,18.051,20.100,18.051 +6910,217.503,291.316,405.611,237.876,581.670,289.200,413.188,105.604,100.995,105.604,336.424,322.243,352.157,17.163,18.522,17.163 +6911,217.534,317.250,336.750,234.407,579.647,291.773,413.180,108.435,109.799,108.435,191.002,320.466,352.130,16.760,18.893,16.760 +6912,217.564,314.274,360.470,230.858,577.923,294.610,413.844,110.225,118.546,110.225,238.240,319.707,352.003,17.532,19.396,17.532 +6913,217.597,310.195,384.831,227.037,575.646,297.805,414.567,112.620,127.432,112.620,287.385,319.004,351.812,17.769,19.215,17.769 +6914,217.628,311.027,394.693,223.192,573.177,301.164,415.592,115.263,136.375,115.263,305.358,317.066,351.578,17.914,19.092,17.914 +6915,217.659,313.580,401.648,219.387,570.558,305.503,416.994,117.759,145.244,117.759,317.313,316.865,351.999,19.422,18.863,19.422 +6916,217.689,316.879,406.298,215.973,567.938,309.409,418.904,120.651,153.608,120.651,322.386,315.749,351.692,19.914,18.966,19.914 +6917,217.719,316.879,406.298,215.973,567.938,309.409,418.904,120.651,153.608,120.651,322.386,315.749,351.692,19.914,18.966,19.914 +6918,217.749,319.374,410.063,212.123,565.314,312.507,420.444,123.486,162.378,123.486,327.526,315.030,352.419,19.041,20.385,19.041 +6919,217.782,323.180,414.760,208.235,562.441,316.756,423.325,126.870,170.727,126.870,331.400,314.006,352.812,19.600,21.451,19.600 +6920,217.816,327.207,419.168,204.473,558.505,321.120,426.290,130.521,178.968,130.521,333.852,313.093,352.589,19.998,20.789,19.998 +6921,217.848,330.361,423.740,200.092,554.302,324.873,429.405,134.091,7.496,134.091,337.281,312.830,353.055,19.280,21.864,19.280 +6922,217.881,334.540,428.882,195.970,549.601,329.463,433.445,138.053,16.535,138.053,340.210,312.354,353.861,19.959,23.697,19.959 +6923,217.914,338.064,433.804,191.788,544.365,333.303,437.498,142.193,24.376,142.193,342.584,312.423,354.636,19.057,24.636,19.057 +6924,217.946,342.267,439.704,187.332,538.972,337.302,442.972,146.649,32.164,146.649,344.213,311.949,356.101,19.643,24.593,19.643 +6925,217.978,346.150,446.318,184.186,531.085,341.654,448.790,151.189,39.976,151.189,345.010,311.766,355.271,21.292,20.125,21.292 +6926,218.009,349.037,451.810,180.724,523.971,344.520,453.837,155.833,47.620,155.833,346.404,311.033,356.306,20.762,20.222,20.762 +6927,218.039,352.356,459.513,178.524,516.259,347.900,461.018,161.336,55.408,161.336,346.888,312.310,356.294,20.190,19.757,20.190 +6928,218.070,355.343,468.170,175.900,506.805,350.497,469.283,167.065,63.579,167.065,347.186,310.829,357.131,20.099,19.539,20.099 +6929,218.101,357.480,477.611,174.572,497.136,352.534,478.189,173.341,71.237,173.341,347.956,310.523,357.916,19.285,19.517,19.285 +6930,218.131,358.500,488.000,173.923,486.848,352.962,488.000,0.000,79.216,0.000,347.000,310.279,358.077,18.000,18.805,18.000 +6931,218.162,358.078,498.328,175.326,475.371,353.155,497.757,6.613,86.820,6.613,348.535,309.745,358.447,19.262,19.914,19.262 +6932,218.194,356.293,509.868,177.130,464.545,351.356,508.652,13.844,94.068,13.844,349.266,309.995,359.436,19.180,20.047,19.180 +6933,218.225,353.815,517.912,181.058,452.918,349.340,516.164,21.337,101.485,21.337,349.908,310.074,359.518,25.586,20.619,25.586 +6934,218.256,349.171,529.694,186.184,441.411,344.619,527.157,29.134,109.134,29.134,349.851,309.957,360.272,25.073,19.435,25.073 +6935,218.286,349.171,529.694,186.184,441.411,344.619,527.157,29.134,109.134,29.134,349.851,309.957,360.272,25.073,19.435,25.073 +6936,218.315,342.630,540.853,192.900,430.200,338.253,537.549,37.052,116.565,37.052,350.405,309.919,361.374,25.602,18.783,25.602 +6937,218.347,332.336,553.154,202.710,420.530,328.812,549.398,46.818,124.695,46.818,350.223,310.093,360.524,24.714,18.594,24.714 +6938,218.379,322.171,561.935,213.198,411.177,319.007,557.406,55.054,131.828,55.054,349.892,310.256,360.941,23.406,19.006,23.406 +6939,218.411,309.582,569.463,224.975,403.550,307.098,564.473,63.529,139.152,63.529,350.167,310.089,361.316,21.399,19.892,21.399 +6940,218.444,296.054,575.191,238.870,398.315,294.386,570.027,72.102,146.519,72.102,350.075,310.640,360.928,20.224,18.678,20.224 +6941,218.475,281.000,579.000,253.396,395.326,280.086,573.515,80.538,153.856,80.538,349.183,310.887,360.305,23.673,18.348,23.673 +6942,218.507,267.500,579.500,267.620,393.433,267.500,573.216,90.000,162.225,90.000,347.000,311.555,359.567,23.000,19.182,23.000 +6943,218.538,252.148,577.522,282.595,394.876,252.967,572.115,98.616,170.003,98.616,348.417,312.177,359.355,22.800,18.211,22.800 +6944,218.568,239.998,573.499,296.648,398.767,241.588,568.633,108.092,177.750,108.092,346.894,311.467,357.132,19.348,17.786,19.348 +6945,218.604,228.167,567.835,310.111,404.293,230.427,563.336,116.667,5.856,116.667,345.704,312.948,355.775,20.184,17.855,20.184 +6946,218.647,217.282,560.200,321.971,411.618,219.921,556.471,125.295,14.036,125.295,345.246,313.599,354.381,19.681,17.705,19.681 +6947,218.680,208.014,551.513,332.731,419.846,211.179,548.200,133.692,22.620,133.692,344.384,314.462,353.548,19.658,18.692,19.658 +6948,218.711,199.670,542.615,341.765,429.423,203.968,539.219,141.695,30.700,141.695,341.423,315.217,352.378,19.725,20.314,19.725 +6949,218.743,193.928,533.424,349.988,438.617,199.402,530.199,149.498,39.710,149.498,339.754,316.517,352.461,21.750,23.496,21.750 +6950,218.780,188.940,522.360,355.408,450.130,194.339,520.043,156.772,47.793,156.772,339.424,317.700,351.174,20.477,23.789,20.477 +6951,218.812,185.940,512.296,359.315,461.781,191.529,510.662,163.695,56.622,163.695,337.875,317.834,349.521,19.992,24.207,19.992 +6952,218.843,183.891,502.341,361.846,472.877,189.989,501.337,170.655,65.171,170.655,336.038,318.135,348.396,19.747,24.342,19.747 +6953,218.875,182.381,491.828,362.679,483.877,189.277,491.521,177.455,74.055,177.455,333.338,318.814,347.142,18.027,24.450,18.027 +6954,218.906,182.059,483.018,362.215,494.166,189.525,483.464,3.417,82.648,3.417,331.082,318.905,346.042,18.981,24.187,18.981 +6955,218.937,182.628,474.226,361.085,503.556,190.502,475.526,9.382,91.528,9.382,329.781,319.313,345.742,18.737,24.111,18.737 +6956,218.967,184.350,465.550,359.236,512.452,192.598,467.799,15.255,100.305,15.255,327.932,320.116,345.030,19.295,24.776,19.295 +6957,218.998,186.456,458.620,356.610,520.537,194.680,461.611,19.983,108.759,19.983,327.134,320.064,344.636,19.138,25.083,19.138 +6958,219.029,190.054,449.973,353.495,528.260,198.300,453.607,23.782,117.759,23.782,326.220,321.272,344.242,26.367,24.964,26.367 +6959,219.061,194.062,442.392,350.277,534.706,202.287,447.093,29.745,126.656,29.745,324.971,321.210,343.919,25.427,25.504,25.427 +6960,219.092,197.385,437.423,347.000,540.500,205.462,442.808,33.690,135.000,33.690,324.500,320.319,343.914,25.239,24.749,25.239 +6961,219.122,200.340,433.880,343.392,545.880,208.117,439.713,36.870,143.480,36.870,324.400,321.184,343.842,25.400,25.737,25.400 +6962,219.153,200.340,433.880,343.392,545.880,208.117,439.713,36.870,143.480,36.870,324.400,321.184,343.842,25.400,25.737,25.400 +6963,219.183,203.520,430.161,339.610,550.633,211.008,436.484,40.179,151.699,40.179,324.203,321.778,343.805,25.247,25.127,25.247 +6964,219.215,208.750,425.250,335.967,555.141,215.527,432.027,45.000,159.894,45.000,325.269,321.753,344.438,24.749,25.044,24.749 +6965,219.247,212.608,422.453,332.153,558.578,218.777,429.308,48.013,168.032,48.013,325.414,322.046,343.859,25.123,24.357,25.123 +6966,219.280,216.316,420.552,328.611,562.096,221.796,427.347,51.116,176.028,51.116,326.431,322.238,343.889,24.256,24.219,24.256 +6967,219.311,219.604,418.289,325.021,565.165,224.742,425.317,53.826,3.641,53.826,326.747,322.684,344.157,23.670,23.752,23.670 +6968,219.342,222.956,416.529,321.698,568.007,227.584,423.525,56.509,11.255,56.509,328.078,323.004,344.854,23.383,23.797,23.383 +6969,219.374,225.603,415.040,318.300,570.100,229.597,421.680,58.973,18.435,58.973,330.315,323.185,345.813,22.164,24.033,22.164 +6970,219.405,229.480,414.331,314.578,572.394,232.785,420.380,61.348,25.266,61.348,331.451,324.248,345.238,22.672,23.192,22.672 +6971,219.436,232.616,413.687,310.794,574.027,235.090,418.673,63.610,31.827,63.610,334.492,325.529,345.626,22.320,22.237,22.320 +6972,219.467,235.194,411.976,307.801,576.461,237.786,417.782,65.937,37.614,65.937,334.160,324.609,346.875,22.115,21.699,22.115 +6973,219.499,237.877,410.952,304.368,577.949,240.351,417.103,68.088,42.879,68.088,332.973,323.528,346.233,21.826,20.780,21.826 +6974,219.532,240.375,409.985,301.204,578.982,242.500,415.888,70.201,47.534,70.201,334.128,324.226,346.676,20.587,21.330,20.587 +6975,219.565,243.513,409.105,297.451,580.845,245.345,414.885,72.420,51.470,72.420,335.768,324.530,347.894,20.831,20.368,20.831 +6976,219.597,246.221,407.626,293.581,581.862,247.998,414.100,74.650,54.246,74.650,334.262,324.094,347.689,20.364,20.516,20.364 +6977,219.628,249.043,406.802,289.451,583.232,250.605,413.528,76.931,56.976,76.931,334.376,324.268,348.185,19.725,20.290,19.725 +6978,219.659,252.367,406.373,285.596,584.030,253.551,412.656,79.330,58.707,79.330,335.902,324.149,348.688,19.441,20.224,19.441 +6979,219.689,255.662,406.410,281.386,584.775,256.498,412.199,81.787,59.761,81.787,337.023,323.772,348.722,18.968,21.082,18.968 +6980,219.719,255.662,406.410,281.386,584.775,256.498,412.199,81.787,59.761,81.787,337.023,323.772,348.722,18.968,21.082,18.968 +6981,219.749,259.095,405.288,277.289,585.254,259.713,411.521,84.336,59.943,84.336,336.712,323.487,349.239,18.504,21.133,18.504 +6982,219.782,263.008,405.157,272.887,585.446,263.325,411.177,86.987,59.613,86.987,337.007,323.125,349.062,18.711,21.250,18.711 +6983,219.816,267.000,405.000,268.071,585.653,267.000,410.827,90.000,58.711,90.000,338.000,322.959,349.653,18.000,22.464,18.000 +6984,219.849,270.758,405.317,262.973,585.840,270.519,410.857,92.468,57.179,92.468,339.202,322.593,350.291,17.940,23.331,17.940 +6985,219.883,274.820,405.523,258.820,584.777,274.348,410.652,95.262,55.054,95.262,339.327,321.874,349.629,18.055,20.601,18.055 +6986,219.914,278.956,405.782,252.702,584.848,278.187,411.187,98.097,53.001,98.097,340.120,321.411,351.038,18.943,23.712,18.943 +6987,219.946,283.565,405.921,247.660,583.782,282.480,411.420,101.155,50.332,101.155,340.472,320.614,351.683,19.014,23.825,19.014 +6988,219.978,288.814,407.036,242.621,582.351,287.401,412.438,104.657,47.203,104.657,340.263,320.028,351.429,18.918,24.513,18.918 +6989,220.009,293.254,408.114,237.000,580.500,291.588,413.278,107.879,45.000,107.879,340.957,318.905,351.810,18.789,24.749,18.789 +6990,220.040,298.191,409.104,231.873,578.140,296.221,414.180,111.209,42.166,111.209,341.376,318.578,352.267,18.771,24.907,18.771 +6991,220.070,303.524,410.850,226.181,575.275,301.175,415.909,114.916,38.884,114.916,341.099,317.366,352.255,18.975,24.809,18.975 +6992,220.101,309.020,412.964,220.735,571.989,306.368,417.815,118.664,36.027,118.664,341.655,317.613,352.711,19.351,24.850,19.351 +6993,220.132,314.268,415.352,214.846,568.213,311.159,420.216,122.583,33.311,122.583,341.595,316.732,353.141,19.051,24.976,19.051 +6994,220.164,319.899,418.541,209.645,564.102,316.349,423.314,126.642,30.493,126.642,341.396,315.062,353.295,19.502,24.817,19.502 +6995,220.196,325.388,422.437,204.379,559.234,321.617,426.788,130.914,27.266,130.914,342.226,314.024,353.742,19.900,25.039,19.900 +6996,220.227,330.647,426.696,198.912,553.072,326.587,430.693,135.448,23.962,135.448,342.284,313.234,353.678,19.445,25.384,19.445 +6997,220.258,336.361,431.533,193.678,547.047,331.484,435.597,140.194,21.431,140.194,341.730,312.168,354.427,19.462,23.741,19.462 +6998,220.288,342.691,435.906,188.888,539.632,336.037,440.582,144.904,17.199,144.904,338.422,311.582,354.688,19.482,22.426,19.482 +6999,220.318,342.691,435.906,188.888,539.632,336.037,440.582,144.904,17.199,144.904,338.422,311.582,354.688,19.482,22.426,19.482 +7000,220.348,349.086,442.240,184.015,531.937,340.414,447.261,149.931,13.614,149.931,335.512,310.933,355.555,21.180,20.858,21.180 +7001,220.379,355.753,448.150,179.850,523.086,344.042,453.492,155.477,10.349,155.477,330.791,310.457,356.534,20.669,20.034,20.669 +7002,220.410,364.000,456.000,176.116,514.906,347.116,461.628,161.565,6.044,161.565,322.552,310.289,358.147,20.239,19.585,20.239 +7003,220.442,376.364,465.212,173.617,504.861,349.865,470.645,168.414,2.545,168.414,304.958,309.628,359.057,18.424,19.114,18.424 +7004,220.473,425.467,474.083,172.460,494.211,351.622,480.874,174.746,178.995,174.746,210.949,309.110,359.262,17.810,18.927,17.810 +7005,220.504,361.585,491.481,172.470,482.129,352.202,491.217,1.614,175.307,1.614,341.062,310.173,359.835,17.711,18.616,17.711 +7006,220.534,357.324,501.946,173.627,470.375,351.523,501.030,8.973,171.908,8.973,349.252,309.147,360.999,19.651,21.049,19.651 +7007,220.565,353.386,513.703,177.177,461.744,349.856,512.652,16.571,166.608,16.571,352.688,309.074,360.053,19.370,18.483,19.370 +7008,220.597,350.158,523.595,182.207,449.638,346.969,522.059,25.710,162.058,25.710,352.659,308.714,359.738,25.962,18.991,25.962 +7009,220.628,345.156,534.452,188.829,436.626,341.777,532.255,33.024,158.703,33.024,352.649,308.648,360.710,25.489,18.255,25.489 +7010,220.659,336.233,547.630,197.516,425.156,332.861,544.506,42.825,154.772,42.825,351.599,308.754,360.793,24.865,17.927,24.865 +7011,220.689,326.463,557.329,208.492,415.487,323.800,554.000,51.340,150.430,51.340,351.859,309.467,360.386,23.738,18.086,23.738 +7012,220.720,326.463,557.329,208.492,415.487,323.800,554.000,51.340,150.430,51.340,351.859,309.467,360.386,23.738,18.086,23.738 +7013,220.750,314.269,566.581,221.032,407.346,311.989,562.556,60.467,146.853,60.467,350.502,309.807,359.756,22.936,17.702,22.936 +7014,220.783,300.835,573.731,234.890,401.010,299.042,569.017,69.174,142.630,69.174,349.589,310.639,359.677,20.753,17.270,20.753 +7015,220.815,285.611,578.299,249.630,396.272,284.456,572.929,77.861,138.389,77.861,349.073,311.006,360.059,23.117,17.591,23.117 +7016,220.848,269.555,580.231,264.812,394.277,269.224,573.882,87.021,134.215,87.021,346.468,311.911,359.184,23.916,17.279,23.916 +7017,220.880,254.665,579.244,278.409,393.221,255.450,572.082,96.254,128.811,96.254,346.188,311.889,360.597,23.517,18.599,23.517 +7018,220.912,242.053,577.226,292.771,395.688,244.451,568.942,106.144,124.725,106.144,342.466,313.323,359.715,19.135,20.311,19.135 +7019,220.942,228.375,573.026,304.952,400.529,232.705,563.844,115.253,122.106,115.253,336.756,312.600,357.059,18.652,19.449,18.652 +7020,220.973,179.000,621.500,317.576,407.139,221.903,557.146,123.690,119.316,123.690,201.079,312.125,355.767,17.750,19.022,17.750 +7021,221.003,189.353,574.785,328.500,416.000,212.482,549.632,132.600,116.565,132.600,285.454,313.497,353.793,19.841,19.677,19.841 +7022,221.034,189.425,553.140,338.736,425.884,204.839,540.639,140.959,113.776,140.959,312.865,313.549,352.558,19.839,20.926,19.839 +7023,221.064,188.174,539.136,346.211,435.743,199.451,532.167,148.287,108.034,148.287,324.555,315.557,351.069,21.392,20.720,21.392 +7024,221.096,185.648,525.189,352.454,447.490,194.180,521.377,155.924,102.724,155.924,330.606,315.351,349.295,20.378,20.988,20.378 +7025,221.127,183.186,513.900,357.405,459.324,191.246,511.449,163.086,97.684,163.086,331.424,316.151,348.272,20.259,22.361,20.259 +7026,221.158,181.601,503.080,360.830,471.899,189.630,501.733,170.475,92.663,170.475,331.269,316.495,347.553,19.883,24.137,19.883 +7027,221.188,181.601,503.080,360.830,471.899,189.630,501.733,170.475,92.663,170.475,331.269,316.495,347.553,19.883,24.137,19.883 +7028,221.218,181.040,491.498,362.121,483.516,189.017,491.179,177.709,87.634,177.709,330.576,317.514,346.543,18.026,24.112,18.026 +7029,221.249,182.094,482.167,362.119,494.745,189.467,482.686,4.024,82.569,4.024,331.362,318.304,346.145,19.219,24.273,19.219 +7030,221.281,183.868,472.987,361.249,505.838,191.055,474.300,10.359,77.800,10.359,331.570,320.222,346.182,18.786,24.171,18.786 +7031,221.313,186.506,464.535,359.259,515.574,193.485,466.563,16.199,73.009,16.199,331.196,321.201,345.730,19.115,23.377,19.115 +7032,221.344,189.712,455.267,355.879,524.948,196.719,457.895,20.556,68.199,20.556,330.173,322.181,345.140,25.983,21.355,25.983 +7033,221.374,194.188,446.304,352.245,533.378,201.095,449.877,27.350,63.566,27.350,329.682,322.899,345.234,25.911,19.598,25.911 +7034,221.406,195.971,441.382,348.476,540.534,203.837,446.102,30.964,58.717,30.964,326.876,324.148,345.223,25.382,19.213,25.382 +7035,221.436,198.580,435.172,344.635,546.811,207.510,441.527,35.433,53.973,35.433,323.613,324.818,345.534,25.337,19.336,25.337 +7036,221.467,194.692,425.487,340.484,552.441,210.042,438.877,41.100,49.464,41.100,305.163,325.184,345.902,18.134,19.597,18.134 +7037,221.498,152.250,373.750,335.810,557.693,213.626,435.126,45.000,44.615,45.000,172.534,324.616,346.131,17.678,19.058,17.678 +7038,221.530,208.744,419.550,331.179,561.377,218.838,430.459,47.222,40.365,47.222,315.057,325.958,344.781,23.302,19.315,23.302 +7039,221.562,218.386,419.847,327.295,564.283,223.519,426.599,52.757,35.910,52.757,327.861,326.072,344.824,24.590,19.997,24.590 +7040,221.593,222.556,418.319,322.489,567.809,226.621,424.310,55.840,32.276,55.840,330.665,325.202,345.144,22.608,21.404,22.608 +7041,221.623,227.003,416.095,318.038,570.501,230.331,421.668,59.158,27.440,59.158,332.518,324.329,345.500,23.046,22.290,23.046 +7042,221.653,227.003,416.095,318.038,570.501,230.331,421.668,59.158,27.440,59.158,332.518,324.329,345.500,23.046,22.290,23.046 +7043,221.683,230.451,414.080,313.347,573.181,233.619,420.093,62.216,23.273,62.216,331.615,323.803,345.207,22.127,23.568,22.127 +7044,221.714,233.705,411.330,308.911,575.255,236.795,418.008,65.171,19.134,65.171,331.274,322.683,345.989,22.323,24.101,22.323 +7045,221.747,237.223,409.814,304.531,577.387,240.037,416.775,67.983,15.124,67.983,331.137,322.405,346.153,21.920,24.265,21.920 +7046,221.778,240.400,407.919,300.042,578.772,242.981,415.223,70.537,11.226,70.537,330.937,321.238,346.430,21.211,25.173,21.211 +7047,221.810,243.661,406.560,295.941,579.978,245.941,414.041,73.051,7.058,73.051,330.971,320.874,346.612,20.634,24.829,20.634 +7048,221.841,246.787,405.335,291.536,580.804,248.755,412.905,75.426,2.961,75.426,330.879,319.762,346.522,20.053,24.726,20.053 +7049,221.872,249.981,404.038,287.512,581.362,251.680,411.984,77.935,179.506,77.935,330.004,319.126,346.253,19.685,25.284,19.685 +7050,221.903,253.047,402.992,283.566,582.308,254.501,411.445,80.238,175.323,80.238,329.482,318.798,346.636,19.191,25.044,19.191 +7051,221.934,256.131,402.086,279.291,582.517,257.259,410.611,82.467,171.798,82.467,329.422,318.635,346.620,18.820,25.199,18.820 +7052,221.965,258.747,401.684,275.345,582.643,259.578,410.233,84.447,168.140,84.447,329.073,318.180,346.252,18.745,24.868,18.745 +7053,221.996,262.778,401.275,271.436,583.268,263.238,410.028,86.987,164.476,86.987,329.334,318.014,346.863,18.658,25.373,18.658 +7054,222.026,265.688,400.481,267.462,583.287,265.838,409.634,89.061,160.959,89.061,329.005,318.201,347.314,18.243,25.037,18.243 +7055,222.057,269.145,400.038,263.546,583.110,268.926,409.524,91.322,157.426,91.322,328.351,317.841,347.328,17.949,24.153,17.949 +7056,222.087,269.145,400.038,263.546,583.110,268.926,409.524,91.322,157.426,91.322,328.351,317.841,347.328,17.949,24.153,17.949 +7057,222.118,272.565,400.186,259.500,583.000,271.999,409.515,93.468,153.435,93.468,329.154,317.522,347.847,18.209,23.702,18.209 +7058,222.150,276.219,399.175,255.518,582.365,275.162,409.571,95.807,150.642,95.807,326.890,317.798,347.790,18.279,22.498,18.279 +7059,222.183,279.694,398.569,251.620,582.073,278.182,409.722,97.722,147.804,97.722,326.201,317.902,348.713,18.962,22.284,18.962 +7060,222.215,283.340,397.911,247.193,581.268,281.193,410.151,99.951,144.293,99.951,323.982,318.056,348.836,19.129,21.620,19.129 +7061,222.247,287.235,397.924,243.054,580.069,284.499,410.465,102.308,142.125,102.308,323.410,318.021,349.082,19.576,20.348,19.576 +7062,222.280,291.545,397.936,239.389,579.366,287.958,411.517,104.797,140.301,104.797,321.282,318.173,349.374,19.373,20.222,19.373 +7063,222.311,296.119,397.319,235.197,578.022,291.445,412.276,107.354,138.604,107.354,318.617,317.846,349.958,19.507,19.521,19.507 +7064,222.342,300.937,396.560,231.323,576.808,294.876,413.342,109.855,137.451,109.855,314.981,317.836,350.666,19.177,19.187,19.177 +7065,222.372,304.991,396.308,227.657,575.206,297.707,414.257,112.087,137.090,112.087,312.215,317.770,350.956,19.204,19.683,19.204 +7066,222.403,309.533,395.702,223.696,573.588,300.522,415.373,114.613,137.291,114.613,308.398,317.322,351.672,18.020,19.444,18.020 +7067,222.440,314.881,396.251,219.893,571.817,303.995,416.960,117.728,138.366,117.728,305.620,317.317,352.410,17.703,19.184,17.703 +7068,222.472,319.000,397.000,216.454,569.444,306.991,418.016,119.745,140.471,119.745,304.381,316.899,352.791,17.613,20.076,17.613 +7069,222.503,323.022,399.272,213.209,567.432,310.088,419.834,122.171,142.716,122.171,304.453,316.619,353.037,17.748,19.330,17.748 +7070,222.533,326.614,403.002,209.731,564.846,313.592,421.811,124.695,146.310,124.695,307.690,315.902,353.443,18.594,19.415,18.594 +7071,222.566,329.849,407.435,206.415,561.963,317.269,423.934,127.326,150.579,127.326,312.455,315.071,353.952,19.572,19.163,19.572 +7072,222.598,332.280,412.101,203.159,558.853,320.401,426.221,130.073,155.772,130.073,317.034,314.567,353.939,19.702,19.014,19.702 +7073,222.628,334.862,417.047,199.977,554.927,324.015,428.736,132.859,162.172,132.859,321.852,313.761,353.745,20.162,19.556,20.162 +7074,222.659,336.852,421.427,196.957,551.329,326.893,431.130,135.744,168.518,135.744,326.086,313.198,353.894,19.357,19.339,19.357 +7075,222.689,340.327,425.589,193.652,547.786,330.158,434.487,138.814,175.121,138.814,327.653,312.425,354.678,19.943,19.223,19.943 +7076,222.719,340.327,425.589,193.652,547.786,330.158,434.487,138.814,175.121,138.814,327.653,312.425,354.678,19.943,19.223,19.943 +7077,222.749,342.512,431.104,190.998,543.542,333.672,437.936,142.306,2.420,142.306,332.591,310.779,354.937,19.854,19.743,19.854 +7078,222.783,344.087,435.571,187.708,538.851,336.142,441.065,145.333,10.244,145.333,336.090,311.164,355.408,19.931,21.460,19.931 +7079,222.816,346.557,441.246,184.849,533.428,339.512,445.511,148.810,19.385,148.810,339.205,310.629,355.676,21.544,23.373,21.544 +7080,222.850,348.284,447.515,182.074,527.888,342.556,450.440,152.949,27.324,152.949,343.432,309.557,356.296,21.337,23.721,21.337 +7081,222.883,350.461,454.011,180.123,521.423,345.788,455.956,157.402,35.452,157.402,346.079,308.054,356.204,20.775,20.284,20.775 +7082,222.917,353.054,460.797,178.200,514.844,348.523,462.245,162.277,44.042,162.277,346.989,306.936,356.503,20.386,20.288,20.386 +7083,222.950,355.126,468.466,176.454,507.428,350.737,469.462,167.221,52.860,167.221,347.725,308.765,356.727,20.128,19.641,20.128 +7084,222.982,357.540,476.749,174.894,498.386,352.293,477.416,172.758,62.382,172.758,346.676,308.185,357.255,19.336,19.335,19.336 +7085,223.014,358.542,485.818,174.335,488.555,353.252,485.940,178.678,71.458,178.678,347.277,309.273,357.859,18.226,19.409,18.226 +7086,223.047,358.371,495.124,174.576,479.313,353.165,494.711,4.532,80.134,4.532,348.048,309.228,358.494,18.971,19.362,18.971 +7087,223.078,357.292,505.077,176.790,469.015,352.575,504.166,10.929,89.293,10.929,348.913,308.149,358.521,19.380,18.937,19.380 +7088,223.110,354.705,515.433,179.382,458.696,350.169,514.001,17.526,98.067,17.526,349.513,309.856,359.028,19.272,19.147,19.272 +7089,223.141,352.122,522.641,183.854,448.345,348.098,520.799,24.590,106.489,24.590,350.145,309.978,358.996,26.093,19.691,26.093 +7090,223.172,347.060,533.996,188.483,437.454,342.570,531.199,31.921,114.775,31.921,350.128,310.243,360.708,24.587,19.137,24.587 +7091,223.204,339.981,544.294,195.511,427.301,335.919,540.933,39.611,122.905,39.611,350.689,310.098,361.234,24.440,18.075,24.440 +7092,223.235,330.597,554.289,204.945,418.451,327.352,550.655,48.240,131.773,48.240,350.537,309.829,360.281,24.003,18.008,24.003 +7093,223.268,320.423,562.885,215.311,410.477,317.658,558.737,56.310,140.223,56.310,350.293,309.976,360.263,23.020,18.164,23.020 +7094,223.299,308.137,570.235,226.925,403.689,305.934,565.639,64.382,148.304,64.382,350.187,309.941,360.381,21.655,17.931,21.655 +7095,223.330,295.327,574.766,239.774,399.330,294.027,570.647,72.485,155.758,72.485,350.768,310.190,359.405,20.578,16.541,20.578 +7096,223.361,281.311,578.365,252.986,395.592,280.494,573.463,80.538,164.659,80.538,350.005,310.134,359.945,22.851,18.238,22.851 +7097,223.390,266.961,579.074,266.729,394.123,266.862,573.671,88.951,171.955,88.951,348.235,310.276,359.042,21.923,18.131,21.923 +7098,223.421,266.961,579.074,266.729,394.123,266.862,573.671,88.951,171.955,88.951,348.235,310.276,359.042,21.923,18.131,21.923 +7099,223.451,256.337,578.695,280.491,395.183,257.124,573.292,98.280,0.188,98.280,348.316,311.015,359.236,22.904,17.375,22.904 +7100,223.483,242.429,574.919,293.742,398.381,243.837,570.121,106.354,7.820,106.354,347.684,311.531,357.686,19.272,18.011,19.272 +7101,223.515,230.755,569.432,306.226,403.251,232.788,564.977,114.533,15.709,114.533,345.444,311.809,355.237,19.912,17.568,19.912 +7102,223.549,220.069,562.904,317.783,409.237,222.690,558.809,122.627,23.962,122.627,344.759,312.930,354.482,19.241,18.073,19.241 +7103,223.581,211.152,555.203,328.411,416.255,214.278,551.544,130.506,31.827,130.506,344.370,313.224,353.995,19.710,19.512,19.710 +7104,223.613,203.296,546.886,338.590,423.392,207.757,542.880,138.066,39.668,138.066,342.367,314.343,354.359,19.846,23.919,19.846 +7105,223.644,196.531,537.771,345.794,433.160,201.345,534.458,145.467,46.948,145.467,341.153,315.668,352.842,19.310,24.595,19.310 +7106,223.675,191.681,529.346,351.887,443.039,197.010,526.560,152.399,55.265,152.399,339.867,316.293,351.895,21.325,24.139,21.325 +7107,223.705,187.590,519.525,356.432,453.763,193.177,517.361,158.832,62.758,158.832,338.431,316.716,350.412,20.936,24.120,20.936 +7108,223.735,184.399,510.622,359.758,463.910,191.113,508.837,165.114,70.665,165.114,335.158,317.281,349.052,19.977,24.467,19.977 +7109,223.766,182.402,501.367,361.633,473.880,189.522,500.268,171.225,78.486,171.225,333.838,317.716,348.245,19.156,24.624,19.156 +7110,223.799,181.443,492.353,362.276,483.236,189.081,491.971,177.138,85.996,177.138,331.536,317.693,346.831,18.027,23.981,18.027 +7111,223.831,181.396,484.480,362.182,491.695,189.487,484.820,2.411,93.504,2.411,329.466,318.241,345.663,18.825,24.240,18.825 +7112,223.862,181.750,476.870,361.549,500.402,190.102,477.987,7.615,101.094,7.615,328.956,319.485,345.809,18.509,25.052,18.509 +7113,223.893,182.807,469.886,360.425,507.990,191.541,471.784,12.255,108.970,12.255,327.566,319.760,345.442,18.948,25.149,18.948 +7114,223.923,184.463,463.289,358.789,514.905,193.252,465.926,16.699,116.732,16.699,326.906,320.213,345.258,19.444,25.522,19.444 +7115,223.953,184.463,463.289,358.789,514.905,193.252,465.926,16.699,116.732,16.699,326.906,320.213,345.258,19.444,25.522,19.444 +7116,223.982,186.470,456.870,356.302,521.901,195.226,460.256,21.143,124.673,21.143,326.160,321.793,344.935,19.524,25.167,19.524 +7117,224.015,189.577,449.701,354.736,527.100,198.625,453.722,23.962,132.672,23.962,325.114,320.888,344.915,25.993,25.573,25.993 +7118,224.047,192.398,444.379,352.285,532.060,201.241,449.095,28.072,140.528,28.072,324.588,321.486,344.632,25.471,25.156,25.471 +7119,224.079,194.090,441.492,350.045,536.514,202.793,446.586,30.343,148.431,30.343,324.851,321.598,345.020,25.343,25.150,25.343 +7120,224.110,197.462,437.308,347.662,540.370,205.738,442.825,33.690,156.410,33.690,324.500,322.372,344.393,25.516,24.556,25.516 +7121,224.142,198.919,435.514,345.436,544.059,207.165,441.404,35.538,164.386,35.538,324.098,322.515,344.366,25.109,24.069,25.109 +7122,224.173,201.112,432.642,343.463,546.972,209.107,438.861,37.875,172.405,37.875,324.599,322.876,344.856,25.435,23.327,25.435 +7123,224.205,204.003,429.997,341.485,549.822,211.744,436.669,40.757,0.486,40.757,323.859,323.056,344.298,24.942,22.330,24.942 +7124,224.236,204.921,428.652,339.701,551.975,212.652,435.524,41.634,8.623,41.634,323.960,323.580,344.648,25.329,21.711,25.329 +7125,224.267,206.696,425.817,338.441,553.837,214.648,433.426,43.738,16.938,43.738,323.365,324.103,345.377,24.821,21.033,24.821 +7126,224.298,207.970,425.023,336.861,555.072,215.435,432.539,45.193,25.067,45.193,323.829,325.200,345.015,24.665,20.644,24.665 +7127,224.329,208.500,424.500,335.432,557.127,216.140,432.140,45.000,33.299,45.000,323.855,325.877,345.463,24.042,19.617,24.042 +7128,224.359,201.500,416.500,333.775,559.047,216.956,431.956,45.000,41.276,45.000,301.227,325.960,344.943,21.213,18.889,21.213 +7129,224.389,201.500,416.500,333.775,559.047,216.956,431.956,45.000,41.276,45.000,301.227,325.960,344.943,21.213,18.889,21.213 +7130,224.418,180.350,394.804,332.836,560.215,215.800,432.751,46.948,49.764,46.948,242.220,325.320,346.078,17.740,18.732,17.740 +7131,224.450,203.431,418.725,332.153,560.789,216.285,432.703,47.400,58.339,47.400,307.444,325.005,345.424,17.979,18.896,17.979 +7132,224.483,208.900,419.962,331.266,561.171,218.516,430.440,47.459,66.750,47.459,316.665,324.592,345.108,24.332,19.070,24.332 +7133,224.520,210.615,422.236,330.610,560.840,218.119,430.358,47.265,75.315,47.265,322.237,324.117,344.353,24.326,19.100,24.326 +7134,224.562,210.337,423.858,331.558,559.042,217.055,430.893,46.320,92.291,46.320,324.062,322.422,343.516,24.270,21.343,24.270 +7135,224.593,208.750,425.250,332.674,557.728,215.351,431.851,45.000,100.989,45.000,325.269,322.053,343.938,24.749,22.664,24.749 +7136,224.623,208.619,425.831,333.858,556.340,214.964,432.098,44.648,109.604,44.648,325.957,322.008,343.794,24.779,23.577,24.779 +7137,224.654,208.619,425.831,333.858,556.340,214.964,432.098,44.648,109.604,44.648,325.957,322.008,343.794,24.779,23.577,24.779 +7138,224.688,207.167,427.577,335.646,554.343,213.862,433.884,43.290,117.979,43.290,324.090,321.289,342.487,24.158,24.534,24.158 +7139,224.718,204.176,429.828,337.694,551.887,211.150,435.859,40.855,126.617,40.855,324.786,320.593,343.227,24.735,25.029,24.735 +7140,224.748,202.868,431.052,339.878,549.378,210.189,437.055,39.352,135.200,39.352,324.077,320.325,343.012,25.332,25.121,25.332 +7141,224.782,200.687,433.574,342.728,546.630,208.417,439.424,37.117,143.649,37.117,324.200,320.412,343.587,25.603,25.750,25.603 +7142,224.813,198.786,435.598,345.414,543.213,206.834,441.316,35.395,151.928,35.395,324.227,320.882,343.973,24.992,25.235,24.992 +7143,224.844,195.912,438.853,348.255,539.953,204.598,444.380,32.471,160.017,32.471,324.426,321.751,345.018,25.617,24.691,25.617 +7144,224.876,192.931,441.746,351.216,536.008,202.868,447.425,29.745,167.885,29.745,322.614,322.118,345.505,25.427,23.921,25.427 +7145,224.907,188.800,444.900,353.694,531.392,200.756,450.878,26.565,175.373,26.565,318.863,322.535,345.597,25.938,22.165,25.938 +7146,224.938,182.323,450.486,356.445,525.810,197.462,457.380,24.482,2.386,24.482,312.826,323.344,346.095,21.257,20.066,21.257 +7147,224.968,170.042,452.125,358.979,520.151,195.822,461.534,20.050,8.083,20.050,291.842,323.851,346.729,18.376,19.907,18.376 +7148,224.999,112.039,441.493,361.024,514.972,194.527,465.934,16.504,13.581,16.504,175.069,324.508,347.135,17.542,19.878,17.542 +7149,225.030,174.459,467.322,362.007,508.417,192.448,471.449,12.922,19.195,12.922,310.149,326.015,347.063,18.253,20.329,18.253 +7150,225.059,181.197,475.339,363.979,502.046,191.584,476.893,8.507,23.962,8.507,327.435,324.099,348.439,18.643,22.642,18.643 +7151,225.090,181.197,475.339,363.979,502.046,191.584,476.893,8.507,23.962,8.507,327.435,324.099,348.439,18.643,22.642,18.643 +7152,225.119,181.592,483.337,364.361,495.261,190.641,483.837,3.162,30.700,3.162,330.044,323.977,348.170,18.966,20.825,18.966 +7153,225.150,182.380,490.430,363.789,486.573,189.804,490.212,178.315,37.600,178.315,333.179,323.507,348.033,18.227,21.947,18.227 +7154,225.183,183.323,499.695,362.651,476.995,189.734,498.825,172.271,43.264,172.271,335.623,323.235,348.564,19.146,21.460,19.146 +7155,225.215,184.869,508.971,361.357,466.873,191.172,507.409,166.083,50.301,166.083,336.891,320.597,349.878,20.152,23.619,20.152 +7156,225.247,187.269,518.374,357.737,456.863,192.990,516.260,159.727,56.793,159.727,338.046,318.433,350.245,20.781,24.112,20.781 +7157,225.279,190.728,527.950,353.000,446.500,196.206,525.171,153.104,63.435,153.104,338.558,316.627,350.843,20.939,24.597,20.939 +7158,225.310,194.460,537.212,351.058,447.980,199.027,534.198,146.583,70.821,146.583,337.816,290.330,348.762,19.447,23.695,19.447 +7159,225.341,199.816,546.964,344.287,445.046,202.667,544.551,139.764,77.845,139.764,337.299,274.836,344.770,19.672,24.785,19.672 +7160,225.371,206.133,557.524,332.755,437.062,208.640,554.749,132.109,85.236,132.109,333.586,272.804,341.066,19.874,22.754,19.874 +7161,225.401,213.175,569.479,319.643,427.918,217.145,563.639,124.216,93.453,124.216,325.611,274.828,339.734,19.879,19.912,19.879 +7162,225.433,219.700,585.600,306.265,415.776,228.071,568.858,116.565,100.271,116.565,306.341,285.320,343.779,19.677,18.722,19.677 +7163,225.466,216.959,641.970,295.385,396.323,241.348,567.540,108.143,106.046,108.143,202.415,311.411,359.062,18.168,20.471,18.168 +7164,225.499,252.759,581.181,282.449,393.558,254.481,571.784,100.389,112.834,100.389,341.590,312.871,360.696,22.180,20.664,22.180 +7165,225.532,263.257,580.466,270.138,393.008,263.404,573.020,91.131,119.745,91.131,345.327,312.692,360.221,22.213,20.590,22.213 +7166,225.563,276.334,580.266,256.222,393.420,275.493,573.409,83.006,126.717,83.006,348.174,312.798,361.991,23.475,19.242,23.475 +7167,225.593,290.718,576.812,243.168,396.205,289.211,571.046,75.353,133.721,75.353,349.685,312.684,361.605,21.582,19.156,21.582 +7168,225.623,304.489,571.901,230.182,400.998,302.310,566.723,67.176,140.765,67.176,350.222,312.679,361.456,21.594,19.371,21.594 +7169,225.653,304.489,571.901,230.182,400.998,302.310,566.723,67.176,140.765,67.176,350.222,312.679,361.456,21.594,19.371,21.594 +7170,225.683,315.523,565.816,218.331,407.526,312.877,561.357,59.315,147.834,59.315,350.713,312.044,361.082,22.293,19.893,22.293 +7171,225.714,326.098,557.622,207.783,415.692,323.346,554.183,51.340,154.516,51.340,351.859,311.399,360.669,23.426,18.324,23.426 +7172,225.746,334.618,548.698,198.200,424.600,331.801,546.001,43.755,161.565,43.755,353.116,310.536,360.917,24.128,17.709,24.128 +7173,225.778,342.550,538.753,190.128,433.658,339.062,536.213,36.067,168.959,36.067,352.900,309.481,361.529,25.586,17.619,25.586 +7174,225.810,348.000,529.000,184.166,444.986,344.664,527.147,29.055,175.236,29.055,352.771,308.763,360.403,25.059,19.267,25.059 +7175,225.841,354.115,519.858,179.385,451.665,348.009,517.347,22.357,3.965,22.357,348.662,307.372,361.866,25.724,20.831,25.724 +7176,225.872,363.214,515.512,177.607,460.300,350.326,511.815,16.006,9.319,16.006,333.640,307.082,360.455,19.125,20.364,19.125 +7177,225.903,399.167,511.509,174.222,470.874,351.560,502.712,10.469,15.376,10.469,263.517,305.918,360.342,18.021,20.128,18.021 +7178,225.933,367.136,496.007,174.014,479.227,352.907,494.858,4.618,21.991,4.618,330.589,305.116,359.140,18.908,20.453,18.908 +7179,225.965,360.069,486.787,174.060,487.609,353.075,486.887,179.176,29.279,179.176,344.022,305.100,358.012,18.451,20.657,18.451 +7180,225.996,357.937,478.656,174.428,496.932,352.452,479.233,174.003,37.036,174.003,346.769,305.811,357.798,19.473,20.798,19.473 +7181,226.026,356.096,471.065,175.670,505.319,351.102,472.036,168.996,44.799,168.996,346.947,306.868,357.121,20.450,19.883,20.450 +7182,226.056,356.096,471.065,175.670,505.319,351.102,472.036,168.996,44.799,168.996,346.947,306.868,357.121,20.450,19.883,20.450 +7183,226.085,353.946,464.404,178.149,513.018,349.860,465.539,164.476,53.386,164.476,347.830,308.598,356.310,20.127,19.660,20.127 +7184,226.117,351.991,457.975,179.285,519.385,347.314,459.667,160.110,61.677,160.110,346.699,311.553,356.645,21.208,18.852,21.208 +7185,226.150,349.093,452.573,181.331,525.655,344.735,454.486,156.307,70.062,156.307,346.939,312.267,356.459,20.884,18.755,20.884 +7186,226.183,346.048,448.159,183.202,531.457,341.899,450.304,152.657,78.064,152.657,347.139,313.599,356.481,21.258,19.122,21.258 +7187,226.215,343.521,444.821,185.164,536.456,339.597,447.110,149.744,86.186,149.744,347.743,314.236,356.829,19.939,18.625,19.939 +7188,226.248,340.009,441.230,187.011,540.646,336.830,443.317,146.701,94.145,146.701,349.706,316.200,357.311,19.748,18.733,19.748 +7189,226.279,337.634,438.404,188.793,544.381,334.415,440.717,144.293,102.005,144.293,349.573,317.364,357.500,19.209,18.697,19.209 +7190,226.310,335.079,435.563,190.274,547.141,331.980,438.006,141.746,109.872,141.746,349.807,317.567,357.698,20.039,18.877,20.039 +7191,226.341,333.584,433.236,192.548,549.577,330.352,435.971,139.764,117.741,139.764,348.691,317.966,357.160,18.967,20.442,18.967 +7192,226.372,332.824,430.590,193.768,550.836,328.696,434.318,137.916,125.230,137.916,345.341,317.562,356.464,19.247,19.175,19.247 +7193,226.402,335.249,425.131,194.921,552.045,327.176,432.802,136.460,133.238,136.460,333.754,316.895,356.026,18.867,18.561,18.867 +7194,226.433,381.777,376.807,196.405,553.505,325.460,431.039,136.081,141.216,136.081,199.449,315.478,355.816,17.128,19.279,17.128 +7195,226.465,352.750,401.250,197.667,554.242,324.356,429.644,135.000,148.707,135.000,275.065,314.715,355.374,16.971,19.034,16.971 +7196,226.496,340.277,413.674,198.522,554.349,324.854,429.690,133.919,156.477,133.919,310.378,314.237,354.847,19.742,19.115,19.742 +7197,226.526,334.995,418.306,199.659,554.550,324.785,429.098,133.409,163.909,133.409,324.535,313.598,354.248,20.361,19.420,20.361 +7198,226.557,332.443,420.226,200.355,555.038,324.223,428.924,133.379,171.439,133.379,329.540,313.000,353.476,19.944,20.086,19.944 +7199,226.588,332.443,420.226,200.355,555.038,324.223,428.924,133.379,171.439,133.379,329.540,313.000,353.476,19.944,20.086,19.944 +7200,226.617,331.202,421.521,200.511,555.505,324.141,429.004,133.336,178.794,133.336,333.133,313.141,353.709,19.814,20.753,19.814 +7201,226.648,330.286,422.673,200.858,554.908,324.643,428.608,133.556,5.763,133.556,337.272,312.349,353.650,18.973,22.062,18.973 +7202,226.681,330.234,424.165,200.144,554.906,325.095,429.437,134.269,13.614,134.269,339.402,312.641,354.127,19.496,23.926,19.496 +7203,226.711,330.500,426.000,199.398,553.627,326.193,430.307,135.000,20.298,135.000,341.533,313.414,353.715,19.092,25.285,19.092 +7204,226.743,330.982,427.568,198.578,553.002,327.090,431.330,135.971,28.355,135.971,343.101,313.106,353.928,19.533,24.934,19.533 +7205,226.776,332.375,429.108,196.554,551.970,328.193,432.976,137.237,34.563,137.237,343.486,313.701,354.878,19.723,24.065,19.723 +7206,226.807,334.248,430.783,194.884,550.632,329.740,434.728,138.814,41.356,138.814,343.645,313.738,355.625,20.131,24.303,20.131 +7207,226.838,336.039,432.657,194.601,547.087,332.284,435.741,140.612,48.563,140.612,344.415,313.829,354.134,19.566,20.164,19.566 +7208,226.868,337.856,435.467,192.741,544.733,334.268,438.201,142.696,55.430,142.696,345.255,313.957,354.277,19.962,20.150,19.962 +7209,226.900,339.965,438.233,190.360,542.540,336.127,440.911,145.098,61.834,145.098,346.036,315.412,355.396,19.454,20.145,19.454 +7210,226.931,342.548,442.287,187.654,538.477,338.752,444.696,147.600,68.916,147.600,346.662,314.395,355.653,21.563,19.156,21.563 +7211,226.962,344.582,445.264,184.840,534.646,340.601,447.524,150.422,75.651,150.422,347.780,314.568,356.935,20.355,19.061,20.355 +7212,226.992,346.263,449.038,182.343,529.965,342.424,450.974,153.239,82.070,153.239,348.405,314.510,357.004,21.414,19.001,21.414 +7213,227.023,348.901,453.918,179.720,523.995,344.910,455.617,156.944,88.716,156.944,348.876,314.168,357.550,20.653,18.663,20.653 +7214,227.053,348.901,453.918,179.720,523.995,344.910,455.617,156.944,88.716,156.944,348.876,314.168,357.550,20.653,18.663,20.653 +7215,227.084,350.828,459.544,177.295,518.254,347.064,460.837,161.030,95.194,161.030,350.466,313.887,358.426,20.125,18.741,20.125 +7216,227.117,353.032,465.735,175.124,511.532,348.971,466.811,165.160,101.470,165.160,350.603,314.377,359.005,20.242,19.345,20.242 +7217,227.150,354.644,472.492,173.384,503.962,350.502,473.227,169.946,108.034,169.946,351.112,314.009,359.526,19.630,19.415,19.630 +7218,227.182,355.843,480.179,172.412,495.687,351.850,480.523,175.079,114.396,175.079,352.141,313.248,360.156,18.897,19.436,18.897 +7219,227.215,356.531,488.605,172.553,486.943,352.292,488.578,0.365,121.278,0.365,351.012,312.486,359.491,18.184,18.635,18.184 +7220,227.246,356.646,497.089,173.407,477.715,352.568,496.666,5.921,127.304,5.921,352.119,311.847,360.319,19.142,20.378,19.142 +7221,227.278,355.630,506.902,175.515,468.459,351.481,506.000,12.254,134.353,12.254,351.360,311.203,359.851,19.544,19.123,19.544 +7222,227.308,354.153,513.015,178.307,458.255,350.433,511.783,18.311,140.064,18.311,352.617,310.483,360.455,25.612,21.862,25.612 +7223,227.339,350.484,522.814,182.017,447.785,346.864,521.128,24.974,146.423,24.974,352.815,309.811,360.801,25.730,20.768,25.730 +7224,227.369,346.051,533.219,187.479,437.373,342.262,530.851,32.005,152.755,32.005,352.661,309.067,361.597,25.122,19.042,25.122 +7225,227.401,339.656,543.147,195.211,429.077,336.634,540.672,39.319,158.515,39.319,352.428,308.672,360.240,25.331,17.917,25.331 +7226,227.434,330.792,553.371,203.672,420.341,328.133,550.446,47.726,164.896,47.726,352.077,308.107,359.983,24.082,17.759,24.082 +7227,227.466,320.880,561.492,213.163,412.017,318.577,558.138,55.521,171.649,55.521,352.119,308.011,360.255,23.419,17.909,23.419 +7228,227.497,309.785,568.866,224.583,405.255,307.800,564.879,63.529,178.264,63.529,351.055,307.253,359.964,22.294,17.810,22.294 +7229,227.528,297.195,573.733,236.721,400.999,296.016,570.267,71.218,4.557,71.218,351.367,307.337,358.690,20.303,17.741,20.303 +7230,227.558,283.566,577.493,249.272,396.604,282.714,573.188,78.813,11.659,78.813,350.657,307.925,359.433,23.350,18.142,23.350 +7231,227.589,283.566,577.493,249.272,396.604,282.714,573.188,78.813,11.659,78.813,350.657,307.925,359.433,23.350,18.142,23.350 +7232,227.620,272.778,578.457,262.650,395.050,272.629,574.083,88.056,18.435,88.056,349.783,308.006,358.536,23.190,18.025,23.190 +7233,227.651,255.982,577.844,276.396,395.804,256.405,573.571,95.648,24.842,95.648,349.154,308.287,357.743,23.184,18.334,23.184 +7234,227.682,244.062,575.179,291.343,397.156,245.365,570.262,104.834,32.106,104.834,348.042,308.348,358.215,20.075,20.363,20.075 +7235,227.713,231.919,569.938,305.235,399.601,234.392,564.298,113.679,39.289,113.679,346.248,310.568,358.565,19.326,24.696,19.326 +7236,227.745,221.051,563.719,317.907,407.147,224.123,558.804,122.005,45.651,122.005,345.029,309.661,356.622,19.928,24.394,19.928 +7237,227.777,211.001,556.043,328.679,414.854,214.994,551.329,130.274,52.927,130.274,342.877,311.434,355.232,19.457,24.734,19.457 +7238,227.809,202.507,547.247,338.279,424.930,207.092,543.151,138.225,59.162,138.225,340.892,310.244,353.189,19.937,25.515,19.937 +7239,227.840,195.586,537.580,346.086,435.175,200.727,534.098,145.896,67.046,145.896,339.232,311.323,351.652,19.507,24.635,19.507 +7240,227.871,189.848,528.165,352.284,445.354,196.071,525.027,153.238,73.757,153.238,336.774,312.920,350.712,20.071,24.690,20.071 +7241,227.903,185.653,518.183,356.329,456.259,192.387,515.745,160.093,81.193,160.093,334.476,314.000,348.800,20.523,23.620,20.523 +7242,227.934,182.489,508.665,359.780,465.976,190.322,506.805,166.640,88.210,166.640,332.513,316.346,348.614,20.249,24.363,20.249 +7243,227.965,180.816,498.642,361.902,476.082,189.459,497.607,173.171,95.194,173.171,330.150,317.056,347.558,19.305,24.807,19.305 +7244,227.996,180.000,488.000,362.502,486.392,189.251,488.000,0.000,102.265,0.000,328.000,318.347,346.502,18.000,24.854,18.000 +7245,228.026,180.729,480.506,362.500,496.024,190.040,481.344,5.143,109.250,5.143,327.466,319.118,346.163,19.182,25.655,19.182 +7246,228.055,180.729,480.506,362.500,496.024,190.040,481.344,5.143,109.250,5.143,327.466,319.118,346.163,19.182,25.655,19.182 +7247,228.086,181.815,472.133,361.311,504.908,191.285,473.918,10.674,116.075,10.674,326.374,319.784,345.648,18.800,25.437,18.800 +7248,228.117,183.531,464.673,359.233,513.493,192.957,467.316,15.665,123.465,15.665,325.558,321.189,345.137,19.339,25.677,19.339 +7249,228.151,186.119,456.995,357.039,520.954,195.377,460.543,20.969,130.083,20.969,325.318,321.224,345.148,19.531,25.362,19.531 +7250,228.183,189.193,450.060,354.460,527.524,198.398,454.102,23.703,136.837,23.703,324.719,321.315,344.824,26.174,25.509,26.174 +7251,228.216,193.313,442.558,351.553,533.743,202.153,447.541,29.407,143.366,29.407,324.655,321.602,344.951,25.438,25.350,25.438 +7252,228.248,196.602,438.077,348.287,539.355,205.126,443.640,33.130,149.865,33.130,324.043,321.896,344.400,25.017,25.152,25.017 +7253,228.279,199.126,435.129,345.111,544.116,207.269,440.975,35.676,156.233,35.676,324.200,322.374,344.250,25.349,24.668,25.349 +7254,228.310,202.527,431.966,341.875,548.688,210.204,438.151,38.853,162.499,38.853,324.048,322.561,343.764,25.461,24.659,25.461 +7255,228.340,206.365,427.145,338.618,552.538,213.585,433.859,42.923,168.495,42.923,325.041,322.615,344.760,24.861,24.212,24.861 +7256,228.371,209.766,424.727,335.420,556.179,216.349,431.495,45.792,174.408,45.792,325.916,322.591,344.798,24.808,24.227,24.808 +7257,228.400,212.529,422.974,332.000,559.500,218.656,429.821,48.180,0.000,48.180,326.063,322.000,344.439,23.573,23.000,23.573 +7258,228.431,215.895,420.997,329.490,562.101,221.398,427.692,50.583,5.560,50.583,327.610,322.978,344.942,24.012,23.588,24.012 +7259,228.462,218.383,418.966,326.543,564.414,223.576,425.844,52.943,10.713,52.943,328.028,323.239,345.265,23.648,22.971,23.648 +7260,228.492,221.058,417.660,323.695,566.872,226.030,424.757,54.983,15.668,54.983,327.532,323.515,344.862,23.698,23.731,23.698 +7261,228.522,223.316,416.769,321.293,568.198,227.503,423.218,57.008,20.050,57.008,329.965,323.466,345.344,22.694,23.060,22.694 +7262,228.554,223.316,416.769,321.293,568.198,227.503,423.218,57.008,20.050,57.008,329.965,323.466,345.344,22.694,23.060,22.694 +7263,228.584,226.245,415.958,318.382,569.981,229.752,421.740,58.756,24.246,58.756,331.899,324.417,345.424,23.158,23.052,23.158 +7264,228.616,228.529,415.268,315.865,571.253,231.694,420.842,60.408,28.120,60.408,331.893,324.946,344.714,22.813,22.478,22.813 +7265,228.648,230.611,414.503,313.568,573.069,233.478,419.900,62.021,31.379,62.021,333.459,324.817,345.681,22.575,23.046,22.575 +7266,228.679,232.499,413.497,310.906,574.145,235.208,418.953,63.593,33.764,63.593,333.148,325.606,345.331,22.317,21.829,22.317 +7267,228.709,233.931,412.687,308.572,575.280,236.334,417.887,65.204,35.948,65.204,334.900,325.341,346.357,21.320,21.995,21.320 +7268,228.740,235.877,412.275,306.300,576.648,238.222,417.723,66.710,37.418,66.710,333.920,325.172,345.783,21.223,22.042,21.223 +7269,228.771,237.718,411.508,304.238,577.799,239.971,417.158,68.261,38.302,68.261,333.874,324.404,346.040,21.111,21.593,21.111 +7270,228.801,239.728,411.096,301.875,578.792,241.634,416.196,69.516,38.835,69.516,335.902,324.373,346.792,20.884,22.320,20.884 +7271,228.833,241.605,409.830,299.681,579.408,243.501,415.302,70.887,38.792,70.887,335.328,324.205,346.910,21.087,22.682,21.087 +7272,228.865,242.954,409.301,297.206,580.468,244.738,414.851,72.181,38.206,72.181,335.794,323.959,347.455,20.129,23.325,20.129 +7273,228.896,245.027,408.730,295.071,580.593,246.579,413.989,73.560,37.282,73.560,336.068,324.386,347.034,20.550,23.085,20.550 +7274,228.926,246.711,408.390,292.890,581.585,248.158,413.735,74.854,35.981,74.854,336.340,323.863,347.414,20.329,24.221,20.329 +7275,228.956,248.338,407.655,290.963,581.553,249.651,412.989,76.171,34.461,76.171,336.121,324.001,347.106,20.063,24.493,20.063 +7276,228.986,248.338,407.655,290.963,581.553,249.651,412.989,76.171,34.461,76.171,336.121,324.001,347.106,20.063,24.493,20.063 +7277,229.015,249.952,407.410,288.493,582.424,251.172,412.841,77.335,32.206,77.335,336.145,323.292,347.279,19.678,24.379,19.678 +7278,229.047,251.527,406.801,286.524,582.823,252.663,412.431,78.598,30.056,78.598,335.958,322.758,347.445,19.449,24.882,19.449 +7279,229.079,252.824,406.163,285.044,582.958,253.878,412.005,79.778,27.553,79.778,335.668,322.062,347.540,18.860,24.246,18.860 +7280,229.110,254.474,405.562,282.711,583.281,255.428,411.549,80.942,24.864,80.942,335.646,321.830,347.771,18.992,25.228,18.992 +7281,229.142,255.874,405.077,281.056,583.364,256.734,411.223,82.038,22.249,82.038,335.289,321.291,347.701,18.789,25.368,18.789 +7282,229.173,257.315,404.383,279.330,583.395,258.135,411.201,83.136,19.470,83.136,333.252,320.509,346.985,18.551,25.437,18.551 +7283,229.203,258.747,403.829,277.498,583.508,259.445,410.734,84.226,16.220,84.226,333.546,320.199,347.427,18.423,25.140,18.423 +7284,229.235,260.536,403.786,275.642,583.407,261.106,410.680,85.276,13.431,85.276,332.840,319.683,346.675,18.927,25.173,18.927 +7285,229.266,262.103,402.650,273.662,583.604,262.577,410.224,86.424,10.265,86.424,332.289,319.403,347.468,18.838,25.700,18.838 +7286,229.298,263.446,402.637,271.918,583.663,263.790,410.317,87.436,7.079,87.436,331.698,318.767,347.073,18.519,25.945,18.519 +7287,229.329,264.665,402.113,269.933,583.567,264.905,410.285,88.315,3.604,88.315,330.357,318.440,346.709,18.433,25.564,18.433 +7288,229.359,265.953,401.514,268.000,583.500,266.064,409.742,89.233,0.000,89.233,331.077,318.000,347.536,18.248,25.000,18.248 +7289,229.389,265.953,401.514,268.000,583.500,266.064,409.742,89.233,0.000,89.233,331.077,318.000,347.536,18.248,25.000,18.248 +7290,229.419,267.591,401.008,266.054,583.383,267.548,409.682,90.281,176.486,90.281,330.065,317.306,347.412,18.367,25.181,18.367 +7291,229.452,269.224,401.031,264.285,583.277,269.010,409.598,91.432,172.875,91.432,330.347,317.777,347.486,18.194,25.179,18.194 +7292,229.483,270.827,400.578,262.032,583.260,270.444,409.563,92.437,169.095,92.437,329.808,317.681,347.795,18.196,25.008,18.196 +7293,229.515,272.449,400.681,260.133,583.102,271.905,409.541,93.511,165.285,93.511,330.158,317.506,347.912,18.395,24.883,18.395 +7294,229.549,274.257,400.603,257.876,582.608,273.519,409.647,94.667,161.241,94.667,329.170,317.527,347.320,18.184,23.547,18.184 +7295,229.581,276.105,400.162,255.668,582.404,275.153,409.583,95.768,157.467,95.768,328.872,317.836,347.809,18.371,23.524,18.371 +7296,229.611,277.941,399.672,253.600,582.200,276.715,409.910,96.827,153.435,96.827,327.010,317.522,347.632,19.019,23.255,19.019 +7297,229.641,279.940,399.203,250.859,581.584,278.466,409.656,98.030,149.237,98.030,327.085,317.795,348.197,19.348,21.482,19.348 +7298,229.672,282.334,398.220,248.560,581.367,280.383,410.036,99.375,145.164,99.375,324.504,318.013,348.454,19.226,21.241,19.226 +7299,229.702,284.513,397.786,245.799,580.865,282.148,410.290,100.713,140.648,100.713,323.266,318.447,348.717,19.412,20.569,19.412 +7300,229.733,287.757,396.495,243.194,580.206,284.657,410.616,102.381,136.637,102.381,320.158,318.432,349.071,19.320,19.710,19.320 +7301,229.764,290.706,393.792,240.391,579.901,286.397,411.247,103.867,132.166,103.867,313.570,319.389,349.530,18.828,19.971,18.828 +7302,229.795,295.237,390.943,237.710,579.620,289.056,412.160,106.243,127.626,106.243,306.078,319.494,350.276,17.765,19.635,17.765 +7303,229.825,300.518,383.826,235.077,579.064,291.044,412.698,108.166,123.341,108.166,290.273,319.547,351.045,17.296,19.544,17.296 +7304,229.856,300.518,383.826,235.077,579.064,291.044,412.698,108.166,123.341,108.166,290.273,319.547,351.045,17.296,19.544,17.296 +7305,229.887,310.537,365.895,232.268,578.422,293.704,413.589,109.440,118.811,109.440,250.614,320.038,351.767,16.807,19.540,16.807 +7306,229.918,325.586,339.542,229.250,577.750,295.890,414.377,111.644,114.444,111.644,191.844,320.283,352.867,17.365,19.449,17.365 +7307,229.950,303.517,405.793,225.737,576.266,299.233,415.789,113.199,109.855,113.199,331.155,320.729,352.906,17.332,18.759,17.332 +7308,229.981,304.514,411.579,223.276,574.938,301.994,416.876,115.439,105.422,115.439,341.369,320.577,353.100,17.661,19.579,17.661 +7309,230.012,307.698,413.049,220.164,573.237,305.120,417.931,117.832,101.497,117.832,342.969,320.456,354.010,18.549,19.383,18.549 +7310,230.042,310.105,416.089,216.794,571.352,308.057,419.565,120.500,96.981,120.500,346.139,319.998,354.208,18.307,19.406,18.307 +7311,230.073,314.413,417.947,213.138,568.986,311.988,421.603,123.555,92.246,123.555,346.149,318.657,354.922,18.861,18.535,18.861 +7312,230.104,318.700,420.298,208.794,565.988,315.763,424.266,126.501,87.754,126.501,345.234,318.579,355.106,20.032,19.808,20.032 +7313,230.134,322.397,423.082,205.167,562.743,319.507,426.556,129.763,83.246,129.763,346.602,318.511,355.640,19.622,19.678,19.622 +7314,230.166,326.524,426.054,201.859,558.329,323.573,429.204,133.126,78.774,133.126,346.261,317.509,354.893,19.680,19.093,19.680 +7315,230.198,331.029,429.399,197.861,553.835,327.609,432.607,136.833,74.275,136.833,345.757,316.622,355.136,19.755,19.560,19.755 +7316,230.228,335.324,433.285,193.670,548.563,331.607,436.332,140.648,69.544,140.648,346.037,315.429,355.650,19.626,19.572,19.626 +7317,230.258,339.560,438.164,189.953,542.558,335.734,440.856,144.876,65.148,144.876,346.143,314.285,355.499,19.291,19.581,19.291 +7318,230.289,344.147,443.412,186.692,536.109,339.892,445.965,149.036,60.539,149.036,345.570,314.424,355.494,21.094,18.949,21.094 +7319,230.319,344.147,443.412,186.692,536.109,339.892,445.965,149.036,60.539,149.036,345.570,314.424,355.494,21.094,18.949,21.094 +7320,230.349,347.533,448.565,183.572,528.778,343.211,450.735,153.337,56.032,153.337,345.696,311.497,355.369,21.440,19.320,21.440 +7321,230.380,350.954,455.714,180.586,520.054,346.806,457.338,158.616,51.597,158.616,346.380,310.319,355.290,20.525,20.174,20.525 +7322,230.411,354.057,463.698,176.928,511.193,349.375,465.036,164.055,46.868,164.055,347.247,308.504,356.985,20.055,19.512,20.055 +7323,230.443,356.389,472.560,174.966,501.933,351.502,473.419,170.036,42.149,170.036,347.689,307.138,357.613,19.179,19.850,19.179 +7324,230.474,358.345,481.803,173.897,491.866,352.659,482.172,176.281,38.346,176.281,346.634,306.104,358.029,18.920,20.590,18.920 +7325,230.504,360.339,492.169,177.913,482.441,354.947,491.932,2.517,34.136,2.517,343.767,297.652,354.561,18.817,21.787,18.817 +7326,230.536,361.222,502.856,176.165,470.214,352.701,501.491,9.103,30.864,9.103,341.261,303.732,358.521,19.514,20.769,19.514 +7327,230.568,366.623,516.321,178.793,460.296,350.783,511.795,15.945,28.610,15.945,326.094,302.874,359.041,19.230,19.713,19.230 +7328,230.600,402.533,545.222,182.009,449.555,346.860,522.025,22.620,26.988,22.620,239.462,303.676,360.086,19.231,19.926,19.231 +7329,230.630,355.777,540.015,188.206,438.419,342.106,532.204,29.745,25.041,29.745,328.816,304.963,360.306,19.349,19.831,19.349 +7330,230.660,342.913,544.414,194.317,428.607,336.794,539.630,38.019,23.334,38.019,345.718,303.856,361.252,22.904,18.976,22.904 +7331,230.691,331.524,553.697,202.022,419.942,327.830,549.712,47.175,20.695,47.175,350.526,305.463,361.394,23.971,17.462,23.971 +7332,230.721,331.524,553.697,202.022,419.942,327.830,549.712,47.175,20.695,47.175,350.526,305.463,361.394,23.971,17.462,23.971 +7333,230.755,321.320,561.668,212.448,411.663,318.579,557.703,55.342,17.745,55.342,351.324,306.033,360.963,23.509,17.296,23.509 +7334,230.786,309.062,569.000,224.296,404.846,307.075,564.978,63.719,14.400,63.719,351.490,306.596,360.463,21.253,17.539,21.253 +7335,230.818,295.918,574.777,238.058,399.212,294.500,570.320,72.359,11.310,72.359,350.979,307.314,360.334,21.214,17.650,21.214 +7336,230.851,280.423,578.261,252.167,395.884,279.654,573.682,80.468,7.943,80.468,350.504,308.292,359.790,23.834,17.919,23.834 +7337,230.883,267.500,578.500,267.362,395.229,267.500,574.114,90.000,4.574,90.000,349.000,308.813,357.771,23.000,17.863,23.000 +7338,230.915,254.087,577.865,282.974,396.048,254.930,573.038,99.909,1.397,99.909,348.552,310.395,358.351,23.173,17.995,23.173 +7339,230.945,238.672,573.217,298.025,399.012,240.405,568.140,108.843,178.568,108.843,346.617,312.202,357.348,19.289,18.019,19.289 +7340,230.976,226.645,566.843,312.052,404.214,229.214,562.003,117.962,175.840,117.962,345.462,313.427,356.420,19.857,18.460,19.857 +7341,231.006,215.189,559.142,324.677,411.479,218.739,554.416,126.915,173.157,126.915,344.001,315.775,355.824,20.215,18.507,20.215 +7342,231.037,205.798,549.826,335.796,420.293,210.209,545.508,135.616,170.433,135.616,342.326,317.467,354.673,20.117,18.924,20.117 +7343,231.069,195.902,541.674,345.007,430.532,203.186,536.400,144.090,167.775,144.090,335.930,319.112,353.918,20.751,19.318,20.751 +7344,231.101,189.752,530.527,352.582,442.361,197.678,526.374,152.345,165.700,152.345,334.506,320.649,352.403,19.402,20.482,19.402 +7345,231.133,174.362,522.665,357.465,452.193,193.565,515.991,160.833,163.502,160.833,310.863,321.446,351.522,18.012,19.003,18.012 +7346,231.165,119.098,521.216,361.333,464.062,191.069,505.358,167.574,160.996,167.574,202.929,321.948,350.323,17.181,19.761,17.181 +7347,231.195,159.842,498.503,363.051,475.631,189.699,495.590,174.428,158.854,174.428,288.945,322.429,348.942,17.818,19.780,17.818 +7348,231.226,169.911,486.085,363.651,487.860,189.770,486.517,1.245,157.182,1.245,308.014,322.525,347.740,18.735,21.189,18.735 +7349,231.256,169.911,486.085,363.651,487.860,189.770,486.517,1.245,157.182,1.245,308.014,322.525,347.740,18.735,21.189,18.735 +7350,231.284,175.079,475.557,362.890,499.263,190.728,477.710,7.836,155.078,7.836,315.395,322.667,346.986,18.786,22.553,18.786 +7351,231.316,180.313,465.661,360.987,509.474,192.825,468.890,14.470,153.184,14.470,320.094,322.461,345.937,19.366,23.351,19.366 +7352,231.348,184.137,458.325,358.072,519.044,194.946,462.178,19.615,151.294,19.615,322.549,322.354,345.499,19.501,24.287,19.501 +7353,231.378,190.172,447.102,354.762,527.940,199.912,451.785,25.677,149.199,25.677,323.498,322.419,345.113,25.963,24.695,25.963 +7354,231.410,193.815,442.323,350.516,535.805,202.476,447.272,29.745,147.349,29.745,324.971,321.814,344.920,25.303,25.243,25.303 +7355,231.441,198.300,436.790,345.878,542.788,206.351,442.349,34.624,145.713,34.624,324.202,321.740,343.770,24.785,25.425,24.785 +7356,231.473,203.694,430.362,340.954,548.817,211.035,436.564,40.192,144.080,40.192,324.151,321.435,343.371,25.603,25.207,25.603 +7357,231.503,208.105,425.882,335.751,554.326,214.926,432.556,44.377,142.452,44.377,323.959,321.256,343.045,24.786,24.909,24.786 +7358,231.537,212.362,422.229,330.557,559.188,218.627,429.230,48.180,140.988,48.180,324.180,321.075,342.970,24.318,25.209,24.318 +7359,231.571,216.631,418.847,325.398,563.381,222.255,426.095,52.193,139.538,52.193,325.038,320.960,343.388,23.035,24.951,23.035 +7360,231.606,220.812,415.592,319.993,566.992,226.028,423.278,55.840,138.270,55.840,324.784,320.544,343.363,22.431,24.587,22.431 +7361,231.639,225.065,412.981,314.807,570.294,229.692,420.792,59.359,136.798,59.359,325.860,320.672,344.017,22.008,24.176,22.008 +7362,231.673,229.108,410.669,309.715,573.200,233.338,418.852,62.661,135.541,62.661,325.947,320.392,344.370,21.585,24.221,21.585 +7363,231.704,233.182,408.525,304.826,575.309,236.933,416.922,65.924,134.403,65.924,326.216,320.398,344.610,21.310,23.783,21.310 +7364,231.736,237.281,407.006,300.182,577.615,240.665,415.779,68.908,133.325,68.908,326.017,320.617,344.823,20.726,24.172,20.726 +7365,231.769,240.924,405.035,295.226,579.116,243.925,414.125,71.732,132.306,71.732,326.368,320.323,345.513,20.209,23.192,20.209 +7366,231.802,244.583,403.147,290.361,580.264,247.284,412.912,74.539,131.594,74.539,325.297,320.476,345.559,19.789,22.688,19.789 +7367,231.834,248.448,401.671,285.727,581.101,250.761,411.847,77.196,130.865,77.196,324.719,320.514,345.590,19.724,22.237,19.724 +7368,231.866,252.186,400.842,281.517,582.090,254.025,411.140,79.875,130.280,79.875,325.318,320.326,346.241,19.196,22.240,19.196 +7369,231.897,255.655,399.581,277.023,582.685,257.114,410.563,82.435,129.850,82.435,324.332,320.347,346.489,18.757,21.889,18.757 +7370,231.929,259.483,398.645,272.511,583.009,260.514,410.214,84.908,128.784,84.908,323.126,320.476,346.355,18.817,22.021,18.817 +7371,231.961,263.243,398.353,268.581,583.350,263.777,410.085,87.397,129.036,87.397,323.121,320.338,346.609,18.617,21.245,18.617 +7372,231.991,267.000,397.000,264.231,583.230,267.000,409.615,90.000,129.346,90.000,322.000,320.071,347.230,18.000,20.476,18.000 +7373,232.022,270.127,395.552,260.581,583.222,269.674,409.591,91.848,130.236,91.848,319.576,319.976,347.668,18.152,20.200,18.152 +7374,232.052,270.127,395.552,260.581,583.222,269.674,409.591,91.848,130.236,91.848,319.576,319.976,347.668,18.152,20.200,18.152 +7375,232.082,274.221,395.782,256.739,583.084,273.171,409.641,94.332,131.186,94.332,320.581,319.751,348.378,18.266,20.414,18.266 +7376,232.115,277.788,395.763,252.756,582.273,276.188,409.672,96.563,132.923,96.563,320.294,319.285,348.296,18.234,19.259,18.234 +7377,232.147,281.318,396.434,249.250,581.750,279.236,409.969,98.746,135.000,98.746,321.297,318.905,348.686,18.551,19.799,18.551 +7378,232.184,284.727,396.731,245.692,580.822,282.176,410.285,100.660,137.121,100.660,321.102,318.451,348.686,19.135,19.733,19.135 +7379,232.227,292.605,398.082,238.654,579.151,288.870,411.587,105.461,142.431,105.461,321.749,317.659,349.773,19.379,20.791,19.379 +7380,232.260,295.797,399.708,234.922,577.623,291.908,411.931,107.650,145.850,107.650,324.688,317.573,350.341,19.275,20.574,19.275 +7381,232.292,299.234,400.858,231.591,576.437,294.891,412.799,109.983,149.819,109.983,325.425,316.871,350.837,18.967,21.127,18.967 +7382,232.324,303.663,403.263,227.975,574.947,298.904,414.497,112.958,154.440,112.958,326.414,315.904,350.814,19.369,20.906,19.369 +7383,232.361,306.918,405.117,224.236,572.927,301.960,415.598,115.313,159.096,115.313,327.719,315.817,350.910,19.228,20.961,19.228 +7384,232.392,310.475,407.337,220.682,570.930,305.461,416.821,117.864,163.465,117.864,330.273,315.335,351.729,19.196,21.614,19.196 +7385,232.422,310.475,407.337,220.682,570.930,305.461,416.821,117.864,163.465,117.864,330.273,315.335,351.729,19.196,21.614,19.196 +7386,232.452,314.022,410.087,216.583,568.418,308.930,418.680,120.651,168.835,120.651,331.818,314.383,351.794,19.245,21.338,19.245 +7387,232.484,317.518,412.826,212.868,565.693,312.515,420.392,123.476,174.226,123.476,334.184,313.636,352.324,19.050,21.721,19.050 +7388,232.515,321.887,416.267,208.500,563.000,316.655,423.291,126.674,0.000,126.674,335.783,313.000,353.300,20.341,22.000,20.341 +7389,232.549,325.714,420.052,204.693,559.509,320.583,426.139,130.126,5.545,130.126,337.408,312.927,353.332,19.706,22.371,19.706 +7390,232.581,329.657,423.489,200.618,555.418,324.309,429.094,133.655,11.505,133.655,338.070,312.435,353.564,19.110,22.616,19.110 +7391,232.612,333.608,428.336,196.572,550.748,328.690,432.857,137.406,18.083,137.406,340.739,312.109,354.099,19.770,23.532,19.770 +7392,232.642,337.433,433.173,192.354,545.165,332.682,436.967,141.392,22.989,141.392,342.182,312.217,354.342,19.670,24.354,19.670 +7393,232.673,341.118,438.602,188.232,540.102,336.350,441.858,145.670,30.198,145.670,343.896,311.606,355.444,19.457,23.945,19.457 +7394,232.704,344.542,443.622,183.950,534.251,339.378,446.660,149.534,36.229,149.534,344.774,311.378,356.757,20.281,23.832,20.281 +7395,232.735,348.273,450.148,182.203,526.190,343.913,452.244,154.323,42.549,154.323,345.890,309.177,355.565,21.231,19.742,21.231 +7396,232.767,351.521,457.238,179.440,518.919,347.070,458.897,159.555,49.070,159.555,346.572,308.271,356.072,21.091,19.886,21.091 +7397,232.799,354.535,465.422,177.322,510.782,349.986,466.623,165.213,55.914,165.213,347.023,309.534,356.432,20.251,19.061,20.251 +7398,232.829,357.025,474.426,175.261,501.136,351.958,475.203,171.283,62.835,171.283,346.919,308.081,357.173,19.314,19.070,19.314 +7399,232.860,358.572,484.316,174.117,490.029,353.177,484.528,177.745,69.652,177.745,347.479,309.805,358.276,18.301,18.851,18.301 +7400,232.890,358.140,494.480,174.889,479.436,353.306,494.131,4.135,76.720,4.135,348.332,309.206,358.025,18.890,19.798,18.890 +7401,232.921,358.140,494.480,174.889,479.436,353.306,494.131,4.135,76.720,4.135,348.332,309.206,358.025,18.890,19.798,18.890 +7402,232.951,357.579,505.177,176.761,468.740,352.527,504.199,10.954,83.434,10.954,348.310,308.681,358.602,19.382,19.354,19.382 +7403,232.982,354.828,516.557,180.670,457.024,350.330,515.088,18.089,90.382,18.089,349.143,308.033,358.607,19.422,18.566,19.422 +7404,233.015,351.300,525.900,184.163,446.187,346.602,523.551,26.565,96.404,26.565,349.274,308.441,359.778,25.491,19.044,25.491 +7405,233.046,345.942,536.088,189.906,434.924,341.377,533.066,33.503,102.529,33.503,350.007,309.017,360.956,25.227,18.439,25.227 +7406,233.077,336.881,548.668,198.425,424.797,332.817,544.905,42.797,109.440,42.797,349.352,309.301,360.429,24.133,18.194,24.133 +7407,233.108,327.652,557.562,207.822,415.155,324.149,553.256,50.870,115.769,50.870,349.977,309.976,361.079,23.784,18.322,23.784 +7408,233.140,315.978,566.425,219.621,407.217,313.112,561.550,59.556,122.619,59.556,349.540,310.461,360.851,23.005,18.193,23.005 +7409,233.171,303.556,572.762,232.341,401.001,301.455,567.576,67.949,129.188,67.949,349.481,310.294,360.673,21.224,18.577,21.224 +7410,233.202,288.937,577.398,246.286,396.357,287.560,571.828,76.118,135.871,76.118,349.023,311.134,360.497,22.557,18.318,22.557 +7411,233.234,276.872,579.972,259.812,393.395,276.363,573.239,85.677,141.754,85.677,347.654,312.174,361.159,23.387,18.830,23.387 +7412,233.265,259.272,579.369,274.502,393.503,259.636,573.186,93.366,147.555,93.366,348.104,312.614,360.492,23.371,17.059,23.371 +7413,233.296,248.297,576.799,289.039,395.666,249.646,570.938,102.963,154.385,102.963,347.255,313.587,359.283,20.913,16.256,20.913 +7414,233.327,234.929,571.680,302.642,399.902,237.110,566.170,111.595,161.350,111.595,345.578,314.354,357.431,19.390,17.446,19.390 +7415,233.358,223.767,565.730,315.027,404.625,226.945,560.212,119.937,167.735,119.937,344.837,315.203,357.571,20.303,18.906,20.303 +7416,233.387,223.767,565.730,315.027,404.625,226.945,560.212,119.937,167.735,119.937,344.837,315.203,357.571,20.303,18.906,20.303 +7417,233.418,213.675,557.745,327.017,412.660,217.385,553.019,128.132,174.100,128.132,344.181,316.140,356.198,19.987,17.676,19.987 +7418,233.452,205.043,549.085,336.461,421.744,209.284,545.009,136.134,0.813,136.134,342.453,317.082,354.218,19.417,17.445,19.417 +7419,233.485,197.049,540.931,344.797,431.492,202.914,536.630,143.746,7.740,143.746,338.636,317.604,353.181,19.945,17.403,19.945 +7420,233.516,192.071,531.532,351.547,441.723,198.073,528.210,151.032,14.744,151.032,338.599,318.727,352.320,20.904,18.222,20.904 +7421,233.549,188.556,521.362,356.797,452.230,194.368,518.988,157.779,22.109,157.779,338.669,319.197,351.225,21.631,18.819,21.631 +7422,233.581,185.241,511.848,360.498,462.504,191.746,509.996,164.107,29.524,164.107,337.089,319.909,350.614,20.064,20.417,20.064 +7423,233.611,183.380,502.282,362.035,473.085,189.956,501.178,170.475,37.243,170.475,335.372,321.362,348.710,19.228,20.819,19.228 +7424,233.642,182.903,493.429,363.475,482.100,189.704,493.010,176.479,43.958,176.479,334.598,321.873,348.225,18.227,21.955,18.227 +7425,233.673,182.544,485.202,363.484,492.222,189.714,485.446,1.956,51.687,1.956,333.454,321.681,347.801,18.706,21.737,18.706 +7426,233.703,184.092,477.766,363.001,500.896,190.854,478.616,7.165,58.903,7.165,333.535,321.571,347.164,18.733,22.862,18.733 +7427,233.733,185.264,470.761,361.334,508.856,192.003,472.197,12.031,66.682,12.031,332.725,321.192,346.506,18.919,22.895,18.919 +7428,233.764,186.480,464.359,359.228,516.153,193.515,466.416,16.307,74.219,16.307,331.366,321.035,346.024,19.124,23.284,19.124 +7429,233.795,188.550,457.948,356.530,522.710,195.442,460.584,20.933,81.870,20.933,330.545,321.168,345.303,19.037,22.910,19.037 +7430,233.826,190.981,451.262,353.593,528.494,198.004,454.299,23.385,89.465,23.385,329.213,321.061,344.516,25.998,22.803,25.998 +7431,233.857,190.981,451.262,353.593,528.494,198.004,454.299,23.385,89.465,23.385,329.213,321.061,344.516,25.998,22.803,25.998 +7432,233.885,193.877,445.168,351.284,533.424,201.135,449.038,28.072,97.352,28.072,327.941,321.016,344.391,25.471,24.155,25.471 +7433,233.918,194.893,442.494,348.529,537.643,202.311,446.780,30.018,105.124,30.018,326.989,321.257,344.124,25.322,24.421,25.322 +7434,233.950,197.962,437.808,345.948,541.702,205.375,442.750,33.690,113.318,33.690,325.886,321.445,343.705,25.239,24.494,25.239 +7435,233.982,199.198,436.195,343.570,544.932,206.582,441.431,35.340,121.430,35.340,325.121,321.735,343.226,24.858,24.793,24.858 +7436,234.013,201.319,432.804,341.582,547.567,208.665,438.517,37.875,129.289,37.875,325.125,321.263,343.737,25.435,24.978,25.435 +7437,234.043,202.824,430.898,339.483,549.981,210.069,436.883,39.560,137.400,39.560,324.810,320.779,343.606,25.475,25.044,25.475 +7438,234.074,204.687,428.924,338.009,552.185,211.802,435.186,41.348,145.359,41.348,325.119,321.478,344.076,25.404,25.116,25.404 +7439,234.105,207.633,426.324,336.742,554.001,214.666,433.099,43.932,153.585,43.932,324.062,321.554,343.593,24.810,25.282,24.810 +7440,234.137,209.000,425.500,335.359,555.584,215.736,432.236,45.000,161.692,45.000,324.562,321.609,343.613,24.749,24.593,24.749 +7441,234.170,210.065,424.438,334.449,557.033,216.821,431.487,46.219,169.939,46.219,324.534,322.147,344.061,23.735,24.806,23.735 +7442,234.201,211.368,423.586,333.608,558.169,217.889,430.613,47.141,178.050,47.141,325.253,321.563,344.427,24.705,23.880,24.705 +7443,234.233,211.693,423.280,333.095,558.625,217.913,430.115,47.694,6.377,47.694,326.655,323.012,345.138,24.015,22.630,24.015 +7444,234.264,212.304,422.677,332.938,559.234,218.835,429.938,48.032,14.826,48.032,325.337,323.619,344.872,24.589,22.718,24.589 +7445,234.295,212.637,422.825,332.969,559.041,218.892,429.813,48.168,23.385,48.168,325.986,324.599,344.743,24.672,21.929,24.672 +7446,234.324,212.843,423.906,332.913,559.142,218.611,430.435,48.541,31.383,48.541,326.846,325.859,344.270,25.334,20.105,25.334 +7447,234.355,212.843,423.906,332.913,559.142,218.611,430.435,48.541,31.383,48.541,326.846,325.859,344.270,25.334,20.105,25.334 +7448,234.386,207.219,420.717,332.567,560.022,217.478,431.359,46.048,39.734,46.048,315.446,326.372,345.010,22.244,19.933,22.244 +7449,234.418,158.374,371.290,333.203,560.064,215.739,432.904,47.045,48.059,47.045,177.850,325.043,346.220,17.565,18.908,17.565 +7450,234.451,201.552,419.533,333.343,559.612,214.965,433.524,46.209,56.529,46.209,307.114,324.794,345.879,17.969,19.020,17.969 +7451,234.483,206.750,423.250,334.224,558.627,215.963,432.463,45.000,65.277,45.000,319.612,324.422,345.670,24.749,19.121,24.749 +7452,234.514,207.305,425.563,334.667,557.097,214.878,432.911,44.136,73.787,44.136,323.797,324.162,344.900,24.799,18.782,24.799 +7453,234.553,206.217,427.887,336.303,555.026,213.368,434.484,42.693,82.405,42.693,324.726,323.405,344.186,24.250,20.419,24.250 +7454,234.585,203.858,430.585,338.250,552.522,210.932,436.504,39.920,91.023,39.920,325.745,321.234,344.193,26.248,21.693,26.248 +7455,234.616,202.954,432.138,340.247,549.456,209.668,437.598,39.118,99.866,39.118,326.455,321.736,343.764,24.981,23.088,24.981 +7456,234.648,199.897,435.516,342.389,546.132,206.953,440.648,36.027,108.687,36.027,325.700,321.268,343.149,24.924,23.863,24.924 +7457,234.679,197.923,437.615,345.069,542.548,205.343,442.562,33.690,117.127,33.690,325.609,321.110,343.443,25.516,24.517,25.516 +7458,234.709,195.194,440.818,348.090,538.152,203.143,445.554,30.784,125.942,30.784,325.325,320.262,343.832,26.395,25.260,26.395 +7459,234.741,191.994,445.099,351.522,533.489,200.840,449.723,27.597,134.377,27.597,324.721,319.716,344.685,25.600,25.393,25.600 +7460,234.771,190.077,447.646,354.120,528.160,199.429,452.044,25.189,143.130,25.189,324.087,320.800,344.754,26.399,25.200,26.399 +7461,234.803,185.418,455.707,357.033,522.475,196.045,459.898,21.523,151.332,21.523,322.595,320.912,345.441,19.169,24.359,19.169 +7462,234.835,181.470,461.722,359.349,515.931,193.812,465.519,17.103,159.444,17.103,320.260,322.097,346.085,19.483,23.057,19.483 +7463,234.868,175.776,467.142,361.431,508.882,192.365,470.963,12.971,167.099,12.971,312.481,322.596,346.527,19.035,21.603,19.035 +7464,234.901,164.591,472.171,363.123,501.203,191.382,476.276,8.711,174.150,8.711,292.864,322.410,347.071,17.968,20.405,17.968 +7465,234.932,105.704,476.447,364.500,495.000,190.742,482.116,3.814,0.000,3.814,178.005,323.000,348.460,17.295,20.000,17.295 +7466,234.962,172.436,489.348,364.743,485.949,190.349,489.126,179.290,5.988,179.290,313.013,323.686,348.841,17.697,19.620,17.697 +7467,234.992,180.604,497.933,364.115,478.923,190.378,496.847,173.660,11.310,173.660,329.638,323.003,349.308,19.215,19.808,19.215 +7468,235.022,183.028,506.863,362.693,469.450,191.094,505.083,167.555,17.916,167.555,333.971,322.289,350.491,20.406,18.730,20.406 +7469,235.053,183.028,506.863,362.693,469.450,191.094,505.083,167.555,17.916,167.555,333.971,322.289,350.491,20.406,18.730,20.406 +7470,235.088,186.500,515.519,359.661,459.782,192.677,513.434,161.346,25.201,161.346,337.709,321.317,350.747,20.193,20.012,20.193 +7471,235.120,189.718,524.898,354.850,449.420,195.212,522.322,154.885,32.152,154.885,338.840,321.190,350.976,20.514,20.416,20.514 +7472,235.152,194.340,534.375,349.980,438.640,199.753,531.068,148.570,39.094,148.570,340.080,318.401,352.766,20.526,23.235,20.526 +7473,235.184,200.296,543.114,342.871,429.192,204.791,539.543,141.532,45.764,141.532,342.034,315.492,353.515,20.175,24.511,20.175 +7474,235.217,206.947,551.915,340.975,428.647,210.633,548.099,134.012,53.354,134.012,342.335,292.199,352.945,19.796,24.315,19.796 +7475,235.249,215.098,560.546,334.338,428.807,216.812,558.220,126.384,60.309,126.384,342.022,272.379,347.800,20.042,24.735,20.042 +7476,235.280,224.793,567.796,323.345,429.108,224.275,568.746,118.610,67.413,118.610,342.220,257.540,340.055,19.713,24.028,19.713 +7477,235.311,234.886,576.569,307.066,422.351,235.104,575.979,110.333,75.256,110.333,336.860,261.619,338.119,19.039,22.141,19.039 +7478,235.341,246.427,589.030,289.353,417.128,248.096,581.391,102.326,83.618,102.326,322.928,265.588,338.567,20.393,18.366,20.393 +7479,235.372,257.589,646.922,272.916,407.460,263.093,580.531,94.739,90.744,94.739,213.346,281.054,346.583,22.839,17.765,22.839 +7480,235.402,275.699,582.741,259.025,393.934,275.113,573.492,86.379,96.492,86.379,341.898,309.554,360.432,22.398,21.057,22.398 +7481,235.434,286.271,578.778,246.858,395.587,284.784,572.213,77.242,103.643,77.242,347.819,310.141,361.282,22.340,20.474,22.340 +7482,235.465,300.383,573.991,234.138,399.655,298.298,568.323,69.800,111.801,69.800,348.819,310.854,360.897,21.408,18.570,21.408 +7483,235.496,313.079,568.337,222.089,405.503,310.216,563.038,61.621,118.610,61.621,348.935,311.414,360.980,22.673,18.196,22.673 +7484,235.526,323.689,560.785,211.170,412.915,320.496,556.447,53.643,125.655,53.643,350.031,311.432,360.803,22.863,18.264,22.863 +7485,235.556,323.689,560.785,211.170,412.915,320.496,556.447,53.643,125.655,53.643,350.031,311.432,360.803,22.863,18.264,22.863 +7486,235.586,333.356,551.759,200.983,420.850,329.612,547.899,45.872,132.299,45.872,350.749,311.648,361.506,24.505,19.284,24.505 +7487,235.618,340.282,542.669,192.566,430.246,336.553,539.674,38.774,139.461,38.774,352.005,311.844,361.570,25.612,18.789,25.612 +7488,235.649,346.725,531.992,185.810,440.472,342.937,529.702,31.151,146.679,31.151,352.404,311.479,361.257,25.054,19.722,25.054 +7489,235.681,351.354,521.876,180.737,451.486,347.531,520.157,24.204,153.519,24.204,352.188,311.259,360.571,25.729,19.862,25.729 +7490,235.712,353.168,514.895,176.640,461.277,349.310,513.670,17.613,160.821,17.613,352.762,310.247,360.858,19.486,19.834,19.486 +7491,235.743,355.623,505.895,173.677,468.871,350.742,504.915,11.353,168.794,11.353,351.435,310.059,361.392,19.026,21.682,19.026 +7492,235.774,359.263,497.358,172.670,477.011,352.171,496.651,5.689,174.592,5.689,346.873,309.551,361.128,18.571,20.694,18.571 +7493,235.804,429.544,489.246,172.000,486.000,352.004,488.191,0.779,0.000,0.779,204.940,308.000,360.035,17.617,18.000,17.617 +7494,235.835,383.767,478.641,173.003,493.624,352.159,480.961,175.802,6.563,175.802,295.819,307.116,359.205,17.696,19.755,17.696 +7495,235.866,365.099,472.152,173.596,501.236,351.098,474.449,170.683,13.116,170.683,330.619,307.831,358.995,19.250,20.386,19.250 +7496,235.897,359.038,465.670,175.187,508.220,349.567,468.019,166.072,19.895,166.072,338.343,307.904,357.859,20.390,21.690,20.390 +7497,235.927,354.544,459.634,177.008,515.755,347.523,461.935,161.858,28.784,161.858,342.815,308.297,357.592,20.300,22.512,20.300 +7498,235.957,350.587,454.668,180.225,521.697,345.908,456.574,157.834,36.690,157.834,345.913,308.395,356.017,20.889,19.906,20.889 +7499,235.987,350.587,454.668,180.225,521.697,345.908,456.574,157.834,36.690,157.834,345.913,308.395,356.017,20.889,19.906,20.889 +7500,236.015,348.627,449.724,183.000,528.000,343.785,452.052,154.327,45.000,154.327,344.885,308.299,355.631,19.898,19.799,19.898 +7501,236.047,345.889,445.798,185.535,533.369,341.550,448.196,151.074,53.616,151.074,345.582,311.641,355.496,20.315,20.338,20.315 +7502,236.078,343.143,442.425,187.453,538.058,339.014,444.991,148.134,61.966,148.134,345.980,313.703,355.703,20.796,19.797,20.796 +7503,236.109,340.347,439.080,189.604,541.943,336.475,441.725,145.670,70.858,145.670,346.232,314.025,355.611,19.537,18.886,19.537 +7504,236.141,337.113,435.991,191.178,545.678,333.495,438.714,143.043,79.144,143.043,347.009,315.941,356.064,19.589,19.198,19.589 +7505,236.173,334.867,434.849,192.884,548.891,331.823,437.298,141.180,87.378,141.180,348.597,316.538,356.410,19.550,18.599,19.550 +7506,236.203,332.986,432.173,193.670,551.017,329.495,435.193,139.131,95.541,139.131,347.765,317.710,356.998,19.254,19.446,19.254 +7507,236.234,331.394,431.233,194.787,552.810,328.122,434.207,137.726,103.548,137.726,348.041,317.971,356.883,19.575,19.408,19.575 +7508,236.265,329.492,429.878,196.484,554.182,326.700,432.548,136.273,111.615,136.273,348.628,318.284,356.353,19.291,20.365,19.291 +7509,236.295,329.883,427.368,196.839,554.761,325.627,431.593,135.207,119.629,135.207,344.351,318.279,356.346,18.737,19.487,18.737 +7510,236.325,330.780,425.299,196.811,554.477,325.185,430.983,134.544,127.185,134.544,340.181,317.413,356.131,18.095,19.340,18.095 +7511,236.355,380.000,373.500,197.415,555.399,323.754,429.746,135.000,135.764,135.000,197.283,315.474,356.371,17.678,18.911,17.678 +7512,236.386,380.000,373.500,197.415,555.399,323.754,429.746,135.000,135.764,135.000,197.283,315.474,356.371,17.678,18.911,17.678 +7513,236.416,367.684,384.664,198.114,555.000,323.848,429.269,134.502,143.401,134.502,230.533,315.410,355.612,17.892,19.545,17.892 +7514,236.449,344.206,409.159,198.500,554.500,324.370,429.342,134.502,151.390,134.502,298.388,314.686,354.985,17.093,19.553,17.093 +7515,236.481,338.741,417.120,198.103,553.615,325.789,430.453,134.170,159.382,134.170,317.447,313.904,354.624,20.945,18.830,20.945 +7516,236.511,336.750,420.750,198.000,553.000,326.500,431.000,135.000,167.196,135.000,325.269,313.461,354.261,20.506,19.237,20.506 +7517,236.543,334.727,423.255,197.569,552.298,326.719,431.082,135.659,175.030,135.659,331.782,312.690,354.177,19.391,20.358,19.391 +7518,236.575,334.979,425.608,196.979,550.943,328.056,432.107,136.804,2.701,136.804,334.808,312.549,353.799,19.778,20.939,19.778 +7519,236.606,335.361,427.603,195.606,549.920,329.072,433.307,137.793,10.389,137.793,337.423,312.607,354.405,19.844,22.934,19.844 +7520,236.636,336.204,430.671,194.316,547.568,331.124,435.003,139.545,18.733,139.545,340.921,312.114,354.274,20.268,24.491,20.268 +7521,236.668,337.195,433.244,192.779,545.393,332.764,436.789,141.340,25.866,141.340,342.958,312.208,354.308,19.678,24.895,19.678 +7522,236.699,338.575,435.790,190.424,543.555,334.170,439.066,143.366,32.586,143.366,344.421,312.078,355.399,19.239,23.775,19.239 +7523,236.729,341.000,438.944,187.610,540.868,336.178,442.219,145.814,39.872,145.814,344.996,312.924,356.654,19.510,24.550,19.510 +7524,236.759,343.035,441.458,186.746,535.884,338.789,444.109,148.018,46.710,148.018,345.139,312.181,355.149,20.465,20.212,20.465 +7525,236.791,343.035,441.458,186.746,535.884,338.789,444.109,148.018,46.710,148.018,345.139,312.181,355.149,20.465,20.212,20.465 +7526,236.821,346.169,446.307,185.008,532.190,341.871,448.671,151.189,54.184,151.189,345.580,313.057,355.390,21.292,20.038,21.292 +7527,236.852,348.202,449.918,182.642,527.755,343.871,452.014,154.179,60.945,154.179,346.619,313.531,356.243,21.226,20.008,21.226 +7528,236.885,350.174,454.702,179.810,522.284,345.759,456.508,157.751,68.405,157.751,347.459,312.725,356.997,20.867,18.925,20.867 +7529,236.917,352.584,460.232,177.844,516.148,348.126,461.695,161.830,75.311,161.830,348.159,312.622,357.542,20.294,18.952,20.294 +7530,236.948,354.435,466.738,175.777,509.690,349.771,467.892,166.103,82.248,166.103,348.271,312.967,357.880,20.155,18.899,20.155 +7531,236.979,356.196,473.613,174.236,502.444,351.386,474.388,170.848,89.246,170.848,348.972,311.131,358.715,19.778,18.459,19.778 +7532,237.010,356.927,481.476,173.504,494.211,352.443,481.794,175.941,96.009,175.941,349.746,312.170,358.738,18.959,19.367,18.959 +7533,237.040,357.563,489.970,173.131,485.366,352.614,489.867,1.193,102.640,1.193,349.174,312.607,359.075,18.496,19.666,18.496 +7534,237.071,357.494,498.549,174.081,476.205,352.874,497.998,6.798,109.472,6.798,350.926,312.186,360.232,19.294,20.317,19.294 +7535,237.102,355.478,507.879,176.246,466.644,351.475,506.976,12.714,116.988,12.714,351.411,311.275,359.619,19.099,19.258,19.099 +7536,237.135,353.213,517.439,179.127,456.743,349.023,515.989,19.093,123.563,19.093,350.990,311.190,359.858,19.372,19.590,19.372 +7537,237.166,350.300,525.400,183.443,447.122,346.502,523.501,26.565,130.986,26.565,351.510,310.636,360.003,25.491,18.476,25.491 +7538,237.197,345.754,534.498,188.626,436.592,341.839,531.979,32.760,137.490,32.760,351.608,310.096,360.918,25.177,18.183,25.177 +7539,237.227,339.292,544.486,195.371,426.509,335.399,541.215,40.030,143.915,40.030,351.826,309.670,361.996,25.238,19.341,25.238 +7540,237.258,330.000,554.500,204.403,418.020,326.728,550.819,48.366,150.890,48.366,351.199,309.355,361.048,23.253,19.370,23.253 +7541,237.288,330.000,554.500,204.403,418.020,326.728,550.819,48.366,150.890,48.366,351.199,309.355,361.048,23.253,19.370,23.253 +7542,237.319,319.904,562.712,214.408,410.911,317.402,558.982,56.160,157.574,56.160,351.701,309.005,360.684,22.549,18.399,22.549 +7543,237.350,308.898,569.349,225.410,404.034,306.788,565.005,64.093,165.033,64.093,351.039,308.809,360.699,22.334,18.642,22.334 +7544,237.381,296.675,574.282,237.430,400.010,295.351,570.296,71.631,171.870,71.631,351.324,308.864,359.724,20.165,17.961,20.165 +7545,237.413,284.540,577.580,250.071,396.642,283.779,573.411,79.658,179.212,79.658,351.423,308.095,359.899,22.899,17.517,22.899 +7546,237.444,272.446,578.942,263.580,395.068,272.299,574.064,88.277,6.710,88.277,348.594,308.928,358.354,23.170,17.994,23.170 +7547,237.475,255.851,578.238,277.059,395.765,256.330,573.514,95.787,14.036,95.787,348.371,309.475,357.867,22.795,17.948,22.795 +7548,237.510,244.020,575.304,290.791,398.292,245.202,570.861,104.899,21.595,104.899,347.782,309.916,356.977,19.966,18.170,19.966 +7549,237.555,231.830,570.175,304.439,401.997,233.897,565.451,113.629,29.358,113.629,345.735,309.845,356.049,19.411,20.046,19.411 +7550,237.588,221.116,563.884,317.387,405.647,224.501,558.450,121.924,37.476,121.924,344.813,312.231,357.618,19.845,24.946,19.845 +7551,237.621,211.398,555.914,328.250,414.250,215.301,551.273,130.057,45.000,130.057,343.004,311.834,355.133,19.584,24.042,19.584 +7552,237.658,203.384,547.192,337.609,423.036,207.788,543.214,137.902,53.318,137.902,341.918,313.992,353.788,19.715,24.664,19.715 +7553,237.690,190.688,529.209,351.649,443.943,196.671,526.099,152.534,69.015,152.534,337.319,314.968,350.805,22.112,24.301,22.112 +7554,237.721,190.688,529.209,351.649,443.943,196.671,526.099,152.534,69.015,152.534,337.319,314.968,350.805,22.112,24.301,22.112 +7555,237.751,186.251,519.176,356.323,455.247,192.765,516.736,159.470,76.759,159.470,335.555,314.185,349.468,20.722,24.106,20.722 +7556,237.784,183.098,509.783,359.376,464.553,190.594,507.861,165.619,85.101,165.619,333.022,316.582,348.499,20.789,24.112,20.789 +7557,237.815,180.894,499.928,361.728,474.902,189.408,498.782,172.333,93.180,172.333,330.747,316.567,347.930,19.154,24.962,19.154 +7558,237.847,180.529,489.863,362.456,484.893,189.201,489.680,178.794,101.129,178.794,329.285,318.100,346.634,17.996,24.659,17.996 +7559,237.877,180.393,481.992,362.563,494.367,189.676,482.655,4.086,109.026,4.086,327.950,319.080,346.564,19.308,25.297,19.308 +7560,237.909,181.534,473.764,361.754,503.144,191.073,475.372,9.567,116.806,9.567,326.496,319.764,345.844,18.747,25.358,18.747 +7561,237.940,183.118,466.418,359.831,511.626,192.520,468.844,14.470,124.902,14.470,325.966,321.223,345.386,19.428,25.119,19.428 +7562,237.970,185.081,459.658,357.809,519.117,194.597,462.948,19.073,132.510,19.073,325.076,320.846,345.214,19.661,25.555,19.661 +7563,238.001,187.731,452.603,355.524,525.510,197.180,456.817,24.034,140.024,24.034,324.494,321.504,345.186,19.389,25.435,19.389 +7564,238.034,192.204,444.232,352.849,531.617,201.389,449.108,27.962,147.503,27.962,324.133,321.512,344.931,25.887,25.199,25.887 +7565,238.064,194.218,441.481,349.970,537.110,203.087,446.673,30.343,154.704,30.343,324.346,322.162,344.899,25.490,24.845,25.490 +7566,238.095,197.762,436.581,347.036,542.111,206.299,442.412,34.330,161.944,34.330,324.218,322.545,344.895,25.318,24.401,25.318 +7567,238.126,200.959,433.364,343.804,546.568,209.000,439.500,37.349,169.024,37.349,324.005,322.625,344.236,25.606,24.424,25.606 +7568,238.156,200.959,433.364,343.804,546.568,209.000,439.500,37.349,169.024,37.349,324.005,322.625,344.236,25.606,24.424,25.606 +7569,238.187,204.578,428.911,340.659,550.577,212.218,435.646,41.399,175.620,41.399,324.331,322.583,344.700,25.494,23.442,25.494 +7570,238.219,207.381,426.123,337.930,553.877,214.682,433.157,43.935,2.144,43.935,324.756,322.523,345.030,24.878,22.225,24.878 +7571,238.250,209.637,424.351,335.020,557.361,216.651,431.591,45.909,8.331,45.909,325.228,323.723,345.388,24.802,22.749,24.802 +7572,238.283,213.554,422.263,332.163,559.833,219.737,429.344,48.871,14.095,48.871,325.673,323.785,344.475,24.507,21.741,24.507 +7573,238.313,216.286,420.577,329.365,562.467,221.814,427.415,51.044,19.458,51.044,327.697,324.166,345.281,24.140,22.657,24.140 +7574,238.344,218.778,419.540,326.377,564.495,223.521,425.876,53.186,24.228,53.186,329.391,324.826,345.219,23.153,22.114,23.153 +7575,238.375,221.975,418.713,323.661,566.703,225.855,424.291,55.176,28.429,55.176,331.931,325.044,345.521,23.414,22.256,23.414 +7576,238.405,224.413,417.380,320.688,568.402,227.948,422.838,57.072,32.060,57.072,332.177,325.738,345.183,23.366,21.451,23.366 +7577,238.436,226.668,416.200,318.207,570.203,229.970,421.674,58.903,34.928,58.903,332.730,325.152,345.516,23.065,21.056,23.065 +7578,238.468,228.663,414.969,315.433,572.096,231.932,420.807,60.751,36.973,60.751,332.215,325.601,345.598,22.406,20.996,22.406 +7579,238.500,231.005,414.283,312.996,573.741,234.034,420.066,62.354,38.333,62.354,332.482,324.858,345.538,22.525,20.650,22.525 +7580,238.531,232.722,412.817,310.136,575.104,235.685,418.977,64.312,39.134,64.312,332.268,325.141,345.938,21.354,20.861,21.354 +7581,238.561,235.383,411.876,307.502,576.275,237.898,417.573,66.184,39.289,66.184,334.135,324.358,346.589,22.316,21.319,22.316 +7582,238.592,237.711,411.521,304.747,577.445,239.889,416.908,67.983,38.746,67.983,334.668,324.056,346.289,22.295,21.462,22.295 +7583,238.622,237.711,411.521,304.747,577.445,239.889,416.908,67.983,38.746,67.983,334.668,324.056,346.289,22.295,21.462,22.295 +7584,238.652,239.862,410.993,301.851,578.398,241.711,415.903,69.370,37.674,69.370,336.035,324.607,346.528,21.371,21.852,21.371 +7585,238.684,241.789,409.602,298.992,579.194,243.656,415.042,71.058,36.176,71.058,334.948,324.724,346.451,21.016,22.592,21.016 +7586,238.715,243.887,408.812,296.228,580.164,245.587,414.280,72.731,34.186,72.731,335.429,324.519,346.880,20.716,23.209,20.716 +7587,238.745,246.008,408.202,293.854,581.034,247.556,413.699,74.268,32.005,74.268,335.818,323.723,347.240,20.674,24.380,20.674 +7588,238.777,247.853,407.801,291.335,581.037,249.149,412.896,75.727,29.705,75.727,336.188,323.854,346.703,19.978,25.078,19.978 +7589,238.809,249.719,406.969,288.700,582.100,251.001,412.629,77.242,26.565,77.242,335.618,323.335,347.224,19.709,25.491,19.709 +7590,238.840,251.538,406.192,286.340,582.524,252.749,412.246,78.690,23.412,78.690,334.770,322.244,347.117,19.415,25.307,19.415 +7591,238.871,253.362,405.459,284.294,582.903,254.467,411.809,80.134,20.362,80.134,334.458,321.616,347.349,19.147,25.671,19.147 +7592,238.902,255.243,404.835,282.130,582.949,256.204,411.305,81.552,17.071,81.552,334.098,320.481,347.180,19.058,25.464,19.058 +7593,238.936,256.977,404.315,279.851,583.054,257.802,410.918,82.875,13.661,82.875,333.777,319.915,347.085,18.729,25.035,18.729 +7594,238.966,258.440,403.873,277.649,583.171,259.145,410.604,84.026,10.187,84.026,333.574,319.939,347.111,18.550,25.283,18.550 +7595,238.997,260.107,402.827,275.257,583.107,260.759,410.584,85.197,6.582,85.197,330.692,318.808,346.261,18.481,25.294,18.481 +7596,239.027,262.492,402.115,272.835,583.468,262.951,410.147,86.730,2.726,86.730,331.117,318.306,347.207,18.769,25.305,18.769 +7597,239.057,264.276,402.008,270.522,583.281,264.556,410.130,88.025,179.037,88.025,330.252,317.291,346.507,18.472,25.450,18.472 +7598,239.089,264.276,402.008,270.522,583.281,264.556,410.130,88.025,179.037,88.025,330.252,317.291,346.507,18.472,25.450,18.472 +7599,239.121,265.788,401.011,268.122,583.380,265.919,409.685,89.132,174.931,89.132,330.068,317.945,347.418,18.240,25.119,18.240 +7600,239.154,267.608,401.006,265.949,583.177,267.563,409.579,90.302,171.104,90.302,330.064,317.800,347.210,18.331,25.352,18.331 +7601,239.187,269.694,400.549,263.557,583.363,269.431,409.628,91.660,166.724,91.660,329.499,317.681,347.664,18.021,24.802,18.021 +7602,239.220,271.785,400.594,261.057,583.080,271.317,409.476,93.013,162.688,93.013,330.017,317.543,347.806,18.028,24.636,18.028 +7603,239.253,273.613,400.231,258.612,583.009,272.925,409.513,94.236,157.932,94.236,329.542,317.571,348.158,18.172,24.371,18.172 +7604,239.284,276.035,399.653,255.889,582.357,275.046,409.539,95.711,154.069,95.711,327.865,317.964,347.734,18.110,22.838,18.110 +7605,239.315,278.012,399.363,253.378,582.292,276.765,409.715,96.865,149.683,96.865,327.415,317.946,348.269,18.671,22.569,18.671 +7606,239.345,280.450,398.285,250.672,581.969,278.755,409.900,98.302,145.235,98.302,325.166,318.006,348.642,18.843,21.784,18.843 +7607,239.376,283.093,397.861,247.387,581.254,280.984,410.091,99.782,140.599,99.782,323.945,318.308,348.765,19.166,20.477,19.166 +7608,239.407,286.025,395.808,244.610,580.574,283.145,410.156,101.352,136.134,101.352,320.068,318.416,349.337,19.048,19.900,19.048 +7609,239.439,289.328,393.808,241.487,580.301,285.322,411.053,103.077,131.186,103.077,314.148,319.281,349.555,18.860,19.379,18.860 +7610,239.470,293.600,390.300,238.826,579.887,287.747,411.762,105.255,126.573,105.255,305.655,319.607,350.146,17.804,19.585,17.804 +7611,239.502,299.781,382.694,235.737,579.334,290.426,412.317,107.526,122.303,107.526,289.337,319.906,351.466,17.064,19.631,17.064 +7612,239.534,311.492,360.702,233.028,578.731,292.956,413.345,109.398,117.588,109.398,240.180,319.906,351.803,16.965,19.507,16.965 +7613,239.565,324.926,339.287,229.586,577.827,295.341,414.235,111.541,112.726,111.541,191.465,320.151,352.617,17.648,18.708,17.648 +7614,239.595,301.640,408.437,226.212,576.417,298.638,415.510,112.997,108.065,112.997,337.463,320.644,352.829,17.929,19.071,17.929 +7615,239.626,303.775,412.208,223.465,575.112,301.727,416.528,115.362,103.586,115.362,344.085,321.123,353.646,18.172,19.035,18.172 +7616,239.656,303.775,412.208,223.465,575.112,301.727,416.528,115.362,103.586,115.362,344.085,321.123,353.646,18.172,19.035,18.172 +7617,239.686,306.971,414.141,220.776,573.366,304.961,417.958,117.771,99.147,117.771,344.838,320.407,353.466,18.595,19.804,18.595 +7618,239.719,310.187,416.255,216.624,571.435,308.101,419.799,120.487,94.224,120.487,345.939,320.122,354.164,18.966,18.818,18.966 +7619,239.750,314.731,418.154,212.604,568.499,312.324,421.764,123.690,89.502,123.690,346.133,319.066,354.811,19.137,19.304,19.137 +7620,239.782,318.601,420.464,208.568,565.540,315.906,424.101,126.529,84.774,126.529,346.036,318.779,355.089,20.089,19.868,20.089 +7621,239.813,322.861,423.383,205.025,562.140,320.018,426.759,130.101,79.919,130.101,346.424,318.320,355.251,19.686,19.823,19.686 +7622,239.844,327.143,426.159,201.168,557.691,323.889,429.568,133.668,75.174,133.668,345.402,317.307,354.828,19.103,19.419,19.103 +7623,239.875,331.991,429.858,197.195,552.866,328.370,433.186,137.413,70.463,137.413,345.298,316.291,355.134,19.744,19.669,19.744 +7624,239.906,336.273,434.215,193.557,547.425,332.550,437.181,141.462,65.733,141.462,345.290,316.033,354.811,19.723,18.958,19.723 +7625,239.937,340.666,439.040,189.715,541.478,336.698,441.740,145.763,60.725,145.763,345.658,315.078,355.256,19.554,19.283,19.554 +7626,239.968,345.400,445.200,186.538,533.808,341.444,447.460,150.255,56.310,150.255,345.561,313.128,354.673,20.838,19.969,20.838 +7627,239.998,348.468,450.041,182.403,525.885,344.034,452.144,154.622,51.407,154.622,345.462,311.416,355.276,20.445,19.487,20.445 +7628,240.029,351.778,457.464,178.284,518.294,346.758,459.316,159.752,46.005,159.752,346.246,309.169,356.948,21.132,20.441,21.132 +7629,240.059,354.560,465.593,176.069,509.172,349.627,466.871,165.476,41.634,165.476,347.046,307.767,357.239,20.760,19.765,20.760 +7630,240.089,354.560,465.593,176.069,509.172,349.627,466.871,165.476,41.634,165.476,347.046,307.767,357.239,20.760,19.765,20.760 +7631,240.119,357.288,474.796,175.144,499.660,352.054,475.574,171.541,37.476,171.541,346.477,305.406,357.058,19.341,20.978,19.341 +7632,240.151,359.664,484.723,173.129,488.567,352.692,484.965,178.017,33.232,178.017,345.209,307.616,359.161,18.266,20.710,18.266 +7633,240.183,361.624,495.047,174.377,478.058,353.011,494.405,4.259,29.416,4.259,341.438,305.110,358.711,18.990,20.637,18.990 +7634,240.215,366.409,507.527,176.072,467.340,351.944,504.671,11.168,26.261,11.168,330.054,304.603,359.543,19.453,20.298,19.453 +7635,240.246,386.814,526.289,178.683,456.872,349.409,514.362,17.684,24.239,17.684,281.722,304.719,360.243,19.303,19.723,19.303 +7636,240.277,369.120,535.736,184.449,445.896,345.817,525.144,24.444,22.140,24.444,308.200,304.515,359.394,19.283,20.355,19.283 +7637,240.307,347.498,538.429,188.939,435.837,340.483,533.971,32.437,20.497,32.437,344.449,304.310,361.073,19.325,19.399,19.325 +7638,240.338,339.281,545.135,196.075,426.635,335.337,541.786,40.329,17.716,40.329,351.030,304.851,361.377,25.256,17.173,25.256 +7639,240.369,329.150,555.005,205.421,417.465,326.199,551.624,48.888,14.604,48.888,352.014,305.136,360.989,23.425,17.316,23.425 +7640,240.400,317.198,564.282,216.020,409.400,314.829,560.455,58.241,11.206,58.241,351.888,306.912,360.891,23.281,17.416,23.281 +7641,240.431,304.793,570.914,228.785,402.566,303.027,566.854,66.484,7.824,66.484,351.678,307.160,360.534,20.867,17.711,20.867 +7642,240.461,290.415,576.023,242.976,397.806,289.259,571.784,74.745,4.399,74.745,351.262,307.630,360.050,22.540,18.024,22.540 +7643,240.492,275.503,579.385,257.993,395.514,274.955,574.606,83.451,0.785,83.451,350.096,308.190,359.717,23.273,17.355,23.273 +7644,240.522,275.503,579.385,257.993,395.514,274.955,574.606,83.451,0.785,83.451,350.096,308.190,359.717,23.273,17.355,23.273 +7645,240.554,260.680,579.421,272.581,395.255,260.911,574.111,92.498,177.368,92.498,347.760,309.638,358.389,23.414,17.395,23.414 +7646,240.588,248.750,576.717,288.220,396.241,249.936,571.468,102.738,174.382,102.738,347.949,311.644,358.712,21.145,18.501,21.145 +7647,240.621,234.274,571.315,303.254,400.153,236.468,565.918,112.122,171.254,112.122,345.775,313.846,357.425,19.725,18.627,19.725 +7648,240.653,222.257,564.551,316.860,406.236,225.378,559.389,121.154,168.284,121.154,344.721,315.761,356.785,20.137,18.500,20.137 +7649,240.685,211.545,555.696,328.804,413.289,215.673,550.794,130.101,165.593,130.101,343.284,317.250,356.101,19.525,20.331,19.525 +7650,240.716,201.583,547.095,339.243,423.596,207.238,542.143,138.792,162.521,138.792,339.786,318.798,354.818,19.845,19.758,19.845 +7651,240.747,193.373,537.523,347.949,434.858,200.820,532.748,147.330,160.376,147.330,335.693,320.190,353.386,19.682,20.575,19.682 +7652,240.778,174.403,531.786,354.147,445.358,195.658,522.187,155.695,157.732,155.695,305.486,320.913,352.128,17.463,18.341,17.463 +7653,240.809,132.585,529.580,358.867,456.713,192.236,511.504,163.142,155.194,163.142,226.061,321.415,350.720,17.110,19.657,17.110 +7654,240.840,162.656,506.727,361.604,468.675,190.162,501.883,170.013,152.784,170.013,293.348,321.566,349.206,19.003,19.895,19.003 +7655,240.870,171.133,492.759,363.378,481.385,189.697,491.864,177.241,150.846,177.241,310.796,321.986,347.967,18.160,21.904,18.160 +7656,240.903,175.234,481.764,363.412,493.169,190.049,482.810,4.041,148.392,4.041,317.621,321.927,347.324,18.730,22.733,18.730 +7657,240.934,178.982,471.776,362.133,503.941,191.359,474.084,10.561,146.041,10.561,321.527,322.008,346.707,18.795,23.275,18.795 +7658,240.964,182.830,462.178,359.847,514.290,193.798,465.553,17.103,144.009,17.103,323.127,321.879,346.078,19.410,24.852,19.410 +7659,240.994,186.814,455.183,356.661,523.483,196.394,459.086,22.166,141.953,22.166,324.750,321.953,345.438,19.345,25.269,19.345 +7660,241.024,192.548,444.107,352.463,531.862,201.415,448.850,28.142,139.917,28.142,324.579,321.504,344.691,25.879,25.218,25.879 +7661,241.055,192.548,444.107,352.463,531.862,201.415,448.850,28.142,139.917,28.142,324.579,321.504,344.691,25.879,25.218,25.879 +7662,241.084,195.694,439.688,347.874,539.359,203.916,444.803,31.891,138.136,31.891,325.000,321.194,344.366,25.528,25.360,25.528 +7663,241.117,200.420,433.940,343.045,546.091,208.056,439.667,36.870,136.229,36.870,324.600,321.226,343.691,25.400,25.377,25.400 +7664,241.148,204.934,429.504,337.801,551.817,211.770,435.486,41.186,134.356,41.186,324.737,321.070,342.905,25.305,24.596,25.305 +7665,241.179,210.347,424.289,332.289,557.306,216.556,430.809,46.397,132.678,46.397,324.828,321.336,342.835,23.621,24.709,23.621 +7666,241.210,215.394,420.215,326.910,561.922,221.072,427.134,50.631,131.035,50.631,324.770,320.803,342.672,23.926,24.319,23.926 +7667,241.240,219.288,416.718,321.563,565.899,224.645,424.189,54.360,129.579,54.360,324.894,320.989,343.281,23.338,24.602,23.338 +7668,241.270,224.075,413.482,316.144,569.612,228.934,421.347,58.289,127.972,58.289,325.454,321.268,343.943,23.024,23.938,23.024 +7669,241.302,228.136,411.356,310.735,572.436,232.447,419.407,61.832,126.409,61.832,325.457,321.428,343.722,21.721,23.048,21.721 +7670,241.333,232.622,408.598,305.705,575.143,236.633,417.288,65.225,125.042,65.225,325.399,321.389,344.542,22.140,23.265,22.140 +7671,241.363,236.144,406.458,300.500,577.500,239.835,415.822,68.488,123.690,68.488,325.191,321.449,345.322,20.902,22.465,20.902 +7672,241.392,240.542,404.311,295.354,579.047,243.838,414.131,71.445,122.661,71.445,324.759,321.511,345.475,20.982,21.932,20.982 +7673,241.422,240.542,404.311,295.354,579.047,243.838,414.131,71.445,122.661,71.445,324.759,321.511,345.475,20.982,21.932,20.982 +7674,241.452,244.394,402.550,290.530,580.592,247.341,413.075,74.358,121.686,74.358,324.057,321.202,345.916,20.415,21.946,20.415 +7675,241.484,248.155,401.283,285.543,581.727,250.688,412.428,77.196,120.902,77.196,322.769,321.385,345.627,19.680,20.944,19.680 +7676,241.516,251.840,398.904,280.919,582.577,254.073,411.411,79.875,120.282,79.875,321.029,321.398,346.439,19.196,20.297,19.196 +7677,241.548,255.644,398.519,276.296,583.223,257.262,410.766,82.476,120.087,82.476,322.221,321.393,346.928,18.612,19.949,18.612 +7678,241.579,259.531,396.106,272.037,583.735,260.786,410.540,85.030,119.798,85.030,318.061,321.252,347.037,18.972,20.122,18.972 +7679,241.610,263.361,395.856,267.706,583.666,263.975,410.221,87.553,120.174,87.553,318.137,321.034,346.893,18.581,20.185,18.581 +7680,241.640,267.000,395.000,263.987,583.768,267.000,409.884,90.000,121.470,90.000,318.000,320.741,347.768,18.000,19.544,18.000 +7681,241.671,270.229,394.559,260.007,583.504,269.710,409.742,91.958,122.949,91.958,317.601,320.370,347.984,18.194,19.518,18.194 +7682,241.703,274.086,394.580,256.428,583.249,272.949,410.068,94.198,125.022,94.198,316.790,320.240,347.851,18.116,19.996,18.116 +7683,241.733,277.673,394.688,252.787,582.554,275.981,409.787,96.394,127.972,96.394,318.163,320.037,348.551,18.094,18.920,18.094 +7684,241.763,281.125,395.393,249.396,581.910,278.929,410.064,98.512,130.815,98.512,318.978,319.551,348.648,18.353,19.540,18.353 +7685,241.794,284.073,396.557,246.250,581.250,281.581,410.298,100.279,135.000,100.279,321.094,318.198,349.025,18.675,19.092,18.675 +7686,241.825,287.829,397.518,243.066,580.504,284.872,410.827,102.529,138.814,102.529,322.142,318.340,349.411,19.198,20.037,19.198 +7687,241.855,287.829,397.518,243.066,580.504,284.872,410.827,102.529,138.814,102.529,322.142,318.340,349.411,19.198,20.037,19.198 +7688,241.884,290.677,398.558,239.954,579.420,287.436,411.199,104.381,143.393,104.381,323.385,317.818,349.484,19.373,20.252,19.373 +7689,241.917,293.914,399.719,236.735,578.380,290.308,411.822,106.587,148.339,106.587,324.587,317.146,349.843,19.005,20.712,19.005 +7690,241.948,297.204,401.596,233.700,577.400,293.448,412.576,108.886,153.435,108.886,327.373,316.627,350.581,18.898,21.913,18.898 +7691,241.978,300.937,403.344,230.307,575.736,296.940,413.567,111.354,158.552,111.354,328.646,316.090,350.599,19.152,21.873,19.152 +7692,242.009,303.932,405.447,226.908,574.151,299.973,414.462,113.711,165.155,113.711,331.486,315.514,351.180,18.869,21.929,18.869 +7693,242.040,307.026,407.717,223.369,572.326,303.055,415.824,116.095,170.991,116.095,333.145,314.945,351.200,18.969,22.006,18.969 +7694,242.071,310.519,409.928,219.922,570.478,306.481,417.298,118.720,177.064,118.720,335.053,314.407,351.860,19.053,22.611,19.053 +7695,242.104,314.180,412.457,215.998,568.029,310.053,419.163,121.608,3.366,121.608,336.405,313.106,352.154,19.130,22.725,19.130 +7696,242.137,318.292,415.486,211.966,565.203,314.071,421.554,124.824,9.372,124.824,337.678,313.659,352.461,19.166,23.900,19.166 +7697,242.170,321.911,418.639,208.094,561.670,317.927,423.789,127.725,15.945,127.725,339.500,313.732,352.522,20.043,24.862,20.043 +7698,242.202,326.162,422.664,203.658,558.133,322.206,427.158,131.357,23.325,131.357,341.305,313.830,353.280,19.992,24.979,19.992 +7699,242.234,330.000,426.500,199.369,554.354,326.004,430.496,135.000,29.745,135.000,342.947,313.312,354.250,19.092,24.311,19.092 +7700,242.264,334.452,430.884,194.321,549.932,329.884,434.868,138.906,36.069,138.906,343.468,313.642,355.590,20.025,24.020,20.025 +7701,242.294,338.571,435.902,190.137,544.935,333.757,439.540,142.927,42.709,142.927,344.182,312.687,356.249,20.780,24.135,20.780 +7702,242.324,342.735,440.935,187.857,537.697,338.422,443.688,147.450,49.671,147.450,344.755,311.980,354.989,19.764,20.293,19.764 +7703,242.355,342.735,440.935,187.857,537.697,338.422,443.688,147.450,49.671,147.450,344.755,311.980,354.989,19.764,20.293,19.764 +7704,242.386,346.067,446.201,184.231,531.519,341.588,448.630,151.526,56.626,151.526,345.489,312.903,355.680,20.948,19.340,20.948 +7705,242.418,349.691,452.938,180.678,523.668,345.105,454.943,156.384,63.925,156.384,346.366,312.197,356.376,21.819,18.939,21.819 +7706,242.450,352.880,460.579,177.590,515.447,348.087,462.127,162.106,70.821,162.106,347.191,311.848,357.264,20.351,18.972,20.351 +7707,242.485,355.458,469.306,175.464,506.477,350.583,470.361,167.800,78.009,167.800,347.616,311.494,357.592,20.235,19.044,20.235 +7708,242.515,357.126,478.691,173.897,496.372,352.215,479.210,173.970,84.769,173.970,348.393,310.904,358.269,19.469,18.956,19.469 +7709,242.547,358.005,489.005,173.837,486.045,352.930,488.952,0.597,91.941,0.597,348.075,310.398,358.226,18.301,19.023,18.301 +7710,242.578,357.460,499.309,175.095,474.993,352.890,498.722,7.326,99.058,7.326,349.523,310.728,358.738,19.001,19.507,19.001 +7711,242.609,355.631,510.492,177.227,463.846,351.122,509.329,14.455,105.772,14.455,350.175,310.869,359.488,19.117,19.276,19.117 +7712,242.638,353.534,518.414,181.578,452.458,349.380,516.752,21.801,112.178,21.801,350.407,310.481,359.357,25.997,19.570,25.997 +7713,242.671,348.369,530.354,186.739,441.134,344.369,528.068,29.745,119.168,29.745,350.770,310.127,359.985,24.807,19.129,24.807 +7714,242.703,340.272,543.547,193.689,429.898,336.385,540.400,38.999,125.218,38.999,350.869,310.159,360.872,24.983,18.214,24.983 +7715,242.733,332.734,552.378,203.156,420.497,329.474,548.947,46.469,132.123,46.469,350.791,309.858,360.256,24.251,18.124,24.251 +7716,242.764,321.308,562.056,213.820,411.430,318.553,558.077,55.305,138.608,55.305,350.697,309.773,360.375,22.452,18.310,22.452 +7717,242.794,309.203,569.682,225.918,404.008,306.939,565.038,64.001,144.772,64.001,350.169,310.016,360.501,22.400,18.044,22.400 +7718,242.825,296.049,575.190,239.308,398.538,294.460,570.195,72.359,150.255,72.359,350.114,310.831,360.596,21.214,17.365,21.214 +7719,242.856,296.049,575.190,239.308,398.538,294.460,570.195,72.359,150.255,72.359,350.114,310.831,360.596,21.214,17.365,21.214 +7720,242.886,282.064,578.413,253.840,395.937,281.314,573.562,81.215,156.562,81.215,349.658,310.929,359.475,23.341,16.016,23.341 +7721,242.918,268.958,579.046,268.119,394.262,269.008,573.677,90.529,163.443,90.529,348.059,311.576,358.798,22.962,17.772,22.962 +7722,242.949,252.114,577.745,282.550,394.820,252.971,572.091,98.616,168.959,98.616,347.968,311.827,359.404,22.800,18.146,22.800 +7723,242.980,240.074,573.536,296.780,398.228,241.743,568.404,108.015,175.050,108.015,346.913,312.429,357.708,19.337,17.815,19.337 +7724,243.010,228.300,567.900,310.429,403.696,230.704,563.093,116.565,1.097,116.565,345.696,313.211,356.446,20.125,17.587,20.125 +7725,243.041,217.362,560.606,322.264,410.870,220.379,556.311,125.086,7.204,125.086,344.657,314.063,355.154,19.611,17.615,19.611 +7726,243.070,208.098,552.120,332.906,418.968,211.745,548.260,133.379,13.536,133.379,343.756,315.559,354.377,19.524,18.274,19.524 +7727,243.103,200.020,543.150,341.936,429.003,204.449,539.602,141.305,19.516,141.305,341.552,316.291,352.900,19.516,18.040,19.516 +7728,243.134,193.647,533.912,349.449,439.200,199.136,530.618,149.036,25.530,149.036,339.053,316.810,351.855,20.751,18.882,20.751 +7729,243.165,189.103,523.232,355.075,449.671,194.670,520.758,156.038,31.264,156.038,338.720,318.500,350.903,20.815,20.423,20.815 +7730,243.195,185.914,513.219,360.289,459.775,192.401,511.223,162.897,37.519,162.897,337.611,319.427,351.186,20.512,22.945,20.512 +7731,243.226,184.045,503.749,361.702,470.887,190.158,502.645,169.765,43.103,169.765,336.490,321.862,348.913,19.777,22.671,19.777 +7732,243.256,184.045,503.749,361.702,470.887,190.158,502.645,169.765,43.103,169.765,336.490,321.862,348.913,19.777,22.671,19.777 +7733,243.284,182.919,493.861,363.544,481.963,189.729,493.377,175.941,49.686,175.941,334.719,321.039,348.374,19.030,22.367,19.030 +7734,243.315,183.500,485.005,363.238,492.680,190.047,485.250,2.144,55.561,2.144,333.590,321.008,346.694,18.773,21.914,18.773 +7735,243.346,183.752,476.659,362.518,501.990,190.743,477.617,7.804,61.645,7.804,332.878,320.971,346.989,18.784,23.048,18.784 +7736,243.376,185.315,469.145,360.688,510.924,192.274,470.764,13.098,67.891,13.098,331.979,321.281,346.267,19.051,22.409,19.051 +7737,243.407,187.350,461.450,358.335,518.849,194.378,463.793,18.435,74.427,18.435,331.090,321.281,345.907,18.974,22.929,18.974 +7738,243.439,189.822,455.066,355.461,526.007,196.731,458.001,23.015,80.372,23.015,330.352,321.716,345.367,19.190,22.755,19.190 +7739,243.471,193.300,446.900,352.254,532.513,200.504,450.502,26.565,86.947,26.565,328.702,321.663,344.811,25.491,23.407,25.491 +7740,243.503,196.118,441.471,348.639,538.426,203.211,445.727,30.964,93.094,30.964,328.248,321.720,344.794,25.382,23.074,25.382 +7741,243.534,198.731,438.154,345.414,543.315,205.639,442.760,33.690,99.660,33.690,327.550,321.734,344.156,25.516,24.079,25.516 +7742,243.565,201.186,434.451,342.035,547.510,208.091,439.677,37.117,106.091,37.117,326.441,321.839,343.760,24.806,24.113,24.806 +7743,243.595,205.044,429.896,338.464,551.815,211.593,435.650,41.295,112.543,41.295,326.529,322.386,343.964,24.925,24.205,24.925 +7744,243.625,208.076,426.750,335.232,554.630,214.432,432.873,43.932,119.332,43.932,325.292,321.610,342.942,24.810,24.253,24.810 +7745,243.655,208.076,426.750,335.232,554.630,214.432,432.873,43.932,119.332,43.932,325.292,321.610,342.942,24.810,24.253,24.810 +7746,243.685,210.348,423.840,332.269,557.556,216.610,430.423,46.432,125.893,46.432,325.486,321.435,343.658,24.547,24.495,24.547 +7747,243.716,212.619,421.882,329.457,559.885,218.684,428.786,48.705,132.780,48.705,324.823,320.819,343.202,23.443,25.031,23.443 +7748,243.747,214.995,419.549,326.902,562.051,220.780,426.620,50.711,139.359,50.711,325.766,320.838,344.036,23.922,24.775,23.922 +7749,243.779,217.696,418.213,324.801,563.950,223.326,425.635,52.815,146.215,52.815,324.418,320.900,343.049,23.873,25.263,23.873 +7750,243.810,219.747,416.680,322.616,565.695,225.096,424.225,54.665,153.060,54.665,325.121,320.701,343.620,23.846,25.035,23.846 +7751,243.841,221.911,415.895,320.832,567.288,226.891,423.319,56.146,160.017,56.146,325.906,320.897,343.786,23.439,25.374,23.439 +7752,243.871,223.532,414.980,319.086,568.696,228.357,422.556,57.505,166.974,57.505,326.041,321.102,344.005,23.407,25.287,23.407 +7753,243.903,225.226,414.471,317.539,569.872,229.670,421.780,58.696,173.956,58.696,327.266,320.701,344.376,23.196,24.639,23.196 +7754,243.934,226.282,413.628,316.474,570.970,230.643,421.077,59.657,0.999,59.657,328.177,321.178,345.441,23.091,24.107,23.091 +7755,243.964,227.720,413.657,315.302,571.871,231.599,420.559,60.662,8.207,60.662,329.997,321.586,345.832,23.302,24.382,23.302 +7756,243.994,228.782,413.620,314.841,572.065,232.391,420.172,61.152,15.709,61.152,330.690,322.518,345.650,22.699,23.976,22.699 +7757,244.025,229.752,413.903,313.639,572.766,233.117,420.145,61.673,22.620,61.673,330.926,323.923,345.107,22.625,23.846,22.625 +7758,244.055,229.752,413.903,313.639,572.766,233.117,420.145,61.673,22.620,61.673,330.926,323.923,345.107,22.625,23.846,22.625 +7759,244.085,230.695,414.662,313.159,572.941,233.601,420.131,62.021,30.285,62.021,332.162,324.997,344.548,22.575,23.004,22.575 +7760,244.118,230.187,413.954,312.838,573.400,233.451,420.157,62.241,37.304,62.241,331.146,324.991,345.164,21.611,20.681,21.611 +7761,244.148,230.462,413.307,313.073,573.441,233.958,419.975,62.333,44.556,62.333,330.249,324.624,345.309,22.529,20.040,22.529 +7762,244.179,227.490,411.886,312.037,574.515,232.280,420.561,61.091,51.960,61.091,326.833,324.692,346.652,21.375,20.404,21.375 +7763,244.210,218.974,395.908,311.908,574.859,232.876,420.859,60.873,58.717,60.873,288.864,324.851,345.990,20.113,18.942,20.113 +7764,244.241,209.608,382.032,312.353,574.771,231.174,421.569,61.390,66.689,61.390,256.665,324.722,346.736,17.638,18.838,17.638 +7765,244.272,221.385,402.293,312.550,574.344,231.974,421.399,61.004,74.157,61.004,301.977,324.588,345.666,20.770,18.915,20.770 +7766,244.308,223.310,406.984,312.632,573.703,231.317,421.079,60.401,81.545,60.401,313.321,324.275,345.742,21.949,19.034,21.949 +7767,244.352,223.720,410.224,313.490,572.511,230.193,421.227,59.534,88.807,59.534,319.727,323.222,345.259,22.005,18.788,22.005 +7768,244.385,223.606,412.179,314.724,571.350,229.341,421.544,58.517,96.710,58.517,322.725,323.008,344.688,23.085,20.214,23.085 +7769,244.418,222.622,413.857,316.651,570.674,228.399,422.866,57.331,104.265,57.331,322.720,324.031,344.124,23.256,21.732,23.256 +7770,244.456,221.156,415.192,318.534,568.414,226.464,423.047,55.954,111.801,55.954,325.031,322.367,343.991,23.380,22.098,23.380 +7771,244.487,219.073,416.721,321.034,566.357,224.449,424.218,54.360,119.181,54.360,325.140,321.114,343.590,22.986,23.313,22.986 +7772,244.517,217.098,418.378,323.831,564.497,222.650,425.665,52.696,126.948,52.696,325.180,320.601,343.503,23.105,24.481,23.105 +7773,244.550,214.785,419.903,326.600,562.054,220.666,427.091,50.711,134.370,50.711,324.499,320.385,343.073,23.148,24.522,23.148 +7774,244.582,212.345,421.926,330.000,559.675,218.590,428.989,48.517,141.780,48.517,324.546,320.314,343.402,23.389,25.219,23.389 +7775,244.612,210.027,423.974,333.456,556.926,216.528,430.732,46.112,149.036,46.112,325.263,320.531,344.017,24.291,25.382,24.291 +7776,244.643,207.363,426.596,336.830,554.024,214.447,433.359,43.668,156.262,43.668,324.096,320.764,343.684,24.824,25.284,24.824 +7777,244.675,203.735,430.408,340.375,550.443,211.113,436.622,40.101,163.443,40.101,325.087,321.343,344.379,25.363,24.792,25.363 +7778,244.705,201.462,432.765,343.931,546.533,209.495,439.017,37.896,170.340,37.896,323.894,321.902,344.254,25.610,24.310,25.610 +7779,244.737,196.346,436.731,347.611,542.015,206.023,443.182,33.690,176.847,33.690,322.003,321.944,345.263,25.239,22.529,25.239 +7780,244.768,192.235,438.941,350.836,537.004,203.867,445.920,30.964,3.126,30.964,318.644,322.721,345.774,25.725,21.615,25.725 +7781,244.800,185.618,442.343,353.998,531.014,201.058,450.587,28.099,8.816,28.099,310.582,323.576,345.589,29.170,20.486,29.170 +7782,244.831,170.920,446.545,357.166,525.289,197.504,457.829,22.999,13.134,22.999,288.894,324.094,346.655,18.510,19.444,18.510 +7783,244.861,114.356,434.602,359.290,520.173,195.419,462.798,19.179,17.314,19.179,175.594,324.586,347.249,17.740,20.110,17.740 +7784,244.892,174.913,463.627,361.218,512.442,193.365,468.623,15.149,21.291,15.149,308.711,325.687,346.942,18.386,19.642,18.386 +7785,244.923,174.913,463.627,361.218,512.442,193.365,468.623,15.149,21.291,15.149,308.711,325.687,346.942,18.386,19.642,18.386 +7786,244.951,181.556,472.885,363.532,505.031,192.131,474.773,10.125,24.408,10.125,326.619,324.092,348.102,18.845,22.238,18.845 +7787,244.982,181.652,481.092,364.179,497.683,191.050,481.839,4.548,29.779,4.548,328.825,323.980,347.680,18.974,20.932,18.974 +7788,245.013,181.952,489.060,364.047,488.351,189.984,488.961,179.298,35.192,179.298,332.049,323.425,348.115,18.182,21.050,18.182 +7789,245.045,183.171,498.911,363.131,478.443,189.855,498.061,172.755,39.806,172.755,335.260,322.141,348.735,19.336,20.998,19.336 +7790,245.076,184.665,508.629,360.729,466.816,190.796,507.129,166.255,45.474,166.255,336.665,321.787,349.289,19.944,22.802,19.944 +7791,245.108,187.389,518.702,357.930,456.258,193.289,516.496,159.499,51.415,159.499,338.022,319.840,350.620,20.729,23.550,20.729 +7792,245.138,191.908,529.323,353.044,445.317,197.229,526.558,152.540,56.781,152.540,339.450,317.278,351.444,22.540,24.675,22.540 +7793,245.170,196.578,538.791,351.231,443.907,201.275,535.555,145.437,62.120,145.437,339.560,294.405,350.966,20.954,25.075,20.954 +7794,245.201,202.198,548.273,346.034,442.586,205.251,545.516,137.911,68.199,137.911,338.710,274.458,346.937,19.678,24.883,19.678 +7795,245.232,209.807,558.255,334.703,435.332,211.583,556.120,129.753,74.476,129.753,337.637,270.481,343.191,19.831,24.302,19.831 +7796,245.263,218.714,568.248,321.774,430.452,219.806,566.476,121.661,80.134,121.661,334.439,264.165,338.603,20.003,22.703,20.003 +7797,245.293,228.868,578.309,306.540,422.043,230.895,573.628,113.408,87.431,113.408,328.120,268.403,338.322,19.685,19.596,19.685 +7798,245.323,228.868,578.309,306.540,422.043,230.895,573.628,113.408,87.431,113.408,328.120,268.403,338.322,19.685,19.596,19.685 +7799,245.354,238.474,597.295,290.181,411.467,243.853,577.170,104.964,92.291,104.964,302.430,279.576,344.092,19.714,18.385,19.714 +7800,245.387,250.387,648.423,276.570,393.194,259.899,572.740,97.164,97.794,97.164,207.889,309.995,360.446,22.571,18.632,22.571 +7801,245.419,269.394,582.248,263.018,393.281,269.030,573.282,87.676,102.575,87.676,342.246,310.762,360.193,21.982,20.654,21.982 +7802,245.451,285.748,579.688,249.950,394.650,284.428,572.298,79.875,108.435,79.875,346.870,310.536,361.884,22.888,19.922,22.888 +7803,245.482,297.907,575.351,236.476,398.525,295.820,569.214,71.219,114.864,71.219,348.450,311.075,361.414,19.993,18.345,19.993 +7804,245.513,311.191,569.108,223.961,404.566,308.523,563.951,62.644,120.518,62.644,349.222,311.815,360.835,21.344,18.209,21.344 +7805,245.545,322.704,561.494,212.119,412.086,319.534,557.059,54.439,126.027,54.439,349.905,311.584,360.808,22.989,18.233,22.989 +7806,245.577,332.781,552.374,201.850,420.757,329.247,548.665,46.384,131.689,46.384,350.725,311.751,360.970,24.465,18.634,24.465 +7807,245.609,341.004,542.201,192.769,430.365,337.115,539.126,38.333,137.075,38.333,351.455,312.065,361.370,25.120,18.398,25.120 +7808,245.639,347.079,531.675,185.793,441.046,343.189,529.355,30.810,142.848,30.810,351.770,311.590,360.829,25.232,19.938,25.232 +7809,245.670,351.131,520.662,180.573,452.555,347.908,519.258,23.532,148.380,23.532,353.070,311.445,360.101,25.804,20.347,25.804 +7810,245.701,353.313,513.268,176.447,463.449,349.867,512.243,16.570,154.075,16.570,353.076,310.919,360.266,19.381,20.161,19.381 +7811,245.731,355.608,503.533,173.479,473.108,351.373,502.791,9.943,160.201,9.943,352.097,310.643,360.696,19.111,20.624,19.111 +7812,245.761,357.699,493.940,171.941,481.265,351.942,493.565,3.727,165.964,3.727,349.302,310.203,360.840,19.067,20.373,19.067 +7813,245.793,360.922,485.067,171.807,489.714,351.984,485.355,178.152,169.832,178.152,342.564,310.449,360.447,18.313,19.226,18.313 +7814,245.823,360.922,485.067,171.807,489.714,351.984,485.355,178.152,169.832,178.152,342.564,310.449,360.447,18.313,19.226,18.313 +7815,245.853,428.036,468.055,172.203,498.530,350.880,477.132,173.290,174.289,173.290,204.531,308.561,359.907,17.760,19.403,17.760 +7816,245.885,384.690,462.847,173.526,505.936,349.596,470.083,168.350,178.965,168.350,287.701,309.184,359.366,17.791,19.539,17.791 +7817,245.916,365.455,458.600,175.867,513.375,348.126,463.937,162.881,4.062,162.881,322.096,308.714,358.360,21.171,18.687,21.171 +7818,245.947,358.458,452.659,178.165,520.483,345.664,457.713,158.443,9.230,158.443,330.180,309.207,357.692,20.852,20.543,20.852 +7819,245.978,351.928,447.880,181.308,526.895,343.223,452.117,154.047,16.105,154.047,337.261,309.072,356.624,21.190,21.292,21.190 +7820,246.008,346.911,443.591,184.382,532.613,340.518,447.252,150.201,23.263,150.201,341.092,310.280,355.825,20.211,23.611,20.211 +7821,246.039,342.486,440.543,187.077,538.869,337.678,443.680,146.874,30.466,146.874,344.803,310.803,356.285,20.433,24.236,20.433 +7822,246.070,338.610,435.661,190.025,544.468,333.859,439.200,143.314,37.427,143.314,344.621,311.809,356.469,19.230,24.148,19.230 +7823,246.102,335.918,432.402,193.089,548.935,331.190,436.342,140.194,44.648,140.194,344.035,312.544,356.345,20.230,24.232,20.230 +7824,246.132,332.640,429.607,198.274,551.237,329.233,432.723,137.556,52.214,137.556,344.006,313.637,353.242,19.723,20.655,19.723 +7825,246.163,329.500,427.000,201.047,555.379,326.167,430.333,135.000,59.323,135.000,344.361,315.246,353.788,19.092,20.539,19.092 +7826,246.194,326.581,425.150,203.362,559.124,323.352,428.644,132.745,66.448,132.745,345.012,317.506,354.527,19.528,20.026,19.528 +7827,246.223,326.581,425.150,203.362,559.124,323.352,428.644,132.745,66.448,132.745,345.012,317.506,354.527,19.528,20.026,19.528 +7828,246.253,323.931,423.581,204.982,561.570,320.920,427.083,130.684,73.824,130.684,345.886,317.566,355.123,19.809,19.721,19.809 +7829,246.284,321.156,422.416,206.861,563.624,318.516,425.688,128.894,80.961,128.894,346.518,318.427,354.927,19.405,19.505,19.405 +7830,246.316,319.143,420.598,207.882,565.471,316.291,424.377,127.042,88.091,127.042,346.384,319.289,355.852,19.654,19.989,19.654 +7831,246.347,317.405,419.357,209.676,566.561,314.642,423.214,125.613,95.125,125.613,345.828,318.949,355.317,18.952,18.839,18.952 +7832,246.377,315.589,418.841,211.372,567.582,313.279,422.199,124.533,102.381,124.533,346.919,319.872,355.071,18.760,19.702,18.760 +7833,246.409,314.278,418.529,211.892,568.134,312.094,421.827,123.511,108.935,123.511,346.706,319.730,354.618,18.850,19.436,18.850 +7834,246.440,315.268,415.706,211.902,567.983,311.692,421.257,122.787,115.866,122.787,341.572,319.352,354.778,17.719,19.005,17.719 +7835,246.471,353.443,353.683,212.725,568.287,310.541,420.718,122.619,122.720,122.619,194.868,318.747,354.043,17.182,19.141,17.182 +7836,246.504,348.760,359.596,213.192,568.159,309.958,419.955,122.735,129.634,122.735,210.475,318.305,353.986,17.184,19.432,17.184 +7837,246.535,328.121,391.498,213.492,568.022,309.854,420.040,122.619,136.710,122.619,285.395,317.582,353.171,16.980,19.590,16.980 +7838,246.567,323.429,400.149,213.540,567.236,310.982,420.005,122.082,143.707,122.082,306.136,316.596,353.004,19.576,18.878,19.576 +7839,246.598,320.241,405.857,213.243,566.816,311.194,420.214,122.217,150.546,122.217,318.563,315.899,352.501,19.888,19.341,19.888 +7840,246.628,319.507,407.933,212.980,566.140,311.658,420.143,122.735,157.166,122.735,323.313,315.248,352.342,19.287,19.548,19.287 +7841,246.658,319.461,410.808,212.780,565.960,312.821,420.768,123.690,163.740,123.690,328.660,314.720,352.601,18.860,21.000,18.860 +7842,246.690,319.599,412.454,211.973,565.273,313.682,421.133,124.287,170.311,124.287,331.768,314.185,352.777,19.078,21.782,19.078 +7843,246.720,319.599,412.454,211.973,565.273,313.682,421.133,124.287,170.311,124.287,331.768,314.185,352.777,19.078,21.782,19.078 +7844,246.750,320.012,414.484,210.673,564.472,314.671,422.034,125.272,176.673,125.272,334.193,313.923,352.689,19.136,22.474,19.136 +7845,246.782,321.650,416.450,209.516,563.166,316.809,422.975,126.573,2.779,126.573,336.783,313.747,353.033,20.129,22.372,20.129 +7846,246.813,323.110,418.221,207.819,562.125,318.453,424.164,128.089,9.145,128.089,338.562,313.689,353.662,19.974,23.960,19.974 +7847,246.844,324.375,420.204,205.901,560.342,320.064,425.418,129.583,16.189,129.583,339.928,313.445,353.460,19.626,24.876,19.626 +7848,246.875,326.712,422.575,203.720,557.960,322.581,427.232,131.572,22.166,131.572,340.892,313.637,353.343,20.043,25.176,20.043 +7849,246.906,328.397,424.788,200.860,555.901,324.462,428.912,133.657,28.269,133.657,343.002,313.651,354.404,19.147,25.367,19.147 +7850,246.937,331.071,427.631,198.144,553.529,326.931,431.618,136.073,33.555,136.073,343.165,313.691,354.660,19.668,24.227,19.668 +7851,246.969,334.146,430.666,194.877,550.537,329.668,434.600,138.701,39.118,138.701,343.647,313.743,355.566,20.053,24.333,20.053 +7852,247.000,336.956,433.944,192.980,545.529,333.085,437.015,141.572,44.823,141.572,344.523,313.262,354.404,19.669,20.070,19.669 +7853,247.030,339.767,437.376,190.201,541.516,335.777,440.211,144.605,50.667,144.605,344.907,313.452,354.696,19.436,20.110,19.436 +7854,247.061,343.044,441.874,188.050,536.967,339.155,444.297,148.079,56.572,148.079,345.342,313.947,354.508,19.953,20.366,19.953 +7855,247.093,346.636,447.697,184.470,532.016,342.320,449.991,152.015,61.699,152.015,345.989,313.786,355.764,21.171,19.912,21.171 +7856,247.123,346.636,447.697,184.470,532.016,342.320,449.991,152.015,61.699,152.015,345.989,313.786,355.764,21.171,19.912,21.171 +7857,247.153,348.548,451.508,181.355,525.852,344.205,453.486,155.519,67.380,155.519,346.849,313.077,356.395,20.681,19.077,20.681 +7858,247.185,351.486,457.583,178.581,519.014,346.880,459.253,160.065,72.897,160.065,347.381,312.834,357.180,20.258,18.895,20.258 +7859,247.216,354.030,464.779,176.582,511.479,349.503,466.015,164.725,78.579,164.725,348.193,312.614,357.579,20.169,18.772,20.169 +7860,247.247,355.979,472.378,174.700,503.152,351.226,473.214,170.025,83.784,170.025,348.436,311.406,358.087,19.643,18.839,19.643 +7861,247.278,357.460,480.974,173.730,494.447,352.563,481.344,175.678,88.898,175.678,348.802,311.173,358.624,18.813,19.669,18.813 +7862,247.309,357.565,490.174,173.502,485.110,352.785,490.064,1.317,94.194,1.317,349.138,311.364,358.700,18.547,19.554,18.547 +7863,247.341,357.497,499.525,174.612,475.021,352.691,498.902,7.379,99.495,7.379,349.649,311.537,359.342,19.264,20.133,19.264 +7864,247.371,355.928,509.794,176.764,464.599,351.301,508.652,13.861,104.810,13.861,350.488,310.738,360.018,19.153,20.463,19.153 +7865,247.402,352.727,519.899,180.260,454.007,348.457,518.288,20.679,110.050,20.679,350.991,310.987,360.119,19.477,21.009,19.477 +7866,247.434,349.083,529.127,184.955,443.457,344.787,526.760,28.856,115.560,28.856,350.568,310.413,360.378,25.060,19.847,25.060 +7867,247.464,344.053,538.169,191.228,433.043,340.016,535.323,35.181,121.097,35.181,351.201,309.896,361.080,25.324,18.431,25.324 +7868,247.495,336.636,548.619,199.602,423.448,332.850,545.071,43.135,126.674,43.135,350.408,309.998,360.785,24.621,18.396,24.621 +7869,247.526,326.560,558.372,209.079,414.888,323.347,554.306,51.680,132.241,51.680,350.103,310.239,360.468,23.727,18.585,23.727 +7870,247.556,326.560,558.372,209.079,414.888,323.347,554.306,51.680,132.241,51.680,350.103,310.239,360.468,23.727,18.585,23.727 +7871,247.586,315.257,566.407,219.544,406.622,312.452,561.551,59.982,137.041,59.982,350.040,310.121,361.256,22.743,19.545,22.743 +7872,247.617,302.938,572.803,231.689,400.557,300.775,567.492,67.834,142.639,67.834,349.857,310.407,361.326,20.957,19.524,20.957 +7873,247.648,289.623,576.961,245.182,396.787,288.291,571.716,75.760,147.619,75.760,349.492,310.862,360.316,22.308,18.414,22.308 +7874,247.679,277.943,579.369,259.306,395.055,277.459,574.045,84.806,152.932,84.806,349.106,311.672,359.797,22.815,18.284,22.815 +7875,247.709,260.702,579.448,272.993,393.792,260.944,573.394,92.291,159.134,92.291,347.762,311.896,359.879,24.221,18.323,24.221 +7876,247.741,248.074,576.703,287.692,396.038,249.184,571.381,101.779,164.745,101.779,348.151,312.671,359.023,21.578,18.155,21.578 +7877,247.772,235.837,572.011,301.557,399.496,237.879,566.668,110.913,170.939,110.913,346.341,313.691,357.780,19.662,18.373,19.662 +7878,247.804,224.461,565.545,314.631,405.854,227.081,560.929,119.578,176.820,119.578,345.547,313.794,356.164,20.144,17.750,20.144 +7879,247.836,213.899,557.811,326.341,413.386,217.242,553.529,127.981,3.151,127.981,344.341,315.568,355.206,19.941,17.771,19.941 +7880,247.868,205.147,548.701,336.554,422.153,209.071,544.955,136.332,9.554,136.332,343.166,316.137,354.016,19.300,18.219,19.300 +7881,247.898,198.088,541.393,345.001,432.261,203.304,537.629,144.181,15.811,144.181,340.260,317.165,353.124,23.261,18.366,23.261 +7882,247.929,192.146,530.641,351.767,443.072,197.591,527.724,151.827,22.166,151.827,339.402,318.267,351.755,21.949,18.899,21.949 +7883,247.959,187.677,519.456,357.392,454.057,193.630,517.146,158.785,28.301,158.785,338.217,318.663,350.988,21.134,20.319,21.134 +7884,247.989,187.677,519.456,357.392,454.057,193.630,517.146,158.785,28.301,158.785,338.217,318.663,350.988,21.134,20.319,21.134 +7885,248.017,185.121,509.473,360.431,464.719,191.120,507.937,165.641,35.263,165.641,337.097,320.732,349.481,20.321,20.883,20.321 +7886,248.053,183.426,499.446,362.897,476.115,189.951,498.573,172.381,41.878,172.381,335.629,320.524,348.795,19.293,21.105,19.293 +7887,248.085,182.969,489.111,363.430,486.621,189.692,489.024,179.256,48.576,179.256,334.063,321.548,347.509,18.011,21.966,18.011 +7888,248.118,183.559,480.806,363.101,497.126,190.437,481.392,4.870,55.154,4.870,332.946,321.618,346.752,18.954,22.605,18.954 +7889,248.149,184.650,472.700,361.701,506.626,191.625,474.012,10.651,61.928,10.651,332.154,321.412,346.347,18.799,22.412,18.799 +7890,248.180,186.701,465.039,359.415,515.420,193.291,466.918,15.911,68.824,15.911,332.409,322.007,346.113,19.090,22.631,19.090 +7891,248.211,189.030,457.100,356.371,523.286,195.909,459.798,21.413,75.763,21.413,330.349,321.383,345.129,19.550,22.684,19.550 +7892,248.241,192.123,449.829,353.246,530.468,198.906,452.912,24.444,82.539,24.444,330.297,322.013,345.198,26.401,23.171,26.401 +7893,248.273,194.892,443.260,349.657,536.977,202.275,447.424,29.427,89.215,29.427,327.778,320.189,344.732,25.169,22.655,25.169 +7894,248.303,198.500,438.000,345.719,542.524,205.447,442.631,33.690,96.340,33.690,327.550,321.577,344.249,25.516,23.411,25.516 +7895,248.335,201.140,434.480,341.941,547.456,208.030,439.648,36.870,103.213,36.870,326.400,321.688,343.626,25.400,24.067,25.400 +7896,248.366,204.402,430.502,338.169,552.104,211.338,436.405,40.400,109.904,40.400,324.934,322.171,343.148,25.260,24.382,25.260 +7897,248.396,208.659,425.795,334.026,555.760,214.897,431.964,44.683,116.878,44.683,325.960,322.417,343.506,24.768,24.340,24.768 +7898,248.427,211.592,423.135,330.620,558.909,217.856,430.000,47.620,123.447,47.620,323.877,321.458,342.463,23.629,24.573,23.629 +7899,248.457,211.592,423.135,330.620,558.909,217.856,430.000,47.620,123.447,47.620,323.877,321.458,342.463,23.629,24.573,23.629 +7900,248.488,214.194,420.023,327.181,561.576,220.130,427.183,50.339,130.213,50.339,324.970,321.267,343.571,23.181,24.347,23.181 +7901,248.521,217.398,417.943,323.985,564.484,222.985,425.366,53.032,136.736,53.032,325.197,320.579,343.780,23.024,24.930,23.024 +7902,248.554,220.131,415.840,321.208,566.609,225.512,423.643,55.408,143.231,55.408,325.084,320.801,344.040,22.653,25.185,22.653 +7903,248.586,223.409,414.289,318.398,568.401,228.384,422.131,57.609,149.789,57.609,324.888,320.751,343.464,23.153,25.400,23.153 +7904,248.617,225.584,412.743,315.573,570.295,230.245,420.710,59.671,156.125,59.671,325.944,320.650,344.403,22.723,25.199,22.723 +7905,248.648,228.237,411.642,313.192,571.697,232.518,419.534,61.521,162.520,61.521,326.479,320.653,344.435,22.739,25.158,22.739 +7906,248.679,230.712,411.145,310.942,573.236,234.573,418.806,63.249,168.746,63.249,327.393,320.648,344.552,22.513,25.450,22.513 +7907,248.710,232.314,410.559,308.775,574.512,235.853,418.066,64.764,174.776,64.764,328.614,320.862,345.211,21.318,25.095,21.318 +7908,248.742,234.687,409.856,306.972,575.705,237.912,417.228,66.371,0.735,66.371,329.645,320.140,345.739,22.446,24.665,22.446 +7909,248.773,236.630,409.768,305.009,576.693,239.563,416.912,67.677,6.674,67.677,329.884,321.138,345.330,22.195,25.148,22.195 +7910,248.805,238.027,408.964,303.068,577.690,240.790,416.050,68.697,12.435,68.697,331.231,321.707,346.442,21.639,25.365,21.639 +7911,248.838,239.700,409.220,301.595,578.205,242.088,415.680,69.711,17.802,69.711,332.377,321.956,346.151,21.294,24.659,21.294 +7912,248.871,240.603,409.192,299.234,578.793,242.707,415.190,70.665,23.127,70.665,333.472,324.058,346.183,20.114,24.993,20.114 +7913,248.903,242.400,409.200,298.016,579.395,244.210,414.630,71.565,28.418,71.565,335.201,324.422,346.649,20.871,24.235,20.871 +7914,248.934,243.770,409.520,296.845,580.469,245.371,414.593,72.474,33.011,72.474,336.715,323.724,347.354,20.728,23.528,20.728 +7915,248.964,244.766,409.124,295.752,580.877,246.366,414.442,73.250,37.641,73.250,336.107,323.816,347.213,20.509,23.419,20.509 +7916,248.994,245.709,408.437,294.546,581.196,247.317,414.086,74.113,41.610,74.113,335.566,323.298,347.312,20.449,22.194,20.449 +7917,249.024,246.471,407.954,293.208,581.808,248.082,413.910,74.864,45.201,74.864,335.374,323.858,347.712,20.066,21.754,20.066 +7918,249.054,246.471,407.954,293.208,581.808,248.082,413.910,74.864,45.201,74.864,335.374,323.858,347.712,20.066,21.754,20.066 +7919,249.083,247.529,407.523,292.051,582.348,249.139,413.774,75.556,48.225,75.556,334.990,323.790,347.900,20.043,21.886,20.043 +7920,249.115,248.704,407.534,291.209,582.138,250.094,413.312,76.472,49.868,76.472,335.632,323.918,347.519,20.037,21.408,20.037 +7921,249.146,249.961,407.401,289.653,582.705,251.209,412.991,77.421,51.927,77.421,336.574,323.971,348.027,19.867,20.704,19.867 +7922,249.177,251.217,407.492,287.905,583.183,252.323,412.826,78.283,52.927,78.283,337.172,323.792,348.067,19.561,21.117,19.561 +7923,249.208,252.329,406.604,286.384,583.454,253.485,412.671,79.216,53.637,79.216,335.492,323.633,347.844,19.319,20.645,19.319 +7924,249.239,253.877,407.118,284.202,584.125,254.799,412.528,80.322,53.931,80.322,337.217,323.641,348.194,19.158,20.477,19.158 +7925,249.271,255.215,406.496,282.100,584.677,256.086,412.257,81.409,53.184,81.409,337.088,323.600,348.741,18.958,20.941,18.958 +7926,249.302,256.664,405.872,280.357,584.722,257.436,411.761,82.528,52.008,82.528,337.064,323.287,348.944,18.644,21.442,18.644 +7927,249.333,258.442,405.496,278.270,584.700,259.091,411.464,83.788,50.301,83.788,336.584,323.036,348.589,18.571,21.790,18.571 +7928,249.363,260.159,405.834,276.166,585.009,260.652,411.499,85.030,48.180,85.030,337.033,322.807,348.405,18.365,22.671,18.365 +7929,249.393,262.263,405.702,273.571,585.420,262.604,411.159,86.424,45.634,86.424,338.277,322.484,349.211,18.776,24.223,18.776 +7930,249.424,262.263,405.702,273.571,585.420,262.604,411.159,86.424,45.634,86.424,338.277,322.484,349.211,18.776,24.223,18.776 +7931,249.460,265.847,405.064,268.846,585.481,265.934,410.740,89.119,39.690,89.119,338.175,322.020,349.529,18.182,24.933,18.182 +7932,249.503,267.613,404.472,266.192,584.889,267.576,410.432,90.360,36.491,90.360,337.006,321.843,348.925,18.213,25.231,18.213 +7933,249.536,269.922,404.847,263.865,584.981,269.736,410.434,91.909,32.932,91.909,338.112,321.457,349.291,17.957,25.370,17.957 +7934,249.568,271.951,404.354,261.659,584.601,271.614,410.260,93.270,29.570,93.270,337.421,320.515,349.251,18.085,25.649,18.085 +7935,249.605,274.162,404.555,259.306,583.870,273.689,410.230,94.764,25.953,94.764,337.082,319.787,348.470,18.021,25.534,18.021 +7936,249.636,276.461,404.003,257.095,582.751,275.845,409.634,96.242,20.854,96.242,336.928,318.883,348.257,18.219,27.234,18.219 +7937,249.667,279.064,403.664,254.223,582.544,278.219,409.787,97.853,17.526,97.853,336.470,318.145,348.831,18.685,26.299,18.685 +7938,249.697,282.301,403.295,251.285,582.346,281.098,410.336,99.697,13.885,99.697,334.861,317.478,349.147,19.209,25.644,19.209 +7939,249.727,284.026,402.894,248.294,581.293,282.598,410.234,101.012,9.058,101.012,333.968,317.283,348.923,19.006,25.103,19.006 +7940,249.757,284.026,402.894,248.294,581.293,282.598,410.234,101.012,9.058,101.012,333.968,317.283,348.923,19.006,25.103,19.006 +7941,249.787,286.901,403.205,245.012,580.861,285.157,410.851,102.848,5.013,102.848,333.677,316.119,349.361,19.089,24.887,19.089 +7942,249.819,289.784,403.603,241.515,580.008,287.701,411.489,104.797,1.710,104.797,333.139,315.367,349.452,18.862,24.243,18.862 +7943,249.850,293.340,404.022,238.403,578.708,290.922,411.921,107.021,176.906,107.021,333.187,315.566,349.709,19.124,24.289,19.124 +7944,249.882,295.878,404.638,234.652,577.629,293.176,412.594,108.759,172.349,108.759,333.374,315.938,350.178,18.902,24.082,18.902 +7945,249.915,300.289,404.983,230.995,575.911,296.947,413.523,111.371,168.408,111.371,332.170,315.759,350.512,18.908,22.883,18.908 +7946,249.948,303.948,405.510,227.025,574.085,299.939,414.667,113.647,163.856,113.647,330.563,315.672,350.556,19.112,21.764,19.112 +7947,249.978,308.183,405.811,222.899,572.060,303.221,415.901,116.188,159.353,116.188,328.665,315.789,351.153,18.933,21.007,18.933 +7948,250.009,312.984,405.446,218.731,569.991,306.458,417.410,118.610,154.759,118.610,324.662,316.209,351.917,19.394,20.248,19.394 +7949,250.040,319.328,405.045,214.124,567.572,310.248,419.822,121.569,149.802,121.569,317.728,316.211,352.416,19.678,19.347,19.678 +7950,250.071,326.878,401.832,209.713,564.803,313.257,421.559,124.624,144.983,124.624,305.471,316.145,353.416,18.065,19.536,18.065 +7951,250.103,340.870,393.138,205.541,562.049,316.694,424.030,128.047,140.194,128.047,275.935,315.995,354.391,17.496,19.206,17.496 +7952,250.135,372.758,368.056,201.143,558.619,320.557,427.066,131.496,135.365,131.496,197.735,316.129,355.307,17.861,19.150,17.861 +7953,250.165,330.673,425.199,197.002,554.651,325.101,430.884,134.429,130.380,134.429,340.193,317.271,356.114,17.985,18.660,17.985 +7954,250.195,333.317,431.090,193.095,550.152,329.117,434.790,138.621,125.281,138.621,345.451,317.228,356.646,18.741,19.754,18.741 +7955,250.226,336.552,436.607,189.401,545.238,333.077,439.265,142.595,120.708,142.595,348.256,316.963,357.007,19.392,20.161,19.392 +7956,250.257,336.552,436.607,189.401,545.238,333.077,439.265,142.595,120.708,142.595,348.256,316.963,357.007,19.392,20.161,19.392 +7957,250.285,341.406,442.852,185.154,539.091,337.633,445.263,147.426,115.813,147.426,349.064,316.653,358.018,21.255,18.949,21.255 +7958,250.317,344.306,447.317,181.671,532.377,340.498,449.400,151.327,110.556,151.327,349.646,316.011,358.327,21.770,18.844,21.770 +7959,250.348,347.788,453.694,178.718,524.780,344.041,455.312,156.644,105.709,156.644,350.470,315.118,358.633,20.969,18.892,20.969 +7960,250.379,351.771,461.232,176.381,516.134,347.521,462.597,162.191,100.620,162.191,349.699,314.028,358.627,20.063,19.105,20.063 +7961,250.411,354.590,469.594,174.673,506.710,350.199,470.538,167.863,95.528,167.863,349.430,312.733,358.414,20.247,18.430,20.247 +7962,250.442,357.039,478.884,174.073,496.528,352.305,479.371,174.130,90.769,174.130,348.583,311.106,358.103,19.356,19.112,19.356 +7963,250.472,358.023,489.233,174.320,485.439,353.167,489.170,0.739,85.711,0.739,348.048,310.154,357.760,18.347,18.972,18.347 +7964,250.504,358.303,499.523,175.899,474.270,353.226,498.868,7.352,80.655,7.352,347.794,309.558,358.034,19.388,19.272,19.388 +7965,250.535,356.087,510.935,178.947,463.755,351.836,509.830,14.569,75.506,14.569,349.055,305.601,357.840,19.357,19.107,19.357 +7966,250.566,353.602,518.727,186.765,461.407,353.072,518.513,21.961,70.641,21.961,350.049,284.058,351.192,26.028,19.838,26.028 +7967,250.597,348.471,532.882,194.320,454.055,349.042,533.225,30.964,64.799,30.964,348.142,275.225,346.810,25.382,19.906,25.382 +7968,250.628,344.170,543.430,205.117,448.432,345.875,544.738,37.476,59.704,37.476,344.901,263.306,340.604,24.813,19.228,24.813 +7969,250.658,337.907,558.554,215.197,441.049,337.133,557.724,46.965,56.070,46.965,334.725,255.464,336.994,23.446,19.823,23.446 +7970,250.690,337.907,558.554,215.197,441.049,337.133,557.724,46.965,56.070,46.965,334.725,255.464,336.994,23.446,19.823,23.446 +7971,250.721,362.745,619.473,225.379,430.997,324.486,567.649,53.563,52.696,53.563,208.768,257.644,337.602,19.190,19.469,19.190 +7972,250.752,313.028,575.107,239.729,423.361,313.034,575.119,62.149,48.743,62.149,336.878,255.308,336.852,19.015,19.216,19.015 +7973,250.784,298.063,575.616,251.500,415.000,299.116,578.723,71.288,45.000,71.288,347.251,260.922,340.689,20.226,21.920,20.226 +7974,250.815,284.634,578.520,265.380,408.312,284.959,580.392,80.134,40.486,80.134,349.579,266.068,345.779,23.517,20.906,23.517 +7975,250.846,267.861,578.547,265.734,394.444,267.758,573.846,88.736,36.168,88.736,349.400,304.604,358.806,20.885,20.160,20.885 +7976,250.877,253.037,577.573,280.537,394.863,253.694,572.718,97.712,31.522,97.712,349.900,306.991,359.698,23.329,20.618,23.329 +7977,250.909,240.454,573.606,294.767,398.958,241.890,569.121,107.753,26.952,107.753,346.949,309.900,356.366,19.168,18.266,19.168 +7978,250.940,227.720,567.618,309.170,404.588,229.838,563.435,116.862,22.405,116.862,345.728,311.673,355.106,19.823,18.328,19.823 +7979,250.970,216.529,559.745,322.532,411.938,219.289,555.934,125.910,18.020,125.910,344.952,313.390,354.363,19.885,18.320,19.885 +7980,251.001,206.819,550.810,334.318,420.746,210.444,547.144,134.678,13.722,134.678,343.641,315.317,353.952,19.759,18.695,19.759 +7981,251.032,197.966,541.133,344.230,430.622,203.340,537.122,143.262,9.462,143.262,339.807,317.619,353.220,19.866,19.235,19.866 +7982,251.062,191.683,530.922,351.979,441.713,198.071,527.417,151.248,5.511,151.248,337.742,319.315,352.316,21.747,18.694,21.747 +7983,251.093,186.884,519.501,357.958,453.231,193.998,516.772,159.012,1.397,159.012,336.442,320.271,351.681,20.975,18.799,20.975 +7984,251.123,186.884,519.501,357.958,453.231,193.998,516.772,159.012,1.397,159.012,336.442,320.271,351.681,20.975,18.799,20.975 +7985,251.154,181.222,508.767,361.528,465.250,191.191,506.520,167.300,177.856,167.300,330.047,321.561,350.485,18.219,19.286,18.219 +7986,251.186,109.827,504.267,363.518,475.178,189.975,496.252,174.289,174.349,174.289,188.460,322.985,349.556,17.214,19.561,17.214 +7987,251.216,149.953,486.117,364.178,487.056,190.055,486.641,0.749,170.423,0.749,268.016,322.885,348.228,17.476,19.494,17.476 +7988,251.247,169.002,475.304,363.433,498.203,190.881,478.168,7.457,167.320,7.457,303.256,323.341,347.387,18.626,20.927,18.626 +7989,251.278,177.579,466.264,361.504,509.013,192.769,469.979,13.743,163.698,13.743,315.078,323.198,346.354,19.127,22.021,19.127 +7990,251.308,183.309,457.395,358.755,518.708,195.396,461.802,20.034,160.201,20.034,320.205,323.026,345.937,19.132,23.071,19.132 +7991,251.340,189.890,447.140,355.060,527.474,199.861,451.912,25.574,156.801,25.574,323.118,322.489,345.226,25.965,23.766,25.965 +7992,251.371,193.685,442.177,350.800,535.600,202.569,447.254,29.745,153.435,29.745,324.599,321.994,345.065,25.427,24.150,25.427 +7993,251.402,198.227,436.395,346.176,542.805,206.488,442.099,34.624,149.967,34.624,324.261,321.986,344.338,25.353,25.215,25.353 +7994,251.433,202.401,431.865,340.750,549.118,209.842,437.859,38.853,146.793,38.853,324.373,321.750,343.483,25.461,25.055,25.461 +7995,251.463,208.084,425.414,335.649,554.554,214.919,432.153,44.594,143.509,44.594,324.619,321.215,343.815,24.763,24.768,24.763 +7996,251.493,212.218,422.068,330.272,559.441,218.430,429.010,48.180,140.618,48.180,324.925,321.261,343.556,24.318,25.137,24.318 +7997,251.524,212.218,422.068,330.272,559.441,218.430,429.010,48.180,140.618,48.180,324.925,321.261,343.556,24.318,25.137,24.318 +7998,251.554,217.294,418.224,324.734,563.854,222.863,425.523,52.660,137.663,52.660,325.178,321.205,343.539,23.721,24.919,23.721 +7999,251.586,222.121,414.923,319.175,567.662,227.210,422.585,56.407,134.683,56.407,325.065,320.381,343.461,23.828,24.260,23.828 +8000,251.616,226.220,412.353,313.718,571.039,230.724,420.155,60.007,131.864,60.007,326.318,320.962,344.335,22.861,24.141,22.861 +8001,251.647,230.700,409.900,308.435,573.731,234.790,418.079,63.435,129.036,63.435,326.019,321.115,344.308,22.808,23.429,22.808 +8002,251.678,234.593,407.887,303.204,576.018,238.290,416.499,66.764,126.347,66.764,325.635,321.050,344.380,22.093,22.780,22.093 +8003,251.708,237.902,405.613,298.133,578.089,241.390,415.056,69.730,123.840,69.730,325.057,321.176,345.190,20.339,22.445,20.339 +8004,251.739,241.948,403.583,293.258,579.961,245.143,413.854,72.719,121.316,72.719,324.291,321.365,345.804,20.094,21.955,20.094 +8005,251.771,246.036,401.835,288.071,581.040,248.820,412.676,75.593,119.168,75.593,323.284,321.499,345.670,20.197,21.038,20.197 +8006,251.803,249.291,399.735,283.271,582.130,251.798,411.929,78.381,116.911,78.381,321.206,321.150,346.105,18.894,20.057,18.894 +8007,251.834,253.200,397.570,278.737,583.110,255.378,411.235,80.942,114.803,80.942,319.144,321.697,346.819,18.992,19.861,18.992 +8008,251.864,256.800,396.123,274.508,583.723,258.512,411.103,83.480,113.651,83.480,316.483,321.571,346.639,18.480,19.831,18.480 +8009,251.895,260.689,394.197,270.844,584.157,261.858,410.366,85.865,113.044,85.865,315.550,321.564,347.973,18.746,19.846,18.746 +8010,251.926,264.231,392.819,266.674,584.440,264.792,410.580,88.191,112.874,88.191,312.129,321.700,347.667,18.401,20.011,18.401 +8011,251.957,267.500,391.500,263.315,584.328,267.500,410.164,90.000,113.587,90.000,311.000,321.340,348.328,17.000,20.072,17.000 +8012,251.988,267.500,391.500,263.315,584.328,267.500,410.164,90.000,113.587,90.000,311.000,321.340,348.328,17.000,20.072,17.000 +8013,252.016,270.884,390.571,260.120,584.136,270.149,410.052,92.161,115.346,92.161,309.685,321.112,348.675,18.025,19.359,18.025 +8014,252.048,274.195,390.264,256.856,583.896,272.783,410.045,94.086,117.242,94.086,309.426,321.161,349.088,17.954,19.419,17.954 +8015,252.079,277.400,390.700,253.457,583.312,275.351,410.169,96.009,120.181,96.009,309.815,320.672,348.967,18.215,18.797,18.215 +8016,252.109,280.166,392.001,250.494,582.493,277.703,410.014,97.787,123.785,97.787,312.790,320.344,349.150,18.181,19.104,18.181 +8017,252.141,282.777,393.617,247.806,581.848,280.070,410.196,99.273,128.108,99.273,315.617,319.586,349.215,18.168,18.946,18.168 +8018,252.172,285.057,394.891,245.256,580.908,282.101,410.449,100.756,132.990,100.756,317.008,319.031,348.681,18.508,18.969,18.508 +8019,252.204,287.665,396.914,243.114,580.451,284.643,410.683,102.381,138.180,102.381,321.254,318.297,349.447,19.320,19.886,19.320 +8020,252.235,290.147,398.912,240.804,579.532,287.079,411.185,104.036,144.293,104.036,323.785,317.574,349.087,19.645,20.478,19.645 +8021,252.265,292.352,400.083,238.431,578.754,289.199,411.294,105.709,150.255,105.709,326.609,317.281,349.901,19.133,20.838,19.133 +8022,252.296,295.105,401.668,235.994,577.814,291.826,412.011,107.592,156.915,107.592,328.144,316.589,349.846,19.065,21.641,19.065 +8023,252.327,296.993,403.521,233.428,576.917,293.808,412.642,109.250,163.179,109.250,330.672,315.991,349.994,18.942,22.305,18.942 +8024,252.357,300.001,405.679,230.989,575.937,296.881,413.620,111.448,170.134,111.448,333.276,315.610,350.340,18.848,23.088,18.848 +8025,252.389,300.001,405.679,230.989,575.937,296.881,413.620,111.448,170.134,111.448,333.276,315.610,350.340,18.848,23.088,18.848 +8026,252.419,302.761,406.630,228.099,574.957,299.414,414.353,113.429,177.101,113.429,334.602,314.711,351.437,18.963,23.742,18.963 +8027,252.450,305.592,408.742,224.553,573.312,302.186,415.852,115.602,4.399,115.602,335.325,314.532,351.093,18.769,24.159,18.769 +8028,252.481,309.171,410.729,221.500,571.500,305.782,417.069,118.124,11.310,118.124,337.476,314.570,351.853,19.205,25.103,19.205 +8029,252.512,312.040,412.998,218.066,569.234,308.766,418.549,120.530,19.370,120.530,338.848,314.785,351.738,18.928,25.663,18.928 +8030,252.544,315.490,415.653,214.400,567.200,312.226,420.606,123.389,26.565,123.389,340.606,314.838,352.470,18.995,25.044,18.995 +8031,252.575,318.983,418.213,209.876,564.701,315.514,422.994,125.961,33.440,125.961,341.655,315.617,353.469,20.124,24.766,20.124 +8032,252.608,322.990,420.900,206.052,562.018,319.237,425.497,129.226,40.855,129.226,342.796,314.668,354.665,19.619,24.122,19.619 +8033,252.639,327.027,424.525,201.522,558.480,323.019,428.864,132.728,48.296,132.728,343.490,314.818,355.304,19.660,24.386,19.660 +8034,252.672,330.957,428.407,199.484,553.171,327.675,431.539,136.343,56.182,136.343,344.349,314.787,353.423,19.628,20.601,19.628 +8035,252.705,334.982,432.577,194.927,549.530,331.242,435.698,140.156,63.722,140.156,345.446,316.632,355.187,19.491,19.923,19.491 +8036,252.736,338.716,437.605,190.510,543.493,335.137,440.173,144.340,71.428,144.340,346.672,314.968,355.483,19.399,18.549,19.399 +8037,252.766,342.573,442.983,186.352,537.529,338.801,445.288,148.570,78.939,148.570,347.523,314.579,356.363,20.194,18.699,20.194 +8038,252.797,346.144,449.786,182.294,530.853,342.305,451.719,153.277,86.322,153.277,348.413,314.765,357.009,20.309,18.426,20.309 +8039,252.828,348.869,455.243,178.806,522.758,345.075,456.799,157.700,93.871,157.700,349.524,314.041,357.725,20.687,18.424,20.687 +8040,252.858,348.869,455.243,178.806,522.758,345.075,456.799,157.700,93.871,157.700,349.524,314.041,357.725,20.687,18.424,20.687 +8041,252.889,352.384,462.462,175.956,514.600,347.933,463.807,163.191,101.482,163.191,349.336,313.780,358.636,20.571,18.804,20.571 +8042,252.922,354.150,471.222,173.764,505.280,350.247,471.991,168.853,108.997,168.853,351.222,313.701,359.177,20.425,18.554,20.425 +8043,252.953,355.883,480.569,172.601,495.278,351.984,480.888,175.326,116.171,175.326,352.096,313.073,359.919,18.793,18.883,18.793 +8044,252.983,356.595,490.568,172.846,484.742,352.448,490.454,1.580,123.930,1.580,351.087,312.021,359.383,18.627,18.556,18.627 +8045,253.013,356.108,500.758,174.615,474.163,352.566,500.243,8.286,131.211,8.286,352.543,311.377,359.703,19.397,18.961,19.397 +8046,253.045,354.223,511.687,177.094,462.829,350.562,510.682,15.345,138.030,15.345,352.301,310.920,359.894,19.148,18.995,19.148 +8047,253.075,351.537,521.286,180.876,451.024,347.686,519.582,23.860,144.303,23.860,352.149,310.164,360.571,25.589,21.159,25.589 +8048,253.106,346.647,531.588,186.999,440.344,343.487,529.692,30.964,151.549,30.964,352.944,309.181,360.314,25.039,19.552,25.039 +8049,253.139,340.361,542.155,194.607,429.699,337.362,539.765,38.550,157.704,38.550,352.807,308.793,360.475,25.136,16.643,25.136 +8050,253.171,331.548,552.705,203.524,420.209,328.783,549.728,47.121,164.570,47.121,352.160,308.378,360.286,24.235,16.345,24.235 +8051,253.202,320.172,562.367,214.356,411.830,317.952,559.055,56.160,171.317,56.160,351.974,307.913,359.950,23.379,16.513,23.379 +8052,253.232,307.549,569.148,226.547,404.251,305.900,565.651,64.754,177.835,64.754,351.926,307.385,359.657,22.281,17.417,22.281 +8053,253.262,294.562,574.954,239.703,399.561,293.360,571.015,73.020,4.180,73.020,351.060,307.446,359.298,21.545,17.339,21.545 +8054,253.293,278.845,578.524,253.597,396.114,278.159,574.037,81.302,10.784,81.302,350.106,308.267,359.183,24.314,17.682,24.314 +8055,253.323,278.845,578.524,253.597,396.114,278.159,574.037,81.302,10.784,81.302,350.106,308.267,359.183,24.314,17.682,24.314 +8056,253.352,268.101,578.648,267.832,395.295,268.193,574.268,91.198,17.103,91.198,349.091,308.349,357.854,23.493,17.866,23.493 +8057,253.382,253.649,577.738,282.040,396.409,254.452,573.226,100.093,23.499,100.093,348.666,309.013,357.832,22.819,18.022,22.819 +8058,253.413,239.261,573.424,296.224,398.614,240.936,568.417,108.503,30.141,108.503,346.585,310.097,357.143,19.336,19.639,19.336 +8059,253.445,227.256,567.897,309.262,403.674,229.789,562.939,117.063,36.501,117.063,344.835,311.215,355.970,19.922,20.160,19.922 +8060,253.477,216.796,560.352,322.153,409.286,220.265,555.491,125.510,42.447,125.510,344.445,312.438,356.388,19.753,24.297,19.753 +8061,253.507,207.357,552.211,332.331,418.850,211.339,548.047,133.721,47.965,133.721,342.470,313.001,353.992,19.567,25.022,19.567 +8062,253.542,199.583,542.737,341.859,427.748,204.494,538.853,141.667,54.941,141.667,340.801,314.670,353.324,19.720,24.356,19.720 +8063,253.573,193.895,533.848,348.985,438.570,199.147,530.728,149.286,60.680,149.286,339.563,315.291,351.780,21.636,24.879,21.636 +8064,253.605,188.639,522.965,354.556,449.690,194.283,520.505,156.448,66.861,156.448,338.120,316.051,350.435,20.520,24.466,20.520 +8065,253.636,184.708,513.190,358.533,460.795,191.448,511.160,163.237,73.051,163.237,334.943,316.950,349.022,20.292,23.987,20.292 +8066,253.667,182.449,503.718,361.287,471.633,189.836,502.384,169.765,79.439,169.765,333.360,317.462,348.374,20.406,24.726,20.406 +8067,253.697,181.410,493.536,362.302,482.057,189.122,493.063,176.489,85.365,176.489,331.604,317.552,347.057,18.413,24.137,18.413 +8068,253.728,181.523,484.472,362.658,492.051,189.731,484.823,2.450,91.348,2.450,329.725,318.359,346.156,18.924,24.676,18.924 +8069,253.759,182.225,475.904,361.518,501.502,190.492,477.098,8.216,97.461,8.216,328.810,319.380,345.515,18.673,24.883,18.673 +8070,253.790,182.225,475.904,361.518,501.502,190.492,477.098,8.216,97.461,8.216,328.810,319.380,345.515,18.673,24.883,18.673 +8071,253.820,183.706,467.177,359.714,510.314,192.079,469.270,14.036,103.339,14.036,327.908,319.913,345.170,19.403,25.048,19.403 +8072,253.852,185.595,460.708,357.419,518.328,193.928,463.502,18.536,109.654,18.536,327.298,320.394,344.877,18.990,25.091,18.990 +8073,253.885,189.198,451.624,354.738,525.601,197.501,455.084,22.620,115.887,22.620,326.539,320.714,344.528,25.769,24.926,25.769 +8074,253.916,191.800,446.400,351.343,532.652,200.067,450.534,26.565,122.005,26.565,325.571,322.133,344.058,25.938,25.228,25.938 +8075,253.948,195.063,441.037,348.308,538.035,203.067,445.806,30.784,128.346,30.784,325.325,321.392,343.960,25.883,25.085,25.883 +8076,253.978,198.467,436.377,345.151,543.149,206.306,441.793,34.641,134.718,34.641,324.634,321.057,343.692,25.609,25.031,25.609 +8077,254.010,201.717,432.724,341.694,547.860,209.189,438.580,38.089,141.116,38.089,324.416,321.409,343.403,25.441,25.261,25.441 +8078,254.041,204.746,429.357,338.348,551.830,211.835,435.595,41.348,147.465,41.348,324.639,321.512,343.525,24.473,24.914,24.473 +8079,254.072,209.000,425.500,335.004,555.508,215.628,432.128,45.000,154.106,45.000,324.562,321.587,343.309,24.749,25.041,24.749 +8080,254.103,212.283,423.061,332.088,558.664,218.509,429.910,47.726,160.537,47.726,324.834,321.671,343.345,24.283,24.649,24.283 +8081,254.133,214.970,420.939,328.911,561.813,220.751,427.919,50.366,167.229,50.366,326.092,322.057,344.219,23.228,25.136,23.228 +8082,254.164,218.315,419.019,325.951,564.044,223.503,425.865,52.845,173.922,52.845,326.833,321.907,344.012,23.941,24.422,23.941 +8083,254.194,220.520,417.688,323.474,566.780,225.602,424.933,54.951,0.535,54.951,326.962,321.117,344.661,22.886,24.448,22.886 +8084,254.224,220.520,417.688,323.474,566.780,225.602,424.933,54.951,0.535,54.951,326.962,321.117,344.661,22.886,24.448,22.886 +8085,254.254,223.199,416.024,320.707,568.252,227.703,422.917,56.837,7.407,56.837,328.605,322.229,345.075,23.298,23.482,23.298 +8086,254.286,225.548,415.079,318.463,570.145,229.689,421.881,58.671,14.281,58.671,329.684,323.062,345.610,23.212,23.699,23.212 +8087,254.316,227.654,414.269,316.420,571.317,231.343,420.725,60.255,20.978,60.255,331.049,323.652,345.920,22.946,23.551,22.946 +8088,254.347,229.921,414.584,314.026,572.896,233.042,420.349,61.569,27.897,61.569,332.297,324.766,345.409,22.707,23.290,22.707 +8089,254.378,231.576,414.474,312.202,573.633,234.261,419.709,62.850,35.151,62.850,333.294,325.154,345.061,22.086,21.123,22.086 +8090,254.410,232.204,413.125,310.790,575.011,235.149,419.137,63.905,41.987,63.905,333.126,324.522,346.515,21.517,20.069,21.517 +8091,254.446,233.299,411.268,309.302,575.906,236.578,418.253,64.855,48.504,64.855,331.797,324.805,347.229,22.188,19.992,22.188 +8092,254.477,232.058,409.168,306.891,577.238,236.469,418.390,64.440,56.149,64.440,326.926,325.339,347.371,21.534,20.661,21.534 +8093,254.508,227.418,395.231,305.382,578.285,238.084,418.305,65.191,62.628,65.191,296.067,324.720,346.906,20.278,18.517,20.278 +8094,254.542,205.068,342.768,303.865,578.549,237.313,418.474,66.930,69.963,66.930,182.131,324.913,346.705,17.753,18.579,17.753 +8095,254.574,227.500,393.327,302.765,579.600,237.993,418.418,67.306,77.234,67.306,292.995,325.607,347.387,17.814,18.462,17.814 +8096,254.607,232.259,398.368,301.578,579.592,240.025,417.288,67.684,84.333,67.684,306.134,325.273,347.039,21.643,18.505,21.643 +8097,254.639,233.784,402.070,300.761,579.006,239.675,416.674,68.030,91.423,68.030,315.299,324.273,346.794,21.130,18.423,21.130 +8098,254.671,235.158,404.223,299.333,579.124,240.125,416.567,68.082,98.455,68.082,319.206,324.903,345.817,21.832,20.558,21.832 +8099,254.701,235.600,405.445,299.529,577.870,239.779,415.818,68.057,105.396,68.057,322.915,322.769,345.280,21.854,21.183,21.854 +8100,254.731,235.610,406.144,300.702,577.372,239.670,416.151,67.917,113.334,67.917,323.079,321.824,344.678,21.980,21.029,21.980 +8101,254.761,235.507,406.746,301.208,576.917,239.380,416.208,67.738,120.489,67.738,323.857,321.400,344.306,22.141,21.938,22.141 +8102,254.791,235.507,406.746,301.208,576.917,239.380,416.208,67.738,120.489,67.738,323.857,321.400,344.306,22.141,21.938,22.141 +8103,254.823,235.129,407.392,302.322,576.251,238.816,416.139,67.148,127.910,67.148,325.432,320.827,344.416,21.748,23.746,21.748 +8104,254.856,234.564,407.826,303.430,575.909,238.259,416.433,66.762,134.750,66.762,325.770,320.344,344.503,22.095,23.541,22.095 +8105,254.888,233.552,408.366,304.912,575.029,237.240,416.666,66.038,142.046,66.038,326.231,319.959,344.396,21.627,25.137,21.627 +8106,254.920,232.889,409.168,306.453,574.581,236.592,417.200,65.247,148.932,65.247,326.656,319.856,344.345,22.192,25.287,22.192 +8107,254.950,231.711,409.712,308.143,573.928,235.585,417.752,64.269,155.754,64.269,326.529,319.948,344.380,22.174,25.182,22.174 +8108,254.980,230.551,410.726,310.225,573.219,234.536,418.641,63.275,162.593,63.275,326.483,319.695,344.206,22.492,25.454,22.492 +8109,255.012,229.402,412.052,312.558,572.456,233.490,419.797,62.176,169.303,62.176,326.313,320.237,343.829,22.822,25.188,22.822 +8110,255.042,227.708,412.774,314.751,571.528,231.870,420.267,60.945,175.935,60.945,327.809,320.324,344.953,23.214,25.059,23.214 +8111,255.074,225.988,414.102,316.951,570.710,230.267,421.288,59.230,2.314,59.230,328.742,320.587,345.469,22.937,24.636,22.937 +8112,255.107,224.334,415.739,319.763,569.040,228.726,422.668,57.633,8.746,57.633,328.327,322.057,344.734,23.210,24.177,23.210 +8113,255.139,221.979,417.514,322.360,567.145,226.411,424.062,55.901,14.896,55.901,328.735,322.851,344.548,22.821,23.612,22.821 +8114,255.171,219.757,419.041,325.196,565.473,224.573,425.663,53.973,20.376,53.973,328.126,323.492,344.504,23.086,22.445,23.086 +8115,255.202,217.574,420.834,327.816,563.436,222.484,427.089,51.870,25.463,51.870,328.677,324.643,344.579,23.455,21.583,23.455 +8116,255.233,215.171,422.277,330.576,561.002,220.274,428.325,49.844,30.005,49.844,329.242,325.487,345.069,24.505,20.552,24.505 +8117,255.263,210.735,423.217,333.118,559.084,217.878,430.837,46.848,33.544,46.848,323.869,325.894,344.757,24.303,19.533,24.303 +8118,255.293,204.887,424.181,335.506,557.172,215.010,433.722,43.305,36.368,43.305,316.896,326.173,344.717,23.671,19.932,23.671 +8119,255.323,204.887,424.181,335.506,557.172,215.010,433.722,43.305,36.368,43.305,316.896,326.173,344.717,23.671,19.932,23.671 +8120,255.351,192.886,417.632,338.389,554.379,213.490,435.458,40.865,38.431,40.865,290.034,325.935,344.526,22.195,18.792,22.195 +8121,255.382,144.008,384.428,341.281,551.840,209.904,439.919,40.101,40.557,40.101,172.870,325.182,345.167,17.472,20.206,17.472 +8122,255.413,181.991,423.248,344.119,547.767,207.195,442.554,37.451,42.217,37.451,281.861,325.709,345.357,18.310,18.564,18.310 +8123,255.444,191.773,436.889,347.190,543.792,204.734,445.691,34.182,44.260,34.182,314.592,325.370,345.926,18.483,18.518,18.483 +8124,255.476,194.508,441.387,350.062,538.879,203.594,446.768,30.633,46.856,30.633,324.807,325.282,345.925,24.886,18.486,24.886 +8125,255.507,192.300,446.900,353.211,532.910,200.766,451.133,26.565,50.268,26.565,326.913,325.084,345.844,25.491,19.036,25.491 +8126,255.541,188.748,455.929,355.891,526.350,196.581,459.111,22.109,53.881,22.109,328.896,324.077,345.805,19.456,19.540,19.456 +8127,255.575,186.473,463.771,358.635,518.532,193.713,465.954,16.777,58.392,16.777,331.034,323.368,346.157,19.451,20.964,19.451 +8128,255.607,184.577,471.203,361.034,509.967,191.784,472.688,11.646,62.731,11.646,331.864,322.107,346.582,18.871,22.212,18.871 +8129,255.639,183.237,479.264,362.677,500.388,190.357,480.020,6.062,67.443,6.062,332.696,321.078,347.014,18.639,23.514,18.639 +8130,255.670,182.500,488.000,362.853,490.384,189.427,488.000,0.000,71.878,0.000,333.000,320.007,346.853,18.000,23.915,18.000 +8131,255.701,182.188,497.659,362.518,479.614,189.544,496.850,173.723,76.701,173.723,332.842,318.196,347.643,19.224,24.471,19.224 +8132,255.736,182.846,507.997,360.413,468.513,190.216,506.296,167.005,81.431,167.005,333.542,317.403,348.669,19.863,24.260,19.863 +8133,255.782,185.106,518.676,357.215,457.219,192.561,515.982,160.133,86.186,160.133,333.793,315.766,349.648,20.533,24.213,20.533 +8134,255.815,189.079,529.591,352.306,445.549,196.437,525.831,152.935,91.005,152.935,334.130,315.145,350.656,21.768,23.260,21.768 +8135,255.847,192.960,539.647,345.435,434.548,200.763,534.341,145.784,96.277,145.784,332.623,314.185,351.495,19.350,22.216,19.350 +8136,255.884,196.489,553.210,337.972,424.081,207.538,543.265,138.013,101.174,138.013,323.630,313.982,353.361,19.697,22.794,19.697 +8137,255.916,201.231,567.772,328.026,414.725,215.035,551.458,130.236,105.751,130.236,311.990,313.709,354.731,19.320,21.026,19.320 +8138,255.946,203.511,591.235,315.789,406.165,223.596,558.513,121.541,110.681,121.541,279.348,314.151,356.136,17.704,19.907,17.704 +8139,255.977,218.864,601.646,304.300,399.900,234.807,564.734,113.361,116.565,113.361,277.339,313.497,357.754,18.873,17.441,18.873 +8140,256.008,244.001,577.858,290.453,395.325,246.143,569.526,104.414,119.859,104.414,342.292,313.448,359.496,19.728,20.637,19.728 +8141,256.040,256.228,579.378,277.899,393.430,256.904,572.306,95.458,124.992,95.458,345.915,313.766,360.125,23.086,20.645,23.086 +8142,256.073,272.891,580.060,262.897,392.749,272.626,572.905,87.879,129.857,87.879,346.466,313.438,360.785,22.429,18.747,22.429 +8143,256.104,286.735,578.285,248.700,394.698,285.483,571.749,79.156,134.732,79.156,348.310,312.577,361.619,22.548,18.953,22.548 +8144,256.135,299.491,574.075,234.701,399.147,297.484,568.454,70.346,139.730,70.346,349.184,312.813,361.121,21.189,19.388,21.189 +8145,256.166,312.555,567.782,222.015,405.521,310.035,563.095,61.736,144.638,61.736,350.293,312.366,360.935,22.663,19.230,22.663 +8146,256.196,323.682,559.891,210.444,413.601,320.913,556.176,53.294,149.482,53.294,351.398,311.661,360.665,23.014,18.571,23.014 +8147,256.227,333.750,550.250,200.050,422.764,330.703,547.204,45.000,154.604,45.000,352.139,310.977,360.756,24.749,18.286,24.749 +8148,256.259,341.007,540.590,190.964,432.630,337.789,538.135,37.333,159.864,37.333,353.358,310.643,361.454,24.999,17.933,24.999 +8149,256.289,341.007,540.590,190.964,432.630,337.789,538.135,37.333,159.864,37.333,353.358,310.643,361.454,24.999,17.933,24.999 +8150,256.317,347.730,529.372,184.648,444.332,344.439,527.520,29.367,164.461,29.367,352.551,309.930,360.104,25.179,19.156,25.179 +8151,256.348,351.764,518.645,179.013,454.080,348.244,517.219,22.051,170.637,22.051,353.517,309.732,361.112,25.119,20.075,25.119 +8152,256.378,355.140,511.632,175.428,463.016,349.888,510.213,15.124,175.791,15.124,350.583,308.374,361.464,19.307,20.948,19.307 +8153,256.410,360.414,502.260,173.976,472.562,351.810,500.960,8.596,179.288,8.596,342.757,308.113,360.161,18.718,19.359,18.718 +8154,256.441,429.454,495.366,172.278,482.433,352.161,491.298,3.013,3.141,3.013,205.400,306.691,360.201,17.817,19.148,17.817 +8155,256.472,385.718,481.506,172.915,491.677,352.093,483.133,177.230,7.125,177.230,291.433,307.358,358.762,17.673,19.722,17.673 +8156,256.504,366.543,472.513,173.433,500.831,350.949,474.921,171.221,11.459,171.221,327.225,307.914,358.782,21.662,19.231,21.662 +8157,256.535,359.941,465.265,176.024,508.137,350.054,467.737,165.964,16.941,165.964,336.882,306.593,357.264,20.373,20.589,20.373 +8158,256.566,355.828,457.942,177.514,516.966,347.259,460.926,160.803,22.426,160.803,339.320,308.139,357.467,21.021,21.789,21.021 +8159,256.596,350.871,451.840,180.120,524.786,344.413,454.693,156.171,29.358,156.171,343.093,309.082,357.213,20.338,23.478,20.338 +8160,256.626,346.689,447.166,182.610,531.953,341.382,449.996,151.928,35.433,151.928,345.294,310.623,357.322,20.000,23.786,20.000 +8161,256.655,346.689,447.166,182.610,531.953,341.382,449.996,151.928,35.433,151.928,345.294,310.623,357.322,20.000,23.786,20.000 +8162,256.684,343.100,441.025,186.021,538.710,337.701,444.445,147.646,41.840,147.646,344.376,310.922,357.158,19.881,24.230,19.881 +8163,256.715,339.161,436.533,191.262,542.768,335.170,439.437,143.957,48.424,143.957,344.448,311.754,354.319,19.334,20.246,19.334 +8164,256.746,335.723,433.052,195.086,547.744,332.193,435.944,140.673,55.159,140.673,344.692,313.764,353.820,19.562,20.567,19.562 +8165,256.778,332.137,429.566,198.492,552.839,328.635,432.799,137.291,61.571,137.291,344.566,315.264,354.100,19.557,20.140,19.557 +8166,256.810,328.271,426.801,201.076,556.980,325.089,430.040,134.488,68.398,134.488,345.844,316.425,354.924,19.375,19.800,19.375 +8167,256.840,324.802,424.441,203.693,560.313,321.718,427.927,131.496,74.876,131.496,345.403,317.239,354.713,20.165,19.751,20.165 +8168,256.874,321.930,422.310,206.223,563.317,318.962,425.945,129.237,81.469,129.237,346.035,318.635,355.421,19.518,19.630,19.518 +8169,256.906,318.800,420.600,208.049,565.961,315.878,424.496,126.870,87.852,126.870,346.000,318.451,355.739,19.600,20.311,19.600 +8170,256.938,316.332,418.992,211.142,567.585,313.721,422.745,124.824,94.236,124.824,345.815,319.754,354.959,19.523,18.763,19.523 +8171,256.969,314.134,416.645,213.460,569.186,311.247,421.104,122.916,100.984,122.916,344.272,319.870,354.897,19.064,19.381,19.064 +8172,256.999,311.924,415.931,214.963,570.141,309.375,420.115,121.345,106.982,121.345,344.686,320.404,354.485,18.385,19.094,18.385 +8173,257.030,311.815,412.742,216.230,570.945,307.918,419.511,119.932,112.960,119.932,338.350,319.860,353.971,17.648,19.032,17.648 +8174,257.060,344.935,348.838,217.870,571.767,305.911,418.214,119.358,119.249,119.358,194.797,319.267,353.993,17.050,19.300,17.050 +8175,257.092,344.935,348.838,217.870,571.767,305.911,418.214,119.358,119.249,119.358,194.797,319.267,353.993,17.050,19.300,17.050 +8176,257.124,334.349,362.495,219.327,572.018,304.712,417.535,118.301,125.640,118.301,227.974,318.868,352.997,17.068,19.474,17.068 +8177,257.157,318.700,387.928,220.627,572.164,303.760,416.596,117.525,132.032,117.525,288.100,318.127,352.755,17.286,19.521,17.286 +8178,257.190,312.645,396.058,221.326,572.307,302.720,416.175,116.259,138.013,116.259,307.198,317.312,352.061,18.092,19.474,18.092 +8179,257.221,310.189,400.307,222.684,572.459,302.734,415.917,115.530,144.498,115.530,316.918,317.005,351.515,20.054,19.625,20.054 +8180,257.252,308.843,402.830,223.447,572.648,302.594,415.953,115.463,150.376,115.463,321.934,316.422,351.004,20.035,20.045,20.035 +8181,257.283,306.982,404.630,224.408,572.935,301.884,415.520,115.084,156.413,115.084,326.781,315.957,350.829,19.347,20.988,19.347 +8182,257.313,306.018,405.636,224.839,572.992,301.634,415.061,114.944,162.378,114.944,330.384,315.377,351.173,18.957,21.775,18.957 +8183,257.343,305.986,406.905,225.093,573.025,301.967,415.446,115.201,168.366,115.201,331.749,315.155,350.627,18.842,22.211,18.842 +8184,257.373,305.312,407.315,224.942,573.106,301.563,415.330,115.067,173.853,115.067,333.060,315.055,350.757,19.300,23.021,19.300 +8185,257.404,305.510,408.222,224.992,573.191,302.073,415.415,115.540,179.409,115.540,335.237,314.045,351.182,19.130,23.535,19.130 +8186,257.435,307.394,409.457,224.217,572.611,303.979,416.240,116.723,5.194,116.723,335.883,314.521,351.072,19.176,23.811,19.176 +8187,257.466,307.162,409.597,223.104,572.463,303.858,416.139,116.801,10.934,116.801,337.229,314.548,351.886,18.864,24.970,18.864 +8188,257.496,308.809,411.025,222.165,571.450,305.723,416.831,117.997,16.699,117.997,338.346,315.125,351.496,19.202,25.670,19.202 +8189,257.527,309.831,411.838,220.422,570.688,306.752,417.418,118.887,22.567,118.887,339.060,315.921,351.807,19.051,25.820,19.051 +8190,257.559,311.282,413.373,218.749,570.068,308.298,418.489,120.256,27.192,120.256,340.257,315.340,352.103,19.147,25.664,19.147 +8191,257.590,311.282,413.373,218.749,570.068,308.298,418.489,120.256,27.192,120.256,340.257,315.340,352.103,19.147,25.664,19.147 +8192,257.619,313.000,414.500,216.532,569.253,309.995,419.383,121.608,31.891,121.608,341.777,316.189,353.244,18.999,25.151,18.999 +8193,257.650,315.342,416.055,214.237,568.187,312.137,420.922,123.366,37.131,123.366,342.013,316.204,353.669,19.290,25.205,19.290 +8194,257.680,317.368,417.407,211.829,566.636,314.060,422.122,125.054,42.089,125.054,342.516,316.495,354.034,18.815,24.394,18.815 +8195,257.711,319.740,419.180,209.143,564.866,316.378,423.663,126.870,46.784,126.870,343.400,315.789,354.607,19.800,24.641,19.800 +8196,257.744,322.465,421.159,207.958,561.088,319.666,424.603,129.094,52.125,129.094,343.867,316.179,352.742,19.645,20.348,19.645 +8197,257.775,325.925,424.038,204.758,558.736,322.968,427.342,131.834,57.011,131.834,344.613,315.970,353.483,20.189,20.513,20.189 +8198,257.807,328.500,426.509,201.502,556.156,325.381,429.687,134.465,61.750,134.465,345.159,316.766,354.064,19.375,20.642,19.375 +8199,257.839,331.985,429.806,197.855,553.285,328.415,433.085,137.432,66.186,137.432,345.237,317.181,354.931,19.890,20.316,19.890 +8200,257.870,335.244,433.188,194.091,548.792,331.656,436.138,140.572,71.288,140.572,346.321,315.919,355.611,19.620,19.248,19.620 +8201,257.901,338.368,437.436,190.152,544.214,334.757,440.048,144.118,76.034,144.118,347.517,315.784,356.432,19.342,19.580,19.342 +8202,257.931,341.766,442.333,186.966,538.997,338.171,444.593,147.848,80.380,147.848,348.016,315.317,356.510,19.763,19.151,19.763 +8203,257.961,344.668,446.483,183.524,533.041,340.844,448.581,151.248,85.043,151.248,348.378,315.072,357.102,20.870,18.776,20.870 +8204,257.990,344.668,446.483,183.524,533.041,340.844,448.581,151.248,85.043,151.248,348.378,315.072,357.102,20.870,18.776,20.870 +8205,258.020,347.769,452.165,180.274,526.005,343.875,453.923,155.703,89.602,155.703,348.996,314.048,357.539,20.728,18.451,20.728 +8206,258.051,350.907,458.845,177.484,519.069,346.712,460.347,160.296,94.010,160.296,349.324,313.544,358.236,20.909,18.806,20.909 +8207,258.082,353.176,466.247,175.031,511.005,348.988,467.329,165.510,98.372,165.510,350.050,313.976,358.702,20.299,19.186,20.299 +8208,258.113,355.249,474.401,173.407,502.047,351.023,475.064,171.091,102.813,171.091,350.749,313.373,359.304,19.294,19.476,19.294 +8209,258.144,356.979,483.106,172.959,492.454,352.145,483.361,176.987,107.294,176.987,349.148,312.769,358.831,19.131,20.037,19.131 +8210,258.176,357.141,492.751,173.244,482.494,352.633,492.520,2.936,111.661,2.936,350.309,312.339,359.336,19.052,20.499,19.052 +8211,258.209,356.531,502.810,175.117,472.311,352.318,502.113,9.392,116.768,9.392,350.834,311.712,359.376,19.064,19.895,19.064 +8212,258.240,354.220,513.242,177.539,461.216,350.198,512.074,16.197,120.806,16.197,351.609,310.922,359.985,19.275,20.224,19.275 +8213,258.273,352.031,521.680,181.975,450.434,348.112,519.938,23.962,125.972,23.962,351.513,310.850,360.091,25.587,18.979,25.587 +8214,258.304,347.191,532.015,187.269,439.415,343.337,529.702,30.964,130.166,30.964,351.572,310.350,360.560,24.867,18.586,24.867 +8215,258.335,340.837,542.811,194.737,428.753,337.099,539.833,38.541,134.635,38.541,351.561,309.770,361.121,24.671,18.177,24.671 +8216,258.365,332.169,552.657,203.294,418.969,328.785,549.044,46.865,138.635,46.865,351.545,309.953,361.445,24.121,19.351,24.121 +8217,258.395,321.185,562.325,213.942,410.928,318.353,558.178,55.670,143.206,55.670,350.925,310.006,360.968,23.344,19.014,23.344 +8218,258.425,321.185,562.325,213.942,410.928,318.353,558.178,55.670,143.206,55.670,350.925,310.006,360.968,23.344,19.014,23.344 +8219,258.454,309.338,569.609,225.683,404.083,307.057,564.956,63.886,147.783,63.886,350.171,309.720,360.536,21.585,18.624,21.585 +8220,258.486,296.567,575.013,239.053,399.389,295.074,570.374,72.160,152.171,72.160,350.108,310.001,359.853,20.833,18.252,20.833 +8221,258.517,281.539,578.817,252.676,396.096,280.648,573.758,80.017,157.048,80.017,349.366,310.825,359.641,23.463,18.027,23.463 +8222,258.547,269.802,579.505,266.702,394.176,269.760,573.613,89.595,162.129,89.595,347.126,311.240,358.909,22.014,18.306,22.014 +8223,258.579,253.113,577.879,281.462,395.204,253.848,572.482,97.752,167.114,97.752,347.870,311.592,358.764,23.329,18.259,23.329 +8224,258.609,241.034,573.854,295.968,398.031,242.643,568.722,107.406,172.455,107.406,346.897,312.233,357.653,19.243,18.422,19.243 +8225,258.640,228.686,568.346,309.621,403.412,231.037,563.563,116.175,177.614,116.175,346.126,313.436,356.785,19.942,18.026,19.942 +8226,258.672,217.510,560.507,321.943,410.630,220.350,556.427,124.841,2.899,124.841,345.460,314.660,355.402,20.100,17.825,20.100 +8227,258.704,208.010,552.036,332.861,419.445,211.531,548.318,133.442,8.337,133.442,343.758,315.808,353.999,19.599,17.878,19.599 +8228,258.734,199.939,543.056,342.412,428.853,204.688,539.300,141.662,14.036,141.662,340.965,316.994,353.073,20.358,18.918,20.358 +8229,258.764,192.760,533.141,350.225,439.680,198.835,529.568,149.534,19.573,149.534,338.030,317.966,352.127,19.875,18.886,19.875 +8230,258.795,188.964,521.917,355.973,451.106,194.427,519.583,156.861,25.463,156.861,339.039,318.624,350.919,21.024,19.132,21.024 +8231,258.825,188.964,521.917,355.973,451.106,194.427,519.583,156.861,25.463,156.861,339.039,318.624,350.919,21.024,19.132,21.024 +8232,258.854,185.925,511.736,360.072,462.394,191.783,510.062,164.055,30.816,164.055,337.632,319.496,349.818,20.055,20.521,20.055 +8233,258.888,183.496,501.473,362.500,473.328,189.954,500.456,171.045,36.968,171.045,336.257,321.194,349.332,19.134,21.143,19.134 +8234,258.919,182.913,491.057,363.438,484.606,189.666,490.816,177.955,42.839,177.955,334.251,322.745,347.766,18.024,21.225,18.024 +8235,258.950,183.053,482.230,363.296,495.364,190.077,482.715,3.956,48.769,3.956,333.279,322.107,347.359,19.130,21.852,19.130 +8236,258.980,184.282,473.421,361.939,505.896,191.425,474.696,10.115,54.811,10.115,332.173,322.220,346.686,18.774,21.416,18.774 +8237,259.011,186.559,465.506,359.755,515.137,193.416,467.431,15.675,60.843,15.675,331.841,322.473,346.084,19.340,21.722,19.340 +8238,259.043,189.125,458.042,356.522,523.630,195.740,460.557,20.825,66.894,20.825,331.251,322.486,345.405,19.221,21.609,19.221 +8239,259.074,192.953,447.477,353.376,531.341,200.215,451.037,26.114,73.101,26.114,329.572,322.315,345.747,25.512,22.443,25.512 +8240,259.106,196.280,441.683,349.459,538.121,203.468,445.985,30.897,79.046,30.897,328.418,322.435,345.171,25.385,22.328,25.385 +8241,259.137,199.425,437.717,344.956,544.417,206.360,442.453,34.330,85.061,34.330,327.118,322.563,343.913,25.318,21.734,25.318 +8242,259.168,202.404,433.417,340.327,549.949,209.097,438.635,37.942,91.332,37.942,326.895,322.215,343.870,25.610,21.576,25.610 +8243,259.198,206.999,428.200,336.303,554.304,213.422,434.173,42.923,97.533,42.923,326.044,322.482,343.586,24.180,22.703,24.180 +8244,259.229,210.177,424.933,331.937,558.345,216.365,431.342,46.005,103.496,46.005,325.467,322.366,343.285,23.666,22.676,23.666 +8245,259.259,213.831,420.736,327.215,562.543,219.916,427.879,49.574,109.587,49.574,325.417,323.620,344.183,24.050,22.767,24.050 +8246,259.290,213.831,420.736,327.215,562.543,219.916,427.879,49.574,109.587,49.574,325.417,323.620,344.183,24.050,22.767,24.050 +8247,259.319,217.356,418.081,323.383,564.924,222.943,425.387,52.595,115.656,52.595,325.313,321.698,343.709,23.644,23.394,23.644 +8248,259.350,221.138,415.684,319.535,567.522,226.425,423.452,55.758,121.711,55.758,324.186,321.726,342.980,23.425,23.716,23.425 +8249,259.380,223.898,413.528,315.989,569.759,228.743,421.420,58.456,127.519,58.456,325.605,321.197,344.126,22.124,23.964,22.124 +8250,259.412,227.048,411.757,312.309,571.710,231.494,419.782,61.011,133.390,61.011,325.772,320.650,344.120,21.809,23.862,21.809 +8251,259.445,230.500,410.000,309.102,573.273,234.565,418.130,63.435,139.122,63.435,326.019,320.615,344.197,22.361,24.145,22.361 +8252,259.476,232.885,408.701,305.813,574.873,236.600,416.949,65.756,144.968,65.756,326.741,320.485,344.834,21.352,24.666,21.352 +8253,259.507,236.019,407.884,302.716,576.106,239.336,416.062,67.917,150.665,67.917,326.611,320.141,344.262,21.429,24.935,21.429 +8254,259.540,238.846,406.765,299.907,577.561,241.865,414.944,69.740,156.251,69.740,327.873,320.031,345.310,21.268,25.263,21.268 +8255,259.572,241.356,405.562,297.119,578.390,244.143,414.007,71.732,161.857,71.732,327.622,319.418,345.408,20.993,25.137,20.993 +8256,259.603,243.717,405.183,294.384,579.402,246.179,413.406,73.334,167.237,73.334,328.531,319.443,345.697,20.466,25.288,20.466 +8257,259.637,245.948,404.681,291.837,580.247,248.148,412.929,75.069,172.596,75.069,328.778,319.164,345.851,19.904,25.335,19.904 +8258,259.668,248.315,404.397,289.453,580.810,250.205,412.410,76.729,177.735,76.729,329.360,319.383,345.825,19.989,24.484,19.989 +8259,259.697,250.571,404.609,287.420,581.490,252.140,412.156,78.250,3.077,78.250,330.526,319.721,345.941,19.573,25.565,19.573 +8260,259.728,252.596,404.528,284.724,581.946,253.843,411.386,79.695,8.085,79.695,332.727,320.184,346.667,19.230,25.196,19.230 +8261,259.757,252.596,404.528,284.724,581.946,253.843,411.386,79.695,8.085,79.695,332.727,320.184,346.667,19.230,25.196,19.230 +8262,259.788,254.593,404.452,282.382,582.838,255.665,411.345,81.158,12.953,81.158,333.171,319.976,347.123,18.950,25.670,18.950 +8263,259.819,256.598,404.378,280.459,583.130,257.456,410.970,82.589,17.613,82.589,334.080,320.356,347.377,18.793,25.326,18.793 +8264,259.850,258.595,404.807,277.558,583.788,259.234,410.846,83.962,22.380,83.962,335.676,321.462,347.821,18.378,25.728,18.378 +8265,259.880,260.817,405.260,275.208,584.093,261.285,410.991,85.333,27.067,85.333,335.822,321.566,347.322,19.079,25.985,19.079 +8266,259.911,262.693,405.132,273.091,584.485,263.009,410.659,86.730,31.457,86.730,337.164,321.784,348.237,18.712,26.002,18.712 +8267,259.942,264.483,405.122,270.585,584.684,264.681,410.828,88.008,35.640,88.008,336.492,322.349,347.911,18.232,25.608,18.232 +8268,259.972,266.210,405.041,268.375,585.152,266.279,410.568,89.293,39.602,89.293,338.135,321.892,349.191,17.900,24.844,17.900 +8269,260.004,268.185,404.946,266.034,585.414,268.121,410.680,90.640,43.603,90.640,338.024,321.931,349.492,18.044,24.966,18.044 +8270,260.035,270.372,404.822,263.467,585.531,270.147,410.685,92.203,47.031,92.203,338.211,321.426,349.946,17.948,23.836,17.948 +8271,260.065,272.552,405.146,261.626,584.983,272.185,410.788,93.721,50.421,93.721,337.717,321.893,349.026,18.027,21.437,18.027 +8272,260.096,274.725,405.521,258.961,584.793,274.259,410.649,95.194,53.653,95.194,339.328,321.643,349.628,18.017,20.941,18.017 +8273,260.127,276.967,406.019,256.320,584.460,276.423,410.582,96.796,56.622,96.796,340.878,321.744,350.069,18.491,19.953,18.491 +8274,260.158,276.967,406.019,256.320,584.460,276.423,410.582,96.796,56.622,96.796,340.878,321.744,350.069,18.491,19.953,18.491 +8275,260.186,279.507,405.910,253.185,584.390,278.756,410.998,98.401,59.300,98.401,340.251,321.586,350.536,19.042,20.126,19.042 +8276,260.218,282.304,406.328,250.129,583.621,281.435,411.105,100.305,61.645,100.305,340.956,321.711,350.667,18.962,20.366,18.962 +8277,260.249,285.718,406.934,247.000,583.000,284.678,411.594,102.570,63.435,102.570,341.446,321.099,350.996,18.980,19.677,18.980 +8278,260.280,288.767,407.391,243.169,582.154,287.516,412.166,104.676,65.136,104.676,341.482,320.989,351.354,18.910,20.580,18.910 +8279,260.310,292.049,408.592,239.512,581.065,290.689,413.012,107.103,66.747,107.103,342.095,320.645,351.344,18.969,21.117,18.969 +8280,260.343,295.340,408.744,235.690,579.724,293.682,413.480,109.290,68.199,109.290,342.101,320.510,352.137,18.783,20.426,18.783 +8281,260.375,298.845,410.138,232.115,578.205,297.059,414.603,111.801,69.397,111.801,342.422,320.928,352.040,18.755,20.677,18.755 +8282,260.408,302.890,411.341,227.806,576.389,300.773,415.946,114.685,70.123,114.685,342.374,320.649,352.510,18.855,21.058,18.855 +8283,260.442,306.883,413.151,223.879,574.672,304.633,417.437,117.699,70.798,117.699,343.822,321.335,353.504,18.571,20.476,18.571 +8284,260.475,311.123,415.382,218.695,571.916,308.604,419.611,120.784,70.974,120.784,343.878,320.351,353.723,18.992,20.407,18.992 +8285,260.506,315.299,418.164,214.290,568.233,312.939,421.636,124.203,71.323,124.203,344.995,319.387,353.392,18.861,20.681,18.861 +8286,260.539,320.234,421.021,209.209,564.598,317.533,424.516,127.694,71.323,127.694,345.324,318.160,354.158,19.674,20.294,19.674 +8287,260.570,325.223,424.254,204.250,560.250,322.049,427.832,131.572,71.565,131.572,344.899,317.493,354.464,20.043,19.922,20.043 +8288,260.601,329.600,428.091,199.385,555.378,326.301,431.321,135.607,71.748,135.607,345.718,316.560,354.952,19.468,20.075,19.468 +8289,260.631,334.227,432.584,194.650,549.950,330.724,435.540,139.834,71.565,139.834,346.392,315.912,355.559,19.371,19.606,19.371 +8290,260.662,338.956,437.637,190.200,543.600,335.100,440.396,144.413,71.565,144.413,346.309,314.963,355.791,19.309,19.606,19.309 +8291,260.693,343.419,443.367,186.082,536.458,339.325,445.848,148.782,71.328,148.782,346.459,314.023,356.033,21.069,19.477,21.069 +8292,260.723,343.419,443.367,186.082,536.458,339.325,445.848,148.782,71.328,148.782,346.459,314.023,356.033,21.069,19.477,21.069 +8293,260.751,347.124,449.224,182.374,528.534,342.943,451.286,153.753,71.413,153.753,347.027,313.702,356.351,20.211,18.856,20.211 +8294,260.782,351.029,456.578,179.079,519.964,346.527,458.275,159.345,71.267,159.345,347.266,312.452,356.889,20.111,18.800,20.111 +8295,260.813,354.301,465.253,176.355,510.534,349.514,466.530,165.069,71.030,165.069,347.394,311.249,357.301,20.227,19.180,20.227 +8296,260.845,356.767,474.775,174.515,500.469,351.680,475.541,171.431,70.684,171.431,347.515,310.625,357.804,19.181,19.185,19.181 +8297,260.876,358.564,485.002,174.056,489.480,353.137,485.175,178.174,70.598,178.174,347.397,310.245,358.256,18.278,18.817,18.278 +8298,260.908,358.110,495.615,174.870,478.013,353.249,495.204,4.830,70.413,4.830,348.631,309.361,358.387,18.947,18.900,18.947 +8299,260.941,357.350,507.334,177.182,466.394,352.053,506.193,12.162,70.201,12.162,347.824,308.423,358.662,19.551,19.495,19.551 +8300,260.973,354.473,518.324,180.650,454.713,349.382,516.526,19.455,69.897,19.455,348.574,308.170,359.372,19.548,19.156,19.548 +8301,261.004,351.033,527.436,185.621,443.143,345.971,524.824,27.300,69.305,27.300,348.511,307.583,359.905,25.168,18.855,25.168 +8302,261.034,345.106,539.351,196.285,444.801,344.287,538.770,35.395,67.977,35.395,348.146,280.579,350.154,25.335,19.489,25.335 +8303,261.065,336.920,551.132,206.517,439.700,337.653,551.842,44.061,67.504,44.061,346.482,271.245,344.442,24.734,20.802,24.734 +8304,261.095,326.119,563.652,218.054,431.126,326.241,563.816,53.516,66.938,53.516,342.438,269.193,342.028,22.804,19.695,22.804 +8305,261.126,319.244,580.635,229.457,423.805,314.610,571.854,62.181,66.919,62.181,321.499,267.079,341.356,21.268,19.235,21.268 +8306,261.157,319.244,580.635,229.457,423.805,314.610,571.854,62.181,66.919,62.181,321.499,267.079,341.356,21.268,19.235,21.268 +8307,261.191,311.580,611.372,243.936,419.145,300.335,579.244,70.710,66.161,70.710,271.406,263.387,339.485,20.010,18.443,20.010 +8308,261.238,270.090,584.999,273.072,410.778,270.046,581.991,89.161,64.259,89.161,336.286,268.896,342.301,21.042,21.265,21.042 +8309,261.270,252.629,580.585,288.395,410.555,252.731,579.834,97.712,63.308,97.712,343.552,271.462,345.067,23.329,23.150,23.329 +8310,261.302,239.753,574.878,303.782,412.857,240.033,574.016,107.952,63.020,107.952,344.113,274.154,345.925,19.296,22.943,19.296 +8311,261.339,227.118,568.095,314.469,412.402,228.537,565.321,117.086,61.718,117.086,344.320,289.271,350.550,19.933,25.418,19.933 +8312,261.370,215.112,560.788,323.064,410.283,219.435,554.909,126.327,61.390,126.327,341.217,311.334,355.812,19.881,25.220,19.881 +8313,261.400,205.775,550.795,333.880,420.002,210.258,546.337,135.157,60.470,135.157,340.836,313.440,353.481,19.989,25.268,19.989 +8314,261.431,197.406,539.924,343.578,430.665,202.363,536.303,143.853,59.916,143.853,340.408,314.560,352.687,19.238,24.717,19.238 +8315,261.462,191.696,529.315,351.237,442.657,197.006,526.505,152.112,59.133,152.112,339.063,315.552,351.078,20.393,24.616,20.393 +8316,261.492,191.696,529.315,351.237,442.657,197.006,526.505,152.112,59.133,152.112,339.063,315.552,351.078,20.393,24.616,20.393 +8317,261.521,187.511,518.029,357.056,455.200,193.042,516.003,159.884,58.314,159.884,338.060,316.947,349.841,20.816,24.488,20.816 +8318,261.554,184.469,506.860,360.830,467.608,190.570,505.498,167.423,57.475,167.423,336.348,318.213,348.850,20.166,24.256,20.166 +8319,261.585,182.992,495.909,362.968,479.884,189.518,495.309,174.746,56.781,174.746,335.161,319.817,348.268,19.367,23.809,19.367 +8320,261.616,183.512,485.169,363.447,492.030,190.157,485.402,2.015,56.149,2.015,333.532,320.629,346.831,18.762,22.565,18.762 +8321,261.647,184.168,475.410,362.316,503.471,191.045,476.468,8.746,55.452,8.746,332.853,321.790,346.770,18.703,21.536,18.703 +8322,261.678,186.281,465.689,360.064,514.104,193.287,467.635,15.524,54.941,15.524,331.718,322.698,346.260,19.270,20.320,19.270 +8323,261.709,188.627,455.969,357.115,523.774,196.648,458.848,19.747,54.620,19.747,328.887,323.389,345.933,26.305,19.804,26.305 +8324,261.742,193.446,446.691,353.319,532.421,201.024,450.533,26.887,54.758,26.887,328.735,323.715,345.729,25.928,19.086,25.928 +8325,261.776,195.985,441.191,349.202,540.014,204.004,446.002,30.964,55.305,30.964,327.048,324.197,345.750,25.725,18.910,25.725 +8326,261.809,198.876,435.452,345.000,546.500,207.528,441.599,35.395,56.310,35.395,324.420,324.222,345.647,25.335,18.860,25.335 +8327,261.842,201.254,430.238,340.010,552.429,210.603,437.870,39.226,58.059,39.226,321.247,324.469,345.383,25.469,18.587,25.469 +8328,261.875,205.278,423.117,335.743,557.299,215.667,433.282,44.377,60.577,44.377,316.050,324.719,345.119,24.786,18.365,24.786 +8329,261.908,208.753,419.179,331.321,561.343,218.844,430.278,47.726,63.939,47.726,315.282,324.716,345.282,24.283,18.609,24.283 +8330,261.940,212.253,416.417,327.368,564.553,221.800,428.039,50.599,68.009,50.599,314.914,324.410,344.993,23.872,18.634,23.872 +8331,261.971,215.521,414.023,323.344,567.581,224.283,425.857,53.482,72.669,53.482,316.246,324.523,345.696,23.030,18.902,23.030 +8332,262.001,218.228,412.449,319.676,569.678,226.257,424.184,55.620,77.829,55.620,317.222,324.000,345.659,22.544,18.784,22.544 +8333,262.031,221.876,410.702,316.162,571.536,229.126,422.302,57.995,83.991,57.995,317.999,323.528,345.357,23.002,18.634,23.002 +8334,262.061,224.598,410.035,312.920,572.503,230.722,420.564,59.819,90.418,59.819,320.973,323.072,345.333,22.825,18.270,22.825 +8335,262.092,224.598,410.035,312.920,572.503,230.722,420.564,59.819,90.418,59.819,320.973,323.072,345.333,22.825,18.270,22.825 +8336,262.124,226.406,409.683,310.417,573.989,232.162,420.199,61.305,97.722,61.305,320.977,323.682,344.953,21.736,19.164,21.736 +8337,262.155,228.951,409.439,308.021,574.598,233.909,419.024,62.650,105.219,62.650,322.882,323.896,344.465,22.481,21.739,22.481 +8338,262.186,230.619,409.206,307.044,574.736,235.026,418.125,63.705,113.443,63.705,324.722,322.214,344.618,22.171,21.970,22.171 +8339,262.217,231.479,409.085,305.992,574.995,235.589,417.741,64.601,121.574,64.601,325.339,321.403,344.503,21.134,22.417,21.134 +8340,262.248,232.983,408.462,305.025,575.263,236.904,417.090,65.556,129.644,65.556,325.415,320.747,344.369,22.263,23.167,22.263 +8341,262.279,233.846,408.246,304.525,575.528,237.566,416.689,66.218,138.013,66.218,326.251,320.137,344.705,22.288,24.380,22.288 +8342,262.309,234.670,408.275,304.269,575.654,238.211,416.503,66.718,146.310,66.718,326.687,319.785,344.602,22.135,24.684,22.135 +8343,262.342,235.189,408.072,303.983,575.964,238.714,416.387,67.031,154.676,67.031,326.726,319.449,344.789,21.853,25.196,21.853 +8344,262.374,235.661,408.140,304.156,576.017,239.044,416.315,67.521,163.217,67.521,327.229,319.820,344.924,22.336,25.348,22.336 +8345,262.405,235.640,408.765,304.187,576.297,238.873,416.622,67.636,171.784,67.636,328.041,319.616,345.032,21.307,25.379,21.307 +8346,262.437,236.140,408.765,304.490,576.616,239.275,416.384,67.636,0.284,67.636,329.510,319.051,345.987,22.232,24.792,22.232 +8347,262.468,236.204,409.450,304.916,576.685,239.145,416.558,67.521,9.002,67.521,330.830,320.606,346.215,22.336,25.240,22.336 +8348,262.498,235.813,410.557,305.713,576.824,238.626,417.220,67.109,17.501,67.109,331.793,321.960,346.259,21.004,24.857,21.004 +8349,262.530,236.155,411.362,305.944,576.139,238.555,416.962,66.801,26.369,66.801,333.518,323.791,345.704,22.059,23.869,22.059 +8350,262.560,235.422,412.414,306.584,576.163,237.653,417.483,66.251,34.902,66.251,334.932,325.076,346.007,21.235,22.372,21.235 +8351,262.591,235.422,412.414,306.584,576.163,237.653,417.483,66.251,34.902,66.251,334.932,325.076,346.007,21.235,22.372,21.235 +8352,262.620,234.616,411.626,308.079,575.946,237.345,417.657,65.659,43.315,65.659,333.509,324.214,346.747,22.170,19.479,22.170 +8353,262.651,232.512,410.638,308.362,576.434,236.284,418.669,64.841,51.953,64.841,329.138,324.418,346.882,21.339,20.098,21.339 +8354,262.682,223.140,396.477,308.748,576.432,234.902,419.445,62.884,60.160,62.884,295.169,324.722,346.779,19.870,19.238,19.870 +8355,262.712,215.181,386.606,310.043,575.794,232.855,420.954,62.771,69.228,62.771,268.742,324.573,345.998,17.758,18.539,17.758 +8356,262.745,223.855,403.732,310.868,574.849,232.848,420.432,61.699,77.932,61.699,307.962,324.420,345.897,21.673,18.499,21.673 +8357,262.777,224.506,408.964,312.393,573.612,231.311,421.053,60.624,86.967,60.624,317.688,323.764,345.434,22.455,19.040,22.455 +8358,262.810,223.698,411.873,313.957,571.643,229.449,421.433,58.973,95.599,58.973,322.242,322.883,344.554,22.164,19.436,22.164 +8359,262.841,222.698,413.987,316.681,570.811,228.366,422.824,57.328,104.744,57.328,323.497,323.817,344.494,23.259,21.683,23.259 +8360,262.874,220.294,415.701,319.290,567.908,225.678,423.523,55.463,113.629,55.463,325.031,321.857,344.023,22.891,22.446,22.891 +8361,262.906,218.518,417.780,322.519,565.288,223.855,424.978,53.448,122.539,53.448,325.023,320.814,342.945,23.781,23.672,23.781 +8362,262.936,215.896,419.575,325.835,562.739,221.571,426.640,51.226,131.513,51.226,324.680,320.397,342.803,23.989,24.503,23.989 +8363,262.967,213.155,421.677,329.541,560.049,219.324,428.728,48.814,140.194,48.814,324.078,320.092,342.816,24.177,25.095,24.177 +8364,262.997,210.308,424.206,333.541,556.896,216.805,431.004,46.296,148.870,46.296,324.527,320.362,343.334,24.726,25.332,24.726 +8365,263.028,207.115,426.879,337.170,553.342,214.127,433.512,43.409,157.620,43.409,324.162,320.537,343.467,24.837,25.238,24.837 +8366,263.059,203.442,431.570,341.048,549.678,210.826,437.651,39.472,165.881,39.472,324.347,321.364,343.478,25.474,24.376,25.474 +8367,263.092,203.442,431.570,341.048,549.678,210.826,437.651,39.472,165.881,39.472,324.347,321.364,343.478,25.474,24.376,25.474 +8368,263.121,199.522,434.148,344.773,545.146,208.080,440.453,36.384,174.119,36.384,323.039,321.522,344.298,25.380,22.870,25.380 +8369,263.152,195.757,436.837,348.872,540.272,205.952,443.565,33.421,1.950,33.421,320.674,322.392,345.104,25.256,21.298,25.256 +8370,263.183,189.085,440.002,352.148,534.646,202.728,448.002,30.386,9.305,30.386,313.812,323.372,345.444,28.259,20.161,28.259 +8371,263.214,173.977,442.199,355.420,529.089,199.648,453.392,23.558,15.524,23.558,290.076,324.170,346.086,23.485,19.859,23.485 +8372,263.244,121.012,430.147,357.979,524.053,196.751,459.860,21.420,21.525,21.420,184.352,324.626,347.070,17.609,20.884,17.609 +8373,263.277,181.380,461.573,360.800,515.900,194.491,465.659,17.312,26.565,17.312,319.986,325.124,347.451,18.474,21.466,18.474 +8374,263.309,182.735,470.076,361.807,510.054,192.480,472.170,12.124,33.334,12.124,327.079,324.802,347.013,18.931,22.362,18.931 +8375,263.342,182.719,478.112,362.790,501.572,190.863,479.057,6.613,39.536,6.613,330.352,324.538,346.750,19.262,20.052,19.262 +8376,263.374,182.544,486.541,363.520,491.963,189.765,486.671,1.032,46.081,1.032,333.198,323.210,347.643,18.411,21.983,18.411 +8377,263.405,182.846,495.693,363.324,481.893,189.549,495.120,175.115,53.643,175.115,335.086,321.050,348.541,18.761,22.997,18.761 +8378,263.437,184.232,505.709,361.390,471.129,190.176,504.475,168.267,60.461,168.267,336.692,319.153,348.834,20.117,24.506,20.117 +8379,263.467,185.850,515.550,358.488,459.803,192.099,513.467,161.565,68.051,161.565,336.466,317.544,349.641,19.922,24.586,19.922 +8380,263.497,188.831,526.303,355.215,454.594,194.751,523.492,154.601,75.677,154.601,335.906,303.395,349.013,20.484,23.749,20.484 +8381,263.528,193.099,537.008,348.701,444.657,198.661,533.463,147.488,83.089,147.488,335.319,299.956,348.512,20.396,23.735,20.396 +8382,263.561,198.067,547.864,340.258,440.520,202.501,544.135,139.939,90.659,139.939,332.654,285.177,344.241,20.056,23.125,20.056 +8383,263.592,198.067,547.864,340.258,440.520,202.501,544.135,139.939,90.659,139.939,332.654,285.177,344.241,20.056,23.125,20.056 +8384,263.621,202.510,561.414,330.721,417.106,213.098,549.720,132.158,98.383,132.158,322.956,312.874,354.505,19.885,21.411,19.885 +8385,263.651,207.823,578.236,319.663,408.360,222.011,557.146,123.930,107.216,123.930,305.081,313.358,355.916,19.793,19.669,19.793 +8386,263.683,197.641,633.780,307.073,400.531,231.329,562.905,115.422,113.229,115.422,201.384,312.121,358.333,17.907,20.355,17.907 +8387,263.713,240.228,577.175,294.154,395.911,242.945,568.415,107.233,120.536,107.233,341.517,314.156,359.861,18.580,20.875,18.580 +8388,263.745,252.671,578.456,281.812,394.023,253.613,571.828,98.089,127.942,98.089,346.618,313.555,360.007,22.625,20.959,22.625 +8389,263.776,268.000,580.000,267.384,392.404,268.000,572.702,90.000,135.408,90.000,346.000,314.008,360.596,22.000,18.858,22.000 +8390,263.808,281.713,578.891,252.935,394.232,280.757,572.648,81.293,142.789,81.293,348.513,313.623,361.144,22.958,19.273,22.958 +8391,263.840,295.511,575.416,239.269,398.676,293.927,570.285,72.848,149.744,72.848,349.450,313.048,360.191,20.880,18.571,20.880 +8392,263.872,308.872,569.379,225.715,405.061,306.899,565.312,64.120,157.102,64.120,350.191,311.996,359.231,22.315,17.988,22.315 +8393,263.903,320.890,561.408,212.991,412.159,318.590,558.069,55.430,164.846,55.430,352.022,310.743,360.131,23.617,17.796,23.617 +8394,263.933,331.009,552.338,202.065,420.513,328.427,549.563,47.060,172.725,47.060,353.528,309.826,361.110,24.728,17.581,24.728 +8395,263.964,339.438,543.195,193.000,430.500,336.212,540.551,39.341,0.000,39.341,352.705,308.000,361.047,25.611,17.000,25.611 +8396,263.994,348.083,532.415,185.881,440.816,343.221,529.478,31.139,8.297,31.139,349.677,306.879,361.037,26.123,18.925,26.123 +8397,264.026,357.308,527.042,182.547,448.871,346.841,522.414,23.848,15.364,23.848,337.114,305.484,360.002,19.690,21.040,19.690 +8398,264.057,357.308,527.042,182.547,448.871,346.841,522.414,23.848,15.364,23.848,337.114,305.484,360.002,19.690,21.040,19.690 +8399,264.086,388.768,523.990,178.062,460.392,350.392,512.146,17.152,22.150,17.152,279.532,303.416,359.857,18.945,19.680,18.945 +8400,264.117,362.943,505.139,183.278,474.584,356.287,503.959,10.054,28.768,10.054,337.439,286.607,350.961,19.372,21.210,19.372 +8401,264.149,359.807,494.046,177.800,484.100,354.952,493.738,3.630,36.870,3.630,345.083,295.400,354.813,19.293,20.400,19.293 +8402,264.180,358.622,483.814,174.023,491.990,353.057,484.055,177.519,44.626,177.519,347.281,305.464,358.420,19.116,20.141,19.116 +8403,264.212,356.925,473.996,175.852,502.497,352.049,474.725,171.491,53.427,171.491,346.872,308.234,356.732,20.870,19.326,20.870 +8404,264.243,354.695,466.236,176.878,510.804,350.068,467.411,165.750,62.513,165.750,347.538,309.922,357.086,20.338,18.857,20.338 +8405,264.274,351.661,458.550,178.946,519.501,347.121,460.167,160.390,70.942,160.390,347.030,311.518,356.669,21.266,18.784,21.266 +8406,264.305,348.171,451.680,181.643,527.786,343.959,453.597,155.519,79.408,155.519,347.678,313.229,356.934,20.681,18.892,20.681 +8407,264.337,344.824,447.272,184.110,534.893,340.878,449.442,151.189,87.653,151.189,348.077,314.515,357.085,20.898,18.869,20.898 +8408,264.367,340.636,440.925,187.046,541.056,336.798,443.447,146.689,95.906,146.689,348.322,316.141,357.508,19.532,18.625,19.532 +8409,264.397,336.268,436.576,189.206,546.177,332.740,439.268,142.646,104.036,142.646,349.047,317.479,357.922,19.957,20.373,19.957 +8410,264.428,332.785,432.533,193.341,550.845,329.512,435.387,138.918,112.297,138.918,348.340,318.092,357.026,19.772,19.776,19.772 +8411,264.459,332.785,432.533,193.341,550.845,329.512,435.387,138.918,112.297,138.918,348.340,318.092,357.026,19.772,19.776,19.772 +8412,264.487,330.272,427.723,196.778,554.527,326.008,431.896,135.623,119.999,135.623,344.333,318.157,356.265,19.106,19.660,19.106 +8413,264.519,329.993,421.122,199.620,557.485,322.763,429.028,132.441,128.047,132.441,334.369,317.330,355.796,18.883,18.763,18.883 +8414,264.550,369.842,365.716,203.299,560.336,318.896,425.652,130.365,136.302,130.365,197.647,316.863,354.974,17.753,19.344,17.753 +8415,264.581,333.416,400.859,206.615,562.459,316.171,423.278,127.569,144.572,127.569,297.661,315.950,354.231,17.682,18.785,17.682 +8416,264.612,323.959,407.378,210.236,564.455,314.160,421.631,124.509,152.605,124.509,318.544,314.987,353.137,20.138,19.299,20.138 +8417,264.643,318.091,409.285,213.833,566.928,311.207,420.103,122.471,160.278,122.471,326.650,314.816,352.296,19.174,20.816,19.174 +8418,264.675,314.085,409.612,217.293,568.915,308.867,418.471,120.500,168.288,120.500,331.645,314.376,352.208,19.038,22.330,19.038 +8419,264.707,310.601,409.878,220.463,570.461,306.514,417.337,118.720,176.028,118.720,334.260,314.049,351.273,18.957,22.543,18.957 +8420,264.743,307.460,408.987,223.392,571.853,304.018,415.839,116.668,3.347,116.668,335.871,313.984,351.208,19.267,23.118,19.267 +8421,264.774,304.946,408.948,225.591,573.567,301.815,415.556,115.346,11.189,115.346,336.238,314.759,350.862,18.788,24.988,18.788 +8422,264.806,302.892,408.619,228.022,574.438,300.235,414.596,113.962,19.822,113.962,337.704,315.424,350.787,19.190,25.838,19.190 +8423,264.837,301.163,409.009,229.742,575.533,298.923,414.288,112.989,26.806,112.989,339.444,316.636,350.914,19.109,25.686,19.109 +8424,264.867,299.512,409.189,231.098,577.342,297.371,414.494,111.975,33.917,111.975,340.191,317.315,351.632,18.889,25.067,18.889 +8425,264.898,297.933,408.636,232.529,578.467,295.814,414.179,110.925,40.872,110.925,340.242,317.693,352.110,18.901,25.172,18.901 +8426,264.930,296.453,408.839,233.651,579.316,294.562,414.014,110.072,47.891,110.072,341.314,318.863,352.334,18.912,24.624,18.912 +8427,264.961,295.416,408.732,236.011,578.937,293.880,413.070,109.489,54.866,109.489,342.135,319.581,351.340,18.784,20.748,18.784 +8428,264.991,295.416,408.732,236.011,578.937,293.880,413.070,109.489,54.866,109.489,342.135,319.581,351.340,18.784,20.748,18.784 +8429,265.019,295.014,408.793,236.409,579.316,293.477,413.233,109.093,61.844,109.093,341.831,320.230,351.228,19.081,20.440,19.081 +8430,265.050,294.412,408.784,236.427,579.944,292.915,413.201,108.726,68.703,108.726,342.774,320.713,352.102,18.877,20.829,18.877 +8431,265.082,293.875,409.284,237.002,580.612,292.476,413.461,108.514,75.506,108.514,343.422,322.343,352.232,18.717,21.129,18.717 +8432,265.113,294.116,408.859,235.839,581.434,292.379,414.031,108.571,80.737,108.571,342.473,323.715,353.385,18.760,21.213,18.760 +8433,265.145,294.549,408.656,234.946,580.589,292.769,413.885,108.791,86.722,108.791,341.841,322.019,352.889,18.887,19.598,18.887 +8434,265.176,295.327,409.360,233.788,580.047,293.666,414.092,109.342,91.507,109.342,342.808,322.309,352.840,18.609,19.888,18.609 +8435,265.208,296.487,409.214,232.326,579.622,294.625,414.297,110.110,95.270,110.110,342.504,322.766,353.331,18.740,19.654,18.740 +8436,265.242,297.955,410.622,230.016,578.502,296.305,414.867,111.237,98.781,111.237,343.962,321.528,353.070,18.222,19.758,18.222 +8437,265.275,299.964,411.111,227.788,577.558,298.150,415.469,112.603,101.310,112.603,343.923,321.238,353.363,17.917,19.415,17.917 +8438,265.305,302.527,411.388,225.064,576.160,300.371,416.182,114.215,103.319,114.215,343.066,320.834,353.580,17.734,19.335,17.734 +8439,265.336,305.430,411.501,222.239,574.584,302.706,417.078,116.030,104.621,116.030,341.268,320.660,353.682,18.264,19.605,18.264 +8440,265.367,307.898,413.870,219.447,572.985,305.562,418.213,118.272,105.234,118.272,344.335,320.563,354.198,18.214,19.732,18.214 +8441,265.397,310.780,415.676,215.716,570.645,308.498,419.503,120.811,105.446,120.811,345.758,320.313,354.669,18.683,19.937,18.683 +8442,265.428,314.561,418.053,212.074,568.387,312.133,421.744,123.336,104.826,123.336,346.171,319.951,355.005,19.390,20.642,19.390 +8443,265.459,314.561,418.053,212.074,568.387,312.133,421.744,123.336,104.826,123.336,346.171,319.951,355.005,19.390,20.642,19.390 +8444,265.488,318.896,421.157,208.338,565.315,316.405,424.458,127.049,103.241,127.049,346.790,319.281,355.062,19.397,20.270,19.397 +8445,265.519,323.487,423.711,203.388,561.179,320.508,427.209,130.426,101.402,130.426,346.676,319.088,355.865,19.426,20.042,19.426 +8446,265.550,327.548,427.566,198.516,557.002,324.481,430.692,134.454,98.905,134.454,348.002,318.419,356.760,19.219,20.469,19.219 +8447,265.581,332.041,432.346,194.230,551.687,329.091,434.949,138.576,96.155,138.576,348.851,317.366,356.720,19.893,20.060,19.893 +8448,265.612,336.748,436.841,189.943,546.025,333.220,439.504,142.958,93.180,142.958,348.221,316.678,357.062,19.985,19.525,19.985 +8449,265.643,341.443,442.324,186.398,539.500,337.764,444.645,147.763,90.291,147.763,348.559,315.052,357.260,19.843,18.751,19.843 +8450,265.675,345.370,448.788,182.561,531.838,341.703,450.694,152.526,86.977,152.526,348.996,314.776,357.260,20.335,19.059,20.335 +8451,265.707,349.502,454.590,179.515,522.839,345.232,456.358,157.513,83.928,157.513,347.845,313.846,357.089,20.804,19.041,20.804 +8452,265.739,353.098,462.656,176.980,513.682,348.817,463.936,163.355,80.882,163.355,348.836,312.348,357.773,20.318,18.906,20.318 +8453,265.770,355.953,471.743,175.055,503.661,351.347,472.582,169.670,77.712,169.670,348.650,311.295,358.015,19.404,18.807,19.404 +8454,265.800,358.046,481.692,174.307,492.867,352.862,482.040,176.163,74.650,176.163,347.366,310.570,357.759,18.884,18.549,18.884 +8455,265.831,358.331,492.498,174.632,481.459,353.291,492.255,2.759,71.458,2.759,347.849,309.278,357.942,18.942,18.785,18.942 +8456,265.862,357.656,503.853,176.533,469.496,352.702,502.992,9.866,68.369,9.866,348.551,308.812,358.607,18.933,19.345,18.933 +8457,265.893,357.656,503.853,176.533,469.496,352.702,502.992,9.866,68.369,9.866,348.551,308.812,358.607,18.933,19.345,18.933 +8458,265.921,355.238,515.171,180.025,457.576,350.457,513.686,17.259,65.469,17.259,348.797,307.791,358.811,19.359,20.838,19.359 +8459,265.952,352.154,525.728,190.201,458.122,351.608,525.461,26.095,61.645,26.095,347.935,281.621,349.149,25.072,21.609,25.072 +8460,265.982,348.212,536.942,196.606,447.279,346.810,536.029,33.111,56.915,33.111,345.241,280.748,348.587,24.946,20.109,24.946 +8461,266.014,341.437,552.299,206.884,439.351,339.019,550.054,42.879,53.700,42.879,337.713,271.270,344.312,24.339,20.352,24.339 +8462,266.045,371.581,613.775,217.584,428.688,327.438,561.378,49.887,50.356,49.887,207.490,271.708,344.514,19.072,19.119,19.072 +8463,266.076,317.632,572.204,230.815,420.278,316.037,569.561,58.888,46.507,58.888,337.515,270.356,343.690,19.216,19.178,19.216 +8464,266.110,302.917,574.350,242.644,412.353,303.084,574.771,68.356,44.384,68.356,347.423,274.418,346.518,20.655,21.288,20.655 +8465,266.142,287.110,577.908,254.107,403.252,286.787,576.544,76.675,39.043,76.675,349.515,284.734,352.318,22.842,19.484,22.842 +8466,266.176,275.078,578.882,260.385,394.061,274.780,573.610,86.764,35.538,86.764,349.590,307.591,360.152,23.584,19.413,23.584 +8467,266.210,256.992,577.847,276.387,393.654,257.458,572.481,94.970,31.827,94.970,348.814,307.921,359.588,23.520,21.212,23.520 +8468,266.242,243.556,575.047,290.952,397.709,244.783,570.436,104.899,27.997,104.899,348.039,309.286,357.582,20.994,18.375,20.994 +8469,266.275,230.639,569.484,305.797,403.071,232.724,564.955,114.714,24.094,114.714,345.243,311.199,355.215,19.666,18.144,19.666 +8470,266.307,218.892,561.764,319.711,410.136,221.598,557.741,123.927,20.273,123.927,344.772,312.964,354.469,19.821,18.170,19.821 +8471,266.339,208.597,552.626,332.148,418.897,212.059,548.898,132.879,16.390,132.879,343.785,315.123,353.959,19.419,18.341,19.419 +8472,266.368,199.664,542.947,342.447,428.735,204.447,539.149,141.551,12.629,141.551,341.252,317.047,353.468,19.606,18.399,19.606 +8473,266.399,192.092,533.295,350.799,439.799,198.939,529.332,149.943,8.800,149.943,336.742,318.412,352.565,20.865,18.603,20.865 +8474,266.430,187.726,521.047,356.877,451.353,194.325,518.323,157.571,5.194,157.571,337.337,319.772,351.615,21.583,18.469,21.583 +8475,266.466,183.169,510.750,361.423,463.286,191.920,508.431,165.155,1.941,165.155,332.715,321.426,350.823,20.241,19.785,20.241 +8476,266.509,179.647,499.577,363.500,473.500,190.375,498.282,173.118,0.000,173.118,328.085,323.000,349.695,17.802,19.000,17.802 +8477,266.543,109.500,489.500,364.555,485.128,190.278,489.500,0.000,178.050,0.000,187.000,323.255,348.555,17.000,19.091,17.000 +8478,266.577,150.607,476.446,364.059,495.235,190.798,480.445,5.682,175.426,5.682,266.970,323.128,347.748,17.560,20.096,17.560 +8479,266.614,169.663,467.041,362.431,504.960,192.114,471.944,12.319,172.737,12.319,300.919,323.608,346.879,19.203,20.102,19.203 +8480,266.646,179.913,459.316,360.091,515.491,194.592,464.128,18.153,169.540,18.153,315.632,323.608,346.528,19.316,21.574,19.316 +8481,266.678,185.868,451.928,356.402,524.997,197.406,457.034,23.868,164.991,23.868,320.561,323.369,345.796,19.204,22.740,19.204 +8482,266.709,192.080,443.271,352.374,533.541,202.041,448.704,28.610,160.219,28.610,322.507,322.950,345.201,25.459,24.169,25.459 +8483,266.742,197.346,437.231,347.481,540.959,205.811,442.874,33.690,155.298,33.690,324.222,322.332,344.569,25.516,24.675,25.516 +8484,266.774,201.962,432.549,342.372,547.644,209.577,438.561,38.290,149.967,38.290,324.239,321.756,343.644,25.447,25.296,25.447 +8485,266.806,207.513,426.445,336.677,553.542,214.424,433.076,43.815,144.866,43.815,324.078,321.307,343.235,24.817,24.867,24.817 +8486,266.837,211.808,422.538,330.919,558.905,218.123,429.485,47.726,139.611,47.726,324.497,320.852,343.275,24.283,25.010,24.283 +8487,266.867,216.754,418.721,325.059,563.545,222.351,425.983,52.374,134.301,52.374,324.972,320.459,343.309,23.183,24.540,23.183 +8488,266.897,221.577,415.615,319.155,567.625,226.514,423.021,56.310,128.830,56.310,325.609,321.238,343.411,22.465,23.978,22.465 +8489,266.928,226.168,412.612,313.201,571.305,230.761,420.628,60.191,123.158,60.191,324.967,321.494,343.444,21.972,23.083,21.972 +8490,266.960,230.333,409.364,307.414,574.428,234.661,418.250,64.033,117.784,64.033,324.767,321.645,344.534,21.916,22.346,21.916 +8491,266.992,230.333,409.364,307.414,574.428,234.661,418.250,64.033,117.784,64.033,324.767,321.645,344.534,21.916,22.346,21.916 +8492,267.020,234.617,406.408,301.490,577.094,238.788,416.404,67.353,111.894,67.353,323.227,322.555,344.889,21.410,21.324,21.410 +8493,267.051,239.056,403.404,295.517,579.445,243.079,414.884,70.688,105.635,70.688,320.958,323.055,345.287,21.149,20.529,21.149 +8494,267.082,242.698,399.077,290.401,582.371,247.011,414.019,73.899,99.913,73.899,316.461,324.863,347.564,20.513,21.270,20.513 +8495,267.113,246.126,392.668,285.672,583.972,250.881,413.402,77.082,94.837,77.082,305.517,324.226,348.061,19.923,19.438,19.923 +8496,267.146,247.606,376.374,281.500,585.000,253.913,412.711,80.154,90.000,80.154,275.176,324.000,348.937,17.694,21.000,17.694 +8497,267.179,248.331,331.314,276.424,585.955,257.850,412.226,83.290,83.884,83.290,186.479,324.429,349.418,17.643,18.679,17.643 +8498,267.211,261.607,402.711,271.547,586.293,262.246,411.466,85.821,78.598,85.821,332.525,325.167,350.080,18.321,19.836,18.321 +8499,267.243,265.908,403.044,267.906,586.381,266.024,411.175,89.182,73.610,89.182,334.166,324.604,350.429,18.155,20.824,18.155 +8500,267.276,270.174,404.303,264.380,586.027,269.929,410.911,92.121,67.759,92.121,337.176,324.614,350.402,18.284,20.583,18.284 +8501,267.308,274.553,405.965,258.045,585.461,274.099,411.013,95.140,62.734,95.140,340.235,322.079,350.371,18.096,21.210,18.096 +8502,267.340,279.100,406.300,253.771,584.204,278.453,410.826,98.130,57.051,98.130,341.108,321.706,350.252,18.950,19.844,18.950 +8503,267.370,284.058,406.212,249.056,582.451,283.112,410.942,101.310,51.280,101.310,340.065,320.620,349.714,19.023,20.144,19.023 +8504,267.400,288.775,407.028,242.360,582.148,287.383,412.366,104.621,45.659,104.621,340.265,319.038,351.297,18.848,24.365,18.848 +8505,267.431,293.537,407.703,236.996,580.242,291.757,413.205,107.928,40.400,107.928,340.001,318.567,351.566,18.693,24.774,18.693 +8506,267.462,298.387,408.790,231.739,577.483,296.346,414.038,111.251,34.641,111.251,340.233,318.501,351.497,18.795,25.086,18.795 +8507,267.492,298.387,408.790,231.739,577.483,296.346,414.038,111.251,34.641,111.251,340.233,318.501,351.497,18.795,25.086,18.795 +8508,267.520,303.708,410.436,226.533,574.837,301.283,415.659,114.905,29.932,114.905,340.193,316.790,351.709,18.950,25.132,18.950 +8509,267.552,308.495,411.766,220.970,571.065,305.720,416.928,118.272,24.852,118.272,340.065,315.832,351.785,19.154,25.703,19.154 +8510,267.583,314.364,414.312,215.472,567.709,310.906,419.778,122.320,20.095,122.320,339.135,314.583,352.072,19.057,25.150,19.057 +8511,267.614,320.330,417.729,209.594,563.546,316.307,423.151,126.573,14.704,126.573,339.166,313.842,352.670,19.533,24.078,19.533 +8512,267.644,326.124,420.606,203.784,558.797,321.151,426.407,130.601,9.462,130.601,338.520,312.851,353.800,20.066,22.687,20.066 +8513,267.675,333.128,424.177,198.335,552.986,326.419,430.781,135.448,4.764,135.448,335.192,312.251,354.018,19.555,21.343,19.555 +8514,267.706,340.026,427.910,193.000,547.000,331.107,435.410,139.939,0.000,139.939,331.732,312.000,355.041,19.412,20.000,19.412 +8515,267.735,349.012,431.658,187.521,539.825,335.609,441.050,144.976,176.239,144.976,323.187,311.970,355.919,19.436,19.442,19.436 +8516,267.766,359.612,437.022,183.204,532.669,340.373,448.133,149.990,172.751,149.990,312.327,311.577,356.760,21.626,19.566,21.626 +8517,267.797,375.342,438.249,179.115,524.819,343.057,453.003,155.439,169.977,155.439,286.926,311.365,357.920,18.227,19.589,18.227 +8518,267.827,407.206,439.442,175.885,516.457,346.487,460.711,160.696,168.038,160.696,230.207,311.078,358.878,17.905,20.096,17.905 +8519,267.858,407.206,439.442,175.885,516.457,346.487,460.711,160.696,168.038,160.696,230.207,311.078,358.878,17.905,20.096,17.905 +8520,267.887,424.497,450.425,173.088,506.909,348.961,468.737,166.373,166.275,166.373,204.383,310.674,359.831,17.729,19.330,17.729 +8521,267.917,357.308,476.582,171.995,496.982,351.031,477.431,172.295,164.932,172.295,347.411,311.003,360.081,18.234,20.241,18.234 +8522,267.948,357.992,486.522,171.509,487.336,351.817,486.620,179.087,163.551,179.087,348.243,310.155,360.594,18.197,20.789,18.197 +8523,267.979,356.582,497.219,172.738,477.231,352.144,496.752,6.009,161.162,6.009,352.003,309.896,360.928,19.157,21.022,19.157 +8524,268.010,354.657,508.844,175.886,466.728,351.055,507.981,13.476,156.766,13.476,352.513,309.620,359.920,19.216,20.081,19.216 +8525,268.042,351.763,520.324,180.042,454.148,348.018,518.868,21.251,153.789,21.251,351.987,309.510,360.023,19.727,19.876,19.727 +8526,268.075,347.516,529.826,185.962,441.817,344.232,527.965,29.539,150.534,29.539,352.794,309.279,360.342,24.651,18.745,24.651 +8527,268.107,340.842,541.876,193.696,429.398,337.245,539.055,38.108,147.771,38.108,352.109,309.407,361.252,24.655,18.371,24.655 +8528,268.139,331.237,553.076,203.953,419.434,328.362,549.971,47.203,144.246,47.203,352.151,309.552,360.615,23.562,18.568,23.562 +8529,268.170,319.473,563.563,215.637,410.037,316.693,559.297,56.915,141.203,56.915,350.265,309.855,360.448,23.257,18.247,23.257 +8530,268.200,306.450,571.228,228.602,402.558,304.197,566.204,65.841,138.013,65.841,349.492,310.400,360.503,22.195,18.880,22.195 +8531,268.231,291.867,576.898,243.059,396.562,290.195,570.874,74.487,135.147,74.487,348.633,310.446,361.138,22.536,18.631,22.536 +8532,268.262,275.585,580.396,257.620,393.706,274.808,573.701,83.377,132.071,83.377,348.074,311.515,361.554,23.609,18.959,23.609 +8533,268.292,259.981,579.896,274.093,393.421,260.325,573.199,92.941,130.101,92.941,347.083,312.929,360.496,23.483,18.801,23.483 +8534,268.323,259.981,579.896,274.093,393.421,260.325,573.199,92.941,130.101,92.941,347.083,312.929,360.496,23.483,18.801,23.483 +8535,268.351,245.750,577.477,289.259,395.451,247.420,570.293,103.092,126.529,103.092,344.799,313.209,359.549,20.930,20.416,20.930 +8536,268.382,231.329,573.336,302.872,399.075,235.070,564.749,113.540,123.818,113.540,339.200,314.247,357.934,18.808,20.020,18.808 +8537,268.413,180.122,623.777,316.847,405.300,223.282,557.512,123.077,121.245,123.077,199.055,314.560,357.217,18.065,19.768,18.065 +8538,268.443,186.087,578.487,328.850,415.527,212.579,549.312,132.241,118.393,132.241,275.597,315.624,354.414,17.751,19.877,17.751 +8539,268.476,188.111,553.626,339.767,426.137,204.926,540.109,141.203,117.096,141.203,309.855,317.094,353.004,19.943,20.745,19.943 +8540,268.509,186.677,537.583,347.696,437.366,198.790,530.508,149.712,113.728,149.712,323.057,316.881,351.113,23.024,20.623,23.024 +8541,268.542,182.928,522.761,353.964,450.294,193.181,518.608,157.954,111.038,157.954,327.213,317.337,349.337,20.920,20.821,20.920 +8542,268.574,181.059,510.235,358.705,463.406,190.402,507.900,165.964,108.616,165.964,328.878,317.822,348.139,19.888,22.405,19.888 +8543,268.605,179.984,497.994,361.315,476.730,188.891,497.035,173.853,105.781,173.853,329.296,318.252,347.214,18.921,23.430,18.921 +8544,268.635,180.440,486.134,362.446,489.605,189.188,486.332,1.295,103.241,1.295,329.074,318.651,346.574,18.538,24.965,18.538 +8545,268.666,181.870,475.364,361.487,501.791,190.478,476.658,8.552,101.070,8.552,328.279,319.465,345.689,18.662,25.026,18.662 +8546,268.696,184.781,465.001,359.000,513.074,192.725,467.235,15.709,98.471,15.709,328.444,320.360,344.950,19.253,24.601,19.253 +8547,268.726,184.781,465.001,359.000,513.074,192.725,467.235,15.709,98.471,15.709,328.444,320.360,344.950,19.253,24.601,19.253 +8548,268.754,188.155,456.362,355.823,523.927,195.911,459.464,21.801,96.147,21.801,328.124,320.562,344.831,19.127,24.657,19.127 +8549,268.786,193.000,447.000,351.396,533.265,200.211,450.606,26.565,93.884,26.565,328.255,320.958,344.379,25.938,23.662,25.938 +8550,268.817,198.885,438.423,345.984,542.465,205.679,442.952,33.690,91.975,33.690,327.550,321.430,343.881,25.239,22.332,25.239 +8551,268.848,202.658,433.593,340.500,550.000,209.416,438.864,37.954,90.000,37.954,326.282,322.000,343.424,25.611,21.000,25.611 +8552,268.880,208.724,426.196,334.517,556.915,215.397,432.757,44.519,87.589,44.519,325.258,322.514,343.975,24.789,20.687,24.789 +8553,268.911,212.731,420.346,327.411,562.653,219.647,428.354,49.185,85.806,49.185,322.991,323.817,344.154,24.115,18.637,24.115 +8554,268.943,217.921,415.777,321.530,567.800,224.853,425.284,53.902,84.382,53.902,320.695,323.880,344.227,23.634,18.713,23.634 +8555,268.975,222.343,410.556,315.854,571.961,229.568,422.277,58.349,83.628,58.349,317.857,324.339,345.395,23.066,18.888,23.066 +8556,269.006,226.078,405.648,310.021,575.791,233.736,420.253,62.328,83.307,62.328,313.369,325.577,346.351,21.395,18.810,21.395 +8557,269.038,230.702,400.916,304.473,578.503,238.238,417.921,66.098,83.754,66.098,310.093,325.326,347.294,21.776,18.872,21.776 +8558,269.068,234.454,396.899,299.074,580.539,241.701,416.335,69.550,84.782,69.550,306.313,324.845,347.801,20.232,19.194,20.232 +8559,269.099,238.400,391.800,293.857,582.425,245.556,415.058,72.897,86.820,72.897,299.673,324.000,348.341,19.704,19.304,19.704 +8560,269.130,242.584,389.214,288.908,583.965,248.929,414.107,75.700,89.415,75.700,297.563,324.075,348.941,19.000,19.060,19.000 +8561,269.160,247.512,386.893,284.630,585.069,252.843,413.327,78.598,93.485,78.598,295.339,325.042,349.273,19.449,22.471,19.449 +8562,269.192,247.512,386.893,284.630,585.069,252.843,413.327,78.598,93.485,78.598,295.339,325.042,349.273,19.449,22.471,19.449 +8563,269.221,251.844,388.486,278.942,585.547,255.532,412.456,81.254,96.089,81.254,300.769,325.102,349.275,18.095,22.300,18.095 +8564,269.252,256.253,389.635,275.156,585.134,258.748,411.880,83.601,101.535,83.601,303.239,323.815,348.007,18.454,20.076,18.454 +8565,269.283,260.100,391.705,271.020,585.351,261.491,410.997,85.878,107.255,85.878,310.492,323.273,349.176,18.034,19.939,18.034 +8566,269.314,263.944,393.897,267.353,584.218,264.528,410.544,87.990,113.582,87.990,314.017,321.572,347.332,18.480,19.952,18.480 +8567,269.344,266.720,394.477,263.771,583.755,266.816,409.859,89.644,120.700,89.644,316.981,320.538,347.746,17.919,19.615,17.919 +8568,269.375,269.749,395.535,261.186,583.442,269.356,409.700,91.591,128.853,91.591,319.460,320.003,347.802,18.021,20.139,18.021 +8569,269.407,272.862,397.210,258.397,582.841,272.095,409.476,93.576,136.425,93.576,323.182,319.141,347.762,18.214,21.277,18.214 +8570,269.438,275.550,399.144,255.650,582.123,274.585,409.493,95.326,144.689,95.326,326.500,318.284,347.286,18.268,21.421,18.268 +8571,269.469,278.017,399.862,253.300,582.100,276.851,409.574,96.843,153.435,96.843,328.642,317.074,348.206,18.904,22.808,18.904 +8572,269.499,281.081,400.974,250.700,581.643,279.711,409.877,98.746,162.747,98.746,330.344,316.653,348.360,19.159,23.187,19.159 +8573,269.530,283.694,402.320,247.727,581.016,282.191,410.287,100.685,171.469,100.685,332.103,316.212,348.318,19.097,23.191,19.097 +8574,269.561,286.958,402.786,245.000,581.000,285.145,410.760,102.804,0.000,102.804,333.451,316.000,349.807,18.971,24.000,18.971 +8575,269.592,286.958,402.786,245.000,581.000,285.145,410.760,102.804,0.000,102.804,333.451,316.000,349.807,18.971,24.000,18.971 +8576,269.621,289.635,404.168,241.972,580.176,287.728,411.388,104.797,9.090,104.797,334.818,316.613,349.753,18.862,24.923,18.862 +8577,269.651,293.132,405.767,238.650,578.550,291.233,411.901,107.199,18.435,107.199,336.647,317.176,349.490,18.947,26.563,18.947 +8578,269.682,296.193,407.361,234.974,578.102,294.261,412.825,109.473,27.810,109.473,339.584,317.592,351.174,18.835,25.884,18.835 +8579,269.713,298.768,408.929,231.045,577.438,296.650,414.280,111.595,36.235,111.595,340.193,317.776,351.702,19.003,24.937,19.003 +8580,269.744,303.018,410.598,227.039,576.444,300.572,415.974,114.470,45.246,114.470,341.219,317.527,353.031,19.266,24.909,19.266 +8581,269.776,306.231,412.595,224.315,573.276,304.260,416.446,117.096,54.554,117.096,343.408,318.175,352.061,18.923,20.408,18.923 +8582,269.810,309.966,414.826,220.207,571.660,307.859,418.477,119.982,64.290,119.982,344.542,318.988,352.972,18.956,21.157,18.956 +8583,269.842,313.822,417.089,214.911,569.638,311.272,421.024,122.949,73.025,122.949,344.861,319.951,354.240,19.223,20.176,19.223 +8584,269.874,318.446,420.093,210.032,566.125,315.713,423.810,126.327,82.648,126.327,345.293,318.777,354.521,20.070,18.652,20.070 +8585,269.904,322.191,423.327,204.617,562.086,319.554,426.496,129.758,91.893,129.758,347.243,318.289,355.487,19.613,19.163,19.613 +8586,269.935,325.973,426.536,199.352,557.854,323.033,429.669,133.176,100.833,133.176,347.621,318.511,356.214,18.628,19.528,18.628 +8587,269.969,330.759,430.138,194.917,552.970,327.293,433.378,136.931,110.045,136.931,347.254,318.159,356.744,19.375,19.296,19.375 +8588,270.000,335.407,434.523,190.486,547.113,331.586,437.602,141.132,119.261,141.132,347.347,317.312,357.161,19.221,19.174,19.221 +8589,270.030,339.574,439.432,185.677,540.139,335.494,442.245,145.408,128.157,145.408,347.907,316.156,357.818,18.962,19.995,18.962 +8590,270.060,344.537,445.686,182.093,533.132,339.900,448.324,150.362,136.848,150.362,347.531,315.479,358.200,19.466,18.193,19.466 +8591,270.091,344.537,445.686,182.093,533.132,339.900,448.324,150.362,136.848,150.362,347.531,315.479,358.200,19.466,18.193,19.466 +8592,270.120,348.900,451.656,178.754,525.372,343.351,454.261,154.859,145.713,154.859,346.170,313.741,358.430,19.749,17.839,19.749 +8593,270.151,353.586,458.842,175.681,516.394,346.638,461.326,160.330,153.958,160.330,344.276,313.077,359.034,19.221,18.378,19.221 +8594,270.182,359.670,466.611,173.560,507.688,349.111,469.197,166.239,162.399,166.239,337.595,311.310,359.337,18.356,17.414,18.356 +8595,270.213,377.330,474.212,172.330,497.544,351.180,477.669,172.470,170.838,172.470,307.070,310.217,359.825,17.987,17.930,17.987 +8596,270.243,429.978,485.442,172.000,486.000,352.104,487.042,178.823,0.000,178.823,204.306,308.000,360.088,17.633,18.000,17.633 +8597,270.276,427.489,504.256,173.161,475.913,352.290,496.945,5.553,8.427,5.553,209.540,308.338,360.647,17.805,19.344,17.805 +8598,270.308,421.285,523.017,175.801,463.890,350.998,507.541,12.417,17.053,12.417,217.031,307.760,360.971,18.439,19.813,18.439 +8599,270.340,396.003,535.085,179.907,452.533,348.130,517.968,19.674,25.372,19.674,259.183,307.272,360.865,19.306,19.990,19.306 +8600,270.370,374.905,543.463,200.692,451.961,352.647,531.045,29.157,33.690,29.157,291.485,269.584,342.460,23.000,19.692,23.000 +8601,270.400,358.137,552.126,206.146,444.771,346.261,543.029,37.451,41.537,37.451,312.045,267.653,341.965,23.310,19.120,23.310 +8602,270.431,347.144,563.849,215.829,440.868,339.190,555.726,45.603,49.289,45.603,314.012,257.477,336.748,22.626,19.867,22.626 +8603,270.462,337.933,579.282,222.118,432.348,327.488,565.028,53.769,57.334,53.769,303.264,261.737,338.606,21.742,20.059,21.742 +8604,270.493,323.909,589.811,221.881,405.972,310.016,563.370,62.282,65.353,62.282,300.923,306.351,360.659,21.141,20.231,21.141 +8605,270.525,323.909,589.811,221.881,405.972,310.016,563.370,62.282,65.353,62.282,300.923,306.351,360.659,21.141,20.231,21.141 +8606,270.554,310.479,607.180,235.031,400.252,297.450,569.440,70.953,73.059,70.953,280.740,306.384,360.591,19.850,19.407,19.850 +8607,270.585,295.212,644.058,249.111,396.226,281.120,573.600,78.690,80.763,78.690,216.708,306.639,360.414,23.142,18.398,23.142 +8608,270.615,270.143,650.723,263.227,393.560,267.800,573.411,88.264,88.479,88.264,205.118,306.971,359.813,21.808,18.454,21.808 +8609,270.647,246.590,649.636,278.406,393.383,258.524,572.863,98.835,96.078,98.835,205.419,309.615,360.808,23.869,18.898,23.869 +8610,270.679,219.692,641.539,293.455,396.758,242.918,568.599,107.663,103.835,107.663,205.050,311.173,358.148,18.754,18.652,18.754 +8611,270.709,195.700,631.600,307.702,401.696,230.231,562.538,116.565,111.571,116.565,202.588,313.462,357.015,17.889,18.945,17.889 +8612,270.741,176.266,615.631,320.430,408.301,219.741,555.249,125.754,119.275,125.754,207.363,315.184,356.173,17.659,19.336,17.659 +8613,270.774,161.312,596.797,331.998,417.254,210.768,546.390,134.454,127.053,134.454,212.930,316.790,354.163,17.589,18.883,17.589 +8614,270.805,143.140,582.520,342.000,427.500,203.500,537.250,143.130,135.000,143.130,202.400,317.491,353.300,17.400,19.092,17.400 +8615,270.835,131.223,563.742,350.234,438.805,197.774,527.441,151.390,142.554,151.390,200.958,319.376,352.574,17.318,17.813,17.318 +8616,270.866,122.300,544.106,356.012,450.021,193.641,516.997,159.193,150.673,159.193,198.511,320.523,351.146,17.125,19.131,17.125 +8617,270.897,124.627,522.652,360.649,462.705,191.195,506.918,166.701,159.146,166.701,213.357,321.642,350.162,17.199,19.847,17.199 +8618,270.927,124.627,522.652,360.649,462.705,191.195,506.918,166.701,159.146,166.701,213.357,321.642,350.162,17.199,19.847,17.199 +8619,270.956,113.219,505.476,363.388,475.247,190.227,496.919,173.660,167.471,173.660,194.028,322.359,348.991,17.117,20.175,17.117 +8620,270.986,105.523,486.607,364.469,486.580,190.195,487.615,0.682,175.757,0.682,179.142,322.488,348.499,17.058,18.623,17.058 +8621,271.018,107.877,468.115,363.896,498.436,191.148,479.010,7.454,4.128,7.454,179.656,323.324,347.617,17.366,19.496,17.366 +8622,271.049,114.393,451.840,362.452,508.917,192.856,470.977,13.707,12.769,13.707,185.987,323.878,347.513,17.511,19.832,17.511 +8623,271.081,155.019,449.098,359.673,518.111,195.250,463.225,19.348,21.395,19.348,261.363,325.165,346.641,17.718,19.039,17.718 +8624,271.112,178.404,447.408,356.196,527.036,198.077,456.564,24.958,29.547,24.958,302.782,325.359,346.180,17.688,20.246,17.688 +8625,271.146,188.950,443.003,351.664,535.930,201.390,450.226,30.141,38.027,30.141,317.210,326.166,345.980,18.021,19.653,18.021 +8626,271.179,194.718,437.403,347.054,543.915,205.454,444.918,34.992,47.102,34.992,319.337,325.413,345.547,18.515,18.748,18.515 +8627,271.212,199.952,431.733,341.766,550.480,209.791,439.444,38.089,55.827,38.089,319.736,324.549,344.736,24.824,19.128,24.824 +8628,271.245,205.862,424.945,336.178,556.200,214.932,433.632,43.764,64.496,43.764,319.568,324.257,344.685,24.789,18.763,24.789 +8629,271.278,210.611,421.672,330.601,561.170,218.594,430.454,47.726,73.301,47.726,320.394,324.033,344.131,23.409,18.869,23.409 +8630,271.310,215.373,417.664,324.628,565.259,222.506,426.723,51.789,82.117,51.789,320.982,323.696,344.043,24.007,18.363,24.007 +8631,271.342,219.765,415.068,319.343,568.513,225.921,424.022,55.491,90.855,55.491,322.252,323.098,343.985,22.610,19.535,22.610 +8632,271.373,224.382,411.971,314.101,571.775,229.817,421.028,59.036,99.741,59.036,324.132,323.368,345.257,22.981,19.987,22.981 +8633,271.403,228.917,409.981,308.435,573.813,233.581,418.936,62.488,108.314,62.488,323.687,322.565,343.881,22.598,22.036,22.598 +8634,271.434,232.506,407.869,304.443,575.710,236.711,417.182,65.704,117.512,65.704,324.272,322.024,344.710,21.218,21.988,21.218 +8635,271.465,236.926,407.168,299.934,577.439,240.355,415.985,68.749,126.642,68.749,325.218,321.231,344.139,20.659,23.945,20.659 +8636,271.496,240.917,405.200,295.750,578.750,243.849,414.053,71.679,135.000,71.679,326.676,319.612,345.327,20.200,23.335,20.200 +8637,271.526,240.917,405.200,295.750,578.750,243.849,414.053,71.679,135.000,71.679,326.676,319.612,345.327,20.200,23.335,20.200 +8638,271.554,244.971,403.897,291.305,579.734,247.427,412.735,74.476,143.795,74.476,326.954,320.036,345.300,20.341,24.160,20.341 +8639,271.585,248.909,403.072,287.220,580.879,250.884,411.878,77.358,152.422,77.358,327.663,319.059,345.712,19.871,24.988,19.871 +8640,271.616,252.598,402.452,283.160,581.840,254.136,411.145,79.963,160.852,79.963,328.627,319.155,346.283,19.180,24.837,19.180 +8641,271.647,256.321,401.958,279.060,582.492,257.443,410.562,82.569,169.405,82.569,329.211,318.880,346.565,18.668,25.302,18.668 +8642,271.678,259.801,402.147,275.041,583.083,260.516,410.412,85.054,177.839,85.054,329.969,318.528,346.561,18.393,25.736,18.393 +8643,271.709,264.114,402.606,270.931,583.654,264.396,410.311,87.905,6.028,87.905,331.510,318.243,346.932,18.536,25.801,18.536 +8644,271.740,267.916,402.965,266.721,584.109,267.861,410.039,90.441,14.121,90.441,333.998,319.174,348.147,17.953,26.343,17.953 +8645,271.770,271.738,403.351,262.270,583.765,271.390,409.788,93.094,22.457,93.094,335.537,320.156,348.431,17.974,26.641,17.974 +8646,271.801,275.397,404.545,257.508,583.987,274.832,410.254,95.648,29.831,95.648,337.715,320.628,349.189,18.088,24.842,18.088 +8647,271.831,279.090,405.370,252.680,584.071,278.312,410.817,98.130,37.446,98.130,339.270,320.406,350.275,18.950,24.732,18.950 +8648,271.862,283.187,405.958,248.226,583.778,282.140,411.394,100.905,44.605,100.905,340.302,319.653,351.373,18.999,24.665,18.999 +8649,271.892,283.187,405.958,248.226,583.778,282.140,411.394,100.905,44.605,100.905,340.302,319.653,351.373,18.999,24.665,18.999 +8650,271.921,287.824,407.206,244.812,581.758,286.699,411.702,104.036,52.125,104.036,341.005,320.565,350.275,18.675,20.874,18.675 +8651,271.952,292.189,408.135,239.717,580.688,290.794,412.670,107.103,59.394,107.103,341.728,320.539,351.218,18.969,20.729,18.969 +8652,271.982,295.750,409.648,234.362,579.185,294.266,413.763,109.832,66.371,109.832,343.121,320.254,351.870,18.906,20.785,18.906 +8653,272.013,300.474,411.060,229.105,578.270,298.468,415.742,113.199,73.195,113.199,343.235,322.203,353.421,18.777,21.504,18.777 +8654,272.044,305.540,413.495,222.869,575.023,303.485,417.537,116.946,80.181,116.946,344.770,320.580,353.838,18.780,20.806,18.780 +8655,272.077,310.641,415.608,217.512,571.882,308.218,419.714,120.548,86.648,120.548,344.765,319.035,354.300,19.060,19.590,19.060 +8656,272.110,315.405,418.408,211.103,567.959,312.745,422.296,124.380,92.626,124.380,345.804,318.766,355.224,19.026,20.089,19.026 +8657,272.142,320.379,421.720,205.385,563.484,317.545,425.310,128.290,98.097,128.290,346.753,319.043,355.899,19.416,20.136,19.416 +8658,272.174,325.996,426.565,200.224,558.284,323.172,429.596,132.979,103.055,132.979,347.647,318.703,355.932,19.255,19.483,19.255 +8659,272.205,331.455,431.836,193.800,551.773,328.411,434.569,138.077,107.956,138.077,348.746,317.811,356.928,19.770,20.409,19.770 +8660,272.236,336.132,436.538,188.641,545.057,332.754,439.100,142.815,112.004,142.815,349.226,316.815,357.705,19.148,19.775,19.148 +8661,272.266,342.136,444.399,183.939,537.177,338.495,446.605,148.786,115.758,148.786,349.723,316.249,358.238,20.650,19.858,20.650 +8662,272.296,346.277,450.496,179.765,528.424,342.250,452.463,153.965,118.980,153.965,349.710,315.275,358.674,21.167,19.595,21.167 +8663,272.327,350.333,459.131,176.035,518.336,346.209,460.604,160.346,122.093,160.346,350.597,314.509,359.354,20.920,19.744,20.920 +8664,272.360,353.271,468.985,173.364,507.553,349.271,469.888,167.285,125.057,167.285,351.566,313.607,359.768,20.140,19.598,20.140 +8665,272.391,353.271,468.985,173.364,507.553,349.271,469.888,167.285,125.057,167.285,351.566,313.607,359.768,20.140,19.598,20.140 +8666,272.419,355.421,479.678,172.250,495.805,351.427,480.060,174.531,127.921,174.531,351.700,312.672,359.724,19.432,19.767,19.432 +8667,272.450,356.615,491.350,172.278,483.454,352.159,491.188,2.083,130.559,2.083,351.168,311.835,360.086,18.751,19.876,18.751 +8668,272.481,355.580,503.544,174.952,471.385,352.085,502.934,9.898,133.989,9.898,352.744,310.659,359.838,18.935,19.089,18.935 +8669,272.513,353.052,515.840,178.022,458.035,349.180,514.587,17.928,135.680,17.928,352.370,309.859,360.510,19.700,20.644,19.700 +8670,272.551,349.876,525.798,183.865,445.408,346.101,523.895,26.764,138.168,26.764,351.946,309.979,360.400,25.047,19.977,25.047 +8671,272.597,334.000,550.500,200.794,421.076,330.468,546.968,45.000,143.596,45.000,351.432,309.648,361.424,23.335,19.097,23.335 +8672,272.629,321.783,561.748,212.583,411.125,318.731,557.402,54.919,146.416,54.919,350.804,309.804,361.424,23.146,19.714,23.146 +8673,272.663,308.663,570.015,226.265,403.441,306.328,565.164,64.297,149.036,64.297,350.122,310.069,360.890,22.620,18.522,22.620 +8674,272.699,293.576,576.125,241.362,398.500,292.089,571.177,73.281,151.420,73.281,349.606,310.457,359.940,21.838,18.303,21.838 +8675,272.729,276.186,579.674,257.289,395.174,275.500,574.504,82.453,154.271,82.453,349.904,310.976,360.336,25.190,18.419,25.190 +8676,272.761,261.103,579.504,272.777,394.166,261.319,573.580,92.093,157.402,92.093,347.572,311.770,359.427,24.240,18.559,24.240 +8677,272.793,261.103,579.504,272.777,394.166,261.319,573.580,92.093,157.402,92.093,347.572,311.770,359.427,24.240,18.559,24.240 +8678,272.822,248.880,576.907,288.598,395.698,250.195,571.099,102.758,160.602,102.758,347.193,313.074,359.103,21.365,18.134,21.365 +8679,272.853,233.842,571.230,303.723,399.993,236.146,565.613,112.306,163.835,112.306,345.610,314.281,357.751,19.429,18.179,19.429 +8680,272.884,221.550,563.838,317.472,406.575,224.575,558.919,121.592,167.196,121.592,345.313,315.633,356.864,19.975,18.084,19.975 +8681,272.916,210.886,554.834,329.923,414.551,214.770,550.339,130.830,170.593,130.830,344.184,316.963,356.065,19.754,19.474,19.754 +8682,272.947,200.780,545.831,340.349,425.396,206.324,541.152,139.833,174.134,139.833,339.655,318.025,354.165,19.967,17.947,19.967 +8683,272.979,192.958,534.931,349.078,436.872,199.683,530.797,148.424,177.614,148.424,337.129,318.640,352.917,19.728,17.818,19.728 +8684,273.012,188.416,522.956,355.976,448.945,195.108,520.048,156.510,1.444,156.510,337.164,320.251,351.757,20.537,18.238,20.537 +8685,273.044,184.095,511.843,360.820,461.552,192.064,509.631,164.488,5.020,164.488,334.396,321.485,350.935,19.594,18.469,19.594 +8686,273.077,180.843,500.365,363.335,474.097,190.307,499.052,172.104,8.544,172.104,330.523,322.591,349.632,18.986,19.546,18.986 +8687,273.108,179.969,488.897,364.561,486.228,190.277,488.795,179.436,12.585,179.436,327.984,322.902,348.601,17.960,19.365,17.960 +8688,273.138,179.157,477.727,363.980,498.067,191.161,479.204,7.017,16.943,7.017,323.467,324.103,347.657,18.018,19.639,18.018 +8689,273.169,179.302,467.219,362.005,508.786,192.732,470.499,13.727,21.060,13.727,319.395,325.233,347.046,18.138,19.613,18.138 +8690,273.200,177.861,456.131,359.145,518.777,195.313,462.477,19.983,25.697,19.983,309.277,325.697,346.417,17.942,20.014,17.942 +8691,273.230,178.445,445.489,355.713,528.756,198.854,455.384,25.866,29.820,25.866,300.947,325.220,346.309,17.942,19.881,17.942 +8692,273.260,178.445,445.489,355.713,528.756,198.854,455.384,25.866,29.820,25.866,300.947,325.220,346.309,17.942,19.881,17.942 +8693,273.289,169.232,428.373,350.913,537.889,202.512,448.854,31.608,34.071,31.608,267.945,325.345,346.100,17.688,18.999,17.688 +8694,273.320,157.780,406.460,345.752,546.073,206.758,443.193,36.870,38.445,36.870,223.400,325.152,345.845,17.800,18.615,17.800 +8695,273.350,150.992,384.265,339.964,553.079,211.164,437.896,41.711,42.769,41.711,184.373,325.628,345.581,17.965,18.664,17.965 +8696,273.381,156.083,370.545,334.132,559.341,215.198,433.516,46.809,47.195,46.809,173.534,325.001,346.277,17.706,18.293,17.706 +8697,273.412,165.707,361.634,327.587,564.642,220.027,429.534,51.340,51.698,51.340,171.479,325.023,345.387,17.491,18.759,17.491 +8698,273.446,175.843,354.502,321.465,569.195,224.725,425.945,55.620,56.232,55.620,172.576,324.780,345.706,17.679,18.618,17.679 +8699,273.478,185.936,348.056,315.050,573.089,228.939,422.594,60.018,60.810,60.018,174.670,324.787,346.777,17.490,18.816,17.490 +8700,273.509,196.145,342.632,308.918,576.495,233.819,420.072,64.058,65.414,64.058,174.792,325.070,347.028,17.596,18.328,17.596 +8701,273.543,205.955,337.349,302.634,579.408,238.738,417.939,67.865,70.079,67.865,173.280,324.488,347.287,17.615,18.242,17.615 +8702,273.574,216.050,333.650,296.296,582.055,243.523,416.069,71.565,74.790,71.565,174.558,325.826,348.313,17.393,18.712,17.393 +8703,273.605,227.251,334.179,289.942,583.789,247.859,414.551,75.619,79.509,75.619,182.829,325.139,348.773,17.635,19.411,17.635 +8704,273.635,239.757,346.475,284.448,584.704,252.469,413.210,79.216,84.318,79.216,213.027,324.482,348.898,17.682,20.496,17.682 +8705,273.666,249.477,352.618,278.134,585.521,257.106,412.127,82.694,89.125,82.694,229.328,323.252,349.320,17.727,21.074,17.727 +8706,273.697,258.307,357.254,272.563,586.941,261.830,411.871,86.309,93.599,86.309,241.337,325.056,350.797,17.705,21.957,17.705 +8707,273.728,266.500,360.000,265.769,586.256,266.500,411.128,90.000,98.005,90.000,248.000,324.139,350.256,17.000,20.378,17.000 +8708,273.760,266.500,360.000,265.769,586.256,266.500,411.128,90.000,98.005,90.000,248.000,324.139,350.256,17.000,20.378,17.000 +8709,273.789,273.816,366.636,259.211,585.607,271.219,410.781,93.366,102.612,93.366,262.018,323.441,350.459,17.558,19.615,17.558 +8710,273.820,280.991,369.744,253.043,584.359,275.979,410.674,96.981,107.103,96.981,267.897,322.098,350.370,17.786,19.263,17.786 +8711,273.851,287.947,372.952,246.936,582.878,280.919,411.022,100.460,111.695,100.460,272.911,321.071,350.339,17.852,19.253,17.852 +8712,273.882,294.927,376.120,241.058,581.276,285.838,411.717,104.323,116.295,104.323,277.255,320.661,350.733,17.935,19.502,17.935 +8713,273.914,301.779,379.227,234.842,579.111,291.075,412.764,107.700,120.630,107.700,280.730,319.995,351.137,17.675,19.361,17.675 +8714,273.946,309.086,381.534,228.767,576.688,296.055,414.112,111.801,125.083,111.801,281.700,319.250,351.875,17.641,19.445,17.641 +8715,273.977,316.085,385.483,222.708,573.584,301.397,416.034,115.677,129.500,115.677,284.380,318.579,352.176,17.730,19.061,17.730 +8716,274.009,323.413,389.177,216.724,570.190,306.631,418.325,119.932,133.603,119.932,285.670,317.690,352.939,17.595,19.517,17.595 +8717,274.041,331.487,392.534,210.727,565.815,312.063,421.064,124.249,138.240,124.249,284.333,317.237,353.363,17.622,18.808,17.622 +8718,274.071,339.744,396.695,204.930,561.199,317.584,424.395,128.660,142.211,128.660,283.455,316.443,354.401,17.648,19.093,17.648 +8719,274.102,349.494,400.288,199.305,555.956,322.875,428.570,133.264,146.189,133.264,277.230,315.634,354.906,17.648,19.110,17.648 +8720,274.133,363.258,401.845,193.716,549.737,328.200,433.307,138.094,149.946,138.094,261.496,314.788,355.707,17.595,19.510,17.595 +8721,274.163,374.887,407.855,188.554,543.060,333.243,438.991,143.216,154.006,143.216,252.402,314.022,356.396,17.597,19.225,17.597 +8722,274.194,390.987,413.122,183.739,534.809,338.266,445.200,148.682,157.779,148.682,233.753,313.088,357.179,17.765,18.735,17.765 +8723,274.226,390.987,413.122,183.739,534.809,338.266,445.200,148.682,157.779,148.682,233.753,313.088,357.179,17.765,18.735,17.765 +8724,274.255,400.749,424.611,179.669,526.949,342.546,452.462,154.428,161.053,154.428,229.102,312.432,358.149,17.786,19.396,17.786 +8725,274.286,417.995,435.237,176.241,516.635,346.420,460.499,160.560,165.155,160.560,206.515,311.648,358.321,17.750,19.169,17.750 +8726,274.316,425.405,451.881,173.620,507.333,349.378,469.605,166.877,167.661,166.877,203.339,310.440,359.469,17.841,20.210,17.841 +8727,274.348,374.369,476.829,171.982,495.795,351.440,479.402,173.598,171.674,173.598,314.190,310.281,360.334,17.912,17.400,17.912 +8728,274.378,360.540,490.026,172.333,484.002,352.161,489.930,0.662,175.213,0.662,343.012,309.925,359.770,17.808,17.711,17.808 +8729,274.410,360.109,501.745,174.414,471.871,352.248,500.608,8.227,178.636,8.227,344.347,309.079,360.233,18.399,17.566,18.399 +8730,274.442,355.358,513.245,176.530,460.501,349.726,511.636,15.945,1.736,15.945,349.445,307.435,361.160,19.505,18.234,19.505 +8731,274.473,351.714,522.210,181.457,449.586,347.418,520.267,24.331,4.227,24.331,351.255,306.824,360.684,25.640,19.165,25.640 +8732,274.504,346.730,535.041,188.448,436.909,341.890,531.921,32.807,7.199,32.807,349.377,306.752,360.893,25.479,17.545,25.479 +8733,274.535,337.253,546.460,197.262,425.080,333.776,543.377,41.566,10.448,41.566,351.959,306.451,361.253,24.493,17.485,24.493 +8734,274.566,326.207,557.134,207.575,415.673,323.606,553.882,51.340,12.938,51.340,352.484,306.476,360.814,23.895,17.675,23.895 +8735,274.596,313.529,566.426,220.090,407.183,311.338,562.572,60.387,15.762,60.387,351.499,306.578,360.365,21.861,17.812,21.861 +8736,274.626,300.322,573.343,233.650,400.550,298.617,568.741,69.669,18.435,69.669,350.753,307.057,360.570,21.541,17.709,21.541 +8737,274.657,300.322,573.343,233.650,400.550,298.617,568.741,69.669,18.435,69.669,350.753,307.057,360.570,21.541,17.709,21.541 +8738,274.686,284.363,577.821,248.345,396.595,283.400,573.164,78.318,20.898,78.318,350.507,307.494,360.019,23.705,17.818,23.705 +8739,274.716,271.252,578.472,263.561,394.859,271.153,573.965,88.741,23.334,88.741,349.443,307.925,358.459,22.083,17.914,22.083 +8740,274.747,253.585,578.074,279.033,395.885,254.184,573.338,97.199,25.560,97.199,348.786,308.569,358.335,23.571,18.278,23.571 +8741,274.779,241.030,574.289,294.003,398.884,242.395,569.909,107.314,27.897,107.314,348.093,309.638,357.269,19.183,18.508,19.183 +8742,274.811,228.424,567.958,308.826,403.440,230.709,563.368,116.468,30.256,116.468,345.706,310.960,355.962,20.075,20.515,20.075 +8743,274.843,216.763,560.331,321.774,411.135,219.734,556.173,125.538,32.619,125.538,344.442,312.078,354.663,19.762,19.878,19.762 +8744,274.875,207.122,551.131,334.257,418.069,211.388,546.765,134.341,34.796,134.341,343.631,314.585,355.839,19.765,25.011,19.765 +8745,274.906,198.726,541.622,343.920,428.940,204.061,537.588,142.907,36.870,142.907,340.795,315.800,354.172,20.739,24.800,20.739 +8746,274.937,192.180,531.145,351.458,440.937,198.069,527.904,151.181,39.155,151.181,339.183,316.699,352.627,21.063,23.385,21.063 +8747,274.967,187.929,518.815,357.111,453.305,193.453,516.681,158.880,41.325,158.880,339.157,318.515,351.002,20.014,22.710,20.014 +8748,274.997,184.901,508.642,360.921,465.231,191.075,507.136,166.288,43.363,166.288,337.164,319.765,349.876,20.188,22.901,20.188 +8749,275.028,183.341,497.574,362.500,478.000,189.679,496.865,173.623,45.000,173.623,334.938,321.734,347.694,19.432,21.920,19.432 +8750,275.059,183.341,497.574,362.500,478.000,189.679,496.865,173.623,45.000,173.623,334.938,321.734,347.694,19.432,21.920,19.432 +8751,275.087,183.012,487.025,363.680,489.792,189.825,487.108,0.703,47.603,0.703,334.122,322.012,347.749,18.305,21.705,18.305 +8752,275.118,183.660,477.240,362.740,500.960,190.786,478.144,7.228,50.013,7.228,332.551,322.542,346.917,19.241,21.058,19.241 +8753,275.150,185.381,467.494,360.952,511.537,192.828,469.365,14.107,52.431,14.107,331.305,322.842,346.663,19.397,20.608,19.397 +8754,275.181,187.545,458.775,358.122,521.064,195.449,461.335,17.949,54.980,17.949,329.709,323.354,346.326,26.222,20.187,26.222 +8755,275.213,192.195,449.192,354.135,529.848,199.547,452.642,25.139,58.134,25.139,329.248,323.394,345.489,25.550,19.350,25.550 +8756,275.244,195.569,442.698,350.241,537.555,203.013,447.008,30.069,61.493,30.069,328.361,323.620,345.564,25.416,19.439,25.416 +8757,275.276,198.654,438.269,346.079,544.196,206.226,443.318,33.690,65.056,33.690,326.441,323.636,344.643,25.239,19.125,25.239 +8758,275.308,201.833,433.805,341.429,550.027,208.944,439.257,37.476,69.376,37.476,327.151,323.857,345.073,25.607,19.101,25.607 +8759,275.338,205.117,428.911,337.134,554.961,212.643,435.569,41.496,73.811,41.496,324.604,324.163,344.699,25.235,19.734,25.235 +8760,275.369,208.250,424.750,332.151,559.266,215.604,432.104,45.000,78.826,45.000,323.855,323.793,344.656,24.749,18.652,24.749 +8761,275.399,212.746,420.774,327.585,562.943,219.512,428.629,49.259,84.447,49.259,323.861,323.779,344.596,23.345,18.344,23.345 +8762,275.430,216.590,417.957,323.618,565.497,222.825,426.035,52.334,90.451,52.334,323.566,323.069,343.974,23.984,18.866,23.984 +8763,275.463,219.605,415.430,319.830,567.863,225.366,423.668,55.035,96.674,55.035,324.499,322.713,344.605,23.662,19.875,23.662 +8764,275.494,222.735,413.930,316.730,570.628,228.359,422.718,57.381,102.960,57.381,323.567,323.943,344.435,23.280,21.374,23.280 +8765,275.526,222.735,413.930,316.730,570.628,228.359,422.718,57.381,102.960,57.381,323.567,323.943,344.435,23.280,21.374,23.280 +8766,275.555,225.390,412.096,313.292,571.893,230.436,420.689,59.574,109.562,59.574,324.753,322.887,344.683,22.857,21.840,22.857 +8767,275.585,227.890,410.867,310.764,573.126,232.578,419.573,61.699,116.331,61.699,324.758,321.575,344.534,22.147,22.635,22.147 +8768,275.616,230.210,409.909,307.820,574.054,234.279,418.102,63.585,123.261,63.585,326.477,321.487,344.772,21.412,22.918,21.412 +8769,275.647,232.910,408.972,305.545,575.231,236.721,417.259,65.304,130.253,65.304,326.312,320.974,344.555,22.143,24.005,22.143 +8770,275.680,235.042,408.131,303.142,576.070,238.535,416.337,66.942,137.307,66.942,326.713,320.036,344.551,21.933,24.012,21.933 +8771,275.712,236.942,407.039,301.392,576.850,240.271,415.502,68.523,144.401,68.523,326.857,320.032,345.046,21.800,24.661,21.800 +8772,275.745,238.779,406.470,299.474,577.662,241.903,414.899,69.664,151.670,69.664,327.273,319.614,345.251,21.684,25.067,21.684 +8773,275.777,240.359,406.031,297.749,578.151,243.211,414.287,70.949,159.057,70.949,327.913,319.638,345.383,21.115,25.170,21.115 +8774,275.809,241.709,406.109,296.412,578.780,244.324,414.190,72.063,166.430,72.063,328.276,319.145,345.264,20.298,25.509,20.298 +8775,275.841,243.447,405.668,295.442,579.467,245.926,413.823,73.091,173.758,73.091,328.722,319.252,345.769,20.628,25.038,20.628 +8776,275.872,244.855,405.903,293.971,579.847,247.013,413.416,73.974,1.245,73.974,330.222,318.294,345.854,20.347,24.472,20.347 +8777,275.902,246.050,406.299,292.887,580.716,247.960,413.353,74.846,8.955,74.846,331.957,320.242,346.574,19.968,25.480,19.968 +8778,275.933,246.955,406.405,291.789,581.219,248.680,413.164,75.677,16.330,75.677,333.040,321.161,346.991,19.461,25.306,19.461 +8779,275.964,248.443,407.106,290.216,581.403,249.846,412.886,76.357,23.860,76.357,334.671,322.778,346.568,20.058,24.622,20.058 +8780,275.995,249.331,407.236,289.519,581.763,250.623,412.797,76.931,32.234,76.931,335.350,323.069,346.770,19.812,25.522,19.812 +8781,276.026,249.924,407.406,288.235,583.101,251.175,413.038,77.471,39.289,77.471,336.568,323.444,348.107,19.198,23.500,19.198 +8782,276.057,249.924,407.406,288.235,583.101,251.175,413.038,77.471,39.289,77.471,336.568,323.444,348.107,19.198,23.500,19.198 +8783,276.085,250.799,407.074,287.769,583.215,252.029,412.865,78.009,47.045,78.009,336.278,322.841,348.118,19.538,21.679,19.538 +8784,276.118,251.226,406.374,286.942,583.541,252.551,412.856,78.449,54.611,78.449,334.995,323.755,348.229,19.502,20.100,19.502 +8785,276.149,251.679,405.753,285.800,584.063,253.104,412.991,78.857,62.501,78.857,333.576,323.871,348.331,19.385,20.729,19.385 +8786,276.180,251.198,403.757,284.307,585.165,253.116,413.391,78.740,69.947,78.740,329.470,325.510,349.117,18.865,20.366,18.865 +8787,276.211,248.107,385.429,283.171,585.185,253.350,413.042,79.249,77.405,79.249,293.155,324.968,349.368,18.206,19.494,18.206 +8788,276.244,242.216,351.188,282.752,585.109,253.462,413.039,79.695,84.992,79.695,223.338,324.858,349.069,17.889,19.626,17.889 +8789,276.277,249.486,385.877,281.972,585.091,254.288,412.723,79.859,93.545,79.859,294.553,324.802,349.099,19.199,20.836,19.199 +8790,276.308,250.866,392.406,280.760,584.320,254.363,412.222,79.992,100.305,79.992,307.890,323.962,348.134,19.174,20.572,19.174 +8791,276.341,251.720,396.850,279.937,583.155,254.292,411.584,80.096,107.981,80.096,316.935,322.259,346.849,18.983,20.216,18.983 +8792,276.371,252.187,398.857,280.300,582.900,254.386,411.473,80.116,116.565,80.116,321.049,321.547,346.661,19.151,20.125,19.151 +8793,276.401,252.470,399.982,280.746,582.362,254.446,411.320,80.116,124.670,80.116,323.020,320.909,346.035,19.323,21.884,19.323 +8794,276.432,252.403,400.901,281.469,582.329,254.235,411.312,80.018,132.149,80.018,325.154,320.201,346.297,19.169,22.383,19.169 +8795,276.462,252.418,401.487,281.955,582.042,254.132,411.230,80.018,139.980,80.018,326.313,319.452,346.098,19.343,23.518,19.343 +8796,276.494,252.257,402.092,282.707,581.615,253.889,411.120,79.752,147.633,79.752,327.454,318.976,345.804,19.175,24.447,19.175 +8797,276.526,252.257,402.092,282.707,581.615,253.889,411.120,79.752,147.633,79.752,327.454,318.976,345.804,19.175,24.447,19.175 +8798,276.554,252.196,402.688,283.243,581.684,253.782,411.312,79.584,155.158,79.584,328.243,318.487,345.781,19.432,24.670,19.432 +8799,276.585,251.825,403.156,284.157,581.601,253.424,411.641,79.324,162.626,79.324,328.154,318.738,345.423,19.299,24.767,19.299 +8800,276.616,251.417,403.322,285.048,581.614,253.027,411.612,79.011,170.011,79.011,329.087,318.836,345.977,19.357,25.074,19.357 +8801,276.646,251.075,403.783,286.127,581.689,252.671,411.823,78.774,177.290,78.774,329.863,318.779,346.258,19.595,24.771,19.595 +8802,276.678,250.521,404.435,286.936,581.807,252.117,412.081,78.212,4.548,78.212,330.897,319.378,346.520,19.502,25.091,19.502 +8803,276.710,250.082,405.129,288.206,581.918,251.636,412.344,77.845,11.720,77.845,332.182,320.084,346.944,19.717,25.776,19.717 +8804,276.742,249.499,406.014,289.007,581.954,251.005,412.702,77.307,18.712,77.307,333.221,320.670,346.932,19.880,26.031,19.880 +8805,276.774,249.022,407.322,289.811,581.396,250.298,412.723,76.701,25.583,76.701,335.377,322.887,346.477,19.888,25.088,19.888 +8806,276.804,248.261,407.802,290.910,581.746,249.600,413.213,76.092,31.973,76.092,335.894,322.873,347.043,20.089,24.293,20.089 +8807,276.835,247.551,408.530,292.104,581.735,248.828,413.426,75.379,38.278,75.379,337.446,323.455,347.565,20.068,24.010,20.068 +8808,276.866,246.481,408.096,293.993,581.417,248.080,413.958,74.745,43.981,74.745,335.124,323.310,347.276,20.348,20.777,20.348 +8809,276.898,245.583,407.972,294.835,581.063,247.315,414.061,74.120,49.316,74.120,334.603,323.987,347.263,20.456,20.874,20.456 +8810,276.929,244.493,408.539,295.301,581.552,246.326,414.724,73.496,53.933,73.496,334.834,324.449,347.736,19.957,20.395,19.957 +8811,276.959,243.646,407.224,295.816,581.615,245.984,414.823,72.897,57.875,72.897,332.243,324.359,348.144,20.660,20.700,20.660 +8812,276.990,243.646,407.224,295.816,581.615,245.984,414.823,72.897,57.875,72.897,332.243,324.359,348.144,20.660,20.700,20.660 +8813,277.019,242.643,406.567,296.188,581.618,245.345,415.070,72.372,60.965,72.372,330.403,324.700,348.248,20.833,20.770,20.833 +8814,277.050,240.845,406.263,296.532,581.232,243.990,415.366,70.942,63.249,70.942,328.600,324.686,347.862,20.330,19.820,20.330 +8815,277.082,239.235,402.981,297.264,581.344,243.716,415.610,70.463,64.913,70.463,321.398,324.892,348.199,19.913,19.026,19.913 +8816,277.113,237.088,398.924,297.742,581.012,243.197,415.705,69.996,66.209,69.996,312.268,324.716,347.985,19.885,19.078,19.885 +8817,277.146,233.341,391.493,298.604,580.747,242.507,416.050,69.531,67.249,69.531,295.405,324.612,347.830,19.652,19.098,19.652 +8818,277.178,227.643,378.993,299.568,580.465,242.060,416.239,68.839,68.051,68.839,267.948,324.784,347.825,19.734,18.980,19.734 +8819,277.210,211.297,341.530,300.456,580.229,240.085,417.098,69.146,68.484,69.146,186.141,324.600,347.872,17.711,19.250,17.711 +8820,277.242,209.034,341.586,301.565,579.860,239.360,417.399,68.199,68.927,68.199,184.581,324.513,347.887,17.827,19.150,17.827 +8821,277.274,205.905,340.373,302.973,579.260,238.316,418.159,67.380,69.444,67.380,178.615,324.672,347.153,17.692,18.961,17.692 +8822,277.304,206.360,348.333,304.339,578.559,236.709,418.615,66.644,69.969,66.644,194.191,324.570,347.299,17.631,18.966,17.631 +8823,277.334,216.903,378.936,306.565,577.631,235.441,419.283,65.323,70.907,65.323,258.359,324.821,347.163,17.658,18.827,17.658 +8824,277.365,220.220,392.158,308.070,576.962,233.884,420.055,63.905,71.830,63.905,284.961,324.478,347.088,17.778,19.003,17.778 +8825,277.394,220.482,398.932,310.876,575.329,232.111,421.048,62.262,73.668,62.262,296.450,324.719,346.424,17.885,19.010,17.885 +8826,277.426,220.482,398.932,310.876,575.329,232.111,421.048,62.262,73.668,62.262,296.450,324.719,346.424,17.885,19.010,17.885 +8827,277.456,222.382,404.444,313.149,573.962,231.730,420.905,60.408,75.750,60.408,308.737,324.523,346.598,22.813,18.923,22.813 +8828,277.487,221.294,409.335,315.813,572.038,229.519,422.587,58.173,78.611,58.173,313.781,324.376,344.975,23.057,18.802,23.057 +8829,277.518,219.411,414.145,318.959,569.642,226.292,424.217,55.660,82.255,55.660,320.309,324.001,344.704,22.621,18.644,22.621 +8830,277.549,216.393,416.664,322.582,566.525,223.222,425.658,52.792,86.566,52.792,321.971,323.738,344.554,23.628,18.507,23.628 +8831,277.581,213.622,420.561,326.602,563.002,219.903,427.932,49.563,91.302,49.563,324.655,322.303,344.022,24.111,19.109,24.111 +8832,277.613,210.045,424.131,331.637,559.072,216.533,430.956,46.454,96.474,46.454,325.487,322.470,344.322,23.998,21.930,23.998 +8833,277.643,206.075,428.917,336.186,554.640,212.942,435.098,41.987,101.535,41.987,324.671,322.036,343.150,25.198,23.335,25.198 +8834,277.675,203.084,432.457,340.315,549.247,209.726,437.835,39.000,106.844,39.000,326.110,321.155,343.202,24.983,23.787,24.983 +8835,277.706,198.635,437.178,344.500,543.500,205.775,442.053,34.330,111.801,34.330,326.252,320.696,343.543,25.318,24.326,25.318 +8836,277.736,194.223,442.485,348.560,537.285,202.088,446.979,29.745,116.940,29.745,325.839,321.139,343.956,25.427,24.728,25.427 +8837,277.767,191.078,447.626,352.571,530.318,199.435,451.634,25.624,122.471,25.624,325.667,321.282,344.205,25.964,25.233,25.964 +8838,277.802,186.050,457.367,356.227,522.013,195.078,460.778,20.701,127.776,20.701,325.482,320.573,344.783,19.541,25.234,19.541 +8839,277.833,182.912,465.158,359.567,513.485,192.883,467.877,15.255,133.452,15.255,324.950,319.878,345.622,19.295,25.408,19.295 +8840,277.864,179.716,473.703,361.992,503.712,191.040,475.590,9.462,138.918,9.462,323.537,320.044,346.498,18.577,24.333,18.577 +8841,277.895,176.302,483.038,363.281,493.696,190.059,483.808,3.202,144.258,3.202,319.452,320.491,347.008,18.977,23.212,18.977 +8842,277.927,176.302,483.038,363.281,493.696,190.059,483.808,3.202,144.258,3.202,319.452,320.491,347.008,18.977,23.212,18.977 +8843,277.955,171.565,492.831,363.366,482.635,189.617,491.954,177.219,150.018,177.219,311.847,320.755,347.994,18.270,21.655,18.270 +8844,277.985,160.428,505.999,362.056,470.717,190.040,500.930,170.287,155.433,170.287,289.208,321.096,349.295,17.547,20.528,17.547 +8845,278.015,114.661,533.202,359.981,459.424,191.933,510.020,163.301,161.328,163.301,189.650,320.962,350.999,17.241,19.137,17.241 +8846,278.047,185.750,525.250,355.898,448.762,195.465,521.086,156.801,167.282,156.801,330.761,321.612,351.901,19.433,20.610,19.433 +8847,278.078,192.250,535.250,350.559,438.438,199.859,530.685,149.036,172.381,149.036,335.623,320.565,353.369,19.894,19.779,19.894 +8848,278.110,199.521,544.412,343.061,428.752,205.244,539.752,140.845,177.990,140.845,339.154,318.506,353.914,19.441,18.445,19.441 +8849,278.143,208.344,552.419,333.367,419.457,211.960,548.552,133.085,3.900,133.085,343.840,318.102,354.428,19.530,18.684,19.530 +8850,278.181,218.306,561.367,322.100,411.300,221.150,557.219,124.439,9.866,124.439,344.807,316.339,354.867,19.958,18.462,19.958 +8851,278.213,229.325,568.452,309.153,404.433,231.398,564.149,115.731,16.113,115.731,345.718,314.837,355.271,19.732,18.254,19.732 +8852,278.246,241.160,574.395,295.230,399.376,242.561,569.862,107.176,22.306,107.176,347.384,312.707,356.872,19.021,18.076,19.021 +8853,278.279,253.209,577.238,281.204,395.408,253.855,572.600,97.923,28.856,97.923,349.176,309.260,358.541,22.341,19.572,22.341 +8854,278.311,269.000,578.500,267.385,394.552,269.000,573.776,90.000,35.417,90.000,349.000,305.626,358.448,22.000,20.410,22.000 +8855,278.343,282.768,578.824,267.985,408.787,283.098,580.906,81.003,40.914,81.003,348.945,264.088,344.730,22.824,23.275,22.824 +8856,278.374,296.619,577.047,254.826,417.662,297.921,581.126,72.296,47.083,72.296,346.221,254.172,337.656,20.266,21.405,20.266 +8857,278.404,314.506,582.765,239.389,425.348,311.523,576.762,63.579,53.746,63.579,321.987,253.480,335.392,18.486,19.031,18.486 +8858,278.436,331.849,579.433,224.319,433.108,324.553,568.464,56.370,59.292,56.370,310.081,256.049,336.429,20.450,19.843,20.450 +8859,278.467,333.948,555.738,211.566,439.204,335.028,556.907,47.261,63.858,47.261,343.656,263.931,340.473,24.358,20.917,24.358 +8860,278.497,341.381,544.031,197.249,438.317,339.744,542.701,39.081,70.652,39.081,348.620,286.456,352.837,25.320,18.352,25.320 +8861,278.528,347.772,532.876,188.182,440.462,343.699,530.405,31.242,78.311,31.242,349.699,304.618,359.227,25.191,19.146,25.191 +8862,278.559,347.772,532.876,188.182,440.462,343.699,530.405,31.242,78.311,31.242,349.699,304.618,359.227,25.191,19.146,25.191 +8863,278.588,352.464,521.725,182.239,451.023,348.320,519.911,23.641,84.872,23.641,350.488,307.546,359.534,25.540,18.503,25.540 +8864,278.619,355.625,513.577,178.339,462.557,350.902,512.186,16.409,91.776,16.409,349.263,309.254,359.109,19.562,18.720,19.562 +8865,278.650,357.414,502.525,175.273,474.185,352.612,501.740,9.290,98.270,9.290,349.192,311.126,358.924,19.503,19.959,19.503 +8866,278.682,357.669,490.232,173.396,485.001,352.855,490.016,2.573,104.791,2.573,349.366,312.617,359.006,23.010,19.343,23.010 +8867,278.713,356.354,482.195,172.732,495.532,351.942,482.474,176.384,110.702,176.384,350.513,313.674,359.354,19.140,19.617,19.140 +8868,278.745,354.559,472.928,173.090,505.279,350.222,473.671,170.279,117.096,170.279,351.049,314.444,359.851,19.854,19.337,19.854 +8869,278.777,352.064,464.621,174.742,513.822,347.966,465.756,164.511,123.501,164.511,351.036,315.067,359.539,20.830,19.092,20.830 +8870,278.808,349.452,457.258,177.195,521.744,345.448,458.788,159.087,130.030,159.087,350.707,314.827,359.281,20.991,19.633,20.991 +8871,278.839,347.071,450.577,179.788,528.802,342.370,452.875,153.947,136.353,153.947,348.354,315.415,358.818,20.264,19.192,20.264 +8872,278.869,346.017,442.990,182.831,534.784,338.960,447.160,149.421,142.032,149.421,341.592,314.865,357.985,19.488,18.622,19.488 +8873,278.906,399.718,397.054,186.553,541.087,334.782,441.286,145.739,148.536,145.739,200.248,313.726,357.386,17.931,18.320,17.931 +8874,278.948,363.266,411.472,190.647,545.810,331.372,436.601,141.766,154.607,141.766,275.041,313.642,356.249,17.685,18.897,17.685 +8875,278.981,343.951,419.128,194.903,550.226,328.517,433.276,137.490,160.530,137.490,313.168,313.519,355.041,19.657,19.047,19.657 +8876,279.015,334.962,419.863,199.076,553.816,325.159,429.954,134.170,166.446,134.170,325.255,313.111,353.393,19.756,19.365,19.756 +8877,279.051,328.958,418.503,203.193,557.954,321.728,426.828,130.972,172.444,130.972,331.400,312.962,353.453,19.869,20.534,19.869 +8878,279.084,323.708,417.405,207.478,561.273,318.328,424.273,128.073,178.299,128.073,334.966,313.100,352.414,19.982,21.179,19.982 +8879,279.116,319.014,415.480,211.127,564.656,314.516,421.853,125.218,3.926,125.218,336.975,313.116,352.576,18.934,23.611,18.934 +8880,279.148,315.068,413.636,215.140,567.218,311.207,419.696,122.504,9.226,122.504,337.700,313.340,352.071,19.263,23.895,19.263 +8881,279.178,311.979,412.536,218.631,569.528,308.637,418.245,120.343,15.479,120.343,338.828,313.894,352.058,19.113,25.650,19.113 +8882,279.211,308.766,411.303,221.915,571.217,305.820,416.803,118.179,21.448,118.179,338.992,314.926,351.469,18.763,25.862,18.763 +8883,279.243,305.303,410.685,225.200,573.100,302.862,415.690,115.999,26.565,115.999,339.910,315.286,351.048,19.092,25.938,19.092 +8884,279.276,302.599,409.925,227.354,575.419,300.223,415.230,114.124,31.390,114.124,340.336,316.946,351.962,19.277,25.059,19.277 +8885,279.306,300.337,409.551,229.955,576.878,298.189,414.691,112.681,36.209,112.681,340.768,317.400,351.910,18.729,25.301,18.729 +8886,279.336,297.853,408.982,232.047,578.447,295.861,414.161,111.038,41.566,111.038,341.389,318.064,352.487,18.811,24.803,18.811 +8887,279.367,295.849,408.340,234.241,579.716,293.919,413.751,109.639,46.668,109.639,341.247,318.516,352.736,18.829,24.896,18.829 +8888,279.397,294.200,408.400,237.834,579.233,292.757,412.730,108.435,51.450,108.435,341.526,319.386,350.654,18.974,20.052,18.974 +8889,279.427,294.200,408.400,237.834,579.233,292.757,412.730,108.435,51.450,108.435,341.526,319.386,350.654,18.974,20.052,18.974 +8890,279.456,292.788,408.170,239.231,580.346,291.381,412.625,107.526,56.310,107.526,341.935,319.785,351.279,18.871,20.524,18.871 +8891,279.487,291.582,407.829,240.686,581.061,290.176,412.532,106.645,60.884,106.645,341.468,320.525,351.286,19.073,20.182,19.073 +8892,279.518,290.087,407.904,241.591,581.958,288.784,412.556,105.642,65.410,105.642,342.045,321.017,351.706,18.990,20.652,18.990 +8893,279.549,288.805,407.625,242.507,582.185,287.548,412.376,104.826,69.444,104.826,341.531,321.395,351.361,18.822,20.716,18.822 +8894,279.580,288.588,407.853,243.083,582.975,287.366,412.552,104.574,73.261,104.574,342.454,322.785,352.165,19.105,20.866,19.105 +8895,279.611,287.794,407.324,243.990,583.002,286.617,412.032,104.036,76.947,104.036,342.703,322.600,352.409,18.675,20.353,18.675 +8896,279.642,287.824,407.706,244.118,583.114,286.637,412.451,104.036,79.662,104.036,341.975,322.980,351.758,18.918,20.765,18.918 +8897,279.673,287.794,407.324,243.762,583.107,286.598,412.108,104.036,81.773,104.036,342.703,323.432,352.565,18.675,20.963,18.675 +8898,279.703,287.916,407.226,242.762,583.467,286.554,412.652,104.097,82.904,104.097,341.487,323.853,352.676,18.737,20.839,18.737 +8899,279.734,288.598,407.478,242.364,582.961,287.222,412.729,104.681,83.868,104.681,341.229,322.869,352.086,18.705,21.061,18.705 +8900,279.765,289.488,408.257,241.219,582.739,288.223,412.850,105.408,84.015,105.408,343.016,323.525,352.544,19.008,21.295,19.008 +8901,279.795,291.102,408.205,239.716,582.418,289.631,413.200,106.414,83.446,106.414,342.436,323.696,352.852,18.858,21.273,18.858 +8902,279.826,291.102,408.205,239.716,582.418,289.631,413.200,106.414,83.446,106.414,342.436,323.696,352.852,18.858,21.273,18.858 +8903,279.855,292.779,408.631,237.845,581.591,291.302,413.257,107.713,82.103,107.713,343.524,322.982,353.236,18.733,21.156,18.733 +8904,279.886,295.076,408.792,234.781,581.039,293.182,414.254,109.125,79.977,109.125,341.867,323.241,353.427,18.584,20.991,18.584 +8905,279.918,297.929,409.892,232.395,579.632,296.084,414.659,111.161,77.685,111.161,343.456,322.255,353.680,18.922,20.648,18.922 +8906,279.948,299.854,410.683,229.696,578.677,297.867,415.428,112.714,74.876,112.714,343.534,322.849,353.822,18.878,20.977,18.878 +8907,279.980,303.227,412.171,226.867,576.706,301.210,416.482,115.074,71.948,115.074,343.739,321.327,353.260,18.988,20.762,18.988 +8908,280.011,306.320,412.626,223.755,574.514,304.035,417.081,117.150,68.827,117.150,343.424,320.562,353.438,18.937,21.014,18.937 +8909,280.043,309.421,414.533,220.219,571.941,307.285,418.286,119.638,65.344,119.638,344.579,319.536,353.215,18.942,20.829,18.942 +8910,280.075,313.382,416.471,216.688,569.290,310.986,420.236,122.471,61.793,122.471,343.830,318.120,352.756,18.944,20.837,18.944 +8911,280.106,317.224,418.099,213.030,565.934,314.570,421.859,125.218,58.241,125.218,343.319,317.270,352.522,19.319,20.852,19.319 +8912,280.137,321.335,420.682,209.089,562.308,318.621,424.110,128.367,54.638,128.367,343.935,316.548,352.680,19.470,20.888,19.470 +8913,280.168,325.861,423.876,204.788,558.229,322.797,427.312,131.722,50.837,131.722,343.297,315.292,352.504,20.115,20.228,20.115 +8914,280.199,329.750,426.750,198.644,555.397,325.562,430.938,135.000,46.872,135.000,343.654,314.342,355.500,19.092,24.472,19.092 +8915,280.229,334.256,430.872,194.366,550.217,329.721,434.805,139.069,42.979,139.069,343.738,313.727,355.744,19.348,24.160,19.348 +8916,280.260,337.673,434.689,190.381,544.766,332.987,438.271,142.608,38.956,142.608,344.146,312.673,355.942,19.534,24.305,19.534 +8917,280.291,337.673,434.689,190.381,544.766,332.987,438.271,142.608,38.956,142.608,344.146,312.673,355.942,19.534,24.305,19.534 +8918,280.320,342.752,441.304,186.390,538.444,337.909,444.401,147.400,35.032,147.400,345.130,311.968,356.629,20.640,24.303,20.640 +8919,280.351,346.959,447.162,183.255,530.901,341.916,449.859,151.858,31.477,151.858,344.819,311.117,356.257,21.286,23.862,21.286 +8920,280.381,351.329,451.891,179.826,522.496,344.794,454.757,156.318,27.312,156.318,342.296,310.416,356.568,20.372,22.410,20.372 +8921,280.413,356.695,458.596,176.926,514.323,347.757,461.558,161.660,23.035,161.660,338.683,309.760,357.514,20.258,21.623,20.258 +8922,280.445,360.461,467.230,174.750,504.750,350.211,469.558,167.206,18.435,167.206,336.776,309.271,357.796,20.125,20.555,20.125 +8923,280.477,368.072,476.374,173.262,495.464,352.045,478.255,173.307,14.095,173.307,326.864,308.750,359.139,19.398,20.372,19.398 +8924,280.508,388.000,487.500,172.380,485.767,352.190,487.500,0.000,9.660,0.000,288.000,309.086,359.620,17.000,19.339,17.000 +8925,280.540,380.612,500.958,173.498,474.520,352.355,497.913,6.152,4.667,6.152,303.827,308.179,360.668,17.980,19.140,17.980 +8926,280.570,357.230,509.012,175.048,463.260,350.375,507.416,13.109,0.738,13.109,347.470,308.103,361.546,19.345,21.264,19.345 +8927,280.601,353.379,518.552,179.161,455.340,348.680,516.672,21.801,175.006,21.801,350.221,307.537,360.345,25.626,18.928,25.626 +8928,280.631,347.611,529.650,184.560,444.342,344.289,527.772,29.476,169.992,29.476,352.578,308.701,360.211,25.436,18.595,25.436 +8929,280.663,342.687,538.797,191.463,432.835,339.351,536.375,35.972,165.833,35.972,352.764,308.517,361.010,25.362,16.775,25.362 +8930,280.695,333.500,550.000,200.589,423.209,330.950,547.450,45.000,160.986,45.000,352.846,308.974,360.060,24.749,16.175,24.749 +8931,280.725,333.500,550.000,200.589,423.209,330.950,547.450,45.000,160.986,45.000,352.846,308.974,360.060,24.749,16.175,24.749 +8932,280.753,323.246,559.865,211.383,413.866,320.892,556.677,53.556,156.114,53.556,351.946,309.677,359.870,22.784,16.811,22.784 +8933,280.785,311.696,568.234,223.484,406.291,309.541,564.187,61.966,151.220,61.966,350.466,310.223,359.634,22.032,16.036,22.032 +8934,280.816,298.907,574.110,236.883,400.354,297.377,569.811,70.418,146.879,70.418,350.734,310.644,359.861,20.843,17.413,20.843 +8935,280.848,283.908,578.526,250.864,396.245,282.837,573.251,78.524,141.994,78.524,348.891,311.541,359.657,23.336,17.387,23.336 +8936,280.880,272.109,579.537,265.011,393.600,271.944,573.342,88.475,136.637,88.475,347.329,312.050,359.724,23.018,17.287,23.018 +8937,280.913,254.354,579.310,280.453,394.315,255.129,572.589,96.571,132.138,96.571,346.468,312.928,360.001,23.307,17.973,23.307 +8938,280.947,241.612,577.089,293.242,395.949,243.995,569.029,106.474,125.991,106.474,343.069,313.123,359.880,19.366,20.875,19.366 +8939,280.979,227.555,573.325,305.873,400.978,232.131,563.803,115.668,122.881,115.668,336.270,312.812,357.398,18.845,19.001,18.845 +8940,281.012,178.056,621.053,317.853,407.477,221.451,556.947,124.095,119.017,124.095,200.810,312.360,355.635,17.785,19.416,17.785 +8941,281.045,191.101,572.516,329.194,416.609,212.367,549.477,132.709,115.877,132.709,291.039,313.081,353.746,19.953,19.895,19.953 +8942,281.077,191.303,551.923,339.481,426.186,205.175,540.567,140.694,111.105,140.694,316.900,314.182,352.757,20.190,21.785,20.190 +8943,281.108,188.901,536.650,346.976,437.089,198.560,530.820,148.885,105.101,148.885,328.437,314.313,351.000,19.676,21.087,19.676 +8944,281.139,185.936,524.597,353.375,448.302,194.337,520.939,156.474,99.147,156.474,331.302,315.755,349.626,21.444,21.904,21.444 +8945,281.169,183.039,512.599,358.092,460.596,190.981,510.306,163.901,93.442,163.901,332.150,316.173,348.684,20.434,23.461,20.434 +8946,281.200,181.572,502.161,360.991,473.000,189.301,500.953,171.119,87.917,171.119,332.250,316.518,347.895,19.822,24.366,19.822 +8947,281.230,181.493,490.791,362.727,484.927,189.334,490.538,178.152,82.278,178.152,331.279,317.921,346.969,18.055,25.109,18.055 +8948,281.261,182.989,481.136,362.421,496.419,190.008,481.706,4.643,76.504,4.643,331.993,319.254,346.077,18.831,24.115,18.831 +8949,281.292,182.989,481.136,362.421,496.419,190.008,481.706,4.643,76.504,4.643,331.993,319.254,346.077,18.831,24.115,18.831 +8950,281.319,184.288,472.029,361.335,507.040,191.488,473.436,11.059,70.998,11.059,331.603,320.414,346.277,18.817,23.387,18.817 +8951,281.350,186.661,463.820,359.297,516.819,193.779,465.980,16.879,65.596,16.879,331.422,322.018,346.298,19.171,22.817,19.171 +8952,281.381,189.560,455.903,355.735,526.219,196.692,458.815,22.209,60.180,22.209,330.037,323.114,345.444,19.217,20.759,19.217 +8953,281.412,193.656,445.083,352.020,534.339,201.571,449.305,28.072,54.752,28.072,327.588,324.195,345.530,25.412,19.480,25.412 +8954,281.444,194.756,440.009,348.424,541.418,204.191,445.799,31.535,49.525,31.535,323.747,324.854,345.887,24.950,19.453,24.950 +8955,281.477,190.471,429.782,344.257,547.721,207.195,442.623,37.519,44.170,37.519,303.267,325.419,345.437,18.030,18.875,18.030 +8956,281.507,176.752,406.483,339.937,552.959,212.254,436.358,40.082,38.948,40.082,252.743,325.927,345.542,21.913,19.020,21.913 +8957,281.537,208.000,424.000,335.296,557.303,216.150,432.150,45.000,33.901,45.000,322.441,326.469,345.492,24.042,19.322,24.042 +8958,281.568,214.802,422.595,331.359,560.660,220.254,428.987,49.538,28.932,49.538,327.763,325.475,344.565,23.586,20.257,23.586 +8959,281.599,219.554,419.331,326.127,564.957,224.343,425.788,53.435,24.044,53.435,328.751,324.914,344.829,23.931,21.904,23.931 +8960,281.629,223.383,417.052,321.363,568.390,227.629,423.578,56.952,19.316,56.952,329.428,323.652,345.000,22.743,22.814,22.743 +8961,281.661,227.407,414.126,316.491,571.171,231.201,420.752,60.205,15.025,60.205,330.559,323.110,345.831,23.102,24.140,23.102 +8962,281.692,227.407,414.126,316.491,571.171,231.201,420.752,60.205,15.025,60.205,330.559,323.110,345.831,23.102,24.140,23.102 +8963,281.719,230.800,412.100,311.562,574.139,234.384,419.268,63.435,9.728,63.435,330.044,322.411,346.072,21.913,24.246,21.913 +8964,281.751,235.039,410.355,306.748,575.833,238.182,417.564,66.441,5.080,66.441,329.236,321.222,344.965,22.383,24.725,22.383 +8965,281.782,238.008,408.521,301.999,577.656,240.881,416.064,69.146,0.398,69.146,329.385,320.069,345.528,20.648,24.729,20.648 +8966,281.814,241.821,406.378,297.557,578.748,244.378,414.177,71.847,175.675,71.847,329.480,320.505,345.895,20.921,24.652,20.921 +8967,281.845,245.104,404.831,292.993,580.153,247.433,413.176,74.407,171.104,74.407,328.831,319.561,346.157,20.406,25.077,20.406 +8968,281.878,248.506,403.767,288.547,580.698,250.456,412.191,76.967,166.792,76.967,328.219,319.333,345.513,19.945,25.074,19.945 +8969,281.909,251.922,403.142,284.073,581.788,253.516,411.712,79.461,162.216,79.461,328.160,319.064,345.592,19.457,25.045,19.457 +8970,281.940,255.199,401.830,279.785,582.431,256.468,410.776,81.924,157.891,81.924,328.386,318.676,346.457,18.932,24.957,18.932 +8971,281.970,258.380,401.205,275.326,582.646,259.303,410.206,84.144,153.783,84.144,328.252,318.440,346.350,18.467,24.528,18.467 +8972,282.001,262.252,400.279,271.013,582.734,262.808,409.732,86.634,149.704,86.634,327.434,318.595,346.371,18.791,23.904,18.791 +8973,282.033,265.565,399.946,267.101,583.430,265.738,409.694,88.986,145.008,88.986,327.966,318.845,347.465,18.280,22.775,18.280 +8974,282.062,268.867,398.026,262.576,583.095,268.650,409.526,91.081,141.582,91.081,324.301,319.046,347.306,18.336,21.992,18.336 +8975,282.094,268.867,398.026,262.576,583.095,268.650,409.526,91.081,141.582,91.081,324.301,319.046,347.306,18.336,21.992,18.336 +8976,282.123,272.833,397.177,258.389,582.919,272.064,409.482,93.576,137.083,93.576,323.244,319.234,347.903,18.277,21.353,18.277 +8977,282.153,276.337,396.134,253.976,582.454,274.982,409.677,95.711,133.668,95.711,320.800,319.098,348.021,18.408,20.254,18.408 +8978,282.185,280.630,395.090,250.091,582.079,278.525,409.822,98.130,130.815,98.130,319.329,319.310,349.093,18.243,19.781,18.243 +8979,282.216,284.360,394.020,246.034,581.629,281.369,410.470,100.305,128.501,100.305,316.001,319.532,349.440,18.246,18.978,18.246 +8980,282.248,288.971,391.558,242.523,581.017,284.563,411.077,102.724,126.741,102.724,310.033,319.807,350.053,17.936,19.278,17.936 +8981,282.281,293.631,389.354,238.932,580.234,287.483,411.894,105.255,125.650,105.255,303.637,319.681,350.365,17.717,19.239,17.717 +8982,282.312,298.185,388.164,235.711,579.234,290.506,412.480,107.526,125.287,107.526,300.027,319.438,351.028,17.215,19.339,17.215 +8983,282.344,303.201,385.647,232.255,578.107,293.340,413.167,109.714,125.650,109.714,293.289,319.345,351.756,17.290,19.570,17.290 +8984,282.375,307.776,385.310,229.223,576.791,296.276,414.061,111.801,127.034,111.801,290.056,319.004,351.987,17.270,19.637,17.270 +8985,282.406,311.130,387.218,225.997,575.182,298.877,415.037,113.772,129.207,113.772,291.074,318.592,351.870,17.410,19.474,17.410 +8986,282.437,314.295,390.105,222.613,573.185,301.677,416.004,115.974,132.580,115.974,294.246,318.014,351.864,17.357,19.463,17.357 +8987,282.468,316.318,393.746,219.734,571.707,304.180,416.808,117.759,135.971,117.759,300.686,317.002,352.808,17.559,19.149,17.559 +8988,282.497,318.355,397.914,216.854,569.930,306.858,418.067,119.703,140.541,119.703,306.611,316.900,353.014,17.903,19.980,17.903 +8989,282.529,321.182,402.266,213.885,567.577,310.394,419.797,121.608,146.310,121.608,311.707,315.902,352.876,19.588,19.137,19.588 +8990,282.563,322.535,407.706,210.969,565.303,313.249,421.502,123.944,152.333,123.944,319.551,315.356,352.811,19.862,19.184,19.862 +8991,282.597,324.920,411.385,208.406,562.947,316.402,422.960,126.353,159.076,126.353,324.774,314.693,353.517,20.057,20.082,20.057 +8992,282.629,326.832,415.479,205.581,560.334,319.189,424.995,128.770,166.293,128.770,328.910,313.896,353.320,20.069,20.497,20.069 +8993,282.661,328.881,419.411,202.668,557.297,322.124,427.100,131.309,174.644,131.309,332.834,312.909,353.307,20.031,20.255,20.031 +8994,282.692,328.881,419.411,202.668,557.297,322.124,427.100,131.309,174.644,131.309,332.834,312.909,353.307,20.031,20.255,20.031 +8995,282.720,331.369,423.266,199.515,554.651,325.161,429.671,134.109,2.454,134.109,336.542,311.742,354.381,19.950,21.409,19.950 +8996,282.751,334.042,427.194,196.555,550.708,328.361,432.481,137.056,10.654,137.056,338.540,311.944,354.062,19.634,23.392,19.634 +8997,282.782,336.810,431.384,193.471,546.582,331.735,435.597,140.301,19.781,140.301,341.357,312.071,354.548,19.482,24.136,19.482 +8998,282.815,339.450,436.172,189.834,542.384,334.789,439.573,143.881,28.474,143.881,343.857,312.295,355.396,19.321,24.523,19.321 +8999,282.848,342.938,441.403,187.082,536.391,338.705,444.097,147.529,36.769,147.529,344.904,312.200,354.939,20.708,19.842,20.708 +9000,282.880,345.721,445.577,184.618,531.884,341.398,447.995,150.774,45.498,150.774,345.656,309.135,355.562,21.610,20.450,21.610 +9001,282.912,349.000,451.190,182.454,525.386,344.707,453.150,155.452,54.744,155.452,345.759,311.792,355.197,20.663,20.879,20.663 +9002,282.943,351.817,457.990,178.791,518.112,347.276,459.618,160.278,63.853,160.278,347.035,311.295,356.682,19.963,18.818,19.963 +9003,282.974,354.360,465.469,176.323,510.431,349.562,466.735,165.213,72.676,165.213,347.386,311.579,357.309,20.251,18.944,20.251 +9004,283.005,356.376,473.737,174.756,501.818,351.637,474.507,170.781,81.733,170.781,348.342,311.270,357.945,19.261,18.955,19.261 +9005,283.038,357.117,482.463,173.529,492.526,352.443,482.743,176.579,90.415,176.579,348.991,311.035,358.357,19.069,18.673,19.069 +9006,283.069,357.519,492.067,174.105,482.939,353.057,491.871,2.517,99.560,2.517,349.410,311.207,358.343,18.861,19.120,18.861 +9007,283.099,356.677,501.889,175.225,472.734,352.477,501.221,9.031,108.246,9.031,350.547,311.196,359.052,19.255,19.506,19.255 +9008,283.130,354.987,512.544,177.900,462.200,350.811,511.365,15.764,116.565,15.764,350.848,310.813,359.528,18.976,20.572,18.976 +9009,283.163,351.922,521.677,181.799,451.577,348.092,519.983,23.860,125.811,23.860,351.129,310.583,359.504,25.185,19.483,25.185 +9010,283.195,351.922,521.677,181.799,451.577,348.092,519.983,23.860,125.811,23.860,351.129,310.583,359.504,25.185,19.483,25.185 +9011,283.224,347.614,530.668,187.223,441.115,344.271,528.716,30.288,133.844,30.288,351.843,309.935,359.585,25.340,18.499,25.340 +9012,283.254,341.253,541.292,193.293,429.243,337.490,538.383,37.708,141.189,37.708,352.156,310.008,361.669,25.429,19.345,25.429 +9013,283.285,331.463,552.776,202.258,420.174,328.377,549.460,47.045,149.954,47.045,352.066,309.366,361.126,24.708,18.212,24.708 +9014,283.316,321.558,561.293,212.834,412.902,319.224,557.976,54.866,157.380,54.866,351.626,309.000,359.737,22.687,17.077,22.687 +9015,283.347,310.395,568.491,224.197,405.331,308.355,564.509,62.865,166.163,62.865,351.134,308.738,360.083,21.414,18.262,21.414 +9016,283.378,297.585,573.941,236.740,399.256,296.090,569.543,71.226,173.932,71.226,351.366,307.731,360.656,20.313,19.097,20.313 +9017,283.410,283.186,577.791,250.001,396.441,282.371,573.553,79.106,1.383,79.106,351.445,308.369,360.075,23.152,17.733,23.152 +9018,283.441,271.678,578.462,263.899,395.214,271.579,574.138,88.693,9.192,88.693,349.457,308.911,358.106,22.994,17.625,22.994 +9019,283.475,254.486,578.171,278.438,395.827,255.029,573.449,96.571,17.103,96.571,348.762,309.231,358.268,23.307,17.792,23.307 +9020,283.506,242.560,575.039,292.510,398.812,243.877,570.525,106.270,24.775,106.270,347.520,310.033,356.923,19.125,18.089,19.125 +9021,283.537,230.079,569.183,306.646,402.545,232.298,564.466,115.189,33.024,115.189,345.908,310.643,356.334,19.847,20.165,19.847 +9022,283.568,218.651,562.272,320.006,407.831,222.167,557.032,123.861,40.711,123.861,344.197,312.159,356.819,19.818,24.027,19.818 +9023,283.598,209.092,553.812,330.590,416.918,212.980,549.537,132.285,47.635,132.285,342.927,312.512,354.484,19.996,24.838,19.996 +9024,283.629,200.860,544.465,340.502,426.161,205.662,540.501,140.464,56.014,140.464,341.101,314.256,353.554,20.248,24.298,20.248 +9025,283.659,200.860,544.465,340.502,426.161,205.662,540.501,140.464,56.014,140.464,341.101,314.256,353.554,20.248,24.298,20.248 +9026,283.688,194.022,534.285,348.200,436.900,199.361,530.998,148.381,63.435,148.381,339.616,314.838,352.154,19.833,24.597,19.833 +9027,283.718,188.428,524.159,353.921,448.527,194.632,521.353,155.669,71.333,155.669,336.677,315.918,350.293,20.719,23.915,20.719 +9028,283.749,184.376,513.846,358.075,459.888,191.418,511.679,162.897,78.996,162.897,334.302,316.707,349.038,20.218,24.077,20.218 +9029,283.781,181.845,504.100,360.560,471.058,189.583,502.679,169.592,86.460,169.592,332.017,316.941,347.753,20.373,23.584,20.373 +9030,283.814,180.685,493.615,362.128,482.083,189.069,493.118,176.609,94.185,176.609,330.021,317.493,346.818,18.848,24.398,18.848 +9031,283.847,180.882,483.827,362.407,492.391,189.574,484.266,2.891,101.592,2.891,328.642,318.697,346.046,19.036,24.967,19.036 +9032,283.880,181.730,474.714,361.632,502.248,190.659,476.122,8.959,109.335,8.959,327.834,319.450,345.912,18.715,25.262,18.715 +9033,283.913,183.355,466.500,359.729,511.386,192.439,468.842,14.455,117.121,14.455,326.466,320.264,345.228,19.427,25.225,19.427 +9034,283.946,185.577,458.664,356.949,520.313,194.557,461.930,19.983,124.875,19.983,326.023,321.870,345.134,19.138,25.283,19.138 +9035,283.979,189.175,450.598,354.337,527.653,198.175,454.511,23.499,132.656,23.499,325.121,320.890,344.749,25.758,25.410,25.758 +9036,284.011,193.900,442.300,351.111,534.348,202.471,447.197,29.745,140.500,29.745,324.847,321.394,344.589,25.427,25.203,25.427 +9037,284.043,197.308,437.538,347.580,540.438,205.571,443.047,33.690,148.257,33.690,324.500,321.927,344.362,24.962,24.720,24.962 +9038,284.073,201.486,432.464,343.801,546.181,209.380,438.648,38.073,156.161,38.073,324.207,321.970,344.262,25.611,24.803,25.611 +9039,284.104,205.344,428.616,339.912,550.951,212.579,435.109,41.906,164.157,41.906,324.833,322.391,344.276,25.495,24.037,25.495 +9040,284.135,208.750,425.250,335.905,555.482,215.597,432.097,45.000,172.257,45.000,325.269,322.693,344.635,24.749,23.929,24.749 +9041,284.165,212.755,422.667,331.991,559.530,218.886,429.520,48.180,0.339,48.180,326.220,322.054,344.612,24.318,22.940,24.318 +9042,284.198,216.458,420.338,328.461,562.765,222.063,427.311,51.203,8.445,51.203,326.574,323.031,344.467,24.008,22.362,24.008 +9043,284.230,220.520,418.343,324.708,565.962,225.330,425.068,54.425,16.907,54.425,328.289,323.357,344.824,23.864,23.447,23.864 +9044,284.261,224.294,417.281,321.022,568.202,228.060,423.098,57.078,24.775,57.078,330.793,324.840,344.653,23.473,22.280,23.473 +9045,284.292,224.294,417.281,321.022,568.202,228.060,423.098,57.078,24.775,57.078,330.793,324.840,344.653,23.473,22.280,23.473 +9046,284.319,227.472,416.107,317.317,570.518,230.474,421.187,59.421,33.374,59.421,333.687,325.635,345.487,22.932,20.626,22.932 +9047,284.350,230.074,414.330,313.760,573.272,233.221,420.221,61.891,41.383,61.891,332.533,324.905,345.891,23.026,19.650,23.026 +9048,284.382,231.100,411.200,309.914,575.725,235.136,419.273,63.435,49.701,63.435,328.702,324.669,346.753,22.361,19.867,22.361 +9049,284.415,231.958,408.126,306.809,577.121,236.750,418.367,64.921,57.619,64.921,324.353,325.198,346.967,20.314,20.103,20.314 +9050,284.447,219.724,370.981,302.954,579.021,239.713,417.330,66.670,66.038,66.670,246.080,324.505,347.031,19.918,18.784,19.918 +9051,284.484,221.041,365.110,299.834,580.872,240.592,417.245,69.444,74.604,69.444,236.657,325.564,348.019,17.790,18.528,17.790 +9052,284.529,240.014,396.746,292.633,582.472,245.670,414.844,72.646,91.189,72.646,310.087,325.220,348.010,20.700,19.266,20.700 +9053,284.562,242.939,398.383,289.606,582.772,247.371,414.016,74.174,99.304,74.174,315.256,325.167,347.754,20.446,20.751,20.446 +9054,284.593,242.939,398.383,289.606,582.772,247.371,414.016,74.174,99.304,74.174,315.256,325.167,347.754,20.446,20.751,20.446 +9055,284.621,245.646,400.320,287.409,581.471,248.855,412.811,75.593,107.745,75.593,320.103,322.567,345.896,20.197,20.344,20.197 +9056,284.657,247.705,400.751,285.790,581.630,250.412,412.344,76.853,116.952,76.853,321.983,321.578,345.792,19.838,20.472,19.838 +9057,284.688,249.552,401.246,284.067,581.548,251.790,411.795,78.024,125.611,78.024,323.944,320.955,345.511,19.594,21.357,19.594 +9058,284.719,251.343,401.366,282.841,581.814,253.277,411.555,79.254,134.061,79.254,324.830,319.801,345.572,19.398,22.926,19.398 +9059,284.749,253.029,401.984,281.355,581.957,254.604,411.236,80.340,142.189,80.340,326.810,319.508,345.579,19.150,23.499,19.150 +9060,284.780,254.662,402.027,280.076,582.256,255.991,410.911,81.491,150.345,81.491,328.081,318.893,346.046,18.931,24.054,18.931 +9061,284.814,256.149,401.718,278.716,582.599,257.317,410.608,82.515,158.575,82.515,328.693,318.814,346.626,18.809,24.757,18.809 +9062,284.847,257.583,402.149,277.440,582.531,258.552,410.671,83.509,166.866,83.509,328.634,318.414,345.787,18.593,24.995,18.593 +9063,284.879,259.079,401.944,276.377,582.618,259.879,410.194,84.461,174.898,84.461,329.847,318.590,346.424,18.592,24.776,18.592 +9064,284.911,260.611,402.773,275.012,582.768,261.223,410.367,85.389,3.030,85.389,330.668,318.613,345.904,18.906,25.171,18.906 +9065,284.942,262.103,403.150,273.805,583.519,262.543,410.188,86.424,10.814,86.424,333.287,319.118,347.392,18.776,25.947,18.776 +9066,284.972,263.394,403.670,272.282,584.134,263.720,410.563,87.295,18.526,87.295,333.762,319.400,347.563,18.546,26.493,18.546 +9067,285.002,264.750,404.612,270.207,584.099,264.927,410.540,88.290,26.062,88.290,335.418,321.562,347.279,18.350,25.957,18.350 +9068,285.032,266.049,404.551,268.843,584.758,266.135,410.376,89.151,33.354,89.151,337.156,321.724,348.806,17.872,25.735,17.872 +9069,285.062,267.500,405.000,267.353,585.088,267.500,410.544,90.000,40.601,90.000,338.000,321.491,349.088,17.000,24.839,17.000 +9070,285.093,267.500,405.000,267.353,585.088,267.500,410.544,90.000,40.601,90.000,338.000,321.491,349.088,17.000,24.839,17.000 +9071,285.122,268.558,404.917,265.486,585.470,268.461,410.697,90.959,47.564,90.959,338.036,321.528,349.597,18.165,23.912,18.165 +9072,285.153,270.266,404.825,264.338,585.037,270.058,410.422,92.121,54.265,92.121,338.213,322.016,349.415,17.988,21.214,17.988 +9073,285.184,271.955,404.762,261.726,585.654,271.605,410.723,93.366,60.751,93.366,338.474,322.374,350.417,18.204,22.615,18.204 +9074,285.215,273.761,405.741,259.892,585.464,273.362,410.725,94.574,66.588,94.574,340.512,322.765,350.513,17.983,20.473,17.983 +9075,285.248,275.584,404.998,257.910,585.687,274.962,411.089,95.835,71.792,95.835,338.609,323.825,350.855,18.313,20.248,18.313 +9076,285.280,277.732,406.083,254.613,585.356,277.085,411.150,97.279,76.759,97.279,341.083,323.575,351.299,18.641,20.270,18.641 +9077,285.312,280.282,406.496,251.740,584.881,279.516,411.385,98.904,80.873,98.904,341.511,323.880,351.409,18.916,21.369,18.916 +9078,285.343,283.201,406.078,248.422,584.401,282.102,411.795,100.877,83.893,100.877,340.076,323.327,351.721,18.801,20.738,18.801 +9079,285.374,286.273,407.905,244.466,583.910,285.186,412.596,103.043,86.471,103.043,342.535,323.236,352.167,18.604,20.393,18.604 +9080,285.404,289.446,408.882,240.272,582.074,288.359,412.823,105.422,88.452,105.422,343.713,322.369,351.889,18.814,20.371,18.814 +9081,285.435,293.499,408.694,236.019,580.988,291.888,413.628,108.078,89.563,108.078,342.490,322.075,352.871,18.737,19.702,18.737 +9082,285.466,297.421,410.629,231.500,580.000,295.644,415.268,110.963,90.000,110.963,343.619,322.000,353.555,18.579,19.000,18.579 +9083,285.496,302.184,411.726,226.321,576.985,300.050,416.443,114.341,89.640,114.341,342.967,320.069,353.321,18.548,18.717,18.548 +9084,285.527,302.184,411.726,226.321,576.985,300.050,416.443,114.341,89.640,114.341,342.967,320.069,353.321,18.548,18.717,18.548 +9085,285.556,307.277,413.588,221.320,573.981,304.981,417.925,117.897,88.680,117.897,344.313,320.215,354.129,19.027,18.903,19.027 +9086,285.587,312.033,416.475,215.745,570.557,309.597,420.417,121.724,87.409,121.724,344.846,319.488,354.115,18.991,19.961,18.991 +9087,285.618,317.471,419.621,210.079,567.032,314.664,423.539,125.628,85.601,125.628,345.474,319.134,355.113,19.751,20.708,19.751 +9088,285.649,322.538,423.197,205.234,562.529,319.705,426.590,129.857,83.750,129.857,346.588,318.708,355.429,19.585,19.768,19.585 +9089,285.680,327.628,427.137,200.399,557.163,324.501,430.340,134.310,81.597,134.310,345.929,317.205,354.882,19.218,19.133,19.218 +9090,285.711,333.001,432.425,195.048,551.211,329.864,435.149,139.035,79.439,139.035,347.473,316.545,355.782,20.043,19.911,20.043 +9091,285.742,338.080,437.238,190.258,544.255,334.512,439.839,143.915,77.125,143.915,347.324,315.854,356.155,19.327,19.553,19.327 +9092,285.774,343.086,443.313,185.886,536.620,339.095,445.720,148.903,74.650,148.903,346.961,314.597,356.282,20.198,19.646,20.198 +9093,285.805,347.649,450.273,181.810,527.761,343.368,452.340,154.231,72.263,154.231,347.054,313.729,356.562,21.241,19.329,21.241 +9094,285.836,351.671,458.081,178.688,518.169,347.233,459.670,160.301,70.153,160.301,347.371,312.264,356.799,19.969,18.667,19.969 +9095,285.867,355.230,467.371,176.099,507.959,350.305,468.549,166.546,67.681,166.546,347.063,310.905,357.190,20.000,18.872,20.000 +9096,285.898,357.507,477.558,174.546,497.017,352.292,478.173,173.271,65.202,173.271,346.959,310.172,357.460,19.394,19.018,19.394 +9097,285.929,358.481,488.677,174.396,485.324,353.202,488.640,0.398,62.802,0.398,347.089,308.682,357.649,18.194,18.888,18.194 +9098,285.960,358.402,499.987,175.805,473.039,353.101,499.280,7.595,60.213,7.595,347.723,308.969,358.418,19.296,20.500,19.296 +9099,285.990,358.402,499.987,175.805,473.039,353.101,499.280,7.595,60.213,7.595,347.723,308.969,358.418,19.296,20.500,19.296 +9100,286.019,356.696,512.281,178.670,461.432,351.140,510.765,15.255,57.407,15.255,347.227,309.316,358.746,19.295,22.099,19.295 +9101,286.050,354.211,522.650,188.360,456.413,351.794,521.575,23.962,53.873,23.962,346.335,288.708,351.626,25.587,22.923,25.587 +9102,286.083,348.119,536.624,193.838,445.011,345.342,534.818,33.035,50.988,33.035,345.313,287.171,351.939,25.278,21.294,25.278 +9103,286.115,347.434,553.778,204.345,437.256,339.664,546.935,41.367,48.652,41.367,327.371,278.725,348.080,22.862,19.999,22.862 +9104,286.148,348.965,582.838,213.006,424.030,326.832,557.603,48.748,45.690,48.748,283.822,284.339,350.953,18.795,18.946,18.795 +9105,286.181,317.798,568.388,225.224,416.267,316.208,565.771,58.710,43.862,58.710,343.903,283.648,350.026,22.148,20.657,22.148 +9106,286.214,303.479,573.044,236.882,406.419,302.540,570.758,67.668,39.214,67.668,348.981,289.943,353.923,20.734,20.535,20.734 +9107,286.247,287.993,576.915,245.180,395.760,286.711,571.609,76.423,36.870,76.423,350.453,307.600,361.369,23.062,20.200,23.062 +9108,286.279,275.463,578.882,260.385,393.923,275.140,573.525,86.553,33.690,86.553,349.595,307.304,360.328,23.620,19.969,23.620 +9109,286.310,257.371,577.989,275.398,394.326,257.789,572.963,94.748,30.579,94.748,348.875,308.368,358.963,23.418,19.645,23.418 +9110,286.340,244.479,575.269,290.236,397.623,245.656,570.708,104.470,27.474,104.470,348.049,309.532,357.469,20.428,18.135,20.428 +9111,286.370,231.509,570.062,304.881,402.654,233.526,565.533,114.001,24.249,114.001,345.724,311.192,355.640,19.238,18.112,19.238 +9112,286.400,220.028,562.842,318.185,409.320,222.708,558.707,122.949,21.012,122.949,344.721,312.600,354.577,20.264,18.194,20.264 +9113,286.431,210.053,553.992,330.438,417.694,213.318,550.325,131.680,17.819,131.680,344.060,314.407,353.879,19.907,18.327,19.907 +9114,286.463,201.400,544.479,340.833,427.143,205.593,540.982,140.170,14.593,140.170,342.625,316.536,353.545,20.326,18.444,20.326 +9115,286.493,201.400,544.479,340.833,427.143,205.593,540.982,140.170,14.593,140.170,342.625,316.536,353.545,20.326,18.444,20.326 +9116,286.521,193.828,535.033,349.309,437.447,199.920,531.278,148.351,11.416,148.351,338.498,318.109,352.811,20.548,18.794,20.548 +9117,286.553,189.162,523.360,355.840,448.580,195.245,520.627,155.813,8.419,155.813,338.693,319.769,352.031,21.166,18.779,21.166 +9118,286.584,184.851,513.520,360.166,459.828,192.469,511.164,162.818,5.666,162.818,334.807,321.497,350.755,20.792,18.919,20.792 +9119,286.616,180.767,503.641,362.988,471.193,190.723,501.932,170.263,3.417,170.263,329.760,322.739,349.964,19.683,19.637,19.683 +9120,286.646,175.837,492.996,364.872,481.054,190.449,492.316,177.337,2.403,177.337,320.258,322.555,349.515,17.121,18.536,17.121 +9121,286.677,109.655,479.362,364.467,491.954,190.607,484.124,3.366,1.302,3.366,185.855,323.212,348.039,17.206,19.109,17.206 +9122,286.707,150.913,469.784,363.496,500.465,191.463,476.069,8.811,179.549,8.811,265.411,323.069,347.478,17.822,19.582,17.822 +9123,286.737,169.828,463.138,361.494,509.347,193.026,469.043,14.281,177.732,14.281,298.535,323.499,346.409,19.100,19.965,19.100 +9124,286.769,179.827,455.836,358.949,518.359,195.347,461.527,20.136,175.486,20.136,313.272,323.677,346.334,19.466,20.489,19.466 +9125,286.801,187.643,446.637,355.579,527.042,199.780,452.360,25.246,171.714,25.246,318.702,323.308,345.540,25.973,21.847,25.973 +9126,286.831,192.592,441.838,351.758,534.669,202.661,447.592,29.745,167.535,29.745,322.118,323.331,345.311,24.931,22.869,24.931 +9127,286.863,196.769,437.346,347.537,541.273,205.672,443.281,33.690,163.156,33.690,323.390,322.489,344.790,24.684,23.699,24.684 +9128,286.894,196.769,437.346,347.537,541.273,205.672,443.281,33.690,163.156,33.690,323.390,322.489,344.790,24.684,23.699,24.684 +9129,286.922,201.783,432.408,343.020,547.593,209.586,438.568,38.290,158.532,38.290,324.694,322.372,344.575,25.447,24.876,25.447 +9130,286.953,206.763,427.650,338.063,552.637,213.863,434.292,43.091,153.662,43.091,323.652,321.574,343.096,24.170,24.747,24.170 +9131,286.984,210.971,423.527,333.003,557.332,217.397,430.390,46.882,148.861,46.882,324.549,321.378,343.354,24.480,25.143,24.480 +9132,287.015,214.746,419.820,327.883,561.526,220.677,427.004,50.454,143.936,50.454,325.346,321.216,343.978,23.933,25.015,23.933 +9133,287.047,218.980,417.193,322.753,565.137,224.383,424.606,53.915,139.128,53.915,324.668,321.168,343.015,23.628,24.808,23.628 +9134,287.080,222.781,414.535,318.037,568.517,227.758,422.283,57.286,133.866,57.286,325.239,320.579,343.657,22.994,24.625,22.994 +9135,287.114,226.592,412.162,313.207,571.366,231.189,420.206,60.255,128.660,60.255,325.343,321.093,343.873,22.698,23.895,22.698 +9136,287.147,229.733,410.123,308.400,573.753,234.070,418.689,63.146,123.417,63.146,324.632,321.475,343.836,21.276,22.872,21.276 +9137,287.178,233.113,407.841,303.751,576.061,237.159,416.961,66.075,118.229,66.075,324.916,321.645,344.871,21.088,22.175,21.088 +9138,287.211,236.388,405.680,299.617,578.049,240.413,416.010,68.714,112.859,68.714,322.782,322.377,344.955,20.898,21.338,20.898 +9139,287.242,239.557,402.783,295.163,579.746,243.573,414.521,71.114,106.871,71.114,321.248,322.777,346.059,20.965,20.371,20.965 +9140,287.273,242.513,400.314,290.860,581.972,246.574,414.057,73.540,101.381,73.540,318.503,324.771,347.163,20.553,20.288,20.553 +9141,287.303,244.760,395.050,287.314,583.425,249.426,413.513,75.816,96.236,75.816,309.946,324.999,348.033,19.944,19.724,19.944 +9142,287.334,245.904,386.171,284.095,584.910,251.686,413.395,78.009,91.507,78.009,293.350,324.282,349.013,18.473,20.177,18.473 +9143,287.364,243.683,351.862,281.679,585.092,254.231,412.718,80.166,86.004,80.166,225.530,324.885,349.058,17.736,19.372,17.736 +9144,287.395,252.775,380.016,278.016,585.916,257.236,412.219,82.113,80.778,82.113,284.791,324.678,349.812,18.237,19.115,18.237 +9145,287.426,252.775,380.016,278.016,585.916,257.236,412.219,82.113,80.778,82.113,284.791,324.678,349.812,18.237,19.115,18.237 +9146,287.454,258.985,402.851,274.693,586.207,259.895,411.948,84.289,75.645,84.289,331.447,325.270,349.732,18.110,20.101,18.110 +9147,287.485,262.551,403.640,272.349,586.704,263.014,411.747,86.730,70.784,86.730,334.169,324.826,350.410,18.826,20.476,18.826 +9148,287.517,265.335,405.084,269.727,585.669,265.467,410.832,88.683,65.508,88.683,338.278,323.259,349.777,18.156,20.708,18.156 +9149,287.549,267.985,404.949,266.574,585.390,267.928,410.671,90.579,60.396,90.579,338.003,322.746,349.447,18.211,20.926,18.211 +9150,287.580,271.295,405.263,262.342,585.577,271.021,410.705,92.880,55.469,92.880,339.275,322.099,350.173,18.115,22.160,18.115 +9151,287.614,274.165,405.218,258.569,585.355,273.704,410.670,94.830,50.136,94.830,339.733,321.375,350.676,18.104,22.956,18.104 +9152,287.646,277.180,405.540,254.750,584.788,276.540,410.854,96.862,44.370,96.862,339.880,320.401,350.584,18.514,24.009,18.514 +9153,287.677,281.172,405.792,251.229,584.025,280.273,411.293,99.287,39.806,99.287,339.162,320.476,350.309,18.931,24.327,18.931 +9154,287.708,283.790,405.664,247.832,582.746,282.704,411.132,101.232,34.418,101.232,339.088,319.050,350.238,19.019,24.641,19.019 +9155,287.738,287.805,406.092,244.031,581.446,286.454,411.585,103.815,29.745,103.815,338.840,318.521,350.155,18.801,24.559,18.801 +9156,287.768,291.484,406.265,239.854,579.489,289.847,411.867,106.294,24.717,106.294,338.157,318.625,349.830,18.828,25.810,18.828 +9157,287.799,295.244,406.721,235.889,577.814,293.274,412.508,108.800,19.440,108.800,337.732,317.399,349.959,18.933,26.237,18.933 +9158,287.830,299.167,407.041,231.817,576.253,296.675,413.426,111.318,14.281,111.318,336.822,315.591,350.530,18.881,25.637,18.881 +9159,287.861,299.167,407.041,231.817,576.253,296.675,413.426,111.318,14.281,111.318,336.822,315.591,350.530,18.881,25.637,18.881 +9160,287.889,303.077,408.201,227.035,574.295,300.098,414.905,113.962,9.593,113.962,335.978,315.164,350.651,19.190,24.762,19.190 +9161,287.920,307.778,409.433,222.370,571.895,304.283,416.265,117.096,5.315,117.096,336.369,314.526,351.717,19.047,23.295,19.047 +9162,287.950,311.854,411.148,218.014,569.407,307.802,418.163,120.010,1.332,120.010,335.551,314.241,351.752,19.469,23.459,19.469 +9163,287.981,317.923,413.115,212.928,566.348,312.755,420.868,123.690,176.424,123.690,334.207,314.324,352.842,18.860,22.768,18.860 +9164,288.013,322.791,415.365,208.028,561.963,316.839,423.239,127.086,172.405,127.086,332.818,313.691,352.558,19.089,20.551,19.089 +9165,288.045,329.161,417.652,202.964,557.825,321.484,426.567,130.732,168.440,130.732,330.071,313.420,353.601,19.786,19.906,19.786 +9166,288.078,336.419,419.375,198.156,553.280,325.702,430.230,134.630,165.311,134.630,323.839,313.589,354.347,20.100,19.910,20.100 +9167,288.109,344.499,421.346,193.399,548.598,329.742,434.577,138.122,162.461,138.122,315.620,313.477,355.262,21.105,19.731,21.105 +9168,288.140,356.990,419.445,189.124,543.348,332.810,437.958,142.561,160.346,142.561,295.407,313.196,356.311,17.741,19.709,17.741 +9169,288.170,371.556,419.663,185.250,537.691,336.266,442.602,146.976,159.299,146.976,272.704,312.967,356.883,17.733,19.791,17.733 +9170,288.201,401.753,414.079,181.847,531.855,339.961,448.212,151.085,158.334,151.085,216.508,312.542,357.693,17.790,19.707,17.790 +9171,288.232,413.663,422.176,178.609,525.012,343.225,454.041,155.659,158.416,155.659,203.850,312.378,358.470,17.745,19.722,17.745 +9172,288.262,369.152,452.638,175.654,516.895,346.358,460.820,160.253,158.737,160.253,310.787,312.170,359.223,18.245,18.259,18.245 +9173,288.297,355.213,466.401,173.531,508.393,348.778,468.080,165.379,159.146,165.379,346.197,311.585,359.497,18.553,18.734,18.553 +9174,288.327,355.213,466.401,173.531,508.393,348.778,468.080,165.379,159.146,165.379,346.197,311.585,359.497,18.553,18.734,18.553 +9175,288.356,356.776,474.541,172.313,499.163,350.677,475.476,171.283,159.503,171.283,347.446,311.803,359.787,19.163,21.290,19.163 +9176,288.386,357.436,484.355,171.879,490.948,352.041,484.567,177.754,158.199,177.754,349.751,310.668,360.547,18.339,20.241,18.339 +9177,288.417,356.606,494.575,172.859,481.249,352.382,494.260,4.268,156.371,4.268,351.515,310.119,359.987,18.918,20.385,18.918 +9178,288.449,355.154,505.731,174.857,469.756,351.600,505.020,11.310,154.716,11.310,353.205,309.804,360.453,19.023,20.619,19.023 +9179,288.481,352.769,516.704,178.409,457.700,349.153,515.481,18.677,152.447,18.677,352.878,309.534,360.512,19.627,19.351,19.627 +9180,288.512,349.025,526.680,183.912,446.109,345.799,524.990,27.646,150.468,27.646,352.730,309.351,360.013,25.478,20.308,25.478 +9181,288.546,343.850,537.391,190.734,434.181,340.345,534.960,34.749,148.156,34.749,352.210,309.737,360.742,25.049,18.045,25.049 +9182,288.577,334.618,549.842,199.785,423.645,331.465,546.749,44.454,145.985,44.454,351.584,309.533,360.417,24.768,18.546,24.768 +9183,288.608,324.958,559.253,210.605,413.832,322.072,555.453,52.784,143.973,52.784,350.850,309.672,360.396,23.558,18.527,23.558 +9184,288.638,312.424,568.164,222.732,405.710,309.932,563.516,61.801,141.907,61.801,350.012,310.206,360.562,23.027,18.762,23.027 +9185,288.670,299.152,574.387,236.186,399.125,297.289,569.110,70.548,140.067,70.548,350.071,311.001,361.262,21.313,18.958,21.313 +9186,288.700,283.717,578.759,250.445,394.997,282.546,572.836,78.813,138.172,78.813,349.298,311.236,361.375,23.544,18.826,23.544 +9187,288.732,270.322,580.050,265.163,392.729,270.187,572.919,88.919,136.577,88.919,346.240,312.163,360.505,21.015,18.715,21.015 +9188,288.763,253.776,579.158,279.865,393.380,254.664,572.093,97.162,134.734,97.162,346.682,313.261,360.922,22.950,18.733,22.950 +9189,288.794,253.776,579.158,279.865,393.380,254.664,572.093,97.162,134.734,97.162,346.682,313.261,360.922,22.950,18.733,22.950 +9190,288.823,241.240,575.966,294.622,396.646,243.356,568.988,106.871,133.109,106.871,345.023,314.064,359.606,18.982,20.072,18.982 +9191,288.853,228.319,570.911,308.084,401.130,232.050,563.293,116.095,131.669,116.095,341.190,315.823,358.156,19.409,19.422,19.409 +9192,288.885,214.530,566.114,319.873,407.628,221.401,556.344,125.119,130.135,125.119,332.695,315.868,356.584,18.975,18.753,18.975 +9193,288.917,157.994,605.555,330.859,415.875,212.061,548.000,133.210,128.818,133.210,197.341,316.716,355.275,17.713,19.209,17.713 +9194,288.949,173.248,564.064,339.954,425.722,204.430,539.182,141.411,127.117,141.411,273.613,317.583,353.399,17.591,19.547,17.591 +9195,288.980,178.719,543.716,347.041,436.223,199.299,531.426,149.153,125.855,149.153,303.376,318.642,351.315,22.334,20.119,22.334 +9196,289.012,178.960,527.015,353.240,447.820,193.963,520.503,156.537,124.695,156.537,317.384,319.074,350.094,20.544,19.163,20.544 +9197,289.044,178.238,514.248,357.385,459.423,190.878,510.564,163.749,123.690,163.749,321.999,319.785,348.331,20.402,20.524,20.402 +9198,289.075,178.104,503.230,361.442,471.738,189.876,501.322,170.795,122.525,170.795,324.330,319.826,348.179,19.770,24.073,19.770 +9199,289.105,178.611,492.034,362.866,482.721,189.420,491.558,177.483,121.185,177.483,325.696,319.664,347.334,18.718,24.517,18.718 +9200,289.136,179.309,482.383,362.993,493.573,189.844,483.082,3.795,120.005,3.795,325.810,320.023,346.927,19.284,25.492,19.284 +9201,289.167,181.436,473.211,361.565,503.590,191.002,474.891,9.960,118.996,9.960,326.487,320.039,345.912,18.646,25.439,18.646 +9202,289.199,184.085,464.453,359.283,513.120,193.015,467.004,15.945,117.951,15.945,326.506,320.403,345.080,19.230,25.383,19.230 +9203,289.230,186.837,457.130,356.316,521.650,195.317,460.413,21.161,117.108,21.161,326.309,320.241,344.497,19.373,24.850,19.373 +9204,289.261,191.742,446.948,352.779,529.591,199.794,450.914,26.222,116.042,26.222,326.058,320.643,344.010,25.949,24.953,25.949 +9205,289.292,191.742,446.948,352.779,529.591,199.794,450.914,26.222,116.042,26.222,326.058,320.643,344.010,25.949,24.953,25.949 +9206,289.320,194.462,442.692,348.927,537.109,202.158,447.090,29.745,115.153,29.745,326.459,321.636,344.187,25.303,25.164,25.303 +9207,289.351,198.618,437.166,344.716,543.325,205.791,442.064,34.330,114.444,34.330,326.292,322.104,343.663,25.318,24.414,25.318 +9208,289.382,202.173,433.215,340.386,549.171,208.937,438.491,37.954,113.860,37.954,326.282,322.479,343.439,25.611,24.130,25.611 +9209,289.414,207.276,427.909,336.224,554.310,213.674,433.868,42.965,113.199,42.965,326.047,323.145,343.533,24.859,24.292,24.859 +9210,289.447,210.758,424.406,331.769,558.654,216.947,430.876,46.273,112.620,46.273,325.503,322.923,343.411,24.287,23.769,24.287 +9211,289.479,213.437,421.040,327.172,562.666,219.586,428.180,49.268,111.949,49.268,325.377,323.856,344.223,24.185,22.966,24.185 +9212,289.511,217.424,418.046,322.862,565.749,223.067,425.516,52.927,111.492,52.927,325.370,323.134,344.093,23.209,22.320,23.209 +9213,289.542,220.826,415.743,318.944,568.593,226.257,423.746,55.840,111.063,55.840,324.459,323.222,343.803,22.578,22.226,22.578 +9214,289.573,224.452,413.282,315.156,570.990,229.435,421.446,58.597,110.794,58.597,325.482,322.669,344.610,23.015,22.224,23.015 +9215,289.604,227.520,411.451,310.978,572.992,232.305,420.112,61.085,110.601,61.085,323.932,322.561,343.722,22.634,21.357,22.634 +9216,289.635,230.063,409.205,307.348,574.630,234.748,418.517,63.295,110.508,63.295,323.325,322.563,344.174,22.048,20.899,22.048 +9217,289.665,232.837,407.494,304.114,576.233,237.197,417.151,65.704,110.815,65.704,323.861,322.444,345.052,22.130,20.974,22.130 +9218,289.696,235.422,406.196,300.683,577.300,239.487,416.163,67.810,111.073,67.810,323.102,322.433,344.630,22.076,20.631,22.076 +9219,289.727,235.422,406.196,300.683,577.300,239.487,416.163,67.810,111.073,67.810,323.102,322.433,344.630,22.076,20.631,22.076 +9220,289.755,237.575,404.534,297.827,578.533,241.556,415.150,69.444,111.705,69.444,322.800,322.370,345.475,21.301,20.332,21.301 +9221,289.787,239.881,403.843,295.134,579.430,243.487,414.387,71.114,112.665,71.114,323.464,322.384,345.750,21.040,20.818,21.040 +9222,289.819,242.019,402.904,292.634,580.121,245.399,413.756,72.699,113.629,72.699,323.037,321.972,345.770,20.692,20.385,20.692 +9223,289.850,243.888,402.036,290.377,580.917,247.087,413.276,74.116,115.408,74.116,322.804,321.725,346.176,20.456,20.617,20.456 +9224,289.882,245.617,401.448,288.002,581.231,248.555,412.710,75.379,116.928,75.379,322.764,321.577,346.042,20.236,20.450,20.236 +9225,289.914,247.353,401.813,286.541,581.685,249.913,412.447,76.464,119.189,76.464,324.345,321.602,346.220,19.967,21.338,19.967 +9226,289.947,248.700,400.900,284.676,581.706,251.155,411.949,77.471,120.964,77.471,323.335,321.217,345.972,19.632,20.751,19.632 +9227,289.979,250.165,401.058,283.380,582.082,252.358,411.803,78.465,123.977,78.465,324.155,320.926,346.087,19.496,21.525,19.496 +9228,290.010,251.158,400.687,282.253,582.202,253.197,411.493,79.315,126.614,79.315,324.278,320.799,346.272,18.930,21.694,18.930 +9229,290.041,252.411,400.578,281.024,582.350,254.301,411.362,80.064,129.715,80.064,324.173,320.350,346.070,19.161,22.544,19.161 +9230,290.071,253.399,400.609,280.227,582.360,255.096,411.020,80.744,132.763,80.744,325.206,320.031,346.303,19.030,22.814,19.030 +9231,290.102,254.408,400.560,279.082,582.129,255.953,410.775,81.399,136.219,81.399,325.109,319.720,345.772,19.052,22.622,19.052 +9232,290.133,255.283,401.177,278.540,582.546,256.623,410.653,81.951,139.436,81.951,327.399,319.433,346.538,18.933,23.423,18.933 +9233,290.163,256.027,400.602,277.787,582.718,257.342,410.603,82.504,142.933,82.504,326.449,319.217,346.624,18.733,23.473,18.733 +9234,290.195,256.027,400.602,277.787,582.718,257.342,410.603,82.504,142.933,82.504,326.449,319.217,346.624,18.733,23.473,18.733 +9235,290.223,256.757,401.161,277.100,582.652,257.923,410.657,82.999,146.716,82.999,326.965,318.978,346.099,18.458,23.828,18.458 +9236,290.254,257.489,401.331,276.321,582.571,258.510,410.303,83.506,150.662,83.506,328.295,318.995,346.355,18.587,24.294,18.587 +9237,290.286,257.692,401.258,275.786,582.552,258.680,410.189,83.689,154.522,83.689,328.426,318.495,346.397,18.459,24.380,18.459 +9238,290.317,258.615,401.287,275.475,582.666,259.507,410.155,84.258,158.529,84.258,328.661,318.650,346.486,18.443,24.804,18.443 +9239,290.348,259.343,401.689,275.044,582.642,260.137,410.217,84.685,162.646,84.685,328.998,317.901,346.129,18.664,24.757,18.664 +9240,290.379,260.021,401.737,274.727,582.836,260.769,410.339,85.030,166.799,85.030,328.846,318.251,346.114,18.972,25.301,18.972 +9241,290.412,260.335,401.594,274.184,582.692,261.006,409.893,85.376,171.203,85.376,329.945,317.800,346.597,18.586,25.635,18.586 +9242,290.443,260.956,401.503,274.348,583.121,261.589,409.992,85.732,175.365,85.732,330.171,318.388,347.196,18.769,25.457,18.769 +9243,290.474,261.511,402.034,273.993,583.411,262.073,410.131,86.032,179.637,86.032,331.146,318.038,347.380,18.949,25.177,18.949 +9244,290.505,261.880,402.137,273.438,583.322,262.391,410.053,86.309,4.297,86.309,331.376,318.282,347.241,18.800,25.800,18.800 +9245,290.536,262.291,403.132,273.050,583.990,262.727,410.423,86.583,8.556,86.583,333.138,318.636,347.747,18.683,25.553,18.683 +9246,290.567,262.658,403.181,272.866,584.069,263.056,410.528,86.906,13.276,86.906,332.919,319.398,347.636,18.460,25.918,18.460 +9247,290.597,263.183,404.166,272.387,584.348,263.508,410.658,87.138,17.904,87.138,334.832,319.742,347.833,18.627,26.102,18.627 +9248,290.634,263.316,404.170,271.781,584.439,263.617,410.709,87.357,22.529,87.357,334.751,320.539,347.843,18.257,25.788,18.257 +9249,290.679,263.966,404.661,271.113,584.318,264.206,410.653,87.709,27.408,87.709,335.612,321.597,347.604,18.505,25.515,18.505 +9250,290.711,264.278,405.154,270.922,584.828,264.488,410.913,87.917,32.167,87.917,336.541,321.068,348.068,18.424,25.219,18.424 +9251,290.743,264.660,405.120,270.520,584.974,264.843,410.985,88.210,37.117,88.210,336.430,322.001,348.164,18.366,25.452,18.366 +9252,290.781,264.860,405.618,269.829,585.246,265.018,411.120,88.363,41.987,88.363,337.377,321.623,348.385,18.364,24.975,18.364 +9253,290.814,265.300,405.088,269.491,585.509,265.435,410.750,88.636,46.822,88.636,338.285,321.404,349.612,18.114,23.915,18.114 +9254,290.845,265.665,405.059,269.156,585.588,265.766,410.782,88.986,51.746,88.986,338.230,322.504,349.678,18.227,22.894,18.227 +9255,290.876,265.937,405.050,269.242,585.185,266.015,410.594,89.193,56.735,89.193,338.150,322.818,349.239,18.181,20.683,18.181 +9256,290.907,266.377,405.026,268.933,585.226,266.423,410.609,89.530,61.607,89.530,338.095,322.733,349.262,18.131,20.733,18.131 +9257,290.937,267.000,404.500,267.925,585.669,267.000,410.834,90.000,66.644,90.000,337.000,323.408,349.669,18.000,20.531,18.000 +9258,290.968,267.000,404.500,267.550,586.150,267.000,411.075,90.000,71.565,90.000,337.000,324.450,350.150,18.000,20.555,18.000 +9259,290.999,267.677,404.475,265.752,586.177,267.646,411.080,90.274,76.691,90.274,336.996,324.213,350.208,17.770,20.112,17.770 +9260,291.031,268.182,401.452,263.870,586.670,268.084,411.326,90.570,81.459,90.570,331.004,324.866,350.753,17.934,20.575,17.934 +9261,291.064,268.696,397.910,263.167,586.924,268.467,411.443,90.971,86.251,90.971,324.021,325.007,351.091,17.862,19.269,17.862 +9262,291.095,268.696,397.910,263.167,586.924,268.467,411.443,90.971,86.251,90.971,324.021,325.007,351.091,17.862,19.269,17.862 +9263,291.124,270.883,329.931,261.533,586.984,268.737,411.478,91.507,90.945,91.507,188.119,324.203,351.270,17.810,22.014,17.810 +9264,291.155,272.155,326.839,261.925,586.318,269.346,411.122,91.909,96.582,91.909,182.032,323.813,350.693,17.890,20.480,17.890 +9265,291.186,271.670,366.094,260.952,585.498,269.730,410.716,92.490,101.476,92.490,260.667,323.411,349.995,17.853,19.762,17.853 +9266,291.217,272.042,379.569,259.859,585.458,270.647,410.716,92.564,106.526,92.564,287.742,323.184,350.099,17.907,19.922,17.907 +9267,291.248,272.468,386.104,258.858,584.443,271.199,410.210,93.013,111.689,93.013,301.004,321.441,349.283,17.870,19.534,17.870 +9268,291.280,273.144,390.224,257.800,583.900,271.927,410.044,93.514,116.565,93.514,309.076,321.099,348.791,18.001,19.230,18.001 +9269,291.312,273.911,392.774,256.888,583.430,272.713,409.839,94.014,121.827,94.014,314.332,320.549,348.546,18.131,19.600,18.131 +9270,291.344,274.733,394.339,256.119,582.957,273.509,409.635,94.574,126.469,94.574,317.625,320.202,348.315,18.102,19.720,18.102 +9271,291.374,275.525,396.137,255.311,582.724,274.303,409.786,95.117,131.748,95.117,320.479,319.715,347.886,18.166,20.200,18.166 +9272,291.404,276.508,397.154,254.403,582.353,275.231,409.629,95.845,136.273,95.845,322.817,318.434,347.896,18.322,20.485,18.322 +9273,291.435,277.325,397.704,253.791,582.216,275.999,409.564,96.379,141.054,96.379,324.235,318.597,348.102,18.345,21.404,18.345 +9274,291.466,278.322,398.470,252.810,581.925,276.955,409.592,97.007,145.774,97.007,325.573,318.169,347.984,18.498,21.835,18.498 +9275,291.496,279.466,399.467,251.862,582.008,278.094,409.660,97.667,150.255,97.667,328.041,317.777,348.613,18.887,22.698,18.887 +9276,291.527,279.466,399.467,251.862,582.008,278.094,409.660,97.667,150.255,97.667,328.041,317.777,348.613,18.887,22.698,18.887 +9277,291.557,280.675,399.969,250.516,581.467,279.222,409.802,98.406,154.904,98.406,328.155,317.222,348.034,19.595,22.262,19.595 +9278,291.588,281.928,400.564,249.549,581.327,280.415,409.769,99.335,158.962,99.335,329.928,317.266,348.586,19.695,23.262,19.695 +9279,291.619,283.651,401.584,248.031,581.298,282.047,410.247,100.491,163.540,100.491,331.148,316.934,348.769,19.265,23.779,19.265 +9280,291.649,284.943,402.096,246.470,580.709,283.269,410.361,101.449,167.989,101.449,331.659,316.448,348.525,19.155,23.433,19.155 +9281,291.681,286.772,402.349,244.859,580.493,284.943,410.475,102.680,172.011,102.680,332.683,316.651,349.342,18.976,24.254,18.976 +9282,291.712,288.853,403.088,243.333,579.914,286.873,411.009,104.036,176.309,104.036,332.516,315.827,348.844,19.160,23.821,19.160 +9283,291.744,291.182,403.745,241.506,579.566,289.007,411.576,105.524,179.683,105.524,332.895,315.045,349.150,19.163,24.839,19.163 +9284,291.776,293.263,404.540,238.966,579.009,290.979,412.003,107.021,3.772,107.021,334.221,315.491,349.831,19.280,24.584,19.280 +9285,291.807,294.590,405.193,236.572,577.942,292.317,412.154,108.083,7.363,108.083,335.156,316.186,349.803,18.857,25.345,18.857 +9286,291.838,297.263,406.277,234.318,576.932,294.869,412.860,109.983,11.070,109.983,335.763,315.923,349.772,18.967,26.114,18.967 +9287,291.869,299.578,407.324,231.590,576.189,297.049,413.696,111.644,16.091,111.644,336.653,315.797,350.362,18.870,25.794,18.870 +9288,291.900,302.123,408.467,228.705,574.831,299.507,414.483,113.499,19.537,113.499,337.442,315.744,350.562,18.939,25.537,18.939 +9289,291.931,304.836,410.224,225.624,572.698,302.369,415.376,115.589,22.380,115.589,338.652,316.294,350.076,18.801,26.707,18.801 +9290,291.962,308.248,411.897,222.224,571.545,305.638,416.817,117.951,26.169,117.951,340.414,316.632,351.553,19.091,26.020,19.091 +9291,291.991,308.248,411.897,222.224,571.545,305.638,416.817,117.951,26.169,117.951,340.414,316.632,351.553,19.091,26.020,19.091 +9292,292.021,311.256,413.772,218.515,570.223,308.380,418.683,120.343,29.745,120.343,340.975,316.165,352.358,19.113,25.427,19.113 +9293,292.053,314.695,415.448,214.618,568.034,311.552,420.319,122.829,32.574,122.829,341.757,316.292,353.350,19.110,25.000,19.110 +9294,292.085,318.531,418.022,210.804,565.577,315.095,422.788,125.789,35.676,125.789,341.883,316.077,353.633,19.298,24.661,19.298 +9295,292.118,322.155,420.624,206.956,562.555,318.590,425.070,128.720,38.841,128.720,342.796,315.158,354.193,19.492,24.692,19.492 +9296,292.150,326.087,423.527,202.702,559.332,321.995,428.089,131.887,41.987,131.887,342.449,314.562,354.707,19.480,24.380,19.480 +9297,292.182,330.000,426.500,198.676,555.333,325.586,430.914,135.000,44.818,135.000,342.947,313.981,355.432,19.092,24.517,19.092 +9298,292.216,334.206,431.237,196.265,549.310,330.654,434.329,138.965,47.968,138.965,344.298,313.890,353.716,20.017,20.107,20.017 +9299,292.248,338.202,435.768,192.015,544.161,334.337,438.681,142.997,51.072,142.997,344.606,313.600,354.286,20.081,19.867,20.081 +9300,292.280,342.121,440.687,188.773,538.544,338.289,443.166,147.095,54.090,147.095,345.557,313.643,354.686,19.656,19.830,19.656 +9301,292.311,345.886,446.205,185.162,531.935,341.868,448.405,151.294,56.853,151.294,345.973,313.481,355.135,20.340,20.334,20.340 +9302,292.342,349.001,451.886,181.428,525.224,344.600,453.858,155.869,59.436,155.869,346.534,313.338,356.179,20.771,19.994,20.771 +9303,292.372,352.560,459.175,178.420,516.756,347.706,460.831,161.170,62.338,161.170,346.294,311.520,356.551,20.155,19.278,20.155 +9304,292.402,355.487,467.447,175.937,507.865,350.383,468.667,166.557,65.022,166.557,347.062,311.066,357.558,20.235,19.177,20.235 +9305,292.433,357.635,476.547,174.597,498.239,352.203,477.249,172.637,67.845,172.637,346.707,310.686,357.662,19.323,18.751,19.323 +9306,292.464,358.540,486.511,174.160,487.905,353.138,486.598,179.083,70.292,179.083,347.148,309.897,357.953,18.174,19.587,18.174 +9307,292.495,358.017,496.573,175.079,477.247,353.348,496.128,5.440,72.920,5.440,349.135,309.598,358.514,19.057,19.828,19.057 +9308,292.527,358.017,496.573,175.079,477.247,353.348,496.128,5.440,72.920,5.440,349.135,309.598,358.514,19.057,19.828,19.057 +9309,292.555,357.324,507.803,177.673,465.967,352.240,506.675,12.501,76.225,12.501,348.063,308.735,358.480,19.309,19.895,19.309 +9310,292.587,353.652,518.204,180.807,454.735,349.400,516.695,19.545,78.551,19.545,350.188,308.496,359.213,19.559,19.552,19.559 +9311,292.618,351.181,526.671,185.153,443.728,346.231,524.135,27.130,80.660,27.130,348.920,308.247,360.044,26.052,18.969,26.052 +9312,292.649,345.234,538.663,191.055,432.930,340.021,535.036,34.824,82.763,34.824,348.492,308.223,361.194,24.806,18.235,24.806 +9313,292.680,335.980,550.550,199.208,422.695,331.373,546.071,44.193,85.135,44.193,348.679,308.353,361.528,24.756,18.147,24.756 +9314,292.711,326.186,559.907,209.728,413.604,322.278,554.869,52.193,87.859,52.193,348.455,307.496,361.208,22.858,18.184,22.858 +9315,292.741,315.048,567.973,220.680,405.989,311.664,561.967,60.604,89.809,60.604,347.321,308.022,361.108,22.468,18.373,22.468 +9316,292.773,301.703,575.232,233.263,399.990,299.082,568.369,69.099,92.314,69.099,346.866,308.597,361.559,20.471,18.954,20.471 +9317,292.804,286.951,581.077,246.729,395.343,284.932,572.156,77.242,94.635,77.242,343.476,309.175,361.769,23.095,19.396,23.095 +9318,292.835,271.855,584.036,260.272,393.480,271.120,573.557,85.990,97.005,85.990,339.779,310.457,360.788,23.661,19.803,23.661 +9319,292.865,256.167,592.511,274.268,393.695,257.784,573.234,94.795,99.985,94.795,321.889,311.422,360.577,23.170,18.691,23.170 +9320,292.897,227.781,645.317,288.618,394.942,246.458,569.760,103.885,102.232,103.885,203.995,310.870,359.656,20.125,18.951,20.125 +9321,292.931,214.568,613.517,301.886,399.803,234.992,565.485,113.037,104.931,113.037,252.906,312.738,357.294,18.151,19.131,18.151 +9322,292.963,207.736,585.978,314.409,405.812,224.160,559.101,121.430,107.613,121.430,292.723,314.289,355.718,18.203,19.184,18.203 +9323,292.994,207.736,585.978,314.409,405.812,224.160,559.101,121.430,107.613,121.430,292.723,314.289,355.718,18.203,19.184,18.203 +9324,293.023,199.525,571.271,325.995,413.313,215.553,552.036,129.806,110.323,129.806,304.472,314.702,354.547,20.102,20.214,20.102 +9325,293.053,191.882,558.163,335.959,421.982,207.836,543.627,137.663,113.295,137.663,310.101,316.188,353.268,19.630,20.551,19.630 +9326,293.085,186.450,544.828,343.812,431.391,201.134,534.701,145.408,115.731,145.408,316.540,316.685,352.213,19.303,19.884,19.303 +9327,293.117,183.930,533.204,350.478,442.124,196.789,526.562,152.680,118.610,152.680,321.654,317.559,350.600,22.582,19.952,22.582 +9328,293.149,180.027,521.124,355.420,453.060,192.612,516.465,159.685,121.329,159.685,322.550,318.987,349.389,20.771,20.464,20.771 +9329,293.181,178.406,510.280,360.122,464.594,190.784,507.269,166.329,123.983,166.329,323.775,319.790,349.254,19.959,23.506,19.959 +9330,293.214,177.388,499.583,362.242,475.580,189.652,498.041,172.833,128.047,172.833,323.364,320.549,348.086,19.220,23.968,19.220 +9331,293.247,177.517,488.846,362.869,485.728,189.424,488.734,179.465,129.950,179.465,323.117,321.110,346.931,18.130,23.837,18.130 +9332,293.278,178.634,480.635,362.661,495.151,190.059,481.646,5.055,133.210,5.055,323.303,320.759,346.241,18.616,24.538,18.616 +9333,293.308,180.101,472.164,361.811,504.353,191.214,474.213,10.446,136.450,10.446,323.866,320.628,346.467,18.790,25.126,18.790 +9334,293.339,182.802,463.943,359.939,512.600,193.287,466.939,15.945,139.514,15.945,323.759,321.719,345.569,19.505,24.542,19.505 +9335,293.369,185.409,457.052,357.478,520.132,195.330,460.827,20.829,142.902,20.829,324.049,321.807,345.278,19.313,24.427,19.313 +9336,293.399,190.020,447.833,354.923,527.385,199.526,452.306,25.201,146.310,25.201,324.138,321.726,345.149,25.974,24.962,25.974 +9337,293.431,193.327,443.026,351.707,533.712,202.226,448.020,29.305,149.744,29.305,324.180,322.262,344.589,24.951,25.122,24.951 +9338,293.464,195.867,439.606,348.640,539.279,204.347,444.882,31.891,153.263,31.891,324.792,322.012,344.767,25.849,24.872,25.849 +9339,293.495,199.803,434.093,345.199,544.138,207.914,440.131,36.666,156.897,36.666,324.232,322.229,344.455,25.000,24.535,25.000 +9340,293.525,199.803,434.093,345.199,544.138,207.914,440.131,36.666,156.897,36.666,324.232,322.229,344.455,25.000,24.535,25.000 +9341,293.555,203.378,430.952,341.770,548.693,210.945,437.292,39.958,160.648,39.958,323.907,322.382,343.649,24.964,24.803,24.964 +9342,293.585,206.517,427.482,338.562,552.510,213.706,434.193,43.025,164.373,43.025,324.345,322.515,344.014,25.538,24.520,25.538 +9343,293.615,208.500,425.500,335.363,556.152,215.379,432.379,45.000,168.261,45.000,325.269,322.246,344.725,24.042,24.681,24.042 +9344,293.647,212.359,422.677,332.310,559.107,218.695,429.717,48.013,172.219,48.013,325.414,322.155,344.357,24.454,24.567,24.454 +9345,293.679,214.925,420.562,329.632,561.957,220.900,427.745,50.247,176.135,50.247,326.744,322.157,345.431,24.027,24.350,24.027 +9346,293.709,217.681,418.978,326.988,564.143,223.301,426.301,52.496,0.260,52.496,326.493,322.047,344.956,23.947,23.713,23.947 +9347,293.740,220.183,417.726,324.376,566.072,225.124,424.656,54.509,4.493,54.509,328.510,322.599,345.532,23.924,23.841,23.924 +9348,293.770,222.453,416.703,321.954,567.796,227.183,423.754,56.146,8.865,56.146,327.851,322.677,344.832,23.439,24.411,23.439 +9349,293.802,224.485,415.960,319.845,569.165,228.773,422.727,57.639,13.098,57.639,328.862,322.962,344.883,23.208,23.438,23.208 +9350,293.832,225.983,415.309,318.169,570.391,230.009,422.045,59.139,17.587,59.139,329.433,323.262,345.128,22.916,23.444,22.916 +9351,293.865,227.826,414.674,316.341,571.421,231.321,420.763,60.148,21.644,60.148,331.932,323.669,345.974,22.769,23.252,22.769 +9352,293.898,228.966,414.616,314.247,572.074,232.174,420.460,61.239,26.131,61.239,331.466,325.135,344.799,21.810,22.512,21.810 +9353,293.928,228.966,414.616,314.247,572.074,232.174,420.460,61.239,26.131,61.239,331.466,325.135,344.799,21.810,22.512,21.810 +9354,293.956,230.708,414.449,313.128,572.757,233.457,419.641,62.103,31.298,62.103,333.448,325.523,345.198,22.563,23.134,22.563 +9355,293.987,231.769,414.375,311.725,573.982,234.475,419.651,62.850,35.475,62.850,333.294,325.727,345.154,22.519,21.576,22.519 +9356,294.019,232.200,413.400,311.272,574.583,235.044,419.087,63.435,40.079,63.435,333.621,325.087,346.339,22.361,20.155,22.361 +9357,294.050,232.163,412.155,311.099,574.888,235.608,419.180,63.880,44.397,63.880,330.436,323.986,346.083,22.470,19.560,22.470 +9358,294.082,232.276,411.841,309.949,575.703,235.759,418.981,63.997,49.185,63.997,330.878,324.643,346.767,22.294,19.574,22.294 +9359,294.114,230.246,410.638,308.844,576.472,234.851,419.762,63.217,54.253,63.217,326.038,325.134,346.480,21.017,20.836,21.017 +9360,294.146,228.450,405.299,308.511,576.518,235.595,419.322,63.000,58.627,63.000,314.856,325.192,346.332,20.574,19.283,20.574 +9361,294.178,198.739,347.316,308.723,576.638,233.959,420.272,64.231,63.562,64.231,184.613,324.689,346.638,17.700,18.448,17.700 +9362,294.208,209.907,371.811,308.695,576.528,233.579,420.141,63.905,68.459,63.905,239.343,324.600,346.974,17.595,18.481,17.595 +9363,294.239,221.900,397.300,309.123,576.317,233.476,420.451,63.435,73.610,63.435,294.714,324.604,346.482,17.441,18.792,17.441 +9364,294.271,225.558,402.147,309.650,575.970,234.715,419.988,62.830,78.579,62.830,305.868,324.970,345.975,22.352,19.485,22.352 +9365,294.301,226.277,405.744,310.219,575.757,233.987,420.361,62.190,83.571,62.190,312.976,325.336,346.027,22.501,19.160,22.501 +9366,294.332,225.961,407.790,310.882,574.974,232.829,420.363,61.356,88.315,61.356,317.556,324.389,346.209,22.597,18.463,22.597 +9367,294.363,225.604,410.311,311.487,572.999,231.337,420.385,60.356,93.080,60.356,321.380,322.878,344.564,22.858,18.364,22.858 +9368,294.393,225.604,410.311,311.487,572.999,231.337,420.385,60.356,93.080,60.356,321.380,322.878,344.564,22.858,18.364,22.858 +9369,294.422,224.352,412.306,313.904,571.929,229.902,421.607,59.172,98.393,59.172,322.599,322.882,344.261,22.036,20.353,22.036 +9370,294.454,223.282,413.564,315.475,570.704,228.591,422.000,57.815,103.314,57.815,324.328,323.293,344.264,23.159,20.413,23.159 +9371,294.485,221.801,414.977,317.850,569.450,227.100,422.950,56.394,108.435,56.394,325.337,323.501,344.484,23.278,22.136,23.278 +9372,294.516,219.809,416.583,320.688,567.226,225.227,424.209,54.605,113.273,54.605,325.042,321.828,343.752,23.469,23.252,23.469 +9373,294.550,217.313,418.227,323.144,565.043,222.855,425.530,52.808,118.072,52.808,325.187,321.235,343.523,23.270,23.235,23.270 +9374,294.581,215.438,420.269,326.209,562.486,221.113,427.185,50.631,123.024,50.631,324.631,320.705,342.524,23.926,24.021,23.926 +9375,294.613,212.755,422.162,329.632,559.878,218.906,429.081,48.366,127.816,48.366,324.126,320.570,342.642,24.166,24.761,24.166 +9376,294.644,209.000,425.500,332.834,556.767,215.400,431.900,45.000,132.614,45.000,324.562,320.159,342.665,24.749,24.639,24.749 +9377,294.675,206.174,428.216,336.265,553.332,213.036,434.490,42.436,137.377,42.436,323.678,320.100,342.275,25.430,24.938,25.430 +9378,294.705,203.573,430.414,340.082,549.532,210.871,436.611,40.337,142.095,40.337,324.018,320.303,343.166,24.954,25.369,24.954 +9379,294.736,199.915,434.437,343.771,545.411,207.733,440.198,36.384,146.575,36.384,324.437,320.357,343.861,25.380,25.639,25.380 +9380,294.766,196.572,438.832,347.455,540.419,204.839,444.147,32.735,151.014,32.735,324.394,320.914,344.051,25.656,24.854,25.656 +9381,294.797,193.391,442.062,350.902,534.878,202.538,447.283,29.715,155.376,29.715,323.486,321.354,344.549,25.428,24.317,25.428 +9382,294.830,189.856,446.681,354.377,529.006,200.054,451.587,25.694,159.472,25.694,322.628,321.627,345.261,26.396,24.064,26.396 +9383,294.860,189.856,446.681,354.377,529.006,200.054,451.587,25.694,159.472,25.694,322.628,321.627,345.261,26.396,24.064,26.396 +9384,294.888,184.084,455.565,357.483,522.268,196.085,460.256,21.351,163.256,21.351,320.026,321.827,345.797,18.991,22.970,18.991 +9385,294.919,179.784,461.885,360.116,514.620,193.960,466.138,16.699,166.759,16.699,316.562,322.201,346.161,19.444,21.873,19.444 +9386,294.950,173.112,468.319,362.196,506.828,192.108,472.367,12.031,169.695,12.031,308.226,322.799,347.070,19.208,21.198,19.208 +9387,294.982,163.740,475.705,363.448,498.136,190.686,478.888,6.736,171.829,6.736,293.386,322.726,347.654,17.915,19.980,17.915 +9388,295.014,145.951,484.584,364.170,489.329,190.071,485.416,1.081,172.689,1.081,260.029,322.743,348.284,17.242,19.426,17.242 +9389,295.046,109.197,498.864,364.141,480.721,189.968,492.954,175.815,173.395,175.815,187.231,322.362,349.204,17.271,19.156,17.271 +9390,295.077,161.996,506.387,363.061,471.549,190.608,501.756,170.808,173.660,170.808,292.158,322.239,350.127,18.645,18.111,18.645 +9391,295.108,182.177,512.490,360.981,461.818,192.091,509.778,164.703,173.908,164.703,330.560,322.226,351.117,18.731,17.855,18.731 +9392,295.139,186.104,522.552,357.346,452.445,194.514,519.039,157.324,174.268,157.324,333.608,321.596,351.836,20.754,18.465,20.754 +9393,295.169,192.196,532.463,352.571,441.958,198.945,528.644,150.495,175.764,150.495,337.283,320.345,352.791,22.399,17.951,22.399 +9394,295.201,196.522,541.354,345.993,431.816,203.224,536.390,143.471,177.776,143.471,337.256,320.380,353.937,19.047,18.006,19.047 +9395,295.231,205.526,549.027,337.500,422.500,209.583,545.113,136.023,0.000,136.023,343.107,319.000,354.381,19.127,17.000,19.127 +9396,295.262,214.333,557.871,327.393,414.433,217.470,553.814,127.716,2.083,127.716,344.751,317.481,355.007,19.861,18.097,19.861 +9397,295.293,214.333,557.871,327.393,414.433,217.470,553.814,127.716,2.083,127.716,344.751,317.481,355.007,19.861,18.097,19.861 +9398,295.321,224.538,565.521,315.272,407.512,226.849,561.443,119.539,4.327,119.539,345.660,316.441,355.034,20.127,18.083,20.127 +9399,295.352,235.397,571.766,302.552,401.826,237.110,567.348,111.194,6.676,111.194,346.496,315.000,355.973,19.332,18.047,19.332 +9400,295.386,248.711,576.887,288.235,397.658,249.760,572.248,102.738,9.090,102.738,348.042,313.651,357.554,21.145,17.892,21.145 +9401,295.418,259.516,579.062,273.988,394.956,259.827,573.968,93.496,11.768,93.496,348.877,312.254,359.084,23.079,18.030,23.079 +9402,295.449,276.006,578.788,259.283,395.420,275.686,574.242,85.972,13.799,85.972,349.950,311.173,359.065,23.084,17.923,23.084 +9403,295.482,287.306,577.239,244.916,397.531,286.233,572.725,76.627,16.049,76.627,350.720,310.029,359.999,21.866,17.364,21.866 +9404,295.516,301.978,572.245,231.212,401.851,300.395,568.233,68.459,18.122,68.459,351.697,308.931,360.324,21.222,17.315,21.222 +9405,295.549,314.451,566.090,218.766,407.773,312.124,562.030,60.186,20.113,60.186,351.152,308.355,360.511,23.114,17.537,23.114 +9406,295.582,326.448,558.816,207.796,415.266,322.931,554.351,51.776,21.982,51.776,349.638,307.344,361.005,24.124,17.933,24.124 +9407,295.613,336.643,550.699,198.787,422.636,331.446,545.719,43.781,24.193,43.781,347.487,307.361,361.881,24.126,20.002,24.126 +9408,295.644,347.620,545.864,190.563,432.333,337.308,538.435,35.768,26.131,35.768,336.753,307.230,362.170,18.981,18.904,18.981 +9409,295.675,411.330,564.558,184.280,442.681,343.742,527.654,28.635,28.205,28.635,207.345,306.063,361.359,19.368,19.437,19.368 +9410,295.708,366.265,525.162,179.192,453.538,347.994,518.030,21.324,29.745,21.324,322.167,306.986,361.395,19.219,19.101,19.219 +9411,295.738,360.973,511.591,176.113,463.749,350.649,509.000,14.086,31.578,14.086,339.311,307.186,360.601,19.413,20.446,19.413 +9412,295.769,360.079,500.182,174.141,474.441,352.444,499.172,7.536,33.046,7.536,344.612,307.079,360.014,19.418,19.784,19.418 +9413,295.801,359.462,490.196,173.479,484.811,352.759,490.047,1.278,34.824,1.278,345.293,307.447,358.704,18.620,21.129,18.620 +9414,295.832,358.292,480.489,173.682,494.883,352.469,480.976,175.218,36.158,175.218,346.963,307.833,358.649,19.514,21.178,19.514 +9415,295.864,356.519,471.806,174.732,503.694,351.046,472.818,169.517,37.126,169.517,346.844,308.425,357.977,20.541,20.253,20.541 +9416,295.895,356.519,471.806,174.732,503.694,351.046,472.818,169.517,37.126,169.517,346.844,308.425,357.977,20.541,20.253,20.541 +9417,295.924,354.254,463.685,176.541,511.948,349.096,465.134,164.305,38.134,164.305,346.856,309.359,357.572,20.790,19.730,20.790 +9418,295.954,351.504,456.689,179.025,519.640,346.478,458.566,159.522,39.352,159.522,345.744,309.725,356.475,20.147,19.734,20.147 +9419,295.985,348.483,450.657,181.853,526.830,343.857,452.830,154.835,40.495,154.835,345.964,310.644,356.187,20.021,19.994,20.021 +9420,296.016,345.495,445.563,183.809,534.580,340.336,448.452,150.751,41.319,150.751,345.477,311.096,357.305,20.033,23.918,20.033 +9421,296.048,341.696,440.080,186.934,539.978,336.939,443.207,146.679,42.427,146.679,345.623,311.575,357.008,19.745,23.771,19.745 +9422,296.081,338.360,435.480,190.323,545.155,333.546,439.090,143.130,43.176,143.130,344.400,312.014,356.435,19.200,24.201,19.200 +9423,296.113,335.079,431.593,193.823,549.719,330.505,435.470,139.712,43.983,139.712,344.285,312.023,356.277,19.368,24.122,19.368 +9424,296.145,332.135,428.610,196.880,553.631,327.536,432.919,136.868,44.706,136.868,343.156,313.291,355.759,19.512,24.375,19.512 +9425,296.176,328.736,425.757,200.160,556.860,324.647,429.967,134.170,45.343,134.170,343.782,313.992,355.518,19.080,24.507,19.080 +9426,296.207,325.950,423.569,203.453,560.081,322.118,427.888,131.580,46.042,131.580,343.728,314.752,355.276,19.893,24.706,19.893 +9427,296.238,322.606,420.870,206.244,562.370,318.961,425.365,129.036,46.488,129.036,343.242,314.869,354.817,19.587,23.988,19.587 +9428,296.268,320.142,419.473,208.822,564.730,316.729,423.984,127.117,46.863,127.117,343.380,315.163,354.695,19.677,24.276,19.677 +9429,296.298,317.627,418.025,211.456,566.661,314.354,422.631,125.395,47.397,125.395,342.719,315.863,354.020,18.899,23.738,18.899 +9430,296.328,317.627,418.025,211.456,566.661,314.354,422.631,125.395,47.397,125.395,342.719,315.863,354.020,18.899,23.738,18.899 +9431,296.357,315.327,416.390,213.579,568.428,312.100,421.252,123.571,47.663,123.571,342.542,316.080,354.213,19.119,24.492,19.119 +9432,296.387,313.580,415.964,215.730,569.844,310.641,420.597,122.400,48.048,122.400,342.765,316.645,353.738,18.900,24.191,18.900 +9433,296.420,311.515,414.809,217.381,571.003,308.697,419.505,120.964,48.151,120.964,342.826,316.881,353.780,18.865,24.802,18.865 +9434,296.451,310.499,414.344,218.787,571.746,307.761,419.085,120.005,48.489,120.005,342.441,317.083,353.391,19.332,24.272,19.332 +9435,296.483,309.064,413.373,219.968,572.528,306.384,418.209,118.989,48.468,118.989,342.675,317.166,353.732,19.102,24.832,19.102 +9436,296.515,307.992,413.077,221.100,573.091,305.404,417.892,118.256,48.614,118.256,342.299,317.669,353.232,19.553,24.113,19.553 +9437,296.548,307.459,412.603,221.577,573.613,304.753,417.732,117.824,48.681,117.824,341.766,317.583,353.363,19.358,24.322,19.358 +9438,296.579,307.599,412.733,222.188,573.895,304.998,417.661,117.824,48.652,117.824,342.503,317.672,353.647,18.990,24.683,18.990 +9439,296.617,307.415,412.642,222.266,574.001,304.814,417.595,117.711,48.576,117.711,342.515,317.578,353.705,18.985,24.833,18.985 +9440,296.660,306.864,412.372,222.220,573.908,304.308,417.297,117.429,48.160,117.429,342.540,317.549,353.637,19.179,24.689,19.179 +9441,296.693,307.024,412.661,222.061,573.845,304.446,417.595,117.588,48.013,117.588,342.144,317.535,353.277,19.291,24.529,19.291 +9442,296.724,307.993,412.923,221.588,573.379,305.404,417.748,118.217,47.386,118.217,342.578,317.451,353.530,18.741,24.551,18.741 +9443,296.761,308.743,413.262,220.886,572.985,306.102,418.079,118.740,47.386,118.740,342.607,317.275,353.595,19.035,23.932,19.035 +9444,296.794,310.072,413.685,219.711,572.272,307.244,418.643,119.699,46.762,119.699,342.218,317.156,353.632,18.872,24.824,18.872 +9445,296.825,311.064,414.363,218.518,571.428,308.317,419.042,120.426,46.071,120.426,342.902,316.993,353.753,19.148,24.269,19.148 +9446,296.856,312.796,415.144,216.645,570.358,309.818,419.984,121.608,45.498,121.608,342.432,316.858,353.798,19.326,24.496,19.326 +9447,296.887,314.699,416.155,214.750,569.250,311.521,421.045,123.024,45.000,123.024,342.337,316.784,354.001,19.033,24.749,19.033 +9448,296.919,316.927,417.107,212.784,567.698,313.569,422.000,124.461,44.341,124.461,342.448,316.129,354.317,19.400,24.186,19.400 +9449,296.951,318.664,418.176,210.244,565.798,315.278,422.872,125.789,43.431,125.789,343.146,315.677,354.724,20.072,24.623,20.072 +9450,296.983,320.757,419.427,208.091,563.776,317.214,424.018,127.648,42.709,127.648,343.023,315.683,354.622,19.410,24.531,19.410 +9451,297.015,324.294,421.826,204.965,561.414,320.420,426.419,130.147,41.634,130.147,343.239,315.241,355.257,19.662,24.581,19.662 +9452,297.048,327.051,424.006,202.122,558.706,322.896,428.536,132.530,40.914,132.530,342.836,314.770,355.131,19.642,24.484,19.642 +9453,297.081,330.000,426.500,198.906,555.421,325.621,430.879,135.000,40.030,135.000,342.947,314.337,355.332,19.092,24.594,19.092 +9454,297.113,333.148,429.876,195.750,551.559,328.828,433.781,137.891,38.581,137.891,343.759,313.911,355.404,19.788,24.111,19.788 +9455,297.144,336.513,433.227,192.372,547.517,331.996,436.879,141.050,37.569,141.050,344.656,313.635,356.273,19.572,24.510,19.572 +9456,297.175,339.872,437.020,189.239,542.676,335.108,440.423,144.462,36.384,144.462,344.558,312.785,356.265,19.413,23.940,19.413 +9457,297.205,343.330,441.700,186.020,537.184,338.402,444.803,147.804,35.032,147.804,344.699,312.213,356.345,20.717,23.814,20.717 +9458,297.236,346.246,446.091,182.982,531.284,341.207,448.857,151.232,33.959,151.232,345.234,311.479,356.731,21.743,23.410,21.743 +9459,297.268,349.331,451.447,180.237,524.569,344.085,453.817,155.695,32.651,155.695,345.380,310.697,356.893,20.726,22.954,20.726 +9460,297.299,352.657,457.755,177.574,516.936,346.935,459.790,160.427,31.544,160.427,345.290,310.535,357.438,20.331,22.445,20.331 +9461,297.329,356.764,464.904,175.198,508.537,349.407,466.840,165.256,29.823,165.256,342.955,310.460,358.170,20.258,21.612,20.258 +9462,297.360,356.764,464.904,175.198,508.537,349.407,466.840,165.256,29.823,165.256,342.955,310.460,358.170,20.258,21.612,20.258 +9463,297.388,358.579,472.548,174.006,499.673,351.392,473.720,170.733,27.667,170.733,343.936,309.157,358.500,20.747,20.585,20.747 +9464,297.420,361.339,481.985,173.699,490.068,352.627,482.523,176.464,26.333,176.464,340.648,308.149,358.106,18.975,21.048,18.975 +9465,297.451,364.398,492.056,173.462,480.798,352.723,491.589,2.291,24.538,2.291,335.732,307.870,359.099,18.945,19.934,18.945 +9466,297.482,370.443,504.207,174.527,470.845,352.149,501.322,8.960,22.674,8.960,323.362,307.924,360.402,20.067,19.885,20.067 +9467,297.514,395.983,523.088,176.949,460.181,350.145,510.647,15.186,20.781,15.186,265.742,307.356,360.735,18.736,20.233,18.736 +9468,297.547,364.241,527.897,181.300,449.600,347.147,521.059,21.801,18.435,21.801,324.224,308.322,361.047,19.312,19.290,19.312 +9469,297.578,350.127,532.632,185.661,440.284,343.273,528.744,29.560,16.617,29.560,345.715,307.173,361.474,22.421,17.695,22.421 +9470,297.610,342.334,540.788,192.376,430.980,338.213,537.662,37.185,13.897,37.185,350.984,306.790,361.328,25.027,17.433,25.027 +9471,297.640,333.396,550.660,200.884,421.559,330.262,547.494,45.297,11.768,45.297,352.127,306.747,361.037,23.418,17.377,23.418 +9472,297.670,323.439,559.736,210.934,413.404,320.898,556.282,53.673,9.340,53.673,351.927,307.085,360.504,23.530,17.242,23.530 +9473,297.700,311.427,567.399,222.146,406.389,309.568,563.877,62.171,6.988,62.171,352.207,307.723,360.172,22.777,17.335,22.777 +9474,297.731,299.387,573.570,234.754,400.511,297.822,569.200,70.289,4.667,70.289,350.870,307.508,360.153,21.248,17.534,21.248 +9475,297.762,287.077,577.385,248.036,397.320,286.205,573.023,78.690,1.742,78.690,350.656,308.435,359.552,22.749,17.570,22.749 +9476,297.793,287.077,577.385,248.036,397.320,286.205,573.023,78.690,1.742,78.690,350.656,308.435,359.552,22.749,17.570,22.749 +9477,297.821,273.875,578.983,262.510,394.906,273.654,574.071,87.417,179.370,87.417,349.134,309.091,358.969,23.247,17.515,23.247 +9478,297.853,256.545,578.504,277.125,395.243,257.026,573.209,95.194,176.820,95.194,347.476,310.743,358.110,23.268,16.696,23.268 +9479,297.885,244.138,575.667,292.151,397.541,245.518,570.386,104.653,174.386,104.653,347.124,312.231,358.040,20.539,17.306,20.539 +9480,297.917,231.665,570.293,306.109,401.754,233.995,565.012,113.806,171.793,113.806,345.408,313.963,356.953,19.213,17.740,19.213 +9481,297.949,220.624,563.443,318.663,407.839,223.676,558.638,122.421,169.046,122.421,345.056,315.911,356.440,19.917,17.735,19.917 +9482,297.979,210.629,555.112,330.133,415.552,214.559,550.566,130.838,166.421,130.838,343.428,317.704,355.446,19.758,18.004,19.758 +9483,298.011,201.750,546.713,339.659,423.713,207.214,541.943,138.881,163.431,138.881,340.547,318.674,355.055,19.958,19.772,19.958 +9484,298.041,193.771,537.654,347.287,433.345,201.071,532.834,146.564,161.704,146.564,336.179,319.711,353.674,19.525,19.931,19.525 +9485,298.071,186.724,528.840,353.234,442.734,196.697,524.176,154.940,160.846,154.940,330.577,320.677,352.596,19.380,19.430,19.380 +9486,298.103,117.712,540.796,357.602,452.788,193.199,514.539,160.821,160.560,160.821,191.281,321.338,351.128,17.165,19.747,17.165 +9487,298.133,129.218,519.729,360.928,463.498,190.966,506.008,167.471,159.156,167.471,223.764,321.864,350.273,17.138,20.071,17.138 +9488,298.166,159.288,500.920,362.731,473.604,189.981,497.272,173.220,157.920,173.220,286.854,321.803,348.673,17.673,20.325,17.673 +9489,298.198,169.020,488.837,363.864,484.693,189.931,488.663,179.523,156.134,179.523,306.098,322.058,347.922,18.024,21.565,18.024 +9490,298.229,169.020,488.837,363.864,484.693,189.931,488.663,179.523,156.134,179.523,306.098,322.058,347.922,18.024,21.565,18.024 +9491,298.257,174.654,479.828,363.391,494.775,190.481,481.260,5.168,153.225,5.168,315.066,322.008,346.849,18.647,22.459,18.647 +9492,298.288,178.748,471.468,362.186,504.518,191.684,473.919,10.729,149.556,10.729,320.105,322.262,346.436,18.802,23.557,18.802 +9493,298.319,182.201,463.789,360.195,513.286,193.357,466.983,15.979,145.663,15.979,323.069,321.781,346.277,19.371,24.324,19.371 +9494,298.349,186.067,456.095,357.263,521.331,195.902,459.982,21.564,141.483,21.564,324.082,321.720,345.231,19.530,24.766,19.530 +9495,298.381,190.863,446.737,353.760,528.649,199.717,451.073,26.091,137.437,26.091,325.209,321.398,344.926,25.952,25.042,25.952 +9496,298.414,193.869,442.354,350.118,535.141,202.182,447.104,29.745,133.229,29.745,325.095,321.310,344.244,25.303,25.167,25.303 +9497,298.445,197.615,437.577,346.049,541.227,205.300,442.700,33.690,129.123,33.690,325.054,321.408,343.526,25.239,24.960,25.239 +9498,298.477,201.050,433.970,342.159,546.767,208.374,439.513,37.117,124.380,37.117,324.437,321.218,342.807,25.409,25.020,25.409 +9499,298.507,205.354,428.806,338.150,551.799,212.219,434.941,41.785,119.840,41.785,325.122,321.737,343.535,25.574,24.994,25.574 +9500,298.539,209.000,425.500,333.760,556.405,215.541,432.041,45.000,115.622,45.000,324.562,322.962,343.063,24.749,24.170,24.749 +9501,298.569,212.190,423.009,330.052,560.020,218.338,429.772,47.726,110.807,47.726,324.766,322.799,343.046,24.351,23.557,24.351 +9502,298.600,215.061,420.232,326.271,563.228,220.957,427.370,50.440,106.449,50.440,325.111,322.861,343.627,23.933,22.497,23.933 +9503,298.632,217.673,417.878,322.600,566.021,223.475,425.636,53.205,101.821,53.205,324.205,322.614,343.579,22.982,21.260,22.982 +9504,298.662,217.673,417.878,322.600,566.021,223.475,425.636,53.205,101.821,53.205,324.205,322.614,343.579,22.982,21.260,22.982 +9505,298.690,220.389,415.136,319.008,568.437,226.245,423.644,55.465,97.275,55.465,323.074,323.101,343.732,23.234,19.755,23.234 +9506,298.721,222.675,412.856,315.815,570.922,228.703,422.374,57.653,92.654,57.653,321.679,322.720,344.211,22.979,19.006,22.979 +9507,298.754,224.529,410.028,312.993,573.079,231.010,421.158,59.789,87.754,59.789,319.318,324.143,345.078,22.851,18.476,22.851 +9508,298.786,225.396,406.077,311.043,575.381,233.176,420.440,61.557,83.480,61.557,313.980,325.680,346.650,22.532,19.019,22.532 +9509,298.817,226.232,401.861,308.970,576.715,235.138,419.515,63.229,79.028,63.229,307.667,326.141,347.213,22.095,18.823,22.095 +9510,298.850,223.343,394.634,306.618,577.327,234.855,419.142,64.841,74.381,64.841,293.221,324.597,347.374,17.911,18.702,17.911 +9511,298.883,206.958,350.992,304.969,578.145,236.451,418.651,66.448,69.877,66.448,199.558,324.914,347.172,17.652,18.750,17.652 +9512,298.917,227.656,390.236,303.093,578.995,239.558,417.623,66.511,65.211,66.511,286.923,324.979,346.647,20.070,19.245,20.070 +9513,298.949,236.010,406.226,301.313,579.771,240.556,417.312,67.700,60.969,67.700,322.765,325.088,346.728,20.713,19.504,20.713 +9514,298.980,239.715,408.841,299.982,580.387,242.514,416.449,69.800,56.985,69.800,331.182,324.520,347.396,21.231,20.623,21.231 +9515,299.014,240.972,408.380,299.856,580.059,243.505,415.654,70.801,52.169,70.801,332.178,324.425,347.583,21.114,20.544,21.114 +9516,299.045,242.552,409.145,299.013,579.939,244.483,414.981,71.686,47.974,71.686,335.181,324.152,347.475,20.852,20.937,20.852 +9517,299.075,243.397,409.151,297.137,580.832,245.222,414.867,72.290,44.469,72.290,335.783,323.920,347.785,20.757,21.736,20.757 +9518,299.106,244.422,409.134,295.991,580.837,246.043,414.446,73.034,40.409,73.034,336.340,323.896,347.447,20.637,22.174,20.637 +9519,299.136,244.845,408.726,294.628,580.774,246.404,414.008,73.560,36.170,73.560,336.178,324.820,347.192,20.330,22.407,20.330 +9520,299.167,245.632,408.462,294.092,580.355,247.116,413.657,74.055,32.544,74.055,335.572,324.651,346.378,20.467,24.036,20.467 +9521,299.199,246.119,408.163,293.367,581.367,247.679,413.768,74.450,27.979,74.450,335.790,323.000,347.426,20.349,24.644,20.349 +9522,299.230,246.438,407.741,292.951,580.700,247.999,413.480,74.784,24.600,74.784,334.418,322.757,346.313,20.341,25.656,20.341 +9523,299.261,246.438,407.741,292.951,580.700,247.999,413.480,74.784,24.600,74.784,334.418,322.757,346.313,20.341,25.656,20.341 +9524,299.288,246.475,406.813,292.870,581.219,248.278,413.517,74.949,20.136,74.949,333.173,321.690,347.057,20.198,25.475,20.198 +9525,299.319,246.604,406.639,292.540,581.361,248.434,413.504,75.069,16.239,75.069,332.900,321.001,347.109,20.162,24.888,20.162 +9526,299.351,246.662,406.115,292.294,581.177,248.565,413.347,75.256,12.529,75.256,331.910,320.840,346.865,20.258,24.947,20.258 +9527,299.382,246.622,406.127,292.179,581.092,248.514,413.302,75.225,8.711,75.225,331.914,320.310,346.755,20.263,24.807,20.263 +9528,299.415,246.498,405.660,292.287,580.794,248.481,413.176,75.225,5.315,75.225,330.947,319.759,346.494,20.263,25.101,20.263 +9529,299.445,246.084,405.281,292.498,580.582,248.198,413.171,75.005,1.710,75.005,330.009,319.306,346.345,20.302,25.093,20.302 +9530,299.476,245.742,405.388,292.497,580.415,247.866,413.175,74.745,178.137,74.745,330.037,319.189,346.179,20.348,25.190,20.348 +9531,299.507,245.234,405.074,292.837,580.168,247.481,413.149,74.450,174.908,74.450,329.365,319.408,346.129,20.399,25.414,20.399 +9532,299.538,244.670,405.094,293.252,579.871,247.021,413.323,74.055,171.336,74.055,328.566,319.088,345.682,20.467,24.809,20.467 +9533,299.568,244.064,405.217,293.851,579.670,246.505,413.517,73.610,168.136,73.610,328.216,319.159,345.521,20.542,25.017,20.542 +9534,299.600,243.460,405.209,294.840,579.276,246.005,413.612,73.151,165.069,73.151,327.854,319.308,345.414,21.072,25.187,21.072 +9535,299.632,241.984,405.371,295.670,579.001,244.684,413.890,72.408,161.742,72.408,327.725,319.398,345.598,20.157,24.897,20.157 +9536,299.662,241.285,405.743,296.653,578.607,244.092,414.216,71.667,158.749,71.667,327.309,319.419,345.161,21.069,24.802,21.069 +9537,299.693,241.285,405.743,296.653,578.607,244.092,414.216,71.667,158.749,71.667,327.309,319.419,345.161,21.069,24.802,21.069 +9538,299.721,240.095,406.096,297.840,578.016,243.007,414.455,70.796,156.038,70.796,327.287,319.326,344.991,21.253,25.282,21.253 +9539,299.753,238.846,406.325,299.248,577.487,241.932,414.765,69.922,153.004,69.922,327.045,319.362,345.018,21.447,24.831,21.447 +9540,299.785,237.706,407.229,300.866,577.138,240.914,415.576,68.984,150.180,68.984,326.745,319.644,344.630,21.734,24.949,21.734 +9541,299.817,236.096,407.849,302.509,576.299,239.450,416.070,67.810,147.496,67.810,326.599,319.594,344.357,22.076,24.562,22.076 +9542,299.849,234.489,408.054,304.410,575.582,238.156,416.512,66.562,144.825,66.562,326.160,319.673,344.597,22.672,24.623,22.672 +9543,299.881,232.462,409.121,306.349,574.805,236.305,417.377,65.037,142.275,65.037,326.354,320.039,344.566,22.368,24.624,22.368 +9544,299.915,230.500,410.000,308.673,573.572,234.582,418.164,63.435,139.814,63.435,326.019,319.857,344.273,22.361,24.335,22.361 +9545,299.946,228.406,411.244,311.141,572.198,232.712,419.254,61.742,137.437,61.742,325.509,319.985,343.696,22.659,23.960,22.659 +9546,299.975,226.175,412.582,314.000,571.000,230.719,420.425,59.916,135.000,59.916,325.946,319.612,344.075,22.921,24.042,22.921 +9547,300.006,223.354,414.151,316.647,569.172,228.184,421.860,57.929,132.859,57.929,325.410,320.545,343.604,22.279,24.150,22.279 +9548,300.036,220.742,415.946,319.699,567.240,225.916,423.527,55.681,130.741,55.681,324.782,320.283,343.139,22.512,24.013,22.512 +9549,300.067,218.008,418.134,322.878,564.902,223.344,425.282,53.256,128.660,53.256,325.010,320.469,342.850,22.892,24.051,22.892 +9550,300.100,215.056,419.764,326.341,562.512,220.762,426.721,50.648,126.501,50.648,325.901,320.411,343.897,23.925,24.019,23.925 +9551,300.132,211.986,423.285,329.948,559.621,218.012,429.913,47.726,124.509,47.726,324.632,320.707,342.546,23.544,24.412,23.544 +9552,300.163,211.986,423.285,329.948,559.621,218.012,429.913,47.726,124.509,47.726,324.632,320.707,342.546,23.544,24.412,23.544 +9553,300.191,208.500,425.500,333.575,556.229,214.951,431.951,45.000,122.508,45.000,325.269,320.975,343.515,24.042,24.250,24.042 +9554,300.221,204.929,429.566,337.383,552.635,211.686,435.457,41.082,120.651,41.082,325.572,321.048,343.498,25.106,24.757,25.106 +9555,300.256,201.461,433.637,341.022,548.460,208.549,439.071,37.476,118.887,37.476,325.511,322.092,343.374,25.422,24.577,25.422 +9556,300.289,198.709,437.069,344.613,543.264,205.832,441.934,34.330,117.378,34.330,326.252,321.137,343.504,25.580,24.705,25.580 +9557,300.320,194.613,442.104,348.482,537.405,202.341,446.562,29.982,115.233,29.982,326.119,320.732,343.962,25.819,24.756,25.819 +9558,300.353,191.923,447.061,352.113,530.984,199.792,450.934,26.208,113.523,26.208,326.487,320.300,344.028,25.949,25.004,25.949 +9559,300.383,187.413,456.206,355.383,523.758,195.645,459.484,21.710,111.930,21.710,326.645,319.772,344.366,19.880,25.107,19.880 +9560,300.416,184.830,463.399,358.196,515.888,193.208,465.912,16.699,110.256,16.699,327.289,319.385,344.782,19.444,25.196,19.444 +9561,300.448,182.519,471.404,360.458,507.476,191.247,473.149,11.310,108.778,11.310,327.514,318.797,345.315,18.631,25.411,18.631 +9562,300.480,180.978,479.716,362.150,498.204,190.020,480.643,5.856,107.447,5.856,327.870,318.607,346.048,18.875,25.485,18.875 +9563,300.511,180.001,488.394,362.629,488.103,189.305,488.360,179.794,105.819,179.794,328.041,318.255,346.648,18.162,25.095,18.162 +9564,300.542,180.215,498.794,361.350,477.450,189.056,497.733,173.157,104.349,173.157,329.159,317.474,346.967,19.182,23.386,19.182 +9565,300.573,181.776,509.227,359.869,466.585,190.514,507.124,166.472,102.965,166.472,330.303,316.898,348.278,19.986,23.676,19.986 +9566,300.603,184.238,519.836,356.134,455.232,192.659,516.710,159.634,101.560,159.634,331.339,316.181,349.303,20.412,22.355,20.412 +9567,300.634,187.855,530.597,351.202,444.257,196.374,526.153,152.447,100.620,152.447,331.082,315.440,350.300,20.738,21.992,20.738 +9568,300.667,192.658,540.947,345.124,433.600,201.307,534.934,145.191,99.090,145.191,330.787,314.441,351.855,19.275,22.316,19.275 +9569,300.700,197.842,552.922,337.137,424.449,207.451,544.143,137.586,97.970,137.586,326.925,311.661,352.955,19.578,22.540,19.578 +9570,300.730,205.091,564.159,327.387,415.457,215.051,552.194,129.774,96.710,129.774,322.784,310.564,353.921,19.468,22.025,19.468 +9571,300.761,205.091,564.159,327.387,415.457,215.051,552.194,129.774,96.710,129.774,322.784,310.564,353.921,19.468,22.025,19.468 +9572,300.790,216.240,574.551,314.790,421.193,221.808,565.335,121.139,95.464,121.139,321.378,282.389,342.913,20.132,20.844,20.132 +9573,300.822,227.235,585.445,302.283,415.024,232.924,571.997,112.932,94.921,112.932,313.979,281.541,343.183,19.907,19.742,19.907 +9574,300.853,239.078,602.271,288.648,409.395,245.491,576.737,104.098,93.247,104.098,292.975,284.075,345.628,19.911,18.587,19.911 +9575,300.884,251.096,647.382,275.144,393.895,257.360,572.636,94.790,91.790,94.790,209.189,308.381,359.204,22.591,17.960,22.591 +9576,300.916,275.303,597.182,260.287,408.481,274.667,580.740,87.785,90.644,87.785,312.463,281.162,345.372,22.486,18.493,22.486 +9577,300.948,286.766,581.205,246.204,396.602,284.919,572.732,77.699,88.995,77.699,343.324,307.058,360.669,22.685,19.155,22.685 +9578,300.979,302.515,575.921,232.825,400.092,299.551,568.157,69.102,88.034,69.102,344.998,308.333,361.621,21.300,19.469,21.300 +9579,301.009,315.960,567.945,219.804,406.646,312.315,561.639,59.967,86.892,59.967,346.402,307.687,360.969,22.117,19.546,22.117 +9580,301.041,327.533,558.473,207.457,415.428,323.656,553.661,51.142,85.677,51.142,348.730,307.710,361.090,24.180,18.569,24.180 +9581,301.070,337.481,548.066,197.449,424.958,333.087,544.038,42.510,84.644,42.510,348.981,307.838,360.903,24.879,18.139,24.879 +9582,301.101,345.763,537.372,189.096,435.930,340.605,533.910,33.866,83.256,33.866,348.382,307.993,360.808,25.261,19.311,25.261 +9583,301.133,351.399,525.179,183.528,447.364,346.829,522.960,25.907,82.444,25.907,349.677,308.006,359.838,25.366,19.523,25.366 +9584,301.164,354.750,516.262,178.902,459.276,349.788,514.636,18.149,80.925,18.149,348.812,308.911,359.256,19.865,21.128,19.865 +9585,301.195,354.750,516.262,178.902,459.276,349.788,514.636,18.149,80.925,18.149,348.812,308.911,359.256,19.865,21.128,19.865 +9586,301.223,357.768,504.738,176.155,471.217,352.549,503.759,10.620,80.289,10.620,348.121,309.232,358.741,19.719,19.640,19.719 +9587,301.254,358.345,493.603,174.073,482.784,353.072,493.288,3.417,78.615,3.417,348.052,309.862,358.615,19.220,19.446,19.220 +9588,301.286,357.953,482.678,174.075,494.037,352.650,482.982,176.723,77.429,176.723,347.206,310.536,357.830,19.281,19.432,19.281 +9589,301.316,356.242,472.037,174.988,504.756,351.094,472.945,170.005,76.011,170.005,347.453,310.928,357.908,21.436,19.747,21.436 +9590,301.349,353.289,463.272,177.159,514.772,348.645,464.615,163.872,74.694,163.872,347.673,311.705,357.341,20.706,19.453,20.706 +9591,301.380,350.052,455.160,180.172,523.909,345.591,456.967,157.944,73.453,157.944,347.276,312.354,356.901,20.741,19.193,20.741 +9592,301.413,346.474,447.992,183.570,532.157,341.950,450.352,152.447,72.255,152.447,346.308,313.119,356.514,20.469,19.810,20.469 +9593,301.445,342.018,441.671,187.826,539.561,338.141,444.138,147.529,70.761,147.529,346.898,314.023,356.089,19.558,19.681,19.558 +9594,301.476,337.587,436.134,192.124,546.387,333.797,439.004,142.869,69.334,142.869,346.033,314.716,355.541,19.806,19.657,19.806 +9595,301.507,332.483,430.815,197.043,552.276,329.167,433.800,138.013,67.574,138.013,346.003,315.476,354.927,19.697,20.234,19.697 +9596,301.537,328.076,426.607,202.292,557.930,324.751,430.050,134.004,66.205,134.004,344.543,317.100,354.114,19.667,20.072,19.667 +9597,301.568,323.074,422.311,207.064,562.469,319.939,426.073,129.806,64.654,129.806,344.291,317.688,354.085,19.718,20.168,19.718 +9598,301.600,318.345,419.162,211.945,565.997,315.597,422.952,125.942,63.083,125.942,343.943,317.516,353.304,19.977,20.508,19.977 +9599,301.631,313.835,416.611,216.627,569.053,311.466,420.303,122.681,61.152,122.681,344.046,317.715,352.821,19.248,21.029,19.248 +9600,301.661,313.835,416.611,216.627,569.053,311.466,420.303,122.681,61.152,122.681,344.046,317.715,352.821,19.248,21.029,19.248 +9601,301.690,309.232,413.953,221.292,572.030,306.912,418.105,119.197,59.315,119.197,342.759,317.637,352.270,18.999,20.677,18.999 +9602,301.720,304.949,411.764,225.949,574.713,302.751,416.259,116.053,57.440,116.053,342.165,318.516,352.171,18.986,20.634,18.986 +9603,301.752,300.405,410.755,230.693,576.655,298.747,414.646,113.088,55.587,113.088,342.980,318.699,351.440,18.732,20.475,18.732 +9604,301.784,296.577,409.239,234.727,578.460,295.035,413.425,110.215,53.366,110.215,342.496,319.215,351.417,18.961,20.987,18.961 +9605,301.818,293.180,408.438,237.715,580.925,291.598,413.380,107.745,51.203,107.745,341.615,319.376,351.994,18.820,24.008,18.820 +9606,301.851,289.540,407.198,241.608,582.341,288.075,412.608,105.154,49.014,105.154,340.745,319.496,351.955,18.963,24.552,18.963 +9607,301.884,285.939,406.588,245.597,583.374,284.736,411.948,102.653,47.121,102.653,340.684,319.917,351.671,19.056,24.444,19.056 +9608,301.916,282.180,405.813,249.597,583.896,281.202,411.251,100.192,44.661,100.192,339.977,320.343,351.026,18.866,23.631,18.866 +9609,301.948,278.897,405.067,253.343,584.508,278.105,410.745,97.938,41.987,97.938,339.571,320.211,351.036,19.047,23.934,19.047 +9610,301.978,275.922,404.971,256.924,584.874,275.324,410.714,95.952,39.369,95.952,338.709,320.409,350.258,18.092,24.163,18.092 +9611,302.009,272.866,404.753,260.512,584.983,272.480,410.439,93.888,36.585,93.888,338.510,320.799,349.908,17.871,24.627,17.871 +9612,302.040,269.867,404.833,263.885,584.923,269.687,410.388,91.863,33.690,91.863,338.146,321.449,349.263,17.990,24.962,17.990 +9613,302.070,266.770,404.515,267.353,584.905,266.802,410.446,89.694,30.677,89.694,337.054,321.238,348.918,17.727,25.568,17.727 +9614,302.101,264.189,404.645,270.389,584.258,264.416,410.601,87.814,27.667,87.814,335.595,322.106,347.516,18.315,25.805,18.315 +9615,302.134,261.195,404.203,274.338,583.859,261.640,410.360,85.865,24.249,85.865,335.582,321.772,347.928,18.458,25.702,18.458 +9616,302.165,258.279,404.456,278.022,583.597,258.977,410.910,83.830,20.630,83.830,334.484,320.466,347.466,18.514,25.588,18.514 +9617,302.196,258.279,404.456,278.022,583.597,258.977,410.910,83.830,20.630,83.830,334.484,320.466,347.466,18.514,25.588,18.514 +9618,302.229,252.612,404.616,284.937,582.706,253.929,411.860,79.695,13.684,79.695,332.548,319.915,347.274,19.230,26.225,19.230 +9619,302.273,249.417,405.177,288.416,582.040,251.014,412.453,77.619,9.605,77.619,332.427,320.080,347.325,18.939,25.393,18.939 +9620,302.306,246.787,405.463,291.760,580.888,248.767,413.103,75.466,5.746,75.466,330.625,319.306,346.410,20.220,25.056,20.220 +9621,302.338,243.845,406.347,295.478,579.805,246.099,413.843,73.261,1.591,73.261,330.648,319.321,346.302,20.701,24.629,20.701 +9622,302.370,240.491,407.195,299.029,578.619,243.162,414.912,70.907,177.349,70.907,329.618,318.862,345.950,20.862,24.733,20.862 +9623,302.406,237.449,407.798,302.637,577.160,240.559,415.792,68.735,173.290,68.735,328.637,319.736,345.792,21.968,25.355,21.968 +9624,302.437,234.084,409.292,306.285,575.461,237.609,417.246,66.101,168.970,66.101,327.547,319.629,344.946,22.386,25.270,22.386 +9625,302.468,230.340,410.333,310.304,573.281,234.449,418.482,63.243,164.745,63.243,326.494,319.688,344.748,22.428,25.435,22.428 +9626,302.501,226.858,412.211,314.142,571.266,231.365,420.184,60.524,160.017,60.524,326.196,319.615,344.515,23.013,25.204,23.013 +9627,302.534,223.243,414.430,318.540,568.676,228.323,422.389,57.450,155.336,57.450,324.812,319.878,343.696,23.153,25.288,23.153 +9628,302.566,219.000,417.062,322.827,565.580,224.471,424.670,54.280,150.593,54.280,324.907,319.871,343.649,22.824,24.978,22.824 +9629,302.598,215.299,419.537,327.093,562.152,221.261,426.869,50.882,146.063,50.882,324.562,320.077,343.462,23.915,25.138,23.915 +9630,302.628,211.563,423.140,331.361,558.449,217.960,430.085,47.353,141.189,47.353,323.601,320.155,342.487,24.408,25.070,24.408 +9631,302.658,211.563,423.140,331.361,558.449,217.960,430.085,47.353,141.189,47.353,323.601,320.155,342.487,24.408,25.070,24.408 +9632,302.686,207.086,426.837,335.795,553.832,213.878,433.315,43.643,136.332,43.643,324.032,319.789,342.804,24.169,24.791,24.169 +9633,302.718,203.456,430.948,340.135,549.241,210.641,436.927,39.769,131.269,39.769,324.063,320.407,342.759,25.608,24.880,25.608 +9634,302.751,198.717,436.105,344.441,543.691,206.317,441.407,34.902,126.304,34.902,325.076,320.248,343.608,25.634,24.818,25.634 +9635,302.785,194.691,441.758,348.209,538.038,202.697,446.445,30.343,121.264,30.343,325.146,321.553,343.700,25.490,25.003,25.490 +9636,302.819,191.583,447.209,352.249,530.632,199.648,451.146,26.019,116.114,26.019,326.055,320.223,344.005,25.954,24.948,25.954 +9637,302.851,186.857,457.255,355.775,522.724,195.132,460.412,20.886,110.807,20.886,326.892,319.864,344.605,19.264,24.996,19.264 +9638,302.884,184.138,465.492,358.794,514.162,192.610,467.803,15.255,105.642,15.255,327.493,319.357,345.054,19.295,25.037,19.295 +9639,302.918,182.149,474.108,360.897,504.889,190.603,475.517,9.462,100.460,9.462,328.469,319.130,345.612,18.577,24.933,18.577 +9640,302.950,181.048,483.601,362.118,494.557,189.518,484.050,3.036,95.274,3.036,328.864,318.140,345.828,19.034,24.664,19.034 +9641,302.981,180.922,493.118,362.000,483.500,188.910,492.665,176.760,90.000,176.760,330.659,317.000,346.662,18.348,24.000,18.348 +9642,303.013,181.948,504.002,361.097,472.655,189.603,502.631,169.846,84.523,169.846,332.632,317.134,348.185,19.790,24.586,19.790 +9643,303.044,184.606,514.500,358.784,462.540,191.560,512.301,162.454,79.563,162.454,334.306,314.757,348.891,20.121,24.431,20.121 +9644,303.074,188.512,525.110,354.632,450.962,194.741,522.235,155.225,74.055,155.225,336.364,313.732,350.084,20.185,24.313,20.185 +9645,303.105,193.839,535.337,351.302,445.383,198.925,532.145,147.894,68.772,147.894,338.361,299.898,350.371,19.599,24.767,19.599 +9646,303.135,200.598,545.418,345.887,438.057,204.584,542.097,140.194,63.291,140.194,339.938,290.688,350.314,19.846,25.366,19.846 +9647,303.166,209.221,554.543,339.944,431.418,211.846,551.614,131.878,58.319,131.878,342.143,280.263,350.010,19.898,24.946,19.898 +9648,303.199,219.379,562.733,332.847,425.494,220.719,560.691,123.275,53.243,123.275,344.217,270.202,349.102,19.569,24.753,19.569 +9649,303.232,230.963,569.171,319.249,414.817,231.809,567.326,114.624,47.657,114.624,346.089,276.131,350.146,19.545,25.935,19.545 +9650,303.262,243.237,574.708,308.495,409.859,243.561,573.559,105.739,42.979,105.739,347.964,269.963,350.352,19.075,24.692,19.075 +9651,303.292,243.237,574.708,308.495,409.859,243.561,573.559,105.739,42.979,105.739,347.964,269.963,350.352,19.075,24.692,19.075 +9652,303.320,258.074,578.223,280.102,393.536,258.800,572.625,97.393,38.047,97.393,349.391,308.086,360.681,22.937,24.207,22.937 +9653,303.353,271.601,578.945,264.613,394.787,271.471,573.941,88.509,33.015,88.509,348.533,306.076,358.544,22.097,19.934,22.097 +9654,303.384,286.159,577.350,248.908,395.992,285.248,572.474,79.422,27.834,79.422,350.388,307.299,360.309,22.911,19.780,22.911 +9655,303.418,299.513,573.625,234.059,400.089,297.776,568.861,69.967,22.751,69.967,350.632,307.537,360.774,20.316,19.931,20.316 +9656,303.452,313.859,566.361,219.721,407.194,311.637,562.410,60.642,17.354,60.642,351.626,307.760,360.691,22.824,18.075,22.824 +9657,303.484,325.546,558.123,207.451,415.233,322.631,554.429,51.719,11.936,51.719,351.833,308.142,361.245,23.307,18.088,23.307 +9658,303.517,336.164,547.994,197.122,424.902,332.626,544.698,42.975,6.340,42.975,351.937,308.546,361.608,24.887,17.890,24.887 +9659,303.550,343.979,536.985,188.500,436.000,340.117,534.330,34.509,0.000,34.509,351.917,307.000,361.291,25.030,18.000,25.030 +9660,303.582,349.700,525.100,181.808,446.409,345.705,523.102,26.565,174.746,26.565,352.852,309.178,361.785,25.491,21.221,25.491 +9661,303.615,352.917,516.852,177.411,459.318,348.792,515.443,18.858,167.255,18.858,351.926,309.781,360.644,19.908,19.565,19.908 +9662,303.645,355.938,506.455,173.904,469.767,350.860,505.408,11.659,161.030,11.659,350.644,310.510,361.014,19.043,20.539,19.043 +9663,303.675,357.204,495.623,172.590,481.698,352.308,495.202,4.912,152.904,4.912,350.598,311.628,360.428,19.047,20.000,19.047 +9664,303.706,356.449,485.919,172.378,492.046,352.226,486.022,178.599,145.305,178.599,351.433,312.370,359.882,18.502,20.112,18.502 +9665,303.736,355.123,476.629,172.684,501.407,350.969,477.174,172.521,137.779,172.521,351.467,313.531,359.846,19.439,18.802,19.439 +9666,303.767,352.712,468.135,174.285,510.327,349.211,468.955,166.823,128.830,166.823,352.310,314.075,359.502,21.027,19.399,21.027 +9667,303.801,351.061,460.649,176.434,518.548,346.956,462.000,161.778,120.393,161.778,350.663,315.362,359.307,20.283,19.134,20.283 +9668,303.833,347.874,454.355,179.152,525.870,344.269,455.889,156.944,112.004,156.944,350.834,315.691,358.669,20.653,19.083,20.653 +9669,303.865,345.121,448.313,182.206,532.664,341.151,450.383,152.464,103.092,152.464,349.004,316.009,357.958,21.205,19.050,21.205 +9670,303.896,345.121,448.313,182.206,532.664,341.151,450.383,152.464,103.092,152.464,349.004,316.009,357.958,21.205,19.050,21.205 +9671,303.924,342.346,443.117,185.674,538.476,338.345,445.568,148.508,94.160,148.508,348.052,316.201,357.436,19.996,18.642,19.996 +9672,303.954,338.892,438.706,189.696,543.718,335.504,441.081,144.972,84.958,144.972,348.342,315.685,356.618,19.492,18.721,19.492 +9673,303.987,336.004,435.103,192.588,547.853,332.586,437.797,141.746,75.964,141.746,347.451,315.781,356.156,19.617,19.645,19.617 +9674,304.019,333.132,430.883,196.897,551.545,329.661,433.946,138.576,66.306,138.576,345.455,315.852,354.714,19.143,20.455,19.143 +9675,304.049,330.369,427.837,199.983,554.550,326.915,431.197,135.792,57.361,135.792,344.357,315.381,353.994,19.387,20.902,19.387 +9676,304.082,327.446,424.978,201.385,558.187,323.422,429.251,133.279,47.447,133.279,343.323,313.959,355.062,18.965,24.394,18.965 +9677,304.113,325.245,422.779,204.134,559.933,321.441,427.159,130.972,38.313,130.972,342.725,314.987,354.330,19.869,24.314,19.869 +9678,304.145,322.354,420.183,206.942,561.936,318.651,424.812,128.660,29.358,128.660,341.864,313.713,353.720,19.522,25.330,19.522 +9679,304.176,321.033,418.295,209.418,563.134,317.221,423.333,127.117,19.618,127.117,340.428,313.530,353.063,19.677,25.451,19.677 +9680,304.207,319.588,416.201,211.347,564.442,315.391,422.089,125.487,9.197,125.487,338.159,313.179,352.620,19.783,23.513,19.783 +9681,304.238,317.983,413.859,212.500,566.000,313.171,420.962,124.114,0.000,124.114,335.921,313.000,353.081,18.935,22.000,18.935 +9682,304.267,317.083,411.482,214.069,566.488,311.637,419.953,122.735,170.272,122.735,331.905,314.019,352.046,19.047,21.318,19.047 +9683,304.299,317.394,409.317,214.732,567.242,310.850,419.739,122.125,160.560,122.125,327.451,315.070,352.062,18.966,20.357,18.966 +9684,304.331,318.250,405.250,215.105,567.803,309.837,419.272,120.964,150.444,120.964,319.502,315.906,352.207,19.894,20.044,19.894 +9685,304.361,318.250,405.250,215.105,567.803,309.837,419.272,120.964,150.444,120.964,319.502,315.906,352.207,19.894,20.044,19.894 +9686,304.389,320.515,398.101,216.023,569.027,308.280,418.571,120.867,140.567,120.867,305.261,317.038,352.957,17.365,19.299,17.365 +9687,304.421,330.292,379.554,216.396,570.128,307.307,418.628,120.466,130.544,120.466,262.687,318.344,353.353,17.188,19.721,17.188 +9688,304.452,347.358,349.537,216.735,571.019,306.873,418.599,120.379,120.426,120.379,194.048,319.018,354.154,17.046,19.189,17.046 +9689,304.483,310.792,412.538,217.987,571.860,307.209,418.896,119.404,110.016,119.404,339.528,319.960,354.126,17.656,21.020,17.656 +9690,304.516,309.435,415.055,218.466,572.192,307.269,418.898,119.404,101.219,119.404,345.468,320.646,354.291,18.310,20.120,18.310 +9691,304.549,309.677,414.815,217.986,572.479,307.141,419.253,119.745,91.179,119.745,344.320,319.262,354.542,18.605,18.424,18.605 +9692,304.580,310.143,415.129,217.566,571.914,307.757,419.233,120.178,81.341,120.178,345.159,319.926,354.652,19.060,19.842,19.060 +9693,304.611,311.074,415.544,218.087,571.603,308.658,419.570,120.964,70.866,120.964,344.541,320.677,353.931,18.865,20.052,18.865 +9694,304.641,312.590,415.883,217.216,569.786,310.157,419.803,121.827,61.294,121.827,343.665,317.801,352.891,19.044,20.674,19.044 +9695,304.672,314.697,416.325,215.958,567.909,312.078,420.345,123.085,50.906,123.085,342.623,316.849,352.218,19.068,20.324,19.068 +9696,304.703,316.577,416.713,212.799,567.583,313.204,421.678,124.192,41.055,124.192,342.217,315.620,354.222,19.460,24.447,19.460 +9697,304.733,318.361,417.401,211.210,565.458,314.893,422.288,125.362,30.651,125.362,341.540,314.675,353.524,19.940,24.789,19.940 +9698,304.764,320.460,418.220,208.777,562.815,316.804,423.094,126.870,22.036,126.870,341.000,314.389,353.185,19.800,25.469,19.800 +9699,304.794,320.460,418.220,208.777,562.815,316.804,423.094,126.870,22.036,126.870,341.000,314.389,353.185,19.800,25.469,19.800 +9700,304.823,324.167,419.071,206.129,561.381,319.239,425.143,129.063,11.165,129.063,338.479,313.001,354.122,19.524,23.597,19.524 +9701,304.854,327.750,420.209,203.071,557.827,321.898,426.913,131.117,1.287,131.117,335.740,312.281,353.535,19.983,20.703,19.983 +9702,304.885,332.179,420.470,199.941,555.109,324.101,429.035,133.322,171.469,133.322,330.264,313.246,353.811,19.785,20.075,19.785 +9703,304.917,339.000,419.000,196.685,552.365,326.580,431.420,135.000,162.820,135.000,319.612,313.563,354.741,21.213,19.823,21.213 +9704,304.949,353.524,411.090,193.324,549.516,328.318,433.495,138.366,154.666,138.366,288.500,314.073,355.950,17.772,20.447,17.772 +9705,304.980,391.066,387.696,190.640,546.684,331.101,436.418,140.906,146.853,140.906,202.566,314.831,357.092,17.754,19.582,17.754 +9706,305.011,343.281,433.365,187.576,542.774,334.046,440.247,143.307,139.811,143.307,334.385,315.103,357.420,18.909,18.976,18.909 +9707,305.042,340.830,441.215,184.802,538.750,336.729,443.902,146.768,133.073,146.768,348.314,315.714,358.120,19.094,20.661,19.094 +9708,305.072,343.692,446.462,182.558,534.463,339.926,448.614,150.255,125.707,150.255,349.778,316.077,358.454,20.342,21.036,20.342 +9709,305.103,345.743,450.891,179.820,528.653,342.287,452.573,154.047,117.031,154.047,351.067,315.348,358.755,21.190,19.179,21.190 +9710,305.134,349.228,456.531,177.633,521.882,345.265,458.086,158.583,108.635,158.583,350.192,314.981,358.705,20.882,19.282,20.882 +9711,305.166,352.910,463.004,175.885,514.155,348.321,464.360,163.540,99.956,163.540,349.388,314.322,358.958,20.357,18.897,20.357 +9712,305.198,355.156,470.787,174.767,506.007,350.623,471.698,168.637,91.390,168.637,349.093,312.272,358.339,20.190,19.053,20.190 +9713,305.228,355.156,470.787,174.767,506.007,350.623,471.698,168.637,91.390,168.637,349.093,312.272,358.339,20.190,19.053,20.190 +9714,305.256,357.459,479.095,174.293,496.105,352.453,479.599,174.251,83.157,174.251,347.772,311.565,357.835,19.499,18.507,19.499 +9715,305.287,358.494,488.539,174.332,486.133,353.177,488.509,0.317,74.590,0.317,347.078,310.040,357.712,18.165,18.502,18.165 +9716,305.318,358.502,498.005,175.492,475.339,353.494,497.452,6.309,66.109,6.309,348.630,308.867,358.707,19.210,19.023,19.210 +9717,305.351,357.007,508.765,186.834,479.283,357.778,508.944,13.103,56.976,13.103,348.016,274.968,346.434,19.706,21.548,19.706 +9718,305.383,354.948,519.206,189.696,464.515,354.876,519.180,19.779,47.342,19.779,347.713,277.648,347.866,19.761,21.243,19.761 +9719,305.416,356.225,532.006,192.878,450.402,349.704,528.458,28.548,38.660,28.548,335.273,283.924,350.121,25.074,20.146,25.074 +9720,305.447,354.061,547.472,199.008,437.403,342.425,539.553,34.237,29.173,34.237,323.922,287.506,352.073,18.716,19.710,18.716 +9721,305.478,337.589,547.694,197.730,424.141,333.217,543.734,42.166,20.113,42.166,349.611,306.292,361.408,25.215,17.511,25.215 +9722,305.509,326.550,556.890,207.082,416.146,323.955,553.701,50.856,11.023,50.856,352.700,306.536,360.922,23.141,16.929,23.141 +9723,305.540,315.808,564.838,218.024,408.767,313.781,561.436,59.216,1.860,59.216,352.414,306.520,360.334,22.867,17.108,22.867 +9724,305.570,303.897,571.463,230.685,402.477,302.332,567.703,67.413,172.875,67.413,351.997,308.350,360.143,21.509,17.241,21.509 +9725,305.603,289.658,576.659,244.151,397.528,288.428,572.037,75.096,164.055,75.096,350.486,309.885,360.052,22.546,18.132,22.546 +9726,305.634,275.616,579.661,258.320,394.675,274.983,574.206,83.377,154.622,83.377,349.528,311.453,360.510,23.379,17.595,23.379 +9727,305.666,261.481,579.417,272.762,394.117,261.676,573.519,91.890,145.713,91.890,347.537,312.915,359.340,24.218,16.525,24.218 +9728,305.698,248.442,577.788,287.755,395.848,249.702,571.489,101.310,137.045,101.310,346.537,312.847,359.385,21.573,18.222,21.573 +9729,305.727,248.442,577.788,287.755,395.848,249.702,571.489,101.310,137.045,101.310,346.537,312.847,359.385,21.573,18.222,21.573 +9730,305.756,235.541,574.328,299.903,398.033,238.485,566.465,110.531,127.141,110.531,341.756,313.836,358.548,19.412,20.675,19.412 +9731,305.788,190.025,628.060,311.674,403.923,227.425,561.069,119.174,120.530,119.174,203.111,311.925,356.558,18.154,17.779,18.154 +9732,305.821,199.996,578.312,322.810,411.724,218.054,554.646,127.345,111.801,127.345,294.801,311.968,354.339,20.018,19.869,20.018 +9733,305.852,198.150,557.703,333.588,421.147,209.607,546.433,135.471,104.036,135.471,320.349,310.446,352.490,19.996,22.071,19.996 +9734,305.884,194.727,543.673,342.592,430.981,202.795,537.683,143.409,92.603,143.409,331.602,310.952,351.699,20.851,22.431,20.851 +9735,305.918,190.952,532.319,350.015,442.365,197.421,528.728,150.969,82.405,150.969,335.869,311.840,350.666,22.541,23.723,22.541 +9736,305.950,186.938,520.619,356.023,453.576,193.326,518.080,158.323,73.009,158.323,336.286,313.577,350.034,20.825,24.839,20.825 +9737,305.982,185.299,510.242,359.808,463.851,191.109,508.698,165.118,63.138,165.118,337.091,317.100,349.116,20.235,25.257,20.235 +9738,306.012,183.870,500.083,362.553,475.227,189.864,499.232,171.922,53.715,171.922,336.588,319.392,348.697,19.239,24.213,19.239 +9739,306.043,182.464,489.704,363.131,485.867,189.538,489.564,178.866,44.569,178.866,333.113,322.495,347.263,18.016,22.191,18.016 +9740,306.073,182.530,481.128,363.450,496.492,190.562,481.774,4.597,35.838,4.597,330.907,323.056,347.023,18.904,21.798,18.904 +9741,306.104,181.582,472.365,362.920,505.393,191.853,474.272,10.516,25.568,10.516,326.854,323.710,347.747,18.722,23.419,18.722 +9742,306.135,117.480,445.123,361.388,513.358,193.868,467.300,16.189,17.411,16.189,188.352,324.279,347.436,17.503,19.416,17.503 +9743,306.166,171.761,451.448,358.542,521.204,196.222,460.732,20.783,8.065,20.783,294.104,324.419,346.431,18.839,20.183,18.839 +9744,306.197,186.783,444.894,355.489,527.857,200.399,451.536,26.003,179.454,26.003,315.402,323.100,345.701,25.955,20.409,25.955 +9745,306.227,186.783,444.894,355.489,527.857,200.399,451.536,26.003,179.454,26.003,315.402,323.100,345.701,25.955,20.409,25.955 +9746,306.259,192.822,440.452,351.472,534.820,203.143,446.515,30.434,171.027,30.434,321.303,323.518,345.243,25.403,22.147,25.403 +9747,306.290,197.269,437.346,347.404,541.205,205.764,443.009,33.690,161.940,33.690,324.222,322.566,344.641,25.239,23.996,25.239 +9748,306.320,200.629,433.651,343.378,546.734,208.590,439.676,37.117,152.784,37.117,324.200,322.024,344.168,25.409,25.180,25.409 +9749,306.352,205.443,428.453,339.051,551.186,212.518,434.825,42.011,144.162,42.011,324.742,321.434,343.785,25.569,24.951,25.569 +9750,306.384,208.750,425.250,334.343,555.353,215.174,431.674,45.000,135.830,45.000,325.269,321.095,343.439,24.749,24.592,24.749 +9751,306.417,212.238,423.011,330.350,559.387,218.295,429.675,47.726,127.042,47.726,324.699,321.399,342.710,24.283,24.578,24.283 +9752,306.449,215.040,420.104,326.156,562.853,220.782,427.123,50.711,118.301,50.711,325.414,321.711,343.552,23.289,23.299,23.289 +9753,306.480,218.254,417.973,321.858,566.766,223.830,425.489,53.427,109.983,53.427,325.022,323.631,343.739,22.772,22.128,22.772 +9754,306.510,220.890,415.378,318.212,568.942,226.417,423.576,56.014,101.310,56.014,323.918,323.003,343.693,22.537,20.396,22.537 +9755,306.541,223.359,412.666,315.029,571.449,229.230,422.102,58.109,93.013,58.109,322.038,323.605,344.264,22.887,18.711,22.887 +9756,306.571,224.691,409.044,312.840,573.588,231.487,420.977,60.337,85.668,60.337,318.278,324.192,345.744,23.139,18.356,23.139 +9757,306.603,225.130,404.509,310.942,575.212,233.583,420.421,62.021,78.690,62.021,309.946,324.768,345.982,22.878,18.239,22.878 +9758,306.634,220.882,396.535,309.330,576.212,233.127,420.617,63.048,72.474,63.048,292.435,324.519,346.467,17.828,18.269,17.828 +9759,306.666,196.622,341.462,308.181,576.709,234.212,419.776,64.359,66.866,64.359,173.237,324.987,346.975,17.598,18.495,17.598 +9760,306.696,225.266,395.275,306.887,577.511,236.624,418.909,64.332,61.148,64.332,294.328,324.811,346.772,19.650,18.988,19.650 +9761,306.726,225.266,395.275,306.887,577.511,236.624,418.909,64.332,61.148,64.332,294.328,324.811,346.772,19.650,18.988,19.650 +9762,306.754,232.903,409.427,305.746,578.008,237.063,418.456,65.260,56.027,65.260,327.422,325.343,347.304,20.604,20.604,20.604 +9763,306.788,236.278,411.071,306.022,577.547,238.988,417.494,67.119,49.044,67.119,333.103,324.488,347.046,21.351,20.633,21.351 +9764,306.821,237.815,410.880,304.323,577.991,240.295,417.039,68.070,42.226,68.070,333.157,323.898,346.437,21.842,20.771,21.842 +9765,306.853,239.150,410.979,302.581,577.956,241.163,416.219,68.986,34.992,68.986,334.782,324.825,346.009,21.732,22.693,21.732 +9766,306.885,240.025,410.100,301.069,577.875,241.942,415.287,69.711,26.816,69.711,334.946,324.688,346.006,21.294,24.410,21.294 +9767,306.919,240.057,408.728,300.350,578.911,242.481,415.525,70.372,17.802,70.372,332.231,321.991,346.662,20.089,25.070,20.089 +9768,306.951,240.869,408.070,299.006,578.966,243.261,415.066,71.123,9.382,71.123,331.455,320.919,346.241,20.035,25.052,20.035 +9769,306.984,241.456,406.673,297.500,579.000,244.056,414.564,71.764,0.000,71.764,329.188,319.000,345.803,20.330,24.000,20.330 +9770,307.017,242.194,405.598,296.518,579.110,244.880,414.017,72.306,170.889,72.306,328.282,319.577,345.956,20.930,25.290,20.930 +9771,307.048,242.670,405.323,295.367,579.097,245.286,413.704,72.665,161.732,72.665,328.044,319.389,345.605,20.797,24.902,20.797 +9772,307.080,243.009,404.883,294.388,579.231,245.692,413.616,72.922,152.021,72.922,326.954,319.164,345.226,20.563,24.175,20.563 +9773,307.110,243.360,404.436,293.367,579.316,246.072,413.388,73.142,143.032,73.142,326.316,319.811,345.024,20.794,24.244,20.794 +9774,307.141,243.208,404.032,292.712,579.702,246.020,413.349,73.202,133.603,73.202,326.033,319.966,345.498,20.429,23.241,20.429 +9775,307.172,243.140,403.212,292.043,580.016,246.211,413.504,73.386,124.046,73.386,323.850,321.157,345.330,20.579,22.170,20.579 +9776,307.204,242.764,402.173,291.311,580.260,246.162,413.529,73.342,113.671,73.342,321.643,321.683,345.351,20.586,20.877,20.586 +9777,307.234,241.931,400.771,291.531,581.641,245.991,414.303,73.301,103.720,73.301,318.477,324.015,346.734,19.923,20.771,19.923 +9778,307.265,241.059,398.109,290.703,583.017,246.122,414.705,73.034,94.671,73.034,313.287,326.263,347.990,20.637,22.171,20.637 +9779,307.295,237.616,390.374,294.246,582.019,245.284,414.992,72.699,85.704,72.699,296.492,323.717,348.061,19.737,20.169,19.737 +9780,307.326,237.616,390.374,294.246,582.019,245.284,414.992,72.699,85.704,72.699,296.492,323.717,348.061,19.737,20.169,19.737 +9781,307.354,219.912,340.054,294.990,582.521,243.880,415.955,72.474,76.479,72.474,189.261,325.478,348.452,17.666,18.700,17.666 +9782,307.385,239.072,400.339,295.917,581.673,244.317,415.522,70.942,66.659,70.942,315.659,324.452,347.786,19.815,19.590,19.815 +9783,307.418,241.548,408.001,297.392,581.258,244.139,415.640,71.267,58.355,71.267,331.763,324.352,347.895,20.966,20.847,20.966 +9784,307.450,240.887,408.920,300.677,579.140,243.186,415.448,70.602,48.597,70.602,333.148,323.975,346.989,21.123,21.446,21.123 +9785,307.482,240.238,410.013,301.241,578.917,242.324,415.701,69.864,39.903,69.864,334.928,323.665,347.046,21.219,21.162,21.219 +9786,307.512,239.195,410.968,302.212,578.336,241.253,416.304,68.908,31.457,68.908,334.788,324.103,346.227,21.446,23.253,21.446 +9787,307.543,237.451,409.922,304.213,577.205,240.029,416.329,68.082,22.135,68.082,332.600,322.555,346.413,21.832,24.272,21.832 +9788,307.574,235.377,410.192,305.635,576.916,238.399,417.284,66.919,12.995,66.919,331.006,321.399,346.424,21.033,24.735,21.033 +9789,307.605,234.020,410.217,307.474,575.909,237.415,417.747,65.731,3.668,65.731,329.439,320.202,345.960,22.285,24.450,22.285 +9790,307.636,232.187,410.890,309.376,574.620,235.848,418.513,64.348,174.872,64.348,328.192,320.583,345.104,22.546,24.772,22.546 +9791,307.668,229.748,411.130,311.206,573.323,233.914,419.213,62.736,165.964,62.736,326.605,319.905,344.793,21.988,24.981,21.988 +9792,307.701,227.152,411.970,313.252,571.604,231.595,419.987,61.004,157.380,61.004,326.056,319.846,344.389,21.814,25.000,21.814 +9793,307.732,224.761,413.053,315.512,570.209,229.490,420.972,59.153,148.339,59.153,326.020,319.700,344.468,22.048,24.783,22.048 +9794,307.762,224.761,413.053,315.512,570.209,229.490,420.972,59.153,148.339,59.153,326.020,319.700,344.468,22.048,24.783,22.048 +9795,307.791,222.697,414.298,318.031,568.444,227.665,422.017,57.234,139.865,57.234,325.714,320.095,344.072,23.339,24.884,23.339 +9796,307.823,220.174,416.232,320.802,566.829,225.452,423.781,55.039,130.872,55.039,325.319,320.616,343.742,23.660,24.197,23.660 +9797,307.854,217.561,418.402,323.648,564.725,223.139,425.715,52.667,122.276,52.667,324.572,320.841,342.966,23.908,23.407,23.908 +9798,307.885,214.531,420.618,326.711,562.650,220.478,427.706,50.004,113.962,50.004,324.815,322.068,343.318,24.028,22.947,24.028 +9799,307.917,211.286,423.575,330.283,559.939,217.553,430.353,47.246,105.709,47.246,324.895,322.518,343.357,23.746,22.532,23.746 +9800,307.949,208.474,426.413,333.957,556.429,214.663,432.450,44.287,97.400,44.287,326.640,322.139,343.932,24.808,21.611,24.808 +9801,307.980,205.346,430.024,337.756,552.985,211.757,435.623,41.135,89.318,41.135,327.180,322.132,344.204,25.589,20.415,25.589 +9802,308.012,201.291,434.913,342.138,548.479,208.271,440.114,36.690,81.347,36.690,326.775,323.192,344.185,25.393,20.718,25.393 +9803,308.042,198.476,438.637,346.082,543.386,205.579,443.269,33.111,73.571,33.111,327.797,323.363,344.756,26.039,20.032,26.039 +9804,308.072,194.990,443.804,350.093,537.521,202.445,448.004,29.396,66.337,29.396,328.043,323.516,345.155,24.947,19.595,24.947 +9805,308.103,192.230,449.512,353.890,530.658,199.473,452.860,24.809,59.349,24.809,329.661,323.788,345.619,25.981,19.787,25.981 +9806,308.134,187.875,459.191,357.323,523.020,195.418,461.915,19.855,52.431,19.855,330.030,324.061,346.069,19.412,19.389,19.412 +9807,308.166,184.853,466.715,360.164,513.900,193.002,468.830,14.551,46.132,14.551,329.407,324.015,346.246,19.358,19.644,19.358 +9808,308.196,184.853,466.715,360.164,513.900,193.002,468.830,14.551,46.132,14.551,329.407,324.015,346.246,19.358,19.644,19.358 +9809,308.225,183.241,475.841,362.459,504.048,191.162,476.991,8.259,40.186,8.259,330.807,324.678,346.815,18.963,19.788,18.963 +9810,308.255,181.608,485.013,364.162,493.266,190.092,485.319,2.064,34.695,2.064,331.506,324.007,348.486,18.745,20.745,18.745 +9811,308.288,182.287,494.757,364.535,482.201,190.155,494.147,175.567,29.572,175.567,333.782,323.100,349.563,18.325,20.704,18.325 +9812,308.319,183.765,505.881,362.932,470.648,190.975,504.369,168.152,24.809,168.152,335.699,321.834,350.433,20.299,19.987,20.299 +9813,308.351,186.657,517.021,359.307,459.169,193.048,514.783,160.694,20.259,160.694,337.050,321.406,350.593,20.997,18.578,20.997 +9814,308.382,190.915,527.862,354.522,446.923,196.729,524.913,153.104,16.015,153.104,338.972,320.734,352.010,20.926,18.805,20.926 +9815,308.419,195.866,538.528,347.670,435.559,201.653,534.517,145.275,11.949,145.275,338.679,319.733,352.762,19.351,17.825,19.351 +9816,308.463,204.200,548.141,338.725,424.485,208.374,544.255,137.045,7.883,137.045,342.627,318.911,354.033,19.509,17.525,19.509 +9817,308.496,213.727,557.389,327.856,414.606,216.947,553.318,128.333,3.912,128.333,344.815,317.106,355.196,19.829,17.583,19.829 +9818,308.526,224.601,565.932,316.000,406.500,227.325,561.089,119.358,0.000,119.358,345.307,316.000,356.420,20.046,17.000,20.046 +9819,308.562,236.675,572.380,301.635,400.759,238.456,567.561,110.283,175.601,110.283,346.446,316.066,356.721,19.188,17.563,19.188 +9820,308.593,251.090,577.423,286.816,396.751,252.122,572.323,101.436,171.999,101.436,347.526,314.793,357.932,21.960,16.302,21.960 +9821,308.623,263.032,579.011,271.231,395.101,263.138,574.072,91.234,168.125,91.234,348.328,313.856,358.209,23.167,16.618,23.167 +9822,308.655,277.839,579.244,255.809,396.045,277.186,574.553,82.081,163.540,82.081,350.029,313.599,359.502,23.652,16.194,23.652 +9823,308.685,294.483,575.319,239.804,399.638,293.152,570.976,72.959,159.382,72.959,349.814,312.847,358.899,21.543,15.883,21.543 +9824,308.717,309.500,569.000,224.610,405.237,307.409,564.817,63.435,155.072,63.435,350.168,312.398,359.522,21.466,17.447,21.466 +9825,308.749,323.203,560.198,211.205,413.756,320.624,556.670,53.842,150.701,53.842,351.153,311.972,359.893,23.880,17.241,23.880 +9826,308.780,334.368,549.555,199.847,424.035,331.583,546.825,44.436,147.051,44.436,352.261,312.025,360.062,24.772,17.607,24.772 +9827,308.811,343.822,537.870,189.854,434.957,340.072,535.226,35.186,142.242,35.186,351.924,311.877,361.100,25.565,18.261,25.565 +9828,308.843,350.171,525.144,183.336,448.456,346.797,523.463,26.490,138.814,26.490,351.972,311.849,359.511,26.281,19.003,26.281 +9829,308.874,353.013,515.375,177.650,461.124,349.584,514.263,17.956,133.877,17.956,352.674,312.065,359.884,19.889,18.409,19.889 +9830,308.904,355.775,503.021,174.275,474.038,352.009,502.370,9.816,129.151,9.816,352.282,312.966,359.925,19.797,18.385,19.797 +9831,308.935,356.664,491.217,172.598,486.437,352.373,491.070,1.967,124.408,1.967,351.068,313.398,359.656,18.882,18.727,18.882 +9832,308.967,355.737,479.360,172.455,498.693,351.322,479.799,174.311,119.407,174.311,350.846,314.090,359.719,19.505,18.833,19.505 +9833,308.998,353.849,468.175,174.480,510.491,349.348,469.213,167.022,114.656,167.022,350.104,314.649,359.342,21.065,18.743,21.065 +9834,309.028,353.849,468.175,174.480,510.491,349.348,469.213,167.022,114.656,167.022,350.104,314.649,359.342,21.065,18.743,21.065 +9835,309.057,349.796,458.682,177.306,521.289,346.108,460.020,160.056,109.747,160.056,351.308,315.421,359.154,21.196,18.583,21.196 +9836,309.088,345.800,449.600,181.622,531.166,342.016,451.492,153.435,104.931,153.435,349.721,315.894,358.183,21.466,18.423,21.466 +9837,309.119,340.957,442.082,186.371,540.153,337.372,444.369,147.462,99.936,147.462,349.130,316.465,357.635,19.783,18.456,19.783 +9838,309.152,335.634,435.144,191.745,548.156,332.137,437.912,141.633,95.123,141.633,348.084,317.238,357.006,19.634,18.903,19.634 +9839,309.185,329.922,428.830,197.500,555.500,326.321,432.306,136.011,90.000,136.011,346.478,317.000,356.489,19.326,19.000,19.326 +9840,309.217,323.907,424.123,203.872,561.635,320.875,427.629,130.855,85.272,130.855,346.517,318.147,355.789,19.727,20.232,19.727 +9841,309.251,317.277,419.400,210.699,566.966,314.579,423.148,125.747,80.172,125.747,345.585,318.780,354.821,19.118,19.807,19.118 +9842,309.283,311.353,415.912,218.101,571.608,309.026,419.790,120.964,74.899,120.964,344.884,319.585,353.928,19.036,19.493,19.036 +9843,309.314,305.132,412.576,225.363,575.466,302.999,416.890,116.313,70.145,116.313,343.494,320.650,353.119,18.893,21.371,18.893 +9844,309.345,298.828,409.931,232.141,577.998,297.079,414.302,111.801,64.926,111.801,342.794,319.575,352.210,18.941,20.799,18.941 +9845,309.375,292.347,408.698,238.927,580.376,291.076,412.753,107.406,59.744,107.406,342.596,319.886,351.094,18.929,20.659,18.929 +9846,309.406,286.556,407.077,245.960,581.931,285.579,411.254,103.173,55.039,103.173,341.847,320.156,350.428,18.977,20.162,18.977 +9847,309.438,280.980,405.515,251.926,584.005,280.107,410.945,99.130,50.572,99.130,339.677,320.488,350.678,18.953,21.851,18.953 +9848,309.470,274.857,405.078,258.085,585.418,274.318,411.007,95.194,46.029,95.194,338.423,320.433,350.329,18.017,23.555,18.017 +9849,309.502,269.022,404.910,265.228,585.369,268.907,410.650,91.146,41.634,91.146,338.032,320.722,349.514,17.956,24.166,17.956 +9850,309.534,263.392,405.126,271.810,584.928,263.669,410.879,87.241,37.057,87.241,336.958,321.594,348.478,18.557,24.674,18.557 +9851,309.565,257.605,405.726,278.831,583.693,258.249,411.128,83.199,32.440,83.199,336.696,321.819,347.577,18.611,23.652,18.611 +9852,309.595,257.605,405.726,278.831,583.693,258.249,411.128,83.199,32.440,83.199,336.696,321.819,347.577,18.611,23.652,18.611 +9853,309.624,252.203,406.537,285.285,582.953,253.301,412.254,79.131,27.553,79.131,335.692,322.486,347.336,19.335,24.477,19.335 +9854,309.654,246.771,407.225,292.019,581.128,248.392,413.329,75.124,23.106,75.124,334.117,322.352,346.749,20.281,24.993,20.281 +9855,309.687,241.290,408.590,299.471,579.065,243.530,415.086,70.974,18.667,70.974,332.771,321.001,346.515,21.092,24.837,21.092 +9856,309.719,235.638,410.155,306.124,576.515,238.637,417.154,66.801,14.370,66.801,330.892,321.148,346.121,22.059,23.802,22.059 +9857,309.751,230.092,413.021,312.586,573.252,233.599,419.728,62.398,10.235,62.398,330.160,321.100,345.297,23.086,24.042,23.086 +9858,309.784,224.302,415.697,319.418,569.286,228.681,422.660,57.829,5.970,57.829,328.399,321.326,344.851,23.742,23.597,23.742 +9859,309.819,218.396,418.955,325.510,565.134,223.755,426.058,52.970,1.528,52.970,326.819,321.286,344.614,24.076,23.698,24.076 +9860,309.851,212.677,423.142,332.019,559.458,218.814,429.955,47.992,177.663,47.992,325.638,320.794,343.977,24.398,23.389,24.398 +9861,309.884,206.244,428.280,338.049,553.454,213.327,434.756,42.436,173.830,42.436,325.091,321.586,344.285,25.430,23.807,25.430 +9862,309.914,200.637,433.658,344.020,546.614,208.774,439.815,37.117,169.992,37.117,324.178,321.793,344.586,25.409,24.156,25.409 +9863,309.945,195.008,439.857,349.412,538.647,204.094,445.432,31.535,165.964,31.535,323.902,321.602,345.221,25.473,23.283,25.473 +9864,309.975,189.970,446.509,354.113,529.856,200.214,451.498,25.968,162.429,25.968,322.554,321.705,345.343,25.956,23.500,25.956 +9865,310.005,183.454,458.018,358.134,520.346,195.219,462.252,19.789,158.806,19.789,320.919,321.646,345.926,19.496,23.690,19.496 +9866,310.037,179.136,468.094,361.152,509.334,192.210,471.080,12.863,155.480,12.863,319.616,321.438,346.437,19.022,23.113,19.022 +9867,310.068,175.665,478.694,363.112,498.210,190.437,480.241,5.981,151.947,5.981,317.510,321.293,347.215,18.631,23.050,18.631 +9868,310.099,173.506,489.806,363.572,486.118,189.739,489.507,178.944,148.513,178.944,315.260,320.550,347.732,18.126,22.630,18.126 +9869,310.129,173.506,489.806,363.572,486.118,189.739,489.507,178.944,148.513,178.944,315.260,320.550,347.732,18.126,22.630,18.126 +9870,310.158,171.357,503.783,362.407,473.367,190.150,500.842,171.104,145.109,171.104,310.824,320.403,348.868,19.820,21.359,19.820 +9871,310.189,170.582,518.023,359.466,460.362,191.971,511.456,162.933,141.794,162.933,305.480,319.862,350.229,20.226,20.319,20.226 +9872,310.221,169.975,534.727,354.145,447.026,195.617,522.748,154.960,138.731,154.960,294.752,319.088,351.356,21.017,20.110,21.017 +9873,310.253,160.624,557.448,347.374,434.879,199.812,531.630,146.622,135.433,146.622,259.046,317.583,352.902,17.153,18.648,17.153 +9874,310.285,148.561,594.280,338.443,423.565,206.652,541.759,137.883,132.652,137.883,197.424,317.097,354.051,17.427,18.891,17.427 +9875,310.318,165.749,612.459,327.275,412.812,215.348,551.266,129.026,129.881,129.026,198.534,315.616,356.074,17.557,18.898,17.557 +9876,310.350,219.941,570.996,314.600,404.700,226.403,559.998,120.440,126.870,120.440,331.639,315.200,357.151,19.341,19.400,19.341 +9877,310.381,234.849,574.676,300.576,398.051,238.090,566.216,110.966,124.005,110.966,340.661,315.106,358.779,18.772,20.114,18.772 +9878,310.412,248.685,579.557,287.673,395.367,250.290,571.174,100.835,122.171,100.835,342.332,314.078,359.402,21.566,19.387,21.566 +9879,310.443,262.959,580.478,272.386,394.165,263.103,573.591,91.201,119.982,91.201,345.385,312.926,359.163,23.184,19.156,23.184 +9880,310.474,280.101,580.486,255.288,394.406,279.153,573.565,82.200,116.854,82.200,347.508,311.724,361.481,23.873,18.521,23.873 +9881,310.504,295.870,576.256,238.657,397.966,293.864,569.872,72.559,114.121,72.559,347.718,311.103,361.100,20.879,18.335,20.879 +9882,310.536,311.734,569.138,223.443,404.568,308.797,563.485,62.549,111.501,62.549,348.001,310.474,360.742,22.519,18.383,22.519 +9883,310.567,325.378,560.074,209.785,413.770,321.768,555.321,52.779,109.011,52.779,348.975,310.245,360.911,23.897,18.671,23.897 +9884,310.599,336.826,549.053,198.754,424.378,332.732,545.212,43.172,106.798,43.172,349.539,309.668,360.768,24.871,18.713,24.871 +9885,310.628,336.826,549.053,198.754,424.378,332.732,545.212,43.172,106.798,43.172,349.539,309.668,360.768,24.871,18.713,24.871 +9886,310.657,345.728,536.412,188.828,436.454,341.166,533.360,33.784,103.990,33.784,350.025,309.961,361.001,25.638,19.528,25.638 +9887,310.688,352.314,523.406,184.171,450.068,348.402,521.599,24.787,101.669,24.787,349.564,310.662,358.181,25.858,24.228,25.858 +9888,310.719,355.374,512.939,177.566,463.502,350.685,511.591,16.040,99.304,16.040,349.577,310.543,359.334,19.834,20.821,19.834 +9889,310.751,357.509,499.936,174.445,477.054,352.687,499.290,7.638,96.953,7.638,349.504,311.061,359.233,19.302,20.071,19.302 +9890,310.784,357.485,487.337,173.359,490.110,352.692,487.380,179.485,94.607,179.485,349.112,311.569,358.699,18.424,19.494,18.424 +9891,310.815,356.332,475.378,174.147,503.024,351.440,476.085,171.776,92.121,171.776,348.759,312.489,358.645,19.222,19.616,19.222 +9892,310.847,352.966,463.851,176.824,514.996,348.650,465.074,164.181,89.813,164.181,348.883,312.041,357.855,20.766,18.660,20.766 +9893,310.878,348.811,454.193,180.141,525.928,344.759,455.910,157.043,87.502,157.043,348.979,314.355,357.780,20.539,19.096,20.539 +9894,310.910,343.853,445.491,184.523,536.039,339.894,447.751,150.282,85.380,150.282,348.287,315.074,357.405,20.221,19.784,20.221 +9895,310.941,338.104,437.388,190.679,545.161,334.449,440.042,144.022,82.786,144.022,347.164,315.797,356.199,19.410,19.189,19.410 +9896,310.971,331.704,430.913,196.581,552.986,328.596,433.727,137.831,80.538,137.831,347.429,316.468,355.814,19.984,19.563,19.984 +9897,311.001,325.873,425.473,202.903,560.021,322.832,428.812,132.325,77.883,132.325,346.488,317.367,355.520,20.041,19.919,20.041 +9898,311.033,318.825,419.757,210.234,566.174,315.854,423.762,126.573,75.182,126.573,344.633,318.273,354.607,19.533,20.322,19.533 +9899,311.062,318.825,419.757,210.234,566.174,315.854,423.762,126.573,75.182,126.573,344.633,318.273,354.607,19.533,20.322,19.533 +9900,311.091,311.395,416.111,218.116,572.124,309.057,419.953,121.320,72.061,121.320,345.543,321.000,354.539,19.012,20.349,19.012 +9901,311.122,305.124,412.578,225.853,575.435,303.046,416.782,116.307,69.532,116.307,343.485,320.462,352.864,18.886,21.179,18.886 +9902,311.154,297.971,410.125,232.667,578.426,296.335,414.324,111.294,66.114,111.294,343.027,319.539,352.040,19.185,21.174,19.185 +9903,311.185,292.049,407.949,240.049,580.959,290.602,412.698,106.943,62.723,106.943,341.448,320.219,351.379,19.297,20.762,19.297 +9904,311.218,284.891,406.913,247.387,583.271,283.884,411.644,102.011,59.421,102.011,341.255,320.891,350.929,19.021,20.897,19.021 +9905,311.250,278.299,406.007,254.989,584.336,277.692,410.561,97.595,56.109,97.595,341.313,321.177,350.502,18.833,20.150,18.833 +9906,311.281,272.075,405.238,261.871,585.169,271.764,410.486,93.391,52.326,93.391,339.412,321.441,349.926,17.983,21.311,17.983 +9907,311.312,266.088,405.042,268.632,585.552,266.170,410.764,89.170,48.414,89.170,338.167,321.552,349.611,17.853,23.959,17.853 +9908,311.342,260.169,405.705,276.076,584.879,260.661,411.296,84.968,43.807,84.968,337.305,321.281,348.531,18.507,22.961,18.507 +9909,311.373,254.558,406.633,283.289,583.420,255.380,411.752,80.877,39.207,80.877,337.472,322.956,347.842,19.005,23.083,19.005 +9910,311.403,248.712,407.896,289.405,581.903,249.897,412.906,76.695,34.173,76.695,336.811,323.926,347.108,19.253,23.841,19.253 +9911,311.435,243.523,408.943,296.524,580.113,245.252,414.401,72.429,28.496,72.429,335.465,323.142,346.917,20.735,24.256,20.735 +9912,311.468,237.414,410.534,303.413,577.399,239.787,416.467,68.199,22.751,68.199,333.323,323.244,346.103,20.798,24.037,20.798 +9913,311.499,232.235,412.361,310.709,574.320,235.321,418.689,64.002,17.071,64.002,331.776,321.806,345.857,22.838,23.921,22.838 +9914,311.530,232.235,412.361,310.709,574.320,235.321,418.689,64.002,17.071,64.002,331.776,321.806,345.857,22.838,23.921,22.838 +9915,311.558,226.209,414.557,317.188,571.045,230.353,421.575,59.441,11.143,59.441,329.420,321.638,345.718,23.584,23.919,23.584 +9916,311.589,220.352,417.522,323.714,566.935,225.537,424.840,54.681,4.764,54.681,327.464,321.137,345.401,23.876,24.166,23.876 +9917,311.620,214.556,421.875,329.998,561.426,220.310,428.683,49.800,178.122,49.800,326.549,320.516,344.376,23.516,23.332,23.516 +9918,311.652,208.543,425.454,335.954,555.691,215.468,432.341,44.841,171.501,44.841,325.291,321.306,344.824,24.880,23.566,24.880 +9919,311.684,203.309,431.026,341.754,549.431,211.069,437.476,39.728,164.745,39.728,323.946,321.003,344.127,25.541,24.558,25.541 +9920,311.715,197.308,437.538,347.104,542.030,205.889,443.259,33.690,157.810,33.690,323.945,321.080,344.572,24.962,24.769,24.962 +9921,311.746,192.451,443.747,351.929,533.757,201.697,448.763,28.478,150.461,28.478,324.124,320.632,345.162,25.387,24.796,25.387 +9922,311.777,186.513,455.196,356.000,524.500,196.242,459.156,22.150,143.130,22.150,324.202,320.600,345.210,19.139,24.800,19.139 +9923,311.808,183.117,463.820,359.204,515.146,193.331,466.784,16.182,136.251,16.182,324.288,319.690,345.559,19.208,24.894,19.208 +9924,311.839,180.378,473.730,361.328,504.467,190.792,475.465,9.462,128.395,9.462,324.852,320.478,345.967,18.741,24.843,18.741 +9925,311.870,179.394,484.765,362.898,492.733,189.899,485.169,2.203,120.379,2.203,325.298,318.663,346.324,18.794,25.494,18.794 +9926,311.902,179.599,496.147,362.668,480.496,189.664,495.279,175.073,112.989,175.073,327.063,317.908,347.269,18.981,25.163,18.981 +9927,311.934,181.210,508.117,359.835,467.685,190.089,506.094,167.164,105.154,167.164,329.862,316.272,348.075,19.895,22.602,19.895 +9928,311.965,184.630,520.014,356.045,455.668,192.759,516.965,159.444,97.696,159.444,331.461,314.680,348.824,20.365,22.712,20.365 +9929,311.995,184.630,520.014,356.045,455.668,192.759,516.965,159.444,97.696,159.444,331.461,314.680,348.824,20.365,22.712,20.365 +9930,312.024,190.447,532.232,350.751,444.063,197.338,528.463,151.327,89.246,151.327,334.484,312.012,350.193,22.167,22.682,22.167 +9931,312.054,196.740,542.820,343.837,432.601,203.024,538.107,143.130,81.327,143.130,336.200,311.348,351.909,20.600,24.061,20.600 +9932,312.087,204.995,552.978,341.143,441.812,206.996,550.943,134.502,73.664,134.502,338.021,268.448,343.728,19.786,24.404,19.786 +9933,312.120,215.511,562.221,333.999,433.826,216.490,560.847,125.484,64.836,125.484,339.909,260.910,343.282,19.744,25.367,19.744 +9934,312.154,228.100,568.300,323.707,424.035,227.964,568.573,116.565,56.659,116.565,344.802,261.002,344.192,19.230,25.722,19.230 +9935,312.186,240.908,574.438,310.421,414.424,240.845,574.642,107.281,48.591,107.281,347.738,265.397,347.309,18.800,25.323,18.800 +9936,312.220,256.573,578.096,280.884,393.619,257.390,572.521,98.331,41.088,98.331,349.569,309.413,360.838,22.902,24.239,22.902 +9937,312.254,268.218,578.520,264.372,394.171,268.095,573.703,88.531,33.267,88.531,349.501,308.216,359.137,20.916,20.147,20.916 +9938,312.287,286.309,577.287,248.262,396.734,285.453,572.713,79.403,25.076,79.403,350.328,308.224,359.635,23.343,18.395,23.343 +9939,312.320,300.642,573.012,232.835,401.403,299.076,568.831,69.463,17.001,69.463,351.122,308.131,360.051,21.443,18.314,21.443 +9940,312.352,314.552,565.252,218.407,408.084,312.570,561.865,59.670,9.035,59.670,352.719,308.596,360.567,22.158,18.164,22.158 +9941,312.384,327.379,556.118,206.019,417.262,324.786,552.995,50.295,0.881,50.295,352.477,308.194,360.596,24.324,17.536,24.324 +9942,312.416,337.920,545.557,195.205,427.664,334.564,542.646,40.941,172.801,40.941,352.348,309.342,361.232,24.536,18.349,24.536 +9943,312.447,345.899,533.062,186.369,439.522,342.329,530.830,32.005,164.612,32.005,352.873,310.040,361.294,25.652,18.575,25.652 +9944,312.478,351.722,520.717,180.150,452.574,347.905,519.063,23.423,155.934,23.423,352.403,310.890,360.724,25.776,19.449,25.776 +9945,312.510,354.084,511.343,175.846,465.559,350.405,510.347,15.151,148.221,15.151,352.771,311.642,360.394,19.471,19.316,19.471 +9946,312.540,355.924,499.186,173.154,477.883,352.171,498.706,7.284,140.152,7.284,352.859,312.543,360.425,19.272,19.251,19.272 +9947,312.571,356.500,488.000,172.262,490.127,352.131,488.000,0.000,131.760,0.000,351.000,313.241,359.738,18.000,18.675,18.000 +9948,312.601,355.674,476.533,172.832,501.717,351.086,477.140,172.464,123.158,172.464,350.618,314.216,359.875,19.303,18.920,19.303 +9949,312.632,352.922,466.267,175.093,512.954,348.771,467.342,165.481,114.492,165.481,350.556,314.988,359.132,20.295,18.979,20.295 +9950,312.662,352.922,466.267,175.093,512.954,348.771,467.342,165.481,114.492,165.481,350.556,314.988,359.132,20.295,18.979,20.295 +9951,312.691,349.659,456.811,177.791,523.165,345.250,458.505,158.978,106.189,158.978,349.571,315.241,359.018,20.609,19.703,20.609 +9952,312.721,345.780,449.585,182.670,532.586,341.963,451.528,153.034,97.341,153.034,348.896,315.801,357.462,20.202,19.015,20.202 +9953,312.754,341.286,441.825,187.671,540.482,337.742,444.095,147.355,88.462,147.355,348.299,315.262,356.717,19.511,19.201,19.511 +9954,312.791,336.112,435.233,192.754,547.916,332.722,437.897,141.843,79.824,141.843,347.440,315.825,356.063,19.602,19.736,19.602 +9955,312.822,330.850,429.197,198.634,554.265,327.548,432.319,136.606,70.998,136.606,345.818,315.949,354.906,19.527,19.536,19.527 +9956,312.854,325.799,424.475,204.892,559.733,322.867,427.744,131.878,62.083,131.878,345.275,316.240,354.057,19.949,21.477,19.949 +9957,312.887,320.084,419.550,210.490,563.873,317.238,423.310,127.117,52.893,127.117,343.574,315.601,353.005,19.677,20.901,19.677 +9958,312.922,314.213,415.852,214.955,568.957,311.163,420.598,122.722,43.315,122.722,342.361,315.566,353.644,19.103,24.073,19.103 +9959,312.954,308.664,412.500,220.719,571.945,305.934,417.513,118.576,34.287,118.576,341.343,316.220,352.760,19.298,24.787,19.298 +9960,312.986,303.417,410.045,227.226,573.988,301.142,415.008,114.624,25.641,114.624,339.725,316.218,350.643,18.749,26.108,18.749 +9961,313.021,298.393,406.960,233.161,576.734,296.008,413.273,110.695,16.260,110.695,336.749,314.960,350.247,19.042,25.640,19.042 +9962,313.053,293.069,404.674,238.606,579.032,290.809,412.059,107.021,6.254,107.021,334.436,315.277,349.881,18.987,24.797,18.987 +9963,313.087,288.290,403.055,244.005,580.594,286.331,411.134,103.627,176.760,103.627,332.697,314.911,349.323,18.966,24.546,18.966 +9964,313.120,283.124,401.463,249.203,581.511,281.589,410.165,100.008,167.125,100.008,331.061,315.854,348.734,19.406,23.814,19.406 +9965,313.152,277.510,400.228,254.357,582.364,276.448,409.599,96.470,157.557,96.470,329.445,316.841,348.307,18.828,23.086,18.828 +9966,313.184,272.522,399.119,259.691,583.006,271.913,409.477,93.366,147.995,93.366,327.140,317.893,347.893,18.204,23.426,18.204 +9967,313.216,267.500,398.500,264.598,583.430,267.500,409.715,90.000,138.240,90.000,325.000,318.888,347.430,17.000,21.952,17.000 +9968,313.247,262.363,397.811,269.500,583.292,263.048,410.017,86.791,128.845,86.791,322.279,319.982,346.728,18.700,21.394,18.700 +9969,313.278,256.902,396.994,274.643,583.275,258.479,410.717,83.443,118.106,83.443,318.923,321.296,346.550,18.602,19.837,18.602 +9970,313.308,251.857,397.325,280.186,583.406,254.375,411.716,80.074,108.138,80.074,317.919,322.548,347.138,19.159,20.628,19.159 +9971,313.338,246.062,395.155,285.669,583.880,250.377,413.337,76.651,98.236,76.651,310.794,325.125,348.167,19.905,21.630,19.905 +9972,313.369,240.234,394.374,293.361,582.469,246.369,414.725,73.223,89.037,73.223,305.824,323.206,348.335,20.606,20.048,20.606 +9973,313.399,229.308,386.331,298.737,581.139,240.653,416.964,69.677,79.653,69.677,282.922,325.752,348.257,17.782,18.805,17.782 +9974,313.430,229.308,386.331,298.737,581.139,240.653,416.964,69.677,79.653,69.677,282.922,325.752,348.257,17.782,18.805,17.782 +9975,313.460,205.130,349.268,305.277,578.151,236.314,418.721,65.821,69.550,65.821,195.114,324.672,347.379,17.743,18.295,17.743 +9976,313.491,217.311,392.097,311.222,575.279,233.119,420.635,61.017,59.458,61.017,280.996,324.802,346.243,19.807,19.073,19.807 +9977,313.523,221.273,412.118,318.060,571.192,228.343,422.890,56.719,50.024,56.719,320.650,325.335,346.421,21.916,19.971,21.916 +9978,313.554,219.335,418.211,324.224,566.906,224.735,425.636,53.973,40.601,53.973,327.171,325.613,345.533,22.792,19.090,22.792 +9979,313.587,214.741,422.060,330.103,561.328,220.273,428.636,49.927,31.005,49.927,327.298,325.680,344.487,23.819,19.895,23.819 +9980,313.620,209.000,425.500,335.960,556.341,216.075,432.575,45.000,21.644,45.000,324.562,324.023,344.574,24.749,20.906,24.749 +9981,313.652,203.394,429.624,341.210,550.751,211.834,436.858,40.601,13.050,40.601,322.467,323.348,344.700,24.730,21.109,24.730 +9982,313.684,197.765,435.200,346.134,543.969,207.057,441.729,35.096,3.764,35.096,322.434,322.750,345.147,25.320,21.637,25.320 +9983,313.714,192.554,441.531,350.934,536.299,202.824,447.399,29.745,174.611,29.745,321.746,322.155,345.403,25.427,22.448,25.427 +9984,313.745,187.684,449.081,354.866,527.989,198.771,453.948,23.703,165.343,23.703,321.168,321.926,345.384,26.397,22.981,26.397 +9985,313.776,183.193,459.394,358.444,518.872,194.606,463.318,18.970,156.150,18.970,321.859,321.353,345.997,19.239,23.616,19.239 +9986,313.806,180.181,468.939,361.125,508.724,192.124,471.585,12.488,146.864,12.488,321.603,320.623,346.067,18.976,23.563,18.976 +9987,313.838,178.290,479.030,362.794,498.680,190.352,480.278,5.906,137.579,5.906,322.589,319.925,346.841,18.522,24.577,18.522 +9988,313.870,178.003,489.241,362.927,487.341,189.429,489.089,179.239,128.660,179.239,324.157,319.844,347.011,18.277,24.363,18.277 +9989,313.902,178.743,501.182,362.292,475.238,189.922,499.567,171.781,119.745,171.781,325.566,318.149,348.156,18.937,25.055,18.937 +9990,313.933,181.347,512.988,357.961,462.249,190.684,510.342,164.174,110.225,164.174,328.695,316.962,348.104,19.802,21.039,19.802 +9991,313.963,185.278,524.895,354.157,450.239,194.174,520.968,156.184,101.689,156.184,330.393,315.795,349.842,20.448,21.881,20.448 +9992,313.997,192.198,536.373,348.426,438.701,199.469,531.888,148.333,92.936,148.333,334.312,313.665,351.400,21.731,22.739,21.731 +9993,314.037,198.402,546.582,341.267,428.308,205.290,540.842,140.194,84.560,140.194,335.073,311.543,353.006,19.334,24.366,19.334 +9994,314.068,207.529,556.372,331.360,418.324,213.161,550.094,131.897,75.292,131.897,337.161,310.179,354.029,19.923,24.302,19.923 +9995,314.099,219.361,564.870,328.856,430.175,219.931,563.978,122.574,66.038,122.574,340.683,263.990,342.799,20.131,25.790,20.131 +9996,314.129,219.361,564.870,328.856,430.175,219.931,563.978,122.574,66.038,122.574,340.683,263.990,342.799,20.131,25.790,20.131 +9997,314.163,232.066,570.683,318.877,421.436,231.903,571.057,113.575,57.488,113.575,344.652,262.612,343.837,19.497,25.104,19.497 +9998,314.194,244.799,575.574,304.848,412.079,244.724,575.877,103.974,48.366,103.974,347.562,268.154,346.938,20.602,25.910,20.602 +9999,314.225,257.893,578.571,288.140,403.049,257.988,577.380,94.560,40.406,94.560,349.962,278.448,352.353,23.166,24.097,23.166 +10000,314.257,273.268,578.979,259.950,394.166,272.871,573.822,85.601,31.849,85.601,349.889,309.415,360.235,22.932,19.769,22.932 +10001,314.288,288.321,576.695,243.798,397.476,287.212,572.171,76.218,23.009,76.218,350.699,309.370,360.015,22.576,18.056,22.576 +10002,314.321,303.982,571.249,229.005,402.505,302.248,567.163,67.006,14.211,67.006,351.495,309.244,360.373,20.778,17.997,20.778 +10003,314.354,317.928,563.372,215.568,409.773,315.695,559.856,57.593,5.332,57.593,352.411,309.110,360.741,23.309,17.789,23.309 +10004,314.386,329.900,554.259,203.566,419.075,326.927,550.912,48.383,176.471,48.383,352.030,309.768,360.982,24.354,17.385,24.354 +10005,314.419,339.310,544.084,193.586,430.380,335.934,541.290,39.611,167.296,39.611,351.991,310.536,360.755,24.971,17.024,24.971 +10006,314.451,346.896,531.249,185.730,442.510,343.673,529.346,30.559,157.770,30.559,352.825,311.027,360.310,25.175,18.932,25.175 +10007,314.483,351.145,521.450,179.593,454.999,347.604,520.011,22.109,149.326,22.109,352.607,311.427,360.252,19.832,19.685,19.832 +10008,314.514,354.980,509.564,175.467,467.196,350.754,508.515,13.933,141.033,13.933,351.449,312.194,360.158,19.397,18.843,19.397 +10009,314.547,356.586,497.577,173.145,479.576,352.361,497.120,6.170,131.785,6.170,351.627,312.731,360.127,19.186,18.594,19.186 +10010,314.577,356.442,486.033,172.475,491.664,352.268,486.132,178.645,122.619,178.645,351.398,313.527,359.748,18.576,18.564,18.576 +10011,314.608,355.079,474.204,173.402,503.527,350.789,474.849,171.446,113.318,171.446,350.682,314.209,359.359,20.863,18.636,20.863 +10012,314.638,352.692,464.585,175.951,514.618,348.590,465.722,164.511,104.142,164.511,350.340,314.562,358.854,20.562,18.546,20.562 +10013,314.669,349.002,455.540,179.393,524.619,345.118,457.116,157.916,94.874,157.916,349.507,314.417,357.890,20.735,18.391,20.735 +10014,314.700,345.780,448.151,183.678,533.486,341.687,450.334,151.928,85.352,151.928,347.824,314.483,357.101,20.882,18.840,20.882 +10015,314.730,345.780,448.151,183.678,533.486,341.687,450.334,151.928,85.352,151.928,347.824,314.483,357.101,20.882,18.840,20.882 +10016,314.758,340.422,439.642,188.967,541.889,336.535,442.263,146.008,76.103,146.008,346.725,314.566,356.100,19.648,18.864,19.648 +10017,314.790,335.291,433.032,194.488,549.303,331.454,436.193,140.517,66.600,140.517,345.325,315.299,355.267,19.615,19.611,19.615 +10018,314.821,330.050,427.528,200.586,554.797,326.715,430.811,135.444,57.074,135.444,344.367,314.295,353.728,19.086,21.247,19.086 +10019,314.854,324.124,422.182,204.772,561.666,320.310,426.692,130.224,47.526,130.224,343.524,313.848,355.337,19.730,24.444,19.730 +10020,314.888,318.155,417.822,210.776,565.856,314.699,422.651,125.587,37.816,125.587,341.996,314.686,353.872,19.428,24.501,19.428 +10021,314.920,312.314,414.177,217.199,569.426,309.268,419.210,121.185,28.926,121.185,340.602,314.695,352.367,18.956,25.474,18.956 +10022,314.952,306.914,410.228,223.675,572.510,303.957,416.069,116.850,19.692,116.850,338.579,314.814,351.671,18.925,25.461,18.925 +10023,314.984,301.221,407.509,229.824,575.680,298.376,414.325,112.652,10.081,112.652,335.849,314.207,350.620,18.864,24.680,18.864 +10024,315.015,296.036,404.863,235.518,578.139,293.397,412.616,108.800,1.219,108.800,334.308,313.312,350.688,19.235,23.909,19.235 +10025,315.045,289.814,402.975,241.677,579.915,287.643,411.276,104.657,172.875,104.657,332.404,314.924,349.565,19.037,23.567,19.037 +10026,315.076,283.986,401.666,247.328,580.792,282.388,410.034,100.812,163.072,100.812,331.567,315.869,348.606,19.369,22.586,19.369 +10027,315.106,278.406,399.862,253.132,582.218,277.189,409.624,97.102,154.026,97.102,328.812,316.721,348.487,18.952,22.867,18.952 +10028,315.137,272.810,399.147,258.858,583.014,272.150,409.489,93.652,146.952,93.652,327.313,317.602,348.038,18.239,23.016,18.239 +10029,315.169,267.000,398.000,264.356,583.284,267.000,409.642,90.000,136.751,90.000,324.000,318.654,347.284,18.000,22.148,18.000 +10030,315.200,261.838,398.262,269.982,583.081,262.557,409.850,86.451,128.991,86.451,323.495,319.707,346.716,18.646,21.245,18.646 +10031,315.231,261.838,398.262,269.982,583.081,262.557,409.850,86.451,128.991,86.451,323.495,319.707,346.716,18.646,21.245,18.646 +10032,315.258,255.815,398.570,276.010,583.080,257.391,410.730,82.614,121.701,82.614,322.101,320.876,346.625,18.659,19.969,18.659 +10033,315.289,250.188,398.773,282.284,582.522,252.746,411.748,78.845,113.806,78.845,320.076,321.755,346.526,19.581,20.586,19.581 +10034,315.320,244.462,400.692,288.934,581.727,247.909,413.334,74.745,106.760,74.745,320.302,322.692,346.508,20.348,20.463,20.348 +10035,315.352,238.418,401.625,295.077,581.244,243.282,415.483,70.659,100.200,70.659,317.744,325.469,347.119,21.096,20.883,21.096 +10036,315.383,233.008,405.260,302.552,577.925,238.373,417.618,66.536,94.544,66.536,318.266,323.761,345.211,22.298,18.373,22.298 +10037,315.415,226.367,408.230,309.947,575.028,232.835,420.283,61.783,88.986,61.783,318.271,324.179,345.629,21.750,17.962,21.750 +10038,315.446,220.950,412.571,317.101,570.990,227.939,423.260,56.821,84.155,56.821,319.336,323.992,344.878,23.242,18.173,23.242 +10039,315.478,215.290,417.708,324.397,565.966,222.577,426.913,51.633,79.846,51.633,320.969,324.229,344.449,23.750,18.188,23.750 +10040,315.509,209.634,423.528,331.853,559.912,216.905,431.095,46.146,75.964,46.146,324.073,324.270,345.060,24.334,18.675,24.334 +10041,315.539,203.303,431.613,338.557,553.137,210.706,437.739,39.611,72.810,39.611,324.920,323.933,344.139,24.839,18.852,24.839 +10042,315.571,199.001,437.826,345.287,544.845,206.185,442.671,33.996,69.877,33.996,327.580,323.882,344.910,25.547,19.324,25.547 +10043,315.603,194.276,445.379,351.111,535.619,201.520,449.220,27.934,67.355,27.934,328.875,323.692,345.273,25.888,19.806,25.888 +10044,315.634,188.788,457.664,356.037,525.061,195.846,460.388,21.105,65.256,21.105,330.337,323.095,345.467,19.231,20.802,19.231 +10045,315.664,186.033,467.849,360.105,513.447,192.609,469.485,13.973,63.004,13.973,332.755,322.069,346.309,19.408,21.637,19.408 +10046,315.694,186.033,467.849,360.105,513.447,192.609,469.485,13.973,63.004,13.973,332.755,322.069,346.309,19.408,21.637,19.408 +10047,315.722,183.748,479.187,362.749,500.860,190.431,479.903,6.116,60.611,6.116,333.697,321.993,347.140,18.537,23.395,18.537 +10048,315.754,182.915,490.495,363.496,487.699,189.661,490.303,178.374,58.736,178.374,334.178,321.400,347.677,18.150,23.507,18.150 +10049,315.788,183.860,503.761,362.236,473.518,190.084,502.579,169.249,56.768,169.249,336.432,320.595,349.103,21.291,24.055,21.291 +10050,315.821,186.777,515.844,358.963,459.480,192.531,513.885,161.192,55.114,161.192,338.014,319.409,350.171,19.838,23.879,19.838 +10051,315.855,191.703,528.958,353.238,445.566,197.068,526.185,152.663,52.958,152.663,339.422,318.417,351.502,21.260,24.307,21.260 +10052,315.888,197.846,539.976,344.981,432.298,202.615,536.507,143.973,50.937,143.973,341.066,317.189,352.859,19.924,24.464,19.924 +10053,315.920,206.458,551.421,340.130,426.885,210.451,547.368,134.569,48.633,134.569,342.294,298.964,353.674,19.703,25.304,19.703 +10054,315.954,217.487,560.886,329.106,417.509,220.096,557.145,124.902,46.610,124.902,344.663,293.711,353.786,19.550,25.593,19.550 +10055,315.987,230.052,568.946,321.676,415.306,231.103,566.726,115.346,44.549,115.346,346.322,274.405,351.234,19.740,25.255,19.740 +10056,316.022,243.788,575.107,306.036,408.251,244.200,573.553,104.848,42.691,104.848,348.041,275.098,351.257,20.218,24.637,20.218 +10057,316.054,257.778,579.022,290.807,405.397,257.825,578.432,94.574,40.675,94.574,349.045,271.810,350.229,23.405,24.009,23.405 +10058,316.089,276.413,578.742,274.109,406.738,276.538,580.400,85.670,38.610,85.670,350.027,268.774,346.700,22.843,19.513,22.843 +10059,316.121,291.670,576.796,257.184,407.913,291.977,577.997,75.666,36.733,75.666,349.286,271.793,346.805,22.079,19.856,22.079 +10060,316.154,307.025,571.509,241.834,412.077,307.467,572.474,65.376,34.104,65.376,348.437,272.065,346.315,21.212,20.668,21.212 +10061,316.188,321.946,563.421,226.598,418.032,321.943,563.417,55.546,31.711,55.546,347.637,276.058,347.645,23.758,21.351,23.758 +10062,316.222,334.435,554.221,209.823,425.185,332.166,551.877,45.921,29.745,45.921,345.719,287.140,352.243,23.388,20.342,23.388 +10063,316.254,347.848,547.315,191.120,431.848,336.765,539.146,36.394,27.051,36.394,334.267,306.823,361.803,19.175,19.366,19.175 +10064,316.287,381.148,545.877,183.635,444.201,344.248,526.802,27.337,24.351,27.337,278.136,307.715,361.215,19.957,19.674,19.957 +10065,316.320,400.132,531.073,177.763,457.879,349.330,513.671,18.908,22.026,18.908,253.376,306.952,360.777,19.579,19.724,19.579 +10066,316.352,376.520,506.640,174.407,470.915,351.850,502.154,10.305,19.335,10.305,310.187,307.465,360.337,18.067,20.097,18.067 +10067,316.383,370.932,491.185,172.950,484.306,352.508,490.610,1.790,16.563,1.790,322.468,307.742,359.334,18.366,19.777,18.366 +10068,316.415,366.920,477.373,173.428,496.655,351.950,478.998,173.806,13.570,173.806,328.652,308.251,358.769,19.452,20.380,19.452 +10069,316.445,362.847,464.911,175.084,509.288,349.435,468.210,166.178,10.305,166.178,330.609,308.667,358.233,20.407,19.141,20.407 +10070,316.483,360.540,452.409,178.346,520.338,345.885,458.027,159.027,7.411,159.027,326.095,309.119,357.485,20.044,18.882,20.044 +10071,316.514,354.079,443.146,182.677,530.495,341.646,449.820,151.773,4.050,151.773,328.220,310.206,356.441,21.341,19.306,21.341 +10072,316.547,346.825,434.434,188.039,539.533,336.305,441.643,145.582,0.744,145.582,329.774,310.143,355.281,19.585,19.193,19.585 +10073,316.579,339.428,427.312,194.371,547.934,330.764,434.795,139.185,177.594,139.185,331.454,311.397,354.351,19.884,19.495,19.884 +10074,316.610,332.076,421.405,200.688,555.315,324.577,429.283,133.589,174.401,133.589,331.654,311.936,353.409,19.626,20.158,19.626 +10075,316.640,324.094,415.396,207.446,561.676,317.541,423.858,127.753,170.538,127.753,331.339,313.016,352.746,19.438,20.879,19.438 +10076,316.670,316.825,410.652,214.565,567.180,311.067,419.770,122.276,166.551,122.276,330.764,313.889,352.331,19.090,21.333,19.090 +10077,316.703,309.040,407.029,222.013,571.722,304.240,416.471,116.946,163.244,116.946,330.128,314.548,351.314,19.307,21.776,19.307 +10078,316.736,301.626,404.058,229.518,575.697,297.622,413.995,111.949,159.677,111.949,329.449,315.084,350.875,19.090,22.020,19.090 +10079,316.767,294.162,401.973,237.191,578.424,291.073,412.013,107.103,155.726,107.103,328.788,315.981,349.796,19.116,21.950,19.116 +10080,316.798,294.162,401.973,237.191,578.424,291.073,412.013,107.103,155.726,107.103,328.788,315.981,349.796,19.116,21.950,19.116 +10081,316.826,286.485,399.742,244.691,580.350,284.223,410.362,102.024,151.390,102.024,327.272,316.920,348.988,19.363,21.548,19.363 +10082,316.857,278.880,399.678,252.601,582.160,277.559,409.920,97.352,147.680,97.352,327.383,317.594,348.036,18.812,22.127,18.812 +10083,316.889,271.803,398.592,260.392,583.353,271.236,409.653,92.936,143.763,92.936,325.905,318.152,348.055,18.207,22.733,18.207 +10084,316.922,264.733,399.382,267.883,583.275,265.030,410.066,88.409,139.591,88.409,325.069,318.566,346.444,18.437,22.123,18.437 +10085,316.955,257.892,399.788,275.500,583.000,259.083,410.407,83.601,135.000,83.601,325.325,318.905,346.696,19.448,21.920,19.448 +10086,316.987,250.924,401.424,283.155,581.823,252.919,411.549,78.857,131.186,78.857,325.176,319.939,345.815,19.578,22.013,19.578 +10087,317.022,244.104,403.113,290.985,580.380,246.965,413.126,74.055,126.486,74.055,324.995,320.621,345.823,19.917,22.303,19.917 +10088,317.054,237.740,405.654,298.490,577.994,241.409,415.369,69.312,122.247,69.312,323.840,320.843,344.609,21.425,22.756,21.425 +10089,317.089,230.926,408.607,306.217,575.073,235.323,417.728,64.264,117.457,64.264,324.792,321.172,345.042,21.744,22.045,21.744 +10090,317.122,224.852,412.498,313.732,571.387,229.912,420.972,59.156,112.834,59.156,324.494,321.845,344.232,23.047,21.925,23.047 +10091,317.155,218.403,417.245,321.038,567.167,224.045,424.969,53.858,108.258,53.858,324.947,322.864,344.077,22.848,21.930,22.848 +10092,317.188,212.389,421.926,328.922,561.241,218.730,429.044,48.302,103.496,48.302,324.946,322.094,344.013,24.219,22.754,24.219 +10093,317.221,206.213,429.329,335.695,554.952,212.739,435.216,42.049,98.881,42.049,325.420,321.907,342.998,24.607,22.230,24.607 +10094,317.254,200.745,435.417,342.230,547.055,207.604,440.471,36.384,94.276,36.384,326.175,321.421,343.213,24.787,22.367,24.787 +10095,317.288,195.682,441.783,348.632,538.499,203.044,446.143,30.635,89.341,30.635,327.547,321.105,344.660,25.395,22.700,25.395 +10096,317.321,191.387,450.505,353.532,529.135,198.453,453.646,23.962,84.738,23.962,329.277,321.586,344.744,25.993,22.680,25.993 +10097,317.354,186.335,462.730,358.166,518.470,193.765,465.052,17.354,79.729,17.354,330.131,321.007,345.701,19.090,23.814,19.090 +10098,317.386,184.007,473.200,361.221,506.942,191.283,474.517,10.261,75.256,10.261,331.203,320.254,345.992,18.696,23.770,18.696 +10099,317.419,183.053,484.696,362.738,494.594,189.841,484.973,2.337,70.378,2.337,332.703,320.460,346.290,18.801,23.630,18.801 +10100,317.451,182.884,496.235,362.834,481.746,189.304,495.645,174.746,65.898,174.746,335.252,320.039,348.147,18.737,24.262,18.737 +10101,317.482,184.768,508.541,360.534,467.981,190.560,507.137,166.373,60.673,166.373,336.908,319.269,348.829,19.732,25.087,19.732 +10102,317.514,188.165,520.907,356.814,454.623,193.746,518.649,157.973,56.464,157.973,338.315,318.121,350.356,20.373,24.299,20.373 +10103,317.545,193.423,532.115,350.465,440.636,198.415,529.263,150.255,51.927,150.255,340.475,317.673,351.975,20.714,24.430,20.714 +10104,317.576,200.978,543.973,342.221,428.963,205.355,540.391,140.711,47.006,140.711,341.667,315.374,352.978,20.193,25.165,20.193 +10105,317.606,209.528,554.128,331.658,417.207,213.447,549.760,131.897,42.763,131.897,343.477,314.489,355.214,19.944,24.846,19.944 +10106,317.637,220.870,563.497,319.339,407.338,224.074,558.424,122.276,38.737,122.276,345.227,312.964,357.226,19.802,24.464,19.802 +10107,317.670,233.696,570.699,303.771,401.416,235.597,566.089,112.410,34.160,112.410,346.480,311.752,356.454,19.109,20.569,19.109 +10108,317.700,248.781,576.581,288.720,395.879,250.008,571.151,102.738,29.908,102.738,347.855,310.438,358.988,21.145,21.701,21.145 +10109,317.730,248.781,576.581,288.720,395.879,250.008,571.151,102.738,29.908,102.738,347.855,310.438,358.988,21.145,21.701,21.145 +10110,317.758,261.235,578.629,271.523,394.951,261.418,574.042,92.291,25.641,92.291,349.520,309.655,358.703,23.301,18.355,23.301 +10111,317.790,276.061,579.360,255.155,395.604,275.432,574.584,82.504,21.371,82.504,350.557,309.416,360.192,25.126,18.179,25.126 +10112,317.823,293.075,575.340,239.047,398.739,291.796,571.044,73.421,17.241,73.421,351.421,309.309,360.387,21.268,17.982,21.268 +10113,317.855,309.281,568.400,224.633,404.766,307.408,564.612,63.689,13.024,63.689,351.502,308.283,359.953,22.225,17.981,22.225 +10114,317.888,322.393,560.111,210.466,412.719,319.863,556.602,54.207,8.820,54.207,352.730,308.907,361.382,23.840,18.077,23.840 +10115,317.921,333.750,550.750,199.405,422.735,330.285,547.285,45.000,4.418,45.000,351.432,308.168,361.233,24.042,18.015,24.042 +10116,317.954,343.202,538.455,189.996,433.879,339.483,535.784,35.690,179.789,35.690,352.568,308.027,361.725,25.578,17.360,25.578 +10117,317.987,349.810,526.531,182.231,447.084,345.523,524.337,27.096,174.883,27.096,351.482,309.359,361.114,25.341,19.950,25.341 +10118,318.020,353.424,516.814,176.758,457.991,348.356,515.091,18.782,170.186,18.782,350.987,309.911,361.691,20.066,21.694,20.066 +10119,318.052,355.476,505.015,173.355,470.671,351.019,504.162,10.836,164.521,10.836,352.511,310.469,361.585,19.026,21.439,19.026 +10120,318.085,355.772,493.449,171.937,483.090,352.047,493.227,3.417,158.150,3.417,353.326,311.044,360.788,19.220,20.061,19.220 +10121,318.116,355.870,482.396,171.742,494.777,351.481,482.668,176.451,151.390,176.451,351.495,311.972,360.288,19.157,20.431,19.157 +10122,318.148,355.033,472.419,172.817,505.132,350.133,473.307,169.735,144.197,169.735,350.340,313.190,360.299,20.579,20.528,20.579 +10123,318.179,351.607,463.452,174.916,514.911,347.650,464.611,163.675,136.414,163.675,351.570,314.139,359.817,20.667,20.334,20.667 +10124,318.209,348.818,455.582,177.730,523.789,344.536,457.316,157.954,128.047,157.954,349.879,315.207,359.120,20.920,19.996,20.920 +10125,318.239,344.942,448.968,181.279,531.716,341.192,450.920,152.501,119.249,152.501,349.849,316.057,358.305,22.103,19.823,22.103 +10126,318.270,341.399,443.438,184.728,538.900,337.818,445.676,147.995,110.212,147.995,350.011,316.468,358.457,20.458,20.066,20.458 +10127,318.301,337.691,437.395,189.564,545.499,333.937,440.144,143.781,101.014,143.781,348.148,317.334,357.453,19.090,18.914,19.090 +10128,318.331,333.828,433.018,193.709,550.563,330.391,435.918,139.857,91.644,139.857,347.799,317.242,356.793,19.295,19.442,19.295 +10129,318.361,333.828,433.018,193.709,550.563,330.391,435.918,139.857,91.644,139.857,347.799,317.242,356.793,19.295,19.442,19.295 +10130,318.388,329.446,428.858,198.205,555.553,326.283,431.933,135.807,82.057,135.807,347.185,317.344,356.007,19.259,19.739,19.259 +10131,318.421,325.938,425.524,203.145,559.311,323.106,428.605,132.580,72.201,132.580,346.452,316.890,354.822,19.403,19.739,19.403 +10132,318.453,322.188,421.527,208.223,562.568,319.370,424.994,129.104,62.580,129.104,344.787,317.126,353.723,19.648,21.377,19.648 +10133,318.485,318.896,418.824,211.719,564.796,316.130,422.596,126.254,52.491,126.254,343.475,315.774,352.831,19.407,20.590,19.407 +10134,318.516,315.445,416.467,213.950,568.410,312.276,421.237,123.598,42.357,123.598,342.539,315.143,353.993,18.931,24.625,18.931 +10135,318.547,312.000,414.000,217.315,569.791,309.044,418.927,120.964,32.471,120.964,341.625,315.990,353.118,18.865,25.080,18.865 +10136,318.578,309.306,411.535,221.233,570.932,306.298,417.065,118.540,22.353,118.540,339.033,314.987,351.623,18.957,25.974,18.957 +10137,318.608,306.900,409.700,224.120,572.930,303.726,416.048,116.565,11.860,116.565,337.646,314.784,351.841,19.230,24.594,19.230 +10138,318.638,303.816,407.592,227.018,574.410,300.496,414.974,114.218,1.736,114.218,334.902,314.401,351.090,19.328,23.535,19.328 +10139,318.669,301.436,405.797,229.235,575.247,298.096,413.909,112.380,171.416,112.380,333.265,314.979,350.810,19.146,22.574,19.146 +10140,318.699,299.729,403.465,231.227,576.158,295.992,413.344,110.726,160.942,110.726,329.271,315.951,350.395,19.135,21.585,19.135 +10141,318.729,299.729,403.465,231.227,576.158,295.992,413.344,110.726,160.942,110.726,329.271,315.951,350.395,19.135,21.585,19.135 +10142,318.756,297.594,400.877,233.204,576.979,293.543,412.624,109.026,150.422,109.026,325.241,316.660,350.092,19.233,20.708,19.233 +10143,318.789,296.489,397.286,235.032,578.038,291.762,412.254,107.526,140.013,107.526,318.948,318.044,350.343,19.574,19.822,19.574 +10144,318.821,295.881,392.064,236.628,579.195,289.866,412.113,106.699,129.357,106.699,308.803,319.359,350.666,17.816,19.252,17.816 +10145,318.854,297.679,378.335,238.707,580.562,288.092,412.065,105.866,118.887,105.866,281.028,320.220,351.160,17.081,19.112,17.081 +10146,318.886,306.830,332.949,241.000,582.000,286.767,411.949,104.250,108.435,104.250,189.154,321.287,352.169,16.815,18.974,16.815 +10147,318.917,287.200,405.246,242.775,583.237,285.569,412.388,102.863,97.607,102.863,337.525,323.273,352.176,17.218,20.408,17.218 +10148,318.947,284.794,406.824,246.241,584.030,283.697,412.031,101.899,87.709,101.899,341.410,322.782,352.052,18.752,21.103,18.752 +10149,318.977,283.498,405.814,247.919,584.236,282.384,411.505,101.079,77.672,101.079,340.671,323.413,352.269,18.845,21.234,18.845 +10150,319.007,282.336,406.152,249.889,583.744,281.453,411.010,100.305,66.501,100.305,341.313,321.692,351.189,18.962,20.255,18.962 +10151,319.039,281.309,405.961,251.489,583.634,280.510,410.693,99.593,55.864,99.593,341.120,321.179,350.718,19.095,20.132,19.095 +10152,319.069,280.727,405.322,251.329,584.243,279.839,410.911,99.019,45.909,99.019,339.997,320.380,351.317,18.969,24.151,18.969 +10153,319.101,279.605,404.782,252.588,583.875,278.747,410.637,98.344,35.311,98.344,338.565,319.542,350.400,18.891,24.821,18.891 +10154,319.131,279.605,404.782,252.588,583.875,278.747,410.637,98.344,35.311,98.344,338.565,319.542,350.400,18.891,24.821,18.891 +10155,319.160,278.950,404.217,253.669,582.788,278.168,409.871,97.869,24.944,97.869,337.870,319.398,349.286,18.837,25.958,18.837 +10156,319.190,278.749,403.133,254.584,583.180,277.821,410.094,97.595,14.744,97.595,335.233,317.506,349.278,18.701,25.195,18.701 +10157,319.222,277.969,401.749,254.630,582.984,276.957,409.948,97.038,4.917,97.038,332.415,316.498,348.936,18.747,24.737,18.747 +10158,319.254,277.514,401.176,254.964,582.623,276.528,409.642,96.643,174.560,96.643,331.582,316.378,348.628,18.908,24.461,18.908 +10159,319.286,277.104,400.678,254.820,582.570,276.111,409.641,96.320,164.358,96.320,330.407,316.892,348.444,19.192,24.036,19.192 +10160,319.317,276.807,400.195,254.700,582.400,275.795,409.586,96.155,153.435,96.155,329.267,317.522,348.159,18.588,22.808,18.588 +10161,319.347,276.671,398.123,254.246,582.339,275.469,409.548,96.009,144.090,96.009,325.151,318.335,348.127,18.320,21.394,18.320 +10162,319.377,276.742,396.681,253.958,582.461,275.389,409.669,95.947,133.452,95.947,322.049,319.075,348.164,18.359,20.212,18.359 +10163,319.408,276.832,393.183,253.982,582.988,275.154,409.960,95.711,124.587,95.711,314.830,320.144,348.551,18.408,19.204,18.408 +10164,319.439,276.643,388.608,254.713,583.873,274.588,410.364,95.398,115.959,95.398,305.513,321.124,349.219,18.046,19.153,18.046 +10165,319.469,276.881,376.807,255.752,584.591,273.825,410.427,95.194,108.122,95.194,282.653,321.891,350.170,17.836,19.526,17.836 +10166,319.500,278.259,348.305,256.845,585.371,273.196,410.748,94.635,101.129,94.635,225.449,323.199,350.746,17.753,19.560,17.753 +10167,319.530,278.259,348.305,256.845,585.371,273.196,410.748,94.635,101.129,94.635,225.449,323.199,350.746,17.753,19.560,17.753 +10168,319.559,278.453,329.885,257.238,585.979,272.441,411.051,94.236,94.499,94.236,188.373,323.596,351.148,17.729,22.168,17.729 +10169,319.590,272.891,397.278,259.666,586.457,272.031,411.241,93.521,88.531,93.521,323.311,323.355,351.290,17.905,21.352,17.905 +10170,319.621,271.880,402.223,259.976,586.496,271.395,411.189,93.094,81.995,93.094,333.378,325.408,351.335,17.920,21.507,17.920 +10171,319.653,271.383,404.731,262.095,586.108,271.055,410.949,93.013,75.069,93.013,338.321,324.268,350.775,18.290,21.000,18.290 +10172,319.685,271.402,405.236,262.374,585.710,271.117,410.748,92.961,67.132,92.961,339.322,323.298,350.360,18.114,21.098,18.114 +10173,319.715,271.452,404.765,262.750,585.424,271.150,410.597,92.961,58.416,92.961,338.375,322.255,350.055,18.062,21.139,18.062 +10174,319.746,271.818,404.768,261.669,585.857,271.482,410.825,93.180,49.653,93.180,338.478,321.501,350.612,18.028,23.528,18.028 +10175,319.777,272.193,404.745,261.328,585.431,271.845,410.608,93.391,40.236,93.391,338.532,321.092,350.279,18.131,24.076,18.131 +10176,319.807,272.534,404.650,260.882,584.529,272.154,410.586,93.662,30.964,93.662,336.719,320.702,348.616,17.979,25.039,17.979 +10177,319.844,273.046,403.331,260.181,583.820,272.595,409.876,93.945,21.251,93.945,335.651,320.299,348.773,18.095,26.044,18.095 +10178,319.885,273.818,402.371,259.842,583.782,273.240,409.877,94.399,11.427,94.399,333.783,318.099,348.840,18.100,25.474,18.100 +10179,319.918,274.407,401.617,258.559,583.587,273.722,409.830,94.764,1.397,94.764,332.348,317.150,348.831,18.021,24.944,18.021 +10180,319.949,275.017,401.091,257.608,582.649,274.247,409.639,95.143,170.538,95.143,330.444,317.290,347.609,18.316,24.167,18.316 +10181,319.979,275.835,400.631,256.335,582.471,274.958,409.568,95.609,160.974,95.609,329.833,317.254,347.791,18.367,23.471,18.367 +10182,320.015,276.809,399.141,254.715,582.262,275.697,409.506,96.125,150.461,96.125,327.165,318.022,348.016,18.440,22.447,18.440 +10183,320.046,277.992,397.736,253.090,582.008,276.604,409.452,96.754,140.194,96.754,324.653,318.428,348.248,18.241,21.126,18.241 +10184,320.077,279.537,394.972,251.130,582.189,277.561,409.794,97.595,130.101,97.595,318.845,319.693,348.752,18.371,19.364,18.371 +10185,320.108,281.331,389.053,249.998,582.844,278.280,410.179,98.219,120.005,98.219,307.179,320.755,349.869,17.958,19.332,17.958 +10186,320.138,285.445,371.471,249.205,583.670,279.133,410.920,99.090,109.885,99.090,270.717,321.489,350.618,17.853,19.568,17.853 +10187,320.170,294.132,331.672,248.167,584.283,280.138,411.327,99.964,99.648,99.964,190.009,323.055,351.759,17.822,19.017,17.822 +10188,320.201,282.895,404.838,247.500,584.000,281.658,411.575,100.399,90.000,100.399,337.819,322.000,351.517,18.412,21.000,18.412 +10189,320.232,283.923,406.385,247.771,583.956,282.904,411.482,101.310,80.720,101.310,341.634,323.030,352.030,18.827,22.564,18.827 +10190,320.262,283.923,406.385,247.771,583.956,282.904,411.482,101.310,80.720,101.310,341.634,323.030,352.030,18.827,22.564,18.827 +10191,320.291,285.432,406.436,246.063,583.388,284.265,411.745,102.395,70.051,102.395,340.811,321.667,351.684,18.997,20.353,18.997 +10192,320.323,287.640,407.042,244.937,582.159,286.482,411.710,103.935,59.664,103.935,341.254,320.958,350.873,19.171,20.612,19.171 +10193,320.354,288.752,407.510,241.711,582.396,287.413,412.581,104.797,49.635,104.797,341.221,319.786,351.710,18.862,24.649,18.862 +10194,320.387,290.859,407.017,239.863,581.152,289.289,412.458,106.095,39.685,106.095,340.242,318.549,351.569,18.757,24.675,18.757 +10195,320.419,293.253,407.128,237.762,579.675,291.481,412.711,107.613,29.899,107.613,339.070,318.025,350.785,18.866,24.902,18.866 +10196,320.452,295.755,406.854,235.205,577.799,293.712,412.743,109.134,20.266,109.134,337.760,316.918,350.228,19.107,26.007,19.107 +10197,320.484,298.595,406.295,232.568,576.595,296.022,413.077,110.772,9.462,110.772,336.277,315.646,350.785,18.990,24.660,18.990 +10198,320.515,301.530,406.851,229.000,575.500,298.363,414.402,112.751,0.000,112.751,334.400,314.000,350.776,19.188,23.000,19.188 +10199,320.547,304.907,407.571,225.731,573.931,301.300,415.396,114.749,170.838,114.749,333.986,315.153,351.219,19.284,22.961,19.284 +10200,320.578,308.900,406.456,222.165,571.978,303.896,416.395,116.721,160.974,116.721,329.181,315.298,351.435,19.177,21.320,19.177 +10201,320.610,313.623,404.989,218.131,569.746,306.723,417.558,118.768,151.996,118.768,323.406,315.523,352.082,19.336,19.853,19.336 +10202,320.639,321.167,400.525,214.604,568.140,309.753,419.358,121.218,143.419,121.218,309.063,316.395,353.107,19.436,19.793,19.436 +10203,320.670,333.885,387.423,211.320,566.799,311.596,420.857,123.690,135.507,123.690,273.745,316.183,354.109,17.473,19.786,17.473 +10204,320.701,361.199,358.511,208.234,565.198,314.193,422.752,126.193,128.491,126.193,195.852,317.646,355.056,17.696,19.511,17.696 +10205,320.730,361.199,358.511,208.234,565.198,314.193,422.752,126.193,128.491,126.193,195.852,317.646,355.056,17.696,19.511,17.696 +10206,320.759,322.304,419.681,204.716,562.513,317.899,425.344,127.875,121.857,127.875,341.176,318.115,355.525,18.681,19.724,18.681 +10207,320.790,324.682,423.790,201.904,559.955,321.136,427.874,130.972,115.201,130.972,344.990,318.603,355.809,19.392,20.651,19.392 +10208,320.822,327.314,427.837,198.585,556.711,324.583,430.621,134.444,107.503,134.444,348.690,318.497,356.491,19.139,20.016,19.139 +10209,320.855,331.797,431.601,194.422,552.470,328.472,434.584,138.106,99.135,138.106,348.075,317.797,357.007,19.759,20.094,19.759 +10210,320.889,335.990,435.705,191.332,547.011,332.669,438.293,142.063,90.481,142.063,348.200,316.090,356.621,19.742,18.596,19.742 +10211,320.922,340.654,440.231,188.359,541.168,336.931,442.712,146.310,82.000,146.310,347.520,315.799,356.467,19.415,18.606,19.415 +10212,320.955,344.887,446.299,184.994,534.295,341.015,448.466,150.758,73.207,150.758,347.257,314.166,356.131,21.110,19.249,21.110 +10213,320.987,348.064,451.072,181.763,526.393,344.013,452.976,154.824,64.310,154.824,347.185,312.716,356.137,21.403,19.091,21.403 +10214,321.021,351.961,457.672,178.735,518.261,347.145,459.403,160.224,55.317,160.224,346.550,312.560,356.784,20.290,20.074,20.290 +10215,321.052,354.314,466.125,175.286,508.848,349.402,467.384,165.619,46.417,165.619,347.775,309.758,357.917,20.317,20.737,20.317 +10216,321.084,357.304,475.092,174.325,498.970,351.723,475.904,171.730,37.504,171.730,346.464,308.394,357.743,19.361,20.847,19.361 +10217,321.115,360.684,484.729,173.379,488.050,352.830,485.006,177.982,28.575,177.982,343.175,308.301,358.893,18.473,21.006,18.473 +10218,321.146,371.123,495.927,173.219,478.065,352.459,494.500,4.373,19.544,4.373,322.505,307.748,359.942,19.097,20.186,19.097 +10219,321.177,426.313,519.888,174.717,466.396,351.161,505.290,10.993,9.908,10.993,208.131,307.648,361.246,18.235,19.211,18.235 +10220,321.208,354.395,516.809,177.566,456.469,348.572,514.878,18.349,1.488,18.349,349.128,307.260,361.398,19.288,20.720,19.288 +10221,321.238,350.200,525.600,182.838,448.027,346.341,523.670,26.565,170.538,26.565,351.510,308.413,360.140,25.044,18.741,25.044 +10222,321.269,344.385,535.423,189.203,435.561,341.123,533.248,33.690,162.429,33.690,353.344,308.708,361.185,25.239,17.716,25.239 +10223,321.300,336.940,546.894,197.693,424.872,333.506,543.816,41.878,153.199,41.878,351.822,309.044,361.045,24.519,17.842,24.519 +10224,321.330,336.940,546.894,197.693,424.872,333.506,543.816,41.878,153.199,41.878,351.822,309.044,361.045,24.519,17.842,24.519 +10225,321.358,326.919,557.832,207.985,415.795,323.829,554.009,51.054,143.881,51.054,350.793,309.886,360.625,23.077,17.859,23.077 +10226,321.388,315.518,566.452,220.000,407.500,312.856,561.878,59.791,135.000,59.791,349.685,310.420,360.268,23.003,17.678,23.003 +10227,321.421,302.932,573.124,232.581,400.987,300.916,568.135,67.997,125.538,67.997,350.389,309.684,361.151,20.980,17.670,20.980 +10228,321.453,288.865,578.411,246.500,396.000,287.233,571.759,76.218,116.565,76.218,347.107,309.919,360.805,22.814,17.889,22.814 +10229,321.485,276.671,581.706,258.935,394.404,276.091,573.730,85.844,106.086,85.844,344.200,307.721,360.194,23.592,20.397,23.592 +10230,321.517,258.570,591.770,270.776,399.940,259.464,576.533,93.355,98.552,93.355,323.379,297.624,353.905,23.370,19.153,23.370 +10231,321.549,243.418,600.843,285.978,410.989,248.451,578.666,102.785,90.637,102.785,298.169,276.138,343.650,21.143,17.732,21.143 +10232,321.580,232.637,579.021,303.886,420.707,234.058,575.350,111.161,82.694,111.161,330.971,265.824,338.844,19.614,19.939,19.614 +10233,321.611,222.479,568.698,320.605,423.807,223.820,566.347,119.691,71.053,119.691,338.119,269.432,343.532,20.194,23.829,20.194 +10234,321.642,212.937,559.013,329.560,420.139,216.200,554.836,127.993,61.113,127.993,341.264,293.530,351.865,19.945,24.939,19.945 +10235,321.672,204.802,549.372,335.754,421.619,209.158,545.179,136.095,51.789,136.095,341.700,311.721,353.791,19.444,24.291,19.444 +10236,321.703,197.767,540.054,344.260,431.165,202.657,536.494,143.945,42.325,143.945,340.845,315.145,352.943,19.966,23.844,19.966 +10237,321.734,192.589,531.502,350.820,442.552,197.907,528.609,151.457,33.354,151.457,338.787,317.590,350.894,22.792,20.406,22.792 +10238,321.764,187.848,520.115,356.853,453.719,193.614,517.834,158.409,24.341,158.409,338.353,319.300,350.756,20.844,20.044,20.844 +10239,321.794,187.848,520.115,356.853,453.719,193.614,517.834,158.409,24.341,158.409,338.353,319.300,350.756,20.844,20.044,20.844 +10240,321.824,184.780,510.163,361.207,463.722,191.728,508.335,165.256,14.931,165.256,336.135,320.919,350.505,20.258,19.840,20.258 +10241,321.856,180.281,500.986,363.455,474.455,190.344,499.529,171.764,5.628,171.764,329.501,322.591,349.836,18.934,20.728,18.934 +10242,321.888,109.401,492.644,364.093,483.186,190.046,490.576,178.531,177.567,178.531,187.015,322.474,348.358,17.199,18.859,17.199 +10243,321.920,162.734,480.665,363.932,492.670,190.297,482.664,4.149,168.419,4.149,292.537,322.817,347.808,17.973,20.910,17.973 +10244,321.952,175.405,471.821,362.655,502.440,191.472,474.702,10.166,160.530,10.166,314.135,323.004,346.783,19.055,22.370,19.055 +10245,321.982,180.796,464.581,360.609,511.201,193.078,467.930,15.255,151.631,15.255,320.565,322.186,346.026,19.295,23.458,19.295 +10246,322.013,184.826,457.830,358.027,519.535,195.073,461.606,20.225,142.125,20.225,324.025,321.793,345.866,19.458,24.733,19.458 +10247,322.044,189.060,451.026,354.714,526.686,197.995,454.855,23.199,133.854,23.199,325.246,321.160,344.686,25.736,24.913,25.736 +10248,322.074,192.288,445.492,350.976,533.483,200.509,449.789,27.597,125.272,27.597,325.688,321.648,344.239,25.177,25.050,25.177 +10249,322.106,196.205,440.092,347.400,539.700,203.796,444.750,31.535,116.565,31.535,326.304,321.994,344.116,26.325,24.597,26.325 +10250,322.139,201.114,434.565,344.100,544.700,208.167,439.767,36.409,108.435,36.409,325.835,321.287,343.362,25.844,24.033,25.844 +10251,322.171,202.798,433.465,340.217,549.724,209.355,438.656,38.367,100.421,38.367,326.359,322.262,343.084,24.828,23.118,24.828 +10252,322.203,205.575,429.448,336.554,554.039,212.190,435.285,41.424,92.121,41.424,326.003,322.483,343.647,25.230,21.319,25.230 +10253,322.234,208.500,425.000,332.971,558.346,215.579,432.079,45.000,84.043,45.000,324.562,323.314,344.585,24.749,19.399,24.749 +10254,322.265,211.420,421.904,330.367,561.532,218.947,430.217,47.842,76.417,47.842,321.824,324.273,344.253,24.333,18.977,24.333 \ No newline at end of file diff --git a/chaos_pdl/eval_model.py b/chaos_pdl/eval_model.py new file mode 100644 index 0000000..85e79e6 --- /dev/null +++ b/chaos_pdl/eval_model.py @@ -0,0 +1,335 @@ +# -*- coding: utf-8 -*- +""" +eval_model.py +- 加载训练好的 Transformer 模型(best_model.pt)和标准化参数(scaler.npz) +- 对单个 CSV 进行标准化、滑窗切片并评测:wRMSE / MSE / MAE(original) +- 可选输出最后一个窗口的预测与真值(反标准化)到 CSV + +使用示例: +uv run chaos_pdl/eval_model.py \ + --csv_path chaos_pdl/data/achieve2/raw/IMG_1119_out_metrics.csv \ + --model_path outputs/chaos/best_model.pt \ + --scaler_path outputs/chaos/scaler.npz \ + --seq_len 180 --stride 1 \ + --save_dir outputs/chaos +""" + +import argparse +import os +from typing import List + +import numpy as np +import pandas as pd +import torch + +# 复用训练脚本中的模块与评测函数 +# 兼容两种导入方式: +try: + # 优先按包路径导入(若将项目安装为包或以工作区根为 sys.path) + from chaos_pdl.pendulum_transformer import ( + TimeSeriesTransformer, + WeightedRMSELoss, + WindowedTSDataset, + ) +except ModuleNotFoundError: + # 退化为同目录导入(直接运行本脚本时更稳) + from pendulum_transformer import ( + TimeSeriesTransformer, + WeightedRMSELoss, + WindowedTSDataset, + ) + + +def build_windows_indices(T: int, seq_len: int, horizon: int, stride: int) -> np.ndarray: + """与训练一致:生成起点索引,确保 s+seq_len+horizon 不越界。""" + max_start = T - seq_len - horizon + if max_start < 0: + return np.array([], dtype=np.int64) + return np.arange(0, max_start + 1, stride, dtype=np.int64) + + +@torch.no_grad() +def evaluate_losses(model, loader, device, weighted_rmse: WeightedRMSELoss): + model.eval() + total_wrmse, total_mse = 0.0, 0.0 + count = 0 + mse_fn = torch.nn.MSELoss() + for xb, yb in loader: + xb = xb.to(device) + yb = yb.to(device) + pred = model(xb) + total_wrmse += weighted_rmse(pred, yb).item() * xb.size(0) + total_mse += mse_fn(pred, yb).item() * xb.size(0) + count += xb.size(0) + return total_wrmse / max(1, count), total_mse / max(1, count) + + +@torch.no_grad() +def mae_in_original_scale(model, loader, device, mean: np.ndarray, std: np.ndarray): + model.eval() + total_mae, count = 0.0, 0 + mean_t = torch.from_numpy(mean).to(device).view(1, 1, -1) + std_t = torch.from_numpy(std).to(device).view(1, 1, -1) + for xb, yb in loader: + xb = xb.to(device) + yb = yb.to(device) + pred = model(xb) + pred_denorm = pred * std_t + mean_t + yb_denorm = yb * std_t + mean_t + mae = torch.abs(pred_denorm - yb_denorm).mean() + total_mae += mae.item() * xb.size(0) + count += xb.size(0) + return total_mae / max(1, count) + + +def read_single_csv_align(path: str, expect_columns: List[str]) -> pd.DataFrame: + """ + 读取单个 CSV: + - 若含 frame_index,则按其排序并移除; + - 仅保留数值列; + - 校验列集合与 scaler 中记录的列一致,并按预期顺序重排。 + """ + df = pd.read_csv(path) + if "frame_index" in df.columns: + df = df.sort_values("frame_index").drop(columns=["frame_index"]) # 对齐训练逻辑 + df_num = df.select_dtypes(include=[np.number]).copy() + has = list(df_num.columns) + if set(has) != set(expect_columns): + raise ValueError( + f"CSV 数值列与训练时不一致\n 期望: {expect_columns}\n 实际: {has}\n" + "请确保列集合一致(名称与类型),且来源一致。" + ) + # 按 scaler 的列顺序重排 + df_num = df_num[expect_columns] + return df_num.reset_index(drop=True) + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--csv_path", type=str, required=True, help="待评测的 CSV 文件路径") + ap.add_argument("--model_path", type=str, default="./outputs/chaos/best_model.pt") + ap.add_argument("--scaler_path", type=str, default="./outputs/chaos/scaler.npz") + ap.add_argument("--seq_len", type=int, default=180, help="历史窗口长度 L(需与训练一致)") + ap.add_argument("--stride", type=int, default=1, help="评测滑窗步长") + ap.add_argument("--batch_size", type=int, default=1024) + ap.add_argument("--save_dir", type=str, default="", help="若提供,则保存最后一个窗口的预测/真值 CSV") + ap.add_argument( + "--plot_path", + type=str, + default="", + help="每步RMSE(原尺度)曲线图的保存路径(.png)。若未提供且有save_dir,则保存到 save_dir/per_step_rmse.png", + ) + ap.add_argument( + "--plot_heatmap", + action="store_true", + help="输出每步×每特征的RMSE热力图(原尺度),保存到 save_dir/per_step_feature_rmse.png 与 CSV", + ) + ap.add_argument( + "--plot_feature", + type=str, + default="", + help="指定一个特征名,对最后一个窗口画出预测与真值曲线;默认取第一个列名", + ) + + args = ap.parse_args() + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + print(f"Device: {device}") + + # 读取 scaler(包含列顺序) + sc = np.load(args.scaler_path, allow_pickle=True) + mean = sc["mean"] + std = sc["std"] + columns = list(sc["columns"].tolist()) + print(f"Scaler loaded. Columns={columns}") + + # 读取并对齐 CSV + df = read_single_csv_align(args.csv_path, columns) + values = df.values.astype(np.float32) + T, F = values.shape + print(f"Data loaded. T={T}, F={F}") + + # 加载模型 + ckpt = torch.load(args.model_path, map_location=device) + cfg = ckpt["config"] + loss_cfg = ckpt.get("loss_cfg", {"mode": "exp", "gamma": 0.99, "alpha": 0.02, "min_w": 0.05}) + horizon = int(cfg["horizon"]) # 评测时以 ckpt 中的 horizon 为准 + model = TimeSeriesTransformer( + in_features=F, + d_model=cfg["d_model"], + nhead=cfg["nhead"], + num_layers=cfg["num_layers"], + dim_feedforward=cfg["dim_ff"], + dropout=cfg["dropout"], + horizon=horizon, + ).to(device) + model.load_state_dict(ckpt["model_state"]) + model.eval() + + # 构造评测窗口 + starts = build_windows_indices(T, args.seq_len, horizon, args.stride) + if len(starts) == 0: + raise ValueError( + f"数据不足:T={T},需要至少 seq_len({args.seq_len})+horizon({horizon}) 帧。" + ) + print(f"Eval windows: {len(starts)} (L={args.seq_len}, H={horizon}, stride={args.stride})") + + # 标准化(使用训练好的 mean/std) + values_norm = (values - mean) / std + + # DataLoader + ds = WindowedTSDataset(values_norm, starts, args.seq_len, horizon) + loader = torch.utils.data.DataLoader(ds, batch_size=args.batch_size, shuffle=False) + + # 构造损失 + weighted_rmse = WeightedRMSELoss( + horizon=horizon, + mode=loss_cfg.get("mode", "exp"), + gamma=loss_cfg.get("gamma", 0.99), + alpha=loss_cfg.get("alpha", 0.02), + min_w=loss_cfg.get("min_w", 0.05), + ).to(device) + + # 评测 + val_wrmse, val_mse = evaluate_losses(model, loader, device, weighted_rmse) + val_mae_orig = mae_in_original_scale(model, loader, device, mean, std) + print( + f"[Eval] wRMSE={val_wrmse:.6f} | MSE={val_mse:.6f} | MAE(original)={val_mae_orig:.6f}" + ) + + # 统计每个预测步 t 的原尺度 RMSE,并可视化;可选统计每步×每特征的RMSE热力图 + try: + import matplotlib.pyplot as plt + model.eval() + H = horizon + # 累积每步的 MSE(原尺度) + step_sse = np.zeros(H, dtype=np.float64) + step_count = 0 # 累积的样本数(B*F)按 batch 聚合 + # 若需要热力图:累积 [H,F] 的平方误差和,以及样本计数(按窗口计数) + per_feat_sse = None # shape [H,F] + window_count = 0 + mean_t = torch.from_numpy(mean).to(device).view(1, 1, -1) + std_t = torch.from_numpy(std).to(device).view(1, 1, -1) + with torch.no_grad(): + for xb, yb in loader: + xb = xb.to(device) + yb = yb.to(device) + pred = model(xb) + pred_den = pred * std_t + mean_t + yb_den = yb * std_t + mean_t + err = pred_den - yb_den # [B,H,F] + # 对 batch 和 feature 求均方,先累加平方和,最后再除以总数 + sse_h = (err ** 2).sum(dim=(0, 2)).detach().cpu().numpy() # [H] + step_sse += sse_h + step_count += (xb.size(0) * xb.size(2)) + + if args.plot_heatmap: + sse_hf = (err ** 2).sum(dim=0).detach().cpu().numpy() # [H,F] 按 batch 合并 + if per_feat_sse is None: + per_feat_sse = sse_hf.astype(np.float64) + else: + per_feat_sse += sse_hf + window_count += xb.size(0) + + step_mse = step_sse / max(1, step_count) + step_rmse = np.sqrt(np.maximum(step_mse, 1e-12)) + + # 保存数据到 CSV(若 save_dir 提供) + if args.save_dir: + os.makedirs(args.save_dir, exist_ok=True) + csv_path = os.path.join(args.save_dir, "per_step_rmse.csv") + pd.DataFrame({ + "step": np.arange(1, H + 1), + "rmse": step_rmse, + "mse": step_mse, + }).to_csv(csv_path, index=False) + print(f"Saved: {csv_path}") + + # 绘图路径 + plot_path = args.plot_path + if not plot_path and args.save_dir: + plot_path = os.path.join(args.save_dir, "per_step_rmse.png") + if plot_path: + plt.figure(figsize=(8, 4.5)) + plt.plot(np.arange(1, H + 1), step_rmse, marker="o", lw=1.5) + plt.xlabel("Prediction step (t)") + plt.ylabel("RMSE (original scale)") + plt.title("Per-step RMSE vs prediction step") + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(plot_path, dpi=150) + print(f"Saved: {plot_path}") + + # 输出热力图与CSV + if args.plot_heatmap and per_feat_sse is not None and args.save_dir: + os.makedirs(args.save_dir, exist_ok=True) + per_feat_mse = per_feat_sse / max(1, window_count) # [H,F] 每步每特征 MSE(按窗口平均) + per_feat_rmse = np.sqrt(np.maximum(per_feat_mse, 1e-12)) + # CSV:行为 step,列为各特征 + csv_hm = os.path.join(args.save_dir, "per_step_feature_rmse.csv") + pd.DataFrame(per_feat_rmse, columns=columns, index=np.arange(1, H + 1)).to_csv(csv_hm) + print(f"Saved: {csv_hm}") + # 热力图 + plt.figure(figsize=(min(12, 1.5 + 0.35 * len(columns) + 6), 5)) + im = plt.imshow(per_feat_rmse, aspect="auto", origin="lower", cmap="viridis") + plt.colorbar(im, label="RMSE") + plt.yticks(ticks=np.arange(0, H, max(1, H // 10)), labels=(np.arange(1, H + 1)[::max(1, H // 10)])) + plt.xticks(ticks=np.arange(len(columns)), labels=columns, rotation=45, ha="right") + plt.xlabel("Feature") + plt.ylabel("Prediction step (t)") + plt.title("Per-step per-feature RMSE (original scale)") + plt.tight_layout() + hm_path = os.path.join(args.save_dir, "per_step_feature_rmse.png") + plt.savefig(hm_path, dpi=150) + print(f"Saved: {hm_path}") + except Exception as e: + print(f"[warn] 每步RMSE绘图失败:{e}") + + # 可选:保存最后一个窗口的预测与真值(反标准化) + if args.save_dir: + os.makedirs(args.save_dir, exist_ok=True) + last_start = int(starts[-1]) + x_last = values_norm[last_start : last_start + args.seq_len] + y_true = values[last_start + args.seq_len : last_start + args.seq_len + horizon] + with torch.no_grad(): + pred = ( + model(torch.from_numpy(x_last).unsqueeze(0).to(device)) + .cpu() + .numpy()[0] + ) + pred_denorm = pred * std + mean + # 保存为两份 CSV:pred 和 true,行是步长 t=1..H,列为各特征名 + pred_df = pd.DataFrame(pred_denorm, columns=columns) + true_df = pd.DataFrame(y_true, columns=columns) + pred_path = os.path.join(args.save_dir, "last_window_pred.csv") + true_path = os.path.join(args.save_dir, "last_window_true.csv") + pred_df.to_csv(pred_path, index=False) + true_df.to_csv(true_path, index=False) + print(f"Saved: {pred_path}\nSaved: {true_path}") + + # 可选:对某个特征画最后一个窗口的预测-真值曲线 + try: + import matplotlib.pyplot as plt + feat = args.plot_feature or columns[0] + if feat not in columns: + print(f"[warn] plot_feature='{feat}' 不在列中,使用默认 {columns[0]}") + feat = columns[0] + fi = columns.index(feat) + plt.figure(figsize=(7, 4)) + plt.plot(np.arange(1, horizon + 1), pred_denorm[:, fi], label="pred", marker="o", lw=1.5) + plt.plot(np.arange(1, horizon + 1), y_true[:, fi], label="true", marker="o", lw=1.5) + plt.xlabel("Prediction step (t)") + plt.ylabel(feat) + plt.title(f"Last window prediction vs truth: {feat}") + plt.grid(True, alpha=0.3) + plt.legend() + plt.tight_layout() + line_path = os.path.join(args.save_dir, f"last_window_{feat}_pred_vs_true.png") + plt.savefig(line_path, dpi=150) + print(f"Saved: {line_path}") + except Exception as e: + print(f"[warn] 最后窗口曲线绘图失败:{e}") + + +if __name__ == "__main__": + main() diff --git a/chaos_pdl/make_demo_video.py b/chaos_pdl/make_demo_video.py new file mode 100644 index 0000000..94ff468 --- /dev/null +++ b/chaos_pdl/make_demo_video.py @@ -0,0 +1,249 @@ +# -*- coding: utf-8 -*- +""" +make_demo_video.py +- 读取单个 CSV + 模型与标准化,进行滚动 1-step 预测,生成 10 秒预测示意视频 +- 画面:展示绿色/红色摆的真实位置(实线)与上一步预测到当前帧的预测位置(虚线) + +使用示例: +uv run -m chaos_pdl.make_demo_video \ + --csv_path chaos_pdl/data/metrics-20250920-000328_angles.csv \ + --model_path outputs/chaos/best_model.pt \ + --scaler_path outputs/chaos/scaler.npz \ + --seq_len 180 \ + --duration 10 \ + --fps 30 \ + --out_path outputs/chaos/demo.mp4 + +若系统未安装 ffmpeg,会自动回退为 GIF:outputs/chaos/demo.gif +""" + +import argparse +import os +from typing import List, Tuple + +import numpy as np +import pandas as pd +import torch +import matplotlib.pyplot as plt +from matplotlib.animation import FuncAnimation, FFMpegWriter, PillowWriter + +try: + from chaos_pdl.pendulum_transformer import TimeSeriesTransformer, WindowedTSDataset +except ModuleNotFoundError: + from pendulum_transformer import TimeSeriesTransformer, WindowedTSDataset + + +def read_align_csv(path: str, expect_columns: List[str]) -> pd.DataFrame: + df = pd.read_csv(path) + if "frame_index" in df.columns: + df = df.sort_values("frame_index").drop(columns=["frame_index"]) # 对齐训练逻辑 + df_num = df.select_dtypes(include=[np.number]).copy() + has = list(df_num.columns) + if set(has) != set(expect_columns): + raise ValueError( + f"CSV 数值列与训练不一致\n 期望: {expect_columns}\n 实际: {has}\n" + ) + return df_num[expect_columns].reset_index(drop=True) + + +def build_one_step_pred_sequence(values_norm: np.ndarray, model: TimeSeriesTransformer, device: torch.device, + seq_len: int, frame_idx_list: np.ndarray, batch_size: int = 512) -> np.ndarray: + """ + 对于每个目标帧 t,使用窗口 [t-L, t)(即以 t-1 为最后一帧)做前向,取 1-step 预测(pred[:, 0, :])。 + 返回形状 [N, F] 的反标准化前的预测(在外部再去反标准化)。 + 这里直接返回标准化空间预测(保留与训练一致的数值),由外层负责反标准化。 + """ + model.eval() + starts = frame_idx_list - seq_len # 每个 t 对应窗口起点(最后一帧是 t-1) + assert np.all(starts >= 0) + # 构造批量窗口 + preds_list = [] + with torch.no_grad(): + for i in range(0, len(starts), batch_size): + bs = starts[i:i + batch_size] + # 堆叠为 [B,L,F] + batch = np.stack([values_norm[s:s + seq_len] for s in bs], axis=0).astype(np.float32) + xb = torch.from_numpy(batch).to(device) + out = model(xb) # [B,H,F] + preds_list.append(out[:, 0, :].cpu().numpy()) # 取 t+1 的第一步 + return np.concatenate(preds_list, axis=0) # [N,F] + + +def angle_from_sin_cos(sin_v: float, cos_v: float) -> float: + return float(np.arctan2(sin_v, cos_v)) + + +def endpoint_from_angle(theta: float, length: float = 1.0) -> Tuple[float, float]: + # 以 (0,0) 为锚点,x=sin(theta), y=-cos(theta)(让角度0指向正下) + return (length * np.sin(theta), -length * np.cos(theta)) + + +def draw_frame(ax, true_row: np.ndarray, pred_row: np.ndarray, col_idx: dict, title: str): + ax.clear() + ax.set_aspect('equal', 'box') + ax.set_xlim(-1.2, 1.2) + ax.set_ylim(-1.2, 1.2) + ax.grid(True, alpha=0.2) + + # 真实角度 + g_theta = angle_from_sin_cos(true_row[col_idx['green_angle_sin']], true_row[col_idx['green_angle_cos']]) + r_theta = angle_from_sin_cos(true_row[col_idx['red_angle_sin']], true_row[col_idx['red_angle_cos']]) + gx, gy = endpoint_from_angle(g_theta) + rx, ry = endpoint_from_angle(r_theta) + + # 预测角度(上一步预测到当前帧) + pg_theta = angle_from_sin_cos(pred_row[col_idx['green_angle_sin']], pred_row[col_idx['green_angle_cos']]) + pr_theta = angle_from_sin_cos(pred_row[col_idx['red_angle_sin']], pred_row[col_idx['red_angle_cos']]) + pgx, pgy = endpoint_from_angle(pg_theta) + prx, pry = endpoint_from_angle(pr_theta) + + # 真实(实线) + ax.plot([0, gx], [0, gy], color='tab:green', lw=3, label='green-true') + ax.plot([0, rx], [0, ry], color='tab:red', lw=3, label='red-true') + ax.scatter([gx, rx], [gy, ry], color=['tab:green', 'tab:red'], s=40) + + # 预测(虚线半透明) + ax.plot([0, pgx], [0, pgy], color='tab:green', lw=2, ls='--', alpha=0.7, label='green-pred') + ax.plot([0, prx], [0, pry], color='tab:red', lw=2, ls='--', alpha=0.7, label='red-pred') + ax.scatter([pgx, prx], [pgy, pry], color=['tab:green', 'tab:red'], s=30, alpha=0.7) + + ax.legend(loc='upper right') + ax.set_title(title) + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument('--csv_path', type=str, required=True, help='输入 CSV(需要包含训练使用的列)') + ap.add_argument('--model_path', type=str, default='outputs/chaos/best_model.pt') + ap.add_argument('--scaler_path', type=str, default='outputs/chaos/scaler.npz') + ap.add_argument('--seq_len', type=int, default=180) + ap.add_argument('--duration', type=int, default=10, help='视频秒数') + ap.add_argument('--fps', type=int, default=30) + ap.add_argument('--out_path', type=str, default='outputs/chaos/demo.mp4') + ap.add_argument('--start_from_end', action='store_true', help='从序列末尾倒推所需时长;不设则从 seq_len 处开始') + ap.add_argument('--batch_size', type=int, default=512) + ap.add_argument('--orient', type=str, default='down', choices=['down', 'right'], + help='坐标映射:down -> (x=sin(theta), y=-cos(theta)); right -> (x=cos(theta), y=sin(theta))') + ap.add_argument('--debug_stats', action='store_true', help='打印窗口内若干关键列的最小/最大值,排查坐标恒正等问题') + + args = ap.parse_args() + + device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') + + sc = np.load(args.scaler_path, allow_pickle=True) + mean = sc['mean'].astype(np.float32) + std = sc['std'].astype(np.float32) + columns = list(sc['columns'].tolist()) + col_idx = {c: i for i, c in enumerate(columns)} + + # 加载模型 + ckpt = torch.load(args.model_path, map_location=device) + cfg = ckpt['config'] + H = int(cfg['horizon']) + model = TimeSeriesTransformer( + in_features=len(columns), + d_model=cfg['d_model'], + nhead=cfg['nhead'], + num_layers=cfg['num_layers'], + dim_feedforward=cfg['dim_ff'], + dropout=cfg['dropout'], + horizon=H, + ).to(device) + model.load_state_dict(ckpt['model_state']) + model.eval() + + # 数据 + df = read_align_csv(args.csv_path, columns) + values = df.values.astype(np.float32) + T = len(values) + if T < args.seq_len + 2: + raise ValueError(f'数据太短:需要至少 {args.seq_len + 2} 行,当前 {T}') + + # 选择时间范围 + N_frames = args.duration * args.fps + if args.start_from_end: # 从末尾倒推 + end_t = T - 1 + start_t = max(args.seq_len, end_t - N_frames + 1) + else: + start_t = args.seq_len + end_t = min(T - 1, start_t + N_frames - 1) + frame_ts = np.arange(start_t, end_t + 1, dtype=np.int64) + N_frames = len(frame_ts) + + # 标准化 + values_norm = (values - mean) / std + + # 为每个 t 进行 1-step 预测:窗口是 [t-L, t),目标是 t + preds_norm = build_one_step_pred_sequence(values_norm, model, device, args.seq_len, frame_ts, args.batch_size) + preds = preds_norm * std + mean # 反标准化 + + # 真实对应行 + truths = values[frame_ts] + + # 可选调试:打印该时段关键列范围 + if args.debug_stats: + def rng(name): + i = col_idx[name] + return float(truths[:, i].min()), float(truths[:, i].max()) + keys = [ + 'green_angle_sin','green_angle_cos','red_angle_sin','red_angle_cos' + ] + avail = [k for k in keys if k in col_idx] + for k in avail: + lo, hi = rng(k) + print(f"[debug] {k}: min={lo:.4f}, max={hi:.4f}") + + # 准备动画 + fig, ax = plt.subplots(figsize=(5, 5)) + + def update(i): + t = frame_ts[i] + title = f't={int(t)} (frame {i+1}/{N_frames})' + # 根据 orient 选择坐标映射 + if args.orient == 'down': + draw_frame(ax, truths[i], preds[i], col_idx, title) + else: # 'right' + def angle_from_sc(row, which): + return float(np.arctan2(row[col_idx[f'{which}_angle_sin']], row[col_idx[f'{which}_angle_cos']])) + def xy_from_theta(theta): + return (np.cos(theta), np.sin(theta)) + ax.clear() + ax.set_aspect('equal', 'box') + ax.set_xlim(-1.2, 1.2) + ax.set_ylim(-1.2, 1.2) + ax.grid(True, alpha=0.2) + # 真实 + g_t = angle_from_sc(truths[i], 'green'); r_t = angle_from_sc(truths[i], 'red') + gx, gy = xy_from_theta(g_t); rx, ry = xy_from_theta(r_t) + # 预测 + pg_t = angle_from_sc(preds[i], 'green'); pr_t = angle_from_sc(preds[i], 'red') + pgx, pgy = xy_from_theta(pg_t); prx, pry = xy_from_theta(pr_t) + ax.plot([0, gx],[0, gy], color='tab:green', lw=3, label='green-true') + ax.plot([0, rx],[0, ry], color='tab:red', lw=3, label='red-true') + ax.scatter([gx, rx],[gy, ry], color=['tab:green','tab:red'], s=40) + ax.plot([0, pgx],[0, pgy], color='tab:green', lw=2, ls='--', alpha=0.7, label='green-pred') + ax.plot([0, prx],[0, pry], color='tab:red', lw=2, ls='--', alpha=0.7, label='red-pred') + ax.scatter([pgx, prx],[pgy, pry], color=['tab:green','tab:red'], s=30, alpha=0.7) + ax.legend(loc='upper right') + ax.set_title(title) + return [] + + anim = FuncAnimation(fig, update, frames=N_frames, interval=1000.0 / args.fps, blit=False) + + # 存储 + os.makedirs(os.path.dirname(args.out_path), exist_ok=True) + try: + writer = FFMpegWriter(fps=args.fps, bitrate=1800) + anim.save(args.out_path, writer=writer) + print(f'Saved video: {args.out_path}') + except Exception as e: + # 回退为 GIF + gif_path = os.path.splitext(args.out_path)[0] + '.gif' + print(f'[warn] 写入 mp4 失败(可能缺少 ffmpeg):{e}\n回退为 GIF -> {gif_path}') + writer = PillowWriter(fps=args.fps) + anim.save(gif_path, writer=writer) + print(f'Saved GIF: {gif_path}') + + +if __name__ == '__main__': + main() diff --git a/chaos_pdl/normalize_csv_batch.py b/chaos_pdl/normalize_csv_batch.py new file mode 100644 index 0000000..4dd4a9c --- /dev/null +++ b/chaos_pdl/normalize_csv_batch.py @@ -0,0 +1,220 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +批量处理 CSV: +- 从 CSV(支持多个路径或通配符)读取中国语系 GB2312 编码数据; +- 对黄色/红色圆心序列分别做最小二乘圆拟合; +- 计算角度的 sin/cos 以及按拟合圆归一化后的坐标(pos_sin/pos_cos); +- 导出 UTF-8 CSV 到指定输出目录; +- 可选保存拟合示意图 PNG。 + +用法示例: + 1) 处理一个/多个文件: + python circle_fit_batch.py data/3.csv data/4.csv -o outputs + + 2) 使用通配符批量处理: + python circle_fit_batch.py "data/*.csv" -o outputs + + 3) 指定不同编码或禁用绘图: + python circle_fit_batch.py "data/*.csv" -o outputs --encoding gb2312 --no-plot + + 4) 指定中文字体文件用于图例(可选): + python circle_fit_batch.py "data/*.csv" -o outputs --font "/path/to/PingFang Regular.ttf" +""" +import argparse +import glob +import math +import os +import sys +from typing import Tuple, List + +import numpy as np +import pandas as pd + +# 后端设为无界面,以便在服务器/批处理环境下保存图像 +import matplotlib +matplotlib.use("Agg") +import matplotlib.pyplot as plt +from matplotlib import font_manager + +REQUIRED_COLS = [ + "帧序号", + "黄色与水平线夹角(度)", + "红色与水平线夹角(度)", + "黄色外接圆圆心X", + "黄色外接圆圆心Y", + "红色相关外接圆圆心X", + "红色相关外接圆圆心Y", +] + + +def fit_circle_lstsq(x: np.ndarray, y: np.ndarray) -> Tuple[float, float, float]: + """最小二乘拟合圆:解 x^2 + y^2 = 2 a x + 2 b y + c + 返回 (cx, cy, r) + """ + x = np.asarray(x, dtype=np.float64) + y = np.asarray(y, dtype=np.float64) + A = np.c_[2 * x, 2 * y, np.ones_like(x)] + b = x * x + y * y + sol, *_ = np.linalg.lstsq(A, b, rcond=None) + a, b_, c = sol + cx, cy = a, b_ + r = math.sqrt(max(cx * cx + cy * cy + c, 0.0)) + return float(cx), float(cy), float(r) + + +def deg_to_cos_sin(deg: np.ndarray) -> Tuple[np.ndarray, np.ndarray]: + """角度(度) -> (cos, sin)""" + rad = np.radians(deg.astype(np.float64)) + return np.cos(rad), np.sin(rad) + + +def expand_inputs(inputs: List[str]) -> List[str]: + files: List[str] = [] + for pat in inputs: + matched = glob.glob(pat) + if matched: + files.extend(matched) + else: + # 若未匹配到且参数本身是一个存在的文件,也加入 + if os.path.isfile(pat): + files.append(pat) + # 去重并排序,便于稳定输出 + files = sorted(set(files)) + return files + + +def ensure_output_dir(out_dir: str) -> None: + if not os.path.isdir(out_dir): + os.makedirs(out_dir, exist_ok=True) + + +def process_one_csv(csv_path: str, out_dir: str, encoding: str, plot: bool, font_path: str = None, overwrite: bool = False) -> None: + base = os.path.splitext(os.path.basename(csv_path))[0] + out_csv = os.path.join(out_dir, f"{base}_angles.csv") + out_png = os.path.join(out_dir, f"{base}_circle_fit.png") + + if not overwrite and os.path.exists(out_csv): + print(f"[SKIP] 输出已存在(使用 --overwrite 覆盖):{out_csv}") + return + + try: + df = pd.read_csv(csv_path, encoding=encoding) + except Exception as e: + print(f"[ERROR] 读取失败:{csv_path} ({e})") + return + + missing = [c for c in REQUIRED_COLS if c not in df.columns] + if missing: + print(f"[ERROR] 列缺失:{csv_path} 缺少 {missing}") + return + + # 提取列 + yellow_x = df["黄色外接圆圆心X"].astype(float).to_numpy() + yellow_y = df["黄色外接圆圆心Y"].astype(float).to_numpy() + red_x = df["红色相关外接圆圆心X"].astype(float).to_numpy() + red_y = df["红色相关外接圆圆心Y"].astype(float).to_numpy() + + # 圆拟合 + ycx, ycy, yr = fit_circle_lstsq(yellow_x, yellow_y) + rcx, rcy, rr = fit_circle_lstsq(red_x, red_y) + + if yr <= 0 or rr <= 0 or not np.isfinite([yr, rr]).all(): + print(f"[ERROR] 拟合半径非法(<=0 或 非数),文件:{csv_path}") + return + + # 角度 -> cos/sin + yellow_angle_deg = pd.to_numeric(df["黄色与水平线夹角(度)"], errors="coerce").to_numpy() + red_angle_deg = pd.to_numeric(df["红色与水平线夹角(度)"], errors="coerce").to_numpy() + yellow_angle_cos, yellow_angle_sin = deg_to_cos_sin(yellow_angle_deg) + red_angle_cos, red_angle_sin = deg_to_cos_sin(red_angle_deg) + + # 位置按拟合圆归一化(cosx=沿X方向的归一化偏移;cosy=沿Y方向的归一化偏移) + yellow_cosx = (yellow_x - ycx) / yr + yellow_cosy = (yellow_y - ycy) / yr + red_cosx = (red_x - rcx) / rr + red_cosy = (red_y - rcy) / rr + + out_df = pd.DataFrame({ + "frame_index": df["帧序号"], + "yellow_angle_sin": yellow_angle_sin, + "yellow_angle_cos": yellow_angle_cos, + "red_angle_sin": red_angle_sin, + "red_angle_cos": red_angle_cos, + "yellow_pos_sin": yellow_cosy, + "yellow_pos_cos": yellow_cosx, + "red_pos_sin": red_cosy, + "red_pos_cos": red_cosx, + }) + + try: + out_df.to_csv(out_csv, index=False, encoding="utf-8") + print(f"[OK] 导出:{out_csv} | 黄圆 (cx,cy,r)=({ycx:.6g},{ycy:.6g},{yr:.6g}) 红圆 (cx,cy,r)=({rcx:.6g},{rcy:.6g},{rr:.6g})") + except Exception as e: + print(f"[ERROR] 写出 CSV 失败:{out_csv} ({e})") + + if plot: + # 字体(可选) + if font_path: + try: + font_manager.fontManager.addfont(font_path) + # 若传入中文字体,则优先用它显示中文 + font_name = os.path.splitext(os.path.basename(font_path))[0] + plt.rcParams["font.sans-serif"] = [font_name] + except Exception as e: + print(f"[WARN] 字体加载失败:{font_path} ({e})") + + fig, ax = plt.subplots() + ax.set_aspect("equal", "box") + ax.scatter(yellow_x, yellow_y, s=1, label="黄色") + ax.scatter(red_x, red_y, s=1, label="红色") + + circle1 = plt.Circle((ycx, ycy), yr, color="orange", fill=False, label="拟合黄色圆") + circle2 = plt.Circle((rcx, rcy), rr, color="red", fill=False, label="拟合红色圆") + ax.add_artist(circle1) + ax.add_artist(circle2) + ax.legend() + + try: + fig.savefig(out_png, dpi=150, bbox_inches="tight") + print(f"[OK] 拟合图:{out_png}") + finally: + plt.close(fig) + + +def parse_args(): + p = argparse.ArgumentParser(description="批量对 CSV 进行圆拟合与角度/位置归一化导出") + p.add_argument("inputs", nargs="+", help="输入 CSV 路径或通配符(可多个),例如 data/3.csv 或 \"data/*.csv\"") + p.add_argument("-o", "--output-dir", required=True, help="输出目录,将在其中生成 *_angles.csv 与 *_circle_fit.png") + p.add_argument("--encoding", default="gb2312", help="输入 CSV 编码(默认 gb2312)") + p.add_argument("--no-plot", action="store_true", help="不保存拟合示意图 PNG") + p.add_argument("--font", default=None, help="可选:中文字体文件路径(用于图例/标签显示中文)") + p.add_argument("--overwrite", action="store_true", help="若输出文件存在则覆盖") + return p.parse_args() + + +def main(): + args = parse_args() + files = expand_inputs(args.inputs) + if not files: + print("[ERROR] 未找到任何输入文件。请检查路径/通配符。", file=sys.stderr) + sys.exit(2) + + ensure_output_dir(args.output_dir) + + print(f"共 {len(files)} 个文件,将输出到:{args.output_dir}") + for fp in files: + print(f"==> 处理:{fp}") + process_one_csv( + csv_path=fp, + out_dir=args.output_dir, + encoding=args.encoding, + plot=(not args.no_plot), + font_path=args.font, + overwrite=args.overwrite, + ) + + +if __name__ == "__main__": + main() diff --git a/chaos_pdl/normalize_csv_batch_2.py b/chaos_pdl/normalize_csv_batch_2.py new file mode 100644 index 0000000..6d29546 --- /dev/null +++ b/chaos_pdl/normalize_csv_batch_2.py @@ -0,0 +1,241 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +批量处理 CSV: +- 从 CSV(支持多个路径或通配符)读取中国语系 GB2312 编码数据; +- 对黄色/红色圆心序列分别做最小二乘圆拟合; +- 计算角度的 sin/cos 以及按拟合圆归一化后的坐标(pos_sin/pos_cos); +- 导出 UTF-8 CSV 到指定输出目录; +- 可选保存拟合示意图 PNG。 + +用法示例: + 1) 处理一个/多个文件: + python circle_fit_batch.py data/3.csv data/4.csv -o outputs + + 2) 使用通配符批量处理: + python circle_fit_batch.py "data/*.csv" -o outputs + + 3) 指定不同编码或禁用绘图: + python circle_fit_batch.py "data/*.csv" -o outputs --encoding gb2312 --no-plot + + 4) 指定中文字体文件用于图例(可选): + python circle_fit_batch.py "data/*.csv" -o outputs --font "/path/to/PingFang Regular.ttf" +""" +import argparse +import glob +import math +import os +import sys +from typing import Tuple, List + +import numpy as np +import pandas as pd + +# 后端设为无界面,以便在服务器/批处理环境下保存图像 +import matplotlib +matplotlib.use("Agg") +import matplotlib.pyplot as plt +from matplotlib import font_manager + +REQUIRED_COLS = [ + "frameIndex", + "time", + "greenRectRotation", + "blueRectRotation", + "greenRectCenterX", + "greenRectCenterY", + "blueRectCenterX", + "blueRectCenterY", +] + + +def fit_circle_lstsq(x: np.ndarray, y: np.ndarray) -> Tuple[float, float, float]: + """最小二乘拟合圆:解 x^2 + y^2 = 2 a x + 2 b y + c + 返回 (cx, cy, r) + """ + x = np.asarray(x, dtype=np.float64) + y = np.asarray(y, dtype=np.float64) + A = np.c_[2 * x, 2 * y, np.ones_like(x)] + b = x * x + y * y + sol, *_ = np.linalg.lstsq(A, b, rcond=None) + a, b_, c = sol + cx, cy = a, b_ + r = math.sqrt(max(cx * cx + cy * cy + c, 0.0)) + return float(cx), float(cy), float(r) + + +def deg_to_cos_sin(deg: np.ndarray) -> Tuple[np.ndarray, np.ndarray]: + """角度(度) -> (cos, sin)""" + rad = np.radians(deg.astype(np.float64)) + return np.cos(rad), np.sin(rad) + + +def expand_inputs(inputs: List[str]) -> List[str]: + files: List[str] = [] + for pat in inputs: + matched = glob.glob(pat) + if matched: + files.extend(matched) + else: + # 若未匹配到且参数本身是一个存在的文件,也加入 + if os.path.isfile(pat): + files.append(pat) + # 去重并排序,便于稳定输出 + files = sorted(set(files)) + return files + +def ensure_output_dir(out_dir: str) -> None: + if not os.path.isdir(out_dir): + os.makedirs(out_dir, exist_ok=True) + + +def process_one_csv(csv_path: str, out_dir: str, encoding: str, plot: bool, font_path: str = None, overwrite: bool = False) -> None: + base = os.path.splitext(os.path.basename(csv_path))[0] + out_csv = os.path.join(out_dir, f"{base}_angles.csv") + out_png = os.path.join(out_dir, f"{base}_circle_fit.png") + + if not overwrite and os.path.exists(out_csv): + print(f"[SKIP] 输出已存在(使用 --overwrite 覆盖):{out_csv}") + return + + try: + df = pd.read_csv(csv_path, encoding=encoding) + except Exception as e: + print(f"[ERROR] 读取失败:{csv_path} ({e})") + return + + missing = [c for c in REQUIRED_COLS if c not in df.columns] + if missing: + print(f"[ERROR] 列缺失:{csv_path} 缺少 {missing}") + return + + # 将必要列转为数值,无法解析的置为 NaN + for c in REQUIRED_COLS: + df[c] = pd.to_numeric(df[c], errors="coerce") + + # 逐帧过滤:若任一必要列缺失/非数,则剔除该帧 + valid_mask = df[REQUIRED_COLS].notna().all(axis=1) + dropped = int(len(df) - valid_mask.sum()) + df_valid = df.loc[valid_mask].reset_index(drop=True) + if dropped > 0: + print(f"[INFO] 已过滤 {dropped} 帧(必要列缺失),保留 {len(df_valid)} 帧:{csv_path}") + + # 至少需要 2 帧来计算 deltaTime + if len(df_valid) < 2: + print(f"[ERROR] 有效帧不足2帧,无法计算deltaTime:{csv_path}") + return + + # 基于过滤后的时间序列计算 deltaTime;输出与其它列对齐(从第2帧开始) + time = df_valid["time"].to_numpy(dtype=float) + delta_time = np.diff(time) + + # 从第2帧开始提取所有数据(与 delta_time 对齐) + green_x = df_valid["greenRectCenterX"].to_numpy(dtype=float)[1:] + green_y = df_valid["greenRectCenterY"].to_numpy(dtype=float)[1:] + red_x = df_valid["blueRectCenterX"].to_numpy(dtype=float)[1:] + red_y = df_valid["blueRectCenterY"].to_numpy(dtype=float)[1:] + + # 圆拟合 + ycx, ycy, yr = fit_circle_lstsq(green_x, green_y) + rcx, rcy, rr = fit_circle_lstsq(red_x, red_y) + + if yr <= 0 or rr <= 0 or not np.isfinite([yr, rr]).all(): + print(f"[ERROR] 拟合半径非法(<=0 或 非数),文件:{csv_path}") + return + + # 角度 -> cos/sin (从第2帧开始) + green_angle_deg = df_valid["greenRectRotation"].to_numpy(dtype=float)[1:] + red_angle_deg = df_valid["blueRectRotation"].to_numpy(dtype=float)[1:] + green_angle_cos, green_angle_sin = deg_to_cos_sin(green_angle_deg) + red_angle_cos, red_angle_sin = deg_to_cos_sin(red_angle_deg) + + # 位置按拟合圆归一化(cosx=沿X方向的归一化偏移;cosy=沿Y方向的归一化偏移) + green_cosx = (green_x - ycx) / yr + green_cosy = (green_y - ycy) / yr + red_cosx = (red_x - rcx) / rr + red_cosy = (red_y - rcy) / rr + + out_df = pd.DataFrame({ + "frame_index": df_valid["frameIndex"].to_numpy()[1:], # 从第2帧开始 + "delta_time": delta_time, + "green_angle_sin": green_angle_sin, + "green_angle_cos": green_angle_cos, + "red_angle_sin": red_angle_sin, + "red_angle_cos": red_angle_cos, + "green_pos_sin": green_cosy, + "green_pos_cos": green_cosx, + "red_pos_sin": red_cosy, + "red_pos_cos": red_cosx, + }) + + try: + out_df.to_csv(out_csv, index=False, encoding="utf-8") + print(f"[OK] 导出:{out_csv} | 黄圆 (cx,cy,r)=({ycx:.6g},{ycy:.6g},{yr:.6g}) 红圆 (cx,cy,r)=({rcx:.6g},{rcy:.6g},{rr:.6g})") + except Exception as e: + print(f"[ERROR] 写出 CSV 失败:{out_csv} ({e})") + + if plot: + # 字体(可选) + if font_path: + try: + font_manager.fontManager.addfont(font_path) + # 若传入中文字体,则优先用它显示中文 + font_name = os.path.splitext(os.path.basename(font_path))[0] + plt.rcParams["font.sans-serif"] = [font_name] + except Exception as e: + print(f"[WARN] 字体加载失败:{font_path} ({e})") + + fig, ax = plt.subplots() + ax.set_aspect("equal", "box") + ax.scatter(green_x, green_y, s=1, label="黄色") + ax.scatter(red_x, red_y, s=1, label="红色") + + circle1 = plt.Circle((ycx, ycy), yr, color="orange", fill=False, label="拟合黄色圆") + circle2 = plt.Circle((rcx, rcy), rr, color="red", fill=False, label="拟合红色圆") + ax.add_artist(circle1) + ax.add_artist(circle2) + ax.legend() + + try: + fig.savefig(out_png, dpi=150, bbox_inches="tight") + print(f"[OK] 拟合图:{out_png}") + finally: + plt.close(fig) + + +def parse_args(): + p = argparse.ArgumentParser(description="批量对 CSV 进行圆拟合与角度/位置归一化导出") + p.add_argument("inputs", nargs="+", help="输入 CSV 路径或通配符(可多个),例如 data/3.csv 或 \"data/*.csv\"") + p.add_argument("-o", "--output-dir", required=True, help="输出目录,将在其中生成 *_angles.csv 与 *_circle_fit.png") + p.add_argument("--encoding", default="utf-8", help="输入 CSV 编码(默认 utf-8)") + p.add_argument("--no-plot", action="store_true", help="不保存拟合示意图 PNG") + p.add_argument("--font", default=None, help="可选:中文字体文件路径(用于图例/标签显示中文)") + p.add_argument("--overwrite", action="store_true", help="若输出文件存在则覆盖") + return p.parse_args() + + +def main(): + args = parse_args() + files = expand_inputs(args.inputs) + if not files: + print("[ERROR] 未找到任何输入文件。请检查路径/通配符。", file=sys.stderr) + sys.exit(2) + + ensure_output_dir(args.output_dir) + + print(f"共 {len(files)} 个文件,将输出到:{args.output_dir}") + for fp in files: + print(f"==> 处理:{fp}") + process_one_csv( + csv_path=fp, + out_dir=args.output_dir, + encoding=args.encoding, + plot=(not args.no_plot), + font_path=args.font, + overwrite=args.overwrite, + ) + + +if __name__ == "__main__": + main() diff --git a/chaos_pdl/pendulum_transformer.py b/chaos_pdl/pendulum_transformer.py new file mode 100644 index 0000000..d1de026 --- /dev/null +++ b/chaos_pdl/pendulum_transformer.py @@ -0,0 +1,448 @@ +# -*- coding: utf-8 -*- +""" +train_ts_transformer_multi.py +- 同时读取多个 CSV(列名需一致;若存在 frame_index 会按其排序并移除) +- Transformer Encoder 进行多步预测(默认输入 240 帧,预测 30 帧) +- 训练/验证集“均匀交错抽样”划分,可设置 val_gap 减少邻近泄漏 +- 标准化仅用训练窗口拟合,避免验证泄漏 +- 损失:按预测步 t 递减权重的加权 RMSE(支持指数/线性衰减) +- 保存 best_model.pt 与 scaler.npz +""" + +import argparse +import os +import math +import random +from typing import List, Tuple + +import numpy as np +import pandas as pd +import torch +from torch import nn +from torch.utils.data import Dataset, DataLoader + + +def set_seed(seed: int = 42): + random.seed(seed) + np.random.seed(seed) + torch.manual_seed(seed) + torch.cuda.manual_seed_all(seed) + + +class WindowedTSDataset(Dataset): + def __init__(self, X_norm: np.ndarray, starts: np.ndarray, seq_len: int, horizon: int): + self.X = X_norm.astype(np.float32) # [T_total, F] + self.starts = starts.astype(np.int64) # 全局起点索引(已处理多文件偏移) + self.seq_len = seq_len + self.horizon = horizon + + def __len__(self): + return len(self.starts) + + def __getitem__(self, idx): + s = int(self.starts[idx]) + x = self.X[s: s + self.seq_len] # [L, F] + y = self.X[s + self.seq_len: s + self.seq_len + self.horizon] # [H, F] + return torch.from_numpy(x), torch.from_numpy(y) + + +class PositionalEncoding(nn.Module): + def __init__(self, d_model: int, dropout: float = 0.1, max_len: int = 10000): + super().__init__() + self.dropout = nn.Dropout(p=dropout) + pe = torch.zeros(max_len, d_model) + position = torch.arange(0, max_len, dtype=torch.float32).unsqueeze(1) + div_term = torch.exp( + torch.arange(0, d_model, 2, dtype=torch.float32) * (-math.log(10000.0) / d_model) + ) + pe[:, 0::2] = torch.sin(position * div_term) + pe[:, 1::2] = torch.cos(position * div_term) + self.register_buffer("pe", pe.unsqueeze(1)) # [max_len, 1, d_model] + + def forward(self, x: torch.Tensor): + # x: [S, N, E] + x = x + self.pe[: x.size(0)] + return self.dropout(x) + + +class TimeSeriesTransformer(nn.Module): + def __init__(self, in_features: int, d_model: int, nhead: int, num_layers: int, + dim_feedforward: int, dropout: float, horizon: int): + super().__init__() + self.in_features = in_features + self.horizon = horizon + self.input_proj = nn.Linear(in_features, d_model) + self.pos_enc = PositionalEncoding(d_model, dropout=dropout) + enc_layer = nn.TransformerEncoderLayer( + d_model=d_model, nhead=nhead, dim_feedforward=dim_feedforward, + dropout=dropout, batch_first=False, norm_first=True + ) + self.encoder = nn.TransformerEncoder(enc_layer, num_layers=num_layers) + self.head = nn.Sequential( + nn.LayerNorm(d_model), + nn.Linear(d_model, horizon * in_features), + ) + + def forward(self, x: torch.Tensor): + # x: [B, L, F] + B, L, F = x.shape + h = self.input_proj(x).transpose(0, 1) # [L, B, d] + h = self.pos_enc(h) + h = self.encoder(h) # [L, B, d] + h_last = h[-1] # [B, d] + y = self.head(h_last).view(B, self.horizon, self.in_features) # [B, H, F] + return y + + +def build_windows_indices(T: int, seq_len: int, horizon: int, stride: int) -> np.ndarray: + max_start = T - seq_len - horizon + if max_start < 0: + return np.array([], dtype=np.int64) + return np.arange(0, max_start + 1, stride, dtype=np.int64) + + +def interleaved_split(starts: np.ndarray, val_ratio: float, val_gap: int = 0) -> Tuple[np.ndarray, np.ndarray]: + assert 0.0 < val_ratio < 1.0 + total = len(starts) + if total == 0: + return np.array([], dtype=np.int64), np.array([], dtype=np.int64) + every = max(int(round(1.0 / val_ratio)), 2) + # 安全裁剪 val_gap:若 2*val_gap+1 >= every,会把所有索引都覆盖掉 + safe_gap = int(min(max((every - 2) // 2, 0), val_gap)) + if safe_gap != val_gap: + print(f"[warn] val_gap={val_gap} 过大,按交错周期 every={every} 自动裁剪为 {safe_gap},以避免训练集为空。") + idx_all = np.arange(total, dtype=np.int64) + val_mask = (idx_all % every) == 0 + val_idx = idx_all[val_mask] + train_mask = ~val_mask + if safe_gap > 0: + drop = set() + for v in val_idx: + lo = max(0, v - safe_gap) + hi = min(total - 1, v + safe_gap) + for t in range(lo, hi + 1): + drop.add(t) + if drop: + train_mask[list(drop)] = False + train_idx = idx_all[train_mask] + return starts[train_idx], starts[val_idx] + + +def fit_scaler_from_windows(X: np.ndarray, train_starts: np.ndarray, seq_len: int) -> Tuple[np.ndarray, np.ndarray]: + chunks = [X[s:s + seq_len] for s in train_starts] + if not chunks: + raise ValueError("训练窗口为空,无法拟合标准化。") + arr = np.concatenate(chunks, axis=0) # [N_train*L, F] + mean = arr.mean(axis=0) + std = arr.std(axis=0) + std[std < 1e-6] = 1e-6 + return mean, std + + +class WeightedRMSELoss(nn.Module): + """ + 对预测步 t 使用递减权重 w_t;支持: + - 指数衰减: w_t = gamma^t + - 线性衰减: w_t = 1 - alpha * t, 直到 >= min_w + 返回整体 RMSE 标量(可反传) + """ + def __init__(self, horizon: int, mode: str = "exp", + gamma: float = 0.97, alpha: float = 0.0, min_w: float = 0.05): + super().__init__() + self.horizon = horizon + self.mode = mode + self.gamma = gamma + self.alpha = alpha + self.min_w = min_w + self.register_buffer("w", self._make_weights()) + + def _make_weights(self) -> torch.Tensor: + if self.mode == "exp": + w = torch.tensor([self.gamma ** t for t in range(self.horizon)], dtype=torch.float32) + elif self.mode == "linear": + w = torch.tensor([max(1.0 - self.alpha * t, self.min_w) for t in range(self.horizon)], dtype=torch.float32) + else: + raise ValueError("mode 必须是 'exp' 或 'linear'") + # 归一化到均值为 1(或 sum==H),让数值尺度稳定 + w = w * (self.horizon / (w.sum() + 1e-12)) + return w # [H] + + def forward(self, pred: torch.Tensor, target: torch.Tensor): + # pred,target: [B,H,F] + if pred.shape != target.shape: + raise ValueError("pred/target 形状不一致") + B, H, F = pred.shape + if H != self.horizon: + raise ValueError("horizon 不匹配") + err2 = (pred - target) ** 2 # [B,H,F] + w = self.w.view(1, H, 1) # [1,H,1] + w_err = err2 * w + mse = w_err.sum() / (w.sum() * B * F) # 加权 MSE + rmse = torch.sqrt(mse + 1e-12) # RMSE + return rmse + + +@torch.no_grad() +def evaluate_losses(model, loader, device, weighted_rmse: WeightedRMSELoss): + model.eval() + total_wrmse, total_mse = 0.0, 0.0 + count = 0 + mse_fn = nn.MSELoss() + for xb, yb in loader: + xb = xb.to(device) + yb = yb.to(device) + pred = model(xb) + total_wrmse += weighted_rmse(pred, yb).item() * xb.size(0) + total_mse += mse_fn(pred, yb).item() * xb.size(0) + count += xb.size(0) + return total_wrmse / max(1, count), total_mse / max(1, count) + + +@torch.no_grad() +def mae_in_original_scale(model, loader, device, mean: np.ndarray, std: np.ndarray): + model.eval() + total_mae, count = 0.0, 0 + mean_t = torch.from_numpy(mean).to(device).view(1, 1, -1) + std_t = torch.from_numpy(std).to(device).view(1, 1, -1) + for xb, yb in loader: + xb = xb.to(device); yb = yb.to(device) + pred = model(xb) + pred_denorm = pred * std_t + mean_t + yb_denorm = yb * std_t + mean_t + mae = torch.abs(pred_denorm - yb_denorm).mean() + total_mae += mae.item() * xb.size(0) + count += xb.size(0) + return total_mae / max(1, count) + + +def read_and_align_csvs(paths: List[str]) -> pd.DataFrame: + """ + 读取多个 CSV,确保数值列集合与顺序一致;若存在 frame_index 列按其排序并移除。 + 将各文件按行拼接,返回对齐后的整表(仅数值列)。 + 同时返回每个段落的起止行以备切片(通过 offsets)。 + """ + numeric_cols_ref = None + dfs = [] + for p in paths: + df = pd.read_csv(p) + if "frame_index" in df.columns: + df = df.sort_values("frame_index").drop(columns=["frame_index"]) + df_num = df.select_dtypes(include=[np.number]).copy() + if df_num.shape[1] == 0: + raise ValueError(f"{p} 中没有数值列。") + cols = list(df_num.columns) + if numeric_cols_ref is None: + numeric_cols_ref = cols + else: + if cols != numeric_cols_ref: + raise ValueError( + f"列不一致:\n 参考列: {numeric_cols_ref}\n {p} 列: {cols}\n" + "请确保所有 CSV 的数值列名与顺序一致。" + ) + dfs.append(df_num.reset_index(drop=True)) + big = pd.concat(dfs, axis=0, ignore_index=True) + return big + + +def build_multi_file_starts(lengths: List[int], seq_len: int, horizon: int, stride: int) -> np.ndarray: + """ + 对多个段(各自长度 T_i)分别生成窗口起点,再加上段偏移并合并。 + 确保窗口不跨段。 + """ + starts_all = [] + offset = 0 + for T in lengths: + local = build_windows_indices(T, seq_len, horizon, stride) + if len(local) > 0: + starts_all.append(local + offset) + offset += T + if not starts_all: + return np.array([], dtype=np.int64) + return np.concatenate(starts_all, axis=0) + + +def main(): + ap = argparse.ArgumentParser() + # === 关键默认:输入 240、预测 30 === + ap.add_argument("--csv_paths", type=str, nargs="+", help="多个 CSV 路径(空格分隔)") + ap.add_argument("--csv_path", type=str, default="", help="兼容单文件旧参数;若提供也会被加入") + ap.add_argument("--seq_len", type=int, default=180, help="输入窗口长度 L") + ap.add_argument("--pred_horizon", type=int, default=45, help="预测步数 H(输出 30 帧)") + ap.add_argument("--stride", type=int, default=1, help="窗口步长") + ap.add_argument("--val_ratio", type=float, default=0.2, help="验证集比例(交错采样)") + ap.add_argument("--val_gap", type=int, default=1, help="从训练中剔除与验证窗口相邻的窗口数量") + ap.add_argument("--batch_size", type=int, default=512) + ap.add_argument("--epochs", type=int, default=70) + ap.add_argument("--lr", type=float, default=3e-4) + ap.add_argument("--d_model", type=int, default=256) + ap.add_argument("--nhead", type=int, default=8) + ap.add_argument("--num_layers", type=int, default=4) + ap.add_argument("--dim_ff", type=int, default=1024) + ap.add_argument("--dropout", type=float, default=0.1) + ap.add_argument("--grad_clip", type=float, default=1.0) + ap.add_argument("--patience", type=int, default=20) + ap.add_argument("--seed", type=int, default=42) + ap.add_argument("--save_dir", type=str, default="./outputs/chaos") + + # 加权 RMSE 配置 + ap.add_argument("--horizon_weight_mode", type=str, default="exp", choices=["exp", "linear"], + help="预测步权重模式:exp=指数衰减;linear=线性衰减") + ap.add_argument("--horizon_gamma", type=float, default=0.99, + help="指数衰减系数 gamma (0 train: {len(train_starts)}, val: {len(val_starts)}") + + # ====== 用训练窗口拟合标准化 ====== + mean, std = fit_scaler_from_windows(values, train_starts, args.seq_len) + values_norm = (values - mean) / std + + # ====== DataLoader ====== + train_ds = WindowedTSDataset(values_norm, train_starts, args.seq_len, args.pred_horizon) + val_ds = WindowedTSDataset(values_norm, val_starts, args.seq_len, args.pred_horizon) + train_loader = DataLoader(train_ds, batch_size=args.batch_size, shuffle=True) + val_loader = DataLoader(val_ds, batch_size=args.batch_size, shuffle=False) + + # ====== 模型/优化器/损失 ====== + model = TimeSeriesTransformer( + in_features=F, d_model=args.d_model, nhead=args.nhead, + num_layers=args.num_layers, dim_feedforward=args.dim_ff, + dropout=args.dropout, horizon=args.pred_horizon + ).to(device) + + weighted_rmse = WeightedRMSELoss( + horizon=args.pred_horizon, + mode=args.horizon_weight_mode, + gamma=args.horizon_gamma, + alpha=args.horizon_alpha, + min_w=args.horizon_min_w + ).to(device) + + optimizer = torch.optim.AdamW(model.parameters(), lr=args.lr, weight_decay=1e-4) + scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(optimizer, mode='min', factor=0.5, patience=3) + + # ====== 训练(以加权 RMSE 为主损失,早停监控验证加权 RMSE) ====== + best_val = float("inf") + best_path = os.path.join(args.save_dir, "best_model.pt") + no_improve = 0 + + for epoch in range(1, args.epochs + 1): + # 训练 + model.train() + total_train_loss = 0.0 + n_train = 0 + for xb, yb in train_loader: + xb = xb.to(device); yb = yb.to(device) + optimizer.zero_grad(set_to_none=True) + pred = model(xb) # [B,H,F] + loss = weighted_rmse(pred, yb) # 加权 RMSE + loss.backward() + if args.grad_clip is not None: + nn.utils.clip_grad_norm_(model.parameters(), args.grad_clip) + optimizer.step() + total_train_loss += loss.item() * xb.size(0) + n_train += xb.size(0) + + # 验证 + val_wrmse, val_mse = evaluate_losses(model, val_loader, device, weighted_rmse) + train_wrmse = total_train_loss / max(1, n_train) + scheduler.step(val_wrmse) + + print(f"Epoch {epoch:03d}/{args.epochs} | train wRMSE={train_wrmse:.6f} | " + f"val wRMSE={val_wrmse:.6f} | val MSE={val_mse:.6f}") + + if val_wrmse < best_val - 1e-8: + best_val = val_wrmse + no_improve = 0 + torch.save( + { + "model_state": model.state_dict(), + "config": { + "in_features": F, "d_model": args.d_model, "nhead": args.nhead, + "num_layers": args.num_layers, "dim_ff": args.dim_ff, + "dropout": args.dropout, "horizon": args.pred_horizon + }, + "loss_cfg": { + "mode": args.horizon_weight_mode, + "gamma": args.horizon_gamma, + "alpha": args.horizon_alpha, + "min_w": args.horizon_min_w + } + }, + best_path + ) + else: + no_improve += 1 + if no_improve >= args.patience: + print(f"Early stopping at epoch {epoch}. Best val wRMSE={best_val:.6f}") + break + + # 保存标准化 + np.savez(os.path.join(args.save_dir, "scaler.npz"), + mean=mean, std=std, columns=np.array(big_df.columns)) + + # 评估(最佳模型)与原尺度 MAE + ckpt = torch.load(best_path, map_location=device) + model.load_state_dict(ckpt["model_state"]) + val_wrmse, val_mse = evaluate_losses(model, val_loader, device, weighted_rmse) + val_mae_orig = mae_in_original_scale(model, val_loader, device, mean, std) + print(f"[Best] Val wRMSE={val_wrmse:.6f} | Val MSE={val_mse:.6f} | Val MAE(original)={val_mae_orig:.6f}") + + # 示例推理:取最后一个窗口打印 30 步预测(反标准化) + with torch.no_grad(): + last_start = int(starts_all[-1]) + x_last = values_norm[last_start: last_start + args.seq_len] + y_true = values[last_start + args.seq_len: last_start + args.seq_len + args.pred_horizon] + pred = model(torch.from_numpy(x_last).unsqueeze(0).to(device)).cpu().numpy()[0] + pred_denorm = pred * std + mean + print("\n=== 示例(最后一个窗口) ===") + for h in range(args.pred_horizon): + line = f"+{h+1:02d}: pred={np.round(pred_denorm[h], 6)}" + if h < y_true.shape[0]: + line += f" | true={np.round(y_true[h], 6)}" + print(line) + + print(f"\n保存:\n- 模型: {best_path}\n- 标准化: {os.path.join(args.save_dir, 'scaler.npz')}") + + +if __name__ == "__main__": + main() diff --git a/chaos_pdl/serve_api.py b/chaos_pdl/serve_api.py new file mode 100644 index 0000000..6d1a79f --- /dev/null +++ b/chaos_pdl/serve_api.py @@ -0,0 +1,132 @@ +# -*- coding: utf-8 -*- +""" +serve_api.py +- FastAPI 推理服务:加载 best_model.pt 与 scaler.npz +- /predict:接收最近 L=180 帧(按训练列顺序),返回未来 H 帧预测(原尺度) +- /health:健康检查;/meta:返回模型与列信息 + +运行示例: +uv run -m uvicorn chaos_pdl.serve_api:app --host 0.0.0.0 --port 8000 --workers 1 + +请求示例: +POST /predict +{ + "frames": [[...F个数值...], ..., 共180行] +} + +可选:若你以对象形式传参(带列名),也支持: +{ + "frame_objects": [ + {"delta_time": 0.02, "green_angle_sin": 0.1, ...}, + ... 共180个对象 ... + ] +} +""" + +from typing import List, Optional, Dict, Any +import os +import numpy as np +import torch +from fastapi import FastAPI, HTTPException +from pydantic import BaseModel, Field + +try: + from chaos_pdl.pendulum_transformer import TimeSeriesTransformer +except ModuleNotFoundError: + from pendulum_transformer import TimeSeriesTransformer + + +class PredictRequest(BaseModel): + frames: Optional[List[List[float]]] = Field( + default=None, description="最近L帧,形状 [L,F],按 scaler.npz 的列顺序提供" + ) + frame_objects: Optional[List[Dict[str, float]]] = Field( + default=None, description="最近L帧,形状 [L],每项是 {列名: 数值} 对象" + ) + + +class PredictResponse(BaseModel): + horizon: int + columns: List[str] + predictions: List[List[float]] # [H,F] 原尺度 + + +def load_artifacts(model_path: str, scaler_path: str, device: torch.device): + sc = np.load(scaler_path, allow_pickle=True) + mean = sc["mean"].astype(np.float32) + std = sc["std"].astype(np.float32) + columns = list(sc["columns"].tolist()) + + ckpt = torch.load(model_path, map_location=device) + cfg = ckpt["config"] + H = int(cfg["horizon"]) + F = len(columns) + + model = TimeSeriesTransformer( + in_features=F, + d_model=cfg["d_model"], + nhead=cfg["nhead"], + num_layers=cfg["num_layers"], + dim_feedforward=cfg["dim_ff"], + dropout=cfg["dropout"], + horizon=H, + ).to(device) + model.load_state_dict(ckpt["model_state"]) + model.eval() + return model, mean, std, columns, H + + +MODEL_PATH = os.environ.get("MODEL_PATH", "./outputs/chaos/best_model.pt") +SCALER_PATH = os.environ.get("SCALER_PATH", "./outputs/chaos/scaler.npz") +SEQ_LEN = int(os.environ.get("SEQ_LEN", 180)) + +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +model, mean, std, columns, H = load_artifacts(MODEL_PATH, SCALER_PATH, device) + +app = FastAPI(title="Pendulum Transformer Inference API", version="0.1.0") + + +@app.get("/health") +def health(): + return {"status": "ok", "device": str(device), "horizon": H, "seq_len": SEQ_LEN} + + +@app.get("/meta") +def meta(): + return {"columns": columns, "horizon": H, "seq_len": SEQ_LEN} + + +def frames_from_objects(objs: List[Dict[str, Any]], cols: List[str]) -> np.ndarray: + try: + arr = np.array([[float(o[c]) for c in cols] for o in objs], dtype=np.float32) + except Exception as e: + raise HTTPException(status_code=400, detail=f"frame_objects 解析失败: {e}") + return arr + + +@app.post("/predict", response_model=PredictResponse) +def predict(req: PredictRequest): + # 取输入 + if (req.frames is None) == (req.frame_objects is None): + raise HTTPException(status_code=400, detail="需要提供 frames 或 frame_objects 二选一") + + if req.frames is not None: + x = np.asarray(req.frames, dtype=np.float32) + if x.ndim != 2: + raise HTTPException(status_code=400, detail="frames 必须是二维数组 [L,F]") + if x.shape[1] != len(columns): + raise HTTPException(status_code=400, detail=f"列数不匹配,期望F={len(columns)}") + else: + x = frames_from_objects(req.frame_objects, columns) + + if x.shape[0] != SEQ_LEN: + raise HTTPException(status_code=400, detail=f"帧数不匹配,期望L={SEQ_LEN}") + + # 标准化 + x_norm = (x - mean) / std + xb = torch.from_numpy(x_norm).unsqueeze(0).to(device) # [1,L,F] + + with torch.no_grad(): + pred = model(xb).cpu().numpy()[0] # [H,F] 标准化空间 + pred_denorm = pred * std + mean + return PredictResponse(horizon=H, columns=columns, predictions=pred_denorm.tolist()) diff --git a/outputs/chaos/best_model.pt b/outputs/chaos/best_model.pt new file mode 100644 index 0000000..a63c4f8 Binary files /dev/null and b/outputs/chaos/best_model.pt differ diff --git a/outputs/chaos/scaler.npz b/outputs/chaos/scaler.npz new file mode 100644 index 0000000..2ed6d32 Binary files /dev/null and b/outputs/chaos/scaler.npz differ diff --git a/outputs/single/ckpt/pendulum_tf_base.pt b/outputs/single/ckpt/pendulum_tf_base.pt new file mode 100644 index 0000000..57f8eb6 Binary files /dev/null and b/outputs/single/ckpt/pendulum_tf_base.pt differ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a39a83f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[project] +name = "pendulum-transformer" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "fastapi>=0.116.1", + "matplotlib>=3.10.6", + "numpy>=2.3.2", + "pandas>=2.3.2", + "torch>=2.8.0", + "uvicorn>=0.35.0", +] diff --git a/single_pdl/cmd b/single_pdl/cmd new file mode 100644 index 0000000..ab857d4 --- /dev/null +++ b/single_pdl/cmd @@ -0,0 +1,4 @@ +uv run pendulum_transformer.py --csv data/448.csv data/618.csv data/548.csv \ + --epochs 10 --batch 64 --eval_all\ + --s_in 120 --s_out 30 --stride 5 \ + --ckpt ckpt/pendulum_tf_base.pt \ No newline at end of file diff --git a/single_pdl/data/404.csv b/single_pdl/data/404.csv new file mode 100644 index 0000000..4484f48 --- /dev/null +++ b/single_pdl/data/404.csv @@ -0,0 +1,10811 @@ +frame,time,x,y +0,0.0,931,257 +1,0.03333333333333333,883,251 +2,0.06666666666666667,883,251 +3,0.1,866,248 +4,0.13333333333333333,849,246 +5,0.16666666666666666,837,246 +6,0.2,837,246 +7,0.23333333333333334,837,246 +8,0.26666666666666666,863,252 +9,0.3,904,258 +10,0.3333333333333333,959,266 +11,0.36666666666666664,1026,274 +12,0.4,1106,279 +13,0.43333333333333335,1196,279 +14,0.4666666666666667,1293,279 +15,0.5,1397,276 +16,0.5333333333333333,1499,265 +17,0.5666666666666667,1605,250 +18,0.6,1706,231 +19,0.6333333333333333,1800,208 +20,0.6666666666666666,1885,185 +21,0.7,1958,164 +22,0.7333333333333333,2017,144 +23,0.7666666666666666,2060,128 +24,0.8,2088,117 +25,0.8333333333333334,2088,117 +26,0.8666666666666667,2088,117 +27,0.9,2068,121 +28,0.9333333333333333,2028,135 +29,0.9666666666666667,1973,153 +30,1.0,1903,173 +31,1.0333333333333332,1821,195 +32,1.0666666666666667,1729,218 +33,1.1,1629,237 +34,1.1333333333333333,1524,253 +35,1.1666666666666667,1420,266 +36,1.2,1316,272 +37,1.2333333333333334,1216,272 +38,1.2666666666666666,1124,272 +39,1.3,1042,271 +40,1.3333333333333333,972,265 +41,1.3666666666666667,915,259 +42,1.4,872,253 +43,1.4333333333333333,843,249 +44,1.4666666666666666,843,249 +45,1.5,843,249 +46,1.5333333333333332,847,252 +47,1.5666666666666667,878,257 +48,1.6,924,264 +49,1.6333333333333333,983,272 +50,1.6666666666666667,1054,279 +51,1.7,1137,282 +52,1.7333333333333334,1229,282 +53,1.7666666666666666,1329,282 +54,1.8,1431,275 +55,1.8333333333333333,1537,262 +56,1.8666666666666667,1640,245 +57,1.9,1738,225 +58,1.9333333333333333,1829,202 +59,1.9666666666666666,1910,179 +60,2.0,1977,157 +61,2.033333333333333,2031,138 +62,2.0666666666666664,2069,123 +63,2.1,2082,116 +64,2.1333333333333333,2082,116 +65,2.1666666666666665,2082,116 +66,2.2,2053,125 +67,2.2333333333333334,2007,140 +68,2.2666666666666666,1946,160 +69,2.3,1872,181 +70,2.3333333333333335,1787,203 +71,2.3666666666666667,1692,224 +72,2.4,1591,242 +73,2.433333333333333,1484,258 +74,2.466666666666667,1382,269 +75,2.5,1279,273 +76,2.533333333333333,1183,273 +77,2.5666666666666664,1095,273 +78,2.6,1017,269 +79,2.6333333333333333,951,262 +80,2.6666666666666665,900,256 +81,2.7,861,251 +82,2.7333333333333334,838,249 +83,2.7666666666666666,838,249 +84,2.8,838,249 +85,2.8333333333333335,859,253 +86,2.8666666666666667,895,259 +87,2.9,946,266 +88,2.933333333333333,1009,273 +89,2.966666666666667,1084,279 +90,3.0,1170,279 +91,3.033333333333333,1265,279 +92,3.0666666666666664,1366,279 +93,3.1,1467,270 +94,3.1333333333333333,1573,254 +95,3.1666666666666665,1674,237 +96,3.2,1770,215 +97,3.2333333333333334,1857,192 +98,3.2666666666666666,1933,169 +99,3.3,1996,148 +100,3.3333333333333335,2044,130 +101,3.3666666666666667,2076,118 +102,3.4,2076,117 +103,3.433333333333333,2076,117 +104,3.466666666666667,2071,117 +105,3.5,2036,129 +106,3.533333333333333,1985,145 +107,3.5666666666666664,1920,165 +108,3.6,1842,187 +109,3.6333333333333333,1753,209 +110,3.6666666666666665,1656,230 +111,3.6999999999999997,1553,247 +112,3.7333333333333334,1448,262 +113,3.7666666666666666,1346,270 +114,3.8,1245,272 +115,3.8333333333333335,1152,272 +116,3.8666666666666667,1068,272 +117,3.9,995,267 +118,3.933333333333333,935,260 +119,3.966666666666667,888,255 +120,4.0,855,250 +121,4.033333333333333,847,250 +122,4.066666666666666,847,250 +123,4.1,847,251 +124,4.133333333333333,874,256 +125,4.166666666666667,914,263 +126,4.2,969,270 +127,4.233333333333333,1037,276 +128,4.266666666666667,1116,281 +129,4.3,1204,281 +130,4.333333333333333,1301,281 +131,4.366666666666666,1404,276 +132,4.4,1505,263 +133,4.433333333333334,1609,248 +134,4.466666666666667,1708,229 +135,4.5,1800,207 +136,4.533333333333333,1883,183 +137,4.566666666666666,1954,161 +138,4.6,2011,142 +139,4.633333333333333,2054,126 +140,4.666666666666667,2080,115 +141,4.7,2080,115 +142,4.733333333333333,2080,115 +143,4.766666666666667,2057,121 +144,4.8,2016,135 +145,4.833333333333333,1960,153 +146,4.866666666666666,1890,173 +147,4.9,1808,195 +148,4.933333333333334,1716,217 +149,4.966666666666667,1618,236 +150,5.0,1513,252 +151,5.033333333333333,1412,265 +152,5.066666666666666,1309,272 +153,5.1,1211,272 +154,5.133333333333333,1122,272 +155,5.166666666666667,1042,270 +156,5.2,974,265 +157,5.233333333333333,918,259 +158,5.266666666666667,877,254 +159,5.3,850,250 +160,5.333333333333333,850,250 +161,5.366666666666666,850,250 +162,5.4,858,253 +163,5.433333333333334,889,259 +164,5.466666666666667,935,266 +165,5.5,994,273 +166,5.533333333333333,1065,279 +167,5.566666666666666,1147,280 +168,5.6,1238,280 +169,5.633333333333333,1337,280 +170,5.666666666666667,1437,272 +171,5.7,1542,258 +172,5.733333333333333,1643,241 +173,5.766666666666667,1740,220 +174,5.8,1829,198 +175,5.833333333333333,1908,175 +176,5.866666666666666,1974,153 +177,5.9,2026,135 +178,5.933333333333334,2062,121 +179,5.966666666666667,2072,115 +180,6.0,2072,115 +181,6.033333333333333,2072,115 +182,6.066666666666666,2042,125 +183,6.1,1995,140 +184,6.133333333333333,1934,160 +185,6.166666666666667,1860,181 +186,6.2,1775,203 +187,6.233333333333333,1680,225 +188,6.266666666666667,1580,243 +189,6.3,1475,258 +190,6.333333333333333,1375,268 +191,6.366666666666666,1274,274 +192,6.4,1179,274 +193,6.433333333333334,1093,274 +194,6.466666666666667,1018,270 +195,6.5,954,264 +196,6.533333333333333,904,259 +197,6.566666666666666,868,254 +198,6.6,847,252 +199,6.633333333333333,847,252 +200,6.666666666666667,847,252 +201,6.7,870,257 +202,6.733333333333333,906,262 +203,6.766666666666667,957,269 +204,6.8,1020,276 +205,6.833333333333333,1095,281 +206,6.866666666666666,1180,281 +207,6.8999999999999995,1274,281 +208,6.933333333333334,1375,278 +209,6.966666666666667,1474,268 +210,7.0,1578,252 +211,7.033333333333333,1678,234 +212,7.066666666666666,1773,212 +213,7.1,1857,189 +214,7.133333333333333,1932,167 +215,7.166666666666667,1992,146 +216,7.2,2039,129 +217,7.233333333333333,2069,117 +218,7.266666666666667,2069,117 +219,7.3,2069,117 +220,7.333333333333333,2060,118 +221,7.366666666666666,2024,130 +222,7.3999999999999995,1973,147 +223,7.433333333333334,1907,167 +224,7.466666666666667,1829,189 +225,7.5,1740,211 +226,7.533333333333333,1644,231 +227,7.566666666666666,1543,248 +228,7.6,1438,263 +229,7.633333333333333,1339,271 +230,7.666666666666667,1240,273 +231,7.7,1149,273 +232,7.733333333333333,1067,273 +233,7.766666666666667,996,269 +234,7.8,938,263 +235,7.833333333333333,893,258 +236,7.866666666666666,862,254 +237,7.8999999999999995,857,254 +238,7.933333333333334,857,254 +239,7.966666666666667,857,255 +240,8.0,884,259 +241,8.033333333333333,925,266 +242,8.066666666666666,980,273 +243,8.1,1047,278 +244,8.133333333333333,1126,281 +245,8.166666666666666,1214,281 +246,8.2,1310,281 +247,8.233333333333333,1411,275 +248,8.266666666666666,1511,262 +249,8.3,1614,246 +250,8.333333333333334,1711,226 +251,8.366666666666667,1802,204 +252,8.4,1883,180 +253,8.433333333333334,1952,159 +254,8.466666666666667,2008,139 +255,8.5,2048,124 +256,8.533333333333333,2072,114 +257,8.566666666666666,2072,114 +258,8.6,2072,114 +259,8.633333333333333,2046,121 +260,8.666666666666666,2004,135 +261,8.7,1948,154 +262,8.733333333333333,1878,175 +263,8.766666666666666,1796,197 +264,8.8,1705,218 +265,8.833333333333334,1607,238 +266,8.866666666666667,1504,254 +267,8.9,1404,266 +268,8.933333333333334,1302,273 +269,8.966666666666667,1207,273 +270,9.0,1119,273 +271,9.033333333333333,1041,273 +272,9.066666666666666,975,268 +273,9.1,922,262 +274,9.133333333333333,882,257 +275,9.166666666666666,857,254 +276,9.2,857,254 +277,9.233333333333333,857,254 +278,9.266666666666666,867,258 +279,9.3,900,263 +280,9.333333333333334,946,269 +281,9.366666666666667,1005,275 +282,9.4,1076,281 +283,9.433333333333334,1158,281 +284,9.466666666666667,1249,281 +285,9.5,1347,280 +286,9.533333333333333,1445,271 +287,9.566666666666666,1549,257 +288,9.6,1648,239 +289,9.633333333333333,1744,218 +290,9.666666666666666,1831,195 +291,9.7,1907,173 +292,9.733333333333333,1972,152 +293,9.766666666666666,2022,134 +294,9.8,2056,120 +295,9.833333333333334,2061,116 +296,9.866666666666667,2061,116 +297,9.9,2061,116 +298,9.933333333333334,2030,126 +299,9.966666666666667,1983,142 +300,10.0,1921,162 +301,10.033333333333333,1847,183 +302,10.066666666666666,1762,205 +303,10.1,1669,226 +304,10.133333333333333,1569,244 +305,10.166666666666666,1466,260 +306,10.2,1368,270 +307,10.233333333333333,1267,275 +308,10.266666666666666,1175,275 +309,10.3,1091,275 +310,10.333333333333334,1018,272 +311,10.366666666666667,957,267 +312,10.4,909,262 +313,10.433333333333334,874,257 +314,10.466666666666667,857,256 +315,10.5,857,256 +316,10.533333333333333,857,256 +317,10.566666666666666,880,260 +318,10.6,917,266 +319,10.633333333333333,968,272 +320,10.666666666666666,1031,278 +321,10.7,1107,283 +322,10.733333333333333,1191,283 +323,10.766666666666666,1284,283 +324,10.8,1384,277 +325,10.833333333333334,1482,266 +326,10.866666666666667,1585,250 +327,10.9,1683,231 +328,10.933333333333334,1775,210 +329,10.966666666666667,1858,186 +330,11.0,1930,165 +331,11.033333333333333,1989,144 +332,11.066666666666666,2033,128 +333,11.1,2062,116 +334,11.133333333333333,2062,116 +335,11.166666666666666,2062,116 +336,11.2,2049,119 +337,11.233333333333333,2012,132 +338,11.266666666666666,1960,149 +339,11.3,1894,169 +340,11.333333333333334,1816,191 +341,11.366666666666667,1727,213 +342,11.4,1632,233 +343,11.433333333333334,1532,250 +344,11.466666666666667,1429,264 +345,11.5,1331,273 +346,11.533333333333333,1234,275 +347,11.566666666666666,1145,275 +348,11.6,1065,275 +349,11.633333333333333,996,272 +350,11.666666666666666,940,267 +351,11.7,897,261 +352,11.733333333333333,867,257 +353,11.766666666666666,866,257 +354,11.8,866,257 +355,11.833333333333334,866,258 +356,11.866666666666667,895,263 +357,11.9,937,269 +358,11.933333333333334,991,276 +359,11.966666666666667,1059,281 +360,12.0,1137,281 +361,12.033333333333333,1225,281 +362,12.066666666666666,1320,281 +363,12.1,1419,273 +364,12.133333333333333,1519,261 +365,12.166666666666666,1620,243 +366,12.2,1716,223 +367,12.233333333333333,1804,201 +368,12.266666666666666,1884,178 +369,12.3,1951,156 +370,12.333333333333334,2005,137 +371,12.366666666666667,2043,122 +372,12.4,2061,114 +373,12.433333333333334,2061,114 +374,12.466666666666667,2061,114 +375,12.5,2035,123 +376,12.533333333333333,1992,138 +377,12.566666666666666,1935,156 +378,12.6,1864,177 +379,12.633333333333333,1782,199 +380,12.666666666666666,1691,221 +381,12.7,1594,240 +382,12.733333333333333,1493,257 +383,12.766666666666666,1394,268 +384,12.8,1294,275 +385,12.833333333333334,1201,275 +386,12.866666666666667,1116,275 +387,12.9,1040,275 +388,12.933333333333334,976,270 +389,12.966666666666667,925,265 +390,13.0,887,260 +391,13.033333333333333,863,257 +392,13.066666666666666,863,257 +393,13.1,863,257 +394,13.133333333333333,878,261 +395,13.166666666666666,911,266 +396,13.2,957,272 +397,13.233333333333333,1017,278 +398,13.266666666666666,1088,283 +399,13.299999999999999,1170,283 +400,13.333333333333334,1260,283 +401,13.366666666666667,1357,279 +402,13.4,1454,269 +403,13.433333333333334,1556,254 +404,13.466666666666667,1654,236 +405,13.5,1747,215 +406,13.533333333333333,1833,192 +407,13.566666666666666,1907,170 +408,13.6,1970,149 +409,13.633333333333333,2018,131 +410,13.666666666666666,2051,119 +411,13.7,2051,117 +412,13.733333333333333,2051,117 +413,13.766666666666666,2051,117 +414,13.799999999999999,2018,128 +415,13.833333333333334,1970,145 +416,13.866666666666667,1908,164 +417,13.9,1833,186 +418,13.933333333333334,1748,208 +419,13.966666666666667,1655,228 +420,14.0,1557,246 +421,14.033333333333333,1455,262 +422,14.066666666666666,1357,272 +423,14.1,1260,277 +424,14.133333333333333,1169,277 +425,14.166666666666666,1088,277 +426,14.2,1017,274 +427,14.233333333333333,958,269 +428,14.266666666666666,911,264 +429,14.299999999999999,879,260 +430,14.333333333333334,866,259 +431,14.366666666666667,866,259 +432,14.4,866,259 +433,14.433333333333334,890,263 +434,14.466666666666667,928,269 +435,14.5,979,275 +436,14.533333333333333,1043,280 +437,14.566666666666666,1118,282 +438,14.6,1202,282 +439,14.633333333333333,1295,282 +440,14.666666666666666,1393,275 +441,14.7,1491,264 +442,14.733333333333333,1592,248 +443,14.766666666666666,1688,228 +444,14.799999999999999,1778,207 +445,14.833333333333334,1859,184 +446,14.866666666666667,1929,162 +447,14.9,1986,142 +448,14.933333333333334,2028,127 +449,14.966666666666667,2055,116 +450,15.0,2055,116 +451,15.033333333333333,2055,116 +452,15.066666666666666,2037,121 +453,15.1,1999,135 +454,15.133333333333333,1946,152 +455,15.166666666666666,1879,172 +456,15.2,1801,194 +457,15.233333333333333,1713,216 +458,15.266666666666666,1618,236 +459,15.299999999999999,1517,252 +460,15.333333333333334,1418,266 +461,15.366666666666667,1320,274 +462,15.4,1226,277 +463,15.433333333333334,1139,277 +464,15.466666666666667,1062,277 +465,15.5,995,272 +466,15.533333333333333,942,267 +467,15.566666666666666,900,263 +468,15.6,873,259 +469,15.633333333333333,873,259 +470,15.666666666666666,873,259 +471,15.7,876,261 +472,15.733333333333333,905,266 +473,15.766666666666666,948,271 +474,15.799999999999999,1004,277 +475,15.833333333333334,1072,282 +476,15.866666666666667,1150,282 +477,15.9,1237,282 +478,15.933333333333334,1332,280 +479,15.966666666666667,1429,272 +480,16.0,1529,258 +481,16.03333333333333,1627,241 +482,16.066666666666666,1721,220 +483,16.1,1808,198 +484,16.133333333333333,1885,176 +485,16.166666666666668,1950,155 +486,16.2,2001,137 +487,16.233333333333334,2038,123 +488,16.266666666666666,2050,116 +489,16.3,2050,116 +490,16.333333333333332,2050,116 +491,16.366666666666667,2022,126 +492,16.4,1978,141 +493,16.433333333333334,1921,159 +494,16.466666666666665,1850,181 +495,16.5,1768,202 +496,16.53333333333333,1678,223 +497,16.566666666666666,1581,242 +498,16.6,1480,259 +499,16.633333333333333,1384,270 +500,16.666666666666668,1285,277 +501,16.7,1194,277 +502,16.733333333333334,1110,277 +503,16.766666666666666,1037,277 +504,16.8,975,272 +505,16.833333333333332,926,267 +506,16.866666666666667,890,263 +507,16.9,868,261 +508,16.933333333333334,868,261 +509,16.966666666666665,868,261 +510,17.0,887,264 +511,17.03333333333333,921,269 +512,17.066666666666666,968,275 +513,17.1,1029,280 +514,17.133333333333333,1100,283 +515,17.166666666666668,1182,283 +516,17.2,1271,283 +517,17.233333333333334,1368,278 +518,17.266666666666666,1463,267 +519,17.3,1565,252 +520,17.333333333333332,1662,233 +521,17.366666666666667,1753,212 +522,17.4,1836,189 +523,17.433333333333334,1909,167 +524,17.466666666666665,1969,147 +525,17.5,2015,130 +526,17.53333333333333,2045,118 +527,17.566666666666666,2045,118 +528,17.6,2045,118 +529,17.633333333333333,2040,119 +530,17.666666666666668,2005,131 +531,17.7,1956,148 +532,17.733333333333334,1893,168 +533,17.766666666666666,1818,190 +534,17.8,1733,211 +535,17.833333333333332,1641,232 +536,17.866666666666667,1543,249 +537,17.9,1443,264 +538,17.933333333333334,1347,274 +539,17.966666666666665,1251,280 +540,18.0,1163,280 +541,18.03333333333333,1084,280 +542,18.066666666666666,1015,277 +543,18.1,957,273 +544,18.133333333333333,914,268 +545,18.166666666666668,883,264 +546,18.2,874,264 +547,18.233333333333334,874,264 +548,18.266666666666666,874,264 +549,18.3,900,268 +550,18.333333333333332,939,273 +551,18.366666666666667,991,279 +552,18.4,1055,283 +553,18.433333333333334,1130,283 +554,18.466666666666665,1215,283 +555,18.5,1307,283 +556,18.53333333333333,1405,276 +557,18.566666666666666,1501,264 +558,18.6,1600,247 +559,18.633333333333333,1695,227 +560,18.666666666666668,1783,206 +561,18.7,1863,183 +562,18.733333333333334,1931,162 +563,18.766666666666666,1985,143 +564,18.8,2025,128 +565,18.833333333333332,2050,118 +566,18.866666666666667,2050,118 +567,18.9,2050,118 +568,18.933333333333334,2026,125 +569,18.966666666666665,1987,139 +570,19.0,1932,157 +571,19.03333333333333,1865,178 +572,19.066666666666666,1786,200 +573,19.1,1698,221 +574,19.133333333333333,1604,240 +575,19.166666666666668,1505,257 +576,19.2,1409,270 +577,19.233333333333334,1311,278 +578,19.266666666666666,1218,280 +579,19.3,1134,280 +580,19.333333333333332,1059,280 +581,19.366666666666667,995,276 +582,19.4,943,272 +583,19.433333333333334,904,267 +584,19.466666666666665,878,264 +585,19.5,878,264 +586,19.53333333333333,878,264 +587,19.566666666666666,886,266 +588,19.6,917,270 +589,19.633333333333333,960,275 +590,19.666666666666668,1017,280 +591,19.7,1085,284 +592,19.733333333333334,1163,284 +593,19.766666666666666,1250,284 +594,19.8,1345,280 +595,19.833333333333332,1440,270 +596,19.866666666666667,1540,256 +597,19.9,1636,238 +598,19.933333333333334,1729,217 +599,19.966666666666665,1814,195 +600,20.0,1888,173 +601,20.03333333333333,1951,152 +602,20.066666666666666,2000,135 +603,20.1,2034,122 +604,20.133333333333333,2041,117 +605,20.166666666666668,2041,117 +606,20.2,2041,117 +607,20.233333333333334,2011,128 +608,20.266666666666666,1965,144 +609,20.3,1906,163 +610,20.333333333333332,1835,184 +611,20.366666666666667,1753,206 +612,20.4,1663,226 +613,20.433333333333334,1567,245 +614,20.466666666666665,1467,261 +615,20.5,1372,271 +616,20.53333333333333,1276,278 +617,20.566666666666666,1187,278 +618,20.6,1106,278 +619,20.633333333333333,1035,277 +620,20.666666666666668,975,273 +621,20.7,928,268 +622,20.733333333333334,894,265 +623,20.766666666666666,876,263 +624,20.8,876,263 +625,20.833333333333332,876,263 +626,20.866666666666667,898,266 +627,20.9,933,271 +628,20.933333333333334,982,276 +629,20.966666666666665,1042,281 +630,21.0,1114,283 +631,21.03333333333333,1196,283 +632,21.066666666666666,1285,283 +633,21.1,1382,276 +634,21.133333333333333,1476,265 +635,21.166666666666668,1575,249 +636,21.2,1671,230 +637,21.233333333333334,1760,208 +638,21.266666666666666,1841,186 +639,21.3,1911,164 +640,21.333333333333332,1969,145 +641,21.366666666666667,2012,129 +642,21.4,2040,118 +643,21.433333333333334,2040,118 +644,21.466666666666665,2040,118 +645,21.5,2029,121 +646,21.53333333333333,1993,134 +647,21.566666666666666,1943,151 +648,21.6,1879,170 +649,21.633333333333333,1803,192 +650,21.666666666666668,1718,214 +651,21.7,1625,234 +652,21.733333333333334,1529,252 +653,21.766666666666666,1429,266 +654,21.8,1335,275 +655,21.833333333333332,1242,280 +656,21.866666666666667,1156,280 +657,21.9,1079,280 +658,21.933333333333334,1013,276 +659,21.966666666666665,958,272 +660,22.0,916,268 +661,22.03333333333333,887,264 +662,22.066666666666666,885,264 +663,22.1,885,264 +664,22.133333333333333,885,264 +665,22.166666666666668,912,268 +666,22.2,952,273 +667,22.233333333333334,1005,278 +668,22.266666666666666,1069,282 +669,22.3,1145,282 +670,22.333333333333332,1229,282 +671,22.366666666666667,1321,280 +672,22.4,1417,273 +673,22.433333333333334,1512,259 +674,22.466666666666665,1611,242 +675,22.5,1704,222 +676,22.53333333333333,1790,200 +677,22.566666666666666,1866,178 +678,22.6,1932,157 +679,22.633333333333333,1984,139 +680,22.666666666666668,2022,125 +681,22.7,2040,117 +682,22.733333333333334,2040,117 +683,22.766666666666666,2040,117 +684,22.8,2014,126 +685,22.833333333333332,1973,140 +686,22.866666666666667,1917,159 +687,22.9,1849,180 +688,22.933333333333334,1770,202 +689,22.966666666666665,1682,223 +690,23.0,1588,241 +691,23.03333333333333,1490,258 +692,23.066666666666666,1396,270 +693,23.1,1300,278 +694,23.133333333333333,1209,280 +695,23.166666666666668,1127,280 +696,23.2,1054,280 +697,23.233333333333334,991,275 +698,23.266666666666666,942,271 +699,23.3,905,267 +700,23.333333333333332,882,264 +701,23.366666666666667,882,264 +702,23.4,882,264 +703,23.433333333333334,896,266 +704,23.466666666666665,928,271 +705,23.5,973,276 +706,23.53333333333333,1030,281 +707,23.566666666666666,1099,283 +708,23.6,1177,283 +709,23.633333333333333,1264,283 +710,23.666666666666668,1359,278 +711,23.7,1452,268 +712,23.733333333333334,1551,253 +713,23.766666666666666,1646,234 +714,23.8,1736,214 +715,23.833333333333332,1819,192 +716,23.866666666666667,1891,170 +717,23.9,1952,149 +718,23.933333333333334,1999,133 +719,23.966666666666665,2030,121 +720,24.0,2030,120 +721,24.03333333333333,2030,120 +722,24.066666666666666,2029,120 +723,24.1,1998,131 +724,24.133333333333333,1951,148 +725,24.166666666666668,1890,167 +726,24.2,1818,188 +727,24.233333333333334,1735,210 +728,24.266666666666666,1645,231 +729,24.3,1550,249 +730,24.333333333333332,1452,264 +731,24.366666666666667,1358,275 +732,24.4,1264,280 +733,24.433333333333334,1177,280 +734,24.466666666666665,1098,280 +735,24.5,1030,280 +736,24.53333333333333,973,276 +737,24.566666666666666,928,271 +738,24.6,897,268 +739,24.633333333333333,884,267 +740,24.666666666666668,884,267 +741,24.7,884,267 +742,24.733333333333334,908,270 +743,24.766666666666666,945,275 +744,24.8,994,280 +745,24.833333333333332,1056,284 +746,24.866666666666667,1128,284 +747,24.9,1210,284 +748,24.933333333333334,1300,283 +749,24.966666666666665,1395,276 +750,25.0,1489,264 +751,25.03333333333333,1587,248 +752,25.066666666666666,1680,228 +753,25.1,1768,207 +754,25.133333333333333,1846,185 +755,25.166666666666668,1914,164 +756,25.2,1969,145 +757,25.233333333333334,2010,130 +758,25.266666666666666,2036,120 +759,25.3,2036,120 +760,25.333333333333332,2036,120 +761,25.366666666666667,2017,126 +762,25.4,1979,139 +763,25.433333333333334,1927,157 +764,25.466666666666665,1862,177 +765,25.5,1786,199 +766,25.53333333333333,1701,220 +767,25.566666666666666,1609,239 +768,25.6,1512,256 +769,25.633333333333333,1417,271 +770,25.666666666666668,1322,278 +771,25.7,1231,283 +772,25.733333333333334,1148,283 +773,25.766666666666666,1073,283 +774,25.8,1009,279 +775,25.833333333333332,957,275 +776,25.866666666666667,918,271 +777,25.9,892,268 +778,25.933333333333334,892,268 +779,25.966666666666665,892,268 +780,26.0,895,268 +781,26.03333333333333,924,272 +782,26.066666666666666,965,277 +783,26.099999999999998,1020,281 +784,26.133333333333333,1085,284 +785,26.166666666666668,1161,284 +786,26.2,1246,284 +787,26.233333333333334,1338,279 +788,26.266666666666666,1431,270 +789,26.3,1529,256 +790,26.333333333333332,1624,238 +791,26.366666666666667,1715,218 +792,26.4,1799,196 +793,26.433333333333334,1873,174 +794,26.466666666666665,1936,154 +795,26.5,1985,137 +796,26.53333333333333,2020,124 +797,26.566666666666666,2030,119 +798,26.599999999999998,2030,119 +799,26.633333333333333,2030,119 +800,26.666666666666668,2002,129 +801,26.7,1959,144 +802,26.733333333333334,1902,163 +803,26.766666666666666,1832,184 +804,26.8,1752,205 +805,26.833333333333332,1665,226 +806,26.866666666666667,1572,244 +807,26.9,1474,261 +808,26.933333333333334,1381,272 +809,26.966666666666665,1286,279 +810,27.0,1198,280 +811,27.03333333333333,1118,280 +812,27.066666666666666,1048,280 +813,27.099999999999998,988,276 +814,27.133333333333333,941,272 +815,27.166666666666668,907,268 +816,27.2,886,265 +817,27.233333333333334,886,265 +818,27.266666666666666,886,265 +819,27.3,906,268 +820,27.333333333333332,940,273 +821,27.366666666666667,986,278 +822,27.4,1045,282 +823,27.433333333333334,1114,283 +824,27.466666666666665,1193,283 +825,27.5,1281,283 +826,27.53333333333333,1374,275 +827,27.566666666666666,1467,265 +828,27.599999999999998,1565,249 +829,27.633333333333333,1658,231 +830,27.666666666666668,1746,210 +831,27.7,1826,188 +832,27.733333333333334,1896,167 +833,27.766666666666666,1954,147 +834,27.8,1998,131 +835,27.833333333333332,2026,120 +836,27.866666666666667,2026,120 +837,27.9,2026,120 +838,27.933333333333334,2018,123 +839,27.966666666666665,1984,135 +840,28.0,1936,151 +841,28.03333333333333,1874,171 +842,28.066666666666666,1801,192 +843,28.099999999999998,1718,214 +844,28.133333333333333,1628,233 +845,28.166666666666668,1534,251 +846,28.2,1436,265 +847,28.233333333333334,1343,275 +848,28.266666666666666,1251,281 +849,28.3,1167,281 +850,28.333333333333332,1091,281 +851,28.366666666666667,1025,279 +852,28.4,970,274 +853,28.433333333333334,928,270 +854,28.466666666666665,900,267 +855,28.5,895,267 +856,28.53333333333333,895,267 +857,28.566666666666666,895,267 +858,28.599999999999998,920,271 +859,28.633333333333333,958,275 +860,28.666666666666668,1009,280 +861,28.7,1072,283 +862,28.733333333333334,1145,283 +863,28.766666666666666,1227,283 +864,28.8,1317,280 +865,28.833333333333332,1410,273 +866,28.866666666666667,1504,259 +867,28.9,1600,242 +868,28.933333333333334,1692,223 +869,28.966666666666665,1777,201 +870,29.0,1853,180 +871,29.03333333333333,1918,159 +872,29.066666666666666,1970,141 +873,29.099999999999998,2008,127 +874,29.133333333333333,2029,119 +875,29.166666666666668,2029,119 +876,29.2,2029,119 +877,29.233333333333334,2004,128 +878,29.266666666666666,1965,141 +879,29.3,1911,159 +880,29.333333333333332,1845,179 +881,29.366666666666667,1768,201 +882,29.4,1682,222 +883,29.433333333333334,1590,241 +884,29.466666666666665,1494,257 +885,29.5,1402,270 +886,29.53333333333333,1308,278 +887,29.566666666666666,1219,281 +888,29.599999999999998,1138,281 +889,29.633333333333333,1066,281 +890,29.666666666666668,1005,277 +891,29.7,955,273 +892,29.733333333333334,918,269 +893,29.766666666666666,894,267 +894,29.8,894,267 +895,29.833333333333332,894,267 +896,29.866666666666667,904,268 +897,29.9,935,272 +898,29.933333333333334,978,277 +899,29.966666666666665,1034,281 +900,30.0,1100,283 +901,30.03333333333333,1177,283 +902,30.066666666666666,1262,283 +903,30.099999999999998,1354,277 +904,30.133333333333333,1446,268 +905,30.166666666666668,1542,253 +906,30.2,1636,235 +907,30.233333333333334,1725,214 +908,30.266666666666666,1806,193 +909,30.3,1878,172 +910,30.333333333333332,1938,152 +911,30.366666666666667,1985,136 +912,30.4,2017,124 +913,30.433333333333334,2019,122 +914,30.466666666666665,2019,122 +915,30.5,2019,122 +916,30.53333333333333,1989,133 +917,30.566666666666666,1944,148 +918,30.599999999999998,1885,167 +919,30.633333333333333,1816,188 +920,30.666666666666668,1735,209 +921,30.7,1648,230 +922,30.733333333333334,1555,248 +923,30.766666666666666,1458,263 +924,30.8,1366,274 +925,30.833333333333332,1273,280 +926,30.866666666666667,1187,281 +927,30.9,1109,281 +928,30.933333333333334,1042,281 +929,30.966666666666665,985,276 +930,31.0,941,272 +931,31.03333333333333,909,269 +932,31.066666666666666,894,268 +933,31.099999999999998,894,268 +934,31.133333333333333,894,268 +935,31.166666666666668,916,271 +936,31.2,951,275 +937,31.233333333333334,1000,279 +938,31.266666666666666,1059,283 +939,31.3,1130,283 +940,31.333333333333332,1209,283 +941,31.366666666666667,1297,282 +942,31.4,1390,275 +943,31.433333333333334,1481,263 +944,31.466666666666665,1578,247 +945,31.5,1670,228 +946,31.53333333333333,1756,207 +947,31.566666666666666,1834,185 +948,31.599999999999998,1901,164 +949,31.633333333333333,1956,145 +950,31.666666666666668,1997,131 +951,31.7,2023,121 +952,31.733333333333334,2023,121 +953,31.766666666666666,2023,121 +954,31.8,2007,126 +955,31.833333333333332,1971,139 +956,31.866666666666667,1921,156 +957,31.9,1858,176 +958,31.933333333333334,1783,197 +959,31.966666666666665,1700,218 +960,32.0,1610,238 +961,32.03333333333333,1515,255 +962,32.06666666666666,1421,268 +963,32.1,1330,277 +964,32.13333333333333,1239,282 +965,32.166666666666664,1157,282 +966,32.2,1083,282 +967,32.233333333333334,1020,280 +968,32.266666666666666,968,276 +969,32.3,928,272 +970,32.333333333333336,902,269 +971,32.36666666666667,902,269 +972,32.4,902,269 +973,32.43333333333333,903,270 +974,32.46666666666667,930,273 +975,32.5,970,277 +976,32.53333333333333,1023,282 +977,32.56666666666666,1086,285 +978,32.6,1160,285 +979,32.63333333333333,1243,285 +980,32.666666666666664,1334,280 +981,32.7,1425,272 +982,32.733333333333334,1519,257 +983,32.766666666666666,1613,240 +984,32.8,1703,220 +985,32.833333333333336,1786,199 +986,32.86666666666667,1859,177 +987,32.9,1922,158 +988,32.93333333333333,1971,140 +989,32.96666666666667,2006,128 +990,33.0,2019,122 +991,33.03333333333333,2019,122 +992,33.06666666666666,2019,122 +993,33.1,1992,132 +994,33.13333333333333,1950,147 +995,33.166666666666664,1895,165 +996,33.2,1828,185 +997,33.233333333333334,1750,207 +998,33.266666666666666,1664,227 +999,33.3,1573,246 +1000,33.333333333333336,1477,262 +1001,33.36666666666667,1386,274 +1002,33.4,1294,281 +1003,33.43333333333333,1207,283 +1004,33.46666666666667,1128,283 +1005,33.5,1058,283 +1006,33.53333333333333,1000,280 +1007,33.56666666666666,952,276 +1008,33.6,918,272 +1009,33.63333333333333,897,270 +1010,33.666666666666664,897,270 +1011,33.7,897,270 +1012,33.733333333333334,913,272 +1013,33.766666666666666,946,276 +1014,33.8,991,280 +1015,33.833333333333336,1047,284 +1016,33.86666666666667,1115,284 +1017,33.9,1192,284 +1018,33.93333333333333,1278,284 +1019,33.96666666666667,1369,277 +1020,34.0,1460,267 +1021,34.03333333333333,1555,252 +1022,34.06666666666666,1648,233 +1023,34.1,1735,213 +1024,34.13333333333333,1814,192 +1025,34.166666666666664,1883,171 +1026,34.2,1941,152 +1027,34.233333333333334,1984,136 +1028,34.266666666666666,2014,125 +1029,34.3,2014,125 +1030,34.333333333333336,2014,125 +1031,34.36666666666667,2008,127 +1032,34.4,1975,139 +1033,34.43333333333333,1928,155 +1034,34.46666666666667,1868,174 +1035,34.5,1797,195 +1036,34.53333333333333,1716,216 +1037,34.56666666666666,1628,236 +1038,34.6,1536,253 +1039,34.63333333333333,1440,267 +1040,34.666666666666664,1350,277 +1041,34.7,1259,283 +1042,34.733333333333334,1176,283 +1043,34.766666666666666,1101,283 +1044,34.8,1035,283 +1045,34.833333333333336,982,279 +1046,34.86666666666667,940,275 +1047,34.9,911,272 +1048,34.93333333333333,903,271 +1049,34.96666666666667,903,271 +1050,35.0,903,271 +1051,35.03333333333333,927,274 +1052,35.06666666666666,964,278 +1053,35.1,1014,282 +1054,35.13333333333333,1074,286 +1055,35.166666666666664,1146,286 +1056,35.2,1226,286 +1057,35.233333333333334,1314,282 +1058,35.266666666666666,1408,273 +1059,35.3,1498,261 +1060,35.333333333333336,1592,245 +1061,35.36666666666667,1682,226 +1062,35.4,1766,205 +1063,35.43333333333333,1841,184 +1064,35.46666666666667,1906,164 +1065,35.5,1957,146 +1066,35.53333333333333,1995,133 +1067,35.56666666666666,2018,124 +1068,35.6,2018,124 +1069,35.63333333333333,2018,124 +1070,35.666666666666664,1994,132 +1071,35.7,1956,146 +1072,35.733333333333334,1904,163 +1073,35.766666666666666,1839,183 +1074,35.8,1764,204 +1075,35.833333333333336,1681,224 +1076,35.86666666666667,1591,243 +1077,35.9,1497,259 +1078,35.93333333333333,1407,271 +1079,35.96666666666667,1314,280 +1080,36.0,1226,285 +1081,36.03333333333333,1146,285 +1082,36.06666666666666,1075,285 +1083,36.1,1014,282 +1084,36.13333333333333,965,278 +1085,36.166666666666664,929,274 +1086,36.2,905,271 +1087,36.233333333333334,905,271 +1088,36.266666666666666,905,271 +1089,36.3,913,273 +1090,36.333333333333336,943,276 +1091,36.36666666666667,984,280 +1092,36.4,1038,284 +1093,36.43333333333333,1104,285 +1094,36.46666666666667,1178,285 +1095,36.5,1261,285 +1096,36.53333333333333,1352,279 +1097,36.56666666666666,1441,270 +1098,36.6,1536,255 +1099,36.63333333333333,1628,238 +1100,36.666666666666664,1716,218 +1101,36.7,1796,197 +1102,36.733333333333334,1867,176 +1103,36.766666666666666,1926,157 +1104,36.8,1973,141 +1105,36.833333333333336,2004,129 +1106,36.86666666666667,2008,128 +1107,36.9,2008,128 +1108,36.93333333333333,2008,128 +1109,36.96666666666667,1979,138 +1110,37.0,1935,153 +1111,37.03333333333333,1878,171 +1112,37.06666666666666,1809,192 +1113,37.1,1731,213 +1114,37.13333333333333,1645,232 +1115,37.166666666666664,1554,250 +1116,37.2,1459,265 +1117,37.233333333333334,1370,275 +1118,37.266666666666666,1279,282 +1119,37.3,1194,284 +1120,37.333333333333336,1118,284 +1121,37.36666666666667,1051,284 +1122,37.4,995,280 +1123,37.43333333333333,951,276 +1124,37.46666666666667,919,273 +1125,37.5,904,271 +1126,37.53333333333333,904,271 +1127,37.56666666666666,904,271 +1128,37.6,925,274 +1129,37.63333333333333,959,277 +1130,37.666666666666664,1006,282 +1131,37.7,1064,286 +1132,37.733333333333334,1133,286 +1133,37.766666666666666,1211,286 +1134,37.8,1297,283 +1135,37.833333333333336,1388,275 +1136,37.86666666666667,1478,263 +1137,37.9,1573,248 +1138,37.93333333333333,1663,230 +1139,37.96666666666667,1748,210 +1140,38.0,1824,188 +1141,38.03333333333333,1890,168 +1142,38.06666666666666,1944,150 +1143,38.1,1985,136 +1144,38.13333333333333,2011,126 +1145,38.166666666666664,2011,126 +1146,38.2,2011,126 +1147,38.233333333333334,1996,131 +1148,38.266666666666666,1961,144 +1149,38.3,1912,160 +1150,38.333333333333336,1850,180 +1151,38.36666666666667,1778,200 +1152,38.4,1696,221 +1153,38.43333333333333,1608,240 +1154,38.46666666666667,1515,257 +1155,38.5,1423,271 +1156,38.53333333333333,1334,279 +1157,38.56666666666666,1245,284 +1158,38.6,1164,284 +1159,38.63333333333333,1091,284 +1160,38.666666666666664,1029,283 +1161,38.7,978,279 +1162,38.733333333333334,939,275 +1163,38.766666666666666,912,272 +1164,38.8,912,272 +1165,38.833333333333336,912,272 +1166,38.86666666666667,912,272 +1167,38.9,939,275 +1168,38.93333333333333,978,279 +1169,38.96666666666667,1029,283 +1170,39.0,1092,285 +1171,39.03333333333333,1164,285 +1172,39.06666666666666,1245,285 +1173,39.1,1334,280 +1174,39.13333333333333,1424,272 +1175,39.166666666666664,1515,258 +1176,39.2,1608,241 +1177,39.233333333333334,1696,222 +1178,39.266666666666666,1778,201 +1179,39.3,1850,180 +1180,39.333333333333336,1912,161 +1181,39.36666666666667,1960,144 +1182,39.4,1995,132 +1183,39.43333333333333,2009,127 +1184,39.46666666666667,2009,127 +1185,39.5,2009,127 +1186,39.53333333333333,1982,136 +1187,39.56666666666666,1942,150 +1188,39.6,1887,168 +1189,39.63333333333333,1821,188 +1190,39.666666666666664,1745,209 +1191,39.7,1661,229 +1192,39.733333333333334,1571,247 +1193,39.766666666666666,1477,262 +1194,39.8,1388,274 +1195,39.833333333333336,1298,282 +1196,39.86666666666667,1212,284 +1197,39.9,1134,284 +1198,39.93333333333333,1066,284 +1199,39.96666666666667,1008,281 +1200,40.0,962,277 +1201,40.03333333333333,928,273 +1202,40.06666666666666,906,271 +1203,40.1,906,271 +1204,40.13333333333333,906,271 +1205,40.166666666666664,922,273 +1206,40.2,954,277 +1207,40.233333333333334,997,281 +1208,40.266666666666666,1053,284 +1209,40.3,1119,284 +1210,40.333333333333336,1196,284 +1211,40.36666666666667,1279,283 +1212,40.4,1370,277 +1213,40.43333333333333,1459,265 +1214,40.46666666666667,1553,251 +1215,40.5,1643,233 +1216,40.53333333333333,1728,213 +1217,40.56666666666666,1806,192 +1218,40.6,1874,172 +1219,40.63333333333333,1930,154 +1220,40.666666666666664,1973,139 +1221,40.7,2001,129 +1222,40.733333333333334,2001,129 +1223,40.766666666666666,2001,129 +1224,40.8,1996,130 +1225,40.833333333333336,1964,142 +1226,40.86666666666667,1918,157 +1227,40.9,1860,176 +1228,40.93333333333333,1789,196 +1229,40.96666666666667,1711,217 +1230,41.0,1624,236 +1231,41.03333333333333,1534,253 +1232,41.06666666666666,1440,268 +1233,41.1,1352,277 +1234,41.13333333333333,1263,283 +1235,41.166666666666664,1181,283 +1236,41.2,1107,283 +1237,41.233333333333334,1043,283 +1238,41.266666666666666,989,279 +1239,41.3,948,276 +1240,41.333333333333336,919,272 +1241,41.36666666666667,912,271 +1242,41.4,912,271 +1243,41.43333333333333,912,271 +1244,41.46666666666667,936,274 +1245,41.5,972,278 +1246,41.53333333333333,1021,281 +1247,41.56666666666666,1081,284 +1248,41.6,1151,284 +1249,41.63333333333333,1230,284 +1250,41.666666666666664,1316,280 +1251,41.7,1407,272 +1252,41.733333333333334,1496,259 +1253,41.766666666666666,1589,243 +1254,41.8,1677,224 +1255,41.833333333333336,1760,204 +1256,41.86666666666667,1833,184 +1257,41.9,1896,164 +1258,41.93333333333333,1947,147 +1259,41.96666666666667,1985,134 +1260,42.0,2007,126 +1261,42.03333333333333,2007,126 +1262,42.06666666666666,2007,126 +1263,42.1,1984,134 +1264,42.13333333333333,1945,148 +1265,42.166666666666664,1895,165 +1266,42.2,1831,184 +1267,42.233333333333334,1758,205 +1268,42.266666666666666,1676,225 +1269,42.3,1588,243 +1270,42.333333333333336,1495,259 +1271,42.36666666666667,1407,272 +1272,42.4,1316,279 +1273,42.43333333333333,1230,284 +1274,42.46666666666667,1151,284 +1275,42.5,1081,284 +1276,42.53333333333333,1022,281 +1277,42.56666666666666,973,277 +1278,42.6,937,273 +1279,42.63333333333333,914,270 +1280,42.666666666666664,914,270 +1281,42.7,914,270 +1282,42.733333333333334,922,272 +1283,42.766666666666666,951,275 +1284,42.8,992,279 +1285,42.833333333333336,1045,282 +1286,42.86666666666667,1109,283 +1287,42.9,1183,283 +1288,42.93333333333333,1264,283 +1289,42.96666666666667,1353,276 +1290,43.0,1441,267 +1291,43.03333333333333,1534,252 +1292,43.06666666666666,1625,235 +1293,43.1,1711,216 +1294,43.13333333333333,1789,196 +1295,43.166666666666664,1859,175 +1296,43.2,1917,157 +1297,43.233333333333334,1962,141 +1298,43.266666666666666,1994,130 +1299,43.3,1997,129 +1300,43.333333333333336,1997,129 +1301,43.36666666666667,1997,129 +1302,43.4,1968,140 +1303,43.43333333333333,1925,154 +1304,43.46666666666667,1869,172 +1305,43.5,1802,192 +1306,43.53333333333333,1725,213 +1307,43.56666666666666,1640,232 +1308,43.6,1551,250 +1309,43.63333333333333,1458,264 +1310,43.666666666666664,1370,275 +1311,43.7,1281,281 +1312,43.733333333333334,1198,283 +1313,43.766666666666666,1123,283 +1314,43.8,1057,283 +1315,43.833333333333336,1002,279 +1316,43.86666666666667,959,276 +1317,43.9,928,272 +1318,43.93333333333333,913,271 +1319,43.96666666666667,913,271 +1320,44.0,913,271 +1321,44.03333333333333,934,273 +1322,44.06666666666666,968,276 +1323,44.1,1014,280 +1324,44.13333333333333,1071,283 +1325,44.166666666666664,1139,283 +1326,44.2,1216,283 +1327,44.233333333333334,1300,280 +1328,44.266666666666666,1390,272 +1329,44.3,1478,261 +1330,44.333333333333336,1571,246 +1331,44.36666666666667,1659,228 +1332,44.4,1742,208 +1333,44.43333333333333,1817,188 +1334,44.46666666666667,1881,169 +1335,44.5,1934,151 +1336,44.53333333333333,1974,137 +1337,44.56666666666666,1999,128 +1338,44.6,1999,128 +1339,44.63333333333333,1999,128 +1340,44.666666666666664,1984,134 +1341,44.7,1949,147 +1342,44.733333333333334,1901,162 +1343,44.766666666666666,1841,181 +1344,44.8,1769,202 +1345,44.833333333333336,1689,221 +1346,44.86666666666667,1603,240 +1347,44.9,1511,256 +1348,44.93333333333333,1421,270 +1349,44.96666666666667,1333,278 +1350,45.0,1247,283 +1351,45.03333333333333,1167,283 +1352,45.06666666666666,1096,283 +1353,45.1,1035,281 +1354,45.13333333333333,984,277 +1355,45.166666666666664,946,273 +1356,45.2,920,271 +1357,45.233333333333334,920,270 +1358,45.266666666666666,920,270 +1359,45.3,921,270 +1360,45.333333333333336,947,273 +1361,45.36666666666667,986,277 +1362,45.4,1037,280 +1363,45.43333333333333,1098,282 +1364,45.46666666666667,1170,282 +1365,45.5,1250,282 +1366,45.53333333333333,1336,277 +1367,45.56666666666666,1424,268 +1368,45.6,1515,254 +1369,45.63333333333333,1606,238 +1370,45.666666666666664,1692,220 +1371,45.7,1772,200 +1372,45.733333333333334,1843,180 +1373,45.766666666666666,1903,162 +1374,45.8,1950,146 +1375,45.833333333333336,1985,134 +1376,45.86666666666667,1997,130 +1377,45.9,1997,130 +1378,45.93333333333333,1997,130 +1379,45.96666666666667,1971,140 +1380,46.0,1930,154 +1381,46.03333333333333,1877,171 +1382,46.06666666666666,1812,190 +1383,46.1,1737,210 +1384,46.13333333333333,1654,230 +1385,46.166666666666664,1567,247 +1386,46.2,1475,263 +1387,46.233333333333334,1387,274 +1388,46.266666666666666,1298,281 +1389,46.3,1214,283 +1390,46.333333333333336,1138,283 +1391,46.36666666666667,1071,283 +1392,46.4,1015,280 +1393,46.43333333333333,969,276 +1394,46.46666666666667,936,273 +1395,46.5,915,270 +1396,46.53333333333333,915,270 +1397,46.56666666666666,915,270 +1398,46.6,932,272 +1399,46.63333333333333,963,275 +1400,46.666666666666664,1006,279 +1401,46.7,1062,282 +1402,46.733333333333334,1127,282 +1403,46.766666666666666,1202,282 +1404,46.8,1284,280 +1405,46.833333333333336,1373,274 +1406,46.86666666666667,1460,263 +1407,46.9,1553,249 +1408,46.93333333333333,1641,231 +1409,46.96666666666667,1725,212 +1410,47.0,1801,192 +1411,47.03333333333333,1867,172 +1412,47.06666666666666,1922,155 +1413,47.1,1964,141 +1414,47.13333333333333,1992,132 +1415,47.166666666666664,1992,132 +1416,47.2,1992,132 +1417,47.233333333333334,1986,134 +1418,47.266666666666666,1954,145 +1419,47.3,1908,161 +1420,47.333333333333336,1850,179 +1421,47.36666666666667,1782,199 +1422,47.4,1704,219 +1423,47.43333333333333,1619,238 +1424,47.46666666666667,1530,254 +1425,47.5,1438,268 +1426,47.53333333333333,1352,277 +1427,47.56666666666666,1265,283 +1428,47.6,1184,283 +1429,47.63333333333333,1112,283 +1430,47.666666666666664,1049,283 +1431,47.7,996,279 +1432,47.733333333333334,956,275 +1433,47.766666666666666,928,272 +1434,47.8,921,271 +1435,47.833333333333336,921,271 +1436,47.86666666666667,921,271 +1437,47.9,944,273 +1438,47.93333333333333,981,277 +1439,47.96666666666667,1029,280 +1440,48.0,1088,282 +1441,48.03333333333333,1157,282 +1442,48.06666666666666,1235,282 +1443,48.1,1320,278 +1444,48.13333333333333,1409,270 +1445,48.166666666666664,1497,258 +1446,48.2,1588,242 +1447,48.233333333333334,1675,224 +1448,48.266666666666666,1756,204 +1449,48.3,1828,184 +1450,48.333333333333336,1890,166 +1451,48.36666666666667,1939,150 +1452,48.4,1975,138 +1453,48.43333333333333,1996,131 +1454,48.46666666666667,1996,131 +1455,48.5,1996,131 +1456,48.53333333333333,1973,140 +1457,48.56666666666666,1935,153 +1458,48.6,1885,170 +1459,48.63333333333333,1822,189 +1460,48.666666666666664,1750,208 +1461,48.7,1670,228 +1462,48.733333333333334,1584,245 +1463,48.766666666666666,1493,261 +1464,48.8,1406,273 +1465,48.833333333333336,1317,281 +1466,48.86666666666667,1232,286 +1467,48.9,1155,286 +1468,48.93333333333333,1087,286 +1469,48.96666666666667,1028,282 +1470,49.0,981,279 +1471,49.03333333333333,945,275 +1472,49.06666666666666,922,273 +1473,49.1,922,273 +1474,49.13333333333333,922,273 +1475,49.166666666666664,931,274 +1476,49.2,960,276 +1477,49.233333333333334,1000,280 +1478,49.266666666666666,1053,283 +1479,49.3,1116,283 +1480,49.333333333333336,1189,283 +1481,49.36666666666667,1269,282 +1482,49.4,1356,276 +1483,49.43333333333333,1443,267 +1484,49.46666666666667,1535,253 +1485,49.5,1623,236 +1486,49.53333333333333,1708,218 +1487,49.56666666666666,1785,198 +1488,49.6,1853,179 +1489,49.63333333333333,1909,162 +1490,49.666666666666664,1953,147 +1491,49.7,1984,137 +1492,49.733333333333334,1986,137 +1493,49.766666666666666,1986,137 +1494,49.8,1986,137 +1495,49.833333333333336,1957,147 +1496,49.86666666666667,1914,162 +1497,49.9,1859,179 +1498,49.93333333333333,1792,199 +1499,49.96666666666667,1717,218 +1500,50.0,1633,237 +1501,50.03333333333333,1546,254 +1502,50.06666666666666,1455,268 +1503,50.1,1368,278 +1504,50.13333333333333,1280,284 +1505,50.166666666666664,1199,285 +1506,50.2,1126,285 +1507,50.233333333333334,1061,285 +1508,50.266666666666666,1007,281 +1509,50.3,965,277 +1510,50.333333333333336,934,274 +1511,50.36666666666667,920,272 +1512,50.4,920,272 +1513,50.43333333333333,920,272 +1514,50.46666666666667,941,274 +1515,50.5,974,277 +1516,50.53333333333333,1020,281 +1517,50.56666666666666,1077,284 +1518,50.6,1145,284 +1519,50.63333333333333,1221,284 +1520,50.666666666666664,1304,280 +1521,50.7,1392,273 +1522,50.733333333333334,1479,261 +1523,50.766666666666666,1570,246 +1524,50.8,1657,229 +1525,50.833333333333336,1738,209 +1526,50.86666666666667,1812,190 +1527,50.9,1875,171 +1528,50.93333333333333,1927,155 +1529,50.96666666666667,1965,142 +1530,51.0,1989,134 +1531,51.03333333333333,1989,134 +1532,51.06666666666666,1989,134 +1533,51.1,1973,140 +1534,51.13333333333333,1939,153 +1535,51.166666666666664,1891,168 +1536,51.2,1831,187 +1537,51.233333333333334,1761,206 +1538,51.266666666666666,1682,226 +1539,51.3,1597,243 +1540,51.333333333333336,1508,259 +1541,51.36666666666667,1419,272 +1542,51.4,1333,280 +1543,51.43333333333333,1247,284 +1544,51.46666666666667,1170,284 +1545,51.5,1100,284 +1546,51.53333333333333,1039,282 +1547,51.56666666666666,990,278 +1548,51.6,953,275 +1549,51.63333333333333,928,272 +1550,51.666666666666664,928,271 +1551,51.699999999999996,928,271 +1552,51.733333333333334,929,271 +1553,51.766666666666666,955,274 +1554,51.8,993,277 +1555,51.833333333333336,1044,281 +1556,51.86666666666667,1105,281 +1557,51.9,1176,281 +1558,51.93333333333333,1255,281 +1559,51.96666666666667,1340,276 +1560,52.0,1427,268 +1561,52.03333333333333,1516,254 +1562,52.06666666666666,1606,238 +1563,52.1,1691,220 +1564,52.13333333333333,1769,201 +1565,52.166666666666664,1838,182 +1566,52.199999999999996,1897,164 +1567,52.233333333333334,1943,149 +1568,52.266666666666666,1976,138 +1569,52.3,1986,136 +1570,52.333333333333336,1986,136 +1571,52.36666666666667,1986,136 +1572,52.4,1959,145 +1573,52.43333333333333,1920,159 +1574,52.46666666666667,1867,176 +1575,52.5,1803,195 +1576,52.53333333333333,1729,214 +1577,52.56666666666666,1648,233 +1578,52.6,1561,250 +1579,52.63333333333333,1471,264 +1580,52.666666666666664,1385,275 +1581,52.699999999999996,1298,281 +1582,52.733333333333334,1216,283 +1583,52.766666666666666,1141,283 +1584,52.8,1075,283 +1585,52.833333333333336,1020,280 +1586,52.86666666666667,975,276 +1587,52.9,942,273 +1588,52.93333333333333,922,271 +1589,52.96666666666667,922,271 +1590,53.0,922,271 +1591,53.03333333333333,940,272 +1592,53.06666666666666,971,274 +1593,53.1,1015,278 +1594,53.13333333333333,1069,281 +1595,53.166666666666664,1134,281 +1596,53.199999999999996,1208,281 +1597,53.233333333333334,1290,278 +1598,53.266666666666666,1377,272 +1599,53.3,1462,261 +1600,53.333333333333336,1553,247 +1601,53.36666666666667,1640,231 +1602,53.4,1722,212 +1603,53.43333333333333,1796,193 +1604,53.46666666666667,1861,175 +1605,53.5,1915,158 +1606,53.53333333333333,1955,145 +1607,53.56666666666666,1982,136 +1608,53.6,1982,136 +1609,53.63333333333333,1982,136 +1610,53.666666666666664,1974,140 +1611,53.699999999999996,1942,151 +1612,53.733333333333334,1897,167 +1613,53.766666666666666,1839,185 +1614,53.8,1771,204 +1615,53.833333333333336,1695,223 +1616,53.86666666666667,1612,241 +1617,53.9,1524,256 +1618,53.93333333333333,1433,270 +1619,53.96666666666667,1348,278 +1620,54.0,1263,284 +1621,54.03333333333333,1184,284 +1622,54.06666666666666,1113,284 +1623,54.1,1052,282 +1624,54.13333333333333,1000,278 +1625,54.166666666666664,961,275 +1626,54.199999999999996,934,271 +1627,54.233333333333334,928,270 +1628,54.266666666666666,928,270 +1629,54.3,928,270 +1630,54.333333333333336,953,272 +1631,54.36666666666667,989,275 +1632,54.4,1037,279 +1633,54.43333333333333,1096,281 +1634,54.46666666666667,1164,281 +1635,54.5,1242,281 +1636,54.53333333333333,1325,276 +1637,54.56666666666666,1413,268 +1638,54.6,1500,256 +1639,54.63333333333333,1589,241 +1640,54.666666666666664,1674,223 +1641,54.699999999999996,1753,205 +1642,54.733333333333334,1823,186 +1643,54.766666666666666,1883,169 +1644,54.8,1931,154 +1645,54.833333333333336,1967,142 +1646,54.86666666666667,1985,137 +1647,54.9,1985,137 +1648,54.93333333333333,1985,137 +1649,54.96666666666667,1961,145 +1650,55.0,1924,158 +1651,55.03333333333333,1874,174 +1652,55.06666666666666,1812,193 +1653,55.1,1740,212 +1654,55.13333333333333,1661,231 +1655,55.166666666666664,1576,248 +1656,55.199999999999996,1487,263 +1657,55.233333333333334,1400,273 +1658,55.266666666666666,1313,281 +1659,55.3,1230,284 +1660,55.333333333333336,1155,284 +1661,55.36666666666667,1088,284 +1662,55.4,1031,280 +1663,55.43333333333333,984,277 +1664,55.46666666666667,949,273 +1665,55.5,927,271 +1666,55.53333333333333,927,271 +1667,55.56666666666666,927,271 +1668,55.6,938,271 +1669,55.63333333333333,967,274 +1670,55.666666666666664,1008,277 +1671,55.699999999999996,1060,280 +1672,55.733333333333334,1123,280 +1673,55.766666666666666,1195,280 +1674,55.8,1275,279 +1675,55.833333333333336,1361,273 +1676,55.86666666666667,1447,263 +1677,55.9,1538,250 +1678,55.93333333333333,1624,234 +1679,55.96666666666667,1707,216 +1680,56.0,1782,197 +1681,56.03333333333333,1848,179 +1682,56.06666666666666,1903,162 +1683,56.1,1946,149 +1684,56.13333333333333,1975,140 +1685,56.166666666666664,1975,140 +1686,56.199999999999996,1975,140 +1687,56.233333333333334,1974,141 +1688,56.266666666666666,1945,151 +1689,56.3,1903,165 +1690,56.333333333333336,1848,183 +1691,56.36666666666667,1782,201 +1692,56.4,1707,220 +1693,56.43333333333333,1626,238 +1694,56.46666666666667,1540,254 +1695,56.5,1450,268 +1696,56.53333333333333,1365,277 +1697,56.56666666666666,1279,282 +1698,56.6,1200,282 +1699,56.63333333333333,1128,282 +1700,56.666666666666664,1064,282 +1701,56.699999999999996,1012,279 +1702,56.733333333333334,970,275 +1703,56.766666666666666,941,272 +1704,56.8,929,270 +1705,56.833333333333336,929,270 +1706,56.86666666666667,929,270 +1707,56.9,950,272 +1708,56.93333333333333,984,275 +1709,56.96666666666667,1029,278 +1710,57.0,1086,280 +1711,57.03333333333333,1153,280 +1712,57.06666666666666,1228,280 +1713,57.1,1311,276 +1714,57.13333333333333,1398,270 +1715,57.166666666666664,1484,259 +1716,57.199999999999996,1573,244 +1717,57.233333333333334,1658,227 +1718,57.266666666666666,1738,209 +1719,57.3,1810,190 +1720,57.333333333333336,1871,173 +1721,57.36666666666667,1921,157 +1722,57.4,1958,145 +1723,57.43333333333333,1981,138 +1724,57.46666666666667,1981,138 +1725,57.5,1981,138 +1726,57.53333333333333,1962,146 +1727,57.56666666666666,1928,158 +1728,57.6,1880,173 +1729,57.63333333333333,1821,191 +1730,57.666666666666664,1751,210 +1731,57.699999999999996,1674,229 +1732,57.733333333333334,1591,246 +1733,57.766666666666666,1502,261 +1734,57.8,1416,273 +1735,57.833333333333336,1330,280 +1736,57.86666666666667,1247,284 +1737,57.9,1170,284 +1738,57.93333333333333,1102,284 +1739,57.96666666666667,1043,281 +1740,58.0,995,278 +1741,58.03333333333333,959,274 +1742,58.06666666666666,934,271 +1743,58.1,934,270 +1744,58.13333333333333,934,270 +1745,58.166666666666664,938,270 +1746,58.199999999999996,964,273 +1747,58.233333333333334,1003,276 +1748,58.266666666666666,1053,279 +1749,58.3,1114,279 +1750,58.333333333333336,1184,279 +1751,58.36666666666667,1262,279 +1752,58.4,1348,273 +1753,58.43333333333333,1432,266 +1754,58.46666666666667,1521,253 +1755,58.5,1609,238 +1756,58.53333333333333,1691,220 +1757,58.56666666666666,1768,202 +1758,58.6,1835,184 +1759,58.63333333333333,1892,167 +1760,58.666666666666664,1936,154 +1761,58.699999999999996,1967,144 +1762,58.733333333333334,1975,142 +1763,58.766666666666666,1975,142 +1764,58.8,1975,142 +1765,58.833333333333336,1948,152 +1766,58.86666666666667,1908,165 +1767,58.9,1856,182 +1768,58.93333333333333,1792,200 +1769,58.96666666666667,1719,219 +1770,59.0,1639,237 +1771,59.03333333333333,1555,253 +1772,59.06666666666666,1465,267 +1773,59.1,1381,277 +1774,59.13333333333333,1295,283 +1775,59.166666666666664,1215,283 +1776,59.199999999999996,1142,283 +1777,59.233333333333334,1077,283 +1778,59.266666666666666,1023,281 +1779,59.3,980,277 +1780,59.333333333333336,948,274 +1781,59.36666666666667,930,271 +1782,59.4,930,271 +1783,59.43333333333333,930,271 +1784,59.46666666666667,948,273 +1785,59.5,980,275 +1786,59.53333333333333,1023,279 +1787,59.56666666666666,1078,281 +1788,59.6,1143,281 +1789,59.63333333333333,1217,281 +1790,59.666666666666664,1297,278 +1791,59.699999999999996,1383,272 +1792,59.733333333333334,1468,262 +1793,59.766666666666666,1558,247 +1794,59.8,1643,233 +1795,59.833333333333336,1723,215 +1796,59.86666666666667,1795,196 +1797,59.9,1858,178 +1798,59.93333333333333,1910,163 +1799,59.96666666666667,1949,151 +1800,60.0,1974,143 +1801,60.03333333333333,1974,143 +1802,60.06666666666666,1974,143 +1803,60.1,1964,148 +1804,60.13333333333333,1931,160 +1805,60.166666666666664,1886,174 +1806,60.199999999999996,1829,192 +1807,60.233333333333334,1762,210 +1808,60.266666666666666,1686,229 +1809,60.3,1604,246 +1810,60.333333333333336,1516,261 +1811,60.36666666666667,1429,274 +1812,60.4,1346,281 +1813,60.43333333333333,1261,286 +1814,60.46666666666667,1184,286 +1815,60.5,1115,286 +1816,60.53333333333333,1054,284 +1817,60.56666666666666,1005,280 +1818,60.6,966,277 +1819,60.63333333333333,940,273 +1820,60.666666666666664,937,272 +1821,60.699999999999996,937,272 +1822,60.733333333333334,937,272 +1823,60.766666666666666,961,274 +1824,60.8,998,277 +1825,60.833333333333336,1046,280 +1826,60.86666666666667,1104,281 +1827,60.9,1173,281 +1828,60.93333333333333,1249,281 +1829,60.96666666666667,1333,276 +1830,61.0,1418,269 +1831,61.03333333333333,1504,257 +1832,61.06666666666666,1593,242 +1833,61.1,1676,226 +1834,61.13333333333333,1753,208 +1835,61.166666666666664,1821,189 +1836,61.199999999999996,1880,173 +1837,61.233333333333334,1926,159 +1838,61.266666666666666,1959,149 +1839,61.3,1973,146 +1840,61.333333333333336,1973,146 +1841,61.36666666666667,1973,146 +1842,61.4,1949,155 +1843,61.43333333333333,1912,167 +1844,61.46666666666667,1862,183 +1845,61.5,1801,200 +1846,61.53333333333333,1730,219 +1847,61.56666666666666,1651,236 +1848,61.6,1568,253 +1849,61.63333333333333,1479,266 +1850,61.666666666666664,1395,277 +1851,61.699999999999996,1309,284 +1852,61.733333333333334,1228,286 +1853,61.766666666666666,1155,286 +1854,61.8,1089,286 +1855,61.833333333333336,1032,282 +1856,61.86666666666667,988,279 +1857,61.9,954,275 +1858,61.93333333333333,934,272 +1859,61.96666666666667,934,272 +1860,62.0,934,272 +1861,62.03333333333333,946,273 +1862,62.06666666666666,976,275 +1863,62.1,1017,279 +1864,62.13333333333333,1069,281 +1865,62.166666666666664,1132,281 +1866,62.199999999999996,1204,281 +1867,62.233333333333334,1283,279 +1868,62.266666666666666,1368,273 +1869,62.3,1453,265 +1870,62.333333333333336,1542,251 +1871,62.36666666666667,1627,236 +1872,62.4,1708,219 +1873,62.43333333333333,1781,201 +1874,62.46666666666667,1845,184 +1875,62.5,1898,168 +1876,62.53333333333333,1939,156 +1877,62.56666666666666,1967,147 +1878,62.6,1967,147 +1879,62.63333333333333,1967,147 +1880,62.666666666666664,1963,150 +1881,62.699999999999996,1934,161 +1882,62.733333333333334,1890,174 +1883,62.766666666666666,1836,191 +1884,62.8,1771,210 +1885,62.833333333333336,1697,227 +1886,62.86666666666667,1616,244 +1887,62.9,1531,259 +1888,62.93333333333333,1443,272 +1889,62.96666666666667,1360,281 +1890,63.0,1275,285 +1891,63.03333333333333,1197,285 +1892,63.06666666666666,1127,285 +1893,63.1,1065,285 +1894,63.13333333333333,1013,281 +1895,63.166666666666664,973,277 +1896,63.199999999999996,945,274 +1897,63.233333333333334,936,271 +1898,63.266666666666666,936,271 +1899,63.3,936,271 +1900,63.333333333333336,958,273 +1901,63.36666666666667,992,276 +1902,63.4,1038,279 +1903,63.43333333333333,1095,281 +1904,63.46666666666667,1162,281 +1905,63.5,1237,281 +1906,63.53333333333333,1319,277 +1907,63.56666666666666,1406,269 +1908,63.6,1489,259 +1909,63.63333333333333,1577,245 +1910,63.666666666666664,1661,229 +1911,63.699999999999996,1738,212 +1912,63.733333333333334,1808,194 +1913,63.766666666666666,1867,177 +1914,63.8,1915,163 +1915,63.833333333333336,1951,152 +1916,63.86666666666667,1972,147 +1917,63.9,1972,147 +1918,63.93333333333333,1972,147 +1919,63.96666666666667,1951,154 +1920,64.0,1915,167 +1921,64.03333333333333,1868,182 +1922,64.06666666666666,1809,199 +1923,64.1,1740,217 +1924,64.13333333333333,1663,235 +1925,64.16666666666667,1581,251 +1926,64.2,1493,265 +1927,64.23333333333333,1410,275 +1928,64.26666666666667,1324,283 +1929,64.3,1242,285 +1930,64.33333333333333,1167,285 +1931,64.36666666666666,1100,285 +1932,64.4,1043,282 +1933,64.43333333333334,997,279 +1934,64.46666666666667,962,275 +1935,64.5,939,272 +1936,64.53333333333333,939,271 +1937,64.56666666666666,939,271 +1938,64.6,945,271 +1939,64.63333333333333,972,274 +1940,64.66666666666667,1011,277 +1941,64.7,1062,280 +1942,64.73333333333333,1123,280 +1943,64.76666666666667,1193,280 +1944,64.8,1271,279 +1945,64.83333333333333,1355,274 +1946,64.86666666666666,1438,266 +1947,64.9,1527,253 +1948,64.93333333333334,1612,239 +1949,64.96666666666667,1693,222 +1950,65.0,1768,205 +1951,65.03333333333333,1833,188 +1952,65.06666666666666,1888,172 +1953,65.1,1930,159 +1954,65.13333333333333,1960,150 +1955,65.16666666666667,1963,150 +1956,65.2,1963,150 +1957,65.23333333333333,1963,151 +1958,65.26666666666667,1936,160 +1959,65.3,1896,174 +1960,65.33333333333333,1843,190 +1961,65.36666666666666,1780,207 +1962,65.4,1707,225 +1963,65.43333333333334,1628,242 +1964,65.46666666666667,1544,257 +1965,65.5,1456,270 +1966,65.53333333333333,1374,279 +1967,65.56666666666666,1289,284 +1968,65.6,1210,284 +1969,65.63333333333333,1139,284 +1970,65.66666666666667,1076,284 +1971,65.7,1023,281 +1972,65.73333333333333,981,277 +1973,65.76666666666667,951,273 +1974,65.8,936,271 +1975,65.83333333333333,936,271 +1976,65.86666666666666,936,271 +1977,65.9,956,272 +1978,65.93333333333334,988,275 +1979,65.96666666666667,1032,278 +1980,66.0,1087,280 +1981,66.03333333333333,1152,280 +1982,66.06666666666666,1226,280 +1983,66.1,1306,277 +1984,66.13333333333333,1391,271 +1985,66.16666666666667,1475,261 +1986,66.2,1563,247 +1987,66.23333333333333,1646,232 +1988,66.26666666666667,1725,215 +1989,66.3,1795,198 +1990,66.33333333333333,1856,181 +1991,66.36666666666666,1906,167 +1992,66.4,1943,156 +1993,66.43333333333334,1967,149 +1994,66.46666666666667,1967,149 +1995,66.5,1967,149 +1996,66.53333333333333,1952,155 +1997,66.56666666666666,1919,167 +1998,66.6,1874,181 +1999,66.63333333333333,1817,198 +2000,66.66666666666667,1750,216 +2001,66.7,1674,233 +2002,66.73333333333333,1593,249 +2003,66.76666666666667,1506,264 +2004,66.8,1422,275 +2005,66.83333333333333,1339,282 +2006,66.86666666666666,1256,286 +2007,66.9,1180,286 +2008,66.93333333333334,1113,286 +2009,66.96666666666667,1054,283 +2010,67.0,1006,279 +2011,67.03333333333333,969,275 +2012,67.06666666666666,944,273 +2013,67.1,944,271 +2014,67.13333333333333,944,271 +2015,67.16666666666667,944,271 +2016,67.2,970,273 +2017,67.23333333333333,1006,276 +2018,67.26666666666667,1055,279 +2019,67.3,1114,279 +2020,67.33333333333333,1183,279 +2021,67.36666666666666,1259,279 +2022,67.4,1342,275 +2023,67.43333333333334,1426,266 +2024,67.46666666666667,1512,255 +2025,67.5,1598,241 +2026,67.53333333333333,1679,225 +2027,67.56666666666666,1754,208 +2028,67.6,1821,191 +2029,67.63333333333333,1878,175 +2030,67.66666666666667,1922,162 +2031,67.7,1953,153 +2032,67.73333333333333,1963,152 +2033,67.76666666666667,1963,152 +2034,67.8,1963,152 +2035,67.83333333333333,1939,160 +2036,67.86666666666666,1901,173 +2037,67.9,1850,188 +2038,67.93333333333334,1789,206 +2039,67.96666666666667,1718,223 +2040,68.0,1640,240 +2041,68.03333333333333,1558,255 +2042,68.06666666666666,1470,269 +2043,68.1,1388,277 +2044,68.13333333333333,1304,284 +2045,68.16666666666667,1225,284 +2046,68.2,1152,284 +2047,68.23333333333333,1088,284 +2048,68.26666666666667,1034,281 +2049,68.3,990,277 +2050,68.33333333333333,958,273 +2051,68.36666666666666,939,270 +2052,68.4,939,270 +2053,68.43333333333334,939,270 +2054,68.46666666666667,955,270 +2055,68.5,985,273 +2056,68.53333333333333,1027,276 +2057,68.56666666666666,1081,278 +2058,68.6,1144,278 +2059,68.63333333333333,1215,278 +2060,68.66666666666667,1294,276 +2061,68.7,1378,270 +2062,68.73333333333333,1461,261 +2063,68.76666666666667,1549,248 +2064,68.8,1633,234 +2065,68.83333333333333,1711,218 +2066,68.86666666666666,1783,201 +2067,68.9,1845,184 +2068,68.93333333333334,1897,170 +2069,68.96666666666667,1935,158 +2070,69.0,1961,150 +2071,69.03333333333333,1961,150 +2072,69.06666666666666,1961,150 +2073,69.1,1953,154 +2074,69.13333333333333,1923,166 +2075,69.16666666666667,1880,179 +2076,69.2,1824,195 +2077,69.23333333333333,1759,212 +2078,69.26666666666667,1685,230 +2079,69.3,1606,246 +2080,69.33333333333333,1521,260 +2081,69.36666666666666,1435,272 +2082,69.4,1353,279 +2083,69.43333333333334,1270,284 +2084,69.46666666666667,1194,284 +2085,69.5,1125,284 +2086,69.53333333333333,1064,282 +2087,69.56666666666666,1015,277 +2088,69.6,976,273 +2089,69.63333333333333,949,270 +2090,69.66666666666667,943,268 +2091,69.7,943,268 +2092,69.73333333333333,943,268 +2093,69.76666666666667,966,270 +2094,69.8,1002,273 +2095,69.83333333333333,1049,276 +2096,69.86666666666666,1106,277 +2097,69.9,1173,277 +2098,69.93333333333334,1248,277 +2099,69.96666666666667,1329,273 +2100,70.0,1414,266 +2101,70.03333333333333,1498,255 +2102,70.06666666666666,1584,241 +2103,70.1,1666,226 +2104,70.13333333333333,1742,209 +2105,70.16666666666667,1809,193 +2106,70.2,1867,177 +2107,70.23333333333333,1913,164 +2108,70.26666666666667,1946,154 +2109,70.3,1963,151 +2110,70.33333333333333,1963,151 +2111,70.36666666666666,1963,151 +2112,70.4,1940,159 +2113,70.43333333333334,1904,171 +2114,70.46666666666667,1856,185 +2115,70.5,1797,203 +2116,70.53333333333333,1728,220 +2117,70.56666666666666,1651,237 +2118,70.6,1570,252 +2119,70.63333333333333,1484,265 +2120,70.66666666666667,1402,275 +2121,70.7,1317,281 +2122,70.73333333333333,1237,282 +2123,70.76666666666667,1164,282 +2124,70.8,1099,282 +2125,70.83333333333333,1043,279 +2126,70.86666666666666,998,275 +2127,70.9,964,272 +2128,70.93333333333334,942,269 +2129,70.96666666666667,942,268 +2130,71.0,942,268 +2131,71.03333333333333,952,268 +2132,71.06666666666666,981,270 +2133,71.1,1021,274 +2134,71.13333333333333,1072,276 +2135,71.16666666666667,1134,276 +2136,71.2,1204,276 +2137,71.23333333333333,1281,275 +2138,71.26666666666667,1365,270 +2139,71.3,1447,262 +2140,71.33333333333333,1535,250 +2141,71.36666666666666,1618,235 +2142,71.4,1697,219 +2143,71.43333333333334,1770,203 +2144,71.46666666666667,1833,186 +2145,71.5,1886,172 +2146,71.53333333333333,1927,160 +2147,71.56666666666666,1954,152 +2148,71.6,1954,152 +2149,71.63333333333333,1954,152 +2150,71.66666666666667,1953,154 +2151,71.7,1925,164 +2152,71.73333333333333,1883,177 +2153,71.76666666666667,1831,193 +2154,71.8,1768,210 +2155,71.83333333333333,1695,228 +2156,71.86666666666666,1617,244 +2157,71.9,1534,258 +2158,71.93333333333334,1448,270 +2159,71.96666666666667,1365,278 +2160,72.0,1282,283 +2161,72.03333333333333,1206,283 +2162,72.06666666666666,1136,283 +2163,72.1,1075,281 +2164,72.13333333333333,1023,277 +2165,72.16666666666667,983,273 +2166,72.2,954,269 +2167,72.23333333333333,943,267 +2168,72.26666666666667,943,267 +2169,72.3,943,267 +2170,72.33333333333333,964,269 +2171,72.36666666666666,997,271 +2172,72.4,1042,274 +2173,72.43333333333334,1098,276 +2174,72.46666666666667,1163,276 +2175,72.5,1236,276 +2176,72.53333333333333,1316,274 +2177,72.56666666666666,1401,267 +2178,72.6,1483,257 +2179,72.63333333333333,1570,244 +2180,72.66666666666667,1651,229 +2181,72.7,1728,213 +2182,72.73333333333333,1796,196 +2183,72.76666666666667,1855,181 +2184,72.8,1903,168 +2185,72.83333333333333,1938,158 +2186,72.86666666666666,1960,153 +2187,72.9,1960,153 +2188,72.93333333333334,1960,153 +2189,72.96666666666667,1941,160 +2190,73.0,1907,171 +2191,73.03333333333333,1861,185 +2192,73.06666666666666,1804,201 +2193,73.1,1737,218 +2194,73.13333333333333,1662,235 +2195,73.16666666666667,1581,251 +2196,73.2,1496,264 +2197,73.23333333333333,1414,274 +2198,73.26666666666667,1330,280 +2199,73.3,1249,282 +2200,73.33333333333333,1175,282 +2201,73.36666666666666,1109,282 +2202,73.4,1052,279 +2203,73.43333333333334,1006,275 +2204,73.46666666666667,970,271 +2205,73.5,947,268 +2206,73.53333333333333,947,267 +2207,73.56666666666666,947,267 +2208,73.6,951,267 +2209,73.63333333333333,977,269 +2210,73.66666666666667,1015,272 +2211,73.7,1065,274 +2212,73.73333333333333,1125,275 +2213,73.76666666666667,1193,275 +2214,73.8,1269,275 +2215,73.83333333333333,1351,270 +2216,73.86666666666666,1433,264 +2217,73.9,1520,251 +2218,73.93333333333334,1604,238 +2219,73.96666666666667,1683,223 +2220,74.0,1757,207 +2221,74.03333333333333,1821,191 +2222,74.06666666666666,1875,176 +2223,74.1,1917,164 +2224,74.13333333333333,1947,156 +2225,74.16666666666667,1952,156 +2226,74.2,1952,156 +2227,74.23333333333333,1952,157 +2228,74.26666666666667,1926,165 +2229,74.3,1887,178 +2230,74.33333333333333,1836,193 +2231,74.36666666666666,1775,210 +2232,74.4,1704,227 +2233,74.43333333333334,1628,242 +2234,74.46666666666667,1546,256 +2235,74.5,1459,269 +2236,74.53333333333333,1378,277 +2237,74.56666666666666,1296,282 +2238,74.6,1218,282 +2239,74.63333333333333,1147,282 +2240,74.66666666666667,1085,281 +2241,74.7,1032,277 +2242,74.73333333333333,990,273 +2243,74.76666666666667,960,269 +2244,74.8,942,266 +2245,74.83333333333333,942,266 +2246,74.86666666666666,942,266 +2247,74.9,962,267 +2248,74.93333333333334,993,270 +2249,74.96666666666667,1036,272 +2250,75.0,1090,275 +2251,75.03333333333333,1153,275 +2252,75.06666666666666,1225,275 +2253,75.1,1303,273 +2254,75.13333333333333,1387,268 +2255,75.16666666666667,1469,259 +2256,75.2,1556,246 +2257,75.23333333333333,1638,232 +2258,75.26666666666667,1714,217 +2259,75.3,1784,201 +2260,75.33333333333333,1844,185 +2261,75.36666666666666,1893,172 +2262,75.4,1930,161 +2263,75.43333333333334,1953,154 +2264,75.46666666666667,1953,154 +2265,75.5,1953,154 +2266,75.53333333333333,1941,161 +2267,75.56666666666666,1909,172 +2268,75.6,1865,185 +2269,75.63333333333333,1810,201 +2270,75.66666666666667,1745,218 +2271,75.7,1672,234 +2272,75.73333333333333,1593,249 +2273,75.76666666666667,1508,262 +2274,75.8,1425,274 +2275,75.83333333333333,1343,280 +2276,75.86666666666666,1263,282 +2277,75.9,1188,282 +2278,75.93333333333334,1121,282 +2279,75.96666666666667,1063,279 +2280,76.0,1015,275 +2281,76.03333333333333,977,271 +2282,76.06666666666666,952,268 +2283,76.1,951,266 +2284,76.13333333333333,951,266 +2285,76.16666666666667,951,266 +2286,76.2,975,268 +2287,76.23333333333333,1011,271 +2288,76.26666666666667,1059,274 +2289,76.3,1117,275 +2290,76.33333333333333,1184,275 +2291,76.36666666666666,1259,275 +2292,76.4,1340,271 +2293,76.43333333333334,1422,265 +2294,76.46666666666667,1506,254 +2295,76.5,1591,241 +2296,76.53333333333333,1671,226 +2297,76.56666666666666,1745,210 +2298,76.6,1810,194 +2299,76.63333333333333,1865,179 +2300,76.66666666666667,1910,167 +2301,76.7,1941,158 +2302,76.73333333333333,1952,157 +2303,76.76666666666667,1952,157 +2304,76.8,1952,157 +2305,76.83333333333333,1928,166 +2306,76.86666666666666,1892,178 +2307,76.9,1843,192 +2308,76.93333333333334,1783,209 +2309,76.96666666666667,1714,225 +2310,77.0,1638,242 +2311,77.03333333333333,1558,256 +2312,77.06666666666666,1472,268 +2313,77.1,1391,277 +2314,77.13333333333333,1308,282 +2315,77.16666666666667,1230,282 +2316,77.2,1158,282 +2317,77.23333333333333,1095,281 +2318,77.26666666666667,1041,277 +2319,77.3,998,273 +2320,77.33333333333333,966,269 +2321,77.36666666666666,946,267 +2322,77.4,946,266 +2323,77.43333333333334,946,266 +2324,77.46666666666667,960,266 +2325,77.5,990,269 +2326,77.53333333333333,1031,272 +2327,77.56666666666666,1083,275 +2328,77.6,1145,275 +2329,77.63333333333333,1215,275 +2330,77.66666666666667,1293,274 +2331,77.7,1375,268 +2332,77.73333333333333,1458,261 +2333,77.76666666666667,1543,249 +2334,77.8,1625,235 +2335,77.83333333333333,1702,220 +2336,77.86666666666666,1773,204 +2337,77.9,1834,189 +2338,77.93333333333334,1884,176 +2339,77.96666666666667,1923,165 +2340,78.0,1948,158 +2341,78.03333333333333,1948,158 +2342,78.06666666666666,1948,158 +2343,78.1,1942,163 +2344,78.13333333333333,1912,172 +2345,78.16666666666667,1870,186 +2346,78.2,1817,201 +2347,78.23333333333333,1753,217 +2348,78.26666666666667,1682,234 +2349,78.3,1604,249 +2350,78.33333333333333,1521,262 +2351,78.36666666666666,1436,273 +2352,78.4,1356,280 +2353,78.43333333333334,1274,283 +2354,78.46666666666667,1199,283 +2355,78.5,1131,283 +2356,78.53333333333333,1071,280 +2357,78.56666666666666,1022,276 +2358,78.6,983,272 +2359,78.63333333333333,956,269 +2360,78.66666666666667,950,267 +2361,78.7,950,267 +2362,78.73333333333333,950,267 +2363,78.76666666666667,972,269 +2364,78.8,1007,271 +2365,78.83333333333333,1052,274 +2366,78.86666666666666,1109,276 +2367,78.9,1175,276 +2368,78.93333333333334,1248,276 +2369,78.96666666666667,1328,273 +2370,79.0,1412,267 +2371,79.03333333333333,1493,257 +2372,79.06666666666666,1578,245 +2373,79.1,1658,230 +2374,79.13333333333333,1732,215 +2375,79.16666666666667,1799,200 +2376,79.2,1855,185 +2377,79.23333333333333,1901,173 +2378,79.26666666666667,1933,164 +2379,79.3,1951,160 +2380,79.33333333333333,1951,160 +2381,79.36666666666666,1951,160 +2382,79.4,1929,168 +2383,79.43333333333334,1894,180 +2384,79.46666666666667,1848,194 +2385,79.5,1790,210 +2386,79.53333333333333,1722,226 +2387,79.56666666666666,1648,242 +2388,79.6,1568,256 +2389,79.63333333333333,1484,268 +2390,79.66666666666667,1404,276 +2391,79.7,1321,282 +2392,79.73333333333333,1242,283 +2393,79.76666666666667,1170,283 +2394,79.8,1105,283 +2395,79.83333333333333,1050,279 +2396,79.86666666666666,1005,275 +2397,79.9,972,272 +2398,79.93333333333334,950,268 +2399,79.96666666666667,950,267 +2400,80.0,950,267 +2401,80.03333333333333,959,267 +2402,80.06666666666666,986,270 +2403,80.1,1026,272 +2404,80.13333333333333,1076,275 +2405,80.16666666666667,1137,275 +2406,80.2,1206,275 +2407,80.23333333333333,1282,275 +2408,80.26666666666667,1364,271 +2409,80.3,1445,263 +2410,80.33333333333333,1531,252 +2411,80.36666666666666,1613,239 +2412,80.4,1690,225 +2413,80.43333333333334,1761,209 +2414,80.46666666666667,1823,195 +2415,80.5,1875,181 +2416,80.53333333333333,1915,170 +2417,80.56666666666666,1942,163 +2418,80.6,1942,163 +2419,80.63333333333333,1942,163 +2420,80.66666666666667,1941,166 +2421,80.7,1914,175 +2422,80.73333333333333,1875,187 +2423,80.76666666666667,1823,201 +2424,80.8,1762,218 +2425,80.83333333333333,1691,234 +2426,80.86666666666666,1615,249 +2427,80.9,1533,262 +2428,80.93333333333334,1449,273 +2429,80.96666666666667,1368,280 +2430,81.0,1287,284 +2431,81.03333333333333,1211,284 +2432,81.06666666666666,1142,284 +2433,81.1,1082,281 +2434,81.13333333333333,1031,277 +2435,81.16666666666667,991,273 +2436,81.2,963,269 +2437,81.23333333333333,951,266 +2438,81.26666666666667,951,266 +2439,81.3,951,266 +2440,81.33333333333333,971,267 +2441,81.36666666666666,1004,270 +2442,81.4,1048,272 +2443,81.43333333333334,1103,275 +2444,81.46666666666667,1167,275 +2445,81.5,1239,275 +2446,81.53333333333333,1318,272 +2447,81.56666666666666,1401,266 +2448,81.6,1482,258 +2449,81.63333333333333,1566,245 +2450,81.66666666666667,1647,232 +2451,81.7,1721,217 +2452,81.73333333333333,1788,202 +2453,81.76666666666667,1846,188 +2454,81.8,1893,175 +2455,81.83333333333333,1927,166 +2456,81.86666666666666,1948,161 +2457,81.9,1948,161 +2458,81.93333333333334,1948,161 +2459,81.96666666666667,1930,168 +2460,82.0,1897,178 +2461,82.03333333333333,1852,192 +2462,82.06666666666666,1797,207 +2463,82.1,1731,223 +2464,82.13333333333333,1658,239 +2465,82.16666666666667,1579,253 +2466,82.2,1496,265 +2467,82.23333333333333,1414,275 +2468,82.26666666666667,1333,280 +2469,82.3,1254,281 +2470,82.33333333333333,1181,281 +2471,82.36666666666666,1115,281 +2472,82.4,1059,277 +2473,82.43333333333334,1013,273 +2474,82.46666666666667,978,270 +2475,82.5,954,266 +2476,82.53333333333333,954,264 +2477,82.56666666666666,954,264 +2478,82.6,958,264 +2479,82.63333333333333,984,267 +2480,82.66666666666667,1022,269 +2481,82.7,1071,272 +2482,82.73333333333333,1129,273 +2483,82.76666666666667,1197,273 +2484,82.8,1272,273 +2485,82.83333333333333,1353,269 +2486,82.86666666666666,1433,263 +2487,82.9,1518,252 +2488,82.93333333333334,1600,240 +2489,82.96666666666667,1678,225 +2490,83.0,1750,210 +2491,83.03333333333333,1813,195 +2492,83.06666666666666,1866,182 +2493,83.1,1907,171 +2494,83.13333333333333,1936,163 +2495,83.16666666666667,1941,163 +2496,83.2,1941,163 +2497,83.23333333333333,1941,164 +2498,83.26666666666667,1915,173 +2499,83.3,1878,185 +2500,83.33333333333333,1828,199 +2501,83.36666666666666,1768,215 +2502,83.4,1699,230 +2503,83.43333333333334,1623,245 +2504,83.46666666666667,1544,258 +2505,83.5,1460,269 +2506,83.53333333333333,1380,277 +2507,83.56666666666666,1298,281 +2508,83.6,1222,281 +2509,83.63333333333333,1152,281 +2510,83.66666666666667,1091,279 +2511,83.7,1039,275 +2512,83.73333333333333,997,270 +2513,83.76666666666667,967,267 +2514,83.8,950,264 +2515,83.83333333333333,950,264 +2516,83.86666666666666,950,264 +2517,83.9,969,264 +2518,83.93333333333334,1000,267 +2519,83.96666666666667,1043,269 +2520,84.0,1096,272 +2521,84.03333333333333,1159,272 +2522,84.06666666666666,1229,272 +2523,84.1,1307,271 +2524,84.13333333333333,1389,267 +2525,84.16666666666667,1469,259 +2526,84.2,1554,247 +2527,84.23333333333333,1634,234 +2528,84.26666666666667,1709,220 +2529,84.3,1777,205 +2530,84.33333333333333,1835,191 +2531,84.36666666666666,1883,178 +2532,84.4,1919,169 +2533,84.43333333333334,1942,163 +2534,84.46666666666667,1942,163 +2535,84.5,1942,163 +2536,84.53333333333333,1929,169 +2537,84.56666666666666,1899,179 +2538,84.6,1856,192 +2539,84.63333333333333,1802,207 +2540,84.66666666666667,1738,222 +2541,84.7,1666,238 +2542,84.73333333333333,1589,252 +2543,84.76666666666667,1506,264 +2544,84.8,1424,274 +2545,84.83333333333333,1345,279 +2546,84.86666666666666,1265,280 +2547,84.9,1192,280 +2548,84.93333333333334,1125,280 +2549,84.96666666666667,1068,277 +2550,85.0,1020,273 +2551,85.03333333333333,984,268 +2552,85.06666666666666,959,265 +2553,85.1,958,263 +2554,85.13333333333333,958,263 +2555,85.16666666666667,958,263 +2556,85.2,982,265 +2557,85.23333333333333,1018,267 +2558,85.26666666666667,1065,270 +2559,85.3,1122,273 +2560,85.33333333333333,1188,273 +2561,85.36666666666666,1262,273 +2562,85.4,1341,270 +2563,85.43333333333334,1423,264 +2564,85.46666666666667,1504,254 +2565,85.5,1589,242 +2566,85.53333333333333,1666,229 +2567,85.56666666666666,1738,214 +2568,85.6,1802,199 +2569,85.63333333333333,1856,186 +2570,85.66666666666667,1899,175 +2571,85.7,1929,167 +2572,85.73333333333333,1939,166 +2573,85.76666666666667,1939,166 +2574,85.8,1939,166 +2575,85.83333333333333,1915,174 +2576,85.86666666666666,1880,186 +2577,85.9,1832,199 +2578,85.93333333333334,1774,214 +2579,85.96666666666667,1706,230 +2580,86.0,1632,245 +2581,86.03333333333333,1553,258 +2582,86.06666666666666,1469,269 +2583,86.1,1390,276 +2584,86.13333333333333,1309,280 +2585,86.16666666666667,1232,280 +2586,86.2,1162,280 +2587,86.23333333333333,1100,278 +2588,86.26666666666667,1047,274 +2589,86.3,1004,270 +2590,86.33333333333333,973,266 +2591,86.36666666666666,953,263 +2592,86.4,953,263 +2593,86.43333333333334,953,263 +2594,86.46666666666667,968,263 +2595,86.5,998,265 +2596,86.53333333333333,1038,268 +2597,86.56666666666666,1090,271 +2598,86.6,1151,271 +2599,86.63333333333333,1220,271 +2600,86.66666666666667,1297,271 +2601,86.7,1377,267 +2602,86.73333333333333,1458,260 +2603,86.76666666666667,1542,249 +2604,86.8,1622,236 +2605,86.83333333333333,1697,223 +2606,86.86666666666666,1765,208 +2607,86.9,1825,195 +2608,86.93333333333334,1874,182 +2609,86.96666666666667,1911,172 +2610,87.0,1935,166 +2611,87.03333333333333,1935,166 +2612,87.06666666666666,1935,166 +2613,87.1,1928,171 +2614,87.13333333333333,1899,180 +2615,87.16666666666667,1858,193 +2616,87.2,1806,207 +2617,87.23333333333333,1744,222 +2618,87.26666666666667,1673,237 +2619,87.3,1597,251 +2620,87.33333333333333,1516,263 +2621,87.36666666666666,1433,273 +2622,87.4,1355,278 +2623,87.43333333333334,1275,280 +2624,87.46666666666667,1202,280 +2625,87.5,1135,280 +2626,87.53333333333333,1077,277 +2627,87.56666666666666,1028,272 +2628,87.6,990,268 +2629,87.63333333333333,964,265 +2630,87.66666666666667,958,262 +2631,87.7,958,262 +2632,87.73333333333333,958,262 +2633,87.76666666666667,981,263 +2634,87.8,1015,266 +2635,87.83333333333333,1061,269 +2636,87.86666666666666,1116,272 +2637,87.9,1181,272 +2638,87.93333333333334,1253,272 +2639,87.96666666666667,1333,269 +2640,88.0,1413,265 +2641,88.03333333333333,1493,255 +2642,88.06666666666666,1577,244 +2643,88.1,1654,231 +2644,88.13333333333333,1727,217 +2645,88.16666666666667,1791,203 +2646,88.2,1846,190 +2647,88.23333333333333,1889,178 +2648,88.26666666666667,1921,170 +2649,88.3,1937,169 +2650,88.33333333333333,1937,169 +2651,88.36666666666666,1937,169 +2652,88.4,1915,176 +2653,88.43333333333334,1881,186 +2654,88.46666666666667,1835,199 +2655,88.5,1779,214 +2656,88.53333333333333,1713,229 +2657,88.56666666666666,1640,244 +2658,88.6,1562,256 +2659,88.63333333333333,1479,267 +2660,88.66666666666667,1401,276 +2661,88.7,1320,280 +2662,88.73333333333333,1243,280 +2663,88.76666666666667,1172,280 +2664,88.8,1109,278 +2665,88.83333333333333,1055,274 +2666,88.86666666666666,1011,270 +2667,88.9,979,266 +2668,88.93333333333334,957,263 +2669,88.96666666666667,957,262 +2670,89.0,957,262 +2671,89.03333333333333,968,262 +2672,89.06666666666666,995,264 +2673,89.1,1034,267 +2674,89.13333333333333,1084,270 +2675,89.16666666666667,1144,271 +2676,89.2,1212,271 +2677,89.23333333333333,1287,271 +2678,89.26666666666667,1368,267 +2679,89.3,1447,261 +2680,89.33333333333333,1531,251 +2681,89.36666666666666,1611,239 +2682,89.4,1687,225 +2683,89.43333333333334,1755,212 +2684,89.46666666666667,1815,198 +2685,89.5,1865,186 +2686,89.53333333333333,1903,176 +2687,89.56666666666666,1929,169 +2688,89.6,1929,169 +2689,89.63333333333333,1929,169 +2690,89.66666666666667,1927,172 +2691,89.7,1900,181 +2692,89.73333333333333,1861,193 +2693,89.76666666666667,1810,207 +2694,89.8,1750,221 +2695,89.83333333333333,1681,236 +2696,89.86666666666666,1606,250 +2697,89.9,1527,262 +2698,89.93333333333334,1444,272 +2699,89.96666666666667,1365,278 +2700,90.0,1286,279 +2701,90.03333333333333,1212,279 +2702,90.06666666666666,1144,279 +2703,90.1,1085,276 +2704,90.13333333333333,1035,272 +2705,90.16666666666667,997,268 +2706,90.2,969,264 +2707,90.23333333333333,959,262 +2708,90.26666666666667,959,262 +2709,90.3,959,262 +2710,90.33333333333333,979,263 +2711,90.36666666666666,1012,265 +2712,90.4,1056,268 +2713,90.43333333333334,1110,270 +2714,90.46666666666667,1174,270 +2715,90.5,1244,270 +2716,90.53333333333333,1323,270 +2717,90.56666666666666,1404,265 +2718,90.6,1483,257 +2719,90.63333333333333,1566,246 +2720,90.66666666666667,1644,234 +2721,90.7,1717,220 +2722,90.73333333333333,1782,206 +2723,90.76666666666667,1837,194 +2724,90.8,1882,183 +2725,90.83333333333333,1915,174 +2726,90.86666666666666,1935,171 +2727,90.9,1935,171 +2728,90.93333333333334,1935,171 +2729,90.96666666666667,1915,177 +2730,91.0,1883,188 +2731,91.03333333333333,1839,200 +2732,91.06666666666666,1784,214 +2733,91.1,1720,229 +2734,91.13333333333333,1648,243 +2735,91.16666666666667,1571,256 +2736,91.2,1490,267 +2737,91.23333333333333,1411,275 +2738,91.26666666666667,1331,280 +2739,91.3,1253,280 +2740,91.33333333333333,1182,280 +2741,91.36666666666666,1118,278 +2742,91.4,1063,274 +2743,91.43333333333334,1018,269 +2744,91.46666666666667,984,265 +2745,91.5,962,262 +2746,91.53333333333333,962,260 +2747,91.56666666666666,962,260 +2748,91.6,968,260 +2749,91.63333333333333,994,263 +2750,91.66666666666667,1031,265 +2751,91.7,1080,268 +2752,91.73333333333333,1138,271 +2753,91.76666666666667,1205,271 +2754,91.8,1279,271 +2755,91.83333333333333,1358,268 +2756,91.86666666666666,1436,262 +2757,91.9,1520,252 +2758,91.93333333333334,1600,241 +2759,91.96666666666667,1676,228 +2760,92.0,1745,215 +2761,92.03333333333333,1806,201 +2762,92.06666666666666,1857,189 +2763,92.1,1897,179 +2764,92.13333333333333,1923,172 +2765,92.16666666666667,1926,172 +2766,92.2,1926,172 +2767,92.23333333333333,1926,174 +2768,92.26666666666667,1901,182 +2769,92.3,1863,194 +2770,92.33333333333333,1814,207 +2771,92.36666666666666,1755,221 +2772,92.4,1688,236 +2773,92.43333333333334,1614,249 +2774,92.46666666666667,1536,261 +2775,92.5,1453,271 +2776,92.53333333333333,1375,277 +2777,92.56666666666666,1296,279 +2778,92.6,1221,279 +2779,92.63333333333333,1153,279 +2780,92.66666666666667,1093,276 +2781,92.7,1043,272 +2782,92.73333333333333,1003,267 +2783,92.76666666666667,974,263 +2784,92.8,959,261 +2785,92.83333333333333,959,261 +2786,92.86666666666666,959,261 +2787,92.9,979,261 +2788,92.93333333333334,1010,264 +2789,92.96666666666667,1053,267 +2790,93.0,1106,270 +2791,93.03333333333333,1168,270 +2792,93.06666666666666,1238,270 +2793,93.1,1314,270 +2794,93.13333333333333,1394,265 +2795,93.16666666666667,1473,258 +2796,93.2,1556,248 +2797,93.23333333333333,1634,236 +2798,93.26666666666667,1706,223 +2799,93.3,1772,209 +2800,93.33333333333333,1828,196 +2801,93.36666666666666,1874,185 +2802,93.4,1908,177 +2803,93.43333333333334,1929,173 +2804,93.46666666666667,1929,173 +2805,93.5,1929,173 +2806,93.53333333333333,1915,179 +2807,93.56666666666666,1884,188 +2808,93.6,1841,200 +2809,93.63333333333333,1788,214 +2810,93.66666666666667,1725,228 +2811,93.7,1655,242 +2812,93.73333333333333,1579,255 +2813,93.76666666666667,1498,265 +2814,93.8,1418,274 +2815,93.83333333333333,1340,278 +2816,93.86666666666666,1263,278 +2817,93.9,1191,278 +2818,93.93333333333334,1127,277 +2819,93.96666666666667,1071,274 +2820,94.0,1025,270 +2821,94.03333333333333,990,265 +2822,94.06666666666666,966,262 +2823,94.1,966,260 +2824,94.13333333333333,966,260 +2825,94.16666666666667,968,260 +2826,94.2,992,262 +2827,94.23333333333333,1029,265 +2828,94.26666666666667,1075,267 +2829,94.3,1132,270 +2830,94.33333333333333,1198,270 +2831,94.36666666666666,1271,270 +2832,94.4,1349,267 +2833,94.43333333333334,1427,263 +2834,94.46666666666667,1509,254 +2835,94.5,1590,243 +2836,94.53333333333333,1666,231 +2837,94.56666666666666,1735,217 +2838,94.6,1797,204 +2839,94.63333333333333,1848,193 +2840,94.66666666666667,1888,183 +2841,94.7,1917,175 +2842,94.73333333333333,1925,175 +2843,94.76666666666667,1925,175 +2844,94.8,1925,176 +2845,94.83333333333333,1901,184 +2846,94.86666666666666,1865,194 +2847,94.9,1818,207 +2848,94.93333333333334,1760,221 +2849,94.96666666666667,1694,235 +2850,95.0,1621,249 +2851,95.03333333333333,1544,260 +2852,95.06666666666666,1462,270 +2853,95.1,1385,277 +2854,95.13333333333333,1305,279 +2855,95.16666666666667,1230,279 +2856,95.2,1162,279 +2857,95.23333333333333,1102,276 +2858,95.26666666666667,1050,272 +2859,95.3,1008,268 +2860,95.33333333333333,979,264 +2861,95.36666666666666,960,261 +2862,95.4,960,260 +2863,95.43333333333334,960,260 +2864,95.46666666666667,978,260 +2865,95.5,1008,263 +2866,95.53333333333333,1049,266 +2867,95.56666666666666,1101,269 +2868,95.6,1161,270 +2869,95.63333333333333,1230,270 +2870,95.66666666666667,1305,270 +2871,95.7,1385,266 +2872,95.73333333333333,1463,260 +2873,95.76666666666667,1546,249 +2874,95.8,1624,238 +2875,95.83333333333333,1697,226 +2876,95.86666666666666,1763,212 +2877,95.9,1820,200 +2878,95.93333333333334,1867,188 +2879,95.96666666666667,1902,180 +2880,96.0,1924,174 +2881,96.03333333333333,1924,174 +2882,96.06666666666666,1924,174 +2883,96.1,1914,180 +2884,96.13333333333333,1885,189 +2885,96.16666666666667,1844,201 +2886,96.2,1793,214 +2887,96.23333333333333,1732,228 +2888,96.26666666666667,1663,241 +2889,96.3,1588,254 +2890,96.33333333333333,1508,265 +2891,96.36666666666666,1428,273 +2892,96.4,1350,278 +2893,96.43333333333334,1273,278 +2894,96.46666666666667,1201,278 +2895,96.5,1136,277 +2896,96.53333333333333,1079,274 +2897,96.56666666666666,1032,269 +2898,96.6,996,265 +2899,96.63333333333333,970,261 +2900,96.66666666666667,968,259 +2901,96.7,968,259 +2902,96.73333333333333,968,259 +2903,96.76666666666667,991,261 +2904,96.8,1026,264 +2905,96.83333333333333,1072,267 +2906,96.86666666666666,1128,269 +2907,96.9,1192,269 +2908,96.93333333333334,1263,269 +2909,96.96666666666667,1341,268 +2910,97.0,1420,264 +2911,97.03333333333333,1499,255 +2912,97.06666666666666,1580,245 +2913,97.1,1656,233 +2914,97.13333333333333,1726,221 +2915,97.16666666666667,1788,208 +2916,97.2,1840,196 +2917,97.23333333333333,1882,186 +2918,97.26666666666667,1912,178 +2919,97.3,1923,177 +2920,97.33333333333333,1923,177 +2921,97.36666666666666,1923,177 +2922,97.4,1901,185 +2923,97.43333333333334,1867,195 +2924,97.46666666666667,1821,207 +2925,97.5,1766,220 +2926,97.53333333333333,1701,234 +2927,97.56666666666666,1629,247 +2928,97.6,1553,259 +2929,97.63333333333333,1472,269 +2930,97.66666666666667,1395,276 +2931,97.7,1316,279 +2932,97.73333333333333,1241,279 +2933,97.76666666666667,1172,279 +2934,97.8,1110,275 +2935,97.83333333333333,1058,271 +2936,97.86666666666666,1016,267 +2937,97.9,984,263 +2938,97.93333333333334,965,260 +2939,97.96666666666667,965,260 +2940,98.0,965,260 +2941,98.03333333333333,978,260 +2942,98.06666666666666,1007,262 +2943,98.1,1046,265 +2944,98.13333333333333,1096,268 +2945,98.16666666666667,1156,269 +2946,98.2,1223,269 +2947,98.23333333333333,1298,269 +2948,98.26666666666667,1377,266 +2949,98.3,1455,260 +2950,98.33333333333333,1536,251 +2951,98.36666666666666,1614,240 +2952,98.4,1687,228 +2953,98.43333333333334,1754,215 +2954,98.46666666666667,1811,202 +2955,98.5,1859,191 +2956,98.53333333333333,1895,182 +2957,98.56666666666666,1919,177 +2958,98.6,1919,177 +2959,98.63333333333333,1919,177 +2960,98.66666666666667,1914,181 +2961,98.7,1886,190 +2962,98.73333333333333,1847,200 +2963,98.76666666666667,1797,214 +2964,98.8,1737,227 +2965,98.83333333333333,1670,241 +2966,98.86666666666666,1596,253 +2967,98.9,1517,264 +2968,98.93333333333334,1437,273 +2969,98.96666666666667,1361,277 +2970,99.0,1282,277 +2971,99.03333333333333,1210,277 +2972,99.06666666666666,1145,277 +2973,99.1,1087,274 +2974,99.13333333333333,1039,269 +2975,99.16666666666667,1002,265 +2976,99.2,976,261 +2977,99.23333333333333,969,259 +2978,99.26666666666667,969,259 +2979,99.3,969,259 +2980,99.33333333333333,990,260 +2981,99.36666666666666,1024,262 +2982,99.4,1068,266 +2983,99.43333333333334,1123,268 +2984,99.46666666666667,1186,268 +2985,99.5,1256,268 +2986,99.53333333333333,1333,268 +2987,99.56666666666666,1412,264 +2988,99.6,1491,257 +2989,99.63333333333333,1571,247 +2990,99.66666666666667,1647,235 +2991,99.7,1717,223 +2992,99.73333333333333,1779,211 +2993,99.76666666666667,1833,199 +2994,99.8,1875,189 +2995,99.83333333333333,1906,181 +2996,99.86666666666666,1922,180 +2997,99.9,1922,180 +2998,99.93333333333334,1922,180 +2999,99.96666666666667,1902,187 +3000,100.0,1869,196 +3001,100.03333333333333,1825,208 +3002,100.06666666666666,1770,221 +3003,100.1,1708,235 +3004,100.13333333333333,1637,248 +3005,100.16666666666667,1561,259 +3006,100.2,1481,269 +3007,100.23333333333333,1406,275 +3008,100.26666666666667,1327,280 +3009,100.3,1250,280 +3010,100.33333333333333,1181,280 +3011,100.36666666666666,1119,277 +3012,100.4,1066,273 +3013,100.43333333333334,1022,269 +3014,100.46666666666667,990,265 +3015,100.5,969,262 +3016,100.53333333333333,969,260 +3017,100.56666666666666,969,260 +3018,100.6,978,260 +3019,100.63333333333333,1005,263 +3020,100.66666666666667,1043,266 +3021,100.7,1092,269 +3022,100.73333333333333,1150,271 +3023,100.76666666666667,1217,271 +3024,100.8,1289,271 +3025,100.83333333333333,1368,269 +3026,100.86666666666666,1445,264 +3027,100.9,1526,255 +3028,100.93333333333334,1604,244 +3029,100.96666666666667,1677,232 +3030,101.0,1744,220 +3031,101.03333333333333,1803,208 +3032,101.06666666666666,1851,197 +3033,101.1,1888,188 +3034,101.13333333333333,1914,182 +3035,101.16666666666667,1914,182 +3036,101.2,1914,182 +3037,101.23333333333333,1912,185 +3038,101.26666666666667,1886,194 +3039,101.3,1849,204 +3040,101.33333333333333,1800,216 +3041,101.36666666666666,1742,229 +3042,101.4,1675,243 +3043,101.43333333333334,1603,255 +3044,101.46666666666667,1526,265 +3045,101.5,1445,274 +3046,101.53333333333333,1369,279 +3047,101.56666666666666,1291,279 +3048,101.6,1218,279 +3049,101.63333333333333,1152,279 +3050,101.66666666666667,1094,276 +3051,101.7,1045,271 +3052,101.73333333333333,1007,267 +3053,101.76666666666667,979,263 +3054,101.8,969,261 +3055,101.83333333333333,969,261 +3056,101.86666666666666,969,261 +3057,101.9,989,261 +3058,101.93333333333334,1021,264 +3059,101.96666666666667,1064,267 +3060,102.0,1117,269 +3061,102.03333333333333,1179,270 +3062,102.06666666666666,1248,270 +3063,102.1,1325,270 +3064,102.13333333333333,1404,266 +3065,102.16666666666667,1480,259 +3066,102.2,1560,250 +3067,102.23333333333333,1637,239 +3068,102.26666666666667,1707,228 +3069,102.3,1770,215 +3070,102.33333333333333,1825,203 +3071,102.36666666666666,1868,193 +3072,102.4,1900,186 +3073,102.43333333333334,1919,182 +3074,102.46666666666667,1919,182 +3075,102.5,1919,182 +3076,102.53333333333333,1901,189 +3077,102.56666666666666,1870,198 +3078,102.6,1827,209 +3079,102.63333333333333,1774,222 +3080,102.66666666666667,1713,235 +3081,102.7,1643,248 +3082,102.73333333333333,1569,260 +3083,102.76666666666667,1489,269 +3084,102.8,1412,277 +3085,102.83333333333333,1335,280 +3086,102.86666666666666,1259,280 +3087,102.89999999999999,1189,280 +3088,102.93333333333334,1126,277 +3089,102.96666666666667,1072,273 +3090,103.0,1028,268 +3091,103.03333333333333,994,264 +3092,103.06666666666666,972,261 +3093,103.1,972,259 +3094,103.13333333333333,972,259 +3095,103.16666666666667,977,259 +3096,103.2,1003,262 +3097,103.23333333333333,1040,264 +3098,103.26666666666667,1087,267 +3099,103.3,1144,270 +3100,103.33333333333333,1209,270 +3101,103.36666666666666,1282,270 +3102,103.39999999999999,1359,268 +3103,103.43333333333334,1435,263 +3104,103.46666666666667,1516,255 +3105,103.5,1594,245 +3106,103.53333333333333,1668,234 +3107,103.56666666666666,1735,221 +3108,103.6,1794,209 +3109,103.63333333333333,1843,198 +3110,103.66666666666667,1882,190 +3111,103.7,1908,183 +3112,103.73333333333333,1911,183 +3113,103.76666666666667,1911,183 +3114,103.8,1911,185 +3115,103.83333333333333,1887,192 +3116,103.86666666666666,1850,203 +3117,103.89999999999999,1803,215 +3118,103.93333333333334,1746,228 +3119,103.96666666666667,1681,240 +3120,104.0,1609,253 +3121,104.03333333333333,1534,263 +3122,104.06666666666666,1453,272 +3123,104.1,1377,277 +3124,104.13333333333333,1300,277 +3125,104.16666666666667,1227,277 +3126,104.2,1161,277 +3127,104.23333333333333,1102,273 +3128,104.26666666666667,1052,269 +3129,104.3,1012,265 +3130,104.33333333333333,984,261 +3131,104.36666666666666,969,258 +3132,104.39999999999999,969,258 +3133,104.43333333333334,969,258 +3134,104.46666666666667,989,259 +3135,104.5,1019,261 +3136,104.53333333333333,1061,264 +3137,104.56666666666666,1113,267 +3138,104.6,1173,269 +3139,104.63333333333333,1242,269 +3140,104.66666666666667,1317,269 +3141,104.7,1395,266 +3142,104.73333333333333,1471,259 +3143,104.76666666666667,1552,250 +3144,104.8,1627,240 +3145,104.83333333333333,1698,228 +3146,104.86666666666666,1761,216 +3147,104.89999999999999,1816,205 +3148,104.93333333333334,1860,195 +3149,104.96666666666667,1893,186 +3150,105.0,1914,183 +3151,105.03333333333333,1914,183 +3152,105.06666666666666,1914,183 +3153,105.1,1900,188 +3154,105.13333333333333,1871,197 +3155,105.16666666666667,1830,208 +3156,105.2,1778,220 +3157,105.23333333333333,1717,233 +3158,105.26666666666667,1649,246 +3159,105.3,1576,257 +3160,105.33333333333333,1497,267 +3161,105.36666666666666,1419,274 +3162,105.39999999999999,1343,278 +3163,105.43333333333334,1267,278 +3164,105.46666666666667,1197,278 +3165,105.5,1134,275 +3166,105.53333333333333,1079,271 +3167,105.56666666666666,1034,266 +3168,105.6,999,262 +3169,105.63333333333333,976,258 +3170,105.66666666666667,976,256 +3171,105.7,976,256 +3172,105.73333333333333,977,256 +3173,105.76666666666667,1001,259 +3174,105.8,1037,261 +3175,105.83333333333333,1083,264 +3176,105.86666666666666,1140,267 +3177,105.89999999999999,1204,267 +3178,105.93333333333334,1275,267 +3179,105.96666666666667,1352,267 +3180,106.0,1429,263 +3181,106.03333333333333,1508,255 +3182,106.06666666666666,1586,245 +3183,106.1,1660,234 +3184,106.13333333333333,1727,223 +3185,106.16666666666667,1787,211 +3186,106.2,1836,200 +3187,106.23333333333333,1876,191 +3188,106.26666666666667,1903,185 +3189,106.3,1910,185 +3190,106.33333333333333,1910,185 +3191,106.36666666666666,1910,185 +3192,106.39999999999999,1887,193 +3193,106.43333333333334,1852,202 +3194,106.46666666666667,1806,213 +3195,106.5,1750,226 +3196,106.53333333333333,1687,239 +3197,106.56666666666666,1616,251 +3198,106.6,1541,262 +3199,106.63333333333333,1461,270 +3200,106.66666666666667,1386,276 +3201,106.7,1309,276 +3202,106.73333333333333,1236,276 +3203,106.76666666666667,1169,276 +3204,106.8,1109,273 +3205,106.83333333333333,1059,268 +3206,106.86666666666666,1018,264 +3207,106.89999999999999,989,260 +3208,106.93333333333334,971,257 +3209,106.96666666666667,971,256 +3210,107.0,971,256 +3211,107.03333333333333,989,256 +3212,107.06666666666666,1018,259 +3213,107.1,1059,262 +3214,107.13333333333333,1109,265 +3215,107.16666666666667,1169,267 +3216,107.2,1236,267 +3217,107.23333333333333,1310,267 +3218,107.26666666666667,1387,265 +3219,107.3,1463,259 +3220,107.33333333333333,1544,250 +3221,107.36666666666666,1619,241 +3222,107.39999999999999,1689,230 +3223,107.43333333333334,1753,218 +3224,107.46666666666667,1808,207 +3225,107.5,1853,197 +3226,107.53333333333333,1887,189 +3227,107.56666666666666,1908,185 +3228,107.6,1908,185 +3229,107.63333333333333,1908,185 +3230,107.66666666666667,1899,190 +3231,107.7,1870,198 +3232,107.73333333333333,1830,209 +3233,107.76666666666667,1780,221 +3234,107.8,1721,234 +3235,107.83333333333333,1654,246 +3236,107.86666666666666,1581,256 +3237,107.89999999999999,1503,266 +3238,107.93333333333334,1426,274 +3239,107.96666666666667,1351,277 +3240,108.0,1275,277 +3241,108.03333333333333,1205,277 +3242,108.06666666666666,1141,274 +3243,108.1,1086,270 +3244,108.13333333333333,1040,265 +3245,108.16666666666667,1004,261 +3246,108.2,980,258 +3247,108.23333333333333,978,255 +3248,108.26666666666667,978,255 +3249,108.3,978,255 +3250,108.33333333333333,1001,257 +3251,108.36666666666666,1035,259 +3252,108.39999999999999,1080,264 +3253,108.43333333333334,1135,266 +3254,108.46666666666667,1198,267 +3255,108.5,1268,267 +3256,108.53333333333333,1344,267 +3257,108.56666666666666,1420,263 +3258,108.6,1498,256 +3259,108.63333333333333,1577,247 +3260,108.66666666666667,1651,237 +3261,108.7,1718,226 +3262,108.73333333333333,1778,214 +3263,108.76666666666667,1829,204 +3264,108.8,1869,195 +3265,108.83333333333333,1897,189 +3266,108.86666666666666,1908,189 +3267,108.89999999999999,1908,189 +3268,108.93333333333334,1908,189 +3269,108.96666666666667,1886,195 +3270,109.0,1853,204 +3271,109.03333333333333,1809,215 +3272,109.06666666666666,1754,227 +3273,109.1,1691,240 +3274,109.13333333333333,1622,251 +3275,109.16666666666667,1548,261 +3276,109.2,1469,270 +3277,109.23333333333333,1393,275 +3278,109.26666666666667,1317,276 +3279,109.3,1243,276 +3280,109.33333333333333,1176,276 +3281,109.36666666666666,1116,273 +3282,109.39999999999999,1065,268 +3283,109.43333333333334,1023,263 +3284,109.46666666666667,993,260 +3285,109.5,974,256 +3286,109.53333333333333,974,256 +3287,109.56666666666666,974,256 +3288,109.6,988,256 +3289,109.63333333333333,1016,258 +3290,109.66666666666667,1055,261 +3291,109.7,1105,264 +3292,109.73333333333333,1164,267 +3293,109.76666666666667,1230,267 +3294,109.8,1303,267 +3295,109.83333333333333,1380,265 +3296,109.86666666666666,1455,261 +3297,109.89999999999999,1535,252 +3298,109.93333333333334,1610,243 +3299,109.96666666666667,1681,232 +3300,110.0,1745,221 +3301,110.03333333333333,1801,210 +3302,110.06666666666666,1847,200 +3303,110.1,1881,192 +3304,110.13333333333333,1904,187 +3305,110.16666666666667,1904,187 +3306,110.2,1904,187 +3307,110.23333333333333,1898,191 +3308,110.26666666666667,1871,199 +3309,110.3,1833,209 +3310,110.33333333333333,1784,221 +3311,110.36666666666666,1726,233 +3312,110.39999999999999,1660,245 +3313,110.43333333333334,1588,256 +3314,110.46666666666667,1511,265 +3315,110.5,1433,273 +3316,110.53333333333333,1359,276 +3317,110.56666666666666,1283,276 +3318,110.6,1212,276 +3319,110.63333333333333,1148,274 +3320,110.66666666666667,1092,270 +3321,110.7,1045,265 +3322,110.73333333333333,1009,261 +3323,110.76666666666667,984,257 +3324,110.8,979,255 +3325,110.83333333333333,979,255 +3326,110.86666666666666,979,255 +3327,110.89999999999999,1000,256 +3328,110.93333333333334,1033,259 +3329,110.96666666666667,1077,262 +3330,111.0,1131,265 +3331,111.03333333333333,1193,267 +3332,111.06666666666666,1262,267 +3333,111.1,1337,267 +3334,111.13333333333333,1413,263 +3335,111.16666666666667,1491,257 +3336,111.2,1569,249 +3337,111.23333333333333,1642,239 +3338,111.26666666666667,1710,228 +3339,111.3,1770,217 +3340,111.33333333333333,1821,206 +3341,111.36666666666666,1862,197 +3342,111.39999999999999,1892,191 +3343,111.43333333333334,1906,190 +3344,111.46666666666667,1906,190 +3345,111.5,1906,190 +3346,111.53333333333333,1886,196 +3347,111.56666666666666,1854,204 +3348,111.6,1811,215 +3349,111.63333333333333,1758,227 +3350,111.66666666666667,1696,239 +3351,111.7,1627,251 +3352,111.73333333333333,1554,261 +3353,111.76666666666667,1476,269 +3354,111.8,1401,274 +3355,111.83333333333333,1325,275 +3356,111.86666666666666,1251,275 +3357,111.89999999999999,1183,275 +3358,111.93333333333334,1123,272 +3359,111.96666666666667,1071,268 +3360,112.0,1029,263 +3361,112.03333333333333,997,258 +3362,112.06666666666666,977,255 +3363,112.1,977,254 +3364,112.13333333333333,977,254 +3365,112.16666666666667,988,254 +3366,112.2,1015,257 +3367,112.23333333333333,1053,260 +3368,112.26666666666667,1101,263 +3369,112.3,1159,266 +3370,112.33333333333333,1224,266 +3371,112.36666666666666,1296,266 +3372,112.39999999999999,1372,266 +3373,112.43333333333334,1448,262 +3374,112.46666666666667,1526,254 +3375,112.5,1602,245 +3376,112.53333333333333,1673,235 +3377,112.56666666666666,1738,224 +3378,112.6,1794,212 +3379,112.63333333333333,1840,203 +3380,112.66666666666667,1876,195 +3381,112.7,1900,190 +3382,112.73333333333333,1900,190 +3383,112.76666666666667,1900,190 +3384,112.8,1897,193 +3385,112.83333333333333,1872,200 +3386,112.86666666666666,1835,210 +3387,112.89999999999999,1787,221 +3388,112.93333333333334,1730,233 +3389,112.96666666666667,1665,245 +3390,113.0,1594,256 +3391,113.03333333333333,1519,265 +3392,113.06666666666666,1441,272 +3393,113.1,1366,276 +3394,113.13333333333333,1290,276 +3395,113.16666666666667,1220,276 +3396,113.2,1155,274 +3397,113.23333333333333,1099,270 +3398,113.26666666666667,1051,265 +3399,113.3,1014,260 +3400,113.33333333333333,988,257 +3401,113.36666666666666,979,255 +3402,113.39999999999999,979,255 +3403,113.43333333333334,979,255 +3404,113.46666666666667,1000,256 +3405,113.5,1032,258 +3406,113.53333333333333,1074,262 +3407,113.56666666666666,1127,265 +3408,113.6,1188,267 +3409,113.63333333333333,1256,267 +3410,113.66666666666667,1331,267 +3411,113.7,1407,265 +3412,113.73333333333333,1483,259 +3413,113.76666666666667,1561,250 +3414,113.8,1635,241 +3415,113.83333333333333,1702,230 +3416,113.86666666666666,1763,219 +3417,113.89999999999999,1815,209 +3418,113.93333333333334,1857,200 +3419,113.96666666666667,1887,193 +3420,114.0,1904,191 +3421,114.03333333333333,1904,191 +3422,114.06666666666666,1904,191 +3423,114.1,1886,197 +3424,114.13333333333333,1855,205 +3425,114.16666666666667,1813,215 +3426,114.2,1761,227 +3427,114.23333333333333,1701,239 +3428,114.26666666666667,1633,250 +3429,114.3,1560,260 +3430,114.33333333333333,1483,269 +3431,114.36666666666666,1408,274 +3432,114.39999999999999,1332,275 +3433,114.43333333333334,1258,275 +3434,114.46666666666667,1190,275 +3435,114.5,1129,272 +3436,114.53333333333333,1077,267 +3437,114.56666666666666,1034,262 +3438,114.6,1001,259 +3439,114.63333333333333,980,255 +3440,114.66666666666667,980,254 +3441,114.7,980,254 +3442,114.73333333333333,987,254 +3443,114.76666666666667,1013,257 +3444,114.8,1050,260 +3445,114.83333333333333,1097,263 +3446,114.86666666666666,1154,266 +3447,114.89999999999999,1218,267 +3448,114.93333333333334,1289,267 +3449,114.96666666666667,1365,267 +3450,115.0,1440,262 +3451,115.03333333333333,1518,255 +3452,115.06666666666666,1594,246 +3453,115.1,1665,236 +3454,115.13333333333333,1730,226 +3455,115.16666666666667,1787,215 +3456,115.2,1834,205 +3457,115.23333333333333,1871,197 +3458,115.26666666666667,1895,192 +3459,115.3,1896,192 +3460,115.33333333333333,1896,192 +3461,115.36666666666666,1896,194 +3462,115.39999999999999,1872,201 +3463,115.43333333333334,1836,210 +3464,115.46666666666667,1789,221 +3465,115.5,1734,233 +3466,115.53333333333333,1670,244 +3467,115.56666666666666,1600,255 +3468,115.6,1526,264 +3469,115.63333333333333,1448,272 +3470,115.66666666666667,1374,276 +3471,115.7,1298,276 +3472,115.73333333333333,1227,276 +3473,115.76666666666667,1162,274 +3474,115.8,1105,270 +3475,115.83333333333333,1057,265 +3476,115.86666666666666,1018,260 +3477,115.89999999999999,991,256 +3478,115.93333333333334,979,254 +3479,115.96666666666667,979,254 +3480,116.0,979,254 +3481,116.03333333333333,999,255 +3482,116.06666666666666,1030,257 +3483,116.1,1071,261 +3484,116.13333333333333,1123,264 +3485,116.16666666666667,1183,267 +3486,116.2,1250,267 +3487,116.23333333333333,1324,267 +3488,116.26666666666667,1401,265 +3489,116.3,1475,260 +3490,116.33333333333333,1553,252 +3491,116.36666666666666,1626,243 +3492,116.39999999999999,1694,232 +3493,116.43333333333334,1756,222 +3494,116.46666666666667,1808,211 +3495,116.5,1850,202 +3496,116.53333333333333,1882,195 +3497,116.56666666666666,1901,192 +3498,116.6,1901,192 +3499,116.63333333333333,1901,192 +3500,116.66666666666667,1885,198 +3501,116.7,1856,206 +3502,116.73333333333333,1815,216 +3503,116.76666666666667,1765,227 +3504,116.8,1705,239 +3505,116.83333333333333,1638,250 +3506,116.86666666666666,1566,260 +3507,116.89999999999999,1490,268 +3508,116.93333333333334,1414,274 +3509,116.96666666666667,1339,275 +3510,117.0,1266,275 +3511,117.03333333333333,1197,275 +3512,117.06666666666666,1136,271 +3513,117.1,1083,267 +3514,117.13333333333333,1039,262 +3515,117.16666666666667,1006,258 +3516,117.2,984,255 +3517,117.23333333333333,984,253 +3518,117.26666666666667,984,253 +3519,117.3,988,253 +3520,117.33333333333333,1013,255 +3521,117.36666666666666,1049,258 +3522,117.39999999999999,1095,262 +3523,117.43333333333334,1150,265 +3524,117.46666666666667,1214,266 +3525,117.5,1283,266 +3526,117.53333333333333,1358,266 +3527,117.56666666666666,1432,263 +3528,117.6,1509,256 +3529,117.63333333333333,1586,248 +3530,117.66666666666667,1657,238 +3531,117.7,1722,228 +3532,117.73333333333333,1779,218 +3533,117.76666666666667,1827,208 +3534,117.8,1864,200 +3535,117.83333333333333,1890,195 +3536,117.86666666666666,1894,195 +3537,117.89999999999999,1894,195 +3538,117.93333333333334,1894,196 +3539,117.96666666666667,1871,202 +3540,118.0,1837,211 +3541,118.03333333333333,1792,221 +3542,118.06666666666666,1737,233 +3543,118.1,1674,244 +3544,118.13333333333333,1605,255 +3545,118.16666666666667,1532,264 +3546,118.2,1454,271 +3547,118.23333333333333,1381,275 +3548,118.26666666666667,1305,275 +3549,118.3,1234,275 +3550,118.33333333333333,1169,273 +3551,118.36666666666666,1112,269 +3552,118.39999999999999,1063,264 +3553,118.43333333333334,1024,260 +3554,118.46666666666667,996,256 +3555,118.5,981,253 +3556,118.53333333333333,981,253 +3557,118.56666666666666,981,253 +3558,118.6,999,253 +3559,118.63333333333333,1029,256 +3560,118.66666666666667,1069,259 +3561,118.7,1119,263 +3562,118.73333333333333,1179,266 +3563,118.76666666666667,1245,266 +3564,118.8,1318,266 +3565,118.83333333333333,1393,265 +3566,118.86666666666666,1468,260 +3567,118.89999999999999,1545,253 +3568,118.93333333333334,1618,244 +3569,118.96666666666667,1687,234 +3570,119.0,1748,224 +3571,119.03333333333333,1801,214 +3572,119.06666666666666,1844,205 +3573,119.1,1876,198 +3574,119.13333333333333,1896,194 +3575,119.16666666666667,1896,194 +3576,119.2,1896,194 +3577,119.23333333333333,1884,199 +3578,119.26666666666667,1855,207 +3579,119.3,1816,217 +3580,119.33333333333333,1767,227 +3581,119.36666666666666,1708,238 +3582,119.39999999999999,1643,249 +3583,119.43333333333334,1572,259 +3584,119.46666666666667,1496,267 +3585,119.5,1421,273 +3586,119.53333333333333,1347,274 +3587,119.56666666666666,1273,274 +3588,119.6,1205,274 +3589,119.63333333333333,1143,271 +3590,119.66666666666667,1090,267 +3591,119.7,1045,262 +3592,119.73333333333333,1011,257 +3593,119.76666666666667,988,254 +3594,119.8,988,252 +3595,119.83333333333333,988,252 +3596,119.86666666666666,989,252 +3597,119.89999999999999,1013,254 +3598,119.93333333333334,1047,257 +3599,119.96666666666667,1092,261 +3600,120.0,1147,264 +3601,120.03333333333333,1209,267 +3602,120.06666666666666,1278,267 +3603,120.1,1353,267 +3604,120.13333333333333,1426,263 +3605,120.16666666666667,1503,257 +3606,120.2,1579,249 +3607,120.23333333333333,1650,240 +3608,120.26666666666667,1715,230 +3609,120.3,1772,220 +3610,120.33333333333333,1821,210 +3611,120.36666666666666,1859,202 +3612,120.39999999999999,1885,197 +3613,120.43333333333334,1893,197 +3614,120.46666666666667,1893,197 +3615,120.5,1893,197 +3616,120.53333333333333,1871,203 +3617,120.56666666666666,1838,212 +3618,120.6,1794,222 +3619,120.63333333333333,1741,232 +3620,120.66666666666667,1679,243 +3621,120.7,1611,254 +3622,120.73333333333333,1539,263 +3623,120.76666666666667,1461,270 +3624,120.8,1388,274 +3625,120.83333333333333,1313,274 +3626,120.86666666666666,1242,274 +3627,120.89999999999999,1176,273 +3628,120.93333333333334,1118,269 +3629,120.96666666666667,1069,264 +3630,121.0,1029,259 +3631,121.03333333333333,1000,255 +3632,121.06666666666666,982,253 +3633,121.1,982,253 +3634,121.13333333333333,982,253 +3635,121.16666666666667,999,253 +3636,121.2,1028,255 +3637,121.23333333333333,1067,259 +3638,121.26666666666667,1116,262 +3639,121.3,1174,266 +3640,121.33333333333333,1240,266 +3641,121.36666666666666,1312,266 +3642,121.39999999999999,1387,265 +3643,121.43333333333334,1460,261 +3644,121.46666666666667,1538,254 +3645,121.5,1611,245 +3646,121.53333333333333,1679,236 +3647,121.56666666666666,1741,225 +3648,121.6,1794,216 +3649,121.63333333333333,1838,207 +3650,121.66666666666667,1871,199 +3651,121.7,1892,195 +3652,121.73333333333333,1892,195 +3653,121.76666666666667,1892,195 +3654,121.8,1883,200 +3655,121.83333333333333,1856,207 +3656,121.86666666666666,1817,216 +3657,121.89999999999999,1769,227 +3658,121.93333333333334,1712,238 +3659,121.96666666666667,1647,248 +3660,122.0,1577,258 +3661,122.03333333333333,1502,266 +3662,122.06666666666666,1427,272 +3663,122.1,1354,274 +3664,122.13333333333333,1280,274 +3665,122.16666666666667,1212,274 +3666,122.2,1150,270 +3667,122.23333333333333,1096,266 +3668,122.26666666666667,1051,262 +3669,122.3,1016,257 +3670,122.33333333333333,992,254 +3671,122.36666666666666,990,252 +3672,122.39999999999999,990,252 +3673,122.43333333333334,990,252 +3674,122.46666666666667,1012,254 +3675,122.5,1046,257 +3676,122.53333333333333,1090,260 +3677,122.56666666666666,1143,264 +3678,122.6,1205,267 +3679,122.63333333333333,1273,267 +3680,122.66666666666667,1347,267 +3681,122.7,1421,264 +3682,122.73333333333333,1496,258 +3683,122.76666666666667,1572,250 +3684,122.8,1643,241 +3685,122.83333333333333,1708,232 +3686,122.86666666666666,1766,221 +3687,122.89999999999999,1815,212 +3688,122.93333333333334,1853,204 +3689,122.96666666666667,1881,198 +3690,123.0,1891,198 +3691,123.03333333333333,1891,198 +3692,123.06666666666666,1891,198 +3693,123.1,1871,204 +3694,123.13333333333333,1839,212 +3695,123.16666666666667,1796,222 +3696,123.2,1743,232 +3697,123.23333333333333,1683,243 +3698,123.26666666666667,1616,253 +3699,123.3,1544,262 +3700,123.33333333333333,1468,269 +3701,123.36666666666666,1395,274 +3702,123.39999999999999,1321,274 +3703,123.43333333333334,1249,274 +3704,123.46666666666667,1184,272 +3705,123.5,1125,268 +3706,123.53333333333333,1075,264 +3707,123.56666666666666,1034,260 +3708,123.6,1004,255 +3709,123.63333333333333,986,252 +3710,123.66666666666667,986,252 +3711,123.7,986,252 +3712,123.73333333333333,1000,252 +3713,123.76666666666667,1027,255 +3714,123.8,1066,259 +3715,123.83333333333333,1114,262 +3716,123.86666666666666,1171,265 +3717,123.89999999999999,1236,266 +3718,123.93333333333334,1306,266 +3719,123.96666666666667,1381,266 +3720,124.0,1455,262 +3721,124.03333333333333,1532,255 +3722,124.06666666666666,1605,247 +3723,124.1,1673,238 +3724,124.13333333333333,1735,228 +3725,124.16666666666667,1788,218 +3726,124.2,1833,208 +3727,124.23333333333333,1866,201 +3728,124.26666666666667,1888,197 +3729,124.3,1888,197 +3730,124.33333333333333,1888,197 +3731,124.36666666666666,1882,200 +3732,124.39999999999999,1856,207 +3733,124.43333333333334,1819,216 +3734,124.46666666666667,1772,227 +3735,124.5,1716,237 +3736,124.53333333333333,1652,248 +3737,124.56666666666666,1583,258 +3738,124.6,1509,266 +3739,124.63333333333333,1432,272 +3740,124.66666666666667,1361,274 +3741,124.7,1286,274 +3742,124.73333333333333,1218,274 +3743,124.76666666666667,1156,271 +3744,124.8,1101,267 +3745,124.83333333333333,1055,262 +3746,124.86666666666666,1020,257 +3747,124.89999999999999,995,254 +3748,124.93333333333334,990,251 +3749,124.96666666666667,990,251 +3750,125.0,990,251 +3751,125.03333333333333,1011,253 +3752,125.06666666666666,1044,256 +3753,125.1,1087,260 +3754,125.13333333333333,1139,264 +3755,125.16666666666667,1200,266 +3756,125.2,1268,266 +3757,125.23333333333333,1340,266 +3758,125.26666666666667,1415,265 +3759,125.3,1488,260 +3760,125.33333333333333,1564,252 +3761,125.36666666666666,1635,244 +3762,125.39999999999999,1701,234 +3763,125.43333333333334,1759,224 +3764,125.46666666666667,1808,215 +3765,125.5,1848,206 +3766,125.53333333333333,1876,200 +3767,125.56666666666666,1889,200 +3768,125.6,1889,200 +3769,125.63333333333333,1889,200 +3770,125.66666666666667,1869,205 +3771,125.7,1839,213 +3772,125.73333333333333,1797,222 +3773,125.76666666666667,1746,232 +3774,125.8,1687,243 +3775,125.83333333333333,1621,253 +3776,125.86666666666666,1549,262 +3777,125.89999999999999,1473,269 +3778,125.93333333333334,1401,274 +3779,125.96666666666667,1327,274 +3780,126.0,1255,274 +3781,126.03333333333333,1189,272 +3782,126.06666666666666,1130,269 +3783,126.1,1080,264 +3784,126.13333333333333,1038,260 +3785,126.16666666666667,1008,256 +3786,126.2,988,253 +3787,126.23333333333333,988,253 +3788,126.26666666666667,988,253 +3789,126.3,999,253 +3790,126.33333333333333,1026,255 +3791,126.36666666666666,1063,258 +3792,126.39999999999999,1111,262 +3793,126.43333333333334,1167,265 +3794,126.46666666666667,1231,267 +3795,126.5,1301,267 +3796,126.53333333333333,1375,267 +3797,126.56666666666666,1448,263 +3798,126.6,1524,257 +3799,126.63333333333333,1597,249 +3800,126.66666666666667,1666,240 +3801,126.7,1727,230 +3802,126.73333333333333,1782,220 +3803,126.76666666666667,1826,212 +3804,126.8,1860,204 +3805,126.83333333333333,1883,200 +3806,126.86666666666666,1883,200 +3807,126.89999999999999,1883,200 +3808,126.93333333333334,1880,203 +3809,126.96666666666667,1855,209 +3810,127.0,1819,218 +3811,127.03333333333333,1774,228 +3812,127.06666666666666,1719,238 +3813,127.1,1656,249 +3814,127.13333333333333,1587,258 +3815,127.16666666666667,1514,266 +3816,127.2,1439,273 +3817,127.23333333333333,1367,275 +3818,127.26666666666667,1293,275 +3819,127.3,1225,275 +3820,127.33333333333333,1162,272 +3821,127.36666666666666,1107,268 +3822,127.39999999999999,1061,263 +3823,127.43333333333334,1025,259 +3824,127.46666666666667,999,255 +3825,127.5,991,253 +3826,127.53333333333333,991,253 +3827,127.56666666666666,991,253 +3828,127.6,1012,254 +3829,127.63333333333333,1043,257 +3830,127.66666666666667,1085,261 +3831,127.7,1137,264 +3832,127.73333333333333,1197,267 +3833,127.76666666666667,1263,267 +3834,127.8,1335,267 +3835,127.83333333333333,1411,267 +3836,127.86666666666666,1483,261 +3837,127.89999999999999,1559,255 +3838,127.93333333333334,1630,246 +3839,127.96666666666667,1695,237 +3840,128.0,1753,227 +3841,128.03333333333333,1803,218 +3842,128.06666666666666,1843,210 +3843,128.1,1871,203 +3844,128.13333333333333,1888,202 +3845,128.16666666666666,1888,202 +3846,128.2,1888,202 +3847,128.23333333333332,1869,207 +3848,128.26666666666665,1839,214 +3849,128.3,1799,224 +3850,128.33333333333334,1749,234 +3851,128.36666666666667,1690,244 +3852,128.4,1624,254 +3853,128.43333333333334,1554,263 +3854,128.46666666666667,1479,270 +3855,128.5,1408,274 +3856,128.53333333333333,1334,274 +3857,128.56666666666666,1262,274 +3858,128.6,1195,274 +3859,128.63333333333333,1136,270 +3860,128.66666666666666,1086,265 +3861,128.7,1044,261 +3862,128.73333333333332,1012,257 +3863,128.76666666666665,993,254 +3864,128.8,993,253 +3865,128.83333333333334,993,253 +3866,128.86666666666667,1000,253 +3867,128.9,1026,255 +3868,128.93333333333334,1063,259 +3869,128.96666666666667,1109,263 +3870,129.0,1164,266 +3871,129.03333333333333,1227,268 +3872,129.06666666666666,1296,268 +3873,129.1,1370,268 +3874,129.13333333333333,1442,265 +3875,129.16666666666666,1518,258 +3876,129.2,1591,251 +3877,129.23333333333332,1659,242 +3878,129.26666666666665,1721,233 +3879,129.3,1776,223 +3880,129.33333333333334,1821,215 +3881,129.36666666666667,1856,208 +3882,129.4,1879,203 +3883,129.43333333333334,1879,203 +3884,129.46666666666667,1879,203 +3885,129.5,1879,204 +3886,129.53333333333333,1855,211 +3887,129.56666666666666,1821,219 +3888,129.6,1776,229 +3889,129.63333333333333,1722,239 +3890,129.66666666666666,1660,249 +3891,129.7,1593,258 +3892,129.73333333333332,1520,266 +3893,129.76666666666665,1445,273 +3894,129.8,1373,275 +3895,129.83333333333334,1300,275 +3896,129.86666666666667,1231,275 +3897,129.9,1169,272 +3898,129.93333333333334,1113,268 +3899,129.96666666666667,1066,263 +3900,130.0,1030,259 +3901,130.03333333333333,1003,255 +3902,130.06666666666666,993,253 +3903,130.1,993,253 +3904,130.13333333333333,993,253 +3905,130.16666666666666,1013,254 +3906,130.2,1043,257 +3907,130.23333333333332,1084,261 +3908,130.26666666666665,1135,264 +3909,130.3,1193,267 +3910,130.33333333333334,1259,267 +3911,130.36666666666667,1331,267 +3912,130.4,1405,267 +3913,130.43333333333334,1476,262 +3914,130.46666666666667,1552,256 +3915,130.5,1623,248 +3916,130.53333333333333,1688,238 +3917,130.56666666666666,1747,229 +3918,130.6,1797,220 +3919,130.63333333333333,1838,212 +3920,130.66666666666666,1867,205 +3921,130.7,1885,203 +3922,130.73333333333332,1885,203 +3923,130.76666666666665,1885,203 +3924,130.8,1869,207 +3925,130.83333333333334,1840,214 +3926,130.86666666666667,1801,223 +3927,130.9,1752,233 +3928,130.93333333333334,1694,243 +3929,130.96666666666667,1629,252 +3930,131.0,1560,262 +3931,131.03333333333333,1485,268 +3932,131.06666666666666,1413,273 +3933,131.1,1340,273 +3934,131.13333333333333,1269,273 +3935,131.16666666666666,1203,272 +3936,131.2,1143,269 +3937,131.23333333333332,1092,264 +3938,131.26666666666665,1049,260 +3939,131.3,1017,256 +3940,131.33333333333334,996,253 +3941,131.36666666666667,996,252 +3942,131.4,996,252 +3943,131.43333333333334,1002,252 +3944,131.46666666666667,1026,254 +3945,131.5,1062,257 +3946,131.53333333333333,1107,260 +3947,131.56666666666666,1162,263 +3948,131.6,1224,266 +3949,131.63333333333333,1292,266 +3950,131.66666666666666,1366,266 +3951,131.7,1437,264 +3952,131.73333333333332,1512,258 +3953,131.76666666666665,1585,250 +3954,131.8,1653,242 +3955,131.83333333333334,1716,232 +3956,131.86666666666667,1770,223 +3957,131.9,1816,214 +3958,131.93333333333334,1851,207 +3959,131.96666666666667,1876,202 +3960,132.0,1878,202 +3961,132.03333333333333,1878,202 +3962,132.06666666666666,1878,204 +3963,132.1,1856,209 +3964,132.13333333333333,1822,217 +3965,132.16666666666666,1778,227 +3966,132.2,1725,237 +3967,132.23333333333332,1664,247 +3968,132.26666666666665,1597,256 +3969,132.3,1526,264 +3970,132.33333333333334,1451,270 +3971,132.36666666666667,1380,273 +3972,132.4,1307,273 +3973,132.43333333333334,1238,273 +3974,132.46666666666667,1175,270 +3975,132.5,1119,266 +3976,132.53333333333333,1072,262 +3977,132.56666666666666,1034,257 +3978,132.6,1008,253 +3979,132.63333333333333,994,251 +3980,132.66666666666666,994,251 +3981,132.7,994,251 +3982,132.73333333333332,1013,252 +3983,132.76666666666665,1043,254 +3984,132.8,1083,258 +3985,132.83333333333334,1132,262 +3986,132.86666666666667,1190,265 +3987,132.9,1255,265 +3988,132.93333333333334,1326,265 +3989,132.96666666666667,1399,265 +3990,133.0,1471,262 +3991,133.03333333333333,1546,255 +3992,133.06666666666666,1616,247 +3993,133.1,1682,238 +3994,133.13333333333333,1741,228 +3995,133.16666666666666,1792,219 +3996,133.2,1832,212 +3997,133.23333333333332,1863,205 +3998,133.26666666666665,1881,202 +3999,133.3,1881,202 +4000,133.33333333333334,1881,202 +4001,133.36666666666667,1867,207 +4002,133.4,1840,213 +4003,133.43333333333334,1802,222 +4004,133.46666666666667,1753,232 +4005,133.5,1697,242 +4006,133.53333333333333,1633,251 +4007,133.56666666666666,1564,260 +4008,133.6,1491,267 +4009,133.63333333333333,1418,272 +4010,133.66666666666666,1346,272 +4011,133.7,1274,272 +4012,133.73333333333332,1208,271 +4013,133.76666666666665,1149,268 +4014,133.8,1097,263 +4015,133.83333333333334,1054,259 +4016,133.86666666666667,1021,255 +4017,133.9,1000,251 +4018,133.93333333333334,1000,250 +4019,133.96666666666667,1000,250 +4020,134.0,1003,250 +4021,134.03333333333333,1026,253 +4022,134.06666666666666,1061,256 +4023,134.1,1105,260 +4024,134.13333333333333,1159,263 +4025,134.16666666666666,1220,265 +4026,134.2,1287,265 +4027,134.23333333333332,1360,265 +4028,134.26666666666665,1431,264 +4029,134.3,1505,259 +4030,134.33333333333334,1578,252 +4031,134.36666666666667,1647,243 +4032,134.4,1709,234 +4033,134.43333333333334,1764,224 +4034,134.46666666666667,1810,216 +4035,134.5,1846,209 +4036,134.53333333333333,1871,204 +4037,134.56666666666666,1876,204 +4038,134.6,1876,204 +4039,134.63333333333333,1876,204 +4040,134.66666666666666,1855,210 +4041,134.7,1822,217 +4042,134.73333333333332,1779,227 +4043,134.76666666666665,1727,236 +4044,134.8,1667,246 +4045,134.83333333333334,1601,255 +4046,134.86666666666667,1531,263 +4047,134.9,1456,269 +4048,134.93333333333334,1386,272 +4049,134.96666666666667,1312,272 +4050,135.0,1243,272 +4051,135.03333333333333,1180,270 +4052,135.06666666666666,1125,266 +4053,135.1,1077,261 +4054,135.13333333333333,1039,257 +4055,135.16666666666666,1011,253 +4056,135.2,995,250 +4057,135.23333333333332,995,250 +4058,135.26666666666665,995,250 +4059,135.3,1013,251 +4060,135.33333333333334,1042,254 +4061,135.36666666666667,1081,258 +4062,135.4,1130,262 +4063,135.43333333333334,1187,265 +4064,135.46666666666667,1251,266 +4065,135.5,1321,266 +4066,135.53333333333333,1394,266 +4067,135.56666666666666,1464,263 +4068,135.6,1540,256 +4069,135.63333333333333,1610,248 +4070,135.66666666666666,1675,240 +4071,135.7,1734,231 +4072,135.73333333333332,1785,221 +4073,135.76666666666665,1826,213 +4074,135.8,1857,207 +4075,135.83333333333334,1877,203 +4076,135.86666666666667,1877,203 +4077,135.9,1877,203 +4078,135.93333333333334,1866,207 +4079,135.96666666666667,1839,214 +4080,136.0,1802,222 +4081,136.03333333333333,1754,232 +4082,136.06666666666666,1699,241 +4083,136.1,1636,251 +4084,136.13333333333333,1568,259 +4085,136.16666666666666,1495,266 +4086,136.2,1423,272 +4087,136.23333333333332,1351,272 +4088,136.26666666666665,1280,272 +4089,136.3,1214,271 +4090,136.33333333333334,1154,268 +4091,136.36666666666667,1102,263 +4092,136.4,1059,259 +4093,136.43333333333334,1026,255 +4094,136.46666666666667,1003,251 +4095,136.5,1003,250 +4096,136.53333333333333,1003,250 +4097,136.56666666666666,1003,250 +4098,136.6,1026,252 +4099,136.63333333333333,1060,255 +4100,136.66666666666666,1104,259 +4101,136.7,1156,263 +4102,136.73333333333332,1216,265 +4103,136.76666666666665,1283,265 +4104,136.8,1355,265 +4105,136.83333333333334,1426,265 +4106,136.86666666666667,1499,259 +4107,136.9,1572,253 +4108,136.93333333333334,1640,245 +4109,136.96666666666667,1702,236 +4110,137.0,1758,227 +4111,137.03333333333333,1804,218 +4112,137.06666666666666,1841,211 +4113,137.1,1866,206 +4114,137.13333333333333,1874,206 +4115,137.16666666666666,1874,206 +4116,137.2,1874,206 +4117,137.23333333333332,1853,211 +4118,137.26666666666665,1822,218 +4119,137.3,1780,228 +4120,137.33333333333334,1728,237 +4121,137.36666666666667,1670,246 +4122,137.4,1604,255 +4123,137.43333333333334,1535,263 +4124,137.46666666666667,1460,269 +4125,137.5,1391,272 +4126,137.53333333333333,1317,272 +4127,137.56666666666666,1249,272 +4128,137.6,1185,270 +4129,137.63333333333333,1129,266 +4130,137.66666666666666,1081,261 +4131,137.7,1043,257 +4132,137.73333333333332,1015,253 +4133,137.76666666666665,997,250 +4134,137.8,997,250 +4135,137.83333333333334,997,250 +4136,137.86666666666667,1014,251 +4137,137.9,1042,254 +4138,137.93333333333334,1080,257 +4139,137.96666666666667,1128,261 +4140,138.0,1184,265 +4141,138.03333333333333,1247,266 +4142,138.06666666666666,1316,266 +4143,138.1,1389,266 +4144,138.13333333333333,1459,263 +4145,138.16666666666666,1534,257 +4146,138.2,1604,249 +4147,138.23333333333332,1669,241 +4148,138.26666666666665,1728,232 +4149,138.3,1780,223 +4150,138.33333333333334,1821,215 +4151,138.36666666666667,1853,209 +4152,138.4,1873,205 +4153,138.43333333333334,1873,205 +4154,138.46666666666667,1873,205 +4155,138.5,1864,208 +4156,138.53333333333333,1838,214 +4157,138.56666666666666,1802,223 +4158,138.6,1756,232 +4159,138.63333333333333,1701,242 +4160,138.66666666666666,1639,251 +4161,138.7,1572,260 +4162,138.73333333333332,1499,266 +4163,138.76666666666665,1427,271 +4164,138.8,1356,271 +4165,138.83333333333334,1285,271 +4166,138.86666666666667,1219,271 +4167,138.9,1159,268 +4168,138.93333333333334,1107,263 +4169,138.96666666666667,1063,259 +4170,139.0,1030,255 +4171,139.03333333333333,1007,251 +4172,139.06666666666666,1005,250 +4173,139.1,1005,250 +4174,139.13333333333333,1005,250 +4175,139.16666666666666,1027,252 +4176,139.2,1060,255 +4177,139.23333333333332,1103,259 +4178,139.26666666666665,1154,263 +4179,139.3,1214,265 +4180,139.33333333333334,1279,266 +4181,139.36666666666667,1350,266 +4182,139.4,1421,266 +4183,139.43333333333334,1494,260 +4184,139.46666666666667,1566,254 +4185,139.5,1634,246 +4186,139.53333333333333,1697,237 +4187,139.56666666666666,1752,228 +4188,139.6,1799,220 +4189,139.63333333333333,1836,213 +4190,139.66666666666666,1862,207 +4191,139.7,1872,206 +4192,139.73333333333332,1872,206 +4193,139.76666666666665,1872,206 +4194,139.8,1852,211 +4195,139.83333333333334,1821,219 +4196,139.86666666666667,1780,227 +4197,139.9,1730,237 +4198,139.93333333333334,1672,246 +4199,139.96666666666667,1607,255 +4200,140.0,1538,262 +4201,140.03333333333333,1465,269 +4202,140.06666666666666,1395,272 +4203,140.1,1323,272 +4204,140.13333333333333,1254,272 +4205,140.16666666666666,1191,269 +4206,140.2,1134,265 +4207,140.23333333333332,1086,261 +4208,140.26666666666665,1047,257 +4209,140.3,1019,253 +4210,140.33333333333334,1001,250 +4211,140.36666666666667,1001,250 +4212,140.4,1001,250 +4213,140.43333333333334,1015,251 +4214,140.46666666666667,1042,253 +4215,140.5,1080,257 +4216,140.53333333333333,1127,261 +4217,140.56666666666666,1182,264 +4218,140.6,1244,266 +4219,140.63333333333333,1312,266 +4220,140.66666666666666,1384,266 +4221,140.7,1454,264 +4222,140.73333333333332,1528,258 +4223,140.76666666666665,1598,251 +4224,140.8,1663,242 +4225,140.83333333333334,1723,233 +4226,140.86666666666667,1774,225 +4227,140.9,1816,217 +4228,140.93333333333334,1848,211 +4229,140.96666666666667,1869,207 +4230,141.0,1869,207 +4231,141.03333333333333,1869,207 +4232,141.06666666666666,1862,209 +4233,141.1,1838,215 +4234,141.13333333333333,1802,223 +4235,141.16666666666666,1757,232 +4236,141.2,1702,242 +4237,141.23333333333332,1641,251 +4238,141.26666666666665,1575,259 +4239,141.3,1503,266 +4240,141.33333333333334,1430,271 +4241,141.36666666666667,1361,271 +4242,141.4,1290,271 +4243,141.43333333333334,1224,271 +4244,141.46666666666667,1164,267 +4245,141.5,1112,263 +4246,141.53333333333333,1068,258 +4247,141.56666666666666,1034,254 +4248,141.6,1010,251 +4249,141.63333333333333,1007,249 +4250,141.66666666666666,1007,249 +4251,141.7,1007,249 +4252,141.73333333333332,1028,252 +4253,141.76666666666665,1060,255 +4254,141.8,1102,259 +4255,141.83333333333334,1153,262 +4256,141.86666666666667,1211,265 +4257,141.9,1276,265 +4258,141.93333333333334,1346,265 +4259,141.96666666666667,1417,265 +4260,142.0,1489,261 +4261,142.03333333333333,1561,255 +4262,142.06666666666666,1629,247 +4263,142.1,1692,238 +4264,142.13333333333333,1747,229 +4265,142.16666666666666,1794,221 +4266,142.2,1831,214 +4267,142.23333333333332,1858,209 +4268,142.26666666666665,1869,207 +4269,142.3,1869,207 +4270,142.33333333333334,1869,207 +4271,142.36666666666667,1851,212 +4272,142.4,1820,219 +4273,142.43333333333334,1780,227 +4274,142.46666666666667,1731,237 +4275,142.5,1674,246 +4276,142.53333333333333,1610,254 +4277,142.56666666666666,1542,262 +4278,142.6,1468,268 +4279,142.63333333333333,1399,272 +4280,142.66666666666666,1327,272 +4281,142.7,1259,272 +4282,142.73333333333332,1196,269 +4283,142.76666666666665,1139,265 +4284,142.8,1091,261 +4285,142.83333333333334,1051,257 +4286,142.86666666666667,1022,253 +4287,142.9,1004,250 +4288,142.93333333333334,1004,250 +4289,142.96666666666667,1004,250 +4290,143.0,1016,250 +4291,143.03333333333333,1043,253 +4292,143.06666666666666,1079,257 +4293,143.1,1126,260 +4294,143.13333333333333,1180,264 +4295,143.16666666666666,1242,266 +4296,143.2,1309,266 +4297,143.23333333333332,1381,266 +4298,143.26666666666665,1450,264 +4299,143.3,1524,258 +4300,143.33333333333334,1594,251 +4301,143.36666666666667,1659,243 +4302,143.4,1718,235 +4303,143.43333333333334,1769,226 +4304,143.46666666666667,1812,218 +4305,143.5,1844,211 +4306,143.53333333333333,1865,207 +4307,143.56666666666666,1865,207 +4308,143.6,1865,207 +4309,143.63333333333333,1861,210 +4310,143.66666666666666,1836,215 +4311,143.7,1801,223 +4312,143.73333333333332,1757,232 +4313,143.76666666666665,1704,241 +4314,143.8,1643,250 +4315,143.83333333333334,1578,258 +4316,143.86666666666667,1507,265 +4317,143.9,1434,270 +4318,143.93333333333334,1366,270 +4319,143.96666666666667,1295,270 +4320,144.0,1229,270 +4321,144.03333333333333,1169,268 +4322,144.06666666666666,1117,263 +4323,144.1,1072,259 +4324,144.13333333333333,1038,255 +4325,144.16666666666666,1014,251 +4326,144.2,1008,249 +4327,144.23333333333332,1008,249 +4328,144.26666666666665,1008,249 +4329,144.3,1029,252 +4330,144.33333333333334,1060,255 +4331,144.36666666666667,1102,258 +4332,144.4,1151,262 +4333,144.43333333333334,1210,265 +4334,144.46666666666667,1274,266 +4335,144.5,1344,266 +4336,144.53333333333333,1414,266 +4337,144.56666666666666,1485,262 +4338,144.6,1557,255 +4339,144.63333333333333,1624,248 +4340,144.66666666666666,1686,239 +4341,144.7,1742,231 +4342,144.73333333333332,1788,223 +4343,144.76666666666665,1826,215 +4344,144.8,1853,210 +4345,144.83333333333334,1867,208 +4346,144.86666666666667,1867,208 +4347,144.9,1867,208 +4348,144.93333333333334,1849,213 +4349,144.96666666666667,1820,219 +4350,145.0,1780,227 +4351,145.03333333333333,1732,236 +4352,145.06666666666666,1675,246 +4353,145.1,1613,254 +4354,145.13333333333333,1545,262 +4355,145.16666666666666,1472,268 +4356,145.2,1404,272 +4357,145.23333333333332,1333,272 +4358,145.26666666666665,1264,272 +4359,145.3,1201,269 +4360,145.33333333333334,1145,265 +4361,145.36666666666667,1096,261 +4362,145.4,1056,257 +4363,145.43333333333334,1027,253 +4364,145.46666666666667,1008,250 +4365,145.5,1008,250 +4366,145.53333333333333,1008,250 +4367,145.56666666666666,1018,250 +4368,145.6,1044,253 +4369,145.63333333333333,1080,257 +4370,145.66666666666666,1125,260 +4371,145.7,1179,264 +4372,145.73333333333332,1240,266 +4373,145.76666666666665,1307,266 +4374,145.8,1378,266 +4375,145.83333333333334,1447,264 +4376,145.86666666666667,1519,259 +4377,145.9,1589,252 +4378,145.93333333333334,1653,245 +4379,145.96666666666667,1713,236 +4380,146.0,1764,227 +4381,146.03333333333333,1807,220 +4382,146.06666666666666,1839,213 +4383,146.1,1861,209 +4384,146.13333333333333,1861,209 +4385,146.16666666666666,1861,209 +4386,146.2,1859,210 +4387,146.23333333333332,1835,216 +4388,146.26666666666665,1802,223 +4389,146.3,1758,232 +4390,146.33333333333334,1706,241 +4391,146.36666666666667,1646,250 +4392,146.4,1581,258 +4393,146.43333333333334,1511,264 +4394,146.46666666666667,1439,270 +4395,146.5,1370,270 +4396,146.53333333333333,1300,270 +4397,146.56666666666666,1235,270 +4398,146.6,1174,267 +4399,146.63333333333333,1122,263 +4400,146.66666666666666,1077,259 +4401,146.7,1043,255 +4402,146.73333333333332,1018,251 +4403,146.76666666666665,1011,249 +4404,146.8,1011,249 +4405,146.83333333333334,1011,249 +4406,146.86666666666667,1031,251 +4407,146.9,1061,255 +4408,146.93333333333334,1101,258 +4409,146.96666666666667,1151,262 +4410,147.0,1208,265 +4411,147.03333333333333,1271,266 +4412,147.06666666666666,1340,266 +4413,147.1,1411,266 +4414,147.13333333333333,1480,262 +4415,147.16666666666666,1552,256 +4416,147.2,1619,249 +4417,147.23333333333332,1681,241 +4418,147.26666666666665,1737,232 +4419,147.3,1784,224 +4420,147.33333333333334,1822,216 +4421,147.36666666666667,1850,211 +4422,147.4,1865,209 +4423,147.43333333333334,1865,209 +4424,147.46666666666667,1865,209 +4425,147.5,1848,213 +4426,147.53333333333333,1820,219 +4427,147.56666666666666,1781,228 +4428,147.6,1733,236 +4429,147.63333333333333,1678,245 +4430,147.66666666666666,1616,254 +4431,147.7,1549,261 +4432,147.73333333333332,1477,268 +4433,147.76666666666665,1409,271 +4434,147.8,1338,271 +4435,147.83333333333334,1269,271 +4436,147.86666666666667,1206,269 +4437,147.9,1150,265 +4438,147.93333333333334,1101,261 +4439,147.96666666666667,1061,257 +4440,148.0,1031,253 +4441,148.03333333333333,1011,250 +4442,148.06666666666666,1011,250 +4443,148.1,1011,250 +4444,148.13333333333333,1020,250 +4445,148.16666666666666,1045,253 +4446,148.2,1080,256 +4447,148.23333333333332,1125,260 +4448,148.26666666666665,1178,263 +4449,148.3,1238,266 +4450,148.33333333333334,1304,266 +4451,148.36666666666667,1374,266 +4452,148.4,1443,265 +4453,148.43333333333334,1514,260 +4454,148.46666666666667,1584,253 +4455,148.5,1649,245 +4456,148.53333333333333,1708,237 +4457,148.56666666666666,1759,228 +4458,148.6,1802,221 +4459,148.63333333333333,1835,214 +4460,148.66666666666666,1858,210 +4461,148.7,1858,210 +4462,148.73333333333332,1858,210 +4463,148.76666666666665,1857,211 +4464,148.8,1834,216 +4465,148.83333333333334,1801,223 +4466,148.86666666666667,1759,232 +4467,148.9,1707,241 +4468,148.93333333333334,1648,249 +4469,148.96666666666667,1584,257 +4470,149.0,1514,264 +4471,149.03333333333333,1443,270 +4472,149.06666666666666,1375,270 +4473,149.1,1305,270 +4474,149.13333333333333,1239,270 +4475,149.16666666666666,1179,267 +4476,149.2,1126,263 +4477,149.23333333333332,1081,259 +4478,149.26666666666665,1046,255 +4479,149.3,1021,252 +4480,149.33333333333334,1012,250 +4481,149.36666666666667,1012,250 +4482,149.4,1012,250 +4483,149.43333333333334,1031,252 +4484,149.46666666666667,1061,255 +4485,149.5,1101,258 +4486,149.53333333333333,1149,262 +4487,149.56666666666666,1206,265 +4488,149.6,1269,267 +4489,149.63333333333333,1337,267 +4490,149.66666666666666,1409,267 +4491,149.7,1477,264 +4492,149.73333333333332,1548,257 +4493,149.76666666666665,1615,250 +4494,149.8,1677,243 +4495,149.83333333333334,1733,234 +4496,149.86666666666667,1780,226 +4497,149.9,1818,218 +4498,149.93333333333334,1846,213 +4499,149.96666666666667,1863,210 +4500,150.0,1863,210 +4501,150.03333333333333,1863,210 +4502,150.06666666666666,1847,215 +4503,150.1,1819,221 +4504,150.13333333333333,1782,229 +4505,150.16666666666666,1735,238 +4506,150.2,1680,246 +4507,150.23333333333332,1618,255 +4508,150.26666666666665,1552,262 +4509,150.3,1481,267 +4510,150.33333333333334,1413,272 +4511,150.36666666666667,1343,272 +4512,150.4,1274,272 +4513,150.43333333333334,1211,271 +4514,150.46666666666667,1154,267 +4515,150.5,1105,263 +4516,150.53333333333333,1065,259 +4517,150.56666666666666,1034,255 +4518,150.6,1015,252 +4519,150.63333333333333,1015,252 +4520,150.66666666666666,1015,252 +4521,150.7,1021,252 +4522,150.73333333333332,1046,255 +4523,150.76666666666665,1080,258 +4524,150.8,1124,262 +4525,150.83333333333334,1176,266 +4526,150.86666666666667,1236,268 +4527,150.9,1301,268 +4528,150.93333333333334,1371,268 +4529,150.96666666666667,1439,267 +4530,151.0,1510,263 +4531,151.03333333333333,1580,256 +4532,151.06666666666666,1644,248 +4533,151.1,1703,240 +4534,151.13333333333333,1755,232 +4535,151.16666666666666,1798,224 +4536,151.2,1832,217 +4537,151.23333333333332,1855,213 +4538,151.26666666666665,1856,213 +4539,151.3,1856,213 +4540,151.33333333333334,1856,213 +4541,151.36666666666667,1834,218 +4542,151.4,1802,225 +4543,151.43333333333334,1760,234 +4544,151.46666666666667,1708,243 +4545,151.5,1650,251 +4546,151.53333333333333,1587,259 +4547,151.56666666666666,1518,266 +4548,151.6,1447,271 +4549,151.63333333333333,1379,272 +4550,151.66666666666666,1309,272 +4551,151.7,1243,272 +4552,151.73333333333332,1183,269 +4553,151.76666666666665,1130,266 +4554,151.8,1085,262 +4555,151.83333333333334,1050,258 +4556,151.86666666666667,1024,254 +4557,151.9,1014,252 +4558,151.93333333333334,1014,252 +4559,151.96666666666667,1014,252 +4560,152.0,1032,254 +4561,152.03333333333333,1061,257 +4562,152.06666666666666,1099,260 +4563,152.1,1148,264 +4564,152.13333333333333,1203,267 +4565,152.16666666666666,1266,269 +4566,152.2,1334,269 +4567,152.23333333333332,1405,269 +4568,152.26666666666665,1471,265 +4569,152.3,1543,260 +4570,152.33333333333334,1610,253 +4571,152.36666666666667,1672,245 +4572,152.4,1728,237 +4573,152.43333333333334,1776,229 +4574,152.46666666666667,1814,222 +4575,152.5,1842,216 +4576,152.53333333333333,1860,213 +4577,152.56666666666666,1860,213 +4578,152.6,1860,213 +4579,152.63333333333333,1846,217 +4580,152.66666666666666,1819,222 +4581,152.7,1782,229 +4582,152.73333333333332,1735,238 +4583,152.76666666666665,1681,247 +4584,152.8,1620,255 +4585,152.83333333333334,1554,263 +4586,152.86666666666667,1483,268 +4587,152.9,1415,272 +4588,152.93333333333334,1346,272 +4589,152.96666666666667,1277,272 +4590,153.0,1214,270 +4591,153.03333333333333,1157,267 +4592,153.06666666666666,1108,263 +4593,153.1,1067,259 +4594,153.13333333333333,1036,255 +4595,153.16666666666666,1016,253 +4596,153.2,1016,252 +4597,153.23333333333332,1016,252 +4598,153.26666666666665,1021,252 +4599,153.3,1045,255 +4600,153.33333333333334,1078,258 +4601,153.36666666666667,1122,262 +4602,153.4,1173,265 +4603,153.43333333333334,1232,268 +4604,153.46666666666667,1297,268 +4605,153.5,1367,268 +4606,153.53333333333333,1434,268 +4607,153.56666666666666,1504,263 +4608,153.6,1574,257 +4609,153.63333333333333,1639,249 +4610,153.66666666666666,1698,241 +4611,153.7,1750,233 +4612,153.73333333333332,1793,225 +4613,153.76666666666665,1827,218 +4614,153.8,1850,214 +4615,153.83333333333334,1854,214 +4616,153.86666666666667,1854,214 +4617,153.9,1854,214 +4618,153.93333333333334,1832,218 +4619,153.96666666666667,1801,225 +4620,154.0,1759,233 +4621,154.03333333333333,1709,242 +4622,154.06666666666666,1652,250 +4623,154.1,1588,258 +4624,154.13333333333333,1521,265 +4625,154.16666666666666,1450,270 +4626,154.2,1382,271 +4627,154.23333333333332,1313,271 +4628,154.26666666666665,1247,271 +4629,154.3,1187,269 +4630,154.33333333333334,1133,265 +4631,154.36666666666667,1088,261 +4632,154.4,1052,257 +4633,154.43333333333334,1027,254 +4634,154.46666666666667,1015,251 +4635,154.5,1015,251 +4636,154.53333333333333,1015,251 +4637,154.56666666666666,1032,253 +4638,154.6,1061,256 +4639,154.63333333333333,1099,260 +4640,154.66666666666666,1146,264 +4641,154.7,1201,267 +4642,154.73333333333332,1263,269 +4643,154.76666666666665,1330,269 +4644,154.8,1400,269 +4645,154.83333333333334,1467,265 +4646,154.86666666666667,1538,260 +4647,154.9,1605,253 +4648,154.93333333333334,1667,245 +4649,154.96666666666667,1723,237 +4650,155.0,1770,229 +4651,155.03333333333333,1809,221 +4652,155.06666666666666,1838,216 +4653,155.1,1856,212 +4654,155.13333333333333,1856,212 +4655,155.16666666666666,1856,212 +4656,155.2,1844,215 +4657,155.23333333333332,1817,221 +4658,155.26666666666665,1781,228 +4659,155.3,1736,237 +4660,155.33333333333334,1682,246 +4661,155.36666666666667,1622,254 +4662,155.4,1557,261 +4663,155.43333333333334,1486,267 +4664,155.46666666666667,1418,271 +4665,155.5,1349,271 +4666,155.53333333333333,1281,271 +4667,155.56666666666666,1218,269 +4668,155.6,1161,266 +4669,155.63333333333333,1112,262 +4670,155.66666666666666,1071,258 +4671,155.7,1040,254 +4672,155.73333333333332,1019,252 +4673,155.76666666666665,1019,252 +4674,155.8,1019,252 +4675,155.83333333333334,1023,252 +4676,155.86666666666667,1045,254 +4677,155.9,1078,257 +4678,155.93333333333334,1121,261 +4679,155.96666666666667,1172,265 +4680,156.0,1230,267 +4681,156.03333333333333,1294,267 +4682,156.06666666666666,1363,267 +4683,156.1,1430,267 +4684,156.13333333333333,1500,262 +4685,156.16666666666666,1570,256 +4686,156.2,1634,249 +4687,156.23333333333332,1693,241 +4688,156.26666666666665,1745,233 +4689,156.3,1789,225 +4690,156.33333333333334,1823,219 +4691,156.36666666666667,1847,214 +4692,156.4,1852,214 +4693,156.43333333333334,1852,214 +4694,156.46666666666667,1852,214 +4695,156.5,1831,218 +4696,156.53333333333333,1800,224 +4697,156.56666666666666,1760,232 +4698,156.6,1711,241 +4699,156.63333333333333,1654,249 +4700,156.66666666666666,1591,256 +4701,156.7,1525,263 +4702,156.73333333333332,1453,268 +4703,156.76666666666665,1386,270 +4704,156.8,1318,270 +4705,156.83333333333334,1252,270 +4706,156.86666666666667,1192,267 +4707,156.9,1138,264 +4708,156.93333333333334,1093,260 +4709,156.96666666666667,1057,255 +4710,157.0,1031,253 +4711,157.03333333333333,1017,250 +4712,157.06666666666666,1017,250 +4713,157.1,1017,250 +4714,157.13333333333333,1033,252 +4715,157.16666666666666,1061,255 +4716,157.2,1099,259 +4717,157.23333333333332,1145,262 +4718,157.26666666666665,1200,265 +4719,157.3,1261,268 +4720,157.33333333333334,1328,268 +4721,157.36666666666667,1396,268 +4722,157.4,1462,265 +4723,157.43333333333334,1534,260 +4724,157.46666666666667,1600,254 +4725,157.5,1662,246 +4726,157.53333333333333,1718,237 +4727,157.56666666666666,1766,229 +4728,157.6,1805,222 +4729,157.63333333333333,1834,216 +4730,157.66666666666666,1853,212 +4731,157.7,1853,212 +4732,157.73333333333332,1853,212 +4733,157.76666666666665,1842,215 +4734,157.8,1817,221 +4735,157.83333333333334,1782,228 +4736,157.86666666666667,1737,236 +4737,157.9,1684,244 +4738,157.93333333333334,1624,252 +4739,157.96666666666667,1559,259 +4740,158.0,1490,265 +4741,158.03333333333333,1421,270 +4742,158.06666666666666,1353,270 +4743,158.1,1285,270 +4744,158.13333333333333,1223,269 +4745,158.16666666666666,1166,266 +4746,158.2,1116,262 +4747,158.23333333333332,1076,258 +4748,158.26666666666665,1044,254 +4749,158.3,1023,251 +4750,158.33333333333334,1023,251 +4751,158.36666666666667,1023,251 +4752,158.4,1024,251 +4753,158.43333333333334,1046,253 +4754,158.46666666666667,1079,257 +4755,158.5,1120,261 +4756,158.53333333333333,1171,264 +4757,158.56666666666666,1228,267 +4758,158.6,1292,267 +4759,158.63333333333333,1360,267 +4760,158.66666666666666,1427,267 +4761,158.7,1496,262 +4762,158.73333333333332,1566,257 +4763,158.76666666666665,1630,249 +4764,158.8,1689,241 +4765,158.83333333333334,1741,233 +4766,158.86666666666667,1785,225 +4767,158.9,1819,219 +4768,158.93333333333334,1844,214 +4769,158.96666666666667,1850,213 +4770,159.0,1850,213 +4771,159.03333333333333,1850,213 +4772,159.06666666666666,1831,217 +4773,159.1,1800,224 +4774,159.13333333333333,1761,231 +4775,159.16666666666666,1712,240 +4776,159.2,1656,248 +4777,159.23333333333332,1594,256 +4778,159.26666666666665,1527,262 +4779,159.3,1457,267 +4780,159.33333333333334,1390,270 +4781,159.36666666666667,1322,270 +4782,159.4,1256,270 +4783,159.43333333333334,1196,267 +4784,159.46666666666667,1143,263 +4785,159.5,1097,259 +4786,159.53333333333333,1061,256 +4787,159.56666666666666,1034,252 +4788,159.6,1018,250 +4789,159.63333333333333,1018,250 +4790,159.66666666666666,1018,250 +4791,159.7,1035,252 +4792,159.73333333333332,1062,255 +4793,159.76666666666665,1099,258 +4794,159.8,1145,263 +4795,159.83333333333334,1199,266 +4796,159.86666666666667,1259,268 +4797,159.9,1325,268 +4798,159.93333333333334,1394,268 +4799,159.96666666666667,1460,265 +4800,160.0,1531,260 +4801,160.03333333333333,1597,254 +4802,160.06666666666666,1658,246 +4803,160.1,1714,238 +4804,160.13333333333333,1762,230 +4805,160.16666666666666,1801,223 +4806,160.2,1830,217 +4807,160.23333333333332,1849,213 +4808,160.26666666666665,1849,213 +4809,160.3,1849,213 +4810,160.33333333333334,1841,216 +4811,160.36666666666667,1816,221 +4812,160.4,1781,228 +4813,160.43333333333334,1737,236 +4814,160.46666666666667,1685,244 +4815,160.5,1626,252 +4816,160.53333333333333,1562,259 +4817,160.56666666666666,1494,265 +4818,160.6,1425,269 +4819,160.63333333333333,1358,269 +4820,160.66666666666666,1290,269 +4821,160.7,1228,269 +4822,160.73333333333332,1171,265 +4823,160.76666666666665,1121,262 +4824,160.8,1080,258 +4825,160.83333333333334,1048,254 +4826,160.86666666666667,1026,251 +4827,160.9,1026,251 +4828,160.93333333333334,1026,251 +4829,160.96666666666667,1026,251 +4830,161.0,1048,253 +4831,161.03333333333333,1080,257 +4832,161.06666666666666,1121,261 +4833,161.1,1170,264 +4834,161.13333333333333,1227,267 +4835,161.16666666666666,1290,268 +4836,161.2,1358,268 +4837,161.23333333333332,1424,268 +4838,161.26666666666665,1493,263 +4839,161.3,1562,257 +4840,161.33333333333334,1626,251 +4841,161.36666666666667,1685,242 +4842,161.4,1736,235 +4843,161.43333333333334,1781,227 +4844,161.46666666666667,1815,220 +4845,161.5,1839,215 +4846,161.53333333333333,1848,214 +4847,161.56666666666666,1848,214 +4848,161.6,1848,214 +4849,161.63333333333333,1829,218 +4850,161.66666666666666,1800,224 +4851,161.7,1760,232 +4852,161.73333333333332,1712,240 +4853,161.76666666666665,1657,248 +4854,161.8,1596,255 +4855,161.83333333333334,1530,262 +4856,161.86666666666667,1460,267 +4857,161.9,1394,269 +4858,161.93333333333334,1327,269 +4859,161.96666666666667,1261,269 +4860,162.0,1201,267 +4861,162.03333333333333,1147,264 +4862,162.06666666666666,1102,260 +4863,162.1,1065,256 +4864,162.13333333333333,1038,253 +4865,162.16666666666666,1022,251 +4866,162.2,1022,251 +4867,162.23333333333332,1022,251 +4868,162.26666666666665,1037,252 +4869,162.3,1064,255 +4870,162.33333333333334,1100,258 +4871,162.36666666666667,1144,262 +4872,162.4,1197,266 +4873,162.43333333333334,1257,268 +4874,162.46666666666667,1323,268 +4875,162.5,1391,268 +4876,162.53333333333333,1457,265 +4877,162.56666666666666,1526,260 +4878,162.6,1592,254 +4879,162.63333333333333,1654,247 +4880,162.66666666666666,1709,239 +4881,162.7,1758,231 +4882,162.73333333333332,1797,224 +4883,162.76666666666665,1827,218 +4884,162.8,1846,214 +4885,162.83333333333334,1846,214 +4886,162.86666666666667,1846,214 +4887,162.9,1839,216 +4888,162.93333333333334,1815,221 +4889,162.96666666666667,1781,228 +4890,163.0,1737,235 +4891,163.03333333333333,1686,244 +4892,163.06666666666666,1628,251 +4893,163.1,1564,258 +4894,163.13333333333333,1496,264 +4895,163.16666666666666,1428,269 +4896,163.2,1362,269 +4897,163.23333333333332,1294,269 +4898,163.26666666666665,1232,268 +4899,163.3,1175,265 +4900,163.33333333333334,1125,262 +4901,163.36666666666667,1084,258 +4902,163.4,1052,254 +4903,163.43333333333334,1030,252 +4904,163.46666666666667,1028,251 +4905,163.5,1028,251 +4906,163.53333333333333,1028,251 +4907,163.56666666666666,1049,253 +4908,163.6,1080,257 +4909,163.63333333333333,1120,260 +4910,163.66666666666666,1170,264 +4911,163.7,1226,267 +4912,163.73333333333332,1288,267 +4913,163.76666666666665,1355,267 +4914,163.8,1421,267 +4915,163.83333333333334,1489,263 +4916,163.86666666666667,1558,258 +4917,163.9,1621,250 +4918,163.93333333333334,1680,243 +4919,163.96666666666667,1732,235 +4920,164.0,1776,227 +4921,164.03333333333333,1811,221 +4922,164.06666666666666,1836,216 +4923,164.1,1846,214 +4924,164.13333333333333,1846,214 +4925,164.16666666666666,1846,214 +4926,164.2,1827,218 +4927,164.23333333333332,1799,224 +4928,164.26666666666665,1760,231 +4929,164.3,1713,239 +4930,164.33333333333334,1658,247 +4931,164.36666666666667,1597,254 +4932,164.4,1532,261 +4933,164.43333333333334,1463,266 +4934,164.46666666666667,1398,269 +4935,164.5,1330,269 +4936,164.53333333333333,1264,269 +4937,164.56666666666666,1205,267 +4938,164.6,1151,264 +4939,164.63333333333333,1105,260 +4940,164.66666666666666,1068,256 +4941,164.7,1041,253 +4942,164.73333333333332,1024,250 +4943,164.76666666666665,1024,250 +4944,164.8,1024,250 +4945,164.83333333333334,1038,252 +4946,164.86666666666667,1064,255 +4947,164.9,1099,259 +4948,164.93333333333334,1144,262 +4949,164.96666666666667,1196,265 +4950,165.0,1256,268 +4951,165.03333333333333,1320,268 +4952,165.06666666666666,1387,268 +4953,165.1,1453,266 +4954,165.13333333333333,1523,261 +4955,165.16666666666666,1588,255 +4956,165.2,1650,247 +4957,165.23333333333332,1705,239 +4958,165.26666666666665,1754,232 +4959,165.3,1793,224 +4960,165.33333333333334,1823,219 +4961,165.36666666666667,1843,215 +4962,165.4,1843,215 +4963,165.43333333333334,1843,215 +4964,165.46666666666667,1838,216 +4965,165.5,1814,221 +4966,165.53333333333333,1781,227 +4967,165.56666666666666,1738,235 +4968,165.6,1687,243 +4969,165.63333333333333,1630,251 +4970,165.66666666666666,1567,258 +4971,165.7,1499,264 +4972,165.73333333333332,1431,268 +4973,165.76666666666665,1366,268 +4974,165.8,1299,268 +4975,165.83333333333334,1236,268 +4976,165.86666666666667,1179,266 +4977,165.9,1130,262 +4978,165.93333333333334,1088,258 +4979,165.96666666666667,1056,254 +4980,166.0,1033,252 +4981,166.03333333333333,1030,251 +4982,166.06666666666666,1030,251 +4983,166.1,1030,251 +4984,166.13333333333333,1050,253 +4985,166.16666666666666,1081,257 +4986,166.2,1121,261 +4987,166.23333333333332,1169,264 +4988,166.26666666666665,1224,267 +4989,166.3,1286,268 +4990,166.33333333333334,1352,268 +4991,166.36666666666667,1419,268 +4992,166.4,1486,264 +4993,166.43333333333334,1554,258 +4994,166.46666666666667,1618,251 +4995,166.5,1677,244 +4996,166.53333333333333,1729,236 +4997,166.56666666666666,1773,228 +4998,166.6,1808,222 +4999,166.63333333333333,1833,217 +5000,166.66666666666666,1844,214 +5001,166.7,1844,214 +5002,166.73333333333332,1844,214 +5003,166.76666666666665,1826,218 +5004,166.8,1798,224 +5005,166.83333333333334,1760,231 +5006,166.86666666666667,1714,239 +5007,166.9,1660,247 +5008,166.93333333333334,1600,254 +5009,166.96666666666667,1536,260 +5010,167.0,1466,265 +5011,167.03333333333333,1402,269 +5012,167.06666666666666,1334,269 +5013,167.1,1268,269 +5014,167.13333333333333,1208,267 +5015,167.16666666666666,1155,264 +5016,167.2,1109,260 +5017,167.23333333333332,1072,256 +5018,167.26666666666665,1044,253 +5019,167.3,1027,251 +5020,167.33333333333334,1027,251 +5021,167.36666666666667,1027,251 +5022,167.4,1039,252 +5023,167.43333333333334,1064,255 +5024,167.46666666666667,1099,259 +5025,167.5,1143,262 +5026,167.53333333333333,1195,266 +5027,167.56666666666666,1253,268 +5028,167.6,1317,268 +5029,167.63333333333333,1384,268 +5030,167.66666666666666,1450,267 +5031,167.7,1519,261 +5032,167.73333333333332,1585,255 +5033,167.76666666666665,1646,248 +5034,167.8,1701,240 +5035,167.83333333333334,1750,232 +5036,167.86666666666667,1790,225 +5037,167.9,1820,219 +5038,167.93333333333334,1840,215 +5039,167.96666666666667,1840,215 +5040,168.0,1840,215 +5041,168.03333333333333,1836,216 +5042,168.06666666666666,1813,221 +5043,168.1,1780,227 +5044,168.13333333333333,1738,235 +5045,168.16666666666666,1688,243 +5046,168.2,1631,250 +5047,168.23333333333332,1568,257 +5048,168.26666666666665,1501,263 +5049,168.3,1433,268 +5050,168.33333333333334,1368,269 +5051,168.36666666666667,1368,269 +5052,168.4,1301,269 +5053,168.43333333333334,1239,268 +5054,168.46666666666667,1182,266 +5055,168.5,1132,262 +5056,168.53333333333333,1091,258 +5057,168.56666666666666,1058,255 +5058,168.6,1036,252 +5059,168.63333333333333,1031,252 +5060,168.66666666666666,1031,252 +5061,168.7,1031,252 +5062,168.73333333333332,1051,254 +5063,168.76666666666665,1081,257 +5064,168.8,1120,261 +5065,168.83333333333334,1167,264 +5066,168.86666666666667,1222,267 +5067,168.9,1283,269 +5068,168.93333333333334,1349,269 +5069,168.96666666666667,1415,269 +5070,169.0,1481,265 +5071,169.03333333333333,1550,260 +5072,169.06666666666666,1613,253 +5073,169.1,1671,245 +5074,169.13333333333333,1724,237 +5075,169.16666666666666,1768,230 +5076,169.2,1803,223 +5077,169.23333333333332,1829,218 +5078,169.26666666666665,1841,215 +5079,169.3,1841,215 +5080,169.33333333333334,1841,215 +5081,169.36666666666667,1824,219 +5082,169.4,1797,224 +5083,169.43333333333334,1759,231 +5084,169.46666666666667,1713,239 +5085,169.5,1660,247 +5086,169.53333333333333,1600,254 +5087,169.56666666666666,1536,260 +5088,169.6,1467,266 +5089,169.63333333333333,1403,269 +5090,169.66666666666666,1336,269 +5091,169.7,1271,269 +5092,169.73333333333332,1212,267 +5093,169.76666666666665,1158,264 +5094,169.8,1112,261 +5095,169.83333333333334,1075,257 +5096,169.86666666666667,1048,254 +5097,169.9,1030,252 +5098,169.93333333333334,1030,252 +5099,169.96666666666667,1030,252 +5100,170.0,1041,253 +5101,170.03333333333333,1065,256 +5102,170.06666666666666,1100,260 +5103,170.1,1143,263 +5104,170.13333333333333,1194,266 +5105,170.16666666666666,1252,269 +5106,170.2,1315,269 +5107,170.23333333333332,1382,269 +5108,170.26666666666665,1447,268 +5109,170.3,1515,262 +5110,170.33333333333334,1581,256 +5111,170.36666666666667,1642,249 +5112,170.4,1697,242 +5113,170.43333333333334,1746,234 +5114,170.46666666666667,1785,226 +5115,170.5,1816,220 +5116,170.53333333333333,1837,217 +5117,170.56666666666666,1837,217 +5118,170.6,1837,217 +5119,170.63333333333333,1834,217 +5120,170.66666666666666,1811,221 +5121,170.7,1779,228 +5122,170.73333333333332,1737,235 +5123,170.76666666666665,1688,243 +5124,170.8,1632,251 +5125,170.83333333333334,1570,257 +5126,170.86666666666667,1503,263 +5127,170.9,1436,268 +5128,170.93333333333334,1371,269 +5129,170.96666666666667,1305,269 +5130,171.0,1242,269 +5131,171.03333333333333,1185,266 +5132,171.06666666666666,1136,263 +5133,171.1,1094,259 +5134,171.13333333333333,1061,256 +5135,171.16666666666666,1039,253 +5136,171.2,1033,253 +5137,171.23333333333332,1033,253 +5138,171.26666666666665,1033,253 +5139,171.3,1053,255 +5140,171.33333333333334,1082,258 +5141,171.36666666666667,1120,262 +5142,171.4,1167,265 +5143,171.43333333333334,1222,268 +5144,171.46666666666667,1282,269 +5145,171.5,1347,269 +5146,171.53333333333333,1413,269 +5147,171.56666666666666,1479,266 +5148,171.6,1547,260 +5149,171.63333333333333,1610,253 +5150,171.66666666666666,1668,246 +5151,171.7,1721,238 +5152,171.73333333333332,1765,231 +5153,171.76666666666665,1800,224 +5154,171.8,1826,219 +5155,171.83333333333334,1839,216 +5156,171.86666666666667,1839,216 +5157,171.9,1839,216 +5158,171.93333333333334,1823,220 +5159,171.96666666666667,1795,225 +5160,172.0,1759,232 +5161,172.03333333333333,1713,239 +5162,172.06666666666666,1660,247 +5163,172.1,1601,255 +5164,172.13333333333333,1538,261 +5165,172.16666666666666,1470,267 +5166,172.2,1405,270 +5167,172.23333333333332,1339,270 +5168,172.26666666666665,1274,270 +5169,172.3,1215,268 +5170,172.33333333333334,1161,266 +5171,172.36666666666667,1116,262 +5172,172.4,1078,259 +5173,172.43333333333334,1050,256 +5174,172.46666666666667,1032,254 +5175,172.5,1032,254 +5176,172.53333333333333,1032,254 +5177,172.56666666666666,1043,255 +5178,172.6,1067,257 +5179,172.63333333333333,1101,261 +5180,172.66666666666666,1143,264 +5181,172.7,1194,268 +5182,172.73333333333332,1251,270 +5183,172.76666666666665,1314,270 +5184,172.8,1380,270 +5185,172.83333333333334,1445,269 +5186,172.86666666666667,1512,264 +5187,172.9,1578,258 +5188,172.93333333333334,1639,251 +5189,172.96666666666667,1694,244 +5190,173.0,1742,236 +5191,173.03333333333333,1782,228 +5192,173.06666666666666,1813,222 +5193,173.1,1834,218 +5194,173.13333333333333,1834,218 +5195,173.16666666666666,1834,218 +5196,173.2,1832,219 +5197,173.23333333333332,1810,223 +5198,173.26666666666665,1778,229 +5199,173.3,1737,236 +5200,173.33333333333334,1688,244 +5201,173.36666666666667,1632,252 +5202,173.4,1571,259 +5203,173.43333333333334,1504,265 +5204,173.46666666666667,1438,269 +5205,173.5,1373,270 +5206,173.53333333333333,1307,270 +5207,173.56666666666666,1245,270 +5208,173.6,1189,267 +5209,173.63333333333333,1139,264 +5210,173.66666666666666,1097,261 +5211,173.7,1064,258 +5212,173.73333333333332,1041,255 +5213,173.76666666666665,1035,254 +5214,173.8,1035,254 +5215,173.83333333333334,1035,254 +5216,173.86666666666667,1054,257 +5217,173.9,1082,260 +5218,173.93333333333334,1121,263 +5219,173.96666666666667,1167,267 +5220,174.0,1221,269 +5221,174.03333333333333,1281,271 +5222,174.06666666666666,1346,271 +5223,174.1,1412,271 +5224,174.13333333333333,1477,267 +5225,174.16666666666666,1544,261 +5226,174.2,1607,255 +5227,174.23333333333332,1665,248 +5228,174.26666666666665,1717,240 +5229,174.3,1761,232 +5230,174.33333333333334,1797,226 +5231,174.36666666666667,1823,221 +5232,174.4,1838,218 +5233,174.43333333333334,1838,218 +5234,174.46666666666667,1838,218 +5235,174.5,1821,221 +5236,174.53333333333333,1795,226 +5237,174.56666666666666,1759,233 +5238,174.6,1714,240 +5239,174.63333333333333,1661,248 +5240,174.66666666666666,1603,255 +5241,174.7,1540,261 +5242,174.73333333333332,1472,266 +5243,174.76666666666665,1409,270 +5244,174.8,1343,270 +5245,174.83333333333334,1277,270 +5246,174.86666666666667,1218,269 +5247,174.9,1165,266 +5248,174.93333333333334,1119,262 +5249,174.96666666666667,1082,259 +5250,175.0,1053,256 +5251,175.03333333333333,1035,254 +5252,175.06666666666666,1035,254 +5253,175.1,1035,254 +5254,175.13333333333333,1045,256 +5255,175.16666666666666,1068,259 +5256,175.2,1101,261 +5257,175.23333333333332,1143,265 +5258,175.26666666666665,1193,268 +5259,175.3,1250,271 +5260,175.33333333333334,1312,271 +5261,175.36666666666667,1378,271 +5262,175.4,1442,270 +5263,175.43333333333334,1509,265 +5264,175.46666666666667,1575,259 +5265,175.5,1635,252 +5266,175.53333333333333,1691,244 +5267,175.56666666666666,1739,237 +5268,175.6,1780,229 +5269,175.63333333333333,1810,223 +5270,175.66666666666666,1831,219 +5271,175.7,1831,219 +5272,175.73333333333332,1831,219 +5273,175.76666666666665,1831,219 +5274,175.8,1809,223 +5275,175.83333333333334,1778,229 +5276,175.86666666666667,1737,236 +5277,175.9,1689,244 +5278,175.93333333333334,1634,251 +5279,175.96666666666667,1573,258 +5280,176.0,1507,264 +5281,176.03333333333333,1441,269 +5282,176.06666666666666,1377,270 +5283,176.1,1311,270 +5284,176.13333333333333,1249,270 +5285,176.16666666666666,1193,268 +5286,176.2,1143,264 +5287,176.23333333333332,1101,261 +5288,176.26666666666665,1068,258 +5289,176.3,1045,256 +5290,176.33333333333334,1038,255 +5291,176.36666666666667,1038,255 +5292,176.4,1038,255 +5293,176.43333333333334,1056,257 +5294,176.46666666666667,1084,260 +5295,176.5,1122,264 +5296,176.53333333333333,1168,267 +5297,176.56666666666666,1221,269 +5298,176.6,1280,271 +5299,176.63333333333333,1345,271 +5300,176.66666666666666,1411,271 +5301,176.7,1475,267 +5302,176.73333333333332,1542,261 +5303,176.76666666666665,1605,255 +5304,176.8,1663,248 +5305,176.83333333333334,1715,240 +5306,176.86666666666667,1759,232 +5307,176.9,1795,226 +5308,176.93333333333334,1821,220 +5309,176.96666666666667,1837,217 +5310,177.0,1837,217 +5311,177.03333333333333,1837,217 +5312,177.06666666666666,1821,220 +5313,177.1,1795,225 +5314,177.13333333333333,1759,232 +5315,177.16666666666666,1714,238 +5316,177.2,1663,246 +5317,177.23333333333332,1605,253 +5318,177.26666666666665,1542,259 +5319,177.3,1475,265 +5320,177.33333333333334,1412,268 +5321,177.36666666666667,1346,268 +5322,177.4,1281,268 +5323,177.43333333333334,1222,268 +5324,177.46666666666667,1169,265 +5325,177.5,1123,261 +5326,177.53333333333333,1085,258 +5327,177.56666666666666,1057,256 +5328,177.6,1039,253 +5329,177.63333333333333,1039,253 +5330,177.66666666666666,1039,253 +5331,177.7,1046,255 +5332,177.73333333333332,1070,257 +5333,177.76666666666665,1103,260 +5334,177.8,1144,264 +5335,177.83333333333334,1194,267 +5336,177.86666666666667,1250,269 +5337,177.9,1312,269 +5338,177.93333333333334,1377,269 +5339,177.96666666666667,1441,268 +5340,178.0,1507,264 +5341,178.03333333333333,1572,257 +5342,178.06666666666666,1633,250 +5343,178.1,1688,243 +5344,178.13333333333333,1736,235 +5345,178.16666666666666,1777,228 +5346,178.2,1807,222 +5347,178.23333333333332,1829,217 +5348,178.26666666666665,1829,217 +5349,178.3,1829,217 +5350,178.33333333333334,1829,217 +5351,178.36666666666667,1808,221 +5352,178.4,1777,227 +5353,178.43333333333334,1738,234 +5354,178.46666666666667,1689,241 +5355,178.5,1634,249 +5356,178.53333333333333,1574,256 +5357,178.56666666666666,1509,262 +5358,178.6,1443,266 +5359,178.63333333333333,1379,268 +5360,178.66666666666666,1314,268 +5361,178.7,1252,268 +5362,178.73333333333332,1196,266 +5363,178.76666666666665,1146,263 +5364,178.8,1104,260 +5365,178.83333333333334,1071,256 +5366,178.86666666666667,1048,254 +5367,178.9,1039,253 +5368,178.93333333333334,1039,253 +5369,178.96666666666667,1039,253 +5370,179.0,1057,255 +5371,179.03333333333333,1085,259 +5372,179.06666666666666,1122,262 +5373,179.1,1167,266 +5374,179.13333333333333,1220,268 +5375,179.16666666666666,1279,270 +5376,179.2,1343,270 +5377,179.23333333333332,1409,270 +5378,179.26666666666665,1472,266 +5379,179.3,1539,261 +5380,179.33333333333334,1601,254 +5381,179.36666666666667,1659,247 +5382,179.4,1711,239 +5383,179.43333333333334,1755,231 +5384,179.46666666666667,1791,225 +5385,179.5,1818,219 +5386,179.53333333333333,1834,216 +5387,179.56666666666666,1834,216 +5388,179.6,1834,216 +5389,179.63333333333333,1819,219 +5390,179.66666666666666,1793,224 +5391,179.7,1758,230 +5392,179.73333333333332,1715,237 +5393,179.76666666666665,1663,245 +5394,179.8,1606,252 +5395,179.83333333333334,1544,258 +5396,179.86666666666667,1477,264 +5397,179.9,1413,268 +5398,179.93333333333334,1348,268 +5399,179.96666666666667,1284,268 +5400,180.0,1225,267 +5401,180.03333333333333,1171,264 +5402,180.06666666666666,1126,261 +5403,180.1,1088,258 +5404,180.13333333333333,1060,255 +5405,180.16666666666666,1041,253 +5406,180.2,1041,253 +5407,180.23333333333332,1041,253 +5408,180.26666666666665,1048,255 +5409,180.3,1071,257 +5410,180.33333333333334,1103,261 +5411,180.36666666666667,1144,264 +5412,180.4,1193,267 +5413,180.43333333333334,1249,270 +5414,180.46666666666667,1310,270 +5415,180.5,1375,270 +5416,180.53333333333333,1438,268 +5417,180.56666666666666,1503,264 +5418,180.6,1569,258 +5419,180.63333333333333,1630,251 +5420,180.66666666666666,1685,243 +5421,180.7,1733,235 +5422,180.73333333333332,1773,228 +5423,180.76666666666665,1804,222 +5424,180.8,1826,217 +5425,180.83333333333334,1828,216 +5426,180.86666666666667,1828,216 +5427,180.9,1828,216 +5428,180.93333333333334,1807,220 +5429,180.96666666666667,1777,226 +5430,181.0,1737,233 +5431,181.03333333333333,1690,240 +5432,181.06666666666666,1635,248 +5433,181.1,1576,255 +5434,181.13333333333333,1511,260 +5435,181.16666666666666,1445,265 +5436,181.2,1382,268 +5437,181.23333333333332,1317,268 +5438,181.26666666666665,1255,268 +5439,181.3,1199,265 +5440,181.33333333333334,1149,263 +5441,181.36666666666667,1108,260 +5442,181.4,1074,256 +5443,181.43333333333334,1051,254 +5444,181.46666666666667,1042,254 +5445,181.5,1042,254 +5446,181.53333333333333,1042,254 +5447,181.56666666666666,1059,256 +5448,181.6,1086,259 +5449,181.63333333333333,1123,262 +5450,181.66666666666666,1168,266 +5451,181.7,1220,268 +5452,181.73333333333332,1278,270 +5453,181.76666666666665,1341,270 +5454,181.8,1407,270 +5455,181.83333333333334,1469,266 +5456,181.86666666666667,1536,261 +5457,181.9,1598,254 +5458,181.93333333333334,1656,247 +5459,181.96666666666667,1708,239 +5460,182.0,1752,232 +5461,182.03333333333333,1788,225 +5462,182.06666666666666,1815,219 +5463,182.1,1831,216 +5464,182.13333333333333,1831,216 +5465,182.16666666666666,1831,216 +5466,182.2,1818,218 +5467,182.23333333333332,1793,223 +5468,182.26666666666665,1758,230 +5469,182.3,1714,237 +5470,182.33333333333334,1664,244 +5471,182.36666666666667,1607,251 +5472,182.4,1545,258 +5473,182.43333333333334,1479,263 +5474,182.46666666666667,1414,267 +5475,182.5,1350,267 +5476,182.53333333333333,1287,267 +5477,182.56666666666666,1227,267 +5478,182.6,1174,265 +5479,182.63333333333333,1129,261 +5480,182.66666666666666,1091,258 +5481,182.7,1063,256 +5482,182.73333333333332,1044,254 +5483,182.76666666666665,1044,254 +5484,182.8,1044,254 +5485,182.83333333333334,1049,255 +5486,182.86666666666667,1072,258 +5487,182.9,1104,261 +5488,182.93333333333334,1144,264 +5489,182.96666666666667,1193,267 +5490,183.0,1247,270 +5491,183.03333333333333,1308,270 +5492,183.06666666666666,1373,270 +5493,183.1,1435,269 +5494,183.13333333333333,1501,264 +5495,183.16666666666666,1566,258 +5496,183.2,1626,251 +5497,183.23333333333332,1681,244 +5498,183.26666666666665,1729,236 +5499,183.3,1769,229 +5500,183.33333333333334,1801,223 +5501,183.36666666666667,1823,218 +5502,183.4,1825,216 +5503,183.43333333333334,1825,216 +5504,183.46666666666667,1825,216 +5505,183.5,1805,220 +5506,183.53333333333333,1776,226 +5507,183.56666666666666,1737,233 +5508,183.6,1690,240 +5509,183.63333333333333,1636,248 +5510,183.66666666666666,1577,255 +5511,183.7,1512,261 +5512,183.73333333333332,1447,265 +5513,183.76666666666665,1384,268 +5514,183.8,1320,268 +5515,183.83333333333334,1258,268 +5516,183.86666666666667,1202,266 +5517,183.9,1153,263 +5518,183.93333333333334,1111,260 +5519,183.96666666666667,1077,257 +5520,184.0,1054,255 +5521,184.03333333333333,1043,254 +5522,184.06666666666666,1043,254 +5523,184.1,1043,254 +5524,184.13333333333333,1061,256 +5525,184.16666666666666,1087,259 +5526,184.2,1123,263 +5527,184.23333333333332,1167,266 +5528,184.26666666666665,1219,269 +5529,184.3,1276,271 +5530,184.33333333333334,1339,271 +5531,184.36666666666667,1404,271 +5532,184.4,1467,267 +5533,184.43333333333334,1533,261 +5534,184.46666666666667,1595,255 +5535,184.5,1652,248 +5536,184.53333333333333,1704,240 +5537,184.56666666666666,1749,233 +5538,184.6,1785,226 +5539,184.63333333333333,1812,220 +5540,184.66666666666666,1828,217 +5541,184.7,1828,217 +5542,184.73333333333332,1828,217 +5543,184.76666666666665,1816,218 +5544,184.8,1791,223 +5545,184.83333333333334,1757,229 +5546,184.86666666666667,1714,236 +5547,184.9,1664,244 +5548,184.93333333333334,1608,251 +5549,184.96666666666667,1547,257 +5550,185.0,1481,263 +5551,185.03333333333333,1416,267 +5552,185.06666666666666,1353,267 +5553,185.1,1290,267 +5554,185.13333333333333,1231,267 +5555,185.16666666666666,1178,265 +5556,185.2,1133,262 +5557,185.23333333333332,1095,259 +5558,185.26666666666665,1066,256 +5559,185.3,1047,254 +5560,185.33333333333334,1047,254 +5561,185.36666666666667,1047,254 +5562,185.4,1052,256 +5563,185.43333333333334,1073,259 +5564,185.46666666666667,1105,262 +5565,185.5,1145,265 +5566,185.53333333333333,1193,267 +5567,185.56666666666666,1247,270 +5568,185.6,1307,270 +5569,185.63333333333333,1372,270 +5570,185.66666666666666,1433,269 +5571,185.7,1498,265 +5572,185.73333333333332,1563,259 +5573,185.76666666666665,1623,252 +5574,185.8,1677,244 +5575,185.83333333333334,1726,237 +5576,185.86666666666667,1766,229 +5577,185.9,1798,223 +5578,185.93333333333334,1820,218 +5579,185.96666666666667,1824,217 +5580,186.0,1824,217 +5581,186.03333333333333,1824,217 +5582,186.06666666666666,1804,221 +5583,186.1,1775,226 +5584,186.13333333333333,1736,233 +5585,186.16666666666666,1690,240 +5586,186.2,1637,248 +5587,186.23333333333332,1578,255 +5588,186.26666666666665,1514,260 +5589,186.3,1449,265 +5590,186.33333333333334,1387,268 +5591,186.36666666666667,1323,268 +5592,186.4,1261,268 +5593,186.43333333333334,1206,266 +5594,186.46666666666667,1156,264 +5595,186.5,1114,261 +5596,186.53333333333333,1081,258 +5597,186.56666666666666,1057,256 +5598,186.6,1046,255 +5599,186.63333333333333,1046,255 +5600,186.66666666666666,1046,255 +5601,186.7,1063,257 +5602,186.73333333333332,1089,260 +5603,186.76666666666665,1124,264 +5604,186.8,1168,267 +5605,186.83333333333334,1219,269 +5606,186.86666666666667,1276,270 +5607,186.9,1338,270 +5608,186.93333333333334,1402,270 +5609,186.96666666666667,1465,267 +5610,187.0,1530,262 +5611,187.03333333333333,1592,255 +5612,187.06666666666666,1649,248 +5613,187.1,1701,240 +5614,187.13333333333333,1745,233 +5615,187.16666666666666,1781,226 +5616,187.2,1808,220 +5617,187.23333333333332,1825,216 +5618,187.26666666666665,1825,216 +5619,187.3,1825,216 +5620,187.33333333333334,1814,218 +5621,187.36666666666667,1789,223 +5622,187.4,1756,229 +5623,187.43333333333334,1714,236 +5624,187.46666666666667,1664,243 +5625,187.5,1608,251 +5626,187.53333333333333,1548,257 +5627,187.56666666666666,1482,263 +5628,187.6,1418,266 +5629,187.63333333333333,1356,267 +5630,187.66666666666666,1293,267 +5631,187.7,1235,267 +5632,187.73333333333332,1182,265 +5633,187.76666666666665,1136,262 +5634,187.8,1098,260 +5635,187.83333333333334,1070,257 +5636,187.86666666666667,1051,255 +5637,187.9,1051,255 +5638,187.93333333333334,1051,255 +5639,187.96666666666667,1054,256 +5640,188.0,1076,259 +5641,188.03333333333333,1107,262 +5642,188.06666666666666,1146,265 +5643,188.1,1193,268 +5644,188.13333333333333,1247,270 +5645,188.16666666666666,1306,270 +5646,188.2,1370,270 +5647,188.23333333333332,1431,269 +5648,188.26666666666665,1496,265 +5649,188.3,1560,259 +5650,188.33333333333334,1620,252 +5651,188.36666666666667,1674,244 +5652,188.4,1722,237 +5653,188.43333333333334,1763,229 +5654,188.46666666666667,1794,223 +5655,188.5,1816,219 +5656,188.53333333333333,1821,217 +5657,188.56666666666666,1821,217 +5658,188.6,1821,217 +5659,188.63333333333333,1801,220 +5660,188.66666666666666,1773,226 +5661,188.7,1735,233 +5662,188.73333333333332,1689,240 +5663,188.76666666666665,1636,247 +5664,188.8,1578,254 +5665,188.83333333333334,1515,260 +5666,188.86666666666667,1450,264 +5667,188.9,1389,267 +5668,188.93333333333334,1325,267 +5669,188.96666666666667,1264,267 +5670,189.0,1209,266 +5671,189.03333333333333,1159,263 +5672,189.06666666666666,1118,261 +5673,189.1,1085,258 +5674,189.13333333333333,1061,256 +5675,189.16666666666666,1049,256 +5676,189.2,1049,256 +5677,189.23333333333332,1049,256 +5678,189.26666666666665,1065,258 +5679,189.3,1091,260 +5680,189.33333333333334,1126,263 +5681,189.36666666666667,1169,266 +5682,189.4,1219,269 +5683,189.43333333333334,1276,270 +5684,189.46666666666667,1337,270 +5685,189.5,1401,270 +5686,189.53333333333333,1463,267 +5687,189.56666666666666,1528,262 +5688,189.6,1589,256 +5689,189.63333333333333,1646,248 +5690,189.66666666666666,1697,241 +5691,189.7,1742,233 +5692,189.73333333333332,1778,227 +5693,189.76666666666665,1805,221 +5694,189.8,1822,218 +5695,189.83333333333334,1822,218 +5696,189.86666666666667,1822,218 +5697,189.9,1811,219 +5698,189.93333333333334,1787,223 +5699,189.96666666666667,1754,229 +5700,190.0,1713,236 +5701,190.03333333333333,1663,243 +5702,190.06666666666666,1608,250 +5703,190.1,1548,256 +5704,190.13333333333333,1483,262 +5705,190.16666666666666,1420,267 +5706,190.2,1358,267 +5707,190.23333333333332,1295,267 +5708,190.26666666666665,1237,267 +5709,190.3,1185,265 +5710,190.33333333333334,1139,263 +5711,190.36666666666667,1102,260 +5712,190.4,1073,257 +5713,190.43333333333334,1054,255 +5714,190.46666666666667,1054,255 +5715,190.5,1054,255 +5716,190.53333333333333,1057,257 +5717,190.56666666666666,1078,259 +5718,190.6,1108,262 +5719,190.63333333333333,1147,266 +5720,190.66666666666666,1194,268 +5721,190.7,1247,270 +5722,190.73333333333332,1306,270 +5723,190.76666666666665,1369,270 +5724,190.8,1430,269 +5725,190.83333333333334,1494,265 +5726,190.86666666666667,1558,259 +5727,190.9,1617,252 +5728,190.93333333333334,1671,245 +5729,190.96666666666667,1719,237 +5730,191.0,1759,230 +5731,191.03333333333333,1791,223 +5732,191.06666666666666,1813,219 +5733,191.1,1818,217 +5734,191.13333333333333,1818,217 +5735,191.16666666666666,1818,217 +5736,191.2,1800,220 +5737,191.23333333333332,1771,226 +5738,191.26666666666665,1734,232 +5739,191.3,1688,239 +5740,191.33333333333334,1636,247 +5741,191.36666666666667,1579,253 +5742,191.4,1516,259 +5743,191.43333333333334,1451,264 +5744,191.46666666666667,1390,267 +5745,191.5,1327,267 +5746,191.53333333333333,1267,267 +5747,191.56666666666666,1211,267 +5748,191.6,1162,264 +5749,191.63333333333333,1121,261 +5750,191.66666666666666,1088,259 +5751,191.7,1064,257 +5752,191.73333333333332,1051,256 +5753,191.76666666666665,1051,256 +5754,191.8,1051,256 +5755,191.83333333333334,1067,258 +5756,191.86666666666667,1093,261 +5757,191.9,1127,264 +5758,191.93333333333334,1170,267 +5759,191.96666666666667,1220,270 +5760,192.0,1275,271 +5761,192.03333333333333,1336,271 +5762,192.06666666666666,1400,271 +5763,192.1,1461,268 +5764,192.13333333333333,1526,262 +5765,192.16666666666666,1587,256 +5766,192.2,1643,249 +5767,192.23333333333332,1694,241 +5768,192.26666666666665,1738,234 +5769,192.3,1774,227 +5770,192.33333333333334,1802,221 +5771,192.36666666666667,1819,217 +5772,192.4,1819,217 +5773,192.43333333333334,1819,217 +5774,192.46666666666667,1809,219 +5775,192.5,1786,223 +5776,192.53333333333333,1753,229 +5777,192.56666666666666,1712,235 +5778,192.6,1663,243 +5779,192.63333333333333,1608,250 +5780,192.66666666666666,1549,256 +5781,192.7,1485,262 +5782,192.73333333333332,1421,266 +5783,192.76666666666665,1360,267 +5784,192.8,1298,267 +5785,192.83333333333334,1240,267 +5786,192.86666666666667,1188,265 +5787,192.9,1142,263 +5788,192.93333333333334,1105,260 +5789,192.96666666666667,1076,258 +5790,193.0,1057,256 +5791,193.03333333333333,1057,256 +5792,193.06666666666666,1057,256 +5793,193.1,1059,258 +5794,193.13333333333333,1079,260 +5795,193.16666666666666,1109,263 +5796,193.2,1148,266 +5797,193.23333333333332,1194,269 +5798,193.26666666666665,1247,271 +5799,193.3,1305,271 +5800,193.33333333333334,1367,271 +5801,193.36666666666667,1428,270 +5802,193.4,1492,265 +5803,193.43333333333334,1555,260 +5804,193.46666666666667,1614,253 +5805,193.5,1668,245 +5806,193.53333333333333,1716,238 +5807,193.56666666666666,1756,230 +5808,193.6,1788,224 +5809,193.63333333333333,1810,219 +5810,193.66666666666666,1816,217 +5811,193.7,1816,217 +5812,193.73333333333332,1816,217 +5813,193.76666666666665,1798,220 +5814,193.8,1770,225 +5815,193.83333333333334,1733,231 +5816,193.86666666666667,1688,239 +5817,193.9,1637,246 +5818,193.93333333333334,1579,253 +5819,193.96666666666667,1518,259 +5820,194.0,1454,264 +5821,194.03333333333333,1393,267 +5822,194.06666666666666,1330,267 +5823,194.1,1269,267 +5824,194.13333333333333,1214,266 +5825,194.16666666666666,1165,264 +5826,194.2,1124,262 +5827,194.23333333333332,1091,259 +5828,194.26666666666665,1067,257 +5829,194.3,1053,257 +5830,194.33333333333334,1053,257 +5831,194.36666666666667,1053,257 +5832,194.4,1069,259 +5833,194.43333333333334,1094,261 +5834,194.46666666666667,1128,265 +5835,194.5,1170,267 +5836,194.53333333333333,1220,270 +5837,194.56666666666666,1275,271 +5838,194.6,1335,271 +5839,194.63333333333333,1399,271 +5840,194.66666666666666,1459,268 +5841,194.7,1524,263 +5842,194.73333333333332,1584,256 +5843,194.76666666666665,1641,249 +5844,194.8,1692,241 +5845,194.83333333333334,1736,234 +5846,194.86666666666667,1772,227 +5847,194.9,1799,221 +5848,194.93333333333334,1816,217 +5849,194.96666666666667,1816,217 +5850,195.0,1816,217 +5851,195.03333333333333,1807,218 +5852,195.06666666666666,1785,223 +5853,195.1,1752,228 +5854,195.13333333333333,1712,235 +5855,195.16666666666666,1663,242 +5856,195.2,1609,249 +5857,195.23333333333332,1550,256 +5858,195.26666666666665,1486,262 +5859,195.3,1423,266 +5860,195.33333333333334,1362,267 +5861,195.36666666666667,1300,267 +5862,195.4,1242,267 +5863,195.43333333333334,1190,266 +5864,195.46666666666667,1145,263 +5865,195.5,1108,261 +5866,195.53333333333333,1079,258 +5867,195.56666666666666,1060,257 +5868,195.6,1060,257 +5869,195.63333333333333,1060,257 +5870,195.66666666666666,1061,258 +5871,195.7,1081,260 +5872,195.73333333333332,1111,264 +5873,195.76666666666665,1149,266 +5874,195.8,1194,269 +5875,195.83333333333334,1247,271 +5876,195.86666666666667,1305,271 +5877,195.9,1367,271 +5878,195.93333333333334,1427,270 +5879,195.96666666666667,1491,265 +5880,196.0,1553,260 +5881,196.03333333333333,1612,253 +5882,196.06666666666666,1666,246 +5883,196.1,1713,238 +5884,196.13333333333333,1754,230 +5885,196.16666666666666,1785,224 +5886,196.2,1808,219 +5887,196.23333333333332,1815,217 +5888,196.26666666666665,1815,217 +5889,196.3,1815,217 +5890,196.33333333333334,1797,220 +5891,196.36666666666667,1769,225 +5892,196.4,1732,231 +5893,196.43333333333334,1688,238 +5894,196.46666666666667,1637,246 +5895,196.5,1580,253 +5896,196.53333333333333,1519,258 +5897,196.56666666666666,1455,264 +5898,196.6,1394,267 +5899,196.63333333333333,1332,267 +5900,196.66666666666666,1272,267 +5901,196.7,1217,266 +5902,196.73333333333332,1168,265 +5903,196.76666666666665,1127,263 +5904,196.8,1094,260 +5905,196.83333333333334,1070,258 +5906,196.86666666666667,1055,258 +5907,196.9,1055,258 +5908,196.93333333333334,1055,258 +5909,196.96666666666667,1071,260 +5910,197.0,1096,262 +5911,197.03333333333333,1129,265 +5912,197.06666666666666,1171,268 +5913,197.1,1220,271 +5914,197.13333333333333,1275,272 +5915,197.16666666666666,1335,272 +5916,197.2,1398,272 +5917,197.23333333333332,1458,268 +5918,197.26666666666665,1522,263 +5919,197.3,1582,257 +5920,197.33333333333334,1638,250 +5921,197.36666666666667,1689,242 +5922,197.4,1733,235 +5923,197.43333333333334,1769,228 +5924,197.46666666666667,1797,222 +5925,197.5,1814,218 +5926,197.53333333333333,1814,218 +5927,197.56666666666666,1814,218 +5928,197.6,1806,218 +5929,197.63333333333333,1784,223 +5930,197.66666666666666,1752,228 +5931,197.7,1711,235 +5932,197.73333333333332,1663,242 +5933,197.76666666666665,1609,249 +5934,197.8,1550,256 +5935,197.83333333333334,1488,261 +5936,197.86666666666667,1425,266 +5937,197.9,1364,267 +5938,197.93333333333334,1302,267 +5939,197.96666666666667,1245,267 +5940,198.0,1193,266 +5941,198.03333333333333,1148,264 +5942,198.06666666666666,1110,262 +5943,198.1,1082,259 +5944,198.13333333333333,1063,258 +5945,198.16666666666666,1063,258 +5946,198.2,1063,258 +5947,198.23333333333332,1063,259 +5948,198.26666666666665,1083,261 +5949,198.3,1112,264 +5950,198.33333333333334,1150,267 +5951,198.36666666666667,1195,270 +5952,198.4,1247,272 +5953,198.43333333333334,1305,272 +5954,198.46666666666667,1366,272 +5955,198.5,1426,270 +5956,198.53333333333333,1489,266 +5957,198.56666666666666,1551,260 +5958,198.6,1610,253 +5959,198.63333333333333,1664,246 +5960,198.66666666666666,1711,238 +5961,198.7,1751,231 +5962,198.73333333333332,1783,224 +5963,198.76666666666665,1806,220 +5964,198.8,1813,217 +5965,198.83333333333334,1813,217 +5966,198.86666666666667,1813,217 +5967,198.9,1795,220 +5968,198.93333333333334,1768,225 +5969,198.96666666666667,1732,231 +5970,199.0,1688,238 +5971,199.03333333333333,1637,246 +5972,199.06666666666666,1581,252 +5973,199.1,1520,258 +5974,199.13333333333333,1457,263 +5975,199.16666666666666,1396,267 +5976,199.2,1334,267 +5977,199.23333333333332,1274,267 +5978,199.26666666666665,1220,267 +5979,199.3,1171,265 +5980,199.33333333333334,1130,263 +5981,199.36666666666667,1097,261 +5982,199.4,1073,259 +5983,199.43333333333334,1058,259 +5984,199.46666666666667,1058,259 +5985,199.5,1058,259 +5986,199.53333333333333,1073,261 +5987,199.56666666666666,1098,263 +5988,199.6,1131,266 +5989,199.63333333333333,1172,270 +5990,199.66666666666666,1221,272 +5991,199.7,1275,272 +5992,199.73333333333332,1335,272 +5993,199.76666666666665,1397,272 +5994,199.8,1457,270 +5995,199.83333333333334,1520,264 +5996,199.86666666666667,1580,258 +5997,199.9,1636,251 +5998,199.93333333333334,1687,243 +5999,199.96666666666667,1731,236 +6000,200.0,1767,229 +6001,200.03333333333333,1794,223 +6002,200.06666666666666,1812,220 +6003,200.1,1812,220 +6004,200.13333333333333,1812,220 +6005,200.16666666666666,1805,220 +6006,200.2,1782,224 +6007,200.23333333333332,1750,228 +6008,200.26666666666665,1710,236 +6009,200.3,1663,243 +6010,200.33333333333334,1609,250 +6011,200.36666666666667,1551,256 +6012,200.4,1488,262 +6013,200.43333333333334,1426,267 +6014,200.46666666666667,1366,269 +6015,200.5,1304,269 +6016,200.53333333333333,1247,269 +6017,200.56666666666666,1196,268 +6018,200.6,1151,266 +6019,200.63333333333333,1113,264 +6020,200.66666666666666,1085,262 +6021,200.7,1065,260 +6022,200.73333333333332,1065,260 +6023,200.76666666666665,1065,260 +6024,200.8,1065,262 +6025,200.83333333333334,1085,264 +6026,200.86666666666667,1114,267 +6027,200.9,1151,269 +6028,200.93333333333334,1196,272 +6029,200.96666666666667,1247,274 +6030,201.0,1304,274 +6031,201.03333333333333,1366,274 +6032,201.06666666666666,1425,273 +6033,201.1,1487,268 +6034,201.13333333333333,1550,262 +6035,201.16666666666666,1608,256 +6036,201.2,1661,248 +6037,201.23333333333332,1708,241 +6038,201.26666666666665,1749,233 +6039,201.3,1780,227 +6040,201.33333333333334,1803,222 +6041,201.36666666666667,1811,219 +6042,201.4,1811,219 +6043,201.43333333333334,1811,219 +6044,201.46666666666667,1794,222 +6045,201.5,1767,227 +6046,201.53333333333333,1731,233 +6047,201.56666666666666,1687,240 +6048,201.6,1636,247 +6049,201.63333333333333,1581,254 +6050,201.66666666666666,1520,260 +6051,201.7,1457,266 +6052,201.73333333333332,1397,269 +6053,201.76666666666665,1335,270 +6054,201.8,1276,270 +6055,201.83333333333334,1221,270 +6056,201.86666666666667,1173,268 +6057,201.9,1132,266 +6058,201.93333333333334,1098,263 +6059,201.96666666666667,1075,262 +6060,202.0,1060,261 +6061,202.03333333333333,1060,261 +6062,202.06666666666666,1060,261 +6063,202.1,1074,263 +6064,202.13333333333333,1099,266 +6065,202.16666666666666,1132,269 +6066,202.2,1173,272 +6067,202.23333333333332,1221,274 +6068,202.26666666666665,1274,274 +6069,202.3,1334,274 +6070,202.33333333333334,1396,273 +6071,202.36666666666667,1455,271 +6072,202.4,1517,266 +6073,202.43333333333334,1578,259 +6074,202.46666666666667,1634,252 +6075,202.5,1684,245 +6076,202.53333333333333,1728,237 +6077,202.56666666666666,1764,230 +6078,202.6,1791,224 +6079,202.63333333333333,1809,220 +6080,202.66666666666666,1809,220 +6081,202.7,1809,220 +6082,202.73333333333332,1802,220 +6083,202.76666666666665,1780,224 +6084,202.8,1749,230 +6085,202.83333333333334,1709,236 +6086,202.86666666666667,1662,244 +6087,202.9,1609,251 +6088,202.93333333333334,1551,257 +6089,202.96666666666667,1489,263 +6090,203.0,1426,267 +6091,203.03333333333333,1367,270 +6092,203.06666666666666,1306,270 +6093,203.1,1249,270 +6094,203.13333333333333,1197,269 +6095,203.16666666666666,1152,267 +6096,203.2,1115,265 +6097,203.23333333333332,1087,263 +6098,203.26666666666665,1067,261 +6099,203.3,1067,261 +6100,203.33333333333334,1067,261 +6101,203.36666666666667,1067,262 +6102,203.4,1086,265 +6103,203.43333333333334,1115,267 +6104,203.46666666666667,1151,270 +6105,203.5,1196,273 +6106,203.53333333333333,1247,275 +6107,203.56666666666666,1304,275 +6108,203.6,1364,275 +6109,203.63333333333333,1424,273 +6110,203.66666666666666,1486,268 +6111,203.7,1548,262 +6112,203.73333333333332,1605,255 +6113,203.76666666666665,1659,248 +6114,203.8,1706,240 +6115,203.83333333333334,1746,233 +6116,203.86666666666667,1777,226 +6117,203.9,1800,222 +6118,203.93333333333334,1808,219 +6119,203.96666666666667,1808,219 +6120,204.0,1808,219 +6121,204.03333333333333,1791,222 +6122,204.06666666666666,1765,226 +6123,204.1,1729,232 +6124,204.13333333333333,1685,240 +6125,204.16666666666666,1636,247 +6126,204.2,1580,253 +6127,204.23333333333332,1520,259 +6128,204.26666666666665,1457,265 +6129,204.3,1399,267 +6130,204.33333333333334,1336,269 +6131,204.36666666666667,1277,269 +6132,204.4,1223,269 +6133,204.43333333333334,1175,268 +6134,204.46666666666667,1134,266 +6135,204.5,1101,264 +6136,204.53333333333333,1077,262 +6137,204.56666666666666,1062,262 +6138,204.6,1062,262 +6139,204.63333333333333,1062,262 +6140,204.66666666666666,1076,264 +6141,204.7,1100,266 +6142,204.73333333333332,1133,269 +6143,204.76666666666665,1173,272 +6144,204.8,1221,274 +6145,204.83333333333334,1274,274 +6146,204.86666666666667,1334,274 +6147,204.9,1395,273 +6148,204.93333333333334,1453,271 +6149,204.96666666666667,1515,266 +6150,205.0,1576,260 +6151,205.03333333333333,1631,252 +6152,205.06666666666666,1681,245 +6153,205.1,1725,237 +6154,205.13333333333333,1761,230 +6155,205.16666666666666,1788,225 +6156,205.2,1806,221 +6157,205.23333333333332,1806,220 +6158,205.26666666666665,1806,220 +6159,205.29999999999998,1799,220 +6160,205.33333333333334,1778,224 +6161,205.36666666666667,1747,230 +6162,205.4,1708,236 +6163,205.43333333333334,1661,243 +6164,205.46666666666667,1608,250 +6165,205.5,1551,257 +6166,205.53333333333333,1489,262 +6167,205.56666666666666,1427,267 +6168,205.6,1368,269 +6169,205.63333333333333,1307,269 +6170,205.66666666666666,1250,269 +6171,205.7,1199,268 +6172,205.73333333333332,1155,267 +6173,205.76666666666665,1118,265 +6174,205.79999999999998,1089,263 +6175,205.83333333333334,1069,261 +6176,205.86666666666667,1069,261 +6177,205.9,1069,261 +6178,205.93333333333334,1069,262 +6179,205.96666666666667,1088,265 +6180,206.0,1116,268 +6181,206.03333333333333,1152,271 +6182,206.06666666666666,1196,273 +6183,206.1,1247,275 +6184,206.13333333333333,1303,275 +6185,206.16666666666666,1363,275 +6186,206.2,1423,272 +6187,206.23333333333332,1483,268 +6188,206.26666666666665,1545,263 +6189,206.29999999999998,1603,256 +6190,206.33333333333334,1656,248 +6191,206.36666666666667,1703,241 +6192,206.4,1743,234 +6193,206.43333333333334,1774,227 +6194,206.46666666666667,1797,222 +6195,206.5,1806,219 +6196,206.53333333333333,1806,219 +6197,206.56666666666666,1806,219 +6198,206.6,1789,222 +6199,206.63333333333333,1763,226 +6200,206.66666666666666,1728,232 +6201,206.7,1684,239 +6202,206.73333333333332,1635,246 +6203,206.76666666666665,1580,253 +6204,206.79999999999998,1521,259 +6205,206.83333333333334,1458,265 +6206,206.86666666666667,1399,268 +6207,206.9,1338,269 +6208,206.93333333333334,1279,269 +6209,206.96666666666667,1225,269 +6210,207.0,1177,268 +6211,207.03333333333333,1136,266 +6212,207.06666666666666,1103,264 +6213,207.1,1079,262 +6214,207.13333333333333,1064,262 +6215,207.16666666666666,1064,262 +6216,207.2,1064,262 +6217,207.23333333333332,1078,264 +6218,207.26666666666665,1101,267 +6219,207.29999999999998,1134,269 +6220,207.33333333333334,1174,272 +6221,207.36666666666667,1221,274 +6222,207.4,1274,274 +6223,207.43333333333334,1333,274 +6224,207.46666666666667,1394,274 +6225,207.5,1452,271 +6226,207.53333333333333,1514,266 +6227,207.56666666666666,1574,259 +6228,207.6,1629,252 +6229,207.63333333333333,1679,245 +6230,207.66666666666666,1723,237 +6231,207.7,1759,230 +6232,207.73333333333332,1786,224 +6233,207.76666666666665,1804,220 +6234,207.79999999999998,1804,220 +6235,207.83333333333334,1804,220 +6236,207.86666666666667,1798,220 +6237,207.9,1777,224 +6238,207.93333333333334,1746,229 +6239,207.96666666666667,1707,235 +6240,208.0,1661,242 +6241,208.03333333333333,1608,249 +6242,208.06666666666666,1551,256 +6243,208.1,1490,262 +6244,208.13333333333333,1428,267 +6245,208.16666666666666,1369,269 +6246,208.2,1309,269 +6247,208.23333333333332,1252,269 +6248,208.26666666666665,1201,269 +6249,208.29999999999998,1157,267 +6250,208.33333333333334,1120,265 +6251,208.36666666666667,1091,263 +6252,208.4,1072,262 +6253,208.43333333333334,1071,262 +6254,208.46666666666667,1071,262 +6255,208.5,1071,263 +6256,208.53333333333333,1089,265 +6257,208.56666666666666,1117,268 +6258,208.6,1153,271 +6259,208.63333333333333,1197,273 +6260,208.66666666666666,1247,275 +6261,208.7,1303,275 +6262,208.73333333333332,1363,275 +6263,208.76666666666665,1422,274 +6264,208.79999999999998,1482,268 +6265,208.83333333333334,1544,263 +6266,208.86666666666667,1601,256 +6267,208.9,1654,248 +6268,208.93333333333334,1701,241 +6269,208.96666666666667,1741,233 +6270,209.0,1772,226 +6271,209.03333333333333,1795,222 +6272,209.06666666666666,1804,218 +6273,209.1,1804,218 +6274,209.13333333333333,1804,218 +6275,209.16666666666666,1787,221 +6276,209.2,1761,226 +6277,209.23333333333332,1726,232 +6278,209.26666666666665,1684,238 +6279,209.29999999999998,1635,246 +6280,209.33333333333334,1580,253 +6281,209.36666666666667,1521,259 +6282,209.4,1459,264 +6283,209.43333333333334,1400,268 +6284,209.46666666666667,1339,269 +6285,209.5,1281,269 +6286,209.53333333333333,1227,269 +6287,209.56666666666666,1179,268 +6288,209.6,1139,266 +6289,209.63333333333333,1106,264 +6290,209.66666666666666,1082,263 +6291,209.7,1067,263 +6292,209.73333333333332,1067,263 +6293,209.76666666666665,1067,263 +6294,209.79999999999998,1080,265 +6295,209.83333333333334,1103,267 +6296,209.86666666666667,1135,270 +6297,209.9,1175,272 +6298,209.93333333333334,1222,274 +6299,209.96666666666667,1274,274 +6300,210.0,1333,274 +6301,210.03333333333333,1393,274 +6302,210.06666666666666,1450,271 +6303,210.1,1512,265 +6304,210.13333333333333,1572,259 +6305,210.16666666666666,1627,252 +6306,210.2,1677,244 +6307,210.23333333333332,1720,236 +6308,210.26666666666665,1756,230 +6309,210.29999999999998,1783,223 +6310,210.33333333333334,1801,219 +6311,210.36666666666667,1801,219 +6312,210.4,1801,219 +6313,210.43333333333334,1796,219 +6314,210.46666666666667,1775,223 +6315,210.5,1744,228 +6316,210.53333333333333,1706,235 +6317,210.56666666666666,1660,242 +6318,210.6,1608,249 +6319,210.63333333333333,1551,255 +6320,210.66666666666666,1490,261 +6321,210.7,1429,266 +6322,210.73333333333332,1370,269 +6323,210.76666666666665,1310,269 +6324,210.79999999999998,1254,269 +6325,210.83333333333334,1204,269 +6326,210.86666666666667,1159,268 +6327,210.9,1123,266 +6328,210.93333333333334,1094,264 +6329,210.96666666666667,1074,263 +6330,211.0,1073,263 +6331,211.03333333333333,1073,263 +6332,211.06666666666666,1073,264 +6333,211.1,1091,266 +6334,211.13333333333333,1119,269 +6335,211.16666666666666,1155,271 +6336,211.2,1198,273 +6337,211.23333333333332,1247,275 +6338,211.26666666666665,1303,275 +6339,211.29999999999998,1362,275 +6340,211.33333333333334,1421,272 +6341,211.36666666666667,1481,268 +6342,211.4,1542,262 +6343,211.43333333333334,1599,255 +6344,211.46666666666667,1651,248 +6345,211.5,1698,240 +6346,211.53333333333333,1738,233 +6347,211.56666666666666,1770,226 +6348,211.6,1792,221 +6349,211.63333333333333,1802,218 +6350,211.66666666666666,1802,218 +6351,211.7,1802,218 +6352,211.73333333333332,1786,221 +6353,211.76666666666665,1760,225 +6354,211.79999999999998,1725,231 +6355,211.83333333333334,1683,238 +6356,211.86666666666667,1634,245 +6357,211.9,1580,252 +6358,211.93333333333334,1522,258 +6359,211.96666666666667,1459,264 +6360,212.0,1401,268 +6361,212.03333333333333,1341,269 +6362,212.06666666666666,1282,269 +6363,212.1,1229,269 +6364,212.13333333333333,1182,268 +6365,212.16666666666666,1141,266 +6366,212.2,1108,265 +6367,212.23333333333332,1084,263 +6368,212.26666666666665,1069,263 +6369,212.29999999999998,1069,263 +6370,212.33333333333334,1069,263 +6371,212.36666666666667,1082,265 +6372,212.4,1105,267 +6373,212.43333333333334,1136,269 +6374,212.46666666666667,1176,272 +6375,212.5,1222,274 +6376,212.53333333333333,1275,274 +6377,212.56666666666666,1333,274 +6378,212.6,1392,274 +6379,212.63333333333333,1450,271 +6380,212.66666666666666,1511,265 +6381,212.7,1571,259 +6382,212.73333333333332,1625,251 +6383,212.76666666666665,1675,244 +6384,212.79999999999998,1719,236 +6385,212.83333333333334,1754,229 +6386,212.86666666666667,1781,223 +6387,212.9,1799,219 +6388,212.93333333333334,1799,218 +6389,212.96666666666667,1799,218 +6390,213.0,1794,218 +6391,213.03333333333333,1773,222 +6392,213.06666666666666,1743,228 +6393,213.1,1705,234 +6394,213.13333333333333,1659,241 +6395,213.16666666666666,1607,248 +6396,213.2,1551,255 +6397,213.23333333333332,1490,261 +6398,213.26666666666665,1429,266 +6399,213.29999999999998,1371,269 +6400,213.33333333333334,1312,269 +6401,213.36666666666667,1256,269 +6402,213.4,1205,269 +6403,213.43333333333334,1161,267 +6404,213.46666666666667,1125,265 +6405,213.5,1096,264 +6406,213.53333333333333,1077,263 +6407,213.56666666666666,1075,263 +6408,213.6,1075,263 +6409,213.63333333333333,1075,264 +6410,213.66666666666666,1093,266 +6411,213.7,1120,269 +6412,213.73333333333332,1156,271 +6413,213.76666666666665,1199,273 +6414,213.79999999999998,1248,275 +6415,213.83333333333334,1303,275 +6416,213.86666666666667,1362,275 +6417,213.9,1420,273 +6418,213.93333333333334,1480,268 +6419,213.96666666666667,1541,262 +6420,214.0,1597,255 +6421,214.03333333333333,1649,248 +6422,214.06666666666666,1696,240 +6423,214.1,1736,233 +6424,214.13333333333333,1767,227 +6425,214.16666666666666,1790,221 +6426,214.2,1800,218 +6427,214.23333333333332,1800,218 +6428,214.26666666666665,1800,218 +6429,214.29999999999998,1784,220 +6430,214.33333333333334,1758,225 +6431,214.36666666666667,1724,231 +6432,214.4,1682,238 +6433,214.43333333333334,1633,245 +6434,214.46666666666667,1579,252 +6435,214.5,1521,257 +6436,214.53333333333333,1460,264 +6437,214.56666666666666,1402,267 +6438,214.6,1342,269 +6439,214.63333333333333,1284,269 +6440,214.66666666666666,1231,269 +6441,214.7,1183,268 +6442,214.73333333333332,1143,267 +6443,214.76666666666665,1110,265 +6444,214.79999999999998,1087,264 +6445,214.83333333333334,1071,264 +6446,214.86666666666667,1071,264 +6447,214.9,1071,264 +6448,214.93333333333334,1084,265 +6449,214.96666666666667,1106,267 +6450,215.0,1138,270 +6451,215.03333333333333,1177,272 +6452,215.06666666666666,1223,274 +6453,215.1,1275,274 +6454,215.13333333333333,1332,274 +6455,215.16666666666666,1391,274 +6456,215.2,1449,270 +6457,215.23333333333332,1509,265 +6458,215.26666666666665,1569,258 +6459,215.29999999999998,1623,251 +6460,215.33333333333334,1673,244 +6461,215.36666666666667,1716,236 +6462,215.4,1751,229 +6463,215.43333333333334,1778,223 +6464,215.46666666666667,1796,219 +6465,215.5,1796,218 +6466,215.53333333333333,1796,218 +6467,215.56666666666666,1792,218 +6468,215.6,1771,222 +6469,215.63333333333333,1742,228 +6470,215.66666666666666,1704,234 +6471,215.7,1658,241 +6472,215.73333333333332,1607,248 +6473,215.76666666666665,1551,255 +6474,215.79999999999998,1490,260 +6475,215.83333333333334,1430,266 +6476,215.86666666666667,1372,269 +6477,215.9,1313,269 +6478,215.93333333333334,1258,269 +6479,215.96666666666667,1207,269 +6480,216.0,1163,268 +6481,216.03333333333333,1127,266 +6482,216.06666666666666,1098,265 +6483,216.1,1079,264 +6484,216.13333333333333,1077,264 +6485,216.16666666666666,1077,264 +6486,216.2,1077,265 +6487,216.23333333333332,1095,267 +6488,216.26666666666665,1122,269 +6489,216.29999999999998,1157,271 +6490,216.33333333333334,1200,273 +6491,216.36666666666667,1248,275 +6492,216.4,1303,275 +6493,216.43333333333334,1361,275 +6494,216.46666666666667,1419,273 +6495,216.5,1479,268 +6496,216.53333333333333,1539,262 +6497,216.56666666666666,1596,255 +6498,216.6,1648,248 +6499,216.63333333333333,1694,240 +6500,216.66666666666666,1734,233 +6501,216.7,1765,226 +6502,216.73333333333332,1788,221 +6503,216.76666666666665,1798,218 +6504,216.79999999999998,1798,218 +6505,216.83333333333334,1798,218 +6506,216.86666666666667,1782,220 +6507,216.9,1757,225 +6508,216.93333333333334,1723,230 +6509,216.96666666666667,1681,237 +6510,217.0,1633,245 +6511,217.03333333333333,1579,251 +6512,217.06666666666666,1522,257 +6513,217.1,1460,264 +6514,217.13333333333333,1403,268 +6515,217.16666666666666,1343,269 +6516,217.2,1285,269 +6517,217.23333333333332,1233,269 +6518,217.26666666666665,1186,269 +6519,217.29999999999998,1145,267 +6520,217.33333333333334,1113,266 +6521,217.36666666666667,1089,265 +6522,217.4,1074,265 +6523,217.43333333333334,1074,265 +6524,217.46666666666667,1074,265 +6525,217.5,1086,266 +6526,217.53333333333333,1108,268 +6527,217.56666666666666,1139,271 +6528,217.6,1178,273 +6529,217.63333333333333,1224,275 +6530,217.66666666666666,1275,275 +6531,217.7,1332,275 +6532,217.73333333333332,1391,274 +6533,217.76666666666665,1448,271 +6534,217.79999999999998,1508,265 +6535,217.83333333333334,1567,258 +6536,217.86666666666667,1622,251 +6537,217.9,1671,244 +6538,217.93333333333334,1714,236 +6539,217.96666666666667,1749,229 +6540,218.0,1777,223 +6541,218.03333333333333,1794,219 +6542,218.06666666666666,1794,218 +6543,218.1,1794,218 +6544,218.13333333333333,1790,218 +6545,218.16666666666666,1770,222 +6546,218.2,1740,227 +6547,218.23333333333332,1702,234 +6548,218.26666666666665,1657,240 +6549,218.29999999999998,1607,248 +6550,218.33333333333334,1551,254 +6551,218.36666666666667,1491,260 +6552,218.4,1430,265 +6553,218.43333333333334,1373,269 +6554,218.46666666666667,1315,269 +6555,218.5,1259,269 +6556,218.53333333333333,1209,269 +6557,218.56666666666666,1166,269 +6558,218.6,1129,267 +6559,218.63333333333333,1101,265 +6560,218.66666666666666,1081,264 +6561,218.7,1079,264 +6562,218.73333333333332,1079,264 +6563,218.76666666666665,1079,265 +6564,218.79999999999998,1097,267 +6565,218.83333333333334,1124,270 +6566,218.86666666666667,1158,272 +6567,218.9,1201,274 +6568,218.93333333333334,1249,276 +6569,218.96666666666667,1303,276 +6570,219.0,1361,276 +6571,219.03333333333333,1419,273 +6572,219.06666666666666,1478,268 +6573,219.1,1538,262 +6574,219.13333333333333,1594,255 +6575,219.16666666666666,1646,248 +6576,219.2,1692,240 +6577,219.23333333333332,1731,233 +6578,219.26666666666665,1762,226 +6579,219.29999999999998,1785,221 +6580,219.33333333333334,1796,218 +6581,219.36666666666667,1796,218 +6582,219.4,1796,218 +6583,219.43333333333334,1780,220 +6584,219.46666666666667,1755,225 +6585,219.5,1721,231 +6586,219.53333333333333,1680,237 +6587,219.56666666666666,1632,244 +6588,219.6,1579,251 +6589,219.63333333333333,1522,257 +6590,219.66666666666666,1461,263 +6591,219.7,1403,267 +6592,219.73333333333332,1344,269 +6593,219.76666666666665,1287,269 +6594,219.79999999999998,1234,269 +6595,219.83333333333334,1188,269 +6596,219.86666666666667,1148,268 +6597,219.9,1115,267 +6598,219.93333333333334,1091,265 +6599,219.96666666666667,1076,265 +6600,220.0,1076,265 +6601,220.03333333333333,1076,265 +6602,220.06666666666666,1088,266 +6603,220.1,1110,269 +6604,220.13333333333333,1141,271 +6605,220.16666666666666,1179,274 +6606,220.2,1224,275 +6607,220.23333333333332,1276,275 +6608,220.26666666666665,1332,275 +6609,220.29999999999998,1390,275 +6610,220.33333333333334,1447,271 +6611,220.36666666666667,1507,265 +6612,220.4,1566,259 +6613,220.43333333333334,1620,252 +6614,220.46666666666667,1669,244 +6615,220.5,1712,236 +6616,220.53333333333333,1747,229 +6617,220.56666666666666,1774,223 +6618,220.6,1792,219 +6619,220.63333333333333,1792,218 +6620,220.66666666666666,1792,218 +6621,220.7,1788,218 +6622,220.73333333333332,1768,222 +6623,220.76666666666665,1738,227 +6624,220.79999999999998,1701,233 +6625,220.83333333333334,1656,240 +6626,220.86666666666667,1606,247 +6627,220.9,1550,254 +6628,220.93333333333334,1491,260 +6629,220.96666666666667,1431,265 +6630,221.0,1374,268 +6631,221.03333333333333,1316,269 +6632,221.06666666666666,1261,269 +6633,221.1,1211,269 +6634,221.13333333333333,1168,268 +6635,221.16666666666666,1132,267 +6636,221.2,1103,266 +6637,221.23333333333332,1084,265 +6638,221.26666666666665,1081,265 +6639,221.29999999999998,1081,265 +6640,221.33333333333334,1081,267 +6641,221.36666666666667,1099,268 +6642,221.4,1125,271 +6643,221.43333333333334,1160,273 +6644,221.46666666666667,1202,275 +6645,221.5,1250,276 +6646,221.53333333333333,1304,276 +6647,221.56666666666666,1361,276 +6648,221.6,1418,273 +6649,221.63333333333333,1477,268 +6650,221.66666666666666,1537,262 +6651,221.7,1593,255 +6652,221.73333333333332,1644,248 +6653,221.76666666666665,1690,240 +6654,221.79999999999998,1729,233 +6655,221.83333333333334,1761,226 +6656,221.86666666666667,1783,221 +6657,221.9,1794,218 +6658,221.93333333333334,1794,218 +6659,221.96666666666667,1794,218 +6660,222.0,1778,220 +6661,222.03333333333333,1753,224 +6662,222.06666666666666,1720,230 +6663,222.1,1679,237 +6664,222.13333333333333,1631,244 +6665,222.16666666666666,1578,251 +6666,222.2,1522,257 +6667,222.23333333333332,1461,263 +6668,222.26666666666665,1404,267 +6669,222.29999999999998,1345,270 +6670,222.33333333333334,1288,270 +6671,222.36666666666667,1236,270 +6672,222.4,1190,270 +6673,222.43333333333334,1150,269 +6674,222.46666666666667,1118,267 +6675,222.5,1094,266 +6676,222.53333333333333,1079,266 +6677,222.56666666666666,1079,266 +6678,222.6,1079,267 +6679,222.63333333333333,1090,268 +6680,222.66666666666666,1112,270 +6681,222.7,1143,273 +6682,222.73333333333332,1181,275 +6683,222.76666666666665,1226,276 +6684,222.79999999999998,1276,276 +6685,222.83333333333334,1333,276 +6686,222.86666666666667,1391,275 +6687,222.9,1447,271 +6688,222.93333333333334,1506,266 +6689,222.96666666666667,1565,259 +6690,223.0,1618,252 +6691,223.03333333333333,1667,244 +6692,223.06666666666666,1710,236 +6693,223.1,1745,230 +6694,223.13333333333333,1772,223 +6695,223.16666666666666,1790,219 +6696,223.2,1790,218 +6697,223.23333333333332,1790,218 +6698,223.26666666666665,1786,218 +6699,223.29999999999998,1766,222 +6700,223.33333333333334,1736,227 +6701,223.36666666666667,1699,233 +6702,223.4,1655,240 +6703,223.43333333333334,1605,248 +6704,223.46666666666667,1550,254 +6705,223.5,1491,261 +6706,223.53333333333333,1431,266 +6707,223.56666666666666,1375,269 +6708,223.6,1317,270 +6709,223.63333333333333,1262,270 +6710,223.66666666666666,1213,270 +6711,223.7,1170,270 +6712,223.73333333333332,1134,268 +6713,223.76666666666665,1106,267 +6714,223.79999999999998,1086,266 +6715,223.83333333333334,1083,266 +6716,223.86666666666667,1083,266 +6717,223.9,1083,267 +6718,223.93333333333334,1101,269 +6719,223.96666666666667,1127,271 +6720,224.0,1161,274 +6721,224.03333333333333,1203,276 +6722,224.06666666666666,1251,276 +6723,224.1,1304,276 +6724,224.13333333333333,1361,276 +6725,224.16666666666666,1418,274 +6726,224.2,1476,269 +6727,224.23333333333332,1536,263 +6728,224.26666666666665,1591,256 +6729,224.29999999999998,1642,248 +6730,224.33333333333334,1688,240 +6731,224.36666666666667,1727,233 +6732,224.4,1758,226 +6733,224.43333333333334,1781,221 +6734,224.46666666666667,1791,218 +6735,224.5,1791,218 +6736,224.53333333333333,1791,218 +6737,224.56666666666666,1776,220 +6738,224.6,1751,224 +6739,224.63333333333333,1718,230 +6740,224.66666666666666,1677,237 +6741,224.7,1630,244 +6742,224.73333333333332,1578,251 +6743,224.76666666666665,1521,257 +6744,224.79999999999998,1461,263 +6745,224.83333333333334,1404,268 +6746,224.86666666666667,1346,270 +6747,224.9,1289,270 +6748,224.93333333333334,1237,270 +6749,224.96666666666667,1191,270 +6750,225.0,1151,269 +6751,225.03333333333333,1119,268 +6752,225.06666666666666,1095,266 +6753,225.1,1080,266 +6754,225.13333333333333,1080,266 +6755,225.16666666666666,1080,267 +6756,225.2,1092,268 +6757,225.23333333333332,1114,271 +6758,225.26666666666665,1144,273 +6759,225.29999999999998,1182,275 +6760,225.33333333333334,1226,276 +6761,225.36666666666667,1277,276 +6762,225.4,1332,276 +6763,225.43333333333334,1390,275 +6764,225.46666666666667,1446,272 +6765,225.5,1505,266 +6766,225.53333333333333,1564,260 +6767,225.56666666666666,1617,252 +6768,225.6,1665,244 +6769,225.63333333333333,1708,237 +6770,225.66666666666666,1743,230 +6771,225.7,1770,224 +6772,225.73333333333332,1788,219 +6773,225.76666666666665,1788,218 +6774,225.79999999999998,1788,218 +6775,225.83333333333334,1784,218 +6776,225.86666666666667,1764,222 +6777,225.9,1735,227 +6778,225.93333333333334,1698,234 +6779,225.96666666666667,1654,241 +6780,226.0,1604,248 +6781,226.03333333333333,1550,254 +6782,226.06666666666666,1491,260 +6783,226.1,1431,266 +6784,226.13333333333333,1375,269 +6785,226.16666666666666,1318,270 +6786,226.2,1263,270 +6787,226.23333333333332,1214,270 +6788,226.26666666666665,1171,270 +6789,226.29999999999998,1135,269 +6790,226.33333333333334,1107,267 +6791,226.36666666666667,1088,267 +6792,226.4,1085,267 +6793,226.43333333333334,1085,267 +6794,226.46666666666667,1085,268 +6795,226.5,1102,270 +6796,226.53333333333333,1129,272 +6797,226.56666666666666,1162,274 +6798,226.6,1204,276 +6799,226.63333333333333,1252,277 +6800,226.66666666666666,1304,277 +6801,226.7,1361,277 +6802,226.73333333333332,1418,274 +6803,226.76666666666665,1476,269 +6804,226.79999999999998,1535,263 +6805,226.83333333333334,1590,256 +6806,226.86666666666667,1641,249 +6807,226.9,1687,241 +6808,226.93333333333334,1726,233 +6809,226.96666666666667,1757,227 +6810,227.0,1779,222 +6811,227.03333333333333,1790,218 +6812,227.06666666666666,1790,218 +6813,227.1,1790,218 +6814,227.13333333333333,1774,220 +6815,227.16666666666666,1750,225 +6816,227.2,1717,230 +6817,227.23333333333332,1677,237 +6818,227.26666666666665,1630,244 +6819,227.29999999999998,1577,251 +6820,227.33333333333334,1521,258 +6821,227.36666666666667,1460,264 +6822,227.4,1405,268 +6823,227.43333333333334,1347,270 +6824,227.46666666666667,1290,271 +6825,227.5,1239,271 +6826,227.53333333333333,1193,271 +6827,227.56666666666666,1153,270 +6828,227.6,1121,269 +6829,227.63333333333333,1098,268 +6830,227.66666666666666,1083,268 +6831,227.7,1083,268 +6832,227.73333333333332,1083,268 +6833,227.76666666666665,1094,269 +6834,227.79999999999998,1116,271 +6835,227.83333333333334,1146,274 +6836,227.86666666666667,1183,276 +6837,227.9,1227,277 +6838,227.93333333333334,1277,277 +6839,227.96666666666667,1333,277 +6840,228.0,1390,275 +6841,228.03333333333333,1446,272 +6842,228.06666666666666,1505,267 +6843,228.1,1562,259 +6844,228.13333333333333,1615,252 +6845,228.16666666666666,1664,245 +6846,228.2,1706,237 +6847,228.23333333333332,1741,230 +6848,228.26666666666665,1768,224 +6849,228.29999999999998,1785,220 +6850,228.33333333333334,1785,219 +6851,228.36666666666667,1785,219 +6852,228.4,1782,219 +6853,228.43333333333334,1762,222 +6854,228.46666666666667,1734,227 +6855,228.5,1697,234 +6856,228.53333333333333,1653,241 +6857,228.56666666666666,1603,248 +6858,228.6,1549,254 +6859,228.63333333333333,1490,260 +6860,228.66666666666666,1432,266 +6861,228.7,1376,269 +6862,228.73333333333332,1319,271 +6863,228.76666666666665,1264,271 +6864,228.79999999999998,1216,271 +6865,228.83333333333334,1173,271 +6866,228.86666666666667,1137,269 +6867,228.9,1110,268 +6868,228.93333333333334,1091,267 +6869,228.96666666666667,1088,267 +6870,229.0,1088,267 +6871,229.03333333333333,1088,268 +6872,229.06666666666666,1105,270 +6873,229.1,1130,273 +6874,229.13333333333333,1164,275 +6875,229.16666666666666,1205,276 +6876,229.2,1252,276 +6877,229.23333333333332,1305,276 +6878,229.26666666666665,1362,276 +6879,229.29999999999998,1418,275 +6880,229.33333333333334,1475,268 +6881,229.36666666666667,1534,263 +6882,229.4,1589,256 +6883,229.43333333333334,1639,249 +6884,229.46666666666667,1685,241 +6885,229.5,1723,234 +6886,229.53333333333333,1754,227 +6887,229.56666666666666,1777,222 +6888,229.6,1788,218 +6889,229.63333333333333,1788,218 +6890,229.66666666666666,1788,218 +6891,229.7,1772,220 +6892,229.73333333333332,1748,225 +6893,229.76666666666665,1715,231 +6894,229.79999999999998,1675,237 +6895,229.83333333333334,1628,244 +6896,229.86666666666667,1576,251 +6897,229.9,1520,258 +6898,229.93333333333334,1461,264 +6899,229.96666666666667,1406,267 +6900,230.0,1347,270 +6901,230.03333333333333,1291,271 +6902,230.06666666666666,1240,271 +6903,230.1,1194,271 +6904,230.13333333333333,1155,270 +6905,230.16666666666666,1124,269 +6906,230.2,1100,268 +6907,230.23333333333332,1085,268 +6908,230.26666666666665,1085,268 +6909,230.29999999999998,1085,269 +6910,230.33333333333334,1096,270 +6911,230.36666666666667,1117,272 +6912,230.4,1147,274 +6913,230.43333333333334,1185,276 +6914,230.46666666666667,1229,277 +6915,230.5,1278,277 +6916,230.53333333333333,1333,277 +6917,230.56666666666666,1391,275 +6918,230.6,1446,272 +6919,230.63333333333333,1504,266 +6920,230.66666666666666,1561,260 +6921,230.7,1614,253 +6922,230.73333333333332,1662,245 +6923,230.76666666666665,1704,237 +6924,230.79999999999998,1739,230 +6925,230.83333333333334,1765,224 +6926,230.86666666666667,1783,220 +6927,230.9,1783,219 +6928,230.93333333333334,1783,219 +6929,230.96666666666667,1780,219 +6930,231.0,1760,223 +6931,231.03333333333333,1731,228 +6932,231.06666666666666,1695,234 +6933,231.1,1652,241 +6934,231.13333333333333,1602,248 +6935,231.16666666666666,1548,255 +6936,231.2,1490,261 +6937,231.23333333333332,1431,266 +6938,231.26666666666665,1376,269 +6939,231.29999999999998,1320,271 +6940,231.33333333333334,1266,271 +6941,231.36666666666667,1217,271 +6942,231.4,1175,271 +6943,231.43333333333334,1139,270 +6944,231.46666666666667,1112,269 +6945,231.5,1093,269 +6946,231.53333333333333,1090,269 +6947,231.56666666666666,1090,269 +6948,231.6,1090,270 +6949,231.63333333333333,1107,271 +6950,231.66666666666666,1132,273 +6951,231.7,1166,275 +6952,231.73333333333332,1207,277 +6953,231.76666666666665,1254,277 +6954,231.79999999999998,1306,277 +6955,231.83333333333334,1362,277 +6956,231.86666666666667,1418,274 +6957,231.9,1474,269 +6958,231.93333333333334,1533,263 +6959,231.96666666666667,1588,256 +6960,232.0,1638,249 +6961,232.03333333333333,1683,241 +6962,232.06666666666666,1722,233 +6963,232.1,1752,227 +6964,232.13333333333333,1775,222 +6965,232.16666666666666,1785,218 +6966,232.2,1785,218 +6967,232.23333333333332,1785,218 +6968,232.26666666666665,1770,220 +6969,232.29999999999998,1746,225 +6970,232.33333333333334,1714,231 +6971,232.36666666666667,1673,237 +6972,232.4,1627,244 +6973,232.43333333333334,1575,251 +6974,232.46666666666667,1520,258 +6975,232.5,1460,263 +6976,232.53333333333333,1406,267 +6977,232.56666666666666,1348,270 +6978,232.6,1292,272 +6979,232.63333333333333,1241,272 +6980,232.66666666666666,1196,272 +6981,232.7,1157,271 +6982,232.73333333333332,1126,270 +6983,232.76666666666665,1103,269 +6984,232.79999999999998,1088,269 +6985,232.83333333333334,1088,269 +6986,232.86666666666667,1088,269 +6987,232.9,1099,271 +6988,232.93333333333334,1120,273 +6989,232.96666666666667,1149,275 +6990,233.0,1187,277 +6991,233.03333333333333,1231,277 +6992,233.06666666666666,1280,277 +6993,233.1,1334,277 +6994,233.13333333333333,1391,275 +6995,233.16666666666666,1446,272 +6996,233.2,1504,267 +6997,233.23333333333332,1561,260 +6998,233.26666666666665,1613,252 +6999,233.29999999999998,1661,245 +7000,233.33333333333334,1703,237 +7001,233.36666666666667,1737,230 +7002,233.4,1764,224 +7003,233.43333333333334,1781,220 +7004,233.46666666666667,1781,219 +7005,233.5,1781,219 +7006,233.53333333333333,1778,219 +7007,233.56666666666666,1758,222 +7008,233.6,1730,228 +7009,233.63333333333333,1693,234 +7010,233.66666666666666,1650,241 +7011,233.7,1601,248 +7012,233.73333333333332,1548,254 +7013,233.76666666666665,1490,260 +7014,233.79999999999998,1431,266 +7015,233.83333333333334,1376,269 +7016,233.86666666666667,1320,271 +7017,233.9,1267,272 +7018,233.93333333333334,1219,272 +7019,233.96666666666667,1176,272 +7020,234.0,1141,271 +7021,234.03333333333333,1114,270 +7022,234.06666666666666,1095,269 +7023,234.1,1092,269 +7024,234.13333333333333,1092,269 +7025,234.16666666666666,1092,270 +7026,234.2,1109,272 +7027,234.23333333333332,1135,274 +7028,234.26666666666665,1168,276 +7029,234.29999999999998,1209,277 +7030,234.33333333333334,1255,277 +7031,234.36666666666667,1307,277 +7032,234.4,1363,276 +7033,234.43333333333334,1419,274 +7034,234.46666666666667,1475,269 +7035,234.5,1533,263 +7036,234.53333333333333,1587,256 +7037,234.56666666666666,1637,248 +7038,234.6,1682,240 +7039,234.63333333333333,1720,233 +7040,234.66666666666666,1750,227 +7041,234.7,1772,222 +7042,234.73333333333332,1783,218 +7043,234.76666666666665,1783,218 +7044,234.79999999999998,1783,218 +7045,234.83333333333334,1768,220 +7046,234.86666666666667,1744,225 +7047,234.9,1711,230 +7048,234.93333333333334,1671,237 +7049,234.96666666666667,1625,244 +7050,235.0,1574,251 +7051,235.03333333333333,1518,258 +7052,235.06666666666666,1460,263 +7053,235.1,1406,267 +7054,235.13333333333333,1348,270 +7055,235.16666666666666,1293,272 +7056,235.2,1242,272 +7057,235.23333333333332,1197,272 +7058,235.26666666666665,1159,271 +7059,235.29999999999998,1128,270 +7060,235.33333333333334,1104,269 +7061,235.36666666666667,1090,269 +7062,235.4,1090,269 +7063,235.43333333333334,1090,270 +7064,235.46666666666667,1101,271 +7065,235.5,1122,273 +7066,235.53333333333333,1151,275 +7067,235.56666666666666,1188,277 +7068,235.6,1232,278 +7069,235.63333333333333,1281,278 +7070,235.66666666666666,1335,278 +7071,235.7,1392,275 +7072,235.73333333333332,1446,272 +7073,235.76666666666665,1503,266 +7074,235.79999999999998,1560,259 +7075,235.83333333333334,1612,252 +7076,235.86666666666667,1660,245 +7077,235.9,1701,237 +7078,235.93333333333334,1735,230 +7079,235.96666666666667,1762,224 +7080,236.0,1779,220 +7081,236.03333333333333,1779,219 +7082,236.06666666666666,1779,219 +7083,236.1,1776,219 +7084,236.13333333333333,1756,222 +7085,236.16666666666666,1728,228 +7086,236.2,1691,234 +7087,236.23333333333332,1648,241 +7088,236.26666666666665,1599,248 +7089,236.29999999999998,1546,254 +7090,236.33333333333334,1489,261 +7091,236.36666666666667,1431,266 +7092,236.4,1376,269 +7093,236.43333333333334,1321,272 +7094,236.46666666666667,1267,272 +7095,236.5,1219,272 +7096,236.53333333333333,1178,272 +7097,236.56666666666666,1143,271 +7098,236.6,1116,270 +7099,236.63333333333333,1097,270 +7100,236.66666666666666,1095,270 +7101,236.7,1095,270 +7102,236.73333333333332,1095,271 +7103,236.76666666666665,1111,273 +7104,236.79999999999998,1137,274 +7105,236.83333333333334,1170,276 +7106,236.86666666666667,1210,278 +7107,236.9,1257,278 +7108,236.93333333333334,1308,278 +7109,236.96666666666667,1364,277 +7110,237.0,1419,275 +7111,237.03333333333333,1475,268 +7112,237.06666666666666,1533,263 +7113,237.1,1587,256 +7114,237.13333333333333,1636,248 +7115,237.16666666666666,1681,241 +7116,237.2,1719,233 +7117,237.23333333333332,1749,226 +7118,237.26666666666665,1771,221 +7119,237.29999999999998,1781,218 +7120,237.33333333333334,1781,218 +7121,237.36666666666667,1781,218 +7122,237.4,1766,220 +7123,237.43333333333334,1742,225 +7124,237.46666666666667,1710,230 +7125,237.5,1670,237 +7126,237.53333333333333,1624,244 +7127,237.56666666666666,1573,251 +7128,237.6,1518,258 +7129,237.63333333333333,1460,263 +7130,237.66666666666666,1406,267 +7131,237.7,1348,271 +7132,237.73333333333332,1293,272 +7133,237.76666666666665,1243,272 +7134,237.79999999999998,1199,272 +7135,237.83333333333334,1160,272 +7136,237.86666666666667,1129,271 +7137,237.9,1106,270 +7138,237.93333333333334,1092,270 +7139,237.96666666666667,1092,270 +7140,238.0,1092,271 +7141,238.03333333333333,1103,272 +7142,238.06666666666666,1124,274 +7143,238.1,1153,275 +7144,238.13333333333333,1190,277 +7145,238.16666666666666,1233,278 +7146,238.2,1282,278 +7147,238.23333333333332,1336,278 +7148,238.26666666666665,1393,275 +7149,238.29999999999998,1447,272 +7150,238.33333333333334,1503,266 +7151,238.36666666666667,1559,260 +7152,238.4,1612,252 +7153,238.43333333333334,1659,244 +7154,238.46666666666667,1700,236 +7155,238.5,1734,230 +7156,238.53333333333333,1760,224 +7157,238.56666666666666,1777,220 +7158,238.6,1777,218 +7159,238.63333333333333,1777,218 +7160,238.66666666666666,1774,218 +7161,238.7,1754,222 +7162,238.73333333333332,1726,227 +7163,238.76666666666665,1690,233 +7164,238.79999999999998,1647,240 +7165,238.83333333333334,1599,247 +7166,238.86666666666667,1546,254 +7167,238.9,1489,261 +7168,238.93333333333334,1431,266 +7169,238.96666666666667,1377,269 +7170,239.0,1321,271 +7171,239.03333333333333,1268,272 +7172,239.06666666666666,1221,272 +7173,239.1,1179,272 +7174,239.13333333333333,1144,272 +7175,239.16666666666666,1118,271 +7176,239.2,1099,270 +7177,239.23333333333332,1096,270 +7178,239.26666666666665,1096,270 +7179,239.29999999999998,1096,271 +7180,239.33333333333334,1113,273 +7181,239.36666666666667,1139,275 +7182,239.4,1171,277 +7183,239.43333333333334,1211,278 +7184,239.46666666666667,1257,278 +7185,239.5,1309,278 +7186,239.53333333333333,1364,277 +7187,239.56666666666666,1419,274 +7188,239.6,1475,268 +7189,239.63333333333333,1532,262 +7190,239.66666666666666,1586,256 +7191,239.7,1635,248 +7192,239.73333333333332,1679,240 +7193,239.76666666666665,1717,233 +7194,239.79999999999998,1747,226 +7195,239.83333333333334,1768,221 +7196,239.86666666666667,1779,218 +7197,239.9,1779,218 +7198,239.93333333333334,1779,218 +7199,239.96666666666667,1764,220 +7200,240.0,1740,224 +7201,240.03333333333333,1708,230 +7202,240.06666666666666,1668,236 +7203,240.1,1623,244 +7204,240.13333333333333,1572,250 +7205,240.16666666666666,1517,257 +7206,240.2,1459,263 +7207,240.23333333333332,1406,267 +7208,240.26666666666665,1349,270 +7209,240.29999999999998,1294,272 +7210,240.33333333333334,1244,272 +7211,240.36666666666667,1200,272 +7212,240.4,1162,272 +7213,240.43333333333334,1131,271 +7214,240.46666666666667,1108,270 +7215,240.5,1094,270 +7216,240.53333333333333,1094,270 +7217,240.56666666666666,1094,271 +7218,240.6,1105,272 +7219,240.63333333333333,1126,274 +7220,240.66666666666666,1155,276 +7221,240.7,1192,277 +7222,240.73333333333332,1235,278 +7223,240.76666666666665,1283,278 +7224,240.79999999999998,1337,278 +7225,240.83333333333334,1393,275 +7226,240.86666666666667,1446,272 +7227,240.9,1503,266 +7228,240.93333333333334,1559,259 +7229,240.96666666666667,1610,252 +7230,241.0,1657,244 +7231,241.03333333333333,1698,237 +7232,241.06666666666666,1732,230 +7233,241.1,1758,224 +7234,241.13333333333333,1775,219 +7235,241.16666666666666,1775,218 +7236,241.2,1775,218 +7237,241.23333333333332,1771,218 +7238,241.26666666666665,1752,222 +7239,241.29999999999998,1724,227 +7240,241.33333333333334,1688,233 +7241,241.36666666666667,1645,240 +7242,241.4,1597,248 +7243,241.43333333333334,1545,255 +7244,241.46666666666667,1488,260 +7245,241.5,1430,266 +7246,241.53333333333333,1377,269 +7247,241.56666666666666,1322,272 +7248,241.6,1269,273 +7249,241.63333333333333,1222,273 +7250,241.66666666666666,1180,273 +7251,241.7,1146,272 +7252,241.73333333333332,1119,271 +7253,241.76666666666665,1101,271 +7254,241.79999999999998,1098,271 +7255,241.83333333333334,1098,271 +7256,241.86666666666667,1098,272 +7257,241.9,1115,273 +7258,241.93333333333334,1140,275 +7259,241.96666666666667,1173,277 +7260,242.0,1213,278 +7261,242.03333333333333,1259,278 +7262,242.06666666666666,1310,278 +7263,242.1,1365,277 +7264,242.13333333333333,1419,274 +7265,242.16666666666666,1474,269 +7266,242.2,1532,263 +7267,242.23333333333332,1585,256 +7268,242.26666666666665,1634,248 +7269,242.29999999999998,1678,240 +7270,242.33333333333334,1716,233 +7271,242.36666666666667,1745,226 +7272,242.4,1767,221 +7273,242.43333333333334,1777,218 +7274,242.46666666666667,1777,218 +7275,242.5,1777,218 +7276,242.53333333333333,1762,220 +7277,242.56666666666666,1738,224 +7278,242.6,1706,230 +7279,242.63333333333333,1667,237 +7280,242.66666666666666,1621,244 +7281,242.7,1571,250 +7282,242.73333333333332,1516,257 +7283,242.76666666666665,1459,263 +7284,242.79999999999998,1406,268 +7285,242.83333333333334,1349,271 +7286,242.86666666666667,1295,272 +7287,242.9,1245,273 +7288,242.93333333333334,1201,273 +7289,242.96666666666667,1163,273 +7290,243.0,1133,272 +7291,243.03333333333333,1110,271 +7292,243.06666666666666,1096,271 +7293,243.1,1096,271 +7294,243.13333333333333,1096,272 +7295,243.16666666666666,1107,273 +7296,243.2,1128,275 +7297,243.23333333333332,1157,277 +7298,243.26666666666665,1193,278 +7299,243.29999999999998,1236,278 +7300,243.33333333333334,1285,278 +7301,243.36666666666667,1338,278 +7302,243.4,1393,275 +7303,243.43333333333334,1446,272 +7304,243.46666666666667,1503,266 +7305,243.5,1559,259 +7306,243.53333333333333,1610,252 +7307,243.56666666666666,1656,244 +7308,243.6,1697,236 +7309,243.63333333333333,1731,230 +7310,243.66666666666666,1757,223 +7311,243.7,1774,219 +7312,243.73333333333332,1774,218 +7313,243.76666666666665,1774,218 +7314,243.79999999999998,1770,218 +7315,243.83333333333334,1750,222 +7316,243.86666666666667,1722,227 +7317,243.9,1687,233 +7318,243.93333333333334,1644,240 +7319,243.96666666666667,1596,247 +7320,244.0,1544,254 +7321,244.03333333333333,1487,260 +7322,244.06666666666666,1431,266 +7323,244.1,1377,269 +7324,244.13333333333333,1323,271 +7325,244.16666666666666,1270,273 +7326,244.2,1223,273 +7327,244.23333333333332,1182,273 +7328,244.26666666666665,1148,273 +7329,244.29999999999998,1121,272 +7330,244.33333333333334,1103,271 +7331,244.36666666666667,1100,271 +7332,244.4,1100,271 +7333,244.43333333333334,1100,273 +7334,244.46666666666667,1117,274 +7335,244.5,1142,276 +7336,244.53333333333333,1175,278 +7337,244.56666666666666,1214,279 +7338,244.6,1260,279 +7339,244.63333333333333,1311,279 +7340,244.66666666666666,1365,276 +7341,244.7,1419,274 +7342,244.73333333333332,1474,269 +7343,244.76666666666665,1531,263 +7344,244.79999999999998,1584,255 +7345,244.83333333333334,1633,248 +7346,244.86666666666667,1676,240 +7347,244.9,1714,233 +7348,244.93333333333334,1744,226 +7349,244.96666666666667,1765,221 +7350,245.0,1775,218 +7351,245.03333333333333,1775,218 +7352,245.06666666666666,1775,218 +7353,245.1,1760,220 +7354,245.13333333333333,1736,224 +7355,245.16666666666666,1704,230 +7356,245.2,1665,237 +7357,245.23333333333332,1620,244 +7358,245.26666666666665,1570,251 +7359,245.29999999999998,1515,258 +7360,245.33333333333334,1459,264 +7361,245.36666666666667,1405,268 +7362,245.4,1348,271 +7363,245.43333333333334,1295,273 +7364,245.46666666666667,1246,273 +7365,245.5,1202,273 +7366,245.53333333333333,1164,273 +7367,245.56666666666666,1134,273 +7368,245.6,1112,272 +7369,245.63333333333333,1098,272 +7370,245.66666666666666,1098,272 +7371,245.7,1098,272 +7372,245.73333333333332,1109,274 +7373,245.76666666666665,1129,275 +7374,245.79999999999998,1158,277 +7375,245.83333333333334,1195,279 +7376,245.86666666666667,1237,279 +7377,245.9,1285,279 +7378,245.93333333333334,1338,278 +7379,245.96666666666667,1393,275 +7380,246.0,1447,272 +7381,246.03333333333333,1502,266 +7382,246.06666666666666,1558,259 +7383,246.1,1609,252 +7384,246.13333333333333,1655,244 +7385,246.16666666666666,1695,237 +7386,246.2,1729,230 +7387,246.23333333333332,1755,224 +7388,246.26666666666665,1772,219 +7389,246.29999999999998,1772,218 +7390,246.33333333333334,1772,218 +7391,246.36666666666667,1768,218 +7392,246.4,1749,222 +7393,246.43333333333334,1721,227 +7394,246.46666666666667,1685,234 +7395,246.5,1643,241 +7396,246.53333333333333,1595,248 +7397,246.56666666666666,1543,254 +7398,246.6,1487,260 +7399,246.63333333333333,1430,266 +7400,246.66666666666666,1377,269 +7401,246.7,1323,272 +7402,246.73333333333332,1271,274 +7403,246.76666666666665,1224,274 +7404,246.79999999999998,1183,274 +7405,246.83333333333334,1149,273 +7406,246.86666666666667,1123,272 +7407,246.9,1105,272 +7408,246.93333333333334,1103,272 +7409,246.96666666666667,1103,272 +7410,247.0,1103,273 +7411,247.03333333333333,1119,275 +7412,247.06666666666666,1144,276 +7413,247.1,1176,278 +7414,247.13333333333333,1216,279 +7415,247.16666666666666,1261,279 +7416,247.2,1312,279 +7417,247.23333333333332,1366,277 +7418,247.26666666666665,1420,274 +7419,247.29999999999998,1475,268 +7420,247.33333333333334,1531,262 +7421,247.36666666666667,1584,255 +7422,247.4,1632,248 +7423,247.43333333333334,1675,240 +7424,247.46666666666667,1712,232 +7425,247.5,1742,226 +7426,247.53333333333333,1763,221 +7427,247.56666666666666,1773,218 +7428,247.6,1773,218 +7429,247.63333333333333,1773,218 +7430,247.66666666666666,1758,220 +7431,247.7,1734,224 +7432,247.73333333333332,1703,230 +7433,247.76666666666665,1664,237 +7434,247.79999999999998,1619,244 +7435,247.83333333333334,1569,251 +7436,247.86666666666667,1514,257 +7437,247.9,1458,264 +7438,247.93333333333334,1405,268 +7439,247.96666666666667,1349,271 +7440,248.0,1296,273 +7441,248.03333333333333,1247,274 +7442,248.06666666666666,1203,274 +7443,248.1,1166,274 +7444,248.13333333333333,1136,273 +7445,248.16666666666666,1114,273 +7446,248.2,1100,273 +7447,248.23333333333332,1100,273 +7448,248.26666666666665,1100,273 +7449,248.29999999999998,1111,274 +7450,248.33333333333334,1132,276 +7451,248.36666666666667,1160,277 +7452,248.4,1196,279 +7453,248.43333333333334,1238,279 +7454,248.46666666666667,1286,279 +7455,248.5,1339,278 +7456,248.53333333333333,1394,275 +7457,248.56666666666666,1447,272 +7458,248.6,1502,266 +7459,248.63333333333333,1557,259 +7460,248.66666666666666,1608,252 +7461,248.7,1654,244 +7462,248.73333333333332,1694,236 +7463,248.76666666666665,1727,229 +7464,248.79999999999998,1753,223 +7465,248.83333333333334,1770,219 +7466,248.86666666666667,1770,218 +7467,248.9,1770,218 +7468,248.93333333333334,1766,218 +7469,248.96666666666667,1747,222 +7470,249.0,1719,227 +7471,249.03333333333333,1684,233 +7472,249.06666666666666,1641,240 +7473,249.1,1594,248 +7474,249.13333333333333,1542,254 +7475,249.16666666666666,1486,260 +7476,249.2,1430,265 +7477,249.23333333333332,1377,269 +7478,249.26666666666665,1324,272 +7479,249.29999999999998,1271,273 +7480,249.33333333333334,1225,274 +7481,249.36666666666667,1185,274 +7482,249.4,1151,274 +7483,249.43333333333334,1125,273 +7484,249.46666666666667,1107,273 +7485,249.5,1105,273 +7486,249.53333333333333,1105,273 +7487,249.56666666666666,1105,274 +7488,249.6,1121,276 +7489,249.63333333333333,1146,277 +7490,249.66666666666666,1178,279 +7491,249.7,1217,279 +7492,249.73333333333332,1262,279 +7493,249.76666666666665,1313,279 +7494,249.79999999999998,1366,277 +7495,249.83333333333334,1420,274 +7496,249.86666666666667,1474,268 +7497,249.9,1531,263 +7498,249.93333333333334,1583,255 +7499,249.96666666666667,1631,248 +7500,250.0,1674,240 +7501,250.03333333333333,1711,232 +7502,250.06666666666666,1740,226 +7503,250.1,1762,221 +7504,250.13333333333333,1771,218 +7505,250.16666666666666,1771,218 +7506,250.2,1771,218 +7507,250.23333333333332,1756,220 +7508,250.26666666666665,1732,224 +7509,250.29999999999998,1701,230 +7510,250.33333333333334,1662,236 +7511,250.36666666666667,1617,244 +7512,250.4,1568,251 +7513,250.43333333333334,1513,257 +7514,250.46666666666667,1458,263 +7515,250.5,1405,268 +7516,250.53333333333333,1350,270 +7517,250.56666666666666,1297,273 +7518,250.6,1248,274 +7519,250.63333333333333,1204,274 +7520,250.66666666666666,1168,274 +7521,250.7,1137,273 +7522,250.73333333333332,1115,273 +7523,250.76666666666665,1102,273 +7524,250.79999999999998,1102,273 +7525,250.83333333333334,1102,273 +7526,250.86666666666667,1113,275 +7527,250.9,1133,276 +7528,250.93333333333334,1162,278 +7529,250.96666666666667,1198,279 +7530,251.0,1240,279 +7531,251.03333333333333,1288,279 +7532,251.06666666666666,1340,277 +7533,251.1,1395,275 +7534,251.13333333333333,1447,271 +7535,251.16666666666666,1502,266 +7536,251.2,1557,259 +7537,251.23333333333332,1607,251 +7538,251.26666666666665,1653,243 +7539,251.29999999999998,1693,236 +7540,251.33333333333334,1726,229 +7541,251.36666666666667,1751,223 +7542,251.4,1768,219 +7543,251.43333333333334,1768,218 +7544,251.46666666666667,1768,218 +7545,251.5,1764,218 +7546,251.53333333333333,1745,222 +7547,251.56666666666666,1717,227 +7548,251.6,1682,233 +7549,251.63333333333333,1640,240 +7550,251.66666666666666,1593,247 +7551,251.7,1541,254 +7552,251.73333333333332,1485,260 +7553,251.76666666666665,1430,265 +7554,251.79999999999998,1377,270 +7555,251.83333333333334,1324,272 +7556,251.86666666666667,1272,274 +7557,251.9,1226,274 +7558,251.93333333333334,1186,274 +7559,251.96666666666667,1152,274 +7560,252.0,1126,273 +7561,252.03333333333333,1108,273 +7562,252.06666666666666,1107,273 +7563,252.1,1107,273 +7564,252.13333333333333,1107,274 +7565,252.16666666666666,1123,276 +7566,252.2,1148,277 +7567,252.23333333333332,1180,279 +7568,252.26666666666665,1219,279 +7569,252.29999999999998,1263,279 +7570,252.33333333333334,1314,279 +7571,252.36666666666667,1367,277 +7572,252.4,1421,274 +7573,252.43333333333334,1474,268 +7574,252.46666666666667,1530,262 +7575,252.5,1582,255 +7576,252.53333333333333,1630,247 +7577,252.56666666666666,1673,239 +7578,252.6,1710,232 +7579,252.63333333333333,1739,225 +7580,252.66666666666666,1760,220 +7581,252.7,1769,217 +7582,252.73333333333332,1769,217 +7583,252.76666666666665,1769,217 +7584,252.79999999999998,1754,219 +7585,252.83333333333334,1731,224 +7586,252.86666666666667,1700,230 +7587,252.9,1661,236 +7588,252.93333333333334,1616,243 +7589,252.96666666666667,1567,251 +7590,253.0,1513,257 +7591,253.03333333333333,1457,263 +7592,253.06666666666666,1405,268 +7593,253.1,1350,271 +7594,253.13333333333333,1297,273 +7595,253.16666666666666,1249,274 +7596,253.2,1205,274 +7597,253.23333333333332,1169,274 +7598,253.26666666666665,1139,274 +7599,253.29999999999998,1117,273 +7600,253.33333333333334,1104,273 +7601,253.36666666666667,1104,273 +7602,253.4,1104,274 +7603,253.43333333333334,1115,275 +7604,253.46666666666667,1135,277 +7605,253.5,1164,278 +7606,253.53333333333333,1199,279 +7607,253.56666666666666,1241,279 +7608,253.6,1289,279 +7609,253.63333333333333,1341,278 +7610,253.66666666666666,1395,275 +7611,253.7,1447,271 +7612,253.73333333333332,1502,265 +7613,253.76666666666665,1556,259 +7614,253.79999999999998,1606,251 +7615,253.83333333333334,1652,243 +7616,253.86666666666667,1691,235 +7617,253.9,1725,229 +7618,253.93333333333334,1750,223 +7619,253.96666666666667,1766,219 +7620,254.0,1766,218 +7621,254.03333333333333,1766,218 +7622,254.06666666666666,1762,218 +7623,254.1,1742,221 +7624,254.13333333333333,1715,227 +7625,254.16666666666666,1680,233 +7626,254.2,1638,240 +7627,254.23333333333332,1591,247 +7628,254.26666666666665,1539,254 +7629,254.29999999999998,1484,261 +7630,254.33333333333334,1429,267 +7631,254.36666666666667,1376,270 +7632,254.4,1324,272 +7633,254.43333333333334,1272,274 +7634,254.46666666666667,1227,274 +7635,254.5,1187,274 +7636,254.53333333333333,1154,274 +7637,254.56666666666666,1128,274 +7638,254.6,1110,274 +7639,254.63333333333333,1109,274 +7640,254.66666666666666,1109,274 +7641,254.7,1109,275 +7642,254.73333333333332,1125,276 +7643,254.76666666666665,1150,278 +7644,254.79999999999998,1181,279 +7645,254.83333333333334,1220,279 +7646,254.86666666666667,1265,279 +7647,254.9,1315,279 +7648,254.93333333333334,1368,277 +7649,254.96666666666667,1420,275 +7650,255.0,1474,268 +7651,255.03333333333333,1530,262 +7652,255.06666666666666,1582,255 +7653,255.1,1629,247 +7654,255.13333333333333,1672,240 +7655,255.16666666666666,1708,232 +7656,255.2,1737,226 +7657,255.23333333333332,1758,221 +7658,255.26666666666665,1767,218 +7659,255.29999999999998,1767,218 +7660,255.33333333333334,1767,218 +7661,255.36666666666667,1752,220 +7662,255.4,1728,224 +7663,255.43333333333334,1697,230 +7664,255.46666666666667,1659,237 +7665,255.5,1614,244 +7666,255.53333333333333,1565,251 +7667,255.56666666666666,1511,258 +7668,255.6,1456,264 +7669,255.63333333333333,1405,268 +7670,255.66666666666666,1350,272 +7671,255.7,1297,273 +7672,255.73333333333332,1249,275 +7673,255.76666666666665,1206,275 +7674,255.79999999999998,1170,275 +7675,255.83333333333334,1141,274 +7676,255.86666666666667,1119,274 +7677,255.9,1106,274 +7678,255.93333333333334,1106,274 +7679,255.96666666666667,1106,274 +7680,256.0,1117,276 +7681,256.0333333333333,1137,277 +7682,256.06666666666666,1166,279 +7683,256.1,1201,279 +7684,256.1333333333333,1243,279 +7685,256.1666666666667,1290,279 +7686,256.2,1342,278 +7687,256.23333333333335,1396,275 +7688,256.26666666666665,1448,272 +7689,256.3,1502,265 +7690,256.3333333333333,1557,258 +7691,256.3666666666667,1606,251 +7692,256.4,1651,243 +7693,256.43333333333334,1691,235 +7694,256.46666666666664,1723,229 +7695,256.5,1748,223 +7696,256.5333333333333,1765,219 +7697,256.56666666666666,1765,218 +7698,256.6,1765,218 +7699,256.6333333333333,1760,218 +7700,256.6666666666667,1741,222 +7701,256.7,1713,227 +7702,256.73333333333335,1678,233 +7703,256.76666666666665,1637,240 +7704,256.8,1590,247 +7705,256.8333333333333,1539,254 +7706,256.8666666666667,1484,261 +7707,256.9,1429,267 +7708,256.93333333333334,1376,270 +7709,256.96666666666664,1324,272 +7710,257.0,1273,274 +7711,257.0333333333333,1228,274 +7712,257.06666666666666,1188,274 +7713,257.1,1155,274 +7714,257.1333333333333,1130,274 +7715,257.1666666666667,1112,274 +7716,257.2,1111,274 +7717,257.23333333333335,1111,274 +7718,257.26666666666665,1111,275 +7719,257.3,1127,276 +7720,257.3333333333333,1152,278 +7721,257.3666666666667,1184,279 +7722,257.4,1222,279 +7723,257.43333333333334,1267,279 +7724,257.46666666666664,1317,279 +7725,257.5,1369,277 +7726,257.5333333333333,1421,274 +7727,257.56666666666666,1475,268 +7728,257.6,1530,262 +7729,257.6333333333333,1582,255 +7730,257.6666666666667,1629,247 +7731,257.7,1671,239 +7732,257.73333333333335,1707,232 +7733,257.76666666666665,1736,226 +7734,257.8,1757,220 +7735,257.8333333333333,1765,217 +7736,257.8666666666667,1765,217 +7737,257.9,1765,217 +7738,257.93333333333334,1750,220 +7739,257.96666666666664,1727,224 +7740,258.0,1696,230 +7741,258.0333333333333,1657,236 +7742,258.06666666666666,1613,244 +7743,258.1,1564,251 +7744,258.1333333333333,1510,258 +7745,258.1666666666667,1455,264 +7746,258.2,1404,267 +7747,258.23333333333335,1349,272 +7748,258.26666666666665,1297,273 +7749,258.3,1250,275 +7750,258.3333333333333,1207,275 +7751,258.3666666666667,1171,275 +7752,258.4,1142,274 +7753,258.43333333333334,1121,274 +7754,258.46666666666664,1107,274 +7755,258.5,1107,274 +7756,258.5333333333333,1107,275 +7757,258.56666666666666,1119,276 +7758,258.6,1139,277 +7759,258.6333333333333,1167,279 +7760,258.6666666666667,1203,280 +7761,258.7,1244,280 +7762,258.73333333333335,1291,280 +7763,258.76666666666665,1343,278 +7764,258.8,1397,275 +7765,258.8333333333333,1448,272 +7766,258.8666666666667,1502,265 +7767,258.9,1556,258 +7768,258.93333333333334,1605,251 +7769,258.96666666666664,1650,243 +7770,259.0,1689,235 +7771,259.0333333333333,1722,228 +7772,259.06666666666666,1746,223 +7773,259.1,1763,219 +7774,259.1333333333333,1763,218 +7775,259.1666666666667,1763,218 +7776,259.2,1758,218 +7777,259.23333333333335,1739,221 +7778,259.26666666666665,1711,226 +7779,259.3,1676,233 +7780,259.3333333333333,1635,240 +7781,259.3666666666667,1588,247 +7782,259.4,1537,254 +7783,259.43333333333334,1482,260 +7784,259.46666666666664,1428,266 +7785,259.5,1376,270 +7786,259.5333333333333,1324,273 +7787,259.56666666666666,1273,274 +7788,259.6,1228,275 +7789,259.6333333333333,1189,275 +7790,259.6666666666667,1156,275 +7791,259.7,1131,274 +7792,259.73333333333335,1114,274 +7793,259.76666666666665,1113,274 +7794,259.8,1113,275 +7795,259.8333333333333,1113,276 +7796,259.8666666666667,1129,277 +7797,259.9,1154,278 +7798,259.93333333333334,1186,279 +7799,259.96666666666664,1224,279 +7800,260.0,1268,279 +7801,260.0333333333333,1318,279 +7802,260.06666666666666,1370,277 +7803,260.1,1422,274 +7804,260.1333333333333,1475,268 +7805,260.1666666666667,1530,261 +7806,260.2,1581,254 +7807,260.23333333333335,1628,246 +7808,260.26666666666665,1670,239 +7809,260.3,1706,231 +7810,260.3333333333333,1734,225 +7811,260.3666666666667,1755,220 +7812,260.4,1763,217 +7813,260.43333333333334,1763,217 +7814,260.46666666666664,1763,217 +7815,260.5,1748,220 +7816,260.5333333333333,1725,224 +7817,260.56666666666666,1693,230 +7818,260.6,1655,236 +7819,260.6333333333333,1611,243 +7820,260.6666666666667,1562,251 +7821,260.7,1509,258 +7822,260.73333333333335,1455,264 +7823,260.76666666666665,1403,269 +7824,260.8,1349,272 +7825,260.8333333333333,1298,274 +7826,260.8666666666667,1250,275 +7827,260.9,1208,275 +7828,260.93333333333334,1172,275 +7829,260.96666666666664,1143,275 +7830,261.0,1122,275 +7831,261.0333333333333,1109,275 +7832,261.06666666666666,1109,275 +7833,261.1,1109,275 +7834,261.1333333333333,1121,276 +7835,261.1666666666667,1142,278 +7836,261.2,1170,279 +7837,261.23333333333335,1205,279 +7838,261.26666666666665,1246,279 +7839,261.3,1292,279 +7840,261.3333333333333,1344,278 +7841,261.3666666666667,1397,275 +7842,261.4,1448,271 +7843,261.43333333333334,1502,265 +7844,261.46666666666664,1556,257 +7845,261.5,1605,250 +7846,261.5333333333333,1650,242 +7847,261.56666666666666,1688,235 +7848,261.6,1721,228 +7849,261.6333333333333,1745,223 +7850,261.6666666666667,1761,219 +7851,261.7,1761,218 +7852,261.73333333333335,1761,218 +7853,261.76666666666665,1756,218 +7854,261.8,1736,222 +7855,261.8333333333333,1709,227 +7856,261.8666666666667,1674,233 +7857,261.9,1633,240 +7858,261.93333333333334,1587,247 +7859,261.96666666666664,1536,254 +7860,262.0,1481,261 +7861,262.0333333333333,1427,267 +7862,262.06666666666666,1376,270 +7863,262.1,1323,273 +7864,262.1333333333333,1273,275 +7865,262.1666666666667,1229,276 +7866,262.2,1190,276 +7867,262.23333333333335,1158,276 +7868,262.26666666666665,1133,275 +7869,262.3,1116,275 +7870,262.3333333333333,1115,275 +7871,262.3666666666667,1115,275 +7872,262.4,1115,276 +7873,262.43333333333334,1132,277 +7874,262.46666666666664,1156,278 +7875,262.5,1188,279 +7876,262.5333333333333,1226,279 +7877,262.56666666666666,1270,279 +7878,262.6,1319,279 +7879,262.6333333333333,1371,277 +7880,262.6666666666667,1423,274 +7881,262.7,1476,267 +7882,262.73333333333335,1530,261 +7883,262.76666666666665,1581,254 +7884,262.8,1628,246 +7885,262.8333333333333,1670,239 +7886,262.8666666666667,1705,231 +7887,262.9,1733,225 +7888,262.93333333333334,1753,220 +7889,262.96666666666664,1761,217 +7890,263.0,1761,217 +7891,263.0333333333333,1761,217 +7892,263.06666666666666,1746,220 +7893,263.1,1723,224 +7894,263.1333333333333,1691,230 +7895,263.1666666666667,1653,237 +7896,263.2,1609,244 +7897,263.23333333333335,1561,251 +7898,263.26666666666665,1508,258 +7899,263.3,1454,264 +7900,263.3333333333333,1403,269 +7901,263.3666666666667,1349,272 +7902,263.4,1298,274 +7903,263.43333333333334,1251,275 +7904,263.46666666666664,1209,275 +7905,263.5,1174,275 +7906,263.5333333333333,1145,275 +7907,263.56666666666666,1124,275 +7908,263.6,1111,275 +7909,263.6333333333333,1111,275 +7910,263.6666666666667,1111,276 +7911,263.7,1123,277 +7912,263.73333333333335,1144,278 +7913,263.76666666666665,1172,279 +7914,263.8,1207,280 +7915,263.8333333333333,1248,280 +7916,263.8666666666667,1294,280 +7917,263.9,1346,278 +7918,263.93333333333334,1399,275 +7919,263.96666666666664,1449,271 +7920,264.0,1503,264 +7921,264.0333333333333,1556,257 +7922,264.06666666666666,1605,250 +7923,264.1,1649,242 +7924,264.1333333333333,1687,235 +7925,264.1666666666667,1719,228 +7926,264.2,1743,222 +7927,264.23333333333335,1759,218 +7928,264.26666666666665,1759,218 +7929,264.3,1759,218 +7930,264.3333333333333,1753,218 +7931,264.3666666666667,1734,221 +7932,264.4,1707,227 +7933,264.43333333333334,1672,233 +7934,264.46666666666664,1631,240 +7935,264.5,1585,248 +7936,264.5333333333333,1534,254 +7937,264.56666666666666,1480,261 +7938,264.6,1427,267 +7939,264.6333333333333,1375,270 +7940,264.6666666666667,1324,273 +7941,264.7,1274,275 +7942,264.73333333333335,1229,276 +7943,264.76666666666665,1191,276 +7944,264.8,1159,276 +7945,264.8333333333333,1135,275 +7946,264.8666666666667,1118,275 +7947,264.9,1117,275 +7948,264.93333333333334,1117,275 +7949,264.96666666666664,1117,276 +7950,265.0,1134,278 +7951,265.0333333333333,1158,279 +7952,265.06666666666666,1190,280 +7953,265.1,1228,280 +7954,265.1333333333333,1272,280 +7955,265.1666666666667,1321,279 +7956,265.2,1373,277 +7957,265.23333333333335,1424,273 +7958,265.26666666666665,1477,268 +7959,265.3,1531,261 +7960,265.3333333333333,1581,254 +7961,265.3666666666667,1628,246 +7962,265.4,1669,238 +7963,265.43333333333334,1704,231 +7964,265.46666666666664,1732,225 +7965,265.5,1751,220 +7966,265.5333333333333,1759,217 +7967,265.56666666666666,1759,217 +7968,265.6,1759,217 +7969,265.6333333333333,1743,220 +7970,265.6666666666667,1720,224 +7971,265.7,1689,230 +7972,265.73333333333335,1651,237 +7973,265.76666666666665,1607,244 +7974,265.8,1559,251 +7975,265.8333333333333,1506,258 +7976,265.8666666666667,1453,264 +7977,265.9,1401,269 +7978,265.93333333333334,1348,272 +7979,265.96666666666664,1297,274 +7980,266.0,1251,275 +7981,266.0333333333333,1209,275 +7982,266.06666666666666,1174,275 +7983,266.1,1146,275 +7984,266.1333333333333,1126,275 +7985,266.1666666666667,1113,275 +7986,266.2,1113,276 +7987,266.23333333333335,1113,276 +7988,266.26666666666665,1126,278 +7989,266.3,1146,278 +7990,266.3333333333333,1175,280 +7991,266.3666666666667,1209,280 +7992,266.4,1250,280 +7993,266.43333333333334,1297,280 +7994,266.46666666666664,1347,278 +7995,266.5,1400,276 +7996,266.5333333333333,1450,270 +7997,266.56666666666666,1504,264 +7998,266.6,1556,257 +7999,266.6333333333333,1605,250 +8000,266.6666666666667,1648,242 +8001,266.7,1687,235 +8002,266.73333333333335,1718,228 +8003,266.76666666666665,1741,222 +8004,266.8,1757,218 +8005,266.8333333333333,1757,218 +8006,266.8666666666667,1757,218 +8007,266.9,1750,218 +8008,266.93333333333334,1731,222 +8009,266.96666666666664,1703,227 +8010,267.0,1669,233 +8011,267.0333333333333,1628,240 +8012,267.06666666666666,1582,247 +8013,267.1,1532,254 +8014,267.1333333333333,1478,261 +8015,267.1666666666667,1425,267 +8016,267.2,1374,271 +8017,267.23333333333335,1323,273 +8018,267.26666666666665,1273,275 +8019,267.3,1229,276 +8020,267.3333333333333,1192,276 +8021,267.3666666666667,1160,276 +8022,267.4,1135,275 +8023,267.43333333333334,1119,275 +8024,267.46666666666664,1119,275 +8025,267.5,1119,276 +8026,267.5333333333333,1120,277 +8027,267.56666666666666,1136,278 +8028,267.6,1161,279 +8029,267.6333333333333,1192,280 +8030,267.6666666666667,1230,280 +8031,267.7,1274,280 +8032,267.73333333333335,1323,279 +8033,267.76666666666665,1374,277 +8034,267.8,1425,274 +8035,267.8333333333333,1478,268 +8036,267.8666666666667,1531,261 +8037,267.9,1581,253 +8038,267.93333333333334,1627,246 +8039,267.96666666666664,1668,238 +8040,268.0,1702,231 +8041,268.0333333333333,1730,225 +8042,268.06666666666666,1749,220 +8043,268.1,1756,217 +8044,268.1333333333333,1756,217 +8045,268.1666666666667,1756,217 +8046,268.2,1741,219 +8047,268.23333333333335,1717,224 +8048,268.26666666666665,1686,230 +8049,268.3,1648,236 +8050,268.3333333333333,1605,244 +8051,268.3666666666667,1557,251 +8052,268.4,1504,258 +8053,268.43333333333334,1451,264 +8054,268.46666666666664,1401,269 +8055,268.5,1347,272 +8056,268.5333333333333,1297,274 +8057,268.56666666666666,1251,275 +8058,268.6,1210,276 +8059,268.6333333333333,1176,276 +8060,268.6666666666667,1148,276 +8061,268.7,1127,276 +8062,268.73333333333335,1115,276 +8063,268.76666666666665,1115,276 +8064,268.8,1115,277 +8065,268.8333333333333,1128,277 +8066,268.8666666666667,1149,279 +8067,268.9,1177,280 +8068,268.93333333333334,1212,280 +8069,268.96666666666664,1252,280 +8070,269.0,1299,280 +8071,269.0333333333333,1349,278 +8072,269.06666666666666,1401,276 +8073,269.1,1451,270 +8074,269.1333333333333,1504,264 +8075,269.1666666666667,1557,257 +8076,269.2,1604,250 +8077,269.23333333333335,1648,242 +8078,269.26666666666665,1685,234 +8079,269.3,1717,228 +8080,269.3333333333333,1740,222 +8081,269.3666666666667,1755,218 +8082,269.4,1755,218 +8083,269.43333333333334,1755,218 +8084,269.46666666666664,1748,218 +8085,269.5,1729,222 +8086,269.5333333333333,1701,227 +8087,269.56666666666666,1667,233 +8088,269.6,1626,240 +8089,269.6333333333333,1580,248 +8090,269.6666666666667,1531,255 +8091,269.7,1477,261 +8092,269.73333333333335,1424,267 +8093,269.76666666666665,1374,271 +8094,269.8,1323,273 +8095,269.8333333333333,1274,275 +8096,269.8666666666667,1230,276 +8097,269.9,1192,276 +8098,269.93333333333334,1161,276 +8099,269.96666666666664,1137,276 +8100,270.0,1121,276 +8101,270.0333333333333,1121,276 +8102,270.06666666666666,1121,276 +8103,270.1,1122,277 +8104,270.1333333333333,1139,278 +8105,270.1666666666667,1163,280 +8106,270.2,1195,280 +8107,270.23333333333335,1233,280 +8108,270.26666666666665,1276,280 +8109,270.3,1325,279 +8110,270.3333333333333,1376,277 +8111,270.3666666666667,1426,274 +8112,270.4,1479,267 +8113,270.43333333333334,1532,261 +8114,270.46666666666664,1581,253 +8115,270.5,1627,246 +8116,270.5333333333333,1667,238 +8117,270.56666666666666,1701,231 +8118,270.6,1728,225 +8119,270.6333333333333,1747,220 +8120,270.6666666666667,1754,217 +8121,270.7,1754,217 +8122,270.73333333333335,1754,217 +8123,270.76666666666665,1738,220 +8124,270.8,1715,224 +8125,270.8333333333333,1684,230 +8126,270.8666666666667,1646,237 +8127,270.9,1603,244 +8128,270.93333333333334,1555,251 +8129,270.96666666666664,1502,258 +8130,271.0,1450,264 +8131,271.0333333333333,1399,270 +8132,271.06666666666666,1347,273 +8133,271.1,1297,274 +8134,271.1333333333333,1251,276 +8135,271.1666666666667,1211,276 +8136,271.2,1176,276 +8137,271.23333333333335,1149,276 +8138,271.26666666666665,1128,276 +8139,271.3,1117,276 +8140,271.3333333333333,1117,277 +8141,271.3666666666667,1117,277 +8142,271.4,1130,278 +8143,271.43333333333334,1151,279 +8144,271.46666666666664,1179,281 +8145,271.5,1214,281 +8146,271.5333333333333,1254,281 +8147,271.56666666666666,1300,280 +8148,271.6,1350,279 +8149,271.6333333333333,1403,276 +8150,271.6666666666667,1452,271 +8151,271.7,1505,264 +8152,271.73333333333335,1557,257 +8153,271.76666666666665,1604,250 +8154,271.8,1647,242 +8155,271.8333333333333,1685,234 +8156,271.8666666666667,1715,228 +8157,271.9,1738,222 +8158,271.93333333333334,1753,218 +8159,271.96666666666664,1753,218 +8160,272.0,1753,218 +8161,272.0333333333333,1746,218 +8162,272.06666666666666,1726,222 +8163,272.1,1699,227 +8164,272.1333333333333,1665,234 +8165,272.1666666666667,1624,241 +8166,272.2,1578,248 +8167,272.23333333333335,1529,255 +8168,272.26666666666665,1475,262 +8169,272.3,1423,267 +8170,272.3333333333333,1372,271 +8171,272.3666666666667,1322,274 +8172,272.4,1273,275 +8173,272.43333333333334,1230,276 +8174,272.46666666666664,1193,276 +8175,272.5,1162,276 +8176,272.5333333333333,1138,276 +8177,272.56666666666666,1122,276 +8178,272.6,1122,276 +8179,272.6333333333333,1122,277 +8180,272.6666666666667,1124,278 +8181,272.7,1141,279 +8182,272.73333333333335,1165,280 +8183,272.76666666666665,1197,280 +8184,272.8,1235,280 +8185,272.8333333333333,1278,280 +8186,272.8666666666667,1326,279 +8187,272.9,1377,277 +8188,272.93333333333334,1428,273 +8189,272.96666666666664,1479,267 +8190,273.0,1533,260 +8191,273.0333333333333,1582,253 +8192,273.06666666666666,1627,245 +8193,273.1,1667,238 +8194,273.1333333333333,1701,230 +8195,273.1666666666667,1727,225 +8196,273.2,1747,220 +8197,273.23333333333335,1752,217 +8198,273.26666666666665,1752,217 +8199,273.3,1752,217 +8200,273.3333333333333,1736,220 +8201,273.3666666666667,1713,224 +8202,273.4,1682,230 +8203,273.43333333333334,1644,237 +8204,273.46666666666664,1601,244 +8205,273.5,1553,251 +8206,273.5333333333333,1501,258 +8207,273.56666666666666,1448,264 +8208,273.6,1399,269 +8209,273.6333333333333,1347,273 +8210,273.6666666666667,1297,275 +8211,273.7,1251,276 +8212,273.73333333333335,1211,276 +8213,273.76666666666665,1177,276 +8214,273.8,1150,276 +8215,273.8333333333333,1130,276 +8216,273.8666666666667,1119,276 +8217,273.9,1119,277 +8218,273.93333333333334,1119,277 +8219,273.96666666666664,1132,278 +8220,274.0,1153,279 +8221,274.0333333333333,1181,280 +8222,274.06666666666666,1216,280 +8223,274.1,1257,280 +8224,274.1333333333333,1302,280 +8225,274.1666666666667,1352,278 +8226,274.2,1404,275 +8227,274.23333333333335,1454,269 +8228,274.26666666666665,1506,264 +8229,274.3,1558,256 +8230,274.3333333333333,1605,249 +8231,274.3666666666667,1647,241 +8232,274.4,1684,234 +8233,274.43333333333334,1715,227 +8234,274.46666666666664,1737,222 +8235,274.5,1752,218 +8236,274.5333333333333,1752,218 +8237,274.56666666666666,1752,218 +8238,274.6,1744,219 +8239,274.6333333333333,1724,222 +8240,274.6666666666667,1697,228 +8241,274.7,1662,234 +8242,274.73333333333335,1622,241 +8243,274.76666666666665,1576,248 +8244,274.8,1527,255 +8245,274.8333333333333,1473,262 +8246,274.8666666666667,1422,268 +8247,274.9,1372,271 +8248,274.93333333333334,1321,274 +8249,274.96666666666664,1273,276 +8250,275.0,1231,277 +8251,275.0333333333333,1193,277 +8252,275.06666666666666,1163,277 +8253,275.1,1140,277 +8254,275.1333333333333,1124,277 +8255,275.1666666666667,1124,277 +8256,275.2,1124,277 +8257,275.23333333333335,1126,278 +8258,275.26666666666665,1143,279 +8259,275.3,1167,280 +8260,275.3333333333333,1199,281 +8261,275.3666666666667,1236,281 +8262,275.4,1280,281 +8263,275.43333333333334,1328,279 +8264,275.46666666666664,1378,276 +8265,275.5,1428,273 +8266,275.5333333333333,1481,267 +8267,275.56666666666666,1533,260 +8268,275.6,1582,253 +8269,275.6333333333333,1627,245 +8270,275.6666666666667,1667,238 +8271,275.7,1700,230 +8272,275.73333333333335,1726,225 +8273,275.76666666666665,1745,220 +8274,275.8,1750,218 +8275,275.8333333333333,1750,218 +8276,275.8666666666667,1750,218 +8277,275.9,1734,221 +8278,275.93333333333334,1710,225 +8279,275.96666666666664,1679,231 +8280,276.0,1642,238 +8281,276.0333333333333,1599,245 +8282,276.06666666666666,1551,252 +8283,276.1,1499,259 +8284,276.1333333333333,1447,265 +8285,276.1666666666667,1397,270 +8286,276.2,1346,273 +8287,276.23333333333335,1296,275 +8288,276.26666666666665,1251,276 +8289,276.3,1211,277 +8290,276.3333333333333,1178,277 +8291,276.3666666666667,1151,277 +8292,276.4,1131,277 +8293,276.43333333333334,1121,277 +8294,276.46666666666664,1121,277 +8295,276.5,1121,278 +8296,276.5333333333333,1134,279 +8297,276.56666666666666,1155,280 +8298,276.6,1183,280 +8299,276.6333333333333,1218,280 +8300,276.6666666666667,1259,280 +8301,276.7,1304,280 +8302,276.73333333333335,1354,278 +8303,276.76666666666665,1405,275 +8304,276.8,1455,270 +8305,276.8333333333333,1507,263 +8306,276.8666666666667,1558,257 +8307,276.9,1605,249 +8308,276.93333333333334,1647,241 +8309,276.96666666666664,1684,234 +8310,277.0,1714,227 +8311,277.0333333333333,1736,222 +8312,277.06666666666666,1750,218 +8313,277.1,1750,218 +8314,277.1333333333333,1750,218 +8315,277.1666666666667,1742,219 +8316,277.2,1722,223 +8317,277.23333333333335,1695,228 +8318,277.26666666666665,1660,234 +8319,277.3,1620,241 +8320,277.3333333333333,1574,248 +8321,277.3666666666667,1525,255 +8322,277.4,1472,262 +8323,277.43333333333334,1421,268 +8324,277.46666666666664,1371,271 +8325,277.5,1320,274 +8326,277.5333333333333,1273,276 +8327,277.56666666666666,1231,277 +8328,277.6,1194,277 +8329,277.6333333333333,1164,277 +8330,277.6666666666667,1141,277 +8331,277.7,1125,277 +8332,277.73333333333335,1125,277 +8333,277.76666666666665,1125,278 +8334,277.8,1128,279 +8335,277.8333333333333,1145,279 +8336,277.8666666666667,1169,281 +8337,277.9,1201,281 +8338,277.93333333333334,1238,281 +8339,277.96666666666664,1281,281 +8340,278.0,1329,279 +8341,278.0333333333333,1380,277 +8342,278.06666666666666,1429,273 +8343,278.1,1481,266 +8344,278.1333333333333,1534,260 +8345,278.1666666666667,1582,253 +8346,278.2,1627,245 +8347,278.23333333333335,1666,238 +8348,278.26666666666665,1699,231 +8349,278.3,1725,225 +8350,278.3333333333333,1744,221 +8351,278.3666666666667,1748,218 +8352,278.4,1748,218 +8353,278.43333333333334,1748,218 +8354,278.46666666666664,1732,221 +8355,278.5,1708,226 +8356,278.5333333333333,1677,232 +8357,278.56666666666666,1639,238 +8358,278.6,1596,245 +8359,278.6333333333333,1549,252 +8360,278.6666666666667,1497,259 +8361,278.7,1445,266 +8362,278.73333333333335,1396,270 +8363,278.76666666666665,1345,273 +8364,278.8,1296,275 +8365,278.8333333333333,1251,277 +8366,278.8666666666667,1212,277 +8367,278.9,1178,277 +8368,278.93333333333334,1152,277 +8369,278.96666666666664,1132,277 +8370,279.0,1123,277 +8371,279.0333333333333,1123,278 +8372,279.06666666666666,1123,278 +8373,279.1,1136,279 +8374,279.1333333333333,1157,280 +8375,279.1666666666667,1185,280 +8376,279.2,1220,280 +8377,279.23333333333335,1260,280 +8378,279.26666666666665,1306,280 +8379,279.3,1355,278 +8380,279.3333333333333,1407,275 +8381,279.3666666666667,1456,269 +8382,279.4,1507,263 +8383,279.43333333333334,1558,256 +8384,279.46666666666664,1605,248 +8385,279.5,1647,241 +8386,279.5333333333333,1683,234 +8387,279.56666666666666,1712,227 +8388,279.6,1734,222 +8389,279.6333333333333,1749,219 +8390,279.6666666666667,1749,219 +8391,279.7,1749,219 +8392,279.73333333333335,1740,219 +8393,279.76666666666665,1720,223 +8394,279.8,1692,229 +8395,279.8333333333333,1658,235 +8396,279.8666666666667,1617,242 +8397,279.9,1572,249 +8398,279.93333333333334,1523,256 +8399,279.96666666666664,1470,262 +8400,280.0,1420,269 +8401,280.0333333333333,1370,272 +8402,280.06666666666666,1320,274 +8403,280.1,1272,277 +8404,280.1333333333333,1231,278 +8405,280.1666666666667,1194,278 +8406,280.2,1165,278 +8407,280.23333333333335,1142,278 +8408,280.26666666666665,1127,278 +8409,280.3,1127,278 +8410,280.3333333333333,1127,278 +8411,280.3666666666667,1130,279 +8412,280.4,1147,280 +8413,280.43333333333334,1172,281 +8414,280.46666666666664,1203,281 +8415,280.5,1241,281 +8416,280.5333333333333,1284,280 +8417,280.56666666666666,1332,279 +8418,280.6,1382,276 +8419,280.6333333333333,1430,272 +8420,280.6666666666667,1482,266 +8421,280.7,1534,260 +8422,280.73333333333335,1582,252 +8423,280.76666666666665,1627,245 +8424,280.8,1665,237 +8425,280.8333333333333,1698,230 +8426,280.8666666666667,1724,225 +8427,280.9,1742,220 +8428,280.93333333333334,1746,218 +8429,280.96666666666664,1746,218 +8430,281.0,1746,218 +8431,281.0333333333333,1730,221 +8432,281.06666666666666,1706,226 +8433,281.1,1675,232 +8434,281.1333333333333,1637,238 +8435,281.1666666666667,1594,246 +8436,281.2,1547,252 +8437,281.23333333333335,1496,259 +8438,281.26666666666665,1444,265 +8439,281.3,1395,270 +8440,281.3333333333333,1344,274 +8441,281.3666666666667,1296,276 +8442,281.4,1251,277 +8443,281.43333333333334,1212,278 +8444,281.46666666666664,1179,278 +8445,281.5,1153,278 +8446,281.5333333333333,1134,278 +8447,281.56666666666666,1125,278 +8448,281.6,1125,278 +8449,281.6333333333333,1125,278 +8450,281.6666666666667,1139,279 +8451,281.7,1159,280 +8452,281.73333333333335,1187,281 +8453,281.76666666666665,1222,281 +8454,281.8,1262,281 +8455,281.8333333333333,1308,280 +8456,281.8666666666667,1357,278 +8457,281.9,1408,275 +8458,281.93333333333334,1457,269 +8459,281.96666666666664,1509,263 +8460,282.0,1558,256 +8461,282.0333333333333,1605,248 +8462,282.06666666666666,1646,241 +8463,282.1,1682,234 +8464,282.1333333333333,1712,227 +8465,282.1666666666667,1734,222 +8466,282.2,1748,219 +8467,282.23333333333335,1748,219 +8468,282.26666666666665,1748,219 +8469,282.3,1738,220 +8470,282.3333333333333,1718,223 +8471,282.3666666666667,1690,229 +8472,282.4,1656,235 +8473,282.43333333333334,1615,242 +8474,282.46666666666664,1570,250 +8475,282.5,1521,256 +8476,282.5333333333333,1469,262 +8477,282.56666666666666,1418,269 +8478,282.6,1369,272 +8479,282.6333333333333,1319,275 +8480,282.6666666666667,1272,277 +8481,282.7,1231,278 +8482,282.73333333333335,1195,278 +8483,282.76666666666665,1165,278 +8484,282.8,1143,278 +8485,282.8333333333333,1128,278 +8486,282.8666666666667,1128,278 +8487,282.9,1128,279 +8488,282.93333333333334,1132,279 +8489,282.96666666666664,1149,280 +8490,283.0,1174,281 +8491,283.0333333333333,1205,281 +8492,283.06666666666666,1243,281 +8493,283.1,1285,281 +8494,283.1333333333333,1333,279 +8495,283.1666666666667,1383,276 +8496,283.2,1432,272 +8497,283.23333333333335,1483,266 +8498,283.26666666666665,1535,260 +8499,283.3,1582,252 +8500,283.3333333333333,1626,245 +8501,283.3666666666667,1665,237 +8502,283.4,1697,230 +8503,283.43333333333334,1723,225 +8504,283.46666666666664,1741,220 +8505,283.5,1744,218 +8506,283.5333333333333,1744,218 +8507,283.56666666666666,1744,218 +8508,283.6,1728,221 +8509,283.6333333333333,1703,226 +8510,283.6666666666667,1672,232 +8511,283.7,1635,239 +8512,283.73333333333335,1593,246 +8513,283.76666666666665,1545,253 +8514,283.8,1494,260 +8515,283.8333333333333,1443,266 +8516,283.8666666666667,1394,270 +8517,283.9,1344,273 +8518,283.93333333333334,1295,276 +8519,283.96666666666664,1251,277 +8520,284.0,1213,278 +8521,284.0333333333333,1180,278 +8522,284.06666666666666,1154,278 +8523,284.1,1135,278 +8524,284.1333333333333,1127,278 +8525,284.1666666666667,1127,278 +8526,284.2,1127,279 +8527,284.23333333333335,1140,280 +8528,284.26666666666665,1161,281 +8529,284.3,1189,281 +8530,284.3333333333333,1224,281 +8531,284.3666666666667,1264,281 +8532,284.4,1310,280 +8533,284.43333333333334,1359,278 +8534,284.46666666666664,1409,274 +8535,284.5,1458,269 +8536,284.5333333333333,1509,263 +8537,284.56666666666666,1559,256 +8538,284.6,1605,248 +8539,284.6333333333333,1646,241 +8540,284.6666666666667,1682,233 +8541,284.7,1711,227 +8542,284.73333333333335,1732,222 +8543,284.76666666666665,1746,219 +8544,284.8,1746,219 +8545,284.8333333333333,1746,219 +8546,284.8666666666667,1735,220 +8547,284.9,1715,224 +8548,284.93333333333334,1688,229 +8549,284.96666666666664,1653,236 +8550,285.0,1613,243 +8551,285.0333333333333,1568,250 +8552,285.06666666666666,1519,257 +8553,285.1,1467,263 +8554,285.1333333333333,1417,269 +8555,285.1666666666667,1368,272 +8556,285.2,1318,275 +8557,285.23333333333335,1272,277 +8558,285.26666666666665,1231,278 +8559,285.3,1195,278 +8560,285.3333333333333,1166,278 +8561,285.3666666666667,1144,278 +8562,285.4,1130,279 +8563,285.43333333333334,1130,279 +8564,285.46666666666664,1130,279 +8565,285.5,1134,280 +8566,285.5333333333333,1151,280 +8567,285.56666666666666,1176,281 +8568,285.6,1207,281 +8569,285.6333333333333,1245,281 +8570,285.6666666666667,1287,281 +8571,285.7,1335,279 +8572,285.73333333333335,1385,275 +8573,285.76666666666665,1433,272 +8574,285.8,1485,265 +8575,285.8333333333333,1535,259 +8576,285.8666666666667,1583,252 +8577,285.9,1626,244 +8578,285.93333333333334,1665,237 +8579,285.96666666666664,1697,230 +8580,286.0,1722,224 +8581,286.0333333333333,1739,220 +8582,286.06666666666666,1742,219 +8583,286.1,1742,219 +8584,286.1333333333333,1742,219 +8585,286.1666666666667,1726,222 +8586,286.2,1702,227 +8587,286.23333333333335,1671,232 +8588,286.26666666666665,1633,239 +8589,286.3,1591,246 +8590,286.3333333333333,1544,253 +8591,286.3666666666667,1493,260 +8592,286.4,1442,267 +8593,286.43333333333334,1393,270 +8594,286.46666666666664,1343,274 +8595,286.5,1295,276 +8596,286.5333333333333,1251,278 +8597,286.56666666666666,1213,279 +8598,286.6,1181,279 +8599,286.6333333333333,1155,279 +8600,286.6666666666667,1137,279 +8601,286.7,1129,279 +8602,286.73333333333335,1129,279 +8603,286.76666666666665,1129,280 +8604,286.8,1143,281 +8605,286.8333333333333,1163,281 +8606,286.8666666666667,1191,281 +8607,286.9,1226,281 +8608,286.93333333333334,1266,281 +8609,286.96666666666664,1312,280 +8610,287.0,1360,278 +8611,287.0333333333333,1410,274 +8612,287.06666666666666,1459,269 +8613,287.1,1510,263 +8614,287.1333333333333,1560,255 +8615,287.1666666666667,1605,248 +8616,287.2,1646,240 +8617,287.23333333333335,1681,233 +8618,287.26666666666665,1710,227 +8619,287.3,1731,222 +8620,287.3333333333333,1744,219 +8621,287.3666666666667,1744,219 +8622,287.4,1744,219 +8623,287.43333333333334,1733,220 +8624,287.46666666666664,1713,224 +8625,287.5,1686,229 +8626,287.5333333333333,1652,236 +8627,287.56666666666666,1611,243 +8628,287.6,1567,250 +8629,287.6333333333333,1518,257 +8630,287.6666666666667,1466,263 +8631,287.7,1416,268 +8632,287.73333333333335,1367,273 +8633,287.76666666666665,1318,275 +8634,287.8,1272,277 +8635,287.8333333333333,1232,278 +8636,287.8666666666667,1196,279 +8637,287.9,1167,279 +8638,287.93333333333334,1146,279 +8639,287.96666666666664,1131,279 +8640,288.0,1131,279 +8641,288.0333333333333,1131,279 +8642,288.06666666666666,1136,280 +8643,288.1,1153,281 +8644,288.1333333333333,1178,281 +8645,288.1666666666667,1209,281 +8646,288.2,1247,281 +8647,288.23333333333335,1289,281 +8648,288.26666666666665,1336,279 +8649,288.3,1386,275 +8650,288.3333333333333,1434,271 +8651,288.3666666666667,1485,265 +8652,288.4,1536,259 +8653,288.43333333333334,1583,252 +8654,288.46666666666664,1626,244 +8655,288.5,1664,237 +8656,288.5333333333333,1696,230 +8657,288.56666666666666,1720,225 +8658,288.6,1738,220 +8659,288.6333333333333,1739,219 +8660,288.6666666666667,1739,219 +8661,288.7,1739,219 +8662,288.73333333333335,1723,222 +8663,288.76666666666665,1699,227 +8664,288.8,1668,233 +8665,288.8333333333333,1631,239 +8666,288.8666666666667,1589,247 +8667,288.9,1542,254 +8668,288.93333333333334,1491,260 +8669,288.96666666666664,1440,267 +8670,289.0,1392,270 +8671,289.0333333333333,1343,275 +8672,289.06666666666666,1295,276 +8673,289.1,1251,278 +8674,289.1333333333333,1213,279 +8675,289.1666666666667,1181,279 +8676,289.2,1156,279 +8677,289.23333333333335,1138,279 +8678,289.26666666666665,1131,279 +8679,289.3,1131,279 +8680,289.3333333333333,1131,280 +8681,289.3666666666667,1145,281 +8682,289.4,1166,281 +8683,289.43333333333334,1194,281 +8684,289.46666666666664,1228,281 +8685,289.5,1268,281 +8686,289.5333333333333,1314,279 +8687,289.56666666666666,1362,277 +8688,289.6,1411,273 +8689,289.6333333333333,1460,268 +8690,289.6666666666667,1511,262 +8691,289.7,1560,255 +8692,289.73333333333335,1605,248 +8693,289.76666666666665,1645,240 +8694,289.8,1680,233 +8695,289.8333333333333,1709,227 +8696,289.8666666666667,1730,222 +8697,289.9,1742,219 +8698,289.93333333333334,1742,219 +8699,289.96666666666664,1742,219 +8700,290.0,1731,220 +8701,290.0333333333333,1711,225 +8702,290.06666666666666,1683,230 +8703,290.1,1649,236 +8704,290.1333333333333,1609,243 +8705,290.1666666666667,1564,250 +8706,290.2,1515,257 +8707,290.23333333333335,1464,264 +8708,290.26666666666665,1415,269 +8709,290.3,1366,273 +8710,290.3333333333333,1318,276 +8711,290.3666666666667,1272,277 +8712,290.4,1232,279 +8713,290.43333333333334,1197,279 +8714,290.46666666666664,1168,279 +8715,290.5,1147,279 +8716,290.5333333333333,1133,279 +8717,290.56666666666666,1133,279 +8718,290.6,1133,279 +8719,290.6333333333333,1138,280 +8720,290.6666666666667,1156,281 +8721,290.7,1180,281 +8722,290.73333333333335,1211,281 +8723,290.76666666666665,1248,281 +8724,290.8,1291,280 +8725,290.8333333333333,1338,278 +8726,290.8666666666667,1388,275 +8727,290.9,1435,271 +8728,290.93333333333334,1486,265 +8729,290.96666666666664,1537,259 +8730,291.0,1583,251 +8731,291.0333333333333,1626,244 +8732,291.06666666666666,1663,237 +8733,291.1,1695,230 +8734,291.1333333333333,1719,225 +8735,291.1666666666667,1736,221 +8736,291.2,1737,220 +8737,291.23333333333335,1737,220 +8738,291.26666666666665,1737,220 +8739,291.3,1721,223 +8740,291.3333333333333,1697,228 +8741,291.3666666666667,1666,233 +8742,291.4,1629,240 +8743,291.43333333333334,1586,247 +8744,291.46666666666664,1540,254 +8745,291.5,1489,261 +8746,291.5333333333333,1439,267 +8747,291.56666666666666,1391,270 +8748,291.6,1342,275 +8749,291.6333333333333,1294,277 +8750,291.6666666666667,1252,279 +8751,291.7,1214,279 +8752,291.73333333333335,1182,279 +8753,291.76666666666665,1158,279 +8754,291.8,1140,279 +8755,291.8333333333333,1134,279 +8756,291.8666666666667,1134,279 +8757,291.9,1134,280 +8758,291.93333333333334,1147,280 +8759,291.96666666666664,1168,281 +8760,292.0,1196,281 +8761,292.0333333333333,1231,281 +8762,292.06666666666666,1271,281 +8763,292.1,1315,279 +8764,292.1333333333333,1364,277 +8765,292.1666666666667,1413,274 +8766,292.2,1461,268 +8767,292.23333333333335,1511,262 +8768,292.26666666666665,1561,255 +8769,292.3,1605,248 +8770,292.3333333333333,1645,240 +8771,292.3666666666667,1680,233 +8772,292.4,1708,227 +8773,292.43333333333334,1729,223 +8774,292.46666666666664,1741,219 +8775,292.5,1741,219 +8776,292.5333333333333,1741,219 +8777,292.56666666666666,1729,221 +8778,292.6,1709,225 +8779,292.6333333333333,1681,230 +8780,292.6666666666667,1647,237 +8781,292.7,1607,244 +8782,292.73333333333335,1563,251 +8783,292.76666666666665,1513,258 +8784,292.8,1463,264 +8785,292.8333333333333,1414,269 +8786,292.8666666666667,1366,273 +8787,292.9,1318,276 +8788,292.93333333333334,1272,278 +8789,292.96666666666664,1232,279 +8790,293.0,1198,279 +8791,293.0333333333333,1169,279 +8792,293.06666666666666,1148,279 +8793,293.1,1134,279 +8794,293.1333333333333,1134,279 +8795,293.1666666666667,1134,280 +8796,293.2,1140,280 +8797,293.23333333333335,1158,281 +8798,293.26666666666665,1182,281 +8799,293.3,1214,281 +8800,293.3333333333333,1251,281 +8801,293.3666666666667,1293,280 +8802,293.4,1340,278 +8803,293.43333333333334,1389,275 +8804,293.46666666666664,1436,271 +8805,293.5,1487,265 +8806,293.5333333333333,1537,258 +8807,293.56666666666666,1583,251 +8808,293.6,1626,244 +8809,293.6333333333333,1663,236 +8810,293.6666666666667,1694,230 +8811,293.7,1718,224 +8812,293.73333333333335,1735,221 +8813,293.76666666666665,1735,220 +8814,293.8,1735,220 +8815,293.8333333333333,1735,220 +8816,293.8666666666667,1718,223 +8817,293.9,1695,228 +8818,293.93333333333334,1663,234 +8819,293.96666666666664,1626,241 +8820,294.0,1584,248 +8821,294.0333333333333,1538,254 +8822,294.06666666666666,1488,261 +8823,294.1,1438,267 +8824,294.1333333333333,1390,270 +8825,294.1666666666667,1341,275 +8826,294.2,1294,277 +8827,294.23333333333335,1251,279 +8828,294.26666666666665,1214,279 +8829,294.3,1183,279 +8830,294.3333333333333,1158,279 +8831,294.3666666666667,1141,279 +8832,294.4,1135,279 +8833,294.43333333333334,1135,279 +8834,294.46666666666664,1135,280 +8835,294.5,1149,280 +8836,294.5333333333333,1170,281 +8837,294.56666666666666,1198,281 +8838,294.6,1233,281 +8839,294.6333333333333,1272,281 +8840,294.6666666666667,1317,279 +8841,294.7,1365,276 +8842,294.73333333333335,1413,273 +8843,294.76666666666665,1462,267 +8844,294.8,1512,261 +8845,294.8333333333333,1561,254 +8846,294.8666666666667,1605,247 +8847,294.9,1645,240 +8848,294.93333333333334,1679,233 +8849,294.96666666666664,1707,227 +8850,295.0,1727,222 +8851,295.0333333333333,1739,219 +8852,295.06666666666666,1739,219 +8853,295.1,1739,219 +8854,295.1333333333333,1727,221 +8855,295.1666666666667,1706,225 +8856,295.2,1678,231 +8857,295.23333333333335,1644,237 +8858,295.26666666666665,1605,244 +8859,295.3,1560,251 +8860,295.3333333333333,1512,258 +8861,295.3666666666667,1461,264 +8862,295.4,1413,270 +8863,295.43333333333334,1365,274 +8864,295.46666666666664,1316,276 +8865,295.5,1272,278 +8866,295.5333333333333,1232,279 +8867,295.56666666666666,1198,279 +8868,295.6,1170,279 +8869,295.6333333333333,1149,279 +8870,295.6666666666667,1136,280 +8871,295.7,1136,280 +8872,295.73333333333335,1136,280 +8873,295.76666666666665,1142,280 +8874,295.8,1160,281 +8875,295.8333333333333,1185,281 +8876,295.8666666666667,1216,281 +8877,295.9,1253,281 +8878,295.93333333333334,1295,280 +8879,295.96666666666664,1343,278 +8880,296.0,1391,274 +8881,296.0333333333333,1438,270 +8882,296.06666666666666,1488,265 +8883,296.1,1538,258 +8884,296.1333333333333,1584,251 +8885,296.1666666666667,1626,243 +8886,296.2,1662,236 +8887,296.23333333333335,1693,230 +8888,296.26666666666665,1717,225 +8889,296.3,1733,221 +8890,296.3333333333333,1733,220 +8891,296.3666666666667,1733,220 +8892,296.4,1732,220 +8893,296.43333333333334,1716,223 +8894,296.46666666666664,1692,228 +8895,296.5,1661,234 +8896,296.5333333333333,1624,241 +8897,296.56666666666666,1582,248 +8898,296.6,1536,255 +8899,296.6333333333333,1486,261 +8900,296.6666666666667,1436,267 +8901,296.7,1389,271 +8902,296.73333333333335,1340,275 +8903,296.76666666666665,1294,277 +8904,296.8,1252,279 +8905,296.8333333333333,1215,280 +8906,296.8666666666667,1184,280 +8907,296.9,1160,280 +8908,296.93333333333334,1143,280 +8909,296.96666666666664,1138,280 +8910,297.0,1138,280 +8911,297.0333333333333,1138,280 +8912,297.06666666666666,1152,281 +8913,297.1,1173,281 +8914,297.1333333333333,1201,281 +8915,297.1666666666667,1235,281 +8916,297.2,1275,281 +8917,297.23333333333335,1320,280 +8918,297.26666666666665,1367,277 +8919,297.3,1415,273 +8920,297.3333333333333,1463,268 +8921,297.3666666666667,1513,261 +8922,297.4,1561,254 +8923,297.43333333333334,1605,247 +8924,297.46666666666664,1645,240 +8925,297.5,1678,233 +8926,297.5333333333333,1705,227 +8927,297.56666666666666,1726,223 +8928,297.6,1737,220 +8929,297.6333333333333,1737,220 +8930,297.6666666666667,1737,220 +8931,297.7,1724,222 +8932,297.73333333333335,1704,226 +8933,297.76666666666665,1676,232 +8934,297.8,1642,238 +8935,297.8333333333333,1602,245 +8936,297.8666666666667,1558,252 +8937,297.9,1510,258 +8938,297.93333333333334,1460,265 +8939,297.96666666666664,1412,270 +8940,298.0,1364,274 +8941,298.0333333333333,1316,276 +8942,298.06666666666666,1272,278 +8943,298.1,1232,279 +8944,298.1333333333333,1199,280 +8945,298.1666666666667,1171,280 +8946,298.2,1151,280 +8947,298.23333333333335,1138,280 +8948,298.26666666666665,1138,280 +8949,298.3,1138,280 +8950,298.3333333333333,1145,281 +8951,298.3666666666667,1162,281 +8952,298.4,1187,281 +8953,298.43333333333334,1218,281 +8954,298.46666666666664,1255,281 +8955,298.5,1297,280 +8956,298.5333333333333,1344,278 +8957,298.56666666666666,1392,274 +8958,298.6,1439,270 +8959,298.6333333333333,1489,264 +8960,298.6666666666667,1538,258 +8961,298.7,1584,250 +8962,298.73333333333335,1625,243 +8963,298.76666666666665,1662,236 +8964,298.8,1692,229 +8965,298.8333333333333,1715,224 +8966,298.8666666666667,1731,221 +8967,298.9,1731,220 +8968,298.93333333333334,1731,220 +8969,298.96666666666664,1730,220 +8970,299.0,1713,224 +8971,299.0333333333333,1689,228 +8972,299.06666666666666,1658,234 +8973,299.1,1621,241 +8974,299.1333333333333,1579,248 +8975,299.1666666666667,1533,255 +8976,299.2,1484,262 +8977,299.23333333333335,1434,268 +8978,299.26666666666665,1387,272 +8979,299.3,1339,275 +8980,299.3333333333333,1293,278 +8981,299.3666666666667,1251,278 +8982,299.4,1215,279 +8983,299.43333333333334,1184,280 +8984,299.46666666666664,1161,280 +8985,299.5,1144,280 +8986,299.5333333333333,1140,280 +8987,299.56666666666666,1140,280 +8988,299.6,1140,281 +8989,299.6333333333333,1154,281 +8990,299.6666666666667,1175,281 +8991,299.7,1203,281 +8992,299.73333333333335,1238,281 +8993,299.76666666666665,1277,280 +8994,299.8,1322,279 +8995,299.8333333333333,1369,276 +8996,299.8666666666667,1416,273 +8997,299.9,1464,267 +8998,299.93333333333334,1514,261 +8999,299.96666666666664,1562,254 +9000,300.0,1605,247 +9001,300.0333333333333,1644,239 +9002,300.06666666666666,1678,233 +9003,300.1,1705,227 +9004,300.1333333333333,1724,222 +9005,300.1666666666667,1735,220 +9006,300.2,1735,220 +9007,300.23333333333335,1735,220 +9008,300.26666666666665,1722,222 +9009,300.3,1701,226 +9010,300.3333333333333,1673,231 +9011,300.3666666666667,1639,238 +9012,300.4,1600,245 +9013,300.43333333333334,1555,252 +9014,300.46666666666664,1507,259 +9015,300.5,1458,265 +9016,300.5333333333333,1410,270 +9017,300.56666666666666,1362,274 +9018,300.6,1315,277 +9019,300.6333333333333,1271,278 +9020,300.6666666666667,1232,280 +9021,300.7,1199,280 +9022,300.73333333333335,1172,280 +9023,300.76666666666665,1152,280 +9024,300.8,1139,280 +9025,300.8333333333333,1139,280 +9026,300.8666666666667,1139,280 +9027,300.9,1147,281 +9028,300.93333333333334,1164,281 +9029,300.96666666666664,1189,281 +9030,301.0,1221,281 +9031,301.0333333333333,1258,281 +9032,301.06666666666666,1300,280 +9033,301.1,1346,278 +9034,301.1333333333333,1395,274 +9035,301.1666666666667,1441,270 +9036,301.2,1491,264 +9037,301.23333333333335,1539,257 +9038,301.26666666666665,1584,250 +9039,301.3,1625,243 +9040,301.3333333333333,1661,236 +9041,301.3666666666667,1691,230 +9042,301.4,1714,224 +9043,301.43333333333334,1730,221 +9044,301.46666666666664,1730,221 +9045,301.5,1730,221 +9046,301.5333333333333,1728,221 +9047,301.56666666666666,1711,224 +9048,301.6,1687,229 +9049,301.6333333333333,1656,235 +9050,301.6666666666667,1618,242 +9051,301.7,1577,249 +9052,301.73333333333335,1531,256 +9053,301.76666666666665,1482,262 +9054,301.8,1432,268 +9055,301.8333333333333,1386,273 +9056,301.8666666666667,1338,275 +9057,301.9,1292,277 +9058,301.93333333333334,1251,279 +9059,301.96666666666664,1215,280 +9060,302.0,1185,280 +9061,302.0333333333333,1161,280 +9062,302.06666666666666,1145,280 +9063,302.1,1142,280 +9064,302.1333333333333,1142,280 +9065,302.1666666666667,1142,280 +9066,302.2,1156,281 +9067,302.23333333333335,1177,281 +9068,302.26666666666665,1205,281 +9069,302.3,1239,281 +9070,302.3333333333333,1279,280 +9071,302.3666666666667,1324,279 +9072,302.4,1371,276 +9073,302.43333333333334,1418,272 +9074,302.46666666666664,1466,267 +9075,302.5,1515,260 +9076,302.5333333333333,1563,254 +9077,302.56666666666666,1606,246 +9078,302.6,1644,239 +9079,302.6333333333333,1677,233 +9080,302.6666666666667,1703,227 +9081,302.7,1722,223 +9082,302.73333333333335,1732,220 +9083,302.76666666666665,1732,220 +9084,302.8,1732,220 +9085,302.8333333333333,1719,222 +9086,302.8666666666667,1699,227 +9087,302.9,1671,232 +9088,302.93333333333334,1637,238 +9089,302.96666666666664,1597,246 +9090,303.0,1553,252 +9091,303.0333333333333,1505,259 +9092,303.06666666666666,1456,266 +9093,303.1,1409,271 +9094,303.1333333333333,1361,274 +9095,303.1666666666667,1314,277 +9096,303.2,1271,279 +9097,303.23333333333335,1233,280 +9098,303.26666666666665,1200,280 +9099,303.3,1173,280 +9100,303.3333333333333,1153,280 +9101,303.3666666666667,1141,280 +9102,303.4,1141,280 +9103,303.43333333333334,1141,280 +9104,303.46666666666664,1149,280 +9105,303.5,1167,281 +9106,303.5333333333333,1192,281 +9107,303.56666666666666,1223,281 +9108,303.6,1260,281 +9109,303.6333333333333,1302,279 +9110,303.6666666666667,1348,277 +9111,303.7,1397,273 +9112,303.73333333333335,1443,270 +9113,303.76666666666665,1492,264 +9114,303.8,1540,257 +9115,303.8333333333333,1585,250 +9116,303.8666666666667,1626,242 +9117,303.9,1661,236 +9118,303.93333333333334,1691,230 +9119,303.96666666666664,1714,224 +9120,304.0,1729,221 +9121,304.0333333333333,1729,221 +9122,304.06666666666666,1729,221 +9123,304.1,1726,221 +9124,304.1333333333333,1709,224 +9125,304.1666666666667,1684,229 +9126,304.2,1653,235 +9127,304.23333333333335,1616,242 +9128,304.26666666666665,1575,249 +9129,304.3,1529,255 +9130,304.3333333333333,1480,262 +9131,304.3666666666667,1431,268 +9132,304.4,1384,273 +9133,304.43333333333334,1337,276 +9134,304.46666666666664,1291,277 +9135,304.5,1251,279 +9136,304.5333333333333,1215,280 +9137,304.56666666666666,1186,280 +9138,304.6,1162,280 +9139,304.6333333333333,1147,280 +9140,304.6666666666667,1144,280 +9141,304.7,1144,280 +9142,304.73333333333335,1144,280 +9143,304.76666666666665,1158,281 +9144,304.8,1180,281 +9145,304.8333333333333,1208,281 +9146,304.8666666666667,1242,281 +9147,304.9,1281,280 +9148,304.93333333333334,1326,278 +9149,304.96666666666664,1373,276 +9150,305.0,1420,272 +9151,305.0333333333333,1467,266 +9152,305.06666666666666,1517,260 +9153,305.1,1563,253 +9154,305.1333333333333,1606,246 +9155,305.1666666666667,1644,239 +9156,305.2,1677,232 +9157,305.23333333333335,1703,227 +9158,305.26666666666665,1722,223 +9159,305.3,1730,220 +9160,305.3333333333333,1730,220 +9161,305.3666666666667,1730,220 +9162,305.4,1717,223 +9163,305.43333333333334,1696,227 +9164,305.46666666666664,1668,233 +9165,305.5,1634,239 +9166,305.5333333333333,1594,246 +9167,305.56666666666666,1551,253 +9168,305.6,1503,260 +9169,305.6333333333333,1454,266 +9170,305.6666666666667,1408,271 +9171,305.7,1360,275 +9172,305.73333333333335,1313,277 +9173,305.76666666666665,1270,279 +9174,305.8,1232,280 +9175,305.8333333333333,1200,280 +9176,305.8666666666667,1173,280 +9177,305.9,1154,280 +9178,305.93333333333334,1142,280 +9179,305.96666666666664,1142,280 +9180,306.0,1142,280 +9181,306.0333333333333,1151,281 +9182,306.06666666666666,1169,281 +9183,306.1,1194,281 +9184,306.1333333333333,1225,281 +9185,306.1666666666667,1262,281 +9186,306.2,1305,280 +9187,306.23333333333335,1350,277 +9188,306.26666666666665,1398,274 +9189,306.3,1444,269 +9190,306.3333333333333,1493,263 +9191,306.3666666666667,1541,257 +9192,306.4,1586,250 +9193,306.43333333333334,1626,242 +9194,306.46666666666664,1661,235 +9195,306.5,1690,229 +9196,306.5333333333333,1713,225 +9197,306.56666666666666,1727,221 +9198,306.6,1727,221 +9199,306.6333333333333,1727,221 +9200,306.6666666666667,1723,221 +9201,306.7,1707,225 +9202,306.73333333333335,1682,230 +9203,306.76666666666665,1650,236 +9204,306.8,1613,243 +9205,306.8333333333333,1572,250 +9206,306.8666666666667,1526,256 +9207,306.9,1477,263 +9208,306.93333333333334,1428,269 +9209,306.96666666666664,1382,273 +9210,307.0,1336,276 +9211,307.0333333333333,1291,278 +9212,307.06666666666666,1250,279 +9213,307.1,1215,280 +9214,307.1333333333333,1186,280 +9215,307.1666666666667,1163,280 +9216,307.2,1148,280 +9217,307.23333333333335,1146,280 +9218,307.26666666666665,1146,280 +9219,307.3,1146,281 +9220,307.3333333333333,1160,281 +9221,307.3666666666667,1182,281 +9222,307.4,1210,281 +9223,307.43333333333334,1245,281 +9224,307.46666666666664,1284,280 +9225,307.5,1329,278 +9226,307.5333333333333,1375,276 +9227,307.56666666666666,1422,272 +9228,307.6,1469,266 +9229,307.6333333333333,1518,260 +9230,307.6666666666667,1564,253 +9231,307.7,1607,246 +9232,307.73333333333335,1644,238 +9233,307.76666666666665,1676,232 +9234,307.8,1702,227 +9235,307.8333333333333,1720,223 +9236,307.8666666666667,1728,220 +9237,307.9,1728,220 +9238,307.93333333333334,1728,220 +9239,307.96666666666664,1715,223 +9240,308.0,1694,228 +9241,308.0333333333333,1666,233 +9242,308.06666666666666,1631,239 +9243,308.1,1592,246 +9244,308.1333333333333,1548,253 +9245,308.1666666666667,1500,260 +9246,308.2,1452,266 +9247,308.23333333333335,1407,271 +9248,308.26666666666665,1358,275 +9249,308.3,1312,277 +9250,308.3333333333333,1269,279 +9251,308.3666666666667,1232,280 +9252,308.4,1200,280 +9253,308.43333333333334,1174,280 +9254,308.46666666666664,1155,280 +9255,308.5,1143,280 +9256,308.5333333333333,1143,280 +9257,308.56666666666666,1143,280 +9258,308.6,1153,280 +9259,308.6333333333333,1171,281 +9260,308.6666666666667,1196,281 +9261,308.7,1228,281 +9262,308.73333333333335,1265,281 +9263,308.76666666666665,1307,279 +9264,308.8,1352,277 +9265,308.8333333333333,1401,273 +9266,308.8666666666667,1446,269 +9267,308.9,1495,263 +9268,308.93333333333334,1542,256 +9269,308.96666666666664,1586,249 +9270,309.0,1626,242 +9271,309.0333333333333,1661,235 +9272,309.06666666666666,1690,229 +9273,309.1,1712,224 +9274,309.1333333333333,1727,221 +9275,309.1666666666667,1727,221 +9276,309.2,1727,221 +9277,309.23333333333335,1722,222 +9278,309.26666666666665,1704,225 +9279,309.3,1680,230 +9280,309.3333333333333,1648,236 +9281,309.3666666666667,1611,243 +9282,309.4,1570,250 +9283,309.43333333333334,1524,257 +9284,309.46666666666664,1475,263 +9285,309.5,1427,269 +9286,309.5333333333333,1381,273 +9287,309.56666666666666,1335,276 +9288,309.6,1290,278 +9289,309.6333333333333,1250,279 +9290,309.6666666666667,1215,280 +9291,309.7,1186,280 +9292,309.73333333333335,1164,280 +9293,309.76666666666665,1148,280 +9294,309.8,1147,280 +9295,309.8333333333333,1147,280 +9296,309.8666666666667,1147,280 +9297,309.9,1162,281 +9298,309.93333333333334,1184,281 +9299,309.96666666666664,1212,281 +9300,310.0,1247,281 +9301,310.0333333333333,1286,280 +9302,310.06666666666666,1330,278 +9303,310.1,1377,275 +9304,310.1333333333333,1423,272 +9305,310.1666666666667,1471,265 +9306,310.2,1520,259 +9307,310.23333333333335,1565,252 +9308,310.26666666666665,1607,245 +9309,310.3,1645,238 +9310,310.3333333333333,1676,232 +9311,310.3666666666667,1702,227 +9312,310.4,1720,222 +9313,310.43333333333334,1727,221 +9314,310.46666666666664,1727,221 +9315,310.5,1727,221 +9316,310.5333333333333,1713,223 +9317,310.56666666666666,1691,228 +9318,310.6,1663,234 +9319,310.6333333333333,1629,240 +9320,310.6666666666667,1590,247 +9321,310.7,1546,254 +9322,310.73333333333335,1499,261 +9323,310.76666666666665,1450,266 +9324,310.8,1405,272 +9325,310.8333333333333,1357,275 +9326,310.8666666666667,1311,277 +9327,310.9,1269,279 +9328,310.93333333333334,1232,280 +9329,310.96666666666664,1200,280 +9330,311.0,1174,280 +9331,311.0333333333333,1156,280 +9332,311.06666666666666,1144,280 +9333,311.1,1144,280 +9334,311.1333333333333,1144,280 +9335,311.1666666666667,1155,280 +9336,311.2,1173,281 +9337,311.23333333333335,1198,281 +9338,311.26666666666665,1230,281 +9339,311.3,1267,280 +9340,311.3333333333333,1309,279 +9341,311.3666666666667,1355,277 +9342,311.4,1402,274 +9343,311.43333333333334,1447,269 +9344,311.46666666666664,1496,262 +9345,311.5,1544,256 +9346,311.5333333333333,1587,249 +9347,311.56666666666666,1627,242 +9348,311.6,1662,235 +9349,311.6333333333333,1690,229 +9350,311.6666666666667,1712,224 +9351,311.7,1726,221 +9352,311.73333333333335,1726,221 +9353,311.76666666666665,1726,221 +9354,311.8,1720,222 +9355,311.8333333333333,1702,226 +9356,311.8666666666667,1677,231 +9357,311.9,1646,237 +9358,311.93333333333334,1609,244 +9359,311.96666666666664,1567,251 +9360,312.0,1522,257 +9361,312.0333333333333,1473,263 +9362,312.06666666666666,1425,270 +9363,312.1,1380,274 +9364,312.1333333333333,1333,277 +9365,312.1666666666667,1289,279 +9366,312.2,1249,280 +9367,312.23333333333335,1215,280 +9368,312.26666666666665,1186,280 +9369,312.3,1164,281 +9370,312.3333333333333,1149,281 +9371,312.3666666666667,1149,281 +9372,312.4,1149,281 +9373,312.43333333333334,1149,281 +9374,312.46666666666664,1164,281 +9375,312.5,1186,281 +9376,312.5333333333333,1214,281 +9377,312.56666666666666,1248,281 +9378,312.6,1288,280 +9379,312.6333333333333,1333,278 +9380,312.6666666666667,1379,275 +9381,312.7,1425,271 +9382,312.73333333333335,1472,265 +9383,312.76666666666665,1521,259 +9384,312.8,1566,252 +9385,312.8333333333333,1608,245 +9386,312.8666666666667,1645,238 +9387,312.9,1677,232 +9388,312.93333333333334,1702,227 +9389,312.96666666666664,1719,223 +9390,313.0,1725,221 +9391,313.0333333333333,1725,221 +9392,313.06666666666666,1725,221 +9393,313.1,1711,224 +9394,313.1333333333333,1690,228 +9395,313.1666666666667,1661,234 +9396,313.2,1627,241 +9397,313.23333333333335,1588,247 +9398,313.26666666666665,1544,254 +9399,313.3,1497,261 +9400,313.3333333333333,1448,267 +9401,313.3666666666667,1404,271 +9402,313.4,1356,275 +9403,313.43333333333334,1310,277 +9404,313.46666666666664,1268,279 +9405,313.5,1231,280 +9406,313.5333333333333,1200,280 +9407,313.56666666666666,1175,280 +9408,313.6,1156,280 +9409,313.6333333333333,1145,280 +9410,313.6666666666667,1145,280 +9411,313.7,1145,280 +9412,313.73333333333335,1157,281 +9413,313.76666666666665,1175,281 +9414,313.8,1200,281 +9415,313.8333333333333,1232,281 +9416,313.8666666666667,1269,280 +9417,313.9,1311,279 +9418,313.93333333333334,1356,276 +9419,313.96666666666664,1404,273 +9420,314.0,1449,268 +9421,314.0333333333333,1497,262 +9422,314.06666666666666,1545,255 +9423,314.1,1588,248 +9424,314.1333333333333,1627,241 +9425,314.1666666666667,1662,235 +9426,314.2,1690,229 +9427,314.23333333333335,1711,225 +9428,314.26666666666665,1725,221 +9429,314.3,1725,221 +9430,314.3333333333333,1725,221 +9431,314.3666666666667,1718,222 +9432,314.4,1701,226 +9433,314.43333333333334,1676,231 +9434,314.46666666666664,1644,237 +9435,314.5,1607,244 +9436,314.5333333333333,1565,251 +9437,314.56666666666666,1520,258 +9438,314.6,1471,264 +9439,314.6333333333333,1424,270 +9440,314.6666666666667,1379,274 +9441,314.7,1332,277 +9442,314.73333333333335,1288,279 +9443,314.76666666666665,1249,280 +9444,314.8,1215,280 +9445,314.8333333333333,1187,280 +9446,314.8666666666667,1165,280 +9447,314.9,1150,281 +9448,314.93333333333334,1150,281 +9449,314.96666666666664,1150,281 +9450,315.0,1151,281 +9451,315.0333333333333,1166,281 +9452,315.06666666666666,1188,281 +9453,315.1,1217,281 +9454,315.1333333333333,1251,281 +9455,315.1666666666667,1290,280 +9456,315.2,1334,278 +9457,315.23333333333335,1381,275 +9458,315.26666666666665,1426,271 +9459,315.3,1474,265 +9460,315.3333333333333,1522,259 +9461,315.3666666666667,1567,252 +9462,315.4,1608,245 +9463,315.43333333333334,1645,238 +9464,315.46666666666664,1677,232 +9465,315.5,1701,227 +9466,315.5333333333333,1718,223 +9467,315.56666666666666,1723,221 +9468,315.6,1723,221 +9469,315.6333333333333,1723,221 +9470,315.6666666666667,1710,224 +9471,315.7,1688,229 +9472,315.73333333333335,1659,235 +9473,315.76666666666665,1625,241 +9474,315.8,1586,248 +9475,315.8333333333333,1542,255 +9476,315.8666666666667,1495,261 +9477,315.9,1447,268 +9478,315.93333333333334,1402,272 +9479,315.96666666666664,1355,275 +9480,316.0,1309,278 +9481,316.0333333333333,1268,280 +9482,316.06666666666666,1231,281 +9483,316.1,1200,281 +9484,316.1333333333333,1175,281 +9485,316.1666666666667,1157,281 +9486,316.2,1147,281 +9487,316.23333333333335,1147,281 +9488,316.26666666666665,1147,281 +9489,316.3,1158,281 +9490,316.3333333333333,1177,281 +9491,316.3666666666667,1202,281 +9492,316.4,1234,281 +9493,316.43333333333334,1271,280 +9494,316.46666666666664,1313,279 +9495,316.5,1358,276 +9496,316.5333333333333,1406,273 +9497,316.56666666666666,1451,268 +9498,316.6,1499,262 +9499,316.6333333333333,1546,255 +9500,316.6666666666667,1589,248 +9501,316.7,1628,241 +9502,316.73333333333335,1662,235 +9503,316.76666666666665,1689,229 +9504,316.8,1710,224 +9505,316.8333333333333,1724,221 +9506,316.8666666666667,1724,221 +9507,316.9,1724,221 +9508,316.93333333333334,1717,223 +9509,316.96666666666664,1699,227 +9510,317.0,1674,232 +9511,317.0333333333333,1642,238 +9512,317.06666666666666,1605,244 +9513,317.1,1564,251 +9514,317.1333333333333,1518,258 +9515,317.1666666666667,1470,265 +9516,317.2,1423,270 +9517,317.23333333333335,1377,274 +9518,317.26666666666665,1331,277 +9519,317.3,1288,279 +9520,317.3333333333333,1249,280 +9521,317.3666666666667,1215,280 +9522,317.4,1187,280 +9523,317.43333333333334,1165,280 +9524,317.46666666666664,1151,280 +9525,317.5,1151,280 +9526,317.5333333333333,1151,280 +9527,317.56666666666666,1152,281 +9528,317.6,1168,281 +9529,317.6333333333333,1190,281 +9530,317.6666666666667,1218,281 +9531,317.7,1253,281 +9532,317.73333333333335,1292,279 +9533,317.76666666666665,1336,277 +9534,317.8,1383,274 +9535,317.8333333333333,1427,271 +9536,317.8666666666667,1475,264 +9537,317.9,1523,258 +9538,317.93333333333334,1568,252 +9539,317.96666666666664,1609,245 +9540,318.0,1646,238 +9541,318.0333333333333,1676,232 +9542,318.06666666666666,1701,227 +9543,318.1,1718,223 +9544,318.1333333333333,1722,221 +9545,318.1666666666667,1722,221 +9546,318.2,1722,221 +9547,318.23333333333335,1708,225 +9548,318.26666666666665,1686,229 +9549,318.3,1658,235 +9550,318.3333333333333,1623,241 +9551,318.3666666666667,1584,248 +9552,318.4,1541,255 +9553,318.43333333333334,1493,261 +9554,318.46666666666664,1446,268 +9555,318.5,1401,272 +9556,318.5333333333333,1354,276 +9557,318.56666666666666,1309,278 +9558,318.6,1267,280 +9559,318.6333333333333,1231,280 +9560,318.6666666666667,1200,281 +9561,318.7,1176,281 +9562,318.73333333333335,1158,281 +9563,318.76666666666665,1148,281 +9564,318.8,1148,281 +9565,318.8333333333333,1148,281 +9566,318.8666666666667,1160,281 +9567,318.9,1179,281 +9568,318.93333333333334,1204,281 +9569,318.96666666666664,1236,281 +9570,319.0,1273,280 +9571,319.0333333333333,1315,278 +9572,319.06666666666666,1360,276 +9573,319.1,1407,272 +9574,319.1333333333333,1452,267 +9575,319.1666666666667,1499,261 +9576,319.2,1547,255 +9577,319.23333333333335,1589,248 +9578,319.26666666666665,1628,241 +9579,319.3,1662,235 +9580,319.3333333333333,1689,229 +9581,319.3666666666667,1709,225 +9582,319.4,1722,222 +9583,319.43333333333334,1722,222 +9584,319.46666666666664,1722,222 +9585,319.5,1714,223 +9586,319.5333333333333,1696,227 +9587,319.56666666666666,1671,232 +9588,319.6,1640,238 +9589,319.6333333333333,1603,245 +9590,319.6666666666667,1561,252 +9591,319.7,1516,258 +9592,319.73333333333335,1468,264 +9593,319.76666666666665,1421,271 +9594,319.8,1376,274 +9595,319.8333333333333,1330,277 +9596,319.8666666666667,1287,279 +9597,319.9,1248,280 +9598,319.93333333333334,1215,281 +9599,319.96666666666664,1187,281 +9600,320.0,1166,281 +9601,320.0333333333333,1152,281 +9602,320.06666666666666,1152,281 +9603,320.1,1152,281 +9604,320.1333333333333,1154,281 +9605,320.1666666666667,1170,281 +9606,320.2,1192,281 +9607,320.23333333333335,1221,281 +9608,320.26666666666665,1255,281 +9609,320.3,1295,279 +9610,320.3333333333333,1338,277 +9611,320.3666666666667,1384,274 +9612,320.4,1429,270 +9613,320.43333333333334,1477,264 +9614,320.46666666666664,1525,258 +9615,320.5,1569,251 +9616,320.5333333333333,1609,245 +9617,320.56666666666666,1646,238 +9618,320.6,1676,232 +9619,320.6333333333333,1700,227 +9620,320.6666666666667,1717,223 +9621,320.7,1720,223 +9622,320.73333333333335,1720,223 +9623,320.76666666666665,1720,223 +9624,320.8,1706,226 +9625,320.8333333333333,1684,230 +9626,320.8666666666667,1655,236 +9627,320.9,1620,242 +9628,320.93333333333334,1581,249 +9629,320.96666666666664,1538,256 +9630,321.0,1491,262 +9631,321.0333333333333,1444,268 +9632,321.06666666666666,1399,272 +9633,321.1,1352,276 +9634,321.1333333333333,1308,278 +9635,321.1666666666667,1267,280 +9636,321.2,1231,281 +9637,321.23333333333335,1200,281 +9638,321.26666666666665,1176,281 +9639,321.3,1158,281 +9640,321.3333333333333,1150,281 +9641,321.3666666666667,1150,281 +9642,321.4,1150,281 +9643,321.43333333333334,1162,281 +9644,321.46666666666664,1181,281 +9645,321.5,1206,281 +9646,321.5333333333333,1238,281 +9647,321.56666666666666,1275,280 +9648,321.6,1317,278 +9649,321.6333333333333,1362,276 +9650,321.6666666666667,1409,272 +9651,321.7,1454,267 +9652,321.73333333333335,1500,261 +9653,321.76666666666665,1547,254 +9654,321.8,1590,248 +9655,321.8333333333333,1628,241 +9656,321.8666666666667,1661,235 +9657,321.9,1688,229 +9658,321.93333333333334,1708,225 +9659,321.96666666666664,1721,222 +9660,322.0,1721,222 +9661,322.0333333333333,1721,222 +9662,322.06666666666666,1712,224 +9663,322.1,1694,228 +9664,322.1333333333333,1669,233 +9665,322.1666666666667,1637,239 +9666,322.2,1600,245 +9667,322.23333333333335,1559,252 +9668,322.26666666666665,1514,259 +9669,322.3,1466,265 +9670,322.3333333333333,1420,271 +9671,322.3666666666667,1375,274 +9672,322.4,1330,277 +9673,322.43333333333334,1287,279 +9674,322.46666666666664,1248,280 +9675,322.5,1215,280 +9676,322.5333333333333,1188,280 +9677,322.56666666666666,1167,280 +9678,322.6,1154,280 +9679,322.6333333333333,1154,280 +9680,322.6666666666667,1154,280 +9681,322.7,1156,280 +9682,322.73333333333335,1172,281 +9683,322.76666666666665,1194,281 +9684,322.8,1223,281 +9685,322.8333333333333,1257,280 +9686,322.8666666666667,1297,279 +9687,322.9,1341,277 +9688,322.93333333333334,1386,273 +9689,322.96666666666664,1431,270 +9690,323.0,1478,264 +9691,323.0333333333333,1526,258 +9692,323.06666666666666,1570,251 +9693,323.1,1610,244 +9694,323.1333333333333,1645,237 +9695,323.1666666666667,1675,232 +9696,323.2,1699,227 +9697,323.23333333333335,1715,223 +9698,323.26666666666665,1718,223 +9699,323.3,1718,223 +9700,323.3333333333333,1718,223 +9701,323.3666666666667,1703,226 +9702,323.4,1681,231 +9703,323.43333333333334,1653,236 +9704,323.46666666666664,1618,242 +9705,323.5,1579,249 +9706,323.5333333333333,1536,256 +9707,323.56666666666666,1489,262 +9708,323.6,1442,269 +9709,323.6333333333333,1398,272 +9710,323.6666666666667,1351,276 +9711,323.7,1307,278 +9712,323.73333333333335,1266,280 +9713,323.76666666666665,1231,280 +9714,323.8,1201,281 +9715,323.8333333333333,1177,281 +9716,323.8666666666667,1160,281 +9717,323.9,1152,281 +9718,323.93333333333334,1152,281 +9719,323.96666666666664,1152,281 +9720,324.0,1164,281 +9721,324.0333333333333,1183,281 +9722,324.06666666666666,1209,281 +9723,324.1,1241,281 +9724,324.1333333333333,1278,279 +9725,324.1666666666667,1320,278 +9726,324.2,1364,275 +9727,324.23333333333335,1410,272 +9728,324.26666666666665,1455,267 +9729,324.3,1501,261 +9730,324.3333333333333,1548,254 +9731,324.3666666666667,1590,248 +9732,324.4,1628,241 +9733,324.43333333333334,1661,235 +9734,324.46666666666664,1687,230 +9735,324.5,1707,225 +9736,324.5333333333333,1719,223 +9737,324.56666666666666,1719,223 +9738,324.6,1719,223 +9739,324.6333333333333,1709,225 +9740,324.6666666666667,1691,228 +9741,324.7,1666,234 +9742,324.73333333333335,1634,240 +9743,324.76666666666665,1598,246 +9744,324.8,1556,253 +9745,324.8333333333333,1511,260 +9746,324.8666666666667,1464,266 +9747,324.9,1418,271 +9748,324.93333333333334,1373,275 +9749,324.96666666666664,1328,277 +9750,325.0,1286,279 +9751,325.0333333333333,1248,280 +9752,325.06666666666666,1215,281 +9753,325.1,1188,281 +9754,325.1333333333333,1168,281 +9755,325.1666666666667,1155,281 +9756,325.2,1155,281 +9757,325.23333333333335,1155,281 +9758,325.26666666666665,1158,281 +9759,325.3,1174,281 +9760,325.3333333333333,1197,281 +9761,325.3666666666667,1225,281 +9762,325.4,1260,280 +9763,325.43333333333334,1299,279 +9764,325.46666666666664,1343,277 +9765,325.5,1388,273 +9766,325.5333333333333,1433,270 +9767,325.56666666666666,1479,264 +9768,325.6,1527,258 +9769,325.6333333333333,1570,251 +9770,325.6666666666667,1610,244 +9771,325.7,1645,238 +9772,325.73333333333335,1675,232 +9773,325.76666666666665,1698,227 +9774,325.8,1713,224 +9775,325.8333333333333,1715,223 +9776,325.8666666666667,1715,223 +9777,325.9,1715,223 +9778,325.93333333333334,1700,227 +9779,325.96666666666664,1678,231 +9780,326.0,1650,237 +9781,326.0333333333333,1615,243 +9782,326.06666666666666,1576,250 +9783,326.1,1533,257 +9784,326.1333333333333,1487,263 +9785,326.1666666666667,1440,269 +9786,326.2,1396,272 +9787,326.23333333333335,1350,276 +9788,326.26666666666665,1306,278 +9789,326.3,1266,280 +9790,326.3333333333333,1231,281 +9791,326.3666666666667,1201,281 +9792,326.4,1178,281 +9793,326.43333333333334,1161,281 +9794,326.46666666666664,1154,281 +9795,326.5,1154,281 +9796,326.5333333333333,1154,281 +9797,326.56666666666666,1167,281 +9798,326.6,1186,281 +9799,326.6333333333333,1212,281 +9800,326.6666666666667,1243,280 +9801,326.7,1280,279 +9802,326.73333333333335,1323,277 +9803,326.76666666666665,1367,275 +9804,326.8,1412,272 +9805,326.8333333333333,1457,267 +9806,326.8666666666667,1504,261 +9807,326.9,1549,254 +9808,326.93333333333334,1591,248 +9809,326.96666666666664,1628,241 +9810,327.0,1660,235 +9811,327.0333333333333,1687,230 +9812,327.06666666666666,1706,225 +9813,327.1,1718,223 +9814,327.1333333333333,1718,223 +9815,327.1666666666667,1718,223 +9816,327.2,1707,225 +9817,327.23333333333335,1688,229 +9818,327.26666666666665,1663,234 +9819,327.3,1631,240 +9820,327.3333333333333,1595,247 +9821,327.3666666666667,1554,254 +9822,327.4,1509,260 +9823,327.43333333333334,1462,266 +9824,327.46666666666664,1416,271 +9825,327.5,1372,274 +9826,327.5333333333333,1328,277 +9827,327.56666666666666,1285,279 +9828,327.6,1248,280 +9829,327.6333333333333,1215,281 +9830,327.6666666666667,1189,281 +9831,327.7,1169,281 +9832,327.73333333333335,1156,281 +9833,327.76666666666665,1156,281 +9834,327.8,1156,281 +9835,327.8333333333333,1161,281 +9836,327.8666666666667,1177,281 +9837,327.9,1199,281 +9838,327.93333333333334,1228,281 +9839,327.96666666666664,1263,280 +9840,328.0,1303,278 +9841,328.0333333333333,1346,276 +9842,328.06666666666666,1391,273 +9843,328.1,1435,269 +9844,328.1333333333333,1481,263 +9845,328.1666666666667,1528,257 +9846,328.2,1571,251 +9847,328.23333333333335,1611,244 +9848,328.26666666666665,1645,238 +9849,328.3,1674,232 +9850,328.3333333333333,1697,228 +9851,328.3666666666667,1712,224 +9852,328.4,1713,224 +9853,328.43333333333334,1713,224 +9854,328.46666666666664,1713,224 +9855,328.5,1698,228 +9856,328.5333333333333,1675,232 +9857,328.56666666666666,1647,238 +9858,328.6,1612,244 +9859,328.6333333333333,1574,251 +9860,328.6666666666667,1530,257 +9861,328.7,1484,263 +9862,328.73333333333335,1437,269 +9863,328.76666666666665,1394,272 +9864,328.8,1348,276 +9865,328.8333333333333,1305,279 +9866,328.8666666666667,1265,280 +9867,328.9,1231,281 +9868,328.93333333333334,1202,281 +9869,328.96666666666664,1179,281 +9870,329.0,1162,281 +9871,329.0333333333333,1156,281 +9872,329.06666666666666,1156,281 +9873,329.1,1156,281 +9874,329.1333333333333,1169,281 +9875,329.1666666666667,1189,281 +9876,329.2,1214,280 +9877,329.23333333333335,1246,280 +9878,329.26666666666665,1283,279 +9879,329.3,1325,277 +9880,329.3333333333333,1369,274 +9881,329.3666666666667,1414,271 +9882,329.4,1459,266 +9883,329.43333333333334,1505,260 +9884,329.46666666666664,1551,253 +9885,329.5,1592,247 +9886,329.5333333333333,1629,241 +9887,329.56666666666666,1660,235 +9888,329.6,1686,230 +9889,329.6333333333333,1705,226 +9890,329.6666666666667,1716,223 +9891,329.7,1716,223 +9892,329.73333333333335,1716,223 +9893,329.76666666666665,1705,226 +9894,329.8,1686,230 +9895,329.8333333333333,1660,235 +9896,329.8666666666667,1629,241 +9897,329.9,1592,248 +9898,329.93333333333334,1551,254 +9899,329.96666666666664,1506,261 +9900,330.0,1460,266 +9901,330.0333333333333,1415,272 +9902,330.06666666666666,1370,275 +9903,330.1,1326,278 +9904,330.1333333333333,1284,280 +9905,330.1666666666667,1247,281 +9906,330.2,1215,281 +9907,330.23333333333335,1190,281 +9908,330.26666666666665,1170,281 +9909,330.3,1157,281 +9910,330.3333333333333,1157,281 +9911,330.3666666666667,1157,281 +9912,330.4,1163,281 +9913,330.43333333333334,1179,281 +9914,330.46666666666664,1202,281 +9915,330.5,1231,281 +9916,330.5333333333333,1265,280 +9917,330.56666666666666,1305,278 +9918,330.6,1348,276 +9919,330.6333333333333,1393,272 +9920,330.6666666666667,1437,269 +9921,330.7,1484,262 +9922,330.73333333333335,1529,257 +9923,330.76666666666665,1572,250 +9924,330.8,1611,244 +9925,330.8333333333333,1645,238 +9926,330.8666666666667,1674,232 +9927,330.9,1696,228 +9928,330.93333333333334,1711,224 +9929,330.96666666666664,1711,224 +9930,331.0,1711,224 +9931,331.0333333333333,1710,224 +9932,331.06666666666666,1695,228 +9933,331.1,1673,232 +9934,331.1333333333333,1644,238 +9935,331.1666666666667,1609,244 +9936,331.2,1570,251 +9937,331.23333333333335,1528,257 +9938,331.26666666666665,1481,263 +9939,331.3,1435,269 +9940,331.3333333333333,1392,273 +9941,331.3666666666667,1347,276 +9942,331.4,1304,278 +9943,331.43333333333334,1265,280 +9944,331.46666666666664,1230,281 +9945,331.5,1202,281 +9946,331.5333333333333,1179,281 +9947,331.56666666666666,1163,281 +9948,331.6,1159,281 +9949,331.6333333333333,1159,281 +9950,331.6666666666667,1159,281 +9951,331.7,1172,281 +9952,331.73333333333335,1191,281 +9953,331.76666666666665,1217,281 +9954,331.8,1249,280 +9955,331.8333333333333,1286,279 +9956,331.8666666666667,1328,277 +9957,331.9,1372,274 +9958,331.93333333333334,1416,271 +9959,331.96666666666664,1461,265 +9960,332.0,1507,260 +9961,332.0333333333333,1552,253 +9962,332.06666666666666,1593,247 +9963,332.1,1629,241 +9964,332.1333333333333,1660,235 +9965,332.1666666666667,1686,230 +9966,332.2,1704,226 +9967,332.23333333333335,1714,224 +9968,332.26666666666665,1714,224 +9969,332.3,1714,224 +9970,332.3333333333333,1702,227 +9971,332.3666666666667,1683,231 +9972,332.4,1658,236 +9973,332.43333333333334,1626,242 +9974,332.46666666666664,1589,248 +9975,332.5,1548,255 +9976,332.5333333333333,1503,261 +9977,332.56666666666666,1457,267 +9978,332.6,1412,272 +9979,332.6333333333333,1368,275 +9980,332.6666666666667,1325,278 +9981,332.7,1283,280 +9982,332.73333333333335,1247,281 +9983,332.76666666666665,1215,281 +9984,332.8,1190,281 +9985,332.8333333333333,1171,281 +9986,332.8666666666667,1159,281 +9987,332.9,1159,281 +9988,332.93333333333334,1159,281 +9989,332.96666666666664,1165,281 +9990,333.0,1182,281 +9991,333.0333333333333,1205,281 +9992,333.06666666666666,1234,281 +9993,333.1,1268,280 +9994,333.1333333333333,1308,278 +9995,333.1666666666667,1351,276 +9996,333.2,1397,272 +9997,333.23333333333335,1439,268 +9998,333.26666666666665,1486,263 +9999,333.3,1531,257 +10000,333.3333333333333,1574,250 +10001,333.3666666666667,1612,244 +10002,333.4,1646,238 +10003,333.43333333333334,1674,232 +10004,333.46666666666664,1695,228 +10005,333.5,1710,225 +10006,333.5333333333333,1710,225 +10007,333.56666666666666,1710,225 +10008,333.6,1708,225 +10009,333.6333333333333,1692,229 +10010,333.6666666666667,1670,233 +10011,333.7,1641,239 +10012,333.73333333333335,1606,245 +10013,333.76666666666665,1568,252 +10014,333.8,1525,258 +10015,333.8333333333333,1479,264 +10016,333.8666666666667,1432,270 +10017,333.9,1389,274 +10018,333.93333333333334,1345,277 +10019,333.96666666666664,1303,279 +10020,334.0,1264,280 +10021,334.0333333333333,1230,281 +10022,334.06666666666666,1202,281 +10023,334.1,1180,281 +10024,334.1333333333333,1164,281 +10025,334.1666666666667,1160,281 +10026,334.2,1160,281 +10027,334.23333333333335,1160,281 +10028,334.26666666666665,1173,281 +10029,334.3,1193,281 +10030,334.3333333333333,1220,281 +10031,334.3666666666667,1251,280 +10032,334.4,1289,279 +10033,334.43333333333334,1331,277 +10034,334.46666666666664,1374,274 +10035,334.5,1418,271 +10036,334.5333333333333,1463,265 +10037,334.56666666666666,1509,260 +10038,334.6,1554,253 +10039,334.6333333333333,1594,247 +10040,334.6666666666667,1630,241 +10041,334.7,1660,235 +10042,334.73333333333335,1685,230 +10043,334.76666666666665,1703,226 +10044,334.8,1712,224 +10045,334.8333333333333,1712,224 +10046,334.8666666666667,1712,224 +10047,334.9,1700,227 +10048,334.93333333333334,1681,231 +10049,334.96666666666664,1655,236 +10050,335.0,1623,242 +10051,335.0333333333333,1586,249 +10052,335.06666666666666,1546,255 +10053,335.1,1500,261 +10054,335.1333333333333,1455,267 +10055,335.1666666666667,1411,272 +10056,335.2,1367,275 +10057,335.23333333333335,1324,278 +10058,335.26666666666665,1282,280 +10059,335.3,1246,281 +10060,335.3333333333333,1215,281 +10061,335.3666666666667,1190,281 +10062,335.4,1171,281 +10063,335.43333333333334,1159,281 +10064,335.46666666666664,1159,281 +10065,335.5,1159,281 +10066,335.5333333333333,1167,281 +10067,335.56666666666666,1184,281 +10068,335.6,1207,281 +10069,335.6333333333333,1236,280 +10070,335.6666666666667,1271,279 +10071,335.7,1311,278 +10072,335.73333333333335,1354,275 +10073,335.76666666666665,1399,272 +10074,335.8,1442,268 +10075,335.8333333333333,1487,262 +10076,335.8666666666667,1533,256 +10077,335.9,1575,250 +10078,335.93333333333334,1613,244 +10079,335.96666666666664,1646,238 +10080,336.0,1674,232 +10081,336.0333333333333,1695,228 +10082,336.06666666666666,1709,225 +10083,336.1,1709,225 +10084,336.1333333333333,1709,225 +10085,336.1666666666667,1706,226 +10086,336.2,1690,230 +10087,336.23333333333335,1667,234 +10088,336.26666666666665,1638,240 +10089,336.3,1604,246 +10090,336.3333333333333,1565,252 +10091,336.3666666666667,1523,258 +10092,336.4,1476,264 +10093,336.43333333333334,1430,270 +10094,336.46666666666664,1387,274 +10095,336.5,1344,277 +10096,336.5333333333333,1301,279 +10097,336.56666666666666,1263,281 +10098,336.6,1229,281 +10099,336.6333333333333,1201,281 +10100,336.6666666666667,1180,281 +10101,336.7,1165,281 +10102,336.73333333333335,1162,281 +10103,336.76666666666665,1162,281 +10104,336.8,1162,281 +10105,336.8333333333333,1175,281 +10106,336.8666666666667,1196,281 +10107,336.9,1222,280 +10108,336.93333333333334,1254,280 +10109,336.96666666666664,1291,279 +10110,337.0,1333,277 +10111,337.0333333333333,1377,274 +10112,337.06666666666666,1420,270 +10113,337.1,1465,265 +10114,337.1333333333333,1511,259 +10115,337.1666666666667,1556,253 +10116,337.2,1595,247 +10117,337.23333333333335,1631,241 +10118,337.26666666666665,1661,235 +10119,337.3,1685,230 +10120,337.3333333333333,1702,226 +10121,337.3666666666667,1711,225 +10122,337.4,1711,225 +10123,337.43333333333334,1711,225 +10124,337.46666666666664,1698,228 +10125,337.5,1679,232 +10126,337.5333333333333,1653,237 +10127,337.56666666666666,1620,243 +10128,337.6,1584,250 +10129,337.6333333333333,1543,256 +10130,337.6666666666667,1498,262 +10131,337.7,1452,268 +10132,337.73333333333335,1409,272 +10133,337.76666666666665,1365,276 +10134,337.8,1322,278 +10135,337.8333333333333,1281,280 +10136,337.8666666666667,1245,281 +10137,337.9,1215,281 +10138,337.93333333333334,1190,281 +10139,337.96666666666664,1172,281 +10140,338.0,1160,281 +10141,338.0333333333333,1160,281 +10142,338.06666666666666,1160,281 +10143,338.1,1169,281 +10144,338.1333333333333,1186,281 +10145,338.1666666666667,1210,281 +10146,338.2,1239,280 +10147,338.23333333333335,1274,279 +10148,338.26666666666665,1313,278 +10149,338.3,1357,275 +10150,338.3333333333333,1401,271 +10151,338.3666666666667,1444,268 +10152,338.4,1490,262 +10153,338.43333333333334,1535,256 +10154,338.46666666666664,1576,250 +10155,338.5,1614,244 +10156,338.5333333333333,1647,237 +10157,338.56666666666666,1674,232 +10158,338.6,1695,228 +10159,338.6333333333333,1709,225 +10160,338.6666666666667,1709,225 +10161,338.7,1709,225 +10162,338.73333333333335,1705,226 +10163,338.76666666666665,1688,230 +10164,338.8,1665,234 +10165,338.8333333333333,1636,240 +10166,338.8666666666667,1602,247 +10167,338.9,1562,253 +10168,338.93333333333334,1520,259 +10169,338.96666666666664,1474,265 +10170,339.0,1428,270 +10171,339.0333333333333,1385,274 +10172,339.06666666666666,1342,277 +10173,339.1,1299,279 +10174,339.1333333333333,1262,281 +10175,339.1666666666667,1228,281 +10176,339.2,1201,281 +10177,339.23333333333335,1180,281 +10178,339.26666666666665,1165,281 +10179,339.3,1164,280 +10180,339.3333333333333,1164,280 +10181,339.3666666666667,1164,280 +10182,339.4,1177,280 +10183,339.43333333333334,1198,280 +10184,339.46666666666664,1224,280 +10185,339.5,1257,279 +10186,339.5333333333333,1294,278 +10187,339.56666666666666,1336,276 +10188,339.6,1379,273 +10189,339.6333333333333,1423,269 +10190,339.6666666666667,1468,264 +10191,339.7,1513,259 +10192,339.73333333333335,1557,252 +10193,339.76666666666665,1596,246 +10194,339.8,1632,240 +10195,339.8333333333333,1662,235 +10196,339.8666666666667,1686,230 +10197,339.9,1703,226 +10198,339.93333333333334,1709,225 +10199,339.96666666666664,1709,225 +10200,340.0,1709,225 +10201,340.0333333333333,1697,228 +10202,340.06666666666666,1677,232 +10203,340.1,1650,238 +10204,340.1333333333333,1618,244 +10205,340.1666666666667,1581,250 +10206,340.2,1540,256 +10207,340.23333333333335,1495,262 +10208,340.26666666666665,1450,268 +10209,340.3,1407,273 +10210,340.3333333333333,1363,276 +10211,340.3666666666667,1320,278 +10212,340.4,1279,280 +10213,340.43333333333334,1244,281 +10214,340.46666666666664,1214,281 +10215,340.5,1190,281 +10216,340.5333333333333,1172,281 +10217,340.56666666666666,1161,281 +10218,340.6,1161,281 +10219,340.6333333333333,1161,281 +10220,340.6666666666667,1170,281 +10221,340.7,1188,281 +10222,340.73333333333335,1211,281 +10223,340.76666666666665,1241,280 +10224,340.8,1276,279 +10225,340.8333333333333,1316,277 +10226,340.8666666666667,1359,275 +10227,340.9,1403,272 +10228,340.93333333333334,1446,267 +10229,340.96666666666664,1492,262 +10230,341.0,1537,255 +10231,341.0333333333333,1578,249 +10232,341.06666666666666,1615,243 +10233,341.1,1648,238 +10234,341.1333333333333,1674,232 +10235,341.1666666666667,1695,228 +10236,341.2,1708,226 +10237,341.23333333333335,1708,226 +10238,341.26666666666665,1708,226 +10239,341.3,1703,227 +10240,341.3333333333333,1686,231 +10241,341.3666666666667,1663,235 +10242,341.4,1634,241 +10243,341.43333333333334,1599,247 +10244,341.46666666666664,1560,253 +10245,341.5,1517,260 +10246,341.5333333333333,1471,266 +10247,341.56666666666666,1427,271 +10248,341.6,1384,275 +10249,341.6333333333333,1340,277 +10250,341.6666666666667,1298,279 +10251,341.7,1261,280 +10252,341.73333333333335,1228,281 +10253,341.76666666666665,1201,281 +10254,341.8,1180,281 +10255,341.8333333333333,1166,281 +10256,341.8666666666667,1165,281 +10257,341.9,1165,280 +10258,341.93333333333334,1165,280 +10259,341.96666666666664,1179,280 +10260,342.0,1200,280 +10261,342.0333333333333,1227,280 +10262,342.06666666666666,1259,279 +10263,342.1,1297,278 +10264,342.1333333333333,1338,276 +10265,342.1666666666667,1382,273 +10266,342.2,1425,269 +10267,342.23333333333335,1470,264 +10268,342.26666666666665,1515,258 +10269,342.3,1559,252 +10270,342.3333333333333,1598,246 +10271,342.3666666666667,1633,240 +10272,342.4,1662,235 +10273,342.43333333333334,1686,230 +10274,342.46666666666664,1702,227 +10275,342.5,1708,226 +10276,342.5333333333333,1708,226 +10277,342.56666666666666,1708,226 +10278,342.6,1695,229 +10279,342.6333333333333,1674,233 +10280,342.6666666666667,1648,238 +10281,342.7,1616,244 +10282,342.73333333333335,1579,250 +10283,342.76666666666665,1538,257 +10284,342.8,1493,263 +10285,342.8333333333333,1447,269 +10286,342.8666666666667,1405,273 +10287,342.9,1361,276 +10288,342.93333333333334,1318,279 +10289,342.96666666666664,1278,280 +10290,343.0,1243,281 +10291,343.0333333333333,1213,281 +10292,343.06666666666666,1190,281 +10293,343.1,1172,281 +10294,343.1333333333333,1162,281 +10295,343.1666666666667,1162,280 +10296,343.2,1162,280 +10297,343.23333333333335,1172,280 +10298,343.26666666666665,1189,280 +10299,343.3,1213,280 +10300,343.3333333333333,1243,280 +10301,343.3666666666667,1278,279 +10302,343.4,1318,277 +10303,343.43333333333334,1361,275 +10304,343.46666666666664,1405,271 +10305,343.5,1447,267 +10306,343.5333333333333,1493,261 +10307,343.56666666666666,1538,255 +10308,343.6,1579,249 +10309,343.6333333333333,1616,243 +10310,343.6666666666667,1648,237 +10311,343.7,1674,232 +10312,343.73333333333335,1694,228 +10313,343.76666666666665,1707,225 +10314,343.8,1707,225 +10315,343.8333333333333,1707,225 +10316,343.8666666666667,1701,227 +10317,343.9,1684,231 +10318,343.93333333333334,1661,235 +10319,343.96666666666664,1631,242 +10320,344.0,1597,247 +10321,344.0333333333333,1558,254 +10322,344.06666666666666,1514,260 +10323,344.1,1469,265 +10324,344.1333333333333,1425,270 +10325,344.1666666666667,1382,275 +10326,344.2,1338,277 +10327,344.23333333333335,1297,279 +10328,344.26666666666665,1260,281 +10329,344.3,1227,281 +10330,344.3333333333333,1201,281 +10331,344.3666666666667,1180,281 +10332,344.4,1166,281 +10333,344.43333333333334,1166,281 +10334,344.46666666666664,1166,281 +10335,344.5,1166,281 +10336,344.5333333333333,1180,280 +10337,344.56666666666666,1202,280 +10338,344.6,1228,280 +10339,344.6333333333333,1261,279 +10340,344.6666666666667,1298,278 +10341,344.7,1340,276 +10342,344.73333333333335,1383,273 +10343,344.76666666666665,1426,269 +10344,344.8,1471,263 +10345,344.8333333333333,1516,258 +10346,344.8666666666667,1559,252 +10347,344.9,1598,246 +10348,344.93333333333334,1632,240 +10349,344.96666666666664,1662,235 +10350,345.0,1685,230 +10351,345.0333333333333,1701,227 +10352,345.06666666666666,1706,226 +10353,345.1,1706,226 +10354,345.1333333333333,1706,226 +10355,345.1666666666667,1693,229 +10356,345.2,1673,234 +10357,345.23333333333335,1646,239 +10358,345.26666666666665,1614,245 +10359,345.3,1577,251 +10360,345.3333333333333,1536,257 +10361,345.3666666666667,1491,263 +10362,345.4,1446,269 +10363,345.43333333333334,1404,273 +10364,345.46666666666664,1359,277 +10365,345.5,1317,279 +10366,345.5333333333333,1277,280 +10367,345.56666666666666,1242,281 +10368,345.6,1213,281 +10369,345.6333333333333,1190,281 +10370,345.6666666666667,1172,281 +10371,345.7,1163,281 +10372,345.73333333333335,1163,281 +10373,345.76666666666665,1163,281 +10374,345.8,1173,280 +10375,345.8333333333333,1191,280 +10376,345.8666666666667,1215,280 +10377,345.9,1245,280 +10378,345.93333333333334,1280,278 +10379,345.96666666666664,1320,277 +10380,346.0,1363,274 +10381,346.0333333333333,1407,271 +10382,346.06666666666666,1449,266 +10383,346.1,1495,261 +10384,346.1333333333333,1539,255 +10385,346.1666666666667,1579,249 +10386,346.2,1616,243 +10387,346.23333333333335,1648,237 +10388,346.26666666666665,1674,232 +10389,346.3,1694,229 +10390,346.3333333333333,1706,226 +10391,346.3666666666667,1706,226 +10392,346.4,1706,226 +10393,346.43333333333334,1699,228 +10394,346.46666666666664,1682,231 +10395,346.5,1659,236 +10396,346.5333333333333,1629,242 +10397,346.56666666666666,1595,248 +10398,346.6,1556,254 +10399,346.6333333333333,1512,260 +10400,346.6666666666667,1468,266 +10401,346.7,1423,271 +10402,346.73333333333335,1380,275 +10403,346.76666666666665,1337,277 +10404,346.8,1296,279 +10405,346.8333333333333,1259,281 +10406,346.8666666666667,1227,281 +10407,346.9,1201,281 +10408,346.93333333333334,1181,281 +10409,346.96666666666664,1167,281 +10410,347.0,1167,280 +10411,347.0333333333333,1167,280 +10412,347.06666666666666,1168,280 +10413,347.1,1182,280 +10414,347.1333333333333,1203,280 +10415,347.1666666666667,1231,280 +10416,347.2,1263,279 +10417,347.23333333333335,1301,278 +10418,347.26666666666665,1343,276 +10419,347.3,1386,273 +10420,347.3333333333333,1428,268 +10421,347.3666666666667,1473,263 +10422,347.4,1518,258 +10423,347.43333333333334,1561,252 +10424,347.46666666666664,1599,246 +10425,347.5,1633,240 +10426,347.5333333333333,1662,235 +10427,347.56666666666666,1685,230 +10428,347.6,1700,227 +10429,347.6333333333333,1704,227 +10430,347.6666666666667,1704,227 +10431,347.7,1704,227 +10432,347.73333333333335,1691,230 +10433,347.76666666666665,1670,234 +10434,347.8,1644,239 +10435,347.8333333333333,1612,246 +10436,347.8666666666667,1575,251 +10437,347.9,1534,258 +10438,347.93333333333334,1489,263 +10439,347.96666666666664,1444,270 +10440,348.0,1403,274 +10441,348.0333333333333,1358,277 +10442,348.06666666666666,1316,279 +10443,348.1,1277,280 +10444,348.1333333333333,1242,281 +10445,348.1666666666667,1214,281 +10446,348.2,1190,281 +10447,348.23333333333335,1174,281 +10448,348.26666666666665,1165,280 +10449,348.3,1165,280 +10450,348.3333333333333,1165,280 +10451,348.3666666666667,1176,280 +10452,348.4,1194,280 +10453,348.43333333333334,1218,280 +10454,348.46666666666664,1248,279 +10455,348.5,1283,278 +10456,348.5333333333333,1323,277 +10457,348.56666666666666,1365,274 +10458,348.6,1409,271 +10459,348.6333333333333,1451,267 +10460,348.6666666666667,1496,261 +10461,348.7,1541,255 +10462,348.73333333333335,1581,249 +10463,348.76666666666665,1617,243 +10464,348.8,1648,237 +10465,348.8333333333333,1674,233 +10466,348.8666666666667,1693,229 +10467,348.9,1705,226 +10468,348.93333333333334,1705,226 +10469,348.96666666666664,1705,226 +10470,349.0,1698,229 +10471,349.0333333333333,1680,232 +10472,349.06666666666666,1657,237 +10473,349.1,1627,243 +10474,349.1333333333333,1592,249 +10475,349.1666666666667,1553,255 +10476,349.2,1510,261 +10477,349.23333333333335,1465,266 +10478,349.26666666666665,1422,272 +10479,349.3,1379,275 +10480,349.3333333333333,1336,278 +10481,349.3666666666667,1296,280 +10482,349.4,1259,281 +10483,349.43333333333334,1227,281 +10484,349.46666666666664,1201,281 +10485,349.5,1181,281 +10486,349.5333333333333,1168,281 +10487,349.56666666666666,1168,281 +10488,349.6,1168,281 +10489,349.6333333333333,1170,281 +10490,349.6666666666667,1184,280 +10491,349.7,1205,280 +10492,349.73333333333335,1233,280 +10493,349.76666666666665,1265,279 +10494,349.8,1303,278 +10495,349.8333333333333,1344,275 +10496,349.8666666666667,1387,272 +10497,349.9,1429,268 +10498,349.93333333333334,1474,263 +10499,349.96666666666664,1519,258 +10500,350.0,1561,252 +10501,350.0333333333333,1599,246 +10502,350.06666666666666,1633,241 +10503,350.1,1662,235 +10504,350.1333333333333,1684,231 +10505,350.1666666666667,1699,228 +10506,350.2,1702,228 +10507,350.23333333333335,1702,228 +10508,350.26666666666665,1702,228 +10509,350.3,1688,231 +10510,350.3333333333333,1668,235 +10511,350.3666666666667,1641,240 +10512,350.4,1609,246 +10513,350.43333333333334,1572,252 +10514,350.46666666666664,1531,258 +10515,350.5,1487,264 +10516,350.5333333333333,1442,270 +10517,350.56666666666666,1400,274 +10518,350.6,1357,276 +10519,350.6333333333333,1315,279 +10520,350.6666666666667,1276,280 +10521,350.7,1242,281 +10522,350.73333333333335,1214,281 +10523,350.76666666666665,1191,281 +10524,350.8,1174,281 +10525,350.8333333333333,1166,280 +10526,350.8666666666667,1166,280 +10527,350.9,1166,280 +10528,350.93333333333334,1178,280 +10529,350.96666666666664,1196,280 +10530,351.0,1220,280 +10531,351.0333333333333,1250,279 +10532,351.06666666666666,1285,278 +10533,351.1,1325,276 +10534,351.1333333333333,1367,274 +10535,351.1666666666667,1410,271 +10536,351.2,1453,266 +10537,351.23333333333335,1497,260 +10538,351.26666666666665,1542,254 +10539,351.3,1581,249 +10540,351.3333333333333,1617,243 +10541,351.3666666666667,1648,237 +10542,351.4,1673,233 +10543,351.43333333333334,1692,229 +10544,351.46666666666664,1704,227 +10545,351.5,1704,227 +10546,351.5333333333333,1704,227 +10547,351.56666666666666,1696,229 +10548,351.6,1678,233 +10549,351.6333333333333,1654,237 +10550,351.6666666666667,1624,243 +10551,351.7,1590,249 +10552,351.73333333333335,1551,255 +10553,351.76666666666665,1508,261 +10554,351.8,1463,267 +10555,351.8333333333333,1420,272 +10556,351.8666666666667,1378,275 +10557,351.9,1335,278 +10558,351.93333333333334,1295,279 +10559,351.96666666666664,1258,280 +10560,352.0,1227,281 +10561,352.0333333333333,1201,281 +10562,352.06666666666666,1182,281 +10563,352.1,1169,281 +10564,352.1333333333333,1169,280 +10565,352.1666666666667,1169,280 +10566,352.2,1172,280 +10567,352.23333333333335,1187,280 +10568,352.26666666666665,1208,280 +10569,352.3,1235,280 +10570,352.3333333333333,1268,278 +10571,352.3666666666667,1305,277 +10572,352.4,1346,275 +10573,352.43333333333334,1389,272 +10574,352.46666666666664,1431,269 +10575,352.5,1476,263 +10576,352.5333333333333,1521,257 +10577,352.56666666666666,1562,252 +10578,352.6,1600,245 +10579,352.6333333333333,1633,240 +10580,352.6666666666667,1661,235 +10581,352.7,1683,231 +10582,352.73333333333335,1698,228 +10583,352.76666666666665,1700,228 +10584,352.8,1700,228 +10585,352.8333333333333,1700,228 +10586,352.8666666666667,1686,231 +10587,352.9,1666,236 +10588,352.93333333333334,1639,241 +10589,352.96666666666664,1606,247 +10590,353.0,1570,252 +10591,353.0333333333333,1529,258 +10592,353.06666666666666,1485,264 +10593,353.1,1441,270 +10594,353.1333333333333,1399,273 +10595,353.1666666666667,1356,277 +10596,353.2,1314,278 +10597,353.23333333333335,1275,280 +10598,353.26666666666665,1242,281 +10599,353.3,1214,281 +10600,353.3333333333333,1191,281 +10601,353.3666666666667,1175,281 +10602,353.4,1168,280 +10603,353.43333333333334,1168,280 +10604,353.46666666666664,1168,280 +10605,353.5,1179,280 +10606,353.5333333333333,1198,280 +10607,353.56666666666666,1222,279 +10608,353.6,1252,279 +10609,353.6333333333333,1287,278 +10610,353.6666666666667,1328,276 +10611,353.7,1369,274 +10612,353.73333333333335,1412,270 +10613,353.76666666666665,1455,266 +10614,353.8,1498,260 +10615,353.8333333333333,1543,254 +10616,353.8666666666667,1582,248 +10617,353.9,1618,242 +10618,353.93333333333334,1648,237 +10619,353.96666666666664,1673,233 +10620,354.0,1691,229 +10621,354.0333333333333,1702,227 +10622,354.06666666666666,1702,227 +10623,354.1,1702,227 +10624,354.1333333333333,1693,230 +10625,354.1666666666667,1676,233 +10626,354.2,1651,238 +10627,354.23333333333335,1622,244 +10628,354.26666666666665,1587,250 +10629,354.3,1548,256 +10630,354.3333333333333,1505,262 +10631,354.3666666666667,1461,267 +10632,354.4,1418,272 +10633,354.43333333333334,1376,276 +10634,354.46666666666664,1334,278 +10635,354.5,1293,280 +10636,354.5333333333333,1258,281 +10637,354.56666666666666,1227,281 +10638,354.6,1202,281 +10639,354.6333333333333,1182,281 +10640,354.6666666666667,1170,280 +10641,354.7,1170,280 +10642,354.73333333333335,1170,280 +10643,354.76666666666665,1174,280 +10644,354.8,1189,280 +10645,354.8333333333333,1210,280 +10646,354.8666666666667,1238,279 +10647,354.9,1270,278 +10648,354.93333333333334,1308,277 +10649,354.96666666666664,1349,275 +10650,355.0,1393,270 +10651,355.0333333333333,1433,268 +10652,355.06666666666666,1478,262 +10653,355.1,1522,257 +10654,355.1333333333333,1563,251 +10655,355.1666666666667,1601,245 +10656,355.2,1633,240 +10657,355.23333333333335,1661,235 +10658,355.26666666666665,1682,231 +10659,355.3,1697,228 +10660,355.3333333333333,1698,228 +10661,355.3666666666667,1698,228 +10662,355.4,1698,229 +10663,355.43333333333334,1684,232 +10664,355.46666666666664,1663,236 +10665,355.5,1636,242 +10666,355.5333333333333,1603,247 +10667,355.56666666666666,1566,253 +10668,355.6,1526,259 +10669,355.6333333333333,1482,265 +10670,355.6666666666667,1438,270 +10671,355.7,1397,273 +10672,355.73333333333335,1354,277 +10673,355.76666666666665,1312,279 +10674,355.8,1274,280 +10675,355.8333333333333,1241,281 +10676,355.8666666666667,1214,281 +10677,355.9,1192,281 +10678,355.93333333333334,1176,281 +10679,355.96666666666664,1170,280 +10680,356.0,1170,280 +10681,356.0333333333333,1170,280 +10682,356.06666666666666,1182,280 +10683,356.1,1200,280 +10684,356.1333333333333,1225,279 +10685,356.1666666666667,1255,279 +10686,356.2,1290,277 +10687,356.23333333333335,1330,276 +10688,356.26666666666665,1372,273 +10689,356.3,1414,270 +10690,356.3333333333333,1457,265 +10691,356.3666666666667,1500,260 +10692,356.4,1544,254 +10693,356.43333333333334,1583,248 +10694,356.46666666666664,1618,243 +10695,356.5,1648,237 +10696,356.5333333333333,1672,233 +10697,356.56666666666666,1690,230 +10698,356.6,1701,228 +10699,356.6333333333333,1701,228 +10700,356.6666666666667,1701,228 +10701,356.7,1690,231 +10702,356.73333333333335,1673,234 +10703,356.76666666666665,1649,239 +10704,356.8,1619,244 +10705,356.8333333333333,1584,251 +10706,356.8666666666667,1545,257 +10707,356.9,1502,262 +10708,356.93333333333334,1458,268 +10709,356.96666666666664,1416,273 +10710,357.0,1374,276 +10711,357.0333333333333,1332,278 +10712,357.06666666666666,1292,280 +10713,357.1,1257,281 +10714,357.1333333333333,1227,281 +10715,357.1666666666667,1202,281 +10716,357.2,1183,281 +10717,357.23333333333335,1171,281 +10718,357.26666666666665,1171,280 +10719,357.3,1171,280 +10720,357.3333333333333,1176,280 +10721,357.3666666666667,1191,280 +10722,357.4,1213,280 +10723,357.43333333333334,1241,279 +10724,357.46666666666664,1273,278 +10725,357.5,1311,277 +10726,357.5333333333333,1352,274 +10727,357.56666666666666,1395,270 +10728,357.6,1436,268 +10729,357.6333333333333,1480,262 +10730,357.6666666666667,1524,257 +10731,357.7,1565,252 +10732,357.73333333333335,1601,246 +10733,357.76666666666665,1634,240 +10734,357.8,1661,235 +10735,357.8333333333333,1682,232 +10736,357.8666666666667,1696,229 +10737,357.9,1696,229 +10738,357.93333333333334,1696,229 +10739,357.96666666666664,1696,229 +10740,358.0,1681,233 +10741,358.0333333333333,1660,237 +10742,358.06666666666666,1633,242 +10743,358.1,1600,248 +10744,358.1333333333333,1563,254 +10745,358.1666666666667,1523,260 +10746,358.2,1479,265 +10747,358.23333333333335,1435,271 +10748,358.26666666666665,1395,274 +10749,358.3,1352,277 +10750,358.3333333333333,1311,279 +10751,358.3666666666667,1273,280 +10752,358.4,1241,281 +10753,358.43333333333334,1213,281 +10754,358.46666666666664,1192,281 +10755,358.5,1177,280 +10756,358.5333333333333,1172,280 +10757,358.56666666666666,1172,280 +10758,358.6,1172,280 +10759,358.6333333333333,1184,280 +10760,358.6666666666667,1202,279 +10761,358.7,1227,279 +10762,358.73333333333335,1258,279 +10763,358.76666666666665,1293,277 +10764,358.8,1333,276 +10765,358.8333333333333,1374,273 +10766,358.8666666666667,1416,270 +10767,358.9,1459,265 +10768,358.93333333333334,1502,260 +10769,358.96666666666664,1545,254 +10770,359.0,1584,248 +10771,359.0333333333333,1619,243 +10772,359.06666666666666,1648,238 +10773,359.1,1672,233 +10774,359.1333333333333,1689,230 +10775,359.1666666666667,1699,229 +10776,359.2,1699,229 +10777,359.23333333333335,1699,229 +10778,359.26666666666665,1688,231 +10779,359.3,1670,235 +10780,359.3333333333333,1646,240 +10781,359.3666666666667,1616,245 +10782,359.4,1581,251 +10783,359.43333333333334,1542,257 +10784,359.46666666666664,1499,263 +10785,359.5,1456,268 +10786,359.5333333333333,1414,273 +10787,359.56666666666666,1372,275 +10788,359.6,1330,278 +10789,359.6333333333333,1290,279 +10790,359.6666666666667,1256,280 +10791,359.7,1225,280 +10792,359.73333333333335,1201,280 +10793,359.76666666666665,1183,280 +10794,359.8,1171,279 +10795,359.8333333333333,1171,279 +10796,359.8666666666667,1171,279 +10797,359.9,1175,279 +10798,359.93333333333334,1191,279 +10799,359.96666666666664,1213,279 +10800,360.0,1240,278 +10801,360.0333333333333,1273,277 +10802,360.06666666666666,1311,275 +10803,360.1,1351,272 +10804,360.1333333333333,1393,269 +10805,360.1666666666667,1434,266 +10806,360.2,1477,261 +10807,360.23333333333335,1521,256 +10808,360.26666666666665,1561,251 +10809,360.3,1597,245 diff --git a/single_pdl/data/448.csv b/single_pdl/data/448.csv new file mode 100644 index 0000000..ff13ad8 --- /dev/null +++ b/single_pdl/data/448.csv @@ -0,0 +1,22406 @@ +frame,time,x,y +0,0.0,1520,243 +1,0.016666666666666666,1579,240 +2,0.03333333333333333,1579,240 +3,0.05,1608,238 +4,0.06666666666666667,1637,237 +5,0.08333333333333333,1695,231 +6,0.1,1750,225 +7,0.11666666666666667,1802,218 +8,0.13333333333333333,1853,211 +9,0.15,1901,203 +10,0.16666666666666666,1946,194 +11,0.18333333333333332,1987,185 +12,0.2,2025,176 +13,0.21666666666666667,2060,168 +14,0.23333333333333334,2091,160 +15,0.25,2118,153 +16,0.26666666666666666,2141,146 +17,0.2833333333333333,2160,141 +18,0.3,2175,137 +19,0.31666666666666665,2186,134 +20,0.3333333333333333,2192,132 +21,0.35,2192,132 +22,0.36666666666666664,2192,132 +23,0.3833333333333333,2185,134 +24,0.4,2174,137 +25,0.4166666666666667,2160,141 +26,0.43333333333333335,2140,146 +27,0.45,2117,153 +28,0.4666666666666667,2090,160 +29,0.48333333333333334,2059,168 +30,0.5,2025,176 +31,0.5166666666666666,1987,185 +32,0.5333333333333333,1945,194 +33,0.55,1900,202 +34,0.5666666666666667,1852,210 +35,0.5833333333333334,1801,218 +36,0.6,1749,224 +37,0.6166666666666667,1693,230 +38,0.6333333333333333,1636,235 +39,0.65,1578,239 +40,0.6666666666666666,1519,242 +41,0.6833333333333333,1458,243 +42,0.7,1398,243 +43,0.7166666666666667,1339,243 +44,0.7333333333333333,1280,240 +45,0.75,1221,236 +46,0.7666666666666666,1163,232 +47,0.7833333333333333,1108,226 +48,0.8,1055,219 +49,0.8166666666666667,1003,212 +50,0.8333333333333334,955,204 +51,0.85,909,196 +52,0.8666666666666667,867,188 +53,0.8833333333333333,828,180 +54,0.9,793,172 +55,0.9166666666666666,762,165 +56,0.9333333333333333,735,158 +57,0.95,712,152 +58,0.9666666666666667,693,148 +59,0.9833333333333333,679,144 +60,1.0,669,141 +61,1.0166666666666666,668,141 +62,1.0333333333333332,668,141 +63,1.05,668,141 +64,1.0666666666666667,676,143 +65,1.0833333333333333,690,147 +66,1.1,707,152 +67,1.1166666666666667,729,157 +68,1.1333333333333333,755,164 +69,1.15,785,171 +70,1.1666666666666667,818,179 +71,1.1833333333333333,856,187 +72,1.2,898,195 +73,1.2166666666666666,942,203 +74,1.2333333333333334,990,212 +75,1.25,1040,219 +76,1.2666666666666666,1093,226 +77,1.2833333333333332,1147,232 +78,1.3,1204,237 +79,1.3166666666666667,1262,241 +80,1.3333333333333333,1321,244 +81,1.35,1380,245 +82,1.3666666666666667,1440,245 +83,1.3833333333333333,1500,245 +84,1.4,1559,243 +85,1.4166666666666667,1618,239 +86,1.4333333333333333,1675,235 +87,1.45,1731,229 +88,1.4666666666666666,1784,222 +89,1.4833333333333334,1835,215 +90,1.5,1884,207 +91,1.5166666666666666,1929,198 +92,1.5333333333333332,1971,189 +93,1.55,2011,181 +94,1.5666666666666667,2047,173 +95,1.5833333333333333,2079,165 +96,1.6,2107,158 +97,1.6166666666666667,2132,151 +98,1.6333333333333333,2152,145 +99,1.65,2168,141 +100,1.6666666666666667,2180,137 +101,1.6833333333333333,2188,134 +102,1.7,2188,134 +103,1.7166666666666666,2188,134 +104,1.7333333333333334,2186,135 +105,1.75,2176,138 +106,1.7666666666666666,2162,142 +107,1.7833333333333332,2145,147 +108,1.8,2123,153 +109,1.8166666666666667,2097,159 +110,1.8333333333333333,2067,167 +111,1.8499999999999999,2034,175 +112,1.8666666666666667,1997,183 +113,1.8833333333333333,1957,192 +114,1.9,1913,200 +115,1.9166666666666667,1866,208 +116,1.9333333333333333,1817,216 +117,1.95,1765,223 +118,1.9666666666666666,1710,229 +119,1.9833333333333334,1654,235 +120,2.0,1597,239 +121,2.0166666666666666,1538,242 +122,2.033333333333333,1479,244 +123,2.05,1417,244 +124,2.0666666666666664,1359,244 +125,2.0833333333333335,1300,242 +126,2.1,1241,239 +127,2.1166666666666667,1183,235 +128,2.1333333333333333,1127,229 +129,2.15,1073,223 +130,2.1666666666666665,1021,216 +131,2.183333333333333,972,209 +132,2.2,925,200 +133,2.216666666666667,882,192 +134,2.2333333333333334,843,184 +135,2.25,807,176 +136,2.2666666666666666,774,169 +137,2.283333333333333,746,162 +138,2.3,722,156 +139,2.3166666666666664,702,151 +140,2.3333333333333335,686,147 +141,2.35,675,144 +142,2.3666666666666667,669,142 +143,2.3833333333333333,669,142 +144,2.4,669,142 +145,2.4166666666666665,676,144 +146,2.433333333333333,687,148 +147,2.45,703,152 +148,2.466666666666667,723,157 +149,2.4833333333333334,748,163 +150,2.5,776,170 +151,2.5166666666666666,809,178 +152,2.533333333333333,845,186 +153,2.55,885,194 +154,2.5666666666666664,928,202 +155,2.5833333333333335,974,211 +156,2.6,1023,218 +157,2.6166666666666667,1076,225 +158,2.6333333333333333,1129,231 +159,2.65,1185,237 +160,2.6666666666666665,1243,241 +161,2.683333333333333,1301,245 +162,2.7,1360,246 +163,2.716666666666667,1419,246 +164,2.7333333333333334,1480,246 +165,2.75,1539,244 +166,2.7666666666666666,1597,241 +167,2.783333333333333,1655,237 +168,2.8,1710,232 +169,2.8166666666666664,1764,226 +170,2.8333333333333335,1816,219 +171,2.85,1865,211 +172,2.8666666666666667,1912,202 +173,2.8833333333333333,1956,194 +174,2.9,1995,185 +175,2.9166666666666665,2032,177 +176,2.933333333333333,2066,169 +177,2.95,2095,161 +178,2.966666666666667,2121,154 +179,2.9833333333333334,2142,148 +180,3.0,2160,143 +181,3.0166666666666666,2173,139 +182,3.033333333333333,2182,136 +183,3.05,2184,136 +184,3.0666666666666664,2184,136 +185,3.0833333333333335,2184,136 +186,3.1,2176,137 +187,3.1166666666666667,2164,141 +188,3.1333333333333333,2148,146 +189,3.15,2127,151 +190,3.1666666666666665,2103,158 +191,3.183333333333333,2074,165 +192,3.2,2042,173 +193,3.216666666666667,2007,181 +194,3.2333333333333334,1968,190 +195,3.25,1925,198 +196,3.2666666666666666,1879,206 +197,3.283333333333333,1831,214 +198,3.3,1780,221 +199,3.3166666666666664,1726,228 +200,3.3333333333333335,1671,233 +201,3.35,1614,238 +202,3.3666666666666667,1556,241 +203,3.3833333333333333,1497,244 +204,3.4,1437,244 +205,3.4166666666666665,1377,244 +206,3.433333333333333,1319,244 +207,3.4499999999999997,1261,240 +208,3.466666666666667,1203,237 +209,3.4833333333333334,1146,231 +210,3.5,1092,226 +211,3.5166666666666666,1039,219 +212,3.533333333333333,989,212 +213,3.55,942,204 +214,3.5666666666666664,898,196 +215,3.5833333333333335,858,188 +216,3.6,820,180 +217,3.6166666666666667,787,173 +218,3.6333333333333333,757,166 +219,3.65,732,159 +220,3.6666666666666665,710,154 +221,3.683333333333333,693,150 +222,3.6999999999999997,681,146 +223,3.716666666666667,673,144 +224,3.7333333333333334,673,144 +225,3.75,673,144 +226,3.7666666666666666,676,145 +227,3.783333333333333,686,147 +228,3.8,700,151 +229,3.8166666666666664,719,156 +230,3.8333333333333335,742,162 +231,3.85,769,169 +232,3.8666666666666667,800,176 +233,3.8833333333333333,835,184 +234,3.9,873,191 +235,3.9166666666666665,916,200 +236,3.933333333333333,960,207 +237,3.9499999999999997,1008,215 +238,3.966666666666667,1059,222 +239,3.9833333333333334,1112,228 +240,4.0,1167,234 +241,4.016666666666667,1224,238 +242,4.033333333333333,1282,242 +243,4.05,1341,245 +244,4.066666666666666,1399,245 +245,4.083333333333333,1459,245 +246,4.1,1519,244 +247,4.116666666666666,1577,241 +248,4.133333333333333,1635,237 +249,4.15,1691,232 +250,4.166666666666667,1745,226 +251,4.183333333333334,1798,219 +252,4.2,1848,211 +253,4.216666666666667,1895,203 +254,4.233333333333333,1939,194 +255,4.25,1981,186 +256,4.266666666666667,2019,177 +257,4.283333333333333,2053,169 +258,4.3,2083,162 +259,4.316666666666666,2110,155 +260,4.333333333333333,2133,148 +261,4.35,2152,143 +262,4.366666666666666,2166,139 +263,4.383333333333333,2177,136 +264,4.4,2182,134 +265,4.416666666666667,2182,134 +266,4.433333333333334,2182,134 +267,4.45,2176,136 +268,4.466666666666667,2165,139 +269,4.483333333333333,2150,143 +270,4.5,2131,148 +271,4.516666666666667,2109,154 +272,4.533333333333333,2081,161 +273,4.55,2051,169 +274,4.566666666666666,2016,177 +275,4.583333333333333,1978,185 +276,4.6,1937,193 +277,4.616666666666666,1892,202 +278,4.633333333333333,1845,210 +279,4.65,1795,217 +280,4.666666666666667,1742,224 +281,4.683333333333334,1688,230 +282,4.7,1632,234 +283,4.716666666666667,1574,238 +284,4.733333333333333,1515,241 +285,4.75,1456,242 +286,4.766666666666667,1397,242 +287,4.783333333333333,1338,242 +288,4.8,1280,240 +289,4.816666666666666,1222,236 +290,4.833333333333333,1165,231 +291,4.85,1110,225 +292,4.866666666666666,1057,219 +293,4.883333333333333,1006,212 +294,4.9,959,204 +295,4.916666666666667,914,196 +296,4.933333333333334,872,188 +297,4.95,834,180 +298,4.966666666666667,799,173 +299,4.983333333333333,769,166 +300,5.0,742,159 +301,5.016666666666667,720,154 +302,5.033333333333333,702,149 +303,5.05,688,145 +304,5.066666666666666,678,143 +305,5.083333333333333,677,143 +306,5.1,677,143 +307,5.116666666666666,677,143 +308,5.133333333333333,686,145 +309,5.15,699,149 +310,5.166666666666667,716,153 +311,5.183333333333334,737,159 +312,5.2,763,165 +313,5.216666666666667,793,173 +314,5.233333333333333,826,180 +315,5.25,864,188 +316,5.266666666666667,904,196 +317,5.283333333333333,948,204 +318,5.3,995,212 +319,5.316666666666666,1045,219 +320,5.333333333333333,1097,226 +321,5.35,1151,232 +322,5.366666666666666,1207,236 +323,5.383333333333333,1265,240 +324,5.4,1324,243 +325,5.416666666666667,1381,243 +326,5.433333333333334,1440,243 +327,5.45,1500,243 +328,5.466666666666667,1559,240 +329,5.483333333333333,1617,237 +330,5.5,1673,232 +331,5.516666666666667,1727,226 +332,5.533333333333333,1780,220 +333,5.55,1831,212 +334,5.566666666666666,1879,205 +335,5.583333333333333,1924,197 +336,5.6,1966,188 +337,5.616666666666666,2005,180 +338,5.633333333333333,2040,171 +339,5.65,2072,163 +340,5.666666666666667,2100,156 +341,5.683333333333334,2124,150 +342,5.7,2144,144 +343,5.716666666666667,2159,140 +344,5.733333333333333,2171,136 +345,5.75,2179,134 +346,5.766666666666667,2179,134 +347,5.783333333333333,2179,134 +348,5.8,2176,135 +349,5.816666666666666,2167,137 +350,5.833333333333333,2153,141 +351,5.85,2135,146 +352,5.866666666666666,2113,152 +353,5.883333333333333,2088,159 +354,5.9,2058,166 +355,5.916666666666667,2025,174 +356,5.933333333333334,1989,182 +357,5.95,1948,190 +358,5.966666666666667,1905,199 +359,5.983333333333333,1859,207 +360,6.0,1810,214 +361,6.016666666666667,1758,221 +362,6.033333333333333,1704,228 +363,6.05,1649,232 +364,6.066666666666666,1592,236 +365,6.083333333333333,1534,240 +366,6.1,1476,242 +367,6.116666666666666,1415,242 +368,6.133333333333333,1357,242 +369,6.15,1300,240 +370,6.166666666666667,1241,237 +371,6.183333333333334,1184,233 +372,6.2,1129,228 +373,6.216666666666667,1076,221 +374,6.233333333333333,1025,215 +375,6.25,977,208 +376,6.266666666666667,931,200 +377,6.283333333333333,888,192 +378,6.3,849,184 +379,6.316666666666666,814,177 +380,6.333333333333333,782,169 +381,6.35,754,162 +382,6.366666666666666,731,156 +383,6.383333333333333,711,151 +384,6.4,696,147 +385,6.416666666666667,685,144 +386,6.433333333333334,679,144 +387,6.45,679,144 +388,6.466666666666667,679,144 +389,6.483333333333333,687,146 +390,6.5,698,149 +391,6.516666666666667,714,153 +392,6.533333333333333,734,158 +393,6.55,758,164 +394,6.566666666666666,787,171 +395,6.583333333333333,819,178 +396,6.6,855,186 +397,6.616666666666666,895,194 +398,6.633333333333333,937,201 +399,6.6499999999999995,983,210 +400,6.666666666666667,1031,217 +401,6.683333333333334,1082,224 +402,6.7,1136,230 +403,6.716666666666667,1191,235 +404,6.733333333333333,1248,239 +405,6.75,1306,242 +406,6.766666666666667,1363,243 +407,6.783333333333333,1421,243 +408,6.8,1481,243 +409,6.816666666666666,1540,241 +410,6.833333333333333,1597,238 +411,6.85,1653,234 +412,6.866666666666666,1708,228 +413,6.883333333333333,1762,222 +414,6.8999999999999995,1812,215 +415,6.916666666666667,1861,208 +416,6.933333333333334,1907,200 +417,6.95,1950,191 +418,6.966666666666667,1990,183 +419,6.983333333333333,2026,175 +420,7.0,2059,167 +421,7.016666666666667,2088,159 +422,7.033333333333333,2113,152 +423,7.05,2134,147 +424,7.066666666666666,2151,142 +425,7.083333333333333,2165,138 +426,7.1,2173,136 +427,7.116666666666666,2175,135 +428,7.133333333333333,2175,135 +429,7.1499999999999995,2175,135 +430,7.166666666666667,2167,137 +431,7.183333333333334,2155,141 +432,7.2,2138,145 +433,7.216666666666667,2118,151 +434,7.233333333333333,2093,157 +435,7.25,2065,164 +436,7.266666666666667,2033,172 +437,7.283333333333333,1997,180 +438,7.3,1958,188 +439,7.316666666666666,1916,196 +440,7.333333333333333,1871,204 +441,7.35,1823,212 +442,7.366666666666666,1773,219 +443,7.383333333333333,1720,225 +444,7.3999999999999995,1665,231 +445,7.416666666666667,1609,235 +446,7.433333333333334,1552,238 +447,7.45,1493,240 +448,7.466666666666667,1433,240 +449,7.483333333333333,1374,240 +450,7.5,1317,240 +451,7.516666666666667,1259,237 +452,7.533333333333333,1202,233 +453,7.55,1147,229 +454,7.566666666666666,1093,223 +455,7.583333333333333,1041,217 +456,7.6,992,209 +457,7.616666666666666,946,202 +458,7.633333333333333,902,194 +459,7.6499999999999995,862,186 +460,7.666666666666667,826,178 +461,7.683333333333334,793,171 +462,7.7,764,164 +463,7.716666666666667,739,158 +464,7.733333333333333,719,153 +465,7.75,702,149 +466,7.766666666666667,690,146 +467,7.783333333333333,683,144 +468,7.8,683,144 +469,7.816666666666666,683,144 +470,7.833333333333333,687,145 +471,7.85,697,148 +472,7.866666666666666,711,152 +473,7.883333333333333,730,157 +474,7.8999999999999995,753,163 +475,7.916666666666667,780,169 +476,7.933333333333334,811,176 +477,7.95,845,184 +478,7.966666666666667,884,192 +479,7.983333333333333,926,200 +480,8.0,970,208 +481,8.016666666666666,1017,215 +482,8.033333333333333,1068,222 +483,8.05,1120,228 +484,8.066666666666666,1174,233 +485,8.083333333333334,1230,237 +486,8.1,1287,241 +487,8.116666666666667,1346,243 +488,8.133333333333333,1403,243 +489,8.15,1461,243 +490,8.166666666666666,1521,242 +491,8.183333333333334,1578,239 +492,8.2,1635,235 +493,8.216666666666667,1690,230 +494,8.233333333333333,1744,224 +495,8.25,1795,218 +496,8.266666666666666,1844,210 +497,8.283333333333333,1891,203 +498,8.3,1935,194 +499,8.316666666666666,1976,186 +500,8.333333333333334,2013,177 +501,8.35,2047,170 +502,8.366666666666667,2077,162 +503,8.383333333333333,2103,155 +504,8.4,2125,149 +505,8.416666666666666,2144,144 +506,8.433333333333334,2158,140 +507,8.45,2168,136 +508,8.466666666666667,2173,135 +509,8.483333333333333,2173,135 +510,8.5,2173,135 +511,8.516666666666666,2167,137 +512,8.533333333333333,2156,140 +513,8.55,2141,144 +514,8.566666666666666,2122,149 +515,8.583333333333334,2099,155 +516,8.6,2072,162 +517,8.616666666666667,2042,169 +518,8.633333333333333,2007,178 +519,8.65,1970,186 +520,8.666666666666666,1928,194 +521,8.683333333333334,1884,202 +522,8.7,1837,210 +523,8.716666666666667,1788,217 +524,8.733333333333333,1736,224 +525,8.75,1682,230 +526,8.766666666666666,1626,234 +527,8.783333333333333,1569,238 +528,8.8,1512,240 +529,8.816666666666666,1452,241 +530,8.833333333333334,1394,241 +531,8.85,1337,241 +532,8.866666666666667,1278,239 +533,8.883333333333333,1221,235 +534,8.9,1165,230 +535,8.916666666666666,1111,225 +536,8.933333333333334,1059,219 +537,8.95,1009,212 +538,8.966666666666667,962,205 +539,8.983333333333333,918,197 +540,9.0,877,189 +541,9.016666666666666,840,182 +542,9.033333333333333,806,174 +543,9.05,776,168 +544,9.066666666666666,750,161 +545,9.083333333333334,728,156 +546,9.1,710,151 +547,9.116666666666667,697,148 +548,9.133333333333333,688,146 +549,9.15,687,146 +550,9.166666666666666,687,146 +551,9.183333333333334,687,146 +552,9.2,696,148 +553,9.216666666666667,709,152 +554,9.233333333333333,726,156 +555,9.25,748,162 +556,9.266666666666666,773,168 +557,9.283333333333333,803,175 +558,9.3,837,183 +559,9.316666666666666,873,190 +560,9.333333333333334,914,198 +561,9.35,957,206 +562,9.366666666666667,1004,213 +563,9.383333333333333,1053,220 +564,9.4,1105,226 +565,9.416666666666666,1158,232 +566,9.433333333333334,1214,237 +567,9.45,1271,240 +568,9.466666666666667,1328,243 +569,9.483333333333333,1385,243 +570,9.5,1443,243 +571,9.516666666666666,1503,243 +572,9.533333333333333,1561,241 +573,9.55,1618,237 +574,9.566666666666666,1673,232 +575,9.583333333333334,1727,227 +576,9.6,1779,220 +577,9.616666666666667,1829,212 +578,9.633333333333333,1876,205 +579,9.65,1921,197 +580,9.666666666666666,1962,188 +581,9.683333333333334,2001,180 +582,9.7,2035,172 +583,9.716666666666667,2066,164 +584,9.733333333333333,2094,157 +585,9.75,2117,151 +586,9.766666666666666,2136,146 +587,9.783333333333333,2152,141 +588,9.8,2164,138 +589,9.816666666666666,2171,136 +590,9.833333333333334,2171,136 +591,9.85,2171,136 +592,9.866666666666667,2168,136 +593,9.883333333333333,2158,139 +594,9.9,2145,143 +595,9.916666666666666,2127,148 +596,9.933333333333334,2105,153 +597,9.95,2079,160 +598,9.966666666666667,2050,167 +599,9.983333333333333,2017,176 +600,10.0,1980,183 +601,10.016666666666666,1941,192 +602,10.033333333333333,1897,200 +603,10.05,1851,208 +604,10.066666666666666,1803,216 +605,10.083333333333334,1751,222 +606,10.1,1699,229 +607,10.116666666666667,1644,234 +608,10.133333333333333,1587,238 +609,10.15,1530,240 +610,10.166666666666666,1472,242 +611,10.183333333333334,1413,242 +612,10.2,1355,242 +613,10.216666666666667,1297,241 +614,10.233333333333333,1240,237 +615,10.25,1184,234 +616,10.266666666666666,1129,228 +617,10.283333333333333,1077,222 +618,10.3,1027,216 +619,10.316666666666666,979,209 +620,10.333333333333334,934,202 +621,10.35,893,194 +622,10.366666666666667,854,186 +623,10.383333333333333,820,179 +624,10.4,788,172 +625,10.416666666666666,761,165 +626,10.433333333333334,738,160 +627,10.45,719,155 +628,10.466666666666667,704,151 +629,10.483333333333333,694,149 +630,10.5,689,148 +631,10.516666666666666,689,148 +632,10.533333333333333,689,148 +633,10.55,697,150 +634,10.566666666666666,708,153 +635,10.583333333333334,724,157 +636,10.6,744,163 +637,10.616666666666667,769,168 +638,10.633333333333333,797,175 +639,10.65,829,183 +640,10.666666666666666,864,190 +641,10.683333333333334,904,198 +642,10.7,946,206 +643,10.716666666666667,992,213 +644,10.733333333333333,1040,220 +645,10.75,1091,227 +646,10.766666666666666,1143,232 +647,10.783333333333333,1198,237 +648,10.8,1255,241 +649,10.816666666666666,1312,244 +650,10.833333333333334,1369,245 +651,10.85,1427,245 +652,10.866666666666667,1486,245 +653,10.883333333333333,1544,243 +654,10.9,1601,240 +655,10.916666666666666,1657,236 +656,10.933333333333334,1711,231 +657,10.95,1764,225 +658,10.966666666666667,1814,218 +659,10.983333333333333,1862,210 +660,11.0,1907,203 +661,11.016666666666666,1949,194 +662,11.033333333333333,1988,186 +663,11.05,2024,178 +664,11.066666666666666,2056,170 +665,11.083333333333334,2085,163 +666,11.1,2109,156 +667,11.116666666666667,2130,151 +668,11.133333333333333,2146,146 +669,11.15,2159,143 +670,11.166666666666666,2167,140 +671,11.183333333333334,2168,139 +672,11.2,2168,139 +673,11.216666666666667,2168,139 +674,11.233333333333333,2160,142 +675,11.25,2147,145 +676,11.266666666666666,2131,150 +677,11.283333333333333,2111,155 +678,11.3,2086,161 +679,11.316666666666666,2058,168 +680,11.333333333333334,2026,176 +681,11.35,1990,184 +682,11.366666666666667,1952,192 +683,11.383333333333333,1910,201 +684,11.4,1865,208 +685,11.416666666666666,1817,216 +686,11.433333333333334,1767,223 +687,11.45,1715,229 +688,11.466666666666667,1660,234 +689,11.483333333333333,1604,239 +690,11.5,1547,242 +691,11.516666666666666,1490,244 +692,11.533333333333333,1431,244 +693,11.55,1373,244 +694,11.566666666666666,1317,244 +695,11.583333333333334,1259,241 +696,11.6,1203,237 +697,11.616666666666667,1147,232 +698,11.633333333333333,1095,226 +699,11.65,1044,220 +700,11.666666666666666,996,213 +701,11.683333333333334,950,206 +702,11.7,908,198 +703,11.716666666666667,868,191 +704,11.733333333333333,832,183 +705,11.75,800,176 +706,11.766666666666666,772,170 +707,11.783333333333333,748,164 +708,11.8,728,159 +709,11.816666666666666,712,155 +710,11.833333333333334,700,152 +711,11.85,692,150 +712,11.866666666666667,692,150 +713,11.883333333333333,692,150 +714,11.9,697,151 +715,11.916666666666666,707,154 +716,11.933333333333334,722,158 +717,11.95,741,163 +718,11.966666666666667,763,169 +719,11.983333333333333,790,175 +720,12.0,821,182 +721,12.016666666666666,855,190 +722,12.033333333333333,893,197 +723,12.05,935,205 +724,12.066666666666666,979,212 +725,12.083333333333334,1026,219 +726,12.1,1076,226 +727,12.116666666666667,1128,232 +728,12.133333333333333,1181,237 +729,12.15,1237,241 +730,12.166666666666666,1294,245 +731,12.183333333333334,1351,246 +732,12.2,1408,246 +733,12.216666666666667,1466,246 +734,12.233333333333333,1524,245 +735,12.25,1581,242 +736,12.266666666666666,1637,238 +737,12.283333333333333,1692,233 +738,12.3,1745,227 +739,12.316666666666666,1796,220 +740,12.333333333333334,1844,213 +741,12.35,1890,205 +742,12.366666666666667,1933,197 +743,12.383333333333333,1973,189 +744,12.4,2010,181 +745,12.416666666666666,2043,173 +746,12.433333333333334,2072,166 +747,12.45,2098,159 +748,12.466666666666667,2119,153 +749,12.483333333333333,2137,148 +750,12.5,2151,144 +751,12.516666666666666,2161,141 +752,12.533333333333333,2165,140 +753,12.55,2165,140 +754,12.566666666666666,2165,140 +755,12.583333333333334,2158,141 +756,12.6,2147,144 +757,12.616666666666667,2132,148 +758,12.633333333333333,2113,153 +759,12.65,2090,159 +760,12.666666666666666,2063,166 +761,12.683333333333334,2032,173 +762,12.7,1998,181 +763,12.716666666666667,1960,189 +764,12.733333333333333,1920,198 +765,12.75,1876,205 +766,12.766666666666666,1829,213 +767,12.783333333333333,1780,220 +768,12.8,1728,226 +769,12.816666666666666,1675,232 +770,12.833333333333334,1620,236 +771,12.85,1563,240 +772,12.866666666666667,1506,243 +773,12.883333333333333,1448,244 +774,12.9,1390,244 +775,12.916666666666666,1333,244 +776,12.933333333333334,1276,241 +777,12.95,1219,238 +778,12.966666666666667,1164,233 +779,12.983333333333333,1111,228 +780,13.0,1060,222 +781,13.016666666666666,1011,215 +782,13.033333333333333,964,208 +783,13.049999999999999,921,201 +784,13.066666666666666,881,193 +785,13.083333333333334,844,186 +786,13.1,811,179 +787,13.116666666666667,782,172 +788,13.133333333333333,756,167 +789,13.15,735,161 +790,13.166666666666666,718,157 +791,13.183333333333334,705,154 +792,13.2,696,152 +793,13.216666666666667,696,152 +794,13.233333333333333,696,152 +795,13.25,697,152 +796,13.266666666666666,706,154 +797,13.283333333333333,719,158 +798,13.299999999999999,736,162 +799,13.316666666666666,758,168 +800,13.333333333333334,784,174 +801,13.35,813,180 +802,13.366666666666667,846,188 +803,13.383333333333333,883,195 +804,13.4,924,202 +805,13.416666666666666,967,210 +806,13.433333333333334,1013,217 +807,13.45,1062,223 +808,13.466666666666667,1113,230 +809,13.483333333333333,1166,235 +810,13.5,1221,239 +811,13.516666666666666,1277,243 +812,13.533333333333333,1334,245 +813,13.549999999999999,1390,245 +814,13.566666666666666,1448,245 +815,13.583333333333334,1506,244 +816,13.6,1563,241 +817,13.616666666666667,1619,238 +818,13.633333333333333,1674,233 +819,13.65,1727,227 +820,13.666666666666666,1779,221 +821,13.683333333333334,1828,214 +822,13.7,1874,206 +823,13.716666666666667,1918,198 +824,13.733333333333333,1959,190 +825,13.75,1996,182 +826,13.766666666666666,2031,174 +827,13.783333333333333,2061,167 +828,13.799999999999999,2088,160 +829,13.816666666666666,2111,153 +830,13.833333333333334,2130,148 +831,13.85,2145,144 +832,13.866666666666667,2155,141 +833,13.883333333333333,2162,139 +834,13.9,2162,139 +835,13.916666666666666,2162,139 +836,13.933333333333334,2158,140 +837,13.95,2148,143 +838,13.966666666666667,2134,146 +839,13.983333333333333,2116,151 +840,14.0,2095,157 +841,14.016666666666666,2069,163 +842,14.033333333333333,2039,170 +843,14.049999999999999,2006,178 +844,14.066666666666666,1970,186 +845,14.083333333333334,1930,194 +846,14.1,1887,202 +847,14.116666666666667,1841,209 +848,14.133333333333333,1793,216 +849,14.15,1742,223 +850,14.166666666666666,1689,229 +851,14.183333333333334,1636,234 +852,14.2,1580,238 +853,14.216666666666667,1522,241 +854,14.233333333333333,1465,242 +855,14.25,1406,242 +856,14.266666666666666,1350,242 +857,14.283333333333333,1293,241 +858,14.299999999999999,1237,237 +859,14.316666666666666,1181,233 +860,14.333333333333334,1127,228 +861,14.35,1076,222 +862,14.366666666666667,1027,216 +863,14.383333333333333,980,209 +864,14.4,936,202 +865,14.416666666666666,895,194 +866,14.433333333333334,857,187 +867,14.45,823,180 +868,14.466666666666667,793,173 +869,14.483333333333333,766,167 +870,14.5,744,162 +871,14.516666666666666,726,157 +872,14.533333333333333,712,154 +873,14.549999999999999,702,151 +874,14.566666666666666,699,151 +875,14.583333333333334,699,151 +876,14.6,699,151 +877,14.616666666666667,706,152 +878,14.633333333333333,718,156 +879,14.65,734,160 +880,14.666666666666666,755,165 +881,14.683333333333334,779,171 +882,14.7,807,177 +883,14.716666666666667,839,184 +884,14.733333333333333,875,192 +885,14.75,914,199 +886,14.766666666666666,956,206 +887,14.783333333333333,1001,214 +888,14.799999999999999,1049,220 +889,14.816666666666666,1099,227 +890,14.833333333333334,1151,232 +891,14.85,1206,237 +892,14.866666666666667,1262,241 +893,14.883333333333333,1318,244 +894,14.9,1374,244 +895,14.916666666666666,1431,244 +896,14.933333333333334,1489,244 +897,14.95,1546,242 +898,14.966666666666667,1603,238 +899,14.983333333333333,1658,234 +900,15.0,1711,228 +901,15.016666666666666,1763,222 +902,15.033333333333333,1812,215 +903,15.049999999999999,1859,208 +904,15.066666666666666,1903,200 +905,15.083333333333334,1945,192 +906,15.1,1983,184 +907,15.116666666666667,2019,176 +908,15.133333333333333,2050,168 +909,15.15,2078,161 +910,15.166666666666666,2102,155 +911,15.183333333333334,2122,150 +912,15.2,2138,145 +913,15.216666666666667,2150,142 +914,15.233333333333333,2158,139 +915,15.25,2158,139 +916,15.266666666666666,2158,139 +917,15.283333333333333,2157,139 +918,15.299999999999999,2149,141 +919,15.316666666666666,2136,145 +920,15.333333333333334,2120,149 +921,15.35,2099,155 +922,15.366666666666667,2075,161 +923,15.383333333333333,2047,168 +924,15.4,2015,176 +925,15.416666666666666,1979,183 +926,15.433333333333334,1941,191 +927,15.45,1899,199 +928,15.466666666666667,1854,207 +929,15.483333333333333,1806,214 +930,15.5,1757,221 +931,15.516666666666666,1704,227 +932,15.533333333333333,1651,232 +933,15.549999999999999,1596,236 +934,15.566666666666666,1539,239 +935,15.583333333333334,1482,241 +936,15.6,1424,241 +937,15.616666666666667,1367,241 +938,15.633333333333333,1311,241 +939,15.65,1255,238 +940,15.666666666666666,1199,234 +941,15.683333333333334,1145,230 +942,15.7,1093,224 +943,15.716666666666667,1043,218 +944,15.733333333333333,996,211 +945,15.75,951,204 +946,15.766666666666666,909,197 +947,15.783333333333333,871,190 +948,15.799999999999999,836,183 +949,15.816666666666666,804,176 +950,15.833333333333334,777,169 +951,15.85,753,164 +952,15.866666666666667,734,159 +953,15.883333333333333,718,155 +954,15.9,707,153 +955,15.916666666666666,701,151 +956,15.933333333333334,701,151 +957,15.95,701,151 +958,15.966666666666667,707,153 +959,15.983333333333333,717,156 +960,16.0,732,160 +961,16.016666666666666,751,165 +962,16.03333333333333,774,170 +963,16.05,801,176 +964,16.066666666666666,832,183 +965,16.083333333333332,866,191 +966,16.1,904,198 +967,16.116666666666667,945,206 +968,16.133333333333333,989,213 +969,16.15,1036,219 +970,16.166666666666668,1086,226 +971,16.183333333333334,1137,232 +972,16.2,1191,236 +973,16.216666666666665,1246,241 +974,16.233333333333334,1302,243 +975,16.25,1358,244 +976,16.266666666666666,1414,244 +977,16.28333333333333,1473,244 +978,16.3,1530,243 +979,16.316666666666666,1586,240 +980,16.333333333333332,1641,235 +981,16.35,1694,230 +982,16.366666666666667,1747,224 +983,16.383333333333333,1797,217 +984,16.4,1844,210 +985,16.416666666666668,1889,203 +986,16.433333333333334,1931,195 +987,16.45,1970,187 +988,16.466666666666665,2006,179 +989,16.483333333333334,2039,171 +990,16.5,2067,164 +991,16.516666666666666,2092,158 +992,16.53333333333333,2113,152 +993,16.55,2131,147 +994,16.566666666666666,2144,143 +995,16.583333333333332,2153,141 +996,16.6,2156,140 +997,16.616666666666667,2156,140 +998,16.633333333333333,2156,140 +999,16.65,2148,142 +1000,16.666666666666668,2137,145 +1001,16.683333333333334,2122,149 +1002,16.7,2102,154 +1003,16.716666666666665,2079,160 +1004,16.733333333333334,2052,167 +1005,16.75,2021,174 +1006,16.766666666666666,1987,181 +1007,16.78333333333333,1950,189 +1008,16.8,1909,197 +1009,16.816666666666666,1865,205 +1010,16.833333333333332,1819,212 +1011,16.85,1769,219 +1012,16.866666666666667,1718,225 +1013,16.883333333333333,1666,231 +1014,16.9,1611,235 +1015,16.916666666666668,1556,239 +1016,16.933333333333334,1499,241 +1017,16.95,1441,241 +1018,16.966666666666665,1383,241 +1019,16.983333333333334,1329,241 +1020,17.0,1272,239 +1021,17.016666666666666,1216,236 +1022,17.03333333333333,1162,231 +1023,17.05,1110,226 +1024,17.066666666666666,1060,220 +1025,17.083333333333332,1012,214 +1026,17.1,966,207 +1027,17.116666666666667,924,200 +1028,17.133333333333333,885,192 +1029,17.15,849,185 +1030,17.166666666666668,816,178 +1031,17.183333333333334,788,172 +1032,17.2,764,167 +1033,17.216666666666665,743,161 +1034,17.233333333333334,726,158 +1035,17.25,714,155 +1036,17.266666666666666,706,153 +1037,17.28333333333333,706,153 +1038,17.3,706,153 +1039,17.316666666666666,708,153 +1040,17.333333333333332,718,156 +1041,17.35,731,159 +1042,17.366666666666667,749,164 +1043,17.383333333333333,771,169 +1044,17.4,796,175 +1045,17.416666666666668,826,182 +1046,17.433333333333334,859,189 +1047,17.45,896,196 +1048,17.466666666666665,936,204 +1049,17.483333333333334,979,211 +1050,17.5,1024,218 +1051,17.516666666666666,1073,225 +1052,17.53333333333333,1124,230 +1053,17.55,1176,235 +1054,17.566666666666666,1230,240 +1055,17.583333333333332,1286,243 +1056,17.6,1341,245 +1057,17.616666666666667,1397,245 +1058,17.633333333333333,1454,245 +1059,17.65,1512,243 +1060,17.666666666666668,1567,240 +1061,17.683333333333334,1623,237 +1062,17.7,1677,232 +1063,17.716666666666665,1729,226 +1064,17.733333333333334,1779,220 +1065,17.75,1828,213 +1066,17.766666666666666,1873,205 +1067,17.78333333333333,1916,197 +1068,17.8,1956,189 +1069,17.816666666666666,1993,181 +1070,17.833333333333332,2026,174 +1071,17.85,2056,167 +1072,17.866666666666667,2083,160 +1073,17.883333333333333,2105,154 +1074,17.9,2123,149 +1075,17.916666666666668,2137,145 +1076,17.933333333333334,2148,142 +1077,17.95,2154,140 +1078,17.966666666666665,2154,140 +1079,17.983333333333334,2154,140 +1080,18.0,2149,141 +1081,18.016666666666666,2138,144 +1082,18.03333333333333,2124,148 +1083,18.05,2106,153 +1084,18.066666666666666,2084,158 +1085,18.083333333333332,2058,165 +1086,18.1,2028,172 +1087,18.116666666666667,1995,179 +1088,18.133333333333333,1958,187 +1089,18.15,1919,195 +1090,18.166666666666668,1876,203 +1091,18.183333333333334,1830,210 +1092,18.2,1782,217 +1093,18.216666666666665,1732,223 +1094,18.233333333333334,1680,229 +1095,18.25,1626,233 +1096,18.266666666666666,1570,237 +1097,18.28333333333333,1514,240 +1098,18.3,1457,241 +1099,18.316666666666666,1400,241 +1100,18.333333333333332,1344,241 +1101,18.35,1288,239 +1102,18.366666666666667,1232,236 +1103,18.383333333333333,1178,232 +1104,18.4,1125,227 +1105,18.416666666666668,1074,221 +1106,18.433333333333334,1026,215 +1107,18.45,980,208 +1108,18.466666666666665,937,201 +1109,18.483333333333334,897,194 +1110,18.5,861,187 +1111,18.516666666666666,828,181 +1112,18.53333333333333,798,174 +1113,18.55,773,168 +1114,18.566666666666666,751,163 +1115,18.583333333333332,733,159 +1116,18.6,720,155 +1117,18.616666666666667,711,153 +1118,18.633333333333333,709,153 +1119,18.65,709,153 +1120,18.666666666666668,709,153 +1121,18.683333333333334,717,155 +1122,18.7,729,159 +1123,18.716666666666665,746,163 +1124,18.733333333333334,766,168 +1125,18.75,791,173 +1126,18.766666666666666,819,180 +1127,18.78333333333333,851,187 +1128,18.8,887,194 +1129,18.816666666666666,926,201 +1130,18.833333333333332,967,208 +1131,18.85,1013,215 +1132,18.866666666666667,1060,222 +1133,18.883333333333333,1110,228 +1134,18.9,1161,233 +1135,18.916666666666668,1215,237 +1136,18.933333333333334,1270,241 +1137,18.95,1326,243 +1138,18.966666666666665,1381,243 +1139,18.983333333333334,1438,243 +1140,19.0,1496,243 +1141,19.016666666666666,1552,241 +1142,19.03333333333333,1607,237 +1143,19.05,1661,233 +1144,19.066666666666666,1714,228 +1145,19.083333333333332,1764,221 +1146,19.1,1813,214 +1147,19.116666666666667,1859,207 +1148,19.133333333333333,1903,199 +1149,19.15,1943,191 +1150,19.166666666666668,1981,183 +1151,19.183333333333334,2015,176 +1152,19.2,2046,169 +1153,19.216666666666665,2073,162 +1154,19.233333333333334,2096,155 +1155,19.25,2116,150 +1156,19.266666666666666,2131,146 +1157,19.28333333333333,2143,142 +1158,19.3,2150,140 +1159,19.316666666666666,2150,140 +1160,19.333333333333332,2150,140 +1161,19.35,2148,141 +1162,19.366666666666667,2139,143 +1163,19.383333333333333,2126,147 +1164,19.4,2109,151 +1165,19.416666666666668,2088,157 +1166,19.433333333333334,2063,163 +1167,19.45,2035,170 +1168,19.466666666666665,2003,177 +1169,19.483333333333334,1968,185 +1170,19.5,1929,193 +1171,19.516666666666666,1887,200 +1172,19.53333333333333,1842,208 +1173,19.55,1795,215 +1174,19.566666666666666,1746,221 +1175,19.583333333333332,1694,227 +1176,19.6,1641,232 +1177,19.616666666666667,1586,236 +1178,19.633333333333333,1531,239 +1179,19.65,1475,241 +1180,19.666666666666668,1416,241 +1181,19.683333333333334,1360,241 +1182,19.7,1305,240 +1183,19.716666666666665,1250,238 +1184,19.733333333333334,1196,234 +1185,19.75,1143,229 +1186,19.766666666666666,1092,224 +1187,19.78333333333333,1043,218 +1188,19.8,996,212 +1189,19.816666666666666,953,205 +1190,19.833333333333332,912,198 +1191,19.85,874,191 +1192,19.866666666666667,841,184 +1193,19.883333333333333,810,177 +1194,19.9,784,172 +1195,19.916666666666668,761,166 +1196,19.933333333333334,742,162 +1197,19.95,728,158 +1198,19.966666666666665,717,156 +1199,19.983333333333334,712,155 +1200,20.0,712,155 +1201,20.016666666666666,712,155 +1202,20.03333333333333,719,157 +1203,20.05,730,160 +1204,20.066666666666666,745,163 +1205,20.083333333333332,764,168 +1206,20.1,787,173 +1207,20.116666666666667,815,180 +1208,20.133333333333333,846,187 +1209,20.15,880,193 +1210,20.166666666666668,918,200 +1211,20.183333333333334,958,208 +1212,20.2,1001,214 +1213,20.216666666666665,1048,221 +1214,20.233333333333334,1097,227 +1215,20.25,1148,233 +1216,20.266666666666666,1201,237 +1217,20.28333333333333,1255,241 +1218,20.3,1311,243 +1219,20.316666666666666,1365,244 +1220,20.333333333333332,1421,244 +1221,20.35,1479,244 +1222,20.366666666666667,1535,242 +1223,20.383333333333333,1590,239 +1224,20.4,1644,235 +1225,20.416666666666668,1697,230 +1226,20.433333333333334,1749,224 +1227,20.45,1798,218 +1228,20.466666666666665,1845,210 +1229,20.483333333333334,1889,202 +1230,20.5,1930,195 +1231,20.516666666666666,1969,187 +1232,20.53333333333333,2004,179 +1233,20.55,2035,172 +1234,20.566666666666666,2063,165 +1235,20.583333333333332,2088,158 +1236,20.6,2108,153 +1237,20.616666666666667,2124,148 +1238,20.633333333333333,2137,145 +1239,20.65,2146,142 +1240,20.666666666666668,2147,142 +1241,20.683333333333334,2147,142 +1242,20.7,2147,142 +1243,20.716666666666665,2139,143 +1244,20.733333333333334,2128,147 +1245,20.75,2112,151 +1246,20.766666666666666,2092,156 +1247,20.78333333333333,2069,162 +1248,20.8,2041,168 +1249,20.816666666666666,2010,175 +1250,20.833333333333332,1976,183 +1251,20.85,1938,191 +1252,20.866666666666667,1897,198 +1253,20.883333333333333,1854,206 +1254,20.9,1808,213 +1255,20.916666666666668,1759,220 +1256,20.933333333333334,1708,226 +1257,20.95,1656,231 +1258,20.966666666666665,1602,235 +1259,20.983333333333334,1546,238 +1260,21.0,1490,241 +1261,21.016666666666666,1433,241 +1262,21.03333333333333,1377,241 +1263,21.05,1322,241 +1264,21.066666666666666,1267,239 +1265,21.083333333333332,1211,235 +1266,21.1,1158,231 +1267,21.116666666666667,1107,226 +1268,21.133333333333333,1057,220 +1269,21.15,1011,213 +1270,21.166666666666668,966,206 +1271,21.183333333333334,925,199 +1272,21.2,886,193 +1273,21.216666666666665,852,186 +1274,21.233333333333334,821,179 +1275,21.25,793,173 +1276,21.266666666666666,769,167 +1277,21.28333333333333,750,163 +1278,21.3,734,159 +1279,21.316666666666666,722,157 +1280,21.333333333333332,715,154 +1281,21.35,715,154 +1282,21.366666666666667,715,154 +1283,21.383333333333333,719,156 +1284,21.4,729,159 +1285,21.416666666666668,743,162 +1286,21.433333333333334,761,167 +1287,21.45,783,172 +1288,21.466666666666665,809,178 +1289,21.483333333333334,838,185 +1290,21.5,871,191 +1291,21.516666666666666,908,199 +1292,21.53333333333333,948,206 +1293,21.55,991,213 +1294,21.566666666666666,1036,219 +1295,21.583333333333332,1084,226 +1296,21.6,1135,231 +1297,21.616666666666667,1187,236 +1298,21.633333333333333,1241,240 +1299,21.65,1296,243 +1300,21.666666666666668,1351,245 +1301,21.683333333333334,1406,245 +1302,21.7,1463,245 +1303,21.716666666666665,1520,243 +1304,21.733333333333334,1575,240 +1305,21.75,1629,236 +1306,21.766666666666666,1683,231 +1307,21.78333333333333,1734,226 +1308,21.8,1783,219 +1309,21.816666666666666,1831,212 +1310,21.833333333333332,1876,205 +1311,21.85,1918,197 +1312,21.866666666666667,1957,189 +1313,21.883333333333333,1992,181 +1314,21.9,2025,174 +1315,21.916666666666668,2054,167 +1316,21.933333333333334,2079,160 +1317,21.95,2101,155 +1318,21.966666666666665,2118,150 +1319,21.983333333333334,2132,146 +1320,22.0,2141,143 +1321,22.016666666666666,2146,142 +1322,22.03333333333333,2146,142 +1323,22.05,2146,142 +1324,22.066666666666666,2139,143 +1325,22.083333333333332,2129,146 +1326,22.1,2114,150 +1327,22.116666666666667,2096,155 +1328,22.133333333333333,2073,161 +1329,22.15,2047,167 +1330,22.166666666666668,2018,174 +1331,22.183333333333334,1984,181 +1332,22.2,1947,189 +1333,22.216666666666665,1908,196 +1334,22.233333333333334,1865,204 +1335,22.25,1819,211 +1336,22.266666666666666,1772,218 +1337,22.28333333333333,1721,224 +1338,22.3,1670,229 +1339,22.316666666666666,1616,234 +1340,22.333333333333332,1561,237 +1341,22.35,1506,240 +1342,22.366666666666667,1449,241 +1343,22.383333333333333,1393,241 +1344,22.4,1338,241 +1345,22.416666666666668,1282,239 +1346,22.433333333333334,1228,236 +1347,22.45,1174,232 +1348,22.466666666666665,1123,227 +1349,22.483333333333334,1073,221 +1350,22.5,1025,215 +1351,22.516666666666666,981,209 +1352,22.53333333333333,939,202 +1353,22.55,900,195 +1354,22.566666666666666,864,188 +1355,22.583333333333332,832,182 +1356,22.6,803,176 +1357,22.616666666666667,779,170 +1358,22.633333333333333,758,165 +1359,22.65,741,161 +1360,22.666666666666668,728,159 +1361,22.683333333333334,720,157 +1362,22.7,720,157 +1363,22.716666666666665,720,157 +1364,22.733333333333334,720,157 +1365,22.75,729,159 +1366,22.766666666666666,742,163 +1367,22.78333333333333,759,167 +1368,22.8,780,172 +1369,22.816666666666666,805,177 +1370,22.833333333333332,833,184 +1371,22.85,865,191 +1372,22.866666666666667,901,198 +1373,22.883333333333333,939,205 +1374,22.9,982,211 +1375,22.916666666666668,1026,218 +1376,22.933333333333334,1074,225 +1377,22.95,1123,230 +1378,22.966666666666665,1174,235 +1379,22.983333333333334,1227,239 +1380,23.0,1282,243 +1381,23.016666666666666,1337,244 +1382,23.03333333333333,1392,244 +1383,23.05,1447,244 +1384,23.066666666666666,1504,243 +1385,23.083333333333332,1559,241 +1386,23.1,1614,237 +1387,23.116666666666667,1667,232 +1388,23.133333333333333,1719,227 +1389,23.15,1769,221 +1390,23.166666666666668,1816,214 +1391,23.183333333333334,1862,207 +1392,23.2,1904,199 +1393,23.216666666666665,1944,191 +1394,23.233333333333334,1981,184 +1395,23.25,2014,176 +1396,23.266666666666666,2043,169 +1397,23.28333333333333,2070,163 +1398,23.3,2092,157 +1399,23.316666666666666,2111,152 +1400,23.333333333333332,2126,147 +1401,23.35,2136,144 +1402,23.366666666666667,2143,142 +1403,23.383333333333333,2143,142 +1404,23.4,2143,142 +1405,23.416666666666668,2139,143 +1406,23.433333333333334,2129,145 +1407,23.45,2116,149 +1408,23.466666666666665,2098,154 +1409,23.483333333333334,2077,159 +1410,23.5,2052,165 +1411,23.516666666666666,2023,172 +1412,23.53333333333333,1991,179 +1413,23.55,1956,187 +1414,23.566666666666666,1917,194 +1415,23.583333333333332,1875,202 +1416,23.6,1831,209 +1417,23.616666666666667,1784,216 +1418,23.633333333333333,1734,222 +1419,23.65,1683,228 +1420,23.666666666666668,1630,232 +1421,23.683333333333334,1576,236 +1422,23.7,1521,239 +1423,23.716666666666665,1464,241 +1424,23.733333333333334,1408,241 +1425,23.75,1354,241 +1426,23.766666666666666,1298,240 +1427,23.78333333333333,1244,238 +1428,23.8,1190,234 +1429,23.816666666666666,1138,229 +1430,23.833333333333332,1088,224 +1431,23.85,1040,218 +1432,23.866666666666667,995,212 +1433,23.883333333333333,952,205 +1434,23.9,912,198 +1435,23.916666666666668,876,192 +1436,23.933333333333334,843,185 +1437,23.95,814,179 +1438,23.966666666666665,788,173 +1439,23.983333333333334,766,169 +1440,24.0,749,164 +1441,24.016666666666666,735,161 +1442,24.03333333333333,726,159 +1443,24.05,723,158 +1444,24.066666666666666,723,158 +1445,24.083333333333332,723,158 +1446,24.1,730,160 +1447,24.116666666666667,741,163 +1448,24.133333333333333,757,167 +1449,24.15,777,172 +1450,24.166666666666668,800,177 +1451,24.183333333333334,828,184 +1452,24.2,859,190 +1453,24.216666666666665,893,197 +1454,24.233333333333334,931,204 +1455,24.25,972,211 +1456,24.266666666666666,1016,217 +1457,24.28333333333333,1062,224 +1458,24.3,1110,229 +1459,24.316666666666666,1161,234 +1460,24.333333333333332,1214,239 +1461,24.35,1268,242 +1462,24.366666666666667,1322,245 +1463,24.383333333333333,1376,245 +1464,24.4,1431,245 +1465,24.416666666666668,1488,244 +1466,24.433333333333334,1544,241 +1467,24.45,1598,238 +1468,24.466666666666665,1652,234 +1469,24.483333333333334,1704,228 +1470,24.5,1754,222 +1471,24.516666666666666,1802,216 +1472,24.53333333333333,1848,208 +1473,24.55,1891,201 +1474,24.566666666666666,1932,193 +1475,24.583333333333332,1969,185 +1476,24.6,2003,178 +1477,24.616666666666667,2034,171 +1478,24.633333333333333,2061,164 +1479,24.65,2084,158 +1480,24.666666666666668,2104,153 +1481,24.683333333333334,2119,149 +1482,24.7,2132,145 +1483,24.716666666666665,2139,143 +1484,24.733333333333334,2139,143 +1485,24.75,2139,143 +1486,24.766666666666666,2138,143 +1487,24.78333333333333,2130,145 +1488,24.8,2118,148 +1489,24.816666666666666,2101,152 +1490,24.833333333333332,2081,157 +1491,24.85,2057,163 +1492,24.866666666666667,2029,170 +1493,24.883333333333333,1998,177 +1494,24.9,1964,184 +1495,24.916666666666668,1926,192 +1496,24.933333333333334,1885,200 +1497,24.95,1842,207 +1498,24.966666666666665,1795,214 +1499,24.983333333333334,1747,220 +1500,25.0,1696,226 +1501,25.016666666666666,1644,231 +1502,25.03333333333333,1590,235 +1503,25.05,1536,238 +1504,25.066666666666666,1480,241 +1505,25.083333333333332,1423,241 +1506,25.1,1368,241 +1507,25.116666666666667,1314,241 +1508,25.133333333333333,1259,239 +1509,25.15,1205,235 +1510,25.166666666666668,1153,231 +1511,25.183333333333334,1103,226 +1512,25.2,1054,220 +1513,25.216666666666665,1009,214 +1514,25.233333333333334,966,208 +1515,25.25,925,201 +1516,25.266666666666666,888,194 +1517,25.28333333333333,855,188 +1518,25.3,824,182 +1519,25.316666666666666,798,176 +1520,25.333333333333332,775,171 +1521,25.35,757,167 +1522,25.366666666666667,742,163 +1523,25.383333333333333,731,160 +1524,25.4,725,159 +1525,25.416666666666668,725,159 +1526,25.433333333333334,725,159 +1527,25.45,731,161 +1528,25.466666666666665,741,163 +1529,25.483333333333334,756,167 +1530,25.5,774,172 +1531,25.516666666666666,797,177 +1532,25.53333333333333,823,183 +1533,25.55,853,189 +1534,25.566666666666666,886,196 +1535,25.583333333333332,923,203 +1536,25.6,962,210 +1537,25.616666666666667,1005,216 +1538,25.633333333333333,1051,223 +1539,25.65,1099,229 +1540,25.666666666666668,1148,234 +1541,25.683333333333334,1200,238 +1542,25.7,1254,242 +1543,25.716666666666665,1308,244 +1544,25.733333333333334,1362,245 +1545,25.75,1417,245 +1546,25.766666666666666,1474,245 +1547,25.78333333333333,1528,243 +1548,25.8,1583,239 +1549,25.816666666666666,1637,235 +1550,25.833333333333332,1689,230 +1551,25.849999999999998,1739,225 +1552,25.866666666666667,1788,218 +1553,25.883333333333333,1834,211 +1554,25.9,1878,203 +1555,25.916666666666668,1919,196 +1556,25.933333333333334,1957,188 +1557,25.95,1992,180 +1558,25.966666666666665,2024,173 +1559,25.983333333333334,2052,166 +1560,26.0,2076,160 +1561,26.016666666666666,2097,155 +1562,26.03333333333333,2113,150 +1563,26.05,2126,146 +1564,26.066666666666666,2135,143 +1565,26.083333333333332,2137,143 +1566,26.099999999999998,2137,143 +1567,26.116666666666667,2137,143 +1568,26.133333333333333,2130,145 +1569,26.15,2119,148 +1570,26.166666666666668,2104,152 +1571,26.183333333333334,2085,157 +1572,26.2,2062,162 +1573,26.216666666666665,2035,169 +1574,26.233333333333334,2005,175 +1575,26.25,1971,183 +1576,26.266666666666666,1934,190 +1577,26.28333333333333,1895,198 +1578,26.3,1852,205 +1579,26.316666666666666,1806,212 +1580,26.333333333333332,1758,219 +1581,26.349999999999998,1709,225 +1582,26.366666666666667,1657,230 +1583,26.383333333333333,1604,235 +1584,26.4,1550,238 +1585,26.416666666666668,1495,240 +1586,26.433333333333334,1439,242 +1587,26.45,1383,242 +1588,26.466666666666665,1329,242 +1589,26.483333333333334,1275,239 +1590,26.5,1221,236 +1591,26.516666666666666,1168,232 +1592,26.53333333333333,1117,227 +1593,26.55,1069,222 +1594,26.566666666666666,1023,216 +1595,26.583333333333332,979,210 +1596,26.599999999999998,938,203 +1597,26.616666666666667,900,196 +1598,26.633333333333333,866,190 +1599,26.65,835,184 +1600,26.666666666666668,807,178 +1601,26.683333333333334,784,173 +1602,26.7,764,168 +1603,26.716666666666665,748,165 +1604,26.733333333333334,737,162 +1605,26.75,730,161 +1606,26.766666666666666,730,161 +1607,26.78333333333333,730,161 +1608,26.8,732,161 +1609,26.816666666666666,741,164 +1610,26.833333333333332,755,168 +1611,26.849999999999998,772,172 +1612,26.866666666666667,793,177 +1613,26.883333333333333,819,182 +1614,26.9,847,188 +1615,26.916666666666668,879,195 +1616,26.933333333333334,915,202 +1617,26.95,954,208 +1618,26.966666666666665,996,215 +1619,26.983333333333334,1040,222 +1620,27.0,1087,227 +1621,27.016666666666666,1136,232 +1622,27.03333333333333,1187,237 +1623,27.05,1240,241 +1624,27.066666666666666,1294,244 +1625,27.083333333333332,1348,245 +1626,27.099999999999998,1402,245 +1627,27.116666666666667,1458,245 +1628,27.133333333333333,1514,244 +1629,27.15,1568,241 +1630,27.166666666666668,1622,236 +1631,27.183333333333334,1674,232 +1632,27.2,1724,226 +1633,27.216666666666665,1774,220 +1634,27.233333333333334,1821,213 +1635,27.25,1865,206 +1636,27.266666666666666,1906,198 +1637,27.28333333333333,1945,190 +1638,27.3,1981,182 +1639,27.316666666666666,2013,175 +1640,27.333333333333332,2041,168 +1641,27.349999999999998,2067,162 +1642,27.366666666666667,2088,156 +1643,27.383333333333333,2106,151 +1644,27.4,2120,147 +1645,27.416666666666668,2130,144 +1646,27.433333333333334,2136,143 +1647,27.45,2136,143 +1648,27.466666666666665,2136,143 +1649,27.483333333333334,2130,144 +1650,27.5,2119,147 +1651,27.516666666666666,2105,151 +1652,27.53333333333333,2087,155 +1653,27.55,2066,161 +1654,27.566666666666666,2040,167 +1655,27.583333333333332,2011,174 +1656,27.599999999999998,1978,181 +1657,27.616666666666667,1942,189 +1658,27.633333333333333,1903,196 +1659,27.65,1862,203 +1660,27.666666666666668,1817,211 +1661,27.683333333333334,1770,217 +1662,27.7,1721,223 +1663,27.716666666666665,1670,229 +1664,27.733333333333334,1618,233 +1665,27.75,1564,237 +1666,27.766666666666666,1510,239 +1667,27.78333333333333,1453,241 +1668,27.8,1398,241 +1669,27.816666666666666,1344,241 +1670,27.833333333333332,1289,240 +1671,27.849999999999998,1236,237 +1672,27.866666666666667,1183,233 +1673,27.883333333333333,1132,229 +1674,27.9,1083,224 +1675,27.916666666666668,1036,218 +1676,27.933333333333334,992,212 +1677,27.95,951,205 +1678,27.966666666666665,912,199 +1679,27.983333333333334,877,192 +1680,28.0,845,186 +1681,28.016666666666666,817,180 +1682,28.03333333333333,792,175 +1683,28.05,772,171 +1684,28.066666666666666,755,167 +1685,28.083333333333332,743,164 +1686,28.099999999999998,734,162 +1687,28.116666666666667,734,162 +1688,28.133333333333333,734,162 +1689,28.15,734,162 +1690,28.166666666666668,742,165 +1691,28.183333333333334,754,168 +1692,28.2,770,172 +1693,28.216666666666665,790,176 +1694,28.233333333333334,814,182 +1695,28.25,842,188 +1696,28.266666666666666,873,194 +1697,28.28333333333333,908,201 +1698,28.3,946,208 +1699,28.316666666666666,987,214 +1700,28.333333333333332,1030,221 +1701,28.349999999999998,1076,227 +1702,28.366666666666667,1125,232 +1703,28.383333333333333,1175,236 +1704,28.4,1227,241 +1705,28.416666666666668,1280,243 +1706,28.433333333333334,1334,245 +1707,28.45,1388,245 +1708,28.466666666666665,1443,245 +1709,28.483333333333334,1499,244 +1710,28.5,1553,242 +1711,28.516666666666666,1607,238 +1712,28.53333333333333,1659,234 +1713,28.55,1710,228 +1714,28.566666666666666,1760,222 +1715,28.583333333333332,1807,215 +1716,28.599999999999998,1852,208 +1717,28.616666666666667,1894,200 +1718,28.633333333333333,1933,193 +1719,28.65,1970,185 +1720,28.666666666666668,2002,178 +1721,28.683333333333334,2032,171 +1722,28.7,2058,164 +1723,28.716666666666665,2081,159 +1724,28.733333333333334,2100,153 +1725,28.75,2114,149 +1726,28.766666666666666,2125,146 +1727,28.78333333333333,2132,144 +1728,28.8,2132,144 +1729,28.816666666666666,2132,144 +1730,28.833333333333332,2129,145 +1731,28.849999999999998,2120,147 +1732,28.866666666666667,2107,150 +1733,28.883333333333333,2090,155 +1734,28.9,2069,160 +1735,28.916666666666668,2045,166 +1736,28.933333333333334,2017,173 +1737,28.95,1985,179 +1738,28.966666666666665,1950,187 +1739,28.983333333333334,1912,194 +1740,29.0,1872,201 +1741,29.016666666666666,1828,209 +1742,29.03333333333333,1782,215 +1743,29.05,1733,222 +1744,29.066666666666666,1683,227 +1745,29.083333333333332,1631,232 +1746,29.099999999999998,1578,236 +1747,29.116666666666667,1524,239 +1748,29.133333333333333,1469,241 +1749,29.15,1413,241 +1750,29.166666666666668,1359,241 +1751,29.183333333333334,1305,241 +1752,29.2,1251,238 +1753,29.216666666666665,1198,235 +1754,29.233333333333334,1147,231 +1755,29.25,1098,226 +1756,29.266666666666666,1051,220 +1757,29.28333333333333,1006,214 +1758,29.3,964,208 +1759,29.316666666666666,925,201 +1760,29.333333333333332,889,195 +1761,29.349999999999998,856,189 +1762,29.366666666666667,827,183 +1763,29.383333333333333,802,178 +1764,29.4,780,173 +1765,29.416666666666668,763,169 +1766,29.433333333333334,749,166 +1767,29.45,739,164 +1768,29.466666666666665,735,163 +1769,29.483333333333334,735,163 +1770,29.5,735,163 +1771,29.516666666666666,742,165 +1772,29.53333333333333,753,168 +1773,29.55,768,171 +1774,29.566666666666666,787,176 +1775,29.583333333333332,810,181 +1776,29.599999999999998,837,187 +1777,29.616666666666667,867,193 +1778,29.633333333333333,901,200 +1779,29.65,937,207 +1780,29.666666666666668,977,213 +1781,29.683333333333334,1020,219 +1782,29.7,1065,225 +1783,29.716666666666665,1113,230 +1784,29.733333333333334,1162,236 +1785,29.75,1214,240 +1786,29.766666666666666,1267,243 +1787,29.78333333333333,1320,245 +1788,29.8,1373,245 +1789,29.816666666666666,1428,245 +1790,29.833333333333332,1484,244 +1791,29.849999999999998,1538,242 +1792,29.866666666666667,1592,239 +1793,29.883333333333333,1645,235 +1794,29.9,1696,230 +1795,29.916666666666668,1745,224 +1796,29.933333333333334,1793,217 +1797,29.95,1838,210 +1798,29.966666666666665,1881,203 +1799,29.983333333333334,1921,195 +1800,30.0,1958,188 +1801,30.016666666666666,1992,180 +1802,30.03333333333333,2022,173 +1803,30.05,2049,167 +1804,30.066666666666666,2073,161 +1805,30.083333333333332,2092,155 +1806,30.099999999999998,2108,151 +1807,30.116666666666667,2120,147 +1808,30.133333333333333,2128,145 +1809,30.15,2128,145 +1810,30.166666666666668,2128,145 +1811,30.183333333333334,2128,145 +1812,30.2,2120,147 +1813,30.216666666666665,2108,150 +1814,30.233333333333334,2092,154 +1815,30.25,2072,159 +1816,30.266666666666666,2049,165 +1817,30.28333333333333,2022,171 +1818,30.3,1991,178 +1819,30.316666666666666,1958,185 +1820,30.333333333333332,1921,192 +1821,30.349999999999998,1880,200 +1822,30.366666666666667,1838,207 +1823,30.383333333333333,1793,214 +1824,30.4,1745,220 +1825,30.416666666666668,1695,226 +1826,30.433333333333334,1644,231 +1827,30.45,1591,235 +1828,30.466666666666665,1537,238 +1829,30.483333333333334,1483,240 +1830,30.5,1427,241 +1831,30.516666666666666,1372,241 +1832,30.53333333333333,1320,241 +1833,30.55,1266,239 +1834,30.566666666666666,1213,236 +1835,30.583333333333332,1161,232 +1836,30.599999999999998,1112,227 +1837,30.616666666666667,1064,222 +1838,30.633333333333333,1018,216 +1839,30.65,976,210 +1840,30.666666666666668,936,204 +1841,30.683333333333334,900,198 +1842,30.7,866,191 +1843,30.716666666666665,836,185 +1844,30.733333333333334,810,179 +1845,30.75,787,175 +1846,30.766666666666666,769,170 +1847,30.78333333333333,754,167 +1848,30.8,744,165 +1849,30.816666666666666,737,164 +1850,30.833333333333332,737,164 +1851,30.849999999999998,737,164 +1852,30.866666666666667,742,165 +1853,30.883333333333333,752,168 +1854,30.9,766,171 +1855,30.916666666666668,784,175 +1856,30.933333333333334,806,180 +1857,30.95,831,186 +1858,30.966666666666665,860,192 +1859,30.983333333333334,893,199 +1860,31.0,929,205 +1861,31.016666666666666,968,212 +1862,31.03333333333333,1010,218 +1863,31.05,1054,224 +1864,31.066666666666666,1101,230 +1865,31.083333333333332,1150,235 +1866,31.099999999999998,1200,239 +1867,31.116666666666667,1253,242 +1868,31.133333333333333,1306,244 +1869,31.15,1359,245 +1870,31.166666666666668,1413,245 +1871,31.183333333333334,1468,245 +1872,31.2,1523,243 +1873,31.216666666666665,1577,240 +1874,31.233333333333334,1630,236 +1875,31.25,1681,231 +1876,31.266666666666666,1731,225 +1877,31.28333333333333,1779,219 +1878,31.3,1825,212 +1879,31.316666666666666,1868,205 +1880,31.333333333333332,1909,197 +1881,31.349999999999998,1946,190 +1882,31.366666666666667,1981,182 +1883,31.383333333333333,2012,175 +1884,31.4,2040,168 +1885,31.416666666666668,2064,162 +1886,31.433333333333334,2085,156 +1887,31.45,2102,152 +1888,31.466666666666665,2114,148 +1889,31.483333333333334,2123,146 +1890,31.5,2127,144 +1891,31.516666666666666,2127,144 +1892,31.53333333333333,2127,144 +1893,31.55,2120,146 +1894,31.566666666666666,2109,149 +1895,31.583333333333332,2094,153 +1896,31.599999999999998,2075,157 +1897,31.616666666666667,2053,163 +1898,31.633333333333333,2027,169 +1899,31.65,1997,176 +1900,31.666666666666668,1964,183 +1901,31.683333333333334,1928,191 +1902,31.7,1889,198 +1903,31.716666666666665,1847,205 +1904,31.733333333333334,1802,212 +1905,31.75,1756,218 +1906,31.766666666666666,1707,224 +1907,31.78333333333333,1656,230 +1908,31.8,1604,234 +1909,31.816666666666666,1550,237 +1910,31.833333333333332,1496,240 +1911,31.849999999999998,1441,242 +1912,31.866666666666667,1386,242 +1913,31.883333333333333,1333,242 +1914,31.9,1279,240 +1915,31.916666666666668,1226,237 +1916,31.933333333333334,1175,234 +1917,31.95,1125,229 +1918,31.966666666666665,1077,224 +1919,31.983333333333334,1031,218 +1920,32.0,988,212 +1921,32.016666666666666,948,206 +1922,32.03333333333333,911,200 +1923,32.05,877,194 +1924,32.06666666666666,846,188 +1925,32.083333333333336,819,182 +1926,32.1,796,178 +1927,32.11666666666667,777,174 +1928,32.13333333333333,761,170 +1929,32.15,749,167 +1930,32.166666666666664,742,165 +1931,32.18333333333333,742,165 +1932,32.2,742,165 +1933,32.21666666666667,744,166 +1934,32.233333333333334,753,169 +1935,32.25,766,172 +1936,32.266666666666666,782,176 +1937,32.28333333333333,803,181 +1938,32.3,828,186 +1939,32.31666666666666,856,193 +1940,32.333333333333336,888,198 +1941,32.35,922,205 +1942,32.36666666666667,960,211 +1943,32.38333333333333,1001,217 +1944,32.4,1045,223 +1945,32.416666666666664,1091,229 +1946,32.43333333333333,1139,234 +1947,32.45,1189,238 +1948,32.46666666666667,1240,242 +1949,32.483333333333334,1293,245 +1950,32.5,1347,245 +1951,32.516666666666666,1400,245 +1952,32.53333333333333,1454,245 +1953,32.55,1509,244 +1954,32.56666666666666,1562,241 +1955,32.583333333333336,1615,238 +1956,32.6,1666,233 +1957,32.61666666666667,1717,227 +1958,32.63333333333333,1765,221 +1959,32.65,1811,214 +1960,32.666666666666664,1855,207 +1961,32.68333333333333,1896,199 +1962,32.7,1934,192 +1963,32.71666666666667,1970,185 +1964,32.733333333333334,2002,177 +1965,32.75,2031,170 +1966,32.766666666666666,2056,164 +1967,32.78333333333333,2077,158 +1968,32.8,2095,154 +1969,32.81666666666666,2109,150 +1970,32.833333333333336,2119,147 +1971,32.85,2125,145 +1972,32.86666666666667,2125,145 +1973,32.88333333333333,2125,145 +1974,32.9,2119,146 +1975,32.916666666666664,2109,149 +1976,32.93333333333333,2095,152 +1977,32.95,2078,157 +1978,32.96666666666667,2057,162 +1979,32.983333333333334,2032,168 +1980,33.0,2003,175 +1981,33.016666666666666,1971,181 +1982,33.03333333333333,1936,189 +1983,33.05,1897,196 +1984,33.06666666666666,1856,203 +1985,33.083333333333336,1813,211 +1986,33.1,1766,217 +1987,33.11666666666667,1718,223 +1988,33.13333333333333,1668,228 +1989,33.15,1616,233 +1990,33.166666666666664,1564,236 +1991,33.18333333333333,1510,240 +1992,33.2,1455,241 +1993,33.21666666666667,1401,241 +1994,33.233333333333334,1348,241 +1995,33.25,1294,241 +1996,33.266666666666666,1242,238 +1997,33.28333333333333,1190,235 +1998,33.3,1140,230 +1999,33.31666666666666,1092,225 +2000,33.333333333333336,1046,221 +2001,33.35,1002,215 +2002,33.36666666666667,961,208 +2003,33.38333333333333,923,202 +2004,33.4,888,196 +2005,33.416666666666664,857,190 +2006,33.43333333333333,829,184 +2007,33.45,805,179 +2008,33.46666666666667,784,175 +2009,33.483333333333334,768,171 +2010,33.5,755,168 +2011,33.516666666666666,747,166 +2012,33.53333333333333,746,166 +2013,33.55,746,166 +2014,33.56666666666666,746,167 +2015,33.583333333333336,754,168 +2016,33.6,765,171 +2017,33.61666666666667,781,175 +2018,33.63333333333333,800,180 +2019,33.65,824,185 +2020,33.666666666666664,851,190 +2021,33.68333333333333,882,197 +2022,33.7,916,203 +2023,33.71666666666667,952,210 +2024,33.733333333333334,992,216 +2025,33.75,1035,221 +2026,33.766666666666666,1080,228 +2027,33.78333333333333,1128,233 +2028,33.8,1177,237 +2029,33.81666666666666,1228,241 +2030,33.833333333333336,1281,243 +2031,33.85,1334,245 +2032,33.86666666666667,1386,245 +2033,33.88333333333333,1441,245 +2034,33.9,1495,244 +2035,33.916666666666664,1549,241 +2036,33.93333333333333,1602,238 +2037,33.95,1654,234 +2038,33.96666666666667,1704,228 +2039,33.983333333333334,1752,221 +2040,34.0,1798,215 +2041,34.016666666666666,1843,208 +2042,34.03333333333333,1884,201 +2043,34.05,1923,193 +2044,34.06666666666666,1959,186 +2045,34.083333333333336,1992,179 +2046,34.1,2021,172 +2047,34.11666666666667,2047,166 +2048,34.13333333333333,2070,160 +2049,34.15,2088,155 +2050,34.166666666666664,2103,151 +2051,34.18333333333333,2114,147 +2052,34.2,2121,145 +2053,34.21666666666667,2121,145 +2054,34.233333333333334,2121,145 +2055,34.25,2118,146 +2056,34.266666666666666,2110,148 +2057,34.28333333333333,2097,151 +2058,34.3,2080,155 +2059,34.31666666666666,2060,161 +2060,34.333333333333336,2036,166 +2061,34.35,2008,173 +2062,34.36666666666667,1978,180 +2063,34.38333333333333,1943,187 +2064,34.4,1906,194 +2065,34.416666666666664,1865,201 +2066,34.43333333333333,1823,208 +2067,34.45,1777,215 +2068,34.46666666666667,1730,221 +2069,34.483333333333334,1680,227 +2070,34.5,1629,232 +2071,34.516666666666666,1576,236 +2072,34.53333333333333,1523,238 +2073,34.55,1469,240 +2074,34.56666666666666,1414,240 +2075,34.583333333333336,1361,240 +2076,34.6,1308,240 +2077,34.61666666666667,1255,238 +2078,34.63333333333333,1202,235 +2079,34.65,1152,231 +2080,34.666666666666664,1104,227 +2081,34.68333333333333,1058,222 +2082,34.7,1014,216 +2083,34.71666666666667,972,210 +2084,34.733333333333334,934,203 +2085,34.75,899,198 +2086,34.766666666666666,867,192 +2087,34.78333333333333,838,186 +2088,34.8,813,181 +2089,34.81666666666666,792,176 +2090,34.833333333333336,774,173 +2091,34.85,761,170 +2092,34.86666666666667,752,168 +2093,34.88333333333333,747,168 +2094,34.9,747,168 +2095,34.916666666666664,747,168 +2096,34.93333333333333,754,169 +2097,34.95,764,172 +2098,34.96666666666667,779,175 +2099,34.983333333333334,798,180 +2100,35.0,820,184 +2101,35.016666666666666,846,190 +2102,35.03333333333333,876,196 +2103,35.05,908,202 +2104,35.06666666666666,944,208 +2105,35.083333333333336,983,215 +2106,35.1,1025,221 +2107,35.11666666666667,1070,227 +2108,35.13333333333333,1116,232 +2109,35.15,1165,236 +2110,35.166666666666664,1215,240 +2111,35.18333333333333,1268,243 +2112,35.2,1320,245 +2113,35.21666666666667,1371,245 +2114,35.233333333333334,1425,245 +2115,35.25,1480,244 +2116,35.266666666666666,1533,242 +2117,35.28333333333333,1586,239 +2118,35.3,1638,235 +2119,35.31666666666666,1689,230 +2120,35.333333333333336,1737,224 +2121,35.35,1784,218 +2122,35.36666666666667,1829,211 +2123,35.38333333333333,1871,203 +2124,35.4,1911,196 +2125,35.416666666666664,1948,189 +2126,35.43333333333333,1981,181 +2127,35.45,2012,174 +2128,35.46666666666667,2038,168 +2129,35.483333333333334,2061,162 +2130,35.5,2081,156 +2131,35.516666666666666,2097,152 +2132,35.53333333333333,2109,149 +2133,35.55,2117,147 +2134,35.56666666666666,2117,146 +2135,35.583333333333336,2117,146 +2136,35.6,2117,146 +2137,35.61666666666667,2109,148 +2138,35.63333333333333,2097,151 +2139,35.65,2082,155 +2140,35.666666666666664,2062,160 +2141,35.68333333333333,2039,166 +2142,35.7,2013,172 +2143,35.71666666666667,1983,179 +2144,35.733333333333334,1949,185 +2145,35.75,1913,193 +2146,35.766666666666666,1874,200 +2147,35.78333333333333,1831,207 +2148,35.8,1786,214 +2149,35.81666666666666,1739,220 +2150,35.833333333333336,1691,225 +2151,35.85,1640,231 +2152,35.86666666666667,1589,235 +2153,35.88333333333333,1536,238 +2154,35.9,1482,240 +2155,35.916666666666664,1428,241 +2156,35.93333333333333,1374,241 +2157,35.95,1321,241 +2158,35.96666666666667,1269,240 +2159,35.983333333333334,1217,237 +2160,36.0,1166,233 +2161,36.016666666666666,1118,229 +2162,36.03333333333333,1071,224 +2163,36.05,1027,218 +2164,36.06666666666666,985,213 +2165,36.083333333333336,946,207 +2166,36.1,910,200 +2167,36.11666666666667,877,195 +2168,36.13333333333333,848,189 +2169,36.15,822,184 +2170,36.166666666666664,800,179 +2171,36.18333333333333,781,175 +2172,36.2,767,172 +2173,36.21666666666667,756,170 +2174,36.233333333333334,750,169 +2175,36.25,750,169 +2176,36.266666666666666,750,169 +2177,36.28333333333333,755,170 +2178,36.3,764,172 +2179,36.31666666666666,778,176 +2180,36.333333333333336,796,180 +2181,36.35,817,185 +2182,36.36666666666667,842,190 +2183,36.38333333333333,871,196 +2184,36.4,903,202 +2185,36.416666666666664,938,208 +2186,36.43333333333333,976,215 +2187,36.45,1017,221 +2188,36.46666666666667,1061,227 +2189,36.483333333333334,1107,231 +2190,36.5,1154,236 +2191,36.516666666666666,1204,240 +2192,36.53333333333333,1256,243 +2193,36.55,1308,246 +2194,36.56666666666666,1360,246 +2195,36.583333333333336,1413,246 +2196,36.6,1467,245 +2197,36.61666666666667,1521,243 +2198,36.63333333333333,1574,240 +2199,36.65,1625,236 +2200,36.666666666666664,1676,231 +2201,36.68333333333333,1725,225 +2202,36.7,1772,219 +2203,36.71666666666667,1818,212 +2204,36.733333333333334,1860,205 +2205,36.75,1901,198 +2206,36.766666666666666,1938,190 +2207,36.78333333333333,1972,183 +2208,36.8,2003,176 +2209,36.81666666666666,2030,170 +2210,36.833333333333336,2054,163 +2211,36.85,2075,158 +2212,36.86666666666667,2091,154 +2213,36.88333333333333,2104,150 +2214,36.9,2113,148 +2215,36.916666666666664,2116,146 +2216,36.93333333333333,2116,146 +2217,36.95,2116,146 +2218,36.96666666666667,2109,148 +2219,36.983333333333334,2099,151 +2220,37.0,2084,154 +2221,37.016666666666666,2066,159 +2222,37.03333333333333,2044,164 +2223,37.05,2019,170 +2224,37.06666666666666,1990,177 +2225,37.083333333333336,1957,184 +2226,37.1,1921,191 +2227,37.11666666666667,1883,198 +2228,37.13333333333333,1841,205 +2229,37.15,1797,212 +2230,37.166666666666664,1751,218 +2231,37.18333333333333,1703,224 +2232,37.2,1653,230 +2233,37.21666666666667,1602,234 +2234,37.233333333333334,1549,237 +2235,37.25,1496,240 +2236,37.266666666666666,1442,242 +2237,37.28333333333333,1389,242 +2238,37.3,1336,242 +2239,37.31666666666666,1284,240 +2240,37.333333333333336,1232,238 +2241,37.35,1181,235 +2242,37.36666666666667,1132,231 +2243,37.38333333333333,1085,226 +2244,37.4,1040,221 +2245,37.416666666666664,997,215 +2246,37.43333333333333,958,209 +2247,37.45,921,203 +2248,37.46666666666667,887,198 +2249,37.483333333333334,857,192 +2250,37.5,830,186 +2251,37.516666666666666,807,182 +2252,37.53333333333333,788,178 +2253,37.55,773,174 +2254,37.56666666666666,761,172 +2255,37.583333333333336,754,170 +2256,37.6,754,170 +2257,37.61666666666667,754,170 +2258,37.63333333333333,756,171 +2259,37.65,764,173 +2260,37.666666666666664,777,176 +2261,37.68333333333333,793,180 +2262,37.7,814,185 +2263,37.71666666666667,838,190 +2264,37.733333333333334,866,196 +2265,37.75,896,201 +2266,37.766666666666666,931,208 +2267,37.78333333333333,968,214 +2268,37.8,1008,220 +2269,37.81666666666666,1051,226 +2270,37.833333333333336,1096,231 +2271,37.85,1144,236 +2272,37.86666666666667,1193,240 +2273,37.88333333333333,1243,243 +2274,37.9,1295,245 +2275,37.916666666666664,1348,246 +2276,37.93333333333333,1400,246 +2277,37.95,1454,246 +2278,37.96666666666667,1508,244 +2279,37.983333333333334,1561,241 +2280,38.0,1613,237 +2281,38.016666666666666,1663,233 +2282,38.03333333333333,1713,227 +2283,38.05,1761,221 +2284,38.06666666666666,1806,214 +2285,38.083333333333336,1849,207 +2286,38.1,1890,200 +2287,38.11666666666667,1928,192 +2288,38.13333333333333,1963,185 +2289,38.15,1995,178 +2290,38.166666666666664,2023,171 +2291,38.18333333333333,2048,165 +2292,38.2,2069,159 +2293,38.21666666666667,2086,155 +2294,38.233333333333334,2100,151 +2295,38.25,2110,148 +2296,38.266666666666666,2116,147 +2297,38.28333333333333,2116,147 +2298,38.3,2116,147 +2299,38.31666666666666,2110,148 +2300,38.333333333333336,2100,150 +2301,38.35,2087,153 +2302,38.36666666666667,2069,158 +2303,38.38333333333333,2048,163 +2304,38.4,2023,169 +2305,38.416666666666664,1995,175 +2306,38.43333333333333,1964,182 +2307,38.45,1929,189 +2308,38.46666666666667,1891,196 +2309,38.483333333333334,1851,203 +2310,38.5,1807,210 +2311,38.516666666666666,1761,217 +2312,38.53333333333333,1714,223 +2313,38.55,1665,229 +2314,38.56666666666666,1614,233 +2315,38.583333333333336,1561,237 +2316,38.6,1509,239 +2317,38.61666666666667,1455,241 +2318,38.63333333333333,1401,242 +2319,38.65,1349,242 +2320,38.666666666666664,1296,242 +2321,38.68333333333333,1244,240 +2322,38.7,1193,236 +2323,38.71666666666667,1144,232 +2324,38.733333333333334,1096,228 +2325,38.75,1051,222 +2326,38.766666666666666,1008,217 +2327,38.78333333333333,968,211 +2328,38.8,931,206 +2329,38.81666666666666,897,200 +2330,38.833333333333336,866,194 +2331,38.85,839,189 +2332,38.86666666666667,815,184 +2333,38.88333333333333,795,180 +2334,38.9,779,176 +2335,38.916666666666664,767,174 +2336,38.93333333333333,758,172 +2337,38.95,757,172 +2338,38.96666666666667,757,172 +2339,38.983333333333334,757,172 +2340,39.0,765,174 +2341,39.016666666666666,776,177 +2342,39.03333333333333,792,180 +2343,39.05,811,185 +2344,39.06666666666666,834,190 +2345,39.083333333333336,861,195 +2346,39.1,891,201 +2347,39.11666666666667,924,207 +2348,39.13333333333333,961,213 +2349,39.15,1000,219 +2350,39.166666666666664,1042,225 +2351,39.18333333333333,1086,230 +2352,39.2,1133,235 +2353,39.21666666666667,1181,239 +2354,39.233333333333334,1232,243 +2355,39.25,1283,245 +2356,39.266666666666666,1336,247 +2357,39.28333333333333,1387,247 +2358,39.3,1440,247 +2359,39.31666666666666,1495,245 +2360,39.333333333333336,1547,242 +2361,39.35,1599,238 +2362,39.36666666666667,1650,234 +2363,39.38333333333333,1700,229 +2364,39.4,1748,223 +2365,39.416666666666664,1794,216 +2366,39.43333333333333,1837,209 +2367,39.45,1878,202 +2368,39.46666666666667,1916,195 +2369,39.483333333333334,1952,187 +2370,39.5,1984,180 +2371,39.516666666666666,2013,173 +2372,39.53333333333333,2039,167 +2373,39.55,2061,161 +2374,39.56666666666666,2079,156 +2375,39.583333333333336,2094,152 +2376,39.6,2105,149 +2377,39.61666666666667,2112,147 +2378,39.63333333333333,2112,147 +2379,39.65,2112,147 +2380,39.666666666666664,2108,148 +2381,39.68333333333333,2100,150 +2382,39.7,2087,153 +2383,39.71666666666667,2071,157 +2384,39.733333333333334,2051,162 +2385,39.75,2027,168 +2386,39.766666666666666,2000,174 +2387,39.78333333333333,1969,181 +2388,39.8,1935,188 +2389,39.81666666666666,1898,195 +2390,39.833333333333336,1858,203 +2391,39.85,1816,210 +2392,39.86666666666667,1771,216 +2393,39.88333333333333,1724,223 +2394,39.9,1675,228 +2395,39.916666666666664,1625,233 +2396,39.93333333333333,1573,237 +2397,39.95,1521,240 +2398,39.96666666666667,1467,242 +2399,39.983333333333334,1413,243 +2400,40.0,1360,243 +2401,40.016666666666666,1309,243 +2402,40.03333333333333,1257,240 +2403,40.05,1206,237 +2404,40.06666666666666,1156,234 +2405,40.083333333333336,1108,230 +2406,40.1,1063,225 +2407,40.11666666666667,1020,219 +2408,40.13333333333333,979,214 +2409,40.15,941,208 +2410,40.166666666666664,906,202 +2411,40.18333333333333,875,197 +2412,40.2,847,192 +2413,40.21666666666667,822,187 +2414,40.233333333333334,801,182 +2415,40.25,784,179 +2416,40.266666666666666,771,176 +2417,40.28333333333333,762,174 +2418,40.3,758,174 +2419,40.31666666666666,758,174 +2420,40.333333333333336,758,174 +2421,40.35,765,175 +2422,40.36666666666667,775,178 +2423,40.38333333333333,790,181 +2424,40.4,808,186 +2425,40.416666666666664,830,190 +2426,40.43333333333333,856,195 +2427,40.45,885,201 +2428,40.46666666666667,917,207 +2429,40.483333333333334,953,213 +2430,40.5,992,219 +2431,40.516666666666666,1033,225 +2432,40.53333333333333,1077,230 +2433,40.55,1122,235 +2434,40.56666666666666,1170,240 +2435,40.583333333333336,1220,243 +2436,40.6,1271,246 +2437,40.61666666666667,1323,248 +2438,40.63333333333333,1374,248 +2439,40.65,1427,248 +2440,40.666666666666664,1481,246 +2441,40.68333333333333,1534,244 +2442,40.7,1586,240 +2443,40.71666666666667,1637,236 +2444,40.733333333333334,1687,231 +2445,40.75,1735,225 +2446,40.766666666666666,1781,219 +2447,40.78333333333333,1825,212 +2448,40.8,1867,204 +2449,40.81666666666666,1906,197 +2450,40.833333333333336,1942,190 +2451,40.85,1975,183 +2452,40.86666666666667,2005,176 +2453,40.88333333333333,2031,170 +2454,40.9,2054,164 +2455,40.916666666666664,2073,159 +2456,40.93333333333333,2088,155 +2457,40.95,2100,151 +2458,40.96666666666667,2108,149 +2459,40.983333333333334,2108,149 +2460,41.0,2108,149 +2461,41.016666666666666,2108,149 +2462,41.03333333333333,2100,151 +2463,41.05,2088,154 +2464,41.06666666666666,2073,158 +2465,41.083333333333336,2054,162 +2466,41.1,2031,168 +2467,41.11666666666667,2005,174 +2468,41.13333333333333,1975,180 +2469,41.15,1942,187 +2470,41.166666666666664,1905,195 +2471,41.18333333333333,1867,202 +2472,41.2,1825,209 +2473,41.21666666666667,1781,216 +2474,41.233333333333334,1734,222 +2475,41.25,1686,228 +2476,41.266666666666666,1636,232 +2477,41.28333333333333,1585,237 +2478,41.3,1533,240 +2479,41.31666666666666,1480,243 +2480,41.333333333333336,1426,244 +2481,41.35,1373,244 +2482,41.36666666666667,1322,244 +2483,41.38333333333333,1270,243 +2484,41.4,1218,240 +2485,41.416666666666664,1169,236 +2486,41.43333333333333,1121,232 +2487,41.45,1075,228 +2488,41.46666666666667,1031,223 +2489,41.483333333333334,990,217 +2490,41.5,952,212 +2491,41.516666666666666,917,206 +2492,41.53333333333333,884,201 +2493,41.55,856,195 +2494,41.56666666666666,830,190 +2495,41.583333333333336,809,186 +2496,41.6,791,182 +2497,41.61666666666667,777,179 +2498,41.63333333333333,767,177 +2499,41.65,760,176 +2500,41.666666666666664,760,176 +2501,41.68333333333333,760,176 +2502,41.7,766,178 +2503,41.71666666666667,775,180 +2504,41.733333333333334,789,183 +2505,41.75,806,187 +2506,41.766666666666666,828,192 +2507,41.78333333333333,853,197 +2508,41.8,881,203 +2509,41.81666666666666,912,208 +2510,41.833333333333336,947,214 +2511,41.85,984,220 +2512,41.86666666666667,1025,226 +2513,41.88333333333333,1068,231 +2514,41.9,1114,236 +2515,41.916666666666664,1161,240 +2516,41.93333333333333,1210,243 +2517,41.95,1261,246 +2518,41.96666666666667,1312,248 +2519,41.983333333333334,1364,248 +2520,42.0,1416,248 +2521,42.016666666666666,1469,248 +2522,42.03333333333333,1522,246 +2523,42.05,1574,243 +2524,42.06666666666666,1625,239 +2525,42.083333333333336,1675,234 +2526,42.1,1723,228 +2527,42.11666666666667,1770,222 +2528,42.13333333333333,1814,215 +2529,42.15,1857,208 +2530,42.166666666666664,1896,201 +2531,42.18333333333333,1933,194 +2532,42.2,1966,186 +2533,42.21666666666667,1997,179 +2534,42.233333333333334,2024,173 +2535,42.25,2047,167 +2536,42.266666666666666,2067,162 +2537,42.28333333333333,2084,157 +2538,42.3,2096,154 +2539,42.31666666666666,2105,151 +2540,42.333333333333336,2107,150 +2541,42.35,2107,150 +2542,42.36666666666667,2107,150 +2543,42.38333333333333,2101,152 +2544,42.4,2090,155 +2545,42.416666666666664,2075,158 +2546,42.43333333333333,2057,163 +2547,42.45,2035,168 +2548,42.46666666666667,2009,174 +2549,42.483333333333334,1980,181 +2550,42.5,1948,187 +2551,42.516666666666666,1913,194 +2552,42.53333333333333,1875,201 +2553,42.55,1833,208 +2554,42.56666666666666,1790,215 +2555,42.583333333333336,1745,221 +2556,42.6,1697,227 +2557,42.61666666666667,1648,232 +2558,42.63333333333333,1597,237 +2559,42.65,1545,240 +2560,42.666666666666664,1493,243 +2561,42.68333333333333,1439,245 +2562,42.7,1386,245 +2563,42.71666666666667,1335,245 +2564,42.733333333333334,1283,243 +2565,42.75,1232,241 +2566,42.766666666666666,1182,238 +2567,42.78333333333333,1134,234 +2568,42.8,1088,229 +2569,42.81666666666666,1044,224 +2570,42.833333333333336,1002,219 +2571,42.85,964,214 +2572,42.86666666666667,928,208 +2573,42.88333333333333,895,203 +2574,42.9,866,197 +2575,42.916666666666664,840,192 +2576,42.93333333333333,817,188 +2577,42.95,799,184 +2578,42.96666666666667,784,181 +2579,42.983333333333334,773,178 +2580,43.0,766,177 +2581,43.016666666666666,766,177 +2582,43.03333333333333,766,177 +2583,43.05,768,178 +2584,43.06666666666666,777,180 +2585,43.083333333333336,790,183 +2586,43.1,806,187 +2587,43.11666666666667,826,191 +2588,43.13333333333333,850,196 +2589,43.15,877,201 +2590,43.166666666666664,908,207 +2591,43.18333333333333,942,213 +2592,43.2,979,219 +2593,43.21666666666667,1018,225 +2594,43.233333333333334,1061,230 +2595,43.25,1105,235 +2596,43.266666666666666,1152,240 +2597,43.28333333333333,1201,243 +2598,43.3,1251,246 +2599,43.31666666666666,1302,248 +2600,43.333333333333336,1353,249 +2601,43.35,1405,249 +2602,43.36666666666667,1458,249 +2603,43.38333333333333,1511,247 +2604,43.4,1563,244 +2605,43.416666666666664,1614,240 +2606,43.43333333333333,1664,236 +2607,43.45,1712,230 +2608,43.46666666666667,1759,223 +2609,43.483333333333334,1804,217 +2610,43.5,1847,210 +2611,43.516666666666666,1886,203 +2612,43.53333333333333,1924,195 +2613,43.55,1958,187 +2614,43.56666666666666,1989,180 +2615,43.583333333333336,2017,174 +2616,43.6,2041,168 +2617,43.61666666666667,2062,163 +2618,43.63333333333333,2079,158 +2619,43.65,2092,155 +2620,43.666666666666664,2102,152 +2621,43.68333333333333,2107,150 +2622,43.7,2107,150 +2623,43.71666666666667,2107,150 +2624,43.733333333333334,2101,152 +2625,43.75,2091,154 +2626,43.766666666666666,2078,158 +2627,43.78333333333333,2060,162 +2628,43.8,2039,167 +2629,43.81666666666666,2015,173 +2630,43.833333333333336,1986,179 +2631,43.85,1955,186 +2632,43.86666666666667,1921,193 +2633,43.88333333333333,1883,200 +2634,43.9,1843,207 +2635,43.916666666666664,1800,214 +2636,43.93333333333333,1755,220 +2637,43.95,1708,226 +2638,43.96666666666667,1659,231 +2639,43.983333333333334,1609,235 +2640,44.0,1558,239 +2641,44.016666666666666,1506,242 +2642,44.03333333333333,1453,243 +2643,44.05,1400,243 +2644,44.06666666666666,1349,243 +2645,44.083333333333336,1296,243 +2646,44.1,1245,241 +2647,44.11666666666667,1195,238 +2648,44.13333333333333,1146,235 +2649,44.15,1100,230 +2650,44.166666666666664,1056,225 +2651,44.18333333333333,1014,220 +2652,44.2,975,215 +2653,44.21666666666667,938,209 +2654,44.233333333333334,904,203 +2655,44.25,874,198 +2656,44.266666666666666,848,193 +2657,44.28333333333333,825,188 +2658,44.3,805,185 +2659,44.31666666666666,790,181 +2660,44.333333333333336,778,179 +2661,44.35,770,177 +2662,44.36666666666667,770,177 +2663,44.38333333333333,770,177 +2664,44.4,770,178 +2665,44.416666666666664,777,179 +2666,44.43333333333333,789,182 +2667,44.45,805,186 +2668,44.46666666666667,824,190 +2669,44.483333333333334,847,195 +2670,44.5,873,200 +2671,44.516666666666666,903,205 +2672,44.53333333333333,936,211 +2673,44.55,972,217 +2674,44.56666666666666,1011,223 +2675,44.583333333333336,1052,228 +2676,44.6,1096,233 +2677,44.61666666666667,1142,238 +2678,44.63333333333333,1190,242 +2679,44.65,1240,245 +2680,44.666666666666664,1290,247 +2681,44.68333333333333,1342,248 +2682,44.7,1393,248 +2683,44.71666666666667,1445,248 +2684,44.733333333333334,1498,246 +2685,44.75,1550,243 +2686,44.766666666666666,1601,239 +2687,44.78333333333333,1651,235 +2688,44.8,1701,230 +2689,44.81666666666666,1748,224 +2690,44.833333333333336,1792,217 +2691,44.85,1835,210 +2692,44.86666666666667,1876,203 +2693,44.88333333333333,1913,195 +2694,44.9,1949,188 +2695,44.916666666666664,1980,181 +2696,44.93333333333333,2008,174 +2697,44.95,2033,168 +2698,44.96666666666667,2055,162 +2699,44.983333333333334,2073,157 +2700,45.0,2087,153 +2701,45.016666666666666,2097,151 +2702,45.03333333333333,2104,149 +2703,45.05,2104,149 +2704,45.06666666666666,2104,149 +2705,45.083333333333336,2100,149 +2706,45.1,2091,151 +2707,45.11666666666667,2078,155 +2708,45.13333333333333,2062,159 +2709,45.15,2042,164 +2710,45.166666666666664,2018,170 +2711,45.18333333333333,1991,176 +2712,45.2,1960,183 +2713,45.21666666666667,1927,189 +2714,45.233333333333334,1890,197 +2715,45.25,1850,204 +2716,45.266666666666666,1808,210 +2717,45.28333333333333,1764,216 +2718,45.3,1717,222 +2719,45.31666666666666,1669,228 +2720,45.333333333333336,1619,233 +2721,45.35,1568,236 +2722,45.36666666666667,1516,239 +2723,45.38333333333333,1463,241 +2724,45.4,1411,242 +2725,45.416666666666664,1359,242 +2726,45.43333333333333,1307,242 +2727,45.45,1256,240 +2728,45.46666666666667,1206,237 +2729,45.483333333333334,1158,234 +2730,45.5,1111,229 +2731,45.516666666666666,1066,225 +2732,45.53333333333333,1024,220 +2733,45.55,984,215 +2734,45.56666666666666,947,209 +2735,45.583333333333336,913,204 +2736,45.6,883,199 +2737,45.61666666666667,855,194 +2738,45.63333333333333,832,189 +2739,45.65,812,185 +2740,45.666666666666664,795,182 +2741,45.68333333333333,782,179 +2742,45.7,774,177 +2743,45.71666666666667,771,177 +2744,45.733333333333334,771,177 +2745,45.75,771,177 +2746,45.766666666666666,777,179 +2747,45.78333333333333,788,181 +2748,45.8,803,185 +2749,45.81666666666666,821,189 +2750,45.833333333333336,843,193 +2751,45.85,869,198 +2752,45.86666666666667,898,204 +2753,45.88333333333333,930,209 +2754,45.9,965,215 +2755,45.916666666666664,1003,220 +2756,45.93333333333333,1044,226 +2757,45.95,1087,231 +2758,45.96666666666667,1132,235 +2759,45.983333333333334,1179,239 +2760,46.0,1228,243 +2761,46.016666666666666,1279,245 +2762,46.03333333333333,1331,246 +2763,46.05,1381,246 +2764,46.06666666666666,1433,246 +2765,46.083333333333336,1486,245 +2766,46.1,1538,242 +2767,46.11666666666667,1589,238 +2768,46.13333333333333,1639,234 +2769,46.15,1688,229 +2770,46.166666666666664,1735,223 +2771,46.18333333333333,1781,217 +2772,46.2,1824,210 +2773,46.21666666666667,1865,202 +2774,46.233333333333334,1903,195 +2775,46.25,1938,188 +2776,46.266666666666666,1971,181 +2777,46.28333333333333,2000,174 +2778,46.3,2025,168 +2779,46.31666666666666,2048,162 +2780,46.333333333333336,2066,158 +2781,46.35,2081,154 +2782,46.36666666666667,2092,150 +2783,46.38333333333333,2100,148 +2784,46.4,2100,148 +2785,46.416666666666664,2100,148 +2786,46.43333333333333,2099,148 +2787,46.45,2091,151 +2788,46.46666666666667,2079,153 +2789,46.483333333333334,2063,157 +2790,46.5,2044,162 +2791,46.516666666666666,2021,167 +2792,46.53333333333333,1994,174 +2793,46.55,1965,180 +2794,46.56666666666666,1931,187 +2795,46.583333333333336,1896,194 +2796,46.6,1857,201 +2797,46.61666666666667,1815,208 +2798,46.63333333333333,1772,214 +2799,46.65,1726,220 +2800,46.666666666666664,1678,226 +2801,46.68333333333333,1629,231 +2802,46.7,1578,235 +2803,46.71666666666667,1527,238 +2804,46.733333333333334,1475,240 +2805,46.75,1421,242 +2806,46.766666666666666,1369,242 +2807,46.78333333333333,1319,242 +2808,46.8,1268,240 +2809,46.81666666666666,1218,237 +2810,46.833333333333336,1169,234 +2811,46.85,1122,230 +2812,46.86666666666667,1077,226 +2813,46.88333333333333,1034,221 +2814,46.9,994,216 +2815,46.916666666666664,956,210 +2816,46.93333333333333,922,205 +2817,46.95,890,199 +2818,46.96666666666667,862,194 +2819,46.983333333333334,838,190 +2820,47.0,817,186 +2821,47.016666666666666,800,182 +2822,47.03333333333333,786,179 +2823,47.05,777,177 +2824,47.06666666666666,771,177 +2825,47.083333333333336,771,177 +2826,47.1,771,177 +2827,47.11666666666667,777,178 +2828,47.13333333333333,787,181 +2829,47.15,801,184 +2830,47.166666666666664,818,188 +2831,47.18333333333333,839,192 +2832,47.2,863,197 +2833,47.21666666666667,892,203 +2834,47.233333333333334,923,209 +2835,47.25,957,214 +2836,47.266666666666666,994,220 +2837,47.28333333333333,1034,225 +2838,47.3,1077,230 +2839,47.31666666666666,1122,235 +2840,47.333333333333336,1168,239 +2841,47.35,1217,243 +2842,47.36666666666667,1267,245 +2843,47.38333333333333,1318,247 +2844,47.4,1368,247 +2845,47.416666666666664,1419,247 +2846,47.43333333333333,1473,246 +2847,47.45,1525,243 +2848,47.46666666666667,1576,240 +2849,47.483333333333334,1626,236 +2850,47.5,1675,231 +2851,47.516666666666666,1723,225 +2852,47.53333333333333,1769,219 +2853,47.55,1813,212 +2854,47.56666666666666,1854,205 +2855,47.583333333333336,1893,198 +2856,47.6,1928,191 +2857,47.61666666666667,1961,183 +2858,47.63333333333333,1991,177 +2859,47.65,2017,170 +2860,47.666666666666664,2040,164 +2861,47.68333333333333,2060,160 +2862,47.7,2076,155 +2863,47.71666666666667,2088,152 +2864,47.733333333333334,2096,149 +2865,47.75,2097,148 +2866,47.766666666666666,2097,148 +2867,47.78333333333333,2097,148 +2868,47.8,2090,150 +2869,47.81666666666666,2079,153 +2870,47.833333333333336,2064,156 +2871,47.85,2046,161 +2872,47.86666666666667,2024,166 +2873,47.88333333333333,1998,172 +2874,47.9,1969,179 +2875,47.916666666666664,1937,186 +2876,47.93333333333333,1902,193 +2877,47.95,1864,200 +2878,47.96666666666667,1823,206 +2879,47.983333333333334,1780,213 +2880,48.0,1734,220 +2881,48.016666666666666,1687,225 +2882,48.03333333333333,1639,229 +2883,48.05,1589,234 +2884,48.06666666666666,1537,237 +2885,48.083333333333336,1486,240 +2886,48.1,1432,242 +2887,48.11666666666667,1381,242 +2888,48.13333333333333,1331,242 +2889,48.15,1279,241 +2890,48.166666666666664,1229,239 +2891,48.18333333333333,1180,236 +2892,48.2,1134,232 +2893,48.21666666666667,1088,228 +2894,48.233333333333334,1046,223 +2895,48.25,1005,218 +2896,48.266666666666666,967,213 +2897,48.28333333333333,932,207 +2898,48.3,901,202 +2899,48.31666666666666,872,197 +2900,48.333333333333336,847,192 +2901,48.35,825,188 +2902,48.36666666666667,807,185 +2903,48.38333333333333,793,182 +2904,48.4,783,179 +2905,48.416666666666664,776,178 +2906,48.43333333333333,776,178 +2907,48.45,776,178 +2908,48.46666666666667,780,179 +2909,48.483333333333334,789,182 +2910,48.5,801,184 +2911,48.516666666666666,818,188 +2912,48.53333333333333,838,192 +2913,48.55,862,197 +2914,48.56666666666666,889,202 +2915,48.583333333333336,919,208 +2916,48.6,953,213 +2917,48.61666666666667,990,219 +2918,48.63333333333333,1029,224 +2919,48.65,1070,230 +2920,48.666666666666664,1114,234 +2921,48.68333333333333,1161,238 +2922,48.7,1209,242 +2923,48.71666666666667,1258,244 +2924,48.733333333333334,1309,246 +2925,48.75,1359,246 +2926,48.766666666666666,1410,246 +2927,48.78333333333333,1462,245 +2928,48.8,1514,243 +2929,48.81666666666666,1565,240 +2930,48.833333333333336,1615,236 +2931,48.85,1664,231 +2932,48.86666666666667,1712,225 +2933,48.88333333333333,1757,219 +2934,48.9,1802,213 +2935,48.916666666666664,1843,206 +2936,48.93333333333333,1882,199 +2937,48.95,1919,191 +2938,48.96666666666667,1952,184 +2939,48.983333333333334,1983,177 +2940,49.0,2010,171 +2941,49.016666666666666,2033,165 +2942,49.03333333333333,2054,160 +2943,49.05,2070,156 +2944,49.06666666666666,2083,152 +2945,49.083333333333336,2092,149 +2946,49.1,2096,148 +2947,49.11666666666667,2096,148 +2948,49.13333333333333,2096,148 +2949,49.15,2089,150 +2950,49.166666666666664,2079,152 +2951,49.18333333333333,2065,155 +2952,49.2,2047,160 +2953,49.21666666666667,2026,165 +2954,49.233333333333334,2002,171 +2955,49.25,1974,177 +2956,49.266666666666666,1942,183 +2957,49.28333333333333,1908,190 +2958,49.3,1871,198 +2959,49.31666666666666,1831,204 +2960,49.333333333333336,1789,211 +2961,49.35,1744,217 +2962,49.36666666666667,1697,223 +2963,49.38333333333333,1649,228 +2964,49.4,1599,233 +2965,49.416666666666664,1548,236 +2966,49.43333333333333,1497,239 +2967,49.45,1444,241 +2968,49.46666666666667,1392,241 +2969,49.483333333333334,1341,241 +2970,49.5,1290,241 +2971,49.516666666666666,1240,238 +2972,49.53333333333333,1191,235 +2973,49.55,1144,232 +2974,49.56666666666666,1098,228 +2975,49.583333333333336,1055,224 +2976,49.6,1014,218 +2977,49.61666666666667,976,214 +2978,49.63333333333333,941,208 +2979,49.65,908,203 +2980,49.666666666666664,879,198 +2981,49.68333333333333,854,193 +2982,49.7,831,189 +2983,49.71666666666667,813,185 +2984,49.733333333333334,798,182 +2985,49.75,787,180 +2986,49.766666666666666,779,178 +2987,49.78333333333333,779,178 +2988,49.8,779,178 +2989,49.81666666666666,780,179 +2990,49.833333333333336,788,181 +2991,49.85,800,184 +2992,49.86666666666667,816,187 +2993,49.88333333333333,835,191 +2994,49.9,858,196 +2995,49.916666666666664,885,201 +2996,49.93333333333333,914,206 +2997,49.95,947,212 +2998,49.96666666666667,983,218 +2999,49.983333333333334,1021,223 +3000,50.0,1062,228 +3001,50.016666666666666,1106,233 +3002,50.03333333333333,1151,238 +3003,50.05,1198,241 +3004,50.06666666666666,1247,244 +3005,50.083333333333336,1297,246 +3006,50.1,1347,246 +3007,50.11666666666667,1398,246 +3008,50.13333333333333,1449,246 +3009,50.15,1501,244 +3010,50.166666666666664,1552,241 +3011,50.18333333333333,1603,237 +3012,50.2,1652,233 +3013,50.21666666666667,1700,227 +3014,50.233333333333334,1746,222 +3015,50.25,1790,215 +3016,50.266666666666666,1832,208 +3017,50.28333333333333,1872,201 +3018,50.3,1909,194 +3019,50.31666666666666,1943,187 +3020,50.333333333333336,1974,180 +3021,50.35,2002,173 +3022,50.36666666666667,2026,167 +3023,50.38333333333333,2047,162 +3024,50.4,2064,157 +3025,50.416666666666664,2078,154 +3026,50.43333333333333,2088,150 +3027,50.45,2094,149 +3028,50.46666666666667,2094,149 +3029,50.483333333333334,2094,149 +3030,50.5,2088,150 +3031,50.516666666666666,2079,152 +3032,50.53333333333333,2067,155 +3033,50.55,2050,159 +3034,50.56666666666666,2029,164 +3035,50.583333333333336,2005,170 +3036,50.6,1978,176 +3037,50.61666666666667,1948,183 +3038,50.63333333333333,1914,190 +3039,50.65,1878,197 +3040,50.666666666666664,1838,203 +3041,50.68333333333333,1797,210 +3042,50.7,1752,216 +3043,50.71666666666667,1706,222 +3044,50.733333333333334,1659,228 +3045,50.75,1609,232 +3046,50.766666666666666,1559,236 +3047,50.78333333333333,1508,239 +3048,50.8,1456,241 +3049,50.81666666666666,1404,242 +3050,50.833333333333336,1353,242 +3051,50.85,1303,242 +3052,50.86666666666667,1253,240 +3053,50.88333333333333,1204,237 +3054,50.9,1156,234 +3055,50.916666666666664,1110,231 +3056,50.93333333333333,1067,226 +3057,50.95,1026,221 +3058,50.96666666666667,987,216 +3059,50.983333333333334,951,211 +3060,51.0,918,206 +3061,51.016666666666666,889,201 +3062,51.03333333333333,862,196 +3063,51.05,839,192 +3064,51.06666666666666,820,188 +3065,51.083333333333336,804,185 +3066,51.1,792,182 +3067,51.11666666666667,784,181 +3068,51.13333333333333,783,181 +3069,51.15,783,181 +3070,51.166666666666664,783,181 +3071,51.18333333333333,790,183 +3072,51.2,801,186 +3073,51.21666666666667,816,189 +3074,51.233333333333334,834,193 +3075,51.25,856,198 +3076,51.266666666666666,881,202 +3077,51.28333333333333,910,208 +3078,51.3,942,213 +3079,51.31666666666666,977,219 +3080,51.333333333333336,1015,224 +3081,51.35,1055,229 +3082,51.36666666666667,1098,234 +3083,51.38333333333333,1143,238 +3084,51.4,1190,242 +3085,51.416666666666664,1239,245 +3086,51.43333333333333,1288,247 +3087,51.449999999999996,1338,247 +3088,51.46666666666667,1388,247 +3089,51.483333333333334,1439,247 +3090,51.5,1491,245 +3091,51.516666666666666,1542,242 +3092,51.53333333333333,1592,238 +3093,51.55,1642,234 +3094,51.56666666666666,1689,229 +3095,51.583333333333336,1736,223 +3096,51.6,1781,216 +3097,51.61666666666667,1823,210 +3098,51.63333333333333,1863,202 +3099,51.65,1901,195 +3100,51.666666666666664,1935,188 +3101,51.68333333333333,1967,181 +3102,51.699999999999996,1995,175 +3103,51.71666666666667,2020,169 +3104,51.733333333333334,2041,163 +3105,51.75,2059,159 +3106,51.766666666666666,2073,155 +3107,51.78333333333333,2084,152 +3108,51.8,2091,150 +3109,51.81666666666666,2091,150 +3110,51.833333333333336,2091,150 +3111,51.85,2088,150 +3112,51.86666666666667,2080,152 +3113,51.88333333333333,2068,155 +3114,51.9,2052,159 +3115,51.916666666666664,2032,164 +3116,51.93333333333333,2009,169 +3117,51.949999999999996,1983,175 +3118,51.96666666666667,1953,181 +3119,51.983333333333334,1921,188 +3120,52.0,1884,195 +3121,52.016666666666666,1846,202 +3122,52.03333333333333,1805,209 +3123,52.05,1761,215 +3124,52.06666666666666,1716,221 +3125,52.083333333333336,1669,227 +3126,52.1,1620,232 +3127,52.11666666666667,1570,235 +3128,52.13333333333333,1519,239 +3129,52.15,1467,241 +3130,52.166666666666664,1416,243 +3131,52.18333333333333,1365,243 +3132,52.199999999999996,1315,243 +3133,52.21666666666667,1265,241 +3134,52.233333333333334,1215,239 +3135,52.25,1167,236 +3136,52.266666666666666,1121,232 +3137,52.28333333333333,1077,228 +3138,52.3,1035,223 +3139,52.31666666666666,996,218 +3140,52.333333333333336,960,212 +3141,52.35,926,208 +3142,52.36666666666667,896,203 +3143,52.38333333333333,869,198 +3144,52.4,845,194 +3145,52.416666666666664,825,189 +3146,52.43333333333333,809,186 +3147,52.449999999999996,796,183 +3148,52.46666666666667,787,182 +3149,52.483333333333334,783,182 +3150,52.5,783,182 +3151,52.516666666666666,783,182 +3152,52.53333333333333,790,183 +3153,52.55,800,186 +3154,52.56666666666666,814,188 +3155,52.583333333333336,831,192 +3156,52.6,853,197 +3157,52.61666666666667,877,202 +3158,52.63333333333333,905,207 +3159,52.65,936,213 +3160,52.666666666666664,971,218 +3161,52.68333333333333,1008,223 +3162,52.699999999999996,1048,229 +3163,52.71666666666667,1089,233 +3164,52.733333333333334,1134,237 +3165,52.75,1180,241 +3166,52.766666666666666,1227,244 +3167,52.78333333333333,1277,246 +3168,52.8,1327,247 +3169,52.81666666666666,1377,247 +3170,52.833333333333336,1428,247 +3171,52.85,1480,245 +3172,52.86666666666667,1531,243 +3173,52.88333333333333,1581,239 +3174,52.9,1631,235 +3175,52.916666666666664,1679,230 +3176,52.93333333333333,1726,224 +3177,52.949999999999996,1770,218 +3178,52.96666666666667,1813,211 +3179,52.983333333333334,1854,204 +3180,53.0,1892,197 +3181,53.016666666666666,1927,190 +3182,53.03333333333333,1959,183 +3183,53.05,1988,176 +3184,53.06666666666666,2014,170 +3185,53.083333333333336,2036,164 +3186,53.1,2055,159 +3187,53.11666666666667,2070,155 +3188,53.13333333333333,2081,152 +3189,53.15,2089,150 +3190,53.166666666666664,2089,149 +3191,53.18333333333333,2089,149 +3192,53.199999999999996,2088,149 +3193,53.21666666666667,2081,151 +3194,53.233333333333334,2069,154 +3195,53.25,2054,158 +3196,53.266666666666666,2035,162 +3197,53.28333333333333,2013,168 +3198,53.3,1987,173 +3199,53.31666666666666,1958,180 +3200,53.333333333333336,1926,186 +3201,53.35,1891,193 +3202,53.36666666666667,1853,200 +3203,53.38333333333333,1812,207 +3204,53.4,1769,214 +3205,53.416666666666664,1724,220 +3206,53.43333333333333,1677,226 +3207,53.449999999999996,1629,230 +3208,53.46666666666667,1580,235 +3209,53.483333333333334,1529,238 +3210,53.5,1478,241 +3211,53.516666666666666,1425,242 +3212,53.53333333333333,1375,242 +3213,53.55,1325,242 +3214,53.56666666666666,1275,242 +3215,53.583333333333336,1225,239 +3216,53.6,1177,237 +3217,53.61666666666667,1131,233 +3218,53.63333333333333,1087,229 +3219,53.65,1046,225 +3220,53.666666666666664,1006,220 +3221,53.68333333333333,969,215 +3222,53.699999999999996,935,210 +3223,53.71666666666667,904,205 +3224,53.733333333333334,877,200 +3225,53.75,853,195 +3226,53.766666666666666,832,192 +3227,53.78333333333333,815,188 +3228,53.8,801,186 +3229,53.81666666666666,792,184 +3230,53.833333333333336,786,183 +3231,53.85,786,183 +3232,53.86666666666667,786,183 +3233,53.88333333333333,791,184 +3234,53.9,800,187 +3235,53.916666666666664,813,190 +3236,53.93333333333333,830,193 +3237,53.949999999999996,851,197 +3238,53.96666666666667,874,202 +3239,53.983333333333334,902,207 +3240,54.0,932,212 +3241,54.016666666666666,965,218 +3242,54.03333333333333,1002,223 +3243,54.05,1041,228 +3244,54.06666666666666,1082,233 +3245,54.083333333333336,1125,237 +3246,54.1,1171,241 +3247,54.11666666666667,1219,244 +3248,54.13333333333333,1268,246 +3249,54.15,1317,248 +3250,54.166666666666664,1366,248 +3251,54.18333333333333,1417,248 +3252,54.199999999999996,1469,246 +3253,54.21666666666667,1520,244 +3254,54.233333333333334,1571,240 +3255,54.25,1620,236 +3256,54.266666666666666,1668,231 +3257,54.28333333333333,1714,225 +3258,54.3,1759,219 +3259,54.31666666666666,1803,213 +3260,54.333333333333336,1844,206 +3261,54.35,1882,199 +3262,54.36666666666667,1917,192 +3263,54.38333333333333,1950,185 +3264,54.4,1979,178 +3265,54.416666666666664,2006,172 +3266,54.43333333333333,2029,166 +3267,54.449999999999996,2048,161 +3268,54.46666666666667,2064,157 +3269,54.483333333333334,2076,153 +3270,54.5,2084,151 +3271,54.516666666666666,2087,150 +3272,54.53333333333333,2087,150 +3273,54.55,2087,150 +3274,54.56666666666666,2080,151 +3275,54.583333333333336,2069,154 +3276,54.6,2055,157 +3277,54.61666666666667,2037,162 +3278,54.63333333333333,2015,167 +3279,54.65,1990,173 +3280,54.666666666666664,1962,179 +3281,54.68333333333333,1930,186 +3282,54.699999999999996,1896,193 +3283,54.71666666666667,1859,199 +3284,54.733333333333334,1819,206 +3285,54.75,1777,212 +3286,54.766666666666666,1732,219 +3287,54.78333333333333,1686,224 +3288,54.8,1638,230 +3289,54.81666666666666,1589,234 +3290,54.833333333333336,1539,238 +3291,54.85,1488,240 +3292,54.86666666666667,1436,242 +3293,54.88333333333333,1385,242 +3294,54.9,1335,242 +3295,54.916666666666664,1285,242 +3296,54.93333333333333,1236,240 +3297,54.949999999999996,1188,237 +3298,54.96666666666667,1142,234 +3299,54.983333333333334,1097,230 +3300,55.0,1055,225 +3301,55.016666666666666,1015,221 +3302,55.03333333333333,978,216 +3303,55.05,944,211 +3304,55.06666666666666,912,206 +3305,55.083333333333336,884,201 +3306,55.1,859,197 +3307,55.11666666666667,838,193 +3308,55.13333333333333,820,190 +3309,55.15,806,187 +3310,55.166666666666664,796,185 +3311,55.18333333333333,789,184 +3312,55.199999999999996,789,184 +3313,55.21666666666667,789,184 +3314,55.233333333333334,792,185 +3315,55.25,800,187 +3316,55.266666666666666,813,190 +3317,55.28333333333333,829,193 +3318,55.3,848,197 +3319,55.31666666666666,871,201 +3320,55.333333333333336,898,207 +3321,55.35,927,212 +3322,55.36666666666667,960,217 +3323,55.38333333333333,996,222 +3324,55.4,1034,228 +3325,55.416666666666664,1075,232 +3326,55.43333333333333,1118,237 +3327,55.449999999999996,1163,241 +3328,55.46666666666667,1209,244 +3329,55.483333333333334,1258,246 +3330,55.5,1308,248 +3331,55.516666666666666,1357,248 +3332,55.53333333333333,1407,248 +3333,55.55,1458,247 +3334,55.56666666666666,1509,244 +3335,55.583333333333336,1560,241 +3336,55.6,1609,237 +3337,55.61666666666667,1657,232 +3338,55.63333333333333,1704,227 +3339,55.65,1750,221 +3340,55.666666666666664,1793,214 +3341,55.68333333333333,1834,207 +3342,55.699999999999996,1873,200 +3343,55.71666666666667,1909,193 +3344,55.733333333333334,1942,186 +3345,55.75,1972,179 +3346,55.766666666666666,1999,173 +3347,55.78333333333333,2022,167 +3348,55.8,2042,162 +3349,55.81666666666666,2059,158 +3350,55.833333333333336,2071,154 +3351,55.85,2081,152 +3352,55.86666666666667,2085,150 +3353,55.88333333333333,2085,150 +3354,55.9,2085,150 +3355,55.916666666666664,2079,151 +3356,55.93333333333333,2069,154 +3357,55.949999999999996,2056,157 +3358,55.96666666666667,2039,161 +3359,55.983333333333334,2018,166 +3360,56.0,1994,172 +3361,56.016666666666666,1966,178 +3362,56.03333333333333,1935,184 +3363,56.05,1902,192 +3364,56.06666666666666,1865,198 +3365,56.083333333333336,1826,205 +3366,56.1,1784,211 +3367,56.11666666666667,1740,218 +3368,56.13333333333333,1694,223 +3369,56.15,1647,229 +3370,56.166666666666664,1598,233 +3371,56.18333333333333,1548,237 +3372,56.199999999999996,1498,240 +3373,56.21666666666667,1446,242 +3374,56.233333333333334,1396,243 +3375,56.25,1346,243 +3376,56.266666666666666,1296,243 +3377,56.28333333333333,1247,241 +3378,56.3,1198,238 +3379,56.31666666666666,1152,235 +3380,56.333333333333336,1108,232 +3381,56.35,1064,227 +3382,56.36666666666667,1024,222 +3383,56.38333333333333,987,218 +3384,56.4,952,213 +3385,56.416666666666664,920,208 +3386,56.43333333333333,891,204 +3387,56.449999999999996,866,199 +3388,56.46666666666667,844,195 +3389,56.483333333333334,825,191 +3390,56.5,810,189 +3391,56.516666666666666,799,186 +3392,56.53333333333333,792,185 +3393,56.55,792,185 +3394,56.56666666666666,792,185 +3395,56.583333333333336,793,186 +3396,56.6,800,187 +3397,56.61666666666667,812,190 +3398,56.63333333333333,827,193 +3399,56.65,846,197 +3400,56.666666666666664,868,202 +3401,56.68333333333333,894,206 +3402,56.699999999999996,923,212 +3403,56.71666666666667,955,217 +3404,56.733333333333334,990,222 +3405,56.75,1028,227 +3406,56.766666666666666,1068,232 +3407,56.78333333333333,1110,236 +3408,56.8,1155,240 +3409,56.81666666666666,1201,243 +3410,56.833333333333336,1249,246 +3411,56.85,1298,248 +3412,56.86666666666667,1347,248 +3413,56.88333333333333,1397,248 +3414,56.9,1448,247 +3415,56.916666666666664,1499,245 +3416,56.93333333333333,1549,242 +3417,56.949999999999996,1598,238 +3418,56.96666666666667,1647,233 +3419,56.983333333333334,1694,228 +3420,57.0,1740,222 +3421,57.016666666666666,1783,216 +3422,57.03333333333333,1825,208 +3423,57.05,1863,202 +3424,57.06666666666666,1900,195 +3425,57.083333333333336,1934,188 +3426,57.1,1964,181 +3427,57.11666666666667,1992,174 +3428,57.13333333333333,2016,168 +3429,57.15,2037,163 +3430,57.166666666666664,2054,159 +3431,57.18333333333333,2067,155 +3432,57.199999999999996,2077,152 +3433,57.21666666666667,2083,150 +3434,57.233333333333334,2083,150 +3435,57.25,2083,150 +3436,57.266666666666666,2079,151 +3437,57.28333333333333,2069,153 +3438,57.3,2057,156 +3439,57.31666666666666,2040,160 +3440,57.333333333333336,2020,165 +3441,57.35,1997,171 +3442,57.36666666666667,1970,177 +3443,57.38333333333333,1940,183 +3444,57.4,1907,190 +3445,57.416666666666664,1871,197 +3446,57.43333333333333,1832,203 +3447,57.449999999999996,1791,210 +3448,57.46666666666667,1748,216 +3449,57.483333333333334,1703,222 +3450,57.5,1656,228 +3451,57.516666666666666,1608,232 +3452,57.53333333333333,1558,236 +3453,57.55,1508,240 +3454,57.56666666666666,1457,242 +3455,57.583333333333336,1406,243 +3456,57.6,1356,243 +3457,57.61666666666667,1306,243 +3458,57.63333333333333,1257,241 +3459,57.65,1209,239 +3460,57.666666666666664,1162,236 +3461,57.68333333333333,1117,233 +3462,57.699999999999996,1074,229 +3463,57.71666666666667,1033,224 +3464,57.733333333333334,996,219 +3465,57.75,960,214 +3466,57.766666666666666,928,210 +3467,57.78333333333333,899,205 +3468,57.8,873,200 +3469,57.81666666666666,850,196 +3470,57.833333333333336,831,193 +3471,57.85,816,190 +3472,57.86666666666667,804,187 +3473,57.88333333333333,796,186 +3474,57.9,794,186 +3475,57.916666666666664,794,186 +3476,57.93333333333333,794,186 +3477,57.949999999999996,801,188 +3478,57.96666666666667,812,190 +3479,57.983333333333334,826,193 +3480,58.0,845,197 +3481,58.016666666666666,866,201 +3482,58.03333333333333,891,206 +3483,58.05,919,211 +3484,58.06666666666666,950,216 +3485,58.083333333333336,984,222 +3486,58.1,1021,226 +3487,58.11666666666667,1061,231 +3488,58.13333333333333,1103,236 +3489,58.15,1146,240 +3490,58.166666666666664,1192,243 +3491,58.18333333333333,1240,246 +3492,58.199999999999996,1289,247 +3493,58.21666666666667,1338,248 +3494,58.233333333333334,1387,248 +3495,58.25,1437,248 +3496,58.266666666666666,1489,246 +3497,58.28333333333333,1539,243 +3498,58.3,1589,239 +3499,58.31666666666666,1637,235 +3500,58.333333333333336,1684,229 +3501,58.35,1730,223 +3502,58.36666666666667,1774,217 +3503,58.38333333333333,1815,210 +3504,58.4,1855,203 +3505,58.416666666666664,1892,196 +3506,58.43333333333333,1926,189 +3507,58.449999999999996,1957,182 +3508,58.46666666666667,1985,176 +3509,58.483333333333334,2009,170 +3510,58.5,2031,165 +3511,58.516666666666666,2049,160 +3512,58.53333333333333,2063,156 +3513,58.55,2073,153 +3514,58.56666666666666,2080,151 +3515,58.583333333333336,2080,151 +3516,58.6,2080,151 +3517,58.61666666666667,2078,151 +3518,58.63333333333333,2069,153 +3519,58.65,2057,156 +3520,58.666666666666664,2042,160 +3521,58.68333333333333,2022,165 +3522,58.699999999999996,2000,170 +3523,58.71666666666667,1974,176 +3524,58.733333333333334,1944,182 +3525,58.75,1912,189 +3526,58.766666666666666,1877,195 +3527,58.78333333333333,1839,202 +3528,58.8,1798,209 +3529,58.81666666666666,1755,215 +3530,58.833333333333336,1711,222 +3531,58.85,1664,227 +3532,58.86666666666667,1616,232 +3533,58.88333333333333,1567,236 +3534,58.9,1517,239 +3535,58.916666666666664,1466,242 +3536,58.93333333333333,1415,243 +3537,58.949999999999996,1365,243 +3538,58.96666666666667,1316,243 +3539,58.983333333333334,1268,242 +3540,59.0,1219,240 +3541,59.016666666666666,1172,237 +3542,59.03333333333333,1127,234 +3543,59.05,1083,230 +3544,59.06666666666666,1043,225 +3545,59.083333333333336,1005,221 +3546,59.1,969,216 +3547,59.11666666666667,936,211 +3548,59.13333333333333,906,207 +3549,59.15,880,203 +3550,59.166666666666664,857,198 +3551,59.18333333333333,837,195 +3552,59.199999999999996,821,192 +3553,59.21666666666667,809,189 +3554,59.233333333333334,800,187 +3555,59.25,796,187 +3556,59.266666666666666,796,187 +3557,59.28333333333333,796,187 +3558,59.3,802,189 +3559,59.31666666666666,812,191 +3560,59.333333333333336,826,194 +3561,59.35,843,197 +3562,59.36666666666667,864,201 +3563,59.38333333333333,888,206 +3564,59.4,915,211 +3565,59.416666666666664,945,216 +3566,59.43333333333333,979,221 +3567,59.449999999999996,1015,226 +3568,59.46666666666667,1054,231 +3569,59.483333333333334,1096,236 +3570,59.5,1139,239 +3571,59.516666666666666,1184,243 +3572,59.53333333333333,1231,245 +3573,59.55,1279,248 +3574,59.56666666666666,1329,248 +3575,59.583333333333336,1377,248 +3576,59.6,1427,248 +3577,59.61666666666667,1479,246 +3578,59.63333333333333,1528,243 +3579,59.65,1578,240 +3580,59.666666666666664,1627,236 +3581,59.68333333333333,1674,230 +3582,59.699999999999996,1720,225 +3583,59.71666666666667,1764,219 +3584,59.733333333333334,1806,212 +3585,59.75,1846,205 +3586,59.766666666666666,1883,198 +3587,59.78333333333333,1918,191 +3588,59.8,1950,184 +3589,59.81666666666666,1978,177 +3590,59.833333333333336,2003,171 +3591,59.85,2025,166 +3592,59.86666666666667,2044,161 +3593,59.88333333333333,2058,157 +3594,59.9,2070,154 +3595,59.916666666666664,2077,152 +3596,59.93333333333333,2077,151 +3597,59.949999999999996,2077,151 +3598,59.96666666666667,2077,151 +3599,59.983333333333334,2070,153 +3600,60.0,2058,156 +3601,60.016666666666666,2044,159 +3602,60.03333333333333,2025,164 +3603,60.05,2003,169 +3604,60.06666666666666,1978,175 +3605,60.083333333333336,1949,181 +3606,60.1,1917,188 +3607,60.11666666666667,1883,194 +3608,60.13333333333333,1845,201 +3609,60.15,1805,208 +3610,60.166666666666664,1763,215 +3611,60.18333333333333,1719,221 +3612,60.199999999999996,1673,226 +3613,60.21666666666667,1625,231 +3614,60.233333333333334,1577,235 +3615,60.25,1527,239 +3616,60.266666666666666,1477,241 +3617,60.28333333333333,1425,243 +3618,60.3,1375,243 +3619,60.31666666666666,1327,243 +3620,60.333333333333336,1277,243 +3621,60.35,1229,241 +3622,60.36666666666667,1182,238 +3623,60.38333333333333,1137,235 +3624,60.4,1094,231 +3625,60.416666666666664,1052,227 +3626,60.43333333333333,1014,222 +3627,60.449999999999996,978,218 +3628,60.46666666666667,944,213 +3629,60.483333333333334,914,208 +3630,60.5,887,204 +3631,60.516666666666666,863,200 +3632,60.53333333333333,843,196 +3633,60.55,826,193 +3634,60.56666666666666,813,190 +3635,60.583333333333336,804,189 +3636,60.6,798,188 +3637,60.61666666666667,798,188 +3638,60.63333333333333,798,188 +3639,60.65,803,189 +3640,60.666666666666664,812,191 +3641,60.68333333333333,825,194 +3642,60.699999999999996,842,197 +3643,60.71666666666667,862,201 +3644,60.733333333333334,885,206 +3645,60.75,912,211 +3646,60.766666666666666,942,215 +3647,60.78333333333333,974,220 +3648,60.8,1010,226 +3649,60.81666666666666,1048,230 +3650,60.833333333333336,1089,235 +3651,60.85,1132,239 +3652,60.86666666666667,1176,242 +3653,60.88333333333333,1223,245 +3654,60.9,1271,247 +3655,60.916666666666664,1320,248 +3656,60.93333333333333,1367,248 +3657,60.949999999999996,1417,248 +3658,60.96666666666667,1469,246 +3659,60.983333333333334,1519,244 +3660,61.0,1568,240 +3661,61.016666666666666,1617,236 +3662,61.03333333333333,1664,231 +3663,61.05,1710,225 +3664,61.06666666666666,1755,219 +3665,61.083333333333336,1797,213 +3666,61.1,1837,206 +3667,61.11666666666667,1875,199 +3668,61.13333333333333,1910,192 +3669,61.15,1942,185 +3670,61.166666666666664,1971,178 +3671,61.18333333333333,1997,172 +3672,61.199999999999996,2019,166 +3673,61.21666666666667,2038,162 +3674,61.233333333333334,2054,158 +3675,61.25,2066,154 +3676,61.266666666666666,2074,152 +3677,61.28333333333333,2076,151 +3678,61.3,2076,151 +3679,61.31666666666666,2076,151 +3680,61.333333333333336,2069,152 +3681,61.35,2058,155 +3682,61.36666666666667,2044,158 +3683,61.38333333333333,2027,163 +3684,61.4,2005,168 +3685,61.416666666666664,1981,173 +3686,61.43333333333333,1953,179 +3687,61.449999999999996,1921,186 +3688,61.46666666666667,1888,193 +3689,61.483333333333334,1851,200 +3690,61.5,1811,206 +3691,61.516666666666666,1770,213 +3692,61.53333333333333,1726,219 +3693,61.55,1681,225 +3694,61.56666666666666,1634,230 +3695,61.583333333333336,1586,234 +3696,61.6,1536,238 +3697,61.61666666666667,1486,240 +3698,61.63333333333333,1435,243 +3699,61.65,1385,243 +3700,61.666666666666664,1336,243 +3701,61.68333333333333,1287,243 +3702,61.699999999999996,1239,241 +3703,61.71666666666667,1192,239 +3704,61.733333333333334,1146,236 +3705,61.75,1103,232 +3706,61.766666666666666,1062,228 +3707,61.78333333333333,1023,224 +3708,61.8,986,219 +3709,61.81666666666666,953,214 +3710,61.833333333333336,922,210 +3711,61.85,894,205 +3712,61.86666666666667,870,201 +3713,61.88333333333333,849,197 +3714,61.9,832,194 +3715,61.916666666666664,818,192 +3716,61.93333333333333,808,190 +3717,61.949999999999996,801,189 +3718,61.96666666666667,801,189 +3719,61.983333333333334,801,189 +3720,62.0,804,190 +3721,62.016666666666666,813,191 +3722,62.03333333333333,825,194 +3723,62.05,840,198 +3724,62.06666666666666,860,201 +3725,62.083333333333336,883,205 +3726,62.1,908,210 +3727,62.11666666666667,937,215 +3728,62.13333333333333,970,220 +3729,62.15,1005,225 +3730,62.166666666666664,1042,229 +3731,62.18333333333333,1082,234 +3732,62.199999999999996,1125,238 +3733,62.21666666666667,1169,242 +3734,62.233333333333334,1215,244 +3735,62.25,1263,247 +3736,62.266666666666666,1311,248 +3737,62.28333333333333,1360,248 +3738,62.3,1409,248 +3739,62.31666666666666,1459,246 +3740,62.333333333333336,1509,244 +3741,62.35,1558,241 +3742,62.36666666666667,1607,237 +3743,62.38333333333333,1655,232 +3744,62.4,1701,227 +3745,62.416666666666664,1745,221 +3746,62.43333333333333,1788,214 +3747,62.449999999999996,1828,207 +3748,62.46666666666667,1866,200 +3749,62.483333333333334,1901,194 +3750,62.5,1934,187 +3751,62.516666666666666,1964,180 +3752,62.53333333333333,1990,174 +3753,62.55,2013,168 +3754,62.56666666666666,2033,163 +3755,62.583333333333336,2049,159 +3756,62.6,2061,156 +3757,62.61666666666667,2070,153 +3758,62.63333333333333,2075,151 +3759,62.65,2075,151 +3760,62.666666666666664,2075,151 +3761,62.68333333333333,2068,153 +3762,62.699999999999996,2059,155 +3763,62.71666666666667,2045,158 +3764,62.733333333333334,2028,163 +3765,62.75,2008,168 +3766,62.766666666666666,1984,173 +3767,62.78333333333333,1956,179 +3768,62.8,1926,186 +3769,62.81666666666666,1893,192 +3770,62.833333333333336,1857,199 +3771,62.85,1818,205 +3772,62.86666666666667,1777,212 +3773,62.88333333333333,1734,218 +3774,62.9,1688,224 +3775,62.916666666666664,1642,229 +3776,62.93333333333333,1594,234 +3777,62.949999999999996,1545,237 +3778,62.96666666666667,1496,240 +3779,62.983333333333334,1445,242 +3780,63.0,1395,243 +3781,63.016666666666666,1347,243 +3782,63.03333333333333,1297,243 +3783,63.05,1249,241 +3784,63.06666666666666,1202,240 +3785,63.083333333333336,1157,236 +3786,63.1,1113,233 +3787,63.11666666666667,1071,229 +3788,63.13333333333333,1031,224 +3789,63.15,995,220 +3790,63.166666666666664,961,216 +3791,63.18333333333333,930,211 +3792,63.199999999999996,902,207 +3793,63.21666666666667,877,202 +3794,63.233333333333334,855,198 +3795,63.25,838,195 +3796,63.266666666666666,823,193 +3797,63.28333333333333,812,191 +3798,63.3,805,189 +3799,63.31666666666666,805,189 +3800,63.333333333333336,805,189 +3801,63.35,806,190 +3802,63.36666666666667,814,192 +3803,63.38333333333333,825,194 +3804,63.4,840,197 +3805,63.416666666666664,859,201 +3806,63.43333333333333,881,205 +3807,63.449999999999996,906,209 +3808,63.46666666666667,934,214 +3809,63.483333333333334,966,219 +3810,63.5,1000,224 +3811,63.516666666666666,1037,229 +3812,63.53333333333333,1076,233 +3813,63.55,1118,237 +3814,63.56666666666666,1162,241 +3815,63.583333333333336,1207,244 +3816,63.6,1255,246 +3817,63.61666666666667,1302,248 +3818,63.63333333333333,1351,248 +3819,63.65,1399,248 +3820,63.666666666666664,1449,246 +3821,63.68333333333333,1500,244 +3822,63.699999999999996,1549,242 +3823,63.71666666666667,1597,237 +3824,63.733333333333334,1645,233 +3825,63.75,1691,228 +3826,63.766666666666666,1736,222 +3827,63.78333333333333,1779,215 +3828,63.8,1819,209 +3829,63.81666666666666,1858,202 +3830,63.833333333333336,1894,195 +3831,63.85,1927,188 +3832,63.86666666666667,1957,181 +3833,63.88333333333333,1983,175 +3834,63.9,2007,169 +3835,63.916666666666664,2027,164 +3836,63.93333333333333,2044,160 +3837,63.949999999999996,2058,156 +3838,63.96666666666667,2067,153 +3839,63.983333333333334,2073,152 +3840,64.0,2073,152 +3841,64.01666666666667,2073,152 +3842,64.03333333333333,2068,153 +3843,64.05,2059,155 +3844,64.06666666666666,2046,158 +3845,64.08333333333333,2030,162 +3846,64.1,2010,167 +3847,64.11666666666666,1987,172 +3848,64.13333333333333,1960,178 +3849,64.15,1930,184 +3850,64.16666666666667,1898,191 +3851,64.18333333333334,1862,197 +3852,64.2,1824,204 +3853,64.21666666666667,1784,210 +3854,64.23333333333333,1741,217 +3855,64.25,1697,222 +3856,64.26666666666667,1650,228 +3857,64.28333333333333,1603,233 +3858,64.3,1554,236 +3859,64.31666666666666,1505,240 +3860,64.33333333333333,1454,242 +3861,64.35,1404,243 +3862,64.36666666666666,1356,243 +3863,64.38333333333333,1306,243 +3864,64.4,1259,242 +3865,64.41666666666667,1211,240 +3866,64.43333333333334,1166,238 +3867,64.45,1122,234 +3868,64.46666666666667,1080,230 +3869,64.48333333333333,1041,226 +3870,64.5,1003,221 +3871,64.51666666666667,969,217 +3872,64.53333333333333,937,213 +3873,64.55,909,208 +3874,64.56666666666666,884,204 +3875,64.58333333333333,861,200 +3876,64.6,843,197 +3877,64.61666666666666,828,194 +3878,64.63333333333333,816,192 +3879,64.65,809,190 +3880,64.66666666666667,808,190 +3881,64.68333333333334,808,190 +3882,64.7,808,190 +3883,64.71666666666667,815,192 +3884,64.73333333333333,825,194 +3885,64.75,840,197 +3886,64.76666666666667,857,201 +3887,64.78333333333333,879,205 +3888,64.8,903,209 +3889,64.81666666666666,931,214 +3890,64.83333333333333,962,219 +3891,64.85,995,223 +3892,64.86666666666666,1031,228 +3893,64.88333333333333,1070,233 +3894,64.9,1111,237 +3895,64.91666666666667,1155,241 +3896,64.93333333333334,1199,244 +3897,64.95,1246,246 +3898,64.96666666666667,1294,248 +3899,64.98333333333333,1342,248 +3900,65.0,1390,248 +3901,65.01666666666667,1440,246 +3902,65.03333333333333,1490,245 +3903,65.05,1539,242 +3904,65.06666666666666,1588,238 +3905,65.08333333333333,1636,233 +3906,65.1,1682,228 +3907,65.11666666666666,1727,222 +3908,65.13333333333333,1770,217 +3909,65.15,1811,209 +3910,65.16666666666667,1850,202 +3911,65.18333333333334,1886,196 +3912,65.2,1919,189 +3913,65.21666666666667,1950,182 +3914,65.23333333333333,1977,176 +3915,65.25,2002,170 +3916,65.26666666666667,2023,165 +3917,65.28333333333333,2040,160 +3918,65.3,2054,156 +3919,65.31666666666666,2064,153 +3920,65.33333333333333,2070,152 +3921,65.35,2070,152 +3922,65.36666666666666,2070,152 +3923,65.38333333333333,2068,152 +3924,65.4,2059,154 +3925,65.41666666666667,2047,157 +3926,65.43333333333334,2032,160 +3927,65.45,2012,165 +3928,65.46666666666667,1990,170 +3929,65.48333333333333,1964,176 +3930,65.5,1935,183 +3931,65.51666666666667,1903,189 +3932,65.53333333333333,1868,196 +3933,65.55,1831,202 +3934,65.56666666666666,1791,209 +3935,65.58333333333333,1749,215 +3936,65.6,1705,221 +3937,65.61666666666666,1659,227 +3938,65.63333333333333,1612,231 +3939,65.65,1563,235 +3940,65.66666666666667,1514,239 +3941,65.68333333333334,1465,242 +3942,65.7,1414,244 +3943,65.71666666666667,1365,244 +3944,65.73333333333333,1317,244 +3945,65.75,1269,243 +3946,65.76666666666667,1222,241 +3947,65.78333333333333,1176,239 +3948,65.8,1132,235 +3949,65.81666666666666,1089,231 +3950,65.83333333333333,1050,227 +3951,65.85,1012,223 +3952,65.86666666666666,977,218 +3953,65.88333333333333,945,214 +3954,65.9,916,209 +3955,65.91666666666667,891,205 +3956,65.93333333333334,868,201 +3957,65.95,849,198 +3958,65.96666666666667,833,195 +3959,65.98333333333333,822,193 +3960,66.0,813,192 +3961,66.01666666666667,810,191 +3962,66.03333333333333,810,191 +3963,66.05,810,191 +3964,66.06666666666666,816,192 +3965,66.08333333333333,826,195 +3966,66.1,839,197 +3967,66.11666666666666,856,201 +3968,66.13333333333333,877,205 +3969,66.15,901,209 +3970,66.16666666666667,928,214 +3971,66.18333333333334,958,218 +3972,66.2,991,223 +3973,66.21666666666667,1027,228 +3974,66.23333333333333,1065,232 +3975,66.25,1105,237 +3976,66.26666666666667,1148,240 +3977,66.28333333333333,1192,243 +3978,66.3,1238,246 +3979,66.31666666666666,1286,248 +3980,66.33333333333333,1334,248 +3981,66.35,1382,248 +3982,66.36666666666666,1431,247 +3983,66.38333333333333,1482,245 +3984,66.4,1530,242 +3985,66.41666666666667,1579,239 +3986,66.43333333333334,1626,234 +3987,66.45,1673,229 +3988,66.46666666666667,1718,223 +3989,66.48333333333333,1761,217 +3990,66.5,1802,211 +3991,66.51666666666667,1842,204 +3992,66.53333333333333,1878,197 +3993,66.55,1912,190 +3994,66.56666666666666,1943,183 +3995,66.58333333333333,1971,177 +3996,66.6,1995,171 +3997,66.61666666666666,2017,166 +3998,66.63333333333333,2034,161 +3999,66.65,2049,157 +4000,66.66666666666667,2059,155 +4001,66.68333333333334,2067,153 +4002,66.7,2067,152 +4003,66.71666666666667,2067,152 +4004,66.73333333333333,2066,152 +4005,66.75,2058,154 +4006,66.76666666666667,2047,157 +4007,66.78333333333333,2032,161 +4008,66.8,2014,165 +4009,66.81666666666666,1991,170 +4010,66.83333333333333,1966,176 +4011,66.85,1938,182 +4012,66.86666666666666,1907,188 +4013,66.88333333333333,1873,195 +4014,66.9,1835,202 +4015,66.91666666666667,1796,208 +4016,66.93333333333334,1754,215 +4017,66.95,1711,220 +4018,66.96666666666667,1665,226 +4019,66.98333333333333,1619,231 +4020,67.0,1571,235 +4021,67.01666666666667,1523,238 +4022,67.03333333333333,1473,241 +4023,67.05,1423,243 +4024,67.06666666666666,1373,243 +4025,67.08333333333333,1326,243 +4026,67.1,1278,243 +4027,67.11666666666666,1230,241 +4028,67.13333333333333,1185,238 +4029,67.15,1141,235 +4030,67.16666666666667,1098,232 +4031,67.18333333333334,1058,228 +4032,67.2,1020,224 +4033,67.21666666666667,985,219 +4034,67.23333333333333,953,215 +4035,67.25,924,210 +4036,67.26666666666667,898,206 +4037,67.28333333333333,874,202 +4038,67.3,854,199 +4039,67.31666666666666,838,196 +4040,67.33333333333333,826,193 +4041,67.35,817,192 +4042,67.36666666666666,811,191 +4043,67.38333333333333,811,191 +4044,67.4,811,191 +4045,67.41666666666667,817,193 +4046,67.43333333333334,826,194 +4047,67.45,839,197 +4048,67.46666666666667,855,200 +4049,67.48333333333333,875,204 +4050,67.5,899,208 +4051,67.51666666666667,925,212 +4052,67.53333333333333,954,217 +4053,67.55,986,222 +4054,67.56666666666666,1021,227 +4055,67.58333333333333,1059,231 +4056,67.6,1099,235 +4057,67.61666666666666,1141,239 +4058,67.63333333333333,1185,242 +4059,67.65,1231,244 +4060,67.66666666666667,1278,247 +4061,67.68333333333334,1326,247 +4062,67.7,1373,247 +4063,67.71666666666667,1421,247 +4064,67.73333333333333,1472,245 +4065,67.75,1521,242 +4066,67.76666666666667,1569,239 +4067,67.78333333333333,1617,235 +4068,67.8,1663,230 +4069,67.81666666666666,1708,224 +4070,67.83333333333333,1751,218 +4071,67.85,1793,212 +4072,67.86666666666666,1832,205 +4073,67.88333333333333,1869,198 +4074,67.9,1903,192 +4075,67.91666666666667,1934,185 +4076,67.93333333333334,1963,179 +4077,67.95,1988,173 +4078,67.96666666666667,2009,167 +4079,67.98333333333333,2028,162 +4080,68.0,2043,158 +4081,68.01666666666667,2055,156 +4082,68.03333333333333,2062,153 +4083,68.05,2064,152 +4084,68.06666666666666,2064,152 +4085,68.08333333333333,2064,152 +4086,68.1,2057,154 +4087,68.11666666666666,2046,157 +4088,68.13333333333333,2032,160 +4089,68.15,2014,164 +4090,68.16666666666667,1993,169 +4091,68.18333333333334,1968,175 +4092,68.2,1941,181 +4093,68.21666666666667,1910,187 +4094,68.23333333333333,1876,194 +4095,68.25,1840,201 +4096,68.26666666666667,1801,207 +4097,68.28333333333333,1760,214 +4098,68.3,1717,220 +4099,68.31666666666666,1672,225 +4100,68.33333333333333,1625,230 +4101,68.35,1578,234 +4102,68.36666666666666,1530,238 +4103,68.38333333333333,1481,240 +4104,68.4,1431,242 +4105,68.41666666666667,1382,243 +4106,68.43333333333334,1334,243 +4107,68.45,1286,243 +4108,68.46666666666667,1239,241 +4109,68.48333333333333,1193,239 +4110,68.5,1149,236 +4111,68.51666666666667,1107,233 +4112,68.53333333333333,1067,229 +4113,68.55,1028,224 +4114,68.56666666666666,993,220 +4115,68.58333333333333,960,215 +4116,68.6,930,211 +4117,68.61666666666666,903,207 +4118,68.63333333333333,880,203 +4119,68.65,860,200 +4120,68.66666666666667,843,196 +4121,68.68333333333334,830,194 +4122,68.7,820,192 +4123,68.71666666666667,814,191 +4124,68.73333333333333,814,191 +4125,68.75,814,191 +4126,68.76666666666667,818,192 +4127,68.78333333333333,826,194 +4128,68.8,838,197 +4129,68.81666666666666,854,200 +4130,68.83333333333333,873,203 +4131,68.85,896,207 +4132,68.86666666666666,921,212 +4133,68.88333333333333,950,216 +4134,68.9,981,221 +4135,68.91666666666667,1016,226 +4136,68.93333333333334,1053,230 +4137,68.95,1092,234 +4138,68.96666666666667,1133,238 +4139,68.98333333333333,1177,241 +4140,69.0,1222,244 +4141,69.01666666666667,1269,246 +4142,69.03333333333333,1316,246 +4143,69.05,1364,246 +4144,69.06666666666666,1413,246 +4145,69.08333333333333,1462,245 +4146,69.1,1511,243 +4147,69.11666666666666,1560,239 +4148,69.13333333333333,1607,235 +4149,69.15,1654,230 +4150,69.16666666666667,1699,225 +4151,69.18333333333334,1743,219 +4152,69.2,1784,213 +4153,69.21666666666667,1824,206 +4154,69.23333333333333,1861,199 +4155,69.25,1896,192 +4156,69.26666666666667,1927,186 +4157,69.28333333333333,1957,180 +4158,69.3,1982,174 +4159,69.31666666666666,2005,168 +4160,69.33333333333333,2023,163 +4161,69.35,2039,159 +4162,69.36666666666666,2051,155 +4163,69.38333333333333,2060,153 +4164,69.4,2063,152 +4165,69.41666666666667,2063,152 +4166,69.43333333333334,2063,152 +4167,69.45,2057,154 +4168,69.46666666666667,2047,156 +4169,69.48333333333333,2033,159 +4170,69.5,2016,164 +4171,69.51666666666667,1996,168 +4172,69.53333333333333,1972,173 +4173,69.55,1945,179 +4174,69.56666666666666,1914,186 +4175,69.58333333333333,1881,193 +4176,69.6,1846,199 +4177,69.61666666666666,1808,205 +4178,69.63333333333333,1767,212 +4179,69.65,1725,218 +4180,69.66666666666667,1680,224 +4181,69.68333333333334,1634,229 +4182,69.7,1588,233 +4183,69.71666666666667,1540,237 +4184,69.73333333333333,1491,240 +4185,69.75,1441,242 +4186,69.76666666666667,1392,244 +4187,69.78333333333333,1345,244 +4188,69.8,1297,244 +4189,69.81666666666666,1250,242 +4190,69.83333333333333,1203,240 +4191,69.85,1159,237 +4192,69.86666666666666,1116,234 +4193,69.88333333333333,1075,230 +4194,69.9,1037,226 +4195,69.91666666666667,1001,222 +4196,69.93333333333334,968,217 +4197,69.95,937,213 +4198,69.96666666666667,910,209 +4199,69.98333333333333,887,205 +4200,70.0,866,201 +4201,70.01666666666667,848,198 +4202,70.03333333333333,835,196 +4203,70.05,824,194 +4204,70.06666666666666,818,193 +4205,70.08333333333333,818,193 +4206,70.1,818,193 +4207,70.11666666666666,820,193 +4208,70.13333333333333,827,195 +4209,70.15,839,198 +4210,70.16666666666667,854,200 +4211,70.18333333333334,872,204 +4212,70.2,894,208 +4213,70.21666666666667,919,212 +4214,70.23333333333333,947,217 +4215,70.25,978,221 +4216,70.26666666666667,1012,226 +4217,70.28333333333333,1048,230 +4218,70.3,1088,235 +4219,70.31666666666666,1128,239 +4220,70.33333333333333,1171,241 +4221,70.35,1216,245 +4222,70.36666666666666,1262,246 +4223,70.38333333333333,1309,247 +4224,70.4,1357,247 +4225,70.41666666666667,1404,247 +4226,70.43333333333334,1453,245 +4227,70.45,1502,243 +4228,70.46666666666667,1551,240 +4229,70.48333333333333,1598,236 +4230,70.5,1645,232 +4231,70.51666666666667,1690,227 +4232,70.53333333333333,1734,221 +4233,70.55,1776,215 +4234,70.56666666666666,1816,208 +4235,70.58333333333333,1853,201 +4236,70.6,1888,194 +4237,70.61666666666666,1920,188 +4238,70.63333333333333,1950,182 +4239,70.65,1976,175 +4240,70.66666666666667,1999,170 +4241,70.68333333333334,2019,165 +4242,70.7,2035,161 +4243,70.71666666666667,2048,157 +4244,70.73333333333333,2057,155 +4245,70.75,2062,153 +4246,70.76666666666667,2062,153 +4247,70.78333333333333,2062,153 +4248,70.8,2056,154 +4249,70.81666666666666,2047,157 +4250,70.83333333333333,2034,160 +4251,70.85,2018,164 +4252,70.86666666666666,1998,168 +4253,70.88333333333333,1975,174 +4254,70.9,1948,179 +4255,70.91666666666667,1919,186 +4256,70.93333333333334,1887,192 +4257,70.95,1851,199 +4258,70.96666666666667,1813,205 +4259,70.98333333333333,1773,212 +4260,71.0,1731,218 +4261,71.01666666666667,1687,223 +4262,71.03333333333333,1642,229 +4263,71.05,1595,233 +4264,71.06666666666666,1547,237 +4265,71.08333333333333,1498,240 +4266,71.1,1449,242 +4267,71.11666666666666,1400,244 +4268,71.13333333333333,1352,244 +4269,71.15,1305,244 +4270,71.16666666666667,1257,243 +4271,71.18333333333334,1211,241 +4272,71.2,1167,238 +4273,71.21666666666667,1124,235 +4274,71.23333333333333,1083,231 +4275,71.25,1045,227 +4276,71.26666666666667,1008,223 +4277,71.28333333333333,975,219 +4278,71.3,944,214 +4279,71.31666666666666,917,210 +4280,71.33333333333333,892,206 +4281,71.35,871,202 +4282,71.36666666666666,853,199 +4283,71.38333333333333,839,197 +4284,71.4,827,195 +4285,71.41666666666667,820,193 +4286,71.43333333333334,820,193 +4287,71.45,820,193 +4288,71.46666666666667,820,194 +4289,71.48333333333333,827,195 +4290,71.5,838,197 +4291,71.51666666666667,853,200 +4292,71.53333333333333,870,204 +4293,71.55,891,208 +4294,71.56666666666666,916,212 +4295,71.58333333333333,943,216 +4296,71.6,973,220 +4297,71.61666666666666,1006,225 +4298,71.63333333333333,1042,230 +4299,71.65,1080,234 +4300,71.66666666666667,1121,238 +4301,71.68333333333334,1163,241 +4302,71.7,1207,244 +4303,71.71666666666667,1253,246 +4304,71.73333333333333,1300,247 +4305,71.75,1348,247 +4306,71.76666666666667,1396,247 +4307,71.78333333333333,1444,246 +4308,71.8,1494,244 +4309,71.81666666666666,1542,241 +4310,71.83333333333333,1590,237 +4311,71.85,1637,233 +4312,71.86666666666666,1682,227 +4313,71.88333333333333,1726,222 +4314,71.9,1768,216 +4315,71.91666666666667,1809,209 +4316,71.93333333333334,1846,202 +4317,71.95,1881,195 +4318,71.96666666666667,1914,189 +4319,71.98333333333333,1943,182 +4320,72.0,1970,177 +4321,72.01666666666667,1994,171 +4322,72.03333333333333,2014,166 +4323,72.05,2031,162 +4324,72.06666666666666,2044,158 +4325,72.08333333333333,2054,155 +4326,72.1,2060,154 +4327,72.11666666666666,2060,154 +4328,72.13333333333333,2060,154 +4329,72.15,2056,154 +4330,72.16666666666667,2047,156 +4331,72.18333333333334,2035,159 +4332,72.2,2019,163 +4333,72.21666666666667,2000,168 +4334,72.23333333333333,1977,173 +4335,72.25,1952,179 +4336,72.26666666666667,1923,185 +4337,72.28333333333333,1891,191 +4338,72.3,1856,197 +4339,72.31666666666666,1819,204 +4340,72.33333333333333,1780,210 +4341,72.35,1738,217 +4342,72.36666666666666,1695,222 +4343,72.38333333333333,1650,227 +4344,72.4,1603,232 +4345,72.41666666666667,1556,236 +4346,72.43333333333334,1508,239 +4347,72.45,1458,242 +4348,72.46666666666667,1410,244 +4349,72.48333333333333,1361,244 +4350,72.5,1315,244 +4351,72.51666666666667,1268,243 +4352,72.53333333333333,1221,241 +4353,72.55,1176,239 +4354,72.56666666666666,1133,236 +4355,72.58333333333333,1092,232 +4356,72.6,1053,228 +4357,72.61666666666666,1016,224 +4358,72.63333333333333,983,220 +4359,72.65,952,216 +4360,72.66666666666667,923,211 +4361,72.68333333333334,899,207 +4362,72.7,877,204 +4363,72.71666666666667,858,201 +4364,72.73333333333333,844,198 +4365,72.75,832,196 +4366,72.76666666666667,824,194 +4367,72.78333333333333,823,194 +4368,72.8,823,194 +4369,72.81666666666666,823,195 +4370,72.83333333333333,829,196 +4371,72.85,839,198 +4372,72.86666666666666,853,201 +4373,72.88333333333333,870,204 +4374,72.9,890,208 +4375,72.91666666666667,914,212 +4376,72.93333333333334,940,216 +4377,72.95,970,221 +4378,72.96666666666667,1003,225 +4379,72.98333333333333,1038,230 +4380,73.0,1076,234 +4381,73.01666666666667,1116,238 +4382,73.03333333333333,1158,241 +4383,73.05,1201,244 +4384,73.06666666666666,1247,246 +4385,73.08333333333333,1293,247 +4386,73.1,1341,247 +4387,73.11666666666666,1388,247 +4388,73.13333333333333,1436,246 +4389,73.15,1485,244 +4390,73.16666666666667,1534,241 +4391,73.18333333333334,1581,238 +4392,73.2,1628,233 +4393,73.21666666666667,1673,228 +4394,73.23333333333333,1718,223 +4395,73.25,1760,216 +4396,73.26666666666667,1800,210 +4397,73.28333333333333,1838,203 +4398,73.3,1874,197 +4399,73.31666666666666,1907,190 +4400,73.33333333333333,1937,183 +4401,73.35,1964,177 +4402,73.36666666666666,1988,171 +4403,73.38333333333333,2009,166 +4404,73.4,2026,162 +4405,73.41666666666667,2040,158 +4406,73.43333333333334,2051,155 +4407,73.45,2057,153 +4408,73.46666666666667,2057,153 +4409,73.48333333333333,2057,153 +4410,73.5,2055,154 +4411,73.51666666666667,2047,155 +4412,73.53333333333333,2036,159 +4413,73.55,2021,162 +4414,73.56666666666666,2002,166 +4415,73.58333333333333,1980,172 +4416,73.6,1955,177 +4417,73.61666666666666,1927,184 +4418,73.63333333333333,1896,190 +4419,73.65,1862,196 +4420,73.66666666666667,1825,203 +4421,73.68333333333334,1786,210 +4422,73.7,1745,216 +4423,73.71666666666667,1702,222 +4424,73.73333333333333,1657,227 +4425,73.75,1611,232 +4426,73.76666666666667,1564,236 +4427,73.78333333333333,1516,239 +4428,73.8,1467,242 +4429,73.81666666666666,1418,244 +4430,73.83333333333333,1370,244 +4431,73.85,1324,244 +4432,73.86666666666666,1276,244 +4433,73.88333333333333,1230,242 +4434,73.9,1185,240 +4435,73.91666666666667,1142,237 +4436,73.93333333333334,1101,234 +4437,73.95,1062,230 +4438,73.96666666666667,1025,226 +4439,73.98333333333333,990,221 +4440,74.0,959,218 +4441,74.01666666666667,930,213 +4442,74.03333333333333,905,210 +4443,74.05,883,206 +4444,74.06666666666666,864,203 +4445,74.08333333333333,849,200 +4446,74.1,837,198 +4447,74.11666666666666,828,196 +4448,74.13333333333333,828,196 +4449,74.15,824,196 +4450,74.16666666666667,824,196 +4451,74.18333333333334,824,196 +4452,74.2,830,197 +4453,74.21666666666667,839,199 +4454,74.23333333333333,852,202 +4455,74.25,869,205 +4456,74.26666666666667,888,208 +4457,74.28333333333333,911,212 +4458,74.3,937,216 +4459,74.31666666666666,967,221 +4460,74.33333333333333,999,225 +4461,74.35,1033,230 +4462,74.36666666666666,1071,234 +4463,74.38333333333333,1110,238 +4464,74.4,1152,242 +4465,74.41666666666667,1195,244 +4466,74.43333333333334,1240,246 +4467,74.45,1286,248 +4468,74.46666666666667,1333,248 +4469,74.48333333333333,1380,248 +4470,74.5,1428,248 +4471,74.51666666666667,1477,246 +4472,74.53333333333333,1526,243 +4473,74.55,1573,240 +4474,74.56666666666666,1620,236 +4475,74.58333333333333,1665,231 +4476,74.6,1709,226 +4477,74.61666666666666,1752,219 +4478,74.63333333333333,1792,213 +4479,74.65,1831,206 +4480,74.66666666666667,1867,200 +4481,74.68333333333334,1901,193 +4482,74.7,1931,187 +4483,74.71666666666667,1959,181 +4484,74.73333333333333,1983,175 +4485,74.75,2005,170 +4486,74.76666666666667,2023,165 +4487,74.78333333333333,2037,162 +4488,74.8,2048,159 +4489,74.81666666666666,2055,157 +4490,74.83333333333333,2056,156 +4491,74.85,2056,156 +4492,74.86666666666666,2056,156 +4493,74.88333333333333,2048,158 +4494,74.9,2037,161 +4495,74.91666666666667,2023,164 +4496,74.93333333333334,2005,169 +4497,74.95,1984,174 +4498,74.96666666666667,1959,179 +4499,74.98333333333333,1931,185 +4500,75.0,1901,191 +4501,75.01666666666667,1867,198 +4502,75.03333333333333,1831,204 +4503,75.05,1792,211 +4504,75.06666666666666,1752,217 +4505,75.08333333333333,1709,223 +4506,75.1,1665,228 +4507,75.11666666666666,1619,233 +4508,75.13333333333333,1572,237 +4509,75.15,1524,240 +4510,75.16666666666667,1476,243 +4511,75.18333333333334,1427,245 +4512,75.2,1379,246 +4513,75.21666666666667,1333,246 +4514,75.23333333333333,1286,246 +4515,75.25,1239,244 +4516,75.26666666666667,1194,242 +4517,75.28333333333333,1150,239 +4518,75.3,1109,236 +4519,75.31666666666666,1069,232 +4520,75.33333333333333,1032,228 +4521,75.35,998,224 +4522,75.36666666666666,966,220 +4523,75.38333333333333,937,216 +4524,75.4,911,212 +4525,75.41666666666667,888,208 +4526,75.43333333333334,869,205 +4527,75.45,853,202 +4528,75.46666666666667,840,200 +4529,75.48333333333333,831,198 +4530,75.5,826,197 +4531,75.51666666666667,826,197 +4532,75.53333333333333,826,197 +4533,75.55,831,199 +4534,75.56666666666666,840,200 +4535,75.58333333333333,852,203 +4536,75.6,868,206 +4537,75.61666666666666,887,210 +4538,75.63333333333333,909,213 +4539,75.65,935,218 +4540,75.66666666666667,964,222 +4541,75.68333333333334,995,226 +4542,75.7,1029,231 +4543,75.71666666666667,1066,235 +4544,75.73333333333333,1105,239 +4545,75.75,1146,242 +4546,75.76666666666667,1189,245 +4547,75.78333333333333,1234,247 +4548,75.8,1280,249 +4549,75.81666666666666,1327,249 +4550,75.83333333333333,1373,249 +4551,75.85,1421,249 +4552,75.86666666666666,1470,247 +4553,75.88333333333333,1518,245 +4554,75.9,1565,241 +4555,75.91666666666667,1612,237 +4556,75.93333333333334,1658,233 +4557,75.95,1702,227 +4558,75.96666666666667,1745,221 +4559,75.98333333333333,1786,215 +4560,76.0,1825,209 +4561,76.01666666666667,1861,202 +4562,76.03333333333333,1895,196 +4563,76.05,1926,189 +4564,76.06666666666666,1954,183 +4565,76.08333333333333,1979,177 +4566,76.1,2001,172 +4567,76.11666666666666,2019,167 +4568,76.13333333333333,2034,163 +4569,76.15,2045,160 +4570,76.16666666666667,2053,158 +4571,76.18333333333334,2055,157 +4572,76.2,2055,157 +4573,76.21666666666667,2055,157 +4574,76.23333333333333,2048,159 +4575,76.25,2038,161 +4576,76.26666666666667,2024,165 +4577,76.28333333333333,2007,169 +4578,76.3,1986,174 +4579,76.31666666666666,1962,179 +4580,76.33333333333333,1935,185 +4581,76.35,1905,191 +4582,76.36666666666666,1872,198 +4583,76.38333333333333,1836,204 +4584,76.4,1798,211 +4585,76.41666666666667,1758,217 +4586,76.43333333333334,1716,222 +4587,76.45,1672,228 +4588,76.46666666666667,1626,233 +4589,76.48333333333333,1580,237 +4590,76.5,1532,241 +4591,76.51666666666667,1484,243 +4592,76.53333333333333,1435,245 +4593,76.55,1388,246 +4594,76.56666666666666,1341,246 +4595,76.58333333333333,1294,246 +4596,76.6,1248,245 +4597,76.61666666666666,1202,243 +4598,76.63333333333333,1159,240 +4599,76.65,1117,237 +4600,76.66666666666667,1078,234 +4601,76.68333333333334,1040,230 +4602,76.7,1006,226 +4603,76.71666666666667,973,222 +4604,76.73333333333333,944,218 +4605,76.75,918,214 +4606,76.76666666666667,894,210 +4607,76.78333333333333,874,207 +4608,76.8,858,204 +4609,76.81666666666666,845,201 +4610,76.83333333333333,835,200 +4611,76.85,829,199 +4612,76.86666666666666,829,199 +4613,76.88333333333333,829,199 +4614,76.9,832,200 +4615,76.91666666666667,841,201 +4616,76.93333333333334,852,204 +4617,76.95,867,206 +4618,76.96666666666667,886,210 +4619,76.98333333333333,907,214 +4620,77.0,933,218 +4621,77.01666666666667,960,222 +4622,77.03333333333333,991,226 +4623,77.05,1025,231 +4624,77.06666666666666,1061,235 +4625,77.08333333333333,1099,239 +4626,77.1,1140,242 +4627,77.11666666666666,1182,245 +4628,77.13333333333333,1227,247 +4629,77.15,1273,249 +4630,77.16666666666667,1319,250 +4631,77.18333333333334,1366,250 +4632,77.2,1413,250 +4633,77.21666666666667,1461,248 +4634,77.23333333333333,1509,246 +4635,77.25,1557,242 +4636,77.26666666666667,1603,238 +4637,77.28333333333333,1649,233 +4638,77.3,1693,228 +4639,77.31666666666666,1736,222 +4640,77.33333333333333,1777,216 +4641,77.35,1816,210 +4642,77.36666666666666,1853,203 +4643,77.38333333333333,1887,197 +4644,77.4,1918,190 +4645,77.41666666666667,1946,184 +4646,77.43333333333334,1972,178 +4647,77.45,1994,173 +4648,77.46666666666667,2013,168 +4649,77.48333333333333,2028,164 +4650,77.5,2040,161 +4651,77.51666666666667,2048,158 +4652,77.53333333333333,2052,157 +4653,77.55,2052,157 +4654,77.56666666666666,2052,157 +4655,77.58333333333333,2046,159 +4656,77.6,2036,161 +4657,77.61666666666666,2023,164 +4658,77.63333333333333,2007,168 +4659,77.65,1986,173 +4660,77.66666666666667,1963,178 +4661,77.68333333333334,1936,184 +4662,77.7,1907,190 +4663,77.71666666666667,1875,196 +4664,77.73333333333333,1839,203 +4665,77.75,1802,209 +4666,77.76666666666667,1762,216 +4667,77.78333333333333,1720,221 +4668,77.8,1677,227 +4669,77.81666666666666,1632,232 +4670,77.83333333333333,1586,236 +4671,77.85,1539,240 +4672,77.86666666666666,1491,243 +4673,77.88333333333333,1443,245 +4674,77.9,1395,247 +4675,77.91666666666667,1348,247 +4676,77.93333333333334,1301,247 +4677,77.95,1255,245 +4678,77.96666666666667,1209,244 +4679,77.98333333333333,1166,241 +4680,78.0,1124,239 +4681,78.01666666666667,1084,235 +4682,78.03333333333333,1047,231 +4683,78.05,1012,227 +4684,78.06666666666666,979,223 +4685,78.08333333333333,949,219 +4686,78.1,922,215 +4687,78.11666666666666,899,211 +4688,78.13333333333333,878,208 +4689,78.15,862,205 +4690,78.16666666666667,848,203 +4691,78.18333333333334,838,201 +4692,78.2,831,200 +4693,78.21666666666667,831,200 +4694,78.23333333333333,831,200 +4695,78.25,833,200 +4696,78.26666666666667,840,202 +4697,78.28333333333333,851,204 +4698,78.3,866,207 +4699,78.31666666666666,884,210 +4700,78.33333333333333,905,214 +4701,78.35,929,218 +4702,78.36666666666666,956,222 +4703,78.38333333333333,986,226 +4704,78.4,1020,231 +4705,78.41666666666667,1055,235 +4706,78.43333333333334,1093,239 +4707,78.45,1134,242 +4708,78.46666666666667,1176,245 +4709,78.48333333333333,1219,247 +4710,78.5,1265,249 +4711,78.51666666666667,1311,250 +4712,78.53333333333333,1358,250 +4713,78.55,1404,250 +4714,78.56666666666666,1453,248 +4715,78.58333333333333,1500,246 +4716,78.6,1547,243 +4717,78.61666666666666,1594,239 +4718,78.63333333333333,1640,235 +4719,78.65,1685,229 +4720,78.66666666666667,1728,224 +4721,78.68333333333334,1768,217 +4722,78.7,1808,211 +4723,78.71666666666667,1845,204 +4724,78.73333333333333,1879,197 +4725,78.75,1911,191 +4726,78.76666666666667,1939,184 +4727,78.78333333333333,1965,178 +4728,78.8,1988,173 +4729,78.81666666666666,2007,168 +4730,78.83333333333333,2023,164 +4731,78.85,2036,161 +4732,78.86666666666666,2044,159 +4733,78.88333333333333,2050,157 +4734,78.9,2050,157 +4735,78.91666666666667,2050,157 +4736,78.93333333333334,2044,158 +4737,78.95,2035,160 +4738,78.96666666666667,2023,163 +4739,78.98333333333333,2007,167 +4740,79.0,1987,171 +4741,79.01666666666667,1965,177 +4742,79.03333333333333,1939,182 +4743,79.05,1910,188 +4744,79.06666666666666,1878,195 +4745,79.08333333333333,1844,201 +4746,79.1,1807,208 +4747,79.11666666666666,1767,214 +4748,79.13333333333333,1726,220 +4749,79.15,1683,226 +4750,79.16666666666667,1638,231 +4751,79.18333333333334,1593,236 +4752,79.2,1545,239 +4753,79.21666666666667,1498,242 +4754,79.23333333333333,1450,244 +4755,79.25,1402,247 +4756,79.26666666666667,1356,247 +4757,79.28333333333333,1309,247 +4758,79.3,1262,246 +4759,79.31666666666666,1217,244 +4760,79.33333333333333,1174,242 +4761,79.35,1132,239 +4762,79.36666666666666,1092,236 +4763,79.38333333333333,1054,232 +4764,79.4,1018,228 +4765,79.41666666666667,986,224 +4766,79.43333333333334,956,220 +4767,79.45,928,216 +4768,79.46666666666667,904,212 +4769,79.48333333333333,884,209 +4770,79.5,866,206 +4771,79.51666666666667,852,204 +4772,79.53333333333333,841,202 +4773,79.55,834,201 +4774,79.56666666666666,833,201 +4775,79.58333333333333,833,201 +4776,79.6,833,201 +4777,79.61666666666666,840,202 +4778,79.63333333333333,851,204 +4779,79.65,865,207 +4780,79.66666666666667,882,210 +4781,79.68333333333334,902,214 +4782,79.7,927,218 +4783,79.71666666666667,953,222 +4784,79.73333333333333,983,226 +4785,79.75,1015,230 +4786,79.76666666666667,1051,235 +4787,79.78333333333333,1088,238 +4788,79.8,1128,242 +4789,79.81666666666666,1169,245 +4790,79.83333333333333,1212,247 +4791,79.85,1257,249 +4792,79.86666666666666,1303,250 +4793,79.88333333333333,1350,250 +4794,79.9,1396,250 +4795,79.91666666666667,1444,248 +4796,79.93333333333334,1492,246 +4797,79.95,1539,243 +4798,79.96666666666667,1586,239 +4799,79.98333333333333,1632,234 +4800,80.0,1676,229 +4801,80.01666666666667,1719,224 +4802,80.03333333333333,1761,217 +4803,80.05,1800,211 +4804,80.06666666666666,1837,204 +4805,80.08333333333333,1872,198 +4806,80.1,1904,191 +4807,80.11666666666666,1933,185 +4808,80.13333333333333,1959,179 +4809,80.15,1982,173 +4810,80.16666666666667,2002,168 +4811,80.18333333333334,2019,164 +4812,80.2,2032,161 +4813,80.21666666666667,2041,158 +4814,80.23333333333333,2047,157 +4815,80.25,2047,157 +4816,80.26666666666667,2047,157 +4817,80.28333333333333,2043,157 +4818,80.3,2035,159 +4819,80.31666666666666,2023,162 +4820,80.33333333333333,2008,166 +4821,80.35,1989,170 +4822,80.36666666666666,1966,175 +4823,80.38333333333333,1941,181 +4824,80.4,1913,187 +4825,80.41666666666667,1882,193 +4826,80.43333333333334,1848,200 +4827,80.45,1811,206 +4828,80.46666666666667,1773,212 +4829,80.48333333333333,1732,218 +4830,80.5,1689,224 +4831,80.51666666666667,1645,229 +4832,80.53333333333333,1600,234 +4833,80.55,1553,237 +4834,80.56666666666666,1506,241 +4835,80.58333333333333,1457,243 +4836,80.6,1410,245 +4837,80.61666666666666,1363,245 +4838,80.63333333333333,1317,245 +4839,80.65,1270,245 +4840,80.66666666666667,1225,243 +4841,80.68333333333334,1181,241 +4842,80.7,1139,239 +4843,80.71666666666667,1099,235 +4844,80.73333333333333,1061,232 +4845,80.75,1026,228 +4846,80.76666666666667,992,224 +4847,80.78333333333333,962,220 +4848,80.8,934,216 +4849,80.81666666666666,910,212 +4850,80.83333333333333,888,209 +4851,80.85,870,206 +4852,80.86666666666666,856,203 +4853,80.88333333333333,845,202 +4854,80.9,837,200 +4855,80.91666666666667,835,200 +4856,80.93333333333334,835,200 +4857,80.95,835,200 +4858,80.96666666666667,841,201 +4859,80.98333333333333,851,203 +4860,81.0,864,206 +4861,81.01666666666667,881,209 +4862,81.03333333333333,901,212 +4863,81.05,924,216 +4864,81.06666666666666,950,220 +4865,81.08333333333333,979,224 +4866,81.1,1011,228 +4867,81.11666666666666,1046,233 +4868,81.13333333333333,1083,236 +4869,81.15,1122,239 +4870,81.16666666666667,1163,243 +4871,81.18333333333334,1206,245 +4872,81.2,1251,247 +4873,81.21666666666667,1296,248 +4874,81.23333333333333,1342,248 +4875,81.25,1388,248 +4876,81.26666666666667,1435,247 +4877,81.28333333333333,1484,245 +4878,81.3,1531,242 +4879,81.31666666666666,1578,239 +4880,81.33333333333333,1623,234 +4881,81.35,1668,229 +4882,81.36666666666666,1711,223 +4883,81.38333333333333,1753,217 +4884,81.4,1793,211 +4885,81.41666666666667,1830,204 +4886,81.43333333333334,1865,198 +4887,81.45,1897,191 +4888,81.46666666666667,1927,185 +4889,81.48333333333333,1953,178 +4890,81.5,1977,173 +4891,81.51666666666667,1997,168 +4892,81.53333333333333,2014,164 +4893,81.55,2028,160 +4894,81.56666666666666,2038,158 +4895,81.58333333333333,2044,156 +4896,81.6,2044,156 +4897,81.61666666666666,2044,156 +4898,81.63333333333333,2043,156 +4899,81.65,2035,158 +4900,81.66666666666667,2023,161 +4901,81.68333333333334,2008,164 +4902,81.7,1990,168 +4903,81.71666666666667,1969,174 +4904,81.73333333333333,1944,179 +4905,81.75,1916,185 +4906,81.76666666666667,1885,191 +4907,81.78333333333333,1852,198 +4908,81.8,1816,204 +4909,81.81666666666666,1778,210 +4910,81.83333333333333,1737,217 +4911,81.85,1695,222 +4912,81.86666666666666,1652,227 +4913,81.88333333333333,1606,232 +4914,81.9,1560,236 +4915,81.91666666666667,1513,240 +4916,81.93333333333334,1465,243 +4917,81.95,1417,244 +4918,81.96666666666667,1370,245 +4919,81.98333333333333,1325,245 +4920,82.0,1278,245 +4921,82.01666666666667,1233,243 +4922,82.03333333333333,1189,241 +4923,82.05,1147,238 +4924,82.06666666666666,1107,235 +4925,82.08333333333333,1068,232 +4926,82.1,1032,228 +4927,82.11666666666666,999,224 +4928,82.13333333333333,968,220 +4929,82.15,940,217 +4930,82.16666666666667,916,213 +4931,82.18333333333334,894,209 +4932,82.2,875,206 +4933,82.21666666666667,860,203 +4934,82.23333333333333,849,202 +4935,82.25,840,200 +4936,82.26666666666667,836,200 +4937,82.28333333333333,836,200 +4938,82.3,836,200 +4939,82.31666666666666,842,201 +4940,82.33333333333333,851,202 +4941,82.35,864,205 +4942,82.36666666666666,880,208 +4943,82.38333333333333,900,211 +4944,82.4,922,215 +4945,82.41666666666667,948,219 +4946,82.43333333333334,977,223 +4947,82.45,1008,227 +4948,82.46666666666667,1042,231 +4949,82.48333333333333,1078,235 +4950,82.5,1117,239 +4951,82.51666666666667,1158,242 +4952,82.53333333333333,1200,244 +4953,82.55,1244,247 +4954,82.56666666666666,1289,248 +4955,82.58333333333333,1335,248 +4956,82.6,1381,248 +4957,82.61666666666666,1428,247 +4958,82.63333333333333,1476,245 +4959,82.65,1523,242 +4960,82.66666666666667,1570,238 +4961,82.68333333333334,1615,234 +4962,82.7,1660,229 +4963,82.71666666666667,1703,224 +4964,82.73333333333333,1745,218 +4965,82.75,1785,212 +4966,82.76666666666667,1823,205 +4967,82.78333333333333,1858,199 +4968,82.8,1891,192 +4969,82.81666666666666,1921,186 +4970,82.83333333333333,1948,180 +4971,82.85,1972,174 +4972,82.86666666666666,1992,169 +4973,82.88333333333333,2010,165 +4974,82.9,2024,161 +4975,82.91666666666667,2034,158 +4976,82.93333333333334,2041,157 +4977,82.95,2041,156 +4978,82.96666666666667,2041,156 +4979,82.98333333333333,2041,156 +4980,83.0,2034,158 +4981,83.01666666666667,2023,161 +4982,83.03333333333333,2009,164 +4983,83.05,1991,168 +4984,83.06666666666666,1970,173 +4985,83.08333333333333,1946,178 +4986,83.1,1919,184 +4987,83.11666666666666,1889,190 +4988,83.13333333333333,1856,196 +4989,83.15,1820,203 +4990,83.16666666666667,1783,210 +4991,83.18333333333334,1743,216 +4992,83.2,1701,221 +4993,83.21666666666667,1658,227 +4994,83.23333333333333,1613,232 +4995,83.25,1567,235 +4996,83.26666666666667,1521,239 +4997,83.28333333333333,1473,242 +4998,83.3,1425,244 +4999,83.31666666666666,1378,245 +5000,83.33333333333333,1333,245 +5001,83.35,1287,245 +5002,83.36666666666666,1242,244 +5003,83.38333333333333,1197,242 +5004,83.4,1155,239 +5005,83.41666666666667,1115,237 +5006,83.43333333333334,1076,233 +5007,83.45,1040,229 +5008,83.46666666666667,1006,226 +5009,83.48333333333333,975,221 +5010,83.5,947,218 +5011,83.51666666666667,922,214 +5012,83.53333333333333,900,210 +5013,83.55,881,207 +5014,83.56666666666666,865,205 +5015,83.58333333333333,853,203 +5016,83.6,845,201 +5017,83.61666666666666,839,200 +5018,83.63333333333333,839,200 +5019,83.65,839,200 +5020,83.66666666666667,844,202 +5021,83.68333333333334,853,203 +5022,83.7,865,206 +5023,83.71666666666667,880,208 +5024,83.73333333333333,899,212 +5025,83.75,921,215 +5026,83.76666666666667,946,219 +5027,83.78333333333333,974,223 +5028,83.8,1005,227 +5029,83.81666666666666,1038,231 +5030,83.83333333333333,1074,235 +5031,83.85,1112,238 +5032,83.86666666666666,1152,241 +5033,83.88333333333333,1194,244 +5034,83.9,1238,246 +5035,83.91666666666667,1283,248 +5036,83.93333333333334,1329,248 +5037,83.95,1374,248 +5038,83.96666666666667,1421,247 +5039,83.98333333333333,1468,245 +5040,84.0,1516,242 +5041,84.01666666666667,1562,239 +5042,84.03333333333333,1608,235 +5043,84.05,1653,230 +5044,84.06666666666666,1696,225 +5045,84.08333333333333,1738,218 +5046,84.1,1778,212 +5047,84.11666666666666,1816,206 +5048,84.13333333333333,1851,200 +5049,84.15,1884,193 +5050,84.16666666666667,1914,187 +5051,84.18333333333334,1942,181 +5052,84.2,1966,175 +5053,84.21666666666667,1988,170 +5054,84.23333333333333,2006,166 +5055,84.25,2020,162 +5056,84.26666666666667,2031,159 +5057,84.28333333333333,2039,157 +5058,84.3,2040,156 +5059,84.31666666666666,2040,156 +5060,84.33333333333333,2040,156 +5061,84.35,2034,158 +5062,84.36666666666666,2023,161 +5063,84.38333333333333,2010,164 +5064,84.4,1993,168 +5065,84.41666666666667,1972,172 +5066,84.43333333333334,1948,178 +5067,84.45,1922,183 +5068,84.46666666666667,1893,189 +5069,84.48333333333333,1860,196 +5070,84.5,1825,202 +5071,84.51666666666667,1788,208 +5072,84.53333333333333,1748,215 +5073,84.55,1707,220 +5074,84.56666666666666,1664,226 +5075,84.58333333333333,1620,231 +5076,84.6,1574,235 +5077,84.61666666666666,1527,238 +5078,84.63333333333333,1481,241 +5079,84.65,1433,243 +5080,84.66666666666667,1386,245 +5081,84.68333333333334,1340,245 +5082,84.7,1294,245 +5083,84.71666666666667,1249,244 +5084,84.73333333333333,1205,242 +5085,84.75,1162,240 +5086,84.76666666666667,1122,237 +5087,84.78333333333333,1083,234 +5088,84.8,1047,230 +5089,84.81666666666666,1013,226 +5090,84.83333333333333,982,223 +5091,84.85,953,218 +5092,84.86666666666666,927,215 +5093,84.88333333333333,905,211 +5094,84.9,886,208 +5095,84.91666666666667,869,205 +5096,84.93333333333334,857,203 +5097,84.95,847,202 +5098,84.96666666666667,841,201 +5099,84.98333333333333,841,201 +5100,85.0,841,201 +5101,85.01666666666667,845,202 +5102,85.03333333333333,853,203 +5103,85.05,864,205 +5104,85.06666666666666,880,208 +5105,85.08333333333333,898,211 +5106,85.1,919,215 +5107,85.11666666666666,943,219 +5108,85.13333333333333,971,223 +5109,85.15,1001,227 +5110,85.16666666666667,1034,231 +5111,85.18333333333334,1070,235 +5112,85.2,1107,239 +5113,85.21666666666667,1147,242 +5114,85.23333333333333,1188,244 +5115,85.25,1232,246 +5116,85.26666666666667,1277,248 +5117,85.28333333333333,1322,248 +5118,85.3,1367,248 +5119,85.31666666666666,1414,248 +5120,85.33333333333333,1461,246 +5121,85.35,1508,243 +5122,85.36666666666666,1554,239 +5123,85.38333333333333,1600,235 +5124,85.4,1645,231 +5125,85.41666666666667,1689,225 +5126,85.43333333333334,1731,220 +5127,85.45,1771,214 +5128,85.46666666666667,1809,207 +5129,85.48333333333333,1845,201 +5130,85.5,1878,194 +5131,85.51666666666667,1909,188 +5132,85.53333333333333,1937,182 +5133,85.55,1961,176 +5134,85.56666666666666,1983,171 +5135,85.58333333333333,2001,166 +5136,85.6,2017,163 +5137,85.61666666666666,2028,159 +5138,85.63333333333333,2036,157 +5139,85.65,2039,156 +5140,85.66666666666667,2039,156 +5141,85.68333333333334,2039,156 +5142,85.7,2033,158 +5143,85.71666666666667,2024,160 +5144,85.73333333333333,2011,163 +5145,85.75,1994,167 +5146,85.76666666666667,1974,172 +5147,85.78333333333333,1951,177 +5148,85.8,1925,183 +5149,85.81666666666666,1896,189 +5150,85.83333333333333,1864,195 +5151,85.85,1830,201 +5152,85.86666666666666,1793,207 +5153,85.88333333333333,1754,214 +5154,85.9,1713,220 +5155,85.91666666666667,1671,225 +5156,85.93333333333334,1626,230 +5157,85.95,1581,235 +5158,85.96666666666667,1535,238 +5159,85.98333333333333,1488,241 +5160,86.0,1441,244 +5161,86.01666666666667,1394,245 +5162,86.03333333333333,1348,245 +5163,86.05,1302,245 +5164,86.06666666666666,1257,244 +5165,86.08333333333333,1213,243 +5166,86.1,1170,241 +5167,86.11666666666666,1129,238 +5168,86.13333333333333,1090,235 +5169,86.15,1054,231 +5170,86.16666666666667,1020,227 +5171,86.18333333333334,988,224 +5172,86.2,959,220 +5173,86.21666666666667,933,216 +5174,86.23333333333333,910,213 +5175,86.25,890,209 +5176,86.26666666666667,874,207 +5177,86.28333333333333,860,204 +5178,86.3,851,203 +5179,86.31666666666666,844,202 +5180,86.33333333333333,844,202 +5181,86.35,844,202 +5182,86.36666666666666,846,202 +5183,86.38333333333333,854,204 +5184,86.4,865,206 +5185,86.41666666666667,879,208 +5186,86.43333333333334,896,211 +5187,86.45,917,215 +5188,86.46666666666667,941,219 +5189,86.48333333333333,968,223 +5190,86.5,998,227 +5191,86.51666666666667,1030,231 +5192,86.53333333333333,1065,235 +5193,86.55,1102,238 +5194,86.56666666666666,1142,241 +5195,86.58333333333333,1183,244 +5196,86.6,1226,246 +5197,86.61666666666666,1270,248 +5198,86.63333333333333,1315,248 +5199,86.65,1361,248 +5200,86.66666666666667,1406,248 +5201,86.68333333333334,1454,246 +5202,86.7,1501,244 +5203,86.71666666666667,1547,240 +5204,86.73333333333333,1593,236 +5205,86.75,1638,232 +5206,86.76666666666667,1682,226 +5207,86.78333333333333,1723,221 +5208,86.8,1764,215 +5209,86.81666666666666,1802,208 +5210,86.83333333333333,1838,202 +5211,86.85,1871,196 +5212,86.86666666666666,1902,189 +5213,86.88333333333333,1930,183 +5214,86.9,1956,177 +5215,86.91666666666667,1978,172 +5216,86.93333333333334,1997,167 +5217,86.95,2012,163 +5218,86.96666666666667,2024,160 +5219,86.98333333333333,2033,158 +5220,87.0,2037,157 +5221,87.01666666666667,2037,157 +5222,87.03333333333333,2037,157 +5223,87.05,2032,158 +5224,87.06666666666666,2023,160 +5225,87.08333333333333,2010,163 +5226,87.1,1994,167 +5227,87.11666666666666,1975,171 +5228,87.13333333333333,1953,176 +5229,87.15,1927,182 +5230,87.16666666666667,1899,188 +5231,87.18333333333334,1868,194 +5232,87.2,1834,200 +5233,87.21666666666667,1798,207 +5234,87.23333333333333,1759,213 +5235,87.25,1719,218 +5236,87.26666666666667,1676,224 +5237,87.28333333333333,1633,229 +5238,87.3,1588,233 +5239,87.31666666666666,1542,238 +5240,87.33333333333333,1495,241 +5241,87.35,1448,243 +5242,87.36666666666666,1401,246 +5243,87.38333333333333,1356,246 +5244,87.4,1310,246 +5245,87.41666666666667,1265,245 +5246,87.43333333333334,1221,243 +5247,87.45,1178,241 +5248,87.46666666666667,1137,239 +5249,87.48333333333333,1098,235 +5250,87.5,1061,232 +5251,87.51666666666667,1027,228 +5252,87.53333333333333,994,225 +5253,87.55,965,221 +5254,87.56666666666666,939,217 +5255,87.58333333333333,916,213 +5256,87.6,895,210 +5257,87.61666666666666,878,207 +5258,87.63333333333333,865,205 +5259,87.65,854,203 +5260,87.66666666666667,847,202 +5261,87.68333333333334,847,202 +5262,87.7,847,202 +5263,87.71666666666667,848,202 +5264,87.73333333333333,855,204 +5265,87.75,865,206 +5266,87.76666666666667,879,208 +5267,87.78333333333333,896,211 +5268,87.8,916,215 +5269,87.81666666666666,940,218 +5270,87.83333333333333,966,222 +5271,87.85,995,226 +5272,87.86666666666666,1027,230 +5273,87.88333333333333,1061,234 +5274,87.9,1098,238 +5275,87.91666666666667,1137,241 +5276,87.93333333333334,1177,244 +5277,87.95,1220,246 +5278,87.96666666666667,1264,248 +5279,87.98333333333333,1309,248 +5280,88.0,1355,248 +5281,88.01666666666667,1400,248 +5282,88.03333333333333,1446,246 +5283,88.05,1494,244 +5284,88.06666666666666,1540,242 +5285,88.08333333333333,1586,237 +5286,88.1,1630,233 +5287,88.11666666666666,1674,227 +5288,88.13333333333333,1716,222 +5289,88.15,1756,216 +5290,88.16666666666667,1795,209 +5291,88.18333333333334,1831,203 +5292,88.2,1865,197 +5293,88.21666666666667,1896,190 +5294,88.23333333333333,1925,184 +5295,88.25,1950,178 +5296,88.26666666666667,1973,173 +5297,88.28333333333333,1992,168 +5298,88.3,2008,164 +5299,88.31666666666666,2021,161 +5300,88.33333333333333,2029,158 +5301,88.35,2035,157 +5302,88.36666666666666,2035,157 +5303,88.38333333333333,2035,157 +5304,88.4,2031,157 +5305,88.41666666666667,2022,160 +5306,88.43333333333334,2010,163 +5307,88.45,1995,167 +5308,88.46666666666667,1976,171 +5309,88.48333333333333,1955,176 +5310,88.5,1929,181 +5311,88.51666666666667,1902,187 +5312,88.53333333333333,1871,194 +5313,88.55,1837,200 +5314,88.56666666666666,1802,206 +5315,88.58333333333333,1764,212 +5316,88.6,1723,218 +5317,88.61666666666666,1682,224 +5318,88.63333333333333,1638,229 +5319,88.65,1593,233 +5320,88.66666666666667,1549,237 +5321,88.68333333333334,1502,241 +5322,88.7,1455,243 +5323,88.71666666666667,1408,245 +5324,88.73333333333333,1362,245 +5325,88.75,1317,245 +5326,88.76666666666667,1272,245 +5327,88.78333333333333,1228,244 +5328,88.8,1185,242 +5329,88.81666666666666,1144,239 +5330,88.83333333333333,1105,236 +5331,88.85,1068,233 +5332,88.86666666666666,1033,229 +5333,88.88333333333333,1000,225 +5334,88.9,971,222 +5335,88.91666666666667,945,218 +5336,88.93333333333334,921,215 +5337,88.95,900,211 +5338,88.96666666666667,883,209 +5339,88.98333333333333,869,206 +5340,89.0,858,204 +5341,89.01666666666667,850,203 +5342,89.03333333333333,849,203 +5343,89.05,849,203 +5344,89.06666666666666,849,203 +5345,89.08333333333333,856,204 +5346,89.1,865,206 +5347,89.11666666666666,879,209 +5348,89.13333333333333,895,212 +5349,89.15,915,215 +5350,89.16666666666667,938,218 +5351,89.18333333333334,964,222 +5352,89.2,992,226 +5353,89.21666666666667,1023,230 +5354,89.23333333333333,1057,234 +5355,89.25,1094,237 +5356,89.26666666666667,1132,241 +5357,89.28333333333333,1172,243 +5358,89.3,1215,246 +5359,89.31666666666666,1258,247 +5360,89.33333333333333,1303,248 +5361,89.35,1348,248 +5362,89.36666666666666,1393,248 +5363,89.38333333333333,1439,246 +5364,89.4,1486,244 +5365,89.41666666666667,1533,241 +5366,89.43333333333334,1578,237 +5367,89.45,1623,233 +5368,89.46666666666667,1667,229 +5369,89.48333333333333,1709,223 +5370,89.5,1750,217 +5371,89.51666666666667,1788,211 +5372,89.53333333333333,1825,204 +5373,89.55,1859,198 +5374,89.56666666666666,1890,192 +5375,89.58333333333333,1919,186 +5376,89.6,1945,180 +5377,89.61666666666666,1968,174 +5378,89.63333333333333,1988,170 +5379,89.65,2004,165 +5380,89.66666666666667,2017,162 +5381,89.68333333333334,2027,159 +5382,89.7,2033,158 +5383,89.71666666666667,2033,158 +5384,89.73333333333333,2033,158 +5385,89.75,2030,158 +5386,89.76666666666667,2022,160 +5387,89.78333333333333,2011,163 +5388,89.8,1996,166 +5389,89.81666666666666,1978,170 +5390,89.83333333333333,1957,175 +5391,89.85,1932,181 +5392,89.86666666666666,1905,187 +5393,89.88333333333333,1874,192 +5394,89.9,1841,199 +5395,89.91666666666667,1806,205 +5396,89.93333333333334,1769,211 +5397,89.95,1729,217 +5398,89.96666666666667,1687,223 +5399,89.98333333333333,1644,228 +5400,90.0,1600,233 +5401,90.01666666666667,1555,237 +5402,90.03333333333333,1509,240 +5403,90.05,1462,242 +5404,90.06666666666666,1415,245 +5405,90.08333333333333,1369,245 +5406,90.1,1324,245 +5407,90.11666666666666,1279,245 +5408,90.13333333333333,1235,244 +5409,90.15,1192,242 +5410,90.16666666666667,1151,240 +5411,90.18333333333334,1112,237 +5412,90.2,1075,234 +5413,90.21666666666667,1039,230 +5414,90.23333333333333,1007,226 +5415,90.25,977,222 +5416,90.26666666666667,950,219 +5417,90.28333333333333,926,215 +5418,90.3,905,212 +5419,90.31666666666666,887,209 +5420,90.33333333333333,873,207 +5421,90.35,862,205 +5422,90.36666666666666,854,204 +5423,90.38333333333333,851,203 +5424,90.4,851,203 +5425,90.41666666666667,851,203 +5426,90.43333333333334,856,205 +5427,90.45,866,206 +5428,90.46666666666667,878,209 +5429,90.48333333333333,895,212 +5430,90.5,914,215 +5431,90.51666666666667,936,218 +5432,90.53333333333333,961,222 +5433,90.55,989,226 +5434,90.56666666666666,1020,230 +5435,90.58333333333333,1053,233 +5436,90.6,1089,237 +5437,90.61666666666666,1127,240 +5438,90.63333333333333,1167,243 +5439,90.65,1208,245 +5440,90.66666666666667,1252,247 +5441,90.68333333333334,1296,248 +5442,90.7,1341,248 +5443,90.71666666666667,1386,248 +5444,90.73333333333333,1432,247 +5445,90.75,1479,244 +5446,90.76666666666667,1525,242 +5447,90.78333333333333,1571,238 +5448,90.8,1615,234 +5449,90.81666666666666,1659,229 +5450,90.83333333333333,1701,224 +5451,90.85,1742,217 +5452,90.86666666666666,1781,211 +5453,90.88333333333333,1818,205 +5454,90.9,1852,199 +5455,90.91666666666667,1884,192 +5456,90.93333333333334,1913,186 +5457,90.95,1940,180 +5458,90.96666666666667,1963,175 +5459,90.98333333333333,1983,170 +5460,91.0,2000,166 +5461,91.01666666666667,2014,163 +5462,91.03333333333333,2024,160 +5463,91.05,2030,158 +5464,91.06666666666666,2030,158 +5465,91.08333333333333,2030,158 +5466,91.1,2029,158 +5467,91.11666666666666,2022,160 +5468,91.13333333333333,2011,162 +5469,91.15,1997,166 +5470,91.16666666666667,1979,170 +5471,91.18333333333334,1958,175 +5472,91.2,1934,180 +5473,91.21666666666667,1907,186 +5474,91.23333333333333,1878,192 +5475,91.25,1845,198 +5476,91.26666666666667,1810,204 +5477,91.28333333333333,1773,210 +5478,91.3,1734,216 +5479,91.31666666666666,1693,222 +5480,91.33333333333333,1650,227 +5481,91.35,1606,232 +5482,91.36666666666666,1561,236 +5483,91.38333333333333,1515,240 +5484,91.4,1469,243 +5485,91.41666666666667,1422,244 +5486,91.43333333333334,1376,245 +5487,91.45,1331,245 +5488,91.46666666666667,1286,245 +5489,91.48333333333333,1242,244 +5490,91.5,1200,243 +5491,91.51666666666667,1158,240 +5492,91.53333333333333,1119,238 +5493,91.55,1082,234 +5494,91.56666666666666,1046,231 +5495,91.58333333333333,1014,227 +5496,91.6,983,223 +5497,91.61666666666666,956,220 +5498,91.63333333333333,932,216 +5499,91.65,910,213 +5500,91.66666666666667,892,210 +5501,91.68333333333334,877,208 +5502,91.7,865,206 +5503,91.71666666666667,857,204 +5504,91.73333333333333,853,204 +5505,91.75,853,204 +5506,91.76666666666667,853,204 +5507,91.78333333333333,858,205 +5508,91.8,866,206 +5509,91.81666666666666,879,209 +5510,91.83333333333333,894,212 +5511,91.85,913,215 +5512,91.86666666666666,934,218 +5513,91.88333333333333,959,222 +5514,91.9,987,226 +5515,91.91666666666667,1017,230 +5516,91.93333333333334,1050,233 +5517,91.95,1085,237 +5518,91.96666666666667,1123,240 +5519,91.98333333333333,1162,243 +5520,92.0,1203,245 +5521,92.01666666666667,1246,247 +5522,92.03333333333333,1289,248 +5523,92.05,1334,248 +5524,92.06666666666666,1379,248 +5525,92.08333333333333,1425,247 +5526,92.1,1472,245 +5527,92.11666666666666,1518,242 +5528,92.13333333333333,1563,238 +5529,92.15,1608,234 +5530,92.16666666666667,1652,230 +5531,92.18333333333334,1694,225 +5532,92.2,1735,218 +5533,92.21666666666667,1774,212 +5534,92.23333333333333,1811,206 +5535,92.25,1846,200 +5536,92.26666666666667,1878,194 +5537,92.28333333333333,1907,187 +5538,92.3,1934,181 +5539,92.31666666666666,1958,176 +5540,92.33333333333333,1978,171 +5541,92.35,1995,167 +5542,92.36666666666666,2009,163 +5543,92.38333333333333,2020,160 +5544,92.4,2027,158 +5545,92.41666666666667,2027,158 +5546,92.43333333333334,2027,158 +5547,92.45,2027,158 +5548,92.46666666666667,2020,160 +5549,92.48333333333333,2010,162 +5550,92.5,1996,166 +5551,92.51666666666667,1979,169 +5552,92.53333333333333,1959,174 +5553,92.55,1935,179 +5554,92.56666666666666,1909,185 +5555,92.58333333333333,1880,191 +5556,92.6,1848,197 +5557,92.61666666666666,1813,203 +5558,92.63333333333333,1777,209 +5559,92.65,1738,215 +5560,92.66666666666667,1697,221 +5561,92.68333333333334,1655,226 +5562,92.7,1611,231 +5563,92.71666666666667,1567,235 +5564,92.73333333333333,1521,239 +5565,92.75,1475,242 +5566,92.76666666666667,1428,244 +5567,92.78333333333333,1383,246 +5568,92.8,1338,246 +5569,92.81666666666666,1293,246 +5570,92.83333333333333,1249,245 +5571,92.85,1206,243 +5572,92.86666666666666,1165,240 +5573,92.88333333333333,1125,238 +5574,92.9,1088,235 +5575,92.91666666666667,1052,231 +5576,92.93333333333334,1019,228 +5577,92.95,989,224 +5578,92.96666666666667,961,220 +5579,92.98333333333333,937,217 +5580,93.0,915,214 +5581,93.01666666666667,896,211 +5582,93.03333333333333,881,208 +5583,93.05,869,206 +5584,93.06666666666666,860,205 +5585,93.08333333333333,854,204 +5586,93.1,854,204 +5587,93.11666666666666,854,204 +5588,93.13333333333333,858,205 +5589,93.15,867,206 +5590,93.16666666666667,878,209 +5591,93.18333333333334,893,211 +5592,93.2,911,214 +5593,93.21666666666667,932,217 +5594,93.23333333333333,957,221 +5595,93.25,984,225 +5596,93.26666666666667,1014,229 +5597,93.28333333333333,1046,233 +5598,93.3,1081,236 +5599,93.31666666666666,1118,239 +5600,93.33333333333333,1157,242 +5601,93.35,1198,245 +5602,93.36666666666666,1240,246 +5603,93.38333333333333,1284,248 +5604,93.4,1329,248 +5605,93.41666666666667,1373,248 +5606,93.43333333333334,1418,247 +5607,93.45,1465,245 +5608,93.46666666666667,1511,242 +5609,93.48333333333333,1557,239 +5610,93.5,1601,235 +5611,93.51666666666667,1645,230 +5612,93.53333333333333,1687,225 +5613,93.55,1728,219 +5614,93.56666666666666,1767,214 +5615,93.58333333333333,1805,207 +5616,93.6,1839,201 +5617,93.61666666666666,1872,195 +5618,93.63333333333333,1901,189 +5619,93.65,1928,183 +5620,93.66666666666667,1952,177 +5621,93.68333333333334,1973,172 +5622,93.7,1991,168 +5623,93.71666666666667,2006,164 +5624,93.73333333333333,2016,161 +5625,93.75,2024,159 +5626,93.76666666666667,2026,159 +5627,93.78333333333333,2026,159 +5628,93.8,2026,159 +5629,93.81666666666666,2020,160 +5630,93.83333333333333,2010,163 +5631,93.85,1997,166 +5632,93.86666666666666,1980,170 +5633,93.88333333333333,1960,175 +5634,93.9,1938,180 +5635,93.91666666666667,1912,185 +5636,93.93333333333334,1883,191 +5637,93.95,1851,197 +5638,93.96666666666667,1817,203 +5639,93.98333333333333,1781,209 +5640,94.0,1743,215 +5641,94.01666666666667,1702,221 +5642,94.03333333333333,1660,227 +5643,94.05,1617,231 +5644,94.06666666666666,1573,235 +5645,94.08333333333333,1528,239 +5646,94.1,1482,242 +5647,94.11666666666666,1435,244 +5648,94.13333333333333,1389,246 +5649,94.15,1345,246 +5650,94.16666666666667,1300,246 +5651,94.18333333333334,1256,245 +5652,94.2,1213,244 +5653,94.21666666666667,1171,241 +5654,94.23333333333333,1132,239 +5655,94.25,1094,236 +5656,94.26666666666667,1058,233 +5657,94.28333333333333,1025,229 +5658,94.3,995,226 +5659,94.31666666666666,967,222 +5660,94.33333333333333,941,218 +5661,94.35,919,215 +5662,94.36666666666666,900,212 +5663,94.38333333333333,884,210 +5664,94.4,872,208 +5665,94.41666666666667,862,206 +5666,94.43333333333334,856,205 +5667,94.45,856,205 +5668,94.46666666666667,856,205 +5669,94.48333333333333,859,205 +5670,94.5,867,207 +5671,94.51666666666667,878,209 +5672,94.53333333333333,892,212 +5673,94.55,910,215 +5674,94.56666666666666,931,218 +5675,94.58333333333333,954,222 +5676,94.6,981,226 +5677,94.61666666666666,1010,229 +5678,94.63333333333333,1043,233 +5679,94.65,1077,236 +5680,94.66666666666667,1113,240 +5681,94.68333333333334,1152,243 +5682,94.7,1192,245 +5683,94.71666666666667,1235,247 +5684,94.73333333333333,1278,248 +5685,94.75,1322,248 +5686,94.76666666666667,1366,248 +5687,94.78333333333333,1412,248 +5688,94.8,1458,246 +5689,94.81666666666666,1504,243 +5690,94.83333333333333,1549,240 +5691,94.85,1594,236 +5692,94.86666666666666,1638,231 +5693,94.88333333333333,1680,227 +5694,94.9,1721,221 +5695,94.91666666666667,1761,215 +5696,94.93333333333334,1798,209 +5697,94.95,1833,202 +5698,94.96666666666667,1865,197 +5699,94.98333333333333,1896,190 +5700,95.0,1923,184 +5701,95.01666666666667,1947,179 +5702,95.03333333333333,1968,174 +5703,95.05,1987,169 +5704,95.06666666666666,2002,166 +5705,95.08333333333333,2013,162 +5706,95.1,2021,161 +5707,95.11666666666666,2025,159 +5708,95.13333333333333,2025,159 +5709,95.15,2025,159 +5710,95.16666666666667,2019,161 +5711,95.18333333333334,2009,163 +5712,95.2,1997,166 +5713,95.21666666666667,1980,170 +5714,95.23333333333333,1961,175 +5715,95.25,1939,180 +5716,95.26666666666667,1913,185 +5717,95.28333333333333,1885,191 +5718,95.3,1854,197 +5719,95.31666666666666,1821,203 +5720,95.33333333333333,1785,209 +5721,95.35,1747,215 +5722,95.36666666666666,1707,221 +5723,95.38333333333333,1666,227 +5724,95.4,1623,231 +5725,95.41666666666667,1578,235 +5726,95.43333333333334,1533,239 +5727,95.45,1488,242 +5728,95.46666666666667,1441,244 +5729,95.48333333333333,1396,246 +5730,95.5,1351,246 +5731,95.51666666666667,1307,246 +5732,95.53333333333333,1263,246 +5733,95.55,1219,245 +5734,95.56666666666666,1178,243 +5735,95.58333333333333,1139,241 +5736,95.6,1101,237 +5737,95.61666666666666,1065,234 +5738,95.63333333333333,1031,231 +5739,95.65,1000,227 +5740,95.66666666666667,972,224 +5741,95.68333333333334,946,220 +5742,95.7,924,217 +5743,95.71666666666667,904,214 +5744,95.73333333333333,888,211 +5745,95.75,875,209 +5746,95.76666666666667,866,208 +5747,95.78333333333333,859,207 +5748,95.8,859,207 +5749,95.81666666666666,859,207 +5750,95.83333333333333,860,207 +5751,95.85,867,208 +5752,95.86666666666666,878,211 +5753,95.88333333333333,892,213 +5754,95.9,909,216 +5755,95.91666666666667,929,219 +5756,95.93333333333334,952,223 +5757,95.95,979,226 +5758,95.96666666666667,1008,230 +5759,95.98333333333333,1039,234 +5760,96.0,1073,237 +5761,96.01666666666667,1109,240 +5762,96.03333333333333,1147,243 +5763,96.05,1187,246 +5764,96.06666666666666,1229,248 +5765,96.08333333333333,1272,249 +5766,96.1,1316,249 +5767,96.11666666666666,1360,249 +5768,96.13333333333333,1405,249 +5769,96.15,1451,247 +5770,96.16666666666667,1497,244 +5771,96.18333333333334,1542,241 +5772,96.2,1587,237 +5773,96.21666666666667,1631,233 +5774,96.23333333333333,1673,228 +5775,96.25,1715,223 +5776,96.26666666666667,1754,217 +5777,96.28333333333333,1791,210 +5778,96.3,1827,204 +5779,96.31666666666666,1860,198 +5780,96.33333333333333,1890,192 +5781,96.35,1917,186 +5782,96.36666666666666,1942,181 +5783,96.38333333333333,1964,176 +5784,96.4,1982,171 +5785,96.41666666666667,1998,167 +5786,96.43333333333334,2009,164 +5787,96.45,2018,162 +5788,96.46666666666667,2023,161 +5789,96.48333333333333,2023,161 +5790,96.5,2023,161 +5791,96.51666666666667,2018,162 +5792,96.53333333333333,2009,164 +5793,96.55,1997,167 +5794,96.56666666666666,1981,170 +5795,96.58333333333333,1962,175 +5796,96.6,1940,180 +5797,96.61666666666666,1916,185 +5798,96.63333333333333,1888,191 +5799,96.65,1857,197 +5800,96.66666666666667,1824,203 +5801,96.68333333333334,1789,209 +5802,96.7,1751,215 +5803,96.71666666666667,1712,221 +5804,96.73333333333333,1671,227 +5805,96.75,1628,232 +5806,96.76666666666667,1584,236 +5807,96.78333333333333,1540,240 +5808,96.8,1494,243 +5809,96.81666666666666,1448,245 +5810,96.83333333333333,1402,247 +5811,96.85,1358,248 +5812,96.86666666666666,1314,248 +5813,96.88333333333333,1270,248 +5814,96.9,1227,246 +5815,96.91666666666667,1185,244 +5816,96.93333333333334,1145,242 +5817,96.95,1107,239 +5818,96.96666666666667,1071,236 +5819,96.98333333333333,1038,233 +5820,97.0,1006,229 +5821,97.01666666666667,978,226 +5822,97.03333333333333,952,222 +5823,97.05,929,219 +5824,97.06666666666666,909,216 +5825,97.08333333333333,893,214 +5826,97.1,879,212 +5827,97.11666666666666,869,210 +5828,97.13333333333333,863,209 +5829,97.15,862,209 +5830,97.16666666666667,862,209 +5831,97.18333333333334,862,209 +5832,97.2,869,210 +5833,97.21666666666667,879,212 +5834,97.23333333333333,892,214 +5835,97.25,909,217 +5836,97.26666666666667,929,220 +5837,97.28333333333333,951,223 +5838,97.3,977,227 +5839,97.31666666666666,1005,231 +5840,97.33333333333333,1036,234 +5841,97.35,1070,238 +5842,97.36666666666666,1106,241 +5843,97.38333333333333,1144,244 +5844,97.4,1183,247 +5845,97.41666666666667,1225,248 +5846,97.43333333333334,1268,250 +5847,97.45,1311,250 +5848,97.46666666666667,1356,250 +5849,97.48333333333333,1400,250 +5850,97.5,1445,248 +5851,97.51666666666667,1491,246 +5852,97.53333333333333,1536,243 +5853,97.55,1581,239 +5854,97.56666666666666,1624,235 +5855,97.58333333333333,1667,230 +5856,97.6,1708,224 +5857,97.61666666666666,1748,219 +5858,97.63333333333333,1785,212 +5859,97.65,1820,206 +5860,97.66666666666667,1854,200 +5861,97.68333333333334,1885,194 +5862,97.7,1912,188 +5863,97.71666666666667,1938,182 +5864,97.73333333333333,1959,177 +5865,97.75,1978,173 +5866,97.76666666666667,1994,169 +5867,97.78333333333333,2007,166 +5868,97.8,2016,163 +5869,97.81666666666666,2021,162 +5870,97.83333333333333,2021,162 +5871,97.85,2021,162 +5872,97.86666666666666,2017,163 +5873,97.88333333333333,2009,165 +5874,97.9,1997,168 +5875,97.91666666666667,1982,171 +5876,97.93333333333334,1964,175 +5877,97.95,1943,180 +5878,97.96666666666667,1918,186 +5879,97.98333333333333,1891,191 +5880,98.0,1861,197 +5881,98.01666666666667,1828,203 +5882,98.03333333333333,1794,210 +5883,98.05,1756,215 +5884,98.06666666666666,1717,221 +5885,98.08333333333333,1676,227 +5886,98.1,1634,231 +5887,98.11666666666666,1591,236 +5888,98.13333333333333,1546,240 +5889,98.15,1501,243 +5890,98.16666666666667,1455,245 +5891,98.18333333333334,1410,248 +5892,98.2,1365,248 +5893,98.21666666666667,1321,248 +5894,98.23333333333333,1277,248 +5895,98.25,1234,247 +5896,98.26666666666667,1192,245 +5897,98.28333333333333,1152,243 +5898,98.3,1114,240 +5899,98.31666666666666,1078,237 +5900,98.33333333333333,1044,234 +5901,98.35,1013,230 +5902,98.36666666666666,984,227 +5903,98.38333333333333,957,223 +5904,98.4,935,220 +5905,98.41666666666667,914,217 +5906,98.43333333333334,897,215 +5907,98.45,884,212 +5908,98.46666666666667,873,211 +5909,98.48333333333333,866,209 +5910,98.5,864,209 +5911,98.51666666666667,864,209 +5912,98.53333333333333,864,209 +5913,98.55,871,210 +5914,98.56666666666666,880,212 +5915,98.58333333333333,893,215 +5916,98.6,909,217 +5917,98.61666666666666,928,220 +5918,98.63333333333333,950,223 +5919,98.65,975,227 +5920,98.66666666666667,1003,230 +5921,98.68333333333334,1033,234 +5922,98.7,1066,238 +5923,98.71666666666667,1102,241 +5924,98.73333333333333,1140,244 +5925,98.75,1179,246 +5926,98.76666666666667,1220,248 +5927,98.78333333333333,1263,250 +5928,98.8,1306,250 +5929,98.81666666666666,1350,250 +5930,98.83333333333333,1394,250 +5931,98.85,1439,248 +5932,98.86666666666666,1485,246 +5933,98.88333333333333,1530,243 +5934,98.9,1575,240 +5935,98.91666666666667,1619,235 +5936,98.93333333333334,1661,231 +5937,98.95,1703,225 +5938,98.96666666666667,1742,220 +5939,98.98333333333333,1780,214 +5940,99.0,1816,208 +5941,99.01666666666667,1849,202 +5942,99.03333333333333,1880,196 +5943,99.05,1908,189 +5944,99.06666666666666,1934,184 +5945,99.08333333333333,1956,179 +5946,99.1,1975,174 +5947,99.11666666666666,1991,171 +5948,99.13333333333333,2004,167 +5949,99.15,2014,165 +5950,99.16666666666667,2020,163 +5951,99.18333333333334,2020,163 +5952,99.2,2020,163 +5953,99.21666666666667,2017,164 +5954,99.23333333333333,2009,166 +5955,99.25,1998,168 +5956,99.26666666666667,1983,172 +5957,99.28333333333333,1966,176 +5958,99.3,1944,180 +5959,99.31666666666666,1921,185 +5960,99.33333333333333,1894,191 +5961,99.35,1864,197 +5962,99.36666666666666,1832,203 +5963,99.38333333333333,1797,209 +5964,99.4,1761,215 +5965,99.41666666666667,1722,221 +5966,99.43333333333334,1682,226 +5967,99.45,1640,231 +5968,99.46666666666667,1596,236 +5969,99.48333333333333,1552,240 +5970,99.5,1508,243 +5971,99.51666666666667,1462,245 +5972,99.53333333333333,1416,248 +5973,99.55,1371,249 +5974,99.56666666666666,1329,249 +5975,99.58333333333333,1284,249 +5976,99.6,1241,247 +5977,99.61666666666666,1199,246 +5978,99.63333333333333,1159,244 +5979,99.65,1121,240 +5980,99.66666666666667,1085,238 +5981,99.68333333333334,1051,234 +5982,99.7,1019,231 +5983,99.71666666666667,990,227 +5984,99.73333333333333,964,224 +5985,99.75,940,220 +5986,99.76666666666667,920,218 +5987,99.78333333333333,902,215 +5988,99.8,888,212 +5989,99.81666666666666,877,211 +5990,99.83333333333333,870,209 +5991,99.85,867,209 +5992,99.86666666666666,867,209 +5993,99.88333333333333,867,209 +5994,99.9,872,210 +5995,99.91666666666667,882,211 +5996,99.93333333333334,894,214 +5997,99.95,909,216 +5998,99.96666666666667,928,219 +5999,99.98333333333333,950,223 +6000,100.0,974,226 +6001,100.01666666666667,1002,230 +6002,100.03333333333333,1032,233 +6003,100.05,1064,237 +6004,100.06666666666666,1099,240 +6005,100.08333333333333,1136,243 +6006,100.1,1175,245 +6007,100.11666666666666,1216,248 +6008,100.13333333333333,1258,249 +6009,100.15,1301,250 +6010,100.16666666666667,1345,250 +6011,100.18333333333334,1389,250 +6012,100.2,1433,248 +6013,100.21666666666667,1480,246 +6014,100.23333333333333,1525,243 +6015,100.25,1569,240 +6016,100.26666666666667,1613,236 +6017,100.28333333333333,1656,231 +6018,100.3,1697,226 +6019,100.31666666666666,1737,220 +6020,100.33333333333333,1775,215 +6021,100.35,1811,209 +6022,100.36666666666666,1844,202 +6023,100.38333333333333,1875,197 +6024,100.4,1904,190 +6025,100.41666666666667,1930,185 +6026,100.43333333333334,1953,180 +6027,100.45,1972,175 +6028,100.46666666666667,1989,171 +6029,100.48333333333333,2002,168 +6030,100.5,2012,165 +6031,100.51666666666667,2018,163 +6032,100.53333333333333,2018,163 +6033,100.55,2018,163 +6034,100.56666666666666,2017,164 +6035,100.58333333333333,2009,166 +6036,100.6,1999,168 +6037,100.61666666666666,1985,171 +6038,100.63333333333333,1967,175 +6039,100.65,1947,180 +6040,100.66666666666667,1924,185 +6041,100.68333333333334,1897,191 +6042,100.7,1868,197 +6043,100.71666666666667,1836,202 +6044,100.73333333333333,1802,208 +6045,100.75,1766,214 +6046,100.76666666666667,1727,220 +6047,100.78333333333333,1687,225 +6048,100.8,1645,230 +6049,100.81666666666666,1602,235 +6050,100.83333333333333,1559,239 +6051,100.85,1514,242 +6052,100.86666666666666,1469,245 +6053,100.88333333333333,1423,246 +6054,100.9,1379,248 +6055,100.91666666666667,1335,248 +6056,100.93333333333334,1291,248 +6057,100.95,1248,247 +6058,100.96666666666667,1206,246 +6059,100.98333333333333,1166,243 +6060,101.0,1127,241 +6061,101.01666666666667,1091,238 +6062,101.03333333333333,1057,234 +6063,101.05,1025,231 +6064,101.06666666666666,995,228 +6065,101.08333333333333,969,225 +6066,101.1,945,221 +6067,101.11666666666666,924,218 +6068,101.13333333333333,906,215 +6069,101.15,891,213 +6070,101.16666666666667,880,211 +6071,101.18333333333334,872,210 +6072,101.2,868,209 +6073,101.21666666666667,868,209 +6074,101.23333333333333,868,209 +6075,101.25,873,210 +6076,101.26666666666667,882,212 +6077,101.28333333333333,894,214 +6078,101.3,908,216 +6079,101.31666666666666,927,219 +6080,101.33333333333333,948,222 +6081,101.35,972,226 +6082,101.36666666666666,999,229 +6083,101.38333333333333,1029,233 +6084,101.4,1061,236 +6085,101.41666666666667,1095,239 +6086,101.43333333333334,1132,242 +6087,101.45,1171,245 +6088,101.46666666666667,1211,247 +6089,101.48333333333333,1253,249 +6090,101.5,1295,250 +6091,101.51666666666667,1340,250 +6092,101.53333333333333,1383,250 +6093,101.55,1427,248 +6094,101.56666666666666,1473,246 +6095,101.58333333333333,1518,243 +6096,101.6,1562,240 +6097,101.61666666666666,1606,236 +6098,101.63333333333333,1649,231 +6099,101.65,1690,226 +6100,101.66666666666667,1730,220 +6101,101.68333333333334,1768,215 +6102,101.7,1804,209 +6103,101.71666666666667,1838,203 +6104,101.73333333333333,1869,197 +6105,101.75,1899,191 +6106,101.76666666666667,1925,185 +6107,101.78333333333333,1947,180 +6108,101.8,1968,175 +6109,101.81666666666666,1984,171 +6110,101.83333333333333,1998,168 +6111,101.85,2008,165 +6112,101.86666666666666,2015,163 +6113,101.88333333333333,2015,163 +6114,101.9,2015,163 +6115,101.91666666666667,2015,163 +6116,101.93333333333334,2008,165 +6117,101.95,1998,167 +6118,101.96666666666667,1985,170 +6119,101.98333333333333,1968,174 +6120,102.0,1948,179 +6121,102.01666666666667,1925,184 +6122,102.03333333333333,1899,189 +6123,102.05,1870,195 +6124,102.06666666666666,1838,201 +6125,102.08333333333333,1805,207 +6126,102.1,1769,213 +6127,102.11666666666666,1731,219 +6128,102.13333333333333,1691,224 +6129,102.15,1650,229 +6130,102.16666666666667,1607,233 +6131,102.18333333333334,1563,237 +6132,102.2,1519,241 +6133,102.21666666666667,1474,243 +6134,102.23333333333333,1428,246 +6135,102.25,1384,248 +6136,102.26666666666667,1341,248 +6137,102.28333333333333,1297,248 +6138,102.3,1254,246 +6139,102.31666666666666,1212,245 +6140,102.33333333333333,1172,243 +6141,102.35,1133,241 +6142,102.36666666666666,1097,238 +6143,102.38333333333333,1062,235 +6144,102.4,1030,231 +6145,102.41666666666667,1000,228 +6146,102.43333333333334,974,224 +6147,102.45,950,221 +6148,102.46666666666667,929,218 +6149,102.48333333333333,910,215 +6150,102.5,895,213 +6151,102.51666666666667,883,211 +6152,102.53333333333333,875,209 +6153,102.55,870,209 +6154,102.56666666666666,870,209 +6155,102.58333333333333,870,209 +6156,102.6,874,209 +6157,102.61666666666666,882,211 +6158,102.63333333333333,894,213 +6159,102.64999999999999,908,215 +6160,102.66666666666667,926,218 +6161,102.68333333333334,946,221 +6162,102.7,970,224 +6163,102.71666666666667,997,228 +6164,102.73333333333333,1026,231 +6165,102.75,1058,234 +6166,102.76666666666667,1092,238 +6167,102.78333333333333,1128,241 +6168,102.8,1166,243 +6169,102.81666666666666,1205,245 +6170,102.83333333333333,1247,247 +6171,102.85,1289,248 +6172,102.86666666666666,1333,248 +6173,102.88333333333333,1376,248 +6174,102.89999999999999,1421,247 +6175,102.91666666666667,1466,245 +6176,102.93333333333334,1511,242 +6177,102.95,1556,239 +6178,102.96666666666667,1600,235 +6179,102.98333333333333,1642,231 +6180,103.0,1684,225 +6181,103.01666666666667,1724,220 +6182,103.03333333333333,1762,214 +6183,103.05,1798,208 +6184,103.06666666666666,1832,202 +6185,103.08333333333333,1863,196 +6186,103.1,1893,189 +6187,103.11666666666666,1919,184 +6188,103.13333333333333,1942,178 +6189,103.14999999999999,1963,174 +6190,103.16666666666667,1980,170 +6191,103.18333333333334,1994,166 +6192,103.2,2005,164 +6193,103.21666666666667,2012,161 +6194,103.23333333333333,2013,161 +6195,103.25,2013,161 +6196,103.26666666666667,2013,161 +6197,103.28333333333333,2007,163 +6198,103.3,1997,165 +6199,103.31666666666666,1984,168 +6200,103.33333333333333,1968,172 +6201,103.35,1948,176 +6202,103.36666666666666,1926,181 +6203,103.38333333333333,1900,186 +6204,103.39999999999999,1872,192 +6205,103.41666666666667,1841,198 +6206,103.43333333333334,1808,204 +6207,103.45,1772,210 +6208,103.46666666666667,1735,215 +6209,103.48333333333333,1695,221 +6210,103.5,1655,226 +6211,103.51666666666667,1612,231 +6212,103.53333333333333,1569,236 +6213,103.55,1525,239 +6214,103.56666666666666,1480,242 +6215,103.58333333333333,1434,244 +6216,103.6,1390,246 +6217,103.61666666666666,1346,246 +6218,103.63333333333333,1302,246 +6219,103.64999999999999,1260,245 +6220,103.66666666666667,1218,244 +6221,103.68333333333334,1177,242 +6222,103.7,1139,240 +6223,103.71666666666667,1102,237 +6224,103.73333333333333,1068,234 +6225,103.75,1035,231 +6226,103.76666666666667,1005,227 +6227,103.78333333333333,978,224 +6228,103.8,954,220 +6229,103.81666666666666,932,217 +6230,103.83333333333333,914,215 +6231,103.85,898,212 +6232,103.86666666666666,886,210 +6233,103.88333333333333,878,209 +6234,103.89999999999999,872,208 +6235,103.91666666666667,872,208 +6236,103.93333333333334,872,208 +6237,103.95,875,209 +6238,103.96666666666667,883,210 +6239,103.98333333333333,893,212 +6240,104.0,907,214 +6241,104.01666666666667,925,217 +6242,104.03333333333333,945,220 +6243,104.05,968,223 +6244,104.06666666666666,994,227 +6245,104.08333333333333,1023,230 +6246,104.1,1054,234 +6247,104.11666666666666,1088,237 +6248,104.13333333333333,1124,240 +6249,104.14999999999999,1161,242 +6250,104.16666666666667,1201,245 +6251,104.18333333333334,1242,246 +6252,104.2,1284,247 +6253,104.21666666666667,1327,247 +6254,104.23333333333333,1370,247 +6255,104.25,1415,247 +6256,104.26666666666667,1460,244 +6257,104.28333333333333,1505,242 +6258,104.3,1549,239 +6259,104.31666666666666,1592,234 +6260,104.33333333333333,1635,230 +6261,104.35,1677,225 +6262,104.36666666666666,1717,219 +6263,104.38333333333333,1755,214 +6264,104.39999999999999,1791,208 +6265,104.41666666666667,1825,202 +6266,104.43333333333334,1857,196 +6267,104.45,1886,190 +6268,104.46666666666667,1913,184 +6269,104.48333333333333,1937,179 +6270,104.5,1957,174 +6271,104.51666666666667,1975,170 +6272,104.53333333333333,1989,167 +6273,104.55,2001,164 +6274,104.56666666666666,2008,162 +6275,104.58333333333333,2011,161 +6276,104.6,2011,161 +6277,104.61666666666666,2011,161 +6278,104.63333333333333,2005,163 +6279,104.64999999999999,1996,165 +6280,104.66666666666667,1983,168 +6281,104.68333333333334,1967,171 +6282,104.7,1949,176 +6283,104.71666666666667,1926,181 +6284,104.73333333333333,1902,186 +6285,104.75,1874,191 +6286,104.76666666666667,1844,197 +6287,104.78333333333333,1811,203 +6288,104.8,1775,209 +6289,104.81666666666666,1738,215 +6290,104.83333333333333,1699,221 +6291,104.85,1658,226 +6292,104.86666666666666,1617,230 +6293,104.88333333333333,1573,235 +6294,104.89999999999999,1529,238 +6295,104.91666666666667,1485,241 +6296,104.93333333333334,1440,244 +6297,104.95,1396,246 +6298,104.96666666666667,1352,246 +6299,104.98333333333333,1309,246 +6300,105.0,1266,246 +6301,105.01666666666667,1224,244 +6302,105.03333333333333,1184,242 +6303,105.05,1145,239 +6304,105.06666666666666,1108,237 +6305,105.08333333333333,1073,234 +6306,105.1,1041,231 +6307,105.11666666666666,1011,227 +6308,105.13333333333333,983,224 +6309,105.14999999999999,958,221 +6310,105.16666666666667,937,218 +6311,105.18333333333334,918,215 +6312,105.2,902,213 +6313,105.21666666666667,890,211 +6314,105.23333333333333,880,210 +6315,105.25,874,209 +6316,105.26666666666667,874,209 +6317,105.28333333333333,874,209 +6318,105.3,876,209 +6319,105.31666666666666,883,210 +6320,105.33333333333333,894,212 +6321,105.35,907,214 +6322,105.36666666666666,924,217 +6323,105.38333333333333,944,220 +6324,105.39999999999999,966,223 +6325,105.41666666666667,992,226 +6326,105.43333333333334,1020,230 +6327,105.45,1051,233 +6328,105.46666666666667,1084,237 +6329,105.48333333333333,1119,239 +6330,105.5,1157,242 +6331,105.51666666666667,1196,245 +6332,105.53333333333333,1237,246 +6333,105.55,1279,247 +6334,105.56666666666666,1322,247 +6335,105.58333333333333,1365,247 +6336,105.6,1409,247 +6337,105.61666666666666,1454,244 +6338,105.63333333333333,1499,242 +6339,105.64999999999999,1543,239 +6340,105.66666666666667,1587,235 +6341,105.68333333333334,1629,231 +6342,105.7,1670,226 +6343,105.71666666666667,1710,221 +6344,105.73333333333333,1749,215 +6345,105.75,1785,209 +6346,105.76666666666667,1820,203 +6347,105.78333333333333,1852,197 +6348,105.8,1881,191 +6349,105.81666666666666,1908,186 +6350,105.83333333333333,1932,181 +6351,105.85,1953,176 +6352,105.86666666666666,1971,172 +6353,105.88333333333333,1985,168 +6354,105.89999999999999,1997,165 +6355,105.91666666666667,2005,163 +6356,105.93333333333334,2010,162 +6357,105.95,2010,162 +6358,105.96666666666667,2010,162 +6359,105.98333333333333,2004,163 +6360,106.0,1995,165 +6361,106.01666666666667,1983,168 +6362,106.03333333333333,1968,172 +6363,106.05,1949,176 +6364,106.06666666666666,1927,181 +6365,106.08333333333333,1903,186 +6366,106.1,1876,192 +6367,106.11666666666666,1846,197 +6368,106.13333333333333,1813,203 +6369,106.14999999999999,1779,209 +6370,106.16666666666667,1742,215 +6371,106.18333333333334,1703,220 +6372,106.2,1662,226 +6373,106.21666666666667,1621,230 +6374,106.23333333333333,1578,234 +6375,106.25,1534,238 +6376,106.26666666666667,1490,241 +6377,106.28333333333333,1445,243 +6378,106.3,1401,246 +6379,106.31666666666666,1357,246 +6380,106.33333333333333,1313,246 +6381,106.35,1271,246 +6382,106.36666666666666,1229,244 +6383,106.38333333333333,1188,243 +6384,106.39999999999999,1150,241 +6385,106.41666666666667,1112,238 +6386,106.43333333333334,1078,235 +6387,106.45,1046,232 +6388,106.46666666666667,1015,228 +6389,106.48333333333333,987,225 +6390,106.5,963,222 +6391,106.51666666666667,940,218 +6392,106.53333333333333,921,216 +6393,106.55,905,213 +6394,106.56666666666666,893,212 +6395,106.58333333333333,883,210 +6396,106.6,877,209 +6397,106.61666666666666,877,209 +6398,106.63333333333333,877,209 +6399,106.64999999999999,877,209 +6400,106.66666666666667,884,210 +6401,106.68333333333334,893,212 +6402,106.7,906,214 +6403,106.71666666666667,923,217 +6404,106.73333333333333,942,220 +6405,106.75,965,223 +6406,106.76666666666667,990,226 +6407,106.78333333333333,1018,230 +6408,106.8,1048,233 +6409,106.81666666666666,1081,236 +6410,106.83333333333333,1116,239 +6411,106.85,1153,242 +6412,106.86666666666666,1191,244 +6413,106.88333333333333,1232,246 +6414,106.89999999999999,1274,247 +6415,106.91666666666667,1317,247 +6416,106.93333333333334,1359,247 +6417,106.95,1403,247 +6418,106.96666666666667,1447,245 +6419,106.98333333333333,1492,243 +6420,107.0,1536,240 +6421,107.01666666666667,1579,236 +6422,107.03333333333333,1622,232 +6423,107.05,1663,227 +6424,107.06666666666666,1703,222 +6425,107.08333333333333,1742,216 +6426,107.1,1779,210 +6427,107.11666666666666,1813,205 +6428,107.13333333333333,1845,199 +6429,107.14999999999999,1875,193 +6430,107.16666666666667,1902,187 +6431,107.18333333333334,1926,182 +6432,107.2,1948,177 +6433,107.21666666666667,1966,173 +6434,107.23333333333333,1981,169 +6435,107.25,1993,166 +6436,107.26666666666667,2002,164 +6437,107.28333333333333,2007,162 +6438,107.3,2007,162 +6439,107.31666666666666,2007,162 +6440,107.33333333333333,2002,163 +6441,107.35,1994,165 +6442,107.36666666666666,1982,168 +6443,107.38333333333333,1967,171 +6444,107.39999999999999,1949,176 +6445,107.41666666666667,1928,180 +6446,107.43333333333334,1904,185 +6447,107.45,1877,191 +6448,107.46666666666667,1847,197 +6449,107.48333333333333,1815,203 +6450,107.5,1781,209 +6451,107.51666666666667,1744,214 +6452,107.53333333333333,1706,220 +6453,107.55,1666,225 +6454,107.56666666666666,1625,230 +6455,107.58333333333333,1582,234 +6456,107.6,1540,238 +6457,107.61666666666666,1495,241 +6458,107.63333333333333,1450,243 +6459,107.64999999999999,1406,245 +6460,107.66666666666667,1362,246 +6461,107.68333333333334,1319,246 +6462,107.7,1277,246 +6463,107.71666666666667,1235,245 +6464,107.73333333333333,1195,243 +6465,107.75,1156,241 +6466,107.76666666666667,1119,239 +6467,107.78333333333333,1084,236 +6468,107.8,1052,233 +6469,107.81666666666666,1021,229 +6470,107.83333333333333,993,226 +6471,107.85,968,223 +6472,107.86666666666666,946,220 +6473,107.88333333333333,927,217 +6474,107.89999999999999,910,215 +6475,107.91666666666667,897,213 +6476,107.93333333333334,887,211 +6477,107.95,880,210 +6478,107.96666666666667,879,210 +6479,107.98333333333333,879,210 +6480,108.0,879,210 +6481,108.01666666666667,886,211 +6482,108.03333333333333,895,213 +6483,108.05,908,215 +6484,108.06666666666666,924,217 +6485,108.08333333333333,942,220 +6486,108.1,964,223 +6487,108.11666666666666,989,227 +6488,108.13333333333333,1017,230 +6489,108.14999999999999,1047,233 +6490,108.16666666666667,1079,236 +6491,108.18333333333334,1114,239 +6492,108.2,1150,242 +6493,108.21666666666667,1189,244 +6494,108.23333333333333,1229,246 +6495,108.25,1271,247 +6496,108.26666666666667,1313,247 +6497,108.28333333333333,1356,247 +6498,108.3,1398,247 +6499,108.31666666666666,1442,245 +6500,108.33333333333333,1487,242 +6501,108.35,1531,240 +6502,108.36666666666666,1574,236 +6503,108.38333333333333,1617,232 +6504,108.39999999999999,1658,227 +6505,108.41666666666667,1698,222 +6506,108.43333333333334,1737,217 +6507,108.45,1774,211 +6508,108.46666666666667,1808,205 +6509,108.48333333333333,1841,199 +6510,108.5,1871,193 +6511,108.51666666666667,1898,187 +6512,108.53333333333333,1922,182 +6513,108.55,1944,177 +6514,108.56666666666666,1963,173 +6515,108.58333333333333,1978,169 +6516,108.6,1990,166 +6517,108.61666666666666,1999,164 +6518,108.63333333333333,2005,162 +6519,108.64999999999999,2005,162 +6520,108.66666666666667,2005,162 +6521,108.68333333333334,2001,163 +6522,108.7,1994,165 +6523,108.71666666666667,1982,168 +6524,108.73333333333333,1968,171 +6525,108.75,1950,175 +6526,108.76666666666667,1929,180 +6527,108.78333333333333,1906,185 +6528,108.8,1879,191 +6529,108.81666666666666,1850,196 +6530,108.83333333333333,1818,202 +6531,108.85,1784,208 +6532,108.86666666666666,1749,213 +6533,108.88333333333333,1711,219 +6534,108.89999999999999,1671,224 +6535,108.91666666666667,1630,229 +6536,108.93333333333334,1588,234 +6537,108.95,1545,238 +6538,108.96666666666667,1501,241 +6539,108.98333333333333,1456,243 +6540,109.0,1412,245 +6541,109.01666666666667,1368,246 +6542,109.03333333333333,1326,246 +6543,109.05,1283,246 +6544,109.06666666666666,1241,245 +6545,109.08333333333333,1200,243 +6546,109.1,1161,241 +6547,109.11666666666666,1124,239 +6548,109.13333333333333,1089,236 +6549,109.14999999999999,1056,233 +6550,109.16666666666667,1025,230 +6551,109.18333333333334,998,226 +6552,109.2,972,223 +6553,109.21666666666667,950,219 +6554,109.23333333333333,930,217 +6555,109.25,913,215 +6556,109.26666666666667,899,212 +6557,109.28333333333333,889,211 +6558,109.3,882,210 +6559,109.31666666666666,880,210 +6560,109.33333333333333,880,210 +6561,109.35,880,210 +6562,109.36666666666666,886,211 +6563,109.38333333333333,895,212 +6564,109.39999999999999,907,214 +6565,109.41666666666667,922,217 +6566,109.43333333333334,941,219 +6567,109.45,962,222 +6568,109.46666666666667,986,226 +6569,109.48333333333333,1014,229 +6570,109.5,1043,232 +6571,109.51666666666667,1075,235 +6572,109.53333333333333,1109,239 +6573,109.55,1145,241 +6574,109.56666666666666,1183,243 +6575,109.58333333333333,1223,245 +6576,109.6,1265,247 +6577,109.61666666666666,1306,247 +6578,109.63333333333333,1349,247 +6579,109.64999999999999,1393,247 +6580,109.66666666666667,1436,245 +6581,109.68333333333334,1481,243 +6582,109.7,1525,240 +6583,109.71666666666667,1568,237 +6584,109.73333333333333,1610,232 +6585,109.75,1652,228 +6586,109.76666666666667,1692,222 +6587,109.78333333333333,1731,217 +6588,109.8,1768,212 +6589,109.81666666666666,1803,206 +6590,109.83333333333333,1835,200 +6591,109.85,1865,194 +6592,109.86666666666666,1893,188 +6593,109.88333333333333,1918,183 +6594,109.89999999999999,1940,178 +6595,109.91666666666667,1959,174 +6596,109.93333333333334,1975,170 +6597,109.95,1987,167 +6598,109.96666666666667,1996,165 +6599,109.98333333333333,2002,163 +6600,110.0,2002,163 +6601,110.01666666666667,2002,163 +6602,110.03333333333333,2000,164 +6603,110.05,1993,165 +6604,110.06666666666666,1982,168 +6605,110.08333333333333,1968,171 +6606,110.1,1950,175 +6607,110.11666666666666,1930,180 +6608,110.13333333333333,1907,185 +6609,110.14999999999999,1881,190 +6610,110.16666666666667,1852,196 +6611,110.18333333333334,1821,202 +6612,110.2,1787,208 +6613,110.21666666666667,1751,213 +6614,110.23333333333333,1714,219 +6615,110.25,1675,224 +6616,110.26666666666667,1634,229 +6617,110.28333333333333,1591,233 +6618,110.3,1549,237 +6619,110.31666666666666,1505,240 +6620,110.33333333333333,1461,243 +6621,110.35,1416,245 +6622,110.36666666666666,1372,246 +6623,110.38333333333333,1331,246 +6624,110.39999999999999,1288,246 +6625,110.41666666666667,1246,245 +6626,110.43333333333334,1206,244 +6627,110.45,1167,242 +6628,110.46666666666667,1130,239 +6629,110.48333333333333,1095,237 +6630,110.5,1062,234 +6631,110.51666666666667,1031,231 +6632,110.53333333333333,1002,227 +6633,110.55,977,224 +6634,110.56666666666666,954,221 +6635,110.58333333333333,934,218 +6636,110.6,917,216 +6637,110.61666666666666,903,213 +6638,110.63333333333333,892,211 +6639,110.64999999999999,885,210 +6640,110.66666666666667,882,210 +6641,110.68333333333334,882,210 +6642,110.7,882,210 +6643,110.71666666666667,887,211 +6644,110.73333333333333,896,212 +6645,110.75,908,214 +6646,110.76666666666667,923,217 +6647,110.78333333333333,941,220 +6648,110.8,962,223 +6649,110.81666666666666,985,226 +6650,110.83333333333333,1012,229 +6651,110.85,1041,233 +6652,110.86666666666666,1073,236 +6653,110.88333333333333,1107,239 +6654,110.89999999999999,1142,242 +6655,110.91666666666667,1180,244 +6656,110.93333333333334,1220,246 +6657,110.95,1261,248 +6658,110.96666666666667,1302,248 +6659,110.98333333333333,1344,248 +6660,111.0,1387,248 +6661,111.01666666666667,1431,245 +6662,111.03333333333333,1476,244 +6663,111.05,1519,241 +6664,111.06666666666666,1562,238 +6665,111.08333333333333,1605,234 +6666,111.1,1646,229 +6667,111.11666666666666,1686,224 +6668,111.13333333333333,1725,219 +6669,111.14999999999999,1762,213 +6670,111.16666666666667,1797,207 +6671,111.18333333333334,1830,201 +6672,111.2,1860,196 +6673,111.21666666666667,1888,190 +6674,111.23333333333333,1913,184 +6675,111.25,1935,179 +6676,111.26666666666667,1954,175 +6677,111.28333333333333,1970,172 +6678,111.3,1983,168 +6679,111.31666666666666,1993,166 +6680,111.33333333333333,1999,164 +6681,111.35,1999,164 +6682,111.36666666666666,1999,164 +6683,111.38333333333333,1998,164 +6684,111.39999999999999,1991,166 +6685,111.41666666666667,1980,169 +6686,111.43333333333334,1967,172 +6687,111.45,1950,176 +6688,111.46666666666667,1930,180 +6689,111.48333333333333,1908,185 +6690,111.5,1882,190 +6691,111.51666666666667,1854,196 +6692,111.53333333333333,1823,202 +6693,111.55,1790,207 +6694,111.56666666666666,1754,213 +6695,111.58333333333333,1718,218 +6696,111.6,1679,223 +6697,111.61666666666666,1638,228 +6698,111.63333333333333,1597,233 +6699,111.64999999999999,1554,237 +6700,111.66666666666667,1511,241 +6701,111.68333333333334,1467,243 +6702,111.7,1422,244 +6703,111.71666666666667,1379,246 +6704,111.73333333333333,1337,246 +6705,111.75,1294,246 +6706,111.76666666666667,1253,246 +6707,111.78333333333333,1212,244 +6708,111.8,1173,242 +6709,111.81666666666666,1136,240 +6710,111.83333333333333,1101,237 +6711,111.85,1067,234 +6712,111.86666666666666,1036,231 +6713,111.88333333333333,1008,228 +6714,111.89999999999999,982,225 +6715,111.91666666666667,959,222 +6716,111.93333333333334,939,220 +6717,111.95,921,217 +6718,111.96666666666667,907,215 +6719,111.98333333333333,896,213 +6720,112.0,888,212 +6721,112.01666666666667,884,211 +6722,112.03333333333333,884,211 +6723,112.05,884,211 +6724,112.06666666666666,889,212 +6725,112.08333333333333,897,213 +6726,112.1,908,215 +6727,112.11666666666666,923,218 +6728,112.13333333333333,941,220 +6729,112.14999999999999,961,223 +6730,112.16666666666667,985,226 +6731,112.18333333333334,1011,229 +6732,112.2,1039,233 +6733,112.21666666666667,1071,236 +6734,112.23333333333333,1104,238 +6735,112.25,1140,241 +6736,112.26666666666667,1177,243 +6737,112.28333333333333,1216,245 +6738,112.3,1257,247 +6739,112.31666666666666,1298,247 +6740,112.33333333333333,1341,247 +6741,112.35,1383,247 +6742,112.36666666666666,1426,245 +6743,112.38333333333333,1471,244 +6744,112.39999999999999,1514,241 +6745,112.41666666666667,1557,238 +6746,112.43333333333334,1600,234 +6747,112.45,1641,229 +6748,112.46666666666667,1682,224 +6749,112.48333333333333,1720,219 +6750,112.5,1757,213 +6751,112.51666666666667,1793,207 +6752,112.53333333333333,1825,202 +6753,112.55,1856,196 +6754,112.56666666666666,1883,191 +6755,112.58333333333333,1909,185 +6756,112.6,1931,180 +6757,112.61666666666666,1950,176 +6758,112.63333333333333,1967,172 +6759,112.64999999999999,1980,169 +6760,112.66666666666667,1990,166 +6761,112.68333333333334,1997,165 +6762,112.7,1997,164 +6763,112.71666666666667,1997,164 +6764,112.73333333333333,1997,164 +6765,112.75,1990,166 +6766,112.76666666666667,1980,168 +6767,112.78333333333333,1967,172 +6768,112.8,1951,175 +6769,112.81666666666666,1932,180 +6770,112.83333333333333,1910,185 +6771,112.85,1884,190 +6772,112.86666666666666,1856,195 +6773,112.88333333333333,1826,201 +6774,112.89999999999999,1793,207 +6775,112.91666666666667,1758,213 +6776,112.93333333333334,1721,218 +6777,112.95,1683,223 +6778,112.96666666666667,1643,228 +6779,112.98333333333333,1601,233 +6780,113.0,1559,237 +6781,113.01666666666667,1516,240 +6782,113.03333333333333,1473,243 +6783,113.05,1428,245 +6784,113.06666666666666,1385,246 +6785,113.08333333333333,1343,247 +6786,113.1,1300,247 +6787,113.11666666666666,1259,247 +6788,113.13333333333333,1218,245 +6789,113.14999999999999,1179,244 +6790,113.16666666666667,1142,242 +6791,113.18333333333334,1106,239 +6792,113.2,1073,236 +6793,113.21666666666667,1042,233 +6794,113.23333333333333,1013,229 +6795,113.25,986,226 +6796,113.26666666666667,963,223 +6797,113.28333333333333,942,220 +6798,113.3,925,218 +6799,113.31666666666666,910,215 +6800,113.33333333333333,899,213 +6801,113.35,890,212 +6802,113.36666666666666,886,212 +6803,113.38333333333333,886,212 +6804,113.39999999999999,886,212 +6805,113.41666666666667,890,212 +6806,113.43333333333334,897,214 +6807,113.45,908,215 +6808,113.46666666666667,922,218 +6809,113.48333333333333,940,220 +6810,113.5,960,223 +6811,113.51666666666667,983,226 +6812,113.53333333333333,1009,229 +6813,113.55,1037,233 +6814,113.56666666666666,1068,236 +6815,113.58333333333333,1101,239 +6816,113.6,1136,242 +6817,113.61666666666666,1173,244 +6818,113.63333333333333,1212,246 +6819,113.64999999999999,1253,248 +6820,113.66666666666667,1294,248 +6821,113.68333333333334,1336,248 +6822,113.7,1378,248 +6823,113.71666666666667,1421,247 +6824,113.73333333333333,1465,245 +6825,113.75,1509,242 +6826,113.76666666666667,1552,239 +6827,113.78333333333333,1595,235 +6828,113.8,1636,230 +6829,113.81666666666666,1676,226 +6830,113.83333333333333,1715,220 +6831,113.85,1752,214 +6832,113.86666666666666,1787,209 +6833,113.88333333333333,1820,203 +6834,113.89999999999999,1851,197 +6835,113.91666666666667,1879,191 +6836,113.93333333333334,1905,186 +6837,113.95,1927,181 +6838,113.96666666666667,1947,176 +6839,113.98333333333333,1964,172 +6840,114.0,1977,169 +6841,114.01666666666667,1988,166 +6842,114.03333333333333,1995,165 +6843,114.05,1996,165 +6844,114.06666666666666,1996,165 +6845,114.08333333333333,1996,165 +6846,114.1,1990,166 +6847,114.11666666666666,1980,168 +6848,114.13333333333333,1968,171 +6849,114.14999999999999,1952,175 +6850,114.16666666666667,1933,179 +6851,114.18333333333334,1911,184 +6852,114.2,1886,189 +6853,114.21666666666667,1859,195 +6854,114.23333333333333,1829,200 +6855,114.25,1797,207 +6856,114.26666666666667,1762,212 +6857,114.28333333333333,1725,218 +6858,114.3,1687,223 +6859,114.31666666666666,1647,228 +6860,114.33333333333333,1606,232 +6861,114.35,1564,237 +6862,114.36666666666666,1521,240 +6863,114.38333333333333,1478,243 +6864,114.39999999999999,1434,245 +6865,114.41666666666667,1390,247 +6866,114.43333333333334,1348,247 +6867,114.45,1305,247 +6868,114.46666666666667,1265,247 +6869,114.48333333333333,1223,245 +6870,114.5,1184,243 +6871,114.51666666666667,1147,241 +6872,114.53333333333333,1111,239 +6873,114.55,1078,236 +6874,114.56666666666666,1046,233 +6875,114.58333333333333,1017,230 +6876,114.6,991,227 +6877,114.61666666666666,967,224 +6878,114.63333333333333,946,221 +6879,114.64999999999999,928,218 +6880,114.66666666666667,913,216 +6881,114.68333333333334,901,214 +6882,114.7,893,213 +6883,114.71666666666667,887,212 +6884,114.73333333333333,887,212 +6885,114.75,887,212 +6886,114.76666666666667,890,212 +6887,114.78333333333333,898,214 +6888,114.8,908,216 +6889,114.81666666666666,922,218 +6890,114.83333333333333,939,220 +6891,114.85,959,223 +6892,114.86666666666666,981,226 +6893,114.88333333333333,1007,229 +6894,114.89999999999999,1034,232 +6895,114.91666666666667,1065,235 +6896,114.93333333333334,1098,239 +6897,114.95,1133,241 +6898,114.96666666666667,1169,244 +6899,114.98333333333333,1208,246 +6900,115.0,1248,247 +6901,115.01666666666667,1289,248 +6902,115.03333333333333,1332,248 +6903,115.05,1373,248 +6904,115.06666666666666,1416,247 +6905,115.08333333333333,1460,245 +6906,115.1,1504,242 +6907,115.11666666666666,1546,239 +6908,115.13333333333333,1589,235 +6909,115.14999999999999,1630,230 +6910,115.16666666666667,1671,226 +6911,115.18333333333334,1709,221 +6912,115.2,1747,215 +6913,115.21666666666667,1782,209 +6914,115.23333333333333,1815,204 +6915,115.25,1846,198 +6916,115.26666666666667,1875,193 +6917,115.28333333333333,1900,187 +6918,115.3,1923,182 +6919,115.31666666666666,1943,177 +6920,115.33333333333333,1960,173 +6921,115.35,1974,170 +6922,115.36666666666666,1985,167 +6923,115.38333333333333,1993,166 +6924,115.39999999999999,1995,165 +6925,115.41666666666667,1995,165 +6926,115.43333333333334,1995,165 +6927,115.45,1989,166 +6928,115.46666666666667,1980,169 +6929,115.48333333333333,1968,171 +6930,115.5,1952,175 +6931,115.51666666666667,1934,179 +6932,115.53333333333333,1912,184 +6933,115.55,1888,189 +6934,115.56666666666666,1861,194 +6935,115.58333333333333,1831,200 +6936,115.6,1799,206 +6937,115.61666666666666,1765,211 +6938,115.63333333333333,1728,217 +6939,115.64999999999999,1691,223 +6940,115.66666666666667,1651,228 +6941,115.68333333333334,1610,232 +6942,115.7,1568,236 +6943,115.71666666666667,1525,240 +6944,115.73333333333333,1482,243 +6945,115.75,1438,245 +6946,115.76666666666667,1395,247 +6947,115.78333333333333,1353,247 +6948,115.8,1311,247 +6949,115.81666666666666,1269,247 +6950,115.83333333333333,1228,246 +6951,115.85,1189,244 +6952,115.86666666666666,1152,242 +6953,115.88333333333333,1116,240 +6954,115.89999999999999,1082,237 +6955,115.91666666666667,1051,234 +6956,115.93333333333334,1022,231 +6957,115.95,995,227 +6958,115.96666666666667,971,224 +6959,115.98333333333333,950,221 +6960,116.0,932,219 +6961,116.01666666666667,917,217 +6962,116.03333333333333,905,215 +6963,116.05,896,213 +6964,116.06666666666666,890,212 +6965,116.08333333333333,890,212 +6966,116.1,890,212 +6967,116.11666666666666,892,213 +6968,116.13333333333333,899,214 +6969,116.14999999999999,909,216 +6970,116.16666666666667,922,218 +6971,116.18333333333334,939,220 +6972,116.2,958,223 +6973,116.21666666666667,980,226 +6974,116.23333333333333,1006,229 +6975,116.25,1033,233 +6976,116.26666666666667,1063,236 +6977,116.28333333333333,1095,239 +6978,116.3,1130,242 +6979,116.31666666666666,1166,244 +6980,116.33333333333333,1204,245 +6981,116.35,1244,247 +6982,116.36666666666666,1285,248 +6983,116.38333333333333,1327,248 +6984,116.39999999999999,1368,248 +6985,116.41666666666667,1411,247 +6986,116.43333333333334,1454,245 +6987,116.45,1498,242 +6988,116.46666666666667,1541,240 +6989,116.48333333333333,1584,236 +6990,116.5,1625,231 +6991,116.51666666666667,1665,226 +6992,116.53333333333333,1704,221 +6993,116.55,1741,216 +6994,116.56666666666666,1777,210 +6995,116.58333333333333,1810,204 +6996,116.6,1841,198 +6997,116.61666666666666,1870,193 +6998,116.63333333333333,1896,187 +6999,116.64999999999999,1919,182 +7000,116.66666666666667,1940,178 +7001,116.68333333333334,1957,174 +7002,116.7,1971,171 +7003,116.71666666666667,1982,168 +7004,116.73333333333333,1990,166 +7005,116.75,1994,165 +7006,116.76666666666667,1994,165 +7007,116.78333333333333,1994,165 +7008,116.8,1988,166 +7009,116.81666666666666,1979,168 +7010,116.83333333333333,1968,171 +7011,116.85,1953,175 +7012,116.86666666666666,1934,179 +7013,116.88333333333333,1913,183 +7014,116.89999999999999,1889,189 +7015,116.91666666666667,1862,194 +7016,116.93333333333334,1833,200 +7017,116.95,1801,205 +7018,116.96666666666667,1768,211 +7019,116.98333333333333,1732,217 +7020,117.0,1694,222 +7021,117.01666666666667,1655,227 +7022,117.03333333333333,1614,232 +7023,117.05,1573,236 +7024,117.06666666666666,1530,239 +7025,117.08333333333333,1487,242 +7026,117.1,1443,245 +7027,117.11666666666666,1400,247 +7028,117.13333333333333,1358,247 +7029,117.14999999999999,1316,247 +7030,117.16666666666667,1275,247 +7031,117.18333333333334,1234,246 +7032,117.2,1195,245 +7033,117.21666666666667,1158,243 +7034,117.23333333333333,1122,241 +7035,117.25,1088,238 +7036,117.26666666666667,1056,235 +7037,117.28333333333333,1027,232 +7038,117.3,1000,229 +7039,117.31666666666666,976,226 +7040,117.33333333333333,954,223 +7041,117.35,936,220 +7042,117.36666666666666,920,218 +7043,117.38333333333333,908,216 +7044,117.39999999999999,899,215 +7045,117.41666666666667,893,213 +7046,117.43333333333334,893,213 +7047,117.45,893,213 +7048,117.46666666666667,893,213 +7049,117.48333333333333,900,215 +7050,117.5,910,216 +7051,117.51666666666667,923,218 +7052,117.53333333333333,939,221 +7053,117.55,958,223 +7054,117.56666666666666,980,226 +7055,117.58333333333333,1004,229 +7056,117.6,1031,233 +7057,117.61666666666666,1061,235 +7058,117.63333333333333,1093,238 +7059,117.64999999999999,1127,241 +7060,117.66666666666667,1163,244 +7061,117.68333333333334,1201,246 +7062,117.7,1240,247 +7063,117.71666666666667,1280,248 +7064,117.73333333333333,1322,248 +7065,117.75,1364,248 +7066,117.76666666666667,1406,247 +7067,117.78333333333333,1449,245 +7068,117.8,1493,243 +7069,117.81666666666666,1536,239 +7070,117.83333333333333,1578,236 +7071,117.85,1620,232 +7072,117.86666666666666,1660,227 +7073,117.88333333333333,1699,222 +7074,117.89999999999999,1736,216 +7075,117.91666666666667,1772,211 +7076,117.93333333333334,1805,205 +7077,117.95,1837,200 +7078,117.96666666666667,1865,194 +7079,117.98333333333333,1891,189 +7080,118.0,1915,184 +7081,118.01666666666667,1936,179 +7082,118.03333333333333,1953,175 +7083,118.05,1968,172 +7084,118.06666666666666,1979,169 +7085,118.08333333333333,1987,167 +7086,118.1,1992,166 +7087,118.11666666666666,1992,166 +7088,118.13333333333333,1992,166 +7089,118.14999999999999,1987,167 +7090,118.16666666666667,1979,169 +7091,118.18333333333334,1967,172 +7092,118.2,1952,175 +7093,118.21666666666667,1935,179 +7094,118.23333333333333,1914,184 +7095,118.25,1890,189 +7096,118.26666666666667,1864,194 +7097,118.28333333333333,1835,200 +7098,118.3,1804,205 +7099,118.31666666666666,1770,211 +7100,118.33333333333333,1735,216 +7101,118.35,1697,222 +7102,118.36666666666666,1659,227 +7103,118.38333333333333,1618,232 +7104,118.39999999999999,1577,235 +7105,118.41666666666667,1534,239 +7106,118.43333333333334,1492,242 +7107,118.45,1448,245 +7108,118.46666666666667,1405,247 +7109,118.48333333333333,1363,248 +7110,118.5,1321,248 +7111,118.51666666666667,1280,248 +7112,118.53333333333333,1239,247 +7113,118.55,1200,245 +7114,118.56666666666666,1162,243 +7115,118.58333333333333,1126,241 +7116,118.6,1093,238 +7117,118.61666666666666,1061,235 +7118,118.63333333333333,1031,232 +7119,118.64999999999999,1004,229 +7120,118.66666666666667,980,226 +7121,118.68333333333334,958,223 +7122,118.7,940,220 +7123,118.71666666666667,924,218 +7124,118.73333333333333,911,216 +7125,118.75,901,215 +7126,118.76666666666667,895,213 +7127,118.78333333333333,895,213 +7128,118.8,895,213 +7129,118.81666666666666,895,213 +7130,118.83333333333333,901,215 +7131,118.85,910,216 +7132,118.86666666666666,923,218 +7133,118.88333333333333,938,220 +7134,118.89999999999999,957,222 +7135,118.91666666666667,978,225 +7136,118.93333333333334,1002,228 +7137,118.95,1029,232 +7138,118.96666666666667,1058,235 +7139,118.98333333333333,1090,238 +7140,119.0,1124,241 +7141,119.01666666666667,1160,243 +7142,119.03333333333333,1197,245 +7143,119.05,1237,247 +7144,119.06666666666666,1277,247 +7145,119.08333333333333,1318,247 +7146,119.1,1360,247 +7147,119.11666666666666,1402,247 +7148,119.13333333333333,1445,245 +7149,119.14999999999999,1488,243 +7150,119.16666666666667,1531,240 +7151,119.18333333333334,1573,236 +7152,119.2,1614,232 +7153,119.21666666666667,1655,227 +7154,119.23333333333333,1694,222 +7155,119.25,1731,217 +7156,119.26666666666667,1767,211 +7157,119.28333333333333,1800,206 +7158,119.3,1832,200 +7159,119.31666666666666,1861,195 +7160,119.33333333333333,1887,189 +7161,119.35,1911,184 +7162,119.36666666666666,1932,180 +7163,119.38333333333333,1950,175 +7164,119.39999999999999,1965,172 +7165,119.41666666666667,1976,169 +7166,119.43333333333334,1985,167 +7167,119.45,1990,166 +7168,119.46666666666667,1990,166 +7169,119.48333333333333,1990,166 +7170,119.5,1986,167 +7171,119.51666666666667,1978,169 +7172,119.53333333333333,1967,171 +7173,119.55,1952,175 +7174,119.56666666666666,1935,179 +7175,119.58333333333333,1915,183 +7176,119.6,1892,188 +7177,119.61666666666666,1865,193 +7178,119.63333333333333,1837,199 +7179,119.64999999999999,1806,205 +7180,119.66666666666667,1773,210 +7181,119.68333333333334,1738,216 +7182,119.7,1701,221 +7183,119.71666666666667,1662,226 +7184,119.73333333333333,1622,231 +7185,119.75,1581,235 +7186,119.76666666666667,1539,239 +7187,119.78333333333333,1496,242 +7188,119.8,1453,244 +7189,119.81666666666666,1410,246 +7190,119.83333333333333,1368,247 +7191,119.85,1326,247 +7192,119.86666666666666,1285,247 +7193,119.88333333333333,1244,246 +7194,119.89999999999999,1205,245 +7195,119.91666666666667,1167,243 +7196,119.93333333333334,1131,241 +7197,119.95,1097,238 +7198,119.96666666666667,1065,235 +7199,119.98333333333333,1036,232 +7200,120.0,1009,229 +7201,120.01666666666667,984,226 +7202,120.03333333333333,962,223 +7203,120.05,943,221 +7204,120.06666666666666,927,219 +7205,120.08333333333333,914,217 +7206,120.1,904,215 +7207,120.11666666666666,897,214 +7208,120.13333333333333,896,214 +7209,120.14999999999999,896,214 +7210,120.16666666666667,896,214 +7211,120.18333333333334,901,215 +7212,120.2,911,216 +7213,120.21666666666667,923,218 +7214,120.23333333333333,938,220 +7215,120.25,956,223 +7216,120.26666666666667,977,226 +7217,120.28333333333333,1001,229 +7218,120.3,1027,232 +7219,120.31666666666666,1056,235 +7220,120.33333333333333,1087,238 +7221,120.35,1121,240 +7222,120.36666666666666,1156,243 +7223,120.38333333333333,1193,245 +7224,120.39999999999999,1232,247 +7225,120.41666666666667,1273,248 +7226,120.43333333333334,1314,248 +7227,120.45,1355,248 +7228,120.46666666666667,1397,248 +7229,120.48333333333333,1439,246 +7230,120.5,1483,243 +7231,120.51666666666667,1525,240 +7232,120.53333333333333,1567,237 +7233,120.55,1609,233 +7234,120.56666666666666,1649,228 +7235,120.58333333333333,1688,223 +7236,120.6,1726,218 +7237,120.61666666666666,1762,213 +7238,120.63333333333333,1795,207 +7239,120.64999999999999,1826,201 +7240,120.66666666666667,1856,196 +7241,120.68333333333334,1882,190 +7242,120.7,1907,185 +7243,120.71666666666667,1927,181 +7244,120.73333333333333,1945,177 +7245,120.75,1961,173 +7246,120.76666666666667,1973,170 +7247,120.78333333333333,1981,168 +7248,120.8,1987,167 +7249,120.81666666666666,1987,167 +7250,120.83333333333333,1987,167 +7251,120.85,1984,167 +7252,120.86666666666666,1977,169 +7253,120.88333333333333,1966,172 +7254,120.89999999999999,1952,175 +7255,120.91666666666667,1935,179 +7256,120.93333333333334,1915,183 +7257,120.95,1892,188 +7258,120.96666666666667,1866,193 +7259,120.98333333333333,1839,199 +7260,121.0,1808,204 +7261,121.01666666666667,1775,210 +7262,121.03333333333333,1740,215 +7263,121.05,1704,221 +7264,121.06666666666666,1665,226 +7265,121.08333333333333,1626,230 +7266,121.1,1585,235 +7267,121.11666666666666,1543,239 +7268,121.13333333333333,1501,242 +7269,121.14999999999999,1458,244 +7270,121.16666666666667,1415,246 +7271,121.18333333333334,1372,247 +7272,121.2,1332,247 +7273,121.21666666666667,1289,247 +7274,121.23333333333333,1249,247 +7275,121.25,1210,245 +7276,121.26666666666667,1172,243 +7277,121.28333333333333,1136,241 +7278,121.3,1102,239 +7279,121.31666666666666,1070,236 +7280,121.33333333333333,1040,233 +7281,121.35,1013,230 +7282,121.36666666666666,988,227 +7283,121.38333333333333,966,224 +7284,121.39999999999999,946,221 +7285,121.41666666666667,930,219 +7286,121.43333333333334,917,217 +7287,121.45,906,215 +7288,121.46666666666667,899,215 +7289,121.48333333333333,897,214 +7290,121.5,897,214 +7291,121.51666666666667,897,214 +7292,121.53333333333333,902,215 +7293,121.55,911,216 +7294,121.56666666666666,923,218 +7295,121.58333333333333,938,220 +7296,121.6,955,223 +7297,121.61666666666666,976,226 +7298,121.63333333333333,1000,229 +7299,121.64999999999999,1025,231 +7300,121.66666666666667,1054,234 +7301,121.68333333333334,1085,238 +7302,121.7,1118,240 +7303,121.71666666666667,1153,242 +7304,121.73333333333333,1190,245 +7305,121.75,1228,246 +7306,121.76666666666667,1269,248 +7307,121.78333333333333,1309,248 +7308,121.8,1350,248 +7309,121.81666666666666,1392,247 +7310,121.83333333333333,1434,245 +7311,121.85,1478,243 +7312,121.86666666666666,1521,241 +7313,121.88333333333333,1563,238 +7314,121.89999999999999,1604,233 +7315,121.91666666666667,1644,229 +7316,121.93333333333334,1684,224 +7317,121.95,1721,218 +7318,121.96666666666667,1757,213 +7319,121.98333333333333,1791,208 +7320,122.0,1822,202 +7321,122.01666666666667,1851,196 +7322,122.03333333333333,1878,191 +7323,122.05,1903,186 +7324,122.06666666666666,1924,181 +7325,122.08333333333333,1942,177 +7326,122.1,1958,174 +7327,122.11666666666666,1970,171 +7328,122.13333333333333,1979,169 +7329,122.14999999999999,1985,167 +7330,122.16666666666667,1985,167 +7331,122.18333333333334,1985,167 +7332,122.2,1983,168 +7333,122.21666666666667,1976,169 +7334,122.23333333333333,1966,172 +7335,122.25,1952,175 +7336,122.26666666666667,1936,179 +7337,122.28333333333333,1916,183 +7338,122.3,1894,188 +7339,122.31666666666666,1868,193 +7340,122.33333333333333,1841,198 +7341,122.35,1810,204 +7342,122.36666666666666,1778,209 +7343,122.38333333333333,1744,215 +7344,122.39999999999999,1707,220 +7345,122.41666666666667,1669,225 +7346,122.43333333333334,1630,230 +7347,122.45,1589,234 +7348,122.46666666666667,1547,238 +7349,122.48333333333333,1505,241 +7350,122.5,1463,244 +7351,122.51666666666667,1419,246 +7352,122.53333333333333,1377,247 +7353,122.55,1336,247 +7354,122.56666666666666,1295,247 +7355,122.58333333333333,1254,247 +7356,122.6,1215,246 +7357,122.61666666666666,1177,243 +7358,122.63333333333333,1141,241 +7359,122.64999999999999,1107,239 +7360,122.66666666666667,1075,236 +7361,122.68333333333334,1045,233 +7362,122.7,1017,230 +7363,122.71666666666667,992,227 +7364,122.73333333333333,970,224 +7365,122.75,950,222 +7366,122.76666666666667,934,220 +7367,122.78333333333333,920,218 +7368,122.8,910,216 +7369,122.81666666666666,902,215 +7370,122.83333333333333,899,214 +7371,122.85,899,214 +7372,122.86666666666666,899,214 +7373,122.88333333333333,904,215 +7374,122.89999999999999,912,216 +7375,122.91666666666667,923,218 +7376,122.93333333333334,938,221 +7377,122.95,955,223 +7378,122.96666666666667,976,226 +7379,122.98333333333333,999,229 +7380,123.0,1024,232 +7381,123.01666666666667,1052,235 +7382,123.03333333333333,1083,237 +7383,123.05,1115,240 +7384,123.06666666666666,1150,242 +7385,123.08333333333333,1187,245 +7386,123.1,1225,246 +7387,123.11666666666666,1265,248 +7388,123.13333333333333,1305,248 +7389,123.14999999999999,1346,248 +7390,123.16666666666667,1388,247 +7391,123.18333333333334,1430,246 +7392,123.2,1473,244 +7393,123.21666666666667,1516,241 +7394,123.23333333333333,1558,238 +7395,123.25,1599,233 +7396,123.26666666666667,1639,229 +7397,123.28333333333333,1678,224 +7398,123.3,1716,219 +7399,123.31666666666666,1752,214 +7400,123.33333333333333,1786,208 +7401,123.35,1818,202 +7402,123.36666666666666,1847,197 +7403,123.38333333333333,1874,192 +7404,123.39999999999999,1899,187 +7405,123.41666666666667,1920,182 +7406,123.43333333333334,1939,178 +7407,123.45,1955,174 +7408,123.46666666666667,1967,171 +7409,123.48333333333333,1977,169 +7410,123.5,1983,168 +7411,123.51666666666667,1983,168 +7412,123.53333333333333,1983,168 +7413,123.55,1982,168 +7414,123.56666666666666,1975,170 +7415,123.58333333333333,1965,172 +7416,123.6,1952,175 +7417,123.61666666666666,1936,179 +7418,123.63333333333333,1917,183 +7419,123.64999999999999,1895,187 +7420,123.66666666666667,1870,193 +7421,123.68333333333334,1843,198 +7422,123.7,1813,203 +7423,123.71666666666667,1781,209 +7424,123.73333333333333,1746,214 +7425,123.75,1710,220 +7426,123.76666666666667,1672,225 +7427,123.78333333333333,1633,230 +7428,123.8,1593,234 +7429,123.81666666666666,1552,238 +7430,123.83333333333333,1510,241 +7431,123.85,1467,244 +7432,123.86666666666666,1424,246 +7433,123.88333333333333,1382,247 +7434,123.89999999999999,1341,247 +7435,123.91666666666667,1300,247 +7436,123.93333333333334,1260,247 +7437,123.95,1220,246 +7438,123.96666666666667,1182,245 +7439,123.98333333333333,1146,242 +7440,124.0,1112,240 +7441,124.01666666666667,1079,237 +7442,124.03333333333333,1049,234 +7443,124.05,1022,231 +7444,124.06666666666666,997,228 +7445,124.08333333333333,974,226 +7446,124.1,954,223 +7447,124.11666666666666,937,220 +7448,124.13333333333333,923,218 +7449,124.14999999999999,912,217 +7450,124.16666666666667,904,216 +7451,124.18333333333334,900,215 +7452,124.2,900,215 +7453,124.21666666666667,900,215 +7454,124.23333333333333,905,216 +7455,124.25,913,217 +7456,124.26666666666667,924,218 +7457,124.28333333333333,938,220 +7458,124.3,955,223 +7459,124.31666666666666,975,226 +7460,124.33333333333333,998,228 +7461,124.35,1023,231 +7462,124.36666666666666,1051,234 +7463,124.38333333333333,1081,237 +7464,124.39999999999999,1113,240 +7465,124.41666666666667,1147,242 +7466,124.43333333333334,1184,245 +7467,124.45,1222,246 +7468,124.46666666666667,1262,247 +7469,124.48333333333333,1302,248 +7470,124.5,1342,248 +7471,124.51666666666667,1384,248 +7472,124.53333333333333,1425,245 +7473,124.55,1469,244 +7474,124.56666666666666,1511,241 +7475,124.58333333333333,1553,238 +7476,124.6,1594,234 +7477,124.61666666666666,1634,230 +7478,124.63333333333333,1673,225 +7479,124.64999999999999,1711,220 +7480,124.66666666666667,1747,215 +7481,124.68333333333334,1781,209 +7482,124.7,1813,204 +7483,124.71666666666667,1843,198 +7484,124.73333333333333,1870,193 +7485,124.75,1894,188 +7486,124.76666666666667,1916,183 +7487,124.78333333333333,1936,179 +7488,124.8,1951,175 +7489,124.81666666666666,1964,172 +7490,124.83333333333333,1974,170 +7491,124.85,1981,168 +7492,124.86666666666666,1981,168 +7493,124.88333333333333,1981,168 +7494,124.89999999999999,1981,168 +7495,124.91666666666667,1975,170 +7496,124.93333333333334,1965,172 +7497,124.95,1952,175 +7498,124.96666666666667,1937,179 +7499,124.98333333333333,1918,183 +7500,125.0,1896,188 +7501,125.01666666666667,1872,193 +7502,125.03333333333333,1845,198 +7503,125.05,1815,204 +7504,125.06666666666666,1783,209 +7505,125.08333333333333,1749,215 +7506,125.1,1713,220 +7507,125.11666666666666,1676,225 +7508,125.13333333333333,1637,230 +7509,125.14999999999999,1597,234 +7510,125.16666666666667,1556,238 +7511,125.18333333333334,1514,241 +7512,125.2,1472,244 +7513,125.21666666666667,1429,246 +7514,125.23333333333333,1387,248 +7515,125.25,1346,248 +7516,125.26666666666667,1304,248 +7517,125.28333333333333,1264,248 +7518,125.3,1225,246 +7519,125.31666666666666,1187,244 +7520,125.33333333333333,1150,242 +7521,125.35,1116,240 +7522,125.36666666666666,1084,238 +7523,125.38333333333333,1054,235 +7524,125.39999999999999,1026,232 +7525,125.41666666666667,1000,229 +7526,125.43333333333334,977,226 +7527,125.45,958,224 +7528,125.46666666666667,940,221 +7529,125.48333333333333,926,219 +7530,125.5,915,217 +7531,125.51666666666667,907,216 +7532,125.53333333333333,902,215 +7533,125.55,902,215 +7534,125.56666666666666,902,215 +7535,125.58333333333333,906,215 +7536,125.6,914,217 +7537,125.61666666666666,924,218 +7538,125.63333333333333,938,220 +7539,125.64999999999999,954,222 +7540,125.66666666666667,974,225 +7541,125.68333333333334,996,228 +7542,125.7,1021,231 +7543,125.71666666666667,1048,234 +7544,125.73333333333333,1078,237 +7545,125.75,1111,239 +7546,125.76666666666667,1145,242 +7547,125.78333333333333,1180,244 +7548,125.8,1218,246 +7549,125.81666666666666,1258,247 +7550,125.83333333333333,1297,247 +7551,125.85,1338,247 +7552,125.86666666666666,1379,247 +7553,125.88333333333333,1421,246 +7554,125.89999999999999,1464,244 +7555,125.91666666666667,1507,241 +7556,125.93333333333334,1548,238 +7557,125.95,1589,234 +7558,125.96666666666667,1630,230 +7559,125.98333333333333,1669,225 +7560,126.0,1707,220 +7561,126.01666666666667,1743,215 +7562,126.03333333333333,1777,210 +7563,126.05,1809,204 +7564,126.06666666666666,1839,199 +7565,126.08333333333333,1866,193 +7566,126.1,1891,188 +7567,126.11666666666666,1913,184 +7568,126.13333333333333,1932,179 +7569,126.14999999999999,1948,176 +7570,126.16666666666667,1961,173 +7571,126.18333333333334,1972,170 +7572,126.2,1979,169 +7573,126.21666666666667,1980,169 +7574,126.23333333333333,1980,169 +7575,126.25,1980,169 +7576,126.26666666666667,1974,170 +7577,126.28333333333333,1965,172 +7578,126.3,1952,175 +7579,126.31666666666666,1937,179 +7580,126.33333333333333,1918,183 +7581,126.35,1897,187 +7582,126.36666666666666,1873,193 +7583,126.38333333333333,1846,198 +7584,126.39999999999999,1817,203 +7585,126.41666666666667,1785,209 +7586,126.43333333333334,1752,214 +7587,126.45,1717,219 +7588,126.46666666666667,1679,224 +7589,126.48333333333333,1641,230 +7590,126.5,1601,234 +7591,126.51666666666667,1560,238 +7592,126.53333333333333,1518,241 +7593,126.55,1476,244 +7594,126.56666666666666,1433,246 +7595,126.58333333333333,1392,248 +7596,126.6,1350,248 +7597,126.61666666666666,1310,248 +7598,126.63333333333333,1269,247 +7599,126.64999999999999,1230,246 +7600,126.66666666666667,1192,245 +7601,126.68333333333334,1155,243 +7602,126.7,1121,241 +7603,126.71666666666667,1088,238 +7604,126.73333333333333,1058,235 +7605,126.75,1030,232 +7606,126.76666666666667,1004,229 +7607,126.78333333333333,981,226 +7608,126.8,961,223 +7609,126.81666666666666,943,221 +7610,126.83333333333333,929,219 +7611,126.85,917,217 +7612,126.86666666666666,909,216 +7613,126.88333333333333,904,215 +7614,126.89999999999999,904,215 +7615,126.91666666666667,904,215 +7616,126.93333333333334,907,216 +7617,126.95,914,217 +7618,126.96666666666667,924,218 +7619,126.98333333333333,938,220 +7620,127.0,954,223 +7621,127.01666666666667,973,225 +7622,127.03333333333333,995,228 +7623,127.05,1020,231 +7624,127.06666666666666,1047,234 +7625,127.08333333333333,1076,237 +7626,127.1,1108,240 +7627,127.11666666666666,1142,242 +7628,127.13333333333333,1178,244 +7629,127.14999999999999,1215,245 +7630,127.16666666666667,1254,247 +7631,127.18333333333334,1294,248 +7632,127.2,1335,248 +7633,127.21666666666667,1375,248 +7634,127.23333333333333,1417,247 +7635,127.25,1460,244 +7636,127.26666666666667,1502,242 +7637,127.28333333333333,1544,239 +7638,127.3,1585,235 +7639,127.31666666666666,1625,230 +7640,127.33333333333333,1664,226 +7641,127.35,1702,221 +7642,127.36666666666666,1738,216 +7643,127.38333333333333,1772,210 +7644,127.39999999999999,1804,205 +7645,127.41666666666667,1834,200 +7646,127.43333333333334,1862,195 +7647,127.45,1887,189 +7648,127.46666666666667,1909,185 +7649,127.48333333333333,1928,180 +7650,127.5,1945,176 +7651,127.51666666666667,1958,173 +7652,127.53333333333333,1969,171 +7653,127.55,1976,170 +7654,127.56666666666666,1978,169 +7655,127.58333333333333,1978,169 +7656,127.6,1978,169 +7657,127.61666666666666,1973,170 +7658,127.63333333333333,1963,172 +7659,127.64999999999999,1951,175 +7660,127.66666666666667,1936,179 +7661,127.68333333333334,1918,183 +7662,127.7,1897,187 +7663,127.71666666666667,1874,192 +7664,127.73333333333333,1847,197 +7665,127.75,1819,203 +7666,127.76666666666667,1787,208 +7667,127.78333333333333,1754,213 +7668,127.8,1719,219 +7669,127.81666666666666,1682,224 +7670,127.83333333333333,1644,229 +7671,127.85,1604,233 +7672,127.86666666666666,1564,237 +7673,127.88333333333333,1522,241 +7674,127.89999999999999,1481,243 +7675,127.91666666666667,1438,245 +7676,127.93333333333334,1396,247 +7677,127.95,1356,248 +7678,127.96666666666667,1315,248 +7679,127.98333333333333,1274,248 +7680,128.0,1235,247 +7681,128.01666666666665,1197,245 +7682,128.03333333333333,1160,243 +7683,128.05,1125,241 +7684,128.06666666666666,1093,238 +7685,128.08333333333334,1063,235 +7686,128.1,1034,233 +7687,128.11666666666667,1008,229 +7688,128.13333333333333,985,227 +7689,128.15,965,224 +7690,128.16666666666666,947,222 +7691,128.18333333333334,932,219 +7692,128.2,920,218 +7693,128.21666666666667,912,216 +7694,128.23333333333332,906,216 +7695,128.25,906,216 +7696,128.26666666666665,906,216 +7697,128.28333333333333,908,216 +7698,128.3,915,217 +7699,128.31666666666666,925,218 +7700,128.33333333333334,938,220 +7701,128.35,954,222 +7702,128.36666666666667,973,225 +7703,128.38333333333333,995,227 +7704,128.4,1019,231 +7705,128.41666666666666,1046,233 +7706,128.43333333333334,1075,236 +7707,128.45,1106,239 +7708,128.46666666666667,1140,241 +7709,128.48333333333332,1175,244 +7710,128.5,1212,245 +7711,128.51666666666665,1250,247 +7712,128.53333333333333,1290,247 +7713,128.55,1331,247 +7714,128.56666666666666,1372,247 +7715,128.58333333333334,1413,246 +7716,128.6,1455,244 +7717,128.61666666666667,1497,242 +7718,128.63333333333333,1539,239 +7719,128.65,1580,235 +7720,128.66666666666666,1621,231 +7721,128.68333333333334,1659,226 +7722,128.7,1697,222 +7723,128.71666666666667,1733,217 +7724,128.73333333333332,1767,211 +7725,128.75,1800,206 +7726,128.76666666666665,1830,200 +7727,128.78333333333333,1857,195 +7728,128.8,1883,190 +7729,128.81666666666666,1905,185 +7730,128.83333333333334,1925,181 +7731,128.85,1941,178 +7732,128.86666666666667,1955,174 +7733,128.88333333333333,1966,172 +7734,128.9,1973,170 +7735,128.91666666666666,1977,170 +7736,128.93333333333334,1977,170 +7737,128.95,1977,170 +7738,128.96666666666667,1971,171 +7739,128.98333333333332,1963,173 +7740,129.0,1951,175 +7741,129.01666666666665,1936,179 +7742,129.03333333333333,1919,183 +7743,129.05,1898,187 +7744,129.06666666666666,1875,192 +7745,129.08333333333334,1848,197 +7746,129.1,1820,202 +7747,129.11666666666667,1789,208 +7748,129.13333333333333,1757,213 +7749,129.15,1721,218 +7750,129.16666666666666,1685,224 +7751,129.18333333333334,1647,228 +7752,129.2,1608,233 +7753,129.21666666666667,1567,237 +7754,129.23333333333332,1526,240 +7755,129.25,1485,243 +7756,129.26666666666665,1442,244 +7757,129.28333333333333,1400,246 +7758,129.3,1359,247 +7759,129.31666666666666,1318,247 +7760,129.33333333333334,1279,247 +7761,129.35,1239,246 +7762,129.36666666666667,1201,245 +7763,129.38333333333333,1165,243 +7764,129.4,1130,241 +7765,129.41666666666666,1097,238 +7766,129.43333333333334,1066,235 +7767,129.45,1038,232 +7768,129.46666666666667,1012,229 +7769,129.48333333333332,989,227 +7770,129.5,968,224 +7771,129.51666666666665,950,221 +7772,129.53333333333333,935,219 +7773,129.55,923,217 +7774,129.56666666666666,914,216 +7775,129.58333333333334,908,215 +7776,129.6,908,215 +7777,129.61666666666667,908,215 +7778,129.63333333333333,909,215 +7779,129.65,916,216 +7780,129.66666666666666,925,217 +7781,129.68333333333334,938,219 +7782,129.7,954,222 +7783,129.71666666666667,972,224 +7784,129.73333333333332,993,227 +7785,129.75,1017,230 +7786,129.76666666666665,1044,233 +7787,129.78333333333333,1073,236 +7788,129.8,1104,238 +7789,129.81666666666666,1137,241 +7790,129.83333333333334,1172,243 +7791,129.85,1208,245 +7792,129.86666666666667,1247,246 +7793,129.88333333333333,1286,247 +7794,129.9,1327,247 +7795,129.91666666666666,1367,247 +7796,129.93333333333334,1408,246 +7797,129.95,1450,244 +7798,129.96666666666667,1493,242 +7799,129.98333333333332,1534,239 +7800,130.0,1575,236 +7801,130.01666666666665,1615,232 +7802,130.03333333333333,1654,227 +7803,130.05,1692,222 +7804,130.06666666666666,1728,217 +7805,130.08333333333334,1762,212 +7806,130.1,1795,207 +7807,130.11666666666667,1825,201 +7808,130.13333333333333,1853,196 +7809,130.15,1878,191 +7810,130.16666666666666,1901,186 +7811,130.18333333333334,1921,182 +7812,130.2,1938,178 +7813,130.21666666666667,1952,175 +7814,130.23333333333332,1963,173 +7815,130.25,1970,171 +7816,130.26666666666665,1975,170 +7817,130.28333333333333,1975,170 +7818,130.3,1975,170 +7819,130.31666666666666,1970,171 +7820,130.33333333333334,1962,173 +7821,130.35,1950,176 +7822,130.36666666666667,1936,179 +7823,130.38333333333333,1919,183 +7824,130.4,1898,187 +7825,130.41666666666666,1875,192 +7826,130.43333333333334,1850,197 +7827,130.45,1821,202 +7828,130.46666666666667,1791,208 +7829,130.48333333333332,1758,213 +7830,130.5,1723,218 +7831,130.51666666666665,1687,224 +7832,130.53333333333333,1649,228 +7833,130.55,1610,232 +7834,130.56666666666666,1570,236 +7835,130.58333333333334,1529,240 +7836,130.6,1488,243 +7837,130.61666666666667,1445,245 +7838,130.63333333333333,1404,247 +7839,130.65,1363,247 +7840,130.66666666666666,1322,247 +7841,130.68333333333334,1282,247 +7842,130.7,1244,246 +7843,130.71666666666667,1205,245 +7844,130.73333333333332,1169,243 +7845,130.75,1134,241 +7846,130.76666666666665,1101,238 +7847,130.78333333333333,1070,235 +7848,130.8,1042,233 +7849,130.81666666666666,1016,229 +7850,130.83333333333334,992,227 +7851,130.85,972,224 +7852,130.86666666666667,953,222 +7853,130.88333333333333,938,219 +7854,130.9,926,217 +7855,130.91666666666666,916,216 +7856,130.93333333333334,910,215 +7857,130.95,910,215 +7858,130.96666666666667,910,215 +7859,130.98333333333332,910,215 +7860,131.0,916,216 +7861,131.01666666666665,926,217 +7862,131.03333333333333,938,219 +7863,131.05,953,221 +7864,131.06666666666666,971,223 +7865,131.08333333333334,992,226 +7866,131.1,1016,229 +7867,131.11666666666667,1042,232 +7868,131.13333333333333,1070,234 +7869,131.15,1101,237 +7870,131.16666666666666,1134,240 +7871,131.18333333333334,1169,242 +7872,131.2,1205,244 +7873,131.21666666666667,1243,246 +7874,131.23333333333332,1282,246 +7875,131.25,1322,246 +7876,131.26666666666665,1363,246 +7877,131.28333333333333,1404,246 +7878,131.3,1445,244 +7879,131.31666666666666,1488,242 +7880,131.33333333333334,1529,239 +7881,131.35,1570,235 +7882,131.36666666666667,1610,231 +7883,131.38333333333333,1649,227 +7884,131.4,1687,222 +7885,131.41666666666666,1724,217 +7886,131.43333333333334,1758,212 +7887,131.45,1790,207 +7888,131.46666666666667,1821,201 +7889,131.48333333333332,1849,196 +7890,131.5,1875,191 +7891,131.51666666666665,1898,186 +7892,131.53333333333333,1918,182 +7893,131.55,1935,178 +7894,131.56666666666666,1950,175 +7895,131.58333333333334,1961,172 +7896,131.6,1968,171 +7897,131.61666666666667,1974,169 +7898,131.63333333333333,1974,169 +7899,131.65,1974,169 +7900,131.66666666666666,1969,171 +7901,131.68333333333334,1961,172 +7902,131.7,1950,175 +7903,131.71666666666667,1936,178 +7904,131.73333333333332,1919,182 +7905,131.75,1899,186 +7906,131.76666666666665,1877,191 +7907,131.78333333333333,1851,196 +7908,131.8,1824,201 +7909,131.81666666666666,1793,207 +7910,131.83333333333334,1761,212 +7911,131.85,1727,217 +7912,131.86666666666667,1691,222 +7913,131.88333333333333,1653,227 +7914,131.9,1614,232 +7915,131.91666666666666,1574,235 +7916,131.93333333333334,1534,239 +7917,131.95,1492,241 +7918,131.96666666666667,1450,244 +7919,131.98333333333332,1408,246 +7920,132.0,1367,247 +7921,132.01666666666665,1327,247 +7922,132.03333333333333,1287,247 +7923,132.05,1247,246 +7924,132.06666666666666,1209,245 +7925,132.08333333333334,1173,243 +7926,132.1,1138,241 +7927,132.11666666666667,1105,238 +7928,132.13333333333333,1074,235 +7929,132.15,1045,233 +7930,132.16666666666666,1019,230 +7931,132.18333333333334,995,227 +7932,132.2,974,224 +7933,132.21666666666667,956,222 +7934,132.23333333333332,940,220 +7935,132.25,928,218 +7936,132.26666666666665,918,216 +7937,132.28333333333333,912,215 +7938,132.3,911,215 +7939,132.31666666666666,911,215 +7940,132.33333333333334,911,215 +7941,132.35,917,216 +7942,132.36666666666667,926,218 +7943,132.38333333333333,938,219 +7944,132.4,953,221 +7945,132.41666666666666,971,224 +7946,132.43333333333334,991,227 +7947,132.45,1015,229 +7948,132.46666666666667,1040,232 +7949,132.48333333333332,1068,235 +7950,132.5,1099,238 +7951,132.51666666666665,1132,240 +7952,132.53333333333333,1166,242 +7953,132.55,1202,244 +7954,132.56666666666666,1240,245 +7955,132.58333333333334,1279,246 +7956,132.6,1319,246 +7957,132.61666666666667,1360,246 +7958,132.63333333333333,1400,246 +7959,132.65,1442,244 +7960,132.66666666666666,1484,242 +7961,132.68333333333334,1526,239 +7962,132.7,1566,235 +7963,132.71666666666667,1607,232 +7964,132.73333333333332,1646,227 +7965,132.75,1683,223 +7966,132.76666666666665,1719,218 +7967,132.78333333333333,1754,213 +7968,132.8,1786,208 +7969,132.81666666666666,1817,202 +7970,132.83333333333334,1845,197 +7971,132.85,1871,192 +7972,132.86666666666667,1894,187 +7973,132.88333333333333,1914,182 +7974,132.9,1932,179 +7975,132.91666666666666,1947,175 +7976,132.93333333333334,1958,173 +7977,132.95,1966,171 +7978,132.96666666666667,1972,170 +7979,132.98333333333332,1972,170 +7980,133.0,1972,170 +7981,133.01666666666665,1968,171 +7982,133.03333333333333,1961,173 +7983,133.05,1950,176 +7984,133.06666666666666,1936,178 +7985,133.08333333333334,1920,182 +7986,133.1,1900,186 +7987,133.11666666666667,1878,191 +7988,133.13333333333333,1852,196 +7989,133.15,1825,201 +7990,133.16666666666666,1795,207 +7991,133.18333333333334,1763,212 +7992,133.2,1729,217 +7993,133.21666666666667,1694,222 +7994,133.23333333333332,1656,227 +7995,133.25,1618,232 +7996,133.26666666666665,1578,236 +7997,133.28333333333333,1538,239 +7998,133.3,1496,242 +7999,133.31666666666666,1454,244 +8000,133.33333333333334,1413,247 +8001,133.35,1372,247 +8002,133.36666666666667,1333,247 +8003,133.38333333333333,1292,247 +8004,133.4,1253,246 +8005,133.41666666666666,1215,246 +8006,133.43333333333334,1178,244 +8007,133.45,1143,242 +8008,133.46666666666667,1110,239 +8009,133.48333333333332,1079,237 +8010,133.5,1050,234 +8011,133.51666666666665,1024,231 +8012,133.53333333333333,1000,228 +8013,133.55,979,225 +8014,133.56666666666666,960,223 +8015,133.58333333333334,944,220 +8016,133.6,932,219 +8017,133.61666666666667,922,217 +8018,133.63333333333333,915,216 +8019,133.65,914,216 +8020,133.66666666666666,914,216 +8021,133.68333333333334,914,216 +8022,133.7,919,216 +8023,133.71666666666667,928,218 +8024,133.73333333333332,939,219 +8025,133.75,954,222 +8026,133.76666666666665,971,224 +8027,133.78333333333333,992,226 +8028,133.8,1014,229 +8029,133.81666666666666,1040,232 +8030,133.83333333333334,1068,235 +8031,133.85,1097,237 +8032,133.86666666666667,1130,240 +8033,133.88333333333333,1163,242 +8034,133.9,1200,244 +8035,133.91666666666666,1237,245 +8036,133.93333333333334,1276,246 +8037,133.95,1316,246 +8038,133.96666666666667,1356,246 +8039,133.98333333333332,1396,246 +8040,134.0,1438,244 +8041,134.01666666666665,1480,242 +8042,134.03333333333333,1521,240 +8043,134.05,1561,236 +8044,134.06666666666666,1602,232 +8045,134.08333333333334,1641,228 +8046,134.1,1678,224 +8047,134.11666666666667,1715,219 +8048,134.13333333333333,1750,214 +8049,134.15,1782,209 +8050,134.16666666666666,1813,203 +8051,134.18333333333334,1841,198 +8052,134.2,1867,194 +8053,134.21666666666667,1890,189 +8054,134.23333333333332,1910,184 +8055,134.25,1928,180 +8056,134.26666666666665,1943,177 +8057,134.28333333333333,1955,175 +8058,134.3,1963,173 +8059,134.31666666666666,1969,171 +8060,134.33333333333334,1969,171 +8061,134.35,1969,171 +8062,134.36666666666667,1967,172 +8063,134.38333333333333,1959,174 +8064,134.4,1949,177 +8065,134.41666666666666,1936,179 +8066,134.43333333333334,1919,183 +8067,134.45,1900,187 +8068,134.46666666666667,1878,192 +8069,134.48333333333332,1853,197 +8070,134.5,1826,202 +8071,134.51666666666665,1797,207 +8072,134.53333333333333,1765,213 +8073,134.55,1731,218 +8074,134.56666666666666,1696,223 +8075,134.58333333333334,1658,227 +8076,134.6,1620,232 +8077,134.61666666666667,1581,236 +8078,134.63333333333333,1541,239 +8079,134.65,1500,242 +8080,134.66666666666666,1457,245 +8081,134.68333333333334,1416,247 +8082,134.7,1375,248 +8083,134.71666666666667,1335,248 +8084,134.73333333333332,1295,248 +8085,134.75,1256,247 +8086,134.76666666666665,1218,246 +8087,134.78333333333333,1182,244 +8088,134.8,1147,242 +8089,134.81666666666666,1113,240 +8090,134.83333333333334,1082,237 +8091,134.85,1054,234 +8092,134.86666666666667,1027,231 +8093,134.88333333333333,1003,228 +8094,134.9,982,226 +8095,134.91666666666666,963,223 +8096,134.93333333333334,947,221 +8097,134.95,934,219 +8098,134.96666666666667,924,217 +8099,134.98333333333332,917,216 +8100,135.0,914,216 +8101,135.01666666666665,914,216 +8102,135.03333333333333,914,216 +8103,135.05,919,217 +8104,135.06666666666666,928,218 +8105,135.08333333333334,939,219 +8106,135.1,953,221 +8107,135.11666666666667,970,224 +8108,135.13333333333333,990,227 +8109,135.15,1012,229 +8110,135.16666666666666,1038,232 +8111,135.18333333333334,1065,235 +8112,135.2,1095,238 +8113,135.21666666666667,1127,240 +8114,135.23333333333332,1160,243 +8115,135.25,1196,244 +8116,135.26666666666665,1234,245 +8117,135.28333333333333,1272,247 +8118,135.3,1311,247 +8119,135.31666666666666,1351,247 +8120,135.33333333333334,1392,247 +8121,135.35,1433,245 +8122,135.36666666666667,1475,243 +8123,135.38333333333333,1516,241 +8124,135.4,1557,237 +8125,135.41666666666666,1597,234 +8126,135.43333333333334,1636,230 +8127,135.45,1674,225 +8128,135.46666666666667,1711,220 +8129,135.48333333333332,1745,215 +8130,135.5,1778,209 +8131,135.51666666666665,1809,204 +8132,135.53333333333333,1837,199 +8133,135.55,1863,194 +8134,135.56666666666666,1887,189 +8135,135.58333333333334,1908,185 +8136,135.6,1926,181 +8137,135.61666666666667,1941,178 +8138,135.63333333333333,1953,175 +8139,135.65,1962,172 +8140,135.66666666666666,1967,171 +8141,135.68333333333334,1967,171 +8142,135.7,1967,171 +8143,135.71666666666667,1966,172 +8144,135.73333333333332,1959,174 +8145,135.75,1949,176 +8146,135.76666666666665,1936,179 +8147,135.78333333333333,1920,183 +8148,135.8,1901,187 +8149,135.81666666666666,1879,192 +8150,135.83333333333334,1855,196 +8151,135.85,1828,201 +8152,135.86666666666667,1799,207 +8153,135.88333333333333,1767,212 +8154,135.9,1734,217 +8155,135.91666666666666,1699,222 +8156,135.93333333333334,1662,227 +8157,135.95,1624,232 +8158,135.96666666666667,1585,235 +8159,135.98333333333332,1544,239 +8160,136.0,1504,242 +8161,136.01666666666665,1462,244 +8162,136.03333333333333,1421,247 +8163,136.05,1380,247 +8164,136.06666666666666,1340,248 +8165,136.08333333333334,1300,248 +8166,136.1,1261,248 +8167,136.11666666666667,1223,246 +8168,136.13333333333333,1186,245 +8169,136.15,1151,242 +8170,136.16666666666666,1117,240 +8171,136.18333333333334,1086,237 +8172,136.2,1057,235 +8173,136.21666666666667,1030,232 +8174,136.23333333333332,1006,229 +8175,136.25,984,226 +8176,136.26666666666665,965,224 +8177,136.28333333333333,949,221 +8178,136.3,936,219 +8179,136.31666666666666,926,218 +8180,136.33333333333334,918,217 +8181,136.35,915,216 +8182,136.36666666666667,915,216 +8183,136.38333333333333,915,216 +8184,136.4,919,217 +8185,136.41666666666666,927,218 +8186,136.43333333333334,938,219 +8187,136.45,952,221 +8188,136.46666666666667,969,224 +8189,136.48333333333332,989,226 +8190,136.5,1011,229 +8191,136.51666666666665,1036,232 +8192,136.53333333333333,1064,235 +8193,136.55,1093,237 +8194,136.56666666666666,1125,240 +8195,136.58333333333334,1159,242 +8196,136.6,1194,244 +8197,136.61666666666667,1231,245 +8198,136.63333333333333,1269,246 +8199,136.65,1309,246 +8200,136.66666666666666,1349,246 +8201,136.68333333333334,1389,246 +8202,136.7,1430,245 +8203,136.71666666666667,1472,243 +8204,136.73333333333332,1513,240 +8205,136.75,1553,237 +8206,136.76666666666665,1593,233 +8207,136.78333333333333,1632,229 +8208,136.8,1670,225 +8209,136.81666666666666,1706,220 +8210,136.83333333333334,1741,215 +8211,136.85,1774,210 +8212,136.86666666666667,1805,205 +8213,136.88333333333333,1834,200 +8214,136.9,1860,195 +8215,136.91666666666666,1884,190 +8216,136.93333333333334,1905,186 +8217,136.95,1923,182 +8218,136.96666666666667,1938,179 +8219,136.98333333333332,1950,176 +8220,137.0,1959,174 +8221,137.01666666666665,1965,172 +8222,137.03333333333333,1965,172 +8223,137.05,1965,172 +8224,137.06666666666666,1965,172 +8225,137.08333333333334,1958,174 +8226,137.1,1949,176 +8227,137.11666666666667,1936,179 +8228,137.13333333333333,1920,183 +8229,137.15,1901,187 +8230,137.16666666666666,1880,191 +8231,137.18333333333334,1856,196 +8232,137.2,1830,201 +8233,137.21666666666667,1801,206 +8234,137.23333333333332,1770,212 +8235,137.25,1737,216 +8236,137.26666666666665,1702,222 +8237,137.28333333333333,1665,226 +8238,137.3,1627,231 +8239,137.31666666666666,1588,235 +8240,137.33333333333334,1548,238 +8241,137.35,1508,241 +8242,137.36666666666667,1466,244 +8243,137.38333333333333,1425,246 +8244,137.4,1384,248 +8245,137.41666666666666,1345,248 +8246,137.43333333333334,1305,248 +8247,137.45,1266,247 +8248,137.46666666666667,1227,246 +8249,137.48333333333332,1191,244 +8250,137.5,1156,243 +8251,137.51666666666665,1122,240 +8252,137.53333333333333,1091,238 +8253,137.55,1062,235 +8254,137.56666666666666,1035,232 +8255,137.58333333333334,1010,229 +8256,137.6,988,226 +8257,137.61666666666667,969,224 +8258,137.63333333333333,953,221 +8259,137.65,939,219 +8260,137.66666666666666,929,218 +8261,137.68333333333334,921,217 +8262,137.7,917,216 +8263,137.71666666666667,917,216 +8264,137.73333333333332,917,216 +8265,137.75,921,217 +8266,137.76666666666665,929,218 +8267,137.78333333333333,939,220 +8268,137.8,953,222 +8269,137.81666666666666,970,224 +8270,137.83333333333334,989,226 +8271,137.85,1011,229 +8272,137.86666666666667,1035,232 +8273,137.88333333333333,1062,234 +8274,137.9,1092,237 +8275,137.91666666666666,1123,240 +8276,137.93333333333334,1157,242 +8277,137.95,1192,244 +8278,137.96666666666667,1228,245 +8279,137.98333333333332,1267,247 +8280,138.0,1306,247 +8281,138.01666666666665,1346,247 +8282,138.03333333333333,1385,247 +8283,138.05,1426,245 +8284,138.06666666666666,1468,243 +8285,138.08333333333334,1509,240 +8286,138.1,1550,238 +8287,138.11666666666667,1590,234 +8288,138.13333333333333,1628,230 +8289,138.15,1666,226 +8290,138.16666666666666,1703,220 +8291,138.18333333333334,1737,215 +8292,138.2,1770,211 +8293,138.21666666666667,1801,206 +8294,138.23333333333332,1830,200 +8295,138.25,1856,195 +8296,138.26666666666665,1880,191 +8297,138.28333333333333,1901,186 +8298,138.3,1920,182 +8299,138.31666666666666,1935,179 +8300,138.33333333333334,1948,176 +8301,138.35,1957,174 +8302,138.36666666666667,1963,173 +8303,138.38333333333333,1964,173 +8304,138.4,1964,173 +8305,138.41666666666666,1964,173 +8306,138.43333333333334,1957,174 +8307,138.45,1948,177 +8308,138.46666666666667,1936,179 +8309,138.48333333333332,1921,183 +8310,138.5,1902,187 +8311,138.51666666666665,1881,191 +8312,138.53333333333333,1858,196 +8313,138.55,1831,201 +8314,138.56666666666666,1803,206 +8315,138.58333333333334,1772,211 +8316,138.6,1739,216 +8317,138.61666666666667,1705,221 +8318,138.63333333333333,1669,226 +8319,138.65,1631,231 +8320,138.66666666666666,1592,235 +8321,138.68333333333334,1552,238 +8322,138.7,1512,242 +8323,138.71666666666667,1471,244 +8324,138.73333333333332,1429,246 +8325,138.75,1389,248 +8326,138.76666666666665,1349,248 +8327,138.78333333333333,1309,248 +8328,138.8,1270,248 +8329,138.81666666666666,1232,246 +8330,138.83333333333334,1195,245 +8331,138.85,1160,243 +8332,138.86666666666667,1127,241 +8333,138.88333333333333,1095,239 +8334,138.9,1066,236 +8335,138.91666666666666,1039,233 +8336,138.93333333333334,1014,230 +8337,138.95,992,227 +8338,138.96666666666667,973,225 +8339,138.98333333333332,956,222 +8340,139.0,942,221 +8341,139.01666666666665,932,219 +8342,139.03333333333333,924,218 +8343,139.05,919,217 +8344,139.06666666666666,919,217 +8345,139.08333333333334,919,217 +8346,139.1,923,217 +8347,139.11666666666667,930,218 +8348,139.13333333333333,940,220 +8349,139.15,954,221 +8350,139.16666666666666,970,223 +8351,139.18333333333334,989,226 +8352,139.2,1011,229 +8353,139.21666666666667,1034,231 +8354,139.23333333333332,1061,234 +8355,139.25,1090,237 +8356,139.26666666666665,1121,240 +8357,139.28333333333333,1154,242 +8358,139.3,1189,243 +8359,139.31666666666666,1225,245 +8360,139.33333333333334,1264,246 +8361,139.35,1303,247 +8362,139.36666666666667,1342,247 +8363,139.38333333333333,1382,247 +8364,139.4,1423,245 +8365,139.41666666666666,1464,243 +8366,139.43333333333334,1505,241 +8367,139.45,1546,238 +8368,139.46666666666667,1586,235 +8369,139.48333333333332,1624,231 +8370,139.5,1662,226 +8371,139.51666666666665,1699,221 +8372,139.53333333333333,1734,216 +8373,139.55,1767,211 +8374,139.56666666666666,1798,206 +8375,139.58333333333334,1827,201 +8376,139.6,1853,196 +8377,139.61666666666667,1877,191 +8378,139.63333333333333,1899,187 +8379,139.65,1917,183 +8380,139.66666666666666,1933,180 +8381,139.68333333333334,1946,177 +8382,139.7,1955,175 +8383,139.71666666666667,1962,174 +8384,139.73333333333332,1963,174 +8385,139.75,1963,174 +8386,139.76666666666665,1963,174 +8387,139.78333333333333,1957,175 +8388,139.8,1948,177 +8389,139.81666666666666,1936,180 +8390,139.83333333333334,1921,184 +8391,139.85,1903,187 +8392,139.86666666666667,1883,192 +8393,139.88333333333333,1859,196 +8394,139.9,1833,201 +8395,139.91666666666666,1805,207 +8396,139.93333333333334,1774,212 +8397,139.95,1742,217 +8398,139.96666666666667,1707,222 +8399,139.98333333333332,1671,227 +8400,140.0,1634,231 +8401,140.01666666666665,1595,235 +8402,140.03333333333333,1556,239 +8403,140.05,1516,242 +8404,140.06666666666666,1475,244 +8405,140.08333333333334,1433,247 +8406,140.1,1393,249 +8407,140.11666666666667,1353,249 +8408,140.13333333333333,1313,249 +8409,140.15,1274,248 +8410,140.16666666666666,1236,247 +8411,140.18333333333334,1199,245 +8412,140.2,1164,244 +8413,140.21666666666667,1131,241 +8414,140.23333333333332,1099,239 +8415,140.25,1070,236 +8416,140.26666666666665,1043,233 +8417,140.28333333333333,1018,231 +8418,140.3,996,228 +8419,140.31666666666666,976,226 +8420,140.33333333333334,959,223 +8421,140.35,945,221 +8422,140.36666666666667,934,220 +8423,140.38333333333333,926,218 +8424,140.4,921,218 +8425,140.41666666666666,921,218 +8426,140.43333333333334,921,218 +8427,140.45,924,218 +8428,140.46666666666667,931,219 +8429,140.48333333333332,941,220 +8430,140.5,954,222 +8431,140.51666666666665,970,225 +8432,140.53333333333333,988,227 +8433,140.55,1010,229 +8434,140.56666666666666,1033,232 +8435,140.58333333333334,1060,235 +8436,140.6,1089,237 +8437,140.61666666666667,1120,240 +8438,140.63333333333333,1152,242 +8439,140.65,1187,244 +8440,140.66666666666666,1223,246 +8441,140.68333333333334,1261,247 +8442,140.7,1300,248 +8443,140.71666666666667,1339,248 +8444,140.73333333333332,1378,248 +8445,140.75,1419,247 +8446,140.76666666666665,1460,245 +8447,140.78333333333333,1501,242 +8448,140.8,1542,239 +8449,140.81666666666666,1581,236 +8450,140.83333333333334,1620,232 +8451,140.85,1658,228 +8452,140.86666666666667,1695,224 +8453,140.88333333333333,1730,219 +8454,140.9,1763,214 +8455,140.91666666666666,1794,209 +8456,140.93333333333334,1823,204 +8457,140.95,1850,199 +8458,140.96666666666667,1875,194 +8459,140.98333333333332,1896,190 +8460,141.0,1915,186 +8461,141.01666666666665,1931,182 +8462,141.03333333333333,1944,180 +8463,141.05,1954,177 +8464,141.06666666666666,1961,176 +8465,141.08333333333334,1962,176 +8466,141.1,1962,176 +8467,141.11666666666667,1962,176 +8468,141.13333333333333,1957,177 +8469,141.15,1948,179 +8470,141.16666666666666,1936,182 +8471,141.18333333333334,1922,185 +8472,141.2,1904,189 +8473,141.21666666666667,1883,193 +8474,141.23333333333332,1860,198 +8475,141.25,1835,203 +8476,141.26666666666665,1807,208 +8477,141.28333333333333,1777,213 +8478,141.3,1744,218 +8479,141.31666666666666,1710,223 +8480,141.33333333333334,1674,228 +8481,141.35,1637,232 +8482,141.36666666666667,1599,236 +8483,141.38333333333333,1559,240 +8484,141.4,1519,243 +8485,141.41666666666666,1479,245 +8486,141.43333333333334,1437,248 +8487,141.45,1397,249 +8488,141.46666666666667,1358,249 +8489,141.48333333333332,1318,249 +8490,141.5,1279,249 +8491,141.51666666666665,1240,248 +8492,141.53333333333333,1204,247 +8493,141.55,1168,245 +8494,141.56666666666666,1135,243 +8495,141.58333333333334,1103,240 +8496,141.6,1074,237 +8497,141.61666666666667,1046,235 +8498,141.63333333333333,1021,232 +8499,141.65,999,229 +8500,141.66666666666666,979,227 +8501,141.68333333333334,962,224 +8502,141.7,948,223 +8503,141.71666666666667,936,221 +8504,141.73333333333332,928,220 +8505,141.75,923,218 +8506,141.76666666666665,923,218 +8507,141.78333333333333,923,218 +8508,141.8,925,219 +8509,141.81666666666666,932,220 +8510,141.83333333333334,941,221 +8511,141.85,954,223 +8512,141.86666666666667,970,225 +8513,141.88333333333333,988,228 +8514,141.9,1009,230 +8515,141.91666666666666,1032,233 +8516,141.93333333333334,1059,235 +8517,141.95,1087,238 +8518,141.96666666666667,1117,241 +8519,141.98333333333332,1150,243 +8520,142.0,1185,245 +8521,142.01666666666665,1221,246 +8522,142.03333333333333,1258,248 +8523,142.05,1297,249 +8524,142.06666666666666,1336,249 +8525,142.08333333333334,1375,249 +8526,142.1,1415,247 +8527,142.11666666666667,1457,245 +8528,142.13333333333333,1498,243 +8529,142.15,1538,240 +8530,142.16666666666666,1578,237 +8531,142.18333333333334,1617,233 +8532,142.2,1655,229 +8533,142.21666666666667,1692,225 +8534,142.23333333333332,1726,220 +8535,142.25,1760,215 +8536,142.26666666666665,1791,210 +8537,142.28333333333333,1820,205 +8538,142.3,1847,200 +8539,142.31666666666666,1872,195 +8540,142.33333333333334,1893,191 +8541,142.35,1912,187 +8542,142.36666666666667,1928,184 +8543,142.38333333333333,1942,181 +8544,142.4,1952,179 +8545,142.41666666666666,1959,177 +8546,142.43333333333334,1962,177 +8547,142.45,1962,177 +8548,142.46666666666667,1962,177 +8549,142.48333333333332,1956,178 +8550,142.5,1948,180 +8551,142.51666666666665,1937,183 +8552,142.53333333333333,1922,186 +8553,142.55,1905,190 +8554,142.56666666666666,1885,194 +8555,142.58333333333334,1862,199 +8556,142.6,1836,203 +8557,142.61666666666667,1809,208 +8558,142.63333333333333,1779,213 +8559,142.65,1747,218 +8560,142.66666666666666,1713,223 +8561,142.68333333333334,1678,228 +8562,142.7,1640,232 +8563,142.71666666666667,1602,236 +8564,142.73333333333332,1563,240 +8565,142.75,1523,243 +8566,142.76666666666665,1483,245 +8567,142.78333333333333,1442,247 +8568,142.8,1402,249 +8569,142.81666666666666,1362,250 +8570,142.83333333333334,1323,250 +8571,142.85,1284,250 +8572,142.86666666666667,1245,249 +8573,142.88333333333333,1208,247 +8574,142.9,1173,246 +8575,142.91666666666666,1139,244 +8576,142.93333333333334,1108,241 +8577,142.95,1078,238 +8578,142.96666666666667,1050,236 +8579,142.98333333333332,1025,233 +8580,143.0,1003,230 +8581,143.01666666666665,983,228 +8582,143.03333333333333,966,226 +8583,143.05,951,223 +8584,143.06666666666666,940,222 +8585,143.08333333333334,931,220 +8586,143.1,925,219 +8587,143.11666666666667,925,219 +8588,143.13333333333333,925,219 +8589,143.15,927,219 +8590,143.16666666666666,933,220 +8591,143.18333333333334,943,221 +8592,143.2,955,223 +8593,143.21666666666667,970,225 +8594,143.23333333333332,988,228 +8595,143.25,1009,230 +8596,143.26666666666665,1032,233 +8597,143.28333333333333,1058,235 +8598,143.3,1086,238 +8599,143.31666666666666,1117,241 +8600,143.33333333333334,1149,243 +8601,143.35,1183,245 +8602,143.36666666666667,1219,247 +8603,143.38333333333333,1256,248 +8604,143.4,1294,249 +8605,143.41666666666666,1334,249 +8606,143.43333333333334,1372,249 +8607,143.45,1413,248 +8608,143.46666666666667,1454,246 +8609,143.48333333333332,1495,244 +8610,143.5,1535,241 +8611,143.51666666666665,1574,238 +8612,143.53333333333333,1613,234 +8613,143.55,1651,230 +8614,143.56666666666666,1688,226 +8615,143.58333333333334,1722,221 +8616,143.6,1756,216 +8617,143.61666666666667,1787,211 +8618,143.63333333333333,1817,206 +8619,143.65,1844,201 +8620,143.66666666666666,1868,197 +8621,143.68333333333334,1890,192 +8622,143.7,1909,188 +8623,143.71666666666667,1925,185 +8624,143.73333333333332,1939,182 +8625,143.75,1949,179 +8626,143.76666666666665,1957,178 +8627,143.78333333333333,1960,177 +8628,143.8,1960,177 +8629,143.81666666666666,1960,177 +8630,143.83333333333334,1955,179 +8631,143.85,1947,180 +8632,143.86666666666667,1936,183 +8633,143.88333333333333,1922,186 +8634,143.9,1905,190 +8635,143.91666666666666,1885,194 +8636,143.93333333333334,1862,198 +8637,143.95,1837,203 +8638,143.96666666666667,1810,208 +8639,143.98333333333332,1780,213 +8640,144.0,1749,219 +8641,144.01666666666665,1715,223 +8642,144.03333333333333,1680,228 +8643,144.05,1643,232 +8644,144.06666666666666,1605,237 +8645,144.08333333333334,1566,241 +8646,144.1,1527,244 +8647,144.11666666666667,1487,246 +8648,144.13333333333333,1445,248 +8649,144.15,1405,250 +8650,144.16666666666666,1365,251 +8651,144.18333333333334,1327,251 +8652,144.2,1287,251 +8653,144.21666666666667,1249,250 +8654,144.23333333333332,1212,248 +8655,144.25,1177,246 +8656,144.26666666666665,1143,244 +8657,144.28333333333333,1111,242 +8658,144.3,1082,239 +8659,144.31666666666666,1054,237 +8660,144.33333333333334,1029,234 +8661,144.35,1006,231 +8662,144.36666666666667,986,228 +8663,144.38333333333333,968,226 +8664,144.4,954,224 +8665,144.41666666666666,942,222 +8666,144.43333333333334,933,221 +8667,144.45,927,220 +8668,144.46666666666667,927,220 +8669,144.48333333333332,927,220 +8670,144.5,928,220 +8671,144.51666666666665,934,221 +8672,144.53333333333333,943,222 +8673,144.55,955,224 +8674,144.56666666666666,970,226 +8675,144.58333333333334,988,228 +8676,144.6,1008,230 +8677,144.61666666666667,1031,233 +8678,144.63333333333333,1057,236 +8679,144.65,1084,238 +8680,144.66666666666666,1114,241 +8681,144.68333333333334,1146,243 +8682,144.7,1180,245 +8683,144.71666666666667,1216,247 +8684,144.73333333333332,1253,248 +8685,144.75,1291,249 +8686,144.76666666666665,1331,249 +8687,144.78333333333333,1369,249 +8688,144.8,1409,249 +8689,144.81666666666666,1449,247 +8690,144.83333333333334,1490,244 +8691,144.85,1530,242 +8692,144.86666666666667,1570,239 +8693,144.88333333333333,1609,235 +8694,144.9,1647,231 +8695,144.91666666666666,1683,227 +8696,144.93333333333334,1718,222 +8697,144.95,1752,217 +8698,144.96666666666667,1783,212 +8699,144.98333333333332,1813,207 +8700,145.0,1840,202 +8701,145.01666666666665,1864,197 +8702,145.03333333333333,1886,193 +8703,145.05,1905,189 +8704,145.06666666666666,1922,185 +8705,145.08333333333334,1936,182 +8706,145.1,1946,180 +8707,145.11666666666667,1954,178 +8708,145.13333333333333,1958,177 +8709,145.15,1958,177 +8710,145.16666666666666,1958,177 +8711,145.18333333333334,1954,179 +8712,145.2,1946,181 +8713,145.21666666666667,1935,183 +8714,145.23333333333332,1921,186 +8715,145.25,1904,190 +8716,145.26666666666665,1885,194 +8717,145.28333333333333,1863,198 +8718,145.3,1838,203 +8719,145.31666666666666,1811,208 +8720,145.33333333333334,1782,213 +8721,145.35,1750,218 +8722,145.36666666666667,1717,223 +8723,145.38333333333333,1682,228 +8724,145.4,1645,232 +8725,145.41666666666666,1608,237 +8726,145.43333333333334,1569,240 +8727,145.45,1529,243 +8728,145.46666666666667,1490,246 +8729,145.48333333333332,1449,248 +8730,145.5,1408,250 +8731,145.51666666666665,1368,251 +8732,145.53333333333333,1330,251 +8733,145.55,1291,251 +8734,145.56666666666666,1253,250 +8735,145.58333333333334,1216,248 +8736,145.6,1180,247 +8737,145.61666666666667,1147,245 +8738,145.63333333333333,1115,242 +8739,145.65,1085,240 +8740,145.66666666666666,1057,237 +8741,145.68333333333334,1032,235 +8742,145.7,1009,232 +8743,145.71666666666667,988,229 +8744,145.73333333333332,970,227 +8745,145.75,956,225 +8746,145.76666666666665,944,223 +8747,145.78333333333333,934,221 +8748,145.8,928,221 +8749,145.81666666666666,928,220 +8750,145.83333333333334,928,220 +8751,145.85,928,220 +8752,145.86666666666667,934,221 +8753,145.88333333333333,943,223 +8754,145.9,954,224 +8755,145.91666666666666,969,226 +8756,145.93333333333334,986,228 +8757,145.95,1007,230 +8758,145.96666666666667,1030,233 +8759,145.98333333333332,1055,236 +8760,146.0,1082,239 +8761,146.01666666666665,1112,241 +8762,146.03333333333333,1144,243 +8763,146.05,1177,245 +8764,146.06666666666666,1212,247 +8765,146.08333333333334,1249,249 +8766,146.1,1287,249 +8767,146.11666666666667,1326,249 +8768,146.13333333333333,1365,249 +8769,146.15,1405,249 +8770,146.16666666666666,1445,247 +8771,146.18333333333334,1486,245 +8772,146.2,1526,242 +8773,146.21666666666667,1566,239 +8774,146.23333333333332,1605,235 +8775,146.25,1642,231 +8776,146.26666666666665,1679,227 +8777,146.28333333333333,1714,222 +8778,146.3,1747,217 +8779,146.31666666666666,1779,212 +8780,146.33333333333334,1808,208 +8781,146.35,1835,203 +8782,146.36666666666667,1860,198 +8783,146.38333333333333,1882,194 +8784,146.4,1902,190 +8785,146.41666666666666,1919,186 +8786,146.43333333333334,1932,183 +8787,146.45,1943,181 +8788,146.46666666666667,1951,179 +8789,146.48333333333332,1956,178 +8790,146.5,1956,178 +8791,146.51666666666665,1956,178 +8792,146.53333333333333,1952,179 +8793,146.55,1944,181 +8794,146.56666666666666,1934,183 +8795,146.58333333333334,1920,186 +8796,146.6,1904,190 +8797,146.61666666666667,1885,194 +8798,146.63333333333333,1863,198 +8799,146.65,1839,203 +8800,146.66666666666666,1812,208 +8801,146.68333333333334,1783,213 +8802,146.7,1752,218 +8803,146.71666666666667,1719,223 +8804,146.73333333333332,1684,227 +8805,146.75,1648,232 +8806,146.76666666666665,1610,236 +8807,146.78333333333333,1572,240 +8808,146.8,1533,243 +8809,146.81666666666666,1493,246 +8810,146.83333333333334,1452,248 +8811,146.85,1412,249 +8812,146.86666666666667,1372,251 +8813,146.88333333333333,1333,251 +8814,146.9,1294,251 +8815,146.91666666666666,1257,250 +8816,146.93333333333334,1220,248 +8817,146.95,1184,247 +8818,146.96666666666667,1150,245 +8819,146.98333333333332,1118,243 +8820,147.0,1088,241 +8821,147.01666666666665,1060,237 +8822,147.03333333333333,1035,235 +8823,147.05,1012,232 +8824,147.06666666666666,991,229 +8825,147.08333333333334,973,227 +8826,147.1,958,225 +8827,147.11666666666667,946,223 +8828,147.13333333333333,936,222 +8829,147.15,930,221 +8830,147.16666666666666,929,221 +8831,147.18333333333334,929,221 +8832,147.2,929,221 +8833,147.21666666666667,934,221 +8834,147.23333333333332,943,222 +8835,147.25,954,224 +8836,147.26666666666665,969,226 +8837,147.28333333333333,986,228 +8838,147.3,1006,231 +8839,147.31666666666666,1029,233 +8840,147.33333333333334,1053,236 +8841,147.35,1080,238 +8842,147.36666666666667,1110,241 +8843,147.38333333333333,1142,243 +8844,147.4,1175,245 +8845,147.41666666666666,1210,247 +8846,147.43333333333334,1247,248 +8847,147.45,1284,249 +8848,147.46666666666667,1323,249 +8849,147.48333333333332,1362,249 +8850,147.5,1401,249 +8851,147.51666666666665,1441,247 +8852,147.53333333333333,1482,245 +8853,147.55,1522,242 +8854,147.56666666666666,1561,240 +8855,147.58333333333334,1600,236 +8856,147.6,1638,232 +8857,147.61666666666667,1674,227 +8858,147.63333333333333,1710,223 +8859,147.65,1743,218 +8860,147.66666666666666,1775,213 +8861,147.68333333333334,1804,208 +8862,147.7,1831,204 +8863,147.71666666666667,1856,199 +8864,147.73333333333332,1879,195 +8865,147.75,1898,190 +8866,147.76666666666665,1915,187 +8867,147.78333333333333,1929,184 +8868,147.8,1940,181 +8869,147.81666666666666,1948,180 +8870,147.83333333333334,1953,179 +8871,147.85,1953,179 +8872,147.86666666666667,1953,179 +8873,147.88333333333333,1950,179 +8874,147.9,1943,181 +8875,147.91666666666666,1933,184 +8876,147.93333333333334,1920,186 +8877,147.95,1904,190 +8878,147.96666666666667,1885,194 +8879,147.98333333333332,1864,199 +8880,148.0,1840,203 +8881,148.01666666666665,1813,208 +8882,148.03333333333333,1784,213 +8883,148.05,1753,218 +8884,148.06666666666666,1720,223 +8885,148.08333333333334,1686,228 +8886,148.1,1650,232 +8887,148.11666666666667,1613,236 +8888,148.13333333333333,1574,240 +8889,148.15,1535,243 +8890,148.16666666666666,1496,246 +8891,148.18333333333334,1455,248 +8892,148.2,1414,250 +8893,148.21666666666667,1375,251 +8894,148.23333333333332,1336,251 +8895,148.25,1298,251 +8896,148.26666666666665,1260,250 +8897,148.28333333333333,1223,249 +8898,148.3,1188,247 +8899,148.31666666666666,1154,245 +8900,148.33333333333334,1122,243 +8901,148.35,1092,241 +8902,148.36666666666667,1064,238 +8903,148.38333333333333,1038,235 +8904,148.4,1015,233 +8905,148.41666666666666,994,230 +8906,148.43333333333334,976,228 +8907,148.45,961,226 +8908,148.46666666666667,948,224 +8909,148.48333333333332,939,222 +8910,148.5,932,222 +8911,148.51666666666665,930,221 +8912,148.53333333333333,930,221 +8913,148.55,930,221 +8914,148.56666666666666,935,222 +8915,148.58333333333334,944,223 +8916,148.6,954,224 +8917,148.61666666666667,969,226 +8918,148.63333333333333,986,229 +8919,148.65,1005,231 +8920,148.66666666666666,1027,233 +8921,148.68333333333334,1052,236 +8922,148.7,1079,239 +8923,148.71666666666667,1108,241 +8924,148.73333333333332,1139,243 +8925,148.75,1172,245 +8926,148.76666666666665,1207,247 +8927,148.78333333333333,1244,248 +8928,148.8,1281,249 +8929,148.81666666666666,1320,249 +8930,148.83333333333334,1358,249 +8931,148.85,1397,249 +8932,148.86666666666667,1437,247 +8933,148.88333333333333,1478,245 +8934,148.9,1518,243 +8935,148.91666666666666,1558,240 +8936,148.93333333333334,1596,236 +8937,148.95,1634,232 +8938,148.96666666666667,1670,228 +8939,148.98333333333332,1705,223 +8940,149.0,1739,218 +8941,149.01666666666665,1771,213 +8942,149.03333333333333,1800,208 +8943,149.05,1828,203 +8944,149.06666666666666,1853,199 +8945,149.08333333333334,1875,194 +8946,149.1,1895,190 +8947,149.11666666666667,1912,186 +8948,149.13333333333333,1927,183 +8949,149.15,1938,181 +8950,149.16666666666666,1946,179 +8951,149.18333333333334,1952,178 +8952,149.2,1952,178 +8953,149.21666666666667,1952,178 +8954,149.23333333333332,1949,179 +8955,149.25,1942,181 +8956,149.26666666666665,1932,183 +8957,149.28333333333333,1919,186 +8958,149.3,1904,189 +8959,149.31666666666666,1885,193 +8960,149.33333333333334,1864,197 +8961,149.35,1840,202 +8962,149.36666666666667,1814,207 +8963,149.38333333333333,1785,212 +8964,149.4,1755,217 +8965,149.41666666666666,1722,222 +8966,149.43333333333334,1688,227 +8967,149.45,1652,231 +8968,149.46666666666667,1615,236 +8969,149.48333333333332,1577,239 +8970,149.5,1538,242 +8971,149.51666666666665,1499,245 +8972,149.53333333333333,1458,248 +8973,149.55,1418,250 +8974,149.56666666666666,1379,250 +8975,149.58333333333334,1341,250 +8976,149.6,1301,250 +8977,149.61666666666667,1264,250 +8978,149.63333333333333,1226,249 +8979,149.65,1191,248 +8980,149.66666666666666,1157,246 +8981,149.68333333333334,1125,243 +8982,149.7,1095,241 +8983,149.71666666666667,1066,238 +8984,149.73333333333332,1041,235 +8985,149.75,1017,233 +8986,149.76666666666665,996,230 +8987,149.78333333333333,978,228 +8988,149.8,963,226 +8989,149.81666666666666,950,224 +8990,149.83333333333334,940,222 +8991,149.85,933,221 +8992,149.86666666666667,930,221 +8993,149.88333333333333,930,221 +8994,149.9,930,221 +8995,149.91666666666666,935,221 +8996,149.93333333333334,943,223 +8997,149.95,954,224 +8998,149.96666666666667,968,226 +8999,149.98333333333332,985,228 +9000,150.0,1004,231 +9001,150.01666666666665,1026,233 +9002,150.03333333333333,1050,235 +9003,150.05,1077,238 +9004,150.06666666666666,1106,241 +9005,150.08333333333334,1137,243 +9006,150.1,1170,245 +9007,150.11666666666667,1204,246 +9008,150.13333333333333,1240,248 +9009,150.15,1278,249 +9010,150.16666666666666,1317,249 +9011,150.18333333333334,1356,249 +9012,150.2,1394,248 +9013,150.21666666666667,1433,247 +9014,150.23333333333332,1474,245 +9015,150.25,1514,242 +9016,150.26666666666665,1553,239 +9017,150.28333333333333,1592,236 +9018,150.3,1630,232 +9019,150.31666666666666,1667,228 +9020,150.33333333333334,1702,223 +9021,150.35,1735,218 +9022,150.36666666666667,1767,214 +9023,150.38333333333333,1797,209 +9024,150.4,1824,204 +9025,150.41666666666666,1849,199 +9026,150.43333333333334,1872,195 +9027,150.45,1892,191 +9028,150.46666666666667,1909,187 +9029,150.48333333333332,1924,184 +9030,150.5,1935,181 +9031,150.51666666666665,1944,179 +9032,150.53333333333333,1950,178 +9033,150.55,1950,178 +9034,150.56666666666666,1950,178 +9035,150.58333333333334,1948,179 +9036,150.6,1941,181 +9037,150.61666666666667,1932,183 +9038,150.63333333333333,1919,185 +9039,150.65,1904,189 +9040,150.66666666666666,1886,193 +9041,150.68333333333334,1865,197 +9042,150.7,1841,202 +9043,150.71666666666667,1815,206 +9044,150.73333333333332,1787,212 +9045,150.75,1757,216 +9046,150.76666666666665,1724,222 +9047,150.78333333333333,1690,226 +9048,150.8,1655,231 +9049,150.81666666666666,1618,235 +9050,150.83333333333334,1580,239 +9051,150.85,1541,242 +9052,150.86666666666667,1502,245 +9053,150.88333333333333,1461,247 +9054,150.9,1421,249 +9055,150.91666666666666,1382,251 +9056,150.93333333333334,1343,251 +9057,150.95,1305,251 +9058,150.96666666666667,1267,250 +9059,150.98333333333332,1230,249 +9060,151.0,1194,247 +9061,151.01666666666665,1160,245 +9062,151.03333333333333,1128,243 +9063,151.05,1098,241 +9064,151.06666666666666,1069,238 +9065,151.08333333333334,1044,236 +9066,151.1,1020,233 +9067,151.11666666666667,999,231 +9068,151.13333333333333,981,228 +9069,151.15,965,226 +9070,151.16666666666666,952,225 +9071,151.18333333333334,942,223 +9072,151.2,935,222 +9073,151.21666666666667,931,221 +9074,151.23333333333332,931,221 +9075,151.25,931,221 +9076,151.26666666666665,936,222 +9077,151.28333333333333,944,223 +9078,151.3,954,224 +9079,151.31666666666666,968,226 +9080,151.33333333333334,984,228 +9081,151.35,1003,230 +9082,151.36666666666667,1025,233 +9083,151.38333333333333,1049,235 +9084,151.4,1075,238 +9085,151.41666666666666,1104,240 +9086,151.43333333333334,1135,242 +9087,151.45,1167,245 +9088,151.46666666666667,1202,246 +9089,151.48333333333332,1237,248 +9090,151.5,1274,249 +9091,151.51666666666665,1313,249 +9092,151.53333333333333,1351,249 +9093,151.55,1390,249 +9094,151.56666666666666,1429,247 +9095,151.58333333333334,1471,245 +9096,151.6,1510,243 +9097,151.61666666666667,1550,240 +9098,151.63333333333333,1588,236 +9099,151.65,1626,233 +9100,151.66666666666666,1662,228 +9101,151.68333333333334,1697,224 +9102,151.7,1731,219 +9103,151.71666666666667,1763,214 +9104,151.73333333333332,1793,209 +9105,151.75,1821,204 +9106,151.76666666666665,1846,199 +9107,151.78333333333333,1869,195 +9108,151.8,1889,191 +9109,151.81666666666666,1907,188 +9110,151.83333333333334,1921,184 +9111,151.85,1933,182 +9112,151.86666666666667,1942,180 +9113,151.88333333333333,1947,179 +9114,151.9,1947,179 +9115,151.91666666666666,1947,179 +9116,151.93333333333334,1947,179 +9117,151.95,1940,180 +9118,151.96666666666667,1931,183 +9119,151.98333333333332,1919,185 +9120,152.0,1904,189 +9121,152.01666666666665,1886,193 +9122,152.03333333333333,1865,197 +9123,152.05,1841,201 +9124,152.06666666666666,1816,206 +9125,152.08333333333334,1788,211 +9126,152.1,1758,216 +9127,152.11666666666667,1726,221 +9128,152.13333333333333,1692,226 +9129,152.15,1657,230 +9130,152.16666666666666,1621,234 +9131,152.18333333333334,1583,238 +9132,152.2,1544,242 +9133,152.21666666666667,1505,244 +9134,152.23333333333332,1465,247 +9135,152.25,1424,249 +9136,152.26666666666665,1386,250 +9137,152.28333333333333,1347,250 +9138,152.3,1308,250 +9139,152.31666666666666,1270,250 +9140,152.33333333333334,1234,249 +9141,152.35,1198,247 +9142,152.36666666666667,1164,245 +9143,152.38333333333333,1131,243 +9144,152.4,1102,241 +9145,152.41666666666666,1073,238 +9146,152.43333333333334,1047,236 +9147,152.45,1023,233 +9148,152.46666666666667,1002,230 +9149,152.48333333333332,983,228 +9150,152.5,967,226 +9151,152.51666666666665,954,224 +9152,152.53333333333333,944,223 +9153,152.55,937,221 +9154,152.56666666666666,932,221 +9155,152.58333333333334,932,221 +9156,152.6,932,221 +9157,152.61666666666667,937,221 +9158,152.63333333333333,944,222 +9159,152.65,955,224 +9160,152.66666666666666,968,225 +9161,152.68333333333334,984,227 +9162,152.7,1003,230 +9163,152.71666666666667,1024,232 +9164,152.73333333333332,1048,235 +9165,152.75,1074,237 +9166,152.76666666666665,1103,240 +9167,152.78333333333333,1133,242 +9168,152.8,1165,244 +9169,152.81666666666666,1200,246 +9170,152.83333333333334,1236,247 +9171,152.85,1272,248 +9172,152.86666666666667,1310,248 +9173,152.88333333333333,1349,248 +9174,152.9,1387,248 +9175,152.91666666666666,1426,247 +9176,152.93333333333334,1467,245 +9177,152.95,1507,242 +9178,152.96666666666667,1546,239 +9179,152.98333333333332,1585,236 +9180,153.0,1622,232 +9181,153.01666666666665,1659,228 +9182,153.03333333333333,1694,223 +9183,153.05,1728,219 +9184,153.06666666666666,1760,215 +9185,153.08333333333334,1789,209 +9186,153.1,1817,205 +9187,153.11666666666667,1843,200 +9188,153.13333333333333,1865,196 +9189,153.15,1886,192 +9190,153.16666666666666,1904,188 +9191,153.18333333333334,1919,185 +9192,153.2,1930,183 +9193,153.21666666666667,1940,180 +9194,153.23333333333332,1946,179 +9195,153.25,1946,179 +9196,153.26666666666665,1946,179 +9197,153.28333333333333,1945,180 +9198,153.3,1939,181 +9199,153.31666666666666,1930,183 +9200,153.33333333333334,1918,186 +9201,153.35,1903,189 +9202,153.36666666666667,1886,193 +9203,153.38333333333333,1865,197 +9204,153.4,1843,202 +9205,153.41666666666666,1817,206 +9206,153.43333333333334,1789,211 +9207,153.45,1760,216 +9208,153.46666666666667,1728,221 +9209,153.48333333333332,1694,225 +9210,153.5,1659,230 +9211,153.51666666666665,1623,234 +9212,153.53333333333333,1585,237 +9213,153.55,1547,241 +9214,153.56666666666666,1508,244 +9215,153.58333333333334,1468,246 +9216,153.6,1428,248 +9217,153.61666666666667,1388,250 +9218,153.63333333333333,1350,250 +9219,153.65,1312,250 +9220,153.66666666666666,1274,250 +9221,153.68333333333334,1237,249 +9222,153.7,1201,247 +9223,153.71666666666667,1167,246 +9224,153.73333333333332,1135,243 +9225,153.75,1105,241 +9226,153.76666666666665,1076,238 +9227,153.78333333333333,1050,236 +9228,153.8,1026,233 +9229,153.81666666666666,1005,231 +9230,153.83333333333334,986,228 +9231,153.85,970,226 +9232,153.86666666666667,957,224 +9233,153.88333333333333,946,223 +9234,153.9,938,221 +9235,153.91666666666666,934,221 +9236,153.93333333333334,934,221 +9237,153.95,934,221 +9238,153.96666666666667,937,221 +9239,153.98333333333332,945,222 +9240,154.0,955,223 +9241,154.01666666666665,968,225 +9242,154.03333333333333,984,227 +9243,154.05,1002,229 +9244,154.06666666666666,1024,232 +9245,154.08333333333334,1047,234 +9246,154.1,1073,237 +9247,154.11666666666667,1101,239 +9248,154.13333333333333,1132,241 +9249,154.15,1164,243 +9250,154.16666666666666,1197,245 +9251,154.18333333333334,1233,247 +9252,154.2,1270,248 +9253,154.21666666666667,1308,248 +9254,154.23333333333332,1346,248 +9255,154.25,1384,248 +9256,154.26666666666665,1423,247 +9257,154.28333333333333,1464,245 +9258,154.3,1504,243 +9259,154.31666666666666,1543,240 +9260,154.33333333333334,1582,237 +9261,154.35,1619,232 +9262,154.36666666666667,1656,229 +9263,154.38333333333333,1691,224 +9264,154.4,1724,219 +9265,154.41666666666666,1756,215 +9266,154.43333333333334,1786,210 +9267,154.45,1814,205 +9268,154.46666666666667,1840,201 +9269,154.48333333333332,1863,196 +9270,154.5,1883,192 +9271,154.51666666666665,1901,189 +9272,154.53333333333333,1916,185 +9273,154.55,1928,183 +9274,154.56666666666666,1938,181 +9275,154.58333333333334,1944,180 +9276,154.6,1945,180 +9277,154.61666666666667,1945,180 +9278,154.63333333333333,1945,180 +9279,154.65,1939,181 +9280,154.66666666666666,1930,183 +9281,154.68333333333334,1918,186 +9282,154.7,1904,189 +9283,154.71666666666667,1886,193 +9284,154.73333333333332,1866,197 +9285,154.75,1843,201 +9286,154.76666666666665,1818,206 +9287,154.78333333333333,1791,211 +9288,154.8,1761,216 +9289,154.81666666666666,1730,220 +9290,154.83333333333334,1696,225 +9291,154.85,1661,230 +9292,154.86666666666667,1625,234 +9293,154.88333333333333,1588,237 +9294,154.9,1549,241 +9295,154.91666666666666,1511,244 +9296,154.93333333333334,1471,246 +9297,154.95,1431,248 +9298,154.96666666666667,1392,250 +9299,154.98333333333332,1353,250 +9300,155.0,1315,250 +9301,155.01666666666665,1277,250 +9302,155.03333333333333,1240,249 +9303,155.05,1205,247 +9304,155.06666666666666,1171,246 +9305,155.08333333333334,1139,243 +9306,155.1,1108,241 +9307,155.11666666666667,1079,239 +9308,155.13333333333333,1053,236 +9309,155.15,1029,234 +9310,155.16666666666666,1008,231 +9311,155.18333333333334,989,228 +9312,155.2,973,226 +9313,155.21666666666667,959,224 +9314,155.23333333333332,948,223 +9315,155.25,940,221 +9316,155.26666666666665,936,221 +9317,155.28333333333333,936,221 +9318,155.3,936,221 +9319,155.31666666666666,939,221 +9320,155.33333333333334,946,222 +9321,155.35,956,223 +9322,155.36666666666667,968,225 +9323,155.38333333333333,984,227 +9324,155.4,1002,229 +9325,155.41666666666666,1023,231 +9326,155.43333333333334,1047,234 +9327,155.45,1072,237 +9328,155.46666666666667,1100,239 +9329,155.48333333333332,1130,241 +9330,155.5,1162,243 +9331,155.51666666666665,1196,245 +9332,155.53333333333333,1231,247 +9333,155.55,1268,248 +9334,155.56666666666666,1305,248 +9335,155.58333333333334,1343,248 +9336,155.6,1381,248 +9337,155.61666666666667,1420,247 +9338,155.63333333333333,1461,244 +9339,155.65,1500,242 +9340,155.66666666666666,1540,239 +9341,155.68333333333334,1578,237 +9342,155.7,1616,233 +9343,155.71666666666667,1652,229 +9344,155.73333333333332,1687,224 +9345,155.75,1721,220 +9346,155.76666666666665,1753,215 +9347,155.78333333333333,1783,210 +9348,155.8,1811,206 +9349,155.81666666666666,1836,201 +9350,155.83333333333334,1860,197 +9351,155.85,1881,193 +9352,155.86666666666667,1898,189 +9353,155.88333333333333,1914,186 +9354,155.9,1926,183 +9355,155.91666666666666,1936,181 +9356,155.93333333333334,1942,180 +9357,155.95,1943,179 +9358,155.96666666666667,1943,179 +9359,155.98333333333332,1943,179 +9360,156.0,1938,181 +9361,156.01666666666665,1929,183 +9362,156.03333333333333,1918,186 +9363,156.05,1903,189 +9364,156.06666666666666,1886,193 +9365,156.08333333333334,1866,197 +9366,156.1,1844,201 +9367,156.11666666666667,1819,206 +9368,156.13333333333333,1792,211 +9369,156.15,1762,215 +9370,156.16666666666666,1731,220 +9371,156.18333333333334,1698,225 +9372,156.2,1663,230 +9373,156.21666666666667,1627,234 +9374,156.23333333333332,1590,237 +9375,156.25,1552,241 +9376,156.26666666666665,1513,244 +9377,156.28333333333333,1474,246 +9378,156.3,1434,248 +9379,156.31666666666666,1395,250 +9380,156.33333333333334,1357,250 +9381,156.35,1318,250 +9382,156.36666666666667,1281,250 +9383,156.38333333333333,1244,249 +9384,156.4,1208,248 +9385,156.41666666666666,1174,246 +9386,156.43333333333334,1142,243 +9387,156.45,1111,241 +9388,156.46666666666667,1082,239 +9389,156.48333333333332,1056,236 +9390,156.5,1032,234 +9391,156.51666666666665,1010,231 +9392,156.53333333333333,991,229 +9393,156.55,975,227 +9394,156.56666666666666,961,224 +9395,156.58333333333334,950,223 +9396,156.6,942,222 +9397,156.61666666666667,937,221 +9398,156.63333333333333,937,221 +9399,156.65,937,221 +9400,156.66666666666666,940,221 +9401,156.68333333333334,947,222 +9402,156.7,956,223 +9403,156.71666666666667,968,225 +9404,156.73333333333332,984,227 +9405,156.75,1002,230 +9406,156.76666666666665,1022,232 +9407,156.78333333333333,1046,234 +9408,156.8,1071,237 +9409,156.81666666666666,1099,239 +9410,156.83333333333334,1128,241 +9411,156.85,1160,243 +9412,156.86666666666667,1194,245 +9413,156.88333333333333,1229,247 +9414,156.9,1265,248 +9415,156.91666666666666,1302,248 +9416,156.93333333333334,1341,248 +9417,156.95,1378,248 +9418,156.96666666666667,1417,247 +9419,156.98333333333332,1457,245 +9420,157.0,1497,243 +9421,157.01666666666665,1536,240 +9422,157.03333333333333,1574,237 +9423,157.05,1612,233 +9424,157.06666666666666,1648,230 +9425,157.08333333333334,1684,225 +9426,157.1,1718,221 +9427,157.11666666666667,1750,216 +9428,157.13333333333333,1780,211 +9429,157.15,1808,207 +9430,157.16666666666666,1833,202 +9431,157.18333333333334,1857,198 +9432,157.2,1878,193 +9433,157.21666666666667,1895,190 +9434,157.23333333333332,1911,187 +9435,157.25,1923,184 +9436,157.26666666666665,1933,181 +9437,157.28333333333333,1940,180 +9438,157.3,1942,180 +9439,157.31666666666666,1942,180 +9440,157.33333333333334,1942,180 +9441,157.35,1937,182 +9442,157.36666666666667,1928,184 +9443,157.38333333333333,1917,186 +9444,157.4,1903,189 +9445,157.41666666666666,1886,193 +9446,157.43333333333334,1866,197 +9447,157.45,1845,201 +9448,157.46666666666667,1820,206 +9449,157.48333333333332,1793,211 +9450,157.5,1764,216 +9451,157.51666666666665,1733,220 +9452,157.53333333333333,1700,225 +9453,157.55,1666,229 +9454,157.56666666666666,1630,233 +9455,157.58333333333334,1593,237 +9456,157.6,1555,241 +9457,157.61666666666667,1516,244 +9458,157.63333333333333,1477,246 +9459,157.65,1437,248 +9460,157.66666666666666,1398,249 +9461,157.68333333333334,1359,250 +9462,157.7,1321,250 +9463,157.71666666666667,1284,250 +9464,157.73333333333332,1247,249 +9465,157.75,1212,248 +9466,157.76666666666665,1177,246 +9467,157.78333333333333,1145,244 +9468,157.8,1114,242 +9469,157.81666666666666,1086,239 +9470,157.83333333333334,1060,237 +9471,157.85,1035,234 +9472,157.86666666666667,1013,232 +9473,157.88333333333333,994,229 +9474,157.9,978,227 +9475,157.91666666666666,964,225 +9476,157.93333333333334,953,224 +9477,157.95,944,222 +9478,157.96666666666667,940,222 +9479,157.98333333333332,940,222 +9480,158.0,940,222 +9481,158.01666666666665,941,222 +9482,158.03333333333333,948,223 +9483,158.05,957,224 +9484,158.06666666666666,969,225 +9485,158.08333333333334,984,227 +9486,158.1,1002,230 +9487,158.11666666666667,1022,232 +9488,158.13333333333333,1045,234 +9489,158.15,1070,237 +9490,158.16666666666666,1098,239 +9491,158.18333333333334,1127,241 +9492,158.2,1159,243 +9493,158.21666666666667,1192,245 +9494,158.23333333333332,1226,247 +9495,158.25,1263,248 +9496,158.26666666666665,1300,249 +9497,158.28333333333333,1338,249 +9498,158.3,1376,249 +9499,158.31666666666666,1414,247 +9500,158.33333333333334,1454,245 +9501,158.35,1494,243 +9502,158.36666666666667,1533,241 +9503,158.38333333333333,1571,237 +9504,158.4,1608,234 +9505,158.41666666666666,1645,230 +9506,158.43333333333334,1680,226 +9507,158.45,1714,221 +9508,158.46666666666667,1746,217 +9509,158.48333333333332,1776,212 +9510,158.5,1804,207 +9511,158.51666666666665,1830,203 +9512,158.53333333333333,1854,199 +9513,158.55,1875,194 +9514,158.56666666666666,1893,191 +9515,158.58333333333334,1909,188 +9516,158.6,1921,185 +9517,158.61666666666667,1931,183 +9518,158.63333333333333,1938,181 +9519,158.65,1941,181 +9520,158.66666666666666,1941,181 +9521,158.68333333333334,1941,181 +9522,158.7,1936,182 +9523,158.71666666666667,1928,184 +9524,158.73333333333332,1916,186 +9525,158.75,1903,190 +9526,158.76666666666665,1886,193 +9527,158.78333333333333,1867,197 +9528,158.8,1845,201 +9529,158.81666666666666,1820,206 +9530,158.83333333333334,1794,211 +9531,158.85,1765,216 +9532,158.86666666666667,1734,220 +9533,158.88333333333333,1702,225 +9534,158.9,1668,230 +9535,158.91666666666666,1632,234 +9536,158.93333333333334,1595,238 +9537,158.95,1557,241 +9538,158.96666666666667,1519,244 +9539,158.98333333333332,1480,247 +9540,159.0,1440,248 +9541,159.01666666666665,1401,250 +9542,159.03333333333333,1363,251 +9543,159.05,1325,251 +9544,159.06666666666666,1287,251 +9545,159.08333333333334,1251,250 +9546,159.1,1215,248 +9547,159.11666666666667,1181,247 +9548,159.13333333333333,1148,245 +9549,159.15,1118,242 +9550,159.16666666666666,1089,240 +9551,159.18333333333334,1063,238 +9552,159.2,1038,235 +9553,159.21666666666667,1016,232 +9554,159.23333333333332,997,230 +9555,159.25,980,228 +9556,159.26666666666665,966,226 +9557,159.28333333333333,955,224 +9558,159.3,947,223 +9559,159.31666666666666,941,222 +9560,159.33333333333334,941,222 +9561,159.35,941,222 +9562,159.36666666666667,942,222 +9563,159.38333333333333,949,223 +9564,159.4,958,224 +9565,159.41666666666666,970,226 +9566,159.43333333333334,985,228 +9567,159.45,1002,229 +9568,159.46666666666667,1022,232 +9569,159.48333333333332,1045,234 +9570,159.5,1070,237 +9571,159.51666666666665,1097,239 +9572,159.53333333333333,1126,242 +9573,159.55,1157,243 +9574,159.56666666666666,1190,245 +9575,159.58333333333334,1225,247 +9576,159.6,1262,248 +9577,159.61666666666667,1298,249 +9578,159.63333333333333,1336,249 +9579,159.65,1373,249 +9580,159.66666666666666,1412,248 +9581,159.68333333333334,1452,246 +9582,159.7,1491,244 +9583,159.71666666666667,1530,241 +9584,159.73333333333332,1568,238 +9585,159.75,1605,234 +9586,159.76666666666665,1642,231 +9587,159.78333333333333,1677,227 +9588,159.8,1711,222 +9589,159.81666666666666,1743,218 +9590,159.83333333333334,1773,213 +9591,159.85,1801,208 +9592,159.86666666666667,1827,204 +9593,159.88333333333333,1851,199 +9594,159.9,1872,195 +9595,159.91666666666666,1891,191 +9596,159.93333333333334,1906,188 +9597,159.95,1919,186 +9598,159.96666666666667,1929,183 +9599,159.98333333333332,1936,182 +9600,160.0,1939,182 +9601,160.01666666666665,1939,182 +9602,160.03333333333333,1939,182 +9603,160.05,1935,183 +9604,160.06666666666666,1926,185 +9605,160.08333333333334,1916,187 +9606,160.1,1902,190 +9607,160.11666666666667,1886,193 +9608,160.13333333333333,1867,198 +9609,160.15,1845,202 +9610,160.16666666666666,1821,206 +9611,160.18333333333334,1795,211 +9612,160.2,1766,216 +9613,160.21666666666667,1735,221 +9614,160.23333333333332,1703,226 +9615,160.25,1669,230 +9616,160.26666666666665,1634,234 +9617,160.28333333333333,1597,238 +9618,160.3,1560,241 +9619,160.31666666666666,1521,244 +9620,160.33333333333334,1483,247 +9621,160.35,1444,248 +9622,160.36666666666667,1404,250 +9623,160.38333333333333,1366,251 +9624,160.4,1329,251 +9625,160.41666666666666,1290,251 +9626,160.43333333333334,1254,250 +9627,160.45,1218,249 +9628,160.46666666666667,1184,247 +9629,160.48333333333332,1152,245 +9630,160.5,1121,243 +9631,160.51666666666665,1092,240 +9632,160.53333333333333,1066,238 +9633,160.55,1041,235 +9634,160.56666666666666,1019,233 +9635,160.58333333333334,1000,230 +9636,160.6,983,228 +9637,160.61666666666667,968,226 +9638,160.63333333333333,957,224 +9639,160.65,948,223 +9640,160.66666666666666,943,222 +9641,160.68333333333334,943,222 +9642,160.7,943,222 +9643,160.71666666666667,943,222 +9644,160.73333333333332,949,223 +9645,160.75,958,224 +9646,160.76666666666665,970,226 +9647,160.78333333333333,984,228 +9648,160.8,1002,230 +9649,160.81666666666666,1021,232 +9650,160.83333333333334,1044,234 +9651,160.85,1069,237 +9652,160.86666666666667,1096,239 +9653,160.88333333333333,1125,241 +9654,160.9,1156,244 +9655,160.91666666666666,1188,245 +9656,160.93333333333334,1223,247 +9657,160.95,1259,248 +9658,160.96666666666667,1295,249 +9659,160.98333333333332,1333,249 +9660,161.0,1370,249 +9661,161.01666666666665,1409,248 +9662,161.03333333333333,1448,246 +9663,161.05,1488,244 +9664,161.06666666666666,1527,242 +9665,161.08333333333334,1564,239 +9666,161.1,1602,235 +9667,161.11666666666667,1639,232 +9668,161.13333333333333,1673,227 +9669,161.15,1707,223 +9670,161.16666666666666,1739,219 +9671,161.18333333333334,1769,214 +9672,161.2,1798,209 +9673,161.21666666666667,1824,205 +9674,161.23333333333332,1847,200 +9675,161.25,1869,196 +9676,161.26666666666665,1887,192 +9677,161.28333333333333,1903,189 +9678,161.3,1916,187 +9679,161.31666666666666,1927,185 +9680,161.33333333333334,1934,183 +9681,161.35,1938,182 +9682,161.36666666666667,1938,182 +9683,161.38333333333333,1938,182 +9684,161.4,1933,184 +9685,161.41666666666666,1925,186 +9686,161.43333333333334,1915,188 +9687,161.45,1902,191 +9688,161.46666666666667,1885,194 +9689,161.48333333333332,1867,198 +9690,161.5,1846,202 +9691,161.51666666666665,1822,207 +9692,161.53333333333333,1795,211 +9693,161.55,1767,216 +9694,161.56666666666666,1737,220 +9695,161.58333333333334,1705,225 +9696,161.6,1671,230 +9697,161.61666666666667,1636,234 +9698,161.63333333333333,1600,238 +9699,161.65,1562,241 +9700,161.66666666666666,1525,244 +9701,161.68333333333334,1486,247 +9702,161.7,1447,249 +9703,161.71666666666667,1408,250 +9704,161.73333333333332,1369,251 +9705,161.75,1333,251 +9706,161.76666666666665,1294,251 +9707,161.78333333333333,1258,250 +9708,161.8,1223,249 +9709,161.81666666666666,1188,247 +9710,161.83333333333334,1156,245 +9711,161.85,1125,243 +9712,161.86666666666667,1096,240 +9713,161.88333333333333,1069,238 +9714,161.9,1045,236 +9715,161.91666666666666,1022,233 +9716,161.93333333333334,1003,231 +9717,161.95,986,228 +9718,161.96666666666667,972,226 +9719,161.98333333333332,960,225 +9720,162.0,951,223 +9721,162.01666666666665,945,222 +9722,162.03333333333333,945,222 +9723,162.05,945,222 +9724,162.06666666666666,945,222 +9725,162.08333333333334,951,223 +9726,162.1,960,224 +9727,162.11666666666667,971,225 +9728,162.13333333333333,985,227 +9729,162.15,1002,229 +9730,162.16666666666666,1022,231 +9731,162.18333333333334,1044,234 +9732,162.2,1069,236 +9733,162.21666666666667,1095,239 +9734,162.23333333333332,1124,241 +9735,162.25,1155,243 +9736,162.26666666666665,1187,245 +9737,162.28333333333333,1221,247 +9738,162.3,1257,248 +9739,162.31666666666666,1293,249 +9740,162.33333333333334,1332,249 +9741,162.35,1368,249 +9742,162.36666666666667,1406,248 +9743,162.38333333333333,1446,246 +9744,162.4,1485,244 +9745,162.41666666666666,1524,242 +9746,162.43333333333334,1562,239 +9747,162.45,1599,236 +9748,162.46666666666667,1636,232 +9749,162.48333333333332,1671,228 +9750,162.5,1705,224 +9751,162.51666666666665,1737,219 +9752,162.53333333333333,1767,215 +9753,162.55,1795,210 +9754,162.56666666666666,1821,206 +9755,162.58333333333334,1845,201 +9756,162.6,1866,197 +9757,162.61666666666667,1885,194 +9758,162.63333333333333,1901,191 +9759,162.65,1914,188 +9760,162.66666666666666,1925,186 +9761,162.68333333333334,1932,184 +9762,162.7,1937,183 +9763,162.71666666666667,1937,183 +9764,162.73333333333332,1937,183 +9765,162.75,1932,184 +9766,162.76666666666665,1925,186 +9767,162.78333333333333,1915,188 +9768,162.8,1902,191 +9769,162.81666666666666,1886,195 +9770,162.83333333333334,1867,198 +9771,162.85,1846,202 +9772,162.86666666666667,1823,207 +9773,162.88333333333333,1797,211 +9774,162.9,1769,216 +9775,162.91666666666666,1739,221 +9776,162.93333333333334,1707,225 +9777,162.95,1674,230 +9778,162.96666666666667,1639,234 +9779,162.98333333333332,1602,237 +9780,163.0,1566,241 +9781,163.01666666666665,1527,244 +9782,163.03333333333333,1489,247 +9783,163.05,1450,248 +9784,163.06666666666666,1411,250 +9785,163.08333333333334,1373,251 +9786,163.1,1335,251 +9787,163.11666666666667,1298,251 +9788,163.13333333333333,1262,250 +9789,163.15,1226,248 +9790,163.16666666666666,1192,247 +9791,163.18333333333334,1159,245 +9792,163.2,1128,243 +9793,163.21666666666667,1099,241 +9794,163.23333333333332,1073,238 +9795,163.25,1048,236 +9796,163.26666666666665,1026,233 +9797,163.28333333333333,1006,230 +9798,163.3,989,229 +9799,163.31666666666666,975,226 +9800,163.33333333333334,963,225 +9801,163.35,954,223 +9802,163.36666666666667,948,222 +9803,163.38333333333333,947,222 +9804,163.4,947,222 +9805,163.41666666666666,947,222 +9806,163.43333333333334,952,223 +9807,163.45,961,224 +9808,163.46666666666667,972,226 +9809,163.48333333333332,986,227 +9810,163.5,1003,229 +9811,163.51666666666665,1022,231 +9812,163.53333333333333,1044,234 +9813,163.55,1068,236 +9814,163.56666666666666,1095,239 +9815,163.58333333333334,1123,241 +9816,163.6,1154,243 +9817,163.61666666666667,1186,245 +9818,163.63333333333333,1220,247 +9819,163.65,1256,248 +9820,163.66666666666666,1291,249 +9821,163.68333333333334,1330,249 +9822,163.7,1367,249 +9823,163.71666666666667,1405,248 +9824,163.73333333333332,1444,246 +9825,163.75,1483,245 +9826,163.76666666666665,1521,242 +9827,163.78333333333333,1559,239 +9828,163.8,1597,236 +9829,163.81666666666666,1633,232 +9830,163.83333333333334,1668,228 +9831,163.85,1702,224 +9832,163.86666666666667,1734,220 +9833,163.88333333333333,1764,215 +9834,163.9,1793,211 +9835,163.91666666666666,1819,206 +9836,163.93333333333334,1843,202 +9837,163.95,1864,198 +9838,163.96666666666667,1883,194 +9839,163.98333333333332,1899,191 +9840,164.0,1913,188 +9841,164.01666666666665,1923,186 +9842,164.03333333333333,1931,185 +9843,164.05,1936,184 +9844,164.06666666666666,1936,184 +9845,164.08333333333334,1936,184 +9846,164.1,1932,185 +9847,164.11666666666667,1925,186 +9848,164.13333333333333,1915,188 +9849,164.15,1902,191 +9850,164.16666666666666,1886,195 +9851,164.18333333333334,1868,198 +9852,164.2,1847,203 +9853,164.21666666666667,1824,207 +9854,164.23333333333332,1798,211 +9855,164.25,1770,216 +9856,164.26666666666665,1741,221 +9857,164.28333333333333,1709,225 +9858,164.3,1675,230 +9859,164.31666666666666,1641,234 +9860,164.33333333333334,1605,238 +9861,164.35,1568,241 +9862,164.36666666666667,1530,244 +9863,164.38333333333333,1492,246 +9864,164.4,1453,248 +9865,164.41666666666666,1414,250 +9866,164.43333333333334,1375,251 +9867,164.45,1339,251 +9868,164.46666666666667,1301,251 +9869,164.48333333333332,1265,250 +9870,164.5,1230,249 +9871,164.51666666666665,1195,247 +9872,164.53333333333333,1163,245 +9873,164.55,1131,243 +9874,164.56666666666666,1103,241 +9875,164.58333333333334,1076,238 +9876,164.6,1051,236 +9877,164.61666666666667,1029,233 +9878,164.63333333333333,1009,231 +9879,164.65,992,228 +9880,164.66666666666666,977,226 +9881,164.68333333333334,965,224 +9882,164.7,956,223 +9883,164.71666666666667,950,222 +9884,164.73333333333332,949,222 +9885,164.75,949,222 +9886,164.76666666666665,949,222 +9887,164.78333333333333,954,223 +9888,164.8,962,224 +9889,164.81666666666666,973,225 +9890,164.83333333333334,987,227 +9891,164.85,1003,229 +9892,164.86666666666667,1022,231 +9893,164.88333333333333,1044,233 +9894,164.9,1068,236 +9895,164.91666666666666,1094,238 +9896,164.93333333333334,1122,241 +9897,164.95,1153,243 +9898,164.96666666666667,1185,245 +9899,164.98333333333332,1219,246 +9900,165.0,1254,247 +9901,165.01666666666665,1290,248 +9902,165.03333333333333,1328,248 +9903,165.05,1365,248 +9904,165.06666666666666,1403,248 +9905,165.08333333333334,1441,247 +9906,165.1,1481,245 +9907,165.11666666666667,1519,243 +9908,165.13333333333333,1557,240 +9909,165.15,1594,237 +9910,165.16666666666666,1630,233 +9911,165.18333333333334,1666,229 +9912,165.2,1699,225 +9913,165.21666666666667,1732,221 +9914,165.23333333333332,1762,216 +9915,165.25,1790,211 +9916,165.26666666666665,1816,207 +9917,165.28333333333333,1841,203 +9918,165.3,1862,199 +9919,165.31666666666666,1881,195 +9920,165.33333333333334,1897,192 +9921,165.35,1911,189 +9922,165.36666666666667,1921,187 +9923,165.38333333333333,1929,185 +9924,165.4,1934,185 +9925,165.41666666666666,1934,185 +9926,165.43333333333334,1934,185 +9927,165.45,1931,185 +9928,165.46666666666667,1924,187 +9929,165.48333333333332,1914,189 +9930,165.5,1901,192 +9931,165.51666666666665,1886,195 +9932,165.53333333333333,1868,199 +9933,165.55,1848,203 +9934,165.56666666666666,1825,207 +9935,165.58333333333334,1799,212 +9936,165.6,1771,216 +9937,165.61666666666667,1742,221 +9938,165.63333333333333,1710,225 +9939,165.65,1677,230 +9940,165.66666666666666,1643,234 +9941,165.68333333333334,1607,238 +9942,165.7,1570,241 +9943,165.71666666666667,1533,243 +9944,165.73333333333332,1494,246 +9945,165.75,1456,248 +9946,165.76666666666665,1416,250 +9947,165.78333333333333,1378,250 +9948,165.8,1342,250 +9949,165.81666666666666,1304,250 +9950,165.83333333333334,1268,250 +9951,165.85,1232,248 +9952,165.86666666666667,1198,247 +9953,165.88333333333333,1166,245 +9954,165.9,1135,243 +9955,165.91666666666666,1106,241 +9956,165.93333333333334,1079,238 +9957,165.95,1054,235 +9958,165.96666666666667,1032,233 +9959,165.98333333333332,1012,230 +9960,166.0,994,228 +9961,166.01666666666665,980,226 +9962,166.03333333333333,968,224 +9963,166.05,958,223 +9964,166.06666666666666,952,222 +9965,166.08333333333334,950,222 +9966,166.1,950,222 +9967,166.11666666666667,950,222 +9968,166.13333333333333,955,223 +9969,166.15,963,223 +9970,166.16666666666666,974,225 +9971,166.18333333333334,987,226 +9972,166.2,1003,228 +9973,166.21666666666667,1023,230 +9974,166.23333333333332,1044,233 +9975,166.25,1068,235 +9976,166.26666666666665,1094,238 +9977,166.28333333333333,1122,240 +9978,166.3,1152,242 +9979,166.31666666666666,1184,244 +9980,166.33333333333334,1218,245 +9981,166.35,1253,247 +9982,166.36666666666667,1289,248 +9983,166.38333333333333,1326,248 +9984,166.4,1363,248 +9985,166.41666666666666,1401,247 +9986,166.43333333333334,1439,246 +9987,166.45,1478,244 +9988,166.46666666666667,1516,242 +9989,166.48333333333332,1554,239 +9990,166.5,1592,236 +9991,166.51666666666665,1628,233 +9992,166.53333333333333,1663,229 +9993,166.55,1697,225 +9994,166.56666666666666,1729,220 +9995,166.58333333333334,1759,216 +9996,166.6,1788,212 +9997,166.61666666666667,1814,207 +9998,166.63333333333333,1838,203 +9999,166.65,1859,199 +10000,166.66666666666666,1879,196 +10001,166.68333333333334,1895,192 +10002,166.7,1909,190 +10003,166.71666666666667,1920,187 +10004,166.73333333333332,1927,186 +10005,166.75,1933,185 +10006,166.76666666666665,1933,185 +10007,166.78333333333333,1933,185 +10008,166.8,1930,186 +10009,166.81666666666666,1924,187 +10010,166.83333333333334,1914,189 +10011,166.85,1902,192 +10012,166.86666666666667,1887,195 +10013,166.88333333333333,1868,199 +10014,166.9,1848,203 +10015,166.91666666666666,1825,207 +10016,166.93333333333334,1800,211 +10017,166.95,1773,216 +10018,166.96666666666667,1743,220 +10019,166.98333333333332,1712,225 +10020,167.0,1679,229 +10021,167.01666666666665,1644,233 +10022,167.03333333333333,1608,237 +10023,167.05,1572,240 +10024,167.06666666666666,1535,243 +10025,167.08333333333334,1496,246 +10026,167.1,1457,248 +10027,167.11666666666667,1419,249 +10028,167.13333333333333,1381,250 +10029,167.15,1344,250 +10030,167.16666666666666,1307,250 +10031,167.18333333333334,1271,250 +10032,167.2,1235,248 +10033,167.21666666666667,1201,247 +10034,167.23333333333332,1168,245 +10035,167.25,1137,243 +10036,167.26666666666665,1108,240 +10037,167.28333333333333,1081,238 +10038,167.3,1056,236 +10039,167.31666666666666,1034,233 +10040,167.33333333333334,1014,230 +10041,167.35,997,228 +10042,167.36666666666667,981,226 +10043,167.38333333333333,969,225 +10044,167.4,960,223 +10045,167.41666666666666,953,222 +10046,167.43333333333334,951,221 +10047,167.45,951,221 +10048,167.46666666666667,951,221 +10049,167.48333333333332,956,222 +10050,167.5,964,223 +10051,167.51666666666665,974,224 +10052,167.53333333333333,987,226 +10053,167.55,1004,228 +10054,167.56666666666666,1022,230 +10055,167.58333333333334,1044,232 +10056,167.6,1067,235 +10057,167.61666666666667,1093,237 +10058,167.63333333333333,1121,239 +10059,167.65,1151,242 +10060,167.66666666666666,1182,244 +10061,167.68333333333334,1216,245 +10062,167.7,1250,246 +10063,167.71666666666667,1286,247 +10064,167.73333333333332,1324,248 +10065,167.75,1360,248 +10066,167.76666666666665,1398,248 +10067,167.78333333333333,1436,246 +10068,167.8,1475,244 +10069,167.81666666666666,1513,242 +10070,167.83333333333334,1551,239 +10071,167.85,1588,236 +10072,167.86666666666667,1624,233 +10073,167.88333333333333,1659,229 +10074,167.9,1693,225 +10075,167.91666666666666,1726,220 +10076,167.93333333333334,1756,216 +10077,167.95,1785,212 +10078,167.96666666666667,1811,207 +10079,167.98333333333332,1835,203 +10080,168.0,1857,199 +10081,168.01666666666665,1876,195 +10082,168.03333333333333,1892,192 +10083,168.05,1906,189 +10084,168.06666666666666,1917,187 +10085,168.08333333333334,1925,185 +10086,168.1,1930,184 +10087,168.11666666666667,1930,184 +10088,168.13333333333333,1930,184 +10089,168.15,1928,185 +10090,168.16666666666666,1922,187 +10091,168.18333333333334,1912,189 +10092,168.2,1900,191 +10093,168.21666666666667,1885,194 +10094,168.23333333333332,1867,198 +10095,168.25,1847,202 +10096,168.26666666666665,1824,205 +10097,168.28333333333333,1799,210 +10098,168.3,1772,215 +10099,168.31666666666666,1743,219 +10100,168.33333333333334,1712,223 +10101,168.35,1680,228 +10102,168.36666666666667,1645,232 +10103,168.38333333333333,1610,236 +10104,168.4,1574,239 +10105,168.41666666666666,1536,242 +10106,168.43333333333334,1498,244 +10107,168.45,1460,246 +10108,168.46666666666667,1421,248 +10109,168.48333333333332,1383,249 +10110,168.5,1347,249 +10111,168.51666666666665,1309,249 +10112,168.53333333333333,1273,248 +10113,168.55,1238,247 +10114,168.56666666666666,1203,246 +10115,168.58333333333334,1171,244 +10116,168.6,1140,242 +10117,168.61666666666667,1111,239 +10118,168.63333333333333,1084,237 +10119,168.65,1059,235 +10120,168.66666666666666,1036,232 +10121,168.68333333333334,1016,230 +10122,168.7,998,227 +10123,168.71666666666667,983,225 +10124,168.73333333333332,971,223 +10125,168.75,962,222 +10126,168.76666666666665,955,221 +10127,168.78333333333333,952,220 +10128,168.8,952,220 +10129,168.81666666666666,952,220 +10130,168.83333333333334,956,221 +10131,168.85,964,222 +10132,168.86666666666667,975,223 +10133,168.88333333333333,988,225 +10134,168.9,1003,227 +10135,168.91666666666666,1022,229 +10136,168.93333333333334,1043,231 +10137,168.95,1066,234 +10138,168.96666666666667,1092,236 +10139,168.98333333333332,1119,238 +10140,169.0,1149,240 +10141,169.01666666666665,1181,242 +10142,169.03333333333333,1214,244 +10143,169.05,1248,245 +10144,169.06666666666666,1284,246 +10145,169.08333333333334,1321,246 +10146,169.1,1358,246 +10147,169.11666666666667,1395,246 +10148,169.13333333333333,1433,244 +10149,169.15,1472,243 +10150,169.16666666666666,1510,240 +10151,169.18333333333334,1548,238 +10152,169.2,1585,234 +10153,169.21666666666667,1621,231 +10154,169.23333333333332,1656,227 +10155,169.25,1690,223 +10156,169.26666666666665,1722,219 +10157,169.28333333333333,1752,215 +10158,169.3,1781,210 +10159,169.31666666666666,1807,206 +10160,169.33333333333334,1832,201 +10161,169.35,1853,198 +10162,169.36666666666667,1872,194 +10163,169.38333333333333,1889,191 +10164,169.4,1903,188 +10165,169.41666666666666,1914,186 +10166,169.43333333333334,1922,184 +10167,169.45,1927,183 +10168,169.46666666666667,1927,183 +10169,169.48333333333332,1927,183 +10170,169.5,1926,184 +10171,169.51666666666665,1920,185 +10172,169.53333333333333,1910,187 +10173,169.55,1899,189 +10174,169.56666666666666,1884,193 +10175,169.58333333333334,1867,196 +10176,169.6,1847,200 +10177,169.61666666666667,1824,204 +10178,169.63333333333333,1799,209 +10179,169.65,1772,213 +10180,169.66666666666666,1743,218 +10181,169.68333333333334,1713,222 +10182,169.7,1680,226 +10183,169.71666666666667,1646,231 +10184,169.73333333333332,1611,234 +10185,169.75,1575,238 +10186,169.76666666666665,1538,241 +10187,169.78333333333333,1500,244 +10188,169.8,1462,245 +10189,169.81666666666666,1423,247 +10190,169.83333333333334,1385,248 +10191,169.85,1349,248 +10192,169.86666666666667,1312,248 +10193,169.88333333333333,1275,248 +10194,169.9,1240,247 +10195,169.91666666666666,1206,245 +10196,169.93333333333334,1174,244 +10197,169.95,1142,241 +10198,169.96666666666667,1113,239 +10199,169.98333333333332,1086,236 +10200,170.0,1061,234 +10201,170.01666666666665,1039,232 +10202,170.03333333333333,1018,229 +10203,170.05,1001,227 +10204,170.06666666666666,985,225 +10205,170.08333333333334,973,223 +10206,170.1,963,222 +10207,170.11666666666667,956,221 +10208,170.13333333333333,953,220 +10209,170.15,953,220 +10210,170.16666666666666,953,220 +10211,170.18333333333334,957,221 +10212,170.2,965,222 +10213,170.21666666666667,975,223 +10214,170.23333333333332,988,225 +10215,170.25,1004,227 +10216,170.26666666666665,1022,229 +10217,170.28333333333333,1043,231 +10218,170.3,1066,233 +10219,170.31666666666666,1091,235 +10220,170.33333333333334,1119,238 +10221,170.35,1148,240 +10222,170.36666666666667,1179,241 +10223,170.38333333333333,1212,243 +10224,170.4,1247,245 +10225,170.41666666666666,1282,246 +10226,170.43333333333334,1319,246 +10227,170.45,1356,246 +10228,170.46666666666667,1393,246 +10229,170.48333333333332,1431,244 +10230,170.5,1469,242 +10231,170.51666666666665,1508,240 +10232,170.53333333333333,1545,237 +10233,170.55,1582,234 +10234,170.56666666666666,1618,231 +10235,170.58333333333334,1654,227 +10236,170.6,1687,223 +10237,170.61666666666667,1719,219 +10238,170.63333333333333,1749,215 +10239,170.65,1778,210 +10240,170.66666666666666,1804,206 +10241,170.68333333333334,1829,202 +10242,170.7,1850,198 +10243,170.71666666666667,1870,194 +10244,170.73333333333332,1886,191 +10245,170.75,1900,188 +10246,170.76666666666665,1911,186 +10247,170.78333333333333,1920,184 +10248,170.8,1925,183 +10249,170.81666666666666,1925,183 +10250,170.83333333333334,1925,183 +10251,170.85,1925,184 +10252,170.86666666666667,1919,185 +10253,170.88333333333333,1909,187 +10254,170.9,1898,190 +10255,170.91666666666666,1883,193 +10256,170.93333333333334,1866,196 +10257,170.95,1846,200 +10258,170.96666666666667,1824,204 +10259,170.98333333333332,1799,209 +10260,171.0,1773,213 +10261,171.01666666666665,1744,218 +10262,171.03333333333333,1713,222 +10263,171.05,1681,226 +10264,171.06666666666666,1647,230 +10265,171.08333333333334,1612,234 +10266,171.1,1576,237 +10267,171.11666666666667,1540,240 +10268,171.13333333333333,1502,243 +10269,171.15,1464,245 +10270,171.16666666666666,1425,247 +10271,171.18333333333334,1388,248 +10272,171.2,1351,248 +10273,171.21666666666667,1315,248 +10274,171.23333333333332,1278,248 +10275,171.25,1243,246 +10276,171.26666666666665,1209,245 +10277,171.28333333333333,1176,243 +10278,171.3,1145,241 +10279,171.31666666666666,1116,239 +10280,171.33333333333334,1089,237 +10281,171.35,1064,234 +10282,171.36666666666667,1041,232 +10283,171.38333333333333,1021,229 +10284,171.4,1003,227 +10285,171.41666666666666,987,224 +10286,171.43333333333334,975,223 +10287,171.45,965,221 +10288,171.46666666666667,958,220 +10289,171.48333333333332,954,220 +10290,171.5,954,220 +10291,171.51666666666665,954,220 +10292,171.53333333333333,958,220 +10293,171.55,966,221 +10294,171.56666666666666,976,222 +10295,171.58333333333334,988,224 +10296,171.6,1003,226 +10297,171.61666666666667,1022,228 +10298,171.63333333333333,1042,230 +10299,171.65,1065,232 +10300,171.66666666666666,1090,235 +10301,171.68333333333334,1118,237 +10302,171.7,1147,239 +10303,171.71666666666667,1178,241 +10304,171.73333333333332,1211,243 +10305,171.75,1245,244 +10306,171.76666666666665,1280,245 +10307,171.78333333333333,1316,245 +10308,171.8,1353,245 +10309,171.81666666666666,1390,245 +10310,171.83333333333334,1428,244 +10311,171.85,1467,242 +10312,171.86666666666667,1505,240 +10313,171.88333333333333,1542,238 +10314,171.9,1579,235 +10315,171.91666666666666,1615,232 +10316,171.93333333333334,1650,228 +10317,171.95,1684,224 +10318,171.96666666666667,1716,220 +10319,171.98333333333332,1746,216 +10320,172.0,1775,211 +10321,172.01666666666665,1801,207 +10322,172.03333333333333,1825,203 +10323,172.05,1847,199 +10324,172.06666666666666,1867,195 +10325,172.08333333333334,1883,192 +10326,172.1,1897,189 +10327,172.11666666666667,1909,187 +10328,172.13333333333333,1918,185 +10329,172.15,1923,184 +10330,172.16666666666666,1923,184 +10331,172.18333333333334,1923,184 +10332,172.2,1923,185 +10333,172.21666666666667,1917,186 +10334,172.23333333333332,1908,188 +10335,172.25,1897,190 +10336,172.26666666666665,1882,193 +10337,172.28333333333333,1865,197 +10338,172.3,1846,201 +10339,172.31666666666666,1824,205 +10340,172.33333333333334,1800,209 +10341,172.35,1773,213 +10342,172.36666666666667,1745,218 +10343,172.38333333333333,1714,222 +10344,172.4,1682,226 +10345,172.41666666666666,1649,230 +10346,172.43333333333334,1614,234 +10347,172.45,1578,238 +10348,172.46666666666667,1541,241 +10349,172.48333333333332,1504,244 +10350,172.5,1465,246 +10351,172.51666666666665,1427,247 +10352,172.53333333333333,1390,248 +10353,172.55,1353,248 +10354,172.56666666666666,1316,248 +10355,172.58333333333334,1280,248 +10356,172.6,1244,247 +10357,172.61666666666667,1210,246 +10358,172.63333333333333,1178,244 +10359,172.65,1147,242 +10360,172.66666666666666,1118,240 +10361,172.68333333333334,1091,237 +10362,172.7,1066,234 +10363,172.71666666666667,1043,232 +10364,172.73333333333332,1023,229 +10365,172.75,1005,227 +10366,172.76666666666665,990,225 +10367,172.78333333333333,977,223 +10368,172.8,967,222 +10369,172.81666666666666,960,221 +10370,172.83333333333334,955,220 +10371,172.85,955,220 +10372,172.86666666666667,955,220 +10373,172.88333333333333,959,221 +10374,172.9,966,222 +10375,172.91666666666666,976,223 +10376,172.93333333333334,989,224 +10377,172.95,1004,226 +10378,172.96666666666667,1022,228 +10379,172.98333333333332,1042,230 +10380,173.0,1065,233 +10381,173.01666666666665,1090,235 +10382,173.03333333333333,1117,237 +10383,173.05,1146,240 +10384,173.06666666666666,1176,242 +10385,173.08333333333334,1209,243 +10386,173.1,1243,244 +10387,173.11666666666667,1278,246 +10388,173.13333333333333,1314,246 +10389,173.15,1351,246 +10390,173.16666666666666,1388,246 +10391,173.18333333333334,1425,245 +10392,173.2,1464,243 +10393,173.21666666666667,1501,241 +10394,173.23333333333332,1539,239 +10395,173.25,1576,236 +10396,173.26666666666665,1612,233 +10397,173.28333333333333,1647,229 +10398,173.3,1680,225 +10399,173.31666666666666,1712,221 +10400,173.33333333333334,1743,216 +10401,173.35,1771,212 +10402,173.36666666666667,1798,208 +10403,173.38333333333333,1822,204 +10404,173.4,1844,200 +10405,173.41666666666666,1864,196 +10406,173.43333333333334,1881,193 +10407,173.45,1895,190 +10408,173.46666666666667,1907,188 +10409,173.48333333333332,1915,186 +10410,173.5,1921,185 +10411,173.51666666666665,1921,185 +10412,173.53333333333333,1921,185 +10413,173.55,1921,185 +10414,173.56666666666666,1915,186 +10415,173.58333333333334,1907,188 +10416,173.6,1895,191 +10417,173.61666666666667,1881,194 +10418,173.63333333333333,1865,197 +10419,173.65,1845,201 +10420,173.66666666666666,1823,205 +10421,173.68333333333334,1799,209 +10422,173.7,1773,214 +10423,173.71666666666667,1745,218 +10424,173.73333333333332,1714,222 +10425,173.75,1682,227 +10426,173.76666666666665,1649,231 +10427,173.78333333333333,1615,234 +10428,173.8,1579,238 +10429,173.81666666666666,1542,241 +10430,173.83333333333334,1506,243 +10431,173.85,1467,245 +10432,173.86666666666667,1429,247 +10433,173.88333333333333,1392,248 +10434,173.9,1355,248 +10435,173.91666666666666,1319,248 +10436,173.93333333333334,1283,248 +10437,173.95,1248,247 +10438,173.96666666666667,1214,245 +10439,173.98333333333332,1181,243 +10440,174.0,1150,241 +10441,174.01666666666665,1121,239 +10442,174.03333333333333,1094,237 +10443,174.05,1069,234 +10444,174.06666666666666,1046,232 +10445,174.08333333333334,1026,230 +10446,174.1,1008,228 +10447,174.11666666666667,993,226 +10448,174.13333333333333,980,224 +10449,174.15,970,222 +10450,174.16666666666666,962,221 +10451,174.18333333333334,958,221 +10452,174.2,958,221 +10453,174.21666666666667,958,221 +10454,174.23333333333332,961,221 +10455,174.25,968,222 +10456,174.26666666666665,978,223 +10457,174.28333333333333,990,224 +10458,174.3,1005,226 +10459,174.31666666666666,1023,228 +10460,174.33333333333334,1043,231 +10461,174.35,1065,233 +10462,174.36666666666667,1090,235 +10463,174.38333333333333,1117,238 +10464,174.4,1145,240 +10465,174.41666666666666,1176,241 +10466,174.43333333333334,1208,243 +10467,174.45,1242,244 +10468,174.46666666666667,1277,245 +10469,174.48333333333332,1313,246 +10470,174.5,1349,246 +10471,174.51666666666665,1386,246 +10472,174.53333333333333,1423,245 +10473,174.55,1461,242 +10474,174.56666666666666,1500,241 +10475,174.58333333333334,1537,238 +10476,174.6,1573,235 +10477,174.61666666666667,1609,232 +10478,174.63333333333333,1644,228 +10479,174.65,1677,225 +10480,174.66666666666666,1710,220 +10481,174.68333333333334,1740,216 +10482,174.7,1769,212 +10483,174.71666666666667,1795,208 +10484,174.73333333333332,1819,204 +10485,174.75,1842,200 +10486,174.76666666666665,1861,196 +10487,174.78333333333333,1878,193 +10488,174.8,1893,190 +10489,174.81666666666666,1905,187 +10490,174.83333333333334,1913,186 +10491,174.85,1919,185 +10492,174.86666666666667,1920,185 +10493,174.88333333333333,1920,185 +10494,174.9,1920,185 +10495,174.91666666666666,1914,186 +10496,174.93333333333334,1906,188 +10497,174.95,1895,191 +10498,174.96666666666667,1881,194 +10499,174.98333333333332,1864,197 +10500,175.0,1845,200 +10501,175.01666666666665,1824,204 +10502,175.03333333333333,1800,209 +10503,175.05,1774,213 +10504,175.06666666666666,1746,217 +10505,175.08333333333334,1716,222 +10506,175.1,1684,226 +10507,175.11666666666667,1651,230 +10508,175.13333333333333,1617,234 +10509,175.15,1581,238 +10510,175.16666666666666,1545,241 +10511,175.18333333333334,1508,243 +10512,175.2,1471,245 +10513,175.21666666666667,1432,247 +10514,175.23333333333332,1395,248 +10515,175.25,1358,248 +10516,175.26666666666665,1321,248 +10517,175.28333333333333,1286,248 +10518,175.3,1251,247 +10519,175.31666666666666,1217,245 +10520,175.33333333333334,1184,243 +10521,175.35,1153,241 +10522,175.36666666666667,1124,239 +10523,175.38333333333333,1096,237 +10524,175.4,1071,234 +10525,175.41666666666666,1048,232 +10526,175.43333333333334,1028,229 +10527,175.45,1009,227 +10528,175.46666666666667,994,225 +10529,175.48333333333332,981,223 +10530,175.5,970,221 +10531,175.51666666666665,963,220 +10532,175.53333333333333,959,220 +10533,175.55,959,220 +10534,175.56666666666666,959,220 +10535,175.58333333333334,962,220 +10536,175.6,968,221 +10537,175.61666666666667,978,222 +10538,175.63333333333333,990,223 +10539,175.65,1005,225 +10540,175.66666666666666,1022,227 +10541,175.68333333333334,1042,230 +10542,175.7,1064,232 +10543,175.71666666666667,1089,234 +10544,175.73333333333332,1115,237 +10545,175.75,1144,239 +10546,175.76666666666665,1175,241 +10547,175.78333333333333,1207,242 +10548,175.8,1240,244 +10549,175.81666666666666,1275,245 +10550,175.83333333333334,1311,245 +10551,175.85,1347,245 +10552,175.86666666666667,1384,245 +10553,175.88333333333333,1421,244 +10554,175.9,1459,242 +10555,175.91666666666666,1497,241 +10556,175.93333333333334,1535,238 +10557,175.95,1571,235 +10558,175.96666666666667,1607,232 +10559,175.98333333333332,1642,228 +10560,176.0,1675,225 +10561,176.01666666666665,1707,221 +10562,176.03333333333333,1737,217 +10563,176.05,1766,213 +10564,176.06666666666666,1793,208 +10565,176.08333333333334,1817,204 +10566,176.1,1839,201 +10567,176.11666666666667,1859,197 +10568,176.13333333333333,1877,193 +10569,176.15,1891,190 +10570,176.16666666666666,1902,188 +10571,176.18333333333334,1912,186 +10572,176.2,1918,185 +10573,176.21666666666667,1918,185 +10574,176.23333333333332,1918,185 +10575,176.25,1918,185 +10576,176.26666666666665,1913,187 +10577,176.28333333333333,1905,189 +10578,176.3,1894,191 +10579,176.31666666666666,1881,194 +10580,176.33333333333334,1864,197 +10581,176.35,1845,201 +10582,176.36666666666667,1824,205 +10583,176.38333333333333,1800,209 +10584,176.4,1774,213 +10585,176.41666666666666,1746,217 +10586,176.43333333333334,1717,222 +10587,176.45,1685,226 +10588,176.46666666666667,1652,230 +10589,176.48333333333332,1618,234 +10590,176.5,1582,237 +10591,176.51666666666665,1546,240 +10592,176.53333333333333,1509,243 +10593,176.55,1472,245 +10594,176.56666666666666,1433,246 +10595,176.58333333333334,1396,247 +10596,176.6,1359,247 +10597,176.61666666666667,1324,247 +10598,176.63333333333333,1287,247 +10599,176.65,1252,246 +10600,176.66666666666666,1218,245 +10601,176.68333333333334,1186,243 +10602,176.7,1155,241 +10603,176.71666666666667,1126,239 +10604,176.73333333333332,1099,237 +10605,176.75,1074,234 +10606,176.76666666666665,1051,232 +10607,176.78333333333333,1030,229 +10608,176.8,1012,227 +10609,176.81666666666666,997,225 +10610,176.83333333333334,983,223 +10611,176.85,973,222 +10612,176.86666666666667,965,220 +10613,176.88333333333333,961,220 +10614,176.9,961,220 +10615,176.91666666666666,961,220 +10616,176.93333333333334,963,220 +10617,176.95,969,221 +10618,176.96666666666667,979,222 +10619,176.98333333333332,990,224 +10620,177.0,1005,225 +10621,177.01666666666665,1022,227 +10622,177.03333333333333,1042,229 +10623,177.05,1064,232 +10624,177.06666666666666,1089,234 +10625,177.08333333333334,1115,236 +10626,177.1,1143,238 +10627,177.11666666666667,1173,240 +10628,177.13333333333333,1205,242 +10629,177.15,1238,244 +10630,177.16666666666666,1273,244 +10631,177.18333333333334,1309,245 +10632,177.2,1345,245 +10633,177.21666666666667,1381,245 +10634,177.23333333333332,1418,244 +10635,177.25,1456,242 +10636,177.26666666666665,1494,240 +10637,177.28333333333333,1531,239 +10638,177.3,1568,236 +10639,177.31666666666666,1603,232 +10640,177.33333333333334,1638,229 +10641,177.35,1672,225 +10642,177.36666666666667,1703,221 +10643,177.38333333333333,1734,217 +10644,177.4,1763,213 +10645,177.41666666666666,1789,209 +10646,177.43333333333334,1814,205 +10647,177.45,1836,201 +10648,177.46666666666667,1855,198 +10649,177.48333333333332,1873,194 +10650,177.5,1887,191 +10651,177.51666666666665,1899,189 +10652,177.53333333333333,1908,188 +10653,177.55,1915,186 +10654,177.56666666666666,1916,186 +10655,177.58333333333334,1916,186 +10656,177.6,1916,186 +10657,177.61666666666667,1911,187 +10658,177.63333333333333,1903,189 +10659,177.65,1893,191 +10660,177.66666666666666,1879,194 +10661,177.68333333333334,1863,197 +10662,177.7,1844,201 +10663,177.71666666666667,1823,205 +10664,177.73333333333332,1799,209 +10665,177.75,1774,213 +10666,177.76666666666665,1746,218 +10667,177.78333333333333,1717,222 +10668,177.8,1686,226 +10669,177.81666666666666,1653,230 +10670,177.83333333333334,1619,234 +10671,177.85,1584,237 +10672,177.86666666666667,1547,240 +10673,177.88333333333333,1511,243 +10674,177.9,1474,245 +10675,177.91666666666666,1436,246 +10676,177.93333333333334,1398,248 +10677,177.95,1362,248 +10678,177.96666666666667,1326,248 +10679,177.98333333333332,1290,248 +10680,178.0,1256,247 +10681,178.01666666666665,1222,245 +10682,178.03333333333333,1189,244 +10683,178.05,1158,242 +10684,178.06666666666666,1129,240 +10685,178.08333333333334,1102,237 +10686,178.1,1077,235 +10687,178.11666666666667,1053,232 +10688,178.13333333333333,1033,230 +10689,178.15,1015,228 +10690,178.16666666666666,999,226 +10691,178.18333333333334,986,223 +10692,178.2,975,222 +10693,178.21666666666667,967,221 +10694,178.23333333333332,962,220 +10695,178.25,962,220 +10696,178.26666666666665,962,220 +10697,178.28333333333333,964,220 +10698,178.3,971,221 +10699,178.31666666666666,980,222 +10700,178.33333333333334,992,224 +10701,178.35,1006,226 +10702,178.36666666666667,1023,227 +10703,178.38333333333333,1042,230 +10704,178.4,1064,232 +10705,178.41666666666666,1089,234 +10706,178.43333333333334,1115,237 +10707,178.45,1143,239 +10708,178.46666666666667,1173,240 +10709,178.48333333333332,1205,242 +10710,178.5,1238,243 +10711,178.51666666666665,1273,245 +10712,178.53333333333333,1308,245 +10713,178.55,1344,245 +10714,178.56666666666666,1380,245 +10715,178.58333333333334,1417,244 +10716,178.6,1454,243 +10717,178.61666666666667,1493,241 +10718,178.63333333333333,1529,239 +10719,178.65,1566,236 +10720,178.66666666666666,1602,233 +10721,178.68333333333334,1636,230 +10722,178.7,1670,226 +10723,178.71666666666667,1702,222 +10724,178.73333333333332,1732,218 +10725,178.75,1760,213 +10726,178.76666666666665,1787,209 +10727,178.78333333333333,1811,206 +10728,178.8,1833,201 +10729,178.81666666666666,1854,198 +10730,178.83333333333334,1871,195 +10731,178.85,1885,192 +10732,178.86666666666667,1897,189 +10733,178.88333333333333,1907,187 +10734,178.9,1913,187 +10735,178.91666666666666,1915,186 +10736,178.93333333333334,1915,186 +10737,178.95,1915,186 +10738,178.96666666666667,1910,187 +10739,178.98333333333332,1902,189 +10740,179.0,1892,191 +10741,179.01666666666665,1879,194 +10742,179.03333333333333,1863,197 +10743,179.05,1844,201 +10744,179.06666666666666,1823,205 +10745,179.08333333333334,1800,209 +10746,179.1,1775,213 +10747,179.11666666666667,1747,218 +10748,179.13333333333333,1718,222 +10749,179.15,1687,226 +10750,179.16666666666666,1654,230 +10751,179.18333333333334,1621,234 +10752,179.2,1586,237 +10753,179.21666666666667,1550,240 +10754,179.23333333333332,1513,243 +10755,179.25,1476,245 +10756,179.26666666666665,1438,246 +10757,179.28333333333333,1401,247 +10758,179.3,1364,248 +10759,179.31666666666666,1329,248 +10760,179.33333333333334,1293,248 +10761,179.35,1258,247 +10762,179.36666666666667,1224,245 +10763,179.38333333333333,1192,244 +10764,179.4,1161,242 +10765,179.41666666666666,1132,240 +10766,179.43333333333334,1105,238 +10767,179.45,1079,235 +10768,179.46666666666667,1056,233 +10769,179.48333333333332,1035,230 +10770,179.5,1017,228 +10771,179.51666666666665,1001,226 +10772,179.53333333333333,988,224 +10773,179.55,977,223 +10774,179.56666666666666,970,221 +10775,179.58333333333334,964,221 +10776,179.6,964,221 +10777,179.61666666666667,964,221 +10778,179.63333333333333,966,221 +10779,179.65,972,222 +10780,179.66666666666666,981,223 +10781,179.68333333333334,993,224 +10782,179.7,1007,226 +10783,179.71666666666667,1023,228 +10784,179.73333333333332,1043,230 +10785,179.75,1064,232 +10786,179.76666666666665,1088,234 +10787,179.78333333333333,1114,236 +10788,179.8,1142,239 +10789,179.81666666666666,1172,241 +10790,179.83333333333334,1204,242 +10791,179.85,1237,244 +10792,179.86666666666667,1271,245 +10793,179.88333333333333,1306,245 +10794,179.9,1342,245 +10795,179.91666666666666,1378,245 +10796,179.93333333333334,1415,244 +10797,179.95,1453,243 +10798,179.96666666666667,1490,241 +10799,179.98333333333332,1527,239 +10800,180.0,1564,236 +10801,180.01666666666665,1599,233 +10802,180.03333333333333,1634,230 +10803,180.05,1667,226 +10804,180.06666666666666,1699,222 +10805,180.08333333333334,1729,218 +10806,180.1,1758,214 +10807,180.11666666666667,1785,210 +10808,180.13333333333333,1809,205 +10809,180.15,1832,202 +10810,180.16666666666666,1851,199 +10811,180.18333333333334,1869,195 +10812,180.2,1883,193 +10813,180.21666666666667,1896,190 +10814,180.23333333333332,1905,189 +10815,180.25,1912,187 +10816,180.26666666666665,1914,187 +10817,180.28333333333333,1914,187 +10818,180.3,1914,187 +10819,180.31666666666666,1909,188 +10820,180.33333333333334,1902,190 +10821,180.35,1892,192 +10822,180.36666666666667,1879,195 +10823,180.38333333333333,1863,198 +10824,180.4,1845,201 +10825,180.41666666666666,1824,205 +10826,180.43333333333334,1801,210 +10827,180.45,1775,214 +10828,180.46666666666667,1748,218 +10829,180.48333333333332,1719,222 +10830,180.5,1688,226 +10831,180.51666666666665,1656,230 +10832,180.53333333333333,1622,234 +10833,180.55,1588,237 +10834,180.56666666666666,1552,240 +10835,180.58333333333334,1515,243 +10836,180.6,1479,245 +10837,180.61666666666667,1441,246 +10838,180.63333333333333,1404,248 +10839,180.65,1367,248 +10840,180.66666666666666,1332,248 +10841,180.68333333333334,1296,248 +10842,180.7,1262,247 +10843,180.71666666666667,1227,246 +10844,180.73333333333332,1195,245 +10845,180.75,1164,243 +10846,180.76666666666665,1135,241 +10847,180.78333333333333,1108,238 +10848,180.8,1082,236 +10849,180.81666666666666,1059,234 +10850,180.83333333333334,1038,231 +10851,180.85,1020,229 +10852,180.86666666666667,1004,227 +10853,180.88333333333333,990,225 +10854,180.9,979,224 +10855,180.91666666666666,971,222 +10856,180.93333333333334,966,222 +10857,180.95,966,222 +10858,180.96666666666667,966,222 +10859,180.98333333333332,967,222 +10860,181.0,973,222 +10861,181.01666666666665,982,223 +10862,181.03333333333333,993,224 +10863,181.05,1007,226 +10864,181.06666666666666,1024,228 +10865,181.08333333333334,1043,230 +10866,181.1,1064,232 +10867,181.11666666666667,1088,235 +10868,181.13333333333333,1114,237 +10869,181.15,1142,239 +10870,181.16666666666666,1172,241 +10871,181.18333333333334,1203,243 +10872,181.2,1236,244 +10873,181.21666666666667,1270,245 +10874,181.23333333333332,1305,246 +10875,181.25,1341,246 +10876,181.26666666666665,1376,246 +10877,181.28333333333333,1413,245 +10878,181.3,1451,243 +10879,181.31666666666666,1488,242 +10880,181.33333333333334,1525,239 +10881,181.35,1561,236 +10882,181.36666666666667,1597,233 +10883,181.38333333333333,1631,230 +10884,181.4,1665,226 +10885,181.41666666666666,1697,222 +10886,181.43333333333334,1727,219 +10887,181.45,1755,214 +10888,181.46666666666667,1782,210 +10889,181.48333333333332,1807,207 +10890,181.5,1829,203 +10891,181.51666666666665,1849,200 +10892,181.53333333333333,1866,196 +10893,181.55,1881,193 +10894,181.56666666666666,1893,191 +10895,181.58333333333334,1903,189 +10896,181.6,1910,188 +10897,181.61666666666667,1912,188 +10898,181.63333333333333,1912,188 +10899,181.65,1912,188 +10900,181.66666666666666,1908,189 +10901,181.68333333333334,1900,191 +10902,181.7,1890,193 +10903,181.71666666666667,1877,195 +10904,181.73333333333332,1862,198 +10905,181.75,1844,202 +10906,181.76666666666665,1823,206 +10907,181.78333333333333,1800,210 +10908,181.8,1776,214 +10909,181.81666666666666,1749,218 +10910,181.83333333333334,1720,223 +10911,181.85,1689,227 +10912,181.86666666666667,1657,230 +10913,181.88333333333333,1624,234 +10914,181.9,1589,237 +10915,181.91666666666666,1554,240 +10916,181.93333333333334,1518,243 +10917,181.95,1481,245 +10918,181.96666666666667,1444,246 +10919,181.98333333333332,1406,248 +10920,182.0,1369,249 +10921,182.01666666666665,1334,249 +10922,182.03333333333333,1298,249 +10923,182.05,1264,248 +10924,182.06666666666666,1230,247 +10925,182.08333333333334,1198,245 +10926,182.1,1167,243 +10927,182.11666666666667,1137,241 +10928,182.13333333333333,1110,239 +10929,182.15,1084,237 +10930,182.16666666666666,1061,234 +10931,182.18333333333334,1040,232 +10932,182.2,1022,229 +10933,182.21666666666667,1006,227 +10934,182.23333333333332,992,225 +10935,182.25,981,224 +10936,182.26666666666665,973,223 +10937,182.28333333333333,968,222 +10938,182.3,968,222 +10939,182.31666666666666,968,222 +10940,182.33333333333334,968,222 +10941,182.35,974,222 +10942,182.36666666666667,982,223 +10943,182.38333333333333,994,224 +10944,182.4,1008,226 +10945,182.41666666666666,1024,228 +10946,182.43333333333334,1043,230 +10947,182.45,1064,233 +10948,182.46666666666667,1088,235 +10949,182.48333333333332,1113,237 +10950,182.5,1141,239 +10951,182.51666666666665,1170,241 +10952,182.53333333333333,1202,242 +10953,182.55,1234,244 +10954,182.56666666666666,1269,245 +10955,182.58333333333334,1303,246 +10956,182.6,1339,246 +10957,182.61666666666667,1375,246 +10958,182.63333333333333,1411,245 +10959,182.65,1449,244 +10960,182.66666666666666,1486,242 +10961,182.68333333333334,1523,240 +10962,182.7,1559,237 +10963,182.71666666666667,1594,234 +10964,182.73333333333332,1629,231 +10965,182.75,1662,227 +10966,182.76666666666665,1694,223 +10967,182.78333333333333,1724,219 +10968,182.8,1753,215 +10969,182.81666666666666,1780,211 +10970,182.83333333333334,1804,207 +10971,182.85,1826,203 +10972,182.86666666666667,1847,200 +10973,182.88333333333333,1864,197 +10974,182.9,1879,194 +10975,182.91666666666666,1891,191 +10976,182.93333333333334,1901,190 +10977,182.95,1907,188 +10978,182.96666666666667,1911,188 +10979,182.98333333333332,1911,188 +10980,183.0,1911,188 +10981,183.01666666666665,1907,189 +10982,183.03333333333333,1899,191 +10983,183.05,1890,193 +10984,183.06666666666666,1877,196 +10985,183.08333333333334,1862,199 +10986,183.1,1844,202 +10987,183.11666666666667,1823,206 +10988,183.13333333333333,1801,210 +10989,183.15,1776,214 +10990,183.16666666666666,1749,218 +10991,183.18333333333334,1720,222 +10992,183.2,1690,226 +10993,183.21666666666667,1658,230 +10994,183.23333333333332,1625,234 +10995,183.25,1590,237 +10996,183.26666666666665,1555,240 +10997,183.28333333333333,1519,243 +10998,183.3,1482,245 +10999,183.31666666666666,1445,247 +11000,183.33333333333334,1409,249 +11001,183.35,1371,249 +11002,183.36666666666667,1337,249 +11003,183.38333333333333,1301,249 +11004,183.4,1266,248 +11005,183.41666666666666,1232,247 +11006,183.43333333333334,1200,245 +11007,183.45,1169,243 +11008,183.46666666666667,1140,241 +11009,183.48333333333332,1112,239 +11010,183.5,1087,237 +11011,183.51666666666665,1063,234 +11012,183.53333333333333,1042,232 +11013,183.55,1024,229 +11014,183.56666666666666,1007,228 +11015,183.58333333333334,994,225 +11016,183.6,983,224 +11017,183.61666666666667,974,223 +11018,183.63333333333333,969,222 +11019,183.65,969,222 +11020,183.66666666666666,969,222 +11021,183.68333333333334,969,222 +11022,183.7,975,222 +11023,183.71666666666667,983,223 +11024,183.73333333333332,994,224 +11025,183.75,1008,226 +11026,183.76666666666665,1024,228 +11027,183.78333333333333,1043,230 +11028,183.8,1064,232 +11029,183.81666666666666,1087,234 +11030,183.83333333333334,1113,237 +11031,183.85,1140,239 +11032,183.86666666666667,1170,241 +11033,183.88333333333333,1200,242 +11034,183.9,1233,244 +11035,183.91666666666666,1267,245 +11036,183.93333333333334,1302,246 +11037,183.95,1337,246 +11038,183.96666666666667,1373,246 +11039,183.98333333333332,1409,246 +11040,184.0,1447,244 +11041,184.01666666666665,1484,242 +11042,184.03333333333333,1520,240 +11043,184.05,1556,237 +11044,184.06666666666666,1592,234 +11045,184.08333333333334,1626,231 +11046,184.1,1659,228 +11047,184.11666666666667,1691,224 +11048,184.13333333333333,1722,220 +11049,184.15,1751,216 +11050,184.16666666666666,1777,212 +11051,184.18333333333334,1802,208 +11052,184.2,1824,204 +11053,184.21666666666667,1844,200 +11054,184.23333333333332,1862,197 +11055,184.25,1877,194 +11056,184.26666666666665,1889,192 +11057,184.28333333333333,1899,190 +11058,184.3,1906,188 +11059,184.31666666666666,1910,188 +11060,184.33333333333334,1910,188 +11061,184.35,1910,188 +11062,184.36666666666667,1906,189 +11063,184.38333333333333,1898,191 +11064,184.4,1889,193 +11065,184.41666666666666,1876,196 +11066,184.43333333333334,1861,199 +11067,184.45,1844,202 +11068,184.46666666666667,1823,206 +11069,184.48333333333332,1801,209 +11070,184.5,1777,214 +11071,184.51666666666665,1750,218 +11072,184.53333333333333,1721,222 +11073,184.55,1691,226 +11074,184.56666666666666,1660,230 +11075,184.58333333333334,1626,233 +11076,184.6,1592,237 +11077,184.61666666666667,1557,240 +11078,184.63333333333333,1521,243 +11079,184.65,1484,245 +11080,184.66666666666666,1447,247 +11081,184.68333333333334,1411,248 +11082,184.7,1374,249 +11083,184.71666666666667,1339,249 +11084,184.73333333333332,1303,249 +11085,184.75,1269,248 +11086,184.76666666666665,1235,247 +11087,184.78333333333333,1202,245 +11088,184.8,1171,243 +11089,184.81666666666666,1142,241 +11090,184.83333333333334,1115,239 +11091,184.85,1089,237 +11092,184.86666666666667,1066,234 +11093,184.88333333333333,1045,232 +11094,184.9,1026,229 +11095,184.91666666666666,1010,227 +11096,184.93333333333334,996,226 +11097,184.95,985,224 +11098,184.96666666666667,977,223 +11099,184.98333333333332,971,222 +11100,185.0,970,221 +11101,185.01666666666665,970,221 +11102,185.03333333333333,970,221 +11103,185.05,976,222 +11104,185.06666666666666,984,223 +11105,185.08333333333334,995,225 +11106,185.1,1009,226 +11107,185.11666666666667,1025,228 +11108,185.13333333333333,1043,230 +11109,185.15,1064,232 +11110,185.16666666666666,1087,234 +11111,185.18333333333334,1112,237 +11112,185.2,1140,239 +11113,185.21666666666667,1169,241 +11114,185.23333333333332,1200,243 +11115,185.25,1232,244 +11116,185.26666666666665,1266,245 +11117,185.28333333333333,1300,246 +11118,185.3,1336,246 +11119,185.31666666666666,1371,246 +11120,185.33333333333334,1408,246 +11121,185.35,1445,244 +11122,185.36666666666667,1482,243 +11123,185.38333333333333,1518,240 +11124,185.4,1554,238 +11125,185.41666666666666,1590,234 +11126,185.43333333333334,1624,231 +11127,185.45,1657,227 +11128,185.46666666666667,1689,224 +11129,185.48333333333332,1719,220 +11130,185.5,1748,216 +11131,185.51666666666665,1775,212 +11132,185.53333333333333,1799,208 +11133,185.55,1822,204 +11134,185.56666666666666,1842,201 +11135,185.58333333333334,1860,198 +11136,185.6,1874,195 +11137,185.61666666666667,1887,193 +11138,185.63333333333333,1897,191 +11139,185.65,1904,189 +11140,185.66666666666666,1908,189 +11141,185.68333333333334,1908,189 +11142,185.7,1908,189 +11143,185.71666666666667,1904,190 +11144,185.73333333333332,1897,191 +11145,185.75,1888,193 +11146,185.76666666666665,1876,196 +11147,185.78333333333333,1861,198 +11148,185.8,1843,202 +11149,185.81666666666666,1823,206 +11150,185.83333333333334,1801,210 +11151,185.85,1777,214 +11152,185.86666666666667,1750,218 +11153,185.88333333333333,1722,222 +11154,185.9,1692,226 +11155,185.91666666666666,1660,230 +11156,185.93333333333334,1627,234 +11157,185.95,1593,237 +11158,185.96666666666667,1558,240 +11159,185.98333333333332,1522,243 +11160,186.0,1486,245 +11161,186.01666666666665,1449,247 +11162,186.03333333333333,1412,248 +11163,186.05,1375,249 +11164,186.06666666666666,1341,249 +11165,186.08333333333334,1305,249 +11166,186.1,1271,248 +11167,186.11666666666667,1237,247 +11168,186.13333333333333,1205,245 +11169,186.15,1174,243 +11170,186.16666666666666,1145,241 +11171,186.18333333333334,1117,239 +11172,186.2,1092,237 +11173,186.21666666666667,1068,234 +11174,186.23333333333332,1047,232 +11175,186.25,1028,230 +11176,186.26666666666665,1012,228 +11177,186.28333333333333,998,226 +11178,186.3,987,224 +11179,186.31666666666666,978,223 +11180,186.33333333333334,972,223 +11181,186.35,972,222 +11182,186.36666666666667,972,222 +11183,186.38333333333333,972,222 +11184,186.4,977,223 +11185,186.41666666666666,985,224 +11186,186.43333333333334,995,225 +11187,186.45,1009,226 +11188,186.46666666666667,1025,228 +11189,186.48333333333332,1043,230 +11190,186.5,1064,232 +11191,186.51666666666665,1087,234 +11192,186.53333333333333,1112,237 +11193,186.55,1139,239 +11194,186.56666666666666,1168,240 +11195,186.58333333333334,1199,242 +11196,186.6,1231,244 +11197,186.61666666666667,1264,245 +11198,186.63333333333333,1299,246 +11199,186.65,1334,246 +11200,186.66666666666666,1369,246 +11201,186.68333333333334,1406,246 +11202,186.7,1443,244 +11203,186.71666666666667,1480,243 +11204,186.73333333333332,1516,240 +11205,186.75,1552,238 +11206,186.76666666666665,1587,235 +11207,186.78333333333333,1621,232 +11208,186.8,1654,228 +11209,186.81666666666666,1686,224 +11210,186.83333333333334,1717,220 +11211,186.85,1745,216 +11212,186.86666666666667,1772,213 +11213,186.88333333333333,1797,209 +11214,186.9,1819,205 +11215,186.91666666666666,1840,202 +11216,186.93333333333334,1857,198 +11217,186.95,1872,195 +11218,186.96666666666667,1885,193 +11219,186.98333333333332,1895,191 +11220,187.0,1902,190 +11221,187.01666666666665,1906,189 +11222,187.03333333333333,1906,189 +11223,187.05,1906,189 +11224,187.06666666666666,1903,190 +11225,187.08333333333334,1896,191 +11226,187.1,1887,194 +11227,187.11666666666667,1875,196 +11228,187.13333333333333,1860,199 +11229,187.15,1843,202 +11230,187.16666666666666,1823,206 +11231,187.18333333333334,1801,210 +11232,187.2,1777,214 +11233,187.21666666666667,1751,218 +11234,187.23333333333332,1723,222 +11235,187.25,1693,226 +11236,187.26666666666665,1662,230 +11237,187.28333333333333,1629,234 +11238,187.3,1594,237 +11239,187.31666666666666,1560,240 +11240,187.33333333333334,1524,243 +11241,187.35,1488,245 +11242,187.36666666666667,1451,247 +11243,187.38333333333333,1414,248 +11244,187.4,1378,249 +11245,187.41666666666666,1343,249 +11246,187.43333333333334,1308,249 +11247,187.45,1273,248 +11248,187.46666666666667,1240,247 +11249,187.48333333333332,1207,245 +11250,187.5,1176,243 +11251,187.51666666666665,1147,242 +11252,187.53333333333333,1120,239 +11253,187.55,1094,237 +11254,187.56666666666666,1071,235 +11255,187.58333333333334,1049,232 +11256,187.6,1031,230 +11257,187.61666666666667,1014,228 +11258,187.63333333333333,1000,226 +11259,187.65,989,225 +11260,187.66666666666666,980,224 +11261,187.68333333333334,974,223 +11262,187.7,973,222 +11263,187.71666666666667,973,222 +11264,187.73333333333332,973,222 +11265,187.75,979,223 +11266,187.76666666666665,986,223 +11267,187.78333333333333,996,224 +11268,187.8,1010,226 +11269,187.81666666666666,1026,228 +11270,187.83333333333334,1044,230 +11271,187.85,1064,232 +11272,187.86666666666667,1087,234 +11273,187.88333333333333,1112,237 +11274,187.9,1139,239 +11275,187.91666666666666,1168,241 +11276,187.93333333333334,1198,243 +11277,187.95,1230,244 +11278,187.96666666666667,1264,245 +11279,187.98333333333332,1298,246 +11280,188.0,1334,246 +11281,188.01666666666665,1368,246 +11282,188.03333333333333,1404,246 +11283,188.05,1441,244 +11284,188.06666666666666,1478,243 +11285,188.08333333333334,1514,241 +11286,188.1,1550,238 +11287,188.11666666666667,1585,235 +11288,188.13333333333333,1620,231 +11289,188.15,1653,228 +11290,188.16666666666666,1685,225 +11291,188.18333333333334,1715,220 +11292,188.2,1743,217 +11293,188.21666666666667,1770,213 +11294,188.23333333333332,1794,209 +11295,188.25,1817,206 +11296,188.26666666666665,1837,202 +11297,188.28333333333333,1855,199 +11298,188.3,1870,196 +11299,188.31666666666666,1883,193 +11300,188.33333333333334,1893,191 +11301,188.35,1900,190 +11302,188.36666666666667,1905,189 +11303,188.38333333333333,1905,189 +11304,188.4,1905,189 +11305,188.41666666666666,1902,190 +11306,188.43333333333334,1895,192 +11307,188.45,1886,194 +11308,188.46666666666667,1874,196 +11309,188.48333333333332,1859,199 +11310,188.5,1842,202 +11311,188.51666666666665,1823,206 +11312,188.53333333333333,1801,210 +11313,188.55,1777,214 +11314,188.56666666666666,1751,218 +11315,188.58333333333334,1723,222 +11316,188.6,1694,226 +11317,188.61666666666667,1662,230 +11318,188.63333333333333,1630,234 +11319,188.65,1596,237 +11320,188.66666666666666,1561,240 +11321,188.68333333333334,1526,243 +11322,188.7,1490,245 +11323,188.71666666666667,1453,247 +11324,188.73333333333332,1417,248 +11325,188.75,1381,249 +11326,188.76666666666665,1345,249 +11327,188.78333333333333,1310,249 +11328,188.8,1276,248 +11329,188.81666666666666,1242,247 +11330,188.83333333333334,1209,246 +11331,188.85,1179,244 +11332,188.86666666666667,1150,242 +11333,188.88333333333333,1122,240 +11334,188.9,1097,237 +11335,188.91666666666666,1073,235 +11336,188.93333333333334,1052,233 +11337,188.95,1033,230 +11338,188.96666666666667,1016,228 +11339,188.98333333333332,1002,226 +11340,189.0,991,224 +11341,189.01666666666665,982,223 +11342,189.03333333333333,976,222 +11343,189.05,975,222 +11344,189.06666666666666,975,222 +11345,189.08333333333334,975,222 +11346,189.1,980,222 +11347,189.11666666666667,987,223 +11348,189.13333333333333,998,225 +11349,189.15,1011,226 +11350,189.16666666666666,1026,228 +11351,189.18333333333334,1044,230 +11352,189.2,1064,232 +11353,189.21666666666667,1087,234 +11354,189.23333333333332,1112,236 +11355,189.25,1139,238 +11356,189.26666666666665,1168,240 +11357,189.28333333333333,1198,242 +11358,189.3,1229,243 +11359,189.31666666666666,1263,245 +11360,189.33333333333334,1297,246 +11361,189.35,1332,246 +11362,189.36666666666667,1367,246 +11363,189.38333333333333,1403,246 +11364,189.4,1439,244 +11365,189.41666666666666,1476,242 +11366,189.43333333333334,1512,241 +11367,189.45,1548,238 +11368,189.46666666666667,1583,235 +11369,189.48333333333332,1617,232 +11370,189.5,1650,229 +11371,189.51666666666665,1682,225 +11372,189.53333333333333,1712,221 +11373,189.55,1740,217 +11374,189.56666666666666,1767,213 +11375,189.58333333333334,1792,209 +11376,189.6,1815,206 +11377,189.61666666666667,1835,203 +11378,189.63333333333333,1853,200 +11379,189.65,1868,196 +11380,189.66666666666666,1881,194 +11381,189.68333333333334,1891,192 +11382,189.7,1898,191 +11383,189.71666666666667,1903,190 +11384,189.73333333333332,1903,190 +11385,189.75,1903,190 +11386,189.76666666666665,1900,191 +11387,189.78333333333333,1894,193 +11388,189.8,1885,195 +11389,189.81666666666666,1873,197 +11390,189.83333333333334,1858,199 +11391,189.85,1842,203 +11392,189.86666666666667,1822,206 +11393,189.88333333333333,1800,210 +11394,189.9,1777,214 +11395,189.91666666666666,1751,218 +11396,189.93333333333334,1723,222 +11397,189.95,1694,226 +11398,189.96666666666667,1663,230 +11399,189.98333333333332,1630,233 +11400,190.0,1596,237 +11401,190.01666666666665,1562,240 +11402,190.03333333333333,1527,243 +11403,190.05,1491,245 +11404,190.06666666666666,1454,246 +11405,190.08333333333334,1418,248 +11406,190.1,1382,249 +11407,190.11666666666667,1347,249 +11408,190.13333333333333,1312,249 +11409,190.15,1278,248 +11410,190.16666666666666,1244,247 +11411,190.18333333333334,1212,246 +11412,190.2,1181,244 +11413,190.21666666666667,1152,242 +11414,190.23333333333332,1124,240 +11415,190.25,1099,237 +11416,190.26666666666665,1076,235 +11417,190.28333333333333,1054,233 +11418,190.3,1035,231 +11419,190.31666666666666,1018,229 +11420,190.33333333333334,1004,227 +11421,190.35,993,225 +11422,190.36666666666667,984,224 +11423,190.38333333333333,978,223 +11424,190.4,976,222 +11425,190.41666666666666,976,222 +11426,190.43333333333334,976,222 +11427,190.45,981,223 +11428,190.46666666666667,988,224 +11429,190.48333333333332,998,225 +11430,190.5,1011,226 +11431,190.51666666666665,1027,228 +11432,190.53333333333333,1044,230 +11433,190.55,1064,232 +11434,190.56666666666666,1087,234 +11435,190.58333333333334,1111,236 +11436,190.6,1138,238 +11437,190.61666666666667,1167,240 +11438,190.63333333333333,1196,242 +11439,190.65,1228,243 +11440,190.66666666666666,1261,244 +11441,190.68333333333334,1295,245 +11442,190.7,1331,245 +11443,190.71666666666667,1365,245 +11444,190.73333333333332,1401,245 +11445,190.75,1437,244 +11446,190.76666666666665,1474,242 +11447,190.78333333333333,1510,240 +11448,190.8,1545,238 +11449,190.81666666666666,1580,235 +11450,190.83333333333334,1614,232 +11451,190.85,1647,229 +11452,190.86666666666667,1679,225 +11453,190.88333333333333,1709,221 +11454,190.9,1738,217 +11455,190.91666666666666,1765,214 +11456,190.93333333333334,1789,210 +11457,190.95,1812,206 +11458,190.96666666666667,1832,203 +11459,190.98333333333332,1850,200 +11460,191.0,1866,197 +11461,191.01666666666665,1879,195 +11462,191.03333333333333,1889,193 +11463,191.05,1896,191 +11464,191.06666666666666,1901,191 +11465,191.08333333333334,1901,191 +11466,191.1,1901,191 +11467,191.11666666666667,1899,191 +11468,191.13333333333333,1893,193 +11469,191.15,1883,195 +11470,191.16666666666666,1872,197 +11471,191.18333333333334,1858,200 +11472,191.2,1841,203 +11473,191.21666666666667,1822,206 +11474,191.23333333333332,1800,210 +11475,191.25,1777,214 +11476,191.26666666666665,1751,218 +11477,191.28333333333333,1723,222 +11478,191.3,1694,226 +11479,191.31666666666666,1663,230 +11480,191.33333333333334,1631,233 +11481,191.35,1598,237 +11482,191.36666666666667,1563,240 +11483,191.38333333333333,1528,242 +11484,191.4,1492,244 +11485,191.41666666666666,1456,246 +11486,191.43333333333334,1419,247 +11487,191.45,1383,248 +11488,191.46666666666667,1349,248 +11489,191.48333333333332,1314,248 +11490,191.5,1280,248 +11491,191.51666666666665,1246,247 +11492,191.53333333333333,1214,245 +11493,191.55,1183,243 +11494,191.56666666666666,1154,241 +11495,191.58333333333334,1127,239 +11496,191.6,1101,237 +11497,191.61666666666667,1078,234 +11498,191.63333333333333,1056,232 +11499,191.65,1037,230 +11500,191.66666666666666,1021,228 +11501,191.68333333333334,1006,226 +11502,191.7,995,225 +11503,191.71666666666667,986,223 +11504,191.73333333333332,980,222 +11505,191.75,977,222 +11506,191.76666666666665,977,222 +11507,191.78333333333333,977,222 +11508,191.8,982,222 +11509,191.81666666666666,989,223 +11510,191.83333333333334,999,224 +11511,191.85,1012,226 +11512,191.86666666666667,1027,227 +11513,191.88333333333333,1045,230 +11514,191.9,1065,232 +11515,191.91666666666666,1087,234 +11516,191.93333333333334,1111,236 +11517,191.95,1138,238 +11518,191.96666666666667,1166,240 +11519,191.98333333333332,1196,241 +11520,192.0,1227,243 +11521,192.01666666666665,1260,244 +11522,192.03333333333333,1294,245 +11523,192.05,1329,245 +11524,192.06666666666666,1363,245 +11525,192.08333333333334,1399,245 +11526,192.1,1435,243 +11527,192.11666666666667,1472,242 +11528,192.13333333333333,1508,240 +11529,192.15,1543,238 +11530,192.16666666666666,1578,235 +11531,192.18333333333334,1612,232 +11532,192.2,1645,229 +11533,192.21666666666667,1677,225 +11534,192.23333333333332,1707,222 +11535,192.25,1736,218 +11536,192.26666666666665,1763,214 +11537,192.28333333333333,1787,210 +11538,192.3,1810,207 +11539,192.31666666666666,1830,203 +11540,192.33333333333334,1848,200 +11541,192.35,1864,197 +11542,192.36666666666667,1876,195 +11543,192.38333333333333,1887,193 +11544,192.4,1894,192 +11545,192.41666666666666,1899,191 +11546,192.43333333333334,1899,191 +11547,192.45,1899,191 +11548,192.46666666666667,1897,192 +11549,192.48333333333332,1891,193 +11550,192.5,1883,195 +11551,192.51666666666665,1871,197 +11552,192.53333333333333,1857,200 +11553,192.55,1840,203 +11554,192.56666666666666,1821,207 +11555,192.58333333333334,1800,210 +11556,192.6,1777,214 +11557,192.61666666666667,1751,218 +11558,192.63333333333333,1724,222 +11559,192.65,1695,226 +11560,192.66666666666666,1664,230 +11561,192.68333333333334,1632,233 +11562,192.7,1599,236 +11563,192.71666666666667,1565,239 +11564,192.73333333333332,1529,242 +11565,192.75,1494,244 +11566,192.76666666666665,1457,246 +11567,192.78333333333333,1421,247 +11568,192.8,1385,248 +11569,192.81666666666666,1351,248 +11570,192.83333333333334,1317,248 +11571,192.85,1282,247 +11572,192.86666666666667,1248,246 +11573,192.88333333333333,1216,245 +11574,192.9,1185,243 +11575,192.91666666666666,1156,242 +11576,192.93333333333334,1129,239 +11577,192.95,1103,237 +11578,192.96666666666667,1080,234 +11579,192.98333333333332,1058,232 +11580,193.0,1039,230 +11581,193.01666666666665,1022,228 +11582,193.03333333333333,1008,226 +11583,193.05,996,224 +11584,193.06666666666666,987,223 +11585,193.08333333333334,981,222 +11586,193.1,978,222 +11587,193.11666666666667,978,222 +11588,193.13333333333333,978,222 +11589,193.15,983,222 +11590,193.16666666666666,990,222 +11591,193.18333333333334,1000,224 +11592,193.2,1012,225 +11593,193.21666666666667,1027,227 +11594,193.23333333333332,1045,229 +11595,193.25,1064,231 +11596,193.26666666666665,1086,233 +11597,193.28333333333333,1111,235 +11598,193.3,1137,237 +11599,193.31666666666666,1165,239 +11600,193.33333333333334,1195,241 +11601,193.35,1226,242 +11602,193.36666666666667,1259,244 +11603,193.38333333333333,1292,245 +11604,193.4,1327,245 +11605,193.41666666666666,1361,245 +11606,193.43333333333334,1396,245 +11607,193.45,1432,243 +11608,193.46666666666667,1470,242 +11609,193.48333333333332,1505,240 +11610,193.5,1541,238 +11611,193.51666666666665,1576,235 +11612,193.53333333333333,1609,232 +11613,193.55,1642,229 +11614,193.56666666666666,1674,226 +11615,193.58333333333334,1704,222 +11616,193.6,1733,218 +11617,193.61666666666667,1759,214 +11618,193.63333333333333,1784,211 +11619,193.65,1807,207 +11620,193.66666666666666,1827,204 +11621,193.68333333333334,1845,201 +11622,193.7,1861,198 +11623,193.71666666666667,1874,196 +11624,193.73333333333332,1884,194 +11625,193.75,1892,192 +11626,193.76666666666665,1897,192 +11627,193.78333333333333,1897,192 +11628,193.8,1897,192 +11629,193.81666666666666,1896,192 +11630,193.83333333333334,1890,194 +11631,193.85,1881,195 +11632,193.86666666666667,1870,197 +11633,193.88333333333333,1856,200 +11634,193.9,1839,204 +11635,193.91666666666666,1820,207 +11636,193.93333333333334,1799,211 +11637,193.95,1776,214 +11638,193.96666666666667,1751,218 +11639,193.98333333333332,1724,222 +11640,194.0,1695,226 +11641,194.01666666666665,1664,230 +11642,194.03333333333333,1632,233 +11643,194.05,1599,236 +11644,194.06666666666666,1565,239 +11645,194.08333333333334,1530,242 +11646,194.1,1495,244 +11647,194.11666666666667,1459,246 +11648,194.13333333333333,1422,247 +11649,194.15,1387,248 +11650,194.16666666666666,1352,248 +11651,194.18333333333334,1317,248 +11652,194.2,1283,248 +11653,194.21666666666667,1250,247 +11654,194.23333333333332,1218,245 +11655,194.25,1187,243 +11656,194.26666666666665,1158,241 +11657,194.28333333333333,1131,239 +11658,194.3,1105,237 +11659,194.31666666666666,1081,234 +11660,194.33333333333334,1060,232 +11661,194.35,1041,229 +11662,194.36666666666667,1024,228 +11663,194.38333333333333,1010,226 +11664,194.4,998,224 +11665,194.41666666666666,989,223 +11666,194.43333333333334,982,222 +11667,194.45,979,221 +11668,194.46666666666667,979,221 +11669,194.48333333333332,979,221 +11670,194.5,984,221 +11671,194.51666666666665,991,222 +11672,194.53333333333333,1000,223 +11673,194.55,1013,225 +11674,194.56666666666666,1028,226 +11675,194.58333333333334,1045,228 +11676,194.6,1064,231 +11677,194.61666666666667,1086,232 +11678,194.63333333333333,1110,235 +11679,194.65,1136,237 +11680,194.66666666666666,1164,239 +11681,194.68333333333334,1194,240 +11682,194.7,1225,242 +11683,194.71666666666667,1257,243 +11684,194.73333333333332,1290,244 +11685,194.75,1325,245 +11686,194.76666666666665,1359,245 +11687,194.78333333333333,1395,245 +11688,194.8,1431,243 +11689,194.81666666666666,1467,242 +11690,194.83333333333334,1503,240 +11691,194.85,1538,238 +11692,194.86666666666667,1573,236 +11693,194.88333333333333,1607,232 +11694,194.9,1640,229 +11695,194.91666666666666,1672,226 +11696,194.93333333333334,1702,222 +11697,194.95,1731,218 +11698,194.96666666666667,1758,215 +11699,194.98333333333332,1782,211 +11700,195.0,1805,207 +11701,195.01666666666665,1826,204 +11702,195.03333333333333,1844,201 +11703,195.05,1859,198 +11704,195.06666666666666,1872,196 +11705,195.08333333333334,1883,194 +11706,195.1,1891,193 +11707,195.11666666666667,1896,192 +11708,195.13333333333333,1896,192 +11709,195.15,1896,192 +11710,195.16666666666666,1895,192 +11711,195.18333333333334,1889,194 +11712,195.2,1881,195 +11713,195.21666666666667,1870,197 +11714,195.23333333333332,1856,200 +11715,195.25,1840,204 +11716,195.26666666666665,1821,207 +11717,195.28333333333333,1800,210 +11718,195.3,1777,214 +11719,195.31666666666666,1752,218 +11720,195.33333333333334,1725,222 +11721,195.35,1696,226 +11722,195.36666666666667,1665,230 +11723,195.38333333333333,1634,233 +11724,195.4,1600,236 +11725,195.41666666666666,1567,239 +11726,195.43333333333334,1532,242 +11727,195.45,1497,244 +11728,195.46666666666667,1461,245 +11729,195.48333333333332,1424,247 +11730,195.5,1389,248 +11731,195.51666666666665,1354,248 +11732,195.53333333333333,1319,248 +11733,195.55,1285,247 +11734,195.56666666666666,1252,246 +11735,195.58333333333334,1220,244 +11736,195.6,1189,243 +11737,195.61666666666667,1160,241 +11738,195.63333333333333,1132,239 +11739,195.65,1106,236 +11740,195.66666666666666,1083,234 +11741,195.68333333333334,1062,232 +11742,195.7,1042,229 +11743,195.71666666666667,1025,227 +11744,195.73333333333332,1011,225 +11745,195.75,999,224 +11746,195.76666666666665,990,223 +11747,195.78333333333333,983,221 +11748,195.8,980,221 +11749,195.81666666666666,980,221 +11750,195.83333333333334,980,221 +11751,195.85,984,221 +11752,195.86666666666667,991,222 +11753,195.88333333333333,1001,223 +11754,195.9,1013,224 +11755,195.91666666666666,1027,226 +11756,195.93333333333334,1045,228 +11757,195.95,1064,230 +11758,195.96666666666667,1086,232 +11759,195.98333333333332,1110,234 +11760,196.0,1136,236 +11761,196.01666666666665,1164,238 +11762,196.03333333333333,1193,240 +11763,196.05,1224,242 +11764,196.06666666666666,1257,244 +11765,196.08333333333334,1290,244 +11766,196.1,1325,245 +11767,196.11666666666667,1359,245 +11768,196.13333333333333,1394,245 +11769,196.15,1430,243 +11770,196.16666666666666,1467,242 +11771,196.18333333333334,1502,240 +11772,196.2,1538,238 +11773,196.21666666666667,1573,235 +11774,196.23333333333332,1607,233 +11775,196.25,1640,230 +11776,196.26666666666665,1671,226 +11777,196.28333333333333,1701,222 +11778,196.3,1730,219 +11779,196.31666666666666,1757,215 +11780,196.33333333333334,1781,212 +11781,196.35,1804,208 +11782,196.36666666666667,1824,205 +11783,196.38333333333333,1842,201 +11784,196.4,1858,199 +11785,196.41666666666666,1871,197 +11786,196.43333333333334,1882,194 +11787,196.45,1890,193 +11788,196.46666666666667,1895,192 +11789,196.48333333333332,1895,192 +11790,196.5,1895,192 +11791,196.51666666666665,1894,193 +11792,196.53333333333333,1889,194 +11793,196.55,1880,196 +11794,196.56666666666666,1869,198 +11795,196.58333333333334,1856,201 +11796,196.6,1840,204 +11797,196.61666666666667,1821,207 +11798,196.63333333333333,1800,210 +11799,196.65,1777,214 +11800,196.66666666666666,1752,218 +11801,196.68333333333334,1725,222 +11802,196.7,1697,225 +11803,196.71666666666667,1667,229 +11804,196.73333333333332,1635,233 +11805,196.75,1603,236 +11806,196.76666666666665,1569,239 +11807,196.78333333333333,1534,242 +11808,196.8,1499,244 +11809,196.81666666666666,1463,246 +11810,196.83333333333334,1427,247 +11811,196.85,1391,248 +11812,196.86666666666667,1357,248 +11813,196.88333333333333,1322,248 +11814,196.9,1288,248 +11815,196.91666666666666,1255,246 +11816,196.93333333333334,1223,245 +11817,196.95,1192,243 +11818,196.96666666666667,1163,241 +11819,196.98333333333332,1135,239 +11820,197.0,1110,237 +11821,197.01666666666665,1086,234 +11822,197.03333333333333,1064,232 +11823,197.05,1045,230 +11824,197.06666666666666,1028,228 +11825,197.08333333333334,1014,226 +11826,197.1,1002,224 +11827,197.11666666666667,992,223 +11828,197.13333333333333,985,222 +11829,197.15,982,221 +11830,197.16666666666666,982,221 +11831,197.18333333333334,982,221 +11832,197.2,986,221 +11833,197.21666666666667,993,222 +11834,197.23333333333332,1002,223 +11835,197.25,1014,225 +11836,197.26666666666665,1029,227 +11837,197.28333333333333,1046,229 +11838,197.3,1065,231 +11839,197.31666666666666,1087,233 +11840,197.33333333333334,1111,235 +11841,197.35,1136,237 +11842,197.36666666666667,1164,239 +11843,197.38333333333333,1193,241 +11844,197.4,1224,243 +11845,197.41666666666666,1256,244 +11846,197.43333333333334,1289,244 +11847,197.45,1324,245 +11848,197.46666666666667,1358,245 +11849,197.48333333333332,1393,245 +11850,197.5,1428,244 +11851,197.51666666666665,1464,242 +11852,197.53333333333333,1500,240 +11853,197.55,1535,238 +11854,197.56666666666666,1570,236 +11855,197.58333333333334,1604,233 +11856,197.6,1637,230 +11857,197.61666666666667,1668,226 +11858,197.63333333333333,1698,223 +11859,197.65,1727,219 +11860,197.66666666666666,1753,215 +11861,197.68333333333334,1778,211 +11862,197.7,1801,208 +11863,197.71666666666667,1822,205 +11864,197.73333333333332,1839,202 +11865,197.75,1856,199 +11866,197.76666666666665,1869,196 +11867,197.78333333333333,1880,195 +11868,197.8,1887,193 +11869,197.81666666666666,1893,192 +11870,197.83333333333334,1893,192 +11871,197.85,1893,192 +11872,197.86666666666667,1893,193 +11873,197.88333333333333,1887,194 +11874,197.9,1879,196 +11875,197.91666666666666,1868,198 +11876,197.93333333333334,1855,201 +11877,197.95,1839,204 +11878,197.96666666666667,1820,207 +11879,197.98333333333332,1799,210 +11880,198.0,1777,215 +11881,198.01666666666665,1752,218 +11882,198.03333333333333,1725,222 +11883,198.05,1697,226 +11884,198.06666666666666,1667,230 +11885,198.08333333333334,1635,233 +11886,198.1,1602,236 +11887,198.11666666666667,1569,239 +11888,198.13333333333333,1534,242 +11889,198.15,1499,244 +11890,198.16666666666666,1463,245 +11891,198.18333333333334,1427,247 +11892,198.2,1392,248 +11893,198.21666666666667,1358,248 +11894,198.23333333333332,1323,248 +11895,198.25,1289,247 +11896,198.26666666666665,1256,246 +11897,198.28333333333333,1224,245 +11898,198.3,1193,243 +11899,198.31666666666666,1164,241 +11900,198.33333333333334,1137,239 +11901,198.35,1111,237 +11902,198.36666666666667,1087,235 +11903,198.38333333333333,1065,233 +11904,198.4,1046,231 +11905,198.41666666666666,1029,229 +11906,198.43333333333334,1015,227 +11907,198.45,1003,225 +11908,198.46666666666667,993,224 +11909,198.48333333333332,986,223 +11910,198.5,982,222 +11911,198.51666666666665,982,222 +11912,198.53333333333333,982,222 +11913,198.55,986,222 +11914,198.56666666666666,993,223 +11915,198.58333333333334,1002,224 +11916,198.6,1014,225 +11917,198.61666666666667,1029,227 +11918,198.63333333333333,1046,229 +11919,198.65,1064,231 +11920,198.66666666666666,1086,233 +11921,198.68333333333334,1110,235 +11922,198.7,1135,237 +11923,198.71666666666667,1162,239 +11924,198.73333333333332,1192,241 +11925,198.75,1223,243 +11926,198.76666666666665,1255,244 +11927,198.78333333333333,1288,245 +11928,198.8,1322,245 +11929,198.81666666666666,1356,245 +11930,198.83333333333334,1391,245 +11931,198.85,1426,244 +11932,198.86666666666667,1462,243 +11933,198.88333333333333,1498,241 +11934,198.9,1533,239 +11935,198.91666666666666,1568,237 +11936,198.93333333333334,1602,234 +11937,198.95,1634,231 +11938,198.96666666666667,1666,227 +11939,198.98333333333332,1696,224 +11940,199.0,1724,220 +11941,199.01666666666665,1751,216 +11942,199.03333333333333,1776,213 +11943,199.05,1799,209 +11944,199.06666666666666,1820,206 +11945,199.08333333333334,1838,203 +11946,199.1,1854,200 +11947,199.11666666666667,1867,198 +11948,199.13333333333333,1878,196 +11949,199.15,1886,194 +11950,199.16666666666666,1892,193 +11951,199.18333333333334,1892,193 +11952,199.2,1892,193 +11953,199.21666666666667,1892,193 +11954,199.23333333333332,1886,195 +11955,199.25,1878,196 +11956,199.26666666666665,1868,199 +11957,199.28333333333333,1854,201 +11958,199.3,1839,204 +11959,199.31666666666666,1820,207 +11960,199.33333333333334,1800,211 +11961,199.35,1777,215 +11962,199.36666666666667,1753,218 +11963,199.38333333333333,1726,222 +11964,199.4,1698,226 +11965,199.41666666666666,1668,230 +11966,199.43333333333334,1637,234 +11967,199.45,1604,237 +11968,199.46666666666667,1570,240 +11969,199.48333333333332,1536,242 +11970,199.5,1501,244 +11971,199.51666666666665,1465,246 +11972,199.53333333333333,1429,247 +11973,199.55,1394,249 +11974,199.56666666666666,1359,249 +11975,199.58333333333334,1325,249 +11976,199.6,1291,248 +11977,199.61666666666667,1258,247 +11978,199.63333333333333,1226,245 +11979,199.65,1195,244 +11980,199.66666666666666,1166,242 +11981,199.68333333333334,1138,240 +11982,199.7,1113,237 +11983,199.71666666666667,1089,235 +11984,199.73333333333332,1068,233 +11985,199.75,1048,231 +11986,199.76666666666665,1031,228 +11987,199.78333333333333,1016,226 +11988,199.8,1004,225 +11989,199.81666666666666,995,223 +11990,199.83333333333334,988,222 +11991,199.85,984,222 +11992,199.86666666666667,984,222 +11993,199.88333333333333,984,222 +11994,199.9,987,222 +11995,199.91666666666666,993,223 +11996,199.93333333333334,1003,224 +11997,199.95,1015,225 +11998,199.96666666666667,1029,227 +11999,199.98333333333332,1046,229 +12000,200.0,1064,231 +12001,200.01666666666665,1086,233 +12002,200.03333333333333,1109,235 +12003,200.05,1135,237 +12004,200.06666666666666,1162,239 +12005,200.08333333333334,1191,241 +12006,200.1,1222,243 +12007,200.11666666666667,1253,244 +12008,200.13333333333333,1286,245 +12009,200.15,1320,245 +12010,200.16666666666666,1355,245 +12011,200.18333333333334,1390,245 +12012,200.2,1425,244 +12013,200.21666666666667,1461,243 +12014,200.23333333333332,1497,241 +12015,200.25,1532,239 +12016,200.26666666666665,1566,236 +12017,200.28333333333333,1600,233 +12018,200.3,1633,231 +12019,200.31666666666666,1664,227 +12020,200.33333333333334,1694,224 +12021,200.35,1723,220 +12022,200.36666666666667,1750,216 +12023,200.38333333333333,1775,213 +12024,200.4,1798,209 +12025,200.41666666666666,1818,206 +12026,200.43333333333334,1836,203 +12027,200.45,1852,200 +12028,200.46666666666667,1866,198 +12029,200.48333333333332,1877,196 +12030,200.5,1885,194 +12031,200.51666666666665,1890,194 +12032,200.53333333333333,1891,194 +12033,200.55,1891,194 +12034,200.56666666666666,1891,194 +12035,200.58333333333334,1885,195 +12036,200.6,1878,197 +12037,200.61666666666667,1867,199 +12038,200.63333333333333,1854,201 +12039,200.65,1839,204 +12040,200.66666666666666,1820,208 +12041,200.68333333333334,1800,211 +12042,200.7,1777,215 +12043,200.71666666666667,1753,218 +12044,200.73333333333332,1726,222 +12045,200.75,1698,226 +12046,200.76666666666665,1668,230 +12047,200.78333333333333,1637,233 +12048,200.8,1605,236 +12049,200.81666666666666,1571,239 +12050,200.83333333333334,1537,242 +12051,200.85,1503,244 +12052,200.86666666666667,1467,246 +12053,200.88333333333333,1431,247 +12054,200.9,1396,248 +12055,200.91666666666666,1361,248 +12056,200.93333333333334,1327,248 +12057,200.95,1293,248 +12058,200.96666666666667,1261,247 +12059,200.98333333333332,1228,245 +12060,201.0,1198,243 +12061,201.01666666666665,1168,242 +12062,201.03333333333333,1141,239 +12063,201.05,1115,237 +12064,201.06666666666666,1091,235 +12065,201.08333333333334,1070,233 +12066,201.1,1050,231 +12067,201.11666666666667,1033,229 +12068,201.13333333333333,1019,227 +12069,201.15,1007,225 +12070,201.16666666666666,997,224 +12071,201.18333333333334,990,222 +12072,201.2,985,222 +12073,201.21666666666667,985,222 +12074,201.23333333333332,985,222 +12075,201.25,989,222 +12076,201.26666666666665,995,223 +12077,201.28333333333333,1004,223 +12078,201.3,1016,225 +12079,201.31666666666666,1030,227 +12080,201.33333333333334,1046,228 +12081,201.35,1065,230 +12082,201.36666666666667,1086,232 +12083,201.38333333333333,1110,234 +12084,201.4,1135,237 +12085,201.41666666666666,1162,238 +12086,201.43333333333334,1191,240 +12087,201.45,1221,241 +12088,201.46666666666667,1253,243 +12089,201.48333333333332,1286,244 +12090,201.5,1320,245 +12091,201.51666666666665,1354,245 +12092,201.53333333333333,1389,245 +12093,201.55,1423,244 +12094,201.56666666666666,1460,242 +12095,201.58333333333334,1495,241 +12096,201.6,1530,239 +12097,201.61666666666667,1565,236 +12098,201.63333333333333,1598,234 +12099,201.65,1631,231 +12100,201.66666666666666,1663,227 +12101,201.68333333333334,1693,224 +12102,201.7,1721,220 +12103,201.71666666666667,1748,217 +12104,201.73333333333332,1773,213 +12105,201.75,1795,210 +12106,201.76666666666665,1816,207 +12107,201.78333333333333,1835,203 +12108,201.8,1850,200 +12109,201.81666666666666,1864,198 +12110,201.83333333333334,1875,196 +12111,201.85,1883,195 +12112,201.86666666666667,1889,194 +12113,201.88333333333333,1890,194 +12114,201.9,1890,194 +12115,201.91666666666666,1890,194 +12116,201.93333333333334,1884,195 +12117,201.95,1877,197 +12118,201.96666666666667,1866,199 +12119,201.98333333333332,1853,201 +12120,202.0,1838,204 +12121,202.01666666666665,1820,207 +12122,202.03333333333333,1800,211 +12123,202.05,1777,215 +12124,202.06666666666666,1753,218 +12125,202.08333333333334,1727,222 +12126,202.1,1699,226 +12127,202.11666666666667,1669,230 +12128,202.13333333333333,1638,233 +12129,202.15,1606,236 +12130,202.16666666666666,1572,239 +12131,202.18333333333334,1538,242 +12132,202.2,1504,244 +12133,202.21666666666667,1468,246 +12134,202.23333333333332,1433,247 +12135,202.25,1398,248 +12136,202.26666666666665,1363,248 +12137,202.28333333333333,1330,248 +12138,202.3,1295,248 +12139,202.31666666666666,1263,247 +12140,202.33333333333334,1230,245 +12141,202.35,1199,243 +12142,202.36666666666667,1171,241 +12143,202.38333333333333,1143,239 +12144,202.4,1117,237 +12145,202.41666666666666,1094,235 +12146,202.43333333333334,1072,233 +12147,202.45,1053,231 +12148,202.46666666666667,1036,228 +12149,202.48333333333332,1021,226 +12150,202.5,1008,225 +12151,202.51666666666665,999,224 +12152,202.53333333333333,992,223 +12153,202.55,987,222 +12154,202.56666666666666,987,222 +12155,202.58333333333334,987,222 +12156,202.6,990,222 +12157,202.61666666666667,996,223 +12158,202.63333333333333,1005,224 +12159,202.65,1017,225 +12160,202.66666666666666,1030,227 +12161,202.68333333333334,1047,229 +12162,202.7,1065,230 +12163,202.71666666666667,1087,233 +12164,202.73333333333332,1110,234 +12165,202.75,1135,237 +12166,202.76666666666665,1162,239 +12167,202.78333333333333,1191,240 +12168,202.8,1221,242 +12169,202.81666666666666,1253,243 +12170,202.83333333333334,1285,244 +12171,202.85,1319,245 +12172,202.86666666666667,1353,245 +12173,202.88333333333333,1388,245 +12174,202.9,1423,244 +12175,202.91666666666666,1458,243 +12176,202.93333333333334,1494,241 +12177,202.95,1529,239 +12178,202.96666666666667,1564,237 +12179,202.98333333333332,1597,234 +12180,203.0,1630,231 +12181,203.01666666666665,1661,228 +12182,203.03333333333333,1691,224 +12183,203.05,1719,220 +12184,203.06666666666666,1746,217 +12185,203.08333333333334,1771,213 +12186,203.1,1794,210 +12187,203.11666666666667,1814,206 +12188,203.13333333333333,1833,204 +12189,203.15,1849,201 +12190,203.16666666666666,1862,199 +12191,203.18333333333334,1873,197 +12192,203.2,1882,195 +12193,203.21666666666667,1888,194 +12194,203.23333333333332,1889,194 +12195,203.25,1889,194 +12196,203.26666666666665,1889,194 +12197,203.28333333333333,1884,195 +12198,203.3,1876,197 +12199,203.31666666666666,1866,199 +12200,203.33333333333334,1853,202 +12201,203.35,1837,205 +12202,203.36666666666667,1820,208 +12203,203.38333333333333,1800,211 +12204,203.4,1778,215 +12205,203.41666666666666,1753,218 +12206,203.43333333333334,1727,222 +12207,203.45,1699,226 +12208,203.46666666666667,1670,230 +12209,203.48333333333332,1639,233 +12210,203.5,1607,236 +12211,203.51666666666665,1574,239 +12212,203.53333333333333,1540,242 +12213,203.55,1505,245 +12214,203.56666666666666,1470,246 +12215,203.58333333333334,1434,247 +12216,203.6,1399,248 +12217,203.61666666666667,1364,248 +12218,203.63333333333333,1331,248 +12219,203.65,1298,248 +12220,203.66666666666666,1264,247 +12221,203.68333333333334,1232,246 +12222,203.7,1202,244 +12223,203.71666666666667,1172,242 +12224,203.73333333333332,1145,241 +12225,203.75,1119,238 +12226,203.76666666666665,1095,236 +12227,203.78333333333333,1074,234 +12228,203.8,1054,231 +12229,203.81666666666666,1037,229 +12230,203.83333333333334,1022,227 +12231,203.85,1010,226 +12232,203.86666666666667,1000,225 +12233,203.88333333333333,993,223 +12234,203.9,988,223 +12235,203.91666666666666,988,223 +12236,203.93333333333334,988,223 +12237,203.95,991,223 +12238,203.96666666666667,997,223 +12239,203.98333333333332,1006,225 +12240,204.0,1017,226 +12241,204.01666666666665,1031,227 +12242,204.03333333333333,1047,229 +12243,204.05,1066,231 +12244,204.06666666666666,1087,233 +12245,204.08333333333334,1110,235 +12246,204.1,1135,238 +12247,204.11666666666667,1162,239 +12248,204.13333333333333,1191,241 +12249,204.15,1221,243 +12250,204.16666666666666,1252,244 +12251,204.18333333333334,1285,245 +12252,204.2,1319,245 +12253,204.21666666666667,1352,245 +12254,204.23333333333332,1387,245 +12255,204.25,1422,245 +12256,204.26666666666665,1457,243 +12257,204.28333333333333,1493,242 +12258,204.3,1528,240 +12259,204.31666666666666,1562,238 +12260,204.33333333333334,1595,235 +12261,204.35,1628,233 +12262,204.36666666666667,1659,229 +12263,204.38333333333333,1689,225 +12264,204.4,1718,222 +12265,204.41666666666666,1745,218 +12266,204.43333333333334,1770,215 +12267,204.45,1792,212 +12268,204.46666666666667,1813,209 +12269,204.48333333333332,1832,205 +12270,204.5,1848,202 +12271,204.51666666666665,1861,199 +12272,204.53333333333333,1872,198 +12273,204.55,1881,196 +12274,204.56666666666666,1887,195 +12275,204.58333333333334,1888,195 +12276,204.6,1888,195 +12277,204.61666666666667,1888,195 +12278,204.63333333333333,1883,197 +12279,204.65,1875,198 +12280,204.66666666666666,1865,200 +12281,204.68333333333334,1853,203 +12282,204.7,1838,206 +12283,204.71666666666667,1820,209 +12284,204.73333333333332,1800,212 +12285,204.75,1778,216 +12286,204.76666666666665,1754,219 +12287,204.78333333333333,1728,223 +12288,204.8,1700,227 +12289,204.81666666666666,1671,231 +12290,204.83333333333334,1640,234 +12291,204.85,1608,237 +12292,204.86666666666667,1575,240 +12293,204.88333333333333,1541,243 +12294,204.9,1507,245 +12295,204.91666666666666,1472,247 +12296,204.93333333333334,1436,248 +12297,204.95,1401,249 +12298,204.96666666666667,1366,249 +12299,204.98333333333332,1333,249 +12300,205.0,1299,249 +12301,205.01666666666665,1266,248 +12302,205.03333333333333,1234,246 +12303,205.04999999999998,1204,245 +12304,205.06666666666666,1175,243 +12305,205.08333333333334,1147,241 +12306,205.1,1122,239 +12307,205.11666666666667,1098,237 +12308,205.13333333333333,1076,234 +12309,205.15,1057,232 +12310,205.16666666666666,1039,230 +12311,205.18333333333334,1024,228 +12312,205.2,1012,227 +12313,205.21666666666667,1002,225 +12314,205.23333333333332,995,224 +12315,205.25,990,224 +12316,205.26666666666665,990,224 +12317,205.28333333333333,990,224 +12318,205.29999999999998,993,224 +12319,205.31666666666666,999,224 +12320,205.33333333333334,1007,225 +12321,205.35,1018,227 +12322,205.36666666666667,1032,228 +12323,205.38333333333333,1048,230 +12324,205.4,1067,232 +12325,205.41666666666666,1087,234 +12326,205.43333333333334,1111,236 +12327,205.45,1135,238 +12328,205.46666666666667,1162,240 +12329,205.48333333333332,1190,241 +12330,205.5,1220,243 +12331,205.51666666666665,1252,244 +12332,205.53333333333333,1284,245 +12333,205.54999999999998,1318,247 +12334,205.56666666666666,1352,247 +12335,205.58333333333334,1386,247 +12336,205.6,1420,246 +12337,205.61666666666667,1456,245 +12338,205.63333333333333,1491,243 +12339,205.65,1526,241 +12340,205.66666666666666,1560,238 +12341,205.68333333333334,1593,236 +12342,205.7,1626,233 +12343,205.71666666666667,1657,230 +12344,205.73333333333332,1687,227 +12345,205.75,1716,223 +12346,205.76666666666665,1743,220 +12347,205.78333333333333,1768,216 +12348,205.79999999999998,1791,213 +12349,205.81666666666666,1812,210 +12350,205.83333333333334,1830,207 +12351,205.85,1846,204 +12352,205.86666666666667,1860,202 +12353,205.88333333333333,1871,200 +12354,205.9,1880,198 +12355,205.91666666666666,1886,197 +12356,205.93333333333334,1887,197 +12357,205.95,1887,197 +12358,205.96666666666667,1887,197 +12359,205.98333333333332,1882,198 +12360,206.0,1875,200 +12361,206.01666666666665,1865,202 +12362,206.03333333333333,1853,205 +12363,206.04999999999998,1838,207 +12364,206.06666666666666,1820,210 +12365,206.08333333333334,1800,214 +12366,206.1,1779,217 +12367,206.11666666666667,1754,221 +12368,206.13333333333333,1729,225 +12369,206.15,1701,228 +12370,206.16666666666666,1672,232 +12371,206.18333333333334,1641,235 +12372,206.2,1609,238 +12373,206.21666666666667,1576,241 +12374,206.23333333333332,1542,244 +12375,206.25,1508,246 +12376,206.26666666666665,1473,248 +12377,206.28333333333333,1438,249 +12378,206.29999999999998,1402,250 +12379,206.31666666666666,1368,250 +12380,206.33333333333334,1335,250 +12381,206.35,1301,250 +12382,206.36666666666667,1269,249 +12383,206.38333333333333,1236,247 +12384,206.4,1206,246 +12385,206.41666666666666,1176,244 +12386,206.43333333333334,1149,242 +12387,206.45,1123,239 +12388,206.46666666666667,1099,237 +12389,206.48333333333332,1078,235 +12390,206.5,1058,233 +12391,206.51666666666665,1041,231 +12392,206.53333333333333,1026,229 +12393,206.54999999999998,1013,227 +12394,206.56666666666666,1004,226 +12395,206.58333333333334,996,225 +12396,206.6,991,224 +12397,206.61666666666667,991,224 +12398,206.63333333333333,991,224 +12399,206.65,994,224 +12400,206.66666666666666,999,225 +12401,206.68333333333334,1008,226 +12402,206.7,1019,227 +12403,206.71666666666667,1032,229 +12404,206.73333333333332,1048,231 +12405,206.75,1067,232 +12406,206.76666666666665,1087,234 +12407,206.78333333333333,1110,236 +12408,206.79999999999998,1135,238 +12409,206.81666666666666,1161,240 +12410,206.83333333333334,1190,242 +12411,206.85,1220,244 +12412,206.86666666666667,1251,245 +12413,206.88333333333333,1284,246 +12414,206.9,1318,247 +12415,206.91666666666666,1352,247 +12416,206.93333333333334,1385,247 +12417,206.95,1420,246 +12418,206.96666666666667,1455,245 +12419,206.98333333333332,1491,244 +12420,207.0,1525,242 +12421,207.01666666666665,1559,240 +12422,207.03333333333333,1593,237 +12423,207.04999999999998,1625,234 +12424,207.06666666666666,1657,231 +12425,207.08333333333334,1687,227 +12426,207.1,1715,224 +12427,207.11666666666667,1742,221 +12428,207.13333333333333,1767,217 +12429,207.15,1790,214 +12430,207.16666666666666,1810,211 +12431,207.18333333333334,1829,208 +12432,207.2,1845,205 +12433,207.21666666666667,1859,202 +12434,207.23333333333332,1870,200 +12435,207.25,1879,199 +12436,207.26666666666665,1885,198 +12437,207.28333333333333,1887,198 +12438,207.29999999999998,1887,198 +12439,207.31666666666666,1887,198 +12440,207.33333333333334,1882,199 +12441,207.35,1875,201 +12442,207.36666666666667,1865,203 +12443,207.38333333333333,1852,205 +12444,207.4,1837,208 +12445,207.41666666666666,1820,211 +12446,207.43333333333334,1800,214 +12447,207.45,1779,218 +12448,207.46666666666667,1755,221 +12449,207.48333333333332,1729,225 +12450,207.5,1702,229 +12451,207.51666666666665,1673,232 +12452,207.53333333333333,1642,235 +12453,207.54999999999998,1610,238 +12454,207.56666666666666,1577,241 +12455,207.58333333333334,1544,244 +12456,207.6,1510,246 +12457,207.61666666666667,1475,247 +12458,207.63333333333333,1439,249 +12459,207.65,1405,250 +12460,207.66666666666666,1370,250 +12461,207.68333333333334,1337,250 +12462,207.7,1303,250 +12463,207.71666666666667,1271,249 +12464,207.73333333333332,1239,247 +12465,207.75,1208,246 +12466,207.76666666666665,1178,244 +12467,207.78333333333333,1151,242 +12468,207.79999999999998,1126,240 +12469,207.81666666666666,1102,238 +12470,207.83333333333334,1080,236 +12471,207.85,1061,234 +12472,207.86666666666667,1043,232 +12473,207.88333333333333,1028,229 +12474,207.9,1016,228 +12475,207.91666666666666,1006,227 +12476,207.93333333333334,999,225 +12477,207.95,993,225 +12478,207.96666666666667,993,224 +12479,207.98333333333332,993,224 +12480,208.0,995,224 +12481,208.01666666666665,1001,225 +12482,208.03333333333333,1009,226 +12483,208.04999999999998,1020,227 +12484,208.06666666666666,1033,229 +12485,208.08333333333334,1049,231 +12486,208.1,1068,233 +12487,208.11666666666667,1088,234 +12488,208.13333333333333,1111,236 +12489,208.15,1136,238 +12490,208.16666666666666,1162,240 +12491,208.18333333333334,1190,242 +12492,208.2,1220,244 +12493,208.21666666666667,1251,245 +12494,208.23333333333332,1284,246 +12495,208.25,1317,247 +12496,208.26666666666665,1351,247 +12497,208.28333333333333,1384,247 +12498,208.29999999999998,1418,247 +12499,208.31666666666666,1454,245 +12500,208.33333333333334,1489,244 +12501,208.35,1524,242 +12502,208.36666666666667,1558,240 +12503,208.38333333333333,1591,237 +12504,208.4,1624,235 +12505,208.41666666666666,1655,231 +12506,208.43333333333334,1685,228 +12507,208.45,1713,225 +12508,208.46666666666667,1740,221 +12509,208.48333333333332,1765,218 +12510,208.5,1788,215 +12511,208.51666666666665,1808,212 +12512,208.53333333333333,1827,208 +12513,208.54999999999998,1843,206 +12514,208.56666666666666,1857,204 +12515,208.58333333333334,1868,202 +12516,208.6,1877,200 +12517,208.61666666666667,1883,199 +12518,208.63333333333333,1885,199 +12519,208.65,1885,199 +12520,208.66666666666666,1885,199 +12521,208.68333333333334,1881,200 +12522,208.7,1873,201 +12523,208.71666666666667,1864,203 +12524,208.73333333333332,1851,206 +12525,208.75,1836,208 +12526,208.76666666666665,1819,212 +12527,208.78333333333333,1800,215 +12528,208.79999999999998,1778,218 +12529,208.81666666666666,1754,222 +12530,208.83333333333334,1729,226 +12531,208.85,1701,229 +12532,208.86666666666667,1673,233 +12533,208.88333333333333,1642,236 +12534,208.9,1610,239 +12535,208.91666666666666,1578,242 +12536,208.93333333333334,1544,244 +12537,208.95,1510,246 +12538,208.96666666666667,1476,248 +12539,208.98333333333332,1440,250 +12540,209.0,1406,251 +12541,209.01666666666665,1371,251 +12542,209.03333333333333,1338,251 +12543,209.04999999999998,1304,250 +12544,209.06666666666666,1272,249 +12545,209.08333333333334,1239,248 +12546,209.1,1209,246 +12547,209.11666666666667,1180,244 +12548,209.13333333333333,1153,242 +12549,209.15,1127,240 +12550,209.16666666666666,1103,238 +12551,209.18333333333334,1081,236 +12552,209.2,1062,234 +12553,209.21666666666667,1045,231 +12554,209.23333333333332,1030,230 +12555,209.25,1017,228 +12556,209.26666666666665,1007,227 +12557,209.28333333333333,999,226 +12558,209.29999999999998,995,225 +12559,209.31666666666666,995,225 +12560,209.33333333333334,995,225 +12561,209.35,996,225 +12562,209.36666666666667,1001,225 +12563,209.38333333333333,1010,226 +12564,209.4,1021,227 +12565,209.41666666666666,1034,229 +12566,209.43333333333334,1050,231 +12567,209.45,1068,233 +12568,209.46666666666667,1088,235 +12569,209.48333333333332,1111,237 +12570,209.5,1135,239 +12571,209.51666666666665,1162,241 +12572,209.53333333333333,1190,243 +12573,209.54999999999998,1220,244 +12574,209.56666666666666,1251,245 +12575,209.58333333333334,1283,247 +12576,209.6,1317,248 +12577,209.61666666666667,1350,248 +12578,209.63333333333333,1383,248 +12579,209.65,1418,247 +12580,209.66666666666666,1453,246 +12581,209.68333333333334,1488,245 +12582,209.7,1522,243 +12583,209.71666666666667,1556,241 +12584,209.73333333333332,1590,238 +12585,209.75,1622,235 +12586,209.76666666666665,1653,232 +12587,209.78333333333333,1683,229 +12588,209.79999999999998,1711,226 +12589,209.81666666666666,1738,222 +12590,209.83333333333334,1763,219 +12591,209.85,1786,215 +12592,209.86666666666667,1807,212 +12593,209.88333333333333,1825,209 +12594,209.9,1841,206 +12595,209.91666666666666,1855,204 +12596,209.93333333333334,1866,202 +12597,209.95,1875,200 +12598,209.96666666666667,1882,200 +12599,209.98333333333332,1884,200 +12600,210.0,1884,200 +12601,210.01666666666665,1884,200 +12602,210.03333333333333,1879,201 +12603,210.04999999999998,1872,202 +12604,210.06666666666666,1863,204 +12605,210.08333333333334,1851,206 +12606,210.1,1835,209 +12607,210.11666666666667,1819,212 +12608,210.13333333333333,1799,215 +12609,210.15,1778,219 +12610,210.16666666666666,1754,222 +12611,210.18333333333334,1729,226 +12612,210.2,1702,230 +12613,210.21666666666667,1673,233 +12614,210.23333333333332,1642,236 +12615,210.25,1611,239 +12616,210.26666666666665,1578,242 +12617,210.28333333333333,1545,245 +12618,210.29999999999998,1511,247 +12619,210.31666666666666,1477,249 +12620,210.33333333333334,1441,250 +12621,210.35,1407,251 +12622,210.36666666666667,1372,251 +12623,210.38333333333333,1340,251 +12624,210.4,1306,250 +12625,210.41666666666666,1273,250 +12626,210.43333333333334,1241,248 +12627,210.45,1211,246 +12628,210.46666666666667,1182,245 +12629,210.48333333333332,1154,243 +12630,210.5,1129,241 +12631,210.51666666666665,1105,239 +12632,210.53333333333333,1083,237 +12633,210.54999999999998,1063,234 +12634,210.56666666666666,1046,232 +12635,210.58333333333334,1031,230 +12636,210.6,1018,229 +12637,210.61666666666667,1008,227 +12638,210.63333333333333,1001,226 +12639,210.65,996,225 +12640,210.66666666666666,996,225 +12641,210.68333333333334,996,225 +12642,210.7,997,225 +12643,210.71666666666667,1002,226 +12644,210.73333333333332,1010,227 +12645,210.75,1021,228 +12646,210.76666666666665,1034,229 +12647,210.78333333333333,1050,231 +12648,210.79999999999998,1068,233 +12649,210.81666666666666,1089,235 +12650,210.83333333333334,1111,237 +12651,210.85,1135,239 +12652,210.86666666666667,1161,241 +12653,210.88333333333333,1189,243 +12654,210.9,1219,244 +12655,210.91666666666666,1250,246 +12656,210.93333333333334,1282,247 +12657,210.95,1316,248 +12658,210.96666666666667,1349,248 +12659,210.98333333333332,1382,248 +12660,211.0,1416,247 +12661,211.01666666666665,1451,246 +12662,211.03333333333333,1487,245 +12663,211.04999999999998,1521,243 +12664,211.06666666666666,1555,240 +12665,211.08333333333334,1588,238 +12666,211.1,1620,236 +12667,211.11666666666667,1651,232 +12668,211.13333333333333,1681,229 +12669,211.15,1710,226 +12670,211.16666666666666,1736,222 +12671,211.18333333333334,1761,219 +12672,211.2,1784,215 +12673,211.21666666666667,1805,212 +12674,211.23333333333332,1824,209 +12675,211.25,1840,206 +12676,211.26666666666665,1854,204 +12677,211.28333333333333,1865,202 +12678,211.29999999999998,1874,201 +12679,211.31666666666666,1880,200 +12680,211.33333333333334,1883,199 +12681,211.35,1883,199 +12682,211.36666666666667,1883,199 +12683,211.38333333333333,1878,200 +12684,211.4,1871,202 +12685,211.41666666666666,1862,204 +12686,211.43333333333334,1849,206 +12687,211.45,1835,209 +12688,211.46666666666667,1818,212 +12689,211.48333333333332,1799,215 +12690,211.5,1778,219 +12691,211.51666666666665,1754,222 +12692,211.53333333333333,1729,226 +12693,211.54999999999998,1702,229 +12694,211.56666666666666,1673,233 +12695,211.58333333333334,1643,236 +12696,211.6,1611,239 +12697,211.61666666666667,1579,242 +12698,211.63333333333333,1545,245 +12699,211.65,1512,247 +12700,211.66666666666666,1477,248 +12701,211.68333333333334,1443,250 +12702,211.7,1408,251 +12703,211.71666666666667,1374,251 +12704,211.73333333333332,1341,251 +12705,211.75,1307,251 +12706,211.76666666666665,1274,250 +12707,211.78333333333333,1243,248 +12708,211.79999999999998,1212,247 +12709,211.81666666666666,1183,245 +12710,211.83333333333334,1156,243 +12711,211.85,1130,241 +12712,211.86666666666667,1106,239 +12713,211.88333333333333,1084,236 +12714,211.9,1065,234 +12715,211.91666666666666,1047,232 +12716,211.93333333333334,1032,230 +12717,211.95,1019,229 +12718,211.96666666666667,1010,227 +12719,211.98333333333332,1002,226 +12720,212.0,997,225 +12721,212.01666666666665,997,225 +12722,212.03333333333333,997,225 +12723,212.04999999999998,998,225 +12724,212.06666666666666,1003,226 +12725,212.08333333333334,1011,227 +12726,212.1,1022,228 +12727,212.11666666666667,1035,229 +12728,212.13333333333333,1050,231 +12729,212.15,1068,233 +12730,212.16666666666666,1088,235 +12731,212.18333333333334,1111,237 +12732,212.2,1135,239 +12733,212.21666666666667,1161,241 +12734,212.23333333333332,1189,243 +12735,212.25,1218,244 +12736,212.26666666666665,1250,245 +12737,212.28333333333333,1281,247 +12738,212.29999999999998,1314,248 +12739,212.31666666666666,1348,248 +12740,212.33333333333334,1381,248 +12741,212.35,1415,247 +12742,212.36666666666667,1450,246 +12743,212.38333333333333,1485,245 +12744,212.4,1519,243 +12745,212.41666666666666,1553,241 +12746,212.43333333333334,1586,238 +12747,212.45,1619,236 +12748,212.46666666666667,1650,233 +12749,212.48333333333332,1679,229 +12750,212.5,1708,226 +12751,212.51666666666665,1734,222 +12752,212.53333333333333,1760,219 +12753,212.54999999999998,1782,216 +12754,212.56666666666666,1803,213 +12755,212.58333333333334,1822,210 +12756,212.6,1838,207 +12757,212.61666666666667,1852,204 +12758,212.63333333333333,1863,203 +12759,212.65,1872,201 +12760,212.66666666666666,1878,200 +12761,212.68333333333334,1881,200 +12762,212.7,1881,200 +12763,212.71666666666667,1881,200 +12764,212.73333333333332,1877,201 +12765,212.75,1870,202 +12766,212.76666666666665,1860,204 +12767,212.78333333333333,1848,207 +12768,212.79999999999998,1834,209 +12769,212.81666666666666,1817,212 +12770,212.83333333333334,1798,216 +12771,212.85,1777,219 +12772,212.86666666666667,1753,222 +12773,212.88333333333333,1728,226 +12774,212.9,1701,229 +12775,212.91666666666666,1672,233 +12776,212.93333333333334,1642,236 +12777,212.95,1611,239 +12778,212.96666666666667,1579,242 +12779,212.98333333333332,1546,244 +12780,213.0,1512,246 +12781,213.01666666666665,1478,248 +12782,213.03333333333333,1443,250 +12783,213.04999999999998,1409,251 +12784,213.06666666666666,1375,251 +12785,213.08333333333334,1341,251 +12786,213.1,1308,251 +12787,213.11666666666667,1276,250 +12788,213.13333333333333,1244,248 +12789,213.15,1214,247 +12790,213.16666666666666,1184,245 +12791,213.18333333333334,1157,243 +12792,213.2,1131,241 +12793,213.21666666666667,1107,239 +12794,213.23333333333332,1086,237 +12795,213.25,1066,234 +12796,213.26666666666665,1049,232 +12797,213.28333333333333,1033,231 +12798,213.29999999999998,1021,229 +12799,213.31666666666666,1011,227 +12800,213.33333333333334,1003,226 +12801,213.35,998,225 +12802,213.36666666666667,998,225 +12803,213.38333333333333,998,225 +12804,213.4,998,225 +12805,213.41666666666666,1004,226 +12806,213.43333333333334,1012,227 +12807,213.45,1022,228 +12808,213.46666666666667,1035,229 +12809,213.48333333333332,1051,231 +12810,213.5,1069,233 +12811,213.51666666666665,1089,235 +12812,213.53333333333333,1111,237 +12813,213.54999999999998,1135,239 +12814,213.56666666666666,1161,241 +12815,213.58333333333334,1188,242 +12816,213.6,1218,244 +12817,213.61666666666667,1248,246 +12818,213.63333333333333,1281,247 +12819,213.65,1314,248 +12820,213.66666666666666,1347,248 +12821,213.68333333333334,1380,248 +12822,213.7,1414,247 +12823,213.71666666666667,1448,246 +12824,213.73333333333332,1483,244 +12825,213.75,1518,243 +12826,213.76666666666665,1552,241 +12827,213.78333333333333,1585,239 +12828,213.79999999999998,1617,236 +12829,213.81666666666666,1648,233 +12830,213.83333333333334,1678,230 +12831,213.85,1706,226 +12832,213.86666666666667,1732,223 +12833,213.88333333333333,1757,219 +12834,213.9,1781,216 +12835,213.91666666666666,1801,213 +12836,213.93333333333334,1820,210 +12837,213.95,1836,207 +12838,213.96666666666667,1850,205 +12839,213.98333333333332,1861,203 +12840,214.0,1870,202 +12841,214.01666666666665,1877,200 +12842,214.03333333333333,1880,200 +12843,214.04999999999998,1880,200 +12844,214.06666666666666,1880,200 +12845,214.08333333333334,1875,201 +12846,214.1,1869,203 +12847,214.11666666666667,1859,204 +12848,214.13333333333333,1847,207 +12849,214.15,1833,209 +12850,214.16666666666666,1816,212 +12851,214.18333333333334,1798,216 +12852,214.2,1776,219 +12853,214.21666666666667,1753,223 +12854,214.23333333333332,1728,226 +12855,214.25,1701,230 +12856,214.26666666666665,1673,233 +12857,214.28333333333333,1643,236 +12858,214.29999999999998,1612,239 +12859,214.31666666666666,1579,242 +12860,214.33333333333334,1546,245 +12861,214.35,1513,247 +12862,214.36666666666667,1479,248 +12863,214.38333333333333,1445,250 +12864,214.4,1409,251 +12865,214.41666666666666,1375,251 +12866,214.43333333333334,1342,251 +12867,214.45,1309,251 +12868,214.46666666666667,1277,250 +12869,214.48333333333332,1245,249 +12870,214.5,1215,247 +12871,214.51666666666665,1186,245 +12872,214.53333333333333,1158,243 +12873,214.54999999999998,1133,241 +12874,214.56666666666666,1109,239 +12875,214.58333333333334,1087,237 +12876,214.6,1068,235 +12877,214.61666666666667,1050,232 +12878,214.63333333333333,1035,230 +12879,214.65,1022,229 +12880,214.66666666666666,1012,228 +12881,214.68333333333334,1004,226 +12882,214.7,999,225 +12883,214.71666666666667,999,225 +12884,214.73333333333332,999,225 +12885,214.75,999,225 +12886,214.76666666666665,1005,226 +12887,214.78333333333333,1013,227 +12888,214.79999999999998,1023,228 +12889,214.81666666666666,1036,229 +12890,214.83333333333334,1052,231 +12891,214.85,1069,233 +12892,214.86666666666667,1089,235 +12893,214.88333333333333,1111,237 +12894,214.9,1135,239 +12895,214.91666666666666,1161,241 +12896,214.93333333333334,1189,242 +12897,214.95,1218,244 +12898,214.96666666666667,1248,245 +12899,214.98333333333332,1280,247 +12900,215.0,1313,247 +12901,215.01666666666665,1347,247 +12902,215.03333333333333,1380,247 +12903,215.04999999999998,1413,247 +12904,215.06666666666666,1448,246 +12905,215.08333333333334,1483,245 +12906,215.1,1517,243 +12907,215.11666666666667,1550,241 +12908,215.13333333333333,1583,239 +12909,215.15,1616,236 +12910,215.16666666666666,1647,233 +12911,215.18333333333334,1676,229 +12912,215.2,1705,226 +12913,215.21666666666667,1731,223 +12914,215.23333333333332,1756,220 +12915,215.25,1779,216 +12916,215.26666666666665,1799,213 +12917,215.28333333333333,1818,210 +12918,215.29999999999998,1834,208 +12919,215.31666666666666,1848,205 +12920,215.33333333333334,1860,203 +12921,215.35,1869,202 +12922,215.36666666666667,1875,201 +12923,215.38333333333333,1878,200 +12924,215.4,1878,200 +12925,215.41666666666666,1878,200 +12926,215.43333333333334,1874,201 +12927,215.45,1867,203 +12928,215.46666666666667,1858,205 +12929,215.48333333333332,1846,207 +12930,215.5,1832,209 +12931,215.51666666666665,1815,212 +12932,215.53333333333333,1797,216 +12933,215.54999999999998,1776,219 +12934,215.56666666666666,1753,222 +12935,215.58333333333334,1728,226 +12936,215.6,1701,229 +12937,215.61666666666667,1673,233 +12938,215.63333333333333,1643,236 +12939,215.65,1612,239 +12940,215.66666666666666,1580,242 +12941,215.68333333333334,1547,244 +12942,215.7,1513,247 +12943,215.71666666666667,1479,248 +12944,215.73333333333332,1444,249 +12945,215.75,1410,251 +12946,215.76666666666665,1376,251 +12947,215.78333333333333,1343,251 +12948,215.79999999999998,1311,251 +12949,215.81666666666666,1278,250 +12950,215.83333333333334,1246,249 +12951,215.85,1216,247 +12952,215.86666666666667,1187,245 +12953,215.88333333333333,1159,243 +12954,215.9,1134,241 +12955,215.91666666666666,1110,239 +12956,215.93333333333334,1088,237 +12957,215.95,1069,235 +12958,215.96666666666667,1051,233 +12959,215.98333333333332,1036,231 +12960,216.0,1023,229 +12961,216.01666666666665,1013,228 +12962,216.03333333333333,1005,227 +12963,216.04999999999998,1000,226 +12964,216.06666666666666,1000,225 +12965,216.08333333333334,1000,225 +12966,216.1,1000,225 +12967,216.11666666666667,1006,226 +12968,216.13333333333333,1014,227 +12969,216.15,1024,228 +12970,216.16666666666666,1037,229 +12971,216.18333333333334,1052,231 +12972,216.2,1070,233 +12973,216.21666666666667,1090,235 +12974,216.23333333333332,1111,237 +12975,216.25,1135,239 +12976,216.26666666666665,1161,241 +12977,216.28333333333333,1188,243 +12978,216.29999999999998,1217,244 +12979,216.31666666666666,1248,246 +12980,216.33333333333334,1279,247 +12981,216.35,1312,248 +12982,216.36666666666667,1345,248 +12983,216.38333333333333,1378,248 +12984,216.4,1412,248 +12985,216.41666666666666,1447,246 +12986,216.43333333333334,1481,245 +12987,216.45,1516,243 +12988,216.46666666666667,1549,241 +12989,216.48333333333332,1582,239 +12990,216.5,1614,236 +12991,216.51666666666665,1645,233 +12992,216.53333333333333,1675,230 +12993,216.54999999999998,1703,227 +12994,216.56666666666666,1729,224 +12995,216.58333333333334,1755,220 +12996,216.6,1777,217 +12997,216.61666666666667,1798,214 +12998,216.63333333333333,1817,211 +12999,216.65,1833,208 +13000,216.66666666666666,1847,206 +13001,216.68333333333334,1858,204 +13002,216.7,1867,202 +13003,216.71666666666667,1874,201 +13004,216.73333333333332,1878,201 +13005,216.75,1878,201 +13006,216.76666666666665,1878,201 +13007,216.78333333333333,1873,202 +13008,216.79999999999998,1866,203 +13009,216.81666666666666,1857,205 +13010,216.83333333333334,1846,207 +13011,216.85,1832,210 +13012,216.86666666666667,1815,213 +13013,216.88333333333333,1796,216 +13014,216.9,1776,220 +13015,216.91666666666666,1753,223 +13016,216.93333333333334,1728,226 +13017,216.95,1701,230 +13018,216.96666666666667,1673,233 +13019,216.98333333333332,1643,236 +13020,217.0,1613,239 +13021,217.01666666666665,1580,242 +13022,217.03333333333333,1548,244 +13023,217.04999999999998,1514,247 +13024,217.06666666666666,1480,248 +13025,217.08333333333334,1446,250 +13026,217.1,1412,251 +13027,217.11666666666667,1377,251 +13028,217.13333333333333,1345,251 +13029,217.15,1312,251 +13030,217.16666666666666,1279,250 +13031,217.18333333333334,1248,249 +13032,217.2,1218,247 +13033,217.21666666666667,1189,245 +13034,217.23333333333332,1161,244 +13035,217.25,1136,241 +13036,217.26666666666665,1112,239 +13037,217.28333333333333,1090,237 +13038,217.29999999999998,1071,235 +13039,217.31666666666666,1053,233 +13040,217.33333333333334,1038,231 +13041,217.35,1025,229 +13042,217.36666666666667,1015,228 +13043,217.38333333333333,1007,226 +13044,217.4,1002,226 +13045,217.41666666666666,1002,226 +13046,217.43333333333334,1002,226 +13047,217.45,1002,226 +13048,217.46666666666667,1007,226 +13049,217.48333333333332,1015,227 +13050,217.5,1025,228 +13051,217.51666666666665,1038,229 +13052,217.53333333333333,1053,231 +13053,217.54999999999998,1070,233 +13054,217.56666666666666,1090,235 +13055,217.58333333333334,1111,237 +13056,217.6,1136,239 +13057,217.61666666666667,1161,240 +13058,217.63333333333333,1189,242 +13059,217.65,1217,244 +13060,217.66666666666666,1248,246 +13061,217.68333333333334,1279,247 +13062,217.7,1312,248 +13063,217.71666666666667,1345,248 +13064,217.73333333333332,1377,248 +13065,217.75,1412,247 +13066,217.76666666666665,1446,246 +13067,217.78333333333333,1481,245 +13068,217.79999999999998,1515,243 +13069,217.81666666666666,1548,241 +13070,217.83333333333334,1581,239 +13071,217.85,1613,236 +13072,217.86666666666667,1644,233 +13073,217.88333333333333,1673,230 +13074,217.9,1702,227 +13075,217.91666666666666,1728,224 +13076,217.93333333333334,1753,220 +13077,217.95,1776,217 +13078,217.96666666666667,1796,213 +13079,217.98333333333332,1815,210 +13080,218.0,1831,208 +13081,218.01666666666665,1845,206 +13082,218.03333333333333,1857,204 +13083,218.04999999999998,1866,202 +13084,218.06666666666666,1872,201 +13085,218.08333333333334,1876,201 +13086,218.1,1876,201 +13087,218.11666666666667,1876,201 +13088,218.13333333333333,1872,202 +13089,218.15,1866,203 +13090,218.16666666666666,1857,205 +13091,218.18333333333334,1845,207 +13092,218.2,1831,210 +13093,218.21666666666667,1815,213 +13094,218.23333333333332,1796,216 +13095,218.25,1775,219 +13096,218.26666666666665,1752,223 +13097,218.28333333333333,1728,226 +13098,218.29999999999998,1702,230 +13099,218.31666666666666,1673,233 +13100,218.33333333333334,1644,236 +13101,218.35,1613,239 +13102,218.36666666666667,1581,242 +13103,218.38333333333333,1549,244 +13104,218.4,1515,246 +13105,218.41666666666666,1481,248 +13106,218.43333333333334,1447,249 +13107,218.45,1413,251 +13108,218.46666666666667,1380,251 +13109,218.48333333333332,1347,251 +13110,218.5,1314,251 +13111,218.51666666666665,1281,250 +13112,218.53333333333333,1250,249 +13113,218.54999999999998,1220,247 +13114,218.56666666666666,1191,245 +13115,218.58333333333334,1163,244 +13116,218.6,1138,241 +13117,218.61666666666667,1114,239 +13118,218.63333333333333,1092,237 +13119,218.65,1072,235 +13120,218.66666666666666,1055,233 +13121,218.68333333333334,1040,231 +13122,218.7,1027,229 +13123,218.71666666666667,1016,228 +13124,218.73333333333332,1009,227 +13125,218.75,1003,226 +13126,218.76666666666665,1003,226 +13127,218.78333333333333,1003,226 +13128,218.79999999999998,1003,226 +13129,218.81666666666666,1008,226 +13130,218.83333333333334,1016,227 +13131,218.85,1026,228 +13132,218.86666666666667,1038,230 +13133,218.88333333333333,1054,231 +13134,218.9,1071,233 +13135,218.91666666666666,1091,235 +13136,218.93333333333334,1112,237 +13137,218.95,1136,239 +13138,218.96666666666667,1161,241 +13139,218.98333333333332,1189,243 +13140,219.0,1217,244 +13141,219.01666666666665,1248,246 +13142,219.03333333333333,1279,247 +13143,219.04999999999998,1311,247 +13144,219.06666666666666,1344,248 +13145,219.08333333333334,1377,248 +13146,219.1,1411,248 +13147,219.11666666666667,1445,246 +13148,219.13333333333333,1479,245 +13149,219.15,1513,243 +13150,219.16666666666666,1547,242 +13151,219.18333333333334,1580,239 +13152,219.2,1611,236 +13153,219.21666666666667,1642,234 +13154,219.23333333333332,1672,231 +13155,219.25,1700,227 +13156,219.26666666666665,1727,224 +13157,219.28333333333333,1751,221 +13158,219.29999999999998,1774,217 +13159,219.31666666666666,1795,214 +13160,219.33333333333334,1814,211 +13161,219.35,1830,209 +13162,219.36666666666667,1844,207 +13163,219.38333333333333,1855,204 +13164,219.4,1864,203 +13165,219.41666666666666,1871,202 +13166,219.43333333333334,1875,201 +13167,219.45,1875,201 +13168,219.46666666666667,1875,201 +13169,219.48333333333332,1871,202 +13170,219.5,1864,204 +13171,219.51666666666665,1856,206 +13172,219.53333333333333,1844,208 +13173,219.54999999999998,1830,210 +13174,219.56666666666666,1814,213 +13175,219.58333333333334,1796,216 +13176,219.6,1775,219 +13177,219.61666666666667,1752,223 +13178,219.63333333333333,1728,226 +13179,219.65,1701,230 +13180,219.66666666666666,1673,233 +13181,219.68333333333334,1644,236 +13182,219.7,1613,240 +13183,219.71666666666667,1582,242 +13184,219.73333333333332,1549,245 +13185,219.75,1516,247 +13186,219.76666666666665,1482,249 +13187,219.78333333333333,1448,250 +13188,219.79999999999998,1414,251 +13189,219.81666666666666,1381,251 +13190,219.83333333333334,1348,251 +13191,219.85,1315,251 +13192,219.86666666666667,1283,250 +13193,219.88333333333333,1252,249 +13194,219.9,1221,247 +13195,219.91666666666666,1192,245 +13196,219.93333333333334,1165,243 +13197,219.95,1139,241 +13198,219.96666666666667,1115,239 +13199,219.98333333333332,1094,237 +13200,220.0,1074,235 +13201,220.01666666666665,1056,233 +13202,220.03333333333333,1041,231 +13203,220.04999999999998,1028,229 +13204,220.06666666666666,1018,228 +13205,220.08333333333334,1010,227 +13206,220.1,1005,226 +13207,220.11666666666667,1004,226 +13208,220.13333333333333,1004,226 +13209,220.15,1004,226 +13210,220.16666666666666,1009,226 +13211,220.18333333333334,1017,227 +13212,220.2,1027,228 +13213,220.21666666666667,1040,229 +13214,220.23333333333332,1054,231 +13215,220.25,1071,233 +13216,220.26666666666665,1091,235 +13217,220.28333333333333,1112,237 +13218,220.29999999999998,1136,238 +13219,220.31666666666666,1161,241 +13220,220.33333333333334,1188,242 +13221,220.35,1217,244 +13222,220.36666666666667,1248,245 +13223,220.38333333333333,1278,246 +13224,220.4,1311,248 +13225,220.41666666666666,1344,248 +13226,220.43333333333334,1376,248 +13227,220.45,1410,247 +13228,220.46666666666667,1444,246 +13229,220.48333333333332,1479,245 +13230,220.5,1513,244 +13231,220.51666666666665,1545,242 +13232,220.53333333333333,1578,239 +13233,220.54999999999998,1610,237 +13234,220.56666666666666,1641,234 +13235,220.58333333333334,1671,231 +13236,220.6,1699,228 +13237,220.61666666666667,1725,224 +13238,220.63333333333333,1750,221 +13239,220.65,1773,218 +13240,220.66666666666666,1794,215 +13241,220.68333333333334,1812,212 +13242,220.7,1829,209 +13243,220.71666666666667,1843,206 +13244,220.73333333333332,1854,205 +13245,220.75,1863,203 +13246,220.76666666666665,1870,202 +13247,220.78333333333333,1874,202 +13248,220.79999999999998,1874,202 +13249,220.81666666666666,1874,202 +13250,220.83333333333334,1870,203 +13251,220.85,1863,204 +13252,220.86666666666667,1855,206 +13253,220.88333333333333,1843,208 +13254,220.9,1830,210 +13255,220.91666666666666,1813,213 +13256,220.93333333333334,1795,216 +13257,220.95,1774,220 +13258,220.96666666666667,1752,223 +13259,220.98333333333332,1728,227 +13260,221.0,1701,230 +13261,221.01666666666665,1674,233 +13262,221.03333333333333,1644,236 +13263,221.04999999999998,1614,239 +13264,221.06666666666666,1582,242 +13265,221.08333333333334,1550,244 +13266,221.1,1517,247 +13267,221.11666666666667,1483,248 +13268,221.13333333333333,1449,249 +13269,221.15,1415,250 +13270,221.16666666666666,1381,250 +13271,221.18333333333334,1349,250 +13272,221.2,1316,250 +13273,221.21666666666667,1284,250 +13274,221.23333333333332,1253,248 +13275,221.25,1222,247 +13276,221.26666666666665,1193,245 +13277,221.28333333333333,1166,243 +13278,221.29999999999998,1141,241 +13279,221.31666666666666,1117,239 +13280,221.33333333333334,1095,237 +13281,221.35,1075,235 +13282,221.36666666666667,1058,233 +13283,221.38333333333333,1043,231 +13284,221.4,1030,229 +13285,221.41666666666666,1019,228 +13286,221.43333333333334,1011,227 +13287,221.45,1006,226 +13288,221.46666666666667,1005,225 +13289,221.48333333333332,1005,225 +13290,221.5,1005,225 +13291,221.51666666666665,1010,226 +13292,221.53333333333333,1018,226 +13293,221.54999999999998,1028,228 +13294,221.56666666666666,1040,229 +13295,221.58333333333334,1055,230 +13296,221.6,1072,232 +13297,221.61666666666667,1092,234 +13298,221.63333333333333,1113,236 +13299,221.65,1136,238 +13300,221.66666666666666,1161,240 +13301,221.68333333333334,1188,242 +13302,221.7,1218,243 +13303,221.71666666666667,1247,245 +13304,221.73333333333332,1278,246 +13305,221.75,1310,247 +13306,221.76666666666665,1344,247 +13307,221.78333333333333,1376,247 +13308,221.79999999999998,1410,247 +13309,221.81666666666666,1444,246 +13310,221.83333333333334,1478,245 +13311,221.85,1512,244 +13312,221.86666666666667,1545,242 +13313,221.88333333333333,1577,239 +13314,221.9,1609,237 +13315,221.91666666666666,1640,234 +13316,221.93333333333334,1670,231 +13317,221.95,1698,228 +13318,221.96666666666667,1724,225 +13319,221.98333333333332,1749,221 +13320,222.0,1771,218 +13321,222.01666666666665,1792,215 +13322,222.03333333333333,1811,212 +13323,222.04999999999998,1827,210 +13324,222.06666666666666,1841,207 +13325,222.08333333333334,1853,205 +13326,222.1,1862,204 +13327,222.11666666666667,1869,203 +13328,222.13333333333333,1873,202 +13329,222.15,1873,202 +13330,222.16666666666666,1873,202 +13331,222.18333333333334,1870,203 +13332,222.2,1863,205 +13333,222.21666666666667,1854,206 +13334,222.23333333333332,1843,208 +13335,222.25,1829,211 +13336,222.26666666666665,1813,214 +13337,222.28333333333333,1795,217 +13338,222.29999999999998,1775,220 +13339,222.31666666666666,1752,223 +13340,222.33333333333334,1728,227 +13341,222.35,1702,230 +13342,222.36666666666667,1674,233 +13343,222.38333333333333,1645,236 +13344,222.4,1615,239 +13345,222.41666666666666,1583,242 +13346,222.43333333333334,1551,244 +13347,222.45,1518,246 +13348,222.46666666666667,1484,248 +13349,222.48333333333332,1450,249 +13350,222.5,1416,250 +13351,222.51666666666665,1383,250 +13352,222.53333333333333,1350,250 +13353,222.54999999999998,1318,250 +13354,222.56666666666666,1285,249 +13355,222.58333333333334,1254,248 +13356,222.6,1224,246 +13357,222.61666666666667,1195,245 +13358,222.63333333333333,1168,243 +13359,222.65,1142,241 +13360,222.66666666666666,1119,239 +13361,222.68333333333334,1097,236 +13362,222.7,1077,234 +13363,222.71666666666667,1060,232 +13364,222.73333333333332,1044,231 +13365,222.75,1031,229 +13366,222.76666666666665,1021,228 +13367,222.78333333333333,1013,226 +13368,222.79999999999998,1008,226 +13369,222.81666666666666,1007,225 +13370,222.83333333333334,1007,225 +13371,222.85,1007,225 +13372,222.86666666666667,1012,225 +13373,222.88333333333333,1019,226 +13374,222.9,1029,227 +13375,222.91666666666666,1041,229 +13376,222.93333333333334,1056,230 +13377,222.95,1073,232 +13378,222.96666666666667,1093,234 +13379,222.98333333333332,1114,236 +13380,223.0,1137,238 +13381,223.01666666666665,1162,240 +13382,223.03333333333333,1189,242 +13383,223.04999999999998,1217,243 +13384,223.06666666666666,1248,245 +13385,223.08333333333334,1278,246 +13386,223.1,1310,246 +13387,223.11666666666667,1343,247 +13388,223.13333333333333,1375,247 +13389,223.15,1409,247 +13390,223.16666666666666,1443,246 +13391,223.18333333333334,1478,244 +13392,223.2,1511,243 +13393,223.21666666666667,1544,241 +13394,223.23333333333332,1577,239 +13395,223.25,1608,236 +13396,223.26666666666665,1639,234 +13397,223.28333333333333,1668,231 +13398,223.29999999999998,1696,228 +13399,223.31666666666666,1723,224 +13400,223.33333333333334,1748,221 +13401,223.35,1770,218 +13402,223.36666666666667,1791,215 +13403,223.38333333333333,1810,212 +13404,223.4,1826,210 +13405,223.41666666666666,1840,207 +13406,223.43333333333334,1852,205 +13407,223.45,1861,204 +13408,223.46666666666667,1867,203 +13409,223.48333333333332,1871,202 +13410,223.5,1871,202 +13411,223.51666666666665,1871,202 +13412,223.53333333333333,1868,203 +13413,223.54999999999998,1862,204 +13414,223.56666666666666,1853,206 +13415,223.58333333333334,1842,208 +13416,223.6,1829,211 +13417,223.61666666666667,1813,213 +13418,223.63333333333333,1795,217 +13419,223.65,1774,219 +13420,223.66666666666666,1752,223 +13421,223.68333333333334,1728,226 +13422,223.7,1702,229 +13423,223.71666666666667,1674,233 +13424,223.73333333333332,1645,236 +13425,223.75,1615,239 +13426,223.76666666666665,1583,241 +13427,223.78333333333333,1551,244 +13428,223.79999999999998,1518,246 +13429,223.81666666666666,1485,247 +13430,223.83333333333334,1451,249 +13431,223.85,1417,250 +13432,223.86666666666667,1384,250 +13433,223.88333333333333,1351,250 +13434,223.9,1319,250 +13435,223.91666666666666,1286,249 +13436,223.93333333333334,1255,248 +13437,223.95,1225,246 +13438,223.96666666666667,1197,245 +13439,223.98333333333332,1169,242 +13440,224.0,1144,241 +13441,224.01666666666665,1120,239 +13442,224.03333333333333,1098,237 +13443,224.04999999999998,1079,234 +13444,224.06666666666666,1061,232 +13445,224.08333333333334,1046,230 +13446,224.1,1033,229 +13447,224.11666666666667,1022,227 +13448,224.13333333333333,1014,226 +13449,224.15,1009,226 +13450,224.16666666666666,1008,225 +13451,224.18333333333334,1008,225 +13452,224.2,1008,225 +13453,224.21666666666667,1012,226 +13454,224.23333333333332,1020,227 +13455,224.25,1029,228 +13456,224.26666666666665,1042,229 +13457,224.28333333333333,1057,230 +13458,224.29999999999998,1074,232 +13459,224.31666666666666,1093,234 +13460,224.33333333333334,1114,236 +13461,224.35,1137,238 +13462,224.36666666666667,1162,240 +13463,224.38333333333333,1189,241 +13464,224.4,1217,243 +13465,224.41666666666666,1247,245 +13466,224.43333333333334,1278,246 +13467,224.45,1310,246 +13468,224.46666666666667,1342,247 +13469,224.48333333333332,1375,247 +13470,224.5,1408,247 +13471,224.51666666666665,1442,246 +13472,224.53333333333333,1477,245 +13473,224.54999999999998,1510,243 +13474,224.56666666666666,1543,241 +13475,224.58333333333334,1576,239 +13476,224.6,1607,236 +13477,224.61666666666667,1638,234 +13478,224.63333333333333,1667,231 +13479,224.65,1695,228 +13480,224.66666666666666,1721,224 +13481,224.68333333333334,1746,221 +13482,224.7,1769,218 +13483,224.71666666666667,1789,215 +13484,224.73333333333332,1808,212 +13485,224.75,1824,209 +13486,224.76666666666665,1839,207 +13487,224.78333333333333,1850,205 +13488,224.79999999999998,1859,204 +13489,224.81666666666666,1866,203 +13490,224.83333333333334,1870,203 +13491,224.85,1870,203 +13492,224.86666666666667,1870,203 +13493,224.88333333333333,1867,203 +13494,224.9,1861,204 +13495,224.91666666666666,1852,206 +13496,224.93333333333334,1841,208 +13497,224.95,1828,210 +13498,224.96666666666667,1812,213 +13499,224.98333333333332,1794,216 +13500,225.0,1774,219 +13501,225.01666666666665,1751,223 +13502,225.03333333333333,1727,226 +13503,225.04999999999998,1701,229 +13504,225.06666666666666,1674,233 +13505,225.08333333333334,1645,235 +13506,225.1,1615,238 +13507,225.11666666666667,1584,241 +13508,225.13333333333333,1552,243 +13509,225.15,1519,246 +13510,225.16666666666666,1486,247 +13511,225.18333333333334,1452,248 +13512,225.2,1417,250 +13513,225.21666666666667,1384,250 +13514,225.23333333333332,1351,250 +13515,225.25,1319,250 +13516,225.26666666666665,1287,249 +13517,225.28333333333333,1256,248 +13518,225.29999999999998,1226,246 +13519,225.31666666666666,1198,244 +13520,225.33333333333334,1171,242 +13521,225.35,1145,240 +13522,225.36666666666667,1122,238 +13523,225.38333333333333,1100,236 +13524,225.4,1080,234 +13525,225.41666666666666,1063,232 +13526,225.43333333333334,1047,230 +13527,225.45,1034,229 +13528,225.46666666666667,1024,227 +13529,225.48333333333332,1016,226 +13530,225.5,1010,225 +13531,225.51666666666665,1009,225 +13532,225.53333333333333,1009,225 +13533,225.54999999999998,1009,225 +13534,225.56666666666666,1014,225 +13535,225.58333333333334,1021,226 +13536,225.6,1031,227 +13537,225.61666666666667,1043,228 +13538,225.63333333333333,1057,230 +13539,225.65,1074,232 +13540,225.66666666666666,1093,233 +13541,225.68333333333334,1114,236 +13542,225.7,1137,238 +13543,225.71666666666667,1162,239 +13544,225.73333333333332,1189,241 +13545,225.75,1217,243 +13546,225.76666666666665,1247,244 +13547,225.78333333333333,1277,246 +13548,225.79999999999998,1309,247 +13549,225.81666666666666,1342,247 +13550,225.83333333333334,1374,247 +13551,225.85,1408,247 +13552,225.86666666666667,1440,245 +13553,225.88333333333333,1475,244 +13554,225.9,1508,243 +13555,225.91666666666666,1542,241 +13556,225.93333333333334,1574,238 +13557,225.95,1606,236 +13558,225.96666666666667,1636,233 +13559,225.98333333333332,1665,230 +13560,226.0,1693,227 +13561,226.01666666666665,1719,224 +13562,226.03333333333333,1744,221 +13563,226.04999999999998,1767,218 +13564,226.06666666666666,1787,215 +13565,226.08333333333334,1806,212 +13566,226.1,1822,210 +13567,226.11666666666667,1836,207 +13568,226.13333333333333,1848,205 +13569,226.15,1857,204 +13570,226.16666666666666,1864,202 +13571,226.18333333333334,1868,202 +13572,226.2,1868,202 +13573,226.21666666666667,1868,202 +13574,226.23333333333332,1865,203 +13575,226.25,1859,204 +13576,226.26666666666665,1851,206 +13577,226.28333333333333,1840,208 +13578,226.29999999999998,1826,210 +13579,226.31666666666666,1810,213 +13580,226.33333333333334,1792,216 +13581,226.35,1773,219 +13582,226.36666666666667,1750,222 +13583,226.38333333333333,1727,225 +13584,226.4,1701,229 +13585,226.41666666666666,1673,232 +13586,226.43333333333334,1644,235 +13587,226.45,1614,238 +13588,226.46666666666667,1583,240 +13589,226.48333333333332,1551,243 +13590,226.5,1519,245 +13591,226.51666666666665,1485,247 +13592,226.53333333333333,1452,248 +13593,226.54999999999998,1417,249 +13594,226.56666666666666,1384,249 +13595,226.58333333333334,1352,249 +13596,226.6,1319,249 +13597,226.61666666666667,1288,248 +13598,226.63333333333333,1257,247 +13599,226.65,1227,245 +13600,226.66666666666666,1198,244 +13601,226.68333333333334,1171,242 +13602,226.7,1146,240 +13603,226.71666666666667,1122,238 +13604,226.73333333333332,1101,236 +13605,226.75,1081,234 +13606,226.76666666666665,1064,232 +13607,226.78333333333333,1048,230 +13608,226.79999999999998,1035,228 +13609,226.81666666666666,1024,226 +13610,226.83333333333334,1016,225 +13611,226.85,1011,224 +13612,226.86666666666667,1009,224 +13613,226.88333333333333,1009,224 +13614,226.9,1009,224 +13615,226.91666666666666,1014,224 +13616,226.93333333333334,1021,225 +13617,226.95,1031,226 +13618,226.96666666666667,1043,228 +13619,226.98333333333332,1057,229 +13620,227.0,1074,231 +13621,227.01666666666665,1093,233 +13622,227.03333333333333,1114,234 +13623,227.04999999999998,1137,236 +13624,227.06666666666666,1162,238 +13625,227.08333333333334,1188,240 +13626,227.1,1217,242 +13627,227.11666666666667,1246,243 +13628,227.13333333333333,1277,244 +13629,227.15,1309,245 +13630,227.16666666666666,1341,245 +13631,227.18333333333334,1373,245 +13632,227.2,1406,245 +13633,227.21666666666667,1440,244 +13634,227.23333333333332,1474,243 +13635,227.25,1507,242 +13636,227.26666666666665,1540,240 +13637,227.28333333333333,1572,237 +13638,227.29999999999998,1604,235 +13639,227.31666666666666,1635,232 +13640,227.33333333333334,1664,229 +13641,227.35,1691,226 +13642,227.36666666666667,1718,223 +13643,227.38333333333333,1742,220 +13644,227.4,1765,217 +13645,227.41666666666666,1786,214 +13646,227.43333333333334,1804,211 +13647,227.45,1820,208 +13648,227.46666666666667,1834,206 +13649,227.48333333333332,1846,204 +13650,227.5,1856,203 +13651,227.51666666666665,1862,201 +13652,227.53333333333333,1867,201 +13653,227.54999999999998,1867,201 +13654,227.56666666666666,1867,201 +13655,227.58333333333334,1864,202 +13656,227.6,1858,203 +13657,227.61666666666667,1849,205 +13658,227.63333333333333,1839,207 +13659,227.65,1825,209 +13660,227.66666666666666,1810,212 +13661,227.68333333333334,1792,215 +13662,227.7,1772,218 +13663,227.71666666666667,1750,221 +13664,227.73333333333332,1726,224 +13665,227.75,1700,227 +13666,227.76666666666665,1673,231 +13667,227.78333333333333,1644,234 +13668,227.79999999999998,1614,237 +13669,227.81666666666666,1583,240 +13670,227.83333333333334,1551,242 +13671,227.85,1519,244 +13672,227.86666666666667,1486,245 +13673,227.88333333333333,1452,247 +13674,227.9,1418,248 +13675,227.91666666666666,1385,248 +13676,227.93333333333334,1352,248 +13677,227.95,1321,248 +13678,227.96666666666667,1289,248 +13679,227.98333333333332,1258,246 +13680,228.0,1228,245 +13681,228.01666666666665,1200,243 +13682,228.03333333333333,1173,241 +13683,228.04999999999998,1147,239 +13684,228.06666666666666,1124,237 +13685,228.08333333333334,1102,235 +13686,228.1,1082,233 +13687,228.11666666666667,1064,231 +13688,228.13333333333333,1049,229 +13689,228.15,1036,227 +13690,228.16666666666666,1026,226 +13691,228.18333333333334,1017,225 +13692,228.2,1012,224 +13693,228.21666666666667,1010,223 +13694,228.23333333333332,1010,223 +13695,228.25,1010,223 +13696,228.26666666666665,1015,224 +13697,228.28333333333333,1022,224 +13698,228.29999999999998,1031,225 +13699,228.31666666666666,1043,227 +13700,228.33333333333334,1058,228 +13701,228.35,1074,230 +13702,228.36666666666667,1093,232 +13703,228.38333333333333,1114,234 +13704,228.4,1137,235 +13705,228.41666666666666,1162,238 +13706,228.43333333333334,1188,240 +13707,228.45,1216,242 +13708,228.46666666666667,1246,243 +13709,228.48333333333332,1276,244 +13710,228.5,1307,245 +13711,228.51666666666665,1339,245 +13712,228.53333333333333,1371,245 +13713,228.54999999999998,1405,245 +13714,228.56666666666666,1438,244 +13715,228.58333333333334,1473,242 +13716,228.6,1506,241 +13717,228.61666666666667,1539,239 +13718,228.63333333333333,1571,237 +13719,228.65,1602,234 +13720,228.66666666666666,1632,232 +13721,228.68333333333334,1661,228 +13722,228.7,1689,225 +13723,228.71666666666667,1716,222 +13724,228.73333333333332,1740,219 +13725,228.75,1763,217 +13726,228.76666666666665,1783,213 +13727,228.78333333333333,1802,211 +13728,228.79999999999998,1818,208 +13729,228.81666666666666,1832,206 +13730,228.83333333333334,1844,204 +13731,228.85,1854,202 +13732,228.86666666666667,1860,201 +13733,228.88333333333333,1865,201 +13734,228.9,1865,201 +13735,228.91666666666666,1865,201 +13736,228.93333333333334,1862,201 +13737,228.95,1857,203 +13738,228.96666666666667,1848,204 +13739,228.98333333333332,1837,206 +13740,229.0,1824,209 +13741,229.01666666666665,1808,212 +13742,229.03333333333333,1791,214 +13743,229.04999999999998,1771,217 +13744,229.06666666666666,1749,221 +13745,229.08333333333334,1725,224 +13746,229.1,1700,227 +13747,229.11666666666667,1673,231 +13748,229.13333333333333,1644,233 +13749,229.15,1615,236 +13750,229.16666666666666,1584,239 +13751,229.18333333333334,1552,241 +13752,229.2,1519,243 +13753,229.21666666666667,1487,245 +13754,229.23333333333332,1453,246 +13755,229.25,1419,248 +13756,229.26666666666665,1386,248 +13757,229.28333333333333,1354,248 +13758,229.29999999999998,1322,248 +13759,229.31666666666666,1290,247 +13760,229.33333333333334,1260,246 +13761,229.35,1229,244 +13762,229.36666666666667,1201,243 +13763,229.38333333333333,1174,241 +13764,229.4,1149,239 +13765,229.41666666666666,1125,237 +13766,229.43333333333334,1103,235 +13767,229.45,1084,232 +13768,229.46666666666667,1066,231 +13769,229.48333333333332,1050,229 +13770,229.5,1038,227 +13771,229.51666666666665,1027,226 +13772,229.53333333333333,1019,225 +13773,229.54999999999998,1013,224 +13774,229.56666666666666,1011,223 +13775,229.58333333333334,1011,223 +13776,229.6,1011,223 +13777,229.61666666666667,1016,224 +13778,229.63333333333333,1023,225 +13779,229.65,1032,226 +13780,229.66666666666666,1044,227 +13781,229.68333333333334,1058,228 +13782,229.7,1075,230 +13783,229.71666666666667,1094,232 +13784,229.73333333333332,1114,234 +13785,229.75,1137,236 +13786,229.76666666666665,1162,238 +13787,229.78333333333333,1188,239 +13788,229.79999999999998,1216,241 +13789,229.81666666666666,1245,242 +13790,229.83333333333334,1276,243 +13791,229.85,1307,244 +13792,229.86666666666667,1339,245 +13793,229.88333333333333,1371,245 +13794,229.9,1404,245 +13795,229.91666666666666,1438,244 +13796,229.93333333333334,1472,242 +13797,229.95,1504,241 +13798,229.96666666666667,1537,239 +13799,229.98333333333332,1569,237 +13800,230.0,1601,235 +13801,230.01666666666665,1631,232 +13802,230.03333333333333,1660,229 +13803,230.04999999999998,1688,226 +13804,230.06666666666666,1714,223 +13805,230.08333333333334,1738,220 +13806,230.1,1761,217 +13807,230.11666666666667,1782,214 +13808,230.13333333333333,1800,211 +13809,230.15,1817,208 +13810,230.16666666666666,1831,206 +13811,230.18333333333334,1843,204 +13812,230.2,1852,203 +13813,230.21666666666667,1859,202 +13814,230.23333333333332,1863,201 +13815,230.25,1863,201 +13816,230.26666666666665,1863,201 +13817,230.28333333333333,1861,202 +13818,230.29999999999998,1855,203 +13819,230.31666666666666,1847,205 +13820,230.33333333333334,1836,207 +13821,230.35,1823,209 +13822,230.36666666666667,1808,212 +13823,230.38333333333333,1790,215 +13824,230.4,1770,218 +13825,230.41666666666666,1749,221 +13826,230.43333333333334,1725,224 +13827,230.45,1699,227 +13828,230.46666666666667,1672,231 +13829,230.48333333333332,1644,234 +13830,230.5,1614,236 +13831,230.51666666666665,1583,239 +13832,230.53333333333333,1552,242 +13833,230.54999999999998,1519,243 +13834,230.56666666666666,1487,245 +13835,230.58333333333334,1454,247 +13836,230.6,1420,248 +13837,230.61666666666667,1387,248 +13838,230.63333333333333,1355,248 +13839,230.65,1323,248 +13840,230.66666666666666,1292,247 +13841,230.68333333333334,1261,246 +13842,230.7,1231,244 +13843,230.71666666666667,1202,243 +13844,230.73333333333332,1175,241 +13845,230.75,1150,239 +13846,230.76666666666665,1126,237 +13847,230.78333333333333,1104,235 +13848,230.79999999999998,1085,233 +13849,230.81666666666666,1067,231 +13850,230.83333333333334,1052,229 +13851,230.85,1039,227 +13852,230.86666666666667,1029,226 +13853,230.88333333333333,1020,225 +13854,230.9,1014,224 +13855,230.91666666666666,1012,224 +13856,230.93333333333334,1012,224 +13857,230.95,1012,224 +13858,230.96666666666667,1017,224 +13859,230.98333333333332,1023,224 +13860,231.0,1033,225 +13861,231.01666666666665,1045,227 +13862,231.03333333333333,1059,228 +13863,231.04999999999998,1075,230 +13864,231.06666666666666,1094,232 +13865,231.08333333333334,1115,234 +13866,231.1,1137,236 +13867,231.11666666666667,1162,237 +13868,231.13333333333333,1188,239 +13869,231.15,1216,241 +13870,231.16666666666666,1245,242 +13871,231.18333333333334,1275,243 +13872,231.2,1306,244 +13873,231.21666666666667,1338,245 +13874,231.23333333333332,1370,245 +13875,231.25,1404,245 +13876,231.26666666666665,1436,244 +13877,231.28333333333333,1470,243 +13878,231.29999999999998,1504,241 +13879,231.31666666666666,1536,239 +13880,231.33333333333334,1568,237 +13881,231.35,1599,235 +13882,231.36666666666667,1630,232 +13883,231.38333333333333,1658,230 +13884,231.4,1686,226 +13885,231.41666666666666,1713,223 +13886,231.43333333333334,1737,220 +13887,231.45,1760,217 +13888,231.46666666666667,1780,214 +13889,231.48333333333332,1799,212 +13890,231.5,1815,209 +13891,231.51666666666665,1829,207 +13892,231.53333333333333,1841,205 +13893,231.54999999999998,1850,203 +13894,231.56666666666666,1857,202 +13895,231.58333333333334,1862,202 +13896,231.6,1862,202 +13897,231.61666666666667,1862,202 +13898,231.63333333333333,1860,202 +13899,231.65,1854,203 +13900,231.66666666666666,1846,205 +13901,231.68333333333334,1835,207 +13902,231.7,1822,209 +13903,231.71666666666667,1807,212 +13904,231.73333333333332,1789,215 +13905,231.75,1769,218 +13906,231.76666666666665,1748,221 +13907,231.78333333333333,1724,224 +13908,231.79999999999998,1699,227 +13909,231.81666666666666,1672,231 +13910,231.83333333333334,1644,234 +13911,231.85,1614,236 +13912,231.86666666666667,1584,239 +13913,231.88333333333333,1552,241 +13914,231.9,1520,244 +13915,231.91666666666666,1487,245 +13916,231.93333333333334,1454,246 +13917,231.95,1420,248 +13918,231.96666666666667,1387,248 +13919,231.98333333333332,1355,248 +13920,232.0,1323,247 +13921,232.01666666666665,1292,247 +13922,232.03333333333333,1261,246 +13923,232.04999999999998,1231,244 +13924,232.06666666666666,1203,243 +13925,232.08333333333334,1176,241 +13926,232.1,1150,239 +13927,232.11666666666667,1127,237 +13928,232.13333333333333,1105,235 +13929,232.15,1086,233 +13930,232.16666666666666,1068,231 +13931,232.18333333333334,1053,229 +13932,232.2,1040,227 +13933,232.21666666666667,1029,226 +13934,232.23333333333332,1021,225 +13935,232.25,1015,224 +13936,232.26666666666665,1013,223 +13937,232.28333333333333,1013,223 +13938,232.29999999999998,1013,223 +13939,232.31666666666666,1017,224 +13940,232.33333333333334,1024,224 +13941,232.35,1033,226 +13942,232.36666666666667,1045,227 +13943,232.38333333333333,1059,228 +13944,232.4,1076,230 +13945,232.41666666666666,1094,232 +13946,232.43333333333334,1115,234 +13947,232.45,1138,236 +13948,232.46666666666667,1162,238 +13949,232.48333333333332,1188,239 +13950,232.5,1216,241 +13951,232.51666666666665,1245,242 +13952,232.53333333333333,1275,243 +13953,232.54999999999998,1305,245 +13954,232.56666666666666,1338,245 +13955,232.58333333333334,1369,245 +13956,232.6,1402,245 +13957,232.61666666666667,1435,244 +13958,232.63333333333333,1469,243 +13959,232.65,1502,242 +13960,232.66666666666666,1534,240 +13961,232.68333333333334,1567,238 +13962,232.7,1598,235 +13963,232.71666666666667,1628,233 +13964,232.73333333333332,1657,230 +13965,232.75,1684,227 +13966,232.76666666666665,1710,224 +13967,232.78333333333333,1735,221 +13968,232.79999999999998,1758,218 +13969,232.81666666666666,1778,215 +13970,232.83333333333334,1797,212 +13971,232.85,1813,209 +13972,232.86666666666667,1827,207 +13973,232.88333333333333,1839,205 +13974,232.9,1848,203 +13975,232.91666666666666,1855,202 +13976,232.93333333333334,1860,202 +13977,232.95,1860,202 +13978,232.96666666666667,1860,202 +13979,232.98333333333332,1858,203 +13980,233.0,1852,204 +13981,233.01666666666665,1844,205 +13982,233.03333333333333,1834,207 +13983,233.04999999999998,1821,210 +13984,233.06666666666666,1805,212 +13985,233.08333333333334,1788,215 +13986,233.1,1768,218 +13987,233.11666666666667,1746,221 +13988,233.13333333333333,1723,225 +13989,233.15,1698,228 +13990,233.16666666666666,1671,231 +13991,233.18333333333334,1643,234 +13992,233.2,1613,237 +13993,233.21666666666667,1583,240 +13994,233.23333333333332,1552,242 +13995,233.25,1519,244 +13996,233.26666666666665,1487,246 +13997,233.28333333333333,1453,247 +13998,233.29999999999998,1420,248 +13999,233.31666666666666,1388,248 +14000,233.33333333333334,1356,248 +14001,233.35,1325,248 +14002,233.36666666666667,1292,247 +14003,233.38333333333333,1262,246 +14004,233.4,1233,245 +14005,233.41666666666666,1204,243 +14006,233.43333333333334,1177,241 +14007,233.45,1152,239 +14008,233.46666666666667,1128,237 +14009,233.48333333333332,1107,235 +14010,233.5,1087,233 +14011,233.51666666666665,1070,231 +14012,233.53333333333333,1054,229 +14013,233.54999999999998,1041,227 +14014,233.56666666666666,1031,226 +14015,233.58333333333334,1022,225 +14016,233.6,1017,224 +14017,233.61666666666667,1014,223 +14018,233.63333333333333,1014,223 +14019,233.65,1014,223 +14020,233.66666666666666,1019,224 +14021,233.68333333333334,1025,225 +14022,233.7,1034,225 +14023,233.71666666666667,1046,227 +14024,233.73333333333332,1060,228 +14025,233.75,1077,230 +14026,233.76666666666665,1095,232 +14027,233.78333333333333,1115,234 +14028,233.79999999999998,1138,236 +14029,233.81666666666666,1162,237 +14030,233.83333333333334,1188,239 +14031,233.85,1216,241 +14032,233.86666666666667,1245,242 +14033,233.88333333333333,1275,244 +14034,233.9,1306,244 +14035,233.91666666666666,1337,245 +14036,233.93333333333334,1369,245 +14037,233.95,1402,245 +14038,233.96666666666667,1435,244 +14039,233.98333333333332,1468,243 +14040,234.0,1502,241 +14041,234.01666666666665,1534,240 +14042,234.03333333333333,1566,238 +14043,234.04999999999998,1597,235 +14044,234.06666666666666,1627,233 +14045,234.08333333333334,1656,230 +14046,234.1,1684,227 +14047,234.11666666666667,1709,224 +14048,234.13333333333333,1734,221 +14049,234.15,1756,218 +14050,234.16666666666666,1777,215 +14051,234.18333333333334,1795,212 +14052,234.2,1812,210 +14053,234.21666666666667,1826,208 +14054,234.23333333333332,1837,205 +14055,234.25,1847,204 +14056,234.26666666666665,1854,203 +14057,234.28333333333333,1858,202 +14058,234.29999999999998,1858,202 +14059,234.31666666666666,1858,202 +14060,234.33333333333334,1856,203 +14061,234.35,1851,204 +14062,234.36666666666667,1843,206 +14063,234.38333333333333,1832,208 +14064,234.4,1819,210 +14065,234.41666666666666,1804,213 +14066,234.43333333333334,1787,215 +14067,234.45,1768,218 +14068,234.46666666666667,1746,221 +14069,234.48333333333332,1723,225 +14070,234.5,1698,228 +14071,234.51666666666665,1671,231 +14072,234.53333333333333,1643,234 +14073,234.54999999999998,1614,237 +14074,234.56666666666666,1584,240 +14075,234.58333333333334,1552,241 +14076,234.6,1520,244 +14077,234.61666666666667,1488,245 +14078,234.63333333333333,1454,247 +14079,234.65,1421,248 +14080,234.66666666666666,1389,248 +14081,234.68333333333334,1357,248 +14082,234.7,1325,248 +14083,234.71666666666667,1294,248 +14084,234.73333333333332,1263,246 +14085,234.75,1235,245 +14086,234.76666666666665,1206,243 +14087,234.78333333333333,1179,242 +14088,234.79999999999998,1154,240 +14089,234.81666666666666,1131,238 +14090,234.83333333333334,1110,236 +14091,234.85,1090,233 +14092,234.86666666666667,1072,231 +14093,234.88333333333333,1057,230 +14094,234.9,1044,228 +14095,234.91666666666666,1033,226 +14096,234.93333333333334,1025,225 +14097,234.95,1019,224 +14098,234.96666666666667,1017,224 +14099,234.98333333333332,1017,224 +14100,235.0,1017,224 +14101,235.01666666666665,1021,224 +14102,235.03333333333333,1028,225 +14103,235.04999999999998,1037,226 +14104,235.06666666666666,1049,227 +14105,235.08333333333334,1063,229 +14106,235.1,1079,230 +14107,235.11666666666667,1097,232 +14108,235.13333333333333,1117,234 +14109,235.15,1140,236 +14110,235.16666666666666,1164,238 +14111,235.18333333333334,1190,239 +14112,235.2,1217,241 +14113,235.21666666666667,1246,242 +14114,235.23333333333332,1276,243 +14115,235.25,1306,245 +14116,235.26666666666665,1338,245 +14117,235.28333333333333,1369,245 +14118,235.29999999999998,1401,245 +14119,235.31666666666666,1434,244 +14120,235.33333333333334,1468,242 +14121,235.35,1501,241 +14122,235.36666666666667,1533,239 +14123,235.38333333333333,1565,237 +14124,235.4,1596,235 +14125,235.41666666666666,1626,232 +14126,235.43333333333334,1655,229 +14127,235.45,1682,226 +14128,235.46666666666667,1708,224 +14129,235.48333333333332,1732,221 +14130,235.5,1754,218 +14131,235.51666666666665,1775,215 +14132,235.53333333333333,1794,212 +14133,235.54999999999998,1810,210 +14134,235.56666666666666,1824,207 +14135,235.58333333333334,1836,206 +14136,235.6,1846,204 +14137,235.61666666666667,1852,203 +14138,235.63333333333333,1857,202 +14139,235.65,1857,202 +14140,235.66666666666666,1857,202 +14141,235.68333333333334,1855,203 +14142,235.7,1850,204 +14143,235.71666666666667,1841,205 +14144,235.73333333333332,1831,207 +14145,235.75,1818,209 +14146,235.76666666666665,1803,212 +14147,235.78333333333333,1786,215 +14148,235.79999999999998,1767,218 +14149,235.81666666666666,1746,221 +14150,235.83333333333334,1722,224 +14151,235.85,1697,227 +14152,235.86666666666667,1671,231 +14153,235.88333333333333,1643,234 +14154,235.9,1613,236 +14155,235.91666666666666,1583,238 +14156,235.93333333333334,1553,241 +14157,235.95,1521,243 +14158,235.96666666666667,1489,245 +14159,235.98333333333332,1456,246 +14160,236.0,1422,248 +14161,236.01666666666665,1390,248 +14162,236.03333333333333,1358,248 +14163,236.04999999999998,1327,247 +14164,236.06666666666666,1295,247 +14165,236.08333333333334,1264,245 +14166,236.1,1236,244 +14167,236.11666666666667,1207,242 +14168,236.13333333333333,1180,240 +14169,236.15,1155,239 +14170,236.16666666666666,1132,237 +14171,236.18333333333334,1110,235 +14172,236.2,1091,233 +14173,236.21666666666667,1073,230 +14174,236.23333333333332,1058,229 +14175,236.25,1045,227 +14176,236.26666666666665,1034,226 +14177,236.28333333333333,1026,224 +14178,236.29999999999998,1020,224 +14179,236.31666666666666,1017,223 +14180,236.33333333333334,1017,223 +14181,236.35,1017,223 +14182,236.36666666666667,1021,223 +14183,236.38333333333333,1028,224 +14184,236.4,1037,225 +14185,236.41666666666666,1049,226 +14186,236.43333333333334,1063,228 +14187,236.45,1079,230 +14188,236.46666666666667,1097,231 +14189,236.48333333333332,1118,233 +14190,236.5,1140,235 +14191,236.51666666666665,1164,237 +14192,236.53333333333333,1189,238 +14193,236.54999999999998,1217,240 +14194,236.56666666666666,1245,242 +14195,236.58333333333334,1275,243 +14196,236.6,1306,244 +14197,236.61666666666667,1338,245 +14198,236.63333333333333,1369,245 +14199,236.65,1401,245 +14200,236.66666666666666,1434,244 +14201,236.68333333333334,1468,243 +14202,236.7,1500,241 +14203,236.71666666666667,1533,239 +14204,236.73333333333332,1564,238 +14205,236.75,1596,235 +14206,236.76666666666665,1625,232 +14207,236.78333333333333,1654,230 +14208,236.79999999999998,1681,227 +14209,236.81666666666666,1707,224 +14210,236.83333333333334,1731,221 +14211,236.85,1754,218 +14212,236.86666666666667,1774,215 +14213,236.88333333333333,1792,212 +14214,236.9,1809,210 +14215,236.91666666666666,1823,208 +14216,236.93333333333334,1834,206 +14217,236.95,1844,204 +14218,236.96666666666667,1851,203 +14219,236.98333333333332,1855,203 +14220,237.0,1855,203 +14221,237.01666666666665,1855,203 +14222,237.03333333333333,1854,203 +14223,237.04999999999998,1848,204 +14224,237.06666666666666,1841,206 +14225,237.08333333333334,1830,208 +14226,237.1,1818,210 +14227,237.11666666666667,1803,213 +14228,237.13333333333333,1786,215 +14229,237.15,1766,218 +14230,237.16666666666666,1745,221 +14231,237.18333333333334,1722,225 +14232,237.2,1697,228 +14233,237.21666666666667,1671,231 +14234,237.23333333333332,1643,234 +14235,237.25,1614,236 +14236,237.26666666666665,1584,239 +14237,237.28333333333333,1553,241 +14238,237.29999999999998,1521,243 +14239,237.31666666666666,1489,244 +14240,237.33333333333334,1455,246 +14241,237.35,1423,247 +14242,237.36666666666667,1390,248 +14243,237.38333333333333,1358,248 +14244,237.4,1327,248 +14245,237.41666666666666,1295,247 +14246,237.43333333333334,1265,246 +14247,237.45,1236,244 +14248,237.46666666666667,1208,242 +14249,237.48333333333332,1181,240 +14250,237.5,1156,238 +14251,237.51666666666665,1133,237 +14252,237.53333333333333,1111,235 +14253,237.54999999999998,1092,233 +14254,237.56666666666666,1074,231 +14255,237.58333333333334,1059,229 +14256,237.6,1046,227 +14257,237.61666666666667,1035,226 +14258,237.63333333333333,1027,225 +14259,237.65,1021,224 +14260,237.66666666666666,1018,223 +14261,237.68333333333334,1018,223 +14262,237.7,1018,223 +14263,237.71666666666667,1022,224 +14264,237.73333333333332,1029,224 +14265,237.75,1038,225 +14266,237.76666666666665,1049,226 +14267,237.78333333333333,1063,228 +14268,237.79999999999998,1079,230 +14269,237.81666666666666,1097,232 +14270,237.83333333333334,1117,233 +14271,237.85,1140,235 +14272,237.86666666666667,1164,237 +14273,237.88333333333333,1189,239 +14274,237.9,1216,240 +14275,237.91666666666666,1245,242 +14276,237.93333333333334,1274,243 +14277,237.95,1305,244 +14278,237.96666666666667,1336,244 +14279,237.98333333333332,1368,244 +14280,238.0,1400,244 +14281,238.01666666666665,1433,244 +14282,238.03333333333333,1466,243 +14283,238.04999999999998,1499,241 +14284,238.06666666666666,1531,240 +14285,238.08333333333334,1563,238 +14286,238.1,1593,235 +14287,238.11666666666667,1623,233 +14288,238.13333333333333,1652,230 +14289,238.15,1679,227 +14290,238.16666666666666,1705,224 +14291,238.18333333333334,1729,222 +14292,238.2,1752,219 +14293,238.21666666666667,1772,216 +14294,238.23333333333332,1791,213 +14295,238.25,1807,211 +14296,238.26666666666665,1821,208 +14297,238.28333333333333,1833,207 +14298,238.29999999999998,1843,205 +14299,238.31666666666666,1849,204 +14300,238.33333333333334,1854,203 +14301,238.35,1854,203 +14302,238.36666666666667,1854,203 +14303,238.38333333333333,1853,204 +14304,238.4,1847,205 +14305,238.41666666666666,1839,206 +14306,238.43333333333334,1829,208 +14307,238.45,1816,211 +14308,238.46666666666667,1801,213 +14309,238.48333333333332,1784,215 +14310,238.5,1765,218 +14311,238.51666666666665,1744,222 +14312,238.53333333333333,1721,225 +14313,238.54999999999998,1696,228 +14314,238.56666666666666,1670,231 +14315,238.58333333333334,1642,233 +14316,238.6,1613,236 +14317,238.61666666666667,1584,239 +14318,238.63333333333333,1553,241 +14319,238.65,1521,243 +14320,238.66666666666666,1489,245 +14321,238.68333333333334,1455,246 +14322,238.7,1422,247 +14323,238.71666666666667,1390,247 +14324,238.73333333333332,1359,247 +14325,238.75,1327,247 +14326,238.76666666666665,1296,247 +14327,238.78333333333333,1266,245 +14328,238.79999999999998,1237,244 +14329,238.81666666666666,1209,242 +14330,238.83333333333334,1182,240 +14331,238.85,1157,239 +14332,238.86666666666667,1134,237 +14333,238.88333333333333,1112,234 +14334,238.9,1093,232 +14335,238.91666666666666,1093,232 +14336,238.93333333333334,1076,231 +14337,238.95,1060,229 +14338,238.96666666666667,1047,227 +14339,238.98333333333332,1037,226 +14340,239.0,1028,225 +14341,239.01666666666665,1022,224 +14342,239.03333333333333,1020,223 +14343,239.04999999999998,1020,223 +14344,239.06666666666666,1020,223 +14345,239.08333333333334,1024,224 +14346,239.1,1030,224 +14347,239.11666666666667,1039,225 +14348,239.13333333333333,1051,227 +14349,239.15,1064,228 +14350,239.16666666666666,1080,230 +14351,239.18333333333334,1098,231 +14352,239.2,1118,233 +14353,239.21666666666667,1140,235 +14354,239.23333333333332,1164,237 +14355,239.25,1190,239 +14356,239.26666666666665,1216,240 +14357,239.28333333333333,1245,242 +14358,239.29999999999998,1274,243 +14359,239.31666666666666,1305,244 +14360,239.33333333333334,1336,244 +14361,239.35,1367,244 +14362,239.36666666666667,1400,244 +14363,239.38333333333333,1432,243 +14364,239.4,1466,243 +14365,239.41666666666666,1498,241 +14366,239.43333333333334,1530,240 +14367,239.45,1562,238 +14368,239.46666666666667,1592,236 +14369,239.48333333333332,1622,233 +14370,239.5,1651,230 +14371,239.51666666666665,1678,228 +14372,239.53333333333333,1704,225 +14373,239.54999999999998,1728,222 +14374,239.56666666666666,1750,219 +14375,239.58333333333334,1771,216 +14376,239.6,1789,213 +14377,239.61666666666667,1805,211 +14378,239.63333333333333,1819,209 +14379,239.65,1831,207 +14380,239.66666666666666,1840,205 +14381,239.68333333333334,1847,204 +14382,239.7,1852,204 +14383,239.71666666666667,1852,204 +14384,239.73333333333332,1852,204 +14385,239.75,1851,204 +14386,239.76666666666665,1846,205 +14387,239.78333333333333,1838,207 +14388,239.79999999999998,1828,209 +14389,239.81666666666666,1815,211 +14390,239.83333333333334,1800,214 +14391,239.85,1783,216 +14392,239.86666666666667,1764,219 +14393,239.88333333333333,1743,222 +14394,239.9,1720,225 +14395,239.91666666666666,1696,228 +14396,239.93333333333334,1670,231 +14397,239.95,1642,234 +14398,239.96666666666667,1613,237 +14399,239.98333333333332,1584,239 +14400,240.0,1552,242 +14401,240.01666666666665,1521,243 +14402,240.03333333333333,1489,245 +14403,240.04999999999998,1456,246 +14404,240.06666666666666,1423,247 +14405,240.08333333333334,1391,248 +14406,240.1,1360,248 +14407,240.11666666666667,1329,248 +14408,240.13333333333333,1298,247 +14409,240.15,1268,246 +14410,240.16666666666666,1238,245 +14411,240.18333333333334,1210,243 +14412,240.2,1184,241 +14413,240.21666666666667,1159,239 +14414,240.23333333333332,1136,237 +14415,240.25,1114,236 +14416,240.26666666666665,1095,233 +14417,240.28333333333333,1077,231 +14418,240.29999999999998,1062,229 +14419,240.31666666666666,1049,228 +14420,240.33333333333334,1038,226 +14421,240.35,1030,225 +14422,240.36666666666667,1024,224 +14423,240.38333333333333,1021,224 +14424,240.4,1021,224 +14425,240.41666666666666,1021,224 +14426,240.43333333333334,1025,224 +14427,240.45,1031,225 +14428,240.46666666666667,1041,226 +14429,240.48333333333332,1052,227 +14430,240.5,1065,229 +14431,240.51666666666665,1081,230 +14432,240.53333333333333,1099,232 +14433,240.54999999999998,1119,234 +14434,240.56666666666666,1141,236 +14435,240.58333333333334,1165,237 +14436,240.6,1190,239 +14437,240.61666666666667,1217,241 +14438,240.63333333333333,1245,242 +14439,240.65,1275,243 +14440,240.66666666666666,1305,245 +14441,240.68333333333334,1336,245 +14442,240.7,1367,245 +14443,240.71666666666667,1399,245 +14444,240.73333333333332,1432,244 +14445,240.75,1465,243 +14446,240.76666666666665,1497,242 +14447,240.78333333333333,1529,240 +14448,240.79999999999998,1560,238 +14449,240.81666666666666,1591,236 +14450,240.83333333333334,1621,233 +14451,240.85,1649,231 +14452,240.86666666666667,1677,228 +14453,240.88333333333333,1702,225 +14454,240.9,1726,222 +14455,240.91666666666666,1749,219 +14456,240.93333333333334,1769,216 +14457,240.95,1788,214 +14458,240.96666666666667,1804,211 +14459,240.98333333333332,1818,209 +14460,241.0,1830,207 +14461,241.01666666666665,1839,206 +14462,241.03333333333333,1846,205 +14463,241.04999999999998,1851,204 +14464,241.06666666666666,1851,204 +14465,241.08333333333334,1851,204 +14466,241.1,1850,204 +14467,241.11666666666667,1844,206 +14468,241.13333333333333,1837,207 +14469,241.15,1827,209 +14470,241.16666666666666,1814,211 +14471,241.18333333333334,1799,214 +14472,241.2,1782,216 +14473,241.21666666666667,1763,219 +14474,241.23333333333332,1743,222 +14475,241.25,1720,225 +14476,241.26666666666665,1695,228 +14477,241.28333333333333,1670,231 +14478,241.29999999999998,1642,234 +14479,241.31666666666666,1613,237 +14480,241.33333333333334,1583,239 +14481,241.35,1553,242 +14482,241.36666666666667,1522,244 +14483,241.38333333333333,1490,245 +14484,241.4,1457,246 +14485,241.41666666666666,1424,247 +14486,241.43333333333334,1392,248 +14487,241.45,1360,248 +14488,241.46666666666667,1330,248 +14489,241.48333333333332,1299,247 +14490,241.5,1269,246 +14491,241.51666666666665,1240,244 +14492,241.53333333333333,1212,243 +14493,241.54999999999998,1185,241 +14494,241.56666666666666,1160,239 +14495,241.58333333333334,1137,238 +14496,241.6,1116,235 +14497,241.61666666666667,1096,234 +14498,241.63333333333333,1079,231 +14499,241.65,1063,230 +14500,241.66666666666666,1050,228 +14501,241.68333333333334,1040,227 +14502,241.7,1031,225 +14503,241.71666666666667,1025,224 +14504,241.73333333333332,1022,224 +14505,241.75,1022,224 +14506,241.76666666666665,1022,224 +14507,241.78333333333333,1027,224 +14508,241.79999999999998,1033,225 +14509,241.81666666666666,1042,226 +14510,241.83333333333334,1053,227 +14511,241.85,1066,229 +14512,241.86666666666667,1082,230 +14513,241.88333333333333,1100,232 +14514,241.9,1120,234 +14515,241.91666666666666,1142,236 +14516,241.93333333333334,1166,238 +14517,241.95,1191,240 +14518,241.96666666666667,1218,241 +14519,241.98333333333332,1246,243 +14520,242.0,1275,244 +14521,242.01666666666665,1305,245 +14522,242.03333333333333,1336,245 +14523,242.04999999999998,1367,245 +14524,242.06666666666666,1399,245 +14525,242.08333333333334,1431,244 +14526,242.1,1464,243 +14527,242.11666666666667,1497,242 +14528,242.13333333333333,1529,241 +14529,242.15,1560,239 +14530,242.16666666666666,1590,237 +14531,242.18333333333334,1620,234 +14532,242.2,1648,231 +14533,242.21666666666667,1675,229 +14534,242.23333333333332,1701,226 +14535,242.25,1725,223 +14536,242.26666666666665,1747,220 +14537,242.28333333333333,1767,217 +14538,242.29999999999998,1786,215 +14539,242.31666666666666,1802,212 +14540,242.33333333333334,1816,210 +14541,242.35,1828,208 +14542,242.36666666666667,1837,207 +14543,242.38333333333333,1845,205 +14544,242.4,1849,205 +14545,242.41666666666666,1849,205 +14546,242.43333333333334,1849,205 +14547,242.45,1848,205 +14548,242.46666666666667,1843,206 +14549,242.48333333333332,1835,208 +14550,242.5,1825,210 +14551,242.51666666666665,1813,212 +14552,242.53333333333333,1798,214 +14553,242.54999999999998,1782,217 +14554,242.56666666666666,1763,220 +14555,242.58333333333334,1742,223 +14556,242.6,1719,226 +14557,242.61666666666667,1695,229 +14558,242.63333333333333,1669,231 +14559,242.65,1641,234 +14560,242.66666666666666,1613,237 +14561,242.68333333333334,1583,239 +14562,242.7,1553,242 +14563,242.71666666666667,1522,244 +14564,242.73333333333332,1490,245 +14565,242.75,1457,247 +14566,242.76666666666665,1425,247 +14567,242.78333333333333,1393,248 +14568,242.79999999999998,1361,248 +14569,242.81666666666666,1331,248 +14570,242.83333333333334,1300,248 +14571,242.85,1270,246 +14572,242.86666666666667,1240,245 +14573,242.88333333333333,1213,243 +14574,242.9,1186,241 +14575,242.91666666666666,1161,239 +14576,242.93333333333334,1138,237 +14577,242.95,1117,236 +14578,242.96666666666667,1098,233 +14579,242.98333333333332,1080,231 +14580,243.0,1065,230 +14581,243.01666666666665,1052,228 +14582,243.03333333333333,1041,227 +14583,243.04999999999998,1033,225 +14584,243.06666666666666,1027,225 +14585,243.08333333333334,1024,224 +14586,243.1,1024,224 +14587,243.11666666666667,1024,224 +14588,243.13333333333333,1028,224 +14589,243.15,1034,225 +14590,243.16666666666666,1043,226 +14591,243.18333333333334,1054,227 +14592,243.2,1067,229 +14593,243.21666666666667,1083,230 +14594,243.23333333333332,1101,232 +14595,243.25,1121,234 +14596,243.26666666666665,1142,235 +14597,243.28333333333333,1166,237 +14598,243.29999999999998,1191,239 +14599,243.31666666666666,1218,241 +14600,243.33333333333334,1246,242 +14601,243.35,1275,243 +14602,243.36666666666667,1305,245 +14603,243.38333333333333,1336,245 +14604,243.4,1367,245 +14605,243.41666666666666,1399,245 +14606,243.43333333333334,1431,244 +14607,243.45,1463,243 +14608,243.46666666666667,1496,242 +14609,243.48333333333332,1528,241 +14610,243.5,1559,239 +14611,243.51666666666665,1589,237 +14612,243.53333333333333,1619,234 +14613,243.54999999999998,1647,231 +14614,243.56666666666666,1674,229 +14615,243.58333333333334,1700,226 +14616,243.6,1724,223 +14617,243.61666666666667,1746,220 +14618,243.63333333333333,1766,217 +14619,243.65,1785,215 +14620,243.66666666666666,1801,212 +14621,243.68333333333334,1815,211 +14622,243.7,1826,208 +14623,243.71666666666667,1836,207 +14624,243.73333333333332,1843,206 +14625,243.75,1848,205 +14626,243.76666666666665,1848,205 +14627,243.78333333333333,1848,205 +14628,243.79999999999998,1847,206 +14629,243.81666666666666,1841,207 +14630,243.83333333333334,1834,208 +14631,243.85,1824,210 +14632,243.86666666666667,1811,212 +14633,243.88333333333333,1797,214 +14634,243.9,1781,217 +14635,243.91666666666666,1762,220 +14636,243.93333333333334,1741,223 +14637,243.95,1718,226 +14638,243.96666666666667,1694,229 +14639,243.98333333333332,1669,232 +14640,244.0,1641,234 +14641,244.01666666666665,1613,237 +14642,244.03333333333333,1583,240 +14643,244.04999999999998,1553,242 +14644,244.06666666666666,1522,244 +14645,244.08333333333334,1491,245 +14646,244.1,1458,246 +14647,244.11666666666667,1425,247 +14648,244.13333333333333,1394,248 +14649,244.15,1361,248 +14650,244.16666666666666,1332,248 +14651,244.18333333333334,1301,247 +14652,244.2,1271,246 +14653,244.21666666666667,1242,244 +14654,244.23333333333332,1214,243 +14655,244.25,1188,241 +14656,244.26666666666665,1163,239 +14657,244.28333333333333,1140,237 +14658,244.29999999999998,1118,235 +14659,244.31666666666666,1099,233 +14660,244.33333333333334,1081,231 +14661,244.35,1066,230 +14662,244.36666666666667,1053,228 +14663,244.38333333333333,1043,227 +14664,244.4,1034,226 +14665,244.41666666666666,1029,225 +14666,244.43333333333334,1025,224 +14667,244.45,1025,224 +14668,244.46666666666667,1025,224 +14669,244.48333333333332,1029,224 +14670,244.5,1035,225 +14671,244.51666666666665,1044,226 +14672,244.53333333333333,1055,227 +14673,244.54999999999998,1069,228 +14674,244.56666666666666,1084,230 +14675,244.58333333333334,1102,232 +14676,244.6,1122,233 +14677,244.61666666666667,1144,236 +14678,244.63333333333333,1167,237 +14679,244.65,1192,239 +14680,244.66666666666666,1219,241 +14681,244.68333333333334,1247,242 +14682,244.7,1276,243 +14683,244.71666666666667,1306,244 +14684,244.73333333333332,1336,245 +14685,244.75,1367,245 +14686,244.76666666666665,1399,245 +14687,244.78333333333333,1431,244 +14688,244.79999999999998,1464,243 +14689,244.81666666666666,1496,242 +14690,244.83333333333334,1528,240 +14691,244.85,1559,238 +14692,244.86666666666667,1589,236 +14693,244.88333333333333,1619,234 +14694,244.9,1647,231 +14695,244.91666666666666,1674,229 +14696,244.93333333333334,1699,226 +14697,244.95,1723,223 +14698,244.96666666666667,1745,220 +14699,244.98333333333332,1765,217 +14700,245.0,1784,215 +14701,245.01666666666665,1799,213 +14702,245.03333333333333,1814,210 +14703,245.04999999999998,1825,208 +14704,245.06666666666666,1835,207 +14705,245.08333333333334,1842,206 +14706,245.1,1846,205 +14707,245.11666666666667,1846,205 +14708,245.13333333333333,1846,205 +14709,245.15,1845,206 +14710,245.16666666666666,1840,207 +14711,245.18333333333334,1833,208 +14712,245.2,1823,210 +14713,245.21666666666667,1811,212 +14714,245.23333333333332,1796,215 +14715,245.25,1780,217 +14716,245.26666666666665,1761,220 +14717,245.28333333333333,1740,223 +14718,245.29999999999998,1718,226 +14719,245.31666666666666,1694,229 +14720,245.33333333333334,1668,232 +14721,245.35,1641,235 +14722,245.36666666666667,1613,238 +14723,245.38333333333333,1583,240 +14724,245.4,1553,242 +14725,245.41666666666666,1522,244 +14726,245.43333333333334,1491,245 +14727,245.45,1458,246 +14728,245.46666666666667,1425,247 +14729,245.48333333333332,1394,248 +14730,245.5,1363,248 +14731,245.51666666666665,1332,248 +14732,245.53333333333333,1301,247 +14733,245.54999999999998,1271,246 +14734,245.56666666666666,1242,245 +14735,245.58333333333334,1215,243 +14736,245.6,1188,241 +14737,245.61666666666667,1164,239 +14738,245.63333333333333,1141,237 +14739,245.65,1119,235 +14740,245.66666666666666,1100,234 +14741,245.68333333333334,1082,232 +14742,245.7,1068,230 +14743,245.71666666666667,1054,228 +14744,245.73333333333332,1044,227 +14745,245.75,1036,226 +14746,245.76666666666665,1029,225 +14747,245.78333333333333,1026,224 +14748,245.79999999999998,1026,224 +14749,245.81666666666666,1026,224 +14750,245.83333333333334,1030,224 +14751,245.85,1036,225 +14752,245.86666666666667,1045,226 +14753,245.88333333333333,1056,227 +14754,245.9,1069,229 +14755,245.91666666666666,1085,230 +14756,245.93333333333334,1103,232 +14757,245.95,1122,234 +14758,245.96666666666667,1144,236 +14759,245.98333333333332,1167,237 +14760,246.0,1192,239 +14761,246.01666666666665,1219,241 +14762,246.03333333333333,1247,242 +14763,246.04999999999998,1276,243 +14764,246.06666666666666,1305,245 +14765,246.08333333333334,1336,245 +14766,246.1,1367,245 +14767,246.11666666666667,1398,245 +14768,246.13333333333333,1430,244 +14769,246.15,1463,243 +14770,246.16666666666666,1495,242 +14771,246.18333333333334,1526,241 +14772,246.2,1557,239 +14773,246.21666666666667,1588,236 +14774,246.23333333333332,1617,234 +14775,246.25,1645,231 +14776,246.26666666666665,1672,229 +14777,246.28333333333333,1698,226 +14778,246.29999999999998,1721,223 +14779,246.31666666666666,1744,220 +14780,246.33333333333334,1764,217 +14781,246.35,1782,215 +14782,246.36666666666667,1798,213 +14783,246.38333333333333,1812,211 +14784,246.4,1824,209 +14785,246.41666666666666,1833,207 +14786,246.43333333333334,1840,206 +14787,246.45,1845,206 +14788,246.46666666666667,1845,206 +14789,246.48333333333332,1845,206 +14790,246.5,1844,206 +14791,246.51666666666665,1839,207 +14792,246.53333333333333,1832,208 +14793,246.54999999999998,1822,210 +14794,246.56666666666666,1810,212 +14795,246.58333333333334,1795,215 +14796,246.6,1779,217 +14797,246.61666666666667,1760,220 +14798,246.63333333333333,1739,223 +14799,246.65,1717,226 +14800,246.66666666666666,1693,229 +14801,246.68333333333334,1667,232 +14802,246.7,1640,234 +14803,246.71666666666667,1612,237 +14804,246.73333333333332,1583,239 +14805,246.75,1552,242 +14806,246.76666666666665,1522,244 +14807,246.78333333333333,1490,245 +14808,246.79999999999998,1458,246 +14809,246.81666666666666,1425,247 +14810,246.83333333333334,1394,247 +14811,246.85,1362,247 +14812,246.86666666666667,1332,247 +14813,246.88333333333333,1302,247 +14814,246.9,1272,246 +14815,246.91666666666666,1243,244 +14816,246.93333333333334,1216,243 +14817,246.95,1190,241 +14818,246.96666666666667,1165,239 +14819,246.98333333333332,1141,237 +14820,247.0,1120,235 +14821,247.01666666666665,1101,233 +14822,247.03333333333333,1084,231 +14823,247.04999999999998,1068,229 +14824,247.06666666666666,1055,228 +14825,247.08333333333334,1045,226 +14826,247.1,1037,225 +14827,247.11666666666667,1030,224 +14828,247.13333333333333,1027,224 +14829,247.15,1027,224 +14830,247.16666666666666,1027,224 +14831,247.18333333333334,1031,224 +14832,247.2,1037,225 +14833,247.21666666666667,1046,226 +14834,247.23333333333332,1057,227 +14835,247.25,1070,228 +14836,247.26666666666665,1086,230 +14837,247.28333333333333,1104,232 +14838,247.29999999999998,1123,234 +14839,247.31666666666666,1144,236 +14840,247.33333333333334,1167,237 +14841,247.35,1192,239 +14842,247.36666666666667,1219,241 +14843,247.38333333333333,1247,242 +14844,247.4,1276,243 +14845,247.41666666666666,1305,244 +14846,247.43333333333334,1336,245 +14847,247.45,1366,245 +14848,247.46666666666667,1398,245 +14849,247.48333333333332,1430,244 +14850,247.5,1462,243 +14851,247.51666666666665,1494,242 +14852,247.53333333333333,1526,241 +14853,247.54999999999998,1557,239 +14854,247.56666666666666,1587,237 +14855,247.58333333333334,1616,234 +14856,247.6,1645,231 +14857,247.61666666666667,1671,229 +14858,247.63333333333333,1697,226 +14859,247.65,1720,223 +14860,247.66666666666666,1742,220 +14861,247.68333333333334,1763,218 +14862,247.7,1781,215 +14863,247.71666666666667,1797,213 +14864,247.73333333333332,1811,211 +14865,247.75,1823,209 +14866,247.76666666666665,1832,207 +14867,247.78333333333333,1839,206 +14868,247.79999999999998,1844,205 +14869,247.81666666666666,1844,205 +14870,247.83333333333334,1844,205 +14871,247.85,1843,206 +14872,247.86666666666667,1838,207 +14873,247.88333333333333,1830,208 +14874,247.9,1821,210 +14875,247.91666666666666,1809,212 +14876,247.93333333333334,1794,215 +14877,247.95,1778,217 +14878,247.96666666666667,1759,220 +14879,247.98333333333332,1739,223 +14880,248.0,1717,226 +14881,248.01666666666665,1693,229 +14882,248.03333333333333,1667,232 +14883,248.04999999999998,1640,234 +14884,248.06666666666666,1612,237 +14885,248.08333333333334,1583,239 +14886,248.1,1552,241 +14887,248.11666666666667,1522,243 +14888,248.13333333333333,1490,245 +14889,248.15,1458,246 +14890,248.16666666666666,1426,247 +14891,248.18333333333334,1395,247 +14892,248.2,1363,247 +14893,248.21666666666667,1332,247 +14894,248.23333333333332,1302,246 +14895,248.25,1272,245 +14896,248.26666666666665,1243,244 +14897,248.28333333333333,1217,243 +14898,248.29999999999998,1190,241 +14899,248.31666666666666,1165,239 +14900,248.33333333333334,1142,237 +14901,248.35,1121,235 +14902,248.36666666666667,1102,233 +14903,248.38333333333333,1085,231 +14904,248.4,1069,229 +14905,248.41666666666666,1057,228 +14906,248.43333333333334,1046,226 +14907,248.45,1038,225 +14908,248.46666666666667,1032,225 +14909,248.48333333333332,1028,224 +14910,248.5,1028,224 +14911,248.51666666666665,1028,224 +14912,248.53333333333333,1032,224 +14913,248.54999999999998,1038,225 +14914,248.56666666666666,1047,226 +14915,248.58333333333334,1058,227 +14916,248.6,1071,228 +14917,248.61666666666667,1086,230 +14918,248.63333333333333,1104,232 +14919,248.65,1123,233 +14920,248.66666666666666,1145,235 +14921,248.68333333333334,1168,237 +14922,248.7,1193,238 +14923,248.71666666666667,1219,240 +14924,248.73333333333332,1247,242 +14925,248.75,1276,243 +14926,248.76666666666665,1306,244 +14927,248.78333333333333,1336,244 +14928,248.79999999999998,1367,244 +14929,248.81666666666666,1398,244 +14930,248.83333333333334,1430,244 +14931,248.85,1462,243 +14932,248.86666666666667,1495,242 +14933,248.88333333333333,1526,241 +14934,248.9,1557,239 +14935,248.91666666666666,1587,237 +14936,248.93333333333334,1616,234 +14937,248.95,1644,232 +14938,248.96666666666667,1671,229 +14939,248.98333333333332,1696,226 +14940,249.0,1720,224 +14941,249.01666666666665,1742,221 +14942,249.03333333333333,1762,218 +14943,249.04999999999998,1780,215 +14944,249.06666666666666,1796,213 +14945,249.08333333333334,1810,211 +14946,249.1,1822,209 +14947,249.11666666666667,1831,208 +14948,249.13333333333333,1838,207 +14949,249.15,1843,206 +14950,249.16666666666666,1843,206 +14951,249.18333333333334,1843,206 +14952,249.2,1843,206 +14953,249.21666666666667,1837,207 +14954,249.23333333333332,1830,209 +14955,249.25,1820,211 +14956,249.26666666666665,1808,213 +14957,249.28333333333333,1794,215 +14958,249.29999999999998,1777,217 +14959,249.31666666666666,1759,220 +14960,249.33333333333334,1738,223 +14961,249.35,1716,226 +14962,249.36666666666667,1692,229 +14963,249.38333333333333,1667,232 +14964,249.4,1640,234 +14965,249.41666666666666,1612,237 +14966,249.43333333333334,1583,239 +14967,249.45,1552,242 +14968,249.46666666666667,1522,243 +14969,249.48333333333332,1491,245 +14970,249.5,1459,246 +14971,249.51666666666665,1426,247 +14972,249.53333333333333,1395,247 +14973,249.54999999999998,1364,247 +14974,249.56666666666666,1333,247 +14975,249.58333333333334,1303,246 +14976,249.6,1273,245 +14977,249.61666666666667,1244,244 +14978,249.63333333333333,1217,242 +14979,249.65,1191,241 +14980,249.66666666666666,1166,239 +14981,249.68333333333334,1143,237 +14982,249.7,1122,235 +14983,249.71666666666667,1103,233 +14984,249.73333333333332,1086,231 +14985,249.75,1071,229 +14986,249.76666666666665,1058,228 +14987,249.78333333333333,1047,226 +14988,249.79999999999998,1039,225 +14989,249.81666666666666,1033,224 +14990,249.83333333333334,1030,224 +14991,249.85,1030,224 +14992,249.86666666666667,1030,224 +14993,249.88333333333333,1033,224 +14994,249.9,1039,225 +14995,249.91666666666666,1048,225 +14996,249.93333333333334,1059,227 +14997,249.95,1072,228 +14998,249.96666666666667,1087,230 +14999,249.98333333333332,1105,231 +15000,250.0,1125,233 +15001,250.01666666666665,1146,235 +15002,250.03333333333333,1169,237 +15003,250.04999999999998,1193,239 +15004,250.06666666666666,1220,240 +15005,250.08333333333334,1247,241 +15006,250.1,1276,242 +15007,250.11666666666667,1306,244 +15008,250.13333333333333,1336,244 +15009,250.15,1367,244 +15010,250.16666666666666,1398,244 +15011,250.18333333333334,1430,244 +15012,250.2,1462,243 +15013,250.21666666666667,1494,242 +15014,250.23333333333332,1526,240 +15015,250.25,1557,238 +15016,250.26666666666665,1586,236 +15017,250.28333333333333,1616,234 +15018,250.29999999999998,1644,231 +15019,250.31666666666666,1670,228 +15020,250.33333333333334,1696,226 +15021,250.35,1719,223 +15022,250.36666666666667,1741,221 +15023,250.38333333333333,1761,217 +15024,250.4,1780,215 +15025,250.41666666666666,1796,213 +15026,250.43333333333334,1810,211 +15027,250.45,1821,209 +15028,250.46666666666667,1831,208 +15029,250.48333333333332,1837,207 +15030,250.5,1842,206 +15031,250.51666666666665,1842,206 +15032,250.53333333333333,1842,206 +15033,250.54999999999998,1842,207 +15034,250.56666666666666,1836,208 +15035,250.58333333333334,1829,209 +15036,250.6,1819,210 +15037,250.61666666666667,1807,213 +15038,250.63333333333333,1793,215 +15039,250.65,1777,217 +15040,250.66666666666666,1759,220 +15041,250.68333333333334,1738,223 +15042,250.7,1716,226 +15043,250.71666666666667,1692,229 +15044,250.73333333333332,1667,232 +15045,250.75,1640,234 +15046,250.76666666666665,1612,237 +15047,250.78333333333333,1583,239 +15048,250.79999999999998,1553,242 +15049,250.81666666666666,1522,243 +15050,250.83333333333334,1491,245 +15051,250.85,1459,246 +15052,250.86666666666667,1427,247 +15053,250.88333333333333,1396,247 +15054,250.9,1365,247 +15055,250.91666666666666,1334,247 +15056,250.93333333333334,1304,246 +15057,250.95,1274,245 +15058,250.96666666666667,1246,244 +15059,250.98333333333332,1218,242 +15060,251.0,1192,241 +15061,251.01666666666665,1168,239 +15062,251.03333333333333,1145,237 +15063,251.04999999999998,1124,235 +15064,251.06666666666666,1104,233 +15065,251.08333333333334,1087,231 +15066,251.1,1072,230 +15067,251.11666666666667,1059,228 +15068,251.13333333333333,1049,227 +15069,251.15,1040,226 +15070,251.16666666666666,1034,225 +15071,251.18333333333334,1031,224 +15072,251.2,1031,224 +15073,251.21666666666667,1031,224 +15074,251.23333333333332,1035,224 +15075,251.25,1041,225 +15076,251.26666666666665,1050,226 +15077,251.28333333333333,1060,227 +15078,251.29999999999998,1073,228 +15079,251.31666666666666,1089,230 +15080,251.33333333333334,1106,232 +15081,251.35,1126,233 +15082,251.36666666666667,1147,235 +15083,251.38333333333333,1170,237 +15084,251.4,1195,239 +15085,251.41666666666666,1221,240 +15086,251.43333333333334,1249,241 +15087,251.45,1277,243 +15088,251.46666666666667,1307,244 +15089,251.48333333333332,1337,244 +15090,251.5,1367,245 +15091,251.51666666666665,1399,245 +15092,251.53333333333333,1431,245 +15093,251.54999999999998,1463,243 +15094,251.56666666666666,1495,242 +15095,251.58333333333334,1526,240 +15096,251.6,1556,238 +15097,251.61666666666667,1586,236 +15098,251.63333333333333,1615,234 +15099,251.65,1643,232 +15100,251.66666666666666,1670,229 +15101,251.68333333333334,1695,226 +15102,251.7,1718,223 +15103,251.71666666666667,1740,220 +15104,251.73333333333332,1760,218 +15105,251.75,1778,216 +15106,251.76666666666665,1794,213 +15107,251.78333333333333,1808,211 +15108,251.79999999999998,1819,209 +15109,251.81666666666666,1829,208 +15110,251.83333333333334,1835,207 +15111,251.85,1840,206 +15112,251.86666666666667,1840,206 +15113,251.88333333333333,1840,206 +15114,251.9,1840,207 +15115,251.91666666666666,1835,208 +15116,251.93333333333334,1828,209 +15117,251.95,1818,211 +15118,251.96666666666667,1806,213 +15119,251.98333333333332,1792,215 +15120,252.0,1775,218 +15121,252.01666666666665,1757,220 +15122,252.03333333333333,1737,223 +15123,252.04999999999998,1715,226 +15124,252.06666666666666,1691,229 +15125,252.08333333333334,1666,232 +15126,252.1,1639,234 +15127,252.11666666666667,1611,237 +15128,252.13333333333333,1582,239 +15129,252.15,1553,242 +15130,252.16666666666666,1522,244 +15131,252.18333333333334,1491,245 +15132,252.2,1459,246 +15133,252.21666666666667,1427,247 +15134,252.23333333333332,1397,247 +15135,252.25,1365,247 +15136,252.26666666666665,1335,247 +15137,252.28333333333333,1305,247 +15138,252.29999999999998,1275,246 +15139,252.31666666666666,1247,244 +15140,252.33333333333334,1220,242 +15141,252.35,1194,241 +15142,252.36666666666667,1170,239 +15143,252.38333333333333,1146,237 +15144,252.4,1125,235 +15145,252.41666666666666,1106,233 +15146,252.43333333333334,1089,232 +15147,252.45,1074,230 +15148,252.46666666666667,1061,228 +15149,252.48333333333332,1050,227 +15150,252.5,1042,226 +15151,252.51666666666665,1036,225 +15152,252.53333333333333,1033,224 +15153,252.54999999999998,1033,224 +15154,252.56666666666666,1033,224 +15155,252.58333333333334,1037,225 +15156,252.6,1043,225 +15157,252.61666666666667,1051,226 +15158,252.63333333333333,1062,227 +15159,252.65,1075,228 +15160,252.66666666666666,1090,230 +15161,252.68333333333334,1108,232 +15162,252.7,1127,234 +15163,252.71666666666667,1148,235 +15164,252.73333333333332,1171,237 +15165,252.75,1196,239 +15166,252.76666666666665,1222,240 +15167,252.78333333333333,1250,242 +15168,252.79999999999998,1278,243 +15169,252.81666666666666,1307,244 +15170,252.83333333333334,1337,244 +15171,252.85,1367,244 +15172,252.86666666666667,1399,244 +15173,252.88333333333333,1430,244 +15174,252.9,1462,243 +15175,252.91666666666666,1494,242 +15176,252.93333333333334,1525,240 +15177,252.95,1556,238 +15178,252.96666666666667,1585,236 +15179,252.98333333333332,1614,234 +15180,253.0,1642,231 +15181,253.01666666666665,1668,229 +15182,253.03333333333333,1693,226 +15183,253.04999999999998,1717,224 +15184,253.06666666666666,1739,221 +15185,253.08333333333334,1759,218 +15186,253.1,1777,216 +15187,253.11666666666667,1793,213 +15188,253.13333333333333,1807,211 +15189,253.15,1818,209 +15190,253.16666666666666,1827,208 +15191,253.18333333333334,1834,207 +15192,253.2,1839,207 +15193,253.21666666666667,1839,207 +15194,253.23333333333332,1839,207 +15195,253.25,1839,207 +15196,253.26666666666665,1834,208 +15197,253.28333333333333,1826,209 +15198,253.29999999999998,1817,211 +15199,253.31666666666666,1805,213 +15200,253.33333333333334,1791,215 +15201,253.35,1775,218 +15202,253.36666666666667,1756,220 +15203,253.38333333333333,1736,223 +15204,253.4,1714,226 +15205,253.41666666666666,1690,229 +15206,253.43333333333334,1665,232 +15207,253.45,1639,234 +15208,253.46666666666667,1611,237 +15209,253.48333333333332,1582,239 +15210,253.5,1552,242 +15211,253.51666666666665,1522,243 +15212,253.53333333333333,1490,245 +15213,253.54999999999998,1459,246 +15214,253.56666666666666,1427,247 +15215,253.58333333333334,1396,248 +15216,253.6,1365,248 +15217,253.61666666666667,1335,248 +15218,253.63333333333333,1305,247 +15219,253.65,1275,246 +15220,253.66666666666666,1247,244 +15221,253.68333333333334,1220,243 +15222,253.7,1194,241 +15223,253.71666666666667,1169,239 +15224,253.73333333333332,1147,237 +15225,253.75,1126,236 +15226,253.76666666666665,1107,234 +15227,253.78333333333333,1089,232 +15228,253.79999999999998,1074,230 +15229,253.81666666666666,1061,228 +15230,253.83333333333334,1051,227 +15231,253.85,1042,226 +15232,253.86666666666667,1036,225 +15233,253.88333333333333,1033,224 +15234,253.9,1033,224 +15235,253.91666666666666,1033,224 +15236,253.93333333333334,1036,225 +15237,253.95,1043,225 +15238,253.96666666666667,1051,226 +15239,253.98333333333332,1062,227 +15240,254.0,1075,229 +15241,254.01666666666665,1090,230 +15242,254.03333333333333,1108,232 +15243,254.04999999999998,1127,234 +15244,254.06666666666666,1148,236 +15245,254.08333333333334,1171,237 +15246,254.1,1195,239 +15247,254.11666666666667,1222,241 +15248,254.13333333333333,1249,242 +15249,254.15,1277,243 +15250,254.16666666666666,1307,244 +15251,254.18333333333334,1337,245 +15252,254.2,1367,245 +15253,254.21666666666667,1398,245 +15254,254.23333333333332,1429,244 +15255,254.25,1461,243 +15256,254.26666666666665,1493,243 +15257,254.28333333333333,1524,241 +15258,254.29999999999998,1554,239 +15259,254.31666666666666,1584,237 +15260,254.33333333333334,1613,235 +15261,254.35,1640,232 +15262,254.36666666666667,1667,230 +15263,254.38333333333333,1692,227 +15264,254.4,1715,224 +15265,254.41666666666666,1737,222 +15266,254.43333333333334,1757,219 +15267,254.45,1775,217 +15268,254.46666666666667,1791,215 +15269,254.48333333333332,1805,213 +15270,254.5,1816,211 +15271,254.51666666666665,1826,210 +15272,254.53333333333333,1833,208 +15273,254.54999999999998,1838,208 +15274,254.56666666666666,1838,208 +15275,254.58333333333334,1838,208 +15276,254.6,1837,208 +15277,254.61666666666667,1833,209 +15278,254.63333333333333,1825,210 +15279,254.65,1815,212 +15280,254.66666666666666,1803,214 +15281,254.68333333333334,1789,216 +15282,254.7,1773,219 +15283,254.71666666666667,1755,222 +15284,254.73333333333332,1735,224 +15285,254.75,1713,227 +15286,254.76666666666665,1689,230 +15287,254.78333333333333,1664,233 +15288,254.79999999999998,1638,235 +15289,254.81666666666666,1610,238 +15290,254.83333333333334,1581,240 +15291,254.85,1551,242 +15292,254.86666666666667,1521,244 +15293,254.88333333333333,1490,246 +15294,254.9,1458,247 +15295,254.91666666666666,1427,248 +15296,254.93333333333334,1396,248 +15297,254.95,1365,248 +15298,254.96666666666667,1335,247 +15299,254.98333333333332,1305,247 +15300,255.0,1276,246 +15301,255.01666666666665,1248,244 +15302,255.03333333333333,1221,243 +15303,255.04999999999998,1195,241 +15304,255.06666666666666,1170,240 +15305,255.08333333333334,1148,238 +15306,255.1,1127,236 +15307,255.11666666666667,1108,234 +15308,255.13333333333333,1091,232 +15309,255.15,1075,230 +15310,255.16666666666666,1063,228 +15311,255.18333333333334,1052,227 +15312,255.2,1044,226 +15313,255.21666666666667,1038,226 +15314,255.23333333333332,1035,225 +15315,255.25,1035,225 +15316,255.26666666666665,1035,225 +15317,255.28333333333333,1038,225 +15318,255.29999999999998,1044,226 +15319,255.31666666666666,1053,227 +15320,255.33333333333334,1063,228 +15321,255.35,1076,229 +15322,255.36666666666667,1091,230 +15323,255.38333333333333,1108,232 +15324,255.4,1127,234 +15325,255.41666666666666,1149,236 +15326,255.43333333333334,1172,238 +15327,255.45,1196,239 +15328,255.46666666666667,1222,241 +15329,255.48333333333332,1249,242 +15330,255.5,1277,244 +15331,255.51666666666665,1307,245 +15332,255.53333333333333,1337,245 +15333,255.54999999999998,1367,245 +15334,255.56666666666666,1398,245 +15335,255.58333333333334,1429,245 +15336,255.6,1461,244 +15337,255.61666666666667,1493,243 +15338,255.63333333333333,1524,241 +15339,255.65,1554,240 +15340,255.66666666666666,1584,237 +15341,255.68333333333334,1612,235 +15342,255.7,1640,232 +15343,255.71666666666667,1667,230 +15344,255.73333333333332,1691,228 +15345,255.75,1715,225 +15346,255.76666666666665,1737,222 +15347,255.78333333333333,1757,219 +15348,255.79999999999998,1774,217 +15349,255.81666666666666,1791,215 +15350,255.83333333333334,1804,213 +15351,255.85,1816,211 +15352,255.86666666666667,1825,210 +15353,255.88333333333333,1832,209 +15354,255.9,1837,208 +15355,255.91666666666666,1837,208 +15356,255.93333333333334,1837,208 +15357,255.95,1836,208 +15358,255.96666666666667,1831,209 +15359,255.98333333333332,1824,211 +15360,256.0,1815,212 +15361,256.01666666666665,1803,214 +15362,256.0333333333333,1789,217 +15363,256.05,1773,219 +15364,256.06666666666666,1755,222 +15365,256.0833333333333,1735,224 +15366,256.1,1713,227 +15367,256.1166666666667,1689,230 +15368,256.1333333333333,1665,233 +15369,256.15,1638,235 +15370,256.1666666666667,1610,238 +15371,256.18333333333334,1581,241 +15372,256.2,1552,243 +15373,256.21666666666664,1522,245 +15374,256.23333333333335,1491,246 +15375,256.25,1459,247 +15376,256.26666666666665,1427,248 +15377,256.2833333333333,1396,248 +15378,256.3,1365,248 +15379,256.31666666666666,1335,248 +15380,256.3333333333333,1306,247 +15381,256.35,1276,246 +15382,256.3666666666667,1248,245 +15383,256.3833333333333,1221,244 +15384,256.4,1195,242 +15385,256.4166666666667,1171,240 +15386,256.43333333333334,1148,238 +15387,256.45,1127,236 +15388,256.46666666666664,1108,234 +15389,256.48333333333335,1091,232 +15390,256.5,1076,231 +15391,256.51666666666665,1063,229 +15392,256.5333333333333,1053,228 +15393,256.55,1045,227 +15394,256.56666666666666,1038,226 +15395,256.5833333333333,1035,225 +15396,256.6,1035,225 +15397,256.6166666666667,1035,225 +15398,256.6333333333333,1039,225 +15399,256.65,1045,226 +15400,256.6666666666667,1053,227 +15401,256.68333333333334,1064,228 +15402,256.7,1077,229 +15403,256.71666666666664,1092,231 +15404,256.73333333333335,1109,233 +15405,256.75,1128,234 +15406,256.76666666666665,1149,236 +15407,256.7833333333333,1172,238 +15408,256.8,1196,240 +15409,256.81666666666666,1222,241 +15410,256.8333333333333,1249,243 +15411,256.85,1278,244 +15412,256.8666666666667,1307,245 +15413,256.8833333333333,1337,245 +15414,256.9,1367,245 +15415,256.9166666666667,1398,245 +15416,256.93333333333334,1429,245 +15417,256.95,1461,244 +15418,256.96666666666664,1493,243 +15419,256.98333333333335,1524,241 +15420,257.0,1554,239 +15421,257.01666666666665,1583,237 +15422,257.0333333333333,1612,235 +15423,257.05,1640,233 +15424,257.06666666666666,1666,230 +15425,257.0833333333333,1691,228 +15426,257.1,1714,225 +15427,257.1166666666667,1736,222 +15428,257.1333333333333,1756,220 +15429,257.15,1774,218 +15430,257.1666666666667,1789,215 +15431,257.18333333333334,1803,213 +15432,257.2,1815,211 +15433,257.21666666666664,1824,210 +15434,257.23333333333335,1831,209 +15435,257.25,1835,208 +15436,257.26666666666665,1835,208 +15437,257.2833333333333,1835,208 +15438,257.3,1835,209 +15439,257.31666666666666,1830,210 +15440,257.3333333333333,1823,211 +15441,257.35,1814,213 +15442,257.3666666666667,1802,215 +15443,257.3833333333333,1788,217 +15444,257.4,1772,219 +15445,257.4166666666667,1754,222 +15446,257.43333333333334,1734,224 +15447,257.45,1712,228 +15448,257.46666666666664,1689,230 +15449,257.48333333333335,1664,233 +15450,257.5,1637,236 +15451,257.51666666666665,1610,238 +15452,257.5333333333333,1581,240 +15453,257.55,1552,242 +15454,257.56666666666666,1522,244 +15455,257.5833333333333,1491,246 +15456,257.6,1459,246 +15457,257.6166666666667,1428,247 +15458,257.6333333333333,1397,247 +15459,257.65,1366,247 +15460,257.6666666666667,1336,247 +15461,257.68333333333334,1306,247 +15462,257.7,1277,245 +15463,257.71666666666664,1249,244 +15464,257.73333333333335,1222,243 +15465,257.75,1196,241 +15466,257.76666666666665,1172,239 +15467,257.7833333333333,1149,237 +15468,257.8,1128,236 +15469,257.81666666666666,1110,234 +15470,257.8333333333333,1093,232 +15471,257.85,1078,230 +15472,257.8666666666667,1065,229 +15473,257.8833333333333,1054,227 +15474,257.9,1046,226 +15475,257.9166666666667,1040,226 +15476,257.93333333333334,1036,225 +15477,257.95,1036,225 +15478,257.96666666666664,1036,225 +15479,257.98333333333335,1040,225 +15480,258.0,1046,226 +15481,258.01666666666665,1055,227 +15482,258.0333333333333,1065,228 +15483,258.05,1078,229 +15484,258.06666666666666,1093,230 +15485,258.0833333333333,1110,232 +15486,258.1,1129,234 +15487,258.1166666666667,1150,235 +15488,258.1333333333333,1173,237 +15489,258.15,1197,239 +15490,258.1666666666667,1223,240 +15491,258.18333333333334,1251,242 +15492,258.2,1279,243 +15493,258.21666666666664,1308,244 +15494,258.23333333333335,1338,245 +15495,258.25,1367,245 +15496,258.26666666666665,1398,245 +15497,258.2833333333333,1429,245 +15498,258.3,1461,244 +15499,258.31666666666666,1493,242 +15500,258.3333333333333,1524,241 +15501,258.35,1553,239 +15502,258.3666666666667,1583,238 +15503,258.3833333333333,1612,235 +15504,258.4,1639,233 +15505,258.4166666666667,1665,230 +15506,258.43333333333334,1690,228 +15507,258.45,1713,225 +15508,258.46666666666664,1735,222 +15509,258.48333333333335,1755,220 +15510,258.5,1773,217 +15511,258.51666666666665,1788,215 +15512,258.5333333333333,1802,213 +15513,258.55,1814,212 +15514,258.56666666666666,1823,210 +15515,258.5833333333333,1830,209 +15516,258.6,1835,208 +15517,258.6166666666667,1835,208 +15518,258.6333333333333,1835,208 +15519,258.65,1835,208 +15520,258.6666666666667,1829,209 +15521,258.68333333333334,1822,211 +15522,258.7,1813,212 +15523,258.71666666666664,1801,214 +15524,258.73333333333335,1787,217 +15525,258.75,1771,219 +15526,258.76666666666665,1753,222 +15527,258.7833333333333,1734,224 +15528,258.8,1712,227 +15529,258.81666666666666,1688,230 +15530,258.8333333333333,1663,233 +15531,258.85,1637,235 +15532,258.8666666666667,1610,238 +15533,258.8833333333333,1581,240 +15534,258.9,1552,242 +15535,258.9166666666667,1522,244 +15536,258.93333333333334,1491,245 +15537,258.95,1460,246 +15538,258.96666666666664,1428,247 +15539,258.98333333333335,1397,247 +15540,259.0,1367,247 +15541,259.01666666666665,1337,247 +15542,259.0333333333333,1307,247 +15543,259.05,1279,246 +15544,259.06666666666666,1250,245 +15545,259.0833333333333,1223,243 +15546,259.1,1198,241 +15547,259.1166666666667,1173,239 +15548,259.1333333333333,1151,238 +15549,259.15,1130,236 +15550,259.1666666666667,1111,234 +15551,259.18333333333334,1094,232 +15552,259.2,1079,230 +15553,259.21666666666664,1066,229 +15554,259.23333333333335,1055,227 +15555,259.25,1047,226 +15556,259.26666666666665,1041,225 +15557,259.2833333333333,1038,225 +15558,259.3,1038,225 +15559,259.31666666666666,1038,225 +15560,259.3333333333333,1041,225 +15561,259.35,1047,226 +15562,259.3666666666667,1056,227 +15563,259.3833333333333,1066,228 +15564,259.4,1079,229 +15565,259.4166666666667,1094,231 +15566,259.43333333333334,1111,233 +15567,259.45,1130,234 +15568,259.46666666666664,1151,236 +15569,259.48333333333335,1174,238 +15570,259.5,1198,239 +15571,259.51666666666665,1224,241 +15572,259.5333333333333,1251,242 +15573,259.55,1279,243 +15574,259.56666666666666,1308,244 +15575,259.5833333333333,1338,245 +15576,259.6,1367,245 +15577,259.6166666666667,1398,245 +15578,259.6333333333333,1429,245 +15579,259.65,1461,243 +15580,259.6666666666667,1493,243 +15581,259.68333333333334,1523,241 +15582,259.7,1553,239 +15583,259.71666666666664,1582,237 +15584,259.73333333333335,1611,235 +15585,259.75,1638,233 +15586,259.76666666666665,1664,230 +15587,259.7833333333333,1689,227 +15588,259.8,1712,225 +15589,259.81666666666666,1734,222 +15590,259.8333333333333,1754,220 +15591,259.85,1772,217 +15592,259.8666666666667,1787,215 +15593,259.8833333333333,1801,213 +15594,259.9,1813,211 +15595,259.9166666666667,1822,210 +15596,259.93333333333334,1829,209 +15597,259.95,1833,208 +15598,259.96666666666664,1833,208 +15599,259.98333333333335,1833,208 +15600,260.0,1833,209 +15601,260.01666666666665,1828,210 +15602,260.0333333333333,1821,211 +15603,260.05,1812,213 +15604,260.06666666666666,1800,214 +15605,260.0833333333333,1787,216 +15606,260.1,1770,219 +15607,260.1166666666667,1752,221 +15608,260.1333333333333,1733,224 +15609,260.15,1711,227 +15610,260.1666666666667,1688,230 +15611,260.18333333333334,1663,232 +15612,260.2,1637,235 +15613,260.21666666666664,1610,238 +15614,260.23333333333335,1581,241 +15615,260.25,1552,242 +15616,260.26666666666665,1522,244 +15617,260.2833333333333,1491,245 +15618,260.3,1460,246 +15619,260.31666666666666,1429,247 +15620,260.3333333333333,1398,248 +15621,260.35,1367,248 +15622,260.3666666666667,1338,248 +15623,260.3833333333333,1308,247 +15624,260.4,1279,246 +15625,260.4166666666667,1251,245 +15626,260.43333333333334,1224,243 +15627,260.45,1198,241 +15628,260.46666666666664,1174,240 +15629,260.48333333333335,1152,238 +15630,260.5,1131,236 +15631,260.51666666666665,1112,234 +15632,260.5333333333333,1095,233 +15633,260.55,1080,231 +15634,260.56666666666666,1067,229 +15635,260.5833333333333,1057,228 +15636,260.6,1048,227 +15637,260.6166666666667,1043,226 +15638,260.6333333333333,1039,226 +15639,260.65,1039,226 +15640,260.6666666666667,1039,226 +15641,260.68333333333334,1043,226 +15642,260.7,1049,226 +15643,260.71666666666664,1057,227 +15644,260.73333333333335,1067,228 +15645,260.75,1080,230 +15646,260.76666666666665,1095,231 +15647,260.7833333333333,1112,233 +15648,260.8,1131,234 +15649,260.81666666666666,1152,236 +15650,260.8333333333333,1174,238 +15651,260.85,1199,239 +15652,260.8666666666667,1224,241 +15653,260.8833333333333,1251,242 +15654,260.9,1279,243 +15655,260.9166666666667,1308,244 +15656,260.93333333333334,1338,245 +15657,260.95,1367,245 +15658,260.96666666666664,1398,245 +15659,260.98333333333335,1429,245 +15660,261.0,1461,244 +15661,261.01666666666665,1492,243 +15662,261.0333333333333,1523,242 +15663,261.05,1553,239 +15664,261.06666666666666,1582,237 +15665,261.0833333333333,1610,235 +15666,261.1,1638,233 +15667,261.1166666666667,1664,231 +15668,261.1333333333333,1688,228 +15669,261.15,1712,225 +15670,261.1666666666667,1733,223 +15671,261.18333333333334,1753,220 +15672,261.2,1770,218 +15673,261.21666666666664,1786,215 +15674,261.23333333333335,1800,213 +15675,261.25,1811,212 +15676,261.26666666666665,1821,210 +15677,261.2833333333333,1828,209 +15678,261.3,1832,209 +15679,261.31666666666666,1832,209 +15680,261.3333333333333,1832,209 +15681,261.35,1832,209 +15682,261.3666666666667,1827,210 +15683,261.3833333333333,1820,211 +15684,261.4,1811,213 +15685,261.4166666666667,1799,215 +15686,261.43333333333334,1785,217 +15687,261.45,1769,219 +15688,261.46666666666664,1752,222 +15689,261.48333333333335,1732,225 +15690,261.5,1710,228 +15691,261.51666666666665,1687,230 +15692,261.5333333333333,1663,233 +15693,261.55,1637,235 +15694,261.56666666666666,1609,238 +15695,261.5833333333333,1581,240 +15696,261.6,1552,243 +15697,261.6166666666667,1522,244 +15698,261.6333333333333,1491,245 +15699,261.65,1460,246 +15700,261.6666666666667,1429,248 +15701,261.68333333333334,1398,248 +15702,261.7,1367,248 +15703,261.71666666666664,1338,248 +15704,261.73333333333335,1309,247 +15705,261.75,1280,246 +15706,261.76666666666665,1252,245 +15707,261.7833333333333,1225,243 +15708,261.8,1199,242 +15709,261.81666666666666,1175,240 +15710,261.8333333333333,1153,238 +15711,261.85,1132,236 +15712,261.8666666666667,1113,234 +15713,261.8833333333333,1096,232 +15714,261.9,1081,231 +15715,261.9166666666667,1068,229 +15716,261.93333333333334,1058,228 +15717,261.95,1050,227 +15718,261.96666666666664,1044,226 +15719,261.98333333333335,1040,226 +15720,262.0,1040,226 +15721,262.01666666666665,1040,226 +15722,262.0333333333333,1044,226 +15723,262.05,1049,226 +15724,262.06666666666666,1058,227 +15725,262.0833333333333,1068,228 +15726,262.1,1081,230 +15727,262.1166666666667,1096,231 +15728,262.1333333333333,1113,233 +15729,262.15,1132,234 +15730,262.1666666666667,1153,236 +15731,262.18333333333334,1175,238 +15732,262.2,1199,240 +15733,262.21666666666664,1225,241 +15734,262.23333333333335,1253,242 +15735,262.25,1280,243 +15736,262.26666666666665,1309,244 +15737,262.2833333333333,1339,245 +15738,262.3,1368,245 +15739,262.31666666666666,1399,245 +15740,262.3333333333333,1429,244 +15741,262.35,1461,244 +15742,262.3666666666667,1492,242 +15743,262.3833333333333,1522,241 +15744,262.4,1552,240 +15745,262.4166666666667,1581,238 +15746,262.43333333333334,1610,236 +15747,262.45,1637,233 +15748,262.46666666666664,1663,231 +15749,262.48333333333335,1688,228 +15750,262.5,1711,226 +15751,262.51666666666665,1732,223 +15752,262.5333333333333,1752,221 +15753,262.55,1769,218 +15754,262.56666666666666,1785,216 +15755,262.5833333333333,1799,214 +15756,262.6,1810,212 +15757,262.6166666666667,1820,211 +15758,262.6333333333333,1827,210 +15759,262.65,1831,209 +15760,262.6666666666667,1831,209 +15761,262.68333333333334,1831,209 +15762,262.7,1831,210 +15763,262.71666666666664,1826,210 +15764,262.73333333333335,1819,212 +15765,262.75,1810,213 +15766,262.76666666666665,1799,215 +15767,262.7833333333333,1785,217 +15768,262.8,1769,220 +15769,262.81666666666666,1751,222 +15770,262.8333333333333,1732,225 +15771,262.85,1710,228 +15772,262.8666666666667,1687,231 +15773,262.8833333333333,1662,233 +15774,262.9,1636,236 +15775,262.9166666666667,1609,238 +15776,262.93333333333334,1581,241 +15777,262.95,1552,242 +15778,262.96666666666664,1522,244 +15779,262.98333333333335,1492,246 +15780,263.0,1461,247 +15781,263.01666666666665,1429,248 +15782,263.0333333333333,1399,248 +15783,263.05,1368,248 +15784,263.06666666666666,1339,248 +15785,263.0833333333333,1309,247 +15786,263.1,1280,246 +15787,263.1166666666667,1252,245 +15788,263.1333333333333,1226,244 +15789,263.15,1200,242 +15790,263.1666666666667,1176,240 +15791,263.18333333333334,1154,238 +15792,263.2,1133,236 +15793,263.21666666666664,1114,235 +15794,263.23333333333335,1097,233 +15795,263.25,1082,231 +15796,263.26666666666665,1070,230 +15797,263.2833333333333,1059,228 +15798,263.3,1051,227 +15799,263.31666666666666,1045,226 +15800,263.3333333333333,1041,226 +15801,263.35,1041,226 +15802,263.3666666666667,1041,226 +15803,263.3833333333333,1045,226 +15804,263.4,1051,227 +15805,263.4166666666667,1059,227 +15806,263.43333333333334,1069,229 +15807,263.45,1082,230 +15808,263.46666666666664,1097,232 +15809,263.48333333333335,1114,233 +15810,263.5,1133,235 +15811,263.51666666666665,1153,237 +15812,263.5333333333333,1176,238 +15813,263.55,1200,240 +15814,263.56666666666666,1225,241 +15815,263.5833333333333,1252,242 +15816,263.6,1280,244 +15817,263.6166666666667,1309,245 +15818,263.6333333333333,1338,245 +15819,263.65,1368,245 +15820,263.6666666666667,1399,245 +15821,263.68333333333334,1429,245 +15822,263.7,1461,245 +15823,263.71666666666664,1492,244 +15824,263.73333333333335,1522,243 +15825,263.75,1552,241 +15826,263.76666666666665,1581,239 +15827,263.7833333333333,1609,237 +15828,263.8,1637,234 +15829,263.81666666666666,1663,232 +15830,263.8333333333333,1687,230 +15831,263.85,1710,227 +15832,263.8666666666667,1732,224 +15833,263.8833333333333,1751,222 +15834,263.9,1768,219 +15835,263.9166666666667,1784,217 +15836,263.93333333333334,1798,215 +15837,263.95,1810,214 +15838,263.96666666666664,1819,212 +15839,263.98333333333335,1826,212 +15840,264.0,1831,211 +15841,264.01666666666665,1831,211 +15842,264.0333333333333,1831,211 +15843,264.05,1831,211 +15844,264.06666666666666,1826,212 +15845,264.0833333333333,1819,213 +15846,264.1,1810,215 +15847,264.1166666666667,1798,217 +15848,264.1333333333333,1784,219 +15849,264.15,1769,221 +15850,264.1666666666667,1751,224 +15851,264.18333333333334,1731,227 +15852,264.2,1710,229 +15853,264.21666666666664,1687,232 +15854,264.23333333333335,1662,235 +15855,264.25,1636,237 +15856,264.26666666666665,1609,240 +15857,264.2833333333333,1581,242 +15858,264.3,1552,244 +15859,264.31666666666666,1522,245 +15860,264.3333333333333,1492,247 +15861,264.35,1461,248 +15862,264.3666666666667,1430,249 +15863,264.3833333333333,1399,249 +15864,264.4,1368,249 +15865,264.4166666666667,1339,249 +15866,264.43333333333334,1310,248 +15867,264.45,1281,247 +15868,264.46666666666664,1253,246 +15869,264.48333333333335,1226,244 +15870,264.5,1201,243 +15871,264.51666666666665,1177,242 +15872,264.5333333333333,1155,240 +15873,264.55,1134,238 +15874,264.56666666666666,1115,235 +15875,264.5833333333333,1098,233 +15876,264.6,1084,232 +15877,264.6166666666667,1071,230 +15878,264.6333333333333,1061,229 +15879,264.65,1052,228 +15880,264.6666666666667,1047,227 +15881,264.68333333333334,1043,227 +15882,264.7,1043,227 +15883,264.71666666666664,1043,227 +15884,264.73333333333335,1046,227 +15885,264.75,1052,227 +15886,264.76666666666665,1061,228 +15887,264.7833333333333,1071,229 +15888,264.8,1083,231 +15889,264.81666666666666,1098,232 +15890,264.8333333333333,1115,234 +15891,264.85,1134,235 +15892,264.8666666666667,1154,237 +15893,264.8833333333333,1177,239 +15894,264.9,1201,241 +15895,264.9166666666667,1226,242 +15896,264.93333333333334,1253,244 +15897,264.95,1281,245 +15898,264.96666666666664,1310,246 +15899,264.98333333333335,1340,246 +15900,265.0,1369,246 +15901,265.01666666666665,1399,246 +15902,265.0333333333333,1430,246 +15903,265.05,1461,245 +15904,265.06666666666666,1492,244 +15905,265.0833333333333,1522,243 +15906,265.1,1552,241 +15907,265.1166666666667,1581,239 +15908,265.1333333333333,1609,237 +15909,265.15,1636,235 +15910,265.1666666666667,1662,232 +15911,265.18333333333334,1687,230 +15912,265.2,1710,228 +15913,265.21666666666664,1731,225 +15914,265.23333333333335,1751,223 +15915,265.25,1768,221 +15916,265.26666666666665,1784,218 +15917,265.2833333333333,1798,216 +15918,265.3,1809,215 +15919,265.31666666666666,1818,213 +15920,265.3333333333333,1825,212 +15921,265.35,1830,212 +15922,265.3666666666667,1830,212 +15923,265.3833333333333,1830,212 +15924,265.4,1830,212 +15925,265.4166666666667,1825,213 +15926,265.43333333333334,1818,214 +15927,265.45,1809,216 +15928,265.46666666666664,1797,218 +15929,265.48333333333335,1783,220 +15930,265.5,1768,222 +15931,265.51666666666665,1750,225 +15932,265.5333333333333,1730,227 +15933,265.55,1709,230 +15934,265.56666666666666,1686,232 +15935,265.5833333333333,1662,235 +15936,265.6,1636,238 +15937,265.6166666666667,1608,240 +15938,265.6333333333333,1581,242 +15939,265.65,1551,244 +15940,265.6666666666667,1522,246 +15941,265.68333333333334,1491,247 +15942,265.7,1461,248 +15943,265.71666666666664,1430,249 +15944,265.73333333333335,1399,249 +15945,265.75,1369,249 +15946,265.76666666666665,1340,249 +15947,265.7833333333333,1310,248 +15948,265.8,1282,248 +15949,265.81666666666666,1254,246 +15950,265.8333333333333,1227,244 +15951,265.85,1202,243 +15952,265.8666666666667,1178,241 +15953,265.8833333333333,1156,240 +15954,265.9,1135,237 +15955,265.9166666666667,1117,236 +15956,265.93333333333334,1100,234 +15957,265.95,1085,232 +15958,265.96666666666664,1072,231 +15959,265.98333333333335,1062,229 +15960,266.0,1054,228 +15961,266.01666666666665,1048,228 +15962,266.0333333333333,1044,227 +15963,266.05,1044,227 +15964,266.06666666666666,1044,227 +15965,266.0833333333333,1048,227 +15966,266.1,1053,228 +15967,266.1166666666667,1062,229 +15968,266.1333333333333,1072,230 +15969,266.15,1085,231 +15970,266.1666666666667,1100,233 +15971,266.18333333333334,1116,234 +15972,266.2,1135,236 +15973,266.21666666666664,1156,238 +15974,266.23333333333335,1178,239 +15975,266.25,1202,241 +15976,266.26666666666665,1227,242 +15977,266.2833333333333,1254,244 +15978,266.3,1282,245 +15979,266.31666666666666,1310,246 +15980,266.3333333333333,1340,246 +15981,266.35,1368,246 +15982,266.3666666666667,1399,246 +15983,266.3833333333333,1430,246 +15984,266.4,1461,245 +15985,266.4166666666667,1492,244 +15986,266.43333333333334,1522,243 +15987,266.45,1552,241 +15988,266.46666666666664,1581,240 +15989,266.48333333333335,1609,238 +15990,266.5,1636,235 +15991,266.51666666666665,1662,233 +15992,266.5333333333333,1687,230 +15993,266.55,1710,228 +15994,266.56666666666666,1731,226 +15995,266.5833333333333,1751,223 +15996,266.6,1768,221 +15997,266.6166666666667,1784,219 +15998,266.6333333333333,1797,217 +15999,266.65,1809,215 +16000,266.6666666666667,1818,214 +16001,266.68333333333334,1825,213 +16002,266.7,1829,212 +16003,266.71666666666664,1829,212 +16004,266.73333333333335,1829,212 +16005,266.75,1829,213 +16006,266.76666666666665,1824,213 +16007,266.7833333333333,1817,215 +16008,266.8,1808,216 +16009,266.81666666666666,1797,218 +16010,266.8333333333333,1783,220 +16011,266.85,1767,223 +16012,266.8666666666667,1749,225 +16013,266.8833333333333,1730,228 +16014,266.9,1709,230 +16015,266.9166666666667,1686,233 +16016,266.93333333333334,1661,236 +16017,266.95,1635,238 +16018,266.96666666666664,1608,241 +16019,266.98333333333335,1580,243 +16020,267.0,1552,244 +16021,267.01666666666665,1522,246 +16022,267.0333333333333,1492,247 +16023,267.05,1461,248 +16024,267.06666666666666,1430,249 +16025,267.0833333333333,1399,250 +16026,267.1,1369,250 +16027,267.1166666666667,1340,250 +16028,267.1333333333333,1311,249 +16029,267.15,1282,248 +16030,267.1666666666667,1255,247 +16031,267.18333333333334,1228,245 +16032,267.2,1202,243 +16033,267.21666666666664,1178,242 +16034,267.23333333333335,1157,240 +16035,267.25,1136,238 +16036,267.26666666666665,1117,236 +16037,267.2833333333333,1100,234 +16038,267.3,1086,233 +16039,267.31666666666666,1073,231 +16040,267.3333333333333,1063,230 +16041,267.35,1054,229 +16042,267.3666666666667,1048,228 +16043,267.3833333333333,1045,227 +16044,267.4,1045,227 +16045,267.4166666666667,1045,227 +16046,267.43333333333334,1048,227 +16047,267.45,1054,228 +16048,267.46666666666664,1062,229 +16049,267.48333333333335,1073,230 +16050,267.5,1085,231 +16051,267.51666666666665,1100,233 +16052,267.5333333333333,1117,234 +16053,267.55,1136,236 +16054,267.56666666666666,1156,238 +16055,267.5833333333333,1178,239 +16056,267.6,1202,241 +16057,267.6166666666667,1228,242 +16058,267.6333333333333,1255,244 +16059,267.65,1282,245 +16060,267.6666666666667,1311,246 +16061,267.68333333333334,1340,247 +16062,267.7,1369,247 +16063,267.71666666666664,1399,247 +16064,267.73333333333335,1430,247 +16065,267.75,1461,246 +16066,267.76666666666665,1492,245 +16067,267.7833333333333,1522,244 +16068,267.8,1552,242 +16069,267.81666666666666,1581,240 +16070,267.8333333333333,1609,238 +16071,267.85,1636,236 +16072,267.8666666666667,1662,233 +16073,267.8833333333333,1686,231 +16074,267.9,1709,228 +16075,267.9166666666667,1730,226 +16076,267.93333333333334,1749,223 +16077,267.95,1767,221 +16078,267.96666666666664,1783,219 +16079,267.98333333333335,1796,217 +16080,268.0,1807,215 +16081,268.01666666666665,1817,214 +16082,268.0333333333333,1823,213 +16083,268.05,1828,213 +16084,268.06666666666666,1828,213 +16085,268.0833333333333,1828,213 +16086,268.1,1828,213 +16087,268.1166666666667,1823,214 +16088,268.1333333333333,1816,215 +16089,268.15,1807,216 +16090,268.1666666666667,1795,218 +16091,268.18333333333334,1782,220 +16092,268.2,1766,223 +16093,268.21666666666664,1749,225 +16094,268.23333333333335,1729,228 +16095,268.25,1708,230 +16096,268.26666666666665,1685,233 +16097,268.2833333333333,1661,235 +16098,268.3,1635,238 +16099,268.31666666666666,1608,240 +16100,268.3333333333333,1580,242 +16101,268.35,1551,244 +16102,268.3666666666667,1521,246 +16103,268.3833333333333,1492,247 +16104,268.4,1461,248 +16105,268.4166666666667,1430,249 +16106,268.43333333333334,1399,249 +16107,268.45,1369,249 +16108,268.46666666666664,1340,249 +16109,268.48333333333335,1311,249 +16110,268.5,1283,247 +16111,268.51666666666665,1255,246 +16112,268.5333333333333,1228,244 +16113,268.55,1203,243 +16114,268.56666666666666,1179,241 +16115,268.5833333333333,1157,239 +16116,268.6,1137,237 +16117,268.6166666666667,1118,236 +16118,268.6333333333333,1101,234 +16119,268.65,1086,232 +16120,268.6666666666667,1074,230 +16121,268.68333333333334,1063,229 +16122,268.7,1055,228 +16123,268.71666666666664,1049,228 +16124,268.73333333333335,1046,227 +16125,268.75,1046,227 +16126,268.76666666666665,1046,227 +16127,268.7833333333333,1049,227 +16128,268.8,1055,228 +16129,268.81666666666666,1063,229 +16130,268.8333333333333,1074,230 +16131,268.85,1086,231 +16132,268.8666666666667,1101,233 +16133,268.8833333333333,1118,234 +16134,268.9,1137,236 +16135,268.9166666666667,1157,238 +16136,268.93333333333334,1179,239 +16137,268.95,1203,241 +16138,268.96666666666664,1228,242 +16139,268.98333333333335,1256,244 +16140,269.0,1283,245 +16141,269.01666666666665,1312,246 +16142,269.0333333333333,1341,247 +16143,269.05,1370,247 +16144,269.06666666666666,1400,247 +16145,269.0833333333333,1430,247 +16146,269.1,1461,246 +16147,269.1166666666667,1492,245 +16148,269.1333333333333,1522,243 +16149,269.15,1552,242 +16150,269.1666666666667,1580,240 +16151,269.18333333333334,1608,238 +16152,269.2,1635,236 +16153,269.21666666666664,1661,233 +16154,269.23333333333335,1685,231 +16155,269.25,1708,228 +16156,269.26666666666665,1729,226 +16157,269.2833333333333,1749,223 +16158,269.3,1766,221 +16159,269.31666666666666,1782,219 +16160,269.3333333333333,1795,217 +16161,269.35,1806,216 +16162,269.3666666666667,1816,214 +16163,269.3833333333333,1822,213 +16164,269.4,1827,213 +16165,269.4166666666667,1827,213 +16166,269.43333333333334,1827,213 +16167,269.45,1827,213 +16168,269.46666666666664,1822,214 +16169,269.48333333333335,1815,215 +16170,269.5,1806,216 +16171,269.51666666666665,1794,218 +16172,269.5333333333333,1781,220 +16173,269.55,1765,223 +16174,269.56666666666666,1748,225 +16175,269.5833333333333,1728,228 +16176,269.6,1707,230 +16177,269.6166666666667,1684,233 +16178,269.6333333333333,1660,235 +16179,269.65,1634,238 +16180,269.6666666666667,1607,240 +16181,269.68333333333334,1579,242 +16182,269.7,1550,244 +16183,269.71666666666664,1521,246 +16184,269.73333333333335,1491,247 +16185,269.75,1461,248 +16186,269.76666666666665,1430,249 +16187,269.7833333333333,1400,249 +16188,269.8,1370,249 +16189,269.81666666666666,1341,249 +16190,269.8333333333333,1311,249 +16191,269.85,1283,248 +16192,269.8666666666667,1255,246 +16193,269.8833333333333,1229,245 +16194,269.9,1204,243 +16195,269.9166666666667,1180,241 +16196,269.93333333333334,1158,239 +16197,269.95,1137,238 +16198,269.96666666666664,1119,236 +16199,269.98333333333335,1102,234 +16200,270.0,1088,233 +16201,270.01666666666665,1075,231 +16202,270.0333333333333,1065,230 +16203,270.05,1057,229 +16204,270.06666666666666,1051,228 +16205,270.0833333333333,1047,228 +16206,270.1,1047,228 +16207,270.1166666666667,1047,228 +16208,270.1333333333333,1051,228 +16209,270.15,1057,228 +16210,270.1666666666667,1065,229 +16211,270.18333333333334,1075,230 +16212,270.2,1087,231 +16213,270.21666666666664,1102,233 +16214,270.23333333333335,1119,234 +16215,270.25,1138,236 +16216,270.26666666666665,1158,238 +16217,270.2833333333333,1180,240 +16218,270.3,1204,241 +16219,270.31666666666666,1229,243 +16220,270.3333333333333,1256,244 +16221,270.35,1283,245 +16222,270.3666666666667,1312,246 +16223,270.3833333333333,1341,247 +16224,270.4,1370,247 +16225,270.4166666666667,1400,247 +16226,270.43333333333334,1431,246 +16227,270.45,1461,246 +16228,270.46666666666664,1492,245 +16229,270.48333333333335,1522,244 +16230,270.5,1551,242 +16231,270.51666666666665,1580,240 +16232,270.5333333333333,1608,238 +16233,270.55,1635,236 +16234,270.56666666666666,1661,234 +16235,270.5833333333333,1685,231 +16236,270.6,1708,229 +16237,270.6166666666667,1729,226 +16238,270.6333333333333,1748,224 +16239,270.65,1766,221 +16240,270.6666666666667,1781,219 +16241,270.68333333333334,1794,218 +16242,270.7,1806,216 +16243,270.71666666666664,1815,215 +16244,270.73333333333335,1821,214 +16245,270.75,1826,213 +16246,270.76666666666665,1826,213 +16247,270.7833333333333,1826,213 +16248,270.8,1826,213 +16249,270.81666666666666,1821,214 +16250,270.8333333333333,1814,216 +16251,270.85,1805,217 +16252,270.8666666666667,1793,219 +16253,270.8833333333333,1780,221 +16254,270.9,1764,223 +16255,270.9166666666667,1747,225 +16256,270.93333333333334,1728,228 +16257,270.95,1707,231 +16258,270.96666666666664,1684,233 +16259,270.98333333333335,1659,236 +16260,271.0,1634,238 +16261,271.01666666666665,1607,240 +16262,271.0333333333333,1579,243 +16263,271.05,1550,244 +16264,271.06666666666666,1521,246 +16265,271.0833333333333,1491,247 +16266,271.1,1461,248 +16267,271.1166666666667,1430,249 +16268,271.1333333333333,1400,249 +16269,271.15,1370,249 +16270,271.1666666666667,1341,249 +16271,271.18333333333334,1312,249 +16272,271.2,1283,248 +16273,271.21666666666664,1256,246 +16274,271.23333333333335,1230,245 +16275,271.25,1204,243 +16276,271.26666666666665,1181,241 +16277,271.2833333333333,1159,240 +16278,271.3,1138,238 +16279,271.31666666666666,1120,236 +16280,271.3333333333333,1103,234 +16281,271.35,1088,233 +16282,271.3666666666667,1076,231 +16283,271.3833333333333,1066,230 +16284,271.4,1057,229 +16285,271.4166666666667,1052,228 +16286,271.43333333333334,1048,227 +16287,271.45,1048,227 +16288,271.46666666666664,1048,227 +16289,271.48333333333335,1052,228 +16290,271.5,1058,228 +16291,271.51666666666665,1066,229 +16292,271.5333333333333,1076,230 +16293,271.55,1089,231 +16294,271.56666666666666,1103,233 +16295,271.5833333333333,1120,234 +16296,271.6,1139,236 +16297,271.6166666666667,1159,238 +16298,271.6333333333333,1181,240 +16299,271.65,1205,241 +16300,271.6666666666667,1230,243 +16301,271.68333333333334,1256,244 +16302,271.7,1284,245 +16303,271.71666666666664,1312,246 +16304,271.73333333333335,1342,247 +16305,271.75,1370,247 +16306,271.76666666666665,1400,247 +16307,271.7833333333333,1430,246 +16308,271.8,1461,246 +16309,271.81666666666666,1492,245 +16310,271.8333333333333,1522,244 +16311,271.85,1551,242 +16312,271.8666666666667,1580,240 +16313,271.8833333333333,1608,238 +16314,271.9,1634,236 +16315,271.9166666666667,1660,233 +16316,271.93333333333334,1684,231 +16317,271.95,1707,229 +16318,271.96666666666664,1728,226 +16319,271.98333333333335,1747,224 +16320,272.0,1764,222 +16321,272.01666666666665,1780,220 +16322,272.0333333333333,1793,218 +16323,272.05,1804,216 +16324,272.06666666666666,1813,215 +16325,272.0833333333333,1820,214 +16326,272.1,1825,213 +16327,272.1166666666667,1825,213 +16328,272.1333333333333,1825,213 +16329,272.15,1824,214 +16330,272.1666666666667,1820,214 +16331,272.18333333333334,1813,216 +16332,272.2,1803,217 +16333,272.21666666666664,1792,219 +16334,272.23333333333335,1778,221 +16335,272.25,1763,223 +16336,272.26666666666665,1746,226 +16337,272.2833333333333,1726,228 +16338,272.3,1705,231 +16339,272.31666666666666,1682,234 +16340,272.3333333333333,1658,236 +16341,272.35,1632,238 +16342,272.3666666666667,1606,240 +16343,272.3833333333333,1578,243 +16344,272.4,1549,244 +16345,272.4166666666667,1520,246 +16346,272.43333333333334,1490,247 +16347,272.45,1460,248 +16348,272.46666666666664,1429,249 +16349,272.48333333333335,1399,249 +16350,272.5,1369,249 +16351,272.51666666666665,1340,249 +16352,272.5333333333333,1311,248 +16353,272.55,1283,247 +16354,272.56666666666666,1256,246 +16355,272.5833333333333,1229,244 +16356,272.6,1204,242 +16357,272.6166666666667,1181,241 +16358,272.6333333333333,1159,239 +16359,272.65,1139,237 +16360,272.6666666666667,1120,236 +16361,272.68333333333334,1104,234 +16362,272.7,1089,232 +16363,272.71666666666664,1077,231 +16364,272.73333333333335,1066,230 +16365,272.75,1058,228 +16366,272.76666666666665,1052,228 +16367,272.7833333333333,1049,227 +16368,272.8,1049,227 +16369,272.81666666666666,1049,227 +16370,272.8333333333333,1053,227 +16371,272.85,1059,228 +16372,272.8666666666667,1067,229 +16373,272.8833333333333,1077,230 +16374,272.9,1090,231 +16375,272.9166666666667,1105,233 +16376,272.93333333333334,1121,234 +16377,272.95,1140,236 +16378,272.96666666666664,1160,238 +16379,272.98333333333335,1182,239 +16380,273.0,1205,241 +16381,273.01666666666665,1231,242 +16382,273.0333333333333,1257,244 +16383,273.05,1285,245 +16384,273.06666666666666,1313,246 +16385,273.0833333333333,1342,247 +16386,273.1,1370,247 +16387,273.1166666666667,1401,247 +16388,273.1333333333333,1431,247 +16389,273.15,1461,246 +16390,273.1666666666667,1492,245 +16391,273.18333333333334,1522,243 +16392,273.2,1551,242 +16393,273.21666666666664,1580,240 +16394,273.23333333333335,1607,238 +16395,273.25,1634,236 +16396,273.26666666666665,1659,233 +16397,273.2833333333333,1683,231 +16398,273.3,1706,229 +16399,273.31666666666666,1727,226 +16400,273.3333333333333,1746,224 +16401,273.35,1764,222 +16402,273.3666666666667,1779,220 +16403,273.3833333333333,1792,218 +16404,273.4,1804,216 +16405,273.4166666666667,1813,215 +16406,273.43333333333334,1819,214 +16407,273.45,1824,213 +16408,273.46666666666664,1824,213 +16409,273.48333333333335,1824,213 +16410,273.5,1823,214 +16411,273.51666666666665,1819,214 +16412,273.5333333333333,1812,216 +16413,273.55,1802,217 +16414,273.56666666666666,1791,219 +16415,273.5833333333333,1777,221 +16416,273.6,1762,223 +16417,273.6166666666667,1745,226 +16418,273.6333333333333,1725,228 +16419,273.65,1704,231 +16420,273.6666666666667,1681,233 +16421,273.68333333333334,1657,236 +16422,273.7,1632,238 +16423,273.71666666666664,1605,241 +16424,273.73333333333335,1577,243 +16425,273.75,1549,244 +16426,273.76666666666665,1520,246 +16427,273.7833333333333,1490,247 +16428,273.8,1460,248 +16429,273.81666666666666,1429,249 +16430,273.8333333333333,1399,249 +16431,273.85,1369,249 +16432,273.8666666666667,1341,249 +16433,273.8833333333333,1312,248 +16434,273.9,1284,247 +16435,273.9166666666667,1256,246 +16436,273.93333333333334,1230,244 +16437,273.95,1205,243 +16438,273.96666666666664,1182,241 +16439,273.98333333333335,1160,239 +16440,274.0,1140,237 +16441,274.01666666666665,1121,236 +16442,274.0333333333333,1105,234 +16443,274.05,1090,232 +16444,274.06666666666666,1078,231 +16445,274.0833333333333,1067,230 +16446,274.1,1059,228 +16447,274.1166666666667,1054,228 +16448,274.1333333333333,1050,227 +16449,274.15,1050,227 +16450,274.1666666666667,1050,227 +16451,274.18333333333334,1054,227 +16452,274.2,1060,228 +16453,274.21666666666664,1068,229 +16454,274.23333333333335,1078,230 +16455,274.25,1091,231 +16456,274.26666666666665,1105,233 +16457,274.2833333333333,1122,234 +16458,274.3,1141,236 +16459,274.31666666666666,1161,237 +16460,274.3333333333333,1183,239 +16461,274.35,1206,241 +16462,274.3666666666667,1231,242 +16463,274.3833333333333,1258,244 +16464,274.4,1285,245 +16465,274.4166666666667,1313,246 +16466,274.43333333333334,1342,247 +16467,274.45,1371,247 +16468,274.46666666666664,1401,247 +16469,274.48333333333335,1431,247 +16470,274.5,1462,245 +16471,274.51666666666665,1492,244 +16472,274.5333333333333,1522,244 +16473,274.55,1550,242 +16474,274.56666666666666,1579,240 +16475,274.5833333333333,1607,238 +16476,274.6,1633,236 +16477,274.6166666666667,1658,233 +16478,274.6333333333333,1683,231 +16479,274.65,1705,229 +16480,274.6666666666667,1726,226 +16481,274.68333333333334,1746,224 +16482,274.7,1763,221 +16483,274.71666666666664,1778,219 +16484,274.73333333333335,1791,217 +16485,274.75,1802,216 +16486,274.76666666666665,1811,215 +16487,274.7833333333333,1818,214 +16488,274.8,1822,213 +16489,274.81666666666666,1822,213 +16490,274.8333333333333,1822,213 +16491,274.85,1822,214 +16492,274.8666666666667,1817,214 +16493,274.8833333333333,1810,216 +16494,274.9,1801,217 +16495,274.9166666666667,1790,219 +16496,274.93333333333334,1776,221 +16497,274.95,1761,223 +16498,274.96666666666664,1743,225 +16499,274.98333333333335,1724,228 +16500,275.0,1703,231 +16501,275.01666666666665,1680,233 +16502,275.0333333333333,1657,236 +16503,275.05,1631,238 +16504,275.06666666666666,1605,240 +16505,275.0833333333333,1577,242 +16506,275.1,1548,244 +16507,275.1166666666667,1519,246 +16508,275.1333333333333,1490,247 +16509,275.15,1459,248 +16510,275.1666666666667,1429,249 +16511,275.18333333333334,1399,249 +16512,275.2,1369,249 +16513,275.21666666666664,1341,248 +16514,275.23333333333335,1312,248 +16515,275.25,1284,247 +16516,275.26666666666665,1257,245 +16517,275.2833333333333,1230,244 +16518,275.3,1206,242 +16519,275.31666666666666,1182,241 +16520,275.3333333333333,1160,239 +16521,275.35,1141,237 +16522,275.3666666666667,1122,235 +16523,275.3833333333333,1106,234 +16524,275.4,1091,232 +16525,275.4166666666667,1079,231 +16526,275.43333333333334,1068,230 +16527,275.45,1061,228 +16528,275.46666666666664,1055,227 +16529,275.48333333333335,1051,227 +16530,275.5,1051,227 +16531,275.51666666666665,1051,227 +16532,275.5333333333333,1055,227 +16533,275.55,1061,228 +16534,275.56666666666666,1069,229 +16535,275.5833333333333,1079,230 +16536,275.6,1092,231 +16537,275.6166666666667,1106,233 +16538,275.6333333333333,1123,234 +16539,275.65,1141,236 +16540,275.6666666666667,1161,237 +16541,275.68333333333334,1183,239 +16542,275.7,1207,240 +16543,275.71666666666664,1232,242 +16544,275.73333333333335,1258,243 +16545,275.75,1286,245 +16546,275.76666666666665,1314,245 +16547,275.7833333333333,1342,246 +16548,275.8,1371,246 +16549,275.81666666666666,1401,246 +16550,275.8333333333333,1431,246 +16551,275.85,1461,245 +16552,275.8666666666667,1491,244 +16553,275.8833333333333,1521,242 +16554,275.9,1550,241 +16555,275.9166666666667,1579,239 +16556,275.93333333333334,1606,238 +16557,275.95,1633,236 +16558,275.96666666666664,1658,233 +16559,275.98333333333335,1682,230 +16560,276.0,1705,228 +16561,276.01666666666665,1725,226 +16562,276.0333333333333,1744,223 +16563,276.05,1762,221 +16564,276.06666666666666,1777,219 +16565,276.0833333333333,1790,217 +16566,276.1,1801,215 +16567,276.1166666666667,1810,214 +16568,276.1333333333333,1816,213 +16569,276.15,1821,213 +16570,276.1666666666667,1821,213 +16571,276.18333333333334,1821,213 +16572,276.2,1820,213 +16573,276.21666666666664,1816,213 +16574,276.23333333333335,1809,215 +16575,276.25,1800,216 +16576,276.26666666666665,1788,218 +16577,276.2833333333333,1775,220 +16578,276.3,1760,222 +16579,276.31666666666666,1742,225 +16580,276.3333333333333,1723,227 +16581,276.35,1702,230 +16582,276.3666666666667,1680,232 +16583,276.3833333333333,1656,235 +16584,276.4,1630,237 +16585,276.4166666666667,1604,239 +16586,276.43333333333334,1576,241 +16587,276.45,1548,243 +16588,276.46666666666664,1519,245 +16589,276.48333333333335,1489,246 +16590,276.5,1459,247 +16591,276.51666666666665,1429,248 +16592,276.5333333333333,1399,248 +16593,276.55,1369,248 +16594,276.56666666666666,1340,248 +16595,276.5833333333333,1312,247 +16596,276.6,1284,247 +16597,276.6166666666667,1257,245 +16598,276.6333333333333,1231,243 +16599,276.65,1206,242 +16600,276.6666666666667,1182,240 +16601,276.68333333333334,1161,238 +16602,276.7,1141,237 +16603,276.71666666666664,1122,235 +16604,276.73333333333335,1106,233 +16605,276.75,1092,232 +16606,276.76666666666665,1079,230 +16607,276.7833333333333,1069,229 +16608,276.8,1061,227 +16609,276.81666666666666,1055,227 +16610,276.8333333333333,1052,226 +16611,276.85,1052,226 +16612,276.8666666666667,1052,226 +16613,276.8833333333333,1056,226 +16614,276.9,1062,227 +16615,276.9166666666667,1069,228 +16616,276.93333333333334,1080,229 +16617,276.95,1092,230 +16618,276.96666666666664,1107,232 +16619,276.98333333333335,1123,233 +16620,277.0,1142,235 +16621,277.01666666666665,1162,237 +16622,277.0333333333333,1184,238 +16623,277.05,1207,240 +16624,277.06666666666666,1232,241 +16625,277.0833333333333,1259,243 +16626,277.1,1286,244 +16627,277.1166666666667,1314,245 +16628,277.1333333333333,1342,245 +16629,277.15,1371,245 +16630,277.1666666666667,1401,245 +16631,277.18333333333334,1431,245 +16632,277.2,1461,244 +16633,277.21666666666664,1491,243 +16634,277.23333333333335,1521,242 +16635,277.25,1550,241 +16636,277.26666666666665,1578,239 +16637,277.2833333333333,1606,237 +16638,277.3,1632,234 +16639,277.31666666666666,1657,232 +16640,277.3333333333333,1681,230 +16641,277.35,1704,227 +16642,277.3666666666667,1724,225 +16643,277.3833333333333,1743,223 +16644,277.4,1760,220 +16645,277.4166666666667,1776,219 +16646,277.43333333333334,1789,216 +16647,277.45,1800,215 +16648,277.46666666666664,1809,214 +16649,277.48333333333335,1815,213 +16650,277.5,1820,212 +16651,277.51666666666665,1820,212 +16652,277.5333333333333,1820,212 +16653,277.55,1819,212 +16654,277.56666666666666,1814,213 +16655,277.5833333333333,1808,214 +16656,277.6,1798,216 +16657,277.6166666666667,1787,218 +16658,277.6333333333333,1773,219 +16659,277.65,1758,222 +16660,277.6666666666667,1740,224 +16661,277.68333333333334,1721,227 +16662,277.7,1701,229 +16663,277.71666666666664,1678,232 +16664,277.73333333333335,1654,234 +16665,277.75,1629,237 +16666,277.76666666666665,1603,239 +16667,277.7833333333333,1575,241 +16668,277.8,1547,243 +16669,277.81666666666666,1518,244 +16670,277.8333333333333,1488,246 +16671,277.85,1458,247 +16672,277.8666666666667,1428,247 +16673,277.8833333333333,1398,247 +16674,277.9,1369,247 +16675,277.9166666666667,1340,247 +16676,277.93333333333334,1311,247 +16677,277.95,1284,246 +16678,277.96666666666664,1257,245 +16679,277.98333333333335,1231,243 +16680,278.0,1206,242 +16681,278.01666666666665,1183,240 +16682,278.0333333333333,1161,238 +16683,278.05,1141,236 +16684,278.06666666666666,1123,234 +16685,278.0833333333333,1106,233 +16686,278.1,1092,231 +16687,278.1166666666667,1080,230 +16688,278.1333333333333,1070,228 +16689,278.15,1062,227 +16690,278.1666666666667,1056,227 +16691,278.18333333333334,1053,226 +16692,278.2,1053,226 +16693,278.21666666666664,1053,226 +16694,278.23333333333335,1056,226 +16695,278.25,1062,227 +16696,278.26666666666665,1070,228 +16697,278.2833333333333,1080,229 +16698,278.3,1093,230 +16699,278.31666666666666,1107,232 +16700,278.3333333333333,1124,233 +16701,278.35,1142,235 +16702,278.3666666666667,1163,236 +16703,278.3833333333333,1184,238 +16704,278.4,1208,240 +16705,278.4166666666667,1233,241 +16706,278.43333333333334,1259,242 +16707,278.45,1286,244 +16708,278.46666666666664,1314,244 +16709,278.48333333333335,1342,245 +16710,278.5,1371,245 +16711,278.51666666666665,1401,245 +16712,278.5333333333333,1431,245 +16713,278.55,1461,244 +16714,278.56666666666666,1491,243 +16715,278.5833333333333,1521,242 +16716,278.6,1549,240 +16717,278.6166666666667,1578,238 +16718,278.6333333333333,1605,236 +16719,278.65,1631,234 +16720,278.6666666666667,1656,232 +16721,278.68333333333334,1680,230 +16722,278.7,1702,227 +16723,278.71666666666664,1723,225 +16724,278.73333333333335,1742,222 +16725,278.75,1759,220 +16726,278.76666666666665,1774,218 +16727,278.7833333333333,1787,216 +16728,278.8,1798,215 +16729,278.81666666666666,1807,214 +16730,278.8333333333333,1814,213 +16731,278.85,1818,212 +16732,278.8666666666667,1818,212 +16733,278.8833333333333,1818,212 +16734,278.9,1817,212 +16735,278.9166666666667,1813,213 +16736,278.93333333333334,1806,214 +16737,278.95,1797,216 +16738,278.96666666666664,1785,217 +16739,278.98333333333335,1772,219 +16740,279.0,1757,222 +16741,279.01666666666665,1739,224 +16742,279.0333333333333,1720,226 +16743,279.05,1700,229 +16744,279.06666666666666,1677,231 +16745,279.0833333333333,1653,234 +16746,279.1,1628,236 +16747,279.1166666666667,1602,239 +16748,279.1333333333333,1574,241 +16749,279.15,1546,243 +16750,279.1666666666667,1517,245 +16751,279.18333333333334,1488,246 +16752,279.2,1458,247 +16753,279.21666666666664,1428,247 +16754,279.23333333333335,1398,248 +16755,279.25,1368,248 +16756,279.26666666666665,1340,248 +16757,279.2833333333333,1312,247 +16758,279.3,1284,246 +16759,279.31666666666666,1257,244 +16760,279.3333333333333,1231,243 +16761,279.35,1206,241 +16762,279.3666666666667,1183,240 +16763,279.3833333333333,1161,238 +16764,279.4,1142,236 +16765,279.4166666666667,1124,234 +16766,279.43333333333334,1108,233 +16767,279.45,1093,231 +16768,279.46666666666664,1081,230 +16769,279.48333333333335,1071,228 +16770,279.5,1063,227 +16771,279.51666666666665,1057,227 +16772,279.5333333333333,1054,226 +16773,279.55,1054,226 +16774,279.56666666666666,1054,226 +16775,279.5833333333333,1058,226 +16776,279.6,1063,227 +16777,279.6166666666667,1072,228 +16778,279.6333333333333,1082,229 +16779,279.65,1094,230 +16780,279.6666666666667,1109,231 +16781,279.68333333333334,1125,234 +16782,279.7,1144,235 +16783,279.71666666666664,1164,237 +16784,279.73333333333335,1186,238 +16785,279.75,1209,239 +16786,279.76666666666665,1234,241 +16787,279.7833333333333,1260,242 +16788,279.8,1287,244 +16789,279.81666666666666,1315,244 +16790,279.8333333333333,1343,245 +16791,279.85,1372,245 +16792,279.8666666666667,1401,245 +16793,279.8833333333333,1431,245 +16794,279.9,1461,244 +16795,279.9166666666667,1491,243 +16796,279.93333333333334,1521,242 +16797,279.95,1549,240 +16798,279.96666666666664,1577,239 +16799,279.98333333333335,1605,237 +16800,280.0,1631,235 +16801,280.01666666666665,1656,232 +16802,280.0333333333333,1680,230 +16803,280.05,1702,227 +16804,280.06666666666666,1723,225 +16805,280.0833333333333,1741,222 +16806,280.1,1758,220 +16807,280.1166666666667,1774,218 +16808,280.1333333333333,1786,216 +16809,280.15,1797,215 +16810,280.1666666666667,1806,214 +16811,280.18333333333334,1813,213 +16812,280.2,1817,212 +16813,280.21666666666664,1817,212 +16814,280.23333333333335,1817,212 +16815,280.25,1817,212 +16816,280.26666666666665,1812,213 +16817,280.2833333333333,1805,214 +16818,280.3,1796,216 +16819,280.31666666666666,1784,218 +16820,280.3333333333333,1771,220 +16821,280.35,1756,222 +16822,280.3666666666667,1738,224 +16823,280.3833333333333,1720,226 +16824,280.4,1699,229 +16825,280.4166666666667,1676,232 +16826,280.43333333333334,1653,234 +16827,280.45,1627,236 +16828,280.46666666666664,1601,239 +16829,280.48333333333335,1574,241 +16830,280.5,1546,243 +16831,280.51666666666665,1517,244 +16832,280.5333333333333,1488,245 +16833,280.55,1458,246 +16834,280.56666666666666,1428,247 +16835,280.5833333333333,1398,247 +16836,280.6,1369,247 +16837,280.6166666666667,1340,247 +16838,280.6333333333333,1312,246 +16839,280.65,1284,245 +16840,280.6666666666667,1257,244 +16841,280.68333333333334,1232,243 +16842,280.7,1207,241 +16843,280.71666666666664,1184,239 +16844,280.73333333333335,1162,238 +16845,280.75,1142,236 +16846,280.76666666666665,1124,234 +16847,280.7833333333333,1108,233 +16848,280.8,1094,231 +16849,280.81666666666666,1082,230 +16850,280.8333333333333,1072,229 +16851,280.85,1064,227 +16852,280.8666666666667,1058,226 +16853,280.8833333333333,1055,226 +16854,280.9,1055,226 +16855,280.9166666666667,1055,226 +16856,280.93333333333334,1059,226 +16857,280.95,1065,227 +16858,280.96666666666664,1073,228 +16859,280.98333333333335,1083,229 +16860,281.0,1096,230 +16861,281.01666666666665,1110,232 +16862,281.0333333333333,1126,233 +16863,281.05,1144,235 +16864,281.06666666666666,1165,236 +16865,281.0833333333333,1186,238 +16866,281.1,1209,239 +16867,281.1166666666667,1234,241 +16868,281.1333333333333,1260,242 +16869,281.15,1287,243 +16870,281.1666666666667,1315,244 +16871,281.18333333333334,1344,245 +16872,281.2,1372,245 +16873,281.21666666666664,1401,245 +16874,281.23333333333335,1431,245 +16875,281.25,1461,244 +16876,281.26666666666665,1491,243 +16877,281.2833333333333,1520,242 +16878,281.3,1549,240 +16879,281.31666666666666,1577,238 +16880,281.3333333333333,1604,236 +16881,281.35,1630,234 +16882,281.3666666666667,1655,232 +16883,281.3833333333333,1679,230 +16884,281.4,1701,227 +16885,281.4166666666667,1721,225 +16886,281.43333333333334,1740,222 +16887,281.45,1757,220 +16888,281.46666666666664,1772,218 +16889,281.48333333333335,1785,217 +16890,281.5,1796,215 +16891,281.51666666666665,1805,214 +16892,281.5333333333333,1811,213 +16893,281.55,1815,213 +16894,281.56666666666666,1815,213 +16895,281.5833333333333,1815,213 +16896,281.6,1815,213 +16897,281.6166666666667,1810,214 +16898,281.6333333333333,1804,215 +16899,281.65,1794,216 +16900,281.6666666666667,1783,218 +16901,281.68333333333334,1770,220 +16902,281.7,1754,222 +16903,281.71666666666664,1737,225 +16904,281.73333333333335,1718,227 +16905,281.75,1698,230 +16906,281.76666666666665,1675,232 +16907,281.7833333333333,1651,234 +16908,281.8,1626,236 +16909,281.81666666666666,1600,239 +16910,281.8333333333333,1573,240 +16911,281.85,1545,243 +16912,281.8666666666667,1516,244 +16913,281.8833333333333,1487,246 +16914,281.9,1457,246 +16915,281.9166666666667,1427,247 +16916,281.93333333333334,1398,247 +16917,281.95,1368,247 +16918,281.96666666666664,1340,247 +16919,281.98333333333335,1312,247 +16920,282.0,1284,246 +16921,282.01666666666665,1258,244 +16922,282.0333333333333,1232,243 +16923,282.05,1207,241 +16924,282.06666666666666,1184,239 +16925,282.0833333333333,1163,238 +16926,282.1,1143,236 +16927,282.1166666666667,1125,234 +16928,282.1333333333333,1109,233 +16929,282.15,1095,231 +16930,282.1666666666667,1082,229 +16931,282.18333333333334,1072,228 +16932,282.2,1064,227 +16933,282.21666666666664,1059,226 +16934,282.23333333333335,1056,226 +16935,282.25,1056,226 +16936,282.26666666666665,1056,226 +16937,282.2833333333333,1059,226 +16938,282.3,1065,227 +16939,282.31666666666666,1073,228 +16940,282.3333333333333,1083,229 +16941,282.35,1096,230 +16942,282.3666666666667,1110,231 +16943,282.3833333333333,1127,233 +16944,282.4,1145,234 +16945,282.4166666666667,1165,236 +16946,282.43333333333334,1187,238 +16947,282.45,1210,239 +16948,282.46666666666664,1234,241 +16949,282.48333333333335,1261,242 +16950,282.5,1287,243 +16951,282.51666666666665,1316,244 +16952,282.5333333333333,1344,244 +16953,282.55,1372,245 +16954,282.56666666666666,1401,245 +16955,282.5833333333333,1431,245 +16956,282.6,1461,244 +16957,282.6166666666667,1491,243 +16958,282.6333333333333,1520,242 +16959,282.65,1549,240 +16960,282.6666666666667,1577,238 +16961,282.68333333333334,1604,236 +16962,282.7,1630,234 +16963,282.71666666666664,1655,232 +16964,282.73333333333335,1678,230 +16965,282.75,1700,227 +16966,282.76666666666665,1720,225 +16967,282.7833333333333,1739,223 +16968,282.8,1756,221 +16969,282.81666666666666,1771,219 +16970,282.8333333333333,1784,217 +16971,282.85,1795,216 +16972,282.8666666666667,1804,214 +16973,282.8833333333333,1810,214 +16974,282.9,1814,213 +16975,282.9166666666667,1814,213 +16976,282.93333333333334,1814,213 +16977,282.95,1814,213 +16978,282.96666666666664,1809,214 +16979,282.98333333333335,1802,215 +16980,283.0,1793,217 +16981,283.01666666666665,1782,218 +16982,283.0333333333333,1768,220 +16983,283.05,1753,222 +16984,283.06666666666666,1736,225 +16985,283.0833333333333,1717,227 +16986,283.1,1696,230 +16987,283.1166666666667,1674,232 +16988,283.1333333333333,1650,235 +16989,283.15,1626,237 +16990,283.1666666666667,1599,239 +16991,283.18333333333334,1572,241 +16992,283.2,1544,243 +16993,283.21666666666664,1516,244 +16994,283.23333333333335,1487,245 +16995,283.25,1457,247 +16996,283.26666666666665,1427,247 +16997,283.2833333333333,1397,248 +16998,283.3,1368,248 +16999,283.31666666666666,1340,248 +17000,283.3333333333333,1312,247 +17001,283.35,1284,246 +17002,283.3666666666667,1258,245 +17003,283.3833333333333,1232,243 +17004,283.4,1207,242 +17005,283.4166666666667,1185,240 +17006,283.43333333333334,1163,238 +17007,283.45,1143,236 +17008,283.46666666666664,1125,234 +17009,283.48333333333335,1109,233 +17010,283.5,1095,231 +17011,283.51666666666665,1083,230 +17012,283.5333333333333,1073,229 +17013,283.55,1065,228 +17014,283.56666666666666,1060,227 +17015,283.5833333333333,1057,227 +17016,283.6,1057,227 +17017,283.6166666666667,1057,227 +17018,283.6333333333333,1060,227 +17019,283.65,1066,227 +17020,283.6666666666667,1074,228 +17021,283.68333333333334,1084,229 +17022,283.7,1097,230 +17023,283.71666666666664,1111,232 +17024,283.73333333333335,1128,234 +17025,283.75,1146,235 +17026,283.76666666666665,1166,237 +17027,283.7833333333333,1187,238 +17028,283.8,1210,240 +17029,283.81666666666666,1235,241 +17030,283.8333333333333,1261,243 +17031,283.85,1288,244 +17032,283.8666666666667,1316,245 +17033,283.8833333333333,1344,245 +17034,283.9,1372,245 +17035,283.9166666666667,1401,245 +17036,283.93333333333334,1431,245 +17037,283.95,1461,244 +17038,283.96666666666664,1491,244 +17039,283.98333333333335,1520,242 +17040,284.0,1548,241 +17041,284.01666666666665,1576,239 +17042,284.0333333333333,1603,237 +17043,284.05,1629,235 +17044,284.06666666666666,1654,233 +17045,284.0833333333333,1678,231 +17046,284.1,1700,228 +17047,284.1166666666667,1720,226 +17048,284.1333333333333,1738,224 +17049,284.15,1755,222 +17050,284.1666666666667,1770,220 +17051,284.18333333333334,1783,218 +17052,284.2,1794,216 +17053,284.21666666666664,1803,215 +17054,284.23333333333335,1809,214 +17055,284.25,1813,213 +17056,284.26666666666665,1813,213 +17057,284.2833333333333,1813,213 +17058,284.3,1812,214 +17059,284.31666666666666,1808,214 +17060,284.3333333333333,1801,216 +17061,284.35,1792,217 +17062,284.3666666666667,1781,219 +17063,284.3833333333333,1767,220 +17064,284.4,1752,223 +17065,284.4166666666667,1735,225 +17066,284.43333333333334,1716,228 +17067,284.45,1695,230 +17068,284.46666666666664,1674,233 +17069,284.48333333333335,1650,235 +17070,284.5,1625,238 +17071,284.51666666666665,1599,239 +17072,284.5333333333333,1571,241 +17073,284.55,1543,243 +17074,284.56666666666666,1515,244 +17075,284.5833333333333,1486,246 +17076,284.6,1456,246 +17077,284.6166666666667,1426,247 +17078,284.6333333333333,1397,248 +17079,284.65,1367,248 +17080,284.6666666666667,1340,248 +17081,284.68333333333334,1311,247 +17082,284.7,1284,246 +17083,284.71666666666664,1258,245 +17084,284.73333333333335,1232,243 +17085,284.75,1208,242 +17086,284.76666666666665,1185,240 +17087,284.7833333333333,1164,238 +17088,284.8,1144,237 +17089,284.81666666666666,1126,235 +17090,284.8333333333333,1110,233 +17091,284.85,1096,232 +17092,284.8666666666667,1084,230 +17093,284.8833333333333,1074,229 +17094,284.9,1067,228 +17095,284.9166666666667,1061,227 +17096,284.93333333333334,1058,227 +17097,284.95,1058,227 +17098,284.96666666666664,1058,227 +17099,284.98333333333335,1062,227 +17100,285.0,1068,228 +17101,285.01666666666665,1076,228 +17102,285.0333333333333,1086,229 +17103,285.05,1098,231 +17104,285.06666666666666,1113,232 +17105,285.0833333333333,1129,233 +17106,285.1,1147,235 +17107,285.1166666666667,1167,237 +17108,285.1333333333333,1189,238 +17109,285.15,1212,240 +17110,285.1666666666667,1237,241 +17111,285.18333333333334,1263,242 +17112,285.2,1288,244 +17113,285.21666666666664,1316,245 +17114,285.23333333333335,1344,245 +17115,285.25,1372,245 +17116,285.26666666666665,1402,245 +17117,285.2833333333333,1431,245 +17118,285.3,1461,245 +17119,285.31666666666666,1490,243 +17120,285.3333333333333,1519,242 +17121,285.35,1548,241 +17122,285.3666666666667,1575,239 +17123,285.3833333333333,1602,237 +17124,285.4,1628,235 +17125,285.4166666666667,1653,233 +17126,285.43333333333334,1676,231 +17127,285.45,1698,228 +17128,285.46666666666664,1719,226 +17129,285.48333333333335,1737,224 +17130,285.5,1754,222 +17131,285.51666666666665,1768,219 +17132,285.5333333333333,1781,218 +17133,285.55,1792,216 +17134,285.56666666666666,1801,215 +17135,285.5833333333333,1807,214 +17136,285.6,1812,214 +17137,285.6166666666667,1812,214 +17138,285.6333333333333,1812,214 +17139,285.65,1811,214 +17140,285.6666666666667,1806,215 +17141,285.68333333333334,1799,216 +17142,285.7,1790,217 +17143,285.71666666666664,1779,219 +17144,285.73333333333335,1766,221 +17145,285.75,1751,223 +17146,285.76666666666665,1733,225 +17147,285.7833333333333,1714,228 +17148,285.8,1694,230 +17149,285.81666666666666,1672,233 +17150,285.8333333333333,1648,235 +17151,285.85,1624,237 +17152,285.8666666666667,1597,239 +17153,285.8833333333333,1570,241 +17154,285.9,1542,243 +17155,285.9166666666667,1514,244 +17156,285.93333333333334,1485,245 +17157,285.95,1455,246 +17158,285.96666666666664,1426,247 +17159,285.98333333333335,1397,247 +17160,286.0,1368,247 +17161,286.01666666666665,1340,247 +17162,286.0333333333333,1312,246 +17163,286.05,1285,245 +17164,286.06666666666666,1259,244 +17165,286.0833333333333,1233,243 +17166,286.1,1208,241 +17167,286.1166666666667,1186,240 +17168,286.1333333333333,1165,238 +17169,286.15,1145,236 +17170,286.1666666666667,1127,234 +17171,286.18333333333334,1111,233 +17172,286.2,1097,231 +17173,286.21666666666664,1085,230 +17174,286.23333333333335,1076,229 +17175,286.25,1068,228 +17176,286.26666666666665,1062,227 +17177,286.2833333333333,1060,227 +17178,286.3,1060,227 +17179,286.31666666666666,1060,227 +17180,286.3333333333333,1063,227 +17181,286.35,1069,228 +17182,286.3666666666667,1077,228 +17183,286.3833333333333,1087,229 +17184,286.4,1100,231 +17185,286.4166666666667,1114,232 +17186,286.43333333333334,1130,233 +17187,286.45,1148,235 +17188,286.46666666666664,1168,237 +17189,286.48333333333335,1190,238 +17190,286.5,1213,240 +17191,286.51666666666665,1238,241 +17192,286.5333333333333,1263,243 +17193,286.55,1289,244 +17194,286.56666666666666,1318,245 +17195,286.5833333333333,1345,245 +17196,286.6,1373,245 +17197,286.6166666666667,1402,245 +17198,286.6333333333333,1431,245 +17199,286.65,1462,244 +17200,286.6666666666667,1491,243 +17201,286.68333333333334,1520,242 +17202,286.7,1549,241 +17203,286.71666666666664,1576,239 +17204,286.73333333333335,1603,237 +17205,286.75,1629,235 +17206,286.76666666666665,1653,233 +17207,286.7833333333333,1676,231 +17208,286.8,1698,228 +17209,286.81666666666666,1718,226 +17210,286.8333333333333,1737,224 +17211,286.85,1753,222 +17212,286.8666666666667,1768,220 +17213,286.8833333333333,1781,218 +17214,286.9,1792,217 +17215,286.9166666666667,1800,215 +17216,286.93333333333334,1807,214 +17217,286.95,1811,214 +17218,286.96666666666664,1811,214 +17219,286.98333333333335,1811,214 +17220,287.0,1810,214 +17221,287.01666666666665,1805,215 +17222,287.0333333333333,1798,216 +17223,287.05,1789,217 +17224,287.06666666666666,1778,219 +17225,287.0833333333333,1765,221 +17226,287.1,1750,223 +17227,287.1166666666667,1733,225 +17228,287.1333333333333,1714,227 +17229,287.15,1693,230 +17230,287.1666666666667,1671,232 +17231,287.18333333333334,1648,234 +17232,287.2,1623,236 +17233,287.21666666666664,1597,239 +17234,287.23333333333335,1571,241 +17235,287.25,1542,243 +17236,287.26666666666665,1514,244 +17237,287.2833333333333,1485,245 +17238,287.3,1455,246 +17239,287.31666666666666,1426,247 +17240,287.3333333333333,1397,247 +17241,287.35,1368,247 +17242,287.3666666666667,1340,247 +17243,287.3833333333333,1313,246 +17244,287.4,1285,245 +17245,287.4166666666667,1259,244 +17246,287.43333333333334,1234,243 +17247,287.45,1209,241 +17248,287.46666666666664,1187,240 +17249,287.48333333333335,1165,238 +17250,287.5,1147,236 +17251,287.51666666666665,1129,235 +17252,287.5333333333333,1113,233 +17253,287.55,1099,232 +17254,287.56666666666666,1087,230 +17255,287.5833333333333,1078,229 +17256,287.6,1070,228 +17257,287.6166666666667,1064,227 +17258,287.6333333333333,1062,227 +17259,287.65,1062,227 +17260,287.6666666666667,1062,227 +17261,287.68333333333334,1065,227 +17262,287.7,1071,228 +17263,287.71666666666664,1079,228 +17264,287.73333333333335,1089,230 +17265,287.75,1101,231 +17266,287.76666666666665,1116,232 +17267,287.7833333333333,1132,234 +17268,287.8,1150,235 +17269,287.81666666666666,1170,236 +17270,287.8333333333333,1192,238 +17271,287.85,1215,240 +17272,287.8666666666667,1239,241 +17273,287.8833333333333,1264,242 +17274,287.9,1291,243 +17275,287.9166666666667,1319,245 +17276,287.93333333333334,1347,245 +17277,287.95,1374,245 +17278,287.96666666666664,1403,245 +17279,287.98333333333335,1432,245 +17280,288.0,1461,244 +17281,288.01666666666665,1491,243 +17282,288.0333333333333,1520,242 +17283,288.05,1548,240 +17284,288.06666666666666,1576,238 +17285,288.0833333333333,1603,236 +17286,288.1,1628,234 +17287,288.1166666666667,1652,232 +17288,288.1333333333333,1676,230 +17289,288.15,1697,228 +17290,288.1666666666667,1717,226 +17291,288.18333333333334,1736,224 +17292,288.2,1752,222 +17293,288.21666666666664,1767,220 +17294,288.23333333333335,1780,218 +17295,288.25,1790,216 +17296,288.26666666666665,1799,216 +17297,288.2833333333333,1805,215 +17298,288.3,1809,214 +17299,288.31666666666666,1809,214 +17300,288.3333333333333,1809,214 +17301,288.35,1808,214 +17302,288.3666666666667,1803,215 +17303,288.3833333333333,1797,216 +17304,288.4,1788,218 +17305,288.4166666666667,1777,219 +17306,288.43333333333334,1764,221 +17307,288.45,1749,223 +17308,288.46666666666664,1731,225 +17309,288.48333333333335,1712,228 +17310,288.5,1692,230 +17311,288.51666666666665,1670,233 +17312,288.5333333333333,1647,235 +17313,288.55,1622,237 +17314,288.56666666666666,1596,239 +17315,288.5833333333333,1569,241 +17316,288.6,1542,242 +17317,288.6166666666667,1513,244 +17318,288.6333333333333,1485,245 +17319,288.65,1455,246 +17320,288.6666666666667,1426,247 +17321,288.68333333333334,1398,247 +17322,288.7,1368,247 +17323,288.71666666666664,1341,247 +17324,288.73333333333335,1313,246 +17325,288.75,1286,245 +17326,288.76666666666665,1260,244 +17327,288.7833333333333,1234,242 +17328,288.8,1211,241 +17329,288.81666666666666,1188,239 +17330,288.8333333333333,1167,237 +17331,288.85,1147,236 +17332,288.8666666666667,1130,234 +17333,288.8833333333333,1114,233 +17334,288.9,1100,231 +17335,288.9166666666667,1088,230 +17336,288.93333333333334,1078,229 +17337,288.95,1071,227 +17338,288.96666666666664,1065,227 +17339,288.98333333333335,1062,226 +17340,289.0,1062,226 +17341,289.01666666666665,1062,226 +17342,289.0333333333333,1066,227 +17343,289.05,1072,227 +17344,289.06666666666666,1080,228 +17345,289.0833333333333,1090,229 +17346,289.1,1103,231 +17347,289.1166666666667,1117,232 +17348,289.1333333333333,1133,233 +17349,289.15,1151,235 +17350,289.1666666666667,1171,237 +17351,289.18333333333334,1192,238 +17352,289.2,1215,240 +17353,289.21666666666664,1240,241 +17354,289.23333333333335,1265,242 +17355,289.25,1292,244 +17356,289.26666666666665,1319,245 +17357,289.2833333333333,1347,245 +17358,289.3,1375,245 +17359,289.31666666666666,1404,245 +17360,289.3333333333333,1433,245 +17361,289.35,1463,244 +17362,289.3666666666667,1492,243 +17363,289.3833333333333,1521,242 +17364,289.4,1548,240 +17365,289.4166666666667,1576,239 +17366,289.43333333333334,1602,237 +17367,289.45,1628,234 +17368,289.46666666666664,1652,233 +17369,289.48333333333335,1675,230 +17370,289.5,1697,228 +17371,289.51666666666665,1717,225 +17372,289.5333333333333,1735,224 +17373,289.55,1751,221 +17374,289.56666666666666,1766,220 +17375,289.5833333333333,1778,218 +17376,289.6,1789,216 +17377,289.6166666666667,1798,216 +17378,289.6333333333333,1804,215 +17379,289.65,1808,214 +17380,289.6666666666667,1808,214 +17381,289.68333333333334,1808,214 +17382,289.7,1807,214 +17383,289.71666666666664,1802,215 +17384,289.73333333333335,1795,216 +17385,289.75,1786,217 +17386,289.76666666666665,1775,219 +17387,289.7833333333333,1762,221 +17388,289.8,1747,223 +17389,289.81666666666666,1730,225 +17390,289.8333333333333,1711,228 +17391,289.85,1691,230 +17392,289.8666666666667,1669,232 +17393,289.8833333333333,1646,235 +17394,289.9,1622,237 +17395,289.9166666666667,1596,239 +17396,289.93333333333334,1569,241 +17397,289.95,1542,242 +17398,289.96666666666664,1513,244 +17399,289.98333333333335,1485,245 +17400,290.0,1455,246 +17401,290.01666666666665,1426,247 +17402,290.0333333333333,1397,247 +17403,290.05,1368,247 +17404,290.06666666666666,1340,247 +17405,290.0833333333333,1312,246 +17406,290.1,1285,245 +17407,290.1166666666667,1259,244 +17408,290.1333333333333,1234,243 +17409,290.15,1210,241 +17410,290.1666666666667,1188,239 +17411,290.18333333333334,1166,238 +17412,290.2,1147,236 +17413,290.21666666666664,1130,234 +17414,290.23333333333335,1114,233 +17415,290.25,1100,231 +17416,290.26666666666665,1088,230 +17417,290.2833333333333,1079,229 +17418,290.3,1071,228 +17419,290.31666666666666,1066,227 +17420,290.3333333333333,1063,227 +17421,290.35,1063,227 +17422,290.3666666666667,1063,227 +17423,290.3833333333333,1067,227 +17424,290.4,1073,228 +17425,290.4166666666667,1081,229 +17426,290.43333333333334,1091,230 +17427,290.45,1103,231 +17428,290.46666666666664,1118,232 +17429,290.48333333333335,1134,233 +17430,290.5,1152,235 +17431,290.51666666666665,1172,236 +17432,290.5333333333333,1193,238 +17433,290.55,1216,239 +17434,290.56666666666666,1240,241 +17435,290.5833333333333,1266,242 +17436,290.6,1292,243 +17437,290.6166666666667,1319,244 +17438,290.6333333333333,1347,245 +17439,290.65,1375,245 +17440,290.6666666666667,1404,245 +17441,290.68333333333334,1433,245 +17442,290.7,1463,244 +17443,290.71666666666664,1492,243 +17444,290.73333333333335,1521,242 +17445,290.75,1548,240 +17446,290.76666666666665,1576,239 +17447,290.7833333333333,1603,237 +17448,290.8,1628,235 +17449,290.81666666666666,1653,233 +17450,290.8333333333333,1675,231 +17451,290.85,1696,228 +17452,290.8666666666667,1716,226 +17453,290.8833333333333,1735,224 +17454,290.9,1751,222 +17455,290.9166666666667,1766,220 +17456,290.93333333333334,1778,218 +17457,290.95,1789,217 +17458,290.96666666666664,1797,215 +17459,290.98333333333335,1803,215 +17460,291.0,1807,214 +17461,291.01666666666665,1807,214 +17462,291.0333333333333,1807,214 +17463,291.05,1806,215 +17464,291.06666666666666,1801,215 +17465,291.0833333333333,1794,216 +17466,291.1,1785,218 +17467,291.1166666666667,1775,219 +17468,291.1333333333333,1761,221 +17469,291.15,1746,223 +17470,291.1666666666667,1729,225 +17471,291.18333333333334,1711,228 +17472,291.2,1690,230 +17473,291.21666666666664,1669,232 +17474,291.23333333333335,1645,235 +17475,291.25,1621,237 +17476,291.26666666666665,1595,239 +17477,291.2833333333333,1568,241 +17478,291.3,1541,242 +17479,291.31666666666666,1513,244 +17480,291.3333333333333,1484,245 +17481,291.35,1455,246 +17482,291.3666666666667,1425,246 +17483,291.3833333333333,1396,246 +17484,291.4,1367,246 +17485,291.4166666666667,1340,246 +17486,291.43333333333334,1312,246 +17487,291.45,1286,244 +17488,291.46666666666664,1260,243 +17489,291.48333333333335,1234,242 +17490,291.5,1210,240 +17491,291.51666666666665,1188,239 +17492,291.5333333333333,1167,237 +17493,291.55,1148,235 +17494,291.56666666666666,1130,234 +17495,291.5833333333333,1114,232 +17496,291.6,1101,231 +17497,291.6166666666667,1089,230 +17498,291.6333333333333,1079,228 +17499,291.65,1072,227 +17500,291.6666666666667,1066,227 +17501,291.68333333333334,1064,226 +17502,291.7,1064,226 +17503,291.71666666666664,1064,226 +17504,291.73333333333335,1068,227 +17505,291.75,1074,227 +17506,291.76666666666665,1082,228 +17507,291.7833333333333,1092,229 +17508,291.8,1104,230 +17509,291.81666666666666,1118,232 +17510,291.8333333333333,1135,233 +17511,291.85,1153,235 +17512,291.8666666666667,1172,236 +17513,291.8833333333333,1193,238 +17514,291.9,1216,239 +17515,291.9166666666667,1241,241 +17516,291.93333333333334,1266,242 +17517,291.95,1292,243 +17518,291.96666666666664,1320,244 +17519,291.98333333333335,1347,245 +17520,292.0,1375,245 +17521,292.01666666666665,1404,245 +17522,292.0333333333333,1433,245 +17523,292.05,1462,244 +17524,292.06666666666666,1492,243 +17525,292.0833333333333,1520,242 +17526,292.1,1548,240 +17527,292.1166666666667,1576,239 +17528,292.1333333333333,1602,237 +17529,292.15,1627,235 +17530,292.1666666666667,1651,233 +17531,292.18333333333334,1674,230 +17532,292.2,1696,228 +17533,292.21666666666664,1716,226 +17534,292.23333333333335,1734,224 +17535,292.25,1750,222 +17536,292.26666666666665,1765,220 +17537,292.2833333333333,1778,218 +17538,292.3,1788,217 +17539,292.31666666666666,1796,216 +17540,292.3333333333333,1802,215 +17541,292.35,1806,214 +17542,292.3666666666667,1806,214 +17543,292.3833333333333,1806,214 +17544,292.4,1805,215 +17545,292.4166666666667,1801,216 +17546,292.43333333333334,1794,217 +17547,292.45,1784,218 +17548,292.46666666666664,1774,220 +17549,292.48333333333335,1760,222 +17550,292.5,1745,224 +17551,292.51666666666665,1728,226 +17552,292.5333333333333,1710,228 +17553,292.55,1689,230 +17554,292.56666666666666,1667,233 +17555,292.5833333333333,1644,235 +17556,292.6,1619,237 +17557,292.6166666666667,1594,239 +17558,292.6333333333333,1567,241 +17559,292.65,1540,243 +17560,292.6666666666667,1512,244 +17561,292.68333333333334,1483,245 +17562,292.7,1454,246 +17563,292.71666666666664,1425,247 +17564,292.73333333333335,1396,247 +17565,292.75,1368,247 +17566,292.76666666666665,1340,246 +17567,292.7833333333333,1313,246 +17568,292.8,1286,245 +17569,292.81666666666666,1259,244 +17570,292.8333333333333,1235,242 +17571,292.85,1211,241 +17572,292.8666666666667,1188,239 +17573,292.8833333333333,1168,238 +17574,292.9,1148,236 +17575,292.9166666666667,1131,234 +17576,292.93333333333334,1115,233 +17577,292.95,1102,231 +17578,292.96666666666664,1090,230 +17579,292.98333333333335,1080,229 +17580,293.0,1073,228 +17581,293.01666666666665,1068,227 +17582,293.0333333333333,1065,227 +17583,293.05,1065,227 +17584,293.06666666666666,1065,227 +17585,293.0833333333333,1069,227 +17586,293.1,1075,228 +17587,293.1166666666667,1083,228 +17588,293.1333333333333,1093,229 +17589,293.15,1105,230 +17590,293.1666666666667,1120,232 +17591,293.18333333333334,1136,233 +17592,293.2,1154,235 +17593,293.21666666666664,1174,236 +17594,293.23333333333335,1195,238 +17595,293.25,1217,239 +17596,293.26666666666665,1241,240 +17597,293.2833333333333,1267,242 +17598,293.3,1293,244 +17599,293.31666666666666,1320,244 +17600,293.3333333333333,1348,245 +17601,293.35,1376,245 +17602,293.3666666666667,1405,245 +17603,293.3833333333333,1433,245 +17604,293.4,1463,244 +17605,293.4166666666667,1492,243 +17606,293.43333333333334,1520,242 +17607,293.45,1548,240 +17608,293.46666666666664,1575,239 +17609,293.48333333333335,1602,237 +17610,293.5,1627,235 +17611,293.51666666666665,1651,233 +17612,293.5333333333333,1674,231 +17613,293.55,1695,229 +17614,293.56666666666666,1715,226 +17615,293.5833333333333,1733,224 +17616,293.6,1750,222 +17617,293.6166666666667,1764,220 +17618,293.6333333333333,1776,219 +17619,293.65,1787,217 +17620,293.6666666666667,1795,216 +17621,293.68333333333334,1801,215 +17622,293.7,1805,215 +17623,293.71666666666664,1805,215 +17624,293.73333333333335,1805,215 +17625,293.75,1804,215 +17626,293.76666666666665,1799,216 +17627,293.7833333333333,1792,217 +17628,293.8,1783,218 +17629,293.81666666666666,1772,220 +17630,293.8333333333333,1759,222 +17631,293.85,1744,224 +17632,293.8666666666667,1727,226 +17633,293.8833333333333,1708,228 +17634,293.9,1688,231 +17635,293.9166666666667,1666,233 +17636,293.93333333333334,1643,235 +17637,293.95,1619,238 +17638,293.96666666666664,1593,239 +17639,293.98333333333335,1566,241 +17640,294.0,1539,243 +17641,294.01666666666665,1511,244 +17642,294.0333333333333,1483,245 +17643,294.05,1453,246 +17644,294.06666666666666,1424,247 +17645,294.0833333333333,1396,247 +17646,294.1,1367,247 +17647,294.1166666666667,1339,247 +17648,294.1333333333333,1312,246 +17649,294.15,1285,245 +17650,294.1666666666667,1259,243 +17651,294.18333333333334,1234,242 +17652,294.2,1211,240 +17653,294.21666666666664,1188,239 +17654,294.23333333333335,1168,237 +17655,294.25,1149,235 +17656,294.26666666666665,1131,234 +17657,294.2833333333333,1116,233 +17658,294.3,1103,231 +17659,294.31666666666666,1091,230 +17660,294.3333333333333,1081,228 +17661,294.35,1074,227 +17662,294.3666666666667,1069,227 +17663,294.3833333333333,1066,227 +17664,294.4,1066,227 +17665,294.4166666666667,1066,227 +17666,294.43333333333334,1070,227 +17667,294.45,1076,228 +17668,294.46666666666664,1084,228 +17669,294.48333333333335,1094,229 +17670,294.5,1106,231 +17671,294.51666666666665,1120,232 +17672,294.5333333333333,1137,233 +17673,294.55,1155,235 +17674,294.56666666666666,1174,237 +17675,294.5833333333333,1195,238 +17676,294.6,1218,240 +17677,294.6166666666667,1242,241 +17678,294.6333333333333,1268,243 +17679,294.65,1293,244 +17680,294.6666666666667,1320,245 +17681,294.68333333333334,1349,245 +17682,294.7,1376,245 +17683,294.71666666666664,1405,245 +17684,294.73333333333335,1434,245 +17685,294.75,1463,244 +17686,294.76666666666665,1492,243 +17687,294.7833333333333,1520,242 +17688,294.8,1548,240 +17689,294.81666666666666,1575,239 +17690,294.8333333333333,1601,237 +17691,294.85,1627,235 +17692,294.8666666666667,1651,233 +17693,294.8833333333333,1673,231 +17694,294.9,1694,229 +17695,294.9166666666667,1714,227 +17696,294.93333333333334,1732,225 +17697,294.95,1748,223 +17698,294.96666666666664,1763,221 +17699,294.98333333333335,1775,219 +17700,295.0,1785,218 +17701,295.01666666666665,1794,216 +17702,295.0333333333333,1800,216 +17703,295.05,1804,215 +17704,295.06666666666666,1804,215 +17705,295.0833333333333,1804,215 +17706,295.1,1803,215 +17707,295.1166666666667,1798,216 +17708,295.1333333333333,1791,217 +17709,295.15,1782,219 +17710,295.1666666666667,1771,220 +17711,295.18333333333334,1758,222 +17712,295.2,1743,224 +17713,295.21666666666664,1726,226 +17714,295.23333333333335,1707,228 +17715,295.25,1687,231 +17716,295.26666666666665,1665,233 +17717,295.2833333333333,1642,235 +17718,295.3,1618,237 +17719,295.31666666666666,1592,239 +17720,295.3333333333333,1566,241 +17721,295.35,1538,243 +17722,295.3666666666667,1510,244 +17723,295.3833333333333,1482,245 +17724,295.4,1453,246 +17725,295.4166666666667,1424,247 +17726,295.43333333333334,1395,247 +17727,295.45,1367,247 +17728,295.46666666666664,1339,246 +17729,295.48333333333335,1312,246 +17730,295.5,1285,245 +17731,295.51666666666665,1260,244 +17732,295.5333333333333,1235,242 +17733,295.55,1211,241 +17734,295.56666666666666,1189,239 +17735,295.5833333333333,1168,238 +17736,295.6,1150,236 +17737,295.6166666666667,1132,234 +17738,295.6333333333333,1117,233 +17739,295.65,1103,231 +17740,295.6666666666667,1092,230 +17741,295.68333333333334,1082,229 +17742,295.7,1075,228 +17743,295.71666666666664,1070,227 +17744,295.73333333333335,1068,227 +17745,295.75,1068,227 +17746,295.76666666666665,1068,227 +17747,295.7833333333333,1071,227 +17748,295.8,1077,228 +17749,295.81666666666666,1085,229 +17750,295.8333333333333,1095,229 +17751,295.85,1108,231 +17752,295.8666666666667,1122,232 +17753,295.8833333333333,1138,233 +17754,295.9,1156,235 +17755,295.9166666666667,1175,237 +17756,295.93333333333334,1197,238 +17757,295.95,1219,239 +17758,295.96666666666664,1243,241 +17759,295.98333333333335,1269,243 +17760,296.0,1294,244 +17761,296.01666666666665,1322,245 +17762,296.0333333333333,1349,245 +17763,296.05,1377,245 +17764,296.06666666666666,1405,245 +17765,296.0833333333333,1434,244 +17766,296.1,1463,244 +17767,296.1166666666667,1492,243 +17768,296.1333333333333,1520,242 +17769,296.15,1548,240 +17770,296.1666666666667,1575,239 +17771,296.18333333333334,1601,237 +17772,296.2,1626,235 +17773,296.21666666666664,1650,233 +17774,296.23333333333335,1673,231 +17775,296.25,1694,229 +17776,296.26666666666665,1714,226 +17777,296.2833333333333,1732,224 +17778,296.3,1748,222 +17779,296.31666666666666,1762,220 +17780,296.3333333333333,1774,219 +17781,296.35,1784,217 +17782,296.3666666666667,1793,216 +17783,296.3833333333333,1799,215 +17784,296.4,1803,215 +17785,296.4166666666667,1803,215 +17786,296.43333333333334,1803,215 +17787,296.45,1801,215 +17788,296.46666666666664,1797,216 +17789,296.48333333333335,1790,217 +17790,296.5,1781,219 +17791,296.51666666666665,1769,220 +17792,296.5333333333333,1757,222 +17793,296.55,1741,224 +17794,296.56666666666666,1724,227 +17795,296.5833333333333,1706,229 +17796,296.6,1686,231 +17797,296.6166666666667,1664,233 +17798,296.6333333333333,1641,235 +17799,296.65,1616,237 +17800,296.6666666666667,1591,239 +17801,296.68333333333334,1565,241 +17802,296.7,1537,243 +17803,296.71666666666664,1510,244 +17804,296.73333333333335,1481,245 +17805,296.75,1452,246 +17806,296.76666666666665,1423,247 +17807,296.7833333333333,1395,247 +17808,296.8,1366,247 +17809,296.81666666666666,1340,246 +17810,296.8333333333333,1312,246 +17811,296.85,1286,245 +17812,296.8666666666667,1260,244 +17813,296.8833333333333,1235,242 +17814,296.9,1212,241 +17815,296.9166666666667,1189,239 +17816,296.93333333333334,1169,238 +17817,296.95,1150,236 +17818,296.96666666666664,1133,234 +17819,296.98333333333335,1118,233 +17820,297.0,1104,231 +17821,297.01666666666665,1093,230 +17822,297.0333333333333,1083,229 +17823,297.05,1076,228 +17824,297.06666666666666,1071,227 +17825,297.0833333333333,1069,227 +17826,297.1,1069,227 +17827,297.1166666666667,1069,227 +17828,297.1333333333333,1072,227 +17829,297.15,1078,228 +17830,297.1666666666667,1086,229 +17831,297.18333333333334,1097,230 +17832,297.2,1109,231 +17833,297.21666666666664,1123,232 +17834,297.23333333333335,1139,234 +17835,297.25,1157,235 +17836,297.26666666666665,1177,236 +17837,297.2833333333333,1198,238 +17838,297.3,1221,240 +17839,297.31666666666666,1245,241 +17840,297.3333333333333,1270,242 +17841,297.35,1295,244 +17842,297.3666666666667,1323,244 +17843,297.3833333333333,1350,245 +17844,297.4,1377,245 +17845,297.4166666666667,1406,245 +17846,297.43333333333334,1434,245 +17847,297.45,1463,244 +17848,297.46666666666664,1492,243 +17849,297.48333333333335,1521,242 +17850,297.5,1548,240 +17851,297.51666666666665,1575,239 +17852,297.5333333333333,1601,237 +17853,297.55,1626,235 +17854,297.56666666666666,1650,233 +17855,297.5833333333333,1672,231 +17856,297.6,1693,229 +17857,297.6166666666667,1713,227 +17858,297.6333333333333,1731,224 +17859,297.65,1747,223 +17860,297.6666666666667,1761,221 +17861,297.68333333333334,1773,219 +17862,297.7,1783,218 +17863,297.71666666666664,1791,216 +17864,297.73333333333335,1798,216 +17865,297.75,1801,215 +17866,297.76666666666665,1801,215 +17867,297.7833333333333,1801,215 +17868,297.8,1800,216 +17869,297.81666666666666,1795,216 +17870,297.8333333333333,1788,218 +17871,297.85,1779,219 +17872,297.8666666666667,1768,220 +17873,297.8833333333333,1755,222 +17874,297.9,1740,224 +17875,297.9166666666667,1723,227 +17876,297.93333333333334,1705,229 +17877,297.95,1684,231 +17878,297.96666666666664,1663,233 +17879,297.98333333333335,1639,235 +17880,298.0,1615,237 +17881,298.01666666666665,1590,239 +17882,298.0333333333333,1564,241 +17883,298.05,1537,243 +17884,298.06666666666666,1509,244 +17885,298.0833333333333,1481,245 +17886,298.1,1452,246 +17887,298.1166666666667,1423,246 +17888,298.1333333333333,1394,246 +17889,298.15,1366,246 +17890,298.1666666666667,1339,246 +17891,298.18333333333334,1312,246 +17892,298.2,1285,245 +17893,298.21666666666664,1260,243 +17894,298.23333333333335,1235,242 +17895,298.25,1212,240 +17896,298.26666666666665,1190,239 +17897,298.2833333333333,1169,238 +17898,298.3,1151,236 +17899,298.31666666666666,1133,234 +17900,298.3333333333333,1118,233 +17901,298.35,1105,231 +17902,298.3666666666667,1093,230 +17903,298.3833333333333,1084,229 +17904,298.4,1077,228 +17905,298.4166666666667,1072,227 +17906,298.43333333333334,1070,227 +17907,298.45,1070,227 +17908,298.46666666666664,1070,227 +17909,298.48333333333335,1074,227 +17910,298.5,1080,228 +17911,298.51666666666665,1088,229 +17912,298.5333333333333,1098,230 +17913,298.55,1110,231 +17914,298.56666666666666,1124,232 +17915,298.5833333333333,1140,234 +17916,298.6,1158,235 +17917,298.6166666666667,1177,237 +17918,298.6333333333333,1199,238 +17919,298.65,1221,240 +17920,298.6666666666667,1246,241 +17921,298.68333333333334,1271,242 +17922,298.7,1296,244 +17923,298.71666666666664,1323,245 +17924,298.73333333333335,1351,245 +17925,298.75,1378,245 +17926,298.76666666666665,1407,245 +17927,298.7833333333333,1435,245 +17928,298.8,1464,244 +17929,298.81666666666666,1493,243 +17930,298.8333333333333,1521,242 +17931,298.85,1548,241 +17932,298.8666666666667,1575,239 +17933,298.8833333333333,1601,237 +17934,298.9,1626,235 +17935,298.9166666666667,1650,233 +17936,298.93333333333334,1672,231 +17937,298.95,1693,229 +17938,298.96666666666664,1713,227 +17939,298.98333333333335,1731,225 +17940,299.0,1746,223 +17941,299.01666666666665,1761,221 +17942,299.0333333333333,1773,219 +17943,299.05,1783,218 +17944,299.06666666666666,1791,217 +17945,299.0833333333333,1797,216 +17946,299.1,1801,215 +17947,299.1166666666667,1801,215 +17948,299.1333333333333,1801,215 +17949,299.15,1799,216 +17950,299.1666666666667,1794,217 +17951,299.18333333333334,1788,218 +17952,299.2,1779,219 +17953,299.21666666666664,1767,220 +17954,299.23333333333335,1754,222 +17955,299.25,1739,225 +17956,299.26666666666665,1723,227 +17957,299.2833333333333,1704,229 +17958,299.3,1684,231 +17959,299.31666666666666,1662,233 +17960,299.3333333333333,1639,236 +17961,299.35,1615,238 +17962,299.3666666666667,1590,239 +17963,299.3833333333333,1564,241 +17964,299.4,1536,243 +17965,299.4166666666667,1509,244 +17966,299.43333333333334,1480,245 +17967,299.45,1452,246 +17968,299.46666666666664,1423,247 +17969,299.48333333333335,1395,247 +17970,299.5,1366,247 +17971,299.51666666666665,1339,247 +17972,299.5333333333333,1312,245 +17973,299.55,1286,245 +17974,299.56666666666666,1261,243 +17975,299.5833333333333,1236,242 +17976,299.6,1213,240 +17977,299.6166666666667,1191,239 +17978,299.6333333333333,1170,237 +17979,299.65,1152,236 +17980,299.6666666666667,1135,234 +17981,299.68333333333334,1119,233 +17982,299.7,1106,231 +17983,299.71666666666664,1095,230 +17984,299.73333333333335,1085,229 +17985,299.75,1078,228 +17986,299.76666666666665,1073,227 +17987,299.7833333333333,1071,227 +17988,299.8,1071,227 +17989,299.81666666666666,1071,227 +17990,299.8333333333333,1075,227 +17991,299.85,1081,228 +17992,299.8666666666667,1089,229 +17993,299.8833333333333,1099,230 +17994,299.9,1111,231 +17995,299.9166666666667,1126,232 +17996,299.93333333333334,1142,234 +17997,299.95,1159,235 +17998,299.96666666666664,1179,237 +17999,299.98333333333335,1200,238 +18000,300.0,1223,240 +18001,300.01666666666665,1246,241 +18002,300.0333333333333,1272,242 +18003,300.05,1297,244 +18004,300.06666666666666,1324,245 +18005,300.0833333333333,1351,245 +18006,300.1,1379,245 +18007,300.1166666666667,1407,245 +18008,300.1333333333333,1436,245 +18009,300.15,1464,244 +18010,300.1666666666667,1493,243 +18011,300.18333333333334,1521,242 +18012,300.2,1548,240 +18013,300.21666666666664,1575,239 +18014,300.23333333333335,1601,237 +18015,300.25,1626,235 +18016,300.26666666666665,1650,233 +18017,300.2833333333333,1671,231 +18018,300.3,1692,229 +18019,300.31666666666666,1712,227 +18020,300.3333333333333,1730,225 +18021,300.35,1745,223 +18022,300.3666666666667,1760,221 +18023,300.3833333333333,1772,219 +18024,300.4,1782,218 +18025,300.4166666666667,1790,217 +18026,300.43333333333334,1796,216 +18027,300.45,1799,216 +18028,300.46666666666664,1799,216 +18029,300.48333333333335,1799,216 +18030,300.5,1797,216 +18031,300.51666666666665,1793,217 +18032,300.5333333333333,1786,218 +18033,300.55,1777,219 +18034,300.56666666666666,1766,221 +18035,300.5833333333333,1753,223 +18036,300.6,1738,225 +18037,300.6166666666667,1721,227 +18038,300.6333333333333,1703,229 +18039,300.65,1683,231 +18040,300.6666666666667,1662,234 +18041,300.68333333333334,1639,236 +18042,300.7,1615,238 +18043,300.71666666666664,1589,239 +18044,300.73333333333335,1563,241 +18045,300.75,1536,243 +18046,300.76666666666665,1508,244 +18047,300.7833333333333,1480,245 +18048,300.8,1452,246 +18049,300.81666666666666,1423,247 +18050,300.8333333333333,1395,247 +18051,300.85,1366,247 +18052,300.8666666666667,1340,246 +18053,300.8833333333333,1312,246 +18054,300.9,1286,244 +18055,300.9166666666667,1261,243 +18056,300.93333333333334,1236,242 +18057,300.95,1213,240 +18058,300.96666666666664,1191,239 +18059,300.98333333333335,1171,237 +18060,301.0,1152,236 +18061,301.01666666666665,1135,234 +18062,301.0333333333333,1120,233 +18063,301.05,1107,231 +18064,301.06666666666666,1096,230 +18065,301.0833333333333,1086,229 +18066,301.1,1079,228 +18067,301.1166666666667,1075,228 +18068,301.1333333333333,1072,228 +18069,301.15,1072,228 +18070,301.1666666666667,1072,228 +18071,301.18333333333334,1077,228 +18072,301.2,1082,229 +18073,301.21666666666664,1090,229 +18074,301.23333333333335,1101,230 +18075,301.25,1113,231 +18076,301.26666666666665,1127,232 +18077,301.2833333333333,1143,234 +18078,301.3,1161,235 +18079,301.31666666666666,1180,237 +18080,301.3333333333333,1201,238 +18081,301.35,1224,240 +18082,301.3666666666667,1248,241 +18083,301.3833333333333,1273,242 +18084,301.4,1298,244 +18085,301.4166666666667,1325,245 +18086,301.43333333333334,1352,245 +18087,301.45,1380,245 +18088,301.46666666666664,1408,245 +18089,301.48333333333335,1436,245 +18090,301.5,1465,244 +18091,301.51666666666665,1494,243 +18092,301.5333333333333,1521,241 +18093,301.55,1549,240 +18094,301.56666666666666,1576,239 +18095,301.5833333333333,1601,237 +18096,301.6,1625,235 +18097,301.6166666666667,1649,233 +18098,301.6333333333333,1671,231 +18099,301.65,1692,229 +18100,301.6666666666667,1711,227 +18101,301.68333333333334,1728,225 +18102,301.7,1744,223 +18103,301.71666666666664,1758,221 +18104,301.73333333333335,1770,219 +18105,301.75,1781,218 +18106,301.76666666666665,1788,217 +18107,301.7833333333333,1794,216 +18108,301.8,1798,216 +18109,301.81666666666666,1798,216 +18110,301.8333333333333,1798,216 +18111,301.85,1796,216 +18112,301.8666666666667,1792,217 +18113,301.8833333333333,1784,218 +18114,301.9,1775,219 +18115,301.9166666666667,1765,221 +18116,301.93333333333334,1751,223 +18117,301.95,1737,225 +18118,301.96666666666664,1720,227 +18119,301.98333333333335,1702,229 +18120,302.0,1682,231 +18121,302.01666666666665,1660,234 +18122,302.0333333333333,1637,235 +18123,302.05,1613,238 +18124,302.06666666666666,1588,239 +18125,302.0833333333333,1562,241 +18126,302.1,1535,243 +18127,302.1166666666667,1508,244 +18128,302.1333333333333,1480,245 +18129,302.15,1451,246 +18130,302.1666666666667,1422,247 +18131,302.18333333333334,1395,247 +18132,302.2,1367,247 +18133,302.21666666666664,1340,247 +18134,302.23333333333335,1313,246 +18135,302.25,1287,245 +18136,302.26666666666665,1261,243 +18137,302.2833333333333,1237,242 +18138,302.3,1214,241 +18139,302.31666666666666,1192,239 +18140,302.3333333333333,1172,238 +18141,302.35,1153,236 +18142,302.3666666666667,1136,234 +18143,302.3833333333333,1121,233 +18144,302.4,1108,232 +18145,302.4166666666667,1097,230 +18146,302.43333333333334,1087,229 +18147,302.45,1081,228 +18148,302.46666666666664,1075,228 +18149,302.48333333333335,1074,227 +18150,302.5,1074,227 +18151,302.51666666666665,1074,227 +18152,302.5333333333333,1078,228 +18153,302.55,1084,229 +18154,302.56666666666666,1092,229 +18155,302.5833333333333,1102,230 +18156,302.6,1114,232 +18157,302.6166666666667,1128,233 +18158,302.6333333333333,1144,234 +18159,302.65,1162,236 +18160,302.6666666666667,1182,237 +18161,302.68333333333334,1203,239 +18162,302.7,1225,240 +18163,302.71666666666664,1249,242 +18164,302.73333333333335,1274,243 +18165,302.75,1300,244 +18166,302.76666666666665,1327,245 +18167,302.7833333333333,1353,246 +18168,302.8,1380,246 +18169,302.81666666666666,1408,246 +18170,302.8333333333333,1437,245 +18171,302.85,1466,244 +18172,302.8666666666667,1494,243 +18173,302.8833333333333,1522,242 +18174,302.9,1548,241 +18175,302.9166666666667,1575,239 +18176,302.93333333333334,1601,237 +18177,302.95,1625,236 +18178,302.96666666666664,1649,233 +18179,302.98333333333335,1671,231 +18180,303.0,1692,229 +18181,303.01666666666665,1711,227 +18182,303.0333333333333,1728,225 +18183,303.05,1744,223 +18184,303.06666666666666,1758,221 +18185,303.0833333333333,1770,220 +18186,303.1,1780,218 +18187,303.1166666666667,1788,217 +18188,303.1333333333333,1794,217 +18189,303.15,1797,216 +18190,303.1666666666667,1797,216 +18191,303.18333333333334,1797,216 +18192,303.2,1795,217 +18193,303.21666666666664,1791,218 +18194,303.23333333333335,1783,218 +18195,303.25,1774,220 +18196,303.26666666666665,1763,221 +18197,303.2833333333333,1750,223 +18198,303.3,1735,225 +18199,303.31666666666666,1719,228 +18200,303.3333333333333,1701,230 +18201,303.35,1680,232 +18202,303.3666666666667,1659,234 +18203,303.3833333333333,1636,236 +18204,303.4,1612,238 +18205,303.4166666666667,1587,240 +18206,303.43333333333334,1561,241 +18207,303.45,1534,243 +18208,303.46666666666664,1506,244 +18209,303.48333333333335,1479,246 +18210,303.5,1450,246 +18211,303.51666666666665,1422,247 +18212,303.5333333333333,1394,247 +18213,303.55,1366,247 +18214,303.56666666666666,1339,247 +18215,303.5833333333333,1313,246 +18216,303.6,1287,245 +18217,303.6166666666667,1262,244 +18218,303.6333333333333,1238,243 +18219,303.65,1215,241 +18220,303.6666666666667,1193,239 +18221,303.68333333333334,1173,238 +18222,303.7,1154,236 +18223,303.71666666666664,1138,235 +18224,303.73333333333335,1123,233 +18225,303.75,1109,232 +18226,303.76666666666665,1098,231 +18227,303.7833333333333,1089,230 +18228,303.8,1082,229 +18229,303.81666666666666,1077,228 +18230,303.8333333333333,1076,227 +18231,303.85,1076,227 +18232,303.8666666666667,1076,227 +18233,303.8833333333333,1079,228 +18234,303.9,1086,229 +18235,303.9166666666667,1094,229 +18236,303.93333333333334,1104,231 +18237,303.95,1116,232 +18238,303.96666666666664,1130,233 +18239,303.98333333333335,1146,234 +18240,304.0,1164,236 +18241,304.01666666666665,1183,238 +18242,304.0333333333333,1204,239 +18243,304.05,1226,240 +18244,304.06666666666666,1250,242 +18245,304.0833333333333,1274,243 +18246,304.1,1300,244 +18247,304.1166666666667,1327,245 +18248,304.1333333333333,1354,245 +18249,304.15,1380,245 +18250,304.1666666666667,1408,245 +18251,304.18333333333334,1437,245 +18252,304.2,1465,244 +18253,304.21666666666664,1494,243 +18254,304.23333333333335,1521,242 +18255,304.25,1548,241 +18256,304.26666666666665,1575,239 +18257,304.2833333333333,1601,238 +18258,304.3,1625,235 +18259,304.31666666666666,1648,234 +18260,304.3333333333333,1670,232 +18261,304.35,1691,229 +18262,304.3666666666667,1710,227 +18263,304.3833333333333,1727,226 +18264,304.4,1743,224 +18265,304.4166666666667,1757,222 +18266,304.43333333333334,1769,220 +18267,304.45,1779,219 +18268,304.46666666666664,1787,218 +18269,304.48333333333335,1792,217 +18270,304.5,1796,217 +18271,304.51666666666665,1796,217 +18272,304.5333333333333,1796,217 +18273,304.55,1794,217 +18274,304.56666666666666,1789,218 +18275,304.5833333333333,1782,219 +18276,304.6,1773,220 +18277,304.6166666666667,1762,222 +18278,304.6333333333333,1749,224 +18279,304.65,1734,226 +18280,304.6666666666667,1717,228 +18281,304.68333333333334,1699,230 +18282,304.7,1679,232 +18283,304.71666666666664,1658,234 +18284,304.73333333333335,1635,237 +18285,304.75,1611,238 +18286,304.76666666666665,1586,240 +18287,304.7833333333333,1560,242 +18288,304.8,1533,243 +18289,304.81666666666666,1506,245 +18290,304.8333333333333,1478,246 +18291,304.85,1449,246 +18292,304.8666666666667,1421,247 +18293,304.8833333333333,1393,247 +18294,304.9,1366,247 +18295,304.9166666666667,1339,247 +18296,304.93333333333334,1312,246 +18297,304.95,1286,245 +18298,304.96666666666664,1261,244 +18299,304.98333333333335,1237,242 +18300,305.0,1214,241 +18301,305.01666666666665,1192,239 +18302,305.0333333333333,1172,238 +18303,305.05,1154,236 +18304,305.06666666666666,1137,235 +18305,305.0833333333333,1122,233 +18306,305.1,1109,232 +18307,305.1166666666667,1098,231 +18308,305.1333333333333,1089,229 +18309,305.15,1082,228 +18310,305.1666666666667,1077,228 +18311,305.18333333333334,1076,228 +18312,305.2,1076,228 +18313,305.21666666666664,1076,228 +18314,305.23333333333335,1080,228 +18315,305.25,1086,229 +18316,305.26666666666665,1094,230 +18317,305.2833333333333,1104,231 +18318,305.3,1116,232 +18319,305.31666666666666,1130,233 +18320,305.3333333333333,1146,235 +18321,305.35,1164,236 +18322,305.3666666666667,1183,238 +18323,305.3833333333333,1204,239 +18324,305.4,1227,241 +18325,305.4166666666667,1251,242 +18326,305.43333333333334,1275,243 +18327,305.45,1301,244 +18328,305.46666666666664,1328,245 +18329,305.48333333333335,1354,246 +18330,305.5,1381,246 +18331,305.51666666666665,1409,246 +18332,305.5333333333333,1437,245 +18333,305.55,1466,245 +18334,305.56666666666666,1494,244 +18335,305.5833333333333,1521,243 +18336,305.6,1548,242 +18337,305.6166666666667,1574,240 +18338,305.6333333333333,1600,238 +18339,305.65,1624,236 +18340,305.6666666666667,1648,234 +18341,305.68333333333334,1670,232 +18342,305.7,1690,230 +18343,305.71666666666664,1709,228 +18344,305.73333333333335,1726,226 +18345,305.75,1742,224 +18346,305.76666666666665,1756,222 +18347,305.7833333333333,1768,221 +18348,305.8,1778,220 +18349,305.81666666666666,1785,219 +18350,305.8333333333333,1791,218 +18351,305.85,1795,218 +18352,305.8666666666667,1795,218 +18353,305.8833333333333,1795,218 +18354,305.9,1793,218 +18355,305.9166666666667,1788,219 +18356,305.93333333333334,1781,219 +18357,305.95,1772,221 +18358,305.96666666666664,1761,222 +18359,305.98333333333335,1748,224 +18360,306.0,1733,226 +18361,306.01666666666665,1716,228 +18362,306.0333333333333,1698,230 +18363,306.05,1678,232 +18364,306.06666666666666,1656,235 +18365,306.0833333333333,1634,237 +18366,306.1,1610,239 +18367,306.1166666666667,1584,240 +18368,306.1333333333333,1559,242 +18369,306.15,1532,244 +18370,306.1666666666667,1505,245 +18371,306.18333333333334,1477,246 +18372,306.2,1448,246 +18373,306.21666666666664,1420,247 +18374,306.23333333333335,1392,247 +18375,306.25,1365,247 +18376,306.26666666666665,1339,247 +18377,306.2833333333333,1312,246 +18378,306.3,1286,245 +18379,306.31666666666666,1261,244 +18380,306.3333333333333,1238,242 +18381,306.35,1214,241 +18382,306.3666666666667,1193,239 +18383,306.3833333333333,1173,238 +18384,306.4,1155,236 +18385,306.4166666666667,1138,235 +18386,306.43333333333334,1123,233 +18387,306.45,1110,232 +18388,306.46666666666664,1099,230 +18389,306.48333333333335,1090,229 +18390,306.5,1083,229 +18391,306.51666666666665,1078,228 +18392,306.5333333333333,1077,228 +18393,306.55,1077,228 +18394,306.56666666666666,1077,228 +18395,306.5833333333333,1081,228 +18396,306.6,1087,229 +18397,306.6166666666667,1095,230 +18398,306.6333333333333,1105,231 +18399,306.65,1118,232 +18400,306.6666666666667,1132,233 +18401,306.68333333333334,1148,235 +18402,306.7,1165,236 +18403,306.71666666666664,1185,238 +18404,306.73333333333335,1205,239 +18405,306.75,1228,241 +18406,306.76666666666665,1252,242 +18407,306.7833333333333,1276,243 +18408,306.8,1302,244 +18409,306.81666666666666,1328,245 +18410,306.8333333333333,1354,246 +18411,306.85,1382,246 +18412,306.8666666666667,1409,246 +18413,306.8833333333333,1437,246 +18414,306.9,1466,245 +18415,306.9166666666667,1494,244 +18416,306.93333333333334,1521,243 +18417,306.95,1548,242 +18418,306.96666666666664,1574,240 +18419,306.98333333333335,1600,238 +18420,307.0,1624,236 +18421,307.01666666666665,1647,234 +18422,307.0333333333333,1669,232 +18423,307.05,1690,230 +18424,307.06666666666666,1709,228 +18425,307.0833333333333,1726,226 +18426,307.1,1742,224 +18427,307.1166666666667,1755,222 +18428,307.1333333333333,1767,221 +18429,307.15,1777,219 +18430,307.1666666666667,1785,219 +18431,307.18333333333334,1790,218 +18432,307.2,1794,217 +18433,307.21666666666664,1794,217 +18434,307.23333333333335,1794,217 +18435,307.25,1792,218 +18436,307.26666666666665,1787,218 +18437,307.2833333333333,1780,219 +18438,307.3,1771,220 +18439,307.31666666666666,1760,222 +18440,307.3333333333333,1747,224 +18441,307.35,1732,226 +18442,307.3666666666667,1715,228 +18443,307.3833333333333,1697,230 +18444,307.4,1677,232 +18445,307.4166666666667,1656,235 +18446,307.43333333333334,1633,237 +18447,307.45,1609,239 +18448,307.46666666666664,1584,241 +18449,307.48333333333335,1558,242 +18450,307.5,1532,244 +18451,307.51666666666665,1504,245 +18452,307.5333333333333,1477,246 +18453,307.55,1448,247 +18454,307.56666666666666,1420,247 +18455,307.5833333333333,1392,247 +18456,307.6,1365,247 +18457,307.6166666666667,1338,247 +18458,307.6333333333333,1312,246 +18459,307.65,1286,245 +18460,307.6666666666667,1261,244 +18461,307.68333333333334,1237,243 +18462,307.7,1214,241 +18463,307.71666666666664,1192,240 +18464,307.73333333333335,1173,238 +18465,307.75,1154,237 +18466,307.76666666666665,1138,235 +18467,307.7833333333333,1123,234 +18468,307.8,1110,232 +18469,307.81666666666666,1099,231 +18470,307.8333333333333,1090,230 +18471,307.85,1084,229 +18472,307.8666666666667,1079,229 +18473,307.8833333333333,1078,228 +18474,307.9,1078,228 +18475,307.9166666666667,1078,228 +18476,307.93333333333334,1081,229 +18477,307.95,1088,229 +18478,307.96666666666664,1096,230 +18479,307.98333333333335,1106,231 +18480,308.0,1118,232 +18481,308.01666666666665,1132,234 +18482,308.0333333333333,1148,235 +18483,308.05,1166,237 +18484,308.06666666666666,1185,238 +18485,308.0833333333333,1206,240 +18486,308.1,1228,241 +18487,308.1166666666667,1252,242 +18488,308.1333333333333,1276,244 +18489,308.15,1302,245 +18490,308.1666666666667,1328,246 +18491,308.18333333333334,1355,246 +18492,308.2,1382,246 +18493,308.21666666666664,1410,246 +18494,308.23333333333335,1438,245 +18495,308.25,1466,245 +18496,308.26666666666665,1494,244 +18497,308.2833333333333,1522,243 +18498,308.3,1549,241 +18499,308.31666666666666,1575,240 +18500,308.3333333333333,1600,238 +18501,308.35,1624,236 +18502,308.3666666666667,1647,234 +18503,308.3833333333333,1669,232 +18504,308.4,1690,230 +18505,308.4166666666667,1708,228 +18506,308.43333333333334,1726,226 +18507,308.45,1741,224 +18508,308.46666666666664,1755,222 +18509,308.48333333333335,1767,221 +18510,308.5,1776,219 +18511,308.51666666666665,1784,218 +18512,308.5333333333333,1790,218 +18513,308.55,1793,217 +18514,308.56666666666666,1793,217 +18515,308.5833333333333,1793,217 +18516,308.6,1791,218 +18517,308.6166666666667,1786,218 +18518,308.6333333333333,1779,219 +18519,308.65,1770,221 +18520,308.6666666666667,1759,223 +18521,308.68333333333334,1746,224 +18522,308.7,1731,226 +18523,308.71666666666664,1715,229 +18524,308.73333333333335,1696,230 +18525,308.75,1676,233 +18526,308.76666666666665,1655,235 +18527,308.7833333333333,1632,237 +18528,308.8,1608,239 +18529,308.81666666666666,1584,240 +18530,308.8333333333333,1558,242 +18531,308.85,1531,243 +18532,308.8666666666667,1504,245 +18533,308.8833333333333,1477,246 +18534,308.9,1448,246 +18535,308.9166666666667,1420,247 +18536,308.93333333333334,1393,247 +18537,308.95,1365,247 +18538,308.96666666666664,1339,247 +18539,308.98333333333335,1312,246 +18540,309.0,1286,245 +18541,309.01666666666665,1262,244 +18542,309.0333333333333,1238,242 +18543,309.05,1215,241 +18544,309.06666666666666,1193,239 +18545,309.0833333333333,1174,238 +18546,309.1,1155,236 +18547,309.1166666666667,1139,235 +18548,309.1333333333333,1124,233 +18549,309.15,1111,232 +18550,309.1666666666667,1101,231 +18551,309.18333333333334,1092,230 +18552,309.2,1085,229 +18553,309.21666666666664,1080,228 +18554,309.23333333333335,1079,228 +18555,309.25,1079,228 +18556,309.26666666666665,1079,228 +18557,309.2833333333333,1083,228 +18558,309.3,1089,229 +18559,309.31666666666666,1097,230 +18560,309.3333333333333,1107,231 +18561,309.35,1120,232 +18562,309.3666666666667,1134,233 +18563,309.3833333333333,1150,235 +18564,309.4,1167,236 +18565,309.4166666666667,1187,237 +18566,309.43333333333334,1207,239 +18567,309.45,1230,240 +18568,309.46666666666664,1253,242 +18569,309.48333333333335,1278,243 +18570,309.5,1304,244 +18571,309.51666666666665,1331,245 +18572,309.5333333333333,1356,245 +18573,309.55,1383,245 +18574,309.56666666666666,1411,245 +18575,309.5833333333333,1439,245 +18576,309.6,1467,244 +18577,309.6166666666667,1495,243 +18578,309.6333333333333,1522,242 +18579,309.65,1549,241 +18580,309.6666666666667,1575,240 +18581,309.68333333333334,1600,238 +18582,309.7,1624,236 +18583,309.71666666666664,1647,234 +18584,309.73333333333335,1669,232 +18585,309.75,1689,230 +18586,309.76666666666665,1708,228 +18587,309.7833333333333,1725,226 +18588,309.8,1741,224 +18589,309.81666666666666,1754,223 +18590,309.8333333333333,1766,221 +18591,309.85,1776,220 +18592,309.8666666666667,1783,219 +18593,309.8833333333333,1789,218 +18594,309.9,1792,218 +18595,309.9166666666667,1792,218 +18596,309.93333333333334,1792,218 +18597,309.95,1790,218 +18598,309.96666666666664,1785,219 +18599,309.98333333333335,1778,220 +18600,310.0,1769,221 +18601,310.01666666666665,1758,222 +18602,310.0333333333333,1745,224 +18603,310.05,1730,226 +18604,310.06666666666666,1713,228 +18605,310.0833333333333,1695,230 +18606,310.1,1675,232 +18607,310.1166666666667,1654,235 +18608,310.1333333333333,1631,237 +18609,310.15,1608,238 +18610,310.1666666666667,1583,240 +18611,310.18333333333334,1557,242 +18612,310.2,1531,243 +18613,310.21666666666664,1504,245 +18614,310.23333333333335,1477,246 +18615,310.25,1448,247 +18616,310.26666666666665,1420,247 +18617,310.2833333333333,1393,247 +18618,310.3,1365,247 +18619,310.31666666666666,1339,246 +18620,310.3333333333333,1313,246 +18621,310.35,1287,245 +18622,310.3666666666667,1262,243 +18623,310.3833333333333,1238,242 +18624,310.4,1215,241 +18625,310.4166666666667,1194,239 +18626,310.43333333333334,1174,238 +18627,310.45,1157,236 +18628,310.46666666666664,1140,235 +18629,310.48333333333335,1126,233 +18630,310.5,1113,232 +18631,310.51666666666665,1102,231 +18632,310.5333333333333,1093,230 +18633,310.55,1086,229 +18634,310.56666666666666,1082,229 +18635,310.5833333333333,1080,228 +18636,310.6,1080,228 +18637,310.6166666666667,1080,228 +18638,310.6333333333333,1085,228 +18639,310.65,1091,229 +18640,310.6666666666667,1099,230 +18641,310.68333333333334,1109,231 +18642,310.7,1121,232 +18643,310.71666666666664,1136,233 +18644,310.73333333333335,1151,235 +18645,310.75,1169,237 +18646,310.76666666666665,1188,238 +18647,310.7833333333333,1209,239 +18648,310.8,1231,241 +18649,310.81666666666666,1255,242 +18650,310.8333333333333,1279,243 +18651,310.85,1304,244 +18652,310.8666666666667,1331,245 +18653,310.8833333333333,1357,246 +18654,310.9,1384,246 +18655,310.9166666666667,1412,246 +18656,310.93333333333334,1440,245 +18657,310.95,1467,244 +18658,310.96666666666664,1495,244 +18659,310.98333333333335,1523,242 +18660,311.0,1549,241 +18661,311.01666666666665,1575,239 +18662,311.0333333333333,1600,238 +18663,311.05,1624,236 +18664,311.06666666666666,1647,234 +18665,311.0833333333333,1669,232 +18666,311.1,1689,230 +18667,311.1166666666667,1708,228 +18668,311.1333333333333,1725,226 +18669,311.15,1740,224 +18670,311.1666666666667,1753,223 +18671,311.18333333333334,1765,221 +18672,311.2,1775,220 +18673,311.21666666666664,1782,219 +18674,311.23333333333335,1788,218 +18675,311.25,1791,218 +18676,311.26666666666665,1791,218 +18677,311.2833333333333,1791,218 +18678,311.3,1789,218 +18679,311.31666666666666,1784,219 +18680,311.3333333333333,1777,220 +18681,311.35,1768,221 +18682,311.3666666666667,1757,223 +18683,311.3833333333333,1744,225 +18684,311.4,1729,227 +18685,311.4166666666667,1712,228 +18686,311.43333333333334,1694,230 +18687,311.45,1674,233 +18688,311.46666666666664,1653,234 +18689,311.48333333333335,1630,237 +18690,311.5,1607,239 +18691,311.51666666666665,1582,240 +18692,311.5333333333333,1556,242 +18693,311.55,1530,244 +18694,311.56666666666666,1503,245 +18695,311.5833333333333,1476,246 +18696,311.6,1447,246 +18697,311.6166666666667,1419,247 +18698,311.6333333333333,1392,247 +18699,311.65,1365,247 +18700,311.6666666666667,1339,246 +18701,311.68333333333334,1313,246 +18702,311.7,1287,245 +18703,311.71666666666664,1262,243 +18704,311.73333333333335,1239,242 +18705,311.75,1216,241 +18706,311.76666666666665,1194,239 +18707,311.7833333333333,1175,238 +18708,311.8,1157,236 +18709,311.81666666666666,1141,235 +18710,311.8333333333333,1126,233 +18711,311.85,1113,232 +18712,311.8666666666667,1103,231 +18713,311.8833333333333,1094,230 +18714,311.9,1087,229 +18715,311.9166666666667,1082,229 +18716,311.93333333333334,1081,228 +18717,311.95,1081,228 +18718,311.96666666666664,1081,228 +18719,311.98333333333335,1085,228 +18720,312.0,1092,229 +18721,312.01666666666665,1100,230 +18722,312.0333333333333,1110,231 +18723,312.05,1122,232 +18724,312.06666666666666,1136,234 +18725,312.0833333333333,1152,235 +18726,312.1,1170,236 +18727,312.1166666666667,1189,238 +18728,312.1333333333333,1210,239 +18729,312.15,1232,241 +18730,312.1666666666667,1256,243 +18731,312.18333333333334,1280,244 +18732,312.2,1305,244 +18733,312.21666666666664,1332,245 +18734,312.23333333333335,1358,245 +18735,312.25,1385,245 +18736,312.26666666666665,1412,245 +18737,312.2833333333333,1440,245 +18738,312.3,1468,245 +18739,312.31666666666666,1496,244 +18740,312.3333333333333,1523,242 +18741,312.35,1549,242 +18742,312.3666666666667,1575,240 +18743,312.3833333333333,1600,238 +18744,312.4,1624,237 +18745,312.4166666666667,1647,235 +18746,312.43333333333334,1669,232 +18747,312.45,1689,230 +18748,312.46666666666664,1707,228 +18749,312.48333333333335,1724,226 +18750,312.5,1739,224 +18751,312.51666666666665,1753,223 +18752,312.5333333333333,1764,221 +18753,312.55,1774,220 +18754,312.56666666666666,1781,219 +18755,312.5833333333333,1787,218 +18756,312.6,1790,218 +18757,312.6166666666667,1790,218 +18758,312.6333333333333,1790,218 +18759,312.65,1788,218 +18760,312.6666666666667,1783,219 +18761,312.68333333333334,1776,220 +18762,312.7,1767,221 +18763,312.71666666666664,1756,223 +18764,312.73333333333335,1743,225 +18765,312.75,1728,227 +18766,312.76666666666665,1711,228 +18767,312.7833333333333,1693,230 +18768,312.8,1673,232 +18769,312.81666666666666,1652,234 +18770,312.8333333333333,1630,236 +18771,312.85,1607,239 +18772,312.8666666666667,1582,241 +18773,312.8833333333333,1556,242 +18774,312.9,1530,243 +18775,312.9166666666667,1503,245 +18776,312.93333333333334,1476,246 +18777,312.95,1447,247 +18778,312.96666666666664,1419,247 +18779,312.98333333333335,1392,247 +18780,313.0,1365,247 +18781,313.01666666666665,1338,247 +18782,313.0333333333333,1313,246 +18783,313.05,1287,245 +18784,313.06666666666666,1263,244 +18785,313.0833333333333,1239,242 +18786,313.1,1216,241 +18787,313.1166666666667,1195,240 +18788,313.1333333333333,1176,238 +18789,313.15,1158,237 +18790,313.1666666666667,1141,235 +18791,313.18333333333334,1127,234 +18792,313.2,1114,232 +18793,313.21666666666664,1104,231 +18794,313.23333333333335,1095,230 +18795,313.25,1088,229 +18796,313.26666666666665,1084,229 +18797,313.2833333333333,1083,229 +18798,313.3,1083,229 +18799,313.31666666666666,1083,229 +18800,313.3333333333333,1087,229 +18801,313.35,1093,230 +18802,313.3666666666667,1101,230 +18803,313.3833333333333,1111,231 +18804,313.4,1124,232 +18805,313.4166666666667,1138,234 +18806,313.43333333333334,1154,235 +18807,313.45,1171,237 +18808,313.46666666666664,1190,238 +18809,313.48333333333335,1211,240 +18810,313.5,1233,241 +18811,313.51666666666665,1256,242 +18812,313.5333333333333,1281,244 +18813,313.55,1306,244 +18814,313.56666666666666,1333,245 +18815,313.5833333333333,1359,246 +18816,313.6,1385,246 +18817,313.6166666666667,1413,246 +18818,313.6333333333333,1440,245 +18819,313.65,1468,245 +18820,313.6666666666667,1496,244 +18821,313.68333333333334,1523,243 +18822,313.7,1550,241 +18823,313.71666666666664,1575,240 +18824,313.73333333333335,1600,238 +18825,313.75,1624,237 +18826,313.76666666666665,1647,234 +18827,313.7833333333333,1668,233 +18828,313.8,1688,231 +18829,313.81666666666666,1707,229 +18830,313.8333333333333,1723,226 +18831,313.85,1739,224 +18832,313.8666666666667,1752,223 +18833,313.8833333333333,1763,221 +18834,313.9,1773,220 +18835,313.9166666666667,1780,219 +18836,313.93333333333334,1786,219 +18837,313.95,1789,218 +18838,313.96666666666664,1789,218 +18839,313.98333333333335,1789,218 +18840,314.0,1787,219 +18841,314.01666666666665,1782,219 +18842,314.0333333333333,1775,220 +18843,314.05,1766,222 +18844,314.06666666666666,1754,223 +18845,314.0833333333333,1741,225 +18846,314.1,1727,227 +18847,314.1166666666667,1710,229 +18848,314.1333333333333,1692,231 +18849,314.15,1672,233 +18850,314.1666666666667,1651,235 +18851,314.18333333333334,1629,237 +18852,314.2,1605,239 +18853,314.21666666666664,1581,241 +18854,314.23333333333335,1555,242 +18855,314.25,1529,244 +18856,314.26666666666665,1502,245 +18857,314.2833333333333,1474,246 +18858,314.3,1447,247 +18859,314.31666666666666,1419,247 +18860,314.3333333333333,1391,247 +18861,314.35,1365,247 +18862,314.3666666666667,1339,247 +18863,314.3833333333333,1313,246 +18864,314.4,1287,245 +18865,314.4166666666667,1263,244 +18866,314.43333333333334,1239,243 +18867,314.45,1216,241 +18868,314.46666666666664,1195,240 +18869,314.48333333333335,1176,238 +18870,314.5,1158,237 +18871,314.51666666666665,1142,235 +18872,314.5333333333333,1128,234 +18873,314.55,1115,233 +18874,314.56666666666666,1104,232 +18875,314.5833333333333,1096,230 +18876,314.6,1089,229 +18877,314.6166666666667,1085,229 +18878,314.6333333333333,1084,229 +18879,314.65,1084,229 +18880,314.6666666666667,1084,229 +18881,314.68333333333334,1088,229 +18882,314.7,1094,230 +18883,314.71666666666664,1102,231 +18884,314.73333333333335,1113,232 +18885,314.75,1125,233 +18886,314.76666666666665,1139,234 +18887,314.7833333333333,1155,236 +18888,314.8,1172,237 +18889,314.81666666666666,1192,238 +18890,314.8333333333333,1212,240 +18891,314.85,1234,241 +18892,314.8666666666667,1258,242 +18893,314.8833333333333,1282,244 +18894,314.9,1307,245 +18895,314.9166666666667,1334,246 +18896,314.93333333333334,1359,246 +18897,314.95,1386,246 +18898,314.96666666666664,1414,246 +18899,314.98333333333335,1441,245 +18900,315.0,1468,245 +18901,315.01666666666665,1496,244 +18902,315.0333333333333,1523,243 +18903,315.05,1550,241 +18904,315.06666666666666,1575,240 +18905,315.0833333333333,1600,238 +18906,315.1,1624,236 +18907,315.1166666666667,1647,234 +18908,315.1333333333333,1668,232 +18909,315.15,1688,230 +18910,315.1666666666667,1706,228 +18911,315.18333333333334,1723,227 +18912,315.2,1738,225 +18913,315.21666666666664,1751,223 +18914,315.23333333333335,1763,222 +18915,315.25,1772,221 +18916,315.26666666666665,1780,219 +18917,315.2833333333333,1785,219 +18918,315.3,1788,218 +18919,315.31666666666666,1788,218 +18920,315.3333333333333,1788,218 +18921,315.35,1785,219 +18922,315.3666666666667,1780,220 +18923,315.3833333333333,1773,221 +18924,315.4,1764,222 +18925,315.4166666666667,1753,224 +18926,315.43333333333334,1740,225 +18927,315.45,1725,227 +18928,315.46666666666664,1709,229 +18929,315.48333333333335,1691,231 +18930,315.5,1672,233 +18931,315.51666666666665,1650,235 +18932,315.5333333333333,1628,237 +18933,315.55,1604,239 +18934,315.56666666666666,1580,241 +18935,315.5833333333333,1554,242 +18936,315.6,1528,244 +18937,315.6166666666667,1501,245 +18938,315.6333333333333,1474,246 +18939,315.65,1446,247 +18940,315.6666666666667,1418,247 +18941,315.68333333333334,1391,247 +18942,315.7,1365,247 +18943,315.71666666666664,1338,247 +18944,315.73333333333335,1312,246 +18945,315.75,1287,245 +18946,315.76666666666665,1263,244 +18947,315.7833333333333,1239,242 +18948,315.8,1217,241 +18949,315.81666666666666,1196,240 +18950,315.8333333333333,1177,238 +18951,315.85,1159,237 +18952,315.8666666666667,1143,235 +18953,315.8833333333333,1128,234 +18954,315.9,1116,233 +18955,315.9166666666667,1105,231 +18956,315.93333333333334,1097,230 +18957,315.95,1090,230 +18958,315.96666666666664,1086,229 +18959,315.98333333333335,1085,229 +18960,316.0,1085,229 +18961,316.01666666666665,1085,229 +18962,316.0333333333333,1089,229 +18963,316.05,1096,230 +18964,316.06666666666666,1104,231 +18965,316.0833333333333,1114,232 +18966,316.1,1126,233 +18967,316.1166666666667,1140,235 +18968,316.1333333333333,1156,236 +18969,316.15,1173,237 +18970,316.1666666666667,1193,239 +18971,316.18333333333334,1213,240 +18972,316.2,1235,241 +18973,316.21666666666664,1259,243 +18974,316.23333333333335,1283,244 +18975,316.25,1308,245 +18976,316.26666666666665,1334,246 +18977,316.2833333333333,1360,246 +18978,316.3,1387,246 +18979,316.31666666666666,1414,246 +18980,316.3333333333333,1441,246 +18981,316.35,1469,245 +18982,316.3666666666667,1497,244 +18983,316.3833333333333,1524,243 +18984,316.4,1550,242 +18985,316.4166666666667,1576,240 +18986,316.43333333333334,1600,239 +18987,316.45,1624,236 +18988,316.46666666666664,1646,234 +18989,316.48333333333335,1668,233 +18990,316.5,1687,231 +18991,316.51666666666665,1706,229 +18992,316.5333333333333,1723,227 +18993,316.55,1738,225 +18994,316.56666666666666,1751,224 +18995,316.5833333333333,1762,222 +18996,316.6,1771,221 +18997,316.6166666666667,1779,220 +18998,316.6333333333333,1784,219 +18999,316.65,1787,219 +19000,316.6666666666667,1787,219 +19001,316.68333333333334,1787,219 +19002,316.7,1785,220 +19003,316.71666666666664,1780,220 +19004,316.73333333333335,1772,221 +19005,316.75,1764,223 +19006,316.76666666666665,1753,224 +19007,316.7833333333333,1739,226 +19008,316.8,1724,228 +19009,316.81666666666666,1708,230 +19010,316.8333333333333,1690,232 +19011,316.85,1671,234 +19012,316.8666666666667,1649,236 +19013,316.8833333333333,1627,238 +19014,316.9,1604,240 +19015,316.9166666666667,1579,241 +19016,316.93333333333334,1554,243 +19017,316.95,1527,244 +19018,316.96666666666664,1501,245 +19019,316.98333333333335,1474,246 +19020,317.0,1446,247 +19021,317.01666666666665,1418,248 +19022,317.0333333333333,1391,248 +19023,317.05,1365,248 +19024,317.06666666666666,1339,247 +19025,317.0833333333333,1313,246 +19026,317.1,1287,246 +19027,317.1166666666667,1264,245 +19028,317.1333333333333,1240,243 +19029,317.15,1218,242 +19030,317.1666666666667,1197,240 +19031,317.18333333333334,1177,239 +19032,317.2,1159,237 +19033,317.21666666666664,1144,236 +19034,317.23333333333335,1129,234 +19035,317.25,1117,233 +19036,317.26666666666665,1106,232 +19037,317.2833333333333,1098,231 +19038,317.3,1091,230 +19039,317.31666666666666,1087,230 +19040,317.3333333333333,1087,229 +19041,317.35,1087,229 +19042,317.3666666666667,1087,229 +19043,317.3833333333333,1091,230 +19044,317.4,1097,230 +19045,317.4166666666667,1105,231 +19046,317.43333333333334,1115,232 +19047,317.45,1127,233 +19048,317.46666666666664,1141,235 +19049,317.48333333333335,1157,236 +19050,317.5,1175,237 +19051,317.51666666666665,1194,239 +19052,317.5333333333333,1215,240 +19053,317.55,1237,242 +19054,317.56666666666666,1260,243 +19055,317.5833333333333,1284,244 +19056,317.6,1309,245 +19057,317.6166666666667,1335,246 +19058,317.6333333333333,1361,247 +19059,317.65,1388,247 +19060,317.6666666666667,1415,247 +19061,317.68333333333334,1442,246 +19062,317.7,1470,245 +19063,317.71666666666664,1497,245 +19064,317.73333333333335,1524,244 +19065,317.75,1550,243 +19066,317.76666666666665,1576,241 +19067,317.7833333333333,1600,239 +19068,317.8,1624,237 +19069,317.81666666666666,1647,235 +19070,317.8333333333333,1668,233 +19071,317.85,1687,232 +19072,317.8666666666667,1706,230 +19073,317.8833333333333,1722,228 +19074,317.9,1737,226 +19075,317.9166666666667,1751,224 +19076,317.93333333333334,1762,223 +19077,317.95,1771,222 +19078,317.96666666666664,1778,221 +19079,317.98333333333335,1783,220 +19080,318.0,1787,220 +19081,318.01666666666665,1787,220 +19082,318.0333333333333,1787,220 +19083,318.05,1784,220 +19084,318.06666666666666,1779,221 +19085,318.0833333333333,1772,222 +19086,318.1,1763,223 +19087,318.1166666666667,1751,225 +19088,318.1333333333333,1738,227 +19089,318.15,1724,229 +19090,318.1666666666667,1707,231 +19091,318.18333333333334,1689,233 +19092,318.2,1670,234 +19093,318.21666666666664,1648,236 +19094,318.23333333333335,1626,239 +19095,318.25,1603,240 +19096,318.26666666666665,1578,242 +19097,318.2833333333333,1553,244 +19098,318.3,1527,245 +19099,318.31666666666666,1500,246 +19100,318.3333333333333,1473,246 +19101,318.35,1446,247 +19102,318.3666666666667,1418,248 +19103,318.3833333333333,1391,248 +19104,318.4,1364,248 +19105,318.4166666666667,1338,248 +19106,318.43333333333334,1313,247 +19107,318.45,1287,246 +19108,318.46666666666664,1263,245 +19109,318.48333333333335,1240,243 +19110,318.5,1218,241 +19111,318.51666666666665,1197,240 +19112,318.5333333333333,1178,238 +19113,318.55,1160,237 +19114,318.56666666666666,1144,235 +19115,318.5833333333333,1130,234 +19116,318.6,1118,233 +19117,318.6166666666667,1107,232 +19118,318.6333333333333,1099,231 +19119,318.65,1092,230 +19120,318.6666666666667,1088,230 +19121,318.68333333333334,1087,230 +19122,318.7,1087,230 +19123,318.71666666666664,1087,230 +19124,318.73333333333335,1092,230 +19125,318.75,1098,230 +19126,318.76666666666665,1106,231 +19127,318.7833333333333,1116,232 +19128,318.8,1129,234 +19129,318.81666666666666,1143,235 +19130,318.8333333333333,1159,236 +19131,318.85,1176,238 +19132,318.8666666666667,1195,239 +19133,318.8833333333333,1216,241 +19134,318.9,1238,242 +19135,318.9166666666667,1261,243 +19136,318.93333333333334,1285,245 +19137,318.95,1310,245 +19138,318.96666666666664,1336,246 +19139,318.98333333333335,1362,246 +19140,319.0,1388,246 +19141,319.01666666666665,1415,246 +19142,319.0333333333333,1443,246 +19143,319.05,1471,245 +19144,319.06666666666666,1498,244 +19145,319.0833333333333,1524,244 +19146,319.1,1550,242 +19147,319.1166666666667,1576,241 +19148,319.1333333333333,1600,239 +19149,319.15,1624,238 +19150,319.1666666666667,1646,236 +19151,319.18333333333334,1668,234 +19152,319.2,1687,232 +19153,319.21666666666664,1705,230 +19154,319.23333333333335,1722,228 +19155,319.25,1736,226 +19156,319.26666666666665,1750,225 +19157,319.2833333333333,1761,224 +19158,319.3,1770,222 +19159,319.31666666666666,1777,221 +19160,319.3333333333333,1782,221 +19161,319.35,1786,220 +19162,319.3666666666667,1786,220 +19163,319.3833333333333,1786,220 +19164,319.4,1783,221 +19165,319.4166666666667,1778,222 +19166,319.43333333333334,1771,222 +19167,319.45,1762,224 +19168,319.46666666666664,1751,225 +19169,319.48333333333335,1738,227 +19170,319.5,1723,229 +19171,319.51666666666665,1706,231 +19172,319.5333333333333,1689,233 +19173,319.55,1669,235 +19174,319.56666666666666,1648,237 +19175,319.5833333333333,1625,239 +19176,319.6,1602,240 +19177,319.6166666666667,1578,242 +19178,319.6333333333333,1552,243 +19179,319.65,1526,245 +19180,319.6666666666667,1500,246 +19181,319.68333333333334,1473,247 +19182,319.7,1446,248 +19183,319.71666666666664,1418,248 +19184,319.73333333333335,1391,248 +19185,319.75,1364,248 +19186,319.76666666666665,1339,247 +19187,319.7833333333333,1313,246 +19188,319.8,1287,246 +19189,319.81666666666666,1264,244 +19190,319.8333333333333,1240,243 +19191,319.85,1218,242 +19192,319.8666666666667,1197,241 +19193,319.8833333333333,1178,239 +19194,319.9,1161,237 +19195,319.9166666666667,1145,236 +19196,319.93333333333334,1131,235 +19197,319.95,1119,233 +19198,319.96666666666664,1108,232 +19199,319.98333333333335,1100,231 +19200,320.0,1094,231 +19201,320.01666666666665,1089,230 +19202,320.0333333333333,1089,230 +19203,320.05,1089,230 +19204,320.06666666666666,1089,230 +19205,320.0833333333333,1093,231 +19206,320.1,1099,231 +19207,320.1166666666667,1108,232 +19208,320.1333333333333,1118,233 +19209,320.15,1130,234 +19210,320.1666666666667,1144,235 +19211,320.18333333333334,1160,237 +19212,320.2,1177,238 +19213,320.21666666666664,1197,240 +19214,320.23333333333335,1217,241 +19215,320.25,1239,242 +19216,320.26666666666665,1262,244 +19217,320.2833333333333,1286,245 +19218,320.3,1311,246 +19219,320.31666666666666,1337,247 +19220,320.3333333333333,1363,247 +19221,320.35,1389,247 +19222,320.3666666666667,1416,247 +19223,320.3833333333333,1443,247 +19224,320.4,1471,246 +19225,320.4166666666667,1498,245 +19226,320.43333333333334,1525,244 +19227,320.45,1550,243 +19228,320.46666666666664,1576,241 +19229,320.48333333333335,1600,240 +19230,320.5,1624,238 +19231,320.51666666666665,1646,236 +19232,320.5333333333333,1667,234 +19233,320.55,1687,232 +19234,320.56666666666666,1705,230 +19235,320.5833333333333,1721,229 +19236,320.6,1736,227 +19237,320.6166666666667,1750,226 +19238,320.6333333333333,1761,224 +19239,320.65,1769,223 +19240,320.6666666666667,1777,222 +19241,320.68333333333334,1782,221 +19242,320.7,1785,221 +19243,320.71666666666664,1785,221 +19244,320.73333333333335,1785,221 +19245,320.75,1782,221 +19246,320.76666666666665,1777,222 +19247,320.7833333333333,1770,223 +19248,320.8,1760,224 +19249,320.81666666666666,1750,226 +19250,320.8333333333333,1736,227 +19251,320.85,1722,229 +19252,320.8666666666667,1706,231 +19253,320.8833333333333,1687,233 +19254,320.9,1668,235 +19255,320.9166666666667,1647,237 +19256,320.93333333333334,1625,239 +19257,320.95,1601,241 +19258,320.96666666666664,1577,243 +19259,320.98333333333335,1551,244 +19260,321.0,1526,245 +19261,321.01666666666665,1499,246 +19262,321.0333333333333,1472,247 +19263,321.05,1445,248 +19264,321.06666666666666,1417,248 +19265,321.0833333333333,1391,248 +19266,321.1,1364,248 +19267,321.1166666666667,1338,247 +19268,321.1333333333333,1313,247 +19269,321.15,1287,246 +19270,321.1666666666667,1264,245 +19271,321.18333333333334,1240,244 +19272,321.2,1219,242 +19273,321.21666666666664,1198,241 +19274,321.23333333333335,1179,239 +19275,321.25,1161,238 +19276,321.26666666666665,1145,236 +19277,321.2833333333333,1132,235 +19278,321.3,1120,234 +19279,321.31666666666666,1109,233 +19280,321.3333333333333,1101,232 +19281,321.35,1095,231 +19282,321.3666666666667,1090,230 +19283,321.3833333333333,1090,230 +19284,321.4,1090,230 +19285,321.4166666666667,1090,230 +19286,321.43333333333334,1095,231 +19287,321.45,1101,231 +19288,321.46666666666664,1109,232 +19289,321.48333333333335,1119,233 +19290,321.5,1131,234 +19291,321.51666666666665,1145,236 +19292,321.5333333333333,1161,237 +19293,321.55,1178,238 +19294,321.56666666666666,1198,240 +19295,321.5833333333333,1218,241 +19296,321.6,1240,243 +19297,321.6166666666667,1263,244 +19298,321.6333333333333,1287,245 +19299,321.65,1312,246 +19300,321.6666666666667,1338,247 +19301,321.68333333333334,1364,248 +19302,321.7,1390,248 +19303,321.71666666666664,1417,248 +19304,321.73333333333335,1444,247 +19305,321.75,1472,246 +19306,321.76666666666665,1498,245 +19307,321.7833333333333,1525,244 +19308,321.8,1551,243 +19309,321.81666666666666,1576,242 +19310,321.8333333333333,1601,240 +19311,321.85,1624,238 +19312,321.8666666666667,1646,236 +19313,321.8833333333333,1667,234 +19314,321.9,1687,233 +19315,321.9166666666667,1705,231 +19316,321.93333333333334,1721,229 +19317,321.95,1736,227 +19318,321.96666666666664,1749,226 +19319,321.98333333333335,1760,224 +19320,322.0,1769,223 +19321,322.01666666666665,1776,222 +19322,322.0333333333333,1781,222 +19323,322.05,1784,221 +19324,322.06666666666666,1784,221 +19325,322.0833333333333,1784,221 +19326,322.1,1781,222 +19327,322.1166666666667,1776,223 +19328,322.1333333333333,1769,224 +19329,322.15,1760,225 +19330,322.1666666666667,1748,226 +19331,322.18333333333334,1735,228 +19332,322.2,1721,230 +19333,322.21666666666664,1704,232 +19334,322.23333333333335,1686,233 +19335,322.25,1667,236 +19336,322.26666666666665,1646,238 +19337,322.2833333333333,1624,239 +19338,322.3,1600,241 +19339,322.31666666666666,1576,243 +19340,322.3333333333333,1551,244 +19341,322.35,1525,246 +19342,322.3666666666667,1499,247 +19343,322.3833333333333,1472,247 +19344,322.4,1444,248 +19345,322.4166666666667,1416,248 +19346,322.43333333333334,1390,248 +19347,322.45,1364,248 +19348,322.46666666666664,1338,248 +19349,322.48333333333335,1313,247 +19350,322.5,1288,246 +19351,322.51666666666665,1264,245 +19352,322.5333333333333,1241,244 +19353,322.55,1219,243 +19354,322.56666666666666,1198,241 +19355,322.5833333333333,1179,240 +19356,322.6,1162,238 +19357,322.6166666666667,1146,237 +19358,322.6333333333333,1132,235 +19359,322.65,1120,234 +19360,322.6666666666667,1110,233 +19361,322.68333333333334,1102,232 +19362,322.7,1095,231 +19363,322.71666666666664,1091,231 +19364,322.73333333333335,1091,231 +19365,322.75,1091,231 +19366,322.76666666666665,1091,231 +19367,322.7833333333333,1095,231 +19368,322.8,1102,232 +19369,322.81666666666666,1110,233 +19370,322.8333333333333,1120,234 +19371,322.85,1133,235 +19372,322.8666666666667,1147,236 +19373,322.8833333333333,1162,238 +19374,322.9,1179,238 +19375,322.9166666666667,1199,240 +19376,322.93333333333334,1219,242 +19377,322.95,1241,243 +19378,322.96666666666664,1264,244 +19379,322.98333333333335,1288,245 +19380,323.0,1313,247 +19381,323.01666666666665,1339,247 +19382,323.0333333333333,1365,248 +19383,323.05,1391,248 +19384,323.06666666666666,1417,248 +19385,323.0833333333333,1445,247 +19386,323.1,1472,246 +19387,323.1166666666667,1499,246 +19388,323.1333333333333,1525,245 +19389,323.15,1551,244 +19390,323.1666666666667,1576,242 +19391,323.18333333333334,1600,240 +19392,323.2,1623,238 +19393,323.21666666666664,1646,237 +19394,323.23333333333335,1667,235 +19395,323.25,1686,233 +19396,323.26666666666665,1704,231 +19397,323.2833333333333,1720,229 +19398,323.3,1735,227 +19399,323.31666666666666,1748,226 +19400,323.3333333333333,1759,224 +19401,323.35,1768,223 +19402,323.3666666666667,1775,222 +19403,323.3833333333333,1780,221 +19404,323.4,1783,221 +19405,323.4166666666667,1783,221 +19406,323.43333333333334,1783,221 +19407,323.45,1780,222 +19408,323.46666666666664,1775,223 +19409,323.48333333333335,1767,224 +19410,323.5,1758,225 +19411,323.51666666666665,1747,227 +19412,323.5333333333333,1734,228 +19413,323.55,1720,230 +19414,323.56666666666666,1703,232 +19415,323.5833333333333,1685,234 +19416,323.6,1665,236 +19417,323.6166666666667,1644,237 +19418,323.6333333333333,1622,239 +19419,323.65,1599,241 +19420,323.6666666666667,1575,243 +19421,323.68333333333334,1550,244 +19422,323.7,1524,245 +19423,323.71666666666664,1497,246 +19424,323.73333333333335,1471,247 +19425,323.75,1443,248 +19426,323.76666666666665,1416,248 +19427,323.7833333333333,1389,248 +19428,323.8,1364,248 +19429,323.81666666666666,1338,248 +19430,323.8333333333333,1312,248 +19431,323.85,1287,246 +19432,323.8666666666667,1264,245 +19433,323.8833333333333,1241,243 +19434,323.9,1219,242 +19435,323.9166666666667,1198,240 +19436,323.93333333333334,1179,239 +19437,323.95,1162,238 +19438,323.96666666666664,1147,236 +19439,323.98333333333335,1133,235 +19440,324.0,1120,234 +19441,324.01666666666665,1110,233 +19442,324.0333333333333,1102,232 +19443,324.05,1096,231 +19444,324.06666666666666,1092,231 +19445,324.0833333333333,1092,230 +19446,324.1,1092,230 +19447,324.1166666666667,1092,230 +19448,324.1333333333333,1096,231 +19449,324.15,1103,232 +19450,324.1666666666667,1111,233 +19451,324.18333333333334,1122,233 +19452,324.2,1134,235 +19453,324.21666666666664,1148,236 +19454,324.23333333333335,1164,237 +19455,324.25,1181,239 +19456,324.26666666666665,1200,240 +19457,324.2833333333333,1220,242 +19458,324.3,1242,243 +19459,324.31666666666666,1265,244 +19460,324.3333333333333,1289,245 +19461,324.35,1314,246 +19462,324.3666666666667,1340,247 +19463,324.3833333333333,1365,247 +19464,324.4,1391,247 +19465,324.4166666666667,1417,247 +19466,324.43333333333334,1445,246 +19467,324.45,1472,245 +19468,324.46666666666664,1499,245 +19469,324.48333333333335,1525,244 +19470,324.5,1551,243 +19471,324.51666666666665,1576,241 +19472,324.5333333333333,1601,240 +19473,324.55,1624,238 +19474,324.56666666666666,1645,236 +19475,324.5833333333333,1666,234 +19476,324.6,1686,233 +19477,324.6166666666667,1704,231 +19478,324.6333333333333,1720,229 +19479,324.65,1735,227 +19480,324.6666666666667,1747,226 +19481,324.68333333333334,1758,225 +19482,324.7,1767,223 +19483,324.71666666666664,1774,222 +19484,324.73333333333335,1779,222 +19485,324.75,1782,221 +19486,324.76666666666665,1782,221 +19487,324.7833333333333,1782,221 +19488,324.8,1778,222 +19489,324.81666666666666,1773,223 +19490,324.8333333333333,1766,223 +19491,324.85,1757,225 +19492,324.8666666666667,1746,226 +19493,324.8833333333333,1733,228 +19494,324.9,1718,230 +19495,324.9166666666667,1702,232 +19496,324.93333333333334,1684,234 +19497,324.95,1664,236 +19498,324.96666666666664,1643,237 +19499,324.98333333333335,1621,239 +19500,325.0,1598,241 +19501,325.01666666666665,1574,242 +19502,325.0333333333333,1549,244 +19503,325.05,1523,245 +19504,325.06666666666666,1496,246 +19505,325.0833333333333,1470,247 +19506,325.1,1442,248 +19507,325.1166666666667,1415,248 +19508,325.1333333333333,1389,248 +19509,325.15,1363,248 +19510,325.1666666666667,1337,248 +19511,325.18333333333334,1312,247 +19512,325.2,1287,246 +19513,325.21666666666664,1263,245 +19514,325.23333333333335,1240,244 +19515,325.25,1219,242 +19516,325.26666666666665,1199,241 +19517,325.2833333333333,1180,239 +19518,325.3,1163,238 +19519,325.31666666666666,1147,236 +19520,325.3333333333333,1133,235 +19521,325.35,1121,234 +19522,325.3666666666667,1111,233 +19523,325.3833333333333,1103,232 +19524,325.4,1097,231 +19525,325.4166666666667,1093,231 +19526,325.43333333333334,1093,231 +19527,325.45,1093,231 +19528,325.46666666666664,1093,231 +19529,325.48333333333335,1098,231 +19530,325.5,1104,232 +19531,325.51666666666665,1112,233 +19532,325.5333333333333,1122,234 +19533,325.55,1135,235 +19534,325.56666666666666,1149,236 +19535,325.5833333333333,1164,237 +19536,325.6,1182,239 +19537,325.6166666666667,1201,240 +19538,325.6333333333333,1221,241 +19539,325.65,1243,243 +19540,325.6666666666667,1266,244 +19541,325.68333333333334,1290,245 +19542,325.7,1315,246 +19543,325.71666666666664,1341,247 +19544,325.73333333333335,1366,247 +19545,325.75,1392,247 +19546,325.76666666666665,1418,247 +19547,325.7833333333333,1446,247 +19548,325.8,1473,246 +19549,325.81666666666666,1499,245 +19550,325.8333333333333,1526,244 +19551,325.85,1551,243 +19552,325.8666666666667,1576,242 +19553,325.8833333333333,1600,240 +19554,325.9,1624,238 +19555,325.9166666666667,1646,236 +19556,325.93333333333334,1666,234 +19557,325.95,1686,233 +19558,325.96666666666664,1703,231 +19559,325.98333333333335,1720,229 +19560,326.0,1734,227 +19561,326.01666666666665,1747,226 +19562,326.0333333333333,1758,224 +19563,326.05,1766,223 +19564,326.06666666666666,1773,222 +19565,326.0833333333333,1778,221 +19566,326.1,1781,221 +19567,326.1166666666667,1781,221 +19568,326.1333333333333,1781,221 +19569,326.15,1778,222 +19570,326.1666666666667,1772,222 +19571,326.18333333333334,1765,223 +19572,326.2,1756,225 +19573,326.21666666666664,1745,226 +19574,326.23333333333335,1732,228 +19575,326.25,1717,229 +19576,326.26666666666665,1701,231 +19577,326.2833333333333,1683,233 +19578,326.3,1663,235 +19579,326.31666666666666,1642,237 +19580,326.3333333333333,1620,239 +19581,326.35,1597,241 +19582,326.3666666666667,1573,242 +19583,326.3833333333333,1548,243 +19584,326.4,1522,245 +19585,326.4166666666667,1496,245 +19586,326.43333333333334,1469,246 +19587,326.45,1442,247 +19588,326.46666666666664,1415,248 +19589,326.48333333333335,1388,248 +19590,326.5,1362,248 +19591,326.51666666666665,1337,247 +19592,326.5333333333333,1311,247 +19593,326.55,1287,246 +19594,326.56666666666666,1264,245 +19595,326.5833333333333,1240,243 +19596,326.6,1219,242 +19597,326.6166666666667,1199,241 +19598,326.6333333333333,1180,239 +19599,326.65,1163,238 +19600,326.6666666666667,1147,236 +19601,326.68333333333334,1134,235 +19602,326.7,1122,234 +19603,326.71666666666664,1112,233 +19604,326.73333333333335,1104,231 +19605,326.75,1098,231 +19606,326.76666666666665,1094,230 +19607,326.7833333333333,1094,230 +19608,326.8,1094,230 +19609,326.81666666666666,1094,230 +19610,326.8333333333333,1099,231 +19611,326.85,1105,231 +19612,326.8666666666667,1113,232 +19613,326.8833333333333,1124,233 +19614,326.9,1136,235 +19615,326.9166666666667,1150,235 +19616,326.93333333333334,1166,237 +19617,326.95,1183,238 +19618,326.96666666666664,1202,240 +19619,326.98333333333335,1222,241 +19620,327.0,1244,242 +19621,327.01666666666665,1267,244 +19622,327.0333333333333,1291,245 +19623,327.05,1315,246 +19624,327.06666666666666,1341,246 +19625,327.0833333333333,1367,247 +19626,327.1,1393,247 +19627,327.1166666666667,1419,247 +19628,327.1333333333333,1446,246 +19629,327.15,1473,246 +19630,327.1666666666667,1500,245 +19631,327.18333333333334,1526,244 +19632,327.2,1552,243 +19633,327.21666666666664,1576,241 +19634,327.23333333333335,1601,240 +19635,327.25,1623,237 +19636,327.26666666666665,1645,236 +19637,327.2833333333333,1666,234 +19638,327.3,1685,232 +19639,327.31666666666666,1703,230 +19640,327.3333333333333,1719,228 +19641,327.35,1734,227 +19642,327.3666666666667,1746,225 +19643,327.3833333333333,1757,224 +19644,327.4,1766,223 +19645,327.4166666666667,1773,222 +19646,327.43333333333334,1777,221 +19647,327.45,1780,221 +19648,327.46666666666664,1780,221 +19649,327.48333333333335,1780,221 +19650,327.5,1776,221 +19651,327.51666666666665,1771,222 +19652,327.5333333333333,1764,223 +19653,327.55,1754,224 +19654,327.56666666666666,1744,226 +19655,327.5833333333333,1730,227 +19656,327.6,1716,229 +19657,327.6166666666667,1700,231 +19658,327.6333333333333,1682,233 +19659,327.65,1662,235 +19660,327.6666666666667,1641,237 +19661,327.68333333333334,1619,238 +19662,327.7,1596,240 +19663,327.71666666666664,1572,242 +19664,327.73333333333335,1547,243 +19665,327.75,1521,244 +19666,327.76666666666665,1495,246 +19667,327.7833333333333,1468,246 +19668,327.8,1442,247 +19669,327.81666666666666,1415,247 +19670,327.8333333333333,1388,247 +19671,327.85,1362,247 +19672,327.8666666666667,1336,247 +19673,327.8833333333333,1312,247 +19674,327.9,1287,245 +19675,327.9166666666667,1264,244 +19676,327.93333333333334,1240,243 +19677,327.95,1219,241 +19678,327.96666666666664,1199,240 +19679,327.98333333333335,1180,238 +19680,328.0,1163,237 +19681,328.01666666666665,1148,236 +19682,328.0333333333333,1134,234 +19683,328.05,1122,233 +19684,328.06666666666666,1112,232 +19685,328.0833333333333,1104,231 +19686,328.1,1098,230 +19687,328.1166666666667,1095,230 +19688,328.1333333333333,1095,230 +19689,328.15,1095,230 +19690,328.1666666666667,1095,230 +19691,328.18333333333334,1099,230 +19692,328.2,1106,231 +19693,328.21666666666664,1114,232 +19694,328.23333333333335,1125,233 +19695,328.25,1137,234 +19696,328.26666666666665,1151,235 +19697,328.2833333333333,1167,236 +19698,328.3,1184,238 +19699,328.31666666666666,1203,239 +19700,328.3333333333333,1223,241 +19701,328.35,1245,242 +19702,328.3666666666667,1268,244 +19703,328.3833333333333,1292,245 +19704,328.4,1317,245 +19705,328.4166666666667,1342,246 +19706,328.43333333333334,1367,246 +19707,328.45,1394,246 +19708,328.46666666666664,1420,246 +19709,328.48333333333335,1447,246 +19710,328.5,1474,245 +19711,328.51666666666665,1500,244 +19712,328.5333333333333,1526,243 +19713,328.55,1552,242 +19714,328.56666666666666,1577,241 +19715,328.5833333333333,1601,239 +19716,328.6,1623,237 +19717,328.6166666666667,1645,235 +19718,328.6333333333333,1666,234 +19719,328.65,1685,232 +19720,328.6666666666667,1702,230 +19721,328.68333333333334,1719,229 +19722,328.7,1733,227 +19723,328.71666666666664,1745,225 +19724,328.73333333333335,1756,224 +19725,328.75,1765,223 +19726,328.76666666666665,1772,222 +19727,328.7833333333333,1776,221 +19728,328.8,1779,221 +19729,328.81666666666666,1779,221 +19730,328.8333333333333,1779,221 +19731,328.85,1776,221 +19732,328.8666666666667,1770,222 +19733,328.8833333333333,1763,223 +19734,328.9,1754,224 +19735,328.9166666666667,1742,226 +19736,328.93333333333334,1730,227 +19737,328.95,1715,229 +19738,328.96666666666664,1698,231 +19739,328.98333333333335,1680,232 +19740,329.0,1661,234 +19741,329.01666666666665,1640,236 +19742,329.0333333333333,1618,238 +19743,329.05,1595,240 +19744,329.06666666666666,1571,242 +19745,329.0833333333333,1546,243 +19746,329.1,1520,244 +19747,329.1166666666667,1494,245 +19748,329.1333333333333,1468,246 +19749,329.15,1441,247 +19750,329.1666666666667,1414,247 +19751,329.18333333333334,1388,247 +19752,329.2,1362,247 +19753,329.21666666666664,1336,246 +19754,329.23333333333335,1311,245 +19755,329.25,1287,245 +19756,329.26666666666665,1263,244 +19757,329.2833333333333,1241,242 +19758,329.3,1219,241 +19759,329.31666666666666,1199,240 +19760,329.3333333333333,1181,239 +19761,329.35,1164,237 +19762,329.3666666666667,1148,236 +19763,329.3833333333333,1135,235 +19764,329.4,1123,233 +19765,329.4166666666667,1113,232 +19766,329.43333333333334,1105,231 +19767,329.45,1099,231 +19768,329.46666666666664,1095,230 +19769,329.48333333333335,1095,230 +19770,329.5,1095,230 +19771,329.51666666666665,1096,230 +19772,329.5333333333333,1100,231 +19773,329.55,1107,231 +19774,329.56666666666666,1115,232 +19775,329.5833333333333,1126,233 +19776,329.6,1138,234 +19777,329.6166666666667,1152,235 +19778,329.6333333333333,1168,237 +19779,329.65,1185,238 +19780,329.6666666666667,1204,240 +19781,329.68333333333334,1224,241 +19782,329.7,1246,243 +19783,329.71666666666664,1269,243 +19784,329.73333333333335,1293,244 +19785,329.75,1318,245 +19786,329.76666666666665,1342,246 +19787,329.7833333333333,1368,247 +19788,329.8,1394,247 +19789,329.81666666666666,1420,247 +19790,329.8333333333333,1447,246 +19791,329.85,1474,245 +19792,329.8666666666667,1501,244 +19793,329.8833333333333,1527,243 +19794,329.9,1552,242 +19795,329.9166666666667,1577,241 +19796,329.93333333333334,1601,239 +19797,329.95,1623,237 +19798,329.96666666666664,1645,235 +19799,329.98333333333335,1666,233 +19800,330.0,1685,232 +19801,330.01666666666665,1702,229 +19802,330.0333333333333,1718,228 +19803,330.05,1732,226 +19804,330.06666666666666,1745,224 +19805,330.0833333333333,1755,223 +19806,330.1,1764,222 +19807,330.1166666666667,1771,221 +19808,330.1333333333333,1775,220 +19809,330.15,1777,220 +19810,330.1666666666667,1777,220 +19811,330.18333333333334,1777,220 +19812,330.2,1774,221 +19813,330.21666666666664,1769,221 +19814,330.23333333333335,1762,223 +19815,330.25,1752,223 +19816,330.26666666666665,1741,225 +19817,330.2833333333333,1728,227 +19818,330.3,1713,228 +19819,330.31666666666666,1697,230 +19820,330.3333333333333,1679,232 +19821,330.35,1660,234 +19822,330.3666666666667,1639,236 +19823,330.3833333333333,1617,238 +19824,330.4,1594,240 +19825,330.4166666666667,1570,241 +19826,330.43333333333334,1545,243 +19827,330.45,1520,244 +19828,330.46666666666664,1493,245 +19829,330.48333333333335,1466,246 +19830,330.5,1440,246 +19831,330.51666666666665,1414,247 +19832,330.5333333333333,1387,247 +19833,330.55,1361,247 +19834,330.56666666666666,1336,246 +19835,330.5833333333333,1311,246 +19836,330.6,1287,245 +19837,330.6166666666667,1263,244 +19838,330.6333333333333,1241,242 +19839,330.65,1219,241 +19840,330.6666666666667,1199,239 +19841,330.68333333333334,1181,238 +19842,330.7,1164,237 +19843,330.71666666666664,1149,235 +19844,330.73333333333335,1135,234 +19845,330.75,1124,233 +19846,330.76666666666665,1114,232 +19847,330.7833333333333,1106,231 +19848,330.8,1100,230 +19849,330.81666666666666,1096,230 +19850,330.8333333333333,1096,230 +19851,330.85,1096,230 +19852,330.8666666666667,1097,230 +19853,330.8833333333333,1101,230 +19854,330.9,1108,231 +19855,330.9166666666667,1116,232 +19856,330.93333333333334,1126,233 +19857,330.95,1139,234 +19858,330.96666666666664,1153,235 +19859,330.98333333333335,1168,237 +19860,331.0,1186,238 +19861,331.01666666666665,1205,240 +19862,331.0333333333333,1225,241 +19863,331.05,1247,243 +19864,331.06666666666666,1270,243 +19865,331.0833333333333,1293,244 +19866,331.1,1318,245 +19867,331.1166666666667,1343,246 +19868,331.1333333333333,1368,247 +19869,331.15,1395,247 +19870,331.1666666666667,1421,247 +19871,331.18333333333334,1448,246 +19872,331.2,1475,245 +19873,331.21666666666664,1501,244 +19874,331.23333333333335,1527,243 +19875,331.25,1552,242 +19876,331.26666666666665,1577,240 +19877,331.2833333333333,1600,239 +19878,331.3,1623,237 +19879,331.31666666666666,1645,235 +19880,331.3333333333333,1665,233 +19881,331.35,1684,231 +19882,331.3666666666667,1702,229 +19883,331.3833333333333,1717,227 +19884,331.4,1732,226 +19885,331.4166666666667,1744,224 +19886,331.43333333333334,1754,223 +19887,331.45,1763,222 +19888,331.46666666666664,1770,221 +19889,331.48333333333335,1774,220 +19890,331.5,1776,220 +19891,331.51666666666665,1776,220 +19892,331.5333333333333,1776,220 +19893,331.55,1773,220 +19894,331.56666666666666,1768,221 +19895,331.5833333333333,1760,222 +19896,331.6,1751,223 +19897,331.6166666666667,1740,225 +19898,331.6333333333333,1727,226 +19899,331.65,1712,228 +19900,331.6666666666667,1696,230 +19901,331.68333333333334,1678,232 +19902,331.7,1658,234 +19903,331.71666666666664,1638,236 +19904,331.73333333333335,1616,237 +19905,331.75,1593,239 +19906,331.76666666666665,1569,241 +19907,331.7833333333333,1544,242 +19908,331.8,1519,244 +19909,331.81666666666666,1493,245 +19910,331.8333333333333,1466,245 +19911,331.85,1439,246 +19912,331.8666666666667,1413,247 +19913,331.8833333333333,1387,247 +19914,331.9,1360,247 +19915,331.9166666666667,1335,246 +19916,331.93333333333334,1310,246 +19917,331.95,1286,244 +19918,331.96666666666664,1263,243 +19919,331.98333333333335,1240,242 +19920,332.0,1219,240 +19921,332.01666666666665,1199,239 +19922,332.0333333333333,1181,238 +19923,332.05,1164,236 +19924,332.06666666666666,1149,235 +19925,332.0833333333333,1135,234 +19926,332.1,1124,232 +19927,332.1166666666667,1114,232 +19928,332.1333333333333,1106,231 +19929,332.15,1101,231 +19930,332.1666666666667,1097,230 +19931,332.18333333333334,1097,230 +19932,332.2,1097,230 +19933,332.21666666666664,1098,230 +19934,332.23333333333335,1102,231 +19935,332.25,1109,231 +19936,332.26666666666665,1117,232 +19937,332.2833333333333,1128,234 +19938,332.3,1140,234 +19939,332.31666666666666,1154,236 +19940,332.3333333333333,1169,237 +19941,332.35,1187,238 +19942,332.3666666666667,1206,240 +19943,332.3833333333333,1226,241 +19944,332.4,1248,242 +19945,332.4166666666667,1271,244 +19946,332.43333333333334,1294,244 +19947,332.45,1319,245 +19948,332.46666666666664,1344,247 +19949,332.48333333333335,1369,247 +19950,332.5,1395,247 +19951,332.51666666666665,1422,247 +19952,332.5333333333333,1448,246 +19953,332.55,1475,245 +19954,332.56666666666666,1501,244 +19955,332.5833333333333,1527,243 +19956,332.6,1552,242 +19957,332.6166666666667,1577,240 +19958,332.6333333333333,1600,238 +19959,332.65,1623,237 +19960,332.6666666666667,1644,236 +19961,332.68333333333334,1665,233 +19962,332.7,1683,231 +19963,332.71666666666664,1701,230 +19964,332.73333333333335,1717,228 +19965,332.75,1731,226 +19966,332.76666666666665,1743,224 +19967,332.7833333333333,1753,223 +19968,332.8,1762,222 +19969,332.81666666666666,1769,221 +19970,332.8333333333333,1773,220 +19971,332.85,1775,220 +19972,332.8666666666667,1775,220 +19973,332.8833333333333,1775,220 +19974,332.9,1772,221 +19975,332.9166666666667,1767,222 +19976,332.93333333333334,1759,222 +19977,332.95,1750,224 +19978,332.96666666666664,1738,225 +19979,332.98333333333335,1725,227 +19980,333.0,1711,229 +19981,333.01666666666665,1694,231 +19982,333.0333333333333,1677,232 +19983,333.05,1657,234 +19984,333.06666666666666,1637,236 +19985,333.0833333333333,1615,238 +19986,333.1,1592,239 +19987,333.1166666666667,1568,241 +19988,333.1333333333333,1543,242 +19989,333.15,1518,244 +19990,333.1666666666667,1492,245 +19991,333.18333333333334,1465,245 +19992,333.2,1439,246 +19993,333.21666666666664,1412,247 +19994,333.23333333333335,1386,247 +19995,333.25,1360,247 +19996,333.26666666666665,1335,246 +19997,333.2833333333333,1310,245 +19998,333.3,1286,245 +19999,333.31666666666666,1263,243 +20000,333.3333333333333,1241,242 +20001,333.35,1219,240 +20002,333.3666666666667,1200,240 +20003,333.3833333333333,1181,238 +20004,333.4,1165,237 +20005,333.4166666666667,1150,235 +20006,333.43333333333334,1136,235 +20007,333.45,1125,234 +20008,333.46666666666664,1115,232 +20009,333.48333333333335,1107,231 +20010,333.5,1101,231 +20011,333.51666666666665,1098,230 +20012,333.5333333333333,1098,230 +20013,333.55,1098,230 +20014,333.56666666666666,1099,230 +20015,333.5833333333333,1104,231 +20016,333.6,1110,231 +20017,333.6166666666667,1118,232 +20018,333.6333333333333,1129,233 +20019,333.65,1141,234 +20020,333.6666666666667,1155,236 +20021,333.68333333333334,1171,237 +20022,333.7,1188,239 +20023,333.71666666666664,1207,240 +20024,333.73333333333335,1227,241 +20025,333.75,1249,242 +20026,333.76666666666665,1272,243 +20027,333.7833333333333,1296,244 +20028,333.8,1320,245 +20029,333.81666666666666,1345,246 +20030,333.8333333333333,1369,246 +20031,333.85,1396,246 +20032,333.8666666666667,1422,246 +20033,333.8833333333333,1448,245 +20034,333.9,1476,245 +20035,333.9166666666667,1502,244 +20036,333.93333333333334,1527,243 +20037,333.95,1553,241 +20038,333.96666666666664,1577,240 +20039,333.98333333333335,1601,238 +20040,334.0,1623,237 +20041,334.01666666666665,1644,235 +20042,334.0333333333333,1665,233 +20043,334.05,1683,231 +20044,334.06666666666666,1701,229 +20045,334.0833333333333,1716,227 +20046,334.1,1730,226 +20047,334.1166666666667,1742,224 +20048,334.1333333333333,1753,223 +20049,334.15,1761,222 +20050,334.1666666666667,1768,221 +20051,334.18333333333334,1773,221 +20052,334.2,1774,221 +20053,334.21666666666664,1774,221 +20054,334.23333333333335,1774,221 +20055,334.25,1771,221 +20056,334.26666666666665,1766,222 +20057,334.2833333333333,1758,223 +20058,334.3,1749,224 +20059,334.31666666666666,1737,226 +20060,334.3333333333333,1724,227 +20061,334.35,1710,228 +20062,334.3666666666667,1693,230 +20063,334.3833333333333,1676,232 +20064,334.4,1656,234 +20065,334.4166666666667,1636,236 +20066,334.43333333333334,1614,238 +20067,334.45,1591,240 +20068,334.46666666666664,1567,242 +20069,334.48333333333335,1542,243 +20070,334.5,1517,244 +20071,334.51666666666665,1491,245 +20072,334.5333333333333,1464,246 +20073,334.55,1438,246 +20074,334.56666666666666,1412,246 +20075,334.5833333333333,1385,246 +20076,334.6,1360,246 +20077,334.6166666666667,1335,246 +20078,334.6333333333333,1310,245 +20079,334.65,1286,245 +20080,334.6666666666667,1263,243 +20081,334.68333333333334,1241,242 +20082,334.7,1219,241 +20083,334.71666666666664,1200,239 +20084,334.73333333333335,1181,238 +20085,334.75,1165,236 +20086,334.76666666666665,1150,235 +20087,334.7833333333333,1137,234 +20088,334.8,1125,233 +20089,334.81666666666666,1115,232 +20090,334.8333333333333,1108,231 +20091,334.85,1103,230 +20092,334.8666666666667,1099,230 +20093,334.8833333333333,1099,230 +20094,334.9,1099,230 +20095,334.9166666666667,1100,230 +20096,334.93333333333334,1105,230 +20097,334.95,1111,231 +20098,334.96666666666664,1120,232 +20099,334.98333333333335,1130,233 +20100,335.0,1142,234 +20101,335.01666666666665,1156,235 +20102,335.0333333333333,1172,237 +20103,335.05,1189,238 +20104,335.06666666666666,1208,239 +20105,335.0833333333333,1228,241 +20106,335.1,1250,242 +20107,335.1166666666667,1273,243 +20108,335.1333333333333,1296,244 +20109,335.15,1321,245 +20110,335.1666666666667,1346,245 +20111,335.18333333333334,1370,246 +20112,335.2,1397,246 +20113,335.21666666666664,1423,246 +20114,335.23333333333335,1449,245 +20115,335.25,1476,245 +20116,335.26666666666665,1502,244 +20117,335.2833333333333,1528,243 +20118,335.3,1553,242 +20119,335.31666666666666,1577,240 +20120,335.3333333333333,1601,239 +20121,335.35,1623,237 +20122,335.3666666666667,1644,235 +20123,335.3833333333333,1664,233 +20124,335.4,1683,231 +20125,335.4166666666667,1700,230 +20126,335.43333333333334,1716,228 +20127,335.45,1730,226 +20128,335.46666666666664,1742,224 +20129,335.48333333333335,1752,223 +20130,335.5,1761,222 +20131,335.51666666666665,1767,221 +20132,335.5333333333333,1772,221 +20133,335.55,1773,221 +20134,335.56666666666666,1773,221 +20135,335.5833333333333,1773,221 +20136,335.6,1770,221 +20137,335.6166666666667,1764,222 +20138,335.6333333333333,1757,223 +20139,335.65,1748,224 +20140,335.6666666666667,1736,225 +20141,335.68333333333334,1723,227 +20142,335.7,1709,229 +20143,335.71666666666664,1692,231 +20144,335.73333333333335,1674,232 +20145,335.75,1655,235 +20146,335.76666666666665,1635,236 +20147,335.7833333333333,1613,238 +20148,335.8,1590,240 +20149,335.81666666666666,1566,241 +20150,335.8333333333333,1541,242 +20151,335.85,1516,244 +20152,335.8666666666667,1490,245 +20153,335.8833333333333,1463,246 +20154,335.9,1437,246 +20155,335.9166666666667,1411,246 +20156,335.93333333333334,1384,246 +20157,335.95,1359,246 +20158,335.96666666666664,1334,246 +20159,335.98333333333335,1310,245 +20160,336.0,1285,244 +20161,336.01666666666665,1263,243 +20162,336.0333333333333,1240,242 +20163,336.05,1219,240 +20164,336.06666666666666,1200,239 +20165,336.0833333333333,1181,238 +20166,336.1,1165,236 +20167,336.1166666666667,1150,235 +20168,336.1333333333333,1137,234 +20169,336.15,1126,233 +20170,336.1666666666667,1116,232 +20171,336.18333333333334,1109,231 +20172,336.2,1103,231 +20173,336.21666666666664,1099,230 +20174,336.23333333333335,1099,230 +20175,336.25,1099,230 +20176,336.26666666666665,1101,230 +20177,336.2833333333333,1105,231 +20178,336.3,1112,231 +20179,336.31666666666666,1120,232 +20180,336.3333333333333,1131,233 +20181,336.35,1143,234 +20182,336.3666666666667,1157,235 +20183,336.3833333333333,1173,237 +20184,336.4,1190,238 +20185,336.4166666666667,1209,240 +20186,336.43333333333334,1229,241 +20187,336.45,1251,242 +20188,336.46666666666664,1273,243 +20189,336.48333333333335,1297,245 +20190,336.5,1322,246 +20191,336.51666666666665,1347,246 +20192,336.5333333333333,1371,246 +20193,336.55,1397,246 +20194,336.56666666666666,1423,246 +20195,336.5833333333333,1449,245 +20196,336.6,1476,245 +20197,336.6166666666667,1502,244 +20198,336.6333333333333,1528,243 +20199,336.65,1553,242 +20200,336.6666666666667,1577,240 +20201,336.68333333333334,1601,239 +20202,336.7,1623,237 +20203,336.71666666666664,1644,235 +20204,336.73333333333335,1664,234 +20205,336.75,1682,232 +20206,336.76666666666665,1700,230 +20207,336.7833333333333,1715,228 +20208,336.8,1729,226 +20209,336.81666666666666,1741,226 +20210,336.8333333333333,1751,224 +20211,336.85,1759,223 +20212,336.8666666666667,1766,222 +20213,336.8833333333333,1770,221 +20214,336.9,1772,221 +20215,336.9166666666667,1772,221 +20216,336.93333333333334,1772,221 +20217,336.95,1768,222 +20218,336.96666666666664,1763,222 +20219,336.98333333333335,1755,223 +20220,337.0,1746,224 +20221,337.01666666666665,1735,226 +20222,337.0333333333333,1722,227 +20223,337.05,1707,229 +20224,337.06666666666666,1690,231 +20225,337.0833333333333,1672,233 +20226,337.1,1653,234 +20227,337.1166666666667,1633,236 +20228,337.1333333333333,1611,238 +20229,337.15,1588,239 +20230,337.1666666666667,1564,241 +20231,337.18333333333334,1539,242 +20232,337.2,1514,244 +20233,337.21666666666664,1489,245 +20234,337.23333333333335,1462,245 +20235,337.25,1435,246 +20236,337.26666666666665,1409,246 +20237,337.2833333333333,1383,246 +20238,337.3,1358,246 +20239,337.31666666666666,1334,246 +20240,337.3333333333333,1309,245 +20241,337.35,1285,245 +20242,337.3666666666667,1262,243 +20243,337.3833333333333,1240,242 +20244,337.4,1219,240 +20245,337.4166666666667,1199,239 +20246,337.43333333333334,1181,238 +20247,337.45,1165,236 +20248,337.46666666666664,1150,235 +20249,337.48333333333335,1137,234 +20250,337.5,1125,233 +20251,337.51666666666665,1116,232 +20252,337.5333333333333,1109,231 +20253,337.55,1103,230 +20254,337.56666666666666,1099,230 +20255,337.5833333333333,1099,230 +20256,337.6,1099,230 +20257,337.6166666666667,1101,230 +20258,337.6333333333333,1106,231 +20259,337.65,1112,231 +20260,337.6666666666667,1121,232 +20261,337.68333333333334,1132,233 +20262,337.7,1144,234 +20263,337.71666666666664,1158,236 +20264,337.73333333333335,1174,237 +20265,337.75,1191,238 +20266,337.76666666666665,1210,240 +20267,337.7833333333333,1230,241 +20268,337.8,1252,243 +20269,337.81666666666666,1274,244 +20270,337.8333333333333,1298,245 +20271,337.85,1322,246 +20272,337.8666666666667,1347,246 +20273,337.8833333333333,1372,246 +20274,337.9,1398,246 +20275,337.9166666666667,1423,246 +20276,337.93333333333334,1450,246 +20277,337.95,1477,245 +20278,337.96666666666664,1503,244 +20279,337.98333333333335,1528,243 +20280,338.0,1553,242 +20281,338.01666666666665,1577,241 +20282,338.0333333333333,1601,239 +20283,338.05,1623,237 +20284,338.06666666666666,1644,235 +20285,338.0833333333333,1664,233 +20286,338.1,1683,232 +20287,338.1166666666667,1700,230 +20288,338.1333333333333,1715,228 +20289,338.15,1729,227 +20290,338.1666666666667,1741,225 +20291,338.18333333333334,1751,224 +20292,338.2,1759,223 +20293,338.21666666666664,1766,222 +20294,338.23333333333335,1770,221 +20295,338.25,1771,221 +20296,338.26666666666665,1771,221 +20297,338.2833333333333,1771,221 +20298,338.3,1767,222 +20299,338.31666666666666,1762,222 +20300,338.3333333333333,1754,224 +20301,338.35,1745,225 +20302,338.3666666666667,1734,226 +20303,338.3833333333333,1720,228 +20304,338.4,1706,229 +20305,338.4166666666667,1690,231 +20306,338.43333333333334,1672,233 +20307,338.45,1652,235 +20308,338.46666666666664,1632,237 +20309,338.48333333333335,1610,239 +20310,338.5,1587,240 +20311,338.51666666666665,1563,242 +20312,338.5333333333333,1539,243 +20313,338.55,1514,244 +20314,338.56666666666666,1488,245 +20315,338.5833333333333,1461,246 +20316,338.6,1435,246 +20317,338.6166666666667,1409,247 +20318,338.6333333333333,1383,247 +20319,338.65,1357,247 +20320,338.6666666666667,1333,247 +20321,338.68333333333334,1308,246 +20322,338.7,1284,245 +20323,338.71666666666664,1261,243 +20324,338.73333333333335,1239,242 +20325,338.75,1219,241 +20326,338.76666666666665,1199,240 +20327,338.7833333333333,1181,238 +20328,338.8,1165,237 +20329,338.81666666666666,1150,235 +20330,338.8333333333333,1137,234 +20331,338.85,1126,233 +20332,338.8666666666667,1117,232 +20333,338.8833333333333,1110,231 +20334,338.9,1104,231 +20335,338.9166666666667,1101,231 +20336,338.93333333333334,1101,231 +20337,338.95,1101,231 +20338,338.96666666666664,1103,231 +20339,338.98333333333335,1107,231 +20340,339.0,1114,232 +20341,339.01666666666665,1122,233 +20342,339.0333333333333,1133,234 +20343,339.05,1145,235 +20344,339.06666666666666,1159,236 +20345,339.0833333333333,1175,238 +20346,339.1,1192,239 +20347,339.1166666666667,1211,240 +20348,339.1333333333333,1231,242 +20349,339.15,1253,243 +20350,339.1666666666667,1275,245 +20351,339.18333333333334,1299,246 +20352,339.2,1323,246 +20353,339.21666666666664,1347,247 +20354,339.23333333333335,1372,247 +20355,339.25,1398,247 +20356,339.26666666666665,1424,247 +20357,339.2833333333333,1451,246 +20358,339.3,1477,246 +20359,339.31666666666666,1503,245 +20360,339.3333333333333,1528,244 +20361,339.35,1553,243 +20362,339.3666666666667,1577,241 +20363,339.3833333333333,1601,240 +20364,339.4,1623,238 +20365,339.4166666666667,1644,236 +20366,339.43333333333334,1664,234 +20367,339.45,1682,232 +20368,339.46666666666664,1699,230 +20369,339.48333333333335,1714,228 +20370,339.5,1728,227 +20371,339.51666666666665,1740,225 +20372,339.5333333333333,1750,224 +20373,339.55,1758,223 +20374,339.56666666666666,1764,222 +20375,339.5833333333333,1769,222 +20376,339.6,1770,222 +20377,339.6166666666667,1770,222 +20378,339.6333333333333,1770,222 +20379,339.65,1766,222 +20380,339.6666666666667,1761,223 +20381,339.68333333333334,1753,224 +20382,339.7,1743,225 +20383,339.71666666666664,1732,226 +20384,339.73333333333335,1719,228 +20385,339.75,1705,230 +20386,339.76666666666665,1688,231 +20387,339.7833333333333,1670,233 +20388,339.8,1651,235 +20389,339.81666666666666,1630,237 +20390,339.8333333333333,1609,238 +20391,339.85,1586,240 +20392,339.8666666666667,1562,242 +20393,339.8833333333333,1537,243 +20394,339.9,1512,245 +20395,339.9166666666667,1487,246 +20396,339.93333333333334,1460,246 +20397,339.95,1433,247 +20398,339.96666666666664,1408,247 +20399,339.98333333333335,1382,247 +20400,340.0,1357,247 +20401,340.01666666666665,1333,247 +20402,340.0333333333333,1308,246 +20403,340.05,1284,245 +20404,340.06666666666666,1261,244 +20405,340.0833333333333,1240,242 +20406,340.1,1219,241 +20407,340.1166666666667,1200,240 +20408,340.1333333333333,1182,238 +20409,340.15,1165,237 +20410,340.1666666666667,1151,236 +20411,340.18333333333334,1138,234 +20412,340.2,1127,233 +20413,340.21666666666664,1118,233 +20414,340.23333333333335,1111,232 +20415,340.25,1105,231 +20416,340.26666666666665,1102,231 +20417,340.2833333333333,1102,231 +20418,340.3,1102,231 +20419,340.31666666666666,1104,231 +20420,340.3333333333333,1108,231 +20421,340.35,1115,232 +20422,340.3666666666667,1124,233 +20423,340.3833333333333,1134,234 +20424,340.4,1147,235 +20425,340.4166666666667,1161,236 +20426,340.43333333333334,1176,237 +20427,340.45,1194,239 +20428,340.46666666666664,1212,240 +20429,340.48333333333335,1233,241 +20430,340.5,1254,243 +20431,340.51666666666665,1277,244 +20432,340.5333333333333,1300,245 +20433,340.55,1325,246 +20434,340.56666666666666,1349,247 +20435,340.5833333333333,1374,247 +20436,340.6,1399,247 +20437,340.6166666666667,1425,247 +20438,340.6333333333333,1452,246 +20439,340.65,1478,245 +20440,340.6666666666667,1503,244 +20441,340.68333333333334,1529,243 +20442,340.7,1554,242 +20443,340.71666666666664,1578,241 +20444,340.73333333333335,1601,239 +20445,340.75,1623,238 +20446,340.76666666666665,1644,236 +20447,340.7833333333333,1663,234 +20448,340.8,1682,232 +20449,340.81666666666666,1698,231 +20450,340.8333333333333,1714,229 +20451,340.85,1727,227 +20452,340.8666666666667,1739,226 +20453,340.8833333333333,1749,225 +20454,340.9,1757,223 +20455,340.9166666666667,1763,222 +20456,340.93333333333334,1767,222 +20457,340.95,1768,221 +20458,340.96666666666664,1768,221 +20459,340.98333333333335,1768,221 +20460,341.0,1765,222 +20461,341.01666666666665,1759,223 +20462,341.0333333333333,1752,224 +20463,341.05,1742,225 +20464,341.06666666666666,1731,226 +20465,341.0833333333333,1718,228 +20466,341.1,1703,229 +20467,341.1166666666667,1687,231 +20468,341.1333333333333,1669,233 +20469,341.15,1649,235 +20470,341.1666666666667,1629,236 +20471,341.18333333333334,1607,238 +20472,341.2,1584,240 +20473,341.21666666666664,1560,242 +20474,341.23333333333335,1536,243 +20475,341.25,1511,244 +20476,341.26666666666665,1486,245 +20477,341.2833333333333,1460,246 +20478,341.3,1433,246 +20479,341.31666666666666,1407,246 +20480,341.3333333333333,1381,246 +20481,341.35,1356,246 +20482,341.3666666666667,1332,246 +20483,341.3833333333333,1307,245 +20484,341.4,1284,244 +20485,341.4166666666667,1261,243 +20486,341.43333333333334,1239,242 +20487,341.45,1218,241 +20488,341.46666666666664,1199,239 +20489,341.48333333333335,1182,238 +20490,341.5,1165,236 +20491,341.51666666666665,1151,235 +20492,341.5333333333333,1138,234 +20493,341.55,1127,233 +20494,341.56666666666666,1118,232 +20495,341.5833333333333,1111,232 +20496,341.6,1106,231 +20497,341.6166666666667,1102,231 +20498,341.6333333333333,1102,231 +20499,341.65,1102,231 +20500,341.6666666666667,1104,231 +20501,341.68333333333334,1109,231 +20502,341.7,1116,232 +20503,341.71666666666664,1125,233 +20504,341.73333333333335,1135,234 +20505,341.75,1147,235 +20506,341.76666666666665,1161,237 +20507,341.7833333333333,1177,238 +20508,341.8,1195,239 +20509,341.81666666666666,1213,240 +20510,341.8333333333333,1234,242 +20511,341.85,1255,243 +20512,341.8666666666667,1278,244 +20513,341.8833333333333,1301,245 +20514,341.9,1325,246 +20515,341.9166666666667,1350,246 +20516,341.93333333333334,1374,246 +20517,341.95,1400,246 +20518,341.96666666666664,1426,246 +20519,341.98333333333335,1453,246 +20520,342.0,1479,245 +20521,342.01666666666665,1504,244 +20522,342.0333333333333,1530,243 +20523,342.05,1554,242 +20524,342.06666666666666,1578,240 +20525,342.0833333333333,1601,239 +20526,342.1,1623,237 +20527,342.1166666666667,1644,235 +20528,342.1333333333333,1664,233 +20529,342.15,1681,231 +20530,342.1666666666667,1698,230 +20531,342.18333333333334,1713,228 +20532,342.2,1727,227 +20533,342.21666666666664,1738,225 +20534,342.23333333333335,1749,224 +20535,342.25,1756,223 +20536,342.26666666666665,1763,222 +20537,342.2833333333333,1767,222 +20538,342.3,1768,222 +20539,342.31666666666666,1768,222 +20540,342.3333333333333,1768,222 +20541,342.35,1764,222 +20542,342.3666666666667,1758,223 +20543,342.3833333333333,1751,224 +20544,342.4,1741,225 +20545,342.4166666666667,1730,226 +20546,342.43333333333334,1717,228 +20547,342.45,1702,229 +20548,342.46666666666664,1685,231 +20549,342.48333333333335,1668,233 +20550,342.5,1648,235 +20551,342.51666666666665,1628,236 +20552,342.5333333333333,1606,238 +20553,342.55,1583,240 +20554,342.56666666666666,1560,241 +20555,342.5833333333333,1535,243 +20556,342.6,1510,244 +20557,342.6166666666667,1485,244 +20558,342.6333333333333,1458,245 +20559,342.65,1432,246 +20560,342.6666666666667,1406,246 +20561,342.68333333333334,1381,246 +20562,342.7,1356,246 +20563,342.71666666666664,1332,246 +20564,342.73333333333335,1307,245 +20565,342.75,1283,244 +20566,342.76666666666665,1261,243 +20567,342.7833333333333,1239,242 +20568,342.8,1219,240 +20569,342.81666666666666,1199,239 +20570,342.8333333333333,1182,238 +20571,342.85,1166,236 +20572,342.8666666666667,1151,235 +20573,342.8833333333333,1139,234 +20574,342.9,1128,233 +20575,342.9166666666667,1119,232 +20576,342.93333333333334,1112,231 +20577,342.95,1106,230 +20578,342.96666666666664,1103,230 +20579,342.98333333333335,1103,230 +20580,343.0,1103,230 +20581,343.01666666666665,1106,231 +20582,343.0333333333333,1110,231 +20583,343.05,1117,232 +20584,343.06666666666666,1126,233 +20585,343.0833333333333,1137,234 +20586,343.1,1149,235 +20587,343.1166666666667,1163,236 +20588,343.1333333333333,1178,237 +20589,343.15,1196,239 +20590,343.1666666666667,1215,241 +20591,343.18333333333334,1236,242 +20592,343.2,1257,243 +20593,343.21666666666664,1279,244 +20594,343.23333333333335,1303,245 +20595,343.25,1327,246 +20596,343.26666666666665,1351,246 +20597,343.2833333333333,1376,247 +20598,343.3,1401,247 +20599,343.31666666666666,1427,247 +20600,343.3333333333333,1454,246 +20601,343.35,1480,245 +20602,343.3666666666667,1506,244 +20603,343.3833333333333,1531,243 +20604,343.4,1555,242 +20605,343.4166666666667,1579,241 +20606,343.43333333333334,1602,239 +20607,343.45,1624,237 +20608,343.46666666666664,1644,235 +20609,343.48333333333335,1664,233 +20610,343.5,1682,231 +20611,343.51666666666665,1699,230 +20612,343.5333333333333,1714,228 +20613,343.55,1727,227 +20614,343.56666666666666,1739,226 +20615,343.5833333333333,1748,224 +20616,343.6,1756,223 +20617,343.6166666666667,1762,222 +20618,343.6333333333333,1766,222 +20619,343.65,1767,222 +20620,343.6666666666667,1767,222 +20621,343.68333333333334,1767,222 +20622,343.7,1763,222 +20623,343.71666666666664,1757,223 +20624,343.73333333333335,1749,224 +20625,343.75,1740,225 +20626,343.76666666666665,1729,226 +20627,343.7833333333333,1716,228 +20628,343.8,1701,230 +20629,343.81666666666666,1685,232 +20630,343.8333333333333,1667,233 +20631,343.85,1647,235 +20632,343.8666666666667,1627,236 +20633,343.8833333333333,1605,238 +20634,343.9,1582,240 +20635,343.9166666666667,1559,241 +20636,343.93333333333334,1534,243 +20637,343.95,1509,244 +20638,343.96666666666664,1484,245 +20639,343.98333333333335,1457,246 +20640,344.0,1431,246 +20641,344.01666666666665,1405,246 +20642,344.0333333333333,1379,246 +20643,344.05,1355,246 +20644,344.06666666666666,1330,246 +20645,344.0833333333333,1305,245 +20646,344.1,1283,244 +20647,344.1166666666667,1261,243 +20648,344.1333333333333,1239,242 +20649,344.15,1219,240 +20650,344.1666666666667,1200,239 +20651,344.18333333333334,1182,238 +20652,344.2,1166,237 +20653,344.21666666666664,1152,235 +20654,344.23333333333335,1140,234 +20655,344.25,1129,233 +20656,344.26666666666665,1120,233 +20657,344.2833333333333,1113,232 +20658,344.3,1108,231 +20659,344.31666666666666,1105,231 +20660,344.3333333333333,1105,231 +20661,344.35,1105,231 +20662,344.3666666666667,1107,231 +20663,344.3833333333333,1112,232 +20664,344.4,1119,233 +20665,344.4166666666667,1128,233 +20666,344.43333333333334,1139,235 +20667,344.45,1151,236 +20668,344.46666666666664,1165,237 +20669,344.48333333333335,1181,238 +20670,344.5,1198,240 +20671,344.51666666666665,1217,241 +20672,344.5333333333333,1237,242 +20673,344.55,1258,243 +20674,344.56666666666666,1281,244 +20675,344.5833333333333,1304,245 +20676,344.6,1328,246 +20677,344.6166666666667,1352,247 +20678,344.6333333333333,1377,247 +20679,344.65,1403,247 +20680,344.6666666666667,1429,246 +20681,344.68333333333334,1454,246 +20682,344.7,1480,245 +20683,344.71666666666664,1506,244 +20684,344.73333333333335,1531,243 +20685,344.75,1556,242 +20686,344.76666666666665,1579,240 +20687,344.7833333333333,1602,238 +20688,344.8,1623,237 +20689,344.81666666666666,1644,235 +20690,344.8333333333333,1663,233 +20691,344.85,1681,231 +20692,344.8666666666667,1698,230 +20693,344.8833333333333,1713,228 +20694,344.9,1726,227 +20695,344.9166666666667,1738,225 +20696,344.93333333333334,1748,224 +20697,344.95,1755,222 +20698,344.96666666666664,1761,222 +20699,344.98333333333335,1765,221 +20700,345.0,1766,221 +20701,345.01666666666665,1766,221 +20702,345.0333333333333,1766,221 +20703,345.05,1762,221 +20704,345.06666666666666,1756,222 +20705,345.0833333333333,1749,223 +20706,345.1,1739,224 +20707,345.1166666666667,1728,226 +20708,345.1333333333333,1714,227 +20709,345.15,1700,229 +20710,345.1666666666667,1683,231 +20711,345.18333333333334,1665,233 +20712,345.2,1646,234 +20713,345.21666666666664,1626,236 +20714,345.23333333333335,1604,238 +20715,345.25,1581,240 +20716,345.26666666666665,1558,241 +20717,345.2833333333333,1533,242 +20718,345.3,1509,244 +20719,345.31666666666666,1483,245 +20720,345.3333333333333,1457,246 +20721,345.35,1431,246 +20722,345.3666666666667,1406,246 +20723,345.3833333333333,1380,246 +20724,345.4,1355,246 +20725,345.4166666666667,1331,246 +20726,345.43333333333334,1307,245 +20727,345.45,1283,244 +20728,345.46666666666664,1261,243 +20729,345.48333333333335,1239,241 +20730,345.5,1219,240 +20731,345.51666666666665,1200,239 +20732,345.5333333333333,1183,237 +20733,345.55,1167,236 +20734,345.56666666666666,1152,235 +20735,345.5833333333333,1140,234 +20736,345.6,1129,233 +20737,345.6166666666667,1120,232 +20738,345.6333333333333,1113,232 +20739,345.65,1108,231 +20740,345.6666666666667,1105,231 +20741,345.68333333333334,1105,231 +20742,345.7,1105,231 +20743,345.71666666666664,1108,231 +20744,345.73333333333335,1113,231 +20745,345.75,1120,232 +20746,345.76666666666665,1129,233 +20747,345.7833333333333,1139,234 +20748,345.8,1152,235 +20749,345.81666666666666,1166,237 +20750,345.8333333333333,1182,238 +20751,345.85,1199,239 +20752,345.8666666666667,1218,241 +20753,345.8833333333333,1238,242 +20754,345.9,1260,243 +20755,345.9166666666667,1282,244 +20756,345.93333333333334,1305,245 +20757,345.95,1330,246 +20758,345.96666666666664,1354,247 +20759,345.98333333333335,1378,247 +20760,346.0,1404,247 +20761,346.01666666666665,1430,246 +20762,346.0333333333333,1456,246 +20763,346.05,1482,245 +20764,346.06666666666666,1507,244 +20765,346.0833333333333,1532,243 +20766,346.1,1557,242 +20767,346.1166666666667,1580,240 +20768,346.1333333333333,1602,238 +20769,346.15,1624,237 +20770,346.1666666666667,1645,235 +20771,346.18333333333334,1664,233 +20772,346.2,1682,231 +20773,346.21666666666664,1698,230 +20774,346.23333333333335,1713,228 +20775,346.25,1726,226 +20776,346.26666666666665,1737,225 +20777,346.2833333333333,1747,224 +20778,346.3,1754,223 +20779,346.31666666666666,1761,222 +20780,346.3333333333333,1765,222 +20781,346.35,1765,222 +20782,346.3666666666667,1765,222 +20783,346.3833333333333,1765,222 +20784,346.4,1761,222 +20785,346.4166666666667,1755,223 +20786,346.43333333333334,1747,224 +20787,346.45,1738,225 +20788,346.46666666666664,1726,226 +20789,346.48333333333335,1713,228 +20790,346.5,1698,230 +20791,346.51666666666665,1682,231 +20792,346.5333333333333,1664,233 +20793,346.55,1645,235 +20794,346.56666666666666,1624,236 +20795,346.5833333333333,1603,238 +20796,346.6,1580,240 +20797,346.6166666666667,1557,242 +20798,346.6333333333333,1533,243 +20799,346.65,1508,244 +20800,346.6666666666667,1483,245 +20801,346.68333333333334,1456,246 +20802,346.7,1431,246 +20803,346.71666666666664,1405,246 +20804,346.73333333333335,1379,246 +20805,346.75,1355,246 +20806,346.76666666666665,1330,246 +20807,346.7833333333333,1306,245 +20808,346.8,1283,244 +20809,346.81666666666666,1260,243 +20810,346.8333333333333,1239,242 +20811,346.85,1219,240 +20812,346.8666666666667,1200,239 +20813,346.8833333333333,1183,237 +20814,346.9,1167,236 +20815,346.9166666666667,1153,235 +20816,346.93333333333334,1140,234 +20817,346.95,1129,233 +20818,346.96666666666664,1121,232 +20819,346.98333333333335,1114,231 +20820,347.0,1109,231 +20821,347.01666666666665,1106,231 +20822,347.0333333333333,1106,231 +20823,347.05,1106,231 +20824,347.06666666666666,1109,231 +20825,347.0833333333333,1114,231 +20826,347.1,1121,232 +20827,347.1166666666667,1129,233 +20828,347.1333333333333,1140,234 +20829,347.15,1153,235 +20830,347.1666666666667,1167,236 +20831,347.18333333333334,1183,238 +20832,347.2,1200,239 +20833,347.21666666666664,1219,240 +20834,347.23333333333335,1239,242 +20835,347.25,1260,243 +20836,347.26666666666665,1283,244 +20837,347.2833333333333,1306,245 +20838,347.3,1330,246 +20839,347.31666666666666,1355,247 +20840,347.3333333333333,1379,247 +20841,347.35,1405,247 +20842,347.3666666666667,1431,246 +20843,347.3833333333333,1457,246 +20844,347.4,1483,245 +20845,347.4166666666667,1508,244 +20846,347.43333333333334,1533,243 +20847,347.45,1557,242 +20848,347.46666666666664,1580,240 +20849,347.48333333333335,1603,238 +20850,347.5,1624,237 +20851,347.51666666666665,1645,235 +20852,347.5333333333333,1664,233 +20853,347.55,1682,232 +20854,347.56666666666666,1698,230 +20855,347.5833333333333,1713,228 +20856,347.6,1726,227 +20857,347.6166666666667,1737,226 +20858,347.6333333333333,1747,224 +20859,347.65,1754,223 +20860,347.6666666666667,1760,222 +20861,347.68333333333334,1764,222 +20862,347.7,1764,222 +20863,347.71666666666664,1764,222 +20864,347.73333333333335,1764,222 +20865,347.75,1760,222 +20866,347.76666666666665,1754,223 +20867,347.7833333333333,1746,224 +20868,347.8,1737,225 +20869,347.81666666666666,1726,227 +20870,347.8333333333333,1713,228 +20871,347.85,1698,230 +20872,347.8666666666667,1681,232 +20873,347.8833333333333,1664,233 +20874,347.9,1644,235 +20875,347.9166666666667,1624,237 +20876,347.93333333333334,1603,238 +20877,347.95,1580,240 +20878,347.96666666666664,1556,241 +20879,347.98333333333335,1532,242 +20880,348.0,1507,244 +20881,348.01666666666665,1482,244 +20882,348.0333333333333,1456,245 +20883,348.05,1430,246 +20884,348.06666666666666,1404,247 +20885,348.0833333333333,1379,247 +20886,348.1,1354,247 +20887,348.1166666666667,1330,245 +20888,348.1333333333333,1306,245 +20889,348.15,1283,244 +20890,348.1666666666667,1261,243 +20891,348.18333333333334,1239,241 +20892,348.2,1219,240 +20893,348.21666666666664,1200,239 +20894,348.23333333333335,1183,238 +20895,348.25,1167,236 +20896,348.26666666666665,1153,235 +20897,348.2833333333333,1141,234 +20898,348.3,1130,233 +20899,348.31666666666666,1121,232 +20900,348.3333333333333,1114,231 +20901,348.35,1110,231 +20902,348.3666666666667,1107,231 +20903,348.3833333333333,1107,231 +20904,348.4,1107,231 +20905,348.4166666666667,1110,231 +20906,348.43333333333334,1115,232 +20907,348.45,1122,232 +20908,348.46666666666664,1131,233 +20909,348.48333333333335,1141,235 +20910,348.5,1154,236 +20911,348.51666666666665,1168,237 +20912,348.5333333333333,1184,238 +20913,348.55,1201,240 +20914,348.56666666666666,1220,241 +20915,348.5833333333333,1240,242 +20916,348.6,1262,243 +20917,348.6166666666667,1283,244 +20918,348.6333333333333,1307,245 +20919,348.65,1331,246 +20920,348.6666666666667,1356,247 +20921,348.68333333333334,1380,247 +20922,348.7,1406,247 +20923,348.71666666666664,1431,246 +20924,348.73333333333335,1457,246 +20925,348.75,1483,245 +20926,348.76666666666665,1508,244 +20927,348.7833333333333,1533,243 +20928,348.8,1557,242 +20929,348.81666666666666,1581,240 +20930,348.8333333333333,1603,238 +20931,348.85,1625,237 +20932,348.8666666666667,1645,235 +20933,348.8833333333333,1664,234 +20934,348.9,1682,232 +20935,348.9166666666667,1698,230 +20936,348.93333333333334,1713,228 +20937,348.95,1726,226 +20938,348.96666666666664,1737,225 +20939,348.98333333333335,1746,224 +20940,349.0,1753,223 +20941,349.01666666666665,1760,222 +20942,349.0333333333333,1763,221 +20943,349.05,1763,221 +20944,349.06666666666666,1763,221 +20945,349.0833333333333,1763,221 +20946,349.1,1759,222 +20947,349.1166666666667,1753,223 +20948,349.1333333333333,1746,224 +20949,349.15,1736,225 +20950,349.1666666666667,1724,227 +20951,349.18333333333334,1712,228 +20952,349.2,1696,230 +20953,349.21666666666664,1680,231 +20954,349.23333333333335,1662,233 +20955,349.25,1643,235 +20956,349.26666666666665,1623,237 +20957,349.2833333333333,1602,238 +20958,349.3,1579,240 +20959,349.31666666666666,1555,241 +20960,349.3333333333333,1531,243 +20961,349.35,1506,244 +20962,349.3666666666667,1481,245 +20963,349.3833333333333,1455,245 +20964,349.4,1429,246 +20965,349.4166666666667,1404,246 +20966,349.43333333333334,1378,246 +20967,349.45,1354,246 +20968,349.46666666666664,1329,245 +20969,349.48333333333335,1305,244 +20970,349.5,1282,243 +20971,349.51666666666665,1260,242 +20972,349.5333333333333,1239,241 +20973,349.55,1219,240 +20974,349.56666666666666,1200,239 +20975,349.5833333333333,1183,237 +20976,349.6,1167,236 +20977,349.6166666666667,1153,235 +20978,349.6333333333333,1141,234 +20979,349.65,1131,234 +20980,349.6666666666667,1122,233 +20981,349.68333333333334,1115,232 +20982,349.7,1110,231 +20983,349.71666666666664,1108,231 +20984,349.73333333333335,1108,231 +20985,349.75,1108,231 +20986,349.76666666666665,1111,232 +20987,349.7833333333333,1116,232 +20988,349.8,1123,233 +20989,349.81666666666666,1132,234 +20990,349.8333333333333,1142,235 +20991,349.85,1155,236 +20992,349.8666666666667,1169,237 +20993,349.8833333333333,1185,238 +20994,349.9,1202,240 +20995,349.9166666666667,1221,241 +20996,349.93333333333334,1241,242 +20997,349.95,1263,243 +20998,349.96666666666664,1285,244 +20999,349.98333333333335,1308,245 +21000,350.0,1332,246 +21001,350.01666666666665,1357,246 +21002,350.0333333333333,1381,246 +21003,350.05,1406,246 +21004,350.06666666666666,1432,246 +21005,350.0833333333333,1458,245 +21006,350.1,1483,245 +21007,350.1166666666667,1509,244 +21008,350.1333333333333,1533,243 +21009,350.15,1557,241 +21010,350.1666666666667,1581,240 +21011,350.18333333333334,1603,239 +21012,350.2,1625,236 +21013,350.21666666666664,1645,235 +21014,350.23333333333335,1664,233 +21015,350.25,1682,231 +21016,350.26666666666665,1697,229 +21017,350.2833333333333,1712,228 +21018,350.3,1725,226 +21019,350.31666666666666,1736,225 +21020,350.3333333333333,1745,224 +21021,350.35,1753,223 +21022,350.3666666666667,1759,222 +21023,350.3833333333333,1763,221 +21024,350.4,1763,221 +21025,350.4166666666667,1763,221 +21026,350.43333333333334,1762,221 +21027,350.45,1758,222 +21028,350.46666666666664,1752,223 +21029,350.48333333333335,1744,224 +21030,350.5,1735,225 +21031,350.51666666666665,1723,226 +21032,350.5333333333333,1710,228 +21033,350.55,1695,229 +21034,350.56666666666666,1679,231 +21035,350.5833333333333,1661,233 +21036,350.6,1642,234 +21037,350.6166666666667,1622,237 +21038,350.6333333333333,1600,238 +21039,350.65,1578,240 +21040,350.6666666666667,1554,241 +21041,350.68333333333334,1530,242 +21042,350.7,1505,243 +21043,350.71666666666664,1480,244 +21044,350.73333333333335,1454,245 +21045,350.75,1428,245 +21046,350.76666666666665,1402,246 +21047,350.7833333333333,1377,246 +21048,350.8,1352,246 +21049,350.81666666666666,1329,245 +21050,350.8333333333333,1305,244 +21051,350.85,1282,243 +21052,350.8666666666667,1260,242 +21053,350.8833333333333,1239,241 +21054,350.9,1219,240 +21055,350.9166666666667,1200,239 +21056,350.93333333333334,1183,238 +21057,350.95,1167,236 +21058,350.96666666666664,1153,235 +21059,350.98333333333335,1142,234 +21060,351.0,1131,233 +21061,351.01666666666665,1122,232 +21062,351.0333333333333,1116,232 +21063,351.05,1111,231 +21064,351.06666666666666,1109,231 +21065,351.0833333333333,1109,231 +21066,351.1,1109,231 +21067,351.1166666666667,1112,231 +21068,351.1333333333333,1117,232 +21069,351.15,1124,233 +21070,351.1666666666667,1133,233 +21071,351.18333333333334,1144,235 +21072,351.2,1156,235 +21073,351.21666666666664,1171,237 +21074,351.23333333333335,1186,238 +21075,351.25,1204,239 +21076,351.26666666666665,1223,241 +21077,351.2833333333333,1243,242 +21078,351.3,1264,243 +21079,351.31666666666666,1286,244 +21080,351.3333333333333,1310,245 +21081,351.35,1334,246 +21082,351.3666666666667,1358,246 +21083,351.3833333333333,1382,246 +21084,351.4,1408,246 +21085,351.4166666666667,1433,246 +21086,351.43333333333334,1458,246 +21087,351.45,1484,245 +21088,351.46666666666664,1510,244 +21089,351.48333333333335,1535,243 +21090,351.5,1558,242 +21091,351.51666666666665,1582,240 +21092,351.5333333333333,1604,239 +21093,351.55,1625,237 +21094,351.56666666666666,1645,235 +21095,351.5833333333333,1664,233 +21096,351.6,1682,232 +21097,351.6166666666667,1698,230 +21098,351.6333333333333,1713,228 +21099,351.65,1725,227 +21100,351.6666666666667,1736,225 +21101,351.68333333333334,1745,224 +21102,351.7,1753,223 +21103,351.71666666666664,1758,222 +21104,351.73333333333335,1762,222 +21105,351.75,1762,222 +21106,351.76666666666665,1762,222 +21107,351.7833333333333,1761,222 +21108,351.8,1757,222 +21109,351.81666666666666,1751,223 +21110,351.8333333333333,1743,224 +21111,351.85,1733,225 +21112,351.8666666666667,1722,226 +21113,351.8833333333333,1709,228 +21114,351.9,1694,230 +21115,351.9166666666667,1677,231 +21116,351.93333333333334,1659,233 +21117,351.95,1640,235 +21118,351.96666666666664,1620,237 +21119,351.98333333333335,1599,238 +21120,352.0,1576,240 +21121,352.01666666666665,1553,242 +21122,352.0333333333333,1529,243 +21123,352.05,1504,244 +21124,352.06666666666666,1479,245 +21125,352.0833333333333,1453,245 +21126,352.1,1427,246 +21127,352.1166666666667,1402,246 +21128,352.1333333333333,1377,246 +21129,352.15,1352,246 +21130,352.1666666666667,1328,245 +21131,352.18333333333334,1304,245 +21132,352.2,1282,244 +21133,352.21666666666664,1260,242 +21134,352.23333333333335,1239,241 +21135,352.25,1219,240 +21136,352.26666666666665,1200,239 +21137,352.2833333333333,1183,237 +21138,352.3,1168,236 +21139,352.31666666666666,1154,235 +21140,352.3333333333333,1142,234 +21141,352.35,1132,233 +21142,352.3666666666667,1123,233 +21143,352.3833333333333,1116,232 +21144,352.4,1112,232 +21145,352.4166666666667,1110,231 +21146,352.43333333333334,1110,231 +21147,352.45,1110,231 +21148,352.46666666666664,1113,232 +21149,352.48333333333335,1118,232 +21150,352.5,1125,233 +21151,352.51666666666665,1134,234 +21152,352.5333333333333,1145,235 +21153,352.55,1158,236 +21154,352.56666666666666,1172,237 +21155,352.5833333333333,1188,238 +21156,352.6,1205,239 +21157,352.6166666666667,1224,241 +21158,352.6333333333333,1244,242 +21159,352.65,1265,243 +21160,352.6666666666667,1287,244 +21161,352.68333333333334,1311,245 +21162,352.7,1335,246 +21163,352.71666666666664,1359,246 +21164,352.73333333333335,1383,246 +21165,352.75,1408,246 +21166,352.76666666666665,1434,246 +21167,352.7833333333333,1459,246 +21168,352.8,1485,245 +21169,352.81666666666666,1510,244 +21170,352.8333333333333,1535,243 +21171,352.85,1559,241 +21172,352.8666666666667,1582,240 +21173,352.8833333333333,1604,238 +21174,352.9,1625,236 +21175,352.9166666666667,1645,235 +21176,352.93333333333334,1663,233 +21177,352.95,1681,231 +21178,352.96666666666664,1697,230 +21179,352.98333333333335,1712,228 +21180,353.0,1724,226 +21181,353.01666666666665,1735,225 +21182,353.0333333333333,1745,224 +21183,353.05,1752,223 +21184,353.06666666666666,1757,222 +21185,353.0833333333333,1761,222 +21186,353.1,1761,222 +21187,353.1166666666667,1761,222 +21188,353.1333333333333,1760,222 +21189,353.15,1756,222 +21190,353.1666666666667,1750,223 +21191,353.18333333333334,1742,224 +21192,353.2,1732,225 +21193,353.21666666666664,1720,226 +21194,353.23333333333335,1707,228 +21195,353.25,1692,229 +21196,353.26666666666665,1676,231 +21197,353.2833333333333,1658,233 +21198,353.3,1639,234 +21199,353.31666666666666,1619,236 +21200,353.3333333333333,1597,238 +21201,353.35,1575,239 +21202,353.3666666666667,1552,241 +21203,353.3833333333333,1528,242 +21204,353.4,1503,243 +21205,353.4166666666667,1478,244 +21206,353.43333333333334,1452,245 +21207,353.45,1426,246 +21208,353.46666666666664,1401,246 +21209,353.48333333333335,1376,246 +21210,353.5,1352,246 +21211,353.51666666666665,1327,245 +21212,353.5333333333333,1304,244 +21213,353.55,1281,244 +21214,353.56666666666666,1259,243 +21215,353.5833333333333,1238,241 +21216,353.6,1219,240 +21217,353.6166666666667,1200,239 +21218,353.6333333333333,1183,238 +21219,353.65,1168,236 +21220,353.6666666666667,1154,235 +21221,353.68333333333334,1142,234 +21222,353.7,1132,234 +21223,353.71666666666664,1124,233 +21224,353.73333333333335,1118,232 +21225,353.75,1113,232 +21226,353.76666666666665,1111,232 +21227,353.7833333333333,1111,232 +21228,353.8,1111,232 +21229,353.81666666666666,1114,232 +21230,353.8333333333333,1119,233 +21231,353.85,1127,233 +21232,353.8666666666667,1136,234 +21233,353.8833333333333,1147,235 +21234,353.9,1159,236 +21235,353.9166666666667,1173,237 +21236,353.93333333333334,1189,239 +21237,353.95,1206,240 +21238,353.96666666666664,1225,241 +21239,353.98333333333335,1246,242 +21240,354.0,1267,244 +21241,354.01666666666665,1289,244 +21242,354.0333333333333,1312,245 +21243,354.05,1335,246 +21244,354.06666666666666,1359,246 +21245,354.0833333333333,1384,247 +21246,354.1,1409,247 +21247,354.1166666666667,1435,247 +21248,354.1333333333333,1461,246 +21249,354.15,1486,245 +21250,354.1666666666667,1511,244 +21251,354.18333333333334,1535,243 +21252,354.2,1558,241 +21253,354.21666666666664,1582,240 +21254,354.23333333333335,1604,238 +21255,354.25,1625,237 +21256,354.26666666666665,1645,235 +21257,354.2833333333333,1664,233 +21258,354.3,1681,231 +21259,354.31666666666666,1697,230 +21260,354.3333333333333,1711,228 +21261,354.35,1724,227 +21262,354.3666666666667,1735,225 +21263,354.3833333333333,1744,224 +21264,354.4,1751,223 +21265,354.4166666666667,1756,222 +21266,354.43333333333334,1760,222 +21267,354.45,1760,222 +21268,354.46666666666664,1760,222 +21269,354.48333333333335,1759,222 +21270,354.5,1755,223 +21271,354.51666666666665,1749,223 +21272,354.5333333333333,1741,224 +21273,354.55,1731,225 +21274,354.56666666666666,1719,227 +21275,354.5833333333333,1706,228 +21276,354.6,1691,230 +21277,354.6166666666667,1674,232 +21278,354.6333333333333,1657,233 +21279,354.65,1638,235 +21280,354.6666666666667,1617,237 +21281,354.68333333333334,1596,238 +21282,354.7,1574,240 +21283,354.71666666666664,1550,241 +21284,354.73333333333335,1526,243 +21285,354.75,1502,244 +21286,354.76666666666665,1477,245 +21287,354.7833333333333,1451,246 +21288,354.8,1426,246 +21289,354.81666666666666,1400,246 +21290,354.8333333333333,1375,246 +21291,354.85,1351,246 +21292,354.8666666666667,1327,245 +21293,354.8833333333333,1304,244 +21294,354.9,1281,243 +21295,354.9166666666667,1259,242 +21296,354.93333333333334,1238,242 +21297,354.95,1218,240 +21298,354.96666666666664,1200,239 +21299,354.98333333333335,1183,238 +21300,355.0,1168,237 +21301,355.01666666666665,1155,236 +21302,355.0333333333333,1143,234 +21303,355.05,1133,234 +21304,355.06666666666666,1125,233 +21305,355.0833333333333,1118,232 +21306,355.1,1114,232 +21307,355.1166666666667,1112,231 +21308,355.1333333333333,1112,231 +21309,355.15,1112,231 +21310,355.1666666666667,1115,232 +21311,355.18333333333334,1120,232 +21312,355.2,1128,233 +21313,355.21666666666664,1137,234 +21314,355.23333333333335,1148,235 +21315,355.25,1160,236 +21316,355.26666666666665,1174,237 +21317,355.2833333333333,1190,238 +21318,355.3,1208,239 +21319,355.31666666666666,1226,241 +21320,355.3333333333333,1246,242 +21321,355.35,1268,244 +21322,355.3666666666667,1290,245 +21323,355.3833333333333,1313,245 +21324,355.4,1337,246 +21325,355.4166666666667,1360,247 +21326,355.43333333333334,1385,247 +21327,355.45,1410,247 +21328,355.46666666666664,1435,246 +21329,355.48333333333335,1460,246 +21330,355.5,1486,245 +21331,355.51666666666665,1511,244 +21332,355.5333333333333,1535,243 +21333,355.55,1559,242 +21334,355.56666666666666,1582,240 +21335,355.5833333333333,1604,238 +21336,355.6,1625,237 +21337,355.6166666666667,1645,235 +21338,355.6333333333333,1663,233 +21339,355.65,1681,232 +21340,355.6666666666667,1697,230 +21341,355.68333333333334,1711,228 +21342,355.7,1723,226 +21343,355.71666666666664,1734,225 +21344,355.73333333333335,1743,224 +21345,355.75,1751,223 +21346,355.76666666666665,1756,222 +21347,355.7833333333333,1759,222 +21348,355.8,1759,222 +21349,355.81666666666666,1759,222 +21350,355.8333333333333,1758,222 +21351,355.85,1754,223 +21352,355.8666666666667,1748,224 +21353,355.8833333333333,1740,225 +21354,355.9,1730,226 +21355,355.9166666666667,1718,227 +21356,355.93333333333334,1705,229 +21357,355.95,1690,230 +21358,355.96666666666664,1674,232 +21359,355.98333333333335,1656,234 +21360,356.0,1637,235 +21361,356.01666666666665,1616,237 +21362,356.0333333333333,1595,238 +21363,356.05,1572,240 +21364,356.06666666666666,1549,242 +21365,356.0833333333333,1525,243 +21366,356.1,1501,244 +21367,356.1166666666667,1476,244 +21368,356.1333333333333,1449,245 +21369,356.15,1424,246 +21370,356.1666666666667,1400,246 +21371,356.18333333333334,1374,246 +21372,356.2,1350,246 +21373,356.21666666666664,1328,245 +21374,356.23333333333335,1303,245 +21375,356.25,1281,244 +21376,356.26666666666665,1259,242 +21377,356.2833333333333,1239,241 +21378,356.3,1219,240 +21379,356.31666666666666,1201,239 +21380,356.3333333333333,1184,238 +21381,356.35,1169,237 +21382,356.3666666666667,1156,235 +21383,356.3833333333333,1144,234 +21384,356.4,1134,233 +21385,356.4166666666667,1125,233 +21386,356.43333333333334,1119,232 +21387,356.45,1115,232 +21388,356.46666666666664,1113,232 +21389,356.48333333333335,1113,232 +21390,356.5,1113,232 +21391,356.51666666666665,1116,232 +21392,356.5333333333333,1122,233 +21393,356.55,1129,234 +21394,356.56666666666666,1138,234 +21395,356.5833333333333,1149,235 +21396,356.6,1162,236 +21397,356.6166666666667,1176,238 +21398,356.6333333333333,1191,239 +21399,356.65,1209,240 +21400,356.6666666666667,1227,241 +21401,356.68333333333334,1248,243 +21402,356.7,1269,244 +21403,356.71666666666664,1291,245 +21404,356.73333333333335,1314,246 +21405,356.75,1337,246 +21406,356.76666666666665,1360,246 +21407,356.7833333333333,1385,246 +21408,356.8,1410,246 +21409,356.81666666666666,1435,246 +21410,356.8333333333333,1461,246 +21411,356.85,1486,245 +21412,356.8666666666667,1511,244 +21413,356.8833333333333,1535,243 +21414,356.9,1559,241 +21415,356.9166666666667,1582,240 +21416,356.93333333333334,1604,238 +21417,356.95,1625,237 +21418,356.96666666666664,1645,235 +21419,356.98333333333335,1663,234 +21420,357.0,1680,232 +21421,357.01666666666665,1696,230 +21422,357.0333333333333,1710,229 +21423,357.05,1722,227 +21424,357.06666666666666,1733,226 +21425,357.0833333333333,1743,225 +21426,357.1,1750,223 +21427,357.1166666666667,1755,223 +21428,357.1333333333333,1758,222 +21429,357.15,1758,222 +21430,357.1666666666667,1758,222 +21431,357.18333333333334,1757,222 +21432,357.2,1753,223 +21433,357.21666666666664,1746,224 +21434,357.23333333333335,1739,225 +21435,357.25,1729,226 +21436,357.26666666666665,1717,227 +21437,357.2833333333333,1703,229 +21438,357.3,1689,230 +21439,357.31666666666666,1672,232 +21440,357.3333333333333,1654,234 +21441,357.35,1635,235 +21442,357.3666666666667,1615,237 +21443,357.3833333333333,1593,239 +21444,357.4,1571,240 +21445,357.4166666666667,1548,241 +21446,357.43333333333334,1524,243 +21447,357.45,1499,244 +21448,357.46666666666664,1475,245 +21449,357.48333333333335,1448,245 +21450,357.5,1423,246 +21451,357.51666666666665,1398,246 +21452,357.5333333333333,1373,246 +21453,357.55,1349,246 +21454,357.56666666666666,1326,246 +21455,357.5833333333333,1303,245 +21456,357.6,1280,244 +21457,357.6166666666667,1259,243 +21458,357.6333333333333,1238,241 +21459,357.65,1219,240 +21460,357.6666666666667,1201,239 +21461,357.68333333333334,1184,238 +21462,357.7,1169,237 +21463,357.71666666666664,1156,236 +21464,357.73333333333335,1144,235 +21465,357.75,1134,234 +21466,357.76666666666665,1126,233 +21467,357.7833333333333,1120,232 +21468,357.8,1115,232 +21469,357.81666666666666,1114,232 +21470,357.8333333333333,1114,232 +21471,357.85,1114,232 +21472,357.8666666666667,1117,232 +21473,357.8833333333333,1123,233 +21474,357.9,1130,233 +21475,357.9166666666667,1139,234 +21476,357.93333333333334,1150,235 +21477,357.95,1162,237 +21478,357.96666666666664,1177,238 +21479,357.98333333333335,1192,239 +21480,358.0,1210,241 +21481,358.01666666666665,1228,241 +21482,358.0333333333333,1248,243 +21483,358.05,1270,244 +21484,358.06666666666666,1292,245 +21485,358.0833333333333,1315,246 +21486,358.1,1338,247 +21487,358.1166666666667,1362,247 +21488,358.1333333333333,1386,247 +21489,358.15,1411,247 +21490,358.1666666666667,1437,246 +21491,358.18333333333334,1462,246 +21492,358.2,1487,245 +21493,358.21666666666664,1512,244 +21494,358.23333333333335,1536,243 +21495,358.25,1560,242 +21496,358.26666666666665,1583,241 +21497,358.2833333333333,1605,238 +21498,358.3,1625,237 +21499,358.31666666666666,1645,235 +21500,358.3333333333333,1663,234 +21501,358.35,1680,232 +21502,358.3666666666667,1696,230 +21503,358.3833333333333,1710,228 +21504,358.4,1723,227 +21505,358.4166666666667,1733,226 +21506,358.43333333333334,1742,225 +21507,358.45,1750,224 +21508,358.46666666666664,1754,223 +21509,358.48333333333335,1758,223 +21510,358.5,1758,223 +21511,358.51666666666665,1758,223 +21512,358.5333333333333,1756,223 +21513,358.55,1752,223 +21514,358.56666666666666,1746,224 +21515,358.5833333333333,1737,225 +21516,358.6,1728,226 +21517,358.6166666666667,1716,228 +21518,358.6333333333333,1703,229 +21519,358.65,1687,230 +21520,358.6666666666667,1671,232 +21521,358.68333333333334,1654,234 +21522,358.7,1634,236 +21523,358.71666666666664,1614,237 +21524,358.73333333333335,1592,239 +21525,358.75,1570,241 +21526,358.76666666666665,1547,242 +21527,358.7833333333333,1523,243 +21528,358.8,1498,244 +21529,358.81666666666666,1474,245 +21530,358.8333333333333,1448,246 +21531,358.85,1423,246 +21532,358.8666666666667,1398,246 +21533,358.8833333333333,1373,246 +21534,358.9,1349,246 +21535,358.9166666666667,1326,246 +21536,358.93333333333334,1302,245 +21537,358.95,1280,244 +21538,358.96666666666664,1258,243 +21539,358.98333333333335,1238,242 +21540,359.0,1218,241 +21541,359.01666666666665,1200,240 +21542,359.0333333333333,1184,238 +21543,359.05,1169,237 +21544,359.06666666666666,1155,236 +21545,359.0833333333333,1144,235 +21546,359.1,1134,234 +21547,359.1166666666667,1126,233 +21548,359.1333333333333,1120,232 +21549,359.15,1115,232 +21550,359.1666666666667,1114,232 +21551,359.18333333333334,1114,232 +21552,359.2,1114,232 +21553,359.21666666666664,1118,233 +21554,359.23333333333335,1123,233 +21555,359.25,1130,234 +21556,359.26666666666665,1140,235 +21557,359.2833333333333,1151,236 +21558,359.3,1163,237 +21559,359.31666666666666,1177,238 +21560,359.3333333333333,1193,240 +21561,359.35,1211,241 +21562,359.3666666666667,1230,242 +21563,359.3833333333333,1250,243 +21564,359.4,1271,245 +21565,359.4166666666667,1293,246 +21566,359.43333333333334,1316,246 +21567,359.45,1339,247 +21568,359.46666666666664,1363,247 +21569,359.48333333333335,1387,247 +21570,359.5,1412,247 +21571,359.51666666666665,1437,246 +21572,359.5333333333333,1463,246 +21573,359.55,1488,246 +21574,359.56666666666666,1512,245 +21575,359.5833333333333,1536,244 +21576,359.6,1560,242 +21577,359.6166666666667,1583,241 +21578,359.6333333333333,1604,239 +21579,359.65,1625,238 +21580,359.6666666666667,1645,236 +21581,359.68333333333334,1663,234 +21582,359.7,1680,233 +21583,359.71666666666664,1696,231 +21584,359.73333333333335,1710,229 +21585,359.75,1722,228 +21586,359.76666666666665,1733,227 +21587,359.7833333333333,1741,225 +21588,359.8,1749,224 +21589,359.81666666666666,1753,224 +21590,359.8333333333333,1757,223 +21591,359.85,1757,223 +21592,359.8666666666667,1757,223 +21593,359.8833333333333,1755,223 +21594,359.9,1750,224 +21595,359.9166666666667,1744,225 +21596,359.93333333333334,1736,226 +21597,359.95,1726,227 +21598,359.96666666666664,1714,228 +21599,359.98333333333335,1701,230 +21600,360.0,1686,231 +21601,360.01666666666665,1670,233 +21602,360.0333333333333,1652,235 +21603,360.05,1633,237 +21604,360.06666666666666,1612,238 +21605,360.0833333333333,1591,240 +21606,360.1,1568,241 +21607,360.1166666666667,1545,242 +21608,360.1333333333333,1521,243 +21609,360.15,1497,244 +21610,360.1666666666667,1472,245 +21611,360.18333333333334,1447,246 +21612,360.2,1422,246 +21613,360.21666666666664,1397,246 +21614,360.23333333333335,1372,246 +21615,360.25,1348,246 +21616,360.26666666666665,1324,245 +21617,360.2833333333333,1302,245 +21618,360.3,1279,244 +21619,360.31666666666666,1258,243 +21620,360.3333333333333,1237,241 +21621,360.35,1218,240 +21622,360.3666666666667,1200,239 +21623,360.3833333333333,1184,238 +21624,360.4,1169,237 +21625,360.4166666666667,1156,236 +21626,360.43333333333334,1144,235 +21627,360.45,1134,234 +21628,360.46666666666664,1126,233 +21629,360.48333333333335,1120,232 +21630,360.5,1116,232 +21631,360.51666666666665,1115,232 +21632,360.5333333333333,1115,232 +21633,360.55,1115,232 +21634,360.56666666666666,1118,233 +21635,360.5833333333333,1124,233 +21636,360.6,1132,234 +21637,360.6166666666667,1141,235 +21638,360.6333333333333,1152,236 +21639,360.65,1165,237 +21640,360.6666666666667,1178,238 +21641,360.68333333333334,1195,239 +21642,360.7,1212,241 +21643,360.71666666666664,1231,242 +21644,360.73333333333335,1251,243 +21645,360.75,1272,244 +21646,360.76666666666665,1294,246 +21647,360.7833333333333,1317,247 +21648,360.8,1340,247 +21649,360.81666666666666,1364,247 +21650,360.8333333333333,1388,247 +21651,360.85,1413,247 +21652,360.8666666666667,1438,246 +21653,360.8833333333333,1463,246 +21654,360.9,1488,245 +21655,360.9166666666667,1513,245 +21656,360.93333333333334,1537,243 +21657,360.95,1560,242 +21658,360.96666666666664,1583,241 +21659,360.98333333333335,1604,239 +21660,361.0,1625,237 +21661,361.01666666666665,1645,236 +21662,361.0333333333333,1663,234 +21663,361.05,1680,232 +21664,361.06666666666666,1695,231 +21665,361.0833333333333,1709,229 +21666,361.1,1721,228 +21667,361.1166666666667,1732,226 +21668,361.1333333333333,1741,225 +21669,361.15,1748,224 +21670,361.1666666666667,1753,224 +21671,361.18333333333334,1756,223 +21672,361.2,1756,223 +21673,361.21666666666664,1756,223 +21674,361.23333333333335,1754,223 +21675,361.25,1749,224 +21676,361.26666666666665,1743,225 +21677,361.2833333333333,1735,226 +21678,361.3,1725,227 +21679,361.31666666666666,1713,228 +21680,361.3333333333333,1700,230 +21681,361.35,1685,231 +21682,361.3666666666667,1668,233 +21683,361.3833333333333,1651,235 +21684,361.4,1631,237 +21685,361.4166666666667,1611,238 +21686,361.43333333333334,1590,240 +21687,361.45,1567,242 +21688,361.46666666666664,1544,243 +21689,361.48333333333335,1520,244 +21690,361.5,1496,245 +21691,361.51666666666665,1471,246 +21692,361.5333333333333,1446,246 +21693,361.55,1420,247 +21694,361.56666666666666,1396,247 +21695,361.5833333333333,1371,247 +21696,361.6,1348,247 +21697,361.6166666666667,1324,246 +21698,361.6333333333333,1301,245 +21699,361.65,1279,244 +21700,361.6666666666667,1257,243 +21701,361.68333333333334,1237,242 +21702,361.7,1218,240 +21703,361.71666666666664,1200,239 +21704,361.73333333333335,1184,238 +21705,361.75,1169,237 +21706,361.76666666666665,1156,236 +21707,361.7833333333333,1144,235 +21708,361.8,1135,234 +21709,361.81666666666666,1127,233 +21710,361.8333333333333,1121,233 +21711,361.85,1117,232 +21712,361.8666666666667,1116,232 +21713,361.8833333333333,1116,232 +21714,361.9,1116,232 +21715,361.9166666666667,1120,233 +21716,361.93333333333334,1125,233 +21717,361.95,1133,234 +21718,361.96666666666664,1142,235 +21719,361.98333333333335,1153,236 +21720,362.0,1166,237 +21721,362.01666666666665,1180,238 +21722,362.0333333333333,1196,240 +21723,362.05,1213,241 +21724,362.06666666666666,1232,242 +21725,362.0833333333333,1252,244 +21726,362.1,1273,244 +21727,362.1166666666667,1295,246 +21728,362.1333333333333,1318,246 +21729,362.15,1341,247 +21730,362.1666666666667,1364,247 +21731,362.18333333333334,1389,247 +21732,362.2,1414,247 +21733,362.21666666666664,1439,247 +21734,362.23333333333335,1464,246 +21735,362.25,1490,246 +21736,362.26666666666665,1513,245 +21737,362.2833333333333,1538,244 +21738,362.3,1561,242 +21739,362.31666666666666,1583,241 +21740,362.3333333333333,1605,239 +21741,362.35,1625,237 +21742,362.3666666666667,1645,235 +21743,362.3833333333333,1663,234 +21744,362.4,1680,232 +21745,362.4166666666667,1695,231 +21746,362.43333333333334,1709,229 +21747,362.45,1721,228 +21748,362.46666666666664,1731,226 +21749,362.48333333333335,1740,225 +21750,362.5,1747,224 +21751,362.51666666666665,1752,224 +21752,362.5333333333333,1755,223 +21753,362.55,1755,223 +21754,362.56666666666666,1755,223 +21755,362.5833333333333,1753,223 +21756,362.6,1748,224 +21757,362.6166666666667,1742,224 +21758,362.6333333333333,1734,225 +21759,362.65,1724,226 +21760,362.6666666666667,1712,228 +21761,362.68333333333334,1699,229 +21762,362.7,1684,231 +21763,362.71666666666664,1667,233 +21764,362.73333333333335,1649,234 +21765,362.75,1630,236 +21766,362.76666666666665,1610,237 +21767,362.7833333333333,1588,239 +21768,362.8,1566,241 +21769,362.81666666666666,1543,242 +21770,362.8333333333333,1519,243 +21771,362.85,1495,244 +21772,362.8666666666667,1470,245 +21773,362.8833333333333,1445,246 +21774,362.9,1419,246 +21775,362.9166666666667,1394,246 +21776,362.93333333333334,1370,246 +21777,362.95,1347,246 +21778,362.96666666666664,1323,246 +21779,362.98333333333335,1300,245 +21780,363.0,1278,244 +21781,363.01666666666665,1256,243 +21782,363.0333333333333,1237,242 +21783,363.05,1217,241 +21784,363.06666666666666,1200,240 +21785,363.0833333333333,1183,238 +21786,363.1,1169,237 +21787,363.1166666666667,1156,236 +21788,363.1333333333333,1145,235 +21789,363.15,1135,234 +21790,363.1666666666667,1127,233 +21791,363.18333333333334,1122,233 +21792,363.2,1118,232 +21793,363.21666666666664,1117,232 +21794,363.23333333333335,1117,232 +21795,363.25,1117,232 +21796,363.26666666666665,1121,233 +21797,363.2833333333333,1126,233 +21798,363.3,1134,234 +21799,363.31666666666666,1143,235 +21800,363.3333333333333,1154,236 +21801,363.35,1166,237 +21802,363.3666666666667,1181,239 +21803,363.3833333333333,1197,240 +21804,363.4,1214,241 +21805,363.4166666666667,1233,242 +21806,363.43333333333334,1253,243 +21807,363.45,1274,244 +21808,363.46666666666664,1296,246 +21809,363.48333333333335,1319,247 +21810,363.5,1342,247 +21811,363.51666666666665,1366,248 +21812,363.5333333333333,1391,248 +21813,363.55,1415,248 +21814,363.56666666666666,1440,247 +21815,363.5833333333333,1465,246 +21816,363.6,1491,245 +21817,363.6166666666667,1515,244 +21818,363.6333333333333,1539,243 +21819,363.65,1562,242 +21820,363.6666666666667,1584,240 +21821,363.68333333333334,1606,239 +21822,363.7,1626,237 +21823,363.71666666666664,1646,236 +21824,363.73333333333335,1664,234 +21825,363.75,1681,232 +21826,363.76666666666665,1695,231 +21827,363.7833333333333,1709,229 +21828,363.8,1721,228 +21829,363.81666666666666,1731,226 +21830,363.8333333333333,1740,226 +21831,363.85,1747,224 +21832,363.8666666666667,1751,224 +21833,363.8833333333333,1755,223 +21834,363.9,1755,223 +21835,363.9166666666667,1755,223 +21836,363.93333333333334,1752,224 +21837,363.95,1748,224 +21838,363.96666666666664,1741,225 +21839,363.98333333333335,1733,226 +21840,364.0,1723,227 +21841,364.01666666666665,1711,228 +21842,364.0333333333333,1698,230 +21843,364.05,1683,231 +21844,364.06666666666666,1666,233 +21845,364.0833333333333,1648,235 +21846,364.1,1629,236 +21847,364.1166666666667,1609,238 +21848,364.1333333333333,1587,239 +21849,364.15,1565,241 +21850,364.1666666666667,1542,242 +21851,364.18333333333334,1518,243 +21852,364.2,1494,244 +21853,364.21666666666664,1469,245 +21854,364.23333333333335,1444,245 +21855,364.25,1418,246 +21856,364.26666666666665,1394,246 +21857,364.2833333333333,1370,246 +21858,364.3,1346,246 +21859,364.31666666666666,1323,245 +21860,364.3333333333333,1300,245 +21861,364.35,1278,244 +21862,364.3666666666667,1256,243 +21863,364.3833333333333,1236,241 +21864,364.4,1217,240 +21865,364.4166666666667,1200,239 +21866,364.43333333333334,1184,238 +21867,364.45,1169,237 +21868,364.46666666666664,1156,236 +21869,364.48333333333335,1145,235 +21870,364.5,1135,234 +21871,364.51666666666665,1127,233 +21872,364.5333333333333,1122,233 +21873,364.55,1118,232 +21874,364.56666666666666,1117,232 +21875,364.5833333333333,1117,232 +21876,364.6,1117,232 +21877,364.6166666666667,1122,233 +21878,364.6333333333333,1127,233 +21879,364.65,1135,234 +21880,364.6666666666667,1144,235 +21881,364.68333333333334,1155,236 +21882,364.7,1168,237 +21883,364.71666666666664,1182,238 +21884,364.73333333333335,1198,240 +21885,364.75,1216,241 +21886,364.76666666666665,1234,242 +21887,364.7833333333333,1254,243 +21888,364.8,1276,245 +21889,364.81666666666666,1297,245 +21890,364.8333333333333,1320,246 +21891,364.85,1344,247 +21892,364.8666666666667,1367,247 +21893,364.8833333333333,1391,247 +21894,364.9,1416,247 +21895,364.9166666666667,1441,247 +21896,364.93333333333334,1466,246 +21897,364.95,1491,245 +21898,364.96666666666664,1515,244 +21899,364.98333333333335,1539,243 +21900,365.0,1562,242 +21901,365.01666666666665,1585,241 +21902,365.0333333333333,1606,239 +21903,365.05,1627,238 +21904,365.06666666666666,1646,236 +21905,365.0833333333333,1664,234 +21906,365.1,1680,232 +21907,365.1166666666667,1696,231 +21908,365.1333333333333,1709,229 +21909,365.15,1721,227 +21910,365.1666666666667,1731,226 +21911,365.18333333333334,1740,225 +21912,365.2,1746,224 +21913,365.21666666666664,1751,223 +21914,365.23333333333335,1754,223 +21915,365.25,1754,223 +21916,365.26666666666665,1754,223 +21917,365.2833333333333,1751,223 +21918,365.3,1747,224 +21919,365.31666666666666,1740,225 +21920,365.3333333333333,1732,226 +21921,365.35,1722,227 +21922,365.3666666666667,1710,228 +21923,365.3833333333333,1697,230 +21924,365.4,1682,231 +21925,365.4166666666667,1665,232 +21926,365.43333333333334,1647,234 +21927,365.45,1628,236 +21928,365.46666666666664,1608,238 +21929,365.48333333333335,1586,239 +21930,365.5,1564,240 +21931,365.51666666666665,1541,241 +21932,365.5333333333333,1517,243 +21933,365.55,1493,244 +21934,365.56666666666666,1468,244 +21935,365.5833333333333,1443,245 +21936,365.6,1418,246 +21937,365.6166666666667,1394,246 +21938,365.6333333333333,1369,246 +21939,365.65,1346,245 +21940,365.6666666666667,1323,245 +21941,365.68333333333334,1299,244 +21942,365.7,1277,243 +21943,365.71666666666664,1256,242 +21944,365.73333333333335,1236,241 +21945,365.75,1218,240 +21946,365.76666666666665,1200,239 +21947,365.7833333333333,1184,238 +21948,365.8,1169,237 +21949,365.81666666666666,1157,235 +21950,365.8333333333333,1145,235 +21951,365.85,1136,234 +21952,365.8666666666667,1129,233 +21953,365.8833333333333,1123,233 +21954,365.9,1119,232 +21955,365.9166666666667,1119,232 +21956,365.93333333333334,1119,232 +21957,365.95,1119,232 +21958,365.96666666666664,1123,233 +21959,365.98333333333335,1129,233 +21960,366.0,1136,234 +21961,366.01666666666665,1145,235 +21962,366.0333333333333,1156,236 +21963,366.05,1169,237 +21964,366.06666666666666,1184,239 +21965,366.0833333333333,1200,240 +21966,366.1,1217,241 +21967,366.1166666666667,1236,242 +21968,366.1333333333333,1256,243 +21969,366.15,1277,245 +21970,366.1666666666667,1300,246 +21971,366.18333333333334,1322,246 +21972,366.2,1345,247 +21973,366.21666666666664,1368,247 +21974,366.23333333333335,1393,247 +21975,366.25,1417,247 +21976,366.26666666666665,1443,246 +21977,366.2833333333333,1468,246 +21978,366.3,1492,245 +21979,366.31666666666666,1517,244 +21980,366.3333333333333,1540,243 +21981,366.35,1563,242 +21982,366.3666666666667,1586,240 +21983,366.3833333333333,1607,239 +21984,366.4,1627,237 +21985,366.4166666666667,1646,235 +21986,366.43333333333334,1664,234 +21987,366.45,1681,232 +21988,366.46666666666664,1696,230 +21989,366.48333333333335,1709,229 +21990,366.5,1721,228 +21991,366.51666666666665,1731,226 +21992,366.5333333333333,1739,225 +21993,366.55,1745,224 +21994,366.56666666666666,1750,224 +21995,366.5833333333333,1753,223 +21996,366.6,1753,223 +21997,366.6166666666667,1753,223 +21998,366.6333333333333,1750,224 +21999,366.65,1746,224 +22000,366.6666666666667,1739,225 +22001,366.68333333333334,1731,226 +22002,366.7,1721,227 +22003,366.71666666666664,1709,228 +22004,366.73333333333335,1695,230 +22005,366.75,1680,231 +22006,366.76666666666665,1664,233 +22007,366.7833333333333,1646,234 +22008,366.8,1627,236 +22009,366.81666666666666,1606,238 +22010,366.8333333333333,1585,239 +22011,366.85,1563,241 +22012,366.8666666666667,1540,242 +22013,366.8833333333333,1516,243 +22014,366.9,1492,244 +22015,366.9166666666667,1467,245 +22016,366.93333333333334,1442,245 +22017,366.95,1417,246 +22018,366.96666666666664,1393,246 +22019,366.98333333333335,1369,246 +22020,367.0,1346,245 +22021,367.01666666666665,1322,245 +22022,367.0333333333333,1299,244 +22023,367.05,1277,243 +22024,367.06666666666666,1256,242 +22025,367.0833333333333,1236,241 +22026,367.1,1218,240 +22027,367.1166666666667,1200,239 +22028,367.1333333333333,1184,238 +22029,367.15,1170,237 +22030,367.1666666666667,1157,236 +22031,367.18333333333334,1146,234 +22032,367.2,1137,234 +22033,367.21666666666664,1129,233 +22034,367.23333333333335,1124,233 +22035,367.25,1120,232 +22036,367.26666666666665,1120,232 +22037,367.2833333333333,1120,232 +22038,367.3,1120,232 +22039,367.31666666666666,1124,233 +22040,367.3333333333333,1129,233 +22041,367.35,1137,234 +22042,367.3666666666667,1147,235 +22043,367.3833333333333,1158,236 +22044,367.4,1171,237 +22045,367.4166666666667,1185,238 +22046,367.43333333333334,1201,240 +22047,367.45,1219,241 +22048,367.46666666666664,1238,242 +22049,367.48333333333335,1258,243 +22050,367.5,1278,244 +22051,367.51666666666665,1301,246 +22052,367.5333333333333,1323,246 +22053,367.55,1347,246 +22054,367.56666666666666,1370,247 +22055,367.5833333333333,1394,247 +22056,367.6,1418,247 +22057,367.6166666666667,1443,246 +22058,367.6333333333333,1468,246 +22059,367.65,1493,245 +22060,367.6666666666667,1517,244 +22061,367.68333333333334,1541,243 +22062,367.7,1563,242 +22063,367.71666666666664,1586,240 +22064,367.73333333333335,1607,239 +22065,367.75,1627,237 +22066,367.76666666666665,1646,235 +22067,367.7833333333333,1664,233 +22068,367.8,1680,232 +22069,367.81666666666666,1695,230 +22070,367.8333333333333,1709,229 +22071,367.85,1721,228 +22072,367.8666666666667,1730,226 +22073,367.8833333333333,1739,225 +22074,367.9,1745,224 +22075,367.9166666666667,1750,224 +22076,367.93333333333334,1752,223 +22077,367.95,1752,223 +22078,367.96666666666664,1752,223 +22079,367.98333333333335,1749,223 +22080,368.0,1744,224 +22081,368.01666666666665,1738,225 +22082,368.0333333333333,1730,226 +22083,368.05,1720,227 +22084,368.06666666666666,1708,228 +22085,368.0833333333333,1694,230 +22086,368.1,1679,232 +22087,368.1166666666667,1663,233 +22088,368.1333333333333,1645,235 +22089,368.15,1625,236 +22090,368.1666666666667,1605,238 +22091,368.18333333333334,1584,239 +22092,368.2,1561,241 +22093,368.21666666666664,1539,242 +22094,368.23333333333335,1515,243 +22095,368.25,1491,244 +22096,368.26666666666665,1466,245 +22097,368.2833333333333,1441,245 +22098,368.3,1416,246 +22099,368.31666666666666,1392,246 +22100,368.3333333333333,1367,246 +22101,368.35,1345,246 +22102,368.3666666666667,1322,245 +22103,368.3833333333333,1299,244 +22104,368.4,1277,243 +22105,368.4166666666667,1256,243 +22106,368.43333333333334,1236,242 +22107,368.45,1218,240 +22108,368.46666666666664,1200,239 +22109,368.48333333333335,1185,238 +22110,368.5,1170,237 +22111,368.51666666666665,1158,236 +22112,368.5333333333333,1147,235 +22113,368.55,1137,235 +22114,368.56666666666666,1130,234 +22115,368.5833333333333,1124,233 +22116,368.6,1121,233 +22117,368.6166666666667,1121,233 +22118,368.6333333333333,1121,233 +22119,368.65,1121,233 +22120,368.6666666666667,1125,233 +22121,368.68333333333334,1131,234 +22122,368.7,1139,235 +22123,368.71666666666664,1148,235 +22124,368.73333333333335,1159,237 +22125,368.75,1172,238 +22126,368.76666666666665,1187,239 +22127,368.7833333333333,1203,240 +22128,368.8,1220,241 +22129,368.81666666666666,1239,243 +22130,368.8333333333333,1259,244 +22131,368.85,1280,245 +22132,368.8666666666667,1302,246 +22133,368.8833333333333,1325,246 +22134,368.9,1348,247 +22135,368.9166666666667,1371,247 +22136,368.93333333333334,1396,247 +22137,368.95,1420,247 +22138,368.96666666666664,1445,247 +22139,368.98333333333335,1470,246 +22140,369.0,1494,245 +22141,369.01666666666665,1518,244 +22142,369.0333333333333,1542,243 +22143,369.05,1564,242 +22144,369.06666666666666,1586,240 +22145,369.0833333333333,1607,239 +22146,369.1,1628,237 +22147,369.1166666666667,1647,236 +22148,369.1333333333333,1664,234 +22149,369.15,1681,232 +22150,369.1666666666667,1696,230 +22151,369.18333333333334,1708,229 +22152,369.2,1720,227 +22153,369.21666666666664,1730,226 +22154,369.23333333333335,1738,225 +22155,369.25,1745,224 +22156,369.26666666666665,1749,224 +22157,369.2833333333333,1752,223 +22158,369.3,1752,223 +22159,369.31666666666666,1752,223 +22160,369.3333333333333,1749,224 +22161,369.35,1744,224 +22162,369.3666666666667,1737,225 +22163,369.3833333333333,1729,226 +22164,369.4,1718,227 +22165,369.4166666666667,1707,229 +22166,369.43333333333334,1693,230 +22167,369.45,1678,231 +22168,369.46666666666664,1662,233 +22169,369.48333333333335,1643,235 +22170,369.5,1624,236 +22171,369.51666666666665,1604,238 +22172,369.5333333333333,1583,239 +22173,369.55,1561,241 +22174,369.56666666666666,1538,242 +22175,369.5833333333333,1514,244 +22176,369.6,1490,244 +22177,369.6166666666667,1465,245 +22178,369.6333333333333,1440,246 +22179,369.65,1416,247 +22180,369.6666666666667,1391,247 +22181,369.68333333333334,1367,247 +22182,369.7,1345,246 +22183,369.71666666666664,1321,246 +22184,369.73333333333335,1299,245 +22185,369.75,1277,244 +22186,369.76666666666665,1256,243 +22187,369.7833333333333,1237,241 +22188,369.8,1218,240 +22189,369.81666666666666,1201,239 +22190,369.8333333333333,1185,238 +22191,369.85,1171,237 +22192,369.8666666666667,1158,236 +22193,369.8833333333333,1148,235 +22194,369.9,1138,234 +22195,369.9166666666667,1131,234 +22196,369.93333333333334,1126,233 +22197,369.95,1122,233 +22198,369.96666666666664,1122,233 +22199,369.98333333333335,1122,233 +22200,370.0,1123,233 +22201,370.01666666666665,1127,234 +22202,370.0333333333333,1132,234 +22203,370.05,1140,235 +22204,370.06666666666666,1150,236 +22205,370.0833333333333,1161,237 +22206,370.1,1174,238 +22207,370.1166666666667,1188,239 +22208,370.1333333333333,1204,240 +22209,370.15,1222,242 +22210,370.1666666666667,1241,243 +22211,370.18333333333334,1261,245 +22212,370.2,1282,245 +22213,370.21666666666664,1304,246 +22214,370.23333333333335,1327,247 +22215,370.25,1350,248 +22216,370.26666666666665,1373,248 +22217,370.2833333333333,1397,248 +22218,370.3,1421,248 +22219,370.31666666666666,1446,247 +22220,370.3333333333333,1471,247 +22221,370.35,1495,246 +22222,370.3666666666667,1519,245 +22223,370.3833333333333,1543,244 +22224,370.4,1565,243 +22225,370.4166666666667,1587,241 +22226,370.43333333333334,1608,239 +22227,370.45,1628,238 +22228,370.46666666666664,1647,236 +22229,370.48333333333335,1665,235 +22230,370.5,1681,233 +22231,370.51666666666665,1696,232 +22232,370.5333333333333,1709,230 +22233,370.55,1720,229 +22234,370.56666666666666,1730,227 +22235,370.5833333333333,1738,226 +22236,370.6,1745,226 +22237,370.6166666666667,1749,225 +22238,370.6333333333333,1751,225 +22239,370.65,1751,225 +22240,370.6666666666667,1751,225 +22241,370.68333333333334,1748,225 +22242,370.7,1743,226 +22243,370.71666666666664,1736,227 +22244,370.73333333333335,1728,228 +22245,370.75,1718,229 +22246,370.76666666666665,1706,230 +22247,370.7833333333333,1692,232 +22248,370.8,1677,233 +22249,370.81666666666666,1661,235 +22250,370.8333333333333,1643,236 +22251,370.85,1624,238 +22252,370.8666666666667,1603,239 +22253,370.8833333333333,1582,241 +22254,370.9,1560,242 +22255,370.9166666666667,1537,243 +22256,370.93333333333334,1513,244 +22257,370.95,1489,245 +22258,370.96666666666664,1465,246 +22259,370.98333333333335,1441,246 +22260,371.0,1416,247 +22261,371.01666666666665,1391,247 +22262,371.0333333333333,1367,247 +22263,371.05,1344,247 +22264,371.06666666666666,1321,246 +22265,371.0833333333333,1299,245 +22266,371.1,1277,245 +22267,371.1166666666667,1256,243 +22268,371.1333333333333,1237,242 +22269,371.15,1218,241 +22270,371.1666666666667,1201,240 +22271,371.18333333333334,1185,239 +22272,371.2,1171,237 +22273,371.21666666666664,1158,236 +22274,371.23333333333335,1148,235 +22275,371.25,1139,235 +22276,371.26666666666665,1132,234 +22277,371.2833333333333,1126,233 +22278,371.3,1123,233 +22279,371.31666666666666,1123,233 +22280,371.3333333333333,1123,233 +22281,371.35,1123,233 +22282,371.3666666666667,1127,234 +22283,371.3833333333333,1134,234 +22284,371.4,1141,235 +22285,371.4166666666667,1151,236 +22286,371.43333333333334,1162,237 +22287,371.45,1175,238 +22288,371.46666666666664,1190,239 +22289,371.48333333333335,1206,240 +22290,371.5,1223,242 +22291,371.51666666666665,1242,243 +22292,371.5333333333333,1262,244 +22293,371.55,1283,245 +22294,371.56666666666666,1305,246 +22295,371.5833333333333,1328,247 +22296,371.6,1350,247 +22297,371.6166666666667,1374,247 +22298,371.6333333333333,1398,247 +22299,371.65,1422,247 +22300,371.6666666666667,1446,247 +22301,371.68333333333334,1471,246 +22302,371.7,1495,245 +22303,371.71666666666664,1520,244 +22304,371.73333333333335,1543,243 +22305,371.75,1566,242 +22306,371.76666666666665,1588,240 +22307,371.7833333333333,1608,238 +22308,371.8,1628,236 +22309,371.81666666666666,1647,235 +22310,371.8333333333333,1665,233 +22311,371.85,1680,232 +22312,371.8666666666667,1695,231 +22313,371.8833333333333,1708,229 +22314,371.9,1720,227 +22315,371.9166666666667,1730,226 +22316,371.93333333333334,1737,225 +22317,371.95,1744,224 +22318,371.96666666666664,1748,224 +22319,371.98333333333335,1750,224 +22320,372.0,1750,224 +22321,372.01666666666665,1750,224 +22322,372.0333333333333,1747,224 +22323,372.05,1742,224 +22324,372.06666666666666,1735,225 +22325,372.0833333333333,1727,226 +22326,372.1,1716,228 +22327,372.1166666666667,1704,229 +22328,372.1333333333333,1691,230 +22329,372.15,1676,232 +22330,372.1666666666667,1659,233 +22331,372.18333333333334,1641,235 +22332,372.2,1622,236 +22333,372.21666666666664,1602,238 +22334,372.23333333333335,1580,239 +22335,372.25,1558,241 +22336,372.26666666666665,1535,243 +22337,372.2833333333333,1512,243 +22338,372.3,1488,244 +22339,372.31666666666666,1463,245 +22340,372.3333333333333,1438,246 +22341,372.35,1414,246 +22342,372.3666666666667,1390,246 +22343,372.3833333333333,1366,246 +22344,372.4,1343,245 +22345,372.4166666666667,1320,245 +22346,372.43333333333334,1298,245 +22347,372.45,1276,244 +22348,372.46666666666664,1256,243 +22349,372.48333333333335,1236,241 +22350,372.5,1218,240 +22351,372.51666666666665,1201,239 +22352,372.5333333333333,1185,238 +22353,372.55,1171,237 +22354,372.56666666666666,1159,236 +22355,372.5833333333333,1148,235 +22356,372.6,1139,234 +22357,372.6166666666667,1132,234 +22358,372.6333333333333,1127,234 +22359,372.65,1124,233 +22360,372.6666666666667,1124,233 +22361,372.68333333333334,1124,233 +22362,372.7,1125,234 +22363,372.71666666666664,1129,234 +22364,372.73333333333335,1135,234 +22365,372.75,1142,235 +22366,372.76666666666665,1152,236 +22367,372.7833333333333,1163,237 +22368,372.8,1176,238 +22369,372.81666666666666,1191,239 +22370,372.8333333333333,1207,241 +22371,372.85,1224,242 +22372,372.8666666666667,1243,243 +22373,372.8833333333333,1263,244 +22374,372.9,1284,245 +22375,372.9166666666667,1306,246 +22376,372.93333333333334,1329,246 +22377,372.95,1351,247 +22378,372.96666666666664,1374,247 +22379,372.98333333333335,1398,247 +22380,373.0,1423,247 +22381,373.01666666666665,1447,246 +22382,373.0333333333333,1472,246 +22383,373.05,1496,245 +22384,373.06666666666666,1520,244 +22385,373.0833333333333,1543,243 +22386,373.1,1566,242 +22387,373.1166666666667,1588,240 +22388,373.1333333333333,1608,239 +22389,373.15,1628,237 +22390,373.1666666666667,1647,235 +22391,373.18333333333334,1664,233 +22392,373.2,1680,232 +22393,373.21666666666664,1694,231 +22394,373.23333333333335,1707,229 +22395,373.25,1718,228 +22396,373.26666666666665,1729,227 +22397,373.2833333333333,1736,226 +22398,373.3,1742,225 +22399,373.31666666666666,1747,224 +22400,373.3333333333333,1749,224 +22401,373.35,1749,224 +22402,373.3666666666667,1749,224 +22403,373.3833333333333,1745,225 +22404,373.4,1740,225 diff --git a/single_pdl/data/548.csv b/single_pdl/data/548.csv new file mode 100644 index 0000000..3e5cdbd --- /dev/null +++ b/single_pdl/data/548.csv @@ -0,0 +1,26624 @@ +frame,time,x,y,mm/pixel,x/mm,y/mm +0,0,1865,421,0.178571429,333.0357143,75.17857143 +1,0.016666667,1873,420,,334.4642857,75 +2,0.033333333,1873,420,,334.4642857,75 +3,0.05,1876,420,,335,75 +4,0.066666667,1879,420,,335.5357143,75 +5,0.083333333,1881,420,,335.8928571,75 +6,0.1,1881,420,,335.8928571,75 +7,0.116666667,1881,420,,335.8928571,75 +8,0.133333333,1876,420,,335,75 +9,0.15,1870,421,,333.9285714,75.17857143 +10,0.166666667,1862,422,,332.5,75.35714286 +11,0.183333333,1851,424,,330.5357143,75.71428571 +12,0.2,1838,426,,328.2142857,76.07142857 +13,0.216666667,1822,428,,325.3571429,76.42857143 +14,0.233333333,1805,430,,322.3214286,76.78571429 +15,0.25,1785,432,,318.75,77.14285714 +16,0.266666667,1764,435,,315,77.67857143 +17,0.283333333,1741,438,,310.8928571,78.21428571 +18,0.3,1717,440,,306.6071429,78.57142857 +19,0.316666667,1691,442,,301.9642857,78.92857143 +20,0.333333333,1663,445,,296.9642857,79.46428571 +21,0.35,1634,447,,291.7857143,79.82142857 +22,0.366666667,1604,450,,286.4285714,80.35714286 +23,0.383333333,1573,451,,280.8928571,80.53571429 +24,0.4,1541,453,,275.1785714,80.89285714 +25,0.416666667,1508,454,,269.2857143,81.07142857 +26,0.433333333,1475,455,,263.3928571,81.25 +27,0.45,1440,456,,257.1428571,81.42857143 +28,0.466666667,1405,457,,250.8928571,81.60714286 +29,0.483333333,1371,457,,244.8214286,81.60714286 +30,0.5,1338,457,,238.9285714,81.60714286 +31,0.516666667,1304,456,,232.8571429,81.42857143 +32,0.533333333,1271,455,,226.9642857,81.25 +33,0.55,1238,453,,221.0714286,80.89285714 +34,0.566666667,1206,451,,215.3571429,80.53571429 +35,0.583333333,1176,450,,210,80.35714286 +36,0.6,1146,448,,204.6428571,80 +37,0.616666667,1118,445,,199.6428571,79.46428571 +38,0.633333333,1091,443,,194.8214286,79.10714286 +39,0.65,1065,440,,190.1785714,78.57142857 +40,0.666666667,1041,438,,185.8928571,78.21428571 +41,0.683333333,1019,436,,181.9642857,77.85714286 +42,0.7,999,433,,178.3928571,77.32142857 +43,0.716666667,980,431,,175,76.96428571 +44,0.733333333,964,429,,172.1428571,76.60714286 +45,0.75,950,427,,169.6428571,76.25 +46,0.766666667,939,425,,167.6785714,75.89285714 +47,0.783333333,929,424,,165.8928571,75.71428571 +48,0.8,922,423,,164.6428571,75.53571429 +49,0.816666667,916,422,,163.5714286,75.35714286 +50,0.833333333,916,422,,163.5714286,75.35714286 +51,0.85,916,422,,163.5714286,75.35714286 +52,0.866666667,917,422,,163.75,75.35714286 +53,0.883333333,922,423,,164.6428571,75.53571429 +54,0.9,928,424,,165.7142857,75.71428571 +55,0.916666667,938,425,,167.5,75.89285714 +56,0.933333333,949,427,,169.4642857,76.25 +57,0.95,963,429,,171.9642857,76.60714286 +58,0.966666667,980,431,,175,76.96428571 +59,0.983333333,998,434,,178.2142857,77.5 +60,1,1018,436,,181.7857143,77.85714286 +61,1.016666667,1040,439,,185.7142857,78.39285714 +62,1.033333333,1064,441,,190,78.75 +63,1.05,1089,444,,194.4642857,79.28571429 +64,1.066666667,1116,446,,199.2857143,79.64285714 +65,1.083333333,1144,449,,204.2857143,80.17857143 +66,1.1,1174,451,,209.6428571,80.53571429 +67,1.116666667,1205,453,,215.1785714,80.89285714 +68,1.133333333,1236,455,,220.7142857,81.25 +69,1.15,1269,456,,226.6071429,81.42857143 +70,1.166666667,1302,457,,232.5,81.60714286 +71,1.183333333,1336,458,,238.5714286,81.78571429 +72,1.2,1370,458,,244.6428571,81.78571429 +73,1.216666667,1404,458,,250.7142857,81.78571429 +74,1.233333333,1437,458,,256.6071429,81.78571429 +75,1.25,1471,457,,262.6785714,81.60714286 +76,1.266666667,1504,456,,268.5714286,81.42857143 +77,1.283333333,1537,455,,274.4642857,81.25 +78,1.3,1569,454,,280.1785714,81.07142857 +79,1.316666667,1601,452,,285.8928571,80.71428571 +80,1.333333333,1631,450,,291.25,80.35714286 +81,1.35,1660,448,,296.4285714,80 +82,1.366666667,1687,445,,301.25,79.46428571 +83,1.383333333,1713,442,,305.8928571,78.92857143 +84,1.4,1738,440,,310.3571429,78.57142857 +85,1.416666667,1762,437,,314.6428571,78.03571429 +86,1.433333333,1783,435,,318.3928571,77.67857143 +87,1.45,1803,432,,321.9642857,77.14285714 +88,1.466666667,1820,430,,325,76.78571429 +89,1.483333333,1835,428,,327.6785714,76.42857143 +90,1.5,1849,426,,330.1785714,76.07142857 +91,1.516666667,1860,425,,332.1428571,75.89285714 +92,1.533333333,1869,423,,333.75,75.53571429 +93,1.55,1876,422,,335,75.35714286 +94,1.566666667,1880,422,,335.7142857,75.35714286 +95,1.583333333,1880,422,,335.7142857,75.35714286 +96,1.6,1880,422,,335.7142857,75.35714286 +97,1.616666667,1879,422,,335.5357143,75.35714286 +98,1.633333333,1874,422,,334.6428571,75.35714286 +99,1.65,1867,423,,333.3928571,75.53571429 +100,1.666666667,1857,424,,331.6071429,75.71428571 +101,1.683333333,1846,426,,329.6428571,76.07142857 +102,1.7,1832,428,,327.1428571,76.42857143 +103,1.716666667,1815,430,,324.1071429,76.78571429 +104,1.733333333,1797,432,,320.8928571,77.14285714 +105,1.75,1777,435,,317.3214286,77.67857143 +106,1.766666667,1755,437,,313.3928571,78.03571429 +107,1.783333333,1732,439,,309.2857143,78.39285714 +108,1.8,1706,442,,304.6428571,78.92857143 +109,1.816666667,1679,444,,299.8214286,79.28571429 +110,1.833333333,1651,447,,294.8214286,79.82142857 +111,1.85,1622,449,,289.6428571,80.17857143 +112,1.866666667,1591,451,,284.1071429,80.53571429 +113,1.883333333,1560,452,,278.5714286,80.71428571 +114,1.9,1528,454,,272.8571429,81.07142857 +115,1.916666667,1495,455,,266.9642857,81.25 +116,1.933333333,1461,456,,260.8928571,81.42857143 +117,1.95,1427,456,,254.8214286,81.42857143 +118,1.966666667,1394,457,,248.9285714,81.60714286 +119,1.983333333,1360,457,,242.8571429,81.60714286 +120,2,1326,457,,236.7857143,81.60714286 +121,2.016666667,1293,456,,230.8928571,81.42857143 +122,2.033333333,1260,454,,225,81.07142857 +123,2.05,1227,452,,219.1071429,80.71428571 +124,2.066666667,1196,451,,213.5714286,80.53571429 +125,2.083333333,1166,449,,208.2142857,80.17857143 +126,2.1,1136,447,,202.8571429,79.82142857 +127,2.116666667,1109,444,,198.0357143,79.28571429 +128,2.133333333,1083,442,,193.3928571,78.92857143 +129,2.15,1057,440,,188.75,78.57142857 +130,2.166666667,1035,437,,184.8214286,78.03571429 +131,2.183333333,1013,435,,180.8928571,77.67857143 +132,2.2,994,432,,177.5,77.14285714 +133,2.216666667,977,430,,174.4642857,76.78571429 +134,2.233333333,961,428,,171.6071429,76.42857143 +135,2.25,948,426,,169.2857143,76.07142857 +136,2.266666667,937,425,,167.3214286,75.89285714 +137,2.283333333,928,423,,165.7142857,75.53571429 +138,2.3,922,423,,164.6428571,75.53571429 +139,2.316666667,918,422,,163.9285714,75.35714286 +140,2.333333333,918,422,,163.9285714,75.35714286 +141,2.35,918,422,,163.9285714,75.35714286 +142,2.366666667,921,423,,164.4642857,75.53571429 +143,2.383333333,927,423,,165.5357143,75.53571429 +144,2.4,935,425,,166.9642857,75.89285714 +145,2.416666667,945,426,,168.75,76.07142857 +146,2.433333333,957,428,,170.8928571,76.42857143 +147,2.45,972,429,,173.5714286,76.60714286 +148,2.466666667,989,432,,176.6071429,77.14285714 +149,2.483333333,1008,434,,180,77.5 +150,2.5,1029,437,,183.75,78.03571429 +151,2.516666667,1051,439,,187.6785714,78.39285714 +152,2.533333333,1075,442,,191.9642857,78.92857143 +153,2.55,1101,444,,196.6071429,79.28571429 +154,2.566666667,1129,447,,201.6071429,79.82142857 +155,2.583333333,1157,449,,206.6071429,80.17857143 +156,2.6,1188,451,,212.1428571,80.53571429 +157,2.616666667,1219,453,,217.6785714,80.89285714 +158,2.633333333,1250,455,,223.2142857,81.25 +159,2.65,1283,456,,229.1071429,81.42857143 +160,2.666666667,1316,457,,235,81.60714286 +161,2.683333333,1350,458,,241.0714286,81.78571429 +162,2.7,1383,458,,246.9642857,81.78571429 +163,2.716666667,1417,458,,253.0357143,81.78571429 +164,2.733333333,1450,458,,258.9285714,81.78571429 +165,2.75,1483,457,,264.8214286,81.60714286 +166,2.766666667,1515,456,,270.5357143,81.42857143 +167,2.783333333,1548,455,,276.4285714,81.25 +168,2.8,1580,453,,282.1428571,80.89285714 +169,2.816666667,1611,451,,287.6785714,80.53571429 +170,2.833333333,1641,448,,293.0357143,80 +171,2.85,1670,446,,298.2142857,79.64285714 +172,2.866666667,1697,443,,303.0357143,79.10714286 +173,2.883333333,1722,441,,307.5,78.75 +174,2.9,1747,438,,311.9642857,78.21428571 +175,2.916666667,1769,436,,315.8928571,77.85714286 +176,2.933333333,1790,434,,319.6428571,77.5 +177,2.95,1809,431,,323.0357143,76.96428571 +178,2.966666667,1825,429,,325.8928571,76.60714286 +179,2.983333333,1840,426,,328.5714286,76.07142857 +180,3,1853,425,,330.8928571,75.89285714 +181,3.016666667,1863,423,,332.6785714,75.53571429 +182,3.033333333,1871,422,,334.1071429,75.35714286 +183,3.05,1877,421,,335.1785714,75.17857143 +184,3.066666667,1880,421,,335.7142857,75.17857143 +185,3.083333333,1880,421,,335.7142857,75.17857143 +186,3.1,1880,421,,335.7142857,75.17857143 +187,3.116666667,1876,421,,335,75.17857143 +188,3.133333333,1870,422,,333.9285714,75.35714286 +189,3.15,1862,423,,332.5,75.53571429 +190,3.166666667,1852,424,,330.7142857,75.71428571 +191,3.183333333,1839,426,,328.3928571,76.07142857 +192,3.2,1824,428,,325.7142857,76.42857143 +193,3.216666667,1808,430,,322.8571429,76.78571429 +194,3.233333333,1789,433,,319.4642857,77.32142857 +195,3.25,1768,436,,315.7142857,77.85714286 +196,3.266666667,1746,438,,311.7857143,78.21428571 +197,3.283333333,1721,440,,307.3214286,78.57142857 +198,3.3,1695,443,,302.6785714,79.10714286 +199,3.316666667,1668,446,,297.8571429,79.64285714 +200,3.333333333,1640,448,,292.8571429,80 +201,3.35,1610,450,,287.5,80.35714286 +202,3.366666667,1579,452,,281.9642857,80.71428571 +203,3.383333333,1547,454,,276.25,81.07142857 +204,3.4,1515,455,,270.5357143,81.25 +205,3.416666667,1482,456,,264.6428571,81.42857143 +206,3.433333333,1449,457,,258.75,81.60714286 +207,3.45,1414,457,,252.5,81.60714286 +208,3.466666667,1381,457,,246.6071429,81.60714286 +209,3.483333333,1347,457,,240.5357143,81.60714286 +210,3.5,1314,457,,234.6428571,81.60714286 +211,3.516666667,1281,456,,228.75,81.42857143 +212,3.533333333,1248,455,,222.8571429,81.25 +213,3.55,1216,453,,217.1428571,80.89285714 +214,3.566666667,1185,451,,211.6071429,80.53571429 +215,3.583333333,1156,449,,206.4285714,80.17857143 +216,3.6,1127,447,,201.25,79.82142857 +217,3.616666667,1099,445,,196.25,79.46428571 +218,3.633333333,1073,442,,191.6071429,78.92857143 +219,3.65,1049,439,,187.3214286,78.39285714 +220,3.666666667,1027,437,,183.3928571,78.03571429 +221,3.683333333,1006,435,,179.6428571,77.67857143 +222,3.7,988,433,,176.4285714,77.32142857 +223,3.716666667,971,431,,173.3928571,76.96428571 +224,3.733333333,957,429,,170.8928571,76.60714286 +225,3.75,944,427,,168.5714286,76.25 +226,3.766666667,934,426,,166.7857143,76.07142857 +227,3.783333333,927,424,,165.5357143,75.71428571 +228,3.8,922,424,,164.6428571,75.71428571 +229,3.816666667,920,424,,164.2857143,75.71428571 +230,3.833333333,920,424,,164.2857143,75.71428571 +231,3.85,920,424,,164.2857143,75.71428571 +232,3.866666667,925,424,,165.1785714,75.71428571 +233,3.883333333,931,425,,166.25,75.89285714 +234,3.9,940,427,,167.8571429,76.25 +235,3.916666667,951,428,,169.8214286,76.42857143 +236,3.933333333,965,430,,172.3214286,76.78571429 +237,3.95,980,432,,175,77.14285714 +238,3.966666667,998,434,,178.2142857,77.5 +239,3.983333333,1018,436,,181.7857143,77.85714286 +240,4,1039,439,,185.5357143,78.39285714 +241,4.016666667,1063,441,,189.8214286,78.75 +242,4.033333333,1088,444,,194.2857143,79.28571429 +243,4.05,1114,446,,198.9285714,79.64285714 +244,4.066666667,1142,449,,203.9285714,80.17857143 +245,4.083333333,1171,451,,209.1071429,80.53571429 +246,4.1,1201,453,,214.4642857,80.89285714 +247,4.116666667,1232,455,,220,81.25 +248,4.133333333,1265,456,,225.8928571,81.42857143 +249,4.15,1297,457,,231.6071429,81.60714286 +250,4.166666667,1331,458,,237.6785714,81.78571429 +251,4.183333333,1364,458,,243.5714286,81.78571429 +252,4.2,1398,458,,249.6428571,81.78571429 +253,4.216666667,1431,458,,255.5357143,81.78571429 +254,4.233333333,1465,457,,261.6071429,81.60714286 +255,4.25,1498,456,,267.5,81.42857143 +256,4.266666667,1530,455,,273.2142857,81.25 +257,4.283333333,1563,453,,279.1071429,80.89285714 +258,4.3,1594,452,,284.6428571,80.71428571 +259,4.316666667,1625,450,,290.1785714,80.35714286 +260,4.333333333,1654,447,,295.3571429,79.82142857 +261,4.35,1681,445,,300.1785714,79.46428571 +262,4.366666667,1707,442,,304.8214286,78.92857143 +263,4.383333333,1732,440,,309.2857143,78.57142857 +264,4.4,1755,437,,313.3928571,78.03571429 +265,4.416666667,1777,435,,317.3214286,77.67857143 +266,4.433333333,1796,432,,320.7142857,77.14285714 +267,4.45,1814,430,,323.9285714,76.78571429 +268,4.466666667,1830,428,,326.7857143,76.42857143 +269,4.483333333,1843,426,,329.1071429,76.07142857 +270,4.5,1855,424,,331.25,75.71428571 +271,4.516666667,1864,423,,332.8571429,75.53571429 +272,4.533333333,1871,422,,334.1071429,75.35714286 +273,4.55,1875,421,,334.8214286,75.17857143 +274,4.566666667,1876,421,,335,75.17857143 +275,4.583333333,1876,421,,335,75.17857143 +276,4.6,1876,421,,335,75.17857143 +277,4.616666667,1871,422,,334.1071429,75.35714286 +278,4.633333333,1865,422,,333.0357143,75.35714286 +279,4.65,1856,423,,331.4285714,75.53571429 +280,4.666666667,1845,425,,329.4642857,75.89285714 +281,4.683333333,1831,427,,326.9642857,76.25 +282,4.7,1815,429,,324.1071429,76.60714286 +283,4.716666667,1797,431,,320.8928571,76.96428571 +284,4.733333333,1778,434,,317.5,77.5 +285,4.75,1756,436,,313.5714286,77.85714286 +286,4.766666667,1733,439,,309.4642857,78.39285714 +287,4.783333333,1708,441,,305,78.75 +288,4.8,1681,444,,300.1785714,79.28571429 +289,4.816666667,1653,446,,295.1785714,79.64285714 +290,4.833333333,1624,449,,290,80.17857143 +291,4.85,1593,451,,284.4642857,80.53571429 +292,4.866666667,1562,453,,278.9285714,80.89285714 +293,4.883333333,1531,454,,273.3928571,81.07142857 +294,4.9,1499,455,,267.6785714,81.25 +295,4.916666667,1466,456,,261.7857143,81.42857143 +296,4.933333333,1432,456,,255.7142857,81.42857143 +297,4.95,1399,456,,249.8214286,81.42857143 +298,4.966666667,1365,456,,243.75,81.42857143 +299,4.983333333,1332,456,,237.8571429,81.42857143 +300,5,1299,456,,231.9642857,81.42857143 +301,5.016666667,1266,454,,226.0714286,81.07142857 +302,5.033333333,1234,453,,220.3571429,80.89285714 +303,5.05,1203,451,,214.8214286,80.53571429 +304,5.066666667,1173,449,,209.4642857,80.17857143 +305,5.083333333,1144,447,,204.2857143,79.82142857 +306,5.1,1116,445,,199.2857143,79.46428571 +307,5.116666667,1089,443,,194.4642857,79.10714286 +308,5.133333333,1064,440,,190,78.57142857 +309,5.15,1041,438,,185.8928571,78.21428571 +310,5.166666667,1019,435,,181.9642857,77.67857143 +311,5.183333333,1000,434,,178.5714286,77.5 +312,5.2,982,431,,175.3571429,76.96428571 +313,5.216666667,967,429,,172.6785714,76.60714286 +314,5.233333333,953,427,,170.1785714,76.25 +315,5.25,942,426,,168.2142857,76.07142857 +316,5.266666667,934,425,,166.7857143,75.89285714 +317,5.283333333,927,424,,165.5357143,75.71428571 +318,5.3,923,424,,164.8214286,75.71428571 +319,5.316666667,923,424,,164.8214286,75.71428571 +320,5.333333333,923,424,,164.8214286,75.71428571 +321,5.35,925,424,,165.1785714,75.71428571 +322,5.366666667,930,425,,166.0714286,75.89285714 +323,5.383333333,938,426,,167.5,76.07142857 +324,5.4,948,428,,169.2857143,76.42857143 +325,5.416666667,960,429,,171.4285714,76.60714286 +326,5.433333333,974,431,,173.9285714,76.96428571 +327,5.45,991,434,,176.9642857,77.5 +328,5.466666667,1010,436,,180.3571429,77.85714286 +329,5.483333333,1030,438,,183.9285714,78.21428571 +330,5.5,1052,441,,187.8571429,78.75 +331,5.516666667,1076,443,,192.1428571,79.10714286 +332,5.533333333,1102,446,,196.7857143,79.64285714 +333,5.55,1128,448,,201.4285714,80 +334,5.566666667,1157,450,,206.6071429,80.35714286 +335,5.583333333,1186,453,,211.7857143,80.89285714 +336,5.6,1217,455,,217.3214286,81.25 +337,5.616666667,1248,456,,222.8571429,81.42857143 +338,5.633333333,1280,458,,228.5714286,81.78571429 +339,5.65,1313,459,,234.4642857,81.96428571 +340,5.666666667,1346,460,,240.3571429,82.14285714 +341,5.683333333,1379,460,,246.25,82.14285714 +342,5.7,1412,460,,252.1428571,82.14285714 +343,5.716666667,1445,459,,258.0357143,81.96428571 +344,5.733333333,1479,458,,264.1071429,81.78571429 +345,5.75,1511,457,,269.8214286,81.60714286 +346,5.766666667,1543,455,,275.5357143,81.25 +347,5.783333333,1574,454,,281.0714286,81.07142857 +348,5.8,1605,453,,286.6071429,80.89285714 +349,5.816666667,1635,450,,291.9642857,80.35714286 +350,5.833333333,1663,447,,296.9642857,79.82142857 +351,5.85,1690,445,,301.7857143,79.46428571 +352,5.866666667,1716,442,,306.4285714,78.92857143 +353,5.883333333,1740,440,,310.7142857,78.57142857 +354,5.9,1763,437,,314.8214286,78.03571429 +355,5.916666667,1784,435,,318.5714286,77.67857143 +356,5.933333333,1802,432,,321.7857143,77.14285714 +357,5.95,1819,430,,324.8214286,76.78571429 +358,5.966666667,1834,427,,327.5,76.25 +359,5.983333333,1847,425,,329.8214286,75.89285714 +360,6,1857,424,,331.6071429,75.71428571 +361,6.016666667,1865,423,,333.0357143,75.53571429 +362,6.033333333,1872,422,,334.2857143,75.35714286 +363,6.05,1875,421,,334.8214286,75.17857143 +364,6.066666667,1875,421,,334.8214286,75.17857143 +365,6.083333333,1875,421,,334.8214286,75.17857143 +366,6.1,1872,422,,334.2857143,75.35714286 +367,6.116666667,1867,422,,333.3928571,75.35714286 +368,6.133333333,1859,423,,331.9642857,75.53571429 +369,6.15,1849,425,,330.1785714,75.89285714 +370,6.166666667,1837,426,,328.0357143,76.07142857 +371,6.183333333,1823,428,,325.5357143,76.42857143 +372,6.2,1807,430,,322.6785714,76.78571429 +373,6.216666667,1788,432,,319.2857143,77.14285714 +374,6.233333333,1768,435,,315.7142857,77.67857143 +375,6.25,1746,437,,311.7857143,78.03571429 +376,6.266666667,1722,440,,307.5,78.57142857 +377,6.283333333,1696,442,,302.8571429,78.92857143 +378,6.3,1670,445,,298.2142857,79.46428571 +379,6.316666667,1641,447,,293.0357143,79.82142857 +380,6.333333333,1612,449,,287.8571429,80.17857143 +381,6.35,1581,451,,282.3214286,80.53571429 +382,6.366666667,1550,453,,276.7857143,80.89285714 +383,6.383333333,1518,454,,271.0714286,81.07142857 +384,6.4,1485,455,,265.1785714,81.25 +385,6.416666667,1452,456,,259.2857143,81.42857143 +386,6.433333333,1418,456,,253.2142857,81.42857143 +387,6.45,1385,456,,247.3214286,81.42857143 +388,6.466666667,1351,456,,241.25,81.42857143 +389,6.483333333,1318,456,,235.3571429,81.42857143 +390,6.5,1285,455,,229.4642857,81.25 +391,6.516666667,1252,454,,223.5714286,81.07142857 +392,6.533333333,1221,452,,218.0357143,80.71428571 +393,6.55,1190,450,,212.5,80.35714286 +394,6.566666667,1160,448,,207.1428571,80 +395,6.583333333,1132,446,,202.1428571,79.64285714 +396,6.6,1105,444,,197.3214286,79.28571429 +397,6.616666667,1079,442,,192.6785714,78.92857143 +398,6.633333333,1055,439,,188.3928571,78.39285714 +399,6.65,1033,437,,184.4642857,78.03571429 +400,6.666666667,1012,435,,180.7142857,77.67857143 +401,6.683333333,993,433,,177.3214286,77.32142857 +402,6.7,977,430,,174.4642857,76.78571429 +403,6.716666667,962,428,,171.7857143,76.42857143 +404,6.733333333,950,427,,169.6428571,76.25 +405,6.75,939,426,,167.6785714,76.07142857 +406,6.766666667,931,425,,166.25,75.89285714 +407,6.783333333,925,424,,165.1785714,75.71428571 +408,6.8,922,424,,164.6428571,75.71428571 +409,6.816666667,922,424,,164.6428571,75.71428571 +410,6.833333333,922,424,,164.6428571,75.71428571 +411,6.85,927,425,,165.5357143,75.89285714 +412,6.866666667,933,426,,166.6071429,76.07142857 +413,6.883333333,942,427,,168.2142857,76.25 +414,6.9,953,428,,170.1785714,76.42857143 +415,6.916666667,967,430,,172.6785714,76.78571429 +416,6.933333333,982,432,,175.3571429,77.14285714 +417,6.95,999,434,,178.3928571,77.5 +418,6.966666667,1018,436,,181.7857143,77.85714286 +419,6.983333333,1040,439,,185.7142857,78.39285714 +420,7,1063,441,,189.8214286,78.75 +421,7.016666667,1087,444,,194.1071429,79.28571429 +422,7.033333333,1113,446,,198.75,79.64285714 +423,7.05,1141,448,,203.75,80 +424,7.066666667,1170,450,,208.9285714,80.35714286 +425,7.083333333,1199,453,,214.1071429,80.89285714 +426,7.1,1230,455,,219.6428571,81.25 +427,7.116666667,1262,456,,225.3571429,81.42857143 +428,7.133333333,1295,457,,231.25,81.60714286 +429,7.15,1327,458,,236.9642857,81.78571429 +430,7.166666667,1361,458,,243.0357143,81.78571429 +431,7.183333333,1394,458,,248.9285714,81.78571429 +432,7.2,1427,458,,254.8214286,81.78571429 +433,7.216666667,1461,458,,260.8928571,81.78571429 +434,7.233333333,1493,457,,266.6071429,81.60714286 +435,7.25,1526,456,,272.5,81.42857143 +436,7.266666667,1558,455,,278.2142857,81.25 +437,7.283333333,1589,453,,283.75,80.89285714 +438,7.3,1619,451,,289.1071429,80.53571429 +439,7.316666667,1648,449,,294.2857143,80.17857143 +440,7.333333333,1676,446,,299.2857143,79.64285714 +441,7.35,1702,444,,303.9285714,79.28571429 +442,7.366666667,1727,442,,308.3928571,78.92857143 +443,7.383333333,1750,439,,312.5,78.39285714 +444,7.4,1772,436,,316.4285714,77.85714286 +445,7.416666667,1792,434,,320,77.5 +446,7.433333333,1810,432,,323.2142857,77.14285714 +447,7.45,1825,430,,325.8928571,76.78571429 +448,7.466666667,1839,428,,328.3928571,76.42857143 +449,7.483333333,1851,426,,330.5357143,76.07142857 +450,7.5,1860,424,,332.1428571,75.71428571 +451,7.516666667,1868,423,,333.5714286,75.53571429 +452,7.533333333,1873,423,,334.4642857,75.53571429 +453,7.55,1874,422,,334.6428571,75.35714286 +454,7.566666667,1874,422,,334.6428571,75.35714286 +455,7.583333333,1874,422,,334.6428571,75.35714286 +456,7.6,1869,423,,333.75,75.53571429 +457,7.616666667,1863,424,,332.6785714,75.71428571 +458,7.633333333,1854,425,,331.0714286,75.89285714 +459,7.65,1843,427,,329.1071429,76.25 +460,7.666666667,1830,429,,326.7857143,76.60714286 +461,7.683333333,1815,431,,324.1071429,76.96428571 +462,7.7,1797,433,,320.8928571,77.32142857 +463,7.716666667,1778,435,,317.5,77.67857143 +464,7.733333333,1756,438,,313.5714286,78.21428571 +465,7.75,1734,440,,309.6428571,78.57142857 +466,7.766666667,1710,442,,305.3571429,78.92857143 +467,7.783333333,1683,444,,300.5357143,79.28571429 +468,7.8,1656,447,,295.7142857,79.82142857 +469,7.816666667,1628,449,,290.7142857,80.17857143 +470,7.833333333,1598,451,,285.3571429,80.53571429 +471,7.85,1567,453,,279.8214286,80.89285714 +472,7.866666667,1536,454,,274.2857143,81.07142857 +473,7.883333333,1503,455,,268.3928571,81.25 +474,7.9,1471,456,,262.6785714,81.42857143 +475,7.916666667,1437,457,,256.6071429,81.60714286 +476,7.933333333,1404,457,,250.7142857,81.60714286 +477,7.95,1370,457,,244.6428571,81.60714286 +478,7.966666667,1337,457,,238.75,81.60714286 +479,7.983333333,1304,456,,232.8571429,81.42857143 +480,8,1272,455,,227.1428571,81.25 +481,8.016666667,1240,454,,221.4285714,81.07142857 +482,8.033333333,1208,452,,215.7142857,80.71428571 +483,8.05,1178,450,,210.3571429,80.35714286 +484,8.066666667,1149,448,,205.1785714,80 +485,8.083333333,1122,446,,200.3571429,79.64285714 +486,8.1,1095,443,,195.5357143,79.10714286 +487,8.116666667,1070,441,,191.0714286,78.75 +488,8.133333333,1047,439,,186.9642857,78.39285714 +489,8.15,1026,436,,183.2142857,77.85714286 +490,8.166666667,1006,434,,179.6428571,77.5 +491,8.183333333,989,432,,176.6071429,77.14285714 +492,8.2,973,430,,173.75,76.78571429 +493,8.216666667,959,428,,171.25,76.42857143 +494,8.233333333,948,427,,169.2857143,76.25 +495,8.25,938,425,,167.5,75.89285714 +496,8.266666667,932,424,,166.4285714,75.71428571 +497,8.283333333,927,424,,165.5357143,75.71428571 +498,8.3,927,424,,165.5357143,75.71428571 +499,8.316666667,927,424,,165.5357143,75.71428571 +500,8.333333333,928,424,,165.7142857,75.71428571 +501,8.35,933,425,,166.6071429,75.89285714 +502,8.366666667,940,426,,167.8571429,76.07142857 +503,8.383333333,949,427,,169.4642857,76.25 +504,8.4,961,429,,171.6071429,76.60714286 +505,8.416666667,975,431,,174.1071429,76.96428571 +506,8.433333333,991,433,,176.9642857,77.32142857 +507,8.45,1009,435,,180.1785714,77.67857143 +508,8.466666667,1029,438,,183.75,78.21428571 +509,8.483333333,1050,440,,187.5,78.57142857 +510,8.5,1074,443,,191.7857143,79.10714286 +511,8.516666667,1099,445,,196.25,79.46428571 +512,8.533333333,1126,447,,201.0714286,79.82142857 +513,8.55,1154,449,,206.0714286,80.17857143 +514,8.566666667,1183,452,,211.25,80.71428571 +515,8.583333333,1213,453,,216.6071429,80.89285714 +516,8.6,1244,455,,222.1428571,81.25 +517,8.616666667,1275,457,,227.6785714,81.60714286 +518,8.633333333,1307,458,,233.3928571,81.78571429 +519,8.65,1340,459,,239.2857143,81.96428571 +520,8.666666667,1373,459,,245.1785714,81.96428571 +521,8.683333333,1406,459,,251.0714286,81.96428571 +522,8.7,1440,459,,257.1428571,81.96428571 +523,8.716666667,1473,458,,263.0357143,81.78571429 +524,8.733333333,1506,457,,268.9285714,81.60714286 +525,8.75,1538,455,,274.6428571,81.25 +526,8.766666667,1569,454,,280.1785714,81.07142857 +527,8.783333333,1600,451,,285.7142857,80.53571429 +528,8.8,1629,449,,290.8928571,80.17857143 +529,8.816666667,1658,447,,296.0714286,79.82142857 +530,8.833333333,1685,445,,300.8928571,79.46428571 +531,8.85,1711,443,,305.5357143,79.10714286 +532,8.866666667,1735,440,,309.8214286,78.57142857 +533,8.883333333,1758,437,,313.9285714,78.03571429 +534,8.9,1779,435,,317.6785714,77.67857143 +535,8.916666667,1798,433,,321.0714286,77.32142857 +536,8.933333333,1815,430,,324.1071429,76.78571429 +537,8.95,1830,428,,326.7857143,76.42857143 +538,8.966666667,1843,426,,329.1071429,76.07142857 +539,8.983333333,1853,424,,330.8928571,75.71428571 +540,9,1862,423,,332.5,75.53571429 +541,9.016666667,1869,422,,333.75,75.35714286 +542,9.033333333,1873,422,,334.4642857,75.35714286 +543,9.05,1873,422,,334.4642857,75.35714286 +544,9.066666667,1873,422,,334.4642857,75.35714286 +545,9.083333333,1871,422,,334.1071429,75.35714286 +546,9.1,1866,423,,333.2142857,75.53571429 +547,9.116666667,1858,424,,331.7857143,75.71428571 +548,9.133333333,1849,426,,330.1785714,76.07142857 +549,9.15,1837,427,,328.0357143,76.25 +550,9.166666667,1823,429,,325.5357143,76.60714286 +551,9.183333333,1807,431,,322.6785714,76.96428571 +552,9.2,1789,433,,319.4642857,77.32142857 +553,9.216666667,1769,436,,315.8928571,77.85714286 +554,9.233333333,1748,438,,312.1428571,78.21428571 +555,9.25,1724,441,,307.8571429,78.75 +556,9.266666667,1699,443,,303.3928571,79.10714286 +557,9.283333333,1673,446,,298.75,79.64285714 +558,9.3,1645,448,,293.75,80 +559,9.316666667,1616,450,,288.5714286,80.35714286 +560,9.333333333,1585,452,,283.0357143,80.71428571 +561,9.35,1554,454,,277.5,81.07142857 +562,9.366666667,1522,455,,271.7857143,81.25 +563,9.383333333,1490,456,,266.0714286,81.42857143 +564,9.4,1457,457,,260.1785714,81.60714286 +565,9.416666667,1424,458,,254.2857143,81.78571429 +566,9.433333333,1390,458,,248.2142857,81.78571429 +567,9.45,1357,458,,242.3214286,81.78571429 +568,9.466666667,1324,458,,236.4285714,81.78571429 +569,9.483333333,1291,457,,230.5357143,81.60714286 +570,9.5,1259,456,,224.8214286,81.42857143 +571,9.516666667,1227,454,,219.1071429,81.07142857 +572,9.533333333,1196,452,,213.5714286,80.71428571 +573,9.55,1167,450,,208.3928571,80.35714286 +574,9.566666667,1138,448,,203.2142857,80 +575,9.583333333,1111,446,,198.3928571,79.64285714 +576,9.6,1085,443,,193.75,79.10714286 +577,9.616666667,1061,441,,189.4642857,78.75 +578,9.633333333,1038,439,,185.3571429,78.39285714 +579,9.65,1018,436,,181.7857143,77.85714286 +580,9.666666667,999,434,,178.3928571,77.5 +581,9.683333333,982,432,,175.3571429,77.14285714 +582,9.7,967,430,,172.6785714,76.78571429 +583,9.716666667,955,429,,170.5357143,76.60714286 +584,9.733333333,945,427,,168.75,76.25 +585,9.75,936,426,,167.1428571,76.07142857 +586,9.766666667,931,425,,166.25,75.89285714 +587,9.783333333,928,425,,165.7142857,75.89285714 +588,9.8,928,425,,165.7142857,75.89285714 +589,9.816666667,928,425,,165.7142857,75.89285714 +590,9.833333333,931,425,,166.25,75.89285714 +591,9.85,937,426,,167.3214286,76.07142857 +592,9.866666667,945,427,,168.75,76.25 +593,9.883333333,956,429,,170.7142857,76.60714286 +594,9.9,968,431,,172.8571429,76.96428571 +595,9.916666667,983,433,,175.5357143,77.32142857 +596,9.933333333,1000,435,,178.5714286,77.67857143 +597,9.95,1019,437,,181.9642857,78.03571429 +598,9.966666667,1040,440,,185.7142857,78.57142857 +599,9.983333333,1062,442,,189.6428571,78.92857143 +600,10,1087,444,,194.1071429,79.28571429 +601,10.01666667,1112,446,,198.5714286,79.64285714 +602,10.03333333,1140,449,,203.5714286,80.17857143 +603,10.05,1168,451,,208.5714286,80.53571429 +604,10.06666667,1198,452,,213.9285714,80.71428571 +605,10.08333333,1228,455,,219.2857143,81.25 +606,10.1,1259,456,,224.8214286,81.42857143 +607,10.11666667,1291,457,,230.5357143,81.60714286 +608,10.13333333,1324,458,,236.4285714,81.78571429 +609,10.15,1356,458,,242.1428571,81.78571429 +610,10.16666667,1389,458,,248.0357143,81.78571429 +611,10.18333333,1421,458,,253.75,81.78571429 +612,10.2,1455,458,,259.8214286,81.78571429 +613,10.21666667,1487,457,,265.5357143,81.60714286 +614,10.23333333,1519,456,,271.25,81.42857143 +615,10.25,1551,454,,276.9642857,81.07142857 +616,10.26666667,1581,453,,282.3214286,80.89285714 +617,10.28333333,1611,451,,287.6785714,80.53571429 +618,10.3,1640,449,,292.8571429,80.17857143 +619,10.31666667,1668,446,,297.8571429,79.64285714 +620,10.33333333,1695,444,,302.6785714,79.28571429 +621,10.35,1720,442,,307.1428571,78.92857143 +622,10.36666667,1743,439,,311.25,78.39285714 +623,10.38333333,1765,437,,315.1785714,78.03571429 +624,10.4,1785,434,,318.75,77.5 +625,10.41666667,1803,432,,321.9642857,77.14285714 +626,10.43333333,1819,430,,324.8214286,76.78571429 +627,10.45,1833,428,,327.3214286,76.42857143 +628,10.46666667,1845,426,,329.4642857,76.07142857 +629,10.48333333,1855,425,,331.25,75.89285714 +630,10.5,1862,424,,332.5,75.71428571 +631,10.51666667,1867,423,,333.3928571,75.53571429 +632,10.53333333,1870,423,,333.9285714,75.53571429 +633,10.55,1870,423,,333.9285714,75.53571429 +634,10.56666667,1870,423,,333.9285714,75.53571429 +635,10.58333333,1866,423,,333.2142857,75.53571429 +636,10.6,1860,424,,332.1428571,75.71428571 +637,10.61666667,1852,425,,330.7142857,75.89285714 +638,10.63333333,1842,426,,328.9285714,76.07142857 +639,10.65,1829,428,,326.6071429,76.42857143 +640,10.66666667,1815,430,,324.1071429,76.78571429 +641,10.68333333,1798,432,,321.0714286,77.14285714 +642,10.7,1779,434,,317.6785714,77.5 +643,10.71666667,1758,437,,313.9285714,78.03571429 +644,10.73333333,1736,439,,310,78.39285714 +645,10.75,1712,441,,305.7142857,78.75 +646,10.76666667,1686,444,,301.0714286,79.28571429 +647,10.78333333,1659,446,,296.25,79.64285714 +648,10.8,1631,448,,291.25,80 +649,10.81666667,1602,450,,286.0714286,80.35714286 +650,10.83333333,1571,452,,280.5357143,80.71428571 +651,10.85,1540,454,,275,81.07142857 +652,10.86666667,1508,455,,269.2857143,81.25 +653,10.88333333,1476,456,,263.5714286,81.42857143 +654,10.9,1443,457,,257.6785714,81.60714286 +655,10.91666667,1410,457,,251.7857143,81.60714286 +656,10.93333333,1377,457,,245.8928571,81.60714286 +657,10.95,1344,457,,240,81.60714286 +658,10.96666667,1311,456,,234.1071429,81.42857143 +659,10.98333333,1278,455,,228.2142857,81.25 +660,11,1247,454,,222.6785714,81.07142857 +661,11.01666667,1216,453,,217.1428571,80.89285714 +662,11.03333333,1186,451,,211.7857143,80.53571429 +663,11.05,1157,449,,206.6071429,80.17857143 +664,11.06666667,1129,447,,201.6071429,79.82142857 +665,11.08333333,1103,445,,196.9642857,79.46428571 +666,11.1,1078,443,,192.5,79.10714286 +667,11.11666667,1055,440,,188.3928571,78.57142857 +668,11.13333333,1033,438,,184.4642857,78.21428571 +669,11.15,1013,436,,180.8928571,77.85714286 +670,11.16666667,995,434,,177.6785714,77.5 +671,11.18333333,979,432,,174.8214286,77.14285714 +672,11.2,965,430,,172.3214286,76.78571429 +673,11.21666667,954,429,,170.3571429,76.60714286 +674,11.23333333,945,428,,168.75,76.42857143 +675,11.25,937,427,,167.3214286,76.25 +676,11.26666667,932,427,,166.4285714,76.25 +677,11.28333333,931,426,,166.25,76.07142857 +678,11.3,931,426,,166.25,76.07142857 +679,11.31666667,931,426,,166.25,76.07142857 +680,11.33333333,936,427,,167.1428571,76.25 +681,11.35,943,428,,168.3928571,76.42857143 +682,11.36666667,952,430,,170,76.78571429 +683,11.38333333,963,431,,171.9642857,76.96428571 +684,11.4,977,433,,174.4642857,77.32142857 +685,11.41666667,992,434,,177.1428571,77.5 +686,11.43333333,1010,437,,180.3571429,78.03571429 +687,11.45,1029,439,,183.75,78.39285714 +688,11.46666667,1050,441,,187.5,78.75 +689,11.48333333,1073,444,,191.6071429,79.28571429 +690,11.5,1098,446,,196.0714286,79.64285714 +691,11.51666667,1124,449,,200.7142857,80.17857143 +692,11.53333333,1151,451,,205.5357143,80.53571429 +693,11.55,1180,452,,210.7142857,80.71428571 +694,11.56666667,1210,454,,216.0714286,81.07142857 +695,11.58333333,1241,456,,221.6071429,81.42857143 +696,11.6,1272,457,,227.1428571,81.60714286 +697,11.61666667,1304,458,,232.8571429,81.78571429 +698,11.63333333,1336,459,,238.5714286,81.96428571 +699,11.65,1369,459,,244.4642857,81.96428571 +700,11.66666667,1403,459,,250.5357143,81.96428571 +701,11.68333333,1435,459,,256.25,81.96428571 +702,11.7,1469,458,,262.3214286,81.78571429 +703,11.71666667,1501,457,,268.0357143,81.60714286 +704,11.73333333,1532,455,,273.5714286,81.25 +705,11.75,1563,454,,279.1071429,81.07142857 +706,11.76666667,1594,452,,284.6428571,80.71428571 +707,11.78333333,1624,450,,290,80.35714286 +708,11.8,1652,448,,295,80 +709,11.81666667,1679,446,,299.8214286,79.64285714 +710,11.83333333,1705,443,,304.4642857,79.10714286 +711,11.85,1730,441,,308.9285714,78.75 +712,11.86666667,1753,438,,313.0357143,78.21428571 +713,11.88333333,1774,436,,316.7857143,77.85714286 +714,11.9,1793,433,,320.1785714,77.32142857 +715,11.91666667,1810,431,,323.2142857,76.96428571 +716,11.93333333,1825,429,,325.8928571,76.60714286 +717,11.95,1838,427,,328.2142857,76.25 +718,11.96666667,1849,425,,330.1785714,75.89285714 +719,11.98333333,1858,424,,331.7857143,75.71428571 +720,12,1864,423,,332.8571429,75.53571429 +721,12.01666667,1869,422,,333.75,75.35714286 +722,12.03333333,1869,422,,333.75,75.35714286 +723,12.05,1869,422,,333.75,75.35714286 +724,12.06666667,1867,423,,333.3928571,75.53571429 +725,12.08333333,1862,423,,332.5,75.53571429 +726,12.1,1855,424,,331.25,75.71428571 +727,12.11666667,1846,425,,329.6428571,75.89285714 +728,12.13333333,1834,427,,327.5,76.25 +729,12.15,1821,429,,325.1785714,76.60714286 +730,12.16666667,1806,431,,322.5,76.96428571 +731,12.18333333,1788,433,,319.2857143,77.32142857 +732,12.2,1768,435,,315.7142857,77.67857143 +733,12.21666667,1747,438,,311.9642857,78.21428571 +734,12.23333333,1724,440,,307.8571429,78.57142857 +735,12.25,1700,443,,303.5714286,79.10714286 +736,12.26666667,1673,445,,298.75,79.46428571 +737,12.28333333,1646,447,,293.9285714,79.82142857 +738,12.3,1617,450,,288.75,80.35714286 +739,12.31666667,1587,452,,283.3928571,80.71428571 +740,12.33333333,1556,453,,277.8571429,80.89285714 +741,12.35,1524,455,,272.1428571,81.25 +742,12.36666667,1492,456,,266.4285714,81.42857143 +743,12.38333333,1460,457,,260.7142857,81.60714286 +744,12.4,1427,457,,254.8214286,81.60714286 +745,12.41666667,1394,457,,248.9285714,81.60714286 +746,12.43333333,1361,457,,243.0357143,81.60714286 +747,12.45,1329,457,,237.3214286,81.60714286 +748,12.46666667,1296,456,,231.4285714,81.42857143 +749,12.48333333,1264,455,,225.7142857,81.25 +750,12.5,1233,453,,220.1785714,80.89285714 +751,12.51666667,1202,451,,214.6428571,80.53571429 +752,12.53333333,1173,449,,209.4642857,80.17857143 +753,12.55,1145,448,,204.4642857,80 +754,12.56666667,1117,445,,199.4642857,79.46428571 +755,12.58333333,1092,443,,195,79.10714286 +756,12.6,1068,441,,190.7142857,78.75 +757,12.61666667,1045,439,,186.6071429,78.39285714 +758,12.63333333,1024,437,,182.8571429,78.03571429 +759,12.65,1005,434,,179.4642857,77.5 +760,12.66666667,988,433,,176.4285714,77.32142857 +761,12.68333333,973,431,,173.75,76.96428571 +762,12.7,961,429,,171.6071429,76.60714286 +763,12.71666667,950,428,,169.6428571,76.42857143 +764,12.73333333,942,427,,168.2142857,76.25 +765,12.75,936,426,,167.1428571,76.07142857 +766,12.76666667,932,426,,166.4285714,76.07142857 +767,12.78333333,932,426,,166.4285714,76.07142857 +768,12.8,932,426,,166.4285714,76.07142857 +769,12.81666667,935,427,,166.9642857,76.25 +770,12.83333333,940,427,,167.8571429,76.25 +771,12.85,949,429,,169.4642857,76.60714286 +772,12.86666667,958,430,,171.0714286,76.78571429 +773,12.88333333,971,432,,173.3928571,77.14285714 +774,12.9,985,434,,175.8928571,77.5 +775,12.91666667,1002,436,,178.9285714,77.85714286 +776,12.93333333,1021,438,,182.3214286,78.21428571 +777,12.95,1041,440,,185.8928571,78.57142857 +778,12.96666667,1063,442,,189.8214286,78.92857143 +779,12.98333333,1087,445,,194.1071429,79.46428571 +780,13,1112,448,,198.5714286,80 +781,13.01666667,1139,450,,203.3928571,80.35714286 +782,13.03333333,1167,452,,208.3928571,80.71428571 +783,13.05,1195,454,,213.3928571,81.07142857 +784,13.06666667,1225,456,,218.75,81.42857143 +785,13.08333333,1256,458,,224.2857143,81.78571429 +786,13.1,1288,460,,230,82.14285714 +787,13.11666667,1320,460,,235.7142857,82.14285714 +788,13.13333333,1351,460,,241.25,82.14285714 +789,13.15,1384,460,,247.1428571,82.14285714 +790,13.16666667,1417,460,,253.0357143,82.14285714 +791,13.18333333,1450,460,,258.9285714,82.14285714 +792,13.2,1482,460,,264.6428571,82.14285714 +793,13.21666667,1514,458,,270.3571429,81.78571429 +794,13.23333333,1545,457,,275.8928571,81.60714286 +795,13.25,1576,455,,281.4285714,81.25 +796,13.26666667,1606,453,,286.7857143,80.89285714 +797,13.28333333,1635,451,,291.9642857,80.53571429 +798,13.3,1662,449,,296.7857143,80.17857143 +799,13.31666667,1689,446,,301.6071429,79.64285714 +800,13.33333333,1713,443,,305.8928571,79.10714286 +801,13.35,1737,441,,310.1785714,78.75 +802,13.36666667,1759,438,,314.1071429,78.21428571 +803,13.38333333,1779,436,,317.6785714,77.85714286 +804,13.4,1798,433,,321.0714286,77.32142857 +805,13.41666667,1814,431,,323.9285714,76.96428571 +806,13.43333333,1828,429,,326.4285714,76.60714286 +807,13.45,1840,427,,328.5714286,76.25 +808,13.46666667,1850,426,,330.3571429,76.07142857 +809,13.48333333,1858,425,,331.7857143,75.89285714 +810,13.5,1864,424,,332.8571429,75.71428571 +811,13.51666667,1867,423,,333.3928571,75.53571429 +812,13.53333333,1867,423,,333.3928571,75.53571429 +813,13.55,1867,423,,333.3928571,75.53571429 +814,13.56666667,1863,423,,332.6785714,75.53571429 +815,13.58333333,1858,424,,331.7857143,75.71428571 +816,13.6,1850,425,,330.3571429,75.89285714 +817,13.61666667,1840,426,,328.5714286,76.07142857 +818,13.63333333,1828,428,,326.4285714,76.42857143 +819,13.65,1814,430,,323.9285714,76.78571429 +820,13.66666667,1797,432,,320.8928571,77.14285714 +821,13.68333333,1779,434,,317.6785714,77.5 +822,13.7,1759,436,,314.1071429,77.85714286 +823,13.71666667,1737,439,,310.1785714,78.39285714 +824,13.73333333,1713,441,,305.8928571,78.75 +825,13.75,1688,443,,301.4285714,79.10714286 +826,13.76666667,1661,446,,296.6071429,79.64285714 +827,13.78333333,1633,448,,291.6071429,80 +828,13.8,1604,450,,286.4285714,80.35714286 +829,13.81666667,1574,452,,281.0714286,80.71428571 +830,13.83333333,1543,453,,275.5357143,80.89285714 +831,13.85,1511,454,,269.8214286,81.07142857 +832,13.86666667,1479,455,,264.1071429,81.25 +833,13.88333333,1446,456,,258.2142857,81.42857143 +834,13.9,1413,457,,252.3214286,81.60714286 +835,13.91666667,1380,457,,246.4285714,81.60714286 +836,13.93333333,1347,457,,240.5357143,81.60714286 +837,13.95,1315,456,,234.8214286,81.42857143 +838,13.96666667,1283,455,,229.1071429,81.25 +839,13.98333333,1251,454,,223.3928571,81.07142857 +840,14,1220,452,,217.8571429,80.71428571 +841,14.01666667,1190,451,,212.5,80.53571429 +842,14.03333333,1161,449,,207.3214286,80.17857143 +843,14.05,1133,447,,202.3214286,79.82142857 +844,14.06666667,1106,445,,197.5,79.46428571 +845,14.08333333,1082,442,,193.2142857,78.92857143 +846,14.1,1058,441,,188.9285714,78.75 +847,14.11666667,1036,438,,185,78.21428571 +848,14.13333333,1017,436,,181.6071429,77.85714286 +849,14.15,999,434,,178.3928571,77.5 +850,14.16666667,983,433,,175.5357143,77.32142857 +851,14.18333333,969,431,,173.0357143,76.96428571 +852,14.2,958,429,,171.0714286,76.60714286 +853,14.21666667,948,428,,169.2857143,76.42857143 +854,14.23333333,940,427,,167.8571429,76.25 +855,14.25,935,426,,166.9642857,76.07142857 +856,14.26666667,933,426,,166.6071429,76.07142857 +857,14.28333333,933,426,,166.6071429,76.07142857 +858,14.3,933,426,,166.6071429,76.07142857 +859,14.31666667,937,427,,167.3214286,76.25 +860,14.33333333,943,428,,168.3928571,76.42857143 +861,14.35,952,429,,170,76.60714286 +862,14.36666667,963,430,,171.9642857,76.78571429 +863,14.38333333,977,433,,174.4642857,77.32142857 +864,14.4,992,434,,177.1428571,77.5 +865,14.41666667,1010,437,,180.3571429,78.03571429 +866,14.43333333,1029,439,,183.75,78.39285714 +867,14.45,1050,441,,187.5,78.75 +868,14.46666667,1073,443,,191.6071429,79.10714286 +869,14.48333333,1097,445,,195.8928571,79.46428571 +870,14.5,1123,448,,200.5357143,80 +871,14.51666667,1150,450,,205.3571429,80.35714286 +872,14.53333333,1178,452,,210.3571429,80.71428571 +873,14.55,1207,454,,215.5357143,81.07142857 +874,14.56666667,1238,456,,221.0714286,81.42857143 +875,14.58333333,1269,457,,226.6071429,81.60714286 +876,14.6,1301,458,,232.3214286,81.78571429 +877,14.61666667,1333,459,,238.0357143,81.96428571 +878,14.63333333,1366,459,,243.9285714,81.96428571 +879,14.65,1399,459,,249.8214286,81.96428571 +880,14.66666667,1431,459,,255.5357143,81.96428571 +881,14.68333333,1464,459,,261.4285714,81.96428571 +882,14.7,1496,458,,267.1428571,81.78571429 +883,14.71666667,1527,457,,272.6785714,81.60714286 +884,14.73333333,1559,455,,278.3928571,81.25 +885,14.75,1589,454,,283.75,81.07142857 +886,14.76666667,1619,451,,289.1071429,80.53571429 +887,14.78333333,1647,450,,294.1071429,80.35714286 +888,14.8,1674,448,,298.9285714,80 +889,14.81666667,1700,445,,303.5714286,79.46428571 +890,14.83333333,1724,442,,307.8571429,78.92857143 +891,14.85,1747,440,,311.9642857,78.57142857 +892,14.86666667,1768,437,,315.7142857,78.03571429 +893,14.88333333,1787,435,,319.1071429,77.67857143 +894,14.9,1804,433,,322.1428571,77.32142857 +895,14.91666667,1819,430,,324.8214286,76.78571429 +896,14.93333333,1833,429,,327.3214286,76.60714286 +897,14.95,1844,427,,329.2857143,76.25 +898,14.96666667,1853,426,,330.8928571,76.07142857 +899,14.98333333,1860,425,,332.1428571,75.89285714 +900,15,1865,424,,333.0357143,75.71428571 +901,15.01666667,1865,424,,333.0357143,75.71428571 +902,15.03333333,1865,424,,333.0357143,75.71428571 +903,15.05,1865,424,,333.0357143,75.71428571 +904,15.06666667,1860,424,,332.1428571,75.71428571 +905,15.08333333,1854,425,,331.0714286,75.89285714 +906,15.1,1844,427,,329.2857143,76.25 +907,15.11666667,1833,428,,327.3214286,76.42857143 +908,15.13333333,1820,430,,325,76.78571429 +909,15.15,1805,432,,322.3214286,77.14285714 +910,15.16666667,1787,434,,319.1071429,77.5 +911,15.18333333,1769,436,,315.8928571,77.85714286 +912,15.2,1747,439,,311.9642857,78.39285714 +913,15.21666667,1725,441,,308.0357143,78.75 +914,15.23333333,1700,443,,303.5714286,79.10714286 +915,15.25,1674,445,,298.9285714,79.46428571 +916,15.26666667,1648,448,,294.2857143,80 +917,15.28333333,1619,450,,289.1071429,80.35714286 +918,15.3,1590,452,,283.9285714,80.71428571 +919,15.31666667,1560,453,,278.5714286,80.89285714 +920,15.33333333,1529,455,,273.0357143,81.25 +921,15.35,1497,456,,267.3214286,81.42857143 +922,15.36666667,1465,457,,261.6071429,81.60714286 +923,15.38333333,1432,457,,255.7142857,81.60714286 +924,15.4,1399,457,,249.8214286,81.60714286 +925,15.41666667,1366,457,,243.9285714,81.60714286 +926,15.43333333,1334,457,,238.2142857,81.60714286 +927,15.45,1301,457,,232.3214286,81.60714286 +928,15.46666667,1269,455,,226.6071429,81.25 +929,15.48333333,1238,454,,221.0714286,81.07142857 +930,15.5,1208,452,,215.7142857,80.71428571 +931,15.51666667,1178,450,,210.3571429,80.35714286 +932,15.53333333,1150,448,,205.3571429,80 +933,15.55,1123,446,,200.5357143,79.64285714 +934,15.56666667,1097,444,,195.8928571,79.28571429 +935,15.58333333,1073,441,,191.6071429,78.75 +936,15.6,1051,439,,187.6785714,78.39285714 +937,15.61666667,1030,437,,183.9285714,78.03571429 +938,15.63333333,1011,435,,180.5357143,77.67857143 +939,15.65,994,433,,177.5,77.32142857 +940,15.66666667,979,432,,174.8214286,77.14285714 +941,15.68333333,966,430,,172.5,76.78571429 +942,15.7,955,429,,170.5357143,76.60714286 +943,15.71666667,947,427,,169.1071429,76.25 +944,15.73333333,941,427,,168.0357143,76.25 +945,15.75,936,426,,167.1428571,76.07142857 +946,15.76666667,936,426,,167.1428571,76.07142857 +947,15.78333333,936,426,,167.1428571,76.07142857 +948,15.8,938,427,,167.5,76.25 +949,15.81666667,943,427,,168.3928571,76.25 +950,15.83333333,951,428,,169.8214286,76.42857143 +951,15.85,960,430,,171.4285714,76.78571429 +952,15.86666667,972,431,,173.5714286,76.96428571 +953,15.88333333,986,433,,176.0714286,77.32142857 +954,15.9,1002,435,,178.9285714,77.67857143 +955,15.91666667,1020,437,,182.1428571,78.03571429 +956,15.93333333,1039,439,,185.5357143,78.39285714 +957,15.95,1061,442,,189.4642857,78.92857143 +958,15.96666667,1084,444,,193.5714286,79.28571429 +959,15.98333333,1109,447,,198.0357143,79.82142857 +960,16,1135,449,,202.6785714,80.17857143 +961,16.01666667,1162,451,,207.5,80.53571429 +962,16.03333333,1191,453,,212.6785714,80.89285714 +963,16.05,1221,455,,218.0357143,81.25 +964,16.06666667,1251,456,,223.3928571,81.42857143 +965,16.08333333,1283,458,,229.1071429,81.78571429 +966,16.1,1315,459,,234.8214286,81.96428571 +967,16.11666667,1346,459,,240.3571429,81.96428571 +968,16.13333333,1378,459,,246.0714286,81.96428571 +969,16.15,1410,459,,251.7857143,81.96428571 +970,16.16666667,1443,459,,257.6785714,81.96428571 +971,16.18333333,1475,458,,263.3928571,81.78571429 +972,16.2,1507,458,,269.1071429,81.78571429 +973,16.21666667,1538,457,,274.6428571,81.60714286 +974,16.23333333,1569,455,,280.1785714,81.25 +975,16.25,1599,453,,285.5357143,80.89285714 +976,16.26666667,1628,450,,290.7142857,80.35714286 +977,16.28333333,1656,448,,295.7142857,80 +978,16.3,1682,446,,300.3571429,79.64285714 +979,16.31666667,1707,443,,304.8214286,79.10714286 +980,16.33333333,1731,440,,309.1071429,78.57142857 +981,16.35,1753,438,,313.0357143,78.21428571 +982,16.36666667,1774,436,,316.7857143,77.85714286 +983,16.38333333,1792,433,,320,77.32142857 +984,16.4,1809,431,,323.0357143,76.96428571 +985,16.41666667,1823,430,,325.5357143,76.78571429 +986,16.43333333,1835,428,,327.6785714,76.42857143 +987,16.45,1846,426,,329.6428571,76.07142857 +988,16.46666667,1854,425,,331.0714286,75.89285714 +989,16.48333333,1860,424,,332.1428571,75.71428571 +990,16.5,1864,424,,332.8571429,75.71428571 +991,16.51666667,1864,424,,332.8571429,75.71428571 +992,16.53333333,1864,424,,332.8571429,75.71428571 +993,16.55,1861,424,,332.3214286,75.71428571 +994,16.56666667,1856,424,,331.4285714,75.71428571 +995,16.58333333,1848,425,,330,75.89285714 +996,16.6,1839,427,,328.3928571,76.25 +997,16.61666667,1827,428,,326.25,76.42857143 +998,16.63333333,1812,430,,323.5714286,76.78571429 +999,16.65,1796,433,,320.7142857,77.32142857 +1000,16.66666667,1778,435,,317.5,77.67857143 +1001,16.68333333,1758,437,,313.9285714,78.03571429 +1002,16.7,1737,439,,310.1785714,78.39285714 +1003,16.71666667,1714,442,,306.0714286,78.92857143 +1004,16.73333333,1689,444,,301.6071429,79.28571429 +1005,16.75,1663,446,,296.9642857,79.64285714 +1006,16.76666667,1636,448,,292.1428571,80 +1007,16.78333333,1607,451,,286.9642857,80.53571429 +1008,16.8,1578,453,,281.7857143,80.89285714 +1009,16.81666667,1547,454,,276.25,81.07142857 +1010,16.83333333,1516,456,,270.7142857,81.42857143 +1011,16.85,1484,457,,265,81.60714286 +1012,16.86666667,1452,457,,259.2857143,81.60714286 +1013,16.88333333,1419,458,,253.3928571,81.78571429 +1014,16.9,1386,458,,247.5,81.78571429 +1015,16.91666667,1353,458,,241.6071429,81.78571429 +1016,16.93333333,1321,458,,235.8928571,81.78571429 +1017,16.95,1290,457,,230.3571429,81.60714286 +1018,16.96666667,1258,456,,224.6428571,81.42857143 +1019,16.98333333,1227,455,,219.1071429,81.25 +1020,17,1197,453,,213.75,80.89285714 +1021,17.01666667,1168,451,,208.5714286,80.53571429 +1022,17.03333333,1140,449,,203.5714286,80.17857143 +1023,17.05,1113,447,,198.75,79.82142857 +1024,17.06666667,1089,445,,194.4642857,79.46428571 +1025,17.08333333,1065,443,,190.1785714,79.10714286 +1026,17.1,1044,440,,186.4285714,78.57142857 +1027,17.11666667,1023,438,,182.6785714,78.21428571 +1028,17.13333333,1005,436,,179.4642857,77.85714286 +1029,17.15,989,434,,176.6071429,77.5 +1030,17.16666667,975,432,,174.1071429,77.14285714 +1031,17.18333333,963,430,,171.9642857,76.78571429 +1032,17.2,953,429,,170.1785714,76.60714286 +1033,17.21666667,945,428,,168.75,76.42857143 +1034,17.23333333,940,427,,167.8571429,76.25 +1035,17.25,938,427,,167.5,76.25 +1036,17.26666667,938,427,,167.5,76.25 +1037,17.28333333,938,428,,167.5,76.42857143 +1038,17.3,942,428,,168.2142857,76.42857143 +1039,17.31666667,948,429,,169.2857143,76.60714286 +1040,17.33333333,956,430,,170.7142857,76.78571429 +1041,17.35,967,432,,172.6785714,77.14285714 +1042,17.36666667,980,433,,175,77.32142857 +1043,17.38333333,994,435,,177.5,77.67857143 +1044,17.4,1011,437,,180.5357143,78.03571429 +1045,17.41666667,1030,439,,183.9285714,78.39285714 +1046,17.43333333,1051,442,,187.6785714,78.92857143 +1047,17.45,1073,444,,191.6071429,79.28571429 +1048,17.46666667,1097,446,,195.8928571,79.64285714 +1049,17.48333333,1122,448,,200.3571429,80 +1050,17.5,1149,451,,205.1785714,80.53571429 +1051,17.51666667,1176,453,,210,80.89285714 +1052,17.53333333,1205,455,,215.1785714,81.25 +1053,17.55,1235,456,,220.5357143,81.42857143 +1054,17.56666667,1266,458,,226.0714286,81.78571429 +1055,17.58333333,1297,459,,231.6071429,81.96428571 +1056,17.6,1329,459,,237.3214286,81.96428571 +1057,17.61666667,1361,459,,243.0357143,81.96428571 +1058,17.63333333,1394,459,,248.9285714,81.96428571 +1059,17.65,1426,459,,254.6428571,81.96428571 +1060,17.66666667,1458,459,,260.3571429,81.96428571 +1061,17.68333333,1491,458,,266.25,81.78571429 +1062,17.7,1522,456,,271.7857143,81.42857143 +1063,17.71666667,1553,455,,277.3214286,81.25 +1064,17.73333333,1584,453,,282.8571429,80.89285714 +1065,17.75,1613,452,,288.0357143,80.71428571 +1066,17.76666667,1641,449,,293.0357143,80.17857143 +1067,17.78333333,1668,447,,297.8571429,79.82142857 +1068,17.8,1693,445,,302.3214286,79.46428571 +1069,17.81666667,1717,442,,306.6071429,78.92857143 +1070,17.83333333,1740,440,,310.7142857,78.57142857 +1071,17.85,1761,437,,314.4642857,78.03571429 +1072,17.86666667,1780,435,,317.8571429,77.67857143 +1073,17.88333333,1798,433,,321.0714286,77.32142857 +1074,17.9,1813,431,,323.75,76.96428571 +1075,17.91666667,1826,429,,326.0714286,76.60714286 +1076,17.93333333,1837,427,,328.0357143,76.25 +1077,17.95,1847,426,,329.8214286,76.07142857 +1078,17.96666667,1854,425,,331.0714286,75.89285714 +1079,17.98333333,1859,424,,331.9642857,75.71428571 +1080,18,1860,424,,332.1428571,75.71428571 +1081,18.01666667,1860,424,,332.1428571,75.71428571 +1082,18.03333333,1860,424,,332.1428571,75.71428571 +1083,18.05,1856,425,,331.4285714,75.89285714 +1084,18.06666667,1850,425,,330.3571429,75.89285714 +1085,18.08333333,1842,426,,328.9285714,76.07142857 +1086,18.1,1831,428,,326.9642857,76.42857143 +1087,18.11666667,1818,430,,324.6428571,76.78571429 +1088,18.13333333,1803,432,,321.9642857,77.14285714 +1089,18.15,1787,434,,319.1071429,77.5 +1090,18.16666667,1768,436,,315.7142857,77.85714286 +1091,18.18333333,1747,438,,311.9642857,78.21428571 +1092,18.2,1725,440,,308.0357143,78.57142857 +1093,18.21666667,1701,443,,303.75,79.10714286 +1094,18.23333333,1675,445,,299.1071429,79.46428571 +1095,18.25,1649,447,,294.4642857,79.82142857 +1096,18.26666667,1620,450,,289.2857143,80.35714286 +1097,18.28333333,1591,452,,284.1071429,80.71428571 +1098,18.3,1561,453,,278.75,80.89285714 +1099,18.31666667,1531,454,,273.3928571,81.07142857 +1100,18.33333333,1500,456,,267.8571429,81.42857143 +1101,18.35,1468,456,,262.1428571,81.42857143 +1102,18.36666667,1436,457,,256.4285714,81.60714286 +1103,18.38333333,1404,457,,250.7142857,81.60714286 +1104,18.4,1371,457,,244.8214286,81.60714286 +1105,18.41666667,1339,457,,239.1071429,81.60714286 +1106,18.43333333,1307,457,,233.3928571,81.60714286 +1107,18.45,1275,456,,227.6785714,81.42857143 +1108,18.46666667,1245,454,,222.3214286,81.07142857 +1109,18.48333333,1214,452,,216.7857143,80.71428571 +1110,18.5,1185,451,,211.6071429,80.53571429 +1111,18.51666667,1156,449,,206.4285714,80.17857143 +1112,18.53333333,1129,447,,201.6071429,79.82142857 +1113,18.55,1104,445,,197.1428571,79.46428571 +1114,18.56666667,1080,443,,192.8571429,79.10714286 +1115,18.58333333,1057,440,,188.75,78.57142857 +1116,18.6,1036,438,,185,78.21428571 +1117,18.61666667,1017,436,,181.6071429,77.85714286 +1118,18.63333333,1000,434,,178.5714286,77.5 +1119,18.65,985,433,,175.8928571,77.32142857 +1120,18.66666667,972,431,,173.5714286,76.96428571 +1121,18.68333333,960,430,,171.4285714,76.78571429 +1122,18.7,952,428,,170,76.42857143 +1123,18.71666667,945,428,,168.75,76.42857143 +1124,18.73333333,941,427,,168.0357143,76.25 +1125,18.75,941,427,,168.0357143,76.25 +1126,18.76666667,941,427,,168.0357143,76.25 +1127,18.78333333,942,428,,168.2142857,76.42857143 +1128,18.8,947,428,,169.1071429,76.42857143 +1129,18.81666667,954,430,,170.3571429,76.78571429 +1130,18.83333333,963,430,,171.9642857,76.78571429 +1131,18.85,975,433,,174.1071429,77.32142857 +1132,18.86666667,988,434,,176.4285714,77.5 +1133,18.88333333,1004,436,,179.2857143,77.85714286 +1134,18.9,1022,439,,182.5,78.39285714 +1135,18.91666667,1041,441,,185.8928571,78.75 +1136,18.93333333,1062,443,,189.6428571,79.10714286 +1137,18.95,1085,446,,193.75,79.64285714 +1138,18.96666667,1110,448,,198.2142857,80 +1139,18.98333333,1135,450,,202.6785714,80.35714286 +1140,19,1163,452,,207.6785714,80.71428571 +1141,19.01666667,1191,454,,212.6785714,81.07142857 +1142,19.03333333,1220,456,,217.8571429,81.42857143 +1143,19.05,1250,458,,223.2142857,81.78571429 +1144,19.06666667,1281,459,,228.75,81.96428571 +1145,19.08333333,1312,460,,234.2857143,82.14285714 +1146,19.1,1344,461,,240,82.32142857 +1147,19.11666667,1375,461,,245.5357143,82.32142857 +1148,19.13333333,1408,461,,251.4285714,82.32142857 +1149,19.15,1440,461,,257.1428571,82.32142857 +1150,19.16666667,1472,460,,262.8571429,82.14285714 +1151,19.18333333,1503,458,,268.3928571,81.78571429 +1152,19.2,1534,457,,273.9285714,81.60714286 +1153,19.21666667,1565,455,,279.4642857,81.25 +1154,19.23333333,1594,454,,284.6428571,81.07142857 +1155,19.25,1623,452,,289.8214286,80.71428571 +1156,19.26666667,1650,450,,294.6428571,80.35714286 +1157,19.28333333,1677,448,,299.4642857,80 +1158,19.3,1702,445,,303.9285714,79.46428571 +1159,19.31666667,1725,443,,308.0357143,79.10714286 +1160,19.33333333,1747,440,,311.9642857,78.57142857 +1161,19.35,1767,438,,315.5357143,78.21428571 +1162,19.36666667,1786,436,,318.9285714,77.85714286 +1163,19.38333333,1802,433,,321.7857143,77.32142857 +1164,19.4,1817,431,,324.4642857,76.96428571 +1165,19.41666667,1829,429,,326.6071429,76.60714286 +1166,19.43333333,1840,428,,328.5714286,76.42857143 +1167,19.45,1849,426,,330.1785714,76.07142857 +1168,19.46666667,1855,425,,331.25,75.89285714 +1169,19.48333333,1859,425,,331.9642857,75.89285714 +1170,19.5,1859,424,,331.9642857,75.71428571 +1171,19.51666667,1859,424,,331.9642857,75.71428571 +1172,19.53333333,1857,424,,331.6071429,75.71428571 +1173,19.55,1853,425,,330.8928571,75.89285714 +1174,19.56666667,1845,426,,329.4642857,76.07142857 +1175,19.58333333,1836,427,,327.8571429,76.25 +1176,19.6,1824,429,,325.7142857,76.60714286 +1177,19.61666667,1811,430,,323.3928571,76.78571429 +1178,19.63333333,1795,432,,320.5357143,77.14285714 +1179,19.65,1778,434,,317.5,77.5 +1180,19.66666667,1758,437,,313.9285714,78.03571429 +1181,19.68333333,1737,439,,310.1785714,78.39285714 +1182,19.7,1714,441,,306.0714286,78.75 +1183,19.71666667,1690,443,,301.7857143,79.10714286 +1184,19.73333333,1664,446,,297.1428571,79.64285714 +1185,19.75,1638,448,,292.5,80 +1186,19.76666667,1609,449,,287.3214286,80.17857143 +1187,19.78333333,1580,452,,282.1428571,80.71428571 +1188,19.8,1550,453,,276.7857143,80.89285714 +1189,19.81666667,1519,455,,271.25,81.25 +1190,19.83333333,1487,455,,265.5357143,81.25 +1191,19.85,1456,456,,260,81.42857143 +1192,19.86666667,1424,457,,254.2857143,81.60714286 +1193,19.88333333,1391,457,,248.3928571,81.60714286 +1194,19.9,1359,457,,242.6785714,81.60714286 +1195,19.91666667,1327,457,,236.9642857,81.60714286 +1196,19.93333333,1295,456,,231.25,81.42857143 +1197,19.95,1264,455,,225.7142857,81.25 +1198,19.96666667,1233,453,,220.1785714,80.89285714 +1199,19.98333333,1203,452,,214.8214286,80.71428571 +1200,20,1174,449,,209.6428571,80.17857143 +1201,20.01666667,1146,448,,204.6428571,80 +1202,20.03333333,1120,446,,200,79.64285714 +1203,20.05,1095,444,,195.5357143,79.28571429 +1204,20.06666667,1071,441,,191.25,78.75 +1205,20.08333333,1049,439,,187.3214286,78.39285714 +1206,20.1,1029,437,,183.75,78.03571429 +1207,20.11666667,1011,435,,180.5357143,77.67857143 +1208,20.13333333,994,433,,177.5,77.32142857 +1209,20.15,980,431,,175,76.96428571 +1210,20.16666667,968,430,,172.8571429,76.78571429 +1211,20.18333333,958,429,,171.0714286,76.60714286 +1212,20.2,950,428,,169.6428571,76.42857143 +1213,20.21666667,944,427,,168.5714286,76.25 +1214,20.23333333,941,427,,168.0357143,76.25 +1215,20.25,941,427,,168.0357143,76.25 +1216,20.26666667,941,427,,168.0357143,76.25 +1217,20.28333333,944,428,,168.5714286,76.42857143 +1218,20.3,950,429,,169.6428571,76.60714286 +1219,20.31666667,959,430,,171.25,76.78571429 +1220,20.33333333,969,432,,173.0357143,77.14285714 +1221,20.35,981,433,,175.1785714,77.32142857 +1222,20.36666667,995,435,,177.6785714,77.67857143 +1223,20.38333333,1012,437,,180.7142857,78.03571429 +1224,20.4,1030,439,,183.9285714,78.39285714 +1225,20.41666667,1050,441,,187.5,78.75 +1226,20.43333333,1072,443,,191.4285714,79.10714286 +1227,20.45,1095,446,,195.5357143,79.64285714 +1228,20.46666667,1120,448,,200,80 +1229,20.48333333,1146,450,,204.6428571,80.35714286 +1230,20.5,1172,453,,209.2857143,80.89285714 +1231,20.51666667,1201,455,,214.4642857,81.25 +1232,20.53333333,1230,456,,219.6428571,81.42857143 +1233,20.55,1261,457,,225.1785714,81.60714286 +1234,20.56666667,1292,459,,230.7142857,81.96428571 +1235,20.58333333,1324,460,,236.4285714,82.14285714 +1236,20.6,1356,460,,242.1428571,82.14285714 +1237,20.61666667,1388,460,,247.8571429,82.14285714 +1238,20.63333333,1420,459,,253.5714286,81.96428571 +1239,20.65,1453,459,,259.4642857,81.96428571 +1240,20.66666667,1484,458,,265,81.78571429 +1241,20.68333333,1516,457,,270.7142857,81.60714286 +1242,20.7,1547,456,,276.25,81.42857143 +1243,20.71666667,1577,454,,281.6071429,81.07142857 +1244,20.73333333,1606,452,,286.7857143,80.71428571 +1245,20.75,1634,451,,291.7857143,80.53571429 +1246,20.76666667,1661,448,,296.6071429,80 +1247,20.78333333,1687,446,,301.25,79.64285714 +1248,20.8,1711,443,,305.5357143,79.10714286 +1249,20.81666667,1734,441,,309.6428571,78.75 +1250,20.83333333,1755,438,,313.3928571,78.21428571 +1251,20.85,1775,436,,316.9642857,77.85714286 +1252,20.86666667,1793,434,,320.1785714,77.5 +1253,20.88333333,1808,432,,322.8571429,77.14285714 +1254,20.9,1822,430,,325.3571429,76.78571429 +1255,20.91666667,1834,428,,327.5,76.42857143 +1256,20.93333333,1843,427,,329.1071429,76.25 +1257,20.95,1851,426,,330.5357143,76.07142857 +1258,20.96666667,1856,425,,331.4285714,75.89285714 +1259,20.98333333,1858,425,,331.7857143,75.89285714 +1260,21,1858,425,,331.7857143,75.89285714 +1261,21.01666667,1858,425,,331.7857143,75.89285714 +1262,21.03333333,1855,425,,331.25,75.89285714 +1263,21.05,1849,426,,330.1785714,76.07142857 +1264,21.06666667,1841,427,,328.75,76.25 +1265,21.08333333,1831,428,,326.9642857,76.42857143 +1266,21.1,1819,430,,324.8214286,76.78571429 +1267,21.11666667,1804,432,,322.1428571,77.14285714 +1268,21.13333333,1788,434,,319.2857143,77.5 +1269,21.15,1770,436,,316.0714286,77.85714286 +1270,21.16666667,1750,438,,312.5,78.21428571 +1271,21.18333333,1728,440,,308.5714286,78.57142857 +1272,21.2,1705,443,,304.4642857,79.10714286 +1273,21.21666667,1680,445,,300,79.46428571 +1274,21.23333333,1654,448,,295.3571429,80 +1275,21.25,1626,450,,290.3571429,80.35714286 +1276,21.26666667,1598,452,,285.3571429,80.71428571 +1277,21.28333333,1568,454,,280,81.07142857 +1278,21.3,1538,455,,274.6428571,81.25 +1279,21.31666667,1506,456,,268.9285714,81.42857143 +1280,21.33333333,1475,457,,263.3928571,81.60714286 +1281,21.35,1442,458,,257.5,81.78571429 +1282,21.36666667,1410,458,,251.7857143,81.78571429 +1283,21.38333333,1378,458,,246.0714286,81.78571429 +1284,21.4,1345,458,,240.1785714,81.78571429 +1285,21.41666667,1314,458,,234.6428571,81.78571429 +1286,21.43333333,1282,457,,228.9285714,81.60714286 +1287,21.45,1251,456,,223.3928571,81.42857143 +1288,21.46666667,1221,454,,218.0357143,81.07142857 +1289,21.48333333,1191,453,,212.6785714,80.89285714 +1290,21.5,1163,450,,207.6785714,80.35714286 +1291,21.51666667,1136,449,,202.8571429,80.17857143 +1292,21.53333333,1110,447,,198.2142857,79.82142857 +1293,21.55,1086,445,,193.9285714,79.46428571 +1294,21.56666667,1063,442,,189.8214286,78.92857143 +1295,21.58333333,1042,440,,186.0714286,78.57142857 +1296,21.6,1023,439,,182.6785714,78.39285714 +1297,21.61666667,1005,437,,179.4642857,78.03571429 +1298,21.63333333,990,435,,176.7857143,77.67857143 +1299,21.65,976,433,,174.2857143,77.32142857 +1300,21.66666667,965,431,,172.3214286,76.96428571 +1301,21.68333333,956,430,,170.7142857,76.78571429 +1302,21.7,949,429,,169.4642857,76.60714286 +1303,21.71666667,944,429,,168.5714286,76.60714286 +1304,21.73333333,944,429,,168.5714286,76.60714286 +1305,21.75,944,429,,168.5714286,76.60714286 +1306,21.76666667,944,429,,168.5714286,76.60714286 +1307,21.78333333,948,429,,169.2857143,76.60714286 +1308,21.8,955,430,,170.5357143,76.78571429 +1309,21.81666667,964,432,,172.1428571,77.14285714 +1310,21.83333333,975,433,,174.1071429,77.32142857 +1311,21.85,988,435,,176.4285714,77.67857143 +1312,21.86666667,1003,437,,179.1071429,78.03571429 +1313,21.88333333,1020,439,,182.1428571,78.39285714 +1314,21.9,1039,441,,185.5357143,78.75 +1315,21.91666667,1060,443,,189.2857143,79.10714286 +1316,21.93333333,1082,445,,193.2142857,79.46428571 +1317,21.95,1106,448,,197.5,80 +1318,21.96666667,1132,450,,202.1428571,80.35714286 +1319,21.98333333,1158,452,,206.7857143,80.71428571 +1320,22,1186,454,,211.7857143,81.07142857 +1321,22.01666667,1215,455,,216.9642857,81.25 +1322,22.03333333,1245,457,,222.3214286,81.60714286 +1323,22.05,1275,459,,227.6785714,81.96428571 +1324,22.06666667,1307,460,,233.3928571,82.14285714 +1325,22.08333333,1338,460,,238.9285714,82.14285714 +1326,22.1,1370,460,,244.6428571,82.14285714 +1327,22.11666667,1402,460,,250.3571429,82.14285714 +1328,22.13333333,1434,460,,256.0714286,82.14285714 +1329,22.15,1465,459,,261.6071429,81.96428571 +1330,22.16666667,1497,458,,267.3214286,81.78571429 +1331,22.18333333,1528,457,,272.8571429,81.60714286 +1332,22.2,1559,455,,278.3928571,81.25 +1333,22.21666667,1588,454,,283.5714286,81.07142857 +1334,22.23333333,1617,452,,288.75,80.71428571 +1335,22.25,1645,449,,293.75,80.17857143 +1336,22.26666667,1671,447,,298.3928571,79.82142857 +1337,22.28333333,1697,445,,303.0357143,79.46428571 +1338,22.3,1720,442,,307.1428571,78.92857143 +1339,22.31666667,1743,440,,311.25,78.57142857 +1340,22.33333333,1763,437,,314.8214286,78.03571429 +1341,22.35,1781,435,,318.0357143,77.67857143 +1342,22.36666667,1798,433,,321.0714286,77.32142857 +1343,22.38333333,1813,431,,323.75,76.96428571 +1344,22.4,1826,429,,326.0714286,76.60714286 +1345,22.41666667,1837,427,,328.0357143,76.25 +1346,22.43333333,1845,426,,329.4642857,76.07142857 +1347,22.45,1852,425,,330.7142857,75.89285714 +1348,22.46666667,1856,424,,331.4285714,75.71428571 +1349,22.48333333,1856,424,,331.4285714,75.71428571 +1350,22.5,1856,424,,331.4285714,75.71428571 +1351,22.51666667,1855,424,,331.25,75.71428571 +1352,22.53333333,1851,425,,330.5357143,75.89285714 +1353,22.55,1844,426,,329.2857143,76.07142857 +1354,22.56666667,1835,427,,327.6785714,76.25 +1355,22.58333333,1823,428,,325.5357143,76.42857143 +1356,22.6,1810,430,,323.2142857,76.78571429 +1357,22.61666667,1795,432,,320.5357143,77.14285714 +1358,22.63333333,1778,434,,317.5,77.5 +1359,22.65,1759,436,,314.1071429,77.85714286 +1360,22.66666667,1738,438,,310.3571429,78.21428571 +1361,22.68333333,1716,441,,306.4285714,78.75 +1362,22.7,1692,443,,302.1428571,79.10714286 +1363,22.71666667,1666,445,,297.5,79.46428571 +1364,22.73333333,1640,447,,292.8571429,79.82142857 +1365,22.75,1612,449,,287.8571429,80.17857143 +1366,22.76666667,1583,451,,282.6785714,80.53571429 +1367,22.78333333,1552,453,,277.1428571,80.89285714 +1368,22.8,1522,454,,271.7857143,81.07142857 +1369,22.81666667,1491,455,,266.25,81.25 +1370,22.83333333,1459,456,,260.5357143,81.42857143 +1371,22.85,1427,457,,254.8214286,81.60714286 +1372,22.86666667,1395,457,,249.1071429,81.60714286 +1373,22.88333333,1363,457,,243.3928571,81.60714286 +1374,22.9,1331,457,,237.6785714,81.60714286 +1375,22.91666667,1299,456,,231.9642857,81.42857143 +1376,22.93333333,1268,455,,226.4285714,81.25 +1377,22.95,1237,454,,220.8928571,81.07142857 +1378,22.96666667,1207,452,,215.5357143,80.71428571 +1379,22.98333333,1178,450,,210.3571429,80.35714286 +1380,23,1151,449,,205.5357143,80.17857143 +1381,23.01666667,1125,447,,200.8928571,79.82142857 +1382,23.03333333,1099,445,,196.25,79.46428571 +1383,23.05,1075,443,,191.9642857,79.10714286 +1384,23.06666667,1053,441,,188.0357143,78.75 +1385,23.08333333,1033,439,,184.4642857,78.39285714 +1386,23.1,1014,437,,181.0714286,78.03571429 +1387,23.11666667,998,435,,178.2142857,77.67857143 +1388,23.13333333,984,433,,175.7142857,77.32142857 +1389,23.15,971,431,,173.3928571,76.96428571 +1390,23.16666667,961,430,,171.6071429,76.78571429 +1391,23.18333333,953,429,,170.1785714,76.60714286 +1392,23.2,947,429,,169.1071429,76.60714286 +1393,23.21666667,944,428,,168.5714286,76.42857143 +1394,23.23333333,944,428,,168.5714286,76.42857143 +1395,23.25,944,428,,168.5714286,76.42857143 +1396,23.26666667,947,429,,169.1071429,76.60714286 +1397,23.28333333,952,429,,170,76.60714286 +1398,23.3,960,430,,171.4285714,76.78571429 +1399,23.31666667,970,431,,173.2142857,76.96428571 +1400,23.33333333,981,433,,175.1785714,77.32142857 +1401,23.35,995,435,,177.6785714,77.67857143 +1402,23.36666667,1011,437,,180.5357143,78.03571429 +1403,23.38333333,1029,439,,183.75,78.39285714 +1404,23.4,1049,442,,187.3214286,78.92857143 +1405,23.41666667,1071,444,,191.25,79.28571429 +1406,23.43333333,1093,446,,195.1785714,79.64285714 +1407,23.45,1118,449,,199.6428571,80.17857143 +1408,23.46666667,1144,451,,204.2857143,80.53571429 +1409,23.48333333,1171,453,,209.1071429,80.89285714 +1410,23.5,1199,455,,214.1071429,81.25 +1411,23.51666667,1228,456,,219.2857143,81.42857143 +1412,23.53333333,1259,458,,224.8214286,81.78571429 +1413,23.55,1289,459,,230.1785714,81.96428571 +1414,23.56666667,1321,460,,235.8928571,82.14285714 +1415,23.58333333,1352,460,,241.4285714,82.14285714 +1416,23.6,1384,460,,247.1428571,82.14285714 +1417,23.61666667,1416,460,,252.8571429,82.14285714 +1418,23.63333333,1448,460,,258.5714286,82.14285714 +1419,23.65,1479,459,,264.1071429,81.96428571 +1420,23.66666667,1511,458,,269.8214286,81.78571429 +1421,23.68333333,1542,457,,275.3571429,81.60714286 +1422,23.7,1571,455,,280.5357143,81.25 +1423,23.71666667,1601,454,,285.8928571,81.07142857 +1424,23.73333333,1629,451,,290.8928571,80.53571429 +1425,23.75,1656,449,,295.7142857,80.17857143 +1426,23.76666667,1682,447,,300.3571429,79.82142857 +1427,23.78333333,1707,444,,304.8214286,79.28571429 +1428,23.8,1730,442,,308.9285714,78.92857143 +1429,23.81666667,1751,440,,312.6785714,78.57142857 +1430,23.83333333,1771,437,,316.25,78.03571429 +1431,23.85,1789,435,,319.4642857,77.67857143 +1432,23.86666667,1804,434,,322.1428571,77.5 +1433,23.88333333,1818,432,,324.6428571,77.14285714 +1434,23.9,1830,430,,326.7857143,76.78571429 +1435,23.91666667,1840,428,,328.5714286,76.42857143 +1436,23.93333333,1848,427,,330,76.25 +1437,23.95,1854,426,,331.0714286,76.07142857 +1438,23.96666667,1857,425,,331.6071429,75.89285714 +1439,23.98333333,1857,425,,331.6071429,75.89285714 +1440,24,1857,425,,331.6071429,75.89285714 +1441,24.01666667,1854,426,,331.0714286,76.07142857 +1442,24.03333333,1848,426,,330,76.07142857 +1443,24.05,1841,428,,328.75,76.42857143 +1444,24.06666667,1830,429,,326.7857143,76.60714286 +1445,24.08333333,1818,430,,324.6428571,76.78571429 +1446,24.1,1805,432,,322.3214286,77.14285714 +1447,24.11666667,1788,434,,319.2857143,77.5 +1448,24.13333333,1771,436,,316.25,77.85714286 +1449,24.15,1751,439,,312.6785714,78.39285714 +1450,24.16666667,1729,441,,308.75,78.75 +1451,24.18333333,1706,443,,304.6428571,79.10714286 +1452,24.2,1682,445,,300.3571429,79.46428571 +1453,24.21666667,1656,447,,295.7142857,79.82142857 +1454,24.23333333,1628,449,,290.7142857,80.17857143 +1455,24.25,1600,451,,285.7142857,80.53571429 +1456,24.26666667,1571,453,,280.5357143,80.89285714 +1457,24.28333333,1540,455,,275,81.25 +1458,24.3,1510,456,,269.6428571,81.42857143 +1459,24.31666667,1478,457,,263.9285714,81.60714286 +1460,24.33333333,1446,457,,258.2142857,81.60714286 +1461,24.35,1414,458,,252.5,81.78571429 +1462,24.36666667,1382,458,,246.7857143,81.78571429 +1463,24.38333333,1350,458,,241.0714286,81.78571429 +1464,24.4,1318,458,,235.3571429,81.78571429 +1465,24.41666667,1286,457,,229.6428571,81.60714286 +1466,24.43333333,1256,455,,224.2857143,81.25 +1467,24.45,1225,454,,218.75,81.07142857 +1468,24.46666667,1196,453,,213.5714286,80.89285714 +1469,24.48333333,1168,451,,208.5714286,80.53571429 +1470,24.5,1141,449,,203.75,80.17857143 +1471,24.51666667,1115,447,,199.1071429,79.82142857 +1472,24.53333333,1091,445,,194.8214286,79.46428571 +1473,24.55,1067,442,,190.5357143,78.92857143 +1474,24.56666667,1046,440,,186.7857143,78.57142857 +1475,24.58333333,1027,438,,183.3928571,78.21428571 +1476,24.6,1009,436,,180.1785714,77.85714286 +1477,24.61666667,994,434,,177.5,77.5 +1478,24.63333333,980,433,,175,77.32142857 +1479,24.65,969,432,,173.0357143,77.14285714 +1480,24.66666667,959,431,,171.25,76.96428571 +1481,24.68333333,952,430,,170,76.78571429 +1482,24.7,947,429,,169.1071429,76.60714286 +1483,24.71666667,946,429,,168.9285714,76.60714286 +1484,24.73333333,946,429,,168.9285714,76.60714286 +1485,24.75,946,429,,168.9285714,76.60714286 +1486,24.76666667,950,430,,169.6428571,76.78571429 +1487,24.78333333,956,430,,170.7142857,76.78571429 +1488,24.8,965,432,,172.3214286,77.14285714 +1489,24.81666667,976,434,,174.2857143,77.5 +1490,24.83333333,988,435,,176.4285714,77.67857143 +1491,24.85,1003,437,,179.1071429,78.03571429 +1492,24.86666667,1020,439,,182.1428571,78.39285714 +1493,24.88333333,1039,441,,185.5357143,78.75 +1494,24.9,1059,443,,189.1071429,79.10714286 +1495,24.91666667,1081,445,,193.0357143,79.46428571 +1496,24.93333333,1105,448,,197.3214286,80 +1497,24.95,1129,450,,201.6071429,80.35714286 +1498,24.96666667,1156,451,,206.4285714,80.53571429 +1499,24.98333333,1183,453,,211.25,80.89285714 +1500,25,1211,455,,216.25,81.25 +1501,25.01666667,1241,457,,221.6071429,81.60714286 +1502,25.03333333,1272,458,,227.1428571,81.78571429 +1503,25.05,1303,460,,232.6785714,82.14285714 +1504,25.06666667,1334,460,,238.2142857,82.14285714 +1505,25.08333333,1365,460,,243.75,82.14285714 +1506,25.1,1397,460,,249.4642857,82.14285714 +1507,25.11666667,1429,459,,255.1785714,81.96428571 +1508,25.13333333,1461,459,,260.8928571,81.96428571 +1509,25.15,1493,458,,266.6071429,81.78571429 +1510,25.16666667,1524,457,,272.1428571,81.60714286 +1511,25.18333333,1554,456,,277.5,81.42857143 +1512,25.2,1584,454,,282.8571429,81.07142857 +1513,25.21666667,1612,452,,287.8571429,80.71428571 +1514,25.23333333,1640,449,,292.8571429,80.17857143 +1515,25.25,1666,447,,297.5,79.82142857 +1516,25.26666667,1691,445,,301.9642857,79.46428571 +1517,25.28333333,1715,442,,306.25,78.92857143 +1518,25.3,1737,440,,310.1785714,78.57142857 +1519,25.31666667,1758,438,,313.9285714,78.21428571 +1520,25.33333333,1777,435,,317.3214286,77.67857143 +1521,25.35,1794,433,,320.3571429,77.32142857 +1522,25.36666667,1809,431,,323.0357143,76.96428571 +1523,25.38333333,1822,430,,325.3571429,76.78571429 +1524,25.4,1833,428,,327.3214286,76.42857143 +1525,25.41666667,1842,427,,328.9285714,76.25 +1526,25.43333333,1848,426,,330,76.07142857 +1527,25.45,1853,425,,330.8928571,75.89285714 +1528,25.46666667,1853,425,,330.8928571,75.89285714 +1529,25.48333333,1853,425,,330.8928571,75.89285714 +1530,25.5,1853,425,,330.8928571,75.89285714 +1531,25.51666667,1849,425,,330.1785714,75.89285714 +1532,25.53333333,1842,426,,328.9285714,76.07142857 +1533,25.55,1834,427,,327.5,76.25 +1534,25.56666667,1823,429,,325.5357143,76.60714286 +1535,25.58333333,1810,430,,323.2142857,76.78571429 +1536,25.6,1795,432,,320.5357143,77.14285714 +1537,25.61666667,1778,434,,317.5,77.5 +1538,25.63333333,1760,436,,314.2857143,77.85714286 +1539,25.65,1739,439,,310.5357143,78.39285714 +1540,25.66666667,1717,441,,306.6071429,78.75 +1541,25.68333333,1694,443,,302.5,79.10714286 +1542,25.7,1668,445,,297.8571429,79.46428571 +1543,25.71666667,1642,448,,293.2142857,80 +1544,25.73333333,1615,450,,288.3928571,80.35714286 +1545,25.75,1586,451,,283.2142857,80.53571429 +1546,25.76666667,1556,453,,277.8571429,80.89285714 +1547,25.78333333,1526,455,,272.5,81.25 +1548,25.8,1495,456,,266.9642857,81.42857143 +1549,25.81666667,1463,456,,261.25,81.42857143 +1550,25.83333333,1432,457,,255.7142857,81.60714286 +1551,25.85,1399,457,,249.8214286,81.60714286 +1552,25.86666667,1367,457,,244.1071429,81.60714286 +1553,25.88333333,1336,457,,238.5714286,81.60714286 +1554,25.9,1304,457,,232.8571429,81.60714286 +1555,25.91666667,1273,456,,227.3214286,81.42857143 +1556,25.93333333,1243,454,,221.9642857,81.07142857 +1557,25.95,1213,453,,216.6071429,80.89285714 +1558,25.96666667,1184,451,,211.4285714,80.53571429 +1559,25.98333333,1156,449,,206.4285714,80.17857143 +1560,26,1129,447,,201.6071429,79.82142857 +1561,26.01666667,1104,445,,197.1428571,79.46428571 +1562,26.03333333,1081,443,,193.0357143,79.10714286 +1563,26.05,1059,441,,189.1071429,78.75 +1564,26.06666667,1038,439,,185.3571429,78.39285714 +1565,26.08333333,1020,437,,182.1428571,78.03571429 +1566,26.1,1003,435,,179.1071429,77.67857143 +1567,26.11666667,988,434,,176.4285714,77.5 +1568,26.13333333,976,432,,174.2857143,77.14285714 +1569,26.15,965,431,,172.3214286,76.96428571 +1570,26.16666667,956,430,,170.7142857,76.78571429 +1571,26.18333333,950,429,,169.6428571,76.60714286 +1572,26.2,946,429,,168.9285714,76.60714286 +1573,26.21666667,946,429,,168.9285714,76.60714286 +1574,26.23333333,946,429,,168.9285714,76.60714286 +1575,26.25,948,430,,169.2857143,76.78571429 +1576,26.26666667,953,430,,170.1785714,76.78571429 +1577,26.28333333,961,431,,171.6071429,76.96428571 +1578,26.3,970,433,,173.2142857,77.32142857 +1579,26.31666667,982,434,,175.3571429,77.5 +1580,26.33333333,996,436,,177.8571429,77.85714286 +1581,26.35,1011,438,,180.5357143,78.21428571 +1582,26.36666667,1029,440,,183.75,78.57142857 +1583,26.38333333,1048,442,,187.1428571,78.92857143 +1584,26.4,1069,444,,190.8928571,79.28571429 +1585,26.41666667,1092,446,,195,79.64285714 +1586,26.43333333,1116,448,,199.2857143,80 +1587,26.45,1142,451,,203.9285714,80.53571429 +1588,26.46666667,1169,453,,208.75,80.89285714 +1589,26.48333333,1197,454,,213.75,81.07142857 +1590,26.5,1226,456,,218.9285714,81.42857143 +1591,26.51666667,1255,457,,224.1071429,81.60714286 +1592,26.53333333,1286,459,,229.6428571,81.96428571 +1593,26.55,1317,460,,235.1785714,82.14285714 +1594,26.56666667,1348,460,,240.7142857,82.14285714 +1595,26.58333333,1380,460,,246.4285714,82.14285714 +1596,26.6,1411,460,,251.9642857,82.14285714 +1597,26.61666667,1443,460,,257.6785714,82.14285714 +1598,26.63333333,1475,459,,263.3928571,81.96428571 +1599,26.65,1506,458,,268.9285714,81.78571429 +1600,26.66666667,1536,457,,274.2857143,81.60714286 +1601,26.68333333,1566,455,,279.6428571,81.25 +1602,26.7,1595,454,,284.8214286,81.07142857 +1603,26.71666667,1623,452,,289.8214286,80.71428571 +1604,26.73333333,1651,449,,294.8214286,80.17857143 +1605,26.75,1676,447,,299.2857143,79.82142857 +1606,26.76666667,1701,445,,303.75,79.46428571 +1607,26.78333333,1724,442,,307.8571429,78.92857143 +1608,26.8,1745,440,,311.6071429,78.57142857 +1609,26.81666667,1765,438,,315.1785714,78.21428571 +1610,26.83333333,1783,435,,318.3928571,77.67857143 +1611,26.85,1799,433,,321.25,77.32142857 +1612,26.86666667,1813,432,,323.75,77.14285714 +1613,26.88333333,1826,430,,326.0714286,76.78571429 +1614,26.9,1836,428,,327.8571429,76.42857143 +1615,26.91666667,1844,427,,329.2857143,76.25 +1616,26.93333333,1849,426,,330.1785714,76.07142857 +1617,26.95,1853,426,,330.8928571,76.07142857 +1618,26.96666667,1853,426,,330.8928571,76.07142857 +1619,26.98333333,1853,426,,330.8928571,76.07142857 +1620,27,1851,426,,330.5357143,76.07142857 +1621,27.01666667,1846,426,,329.6428571,76.07142857 +1622,27.03333333,1839,427,,328.3928571,76.25 +1623,27.05,1829,428,,326.6071429,76.42857143 +1624,27.06666667,1818,430,,324.6428571,76.78571429 +1625,27.08333333,1804,432,,322.1428571,77.14285714 +1626,27.1,1789,434,,319.4642857,77.5 +1627,27.11666667,1771,436,,316.25,77.85714286 +1628,27.13333333,1752,438,,312.8571429,78.21428571 +1629,27.15,1731,440,,309.1071429,78.57142857 +1630,27.16666667,1708,442,,305,78.92857143 +1631,27.18333333,1684,445,,300.7142857,79.46428571 +1632,27.2,1658,447,,296.0714286,79.82142857 +1633,27.21666667,1631,449,,291.25,80.17857143 +1634,27.23333333,1603,451,,286.25,80.53571429 +1635,27.25,1574,453,,281.0714286,80.89285714 +1636,27.26666667,1544,454,,275.7142857,81.07142857 +1637,27.28333333,1514,456,,270.3571429,81.42857143 +1638,27.3,1483,457,,264.8214286,81.60714286 +1639,27.31666667,1451,458,,259.1071429,81.78571429 +1640,27.33333333,1419,459,,253.3928571,81.96428571 +1641,27.35,1387,459,,247.6785714,81.96428571 +1642,27.36666667,1355,459,,241.9642857,81.96428571 +1643,27.38333333,1324,459,,236.4285714,81.96428571 +1644,27.4,1293,458,,230.8928571,81.78571429 +1645,27.41666667,1262,456,,225.3571429,81.42857143 +1646,27.43333333,1232,455,,220,81.25 +1647,27.45,1203,454,,214.8214286,81.07142857 +1648,27.46666667,1175,452,,209.8214286,80.71428571 +1649,27.48333333,1147,450,,204.8214286,80.35714286 +1650,27.5,1122,448,,200.3571429,80 +1651,27.51666667,1097,446,,195.8928571,79.64285714 +1652,27.53333333,1074,444,,191.7857143,79.28571429 +1653,27.55,1053,442,,188.0357143,78.92857143 +1654,27.56666667,1034,440,,184.6428571,78.57142857 +1655,27.58333333,1016,438,,181.4285714,78.21428571 +1656,27.6,1000,437,,178.5714286,78.03571429 +1657,27.61666667,986,435,,176.0714286,77.67857143 +1658,27.63333333,974,434,,173.9285714,77.5 +1659,27.65,965,432,,172.3214286,77.14285714 +1660,27.66666667,957,431,,170.8928571,76.96428571 +1661,27.68333333,952,431,,170,76.96428571 +1662,27.7,950,431,,169.6428571,76.96428571 +1663,27.71666667,950,431,,169.6428571,76.96428571 +1664,27.73333333,950,431,,169.6428571,76.96428571 +1665,27.75,954,431,,170.3571429,76.96428571 +1666,27.76666667,959,432,,171.25,77.14285714 +1667,27.78333333,968,433,,172.8571429,77.32142857 +1668,27.8,978,435,,174.6428571,77.67857143 +1669,27.81666667,990,436,,176.7857143,77.85714286 +1670,27.83333333,1005,438,,179.4642857,78.21428571 +1671,27.85,1021,440,,182.3214286,78.57142857 +1672,27.86666667,1039,442,,185.5357143,78.92857143 +1673,27.88333333,1059,444,,189.1071429,79.28571429 +1674,27.9,1081,446,,193.0357143,79.64285714 +1675,27.91666667,1104,448,,197.1428571,80 +1676,27.93333333,1128,450,,201.4285714,80.35714286 +1677,27.95,1154,453,,206.0714286,80.89285714 +1678,27.96666667,1181,455,,210.8928571,81.25 +1679,27.98333333,1209,456,,215.8928571,81.42857143 +1680,28,1239,458,,221.25,81.78571429 +1681,28.01666667,1268,459,,226.4285714,81.96428571 +1682,28.03333333,1299,460,,231.9642857,82.14285714 +1683,28.05,1330,461,,237.5,82.32142857 +1684,28.06666667,1361,461,,243.0357143,82.32142857 +1685,28.08333333,1393,461,,248.75,82.32142857 +1686,28.1,1424,461,,254.2857143,82.32142857 +1687,28.11666667,1456,461,,260,82.32142857 +1688,28.13333333,1487,459,,265.5357143,81.96428571 +1689,28.15,1518,458,,271.0714286,81.78571429 +1690,28.16666667,1548,457,,276.4285714,81.60714286 +1691,28.18333333,1578,455,,281.7857143,81.25 +1692,28.2,1606,453,,286.7857143,80.89285714 +1693,28.21666667,1634,451,,291.7857143,80.53571429 +1694,28.23333333,1660,449,,296.4285714,80.17857143 +1695,28.25,1685,447,,300.8928571,79.82142857 +1696,28.26666667,1709,444,,305.1785714,79.28571429 +1697,28.28333333,1731,442,,309.1071429,78.92857143 +1698,28.3,1752,439,,312.8571429,78.39285714 +1699,28.31666667,1771,437,,316.25,78.03571429 +1700,28.33333333,1788,435,,319.2857143,77.67857143 +1701,28.35,1803,433,,321.9642857,77.32142857 +1702,28.36666667,1817,431,,324.4642857,76.96428571 +1703,28.38333333,1828,429,,326.4285714,76.60714286 +1704,28.4,1837,428,,328.0357143,76.42857143 +1705,28.41666667,1844,427,,329.2857143,76.25 +1706,28.43333333,1849,426,,330.1785714,76.07142857 +1707,28.45,1851,425,,330.5357143,75.89285714 +1708,28.46666667,1851,425,,330.5357143,75.89285714 +1709,28.48333333,1851,425,,330.5357143,75.89285714 +1710,28.5,1847,426,,329.8214286,76.07142857 +1711,28.51666667,1841,427,,328.75,76.25 +1712,28.53333333,1832,428,,327.1428571,76.42857143 +1713,28.55,1822,429,,325.3571429,76.60714286 +1714,28.56666667,1810,431,,323.2142857,76.96428571 +1715,28.58333333,1795,433,,320.5357143,77.32142857 +1716,28.6,1779,434,,317.6785714,77.5 +1717,28.61666667,1760,437,,314.2857143,78.03571429 +1718,28.63333333,1740,439,,310.7142857,78.39285714 +1719,28.65,1719,441,,306.9642857,78.75 +1720,28.66666667,1695,443,,302.6785714,79.10714286 +1721,28.68333333,1671,445,,298.3928571,79.46428571 +1722,28.7,1644,447,,293.5714286,79.82142857 +1723,28.71666667,1617,450,,288.75,80.35714286 +1724,28.73333333,1589,452,,283.75,80.71428571 +1725,28.75,1559,453,,278.3928571,80.89285714 +1726,28.76666667,1529,455,,273.0357143,81.25 +1727,28.78333333,1499,456,,267.6785714,81.42857143 +1728,28.8,1467,457,,261.9642857,81.60714286 +1729,28.81666667,1436,457,,256.4285714,81.60714286 +1730,28.83333333,1404,458,,250.7142857,81.78571429 +1731,28.85,1372,458,,245,81.78571429 +1732,28.86666667,1341,458,,239.4642857,81.78571429 +1733,28.88333333,1309,457,,233.75,81.60714286 +1734,28.9,1279,456,,228.3928571,81.42857143 +1735,28.91666667,1248,455,,222.8571429,81.25 +1736,28.93333333,1218,453,,217.5,80.89285714 +1737,28.95,1190,452,,212.5,80.71428571 +1738,28.96666667,1162,450,,207.5,80.35714286 +1739,28.98333333,1136,448,,202.8571429,80 +1740,29,1111,446,,198.3928571,79.64285714 +1741,29.01666667,1087,444,,194.1071429,79.28571429 +1742,29.03333333,1065,442,,190.1785714,78.92857143 +1743,29.05,1045,440,,186.6071429,78.57142857 +1744,29.06666667,1026,438,,183.2142857,78.21428571 +1745,29.08333333,1009,436,,180.1785714,77.85714286 +1746,29.1,994,434,,177.5,77.5 +1747,29.11666667,982,433,,175.3571429,77.32142857 +1748,29.13333333,971,432,,173.3928571,77.14285714 +1749,29.15,962,431,,171.7857143,76.96428571 +1750,29.16666667,956,430,,170.7142857,76.78571429 +1751,29.18333333,952,430,,170,76.78571429 +1752,29.2,952,430,,170,76.78571429 +1753,29.21666667,952,430,,170,76.78571429 +1754,29.23333333,953,430,,170.1785714,76.78571429 +1755,29.25,957,430,,170.8928571,76.78571429 +1756,29.26666667,964,432,,172.1428571,77.14285714 +1757,29.28333333,973,433,,173.75,77.32142857 +1758,29.3,985,435,,175.8928571,77.67857143 +1759,29.31666667,998,437,,178.2142857,78.03571429 +1760,29.33333333,1014,438,,181.0714286,78.21428571 +1761,29.35,1031,440,,184.1071429,78.57142857 +1762,29.36666667,1050,442,,187.5,78.92857143 +1763,29.38333333,1070,444,,191.0714286,79.28571429 +1764,29.4,1093,447,,195.1785714,79.82142857 +1765,29.41666667,1116,449,,199.2857143,80.17857143 +1766,29.43333333,1141,451,,203.75,80.53571429 +1767,29.45,1167,452,,208.3928571,80.71428571 +1768,29.46666667,1195,454,,213.3928571,81.07142857 +1769,29.48333333,1223,456,,218.3928571,81.42857143 +1770,29.5,1253,457,,223.75,81.60714286 +1771,29.51666667,1283,458,,229.1071429,81.78571429 +1772,29.53333333,1313,459,,234.4642857,81.96428571 +1773,29.55,1344,460,,240,82.14285714 +1774,29.56666667,1375,460,,245.5357143,82.14285714 +1775,29.58333333,1407,460,,251.25,82.14285714 +1776,29.6,1438,459,,256.7857143,81.96428571 +1777,29.61666667,1470,459,,262.5,81.96428571 +1778,29.63333333,1501,458,,268.0357143,81.78571429 +1779,29.65,1531,457,,273.3928571,81.60714286 +1780,29.66666667,1560,455,,278.5714286,81.25 +1781,29.68333333,1590,453,,283.9285714,80.89285714 +1782,29.7,1618,451,,288.9285714,80.53571429 +1783,29.71666667,1644,449,,293.5714286,80.17857143 +1784,29.73333333,1670,447,,298.2142857,79.82142857 +1785,29.75,1694,445,,302.5,79.46428571 +1786,29.76666667,1718,442,,306.7857143,78.92857143 +1787,29.78333333,1739,440,,310.5357143,78.57142857 +1788,29.8,1759,438,,314.1071429,78.21428571 +1789,29.81666667,1777,435,,317.3214286,77.67857143 +1790,29.83333333,1793,434,,320.1785714,77.5 +1791,29.85,1808,432,,322.8571429,77.14285714 +1792,29.86666667,1820,430,,325,76.78571429 +1793,29.88333333,1830,428,,326.7857143,76.42857143 +1794,29.9,1838,427,,328.2142857,76.25 +1795,29.91666667,1845,426,,329.4642857,76.07142857 +1796,29.93333333,1848,425,,330,75.89285714 +1797,29.95,1848,425,,330,75.89285714 +1798,29.96666667,1848,425,,330,75.89285714 +1799,29.98333333,1848,426,,330,76.07142857 +1800,30,1843,426,,329.1071429,76.07142857 +1801,30.01666667,1836,427,,327.8571429,76.25 +1802,30.03333333,1827,428,,326.25,76.42857143 +1803,30.05,1815,430,,324.1071429,76.78571429 +1804,30.06666667,1802,431,,321.7857143,76.96428571 +1805,30.08333333,1787,433,,319.1071429,77.32142857 +1806,30.1,1770,435,,316.0714286,77.67857143 +1807,30.11666667,1751,437,,312.6785714,78.03571429 +1808,30.13333333,1730,439,,308.9285714,78.39285714 +1809,30.15,1708,442,,305,78.92857143 +1810,30.16666667,1684,444,,300.7142857,79.28571429 +1811,30.18333333,1659,446,,296.25,79.64285714 +1812,30.2,1632,448,,291.4285714,80 +1813,30.21666667,1605,450,,286.6071429,80.35714286 +1814,30.23333333,1576,452,,281.4285714,80.71428571 +1815,30.25,1546,453,,276.0714286,80.89285714 +1816,30.26666667,1516,455,,270.7142857,81.25 +1817,30.28333333,1485,456,,265.1785714,81.42857143 +1818,30.3,1453,457,,259.4642857,81.60714286 +1819,30.31666667,1422,457,,253.9285714,81.60714286 +1820,30.33333333,1390,457,,248.2142857,81.60714286 +1821,30.35,1359,457,,242.6785714,81.60714286 +1822,30.36666667,1327,457,,236.9642857,81.60714286 +1823,30.38333333,1296,457,,231.4285714,81.60714286 +1824,30.4,1266,456,,226.0714286,81.42857143 +1825,30.41666667,1236,454,,220.7142857,81.07142857 +1826,30.43333333,1207,453,,215.5357143,80.89285714 +1827,30.45,1179,451,,210.5357143,80.53571429 +1828,30.46666667,1152,449,,205.7142857,80.17857143 +1829,30.48333333,1126,447,,201.0714286,79.82142857 +1830,30.5,1102,446,,196.7857143,79.64285714 +1831,30.51666667,1079,443,,192.6785714,79.10714286 +1832,30.53333333,1058,441,,188.9285714,78.75 +1833,30.55,1038,440,,185.3571429,78.57142857 +1834,30.56666667,1021,438,,182.3214286,78.21428571 +1835,30.58333333,1004,436,,179.2857143,77.85714286 +1836,30.6,990,435,,176.7857143,77.67857143 +1837,30.61666667,978,433,,174.6428571,77.32142857 +1838,30.63333333,968,432,,172.8571429,77.14285714 +1839,30.65,961,431,,171.6071429,76.96428571 +1840,30.66666667,955,430,,170.5357143,76.78571429 +1841,30.68333333,952,430,,170,76.78571429 +1842,30.7,952,430,,170,76.78571429 +1843,30.71666667,952,430,,170,76.78571429 +1844,30.73333333,955,430,,170.5357143,76.78571429 +1845,30.75,961,431,,171.6071429,76.96428571 +1846,30.76666667,968,432,,172.8571429,77.14285714 +1847,30.78333333,978,434,,174.6428571,77.5 +1848,30.8,990,435,,176.7857143,77.67857143 +1849,30.81666667,1004,437,,179.2857143,78.03571429 +1850,30.83333333,1020,439,,182.1428571,78.39285714 +1851,30.85,1038,441,,185.3571429,78.75 +1852,30.86666667,1058,443,,188.9285714,79.10714286 +1853,30.88333333,1079,445,,192.6785714,79.46428571 +1854,30.9,1101,447,,196.6071429,79.82142857 +1855,30.91666667,1126,450,,201.0714286,80.35714286 +1856,30.93333333,1151,452,,205.5357143,80.71428571 +1857,30.95,1177,454,,210.1785714,81.07142857 +1858,30.96666667,1205,456,,215.1785714,81.42857143 +1859,30.98333333,1234,457,,220.3571429,81.60714286 +1860,31,1264,458,,225.7142857,81.78571429 +1861,31.01666667,1294,460,,231.0714286,82.14285714 +1862,31.03333333,1324,461,,236.4285714,82.32142857 +1863,31.05,1355,461,,241.9642857,82.32142857 +1864,31.06666667,1387,461,,247.6785714,82.32142857 +1865,31.08333333,1418,461,,253.2142857,82.32142857 +1866,31.1,1450,460,,258.9285714,82.14285714 +1867,31.11666667,1481,459,,264.4642857,81.96428571 +1868,31.13333333,1511,458,,269.8214286,81.78571429 +1869,31.15,1542,457,,275.3571429,81.60714286 +1870,31.16666667,1572,455,,280.7142857,81.25 +1871,31.18333333,1600,453,,285.7142857,80.89285714 +1872,31.2,1628,451,,290.7142857,80.53571429 +1873,31.21666667,1654,449,,295.3571429,80.17857143 +1874,31.23333333,1680,447,,300,79.82142857 +1875,31.25,1704,444,,304.2857143,79.28571429 +1876,31.26666667,1726,442,,308.2142857,78.92857143 +1877,31.28333333,1747,439,,311.9642857,78.39285714 +1878,31.3,1766,437,,315.3571429,78.03571429 +1879,31.31666667,1783,435,,318.3928571,77.67857143 +1880,31.33333333,1799,433,,321.25,77.32142857 +1881,31.35,1812,431,,323.5714286,76.96428571 +1882,31.36666667,1824,429,,325.7142857,76.60714286 +1883,31.38333333,1833,428,,327.3214286,76.42857143 +1884,31.4,1841,427,,328.75,76.25 +1885,31.41666667,1846,426,,329.6428571,76.07142857 +1886,31.43333333,1848,425,,330,75.89285714 +1887,31.45,1848,425,,330,75.89285714 +1888,31.46666667,1848,425,,330,75.89285714 +1889,31.48333333,1845,426,,329.4642857,76.07142857 +1890,31.5,1839,426,,328.3928571,76.07142857 +1891,31.51666667,1831,427,,326.9642857,76.25 +1892,31.53333333,1821,429,,325.1785714,76.60714286 +1893,31.55,1809,430,,323.0357143,76.78571429 +1894,31.56666667,1795,432,,320.5357143,77.14285714 +1895,31.58333333,1779,434,,317.6785714,77.5 +1896,31.6,1761,436,,314.4642857,77.85714286 +1897,31.61666667,1742,438,,311.0714286,78.21428571 +1898,31.63333333,1720,440,,307.1428571,78.57142857 +1899,31.65,1697,442,,303.0357143,78.92857143 +1900,31.66666667,1673,445,,298.75,79.46428571 +1901,31.68333333,1647,447,,294.1071429,79.82142857 +1902,31.7,1620,449,,289.2857143,80.17857143 +1903,31.71666667,1592,451,,284.2857143,80.53571429 +1904,31.73333333,1563,453,,279.1071429,80.89285714 +1905,31.75,1534,454,,273.9285714,81.07142857 +1906,31.76666667,1503,455,,268.3928571,81.25 +1907,31.78333333,1472,456,,262.8571429,81.42857143 +1908,31.8,1441,457,,257.3214286,81.60714286 +1909,31.81666667,1409,457,,251.6071429,81.60714286 +1910,31.83333333,1378,457,,246.0714286,81.60714286 +1911,31.85,1346,457,,240.3571429,81.60714286 +1912,31.86666667,1316,457,,235,81.60714286 +1913,31.88333333,1284,456,,229.2857143,81.42857143 +1914,31.9,1254,455,,223.9285714,81.25 +1915,31.91666667,1225,454,,218.75,81.07142857 +1916,31.93333333,1196,452,,213.5714286,80.71428571 +1917,31.95,1168,450,,208.5714286,80.35714286 +1918,31.96666667,1142,449,,203.9285714,80.17857143 +1919,31.98333333,1117,447,,199.4642857,79.82142857 +1920,32,1093,445,,195.1785714,79.46428571 +1921,32.01666667,1071,443,,191.25,79.10714286 +1922,32.03333333,1051,441,,187.6785714,78.75 +1923,32.05,1032,439,,184.2857143,78.39285714 +1924,32.06666667,1015,437,,181.25,78.03571429 +1925,32.08333333,1000,436,,178.5714286,77.85714286 +1926,32.1,987,434,,176.25,77.5 +1927,32.11666667,976,433,,174.2857143,77.32142857 +1928,32.13333333,967,432,,172.6785714,77.14285714 +1929,32.15,960,431,,171.4285714,76.96428571 +1930,32.16666667,956,431,,170.7142857,76.96428571 +1931,32.18333333,955,431,,170.5357143,76.96428571 +1932,32.2,955,431,,170.5357143,76.96428571 +1933,32.21666667,955,431,,170.5357143,76.96428571 +1934,32.23333333,960,432,,171.4285714,77.14285714 +1935,32.25,966,433,,172.5,77.32142857 +1936,32.26666667,975,434,,174.1071429,77.5 +1937,32.28333333,986,435,,176.0714286,77.67857143 +1938,32.3,998,437,,178.2142857,78.03571429 +1939,32.31666667,1013,439,,180.8928571,78.39285714 +1940,32.33333333,1030,441,,183.9285714,78.75 +1941,32.35,1048,442,,187.1428571,78.92857143 +1942,32.36666667,1068,444,,190.7142857,79.28571429 +1943,32.38333333,1090,447,,194.6428571,79.82142857 +1944,32.4,1113,449,,198.75,80.17857143 +1945,32.41666667,1138,451,,203.2142857,80.53571429 +1946,32.43333333,1164,453,,207.8571429,80.89285714 +1947,32.45,1191,454,,212.6785714,81.07142857 +1948,32.46666667,1219,456,,217.6785714,81.42857143 +1949,32.48333333,1248,458,,222.8571429,81.78571429 +1950,32.5,1278,459,,228.2142857,81.96428571 +1951,32.51666667,1308,460,,233.5714286,82.14285714 +1952,32.53333333,1339,461,,239.1071429,82.32142857 +1953,32.55,1370,461,,244.6428571,82.32142857 +1954,32.56666667,1402,461,,250.3571429,82.32142857 +1955,32.58333333,1433,461,,255.8928571,82.32142857 +1956,32.6,1464,460,,261.4285714,82.14285714 +1957,32.61666667,1495,459,,266.9642857,81.96428571 +1958,32.63333333,1525,458,,272.3214286,81.78571429 +1959,32.65,1555,456,,277.6785714,81.42857143 +1960,32.66666667,1584,454,,282.8571429,81.07142857 +1961,32.68333333,1612,453,,287.8571429,80.89285714 +1962,32.7,1639,451,,292.6785714,80.53571429 +1963,32.71666667,1665,448,,297.3214286,80 +1964,32.73333333,1690,446,,301.7857143,79.64285714 +1965,32.75,1713,444,,305.8928571,79.28571429 +1966,32.76666667,1735,442,,309.8214286,78.92857143 +1967,32.78333333,1755,439,,313.3928571,78.39285714 +1968,32.8,1773,437,,316.6071429,78.03571429 +1969,32.81666667,1790,435,,319.6428571,77.67857143 +1970,32.83333333,1804,433,,322.1428571,77.32142857 +1971,32.85,1817,431,,324.4642857,76.96428571 +1972,32.86666667,1828,429,,326.4285714,76.60714286 +1973,32.88333333,1836,428,,327.8571429,76.42857143 +1974,32.9,1843,427,,329.1071429,76.25 +1975,32.91666667,1847,426,,329.8214286,76.07142857 +1976,32.93333333,1847,426,,329.8214286,76.07142857 +1977,32.95,1847,426,,329.8214286,76.07142857 +1978,32.96666667,1847,426,,329.8214286,76.07142857 +1979,32.98333333,1842,426,,328.9285714,76.07142857 +1980,33,1836,427,,327.8571429,76.25 +1981,33.01666667,1827,429,,326.25,76.60714286 +1982,33.03333333,1816,430,,324.2857143,76.78571429 +1983,33.05,1803,431,,321.9642857,76.96428571 +1984,33.06666667,1789,433,,319.4642857,77.32142857 +1985,33.08333333,1772,435,,316.4285714,77.67857143 +1986,33.1,1753,437,,313.0357143,78.03571429 +1987,33.11666667,1733,439,,309.4642857,78.39285714 +1988,33.13333333,1711,442,,305.5357143,78.92857143 +1989,33.15,1687,444,,301.25,79.28571429 +1990,33.16666667,1663,446,,296.9642857,79.64285714 +1991,33.18333333,1636,448,,292.1428571,80 +1992,33.2,1609,450,,287.3214286,80.35714286 +1993,33.21666667,1580,452,,282.1428571,80.71428571 +1994,33.23333333,1551,454,,276.9642857,81.07142857 +1995,33.25,1521,455,,271.6071429,81.25 +1996,33.26666667,1491,456,,266.25,81.42857143 +1997,33.28333333,1459,457,,260.5357143,81.60714286 +1998,33.3,1428,458,,255,81.78571429 +1999,33.31666667,1397,458,,249.4642857,81.78571429 +2000,33.33333333,1365,458,,243.75,81.78571429 +2001,33.35,1334,458,,238.2142857,81.78571429 +2002,33.36666667,1303,457,,232.6785714,81.60714286 +2003,33.38333333,1272,456,,227.1428571,81.42857143 +2004,33.4,1243,455,,221.9642857,81.25 +2005,33.41666667,1213,454,,216.6071429,81.07142857 +2006,33.43333333,1185,452,,211.6071429,80.71428571 +2007,33.45,1158,450,,206.7857143,80.35714286 +2008,33.46666667,1133,448,,202.3214286,80 +2009,33.48333333,1108,446,,197.8571429,79.64285714 +2010,33.5,1085,445,,193.75,79.46428571 +2011,33.51666667,1064,442,,190,78.92857143 +2012,33.53333333,1044,440,,186.4285714,78.57142857 +2013,33.55,1026,439,,183.2142857,78.39285714 +2014,33.56666667,1010,437,,180.3571429,78.03571429 +2015,33.58333333,996,436,,177.8571429,77.85714286 +2016,33.6,984,434,,175.7142857,77.5 +2017,33.61666667,973,433,,173.75,77.32142857 +2018,33.63333333,966,432,,172.5,77.14285714 +2019,33.65,960,432,,171.4285714,77.14285714 +2020,33.66666667,957,431,,170.8928571,76.96428571 +2021,33.68333333,957,431,,170.8928571,76.96428571 +2022,33.7,957,431,,170.8928571,76.96428571 +2023,33.71666667,959,432,,171.25,77.14285714 +2024,33.73333333,964,433,,172.1428571,77.32142857 +2025,33.75,972,434,,173.5714286,77.5 +2026,33.76666667,981,435,,175.1785714,77.67857143 +2027,33.78333333,993,436,,177.3214286,77.85714286 +2028,33.8,1006,438,,179.6428571,78.21428571 +2029,33.81666667,1022,440,,182.5,78.57142857 +2030,33.83333333,1039,442,,185.5357143,78.92857143 +2031,33.85,1059,444,,189.1071429,79.28571429 +2032,33.86666667,1079,446,,192.6785714,79.64285714 +2033,33.88333333,1102,448,,196.7857143,80 +2034,33.9,1125,450,,200.8928571,80.35714286 +2035,33.91666667,1150,452,,205.3571429,80.71428571 +2036,33.93333333,1176,454,,210,81.07142857 +2037,33.95,1204,456,,215,81.42857143 +2038,33.96666667,1232,457,,220,81.60714286 +2039,33.98333333,1262,459,,225.3571429,81.96428571 +2040,34,1292,460,,230.7142857,82.14285714 +2041,34.01666667,1322,461,,236.0714286,82.32142857 +2042,34.03333333,1353,461,,241.6071429,82.32142857 +2043,34.05,1384,461,,247.1428571,82.32142857 +2044,34.06666667,1416,461,,252.8571429,82.32142857 +2045,34.08333333,1446,460,,258.2142857,82.14285714 +2046,34.1,1477,460,,263.75,82.14285714 +2047,34.11666667,1508,458,,269.2857143,81.78571429 +2048,34.13333333,1538,457,,274.6428571,81.60714286 +2049,34.15,1567,456,,279.8214286,81.42857143 +2050,34.16666667,1596,454,,285,81.07142857 +2051,34.18333333,1623,452,,289.8214286,80.71428571 +2052,34.2,1650,450,,294.6428571,80.35714286 +2053,34.21666667,1675,448,,299.1071429,80 +2054,34.23333333,1699,446,,303.3928571,79.64285714 +2055,34.25,1722,443,,307.5,79.10714286 +2056,34.26666667,1742,441,,311.0714286,78.75 +2057,34.28333333,1762,438,,314.6428571,78.21428571 +2058,34.3,1780,436,,317.8571429,77.85714286 +2059,34.31666667,1795,434,,320.5357143,77.5 +2060,34.33333333,1809,432,,323.0357143,77.14285714 +2061,34.35,1821,430,,325.1785714,76.78571429 +2062,34.36666667,1831,429,,326.9642857,76.60714286 +2063,34.38333333,1838,428,,328.2142857,76.42857143 +2064,34.4,1844,427,,329.2857143,76.25 +2065,34.41666667,1847,426,,329.8214286,76.07142857 +2066,34.43333333,1847,426,,329.8214286,76.07142857 +2067,34.45,1847,426,,329.8214286,76.07142857 +2068,34.46666667,1844,426,,329.2857143,76.07142857 +2069,34.48333333,1839,427,,328.3928571,76.25 +2070,34.5,1831,428,,326.9642857,76.42857143 +2071,34.51666667,1822,429,,325.3571429,76.60714286 +2072,34.53333333,1810,431,,323.2142857,76.96428571 +2073,34.55,1797,433,,320.8928571,77.32142857 +2074,34.56666667,1781,435,,318.0357143,77.67857143 +2075,34.58333333,1763,436,,314.8214286,77.85714286 +2076,34.6,1744,439,,311.4285714,78.39285714 +2077,34.61666667,1723,441,,307.6785714,78.75 +2078,34.63333333,1701,443,,303.75,79.10714286 +2079,34.65,1677,446,,299.4642857,79.64285714 +2080,34.66666667,1651,447,,294.8214286,79.82142857 +2081,34.68333333,1624,449,,290,80.17857143 +2082,34.7,1597,451,,285.1785714,80.53571429 +2083,34.71666667,1568,453,,280,80.89285714 +2084,34.73333333,1539,454,,274.8214286,81.07142857 +2085,34.75,1509,456,,269.4642857,81.42857143 +2086,34.76666667,1478,457,,263.9285714,81.60714286 +2087,34.78333333,1447,458,,258.3928571,81.78571429 +2088,34.8,1415,458,,252.6785714,81.78571429 +2089,34.81666667,1383,458,,246.9642857,81.78571429 +2090,34.83333333,1352,458,,241.4285714,81.78571429 +2091,34.85,1321,458,,235.8928571,81.78571429 +2092,34.86666667,1291,458,,230.5357143,81.78571429 +2093,34.88333333,1261,456,,225.1785714,81.42857143 +2094,34.9,1231,455,,219.8214286,81.25 +2095,34.91666667,1202,453,,214.6428571,80.89285714 +2096,34.93333333,1175,452,,209.8214286,80.71428571 +2097,34.95,1148,450,,205,80.35714286 +2098,34.96666667,1123,448,,200.5357143,80 +2099,34.98333333,1099,446,,196.25,79.64285714 +2100,35,1077,444,,192.3214286,79.28571429 +2101,35.01666667,1057,442,,188.75,78.92857143 +2102,35.03333333,1038,440,,185.3571429,78.57142857 +2103,35.05,1021,439,,182.3214286,78.39285714 +2104,35.06666667,1005,437,,179.4642857,78.03571429 +2105,35.08333333,992,436,,177.1428571,77.85714286 +2106,35.1,981,434,,175.1785714,77.5 +2107,35.11666667,972,433,,173.5714286,77.32142857 +2108,35.13333333,965,433,,172.3214286,77.32142857 +2109,35.15,960,432,,171.4285714,77.14285714 +2110,35.16666667,959,432,,171.25,77.14285714 +2111,35.18333333,959,432,,171.25,77.14285714 +2112,35.2,959,432,,171.25,77.14285714 +2113,35.21666667,963,433,,171.9642857,77.32142857 +2114,35.23333333,969,434,,173.0357143,77.5 +2115,35.25,977,435,,174.4642857,77.67857143 +2116,35.26666667,987,436,,176.25,77.85714286 +2117,35.28333333,1000,438,,178.5714286,78.21428571 +2118,35.3,1014,440,,181.0714286,78.57142857 +2119,35.31666667,1030,442,,183.9285714,78.92857143 +2120,35.33333333,1049,443,,187.3214286,79.10714286 +2121,35.35,1069,446,,190.8928571,79.64285714 +2122,35.36666667,1090,448,,194.6428571,80 +2123,35.38333333,1113,450,,198.75,80.35714286 +2124,35.4,1137,452,,203.0357143,80.71428571 +2125,35.41666667,1162,454,,207.5,81.07142857 +2126,35.43333333,1189,456,,212.3214286,81.42857143 +2127,35.45,1217,457,,217.3214286,81.60714286 +2128,35.46666667,1246,459,,222.5,81.96428571 +2129,35.48333333,1275,460,,227.6785714,82.14285714 +2130,35.5,1306,461,,233.2142857,82.32142857 +2131,35.51666667,1336,462,,238.5714286,82.5 +2132,35.53333333,1367,462,,244.1071429,82.5 +2133,35.55,1398,462,,249.6428571,82.5 +2134,35.56666667,1429,461,,255.1785714,82.32142857 +2135,35.58333333,1460,460,,260.7142857,82.14285714 +2136,35.6,1490,459,,266.0714286,81.96428571 +2137,35.61666667,1521,458,,271.6071429,81.78571429 +2138,35.63333333,1550,457,,276.7857143,81.60714286 +2139,35.65,1579,455,,281.9642857,81.25 +2140,35.66666667,1607,453,,286.9642857,80.89285714 +2141,35.68333333,1634,451,,291.7857143,80.53571429 +2142,35.7,1660,449,,296.4285714,80.17857143 +2143,35.71666667,1684,447,,300.7142857,79.82142857 +2144,35.73333333,1708,444,,305,79.28571429 +2145,35.75,1730,442,,308.9285714,78.92857143 +2146,35.76666667,1750,439,,312.5,78.39285714 +2147,35.78333333,1768,438,,315.7142857,78.21428571 +2148,35.8,1785,435,,318.75,77.67857143 +2149,35.81666667,1800,433,,321.4285714,77.32142857 +2150,35.83333333,1813,432,,323.75,77.14285714 +2151,35.85,1824,430,,325.7142857,76.78571429 +2152,35.86666667,1832,429,,327.1428571,76.60714286 +2153,35.88333333,1839,427,,328.3928571,76.25 +2154,35.9,1844,427,,329.2857143,76.25 +2155,35.91666667,1845,426,,329.4642857,76.07142857 +2156,35.93333333,1845,426,,329.4642857,76.07142857 +2157,35.95,1845,426,,329.4642857,76.07142857 +2158,35.96666667,1840,427,,328.5714286,76.25 +2159,35.98333333,1834,428,,327.5,76.42857143 +2160,36,1826,429,,326.0714286,76.60714286 +2161,36.01666667,1815,430,,324.1071429,76.78571429 +2162,36.03333333,1803,431,,321.9642857,76.96428571 +2163,36.05,1788,433,,319.2857143,77.32142857 +2164,36.06666667,1772,435,,316.4285714,77.67857143 +2165,36.08333333,1753,437,,313.0357143,78.03571429 +2166,36.1,1733,439,,309.4642857,78.39285714 +2167,36.11666667,1712,441,,305.7142857,78.75 +2168,36.13333333,1688,444,,301.4285714,79.28571429 +2169,36.15,1664,446,,297.1428571,79.64285714 +2170,36.16666667,1638,448,,292.5,80 +2171,36.18333333,1611,450,,287.6785714,80.35714286 +2172,36.2,1583,452,,282.6785714,80.71428571 +2173,36.21666667,1554,454,,277.5,81.07142857 +2174,36.23333333,1524,455,,272.1428571,81.25 +2175,36.25,1494,456,,266.7857143,81.42857143 +2176,36.26666667,1463,457,,261.25,81.60714286 +2177,36.28333333,1432,457,,255.7142857,81.60714286 +2178,36.3,1401,458,,250.1785714,81.78571429 +2179,36.31666667,1369,458,,244.4642857,81.78571429 +2180,36.33333333,1339,458,,239.1071429,81.78571429 +2181,36.35,1308,457,,233.5714286,81.60714286 +2182,36.36666667,1277,456,,228.0357143,81.42857143 +2183,36.38333333,1248,455,,222.8571429,81.25 +2184,36.4,1219,453,,217.6785714,80.89285714 +2185,36.41666667,1191,452,,212.6785714,80.71428571 +2186,36.43333333,1163,451,,207.6785714,80.53571429 +2187,36.45,1138,449,,203.2142857,80.17857143 +2188,36.46666667,1113,447,,198.75,79.82142857 +2189,36.48333333,1090,445,,194.6428571,79.46428571 +2190,36.5,1069,443,,190.8928571,79.10714286 +2191,36.51666667,1049,441,,187.3214286,78.75 +2192,36.53333333,1031,439,,184.1071429,78.39285714 +2193,36.55,1015,437,,181.25,78.03571429 +2194,36.56666667,1000,436,,178.5714286,77.85714286 +2195,36.58333333,988,435,,176.4285714,77.67857143 +2196,36.6,978,433,,174.6428571,77.32142857 +2197,36.61666667,970,433,,173.2142857,77.32142857 +2198,36.63333333,963,432,,171.9642857,77.14285714 +2199,36.65,960,432,,171.4285714,77.14285714 +2200,36.66666667,960,432,,171.4285714,77.14285714 +2201,36.68333333,960,432,,171.4285714,77.14285714 +2202,36.7,961,432,,171.6071429,77.14285714 +2203,36.71666667,966,433,,172.5,77.32142857 +2204,36.73333333,973,434,,173.75,77.5 +2205,36.75,982,435,,175.3571429,77.67857143 +2206,36.76666667,993,436,,177.3214286,77.85714286 +2207,36.78333333,1007,438,,179.8214286,78.21428571 +2208,36.8,1022,440,,182.5,78.57142857 +2209,36.81666667,1039,442,,185.5357143,78.92857143 +2210,36.83333333,1057,444,,188.75,79.28571429 +2211,36.85,1078,446,,192.5,79.64285714 +2212,36.86666667,1100,448,,196.4285714,80 +2213,36.88333333,1123,450,,200.5357143,80.35714286 +2214,36.9,1148,452,,205,80.71428571 +2215,36.91666667,1174,454,,209.6428571,81.07142857 +2216,36.93333333,1201,456,,214.4642857,81.42857143 +2217,36.95,1229,457,,219.4642857,81.60714286 +2218,36.96666667,1258,458,,224.6428571,81.78571429 +2219,36.98333333,1288,460,,230,82.14285714 +2220,37,1319,460,,235.5357143,82.14285714 +2221,37.01666667,1349,461,,240.8928571,82.32142857 +2222,37.03333333,1379,461,,246.25,82.32142857 +2223,37.05,1410,461,,251.7857143,82.32142857 +2224,37.06666667,1442,460,,257.5,82.14285714 +2225,37.08333333,1472,459,,262.8571429,81.96428571 +2226,37.1,1503,458,,268.3928571,81.78571429 +2227,37.11666667,1533,457,,273.75,81.60714286 +2228,37.13333333,1562,456,,278.9285714,81.42857143 +2229,37.15,1590,454,,283.9285714,81.07142857 +2230,37.16666667,1618,452,,288.9285714,80.71428571 +2231,37.18333333,1645,450,,293.75,80.35714286 +2232,37.2,1670,448,,298.2142857,80 +2233,37.21666667,1694,445,,302.5,79.46428571 +2234,37.23333333,1716,443,,306.4285714,79.10714286 +2235,37.25,1737,441,,310.1785714,78.75 +2236,37.26666667,1757,438,,313.75,78.21428571 +2237,37.28333333,1775,436,,316.9642857,77.85714286 +2238,37.3,1790,434,,319.6428571,77.5 +2239,37.31666667,1804,432,,322.1428571,77.14285714 +2240,37.33333333,1816,430,,324.2857143,76.78571429 +2241,37.35,1826,429,,326.0714286,76.60714286 +2242,37.36666667,1834,428,,327.5,76.42857143 +2243,37.38333333,1840,427,,328.5714286,76.25 +2244,37.4,1844,426,,329.2857143,76.07142857 +2245,37.41666667,1844,426,,329.2857143,76.07142857 +2246,37.43333333,1844,426,,329.2857143,76.07142857 +2247,37.45,1842,426,,328.9285714,76.07142857 +2248,37.46666667,1836,427,,327.8571429,76.25 +2249,37.48333333,1829,428,,326.6071429,76.42857143 +2250,37.5,1820,429,,325,76.60714286 +2251,37.51666667,1809,430,,323.0357143,76.78571429 +2252,37.53333333,1796,432,,320.7142857,77.14285714 +2253,37.55,1780,434,,317.8571429,77.5 +2254,37.56666667,1763,436,,314.8214286,77.85714286 +2255,37.58333333,1744,438,,311.4285714,78.21428571 +2256,37.6,1723,440,,307.6785714,78.57142857 +2257,37.61666667,1701,442,,303.75,78.92857143 +2258,37.63333333,1677,444,,299.4642857,79.28571429 +2259,37.65,1652,446,,295,79.64285714 +2260,37.66666667,1626,448,,290.3571429,80 +2261,37.68333333,1598,450,,285.3571429,80.35714286 +2262,37.7,1570,452,,280.3571429,80.71428571 +2263,37.71666667,1540,453,,275,80.89285714 +2264,37.73333333,1511,455,,269.8214286,81.25 +2265,37.75,1480,456,,264.2857143,81.42857143 +2266,37.76666667,1449,457,,258.75,81.60714286 +2267,37.78333333,1418,457,,253.2142857,81.60714286 +2268,37.8,1387,457,,247.6785714,81.60714286 +2269,37.81666667,1356,457,,242.1428571,81.60714286 +2270,37.83333333,1325,457,,236.6071429,81.60714286 +2271,37.85,1294,457,,231.0714286,81.60714286 +2272,37.86666667,1264,456,,225.7142857,81.42857143 +2273,37.88333333,1235,454,,220.5357143,81.07142857 +2274,37.9,1207,453,,215.5357143,80.89285714 +2275,37.91666667,1179,451,,210.5357143,80.53571429 +2276,37.93333333,1153,450,,205.8928571,80.35714286 +2277,37.95,1128,448,,201.4285714,80 +2278,37.96666667,1104,446,,197.1428571,79.64285714 +2279,37.98333333,1081,444,,193.0357143,79.28571429 +2280,38,1060,442,,189.2857143,78.92857143 +2281,38.01666667,1042,440,,186.0714286,78.57142857 +2282,38.03333333,1024,438,,182.8571429,78.21428571 +2283,38.05,1009,437,,180.1785714,78.03571429 +2284,38.06666667,995,435,,177.6785714,77.67857143 +2285,38.08333333,984,434,,175.7142857,77.5 +2286,38.1,975,433,,174.1071429,77.32142857 +2287,38.11666667,967,432,,172.6785714,77.14285714 +2288,38.13333333,962,431,,171.7857143,76.96428571 +2289,38.15,960,431,,171.4285714,76.96428571 +2290,38.16666667,960,431,,171.4285714,76.96428571 +2291,38.18333333,960,432,,171.4285714,77.14285714 +2292,38.2,963,432,,171.9642857,77.14285714 +2293,38.21666667,969,433,,173.0357143,77.32142857 +2294,38.23333333,977,434,,174.4642857,77.5 +2295,38.25,987,435,,176.25,77.67857143 +2296,38.26666667,999,437,,178.3928571,78.03571429 +2297,38.28333333,1013,439,,180.8928571,78.39285714 +2298,38.3,1029,441,,183.75,78.75 +2299,38.31666667,1046,442,,186.7857143,78.92857143 +2300,38.33333333,1066,445,,190.3571429,79.46428571 +2301,38.35,1087,447,,194.1071429,79.82142857 +2302,38.36666667,1109,449,,198.0357143,80.17857143 +2303,38.38333333,1133,451,,202.3214286,80.53571429 +2304,38.4,1158,452,,206.7857143,80.71428571 +2305,38.41666667,1185,454,,211.6071429,81.07142857 +2306,38.43333333,1212,456,,216.4285714,81.42857143 +2307,38.45,1241,457,,221.6071429,81.60714286 +2308,38.46666667,1270,459,,226.7857143,81.96428571 +2309,38.48333333,1300,460,,232.1428571,82.14285714 +2310,38.5,1330,461,,237.5,82.32142857 +2311,38.51666667,1361,461,,243.0357143,82.32142857 +2312,38.53333333,1392,461,,248.5714286,82.32142857 +2313,38.55,1422,460,,253.9285714,82.14285714 +2314,38.56666667,1453,460,,259.4642857,82.14285714 +2315,38.58333333,1483,459,,264.8214286,81.96428571 +2316,38.6,1514,458,,270.3571429,81.78571429 +2317,38.61666667,1543,457,,275.5357143,81.60714286 +2318,38.63333333,1572,455,,280.7142857,81.25 +2319,38.65,1600,453,,285.7142857,80.89285714 +2320,38.66666667,1627,451,,290.5357143,80.53571429 +2321,38.68333333,1653,449,,295.1785714,80.17857143 +2322,38.7,1677,447,,299.4642857,79.82142857 +2323,38.71666667,1701,445,,303.75,79.46428571 +2324,38.73333333,1723,442,,307.6785714,78.92857143 +2325,38.75,1743,440,,311.25,78.57142857 +2326,38.76666667,1761,438,,314.4642857,78.21428571 +2327,38.78333333,1778,436,,317.5,77.85714286 +2328,38.8,1793,434,,320.1785714,77.5 +2329,38.81666667,1807,432,,322.6785714,77.14285714 +2330,38.83333333,1818,430,,324.6428571,76.78571429 +2331,38.85,1826,429,,326.0714286,76.60714286 +2332,38.86666667,1833,428,,327.3214286,76.42857143 +2333,38.88333333,1839,427,,328.3928571,76.25 +2334,38.9,1840,427,,328.5714286,76.25 +2335,38.91666667,1840,427,,328.5714286,76.25 +2336,38.93333333,1840,427,,328.5714286,76.25 +2337,38.95,1837,427,,328.0357143,76.25 +2338,38.96666667,1831,427,,326.9642857,76.25 +2339,38.98333333,1823,428,,325.5357143,76.42857143 +2340,39,1813,430,,323.75,76.78571429 +2341,39.01666667,1801,431,,321.6071429,76.96428571 +2342,39.03333333,1786,433,,318.9285714,77.32142857 +2343,39.05,1770,435,,316.0714286,77.67857143 +2344,39.06666667,1752,437,,312.8571429,78.03571429 +2345,39.08333333,1733,439,,309.4642857,78.39285714 +2346,39.1,1712,441,,305.7142857,78.75 +2347,39.11666667,1689,443,,301.6071429,79.10714286 +2348,39.13333333,1664,445,,297.1428571,79.46428571 +2349,39.15,1639,447,,292.6785714,79.82142857 +2350,39.16666667,1612,449,,287.8571429,80.17857143 +2351,39.18333333,1584,451,,282.8571429,80.53571429 +2352,39.2,1556,452,,277.8571429,80.71428571 +2353,39.21666667,1527,454,,272.6785714,81.07142857 +2354,39.23333333,1496,455,,267.1428571,81.25 +2355,39.25,1466,456,,261.7857143,81.42857143 +2356,39.26666667,1435,457,,256.25,81.60714286 +2357,39.28333333,1404,457,,250.7142857,81.60714286 +2358,39.3,1373,457,,245.1785714,81.60714286 +2359,39.31666667,1342,457,,239.6428571,81.60714286 +2360,39.33333333,1312,457,,234.2857143,81.60714286 +2361,39.35,1281,456,,228.75,81.42857143 +2362,39.36666667,1252,455,,223.5714286,81.25 +2363,39.38333333,1223,453,,218.3928571,80.89285714 +2364,39.4,1195,452,,213.3928571,80.71428571 +2365,39.41666667,1168,450,,208.5714286,80.35714286 +2366,39.43333333,1142,448,,203.9285714,80 +2367,39.45,1118,447,,199.6428571,79.82142857 +2368,39.46666667,1095,445,,195.5357143,79.46428571 +2369,39.48333333,1073,443,,191.6071429,79.10714286 +2370,39.5,1053,441,,188.0357143,78.75 +2371,39.51666667,1035,439,,184.8214286,78.39285714 +2372,39.53333333,1018,438,,181.7857143,78.21428571 +2373,39.55,1004,436,,179.2857143,77.85714286 +2374,39.56666667,992,435,,177.1428571,77.67857143 +2375,39.58333333,981,433,,175.1785714,77.32142857 +2376,39.6,973,433,,173.75,77.32142857 +2377,39.61666667,967,432,,172.6785714,77.14285714 +2378,39.63333333,963,432,,171.9642857,77.14285714 +2379,39.65,963,432,,171.9642857,77.14285714 +2380,39.66666667,963,432,,171.9642857,77.14285714 +2381,39.68333333,964,432,,172.1428571,77.14285714 +2382,39.7,968,432,,172.8571429,77.14285714 +2383,39.71666667,975,433,,174.1071429,77.32142857 +2384,39.73333333,984,435,,175.7142857,77.67857143 +2385,39.75,995,436,,177.6785714,77.85714286 +2386,39.76666667,1007,438,,179.8214286,78.21428571 +2387,39.78333333,1022,439,,182.5,78.39285714 +2388,39.8,1039,441,,185.5357143,78.75 +2389,39.81666667,1058,443,,188.9285714,79.10714286 +2390,39.83333333,1078,445,,192.5,79.46428571 +2391,39.85,1099,448,,196.25,80 +2392,39.86666667,1123,449,,200.5357143,80.17857143 +2393,39.88333333,1147,451,,204.8214286,80.53571429 +2394,39.9,1173,453,,209.4642857,80.89285714 +2395,39.91666667,1199,455,,214.1071429,81.25 +2396,39.93333333,1227,457,,219.1071429,81.60714286 +2397,39.95,1256,458,,224.2857143,81.78571429 +2398,39.96666667,1285,459,,229.4642857,81.96428571 +2399,39.98333333,1316,460,,235,82.14285714 +2400,40,1346,460,,240.3571429,82.14285714 +2401,40.01666667,1376,460,,245.7142857,82.14285714 +2402,40.03333333,1407,460,,251.25,82.14285714 +2403,40.05,1438,460,,256.7857143,82.14285714 +2404,40.06666667,1468,459,,262.1428571,81.96428571 +2405,40.08333333,1498,458,,267.5,81.78571429 +2406,40.1,1528,457,,272.8571429,81.60714286 +2407,40.11666667,1557,455,,278.0357143,81.25 +2408,40.13333333,1586,454,,283.2142857,81.07142857 +2409,40.15,1613,452,,288.0357143,80.71428571 +2410,40.16666667,1640,449,,292.8571429,80.17857143 +2411,40.18333333,1665,447,,297.3214286,79.82142857 +2412,40.2,1689,445,,301.6071429,79.46428571 +2413,40.21666667,1711,443,,305.5357143,79.10714286 +2414,40.23333333,1733,440,,309.4642857,78.57142857 +2415,40.25,1752,438,,312.8571429,78.21428571 +2416,40.26666667,1770,436,,316.0714286,77.85714286 +2417,40.28333333,1786,434,,318.9285714,77.5 +2418,40.3,1800,432,,321.4285714,77.14285714 +2419,40.31666667,1812,430,,323.5714286,76.78571429 +2420,40.33333333,1822,429,,325.3571429,76.60714286 +2421,40.35,1830,428,,326.7857143,76.42857143 +2422,40.36666667,1836,427,,327.8571429,76.25 +2423,40.38333333,1841,426,,328.75,76.07142857 +2424,40.4,1841,426,,328.75,76.07142857 +2425,40.41666667,1841,426,,328.75,76.07142857 +2426,40.43333333,1839,426,,328.3928571,76.07142857 +2427,40.45,1834,427,,327.5,76.25 +2428,40.46666667,1827,428,,326.25,76.42857143 +2429,40.48333333,1818,429,,324.6428571,76.60714286 +2430,40.5,1807,430,,322.6785714,76.78571429 +2431,40.51666667,1794,432,,320.3571429,77.14285714 +2432,40.53333333,1780,433,,317.8571429,77.32142857 +2433,40.55,1763,435,,314.8214286,77.67857143 +2434,40.56666667,1744,438,,311.4285714,78.21428571 +2435,40.58333333,1724,440,,307.8571429,78.57142857 +2436,40.6,1702,442,,303.9285714,78.92857143 +2437,40.61666667,1678,444,,299.6428571,79.28571429 +2438,40.63333333,1654,446,,295.3571429,79.64285714 +2439,40.65,1628,448,,290.7142857,80 +2440,40.66666667,1601,450,,285.8928571,80.35714286 +2441,40.68333333,1572,452,,280.7142857,80.71428571 +2442,40.7,1544,453,,275.7142857,80.89285714 +2443,40.71666667,1514,455,,270.3571429,81.25 +2444,40.73333333,1483,456,,264.8214286,81.42857143 +2445,40.75,1453,457,,259.4642857,81.60714286 +2446,40.76666667,1422,457,,253.9285714,81.60714286 +2447,40.78333333,1391,457,,248.3928571,81.60714286 +2448,40.8,1360,457,,242.8571429,81.60714286 +2449,40.81666667,1329,457,,237.3214286,81.60714286 +2450,40.83333333,1298,457,,231.7857143,81.60714286 +2451,40.85,1269,456,,226.6071429,81.42857143 +2452,40.86666667,1240,454,,221.4285714,81.07142857 +2453,40.88333333,1211,453,,216.25,80.89285714 +2454,40.9,1184,452,,211.4285714,80.71428571 +2455,40.91666667,1157,450,,206.6071429,80.35714286 +2456,40.93333333,1132,448,,202.1428571,80 +2457,40.95,1109,447,,198.0357143,79.82142857 +2458,40.96666667,1087,445,,194.1071429,79.46428571 +2459,40.98333333,1066,443,,190.3571429,79.10714286 +2460,41,1047,441,,186.9642857,78.75 +2461,41.01666667,1030,439,,183.9285714,78.39285714 +2462,41.03333333,1014,438,,181.0714286,78.21428571 +2463,41.05,1001,436,,178.75,77.85714286 +2464,41.06666667,989,435,,176.6071429,77.67857143 +2465,41.08333333,980,434,,175,77.5 +2466,41.1,972,433,,173.5714286,77.32142857 +2467,41.11666667,967,433,,172.6785714,77.32142857 +2468,41.13333333,964,433,,172.1428571,77.32142857 +2469,41.15,964,433,,172.1428571,77.32142857 +2470,41.16666667,964,433,,172.1428571,77.32142857 +2471,41.18333333,968,433,,172.8571429,77.32142857 +2472,41.2,973,434,,173.75,77.5 +2473,41.21666667,981,435,,175.1785714,77.67857143 +2474,41.23333333,990,436,,176.7857143,77.85714286 +2475,41.25,1002,438,,178.9285714,78.21428571 +2476,41.26666667,1015,439,,181.25,78.39285714 +2477,41.28333333,1031,441,,184.1071429,78.75 +2478,41.3,1049,443,,187.3214286,79.10714286 +2479,41.31666667,1068,445,,190.7142857,79.46428571 +2480,41.33333333,1088,447,,194.2857143,79.82142857 +2481,41.35,1110,449,,198.2142857,80.17857143 +2482,41.36666667,1134,451,,202.5,80.53571429 +2483,41.38333333,1159,453,,206.9642857,80.89285714 +2484,41.4,1185,454,,211.6071429,81.07142857 +2485,41.41666667,1212,456,,216.4285714,81.42857143 +2486,41.43333333,1240,458,,221.4285714,81.78571429 +2487,41.45,1269,459,,226.6071429,81.96428571 +2488,41.46666667,1298,460,,231.7857143,82.14285714 +2489,41.48333333,1329,461,,237.3214286,82.32142857 +2490,41.5,1359,461,,242.6785714,82.32142857 +2491,41.51666667,1389,461,,248.0357143,82.32142857 +2492,41.53333333,1420,460,,253.5714286,82.14285714 +2493,41.55,1451,460,,259.1071429,82.14285714 +2494,41.56666667,1481,459,,264.4642857,81.96428571 +2495,41.58333333,1511,458,,269.8214286,81.78571429 +2496,41.6,1540,457,,275,81.60714286 +2497,41.61666667,1569,455,,280.1785714,81.25 +2498,41.63333333,1596,454,,285,81.07142857 +2499,41.65,1623,452,,289.8214286,80.71428571 +2500,41.66666667,1649,450,,294.4642857,80.35714286 +2501,41.68333333,1674,447,,298.9285714,79.82142857 +2502,41.7,1697,445,,303.0357143,79.46428571 +2503,41.71666667,1719,443,,306.9642857,79.10714286 +2504,41.73333333,1740,441,,310.7142857,78.75 +2505,41.75,1758,438,,313.9285714,78.21428571 +2506,41.76666667,1775,436,,316.9642857,77.85714286 +2507,41.78333333,1790,434,,319.6428571,77.5 +2508,41.8,1803,433,,321.9642857,77.32142857 +2509,41.81666667,1815,431,,324.1071429,76.96428571 +2510,41.83333333,1824,430,,325.7142857,76.78571429 +2511,41.85,1831,429,,326.9642857,76.60714286 +2512,41.86666667,1836,428,,327.8571429,76.42857143 +2513,41.88333333,1839,428,,328.3928571,76.42857143 +2514,41.9,1839,428,,328.3928571,76.42857143 +2515,41.91666667,1839,428,,328.3928571,76.42857143 +2516,41.93333333,1835,428,,327.6785714,76.42857143 +2517,41.95,1830,428,,326.7857143,76.42857143 +2518,41.96666667,1822,429,,325.3571429,76.60714286 +2519,41.98333333,1812,431,,323.5714286,76.96428571 +2520,42,1800,432,,321.4285714,77.14285714 +2521,42.01666667,1786,434,,318.9285714,77.5 +2522,42.03333333,1770,436,,316.0714286,77.85714286 +2523,42.05,1753,437,,313.0357143,78.03571429 +2524,42.06666667,1733,440,,309.4642857,78.57142857 +2525,42.08333333,1713,442,,305.8928571,78.92857143 +2526,42.1,1690,443,,301.7857143,79.10714286 +2527,42.11666667,1667,446,,297.6785714,79.64285714 +2528,42.13333333,1641,448,,293.0357143,80 +2529,42.15,1615,450,,288.3928571,80.35714286 +2530,42.16666667,1588,452,,283.5714286,80.71428571 +2531,42.18333333,1559,453,,278.3928571,80.89285714 +2532,42.2,1530,455,,273.2142857,81.25 +2533,42.21666667,1500,456,,267.8571429,81.42857143 +2534,42.23333333,1470,457,,262.5,81.60714286 +2535,42.25,1440,458,,257.1428571,81.78571429 +2536,42.26666667,1409,458,,251.6071429,81.78571429 +2537,42.28333333,1378,459,,246.0714286,81.96428571 +2538,42.3,1348,459,,240.7142857,81.96428571 +2539,42.31666667,1317,459,,235.1785714,81.96428571 +2540,42.33333333,1287,458,,229.8214286,81.78571429 +2541,42.35,1258,457,,224.6428571,81.60714286 +2542,42.36666667,1229,455,,219.4642857,81.25 +2543,42.38333333,1201,454,,214.4642857,81.07142857 +2544,42.4,1175,452,,209.8214286,80.71428571 +2545,42.41666667,1149,450,,205.1785714,80.35714286 +2546,42.43333333,1125,449,,200.8928571,80.17857143 +2547,42.45,1101,447,,196.6071429,79.82142857 +2548,42.46666667,1080,445,,192.8571429,79.46428571 +2549,42.48333333,1060,443,,189.2857143,79.10714286 +2550,42.5,1042,441,,186.0714286,78.75 +2551,42.51666667,1025,440,,183.0357143,78.57142857 +2552,42.53333333,1011,438,,180.5357143,78.21428571 +2553,42.55,998,437,,178.2142857,78.03571429 +2554,42.56666667,988,436,,176.4285714,77.85714286 +2555,42.58333333,979,435,,174.8214286,77.67857143 +2556,42.6,973,434,,173.75,77.5 +2557,42.61666667,968,433,,172.8571429,77.32142857 +2558,42.63333333,968,433,,172.8571429,77.32142857 +2559,42.65,968,433,,172.8571429,77.32142857 +2560,42.66666667,968,434,,172.8571429,77.5 +2561,42.68333333,972,434,,173.5714286,77.5 +2562,42.7,979,435,,174.8214286,77.67857143 +2563,42.71666667,987,436,,176.25,77.85714286 +2564,42.73333333,998,438,,178.2142857,78.21428571 +2565,42.75,1010,439,,180.3571429,78.39285714 +2566,42.76666667,1024,441,,182.8571429,78.75 +2567,42.78333333,1040,443,,185.7142857,79.10714286 +2568,42.8,1059,445,,189.1071429,79.46428571 +2569,42.81666667,1078,447,,192.5,79.82142857 +2570,42.83333333,1100,448,,196.4285714,80 +2571,42.85,1122,450,,200.3571429,80.35714286 +2572,42.86666667,1146,452,,204.6428571,80.71428571 +2573,42.88333333,1172,454,,209.2857143,81.07142857 +2574,42.9,1198,456,,213.9285714,81.42857143 +2575,42.91666667,1225,457,,218.75,81.60714286 +2576,42.93333333,1254,458,,223.9285714,81.78571429 +2577,42.95,1283,459,,229.1071429,81.96428571 +2578,42.96666667,1313,460,,234.4642857,82.14285714 +2579,42.98333333,1343,461,,239.8214286,82.32142857 +2580,43,1373,461,,245.1785714,82.32142857 +2581,43.01666667,1403,461,,250.5357143,82.32142857 +2582,43.03333333,1433,460,,255.8928571,82.14285714 +2583,43.05,1464,460,,261.4285714,82.14285714 +2584,43.06666667,1494,459,,266.7857143,81.96428571 +2585,43.08333333,1523,457,,271.9642857,81.60714286 +2586,43.1,1553,456,,277.3214286,81.42857143 +2587,43.11666667,1581,454,,282.3214286,81.07142857 +2588,43.13333333,1608,452,,287.1428571,80.71428571 +2589,43.15,1635,450,,291.9642857,80.35714286 +2590,43.16666667,1660,448,,296.4285714,80 +2591,43.18333333,1684,446,,300.7142857,79.64285714 +2592,43.2,1706,443,,304.6428571,79.10714286 +2593,43.21666667,1727,441,,308.3928571,78.75 +2594,43.23333333,1747,439,,311.9642857,78.39285714 +2595,43.25,1765,437,,315.1785714,78.03571429 +2596,43.26666667,1781,435,,318.0357143,77.67857143 +2597,43.28333333,1795,433,,320.5357143,77.32142857 +2598,43.3,1808,431,,322.8571429,76.96428571 +2599,43.31666667,1818,429,,324.6428571,76.60714286 +2600,43.33333333,1826,428,,326.0714286,76.42857143 +2601,43.35,1833,427,,327.3214286,76.25 +2602,43.36666667,1837,426,,328.0357143,76.07142857 +2603,43.38333333,1837,426,,328.0357143,76.07142857 +2604,43.4,1837,426,,328.0357143,76.07142857 +2605,43.41666667,1836,426,,327.8571429,76.07142857 +2606,43.43333333,1832,427,,327.1428571,76.25 +2607,43.45,1825,428,,325.8928571,76.42857143 +2608,43.46666667,1817,429,,324.4642857,76.60714286 +2609,43.48333333,1806,430,,322.5,76.78571429 +2610,43.5,1793,432,,320.1785714,77.14285714 +2611,43.51666667,1779,433,,317.6785714,77.32142857 +2612,43.53333333,1762,435,,314.6428571,77.67857143 +2613,43.55,1744,437,,311.4285714,78.03571429 +2614,43.56666667,1724,439,,307.8571429,78.39285714 +2615,43.58333333,1702,441,,303.9285714,78.75 +2616,43.6,1679,444,,299.8214286,79.28571429 +2617,43.61666667,1654,446,,295.3571429,79.64285714 +2618,43.63333333,1629,448,,290.8928571,80 +2619,43.65,1602,450,,286.0714286,80.35714286 +2620,43.66666667,1574,452,,281.0714286,80.71428571 +2621,43.68333333,1545,453,,275.8928571,80.89285714 +2622,43.7,1515,455,,270.5357143,81.25 +2623,43.71666667,1485,456,,265.1785714,81.42857143 +2624,43.73333333,1455,457,,259.8214286,81.60714286 +2625,43.75,1424,457,,254.2857143,81.60714286 +2626,43.76666667,1393,458,,248.75,81.78571429 +2627,43.78333333,1362,458,,243.2142857,81.78571429 +2628,43.8,1332,458,,237.8571429,81.78571429 +2629,43.81666667,1302,457,,232.5,81.60714286 +2630,43.83333333,1273,456,,227.3214286,81.42857143 +2631,43.85,1244,455,,222.1428571,81.25 +2632,43.86666667,1216,453,,217.1428571,80.89285714 +2633,43.88333333,1189,452,,212.3214286,80.71428571 +2634,43.9,1162,450,,207.5,80.35714286 +2635,43.91666667,1137,448,,203.0357143,80 +2636,43.93333333,1114,447,,198.9285714,79.82142857 +2637,43.95,1091,445,,194.8214286,79.46428571 +2638,43.96666667,1071,443,,191.25,79.10714286 +2639,43.98333333,1052,441,,187.8571429,78.75 +2640,44,1035,439,,184.8214286,78.39285714 +2641,44.01666667,1019,438,,181.9642857,78.21428571 +2642,44.03333333,1006,437,,179.6428571,78.03571429 +2643,44.05,994,435,,177.5,77.67857143 +2644,44.06666667,984,434,,175.7142857,77.5 +2645,44.08333333,977,434,,174.4642857,77.5 +2646,44.1,971,433,,173.3928571,77.32142857 +2647,44.11666667,968,433,,172.8571429,77.32142857 +2648,44.13333333,968,433,,172.8571429,77.32142857 +2649,44.15,968,433,,172.8571429,77.32142857 +2650,44.16666667,970,433,,173.2142857,77.32142857 +2651,44.18333333,975,434,,174.1071429,77.5 +2652,44.2,982,435,,175.3571429,77.67857143 +2653,44.21666667,991,436,,176.9642857,77.85714286 +2654,44.23333333,1003,438,,179.1071429,78.21428571 +2655,44.25,1016,439,,181.4285714,78.39285714 +2656,44.26666667,1031,441,,184.1071429,78.75 +2657,44.28333333,1048,443,,187.1428571,79.10714286 +2658,44.3,1067,445,,190.5357143,79.46428571 +2659,44.31666667,1088,447,,194.2857143,79.82142857 +2660,44.33333333,1109,448,,198.0357143,80 +2661,44.35,1133,450,,202.3214286,80.35714286 +2662,44.36666667,1157,452,,206.6071429,80.71428571 +2663,44.38333333,1183,454,,211.25,81.07142857 +2664,44.4,1210,456,,216.0714286,81.42857143 +2665,44.41666667,1237,457,,220.8928571,81.60714286 +2666,44.43333333,1266,458,,226.0714286,81.78571429 +2667,44.45,1295,459,,231.25,81.96428571 +2668,44.46666667,1325,460,,236.6071429,82.14285714 +2669,44.48333333,1355,460,,241.9642857,82.14285714 +2670,44.5,1386,460,,247.5,82.14285714 +2671,44.51666667,1416,460,,252.8571429,82.14285714 +2672,44.53333333,1446,459,,258.2142857,81.96428571 +2673,44.55,1476,458,,263.5714286,81.78571429 +2674,44.56666667,1506,457,,268.9285714,81.60714286 +2675,44.58333333,1535,456,,274.1071429,81.42857143 +2676,44.6,1564,454,,279.2857143,81.07142857 +2677,44.61666667,1592,453,,284.2857143,80.89285714 +2678,44.63333333,1619,450,,289.1071429,80.35714286 +2679,44.65,1645,448,,293.75,80 +2680,44.66666667,1670,446,,298.2142857,79.64285714 +2681,44.68333333,1693,444,,302.3214286,79.28571429 +2682,44.7,1715,442,,306.25,78.92857143 +2683,44.71666667,1735,440,,309.8214286,78.57142857 +2684,44.73333333,1754,438,,313.2142857,78.21428571 +2685,44.75,1771,436,,316.25,77.85714286 +2686,44.76666667,1787,434,,319.1071429,77.5 +2687,44.78333333,1800,431,,321.4285714,76.96428571 +2688,44.8,1812,430,,323.5714286,76.78571429 +2689,44.81666667,1821,428,,325.1785714,76.42857143 +2690,44.83333333,1829,427,,326.6071429,76.25 +2691,44.85,1834,427,,327.5,76.25 +2692,44.86666667,1837,426,,328.0357143,76.07142857 +2693,44.88333333,1837,426,,328.0357143,76.07142857 +2694,44.9,1837,426,,328.0357143,76.07142857 +2695,44.91666667,1834,426,,327.5,76.07142857 +2696,44.93333333,1828,427,,326.4285714,76.25 +2697,44.95,1821,428,,325.1785714,76.42857143 +2698,44.96666667,1812,429,,323.5714286,76.60714286 +2699,44.98333333,1800,430,,321.4285714,76.78571429 +2700,45,1786,432,,318.9285714,77.14285714 +2701,45.01666667,1771,434,,316.25,77.5 +2702,45.03333333,1754,436,,313.2142857,77.85714286 +2703,45.05,1735,438,,309.8214286,78.21428571 +2704,45.06666667,1714,440,,306.0714286,78.57142857 +2705,45.08333333,1692,442,,302.1428571,78.92857143 +2706,45.1,1668,444,,297.8571429,79.28571429 +2707,45.11666667,1643,446,,293.3928571,79.64285714 +2708,45.13333333,1617,449,,288.75,80.17857143 +2709,45.15,1590,450,,283.9285714,80.35714286 +2710,45.16666667,1562,452,,278.9285714,80.71428571 +2711,45.18333333,1533,454,,273.75,81.07142857 +2712,45.2,1503,455,,268.3928571,81.25 +2713,45.21666667,1473,456,,263.0357143,81.42857143 +2714,45.23333333,1443,456,,257.6785714,81.42857143 +2715,45.25,1412,457,,252.1428571,81.60714286 +2716,45.26666667,1382,457,,246.7857143,81.60714286 +2717,45.28333333,1351,457,,241.25,81.60714286 +2718,45.3,1321,457,,235.8928571,81.60714286 +2719,45.31666667,1291,457,,230.5357143,81.60714286 +2720,45.33333333,1261,456,,225.1785714,81.42857143 +2721,45.35,1233,455,,220.1785714,81.25 +2722,45.36666667,1205,453,,215.1785714,80.89285714 +2723,45.38333333,1178,451,,210.3571429,80.53571429 +2724,45.4,1153,450,,205.8928571,80.35714286 +2725,45.41666667,1128,448,,201.4285714,80 +2726,45.43333333,1105,447,,197.3214286,79.82142857 +2727,45.45,1083,445,,193.3928571,79.46428571 +2728,45.46666667,1063,443,,189.8214286,79.10714286 +2729,45.48333333,1045,441,,186.6071429,78.75 +2730,45.5,1028,440,,183.5714286,78.57142857 +2731,45.51666667,1014,438,,181.0714286,78.21428571 +2732,45.53333333,1001,437,,178.75,78.03571429 +2733,45.55,990,436,,176.7857143,77.85714286 +2734,45.56666667,982,435,,175.3571429,77.67857143 +2735,45.58333333,975,434,,174.1071429,77.5 +2736,45.6,970,434,,173.2142857,77.5 +2737,45.61666667,969,434,,173.0357143,77.5 +2738,45.63333333,969,434,,173.0357143,77.5 +2739,45.65,969,434,,173.0357143,77.5 +2740,45.66666667,973,435,,173.75,77.67857143 +2741,45.68333333,979,436,,174.8214286,77.85714286 +2742,45.7,988,437,,176.4285714,78.03571429 +2743,45.71666667,998,438,,178.2142857,78.21428571 +2744,45.73333333,1010,439,,180.3571429,78.39285714 +2745,45.75,1024,441,,182.8571429,78.75 +2746,45.76666667,1040,443,,185.7142857,79.10714286 +2747,45.78333333,1057,445,,188.75,79.46428571 +2748,45.8,1077,447,,192.3214286,79.82142857 +2749,45.81666667,1098,449,,196.0714286,80.17857143 +2750,45.83333333,1120,451,,200,80.53571429 +2751,45.85,1144,452,,204.2857143,80.71428571 +2752,45.86666667,1169,454,,208.75,81.07142857 +2753,45.88333333,1195,456,,213.3928571,81.42857143 +2754,45.9,1222,458,,218.2142857,81.78571429 +2755,45.91666667,1250,459,,223.2142857,81.96428571 +2756,45.93333333,1279,460,,228.3928571,82.14285714 +2757,45.95,1309,462,,233.75,82.5 +2758,45.96666667,1338,462,,238.9285714,82.5 +2759,45.98333333,1369,462,,244.4642857,82.5 +2760,46,1399,462,,249.8214286,82.5 +2761,46.01666667,1429,461,,255.1785714,82.32142857 +2762,46.03333333,1459,460,,260.5357143,82.14285714 +2763,46.05,1489,460,,265.8928571,82.14285714 +2764,46.06666667,1519,459,,271.25,81.96428571 +2765,46.08333333,1548,457,,276.4285714,81.60714286 +2766,46.1,1576,455,,281.4285714,81.25 +2767,46.11666667,1603,453,,286.25,80.89285714 +2768,46.13333333,1630,451,,291.0714286,80.53571429 +2769,46.15,1655,449,,295.5357143,80.17857143 +2770,46.16666667,1679,447,,299.8214286,79.82142857 +2771,46.18333333,1702,445,,303.9285714,79.46428571 +2772,46.2,1723,442,,307.6785714,78.92857143 +2773,46.21666667,1743,440,,311.25,78.57142857 +2774,46.23333333,1761,437,,314.4642857,78.03571429 +2775,46.25,1778,435,,317.5,77.67857143 +2776,46.26666667,1792,433,,320,77.32142857 +2777,46.28333333,1805,432,,322.3214286,77.14285714 +2778,46.3,1815,430,,324.1071429,76.78571429 +2779,46.31666667,1824,429,,325.7142857,76.60714286 +2780,46.33333333,1830,428,,326.7857143,76.42857143 +2781,46.35,1835,427,,327.6785714,76.25 +2782,46.36666667,1835,427,,327.6785714,76.25 +2783,46.38333333,1835,427,,327.6785714,76.25 +2784,46.4,1835,427,,327.6785714,76.25 +2785,46.41666667,1831,427,,326.9642857,76.25 +2786,46.43333333,1824,428,,325.7142857,76.42857143 +2787,46.45,1816,429,,324.2857143,76.60714286 +2788,46.46666667,1806,430,,322.5,76.78571429 +2789,46.48333333,1793,432,,320.1785714,77.14285714 +2790,46.5,1779,434,,317.6785714,77.5 +2791,46.51666667,1763,435,,314.8214286,77.67857143 +2792,46.53333333,1745,437,,311.6071429,78.03571429 +2793,46.55,1725,439,,308.0357143,78.39285714 +2794,46.56666667,1704,441,,304.2857143,78.75 +2795,46.58333333,1681,443,,300.1785714,79.10714286 +2796,46.6,1657,446,,295.8928571,79.64285714 +2797,46.61666667,1632,447,,291.4285714,79.82142857 +2798,46.63333333,1605,449,,286.6071429,80.17857143 +2799,46.65,1578,451,,281.7857143,80.53571429 +2800,46.66666667,1549,452,,276.6071429,80.71428571 +2801,46.68333333,1520,454,,271.4285714,81.07142857 +2802,46.7,1490,456,,266.0714286,81.42857143 +2803,46.71666667,1460,456,,260.7142857,81.42857143 +2804,46.73333333,1430,457,,255.3571429,81.60714286 +2805,46.75,1399,457,,249.8214286,81.60714286 +2806,46.76666667,1369,457,,244.4642857,81.60714286 +2807,46.78333333,1339,457,,239.1071429,81.60714286 +2808,46.8,1309,457,,233.75,81.60714286 +2809,46.81666667,1279,456,,228.3928571,81.42857143 +2810,46.83333333,1250,455,,223.2142857,81.25 +2811,46.85,1222,454,,218.2142857,81.07142857 +2812,46.86666667,1194,452,,213.2142857,80.71428571 +2813,46.88333333,1168,450,,208.5714286,80.35714286 +2814,46.9,1143,449,,204.1071429,80.17857143 +2815,46.91666667,1119,447,,199.8214286,79.82142857 +2816,46.93333333,1097,446,,195.8928571,79.64285714 +2817,46.95,1076,444,,192.1428571,79.28571429 +2818,46.96666667,1056,442,,188.5714286,78.92857143 +2819,46.98333333,1039,440,,185.5357143,78.57142857 +2820,47,1023,439,,182.6785714,78.39285714 +2821,47.01666667,1009,437,,180.1785714,78.03571429 +2822,47.03333333,997,436,,178.0357143,77.85714286 +2823,47.05,987,435,,176.25,77.67857143 +2824,47.06666667,979,434,,174.8214286,77.5 +2825,47.08333333,973,434,,173.75,77.5 +2826,47.1,969,433,,173.0357143,77.32142857 +2827,47.11666667,969,433,,173.0357143,77.32142857 +2828,47.13333333,969,433,,173.0357143,77.32142857 +2829,47.15,971,434,,173.3928571,77.5 +2830,47.16666667,977,434,,174.4642857,77.5 +2831,47.18333333,984,435,,175.7142857,77.67857143 +2832,47.2,992,437,,177.1428571,78.03571429 +2833,47.21666667,1004,438,,179.2857143,78.21428571 +2834,47.23333333,1017,439,,181.6071429,78.39285714 +2835,47.25,1032,441,,184.2857143,78.75 +2836,47.26666667,1048,443,,187.1428571,79.10714286 +2837,47.28333333,1066,445,,190.3571429,79.46428571 +2838,47.3,1086,447,,193.9285714,79.82142857 +2839,47.31666667,1108,448,,197.8571429,80 +2840,47.33333333,1131,450,,201.9642857,80.35714286 +2841,47.35,1155,452,,206.25,80.71428571 +2842,47.36666667,1181,454,,210.8928571,81.07142857 +2843,47.38333333,1207,455,,215.5357143,81.25 +2844,47.4,1235,457,,220.5357143,81.60714286 +2845,47.41666667,1263,458,,225.5357143,81.78571429 +2846,47.43333333,1292,459,,230.7142857,81.96428571 +2847,47.45,1321,460,,235.8928571,82.14285714 +2848,47.46666667,1351,460,,241.25,82.14285714 +2849,47.48333333,1381,460,,246.6071429,82.14285714 +2850,47.5,1411,460,,251.9642857,82.14285714 +2851,47.51666667,1441,459,,257.3214286,81.96428571 +2852,47.53333333,1471,459,,262.6785714,81.96428571 +2853,47.55,1501,458,,268.0357143,81.78571429 +2854,47.56666667,1530,456,,273.2142857,81.42857143 +2855,47.58333333,1558,454,,278.2142857,81.07142857 +2856,47.6,1586,453,,283.2142857,80.89285714 +2857,47.61666667,1613,451,,288.0357143,80.53571429 +2858,47.63333333,1639,449,,292.6785714,80.17857143 +2859,47.65,1664,447,,297.1428571,79.82142857 +2860,47.66666667,1687,445,,301.25,79.46428571 +2861,47.68333333,1709,442,,305.1785714,78.92857143 +2862,47.7,1730,440,,308.9285714,78.57142857 +2863,47.71666667,1749,438,,312.3214286,78.21428571 +2864,47.73333333,1766,436,,315.3571429,77.85714286 +2865,47.75,1782,434,,318.2142857,77.5 +2866,47.76666667,1796,432,,320.7142857,77.14285714 +2867,47.78333333,1807,430,,322.6785714,76.78571429 +2868,47.8,1817,428,,324.4642857,76.42857143 +2869,47.81666667,1825,427,,325.8928571,76.25 +2870,47.83333333,1831,426,,326.9642857,76.07142857 +2871,47.85,1834,426,,327.5,76.07142857 +2872,47.86666667,1834,426,,327.5,76.07142857 +2873,47.88333333,1834,426,,327.5,76.07142857 +2874,47.9,1832,426,,327.1428571,76.07142857 +2875,47.91666667,1827,426,,326.25,76.07142857 +2876,47.93333333,1820,427,,325,76.25 +2877,47.95,1811,428,,323.3928571,76.42857143 +2878,47.96666667,1799,430,,321.25,76.78571429 +2879,47.98333333,1786,432,,318.9285714,77.14285714 +2880,48,1771,433,,316.25,77.32142857 +2881,48.01666667,1754,435,,313.2142857,77.67857143 +2882,48.03333333,1736,437,,310,78.03571429 +2883,48.05,1716,439,,306.4285714,78.39285714 +2884,48.06666667,1694,441,,302.5,78.75 +2885,48.08333333,1671,444,,298.3928571,79.28571429 +2886,48.1,1646,446,,293.9285714,79.64285714 +2887,48.11666667,1620,448,,289.2857143,80 +2888,48.13333333,1593,450,,284.4642857,80.35714286 +2889,48.15,1565,451,,279.4642857,80.53571429 +2890,48.16666667,1536,453,,274.2857143,80.89285714 +2891,48.18333333,1507,454,,269.1071429,81.07142857 +2892,48.2,1477,456,,263.75,81.42857143 +2893,48.21666667,1447,456,,258.3928571,81.42857143 +2894,48.23333333,1416,457,,252.8571429,81.60714286 +2895,48.25,1386,457,,247.5,81.60714286 +2896,48.26666667,1355,457,,241.9642857,81.60714286 +2897,48.28333333,1325,457,,236.6071429,81.60714286 +2898,48.3,1295,457,,231.25,81.60714286 +2899,48.31666667,1266,456,,226.0714286,81.42857143 +2900,48.33333333,1238,454,,221.0714286,81.07142857 +2901,48.35,1210,453,,216.0714286,80.89285714 +2902,48.36666667,1183,452,,211.25,80.71428571 +2903,48.38333333,1157,450,,206.6071429,80.35714286 +2904,48.4,1133,449,,202.3214286,80.17857143 +2905,48.41666667,1110,447,,198.2142857,79.82142857 +2906,48.43333333,1088,445,,194.2857143,79.46428571 +2907,48.45,1068,444,,190.7142857,79.28571429 +2908,48.46666667,1050,442,,187.5,78.92857143 +2909,48.48333333,1033,440,,184.4642857,78.57142857 +2910,48.5,1018,438,,181.7857143,78.21428571 +2911,48.51666667,1005,437,,179.4642857,78.03571429 +2912,48.53333333,994,436,,177.5,77.85714286 +2913,48.55,985,435,,175.8928571,77.67857143 +2914,48.56666667,978,434,,174.6428571,77.5 +2915,48.58333333,973,434,,173.75,77.5 +2916,48.6,971,434,,173.3928571,77.5 +2917,48.61666667,971,434,,173.3928571,77.5 +2918,48.63333333,971,434,,173.3928571,77.5 +2919,48.65,975,435,,174.1071429,77.67857143 +2920,48.66666667,981,436,,175.1785714,77.85714286 +2921,48.68333333,989,437,,176.6071429,78.03571429 +2922,48.7,999,438,,178.3928571,78.21428571 +2923,48.71666667,1010,439,,180.3571429,78.39285714 +2924,48.73333333,1024,441,,182.8571429,78.75 +2925,48.75,1040,443,,185.7142857,79.10714286 +2926,48.76666667,1057,445,,188.75,79.46428571 +2927,48.78333333,1076,447,,192.1428571,79.82142857 +2928,48.8,1097,448,,195.8928571,80 +2929,48.81666667,1119,450,,199.8214286,80.35714286 +2930,48.83333333,1142,452,,203.9285714,80.71428571 +2931,48.85,1167,454,,208.3928571,81.07142857 +2932,48.86666667,1193,456,,213.0357143,81.42857143 +2933,48.88333333,1219,457,,217.6785714,81.60714286 +2934,48.9,1247,459,,222.6785714,81.96428571 +2935,48.91666667,1276,460,,227.8571429,82.14285714 +2936,48.93333333,1305,461,,233.0357143,82.32142857 +2937,48.95,1335,462,,238.3928571,82.5 +2938,48.96666667,1364,462,,243.5714286,82.5 +2939,48.98333333,1395,462,,249.1071429,82.5 +2940,49,1425,461,,254.4642857,82.32142857 +2941,49.01666667,1455,460,,259.8214286,82.14285714 +2942,49.03333333,1485,460,,265.1785714,82.14285714 +2943,49.05,1514,458,,270.3571429,81.78571429 +2944,49.06666667,1543,457,,275.5357143,81.60714286 +2945,49.08333333,1571,456,,280.5357143,81.42857143 +2946,49.1,1599,453,,285.5357143,80.89285714 +2947,49.11666667,1625,451,,290.1785714,80.53571429 +2948,49.13333333,1651,449,,294.8214286,80.17857143 +2949,49.15,1675,447,,299.1071429,79.82142857 +2950,49.16666667,1698,445,,303.2142857,79.46428571 +2951,49.18333333,1719,442,,306.9642857,78.92857143 +2952,49.2,1739,440,,310.5357143,78.57142857 +2953,49.21666667,1757,438,,313.75,78.21428571 +2954,49.23333333,1774,436,,316.7857143,77.85714286 +2955,49.25,1789,434,,319.4642857,77.5 +2956,49.26666667,1801,432,,321.6071429,77.14285714 +2957,49.28333333,1812,431,,323.5714286,76.96428571 +2958,49.3,1821,429,,325.1785714,76.60714286 +2959,49.31666667,1828,428,,326.4285714,76.42857143 +2960,49.33333333,1832,427,,327.1428571,76.25 +2961,49.35,1834,427,,327.5,76.25 +2962,49.36666667,1834,427,,327.5,76.25 +2963,49.38333333,1834,427,,327.5,76.25 +2964,49.4,1830,427,,326.7857143,76.25 +2965,49.41666667,1824,428,,325.7142857,76.42857143 +2966,49.43333333,1815,429,,324.1071429,76.60714286 +2967,49.45,1805,430,,322.3214286,76.78571429 +2968,49.46666667,1793,432,,320.1785714,77.14285714 +2969,49.48333333,1779,433,,317.6785714,77.32142857 +2970,49.5,1763,435,,314.8214286,77.67857143 +2971,49.51666667,1746,437,,311.7857143,78.03571429 +2972,49.53333333,1726,439,,308.2142857,78.39285714 +2973,49.55,1705,441,,304.4642857,78.75 +2974,49.56666667,1683,443,,300.5357143,79.10714286 +2975,49.58333333,1659,445,,296.25,79.46428571 +2976,49.6,1634,447,,291.7857143,79.82142857 +2977,49.61666667,1608,449,,287.1428571,80.17857143 +2978,49.63333333,1580,451,,282.1428571,80.53571429 +2979,49.65,1552,453,,277.1428571,80.89285714 +2980,49.66666667,1523,454,,271.9642857,81.07142857 +2981,49.68333333,1494,455,,266.7857143,81.25 +2982,49.7,1464,456,,261.4285714,81.42857143 +2983,49.71666667,1433,457,,255.8928571,81.60714286 +2984,49.73333333,1403,457,,250.5357143,81.60714286 +2985,49.75,1373,457,,245.1785714,81.60714286 +2986,49.76666667,1342,457,,239.6428571,81.60714286 +2987,49.78333333,1313,457,,234.4642857,81.60714286 +2988,49.8,1283,456,,229.1071429,81.42857143 +2989,49.81666667,1254,455,,223.9285714,81.25 +2990,49.83333333,1226,454,,218.9285714,81.07142857 +2991,49.85,1199,452,,214.1071429,80.71428571 +2992,49.86666667,1172,451,,209.2857143,80.53571429 +2993,49.88333333,1147,450,,204.8214286,80.35714286 +2994,49.9,1124,448,,200.7142857,80 +2995,49.91666667,1101,446,,196.6071429,79.64285714 +2996,49.93333333,1080,444,,192.8571429,79.28571429 +2997,49.95,1061,443,,189.4642857,79.10714286 +2998,49.96666667,1043,441,,186.25,78.75 +2999,49.98333333,1027,439,,183.3928571,78.39285714 +3000,50,1013,438,,180.8928571,78.21428571 +3001,50.01666667,1000,437,,178.5714286,78.03571429 +3002,50.03333333,991,436,,176.9642857,77.85714286 +3003,50.05,982,435,,175.3571429,77.67857143 +3004,50.06666667,977,434,,174.4642857,77.5 +3005,50.08333333,973,434,,173.75,77.5 +3006,50.1,973,434,,173.75,77.5 +3007,50.11666667,973,434,,173.75,77.5 +3008,50.13333333,974,434,,173.9285714,77.5 +3009,50.15,979,434,,174.8214286,77.5 +3010,50.16666667,985,435,,175.8928571,77.67857143 +3011,50.18333333,994,437,,177.5,78.03571429 +3012,50.2,1005,438,,179.4642857,78.21428571 +3013,50.21666667,1018,439,,181.7857143,78.39285714 +3014,50.23333333,1032,441,,184.2857143,78.75 +3015,50.25,1048,443,,187.1428571,79.10714286 +3016,50.26666667,1067,445,,190.5357143,79.46428571 +3017,50.28333333,1087,447,,194.1071429,79.82142857 +3018,50.3,1108,449,,197.8571429,80.17857143 +3019,50.31666667,1130,451,,201.7857143,80.53571429 +3020,50.33333333,1154,452,,206.0714286,80.71428571 +3021,50.35,1179,454,,210.5357143,81.07142857 +3022,50.36666667,1206,455,,215.3571429,81.25 +3023,50.38333333,1232,457,,220,81.60714286 +3024,50.4,1260,458,,225,81.78571429 +3025,50.41666667,1289,459,,230.1785714,81.96428571 +3026,50.43333333,1318,460,,235.3571429,82.14285714 +3027,50.45,1348,460,,240.7142857,82.14285714 +3028,50.46666667,1377,460,,245.8928571,82.14285714 +3029,50.48333333,1407,460,,251.25,82.14285714 +3030,50.5,1438,459,,256.7857143,81.96428571 +3031,50.51666667,1467,459,,261.9642857,81.96428571 +3032,50.53333333,1497,457,,267.3214286,81.60714286 +3033,50.55,1526,456,,272.5,81.42857143 +3034,50.56666667,1554,454,,277.5,81.07142857 +3035,50.58333333,1582,453,,282.5,80.89285714 +3036,50.6,1609,451,,287.3214286,80.53571429 +3037,50.61666667,1635,449,,291.9642857,80.17857143 +3038,50.63333333,1660,447,,296.4285714,79.82142857 +3039,50.65,1683,444,,300.5357143,79.28571429 +3040,50.66666667,1706,442,,304.6428571,78.92857143 +3041,50.68333333,1726,440,,308.2142857,78.57142857 +3042,50.7,1745,438,,311.6071429,78.21428571 +3043,50.71666667,1763,436,,314.8214286,77.85714286 +3044,50.73333333,1778,434,,317.5,77.5 +3045,50.75,1792,432,,320,77.14285714 +3046,50.76666667,1804,430,,322.1428571,76.78571429 +3047,50.78333333,1814,429,,323.9285714,76.60714286 +3048,50.8,1822,427,,325.3571429,76.25 +3049,50.81666667,1828,426,,326.4285714,76.07142857 +3050,50.83333333,1832,426,,327.1428571,76.07142857 +3051,50.85,1832,426,,327.1428571,76.07142857 +3052,50.86666667,1832,426,,327.1428571,76.07142857 +3053,50.88333333,1830,426,,326.7857143,76.07142857 +3054,50.9,1826,427,,326.0714286,76.25 +3055,50.91666667,1819,427,,324.8214286,76.25 +3056,50.93333333,1810,429,,323.2142857,76.60714286 +3057,50.95,1799,430,,321.25,76.78571429 +3058,50.96666667,1786,432,,318.9285714,77.14285714 +3059,50.98333333,1771,433,,316.25,77.32142857 +3060,51,1754,435,,313.2142857,77.67857143 +3061,51.01666667,1736,437,,310,78.03571429 +3062,51.03333333,1715,439,,306.25,78.39285714 +3063,51.05,1694,441,,302.5,78.75 +3064,51.06666667,1671,444,,298.3928571,79.28571429 +3065,51.08333333,1646,446,,293.9285714,79.64285714 +3066,51.1,1621,448,,289.4642857,80 +3067,51.11666667,1594,450,,284.6428571,80.35714286 +3068,51.13333333,1567,451,,279.8214286,80.53571429 +3069,51.15,1538,453,,274.6428571,80.89285714 +3070,51.16666667,1509,454,,269.4642857,81.07142857 +3071,51.18333333,1480,455,,264.2857143,81.25 +3072,51.2,1450,456,,258.9285714,81.42857143 +3073,51.21666667,1419,457,,253.3928571,81.60714286 +3074,51.23333333,1389,457,,248.0357143,81.60714286 +3075,51.25,1359,457,,242.6785714,81.60714286 +3076,51.26666667,1329,457,,237.3214286,81.60714286 +3077,51.28333333,1300,457,,232.1428571,81.60714286 +3078,51.3,1270,456,,226.7857143,81.42857143 +3079,51.31666667,1242,455,,221.7857143,81.25 +3080,51.33333333,1214,454,,216.7857143,81.07142857 +3081,51.35,1187,452,,211.9642857,80.71428571 +3082,51.36666667,1162,451,,207.5,80.53571429 +3083,51.38333333,1138,450,,203.2142857,80.35714286 +3084,51.4,1114,448,,198.9285714,80 +3085,51.41666667,1093,446,,195.1785714,79.64285714 +3086,51.43333333,1073,444,,191.6071429,79.28571429 +3087,51.45,1054,442,,188.2142857,78.92857143 +3088,51.46666667,1037,441,,185.1785714,78.75 +3089,51.48333333,1023,440,,182.6785714,78.57142857 +3090,51.5,1010,438,,180.3571429,78.21428571 +3091,51.51666667,999,437,,178.3928571,78.03571429 +3092,51.53333333,990,436,,176.7857143,77.85714286 +3093,51.55,983,436,,175.5357143,77.85714286 +3094,51.56666667,978,435,,174.6428571,77.67857143 +3095,51.58333333,975,435,,174.1071429,77.67857143 +3096,51.6,975,435,,174.1071429,77.67857143 +3097,51.61666667,975,435,,174.1071429,77.67857143 +3098,51.63333333,979,436,,174.8214286,77.85714286 +3099,51.65,984,436,,175.7142857,77.85714286 +3100,51.66666667,992,437,,177.1428571,78.03571429 +3101,51.68333333,1001,439,,178.75,78.39285714 +3102,51.7,1013,440,,180.8928571,78.57142857 +3103,51.71666667,1027,442,,183.3928571,78.92857143 +3104,51.73333333,1042,444,,186.0714286,79.28571429 +3105,51.75,1059,445,,189.1071429,79.46428571 +3106,51.76666667,1077,447,,192.3214286,79.82142857 +3107,51.78333333,1098,449,,196.0714286,80.17857143 +3108,51.8,1119,451,,199.8214286,80.53571429 +3109,51.81666667,1142,452,,203.9285714,80.71428571 +3110,51.83333333,1167,454,,208.3928571,81.07142857 +3111,51.85,1192,456,,212.8571429,81.42857143 +3112,51.86666667,1219,457,,217.6785714,81.60714286 +3113,51.88333333,1247,459,,222.6785714,81.96428571 +3114,51.9,1275,460,,227.6785714,82.14285714 +3115,51.91666667,1304,461,,232.8571429,82.32142857 +3116,51.93333333,1333,462,,238.0357143,82.5 +3117,51.95,1362,462,,243.2142857,82.5 +3118,51.96666667,1393,462,,248.75,82.5 +3119,51.98333333,1422,461,,253.9285714,82.32142857 +3120,52,1452,460,,259.2857143,82.14285714 +3121,52.01666667,1482,459,,264.6428571,81.96428571 +3122,52.03333333,1512,458,,270,81.78571429 +3123,52.05,1540,457,,275,81.60714286 +3124,52.06666667,1568,455,,280,81.25 +3125,52.08333333,1595,453,,284.8214286,80.89285714 +3126,52.1,1622,452,,289.6428571,80.71428571 +3127,52.11666667,1647,449,,294.1071429,80.17857143 +3128,52.13333333,1671,447,,298.3928571,79.82142857 +3129,52.15,1694,445,,302.5,79.46428571 +3130,52.16666667,1715,442,,306.25,78.92857143 +3131,52.18333333,1735,440,,309.8214286,78.57142857 +3132,52.2,1753,438,,313.0357143,78.21428571 +3133,52.21666667,1769,436,,315.8928571,77.85714286 +3134,52.23333333,1784,434,,318.5714286,77.5 +3135,52.25,1797,432,,320.8928571,77.14285714 +3136,52.26666667,1807,430,,322.6785714,76.78571429 +3137,52.28333333,1816,429,,324.2857143,76.60714286 +3138,52.3,1823,428,,325.5357143,76.42857143 +3139,52.31666667,1828,427,,326.4285714,76.25 +3140,52.33333333,1830,427,,326.7857143,76.25 +3141,52.35,1830,427,,326.7857143,76.25 +3142,52.36666667,1830,427,,326.7857143,76.25 +3143,52.38333333,1827,427,,326.25,76.25 +3144,52.4,1821,428,,325.1785714,76.42857143 +3145,52.41666667,1813,429,,323.75,76.60714286 +3146,52.43333333,1803,430,,321.9642857,76.78571429 +3147,52.45,1791,431,,319.8214286,76.96428571 +3148,52.46666667,1778,433,,317.5,77.32142857 +3149,52.48333333,1762,435,,314.6428571,77.67857143 +3150,52.5,1745,436,,311.6071429,77.85714286 +3151,52.51666667,1725,439,,308.0357143,78.39285714 +3152,52.53333333,1705,441,,304.4642857,78.75 +3153,52.55,1683,443,,300.5357143,79.10714286 +3154,52.56666667,1659,445,,296.25,79.46428571 +3155,52.58333333,1635,447,,291.9642857,79.82142857 +3156,52.6,1608,449,,287.1428571,80.17857143 +3157,52.61666667,1582,451,,282.5,80.53571429 +3158,52.63333333,1554,452,,277.5,80.71428571 +3159,52.65,1525,454,,272.3214286,81.07142857 +3160,52.66666667,1496,455,,267.1428571,81.25 +3161,52.68333333,1466,456,,261.7857143,81.42857143 +3162,52.7,1436,457,,256.4285714,81.60714286 +3163,52.71666667,1405,457,,250.8928571,81.60714286 +3164,52.73333333,1375,457,,245.5357143,81.60714286 +3165,52.75,1345,457,,240.1785714,81.60714286 +3166,52.76666667,1315,457,,234.8214286,81.60714286 +3167,52.78333333,1286,457,,229.6428571,81.60714286 +3168,52.8,1257,456,,224.4642857,81.42857143 +3169,52.81666667,1229,454,,219.4642857,81.07142857 +3170,52.83333333,1202,453,,214.6428571,80.89285714 +3171,52.85,1176,451,,210,80.53571429 +3172,52.86666667,1151,450,,205.5357143,80.35714286 +3173,52.88333333,1128,448,,201.4285714,80 +3174,52.9,1105,447,,197.3214286,79.82142857 +3175,52.91666667,1084,445,,193.5714286,79.46428571 +3176,52.93333333,1065,443,,190.1785714,79.10714286 +3177,52.95,1048,441,,187.1428571,78.75 +3178,52.96666667,1033,440,,184.4642857,78.57142857 +3179,52.98333333,1019,438,,181.9642857,78.21428571 +3180,53,1007,437,,179.8214286,78.03571429 +3181,53.01666667,996,436,,177.8571429,77.85714286 +3182,53.03333333,988,435,,176.4285714,77.67857143 +3183,53.05,982,435,,175.3571429,77.67857143 +3184,53.06666667,978,434,,174.6428571,77.5 +3185,53.08333333,978,434,,174.6428571,77.5 +3186,53.1,978,434,,174.6428571,77.5 +3187,53.11666667,978,434,,174.6428571,77.5 +3188,53.13333333,982,435,,175.3571429,77.67857143 +3189,53.15,989,436,,176.6071429,77.85714286 +3190,53.16666667,997,437,,178.0357143,78.03571429 +3191,53.18333333,1007,438,,179.8214286,78.21428571 +3192,53.2,1020,439,,182.1428571,78.39285714 +3193,53.21666667,1034,441,,184.6428571,78.75 +3194,53.23333333,1050,443,,187.5,79.10714286 +3195,53.25,1068,445,,190.7142857,79.46428571 +3196,53.26666667,1087,447,,194.1071429,79.82142857 +3197,53.28333333,1108,448,,197.8571429,80 +3198,53.3,1130,450,,201.7857143,80.35714286 +3199,53.31666667,1154,452,,206.0714286,80.71428571 +3200,53.33333333,1178,454,,210.3571429,81.07142857 +3201,53.35,1204,455,,215,81.25 +3202,53.36666667,1232,457,,220,81.60714286 +3203,53.38333333,1259,458,,224.8214286,81.78571429 +3204,53.4,1287,459,,229.8214286,81.96428571 +3205,53.41666667,1317,459,,235.1785714,81.96428571 +3206,53.43333333,1346,459,,240.3571429,81.96428571 +3207,53.45,1376,459,,245.7142857,81.96428571 +3208,53.46666667,1405,459,,250.8928571,81.96428571 +3209,53.48333333,1435,459,,256.25,81.96428571 +3210,53.5,1465,458,,261.6071429,81.78571429 +3211,53.51666667,1494,457,,266.7857143,81.60714286 +3212,53.53333333,1523,456,,271.9642857,81.42857143 +3213,53.55,1552,455,,277.1428571,81.25 +3214,53.56666667,1579,453,,281.9642857,80.89285714 +3215,53.58333333,1606,451,,286.7857143,80.53571429 +3216,53.6,1632,449,,291.4285714,80.17857143 +3217,53.61666667,1657,447,,295.8928571,79.82142857 +3218,53.63333333,1680,445,,300,79.46428571 +3219,53.65,1702,443,,303.9285714,79.10714286 +3220,53.66666667,1722,441,,307.5,78.75 +3221,53.68333333,1741,439,,310.8928571,78.39285714 +3222,53.7,1759,436,,314.1071429,77.85714286 +3223,53.71666667,1774,434,,316.7857143,77.5 +3224,53.73333333,1788,432,,319.2857143,77.14285714 +3225,53.75,1800,431,,321.4285714,76.96428571 +3226,53.76666667,1810,429,,323.2142857,76.60714286 +3227,53.78333333,1818,428,,324.6428571,76.42857143 +3228,53.8,1824,427,,325.7142857,76.25 +3229,53.81666667,1828,426,,326.4285714,76.07142857 +3230,53.83333333,1828,426,,326.4285714,76.07142857 +3231,53.85,1828,426,,326.4285714,76.07142857 +3232,53.86666667,1826,427,,326.0714286,76.25 +3233,53.88333333,1822,427,,325.3571429,76.25 +3234,53.9,1815,428,,324.1071429,76.42857143 +3235,53.91666667,1807,429,,322.6785714,76.60714286 +3236,53.93333333,1796,430,,320.7142857,76.78571429 +3237,53.95,1784,432,,318.5714286,77.14285714 +3238,53.96666667,1769,433,,315.8928571,77.32142857 +3239,53.98333333,1753,435,,313.0357143,77.67857143 +3240,54,1735,437,,309.8214286,78.03571429 +3241,54.01666667,1715,439,,306.25,78.39285714 +3242,54.03333333,1694,442,,302.5,78.92857143 +3243,54.05,1671,444,,298.3928571,79.28571429 +3244,54.06666667,1647,446,,294.1071429,79.64285714 +3245,54.08333333,1622,448,,289.6428571,80 +3246,54.1,1595,450,,284.8214286,80.35714286 +3247,54.11666667,1568,451,,280,80.53571429 +3248,54.13333333,1540,453,,275,80.89285714 +3249,54.15,1511,454,,269.8214286,81.07142857 +3250,54.16666667,1482,456,,264.6428571,81.42857143 +3251,54.18333333,1452,456,,259.2857143,81.42857143 +3252,54.2,1422,457,,253.9285714,81.60714286 +3253,54.21666667,1392,458,,248.5714286,81.78571429 +3254,54.23333333,1362,458,,243.2142857,81.78571429 +3255,54.25,1333,458,,238.0357143,81.78571429 +3256,54.26666667,1304,458,,232.8571429,81.78571429 +3257,54.28333333,1274,457,,227.5,81.60714286 +3258,54.3,1246,456,,222.5,81.42857143 +3259,54.31666667,1219,454,,217.6785714,81.07142857 +3260,54.33333333,1192,453,,212.8571429,80.89285714 +3261,54.35,1167,452,,208.3928571,80.71428571 +3262,54.36666667,1143,450,,204.1071429,80.35714286 +3263,54.38333333,1120,448,,200,80 +3264,54.4,1099,447,,196.25,79.82142857 +3265,54.41666667,1079,445,,192.6785714,79.46428571 +3266,54.43333333,1060,443,,189.2857143,79.10714286 +3267,54.45,1044,442,,186.4285714,78.92857143 +3268,54.46666667,1029,440,,183.75,78.57142857 +3269,54.48333333,1015,439,,181.25,78.39285714 +3270,54.5,1005,438,,179.4642857,78.21428571 +3271,54.51666667,995,437,,177.6785714,78.03571429 +3272,54.53333333,988,437,,176.4285714,78.03571429 +3273,54.55,983,436,,175.5357143,77.85714286 +3274,54.56666667,980,436,,175,77.85714286 +3275,54.58333333,980,436,,175,77.85714286 +3276,54.6,980,436,,175,77.85714286 +3277,54.61666667,983,436,,175.5357143,77.85714286 +3278,54.63333333,988,437,,176.4285714,78.03571429 +3279,54.65,995,438,,177.6785714,78.21428571 +3280,54.66666667,1005,439,,179.4642857,78.39285714 +3281,54.68333333,1016,440,,181.4285714,78.57142857 +3282,54.7,1029,442,,183.75,78.92857143 +3283,54.71666667,1044,444,,186.4285714,79.28571429 +3284,54.73333333,1061,445,,189.4642857,79.46428571 +3285,54.75,1079,447,,192.6785714,79.82142857 +3286,54.76666667,1098,449,,196.0714286,80.17857143 +3287,54.78333333,1120,451,,200,80.53571429 +3288,54.8,1142,452,,203.9285714,80.71428571 +3289,54.81666667,1166,454,,208.2142857,81.07142857 +3290,54.83333333,1191,455,,212.6785714,81.25 +3291,54.85,1217,457,,217.3214286,81.60714286 +3292,54.86666667,1244,458,,222.1428571,81.78571429 +3293,54.88333333,1272,459,,227.1428571,81.96428571 +3294,54.9,1301,460,,232.3214286,82.14285714 +3295,54.91666667,1330,460,,237.5,82.14285714 +3296,54.93333333,1359,460,,242.6785714,82.14285714 +3297,54.95,1389,460,,248.0357143,82.14285714 +3298,54.96666667,1418,460,,253.2142857,82.14285714 +3299,54.98333333,1448,460,,258.5714286,82.14285714 +3300,55,1477,459,,263.75,81.96428571 +3301,55.01666667,1506,458,,268.9285714,81.78571429 +3302,55.03333333,1535,456,,274.1071429,81.42857143 +3303,55.05,1563,455,,279.1071429,81.25 +3304,55.06666667,1590,453,,283.9285714,80.89285714 +3305,55.08333333,1616,451,,288.5714286,80.53571429 +3306,55.1,1641,449,,293.0357143,80.17857143 +3307,55.11666667,1665,447,,297.3214286,79.82142857 +3308,55.13333333,1688,444,,301.4285714,79.28571429 +3309,55.15,1709,442,,305.1785714,78.92857143 +3310,55.16666667,1729,440,,308.75,78.57142857 +3311,55.18333333,1748,438,,312.1428571,78.21428571 +3312,55.2,1764,436,,315,77.85714286 +3313,55.21666667,1779,434,,317.6785714,77.5 +3314,55.23333333,1792,432,,320,77.14285714 +3315,55.25,1803,431,,321.9642857,76.96428571 +3316,55.26666667,1812,429,,323.5714286,76.60714286 +3317,55.28333333,1819,428,,324.8214286,76.42857143 +3318,55.3,1824,427,,325.7142857,76.25 +3319,55.31666667,1827,427,,326.25,76.25 +3320,55.33333333,1827,427,,326.25,76.25 +3321,55.35,1827,427,,326.25,76.25 +3322,55.36666667,1823,427,,325.5357143,76.25 +3323,55.38333333,1818,428,,324.6428571,76.42857143 +3324,55.4,1810,428,,323.2142857,76.42857143 +3325,55.41666667,1801,430,,321.6071429,76.78571429 +3326,55.43333333,1789,431,,319.4642857,76.96428571 +3327,55.45,1776,433,,317.1428571,77.32142857 +3328,55.46666667,1760,434,,314.2857143,77.5 +3329,55.48333333,1743,437,,311.25,78.03571429 +3330,55.5,1724,439,,307.8571429,78.39285714 +3331,55.51666667,1704,441,,304.2857143,78.75 +3332,55.53333333,1681,443,,300.1785714,79.10714286 +3333,55.55,1658,445,,296.0714286,79.46428571 +3334,55.56666667,1634,447,,291.7857143,79.82142857 +3335,55.58333333,1608,449,,287.1428571,80.17857143 +3336,55.6,1582,451,,282.5,80.53571429 +3337,55.61666667,1555,452,,277.6785714,80.71428571 +3338,55.63333333,1526,453,,272.5,80.89285714 +3339,55.65,1498,455,,267.5,81.25 +3340,55.66666667,1468,456,,262.1428571,81.42857143 +3341,55.68333333,1439,456,,256.9642857,81.42857143 +3342,55.7,1409,457,,251.6071429,81.60714286 +3343,55.71666667,1379,457,,246.25,81.60714286 +3344,55.73333333,1350,457,,241.0714286,81.60714286 +3345,55.75,1321,457,,235.8928571,81.60714286 +3346,55.76666667,1291,456,,230.5357143,81.42857143 +3347,55.78333333,1262,455,,225.3571429,81.25 +3348,55.8,1235,454,,220.5357143,81.07142857 +3349,55.81666667,1207,453,,215.5357143,80.89285714 +3350,55.83333333,1182,451,,211.0714286,80.53571429 +3351,55.85,1157,450,,206.6071429,80.35714286 +3352,55.86666667,1133,448,,202.3214286,80 +3353,55.88333333,1111,447,,198.3928571,79.82142857 +3354,55.9,1090,445,,194.6428571,79.46428571 +3355,55.91666667,1071,443,,191.25,79.10714286 +3356,55.93333333,1054,442,,188.2142857,78.92857143 +3357,55.95,1038,440,,185.3571429,78.57142857 +3358,55.96666667,1024,439,,182.8571429,78.39285714 +3359,55.98333333,1012,438,,180.7142857,78.21428571 +3360,56,1001,437,,178.75,78.03571429 +3361,56.01666667,993,436,,177.3214286,77.85714286 +3362,56.03333333,987,435,,176.25,77.67857143 +3363,56.05,983,435,,175.5357143,77.67857143 +3364,56.06666667,983,435,,175.5357143,77.67857143 +3365,56.08333333,983,435,,175.5357143,77.67857143 +3366,56.1,983,435,,175.5357143,77.67857143 +3367,56.11666667,986,436,,176.0714286,77.85714286 +3368,56.13333333,992,437,,177.1428571,78.03571429 +3369,56.15,1000,438,,178.5714286,78.21428571 +3370,56.16666667,1011,439,,180.5357143,78.39285714 +3371,56.18333333,1022,440,,182.5,78.57142857 +3372,56.2,1036,442,,185,78.92857143 +3373,56.21666667,1052,443,,187.8571429,79.10714286 +3374,56.23333333,1070,445,,191.0714286,79.46428571 +3375,56.25,1088,447,,194.2857143,79.82142857 +3376,56.26666667,1109,449,,198.0357143,80.17857143 +3377,56.28333333,1130,450,,201.7857143,80.35714286 +3378,56.3,1153,452,,205.8928571,80.71428571 +3379,56.31666667,1178,454,,210.3571429,81.07142857 +3380,56.33333333,1203,455,,214.8214286,81.25 +3381,56.35,1229,457,,219.4642857,81.60714286 +3382,56.36666667,1257,458,,224.4642857,81.78571429 +3383,56.38333333,1285,459,,229.4642857,81.96428571 +3384,56.4,1313,460,,234.4642857,82.14285714 +3385,56.41666667,1342,460,,239.6428571,82.14285714 +3386,56.43333333,1372,460,,245,82.14285714 +3387,56.45,1402,460,,250.3571429,82.14285714 +3388,56.46666667,1431,460,,255.5357143,82.14285714 +3389,56.48333333,1460,459,,260.7142857,81.96428571 +3390,56.5,1489,458,,265.8928571,81.78571429 +3391,56.51666667,1518,456,,271.0714286,81.42857143 +3392,56.53333333,1546,455,,276.0714286,81.25 +3393,56.55,1574,454,,281.0714286,81.07142857 +3394,56.56666667,1601,452,,285.8928571,80.71428571 +3395,56.58333333,1626,450,,290.3571429,80.35714286 +3396,56.6,1651,448,,294.8214286,80 +3397,56.61666667,1674,446,,298.9285714,79.64285714 +3398,56.63333333,1696,444,,302.8571429,79.28571429 +3399,56.65,1717,442,,306.6071429,78.92857143 +3400,56.66666667,1736,439,,310,78.39285714 +3401,56.68333333,1753,437,,313.0357143,78.03571429 +3402,56.7,1769,435,,315.8928571,77.67857143 +3403,56.71666667,1783,433,,318.3928571,77.32142857 +3404,56.73333333,1796,432,,320.7142857,77.14285714 +3405,56.75,1806,430,,322.5,76.78571429 +3406,56.76666667,1814,429,,323.9285714,76.60714286 +3407,56.78333333,1820,428,,325,76.42857143 +3408,56.8,1824,427,,325.7142857,76.25 +3409,56.81666667,1824,427,,325.7142857,76.25 +3410,56.83333333,1824,427,,325.7142857,76.25 +3411,56.85,1824,427,,325.7142857,76.25 +3412,56.86666667,1819,428,,324.8214286,76.42857143 +3413,56.88333333,1813,428,,323.75,76.42857143 +3414,56.9,1805,429,,322.3214286,76.60714286 +3415,56.91666667,1794,431,,320.3571429,76.96428571 +3416,56.93333333,1782,433,,318.2142857,77.32142857 +3417,56.95,1768,434,,315.7142857,77.5 +3418,56.96666667,1752,436,,312.8571429,77.85714286 +3419,56.98333333,1734,438,,309.6428571,78.21428571 +3420,57,1715,441,,306.25,78.75 +3421,57.01666667,1694,442,,302.5,78.92857143 +3422,57.03333333,1672,444,,298.5714286,79.28571429 +3423,57.05,1648,447,,294.2857143,79.82142857 +3424,57.06666667,1623,448,,289.8214286,80 +3425,57.08333333,1597,451,,285.1785714,80.53571429 +3426,57.1,1570,452,,280.3571429,80.71428571 +3427,57.11666667,1542,454,,275.3571429,81.07142857 +3428,57.13333333,1514,455,,270.3571429,81.25 +3429,57.15,1485,456,,265.1785714,81.42857143 +3430,57.16666667,1456,457,,260,81.60714286 +3431,57.18333333,1427,458,,254.8214286,81.78571429 +3432,57.2,1397,458,,249.4642857,81.78571429 +3433,57.21666667,1367,458,,244.1071429,81.78571429 +3434,57.23333333,1337,458,,238.75,81.78571429 +3435,57.25,1309,458,,233.75,81.78571429 +3436,57.26666667,1280,457,,228.5714286,81.60714286 +3437,57.28333333,1252,456,,223.5714286,81.42857143 +3438,57.3,1224,455,,218.5714286,81.25 +3439,57.31666667,1198,454,,213.9285714,81.07142857 +3440,57.33333333,1172,452,,209.2857143,80.71428571 +3441,57.35,1148,451,,205,80.53571429 +3442,57.36666667,1125,449,,200.8928571,80.17857143 +3443,57.38333333,1104,447,,197.1428571,79.82142857 +3444,57.4,1084,446,,193.5714286,79.64285714 +3445,57.41666667,1066,444,,190.3571429,79.28571429 +3446,57.43333333,1049,442,,187.3214286,78.92857143 +3447,57.45,1034,441,,184.6428571,78.75 +3448,57.46666667,1020,440,,182.1428571,78.57142857 +3449,57.48333333,1009,439,,180.1785714,78.39285714 +3450,57.5,999,437,,178.3928571,78.03571429 +3451,57.51666667,992,437,,177.1428571,78.03571429 +3452,57.53333333,987,436,,176.25,77.85714286 +3453,57.55,983,436,,175.5357143,77.85714286 +3454,57.56666667,983,436,,175.5357143,77.85714286 +3455,57.58333333,983,436,,175.5357143,77.85714286 +3456,57.6,985,436,,175.8928571,77.85714286 +3457,57.61666667,990,437,,176.7857143,78.03571429 +3458,57.63333333,997,438,,178.0357143,78.21428571 +3459,57.65,1006,439,,179.6428571,78.39285714 +3460,57.66666667,1017,440,,181.6071429,78.57142857 +3461,57.68333333,1029,441,,183.75,78.75 +3462,57.7,1044,443,,186.4285714,79.10714286 +3463,57.71666667,1060,445,,189.2857143,79.46428571 +3464,57.73333333,1078,447,,192.5,79.82142857 +3465,57.75,1098,448,,196.0714286,80 +3466,57.76666667,1119,450,,199.8214286,80.35714286 +3467,57.78333333,1141,452,,203.75,80.71428571 +3468,57.8,1164,453,,207.8571429,80.89285714 +3469,57.81666667,1189,455,,212.3214286,81.25 +3470,57.83333333,1215,456,,216.9642857,81.42857143 +3471,57.85,1242,457,,221.7857143,81.60714286 +3472,57.86666667,1270,459,,226.7857143,81.96428571 +3473,57.88333333,1298,459,,231.7857143,81.96428571 +3474,57.9,1326,460,,236.7857143,82.14285714 +3475,57.91666667,1356,460,,242.1428571,82.14285714 +3476,57.93333333,1385,460,,247.3214286,82.14285714 +3477,57.95,1414,459,,252.5,81.96428571 +3478,57.96666667,1444,459,,257.8571429,81.96428571 +3479,57.98333333,1473,458,,263.0357143,81.78571429 +3480,58,1502,457,,268.2142857,81.60714286 +3481,58.01666667,1531,456,,273.3928571,81.42857143 +3482,58.03333333,1558,454,,278.2142857,81.07142857 +3483,58.05,1586,453,,283.2142857,80.89285714 +3484,58.06666667,1611,451,,287.6785714,80.53571429 +3485,58.08333333,1637,448,,292.3214286,80 +3486,58.1,1661,447,,296.6071429,79.82142857 +3487,58.11666667,1683,444,,300.5357143,79.28571429 +3488,58.13333333,1705,442,,304.4642857,78.92857143 +3489,58.15,1725,440,,308.0357143,78.57142857 +3490,58.16666667,1743,438,,311.25,78.21428571 +3491,58.18333333,1760,436,,314.2857143,77.85714286 +3492,58.2,1775,434,,316.9642857,77.5 +3493,58.21666667,1787,432,,319.1071429,77.14285714 +3494,58.23333333,1798,431,,321.0714286,76.96428571 +3495,58.25,1808,430,,322.8571429,76.78571429 +3496,58.26666667,1815,429,,324.1071429,76.60714286 +3497,58.28333333,1819,428,,324.8214286,76.42857143 +3498,58.3,1822,428,,325.3571429,76.42857143 +3499,58.31666667,1822,428,,325.3571429,76.42857143 +3500,58.33333333,1822,428,,325.3571429,76.42857143 +3501,58.35,1820,428,,325,76.42857143 +3502,58.36666667,1815,428,,324.1071429,76.42857143 +3503,58.38333333,1808,429,,322.8571429,76.60714286 +3504,58.4,1799,430,,321.25,76.78571429 +3505,58.41666667,1788,431,,319.2857143,76.96428571 +3506,58.43333333,1775,432,,316.9642857,77.14285714 +3507,58.45,1760,434,,314.2857143,77.5 +3508,58.46666667,1743,436,,311.25,77.85714286 +3509,58.48333333,1725,438,,308.0357143,78.21428571 +3510,58.5,1705,440,,304.4642857,78.57142857 +3511,58.51666667,1683,442,,300.5357143,78.92857143 +3512,58.53333333,1661,444,,296.6071429,79.28571429 +3513,58.55,1636,446,,292.1428571,79.64285714 +3514,58.56666667,1611,448,,287.6785714,80 +3515,58.58333333,1584,450,,282.8571429,80.35714286 +3516,58.6,1557,452,,278.0357143,80.71428571 +3517,58.61666667,1529,453,,273.0357143,80.89285714 +3518,58.63333333,1500,454,,267.8571429,81.07142857 +3519,58.65,1471,455,,262.6785714,81.25 +3520,58.66666667,1441,456,,257.3214286,81.42857143 +3521,58.68333333,1412,457,,252.1428571,81.60714286 +3522,58.7,1382,457,,246.7857143,81.60714286 +3523,58.71666667,1353,457,,241.6071429,81.60714286 +3524,58.73333333,1324,457,,236.4285714,81.60714286 +3525,58.75,1295,456,,231.25,81.42857143 +3526,58.76666667,1266,455,,226.0714286,81.25 +3527,58.78333333,1239,454,,221.25,81.07142857 +3528,58.8,1212,453,,216.4285714,80.89285714 +3529,58.81666667,1186,452,,211.7857143,80.71428571 +3530,58.83333333,1161,450,,207.3214286,80.35714286 +3531,58.85,1138,449,,203.2142857,80.17857143 +3532,58.86666667,1116,447,,199.2857143,79.82142857 +3533,58.88333333,1095,445,,195.5357143,79.46428571 +3534,58.9,1076,444,,192.1428571,79.28571429 +3535,58.91666667,1058,442,,188.9285714,78.92857143 +3536,58.93333333,1042,441,,186.0714286,78.75 +3537,58.95,1028,440,,183.5714286,78.57142857 +3538,58.96666667,1015,438,,181.25,78.21428571 +3539,58.98333333,1005,438,,179.4642857,78.21428571 +3540,59,997,437,,178.0357143,78.03571429 +3541,59.01666667,990,436,,176.7857143,77.85714286 +3542,59.03333333,986,435,,176.0714286,77.67857143 +3543,59.05,984,435,,175.7142857,77.67857143 +3544,59.06666667,984,435,,175.7142857,77.67857143 +3545,59.08333333,984,435,,175.7142857,77.67857143 +3546,59.1,988,436,,176.4285714,77.85714286 +3547,59.11666667,993,437,,177.3214286,78.03571429 +3548,59.13333333,1001,438,,178.75,78.21428571 +3549,59.15,1011,439,,180.5357143,78.39285714 +3550,59.16666667,1022,440,,182.5,78.57142857 +3551,59.18333333,1036,442,,185,78.92857143 +3552,59.2,1051,443,,187.6785714,79.10714286 +3553,59.21666667,1068,445,,190.7142857,79.46428571 +3554,59.23333333,1087,447,,194.1071429,79.82142857 +3555,59.25,1107,449,,197.6785714,80.17857143 +3556,59.26666667,1128,451,,201.4285714,80.53571429 +3557,59.28333333,1151,452,,205.5357143,80.71428571 +3558,59.3,1175,454,,209.8214286,81.07142857 +3559,59.31666667,1200,455,,214.2857143,81.25 +3560,59.33333333,1227,457,,219.1071429,81.60714286 +3561,59.35,1254,458,,223.9285714,81.78571429 +3562,59.36666667,1281,459,,228.75,81.96428571 +3563,59.38333333,1310,460,,233.9285714,82.14285714 +3564,59.4,1339,460,,239.1071429,82.14285714 +3565,59.41666667,1368,460,,244.2857143,82.14285714 +3566,59.43333333,1398,460,,249.6428571,82.14285714 +3567,59.45,1427,459,,254.8214286,81.96428571 +3568,59.46666667,1456,459,,260,81.96428571 +3569,59.48333333,1486,458,,265.3571429,81.78571429 +3570,59.5,1514,457,,270.3571429,81.60714286 +3571,59.51666667,1542,455,,275.3571429,81.25 +3572,59.53333333,1570,454,,280.3571429,81.07142857 +3573,59.55,1596,452,,285,80.71428571 +3574,59.56666667,1622,450,,289.6428571,80.35714286 +3575,59.58333333,1646,448,,293.9285714,80 +3576,59.6,1670,446,,298.2142857,79.64285714 +3577,59.61666667,1692,444,,302.1428571,79.28571429 +3578,59.63333333,1713,442,,305.8928571,78.92857143 +3579,59.65,1732,439,,309.2857143,78.39285714 +3580,59.66666667,1749,438,,312.3214286,78.21428571 +3581,59.68333333,1765,436,,315.1785714,77.85714286 +3582,59.7,1779,434,,317.6785714,77.5 +3583,59.71666667,1792,432,,320,77.14285714 +3584,59.73333333,1802,431,,321.7857143,76.96428571 +3585,59.75,1810,430,,323.2142857,76.78571429 +3586,59.76666667,1817,429,,324.4642857,76.60714286 +3587,59.78333333,1821,428,,325.1785714,76.42857143 +3588,59.8,1821,428,,325.1785714,76.42857143 +3589,59.81666667,1821,428,,325.1785714,76.42857143 +3590,59.83333333,1821,428,,325.1785714,76.42857143 +3591,59.85,1817,428,,324.4642857,76.42857143 +3592,59.86666667,1811,429,,323.3928571,76.60714286 +3593,59.88333333,1804,430,,322.1428571,76.78571429 +3594,59.9,1793,432,,320.1785714,77.14285714 +3595,59.91666667,1782,433,,318.2142857,77.32142857 +3596,59.93333333,1768,434,,315.7142857,77.5 +3597,59.95,1752,436,,312.8571429,77.85714286 +3598,59.96666667,1735,438,,309.8214286,78.21428571 +3599,59.98333333,1715,440,,306.25,78.57142857 +3600,60,1695,442,,302.6785714,78.92857143 +3601,60.01666667,1673,444,,298.75,79.28571429 +3602,60.03333333,1650,446,,294.6428571,79.64285714 +3603,60.05,1625,448,,290.1785714,80 +3604,60.06666667,1599,450,,285.5357143,80.35714286 +3605,60.08333333,1573,452,,280.8928571,80.71428571 +3606,60.1,1545,453,,275.8928571,80.89285714 +3607,60.11666667,1517,455,,270.8928571,81.25 +3608,60.13333333,1488,456,,265.7142857,81.42857143 +3609,60.15,1459,457,,260.5357143,81.60714286 +3610,60.16666667,1430,458,,255.3571429,81.78571429 +3611,60.18333333,1400,458,,250,81.78571429 +3612,60.2,1371,458,,244.8214286,81.78571429 +3613,60.21666667,1342,458,,239.6428571,81.78571429 +3614,60.23333333,1313,458,,234.4642857,81.78571429 +3615,60.25,1284,457,,229.2857143,81.60714286 +3616,60.26666667,1256,456,,224.2857143,81.42857143 +3617,60.28333333,1228,455,,219.2857143,81.25 +3618,60.3,1202,453,,214.6428571,80.89285714 +3619,60.31666667,1177,452,,210.1785714,80.71428571 +3620,60.33333333,1153,451,,205.8928571,80.53571429 +3621,60.35,1130,449,,201.7857143,80.17857143 +3622,60.36666667,1108,448,,197.8571429,80 +3623,60.38333333,1088,446,,194.2857143,79.64285714 +3624,60.4,1069,444,,190.8928571,79.28571429 +3625,60.41666667,1052,442,,187.8571429,78.92857143 +3626,60.43333333,1037,441,,185.1785714,78.75 +3627,60.45,1023,440,,182.6785714,78.57142857 +3628,60.46666667,1012,439,,180.7142857,78.39285714 +3629,60.48333333,1002,438,,178.9285714,78.21428571 +3630,60.5,994,437,,177.5,78.03571429 +3631,60.51666667,989,436,,176.6071429,77.85714286 +3632,60.53333333,986,436,,176.0714286,77.85714286 +3633,60.55,986,436,,176.0714286,77.85714286 +3634,60.56666667,986,436,,176.0714286,77.85714286 +3635,60.58333333,987,436,,176.25,77.85714286 +3636,60.6,992,437,,177.1428571,78.03571429 +3637,60.61666667,999,438,,178.3928571,78.21428571 +3638,60.63333333,1007,439,,179.8214286,78.39285714 +3639,60.65,1018,440,,181.7857143,78.57142857 +3640,60.66666667,1030,441,,183.9285714,78.75 +3641,60.68333333,1044,443,,186.4285714,79.10714286 +3642,60.7,1060,445,,189.2857143,79.46428571 +3643,60.71666667,1078,446,,192.5,79.64285714 +3644,60.73333333,1097,448,,195.8928571,80 +3645,60.75,1118,450,,199.6428571,80.35714286 +3646,60.76666667,1140,451,,203.5714286,80.53571429 +3647,60.78333333,1163,453,,207.6785714,80.89285714 +3648,60.8,1188,454,,212.1428571,81.07142857 +3649,60.81666667,1213,456,,216.6071429,81.42857143 +3650,60.83333333,1240,457,,221.4285714,81.60714286 +3651,60.85,1267,459,,226.25,81.96428571 +3652,60.86666667,1295,459,,231.25,81.96428571 +3653,60.88333333,1324,460,,236.4285714,82.14285714 +3654,60.9,1353,460,,241.6071429,82.14285714 +3655,60.91666667,1382,460,,246.7857143,82.14285714 +3656,60.93333333,1411,460,,251.9642857,82.14285714 +3657,60.95,1440,459,,257.1428571,81.96428571 +3658,60.96666667,1470,458,,262.5,81.78571429 +3659,60.98333333,1498,457,,267.5,81.60714286 +3660,61,1527,456,,272.6785714,81.42857143 +3661,61.01666667,1554,454,,277.5,81.07142857 +3662,61.03333333,1581,452,,282.3214286,80.71428571 +3663,61.05,1607,451,,286.9642857,80.53571429 +3664,61.06666667,1632,449,,291.4285714,80.17857143 +3665,61.08333333,1656,446,,295.7142857,79.64285714 +3666,61.1,1679,444,,299.8214286,79.28571429 +3667,61.11666667,1700,442,,303.5714286,78.92857143 +3668,61.13333333,1720,440,,307.1428571,78.57142857 +3669,61.15,1738,438,,310.3571429,78.21428571 +3670,61.16666667,1755,436,,313.3928571,77.85714286 +3671,61.18333333,1770,434,,316.0714286,77.5 +3672,61.2,1783,432,,318.3928571,77.14285714 +3673,61.21666667,1794,431,,320.3571429,76.96428571 +3674,61.23333333,1804,429,,322.1428571,76.60714286 +3675,61.25,1811,429,,323.3928571,76.60714286 +3676,61.26666667,1817,427,,324.4642857,76.25 +3677,61.28333333,1820,427,,325,76.25 +3678,61.3,1820,427,,325,76.25 +3679,61.31666667,1820,427,,325,76.25 +3680,61.33333333,1818,427,,324.6428571,76.25 +3681,61.35,1814,428,,323.9285714,76.42857143 +3682,61.36666667,1806,428,,322.5,76.42857143 +3683,61.38333333,1798,429,,321.0714286,76.60714286 +3684,61.4,1787,431,,319.1071429,76.96428571 +3685,61.41666667,1774,432,,316.7857143,77.14285714 +3686,61.43333333,1759,434,,314.1071429,77.5 +3687,61.45,1743,435,,311.25,77.67857143 +3688,61.46666667,1725,437,,308.0357143,78.03571429 +3689,61.48333333,1705,439,,304.4642857,78.39285714 +3690,61.5,1684,442,,300.7142857,78.92857143 +3691,61.51666667,1661,444,,296.6071429,79.28571429 +3692,61.53333333,1637,446,,292.3214286,79.64285714 +3693,61.55,1612,448,,287.8571429,80 +3694,61.56666667,1586,450,,283.2142857,80.35714286 +3695,61.58333333,1559,451,,278.3928571,80.53571429 +3696,61.6,1531,453,,273.3928571,80.89285714 +3697,61.61666667,1502,454,,268.2142857,81.07142857 +3698,61.63333333,1473,455,,263.0357143,81.25 +3699,61.65,1444,455,,257.8571429,81.25 +3700,61.66666667,1415,456,,252.6785714,81.42857143 +3701,61.68333333,1385,457,,247.3214286,81.60714286 +3702,61.7,1356,457,,242.1428571,81.60714286 +3703,61.71666667,1327,457,,236.9642857,81.60714286 +3704,61.73333333,1299,456,,231.9642857,81.42857143 +3705,61.75,1271,455,,226.9642857,81.25 +3706,61.76666667,1243,454,,221.9642857,81.07142857 +3707,61.78333333,1217,453,,217.3214286,80.89285714 +3708,61.8,1190,452,,212.5,80.71428571 +3709,61.81666667,1166,450,,208.2142857,80.35714286 +3710,61.83333333,1142,449,,203.9285714,80.17857143 +3711,61.85,1120,447,,200,79.82142857 +3712,61.86666667,1100,445,,196.4285714,79.46428571 +3713,61.88333333,1080,444,,192.8571429,79.28571429 +3714,61.9,1062,443,,189.6428571,79.10714286 +3715,61.91666667,1046,441,,186.7857143,78.75 +3716,61.93333333,1032,440,,184.2857143,78.57142857 +3717,61.95,1020,439,,182.1428571,78.39285714 +3718,61.96666667,1009,437,,180.1785714,78.03571429 +3719,61.98333333,1001,436,,178.75,77.85714286 +3720,62,994,436,,177.5,77.85714286 +3721,62.01666667,989,436,,176.6071429,77.85714286 +3722,62.03333333,987,436,,176.25,77.85714286 +3723,62.05,987,436,,176.25,77.85714286 +3724,62.06666667,987,436,,176.25,77.85714286 +3725,62.08333333,991,436,,176.9642857,77.85714286 +3726,62.1,996,437,,177.8571429,78.03571429 +3727,62.11666667,1003,438,,179.1071429,78.21428571 +3728,62.13333333,1013,439,,180.8928571,78.39285714 +3729,62.15,1024,440,,182.8571429,78.57142857 +3730,62.16666667,1037,442,,185.1785714,78.92857143 +3731,62.18333333,1052,443,,187.8571429,79.10714286 +3732,62.2,1069,445,,190.8928571,79.46428571 +3733,62.21666667,1087,447,,194.1071429,79.82142857 +3734,62.23333333,1107,448,,197.6785714,80 +3735,62.25,1129,450,,201.6071429,80.35714286 +3736,62.26666667,1151,452,,205.5357143,80.71428571 +3737,62.28333333,1175,454,,209.8214286,81.07142857 +3738,62.3,1199,455,,214.1071429,81.25 +3739,62.31666667,1226,456,,218.9285714,81.42857143 +3740,62.33333333,1253,457,,223.75,81.60714286 +3741,62.35,1280,459,,228.5714286,81.96428571 +3742,62.36666667,1308,460,,233.5714286,82.14285714 +3743,62.38333333,1337,460,,238.75,82.14285714 +3744,62.4,1366,460,,243.9285714,82.14285714 +3745,62.41666667,1395,460,,249.1071429,82.14285714 +3746,62.43333333,1424,459,,254.2857143,81.96428571 +3747,62.45,1453,459,,259.4642857,81.96428571 +3748,62.46666667,1482,457,,264.6428571,81.60714286 +3749,62.48333333,1511,456,,269.8214286,81.42857143 +3750,62.5,1538,455,,274.6428571,81.25 +3751,62.51666667,1566,454,,279.6428571,81.07142857 +3752,62.53333333,1593,452,,284.4642857,80.71428571 +3753,62.55,1618,450,,288.9285714,80.35714286 +3754,62.56666667,1643,448,,293.3928571,80 +3755,62.58333333,1666,446,,297.5,79.64285714 +3756,62.6,1688,443,,301.4285714,79.10714286 +3757,62.61666667,1709,441,,305.1785714,78.75 +3758,62.63333333,1728,439,,308.5714286,78.39285714 +3759,62.65,1746,437,,311.7857143,78.03571429 +3760,62.66666667,1762,435,,314.6428571,77.67857143 +3761,62.68333333,1776,434,,317.1428571,77.5 +3762,62.7,1788,432,,319.2857143,77.14285714 +3763,62.71666667,1799,430,,321.25,76.78571429 +3764,62.73333333,1807,429,,322.6785714,76.60714286 +3765,62.75,1814,428,,323.9285714,76.42857143 +3766,62.76666667,1818,428,,324.6428571,76.42857143 +3767,62.78333333,1819,428,,324.8214286,76.42857143 +3768,62.8,1819,428,,324.8214286,76.42857143 +3769,62.81666667,1819,428,,324.8214286,76.42857143 +3770,62.83333333,1815,428,,324.1071429,76.42857143 +3771,62.85,1810,429,,323.2142857,76.60714286 +3772,62.86666667,1802,430,,321.7857143,76.78571429 +3773,62.88333333,1792,431,,320,76.96428571 +3774,62.9,1780,432,,317.8571429,77.14285714 +3775,62.91666667,1766,434,,315.3571429,77.5 +3776,62.93333333,1751,436,,312.6785714,77.85714286 +3777,62.95,1733,438,,309.4642857,78.21428571 +3778,62.96666667,1715,440,,306.25,78.57142857 +3779,62.98333333,1694,442,,302.5,78.92857143 +3780,63,1673,444,,298.75,79.28571429 +3781,63.01666667,1650,446,,294.6428571,79.64285714 +3782,63.03333333,1625,448,,290.1785714,80 +3783,63.05,1600,450,,285.7142857,80.35714286 +3784,63.06666667,1573,452,,280.8928571,80.71428571 +3785,63.08333333,1546,453,,276.0714286,80.89285714 +3786,63.1,1518,455,,271.0714286,81.25 +3787,63.11666667,1490,456,,266.0714286,81.42857143 +3788,63.13333333,1461,457,,260.8928571,81.60714286 +3789,63.15,1431,457,,255.5357143,81.60714286 +3790,63.16666667,1402,458,,250.3571429,81.78571429 +3791,63.18333333,1373,458,,245.1785714,81.78571429 +3792,63.2,1344,458,,240,81.78571429 +3793,63.21666667,1316,458,,235,81.78571429 +3794,63.23333333,1287,458,,229.8214286,81.78571429 +3795,63.25,1259,456,,224.8214286,81.42857143 +3796,63.26666667,1232,455,,220,81.25 +3797,63.28333333,1206,454,,215.3571429,81.07142857 +3798,63.3,1181,453,,210.8928571,80.89285714 +3799,63.31666667,1157,451,,206.6071429,80.53571429 +3800,63.33333333,1134,450,,202.5,80.35714286 +3801,63.35,1113,448,,198.75,80 +3802,63.36666667,1093,447,,195.1785714,79.82142857 +3803,63.38333333,1074,445,,191.7857143,79.46428571 +3804,63.4,1057,444,,188.75,79.28571429 +3805,63.41666667,1042,442,,186.0714286,78.92857143 +3806,63.43333333,1028,441,,183.5714286,78.75 +3807,63.45,1017,440,,181.6071429,78.57142857 +3808,63.46666667,1007,438,,179.8214286,78.21428571 +3809,63.48333333,999,438,,178.3928571,78.21428571 +3810,63.5,993,437,,177.3214286,78.03571429 +3811,63.51666667,990,437,,176.7857143,78.03571429 +3812,63.53333333,990,437,,176.7857143,78.03571429 +3813,63.55,990,437,,176.7857143,78.03571429 +3814,63.56666667,991,437,,176.9642857,78.03571429 +3815,63.58333333,995,438,,177.6785714,78.21428571 +3816,63.6,1001,438,,178.75,78.21428571 +3817,63.61666667,1010,439,,180.3571429,78.39285714 +3818,63.63333333,1020,440,,182.1428571,78.57142857 +3819,63.65,1032,442,,184.2857143,78.92857143 +3820,63.66666667,1046,443,,186.7857143,79.10714286 +3821,63.68333333,1062,445,,189.6428571,79.46428571 +3822,63.7,1079,447,,192.6785714,79.82142857 +3823,63.71666667,1098,448,,196.0714286,80 +3824,63.73333333,1119,450,,199.8214286,80.35714286 +3825,63.75,1140,452,,203.5714286,80.71428571 +3826,63.76666667,1163,453,,207.6785714,80.89285714 +3827,63.78333333,1187,455,,211.9642857,81.25 +3828,63.8,1212,456,,216.4285714,81.42857143 +3829,63.81666667,1239,457,,221.25,81.60714286 +3830,63.83333333,1266,459,,226.0714286,81.96428571 +3831,63.85,1294,459,,231.0714286,81.96428571 +3832,63.86666667,1322,460,,236.0714286,82.14285714 +3833,63.88333333,1351,460,,241.25,82.14285714 +3834,63.9,1380,460,,246.4285714,82.14285714 +3835,63.91666667,1409,460,,251.6071429,82.14285714 +3836,63.93333333,1438,459,,256.7857143,81.96428571 +3837,63.95,1467,458,,261.9642857,81.78571429 +3838,63.96666667,1495,457,,266.9642857,81.60714286 +3839,63.98333333,1523,456,,271.9642857,81.42857143 +3840,64,1551,454,,276.9642857,81.07142857 +3841,64.01666667,1578,452,,281.7857143,80.71428571 +3842,64.03333333,1604,450,,286.4285714,80.35714286 +3843,64.05,1629,449,,290.8928571,80.17857143 +3844,64.06666667,1653,447,,295.1785714,79.82142857 +3845,64.08333333,1676,445,,299.2857143,79.46428571 +3846,64.1,1697,442,,303.0357143,78.92857143 +3847,64.11666667,1718,440,,306.7857143,78.57142857 +3848,64.13333333,1736,438,,310,78.21428571 +3849,64.15,1753,436,,313.0357143,77.85714286 +3850,64.16666667,1768,434,,315.7142857,77.5 +3851,64.18333333,1781,432,,318.0357143,77.14285714 +3852,64.2,1793,430,,320.1785714,76.78571429 +3853,64.21666667,1802,429,,321.7857143,76.60714286 +3854,64.23333333,1810,428,,323.2142857,76.42857143 +3855,64.25,1816,427,,324.2857143,76.25 +3856,64.26666667,1819,427,,324.8214286,76.25 +3857,64.28333333,1819,426,,324.8214286,76.07142857 +3858,64.3,1819,426,,324.8214286,76.07142857 +3859,64.31666667,1817,426,,324.4642857,76.07142857 +3860,64.33333333,1812,427,,323.5714286,76.25 +3861,64.35,1805,428,,322.3214286,76.42857143 +3862,64.36666667,1797,429,,320.8928571,76.60714286 +3863,64.38333333,1786,430,,318.9285714,76.78571429 +3864,64.4,1773,432,,316.6071429,77.14285714 +3865,64.41666667,1759,433,,314.1071429,77.32142857 +3866,64.43333333,1742,435,,311.0714286,77.67857143 +3867,64.45,1724,438,,307.8571429,78.21428571 +3868,64.46666667,1704,440,,304.2857143,78.57142857 +3869,64.48333333,1683,442,,300.5357143,78.92857143 +3870,64.5,1660,444,,296.4285714,79.28571429 +3871,64.51666667,1636,446,,292.1428571,79.64285714 +3872,64.53333333,1611,448,,287.6785714,80 +3873,64.55,1586,450,,283.2142857,80.35714286 +3874,64.56666667,1559,451,,278.3928571,80.53571429 +3875,64.58333333,1531,453,,273.3928571,80.89285714 +3876,64.6,1504,454,,268.5714286,81.07142857 +3877,64.61666667,1475,455,,263.3928571,81.25 +3878,64.63333333,1447,456,,258.3928571,81.42857143 +3879,64.65,1417,456,,253.0357143,81.42857143 +3880,64.66666667,1388,456,,247.8571429,81.42857143 +3881,64.68333333,1359,456,,242.6785714,81.42857143 +3882,64.7,1330,456,,237.5,81.42857143 +3883,64.71666667,1302,456,,232.5,81.42857143 +3884,64.73333333,1274,456,,227.5,81.42857143 +3885,64.75,1247,454,,222.6785714,81.07142857 +3886,64.76666667,1220,454,,217.8571429,81.07142857 +3887,64.78333333,1195,452,,213.3928571,80.71428571 +3888,64.8,1170,451,,208.9285714,80.53571429 +3889,64.81666667,1146,449,,204.6428571,80.17857143 +3890,64.83333333,1124,447,,200.7142857,79.82142857 +3891,64.85,1103,446,,196.9642857,79.64285714 +3892,64.86666667,1084,444,,193.5714286,79.28571429 +3893,64.88333333,1066,443,,190.3571429,79.10714286 +3894,64.9,1050,441,,187.5,78.75 +3895,64.91666667,1035,440,,184.8214286,78.57142857 +3896,64.93333333,1022,439,,182.5,78.39285714 +3897,64.95,1012,438,,180.7142857,78.21428571 +3898,64.96666667,1003,437,,179.1071429,78.03571429 +3899,64.98333333,996,436,,177.8571429,77.85714286 +3900,65,991,436,,176.9642857,77.85714286 +3901,65.01666667,990,436,,176.7857143,77.85714286 +3902,65.03333333,990,436,,176.7857143,77.85714286 +3903,65.05,990,436,,176.7857143,77.85714286 +3904,65.06666667,993,436,,177.3214286,77.85714286 +3905,65.08333333,998,437,,178.2142857,78.03571429 +3906,65.1,1006,438,,179.6428571,78.21428571 +3907,65.11666667,1015,439,,181.25,78.39285714 +3908,65.13333333,1027,440,,183.3928571,78.57142857 +3909,65.15,1039,441,,185.5357143,78.75 +3910,65.16666667,1054,443,,188.2142857,79.10714286 +3911,65.18333333,1070,445,,191.0714286,79.46428571 +3912,65.2,1088,446,,194.2857143,79.64285714 +3913,65.21666667,1108,448,,197.8571429,80 +3914,65.23333333,1128,450,,201.4285714,80.35714286 +3915,65.25,1151,452,,205.5357143,80.71428571 +3916,65.26666667,1174,453,,209.6428571,80.89285714 +3917,65.28333333,1199,455,,214.1071429,81.25 +3918,65.3,1225,456,,218.75,81.42857143 +3919,65.31666667,1251,457,,223.3928571,81.60714286 +3920,65.33333333,1279,458,,228.3928571,81.78571429 +3921,65.35,1307,459,,233.3928571,81.96428571 +3922,65.36666667,1336,459,,238.5714286,81.96428571 +3923,65.38333333,1364,459,,243.5714286,81.96428571 +3924,65.4,1393,459,,248.75,81.96428571 +3925,65.41666667,1422,459,,253.9285714,81.96428571 +3926,65.43333333,1451,458,,259.1071429,81.78571429 +3927,65.45,1480,457,,264.2857143,81.60714286 +3928,65.46666667,1508,456,,269.2857143,81.42857143 +3929,65.48333333,1536,455,,274.2857143,81.25 +3930,65.5,1563,453,,279.1071429,80.89285714 +3931,65.51666667,1590,452,,283.9285714,80.71428571 +3932,65.53333333,1615,450,,288.3928571,80.35714286 +3933,65.55,1640,447,,292.8571429,79.82142857 +3934,65.56666667,1663,446,,296.9642857,79.64285714 +3935,65.58333333,1685,443,,300.8928571,79.10714286 +3936,65.6,1706,441,,304.6428571,78.75 +3937,65.61666667,1725,439,,308.0357143,78.39285714 +3938,65.63333333,1743,437,,311.25,78.03571429 +3939,65.65,1759,435,,314.1071429,77.67857143 +3940,65.66666667,1773,433,,316.6071429,77.32142857 +3941,65.68333333,1786,431,,318.9285714,76.96428571 +3942,65.7,1796,430,,320.7142857,76.78571429 +3943,65.71666667,1805,429,,322.3214286,76.60714286 +3944,65.73333333,1811,428,,323.3928571,76.42857143 +3945,65.75,1816,427,,324.2857143,76.25 +3946,65.76666667,1817,426,,324.4642857,76.07142857 +3947,65.78333333,1817,426,,324.4642857,76.07142857 +3948,65.8,1817,426,,324.4642857,76.07142857 +3949,65.81666667,1814,427,,323.9285714,76.25 +3950,65.83333333,1808,428,,322.8571429,76.42857143 +3951,65.85,1800,429,,321.4285714,76.60714286 +3952,65.86666667,1790,430,,319.6428571,76.78571429 +3953,65.88333333,1779,431,,317.6785714,76.96428571 +3954,65.9,1766,433,,315.3571429,77.32142857 +3955,65.91666667,1750,434,,312.5,77.5 +3956,65.93333333,1733,436,,309.4642857,77.85714286 +3957,65.95,1715,438,,306.25,78.21428571 +3958,65.96666667,1694,441,,302.5,78.75 +3959,65.98333333,1673,443,,298.75,79.10714286 +3960,66,1650,445,,294.6428571,79.46428571 +3961,66.01666667,1626,447,,290.3571429,79.82142857 +3962,66.03333333,1601,449,,285.8928571,80.17857143 +3963,66.05,1575,450,,281.25,80.35714286 +3964,66.06666667,1548,452,,276.4285714,80.71428571 +3965,66.08333333,1520,453,,271.4285714,80.89285714 +3966,66.1,1492,454,,266.4285714,81.07142857 +3967,66.11666667,1463,455,,261.25,81.25 +3968,66.13333333,1434,456,,256.0714286,81.42857143 +3969,66.15,1405,457,,250.8928571,81.60714286 +3970,66.16666667,1376,457,,245.7142857,81.60714286 +3971,66.18333333,1346,457,,240.3571429,81.60714286 +3972,66.2,1318,457,,235.3571429,81.60714286 +3973,66.21666667,1290,457,,230.3571429,81.60714286 +3974,66.23333333,1262,456,,225.3571429,81.42857143 +3975,66.25,1235,455,,220.5357143,81.25 +3976,66.26666667,1209,454,,215.8928571,81.07142857 +3977,66.28333333,1184,452,,211.4285714,80.71428571 +3978,66.3,1159,451,,206.9642857,80.53571429 +3979,66.31666667,1137,449,,203.0357143,80.17857143 +3980,66.33333333,1115,448,,199.1071429,80 +3981,66.35,1095,446,,195.5357143,79.64285714 +3982,66.36666667,1077,445,,192.3214286,79.46428571 +3983,66.38333333,1060,444,,189.2857143,79.28571429 +3984,66.4,1044,442,,186.4285714,78.92857143 +3985,66.41666667,1031,441,,184.1071429,78.75 +3986,66.43333333,1019,440,,181.9642857,78.57142857 +3987,66.45,1009,439,,180.1785714,78.39285714 +3988,66.46666667,1001,438,,178.75,78.21428571 +3989,66.48333333,995,437,,177.6785714,78.03571429 +3990,66.5,992,437,,177.1428571,78.03571429 +3991,66.51666667,992,437,,177.1428571,78.03571429 +3992,66.53333333,992,437,,177.1428571,78.03571429 +3993,66.55,992,437,,177.1428571,78.03571429 +3994,66.56666667,997,438,,178.0357143,78.21428571 +3995,66.58333333,1003,439,,179.1071429,78.39285714 +3996,66.6,1011,440,,180.5357143,78.57142857 +3997,66.61666667,1021,441,,182.3214286,78.75 +3998,66.63333333,1033,442,,184.4642857,78.92857143 +3999,66.65,1047,444,,186.9642857,79.28571429 +4000,66.66666667,1062,445,,189.6428571,79.46428571 +4001,66.68333333,1079,447,,192.6785714,79.82142857 +4002,66.7,1098,448,,196.0714286,80 +4003,66.71666667,1118,450,,199.6428571,80.35714286 +4004,66.73333333,1139,452,,203.3928571,80.71428571 +4005,66.75,1162,454,,207.5,81.07142857 +4006,66.76666667,1186,455,,211.7857143,81.25 +4007,66.78333333,1211,456,,216.25,81.42857143 +4008,66.8,1237,458,,220.8928571,81.78571429 +4009,66.81666667,1264,460,,225.7142857,82.14285714 +4010,66.83333333,1292,461,,230.7142857,82.32142857 +4011,66.85,1320,461,,235.7142857,82.32142857 +4012,66.86666667,1348,461,,240.7142857,82.32142857 +4013,66.88333333,1377,461,,245.8928571,82.32142857 +4014,66.9,1406,460,,251.0714286,82.14285714 +4015,66.91666667,1434,460,,256.0714286,82.14285714 +4016,66.93333333,1464,459,,261.4285714,81.96428571 +4017,66.95,1492,458,,266.4285714,81.78571429 +4018,66.96666667,1520,457,,271.4285714,81.60714286 +4019,66.98333333,1548,456,,276.4285714,81.42857143 +4020,67,1574,454,,281.0714286,81.07142857 +4021,67.01666667,1601,452,,285.8928571,80.71428571 +4022,67.03333333,1626,450,,290.3571429,80.35714286 +4023,67.05,1650,448,,294.6428571,80 +4024,67.06666667,1672,446,,298.5714286,79.64285714 +4025,67.08333333,1694,443,,302.5,79.10714286 +4026,67.1,1714,441,,306.0714286,78.75 +4027,67.11666667,1732,439,,309.2857143,78.39285714 +4028,67.13333333,1749,437,,312.3214286,78.03571429 +4029,67.15,1765,435,,315.1785714,77.67857143 +4030,67.16666667,1778,433,,317.5,77.32142857 +4031,67.18333333,1790,432,,319.6428571,77.14285714 +4032,67.2,1800,430,,321.4285714,76.78571429 +4033,67.21666667,1807,429,,322.6785714,76.60714286 +4034,67.23333333,1813,428,,323.75,76.42857143 +4035,67.25,1817,428,,324.4642857,76.42857143 +4036,67.26666667,1817,428,,324.4642857,76.42857143 +4037,67.28333333,1817,428,,324.4642857,76.42857143 +4038,67.3,1815,428,,324.1071429,76.42857143 +4039,67.31666667,1811,428,,323.3928571,76.42857143 +4040,67.33333333,1805,429,,322.3214286,76.60714286 +4041,67.35,1796,430,,320.7142857,76.78571429 +4042,67.36666667,1786,431,,318.9285714,76.96428571 +4043,67.38333333,1773,433,,316.6071429,77.32142857 +4044,67.4,1759,434,,314.1071429,77.5 +4045,67.41666667,1743,436,,311.25,77.85714286 +4046,67.43333333,1725,438,,308.0357143,78.21428571 +4047,67.45,1706,440,,304.6428571,78.57142857 +4048,67.46666667,1686,442,,301.0714286,78.92857143 +4049,67.48333333,1663,444,,296.9642857,79.28571429 +4050,67.5,1640,446,,292.8571429,79.64285714 +4051,67.51666667,1615,448,,288.3928571,80 +4052,67.53333333,1590,450,,283.9285714,80.35714286 +4053,67.55,1564,452,,279.2857143,80.71428571 +4054,67.56666667,1536,453,,274.2857143,80.89285714 +4055,67.58333333,1508,454,,269.2857143,81.07142857 +4056,67.6,1479,455,,264.1071429,81.25 +4057,67.61666667,1450,456,,258.9285714,81.42857143 +4058,67.63333333,1421,457,,253.75,81.60714286 +4059,67.65,1392,457,,248.5714286,81.60714286 +4060,67.66666667,1363,457,,243.3928571,81.60714286 +4061,67.68333333,1334,457,,238.2142857,81.60714286 +4062,67.7,1306,457,,233.2142857,81.60714286 +4063,67.71666667,1278,456,,228.2142857,81.42857143 +4064,67.73333333,1251,456,,223.3928571,81.42857143 +4065,67.75,1224,454,,218.5714286,81.07142857 +4066,67.76666667,1198,453,,213.9285714,80.89285714 +4067,67.78333333,1174,452,,209.6428571,80.71428571 +4068,67.8,1150,450,,205.3571429,80.35714286 +4069,67.81666667,1128,449,,201.4285714,80.17857143 +4070,67.83333333,1107,447,,197.6785714,79.82142857 +4071,67.85,1088,446,,194.2857143,79.64285714 +4072,67.86666667,1070,444,,191.0714286,79.28571429 +4073,67.88333333,1054,443,,188.2142857,79.10714286 +4074,67.9,1040,441,,185.7142857,78.75 +4075,67.91666667,1027,440,,183.3928571,78.57142857 +4076,67.93333333,1016,439,,181.4285714,78.39285714 +4077,67.95,1008,438,,180,78.21428571 +4078,67.96666667,1000,438,,178.5714286,78.21428571 +4079,67.98333333,996,437,,177.8571429,78.03571429 +4080,68,993,437,,177.3214286,78.03571429 +4081,68.01666667,993,437,,177.3214286,78.03571429 +4082,68.03333333,993,437,,177.3214286,78.03571429 +4083,68.05,996,437,,177.8571429,78.03571429 +4084,68.06666667,1001,438,,178.75,78.21428571 +4085,68.08333333,1008,439,,180,78.39285714 +4086,68.1,1017,440,,181.6071429,78.57142857 +4087,68.11666667,1028,441,,183.5714286,78.75 +4088,68.13333333,1040,442,,185.7142857,78.92857143 +4089,68.15,1055,444,,188.3928571,79.28571429 +4090,68.16666667,1071,445,,191.25,79.46428571 +4091,68.18333333,1089,447,,194.4642857,79.82142857 +4092,68.2,1108,449,,197.8571429,80.17857143 +4093,68.21666667,1129,451,,201.6071429,80.53571429 +4094,68.23333333,1151,452,,205.5357143,80.71428571 +4095,68.25,1174,454,,209.6428571,81.07142857 +4096,68.26666667,1198,455,,213.9285714,81.25 +4097,68.28333333,1224,456,,218.5714286,81.42857143 +4098,68.3,1250,457,,223.2142857,81.60714286 +4099,68.31666667,1277,458,,228.0357143,81.78571429 +4100,68.33333333,1305,459,,233.0357143,81.96428571 +4101,68.35,1333,460,,238.0357143,82.14285714 +4102,68.36666667,1361,460,,243.0357143,82.14285714 +4103,68.38333333,1390,460,,248.2142857,82.14285714 +4104,68.4,1419,459,,253.3928571,81.96428571 +4105,68.41666667,1448,459,,258.5714286,81.96428571 +4106,68.43333333,1476,457,,263.5714286,81.60714286 +4107,68.45,1505,456,,268.75,81.42857143 +4108,68.46666667,1532,455,,273.5714286,81.25 +4109,68.48333333,1559,453,,278.3928571,80.89285714 +4110,68.5,1586,452,,283.2142857,80.71428571 +4111,68.51666667,1611,450,,287.6785714,80.35714286 +4112,68.53333333,1635,448,,291.9642857,80 +4113,68.55,1659,446,,296.25,79.64285714 +4114,68.56666667,1681,444,,300.1785714,79.28571429 +4115,68.58333333,1701,441,,303.75,78.75 +4116,68.6,1721,439,,307.3214286,78.39285714 +4117,68.61666667,1738,437,,310.3571429,78.03571429 +4118,68.63333333,1754,435,,313.2142857,77.67857143 +4119,68.65,1769,434,,315.8928571,77.5 +4120,68.66666667,1781,432,,318.0357143,77.14285714 +4121,68.68333333,1792,431,,320,76.96428571 +4122,68.7,1800,429,,321.4285714,76.60714286 +4123,68.71666667,1807,428,,322.6785714,76.42857143 +4124,68.73333333,1812,427,,323.5714286,76.25 +4125,68.75,1814,427,,323.9285714,76.25 +4126,68.76666667,1814,427,,323.9285714,76.25 +4127,68.78333333,1814,427,,323.9285714,76.25 +4128,68.8,1810,427,,323.2142857,76.25 +4129,68.81666667,1805,428,,322.3214286,76.42857143 +4130,68.83333333,1797,429,,320.8928571,76.60714286 +4131,68.85,1787,431,,319.1071429,76.96428571 +4132,68.86666667,1776,432,,317.1428571,77.14285714 +4133,68.88333333,1763,434,,314.8214286,77.5 +4134,68.9,1748,435,,312.1428571,77.67857143 +4135,68.91666667,1731,437,,309.1071429,78.03571429 +4136,68.93333333,1713,439,,305.8928571,78.39285714 +4137,68.95,1693,441,,302.3214286,78.75 +4138,68.96666667,1672,443,,298.5714286,79.10714286 +4139,68.98333333,1650,445,,294.6428571,79.46428571 +4140,69,1626,447,,290.3571429,79.82142857 +4141,69.01666667,1601,448,,285.8928571,80 +4142,69.03333333,1575,450,,281.25,80.35714286 +4143,69.05,1548,452,,276.4285714,80.71428571 +4144,69.06666667,1521,453,,271.6071429,80.89285714 +4145,69.08333333,1493,454,,266.6071429,81.07142857 +4146,69.1,1464,456,,261.4285714,81.42857143 +4147,69.11666667,1436,457,,256.4285714,81.60714286 +4148,69.13333333,1406,457,,251.0714286,81.60714286 +4149,69.15,1378,457,,246.0714286,81.60714286 +4150,69.16666667,1349,457,,240.8928571,81.60714286 +4151,69.18333333,1320,457,,235.7142857,81.60714286 +4152,69.2,1292,457,,230.7142857,81.60714286 +4153,69.21666667,1265,456,,225.8928571,81.42857143 +4154,69.23333333,1238,455,,221.0714286,81.25 +4155,69.25,1212,454,,216.4285714,81.07142857 +4156,69.26666667,1187,452,,211.9642857,80.71428571 +4157,69.28333333,1163,451,,207.6785714,80.53571429 +4158,69.3,1140,450,,203.5714286,80.35714286 +4159,69.31666667,1119,448,,199.8214286,80 +4160,69.33333333,1099,447,,196.25,79.82142857 +4161,69.35,1080,445,,192.8571429,79.46428571 +4162,69.36666667,1063,443,,189.8214286,79.10714286 +4163,69.38333333,1048,442,,187.1428571,78.92857143 +4164,69.4,1034,440,,184.6428571,78.57142857 +4165,69.41666667,1022,439,,182.5,78.39285714 +4166,69.43333333,1012,438,,180.7142857,78.21428571 +4167,69.45,1004,437,,179.2857143,78.03571429 +4168,69.46666667,998,437,,178.2142857,78.03571429 +4169,69.48333333,994,437,,177.5,78.03571429 +4170,69.5,994,437,,177.5,78.03571429 +4171,69.51666667,994,437,,177.5,78.03571429 +4172,69.53333333,994,437,,177.5,78.03571429 +4173,69.55,999,437,,178.3928571,78.03571429 +4174,69.56666667,1005,438,,179.4642857,78.21428571 +4175,69.58333333,1013,439,,180.8928571,78.39285714 +4176,69.6,1023,440,,182.6785714,78.57142857 +4177,69.61666667,1034,441,,184.6428571,78.75 +4178,69.63333333,1048,443,,187.1428571,79.10714286 +4179,69.65,1063,445,,189.8214286,79.46428571 +4180,69.66666667,1080,446,,192.8571429,79.64285714 +4181,69.68333333,1098,448,,196.0714286,80 +4182,69.7,1118,449,,199.6428571,80.17857143 +4183,69.71666667,1140,451,,203.5714286,80.53571429 +4184,69.73333333,1162,452,,207.5,80.71428571 +4185,69.75,1186,454,,211.7857143,81.07142857 +4186,69.76666667,1210,455,,216.0714286,81.25 +4187,69.78333333,1236,457,,220.7142857,81.60714286 +4188,69.8,1262,458,,225.3571429,81.78571429 +4189,69.81666667,1290,459,,230.3571429,81.96428571 +4190,69.83333333,1318,459,,235.3571429,81.96428571 +4191,69.85,1346,460,,240.3571429,82.14285714 +4192,69.86666667,1375,460,,245.5357143,82.14285714 +4193,69.88333333,1403,460,,250.5357143,82.14285714 +4194,69.9,1432,459,,255.7142857,81.96428571 +4195,69.91666667,1461,458,,260.8928571,81.78571429 +4196,69.93333333,1489,457,,265.8928571,81.60714286 +4197,69.95,1517,456,,270.8928571,81.42857143 +4198,69.96666667,1544,454,,275.7142857,81.07142857 +4199,69.98333333,1571,453,,280.5357143,80.89285714 +4200,70,1597,451,,285.1785714,80.53571429 +4201,70.01666667,1622,449,,289.6428571,80.17857143 +4202,70.03333333,1646,447,,293.9285714,79.82142857 +4203,70.05,1669,444,,298.0357143,79.28571429 +4204,70.06666667,1690,442,,301.7857143,78.92857143 +4205,70.08333333,1710,440,,305.3571429,78.57142857 +4206,70.1,1729,438,,308.75,78.21428571 +4207,70.11666667,1745,436,,311.6071429,77.85714286 +4208,70.13333333,1761,434,,314.4642857,77.5 +4209,70.15,1774,433,,316.7857143,77.32142857 +4210,70.16666667,1786,431,,318.9285714,76.96428571 +4211,70.18333333,1796,430,,320.7142857,76.78571429 +4212,70.2,1804,428,,322.1428571,76.42857143 +4213,70.21666667,1809,428,,323.0357143,76.42857143 +4214,70.23333333,1813,427,,323.75,76.25 +4215,70.25,1813,427,,323.75,76.25 +4216,70.26666667,1813,427,,323.75,76.25 +4217,70.28333333,1813,427,,323.75,76.25 +4218,70.3,1809,427,,323.0357143,76.25 +4219,70.31666667,1802,428,,321.7857143,76.42857143 +4220,70.33333333,1794,429,,320.3571429,76.60714286 +4221,70.35,1783,430,,318.3928571,76.78571429 +4222,70.36666667,1771,432,,316.25,77.14285714 +4223,70.38333333,1758,433,,313.9285714,77.32142857 +4224,70.4,1742,435,,311.0714286,77.67857143 +4225,70.41666667,1725,437,,308.0357143,78.03571429 +4226,70.43333333,1706,439,,304.6428571,78.39285714 +4227,70.45,1685,441,,300.8928571,78.75 +4228,70.46666667,1664,443,,297.1428571,79.10714286 +4229,70.48333333,1641,445,,293.0357143,79.46428571 +4230,70.5,1616,447,,288.5714286,79.82142857 +4231,70.51666667,1590,449,,283.9285714,80.17857143 +4232,70.53333333,1564,451,,279.2857143,80.53571429 +4233,70.55,1537,452,,274.4642857,80.71428571 +4234,70.56666667,1509,453,,269.4642857,80.89285714 +4235,70.58333333,1481,455,,264.4642857,81.25 +4236,70.6,1452,455,,259.2857143,81.25 +4237,70.61666667,1423,456,,254.1071429,81.42857143 +4238,70.63333333,1394,457,,248.9285714,81.60714286 +4239,70.65,1365,457,,243.75,81.60714286 +4240,70.66666667,1337,457,,238.75,81.60714286 +4241,70.68333333,1309,457,,233.75,81.60714286 +4242,70.7,1280,456,,228.5714286,81.42857143 +4243,70.71666667,1254,455,,223.9285714,81.25 +4244,70.73333333,1227,454,,219.1071429,81.07142857 +4245,70.75,1201,453,,214.4642857,80.89285714 +4246,70.76666667,1177,452,,210.1785714,80.71428571 +4247,70.78333333,1154,450,,206.0714286,80.35714286 +4248,70.8,1131,449,,201.9642857,80.17857143 +4249,70.81666667,1111,448,,198.3928571,80 +4250,70.83333333,1091,446,,194.8214286,79.64285714 +4251,70.85,1074,445,,191.7857143,79.46428571 +4252,70.86666667,1057,443,,188.75,79.10714286 +4253,70.88333333,1043,442,,186.25,78.92857143 +4254,70.9,1030,441,,183.9285714,78.75 +4255,70.91666667,1020,439,,182.1428571,78.39285714 +4256,70.93333333,1011,438,,180.5357143,78.21428571 +4257,70.95,1004,438,,179.2857143,78.21428571 +4258,70.96666667,999,437,,178.3928571,78.03571429 +4259,70.98333333,996,437,,177.8571429,78.03571429 +4260,71,996,437,,177.8571429,78.03571429 +4261,71.01666667,996,437,,177.8571429,78.03571429 +4262,71.03333333,998,437,,178.2142857,78.03571429 +4263,71.05,1003,438,,179.1071429,78.21428571 +4264,71.06666667,1010,439,,180.3571429,78.39285714 +4265,71.08333333,1019,440,,181.9642857,78.57142857 +4266,71.1,1029,441,,183.75,78.75 +4267,71.11666667,1042,443,,186.0714286,79.10714286 +4268,71.13333333,1056,444,,188.5714286,79.28571429 +4269,71.15,1072,446,,191.4285714,79.64285714 +4270,71.16666667,1089,447,,194.4642857,79.82142857 +4271,71.18333333,1108,449,,197.8571429,80.17857143 +4272,71.2,1128,451,,201.4285714,80.53571429 +4273,71.21666667,1150,452,,205.3571429,80.71428571 +4274,71.23333333,1173,454,,209.4642857,81.07142857 +4275,71.25,1197,455,,213.75,81.25 +4276,71.26666667,1222,456,,218.2142857,81.42857143 +4277,71.28333333,1248,457,,222.8571429,81.60714286 +4278,71.3,1275,459,,227.6785714,81.96428571 +4279,71.31666667,1303,460,,232.6785714,82.14285714 +4280,71.33333333,1331,460,,237.6785714,82.14285714 +4281,71.35,1359,460,,242.6785714,82.14285714 +4282,71.36666667,1387,460,,247.6785714,82.14285714 +4283,71.38333333,1416,459,,252.8571429,81.96428571 +4284,71.4,1445,458,,258.0357143,81.78571429 +4285,71.41666667,1473,458,,263.0357143,81.78571429 +4286,71.43333333,1501,457,,268.0357143,81.60714286 +4287,71.45,1529,455,,273.0357143,81.25 +4288,71.46666667,1556,454,,277.8571429,81.07142857 +4289,71.48333333,1582,452,,282.5,80.71428571 +4290,71.5,1608,450,,287.1428571,80.35714286 +4291,71.51666667,1632,448,,291.4285714,80 +4292,71.53333333,1655,446,,295.5357143,79.64285714 +4293,71.55,1677,444,,299.4642857,79.28571429 +4294,71.56666667,1698,442,,303.2142857,78.92857143 +4295,71.58333333,1717,440,,306.6071429,78.57142857 +4296,71.6,1735,438,,309.8214286,78.21428571 +4297,71.61666667,1751,436,,312.6785714,77.85714286 +4298,71.63333333,1765,434,,315.1785714,77.5 +4299,71.65,1778,433,,317.5,77.32142857 +4300,71.66666667,1789,431,,319.4642857,76.96428571 +4301,71.68333333,1798,430,,321.0714286,76.78571429 +4302,71.7,1805,429,,322.3214286,76.60714286 +4303,71.71666667,1809,428,,323.0357143,76.42857143 +4304,71.73333333,1812,428,,323.5714286,76.42857143 +4305,71.75,1812,428,,323.5714286,76.42857143 +4306,71.76666667,1812,428,,323.5714286,76.42857143 +4307,71.78333333,1809,428,,323.0357143,76.42857143 +4308,71.8,1804,428,,322.1428571,76.42857143 +4309,71.81666667,1796,429,,320.7142857,76.60714286 +4310,71.83333333,1787,430,,319.1071429,76.78571429 +4311,71.85,1776,432,,317.1428571,77.14285714 +4312,71.86666667,1763,433,,314.8214286,77.32142857 +4313,71.88333333,1748,435,,312.1428571,77.67857143 +4314,71.9,1732,437,,309.2857143,78.03571429 +4315,71.91666667,1713,439,,305.8928571,78.39285714 +4316,71.93333333,1694,441,,302.5,78.75 +4317,71.95,1673,443,,298.75,79.10714286 +4318,71.96666667,1650,445,,294.6428571,79.46428571 +4319,71.98333333,1627,447,,290.5357143,79.82142857 +4320,72,1602,449,,286.0714286,80.17857143 +4321,72.01666667,1576,451,,281.4285714,80.53571429 +4322,72.03333333,1550,452,,276.7857143,80.71428571 +4323,72.05,1522,454,,271.7857143,81.07142857 +4324,72.06666667,1494,455,,266.7857143,81.25 +4325,72.08333333,1466,456,,261.7857143,81.42857143 +4326,72.1,1438,457,,256.7857143,81.60714286 +4327,72.11666667,1409,457,,251.6071429,81.60714286 +4328,72.13333333,1380,458,,246.4285714,81.78571429 +4329,72.15,1351,458,,241.25,81.78571429 +4330,72.16666667,1323,458,,236.25,81.78571429 +4331,72.18333333,1295,458,,231.25,81.78571429 +4332,72.2,1268,457,,226.4285714,81.60714286 +4333,72.21666667,1241,456,,221.6071429,81.42857143 +4334,72.23333333,1215,455,,216.9642857,81.25 +4335,72.25,1190,453,,212.5,80.89285714 +4336,72.26666667,1166,452,,208.2142857,80.71428571 +4337,72.28333333,1144,450,,204.2857143,80.35714286 +4338,72.3,1122,449,,200.3571429,80.17857143 +4339,72.31666667,1102,448,,196.7857143,80 +4340,72.33333333,1084,447,,193.5714286,79.82142857 +4341,72.35,1067,445,,190.5357143,79.46428571 +4342,72.36666667,1052,443,,187.8571429,79.10714286 +4343,72.38333333,1038,442,,185.3571429,78.92857143 +4344,72.4,1026,441,,183.2142857,78.75 +4345,72.41666667,1016,440,,181.4285714,78.57142857 +4346,72.43333333,1008,439,,180,78.39285714 +4347,72.45,1002,439,,178.9285714,78.39285714 +4348,72.46666667,998,438,,178.2142857,78.21428571 +4349,72.48333333,998,438,,178.2142857,78.21428571 +4350,72.5,998,438,,178.2142857,78.21428571 +4351,72.51666667,998,439,,178.2142857,78.39285714 +4352,72.53333333,1001,439,,178.75,78.39285714 +4353,72.55,1007,440,,179.8214286,78.57142857 +4354,72.56666667,1015,441,,181.25,78.75 +4355,72.58333333,1024,442,,182.8571429,78.92857143 +4356,72.6,1035,443,,184.8214286,79.10714286 +4357,72.61666667,1049,444,,187.3214286,79.28571429 +4358,72.63333333,1064,445,,190,79.46428571 +4359,72.65,1081,447,,193.0357143,79.82142857 +4360,72.66666667,1099,449,,196.25,80.17857143 +4361,72.68333333,1118,451,,199.6428571,80.53571429 +4362,72.7,1139,452,,203.3928571,80.71428571 +4363,72.71666667,1162,454,,207.5,81.07142857 +4364,72.73333333,1185,455,,211.6071429,81.25 +4365,72.75,1209,456,,215.8928571,81.42857143 +4366,72.76666667,1235,457,,220.5357143,81.60714286 +4367,72.78333333,1262,459,,225.3571429,81.96428571 +4368,72.8,1288,460,,230,82.14285714 +4369,72.81666667,1316,461,,235,82.32142857 +4370,72.83333333,1344,461,,240,82.32142857 +4371,72.85,1372,461,,245,82.32142857 +4372,72.86666667,1401,460,,250.1785714,82.14285714 +4373,72.88333333,1430,460,,255.3571429,82.14285714 +4374,72.9,1458,459,,260.3571429,81.96428571 +4375,72.91666667,1486,458,,265.3571429,81.78571429 +4376,72.93333333,1514,457,,270.3571429,81.60714286 +4377,72.95,1541,456,,275.1785714,81.42857143 +4378,72.96666667,1568,454,,280,81.07142857 +4379,72.98333333,1594,452,,284.6428571,80.71428571 +4380,73,1619,450,,289.1071429,80.35714286 +4381,73.01666667,1642,448,,293.2142857,80 +4382,73.03333333,1665,446,,297.3214286,79.64285714 +4383,73.05,1686,444,,301.0714286,79.28571429 +4384,73.06666667,1706,442,,304.6428571,78.92857143 +4385,73.08333333,1725,440,,308.0357143,78.57142857 +4386,73.1,1742,438,,311.0714286,78.21428571 +4387,73.11666667,1757,436,,313.75,77.85714286 +4388,73.13333333,1771,434,,316.25,77.5 +4389,73.15,1783,433,,318.3928571,77.32142857 +4390,73.16666667,1793,432,,320.1785714,77.14285714 +4391,73.18333333,1801,430,,321.6071429,76.78571429 +4392,73.2,1807,429,,322.6785714,76.60714286 +4393,73.21666667,1811,428,,323.3928571,76.42857143 +4394,73.23333333,1811,428,,323.3928571,76.42857143 +4395,73.25,1811,428,,323.3928571,76.42857143 +4396,73.26666667,1810,428,,323.2142857,76.42857143 +4397,73.28333333,1806,429,,322.5,76.60714286 +4398,73.3,1800,429,,321.4285714,76.60714286 +4399,73.31666667,1792,431,,320,76.96428571 +4400,73.33333333,1782,432,,318.2142857,77.14285714 +4401,73.35,1770,433,,316.0714286,77.32142857 +4402,73.36666667,1756,435,,313.5714286,77.67857143 +4403,73.38333333,1741,437,,310.8928571,78.03571429 +4404,73.4,1724,438,,307.8571429,78.21428571 +4405,73.41666667,1705,440,,304.4642857,78.57142857 +4406,73.43333333,1685,442,,300.8928571,78.92857143 +4407,73.45,1663,445,,296.9642857,79.46428571 +4408,73.46666667,1640,447,,292.8571429,79.82142857 +4409,73.48333333,1616,449,,288.5714286,80.17857143 +4410,73.5,1591,450,,284.1071429,80.35714286 +4411,73.51666667,1565,452,,279.4642857,80.71428571 +4412,73.53333333,1538,454,,274.6428571,81.07142857 +4413,73.55,1511,455,,269.8214286,81.25 +4414,73.56666667,1483,456,,264.8214286,81.42857143 +4415,73.58333333,1454,457,,259.6428571,81.60714286 +4416,73.6,1426,458,,254.6428571,81.78571429 +4417,73.61666667,1397,458,,249.4642857,81.78571429 +4418,73.63333333,1369,459,,244.4642857,81.96428571 +4419,73.65,1340,459,,239.2857143,81.96428571 +4420,73.66666667,1313,459,,234.4642857,81.96428571 +4421,73.68333333,1284,458,,229.2857143,81.78571429 +4422,73.7,1257,457,,224.4642857,81.60714286 +4423,73.71666667,1231,455,,219.8214286,81.25 +4424,73.73333333,1206,454,,215.3571429,81.07142857 +4425,73.75,1181,453,,210.8928571,80.89285714 +4426,73.76666667,1158,452,,206.7857143,80.71428571 +4427,73.78333333,1136,450,,202.8571429,80.35714286 +4428,73.8,1115,449,,199.1071429,80.17857143 +4429,73.81666667,1096,447,,195.7142857,79.82142857 +4430,73.83333333,1078,446,,192.5,79.64285714 +4431,73.85,1062,444,,189.6428571,79.28571429 +4432,73.86666667,1048,443,,187.1428571,79.10714286 +4433,73.88333333,1035,442,,184.8214286,78.92857143 +4434,73.9,1024,441,,182.8571429,78.75 +4435,73.91666667,1015,440,,181.25,78.57142857 +4436,73.93333333,1008,439,,180,78.39285714 +4437,73.95,1003,439,,179.1071429,78.39285714 +4438,73.96666667,1000,439,,178.5714286,78.39285714 +4439,73.98333333,1000,439,,178.5714286,78.39285714 +4440,74,1000,439,,178.5714286,78.39285714 +4441,74.01666667,1002,439,,178.9285714,78.39285714 +4442,74.03333333,1006,440,,179.6428571,78.57142857 +4443,74.05,1013,440,,180.8928571,78.57142857 +4444,74.06666667,1021,441,,182.3214286,78.75 +4445,74.1,1032,442,,184.2857143,78.92857143 +4446,74.11666667,1044,444,,186.4285714,79.28571429 +4447,74.13333333,1058,445,,188.9285714,79.46428571 +4448,74.15,1074,446,,191.7857143,79.64285714 +4449,74.16666667,1091,448,,194.8214286,80 +4450,74.18333333,1110,450,,198.2142857,80.35714286 +4451,74.2,1130,451,,201.7857143,80.53571429 +4452,74.21666667,1151,453,,205.5357143,80.89285714 +4453,74.23333333,1174,454,,209.6428571,81.07142857 +4454,74.25,1198,456,,213.9285714,81.42857143 +4455,74.26666667,1223,457,,218.3928571,81.60714286 +4456,74.28333333,1249,458,,223.0357143,81.78571429 +4457,74.3,1275,459,,227.6785714,81.96428571 +4458,74.31666667,1303,460,,232.6785714,82.14285714 +4459,74.33333333,1330,460,,237.5,82.14285714 +4460,74.35,1358,460,,242.5,82.14285714 +4461,74.36666667,1386,460,,247.5,82.14285714 +4462,74.38333333,1415,460,,252.6785714,82.14285714 +4463,74.4,1443,459,,257.6785714,81.96428571 +4464,74.41666667,1472,458,,262.8571429,81.78571429 +4465,74.43333333,1500,457,,267.8571429,81.60714286 +4466,74.45,1527,456,,272.6785714,81.42857143 +4467,74.46666667,1554,455,,277.5,81.25 +4468,74.48333333,1580,453,,282.1428571,80.89285714 +4469,74.5,1605,451,,286.6071429,80.53571429 +4470,74.51666667,1630,449,,291.0714286,80.17857143 +4471,74.53333333,1653,447,,295.1785714,79.82142857 +4472,74.55,1675,445,,299.1071429,79.46428571 +4473,74.56666667,1696,443,,302.8571429,79.10714286 +4474,74.58333333,1715,441,,306.25,78.75 +4475,74.6,1733,439,,309.4642857,78.39285714 +4476,74.61666667,1749,437,,312.3214286,78.03571429 +4477,74.63333333,1764,435,,315,77.67857143 +4478,74.65,1776,433,,317.1428571,77.32142857 +4479,74.66666667,1787,432,,319.1071429,77.14285714 +4480,74.68333333,1796,430,,320.7142857,76.78571429 +4481,74.7,1803,429,,321.9642857,76.60714286 +4482,74.71666667,1808,429,,322.8571429,76.60714286 +4483,74.73333333,1811,428,,323.3928571,76.42857143 +4484,74.75,1811,428,,323.3928571,76.42857143 +4485,74.76666667,1811,428,,323.3928571,76.42857143 +4486,74.78333333,1808,428,,322.8571429,76.42857143 +4487,74.8,1803,429,,321.9642857,76.60714286 +4488,74.81666667,1796,430,,320.7142857,76.78571429 +4489,74.83333333,1787,431,,319.1071429,76.96428571 +4490,74.85,1776,432,,317.1428571,77.14285714 +4491,74.86666667,1763,433,,314.8214286,77.32142857 +4492,74.88333333,1749,435,,312.3214286,77.67857143 +4493,74.9,1733,437,,309.4642857,78.03571429 +4494,74.91666667,1715,439,,306.25,78.39285714 +4495,74.93333333,1696,441,,302.8571429,78.75 +4496,74.95,1675,443,,299.1071429,79.10714286 +4497,74.96666667,1653,445,,295.1785714,79.46428571 +4498,74.98333333,1629,447,,290.8928571,79.82142857 +4499,75,1605,449,,286.6071429,80.17857143 +4500,75.01666667,1579,451,,281.9642857,80.53571429 +4501,75.03333333,1553,452,,277.3214286,80.71428571 +4502,75.05,1526,454,,272.5,81.07142857 +4503,75.06666667,1498,455,,267.5,81.25 +4504,75.08333333,1470,456,,262.5,81.42857143 +4505,75.1,1442,457,,257.5,81.60714286 +4506,75.11666667,1413,457,,252.3214286,81.60714286 +4507,75.13333333,1384,458,,247.1428571,81.78571429 +4508,75.15,1356,458,,242.1428571,81.78571429 +4509,75.16666667,1328,458,,237.1428571,81.78571429 +4510,75.18333333,1300,458,,232.1428571,81.78571429 +4511,75.2,1273,457,,227.3214286,81.60714286 +4512,75.21666667,1246,456,,222.5,81.42857143 +4513,75.23333333,1220,454,,217.8571429,81.07142857 +4514,75.25,1195,454,,213.3928571,81.07142857 +4515,75.26666667,1171,452,,209.1071429,80.71428571 +4516,75.28333333,1149,451,,205.1785714,80.53571429 +4517,75.3,1127,449,,201.25,80.17857143 +4518,75.31666667,1107,448,,197.6785714,80 +4519,75.33333333,1089,446,,194.4642857,79.64285714 +4520,75.35,1072,445,,191.4285714,79.46428571 +4521,75.36666667,1056,444,,188.5714286,79.28571429 +4522,75.38333333,1043,442,,186.25,78.92857143 +4523,75.4,1031,441,,184.1071429,78.75 +4524,75.41666667,1021,440,,182.3214286,78.57142857 +4525,75.43333333,1013,439,,180.8928571,78.39285714 +4526,75.45,1006,439,,179.6428571,78.39285714 +4527,75.46666667,1002,438,,178.9285714,78.21428571 +4528,75.48333333,1001,438,,178.75,78.21428571 +4529,75.5,1001,438,,178.75,78.21428571 +4530,75.51666667,1001,438,,178.75,78.21428571 +4531,75.53333333,1004,439,,179.2857143,78.39285714 +4532,75.55,1010,439,,180.3571429,78.39285714 +4533,75.56666667,1017,440,,181.6071429,78.57142857 +4534,75.58333333,1027,441,,183.3928571,78.75 +4535,75.6,1038,442,,185.3571429,78.92857143 +4536,75.61666667,1051,444,,187.6785714,79.28571429 +4537,75.63333333,1065,445,,190.1785714,79.46428571 +4538,75.65,1082,447,,193.2142857,79.82142857 +4539,75.66666667,1100,448,,196.4285714,80 +4540,75.68333333,1119,450,,199.8214286,80.35714286 +4541,75.7,1140,451,,203.5714286,80.53571429 +4542,75.71666667,1162,453,,207.5,80.89285714 +4543,75.73333333,1185,454,,211.6071429,81.07142857 +4544,75.75,1210,455,,216.0714286,81.25 +4545,75.76666667,1235,457,,220.5357143,81.60714286 +4546,75.78333333,1261,458,,225.1785714,81.78571429 +4547,75.8,1288,459,,230,81.96428571 +4548,75.81666667,1316,459,,235,81.96428571 +4549,75.83333333,1343,459,,239.8214286,81.96428571 +4550,75.85,1371,459,,244.8214286,81.96428571 +4551,75.86666667,1400,459,,250,81.96428571 +4552,75.88333333,1428,458,,255,81.78571429 +4553,75.9,1456,458,,260,81.78571429 +4554,75.91666667,1484,457,,265,81.60714286 +4555,75.93333333,1512,456,,270,81.42857143 +4556,75.95,1539,455,,274.8214286,81.25 +4557,75.96666667,1566,453,,279.6428571,80.89285714 +4558,75.98333333,1592,451,,284.2857143,80.53571429 +4559,76,1616,449,,288.5714286,80.17857143 +4560,76.01666667,1640,447,,292.8571429,79.82142857 +4561,76.03333333,1663,445,,296.9642857,79.46428571 +4562,76.05,1684,444,,300.7142857,79.28571429 +4563,76.06666667,1704,441,,304.2857143,78.75 +4564,76.08333333,1722,439,,307.5,78.39285714 +4565,76.1,1740,437,,310.7142857,78.03571429 +4566,76.11666667,1755,435,,313.3928571,77.67857143 +4567,76.13333333,1769,433,,315.8928571,77.32142857 +4568,76.15,1781,432,,318.0357143,77.14285714 +4569,76.16666667,1790,431,,319.6428571,76.96428571 +4570,76.18333333,1799,429,,321.25,76.60714286 +4571,76.2,1805,428,,322.3214286,76.42857143 +4572,76.21666667,1809,428,,323.0357143,76.42857143 +4573,76.23333333,1809,427,,323.0357143,76.25 +4574,76.25,1809,427,,323.0357143,76.25 +4575,76.26666667,1809,427,,323.0357143,76.25 +4576,76.28333333,1805,428,,322.3214286,76.42857143 +4577,76.3,1799,429,,321.25,76.60714286 +4578,76.31666667,1791,430,,319.8214286,76.78571429 +4579,76.33333333,1781,431,,318.0357143,76.96428571 +4580,76.35,1769,432,,315.8928571,77.14285714 +4581,76.36666667,1756,434,,313.5714286,77.5 +4582,76.38333333,1740,436,,310.7142857,77.85714286 +4583,76.4,1724,437,,307.8571429,78.03571429 +4584,76.41666667,1705,440,,304.4642857,78.57142857 +4585,76.43333333,1685,442,,300.8928571,78.92857143 +4586,76.45,1664,444,,297.1428571,79.28571429 +4587,76.46666667,1641,446,,293.0357143,79.64285714 +4588,76.48333333,1617,447,,288.75,79.82142857 +4589,76.5,1592,449,,284.2857143,80.17857143 +4590,76.51666667,1566,451,,279.6428571,80.53571429 +4591,76.53333333,1540,453,,275,80.89285714 +4592,76.55,1512,454,,270,81.07142857 +4593,76.56666667,1485,455,,265.1785714,81.25 +4594,76.58333333,1457,456,,260.1785714,81.42857143 +4595,76.6,1428,457,,255,81.60714286 +4596,76.61666667,1399,458,,249.8214286,81.78571429 +4597,76.63333333,1371,458,,244.8214286,81.78571429 +4598,76.65,1343,458,,239.8214286,81.78571429 +4599,76.66666667,1315,457,,234.8214286,81.60714286 +4600,76.68333333,1287,457,,229.8214286,81.60714286 +4601,76.7,1260,456,,225,81.42857143 +4602,76.71666667,1234,455,,220.3571429,81.25 +4603,76.73333333,1209,454,,215.8928571,81.07142857 +4604,76.75,1184,453,,211.4285714,80.89285714 +4605,76.76666667,1161,451,,207.3214286,80.53571429 +4606,76.78333333,1139,450,,203.3928571,80.35714286 +4607,76.8,1118,449,,199.6428571,80.17857143 +4608,76.81666667,1099,447,,196.25,79.82142857 +4609,76.83333333,1081,446,,193.0357143,79.64285714 +4610,76.85,1065,444,,190.1785714,79.28571429 +4611,76.86666667,1051,443,,187.6785714,79.10714286 +4612,76.88333333,1038,442,,185.3571429,78.92857143 +4613,76.9,1027,441,,183.3928571,78.75 +4614,76.91666667,1017,440,,181.6071429,78.57142857 +4615,76.93333333,1010,439,,180.3571429,78.39285714 +4616,76.95,1005,439,,179.4642857,78.39285714 +4617,76.96666667,1002,438,,178.9285714,78.21428571 +4618,76.98333333,1002,438,,178.9285714,78.21428571 +4619,77,1002,438,,178.9285714,78.21428571 +4620,77.01666667,1003,439,,179.1071429,78.39285714 +4621,77.03333333,1008,439,,180,78.39285714 +4622,77.05,1014,440,,181.0714286,78.57142857 +4623,77.06666667,1023,441,,182.6785714,78.75 +4624,77.08333333,1033,442,,184.4642857,78.92857143 +4625,77.1,1045,443,,186.6071429,79.10714286 +4626,77.11666667,1059,445,,189.1071429,79.46428571 +4627,77.13333333,1074,446,,191.7857143,79.64285714 +4628,77.15,1091,448,,194.8214286,80 +4629,77.16666667,1110,449,,198.2142857,80.17857143 +4630,77.18333333,1129,451,,201.6071429,80.53571429 +4631,77.2,1151,452,,205.5357143,80.71428571 +4632,77.21666667,1173,454,,209.4642857,81.07142857 +4633,77.23333333,1197,455,,213.75,81.25 +4634,77.25,1222,457,,218.2142857,81.60714286 +4635,77.26666667,1247,457,,222.6785714,81.60714286 +4636,77.28333333,1274,458,,227.5,81.78571429 +4637,77.3,1301,460,,232.3214286,82.14285714 +4638,77.31666667,1328,460,,237.1428571,82.14285714 +4639,77.33333333,1356,460,,242.1428571,82.14285714 +4640,77.35,1384,460,,247.1428571,82.14285714 +4641,77.36666667,1412,459,,252.1428571,81.96428571 +4642,77.38333333,1441,459,,257.3214286,81.96428571 +4643,77.4,1469,458,,262.3214286,81.78571429 +4644,77.41666667,1497,457,,267.3214286,81.60714286 +4645,77.43333333,1524,455,,272.1428571,81.25 +4646,77.45,1551,454,,276.9642857,81.07142857 +4647,77.46666667,1577,453,,281.6071429,80.89285714 +4648,77.48333333,1602,451,,286.0714286,80.53571429 +4649,77.5,1626,449,,290.3571429,80.17857143 +4650,77.51666667,1650,447,,294.6428571,79.82142857 +4651,77.53333333,1672,445,,298.5714286,79.46428571 +4652,77.55,1692,443,,302.1428571,79.10714286 +4653,77.56666667,1712,441,,305.7142857,78.75 +4654,77.58333333,1730,439,,308.9285714,78.39285714 +4655,77.6,1746,437,,311.7857143,78.03571429 +4656,77.61666667,1760,435,,314.2857143,77.67857143 +4657,77.63333333,1773,433,,316.6071429,77.32142857 +4658,77.65,1784,432,,318.5714286,77.14285714 +4659,77.66666667,1793,431,,320.1785714,76.96428571 +4660,77.68333333,1800,429,,321.4285714,76.60714286 +4661,77.7,1805,429,,322.3214286,76.60714286 +4662,77.71666667,1808,428,,322.8571429,76.42857143 +4663,77.73333333,1808,428,,322.8571429,76.42857143 +4664,77.75,1808,428,,322.8571429,76.42857143 +4665,77.76666667,1806,428,,322.5,76.42857143 +4666,77.78333333,1801,429,,321.6071429,76.60714286 +4667,77.8,1794,430,,320.3571429,76.78571429 +4668,77.81666667,1785,431,,318.75,76.96428571 +4669,77.83333333,1775,432,,316.9642857,77.14285714 +4670,77.85,1762,434,,314.6428571,77.5 +4671,77.86666667,1748,435,,312.1428571,77.67857143 +4672,77.88333333,1732,437,,309.2857143,78.03571429 +4673,77.9,1714,439,,306.0714286,78.39285714 +4674,77.91666667,1695,441,,302.6785714,78.75 +4675,77.93333333,1675,443,,299.1071429,79.10714286 +4676,77.95,1653,445,,295.1785714,79.46428571 +4677,77.96666667,1629,447,,290.8928571,79.82142857 +4678,77.98333333,1605,449,,286.6071429,80.17857143 +4679,78,1580,450,,282.1428571,80.35714286 +4680,78.01666667,1554,452,,277.5,80.71428571 +4681,78.03333333,1527,454,,272.6785714,81.07142857 +4682,78.05,1500,455,,267.8571429,81.25 +4683,78.06666667,1472,456,,262.8571429,81.42857143 +4684,78.08333333,1444,457,,257.8571429,81.60714286 +4685,78.1,1415,458,,252.6785714,81.78571429 +4686,78.11666667,1387,458,,247.6785714,81.78571429 +4687,78.13333333,1359,458,,242.6785714,81.78571429 +4688,78.15,1330,458,,237.5,81.78571429 +4689,78.16666667,1303,458,,232.6785714,81.78571429 +4690,78.18333333,1276,457,,227.8571429,81.60714286 +4691,78.2,1250,456,,223.2142857,81.42857143 +4692,78.21666667,1224,455,,218.5714286,81.25 +4693,78.23333333,1199,454,,214.1071429,81.07142857 +4694,78.25,1175,452,,209.8214286,80.71428571 +4695,78.26666667,1153,451,,205.8928571,80.53571429 +4696,78.28333333,1131,450,,201.9642857,80.35714286 +4697,78.3,1111,448,,198.3928571,80 +4698,78.31666667,1093,447,,195.1785714,79.82142857 +4699,78.33333333,1076,445,,192.1428571,79.46428571 +4700,78.35,1060,444,,189.2857143,79.28571429 +4701,78.36666667,1047,443,,186.9642857,79.10714286 +4702,78.38333333,1034,442,,184.6428571,78.92857143 +4703,78.4,1025,441,,183.0357143,78.75 +4704,78.41666667,1016,440,,181.4285714,78.57142857 +4705,78.43333333,1010,439,,180.3571429,78.39285714 +4706,78.45,1005,439,,179.4642857,78.39285714 +4707,78.46666667,1004,439,,179.2857143,78.39285714 +4708,78.48333333,1004,439,,179.2857143,78.39285714 +4709,78.5,1004,439,,179.2857143,78.39285714 +4710,78.51666667,1007,439,,179.8214286,78.39285714 +4711,78.53333333,1013,440,,180.8928571,78.57142857 +4712,78.55,1020,441,,182.1428571,78.75 +4713,78.56666667,1030,442,,183.9285714,78.92857143 +4714,78.58333333,1040,443,,185.7142857,79.10714286 +4715,78.6,1053,445,,188.0357143,79.46428571 +4716,78.61666667,1068,446,,190.7142857,79.64285714 +4717,78.63333333,1084,448,,193.5714286,80 +4718,78.65,1101,449,,196.6071429,80.17857143 +4719,78.66666667,1120,451,,200,80.53571429 +4720,78.68333333,1141,452,,203.75,80.71428571 +4721,78.7,1162,453,,207.5,80.89285714 +4722,78.71666667,1185,455,,211.6071429,81.25 +4723,78.73333333,1209,456,,215.8928571,81.42857143 +4724,78.75,1234,458,,220.3571429,81.78571429 +4725,78.76666667,1260,458,,225,81.78571429 +4726,78.78333333,1287,460,,229.8214286,82.14285714 +4727,78.8,1314,460,,234.6428571,82.14285714 +4728,78.81666667,1341,460,,239.4642857,82.14285714 +4729,78.83333333,1369,460,,244.4642857,82.14285714 +4730,78.85,1397,460,,249.4642857,82.14285714 +4731,78.86666667,1426,460,,254.6428571,82.14285714 +4732,78.88333333,1454,459,,259.6428571,81.96428571 +4733,78.9,1481,458,,264.4642857,81.78571429 +4734,78.91666667,1509,457,,269.4642857,81.60714286 +4735,78.93333333,1536,456,,274.2857143,81.42857143 +4736,78.95,1562,454,,278.9285714,81.07142857 +4737,78.96666667,1588,453,,283.5714286,80.89285714 +4738,78.98333333,1613,451,,288.0357143,80.53571429 +4739,79,1637,448,,292.3214286,80 +4740,79.01666667,1659,446,,296.25,79.64285714 +4741,79.03333333,1680,444,,300,79.28571429 +4742,79.05,1700,442,,303.5714286,78.92857143 +4743,79.06666667,1719,440,,306.9642857,78.57142857 +4744,79.08333333,1735,438,,309.8214286,78.21428571 +4745,79.1,1751,436,,312.6785714,77.85714286 +4746,79.11666667,1765,434,,315.1785714,77.5 +4747,79.13333333,1777,433,,317.3214286,77.32142857 +4748,79.15,1786,432,,318.9285714,77.14285714 +4749,79.16666667,1795,431,,320.5357143,76.96428571 +4750,79.18333333,1801,430,,321.6071429,76.78571429 +4751,79.2,1805,429,,322.3214286,76.60714286 +4752,79.21666667,1806,429,,322.5,76.60714286 +4753,79.23333333,1806,429,,322.5,76.60714286 +4754,79.25,1806,429,,322.5,76.60714286 +4755,79.26666667,1802,429,,321.7857143,76.60714286 +4756,79.28333333,1796,430,,320.7142857,76.78571429 +4757,79.3,1789,431,,319.4642857,76.96428571 +4758,79.31666667,1779,432,,317.6785714,77.14285714 +4759,79.33333333,1767,434,,315.5357143,77.5 +4760,79.35,1754,435,,313.2142857,77.67857143 +4761,79.36666667,1739,437,,310.5357143,78.03571429 +4762,79.38333333,1722,439,,307.5,78.39285714 +4763,79.4,1704,440,,304.2857143,78.57142857 +4764,79.41666667,1684,443,,300.7142857,79.10714286 +4765,79.43333333,1663,444,,296.9642857,79.28571429 +4766,79.45,1641,446,,293.0357143,79.64285714 +4767,79.46666667,1617,449,,288.75,80.17857143 +4768,79.48333333,1592,450,,284.2857143,80.35714286 +4769,79.5,1567,452,,279.8214286,80.71428571 +4770,79.51666667,1540,454,,275,81.07142857 +4771,79.53333333,1514,455,,270.3571429,81.25 +4772,79.55,1486,457,,265.3571429,81.60714286 +4773,79.56666667,1458,457,,260.3571429,81.60714286 +4774,79.58333333,1429,458,,255.1785714,81.78571429 +4775,79.6,1401,458,,250.1785714,81.78571429 +4776,79.61666667,1373,459,,245.1785714,81.96428571 +4777,79.63333333,1345,459,,240.1785714,81.96428571 +4778,79.65,1318,459,,235.3571429,81.96428571 +4779,79.66666667,1290,458,,230.3571429,81.78571429 +4780,79.68333333,1263,457,,225.5357143,81.60714286 +4781,79.7,1237,456,,220.8928571,81.42857143 +4782,79.71666667,1212,455,,216.4285714,81.25 +4783,79.73333333,1188,454,,212.1428571,81.07142857 +4784,79.75,1165,453,,208.0357143,80.89285714 +4785,79.76666667,1143,451,,204.1071429,80.53571429 +4786,79.78333333,1122,450,,200.3571429,80.35714286 +4787,79.8,1103,448,,196.9642857,80 +4788,79.81666667,1085,447,,193.75,79.82142857 +4789,79.83333333,1069,446,,190.8928571,79.64285714 +4790,79.85,1054,444,,188.2142857,79.28571429 +4791,79.86666667,1041,443,,185.8928571,79.10714286 +4792,79.88333333,1030,442,,183.9285714,78.92857143 +4793,79.9,1021,441,,182.3214286,78.75 +4794,79.91666667,1014,440,,181.0714286,78.57142857 +4795,79.93333333,1008,440,,180,78.57142857 +4796,79.95,1005,440,,179.4642857,78.57142857 +4797,79.96666667,1005,440,,179.4642857,78.57142857 +4798,79.98333333,1005,440,,179.4642857,78.57142857 +4799,80,1006,440,,179.6428571,78.57142857 +4800,80.01666667,1010,440,,180.3571429,78.57142857 +4801,80.03333333,1016,441,,181.4285714,78.75 +4802,80.05,1024,442,,182.8571429,78.92857143 +4803,80.06666667,1034,443,,184.6428571,79.10714286 +4804,80.08333333,1046,444,,186.7857143,79.28571429 +4805,80.1,1059,445,,189.1071429,79.46428571 +4806,80.11666667,1074,447,,191.7857143,79.82142857 +4807,80.13333333,1091,448,,194.8214286,80 +4808,80.15,1109,450,,198.0357143,80.35714286 +4809,80.16666667,1129,452,,201.6071429,80.71428571 +4810,80.18333333,1150,452,,205.3571429,80.71428571 +4811,80.2,1172,454,,209.2857143,81.07142857 +4812,80.21666667,1195,456,,213.3928571,81.42857143 +4813,80.23333333,1219,457,,217.6785714,81.60714286 +4814,80.25,1245,458,,222.3214286,81.78571429 +4815,80.26666667,1271,459,,226.9642857,81.96428571 +4816,80.28333333,1297,460,,231.6071429,82.14285714 +4817,80.3,1325,460,,236.6071429,82.14285714 +4818,80.31666667,1353,460,,241.6071429,82.14285714 +4819,80.33333333,1381,460,,246.6071429,82.14285714 +4820,80.35,1409,459,,251.6071429,81.96428571 +4821,80.36666667,1437,459,,256.6071429,81.96428571 +4822,80.38333333,1465,459,,261.6071429,81.96428571 +4823,80.4,1493,457,,266.6071429,81.60714286 +4824,80.41666667,1519,456,,271.25,81.42857143 +4825,80.43333333,1546,455,,276.0714286,81.25 +4826,80.45,1572,453,,280.7142857,80.89285714 +4827,80.46666667,1597,451,,285.1785714,80.53571429 +4828,80.48333333,1622,449,,289.6428571,80.17857143 +4829,80.5,1645,447,,293.75,79.82142857 +4830,80.51666667,1667,445,,297.6785714,79.46428571 +4831,80.53333333,1687,444,,301.25,79.28571429 +4832,80.55,1707,441,,304.8214286,78.75 +4833,80.56666667,1724,439,,307.8571429,78.39285714 +4834,80.58333333,1740,437,,310.7142857,78.03571429 +4835,80.6,1755,436,,313.3928571,77.85714286 +4836,80.61666667,1768,434,,315.7142857,77.5 +4837,80.63333333,1779,432,,317.6785714,77.14285714 +4838,80.65,1788,431,,319.2857143,76.96428571 +4839,80.66666667,1795,430,,320.5357143,76.78571429 +4840,80.68333333,1801,429,,321.6071429,76.60714286 +4841,80.7,1804,429,,322.1428571,76.60714286 +4842,80.71666667,1804,429,,322.1428571,76.60714286 +4843,80.73333333,1804,429,,322.1428571,76.60714286 +4844,80.75,1802,429,,321.7857143,76.60714286 +4845,80.76666667,1797,429,,320.8928571,76.60714286 +4846,80.78333333,1791,430,,319.8214286,76.78571429 +4847,80.8,1782,431,,318.2142857,76.96428571 +4848,80.81666667,1772,432,,316.4285714,77.14285714 +4849,80.83333333,1759,434,,314.1071429,77.5 +4850,80.85,1745,435,,311.6071429,77.67857143 +4851,80.86666667,1729,438,,308.75,78.21428571 +4852,80.88333333,1712,439,,305.7142857,78.39285714 +4853,80.9,1693,441,,302.3214286,78.75 +4854,80.91666667,1673,443,,298.75,79.10714286 +4855,80.93333333,1651,445,,294.8214286,79.46428571 +4856,80.95,1628,447,,290.7142857,79.82142857 +4857,80.96666667,1604,449,,286.4285714,80.17857143 +4858,80.98333333,1579,450,,281.9642857,80.35714286 +4859,81,1553,452,,277.3214286,80.71428571 +4860,81.01666667,1527,454,,272.6785714,81.07142857 +4861,81.03333333,1500,455,,267.8571429,81.25 +4862,81.05,1472,456,,262.8571429,81.42857143 +4863,81.06666667,1444,456,,257.8571429,81.42857143 +4864,81.08333333,1416,457,,252.8571429,81.60714286 +4865,81.1,1388,458,,247.8571429,81.78571429 +4866,81.11666667,1360,458,,242.8571429,81.78571429 +4867,81.13333333,1332,458,,237.8571429,81.78571429 +4868,81.15,1304,458,,232.8571429,81.78571429 +4869,81.16666667,1277,457,,228.0357143,81.60714286 +4870,81.18333333,1251,456,,223.3928571,81.42857143 +4871,81.2,1225,455,,218.75,81.25 +4872,81.21666667,1200,454,,214.2857143,81.07142857 +4873,81.23333333,1177,453,,210.1785714,80.89285714 +4874,81.25,1154,451,,206.0714286,80.53571429 +4875,81.26666667,1133,450,,202.3214286,80.35714286 +4876,81.28333333,1113,448,,198.75,80 +4877,81.3,1094,447,,195.3571429,79.82142857 +4878,81.31666667,1077,446,,192.3214286,79.64285714 +4879,81.33333333,1062,445,,189.6428571,79.46428571 +4880,81.35,1048,443,,187.1428571,79.10714286 +4881,81.36666667,1036,442,,185,78.92857143 +4882,81.38333333,1026,441,,183.2142857,78.75 +4883,81.4,1018,440,,181.7857143,78.57142857 +4884,81.41666667,1011,440,,180.5357143,78.57142857 +4885,81.43333333,1007,439,,179.8214286,78.39285714 +4886,81.45,1005,439,,179.4642857,78.39285714 +4887,81.46666667,1005,439,,179.4642857,78.39285714 +4888,81.48333333,1005,439,,179.4642857,78.39285714 +4889,81.5,1008,439,,180,78.39285714 +4890,81.51666667,1013,440,,180.8928571,78.57142857 +4891,81.53333333,1020,441,,182.1428571,78.75 +4892,81.55,1029,442,,183.75,78.92857143 +4893,81.56666667,1040,443,,185.7142857,79.10714286 +4894,81.58333333,1053,444,,188.0357143,79.28571429 +4895,81.6,1067,445,,190.5357143,79.46428571 +4896,81.61666667,1083,447,,193.3928571,79.82142857 +4897,81.63333333,1100,449,,196.4285714,80.17857143 +4898,81.65,1118,450,,199.6428571,80.35714286 +4899,81.66666667,1139,452,,203.3928571,80.71428571 +4900,81.68333333,1160,453,,207.1428571,80.89285714 +4901,81.7,1183,454,,211.25,81.07142857 +4902,81.71666667,1206,456,,215.3571429,81.42857143 +4903,81.73333333,1231,457,,219.8214286,81.60714286 +4904,81.75,1257,458,,224.4642857,81.78571429 +4905,81.76666667,1284,459,,229.2857143,81.96428571 +4906,81.78333333,1311,459,,234.1071429,81.96428571 +4907,81.8,1338,459,,238.9285714,81.96428571 +4908,81.81666667,1366,459,,243.9285714,81.96428571 +4909,81.83333333,1394,459,,248.9285714,81.96428571 +4910,81.85,1422,459,,253.9285714,81.96428571 +4911,81.86666667,1449,458,,258.75,81.78571429 +4912,81.88333333,1477,457,,263.75,81.60714286 +4913,81.9,1505,456,,268.75,81.42857143 +4914,81.91666667,1532,455,,273.5714286,81.25 +4915,81.93333333,1558,453,,278.2142857,80.89285714 +4916,81.95,1584,451,,282.8571429,80.53571429 +4917,81.96666667,1608,450,,287.1428571,80.35714286 +4918,81.98333333,1632,448,,291.4285714,80 +4919,82,1654,446,,295.3571429,79.64285714 +4920,82.01666667,1676,444,,299.2857143,79.28571429 +4921,82.03333333,1696,441,,302.8571429,78.75 +4922,82.05,1714,440,,306.0714286,78.57142857 +4923,82.06666667,1732,438,,309.2857143,78.21428571 +4924,82.08333333,1747,436,,311.9642857,77.85714286 +4925,82.1,1760,434,,314.2857143,77.5 +4926,82.11666667,1772,432,,316.4285714,77.14285714 +4927,82.13333333,1783,431,,318.3928571,76.96428571 +4928,82.15,1791,430,,319.8214286,76.78571429 +4929,82.16666667,1797,429,,320.8928571,76.60714286 +4930,82.18333333,1802,428,,321.7857143,76.42857143 +4931,82.2,1803,428,,321.9642857,76.42857143 +4932,82.21666667,1803,428,,321.9642857,76.42857143 +4933,82.23333333,1803,428,,321.9642857,76.42857143 +4934,82.25,1799,428,,321.25,76.42857143 +4935,82.26666667,1794,429,,320.3571429,76.60714286 +4936,82.28333333,1786,430,,318.9285714,76.78571429 +4937,82.3,1777,431,,317.3214286,76.96428571 +4938,82.31666667,1765,432,,315.1785714,77.14285714 +4939,82.33333333,1752,434,,312.8571429,77.5 +4940,82.35,1738,436,,310.3571429,77.85714286 +4941,82.36666667,1721,437,,307.3214286,78.03571429 +4942,82.38333333,1703,439,,304.1071429,78.39285714 +4943,82.4,1684,441,,300.7142857,78.75 +4944,82.41666667,1663,443,,296.9642857,79.10714286 +4945,82.43333333,1641,445,,293.0357143,79.46428571 +4946,82.45,1617,447,,288.75,79.82142857 +4947,82.46666667,1593,449,,284.4642857,80.17857143 +4948,82.48333333,1568,451,,280,80.53571429 +4949,82.5,1542,452,,275.3571429,80.71428571 +4950,82.51666667,1515,454,,270.5357143,81.07142857 +4951,82.53333333,1488,455,,265.7142857,81.25 +4952,82.55,1460,456,,260.7142857,81.42857143 +4953,82.56666667,1432,457,,255.7142857,81.60714286 +4954,82.58333333,1404,457,,250.7142857,81.60714286 +4955,82.6,1376,458,,245.7142857,81.78571429 +4956,82.61666667,1348,458,,240.7142857,81.78571429 +4957,82.63333333,1321,458,,235.8928571,81.78571429 +4958,82.65,1293,457,,230.8928571,81.60714286 +4959,82.66666667,1267,456,,226.25,81.42857143 +4960,82.68333333,1241,455,,221.6071429,81.25 +4961,82.7,1216,454,,217.1428571,81.07142857 +4962,82.71666667,1192,453,,212.8571429,80.89285714 +4963,82.73333333,1169,452,,208.75,80.71428571 +4964,82.75,1147,451,,204.8214286,80.53571429 +4965,82.76666667,1126,449,,201.0714286,80.17857143 +4966,82.78333333,1107,448,,197.6785714,80 +4967,82.8,1089,446,,194.4642857,79.64285714 +4968,82.81666667,1073,445,,191.6071429,79.46428571 +4969,82.83333333,1058,443,,188.9285714,79.10714286 +4970,82.85,1046,442,,186.7857143,78.92857143 +4971,82.86666667,1034,441,,184.6428571,78.75 +4972,82.88333333,1025,440,,183.0357143,78.57142857 +4973,82.9,1017,440,,181.6071429,78.57142857 +4974,82.91666667,1012,439,,180.7142857,78.39285714 +4975,82.93333333,1008,439,,180,78.39285714 +4976,82.95,1008,439,,180,78.39285714 +4977,82.96666667,1008,439,,180,78.39285714 +4978,82.98333333,1008,439,,180,78.39285714 +4979,83,1012,439,,180.7142857,78.39285714 +4980,83.01666667,1018,440,,181.7857143,78.57142857 +4981,83.03333333,1026,441,,183.2142857,78.75 +4982,83.05,1036,442,,185,78.92857143 +4983,83.06666667,1047,443,,186.9642857,79.10714286 +4984,83.08333333,1061,444,,189.4642857,79.28571429 +4985,83.1,1075,445,,191.9642857,79.46428571 +4986,83.11666667,1092,447,,195,79.82142857 +4987,83.13333333,1110,448,,198.2142857,80 +4988,83.15,1129,450,,201.6071429,80.35714286 +4989,83.16666667,1150,452,,205.3571429,80.71428571 +4990,83.18333333,1172,453,,209.2857143,80.89285714 +4991,83.2,1195,454,,213.3928571,81.07142857 +4992,83.21666667,1219,456,,217.6785714,81.42857143 +4993,83.23333333,1244,457,,222.1428571,81.60714286 +4994,83.25,1270,458,,226.7857143,81.78571429 +4995,83.26666667,1296,459,,231.4285714,81.96428571 +4996,83.28333333,1324,459,,236.4285714,81.96428571 +4997,83.3,1351,459,,241.25,81.96428571 +4998,83.31666667,1379,459,,246.25,81.96428571 +4999,83.33333333,1406,458,,251.0714286,81.78571429 +5000,83.35,1435,458,,256.25,81.78571429 +5001,83.36666667,1462,458,,261.0714286,81.78571429 +5002,83.38333333,1490,456,,266.0714286,81.42857143 +5003,83.4,1516,455,,270.7142857,81.25 +5004,83.41666667,1543,454,,275.5357143,81.07142857 +5005,83.43333333,1569,452,,280.1785714,80.71428571 +5006,83.45,1593,450,,284.4642857,80.35714286 +5007,83.46666667,1618,449,,288.9285714,80.17857143 +5008,83.48333333,1641,447,,293.0357143,79.82142857 +5009,83.5,1663,445,,296.9642857,79.46428571 +5010,83.51666667,1683,443,,300.5357143,79.10714286 +5011,83.53333333,1703,441,,304.1071429,78.75 +5012,83.55,1721,439,,307.3214286,78.39285714 +5013,83.56666667,1737,437,,310.1785714,78.03571429 +5014,83.58333333,1752,435,,312.8571429,77.67857143 +5015,83.6,1764,433,,315,77.32142857 +5016,83.61666667,1776,432,,317.1428571,77.14285714 +5017,83.63333333,1785,431,,318.75,76.96428571 +5018,83.65,1792,430,,320,76.78571429 +5019,83.66666667,1798,429,,321.0714286,76.60714286 +5020,83.68333333,1801,428,,321.6071429,76.42857143 +5021,83.7,1801,428,,321.6071429,76.42857143 +5022,83.71666667,1801,428,,321.6071429,76.42857143 +5023,83.73333333,1800,429,,321.4285714,76.60714286 +5024,83.75,1795,429,,320.5357143,76.60714286 +5025,83.76666667,1789,430,,319.4642857,76.78571429 +5026,83.78333333,1781,431,,318.0357143,76.96428571 +5027,83.8,1770,432,,316.0714286,77.14285714 +5028,83.81666667,1758,434,,313.9285714,77.5 +5029,83.83333333,1745,435,,311.6071429,77.67857143 +5030,83.85,1729,437,,308.75,78.03571429 +5031,83.86666667,1712,439,,305.7142857,78.39285714 +5032,83.88333333,1693,441,,302.3214286,78.75 +5033,83.9,1673,443,,298.75,79.10714286 +5034,83.91666667,1651,444,,294.8214286,79.28571429 +5035,83.93333333,1629,447,,290.8928571,79.82142857 +5036,83.95,1605,448,,286.6071429,80 +5037,83.96666667,1580,450,,282.1428571,80.35714286 +5038,83.98333333,1555,452,,277.6785714,80.71428571 +5039,84,1528,453,,272.8571429,80.89285714 +5040,84.01666667,1501,454,,268.0357143,81.07142857 +5041,84.03333333,1473,455,,263.0357143,81.25 +5042,84.05,1446,456,,258.2142857,81.42857143 +5043,84.06666667,1418,457,,253.2142857,81.60714286 +5044,84.08333333,1390,457,,248.2142857,81.60714286 +5045,84.1,1362,458,,243.2142857,81.78571429 +5046,84.11666667,1334,458,,238.2142857,81.78571429 +5047,84.13333333,1307,458,,233.3928571,81.78571429 +5048,84.15,1280,457,,228.5714286,81.60714286 +5049,84.16666667,1254,456,,223.9285714,81.42857143 +5050,84.18333333,1228,455,,219.2857143,81.25 +5051,84.2,1203,454,,214.8214286,81.07142857 +5052,84.21666667,1180,452,,210.7142857,80.71428571 +5053,84.23333333,1157,451,,206.6071429,80.53571429 +5054,84.25,1136,450,,202.8571429,80.35714286 +5055,84.26666667,1116,449,,199.2857143,80.17857143 +5056,84.28333333,1098,447,,196.0714286,79.82142857 +5057,84.3,1081,446,,193.0357143,79.64285714 +5058,84.31666667,1065,444,,190.1785714,79.28571429 +5059,84.33333333,1052,443,,187.8571429,79.10714286 +5060,84.35,1039,442,,185.5357143,78.92857143 +5061,84.36666667,1029,441,,183.75,78.75 +5062,84.38333333,1021,440,,182.3214286,78.57142857 +5063,84.4,1014,440,,181.0714286,78.57142857 +5064,84.41666667,1009,439,,180.1785714,78.39285714 +5065,84.43333333,1006,439,,179.6428571,78.39285714 +5066,84.45,1006,439,,179.6428571,78.39285714 +5067,84.46666667,1006,439,,179.6428571,78.39285714 +5068,84.48333333,1009,440,,180.1785714,78.57142857 +5069,84.5,1014,440,,181.0714286,78.57142857 +5070,84.51666667,1021,441,,182.3214286,78.75 +5071,84.53333333,1029,442,,183.75,78.92857143 +5072,84.55,1040,443,,185.7142857,79.10714286 +5073,84.56666667,1052,444,,187.8571429,79.28571429 +5074,84.58333333,1066,446,,190.3571429,79.64285714 +5075,84.6,1082,447,,193.2142857,79.82142857 +5076,84.61666667,1099,449,,196.25,80.17857143 +5077,84.63333333,1118,450,,199.6428571,80.35714286 +5078,84.65,1138,451,,203.2142857,80.53571429 +5079,84.66666667,1159,453,,206.9642857,80.89285714 +5080,84.68333333,1182,454,,211.0714286,81.07142857 +5081,84.7,1206,455,,215.3571429,81.25 +5082,84.71666667,1230,456,,219.6428571,81.42857143 +5083,84.73333333,1256,457,,224.2857143,81.60714286 +5084,84.75,1282,458,,228.9285714,81.78571429 +5085,84.76666667,1309,459,,233.75,81.96428571 +5086,84.78333333,1336,459,,238.5714286,81.96428571 +5087,84.8,1364,459,,243.5714286,81.96428571 +5088,84.81666667,1392,459,,248.5714286,81.96428571 +5089,84.83333333,1420,459,,253.5714286,81.96428571 +5090,84.85,1447,458,,258.3928571,81.78571429 +5091,84.86666667,1475,457,,263.3928571,81.60714286 +5092,84.88333333,1502,456,,268.2142857,81.42857143 +5093,84.9,1529,455,,273.0357143,81.25 +5094,84.91666667,1555,453,,277.6785714,80.89285714 +5095,84.93333333,1580,451,,282.1428571,80.53571429 +5096,84.95,1605,450,,286.6071429,80.35714286 +5097,84.96666667,1628,448,,290.7142857,80 +5098,84.98333333,1651,446,,294.8214286,79.64285714 +5099,85,1673,444,,298.75,79.28571429 +5100,85.01666667,1692,442,,302.1428571,78.92857143 +5101,85.03333333,1711,440,,305.5357143,78.57142857 +5102,85.05,1728,438,,308.5714286,78.21428571 +5103,85.06666667,1744,436,,311.4285714,77.85714286 +5104,85.08333333,1757,434,,313.75,77.5 +5105,85.1,1770,433,,316.0714286,77.32142857 +5106,85.11666667,1780,431,,317.8571429,76.96428571 +5107,85.13333333,1788,430,,319.2857143,76.78571429 +5108,85.15,1795,429,,320.5357143,76.60714286 +5109,85.16666667,1799,428,,321.25,76.42857143 +5110,85.18333333,1801,428,,321.6071429,76.42857143 +5111,85.2,1801,428,,321.6071429,76.42857143 +5112,85.21666667,1801,428,,321.6071429,76.42857143 +5113,85.23333333,1797,429,,320.8928571,76.60714286 +5114,85.25,1792,429,,320,76.60714286 +5115,85.26666667,1785,430,,318.75,76.78571429 +5116,85.28333333,1776,431,,317.1428571,76.96428571 +5117,85.3,1765,433,,315.1785714,77.32142857 +5118,85.31666667,1752,434,,312.8571429,77.5 +5119,85.33333333,1737,436,,310.1785714,77.85714286 +5120,85.35,1721,437,,307.3214286,78.03571429 +5121,85.36666667,1703,439,,304.1071429,78.39285714 +5122,85.38333333,1684,441,,300.7142857,78.75 +5123,85.4,1663,444,,296.9642857,79.28571429 +5124,85.41666667,1641,446,,293.0357143,79.64285714 +5125,85.43333333,1618,447,,288.9285714,79.82142857 +5126,85.45,1594,449,,284.6428571,80.17857143 +5127,85.46666667,1569,451,,280.1785714,80.53571429 +5128,85.48333333,1543,453,,275.5357143,80.89285714 +5129,85.5,1517,454,,270.8928571,81.07142857 +5130,85.51666667,1490,455,,266.0714286,81.25 +5131,85.53333333,1462,456,,261.0714286,81.42857143 +5132,85.55,1434,457,,256.0714286,81.60714286 +5133,85.56666667,1406,457,,251.0714286,81.60714286 +5134,85.58333333,1378,458,,246.0714286,81.78571429 +5135,85.6,1351,458,,241.25,81.78571429 +5136,85.61666667,1323,458,,236.25,81.78571429 +5137,85.63333333,1297,458,,231.6071429,81.78571429 +5138,85.65,1270,457,,226.7857143,81.60714286 +5139,85.66666667,1244,456,,222.1428571,81.42857143 +5140,85.68333333,1219,455,,217.6785714,81.25 +5141,85.7,1195,454,,213.3928571,81.07142857 +5142,85.71666667,1172,453,,209.2857143,80.89285714 +5143,85.73333333,1150,451,,205.3571429,80.53571429 +5144,85.75,1129,450,,201.6071429,80.35714286 +5145,85.76666667,1110,448,,198.2142857,80 +5146,85.78333333,1093,447,,195.1785714,79.82142857 +5147,85.8,1076,446,,192.1428571,79.64285714 +5148,85.81666667,1062,444,,189.6428571,79.28571429 +5149,85.83333333,1048,443,,187.1428571,79.10714286 +5150,85.85,1037,442,,185.1785714,78.92857143 +5151,85.86666667,1028,441,,183.5714286,78.75 +5152,85.88333333,1021,441,,182.3214286,78.75 +5153,85.9,1015,440,,181.25,78.57142857 +5154,85.91666667,1011,440,,180.5357143,78.57142857 +5155,85.93333333,1011,440,,180.5357143,78.57142857 +5156,85.95,1011,440,,180.5357143,78.57142857 +5157,85.96666667,1011,440,,180.5357143,78.57142857 +5158,85.98333333,1015,441,,181.25,78.75 +5159,86,1021,441,,182.3214286,78.75 +5160,86.01666667,1029,442,,183.75,78.92857143 +5161,86.03333333,1039,443,,185.5357143,79.10714286 +5162,86.05,1050,444,,187.5,79.28571429 +5163,86.06666667,1063,446,,189.8214286,79.64285714 +5164,86.08333333,1077,447,,192.3214286,79.82142857 +5165,86.1,1093,449,,195.1785714,80.17857143 +5166,86.11666667,1111,450,,198.3928571,80.35714286 +5167,86.13333333,1130,452,,201.7857143,80.71428571 +5168,86.15,1150,453,,205.3571429,80.89285714 +5169,86.16666667,1172,454,,209.2857143,81.07142857 +5170,86.18333333,1195,455,,213.3928571,81.25 +5171,86.2,1219,457,,217.6785714,81.60714286 +5172,86.21666667,1244,458,,222.1428571,81.78571429 +5173,86.23333333,1269,460,,226.6071429,82.14285714 +5174,86.25,1296,460,,231.4285714,82.14285714 +5175,86.26666667,1322,460,,236.0714286,82.14285714 +5176,86.28333333,1349,460,,240.8928571,82.14285714 +5177,86.3,1377,460,,245.8928571,82.14285714 +5178,86.31666667,1405,460,,250.8928571,82.14285714 +5179,86.33333333,1432,459,,255.7142857,81.96428571 +5180,86.35,1460,459,,260.7142857,81.96428571 +5181,86.36666667,1487,458,,265.5357143,81.78571429 +5182,86.38333333,1514,457,,270.3571429,81.60714286 +5183,86.4,1541,455,,275.1785714,81.25 +5184,86.41666667,1566,454,,279.6428571,81.07142857 +5185,86.43333333,1591,452,,284.1071429,80.71428571 +5186,86.45,1615,450,,288.3928571,80.35714286 +5187,86.46666667,1638,448,,292.5,80 +5188,86.48333333,1660,446,,296.4285714,79.64285714 +5189,86.5,1681,444,,300.1785714,79.28571429 +5190,86.51666667,1700,442,,303.5714286,78.92857143 +5191,86.53333333,1718,440,,306.7857143,78.57142857 +5192,86.55,1734,438,,309.6428571,78.21428571 +5193,86.56666667,1749,436,,312.3214286,77.85714286 +5194,86.58333333,1762,435,,314.6428571,77.67857143 +5195,86.6,1773,433,,316.6071429,77.32142857 +5196,86.61666667,1782,432,,318.2142857,77.14285714 +5197,86.63333333,1789,431,,319.4642857,76.96428571 +5198,86.65,1795,430,,320.5357143,76.78571429 +5199,86.66666667,1798,430,,321.0714286,76.78571429 +5200,86.68333333,1798,430,,321.0714286,76.78571429 +5201,86.7,1798,430,,321.0714286,76.78571429 +5202,86.71666667,1797,430,,320.8928571,76.78571429 +5203,86.73333333,1793,431,,320.1785714,76.96428571 +5204,86.75,1787,431,,319.1071429,76.96428571 +5205,86.76666667,1778,432,,317.5,77.14285714 +5206,86.78333333,1768,433,,315.7142857,77.32142857 +5207,86.8,1757,435,,313.75,77.67857143 +5208,86.81666667,1743,436,,311.25,77.85714286 +5209,86.83333333,1728,437,,308.5714286,78.03571429 +5210,86.85,1711,439,,305.5357143,78.39285714 +5211,86.86666667,1693,441,,302.3214286,78.75 +5212,86.88333333,1673,443,,298.75,79.10714286 +5213,86.9,1652,445,,295,79.46428571 +5214,86.91666667,1629,447,,290.8928571,79.82142857 +5215,86.93333333,1606,449,,286.7857143,80.17857143 +5216,86.95,1581,451,,282.3214286,80.53571429 +5217,86.96666667,1556,452,,277.8571429,80.71428571 +5218,86.98333333,1530,454,,273.2142857,81.07142857 +5219,87,1503,455,,268.3928571,81.25 +5220,87.01666667,1476,456,,263.5714286,81.42857143 +5221,87.03333333,1448,457,,258.5714286,81.60714286 +5222,87.05,1420,458,,253.5714286,81.78571429 +5223,87.06666667,1393,458,,248.75,81.78571429 +5224,87.08333333,1365,458,,243.75,81.78571429 +5225,87.1,1337,458,,238.75,81.78571429 +5226,87.11666667,1310,458,,233.9285714,81.78571429 +5227,87.13333333,1283,458,,229.1071429,81.78571429 +5228,87.15,1257,457,,224.4642857,81.60714286 +5229,87.16666667,1232,456,,220,81.42857143 +5230,87.18333333,1208,455,,215.7142857,81.25 +5231,87.2,1184,454,,211.4285714,81.07142857 +5232,87.21666667,1162,452,,207.5,80.71428571 +5233,87.23333333,1140,451,,203.5714286,80.53571429 +5234,87.25,1121,450,,200.1785714,80.35714286 +5235,87.26666667,1102,448,,196.7857143,80 +5236,87.28333333,1085,447,,193.75,79.82142857 +5237,87.3,1069,446,,190.8928571,79.64285714 +5238,87.31666667,1055,444,,188.3928571,79.28571429 +5239,87.33333333,1044,443,,186.4285714,79.10714286 +5240,87.35,1033,442,,184.4642857,78.92857143 +5241,87.36666667,1024,441,,182.8571429,78.75 +5242,87.38333333,1018,441,,181.7857143,78.75 +5243,87.4,1013,440,,180.8928571,78.57142857 +5244,87.41666667,1010,440,,180.3571429,78.57142857 +5245,87.43333333,1010,440,,180.3571429,78.57142857 +5246,87.45,1010,440,,180.3571429,78.57142857 +5247,87.46666667,1013,440,,180.8928571,78.57142857 +5248,87.48333333,1018,441,,181.7857143,78.75 +5249,87.5,1025,442,,183.0357143,78.92857143 +5250,87.51666667,1033,443,,184.4642857,79.10714286 +5251,87.53333333,1043,444,,186.25,79.28571429 +5252,87.55,1055,445,,188.3928571,79.46428571 +5253,87.56666667,1069,446,,190.8928571,79.64285714 +5254,87.58333333,1084,447,,193.5714286,79.82142857 +5255,87.6,1101,449,,196.6071429,80.17857143 +5256,87.61666667,1120,450,,200,80.35714286 +5257,87.63333333,1139,452,,203.3928571,80.71428571 +5258,87.65,1160,453,,207.1428571,80.89285714 +5259,87.66666667,1182,454,,211.0714286,81.07142857 +5260,87.68333333,1205,456,,215.1785714,81.42857143 +5261,87.7,1230,457,,219.6428571,81.60714286 +5262,87.71666667,1255,458,,224.1071429,81.78571429 +5263,87.73333333,1281,459,,228.75,81.96428571 +5264,87.75,1308,459,,233.5714286,81.96428571 +5265,87.76666667,1335,459,,238.3928571,81.96428571 +5266,87.78333333,1362,459,,243.2142857,81.96428571 +5267,87.8,1390,459,,248.2142857,81.96428571 +5268,87.81666667,1418,459,,253.2142857,81.96428571 +5269,87.83333333,1445,458,,258.0357143,81.78571429 +5270,87.85,1473,457,,263.0357143,81.60714286 +5271,87.86666667,1501,456,,268.0357143,81.42857143 +5272,87.88333333,1527,455,,272.6785714,81.25 +5273,87.9,1553,453,,277.3214286,80.89285714 +5274,87.91666667,1578,452,,281.7857143,80.71428571 +5275,87.93333333,1603,450,,286.25,80.35714286 +5276,87.95,1626,448,,290.3571429,80 +5277,87.96666667,1649,446,,294.4642857,79.64285714 +5278,87.98333333,1670,444,,298.2142857,79.28571429 +5279,88,1690,442,,301.7857143,78.92857143 +5280,88.01666667,1708,440,,305,78.57142857 +5281,88.03333333,1725,438,,308.0357143,78.21428571 +5282,88.05,1741,436,,310.8928571,77.85714286 +5283,88.06666667,1755,435,,313.3928571,77.67857143 +5284,88.08333333,1766,433,,315.3571429,77.32142857 +5285,88.1,1777,432,,317.3214286,77.14285714 +5286,88.11666667,1785,431,,318.75,76.96428571 +5287,88.13333333,1792,430,,320,76.78571429 +5288,88.15,1797,429,,320.8928571,76.60714286 +5289,88.16666667,1798,428,,321.0714286,76.42857143 +5290,88.18333333,1798,428,,321.0714286,76.42857143 +5291,88.2,1798,428,,321.0714286,76.42857143 +5292,88.21666667,1795,429,,320.5357143,76.60714286 +5293,88.23333333,1790,429,,319.6428571,76.60714286 +5294,88.25,1782,431,,318.2142857,76.96428571 +5295,88.26666667,1773,432,,316.6071429,77.14285714 +5296,88.28333333,1762,433,,314.6428571,77.32142857 +5297,88.3,1750,435,,312.5,77.67857143 +5298,88.31666667,1735,436,,309.8214286,77.85714286 +5299,88.33333333,1719,438,,306.9642857,78.21428571 +5300,88.35,1702,440,,303.9285714,78.57142857 +5301,88.36666667,1683,442,,300.5357143,78.92857143 +5302,88.38333333,1662,444,,296.7857143,79.28571429 +5303,88.4,1640,445,,292.8571429,79.46428571 +5304,88.41666667,1617,447,,288.75,79.82142857 +5305,88.43333333,1594,449,,284.6428571,80.17857143 +5306,88.45,1569,451,,280.1785714,80.53571429 +5307,88.46666667,1543,452,,275.5357143,80.71428571 +5308,88.48333333,1517,454,,270.8928571,81.07142857 +5309,88.5,1490,455,,266.0714286,81.25 +5310,88.51666667,1463,456,,261.25,81.42857143 +5311,88.53333333,1435,457,,256.25,81.60714286 +5312,88.55,1407,457,,251.25,81.60714286 +5313,88.56666667,1380,458,,246.4285714,81.78571429 +5314,88.58333333,1352,458,,241.4285714,81.78571429 +5315,88.6,1325,458,,236.6071429,81.78571429 +5316,88.61666667,1298,458,,231.7857143,81.78571429 +5317,88.63333333,1272,457,,227.1428571,81.60714286 +5318,88.65,1246,456,,222.5,81.42857143 +5319,88.66666667,1221,455,,218.0357143,81.25 +5320,88.68333333,1197,454,,213.75,81.07142857 +5321,88.7,1175,453,,209.8214286,80.89285714 +5322,88.71666667,1153,451,,205.8928571,80.53571429 +5323,88.73333333,1132,450,,202.1428571,80.35714286 +5324,88.75,1113,448,,198.75,80 +5325,88.76666667,1096,447,,195.7142857,79.82142857 +5326,88.78333333,1079,446,,192.6785714,79.64285714 +5327,88.8,1065,444,,190.1785714,79.28571429 +5328,88.81666667,1052,444,,187.8571429,79.28571429 +5329,88.83333333,1040,442,,185.7142857,78.92857143 +5330,88.85,1031,441,,184.1071429,78.75 +5331,88.86666667,1023,441,,182.6785714,78.75 +5332,88.88333333,1017,440,,181.6071429,78.57142857 +5333,88.9,1013,440,,180.8928571,78.57142857 +5334,88.91666667,1012,440,,180.7142857,78.57142857 +5335,88.93333333,1012,440,,180.7142857,78.57142857 +5336,88.95,1012,440,,180.7142857,78.57142857 +5337,88.96666667,1016,440,,181.4285714,78.57142857 +5338,88.98333333,1022,441,,182.5,78.75 +5339,89,1029,442,,183.75,78.92857143 +5340,89.01666667,1038,443,,185.3571429,79.10714286 +5341,89.03333333,1049,444,,187.3214286,79.28571429 +5342,89.05,1062,445,,189.6428571,79.46428571 +5343,89.06666667,1076,446,,192.1428571,79.64285714 +5344,89.08333333,1092,448,,195,80 +5345,89.1,1109,449,,198.0357143,80.17857143 +5346,89.11666667,1127,451,,201.25,80.53571429 +5347,89.13333333,1148,452,,205,80.71428571 +5348,89.15,1169,454,,208.75,81.07142857 +5349,89.16666667,1192,455,,212.8571429,81.25 +5350,89.18333333,1216,456,,217.1428571,81.42857143 +5351,89.2,1241,457,,221.6071429,81.60714286 +5352,89.21666667,1266,458,,226.0714286,81.78571429 +5353,89.23333333,1293,459,,230.8928571,81.96428571 +5354,89.25,1320,459,,235.7142857,81.96428571 +5355,89.26666667,1347,459,,240.5357143,81.96428571 +5356,89.28333333,1374,459,,245.3571429,81.96428571 +5357,89.3,1402,459,,250.3571429,81.96428571 +5358,89.31666667,1429,458,,255.1785714,81.78571429 +5359,89.33333333,1457,457,,260.1785714,81.60714286 +5360,89.35,1484,457,,265,81.60714286 +5361,89.36666667,1511,456,,269.8214286,81.42857143 +5362,89.38333333,1537,454,,274.4642857,81.07142857 +5363,89.4,1563,453,,279.1071429,80.89285714 +5364,89.41666667,1588,451,,283.5714286,80.53571429 +5365,89.43333333,1612,449,,287.8571429,80.17857143 +5366,89.45,1635,447,,291.9642857,79.82142857 +5367,89.46666667,1657,445,,295.8928571,79.46428571 +5368,89.48333333,1678,443,,299.6428571,79.10714286 +5369,89.5,1697,441,,303.0357143,78.75 +5370,89.51666667,1715,439,,306.25,78.39285714 +5371,89.53333333,1731,437,,309.1071429,78.03571429 +5372,89.55,1746,436,,311.7857143,77.85714286 +5373,89.56666667,1759,434,,314.1071429,77.5 +5374,89.58333333,1770,433,,316.0714286,77.32142857 +5375,89.6,1779,431,,317.6785714,76.96428571 +5376,89.61666667,1787,430,,319.1071429,76.78571429 +5377,89.63333333,1793,430,,320.1785714,76.78571429 +5378,89.65,1797,429,,320.8928571,76.60714286 +5379,89.66666667,1797,429,,320.8928571,76.60714286 +5380,89.68333333,1797,429,,320.8928571,76.60714286 +5381,89.7,1796,429,,320.7142857,76.60714286 +5382,89.71666667,1791,430,,319.8214286,76.78571429 +5383,89.73333333,1786,431,,318.9285714,76.96428571 +5384,89.75,1778,431,,317.5,76.96428571 +5385,89.76666667,1768,433,,315.7142857,77.32142857 +5386,89.78333333,1756,434,,313.5714286,77.5 +5387,89.8,1743,435,,311.25,77.67857143 +5388,89.81666667,1728,437,,308.5714286,78.03571429 +5389,89.83333333,1711,439,,305.5357143,78.39285714 +5390,89.85,1693,441,,302.3214286,78.75 +5391,89.86666667,1674,443,,298.9285714,79.10714286 +5392,89.88333333,1653,445,,295.1785714,79.46428571 +5393,89.9,1630,447,,291.0714286,79.82142857 +5394,89.91666667,1607,449,,286.9642857,80.17857143 +5395,89.93333333,1583,451,,282.6785714,80.53571429 +5396,89.95,1558,452,,278.2142857,80.71428571 +5397,89.96666667,1532,454,,273.5714286,81.07142857 +5398,89.98333333,1505,455,,268.75,81.25 +5399,90,1478,456,,263.9285714,81.42857143 +5400,90.01666667,1451,457,,259.1071429,81.60714286 +5401,90.03333333,1423,458,,254.1071429,81.78571429 +5402,90.05,1396,458,,249.2857143,81.78571429 +5403,90.06666667,1368,458,,244.2857143,81.78571429 +5404,90.08333333,1341,458,,239.4642857,81.78571429 +5405,90.1,1314,458,,234.6428571,81.78571429 +5406,90.11666667,1287,458,,229.8214286,81.78571429 +5407,90.13333333,1262,457,,225.3571429,81.60714286 +5408,90.15,1237,456,,220.8928571,81.42857143 +5409,90.16666667,1212,455,,216.4285714,81.25 +5410,90.18333333,1189,454,,212.3214286,81.07142857 +5411,90.2,1166,453,,208.2142857,80.89285714 +5412,90.21666667,1145,452,,204.4642857,80.71428571 +5413,90.23333333,1125,450,,200.8928571,80.35714286 +5414,90.25,1107,449,,197.6785714,80.17857143 +5415,90.26666667,1090,448,,194.6428571,80 +5416,90.28333333,1075,446,,191.9642857,79.64285714 +5417,90.3,1061,445,,189.4642857,79.46428571 +5418,90.31666667,1048,444,,187.1428571,79.28571429 +5419,90.33333333,1038,443,,185.3571429,79.10714286 +5420,90.35,1029,442,,183.75,78.92857143 +5421,90.36666667,1023,442,,182.6785714,78.92857143 +5422,90.38333333,1017,441,,181.6071429,78.75 +5423,90.4,1014,441,,181.0714286,78.75 +5424,90.41666667,1014,441,,181.0714286,78.75 +5425,90.43333333,1014,441,,181.0714286,78.75 +5426,90.45,1016,441,,181.4285714,78.75 +5427,90.46666667,1021,442,,182.3214286,78.92857143 +5428,90.48333333,1027,442,,183.3928571,78.92857143 +5429,90.5,1036,444,,185,79.28571429 +5430,90.51666667,1046,445,,186.7857143,79.46428571 +5431,90.53333333,1057,446,,188.75,79.64285714 +5432,90.55,1071,447,,191.25,79.82142857 +5433,90.56666667,1086,448,,193.9285714,80 +5434,90.58333333,1102,450,,196.7857143,80.35714286 +5435,90.6,1120,451,,200,80.53571429 +5436,90.61666667,1140,453,,203.5714286,80.89285714 +5437,90.63333333,1160,454,,207.1428571,81.07142857 +5438,90.65,1182,455,,211.0714286,81.25 +5439,90.66666667,1205,456,,215.1785714,81.42857143 +5440,90.68333333,1229,458,,219.4642857,81.78571429 +5441,90.7,1254,459,,223.9285714,81.96428571 +5442,90.71666667,1280,459,,228.5714286,81.96428571 +5443,90.73333333,1306,460,,233.2142857,82.14285714 +5444,90.75,1333,460,,238.0357143,82.14285714 +5445,90.76666667,1359,460,,242.6785714,82.14285714 +5446,90.78333333,1387,460,,247.6785714,82.14285714 +5447,90.8,1414,460,,252.5,82.14285714 +5448,90.81666667,1442,459,,257.5,81.96428571 +5449,90.83333333,1469,459,,262.3214286,81.96428571 +5450,90.85,1496,458,,267.1428571,81.78571429 +5451,90.86666667,1522,456,,271.7857143,81.42857143 +5452,90.88333333,1548,455,,276.4285714,81.25 +5453,90.9,1573,453,,280.8928571,80.89285714 +5454,90.91666667,1598,451,,285.3571429,80.53571429 +5455,90.93333333,1621,449,,289.4642857,80.17857143 +5456,90.95,1643,448,,293.3928571,80 +5457,90.96666667,1665,446,,297.3214286,79.64285714 +5458,90.98333333,1685,443,,300.8928571,79.10714286 +5459,91,1703,441,,304.1071429,78.75 +5460,91.01666667,1720,440,,307.1428571,78.57142857 +5461,91.03333333,1736,438,,310,78.21428571 +5462,91.05,1750,436,,312.5,77.85714286 +5463,91.06666667,1762,434,,314.6428571,77.5 +5464,91.08333333,1773,433,,316.6071429,77.32142857 +5465,91.1,1781,432,,318.0357143,77.14285714 +5466,91.11666667,1788,431,,319.2857143,76.96428571 +5467,91.13333333,1793,430,,320.1785714,76.78571429 +5468,91.15,1796,430,,320.7142857,76.78571429 +5469,91.16666667,1796,430,,320.7142857,76.78571429 +5470,91.18333333,1796,430,,320.7142857,76.78571429 +5471,91.2,1793,430,,320.1785714,76.78571429 +5472,91.21666667,1787,430,,319.1071429,76.78571429 +5473,91.23333333,1781,431,,318.0357143,76.96428571 +5474,91.25,1772,432,,316.4285714,77.14285714 +5475,91.26666667,1761,434,,314.4642857,77.5 +5476,91.28333333,1749,435,,312.3214286,77.67857143 +5477,91.3,1735,437,,309.8214286,78.03571429 +5478,91.31666667,1719,439,,306.9642857,78.39285714 +5479,91.33333333,1702,440,,303.9285714,78.57142857 +5480,91.35,1683,442,,300.5357143,78.92857143 +5481,91.36666667,1662,444,,296.7857143,79.28571429 +5482,91.38333333,1641,446,,293.0357143,79.64285714 +5483,91.4,1618,448,,288.9285714,80 +5484,91.41666667,1595,450,,284.8214286,80.35714286 +5485,91.43333333,1570,451,,280.3571429,80.53571429 +5486,91.45,1545,453,,275.8928571,80.89285714 +5487,91.46666667,1518,455,,271.0714286,81.25 +5488,91.48333333,1492,455,,266.4285714,81.25 +5489,91.5,1465,456,,261.6071429,81.42857143 +5490,91.51666667,1438,457,,256.7857143,81.60714286 +5491,91.53333333,1410,458,,251.7857143,81.78571429 +5492,91.55,1383,458,,246.9642857,81.78571429 +5493,91.56666667,1355,458,,241.9642857,81.78571429 +5494,91.58333333,1328,458,,237.1428571,81.78571429 +5495,91.6,1301,458,,232.3214286,81.78571429 +5496,91.61666667,1275,457,,227.6785714,81.60714286 +5497,91.63333333,1249,456,,223.0357143,81.42857143 +5498,91.65,1224,455,,218.5714286,81.25 +5499,91.66666667,1200,454,,214.2857143,81.07142857 +5500,91.68333333,1178,453,,210.3571429,80.89285714 +5501,91.7,1156,452,,206.4285714,80.71428571 +5502,91.71666667,1136,450,,202.8571429,80.35714286 +5503,91.73333333,1117,449,,199.4642857,80.17857143 +5504,91.75,1099,448,,196.25,80 +5505,91.76666667,1082,446,,193.2142857,79.64285714 +5506,91.78333333,1068,445,,190.7142857,79.46428571 +5507,91.8,1055,444,,188.3928571,79.28571429 +5508,91.81666667,1043,443,,186.25,79.10714286 +5509,91.83333333,1034,442,,184.6428571,78.92857143 +5510,91.85,1026,441,,183.2142857,78.75 +5511,91.86666667,1020,440,,182.1428571,78.57142857 +5512,91.88333333,1016,440,,181.4285714,78.57142857 +5513,91.9,1016,440,,181.4285714,78.57142857 +5514,91.91666667,1016,440,,181.4285714,78.57142857 +5515,91.93333333,1016,440,,181.4285714,78.57142857 +5516,91.95,1020,441,,182.1428571,78.75 +5517,91.96666667,1025,441,,183.0357143,78.75 +5518,91.98333333,1032,442,,184.2857143,78.92857143 +5519,92,1041,443,,185.8928571,79.10714286 +5520,92.01666667,1052,444,,187.8571429,79.28571429 +5521,92.03333333,1064,445,,190,79.46428571 +5522,92.05,1079,446,,192.6785714,79.64285714 +5523,92.06666667,1094,448,,195.3571429,80 +5524,92.08333333,1111,449,,198.3928571,80.17857143 +5525,92.1,1130,450,,201.7857143,80.35714286 +5526,92.11666667,1150,452,,205.3571429,80.71428571 +5527,92.13333333,1171,453,,209.1071429,80.89285714 +5528,92.15,1193,454,,213.0357143,81.07142857 +5529,92.16666667,1216,456,,217.1428571,81.42857143 +5530,92.18333333,1241,457,,221.6071429,81.60714286 +5531,92.2,1266,458,,226.0714286,81.78571429 +5532,92.21666667,1292,459,,230.7142857,81.96428571 +5533,92.23333333,1319,459,,235.5357143,81.96428571 +5534,92.25,1345,459,,240.1785714,81.96428571 +5535,92.26666667,1372,459,,245,81.96428571 +5536,92.28333333,1399,459,,249.8214286,81.96428571 +5537,92.3,1427,458,,254.8214286,81.78571429 +5538,92.31666667,1454,458,,259.6428571,81.78571429 +5539,92.33333333,1481,457,,264.4642857,81.60714286 +5540,92.35,1507,456,,269.1071429,81.42857143 +5541,92.36666667,1533,454,,273.75,81.07142857 +5542,92.38333333,1559,453,,278.3928571,80.89285714 +5543,92.4,1584,451,,282.8571429,80.53571429 +5544,92.41666667,1608,450,,287.1428571,80.35714286 +5545,92.43333333,1631,447,,291.25,79.82142857 +5546,92.45,1653,446,,295.1785714,79.64285714 +5547,92.46666667,1673,444,,298.75,79.28571429 +5548,92.48333333,1693,442,,302.3214286,78.92857143 +5549,92.5,1711,440,,305.5357143,78.57142857 +5550,92.51666667,1727,438,,308.3928571,78.21428571 +5551,92.53333333,1742,436,,311.0714286,77.85714286 +5552,92.55,1755,434,,313.3928571,77.5 +5553,92.56666667,1766,433,,315.3571429,77.32142857 +5554,92.58333333,1776,432,,317.1428571,77.14285714 +5555,92.6,1783,431,,318.3928571,76.96428571 +5556,92.61666667,1789,430,,319.4642857,76.78571429 +5557,92.63333333,1793,429,,320.1785714,76.60714286 +5558,92.65,1793,429,,320.1785714,76.60714286 +5559,92.66666667,1793,429,,320.1785714,76.60714286 +5560,92.68333333,1793,429,,320.1785714,76.60714286 +5561,92.7,1789,430,,319.4642857,76.78571429 +5562,92.71666667,1783,430,,318.3928571,76.78571429 +5563,92.73333333,1775,431,,316.9642857,76.96428571 +5564,92.75,1765,433,,315.1785714,77.32142857 +5565,92.76666667,1754,434,,313.2142857,77.5 +5566,92.78333333,1741,435,,310.8928571,77.67857143 +5567,92.8,1726,437,,308.2142857,78.03571429 +5568,92.81666667,1709,439,,305.1785714,78.39285714 +5569,92.83333333,1691,441,,301.9642857,78.75 +5570,92.85,1671,443,,298.3928571,79.10714286 +5571,92.86666667,1651,445,,294.8214286,79.46428571 +5572,92.88333333,1628,447,,290.7142857,79.82142857 +5573,92.9,1605,449,,286.6071429,80.17857143 +5574,92.91666667,1581,451,,282.3214286,80.53571429 +5575,92.93333333,1557,452,,278.0357143,80.71428571 +5576,92.95,1531,454,,273.3928571,81.07142857 +5577,92.96666667,1505,455,,268.75,81.25 +5578,92.98333333,1478,456,,263.9285714,81.42857143 +5579,93,1451,457,,259.1071429,81.60714286 +5580,93.01666667,1424,457,,254.2857143,81.60714286 +5581,93.03333333,1397,458,,249.4642857,81.78571429 +5582,93.05,1369,458,,244.4642857,81.78571429 +5583,93.06666667,1342,458,,239.6428571,81.78571429 +5584,93.08333333,1316,458,,235,81.78571429 +5585,93.1,1289,457,,230.1785714,81.60714286 +5586,93.11666667,1263,457,,225.5357143,81.60714286 +5587,93.13333333,1238,456,,221.0714286,81.42857143 +5588,93.15,1214,455,,216.7857143,81.25 +5589,93.16666667,1191,454,,212.6785714,81.07142857 +5590,93.18333333,1168,452,,208.5714286,80.71428571 +5591,93.2,1147,451,,204.8214286,80.53571429 +5592,93.21666667,1128,450,,201.4285714,80.35714286 +5593,93.23333333,1109,448,,198.0357143,80 +5594,93.25,1092,447,,195,79.82142857 +5595,93.26666667,1077,446,,192.3214286,79.64285714 +5596,93.28333333,1063,444,,189.8214286,79.28571429 +5597,93.3,1051,443,,187.6785714,79.10714286 +5598,93.31666667,1040,443,,185.7142857,79.10714286 +5599,93.33333333,1031,442,,184.1071429,78.92857143 +5600,93.35,1025,441,,183.0357143,78.75 +5601,93.36666667,1020,440,,182.1428571,78.57142857 +5602,93.38333333,1016,440,,181.4285714,78.57142857 +5603,93.4,1016,440,,181.4285714,78.57142857 +5604,93.41666667,1016,440,,181.4285714,78.57142857 +5605,93.43333333,1018,441,,181.7857143,78.75 +5606,93.45,1022,441,,182.5,78.75 +5607,93.46666667,1029,441,,183.75,78.75 +5608,93.48333333,1037,442,,185.1785714,78.92857143 +5609,93.5,1047,443,,186.9642857,79.10714286 +5610,93.51666667,1058,444,,188.9285714,79.28571429 +5611,93.53333333,1071,446,,191.25,79.64285714 +5612,93.55,1086,447,,193.9285714,79.82142857 +5613,93.56666667,1102,449,,196.7857143,80.17857143 +5614,93.58333333,1120,450,,200,80.35714286 +5615,93.6,1139,452,,203.3928571,80.71428571 +5616,93.61666667,1160,453,,207.1428571,80.89285714 +5617,93.63333333,1182,454,,211.0714286,81.07142857 +5618,93.65,1204,455,,215,81.25 +5619,93.66666667,1228,457,,219.2857143,81.60714286 +5620,93.68333333,1253,458,,223.75,81.78571429 +5621,93.7,1278,459,,228.2142857,81.96428571 +5622,93.71666667,1305,459,,233.0357143,81.96428571 +5623,93.73333333,1331,460,,237.6785714,82.14285714 +5624,93.75,1358,460,,242.5,82.14285714 +5625,93.76666667,1385,460,,247.3214286,82.14285714 +5626,93.78333333,1412,459,,252.1428571,81.96428571 +5627,93.8,1440,458,,257.1428571,81.78571429 +5628,93.81666667,1467,457,,261.9642857,81.60714286 +5629,93.83333333,1494,457,,266.7857143,81.60714286 +5630,93.85,1521,456,,271.6071429,81.42857143 +5631,93.86666667,1546,454,,276.0714286,81.07142857 +5632,93.88333333,1572,453,,280.7142857,80.89285714 +5633,93.9,1596,451,,285,80.53571429 +5634,93.91666667,1619,449,,289.1071429,80.17857143 +5635,93.93333333,1642,447,,293.2142857,79.82142857 +5636,93.95,1663,445,,296.9642857,79.46428571 +5637,93.96666667,1683,443,,300.5357143,79.10714286 +5638,93.98333333,1702,442,,303.9285714,78.92857143 +5639,94,1719,439,,306.9642857,78.39285714 +5640,94.01666667,1734,438,,309.6428571,78.21428571 +5641,94.03333333,1748,436,,312.1428571,77.85714286 +5642,94.05,1761,435,,314.4642857,77.67857143 +5643,94.06666667,1771,433,,316.25,77.32142857 +5644,94.08333333,1779,432,,317.6785714,77.14285714 +5645,94.1,1786,431,,318.9285714,76.96428571 +5646,94.11666667,1791,431,,319.8214286,76.96428571 +5647,94.13333333,1794,430,,320.3571429,76.78571429 +5648,94.15,1794,430,,320.3571429,76.78571429 +5649,94.16666667,1794,430,,320.3571429,76.78571429 +5650,94.18333333,1791,431,,319.8214286,76.96428571 +5651,94.2,1786,431,,318.9285714,76.96428571 +5652,94.21666667,1779,432,,317.6785714,77.14285714 +5653,94.23333333,1771,433,,316.25,77.32142857 +5654,94.25,1760,434,,314.2857143,77.5 +5655,94.26666667,1748,436,,312.1428571,77.85714286 +5656,94.28333333,1734,438,,309.6428571,78.21428571 +5657,94.3,1719,439,,306.9642857,78.39285714 +5658,94.31666667,1701,441,,303.75,78.75 +5659,94.33333333,1683,443,,300.5357143,79.10714286 +5660,94.35,1663,445,,296.9642857,79.46428571 +5661,94.36666667,1642,447,,293.2142857,79.82142857 +5662,94.38333333,1619,449,,289.1071429,80.17857143 +5663,94.4,1596,451,,285,80.53571429 +5664,94.41666667,1571,452,,280.5357143,80.71428571 +5665,94.43333333,1546,454,,276.0714286,81.07142857 +5666,94.45,1520,455,,271.4285714,81.25 +5667,94.46666667,1494,456,,266.7857143,81.42857143 +5668,94.48333333,1467,457,,261.9642857,81.60714286 +5669,94.5,1440,458,,257.1428571,81.78571429 +5670,94.51666667,1412,459,,252.1428571,81.96428571 +5671,94.53333333,1385,459,,247.3214286,81.96428571 +5672,94.55,1358,459,,242.5,81.96428571 +5673,94.56666667,1331,459,,237.6785714,81.96428571 +5674,94.58333333,1305,459,,233.0357143,81.96428571 +5675,94.6,1278,459,,228.2142857,81.96428571 +5676,94.61666667,1253,457,,223.75,81.60714286 +5677,94.63333333,1228,456,,219.2857143,81.42857143 +5678,94.65,1204,456,,215,81.42857143 +5679,94.66666667,1182,454,,211.0714286,81.07142857 +5680,94.68333333,1160,453,,207.1428571,80.89285714 +5681,94.7,1139,451,,203.3928571,80.53571429 +5682,94.71666667,1120,450,,200,80.35714286 +5683,94.73333333,1102,449,,196.7857143,80.17857143 +5684,94.75,1086,448,,193.9285714,80 +5685,94.76666667,1071,446,,191.25,79.64285714 +5686,94.78333333,1058,445,,188.9285714,79.46428571 +5687,94.8,1047,444,,186.9642857,79.28571429 +5688,94.81666667,1037,443,,185.1785714,79.10714286 +5689,94.83333333,1029,442,,183.75,78.92857143 +5690,94.85,1023,441,,182.6785714,78.75 +5691,94.86666667,1019,441,,181.9642857,78.75 +5692,94.88333333,1017,441,,181.6071429,78.75 +5693,94.9,1017,441,,181.6071429,78.75 +5694,94.91666667,1017,441,,181.6071429,78.75 +5695,94.93333333,1021,441,,182.3214286,78.75 +5696,94.95,1026,442,,183.2142857,78.92857143 +5697,94.96666667,1033,442,,184.4642857,78.92857143 +5698,94.98333333,1041,444,,185.8928571,79.28571429 +5699,95,1052,444,,187.8571429,79.28571429 +5700,95.01666667,1064,446,,190,79.64285714 +5701,95.03333333,1078,447,,192.5,79.82142857 +5702,95.05,1094,448,,195.3571429,80 +5703,95.06666667,1111,450,,198.3928571,80.35714286 +5704,95.08333333,1129,451,,201.6071429,80.53571429 +5705,95.1,1149,453,,205.1785714,80.89285714 +5706,95.11666667,1170,454,,208.9285714,81.07142857 +5707,95.13333333,1192,455,,212.8571429,81.25 +5708,95.15,1215,456,,216.9642857,81.42857143 +5709,95.16666667,1239,457,,221.25,81.60714286 +5710,95.18333333,1265,458,,225.8928571,81.78571429 +5711,95.2,1290,459,,230.3571429,81.96428571 +5712,95.21666667,1317,459,,235.1785714,81.96428571 +5713,95.23333333,1343,459,,239.8214286,81.96428571 +5714,95.25,1370,459,,244.6428571,81.96428571 +5715,95.26666667,1397,459,,249.4642857,81.96428571 +5716,95.28333333,1425,458,,254.4642857,81.78571429 +5717,95.3,1452,457,,259.2857143,81.60714286 +5718,95.31666667,1478,457,,263.9285714,81.60714286 +5719,95.33333333,1505,455,,268.75,81.25 +5720,95.35,1531,454,,273.3928571,81.07142857 +5721,95.36666667,1556,452,,277.8571429,80.71428571 +5722,95.38333333,1581,451,,282.3214286,80.53571429 +5723,95.4,1605,449,,286.6071429,80.17857143 +5724,95.41666667,1628,447,,290.7142857,79.82142857 +5725,95.43333333,1650,445,,294.6428571,79.46428571 +5726,95.45,1671,443,,298.3928571,79.10714286 +5727,95.46666667,1690,442,,301.7857143,78.92857143 +5728,95.48333333,1708,440,,305,78.57142857 +5729,95.5,1724,438,,307.8571429,78.21428571 +5730,95.51666667,1739,436,,310.5357143,77.85714286 +5731,95.53333333,1753,435,,313.0357143,77.67857143 +5732,95.55,1764,433,,315,77.32142857 +5733,95.56666667,1773,432,,316.6071429,77.14285714 +5734,95.58333333,1781,431,,318.0357143,76.96428571 +5735,95.6,1787,430,,319.1071429,76.78571429 +5736,95.61666667,1791,429,,319.8214286,76.60714286 +5737,95.63333333,1791,429,,319.8214286,76.60714286 +5738,95.65,1791,429,,319.8214286,76.60714286 +5739,95.66666667,1791,429,,319.8214286,76.60714286 +5740,95.68333333,1787,430,,319.1071429,76.78571429 +5741,95.7,1782,430,,318.2142857,76.78571429 +5742,95.71666667,1774,431,,316.7857143,76.96428571 +5743,95.73333333,1765,433,,315.1785714,77.32142857 +5744,95.75,1754,434,,313.2142857,77.5 +5745,95.76666667,1741,435,,310.8928571,77.67857143 +5746,95.78333333,1726,437,,308.2142857,78.03571429 +5747,95.8,1710,439,,305.3571429,78.39285714 +5748,95.81666667,1692,441,,302.1428571,78.75 +5749,95.83333333,1673,442,,298.75,78.92857143 +5750,95.85,1652,444,,295,79.28571429 +5751,95.86666667,1631,446,,291.25,79.64285714 +5752,95.88333333,1608,448,,287.1428571,80 +5753,95.9,1584,450,,282.8571429,80.35714286 +5754,95.91666667,1560,452,,278.5714286,80.71428571 +5755,95.93333333,1534,453,,273.9285714,80.89285714 +5756,95.95,1508,455,,269.2857143,81.25 +5757,95.96666667,1481,456,,264.4642857,81.42857143 +5758,95.98333333,1454,457,,259.6428571,81.60714286 +5759,96,1427,457,,254.8214286,81.60714286 +5760,96.01666667,1400,458,,250,81.78571429 +5761,96.03333333,1372,458,,245,81.78571429 +5762,96.05,1345,458,,240.1785714,81.78571429 +5763,96.06666667,1319,458,,235.5357143,81.78571429 +5764,96.08333333,1293,458,,230.8928571,81.78571429 +5765,96.1,1267,457,,226.25,81.60714286 +5766,96.11666667,1242,456,,221.7857143,81.42857143 +5767,96.13333333,1217,455,,217.3214286,81.25 +5768,96.15,1194,454,,213.2142857,81.07142857 +5769,96.16666667,1172,453,,209.2857143,80.89285714 +5770,96.18333333,1151,451,,205.5357143,80.53571429 +5771,96.2,1131,450,,201.9642857,80.35714286 +5772,96.21666667,1113,449,,198.75,80.17857143 +5773,96.23333333,1096,447,,195.7142857,79.82142857 +5774,96.25,1080,446,,192.8571429,79.64285714 +5775,96.26666667,1067,445,,190.5357143,79.46428571 +5776,96.28333333,1054,444,,188.2142857,79.28571429 +5777,96.3,1044,443,,186.4285714,79.10714286 +5778,96.31666667,1035,442,,184.8214286,78.92857143 +5779,96.33333333,1028,441,,183.5714286,78.75 +5780,96.35,1023,441,,182.6785714,78.75 +5781,96.36666667,1020,441,,182.1428571,78.75 +5782,96.38333333,1020,441,,182.1428571,78.75 +5783,96.4,1020,441,,182.1428571,78.75 +5784,96.41666667,1021,441,,182.3214286,78.75 +5785,96.43333333,1025,441,,183.0357143,78.75 +5786,96.45,1030,442,,183.9285714,78.92857143 +5787,96.46666667,1038,442,,185.3571429,78.92857143 +5788,96.48333333,1047,444,,186.9642857,79.28571429 +5789,96.5,1058,444,,188.9285714,79.28571429 +5790,96.51666667,1071,446,,191.25,79.64285714 +5791,96.53333333,1086,447,,193.9285714,79.82142857 +5792,96.55,1102,448,,196.7857143,80 +5793,96.56666667,1120,450,,200,80.35714286 +5794,96.58333333,1139,451,,203.3928571,80.53571429 +5795,96.6,1159,453,,206.9642857,80.89285714 +5796,96.61666667,1180,454,,210.7142857,81.07142857 +5797,96.63333333,1202,455,,214.6428571,81.25 +5798,96.65,1225,456,,218.75,81.42857143 +5799,96.66666667,1250,457,,223.2142857,81.60714286 +5800,96.68333333,1276,458,,227.8571429,81.78571429 +5801,96.7,1301,459,,232.3214286,81.96428571 +5802,96.71666667,1328,459,,237.1428571,81.96428571 +5803,96.73333333,1355,459,,241.9642857,81.96428571 +5804,96.75,1382,459,,246.7857143,81.96428571 +5805,96.76666667,1409,459,,251.6071429,81.96428571 +5806,96.78333333,1436,458,,256.4285714,81.78571429 +5807,96.8,1463,457,,261.25,81.60714286 +5808,96.81666667,1490,456,,266.0714286,81.42857143 +5809,96.83333333,1516,455,,270.7142857,81.25 +5810,96.85,1542,454,,275.3571429,81.07142857 +5811,96.86666667,1567,452,,279.8214286,80.71428571 +5812,96.88333333,1592,451,,284.2857143,80.53571429 +5813,96.9,1615,449,,288.3928571,80.17857143 +5814,96.91666667,1637,447,,292.3214286,79.82142857 +5815,96.93333333,1658,445,,296.0714286,79.46428571 +5816,96.95,1678,443,,299.6428571,79.10714286 +5817,96.96666667,1697,441,,303.0357143,78.75 +5818,96.98333333,1714,439,,306.0714286,78.39285714 +5819,97,1730,438,,308.9285714,78.21428571 +5820,97.01666667,1744,436,,311.4285714,77.85714286 +5821,97.03333333,1756,434,,313.5714286,77.5 +5822,97.05,1766,433,,315.3571429,77.32142857 +5823,97.06666667,1775,432,,316.9642857,77.14285714 +5824,97.08333333,1782,431,,318.2142857,76.96428571 +5825,97.1,1787,430,,319.1071429,76.78571429 +5826,97.11666667,1790,430,,319.6428571,76.78571429 +5827,97.13333333,1790,430,,319.6428571,76.78571429 +5828,97.15,1790,430,,319.6428571,76.78571429 +5829,97.16666667,1788,430,,319.2857143,76.78571429 +5830,97.18333333,1783,430,,318.3928571,76.78571429 +5831,97.2,1777,431,,317.3214286,76.96428571 +5832,97.21666667,1769,432,,315.8928571,77.14285714 +5833,97.23333333,1758,434,,313.9285714,77.5 +5834,97.25,1747,435,,311.9642857,77.67857143 +5835,97.26666667,1733,437,,309.4642857,78.03571429 +5836,97.28333333,1718,438,,306.7857143,78.21428571 +5837,97.3,1701,440,,303.75,78.57142857 +5838,97.31666667,1683,442,,300.5357143,78.92857143 +5839,97.33333333,1663,444,,296.9642857,79.28571429 +5840,97.35,1642,446,,293.2142857,79.64285714 +5841,97.36666667,1620,448,,289.2857143,80 +5842,97.38333333,1597,450,,285.1785714,80.35714286 +5843,97.4,1573,452,,280.8928571,80.71428571 +5844,97.41666667,1548,453,,276.4285714,80.89285714 +5845,97.43333333,1522,455,,271.7857143,81.25 +5846,97.45,1496,456,,267.1428571,81.42857143 +5847,97.46666667,1470,457,,262.5,81.60714286 +5848,97.48333333,1443,458,,257.6785714,81.78571429 +5849,97.5,1416,458,,252.8571429,81.78571429 +5850,97.51666667,1389,459,,248.0357143,81.96428571 +5851,97.53333333,1362,459,,243.2142857,81.96428571 +5852,97.55,1335,459,,238.3928571,81.96428571 +5853,97.56666667,1309,459,,233.75,81.96428571 +5854,97.58333333,1283,458,,229.1071429,81.78571429 +5855,97.6,1258,457,,224.6428571,81.60714286 +5856,97.61666667,1233,457,,220.1785714,81.60714286 +5857,97.63333333,1209,455,,215.8928571,81.25 +5858,97.65,1186,454,,211.7857143,81.07142857 +5859,97.66666667,1165,453,,208.0357143,80.89285714 +5860,97.68333333,1145,452,,204.4642857,80.71428571 +5861,97.7,1126,451,,201.0714286,80.53571429 +5862,97.71666667,1108,449,,197.8571429,80.17857143 +5863,97.73333333,1091,448,,194.8214286,80 +5864,97.75,1077,447,,192.3214286,79.82142857 +5865,97.76666667,1064,446,,190,79.64285714 +5866,97.78333333,1052,445,,187.8571429,79.46428571 +5867,97.8,1042,443,,186.0714286,79.10714286 +5868,97.81666667,1034,443,,184.6428571,79.10714286 +5869,97.83333333,1028,442,,183.5714286,78.92857143 +5870,97.85,1023,442,,182.6785714,78.92857143 +5871,97.86666667,1022,442,,182.5,78.92857143 +5872,97.88333333,1022,442,,182.5,78.92857143 +5873,97.9,1022,442,,182.5,78.92857143 +5874,97.91666667,1025,442,,183.0357143,78.92857143 +5875,97.93333333,1029,443,,183.75,79.10714286 +5876,97.95,1036,444,,185,79.28571429 +5877,97.96666667,1045,444,,186.6071429,79.28571429 +5878,97.98333333,1055,445,,188.3928571,79.46428571 +5879,98,1067,446,,190.5357143,79.64285714 +5880,98.01666667,1080,448,,192.8571429,80 +5881,98.03333333,1096,449,,195.7142857,80.17857143 +5882,98.05,1112,451,,198.5714286,80.53571429 +5883,98.06666667,1130,452,,201.7857143,80.71428571 +5884,98.08333333,1150,453,,205.3571429,80.89285714 +5885,98.1,1171,454,,209.1071429,81.07142857 +5886,98.11666667,1192,456,,212.8571429,81.42857143 +5887,98.13333333,1215,457,,216.9642857,81.60714286 +5888,98.15,1239,458,,221.25,81.78571429 +5889,98.16666667,1264,459,,225.7142857,81.96428571 +5890,98.18333333,1289,460,,230.1785714,82.14285714 +5891,98.2,1315,460,,234.8214286,82.14285714 +5892,98.21666667,1342,460,,239.6428571,82.14285714 +5893,98.23333333,1368,460,,244.2857143,82.14285714 +5894,98.25,1395,460,,249.1071429,82.14285714 +5895,98.26666667,1422,460,,253.9285714,82.14285714 +5896,98.28333333,1449,459,,258.75,81.96428571 +5897,98.3,1476,458,,263.5714286,81.78571429 +5898,98.31666667,1502,457,,268.2142857,81.60714286 +5899,98.33333333,1528,455,,272.8571429,81.25 +5900,98.35,1553,454,,277.3214286,81.07142857 +5901,98.36666667,1578,452,,281.7857143,80.71428571 +5902,98.38333333,1601,451,,285.8928571,80.53571429 +5903,98.4,1624,449,,290,80.17857143 +5904,98.41666667,1646,447,,293.9285714,79.82142857 +5905,98.43333333,1666,445,,297.5,79.46428571 +5906,98.45,1686,443,,301.0714286,79.10714286 +5907,98.46666667,1704,441,,304.2857143,78.75 +5908,98.48333333,1720,440,,307.1428571,78.57142857 +5909,98.5,1735,438,,309.8214286,78.21428571 +5910,98.51666667,1748,436,,312.1428571,77.85714286 +5911,98.53333333,1759,435,,314.1071429,77.67857143 +5912,98.55,1769,433,,315.8928571,77.32142857 +5913,98.56666667,1777,432,,317.3214286,77.14285714 +5914,98.58333333,1783,432,,318.3928571,77.14285714 +5915,98.6,1787,431,,319.1071429,76.96428571 +5916,98.61666667,1788,431,,319.2857143,76.96428571 +5917,98.63333333,1788,431,,319.2857143,76.96428571 +5918,98.65,1788,431,,319.2857143,76.96428571 +5919,98.66666667,1784,431,,318.5714286,76.96428571 +5920,98.68333333,1779,432,,317.6785714,77.14285714 +5921,98.7,1772,433,,316.4285714,77.32142857 +5922,98.71666667,1763,434,,314.8214286,77.5 +5923,98.73333333,1751,435,,312.6785714,77.67857143 +5924,98.75,1738,437,,310.3571429,78.03571429 +5925,98.76666667,1724,438,,307.8571429,78.21428571 +5926,98.78333333,1708,440,,305,78.57142857 +5927,98.8,1691,442,,301.9642857,78.92857143 +5928,98.81666667,1672,444,,298.5714286,79.28571429 +5929,98.83333333,1652,446,,295,79.64285714 +5930,98.85,1631,447,,291.25,79.82142857 +5931,98.86666667,1608,449,,287.1428571,80.17857143 +5932,98.88333333,1585,451,,283.0357143,80.53571429 +5933,98.9,1560,452,,278.5714286,80.71428571 +5934,98.91666667,1535,454,,274.1071429,81.07142857 +5935,98.93333333,1509,455,,269.4642857,81.25 +5936,98.95,1483,456,,264.8214286,81.42857143 +5937,98.96666667,1456,457,,260,81.60714286 +5938,98.98333333,1429,458,,255.1785714,81.78571429 +5939,99,1402,458,,250.3571429,81.78571429 +5940,99.01666667,1375,459,,245.5357143,81.96428571 +5941,99.03333333,1349,459,,240.8928571,81.96428571 +5942,99.05,1322,459,,236.0714286,81.96428571 +5943,99.06666667,1296,459,,231.4285714,81.96428571 +5944,99.08333333,1270,458,,226.7857143,81.78571429 +5945,99.1,1245,457,,222.3214286,81.60714286 +5946,99.11666667,1221,456,,218.0357143,81.42857143 +5947,99.13333333,1198,455,,213.9285714,81.25 +5948,99.15,1176,453,,210,80.89285714 +5949,99.16666667,1154,452,,206.0714286,80.71428571 +5950,99.18333333,1135,451,,202.6785714,80.53571429 +5951,99.2,1116,450,,199.2857143,80.35714286 +5952,99.21666667,1099,448,,196.25,80 +5953,99.23333333,1084,447,,193.5714286,79.82142857 +5954,99.25,1070,446,,191.0714286,79.64285714 +5955,99.26666667,1058,444,,188.9285714,79.28571429 +5956,99.28333333,1047,444,,186.9642857,79.28571429 +5957,99.3,1038,443,,185.3571429,79.10714286 +5958,99.31666667,1031,442,,184.1071429,78.92857143 +5959,99.33333333,1026,441,,183.2142857,78.75 +5960,99.35,1023,441,,182.6785714,78.75 +5961,99.36666667,1023,441,,182.6785714,78.75 +5962,99.38333333,1023,441,,182.6785714,78.75 +5963,99.4,1024,441,,182.8571429,78.75 +5964,99.41666667,1028,442,,183.5714286,78.92857143 +5965,99.43333333,1033,442,,184.4642857,78.92857143 +5966,99.45,1041,443,,185.8928571,79.10714286 +5967,99.46666667,1050,444,,187.5,79.28571429 +5968,99.48333333,1061,445,,189.4642857,79.46428571 +5969,99.5,1074,446,,191.7857143,79.64285714 +5970,99.51666667,1088,447,,194.2857143,79.82142857 +5971,99.53333333,1104,449,,197.1428571,80.17857143 +5972,99.55,1122,450,,200.3571429,80.35714286 +5973,99.56666667,1140,451,,203.5714286,80.53571429 +5974,99.58333333,1160,452,,207.1428571,80.71428571 +5975,99.6,1181,454,,210.8928571,81.07142857 +5976,99.61666667,1204,455,,215,81.25 +5977,99.63333333,1227,456,,219.1071429,81.42857143 +5978,99.65,1251,457,,223.3928571,81.60714286 +5979,99.66666667,1276,458,,227.8571429,81.78571429 +5980,99.68333333,1301,459,,232.3214286,81.96428571 +5981,99.7,1327,459,,236.9642857,81.96428571 +5982,99.71666667,1354,459,,241.7857143,81.96428571 +5983,99.73333333,1380,459,,246.4285714,81.96428571 +5984,99.75,1407,459,,251.25,81.96428571 +5985,99.76666667,1434,458,,256.0714286,81.78571429 +5986,99.78333333,1461,457,,260.8928571,81.60714286 +5987,99.8,1487,456,,265.5357143,81.42857143 +5988,99.81666667,1513,455,,270.1785714,81.25 +5989,99.83333333,1539,454,,274.8214286,81.07142857 +5990,99.85,1563,452,,279.1071429,80.71428571 +5991,99.86666667,1588,451,,283.5714286,80.53571429 +5992,99.88333333,1611,449,,287.6785714,80.17857143 +5993,99.9,1633,447,,291.6071429,79.82142857 +5994,99.91666667,1654,445,,295.3571429,79.46428571 +5995,99.93333333,1674,443,,298.9285714,79.10714286 +5996,99.95,1693,441,,302.3214286,78.75 +5997,99.96666667,1710,440,,305.3571429,78.57142857 +5998,99.98333333,1726,438,,308.2142857,78.21428571 +5999,100,1740,436,,310.7142857,77.85714286 +6000,100.0166667,1752,435,,312.8571429,77.67857143 +6001,100.0333333,1763,434,,314.8214286,77.5 +6002,100.05,1771,433,,316.25,77.32142857 +6003,100.0666667,1779,432,,317.6785714,77.14285714 +6004,100.0833333,1784,431,,318.5714286,76.96428571 +6005,100.1,1787,430,,319.1071429,76.78571429 +6006,100.1166667,1787,430,,319.1071429,76.78571429 +6007,100.1333333,1787,430,,319.1071429,76.78571429 +6008,100.15,1785,430,,318.75,76.78571429 +6009,100.1666667,1780,431,,317.8571429,76.96428571 +6010,100.1833333,1774,432,,316.7857143,77.14285714 +6011,100.2,1766,433,,315.3571429,77.32142857 +6012,100.2166667,1756,434,,313.5714286,77.5 +6013,100.2333333,1744,436,,311.4285714,77.85714286 +6014,100.25,1731,437,,309.1071429,78.03571429 +6015,100.2666667,1716,439,,306.4285714,78.39285714 +6016,100.2833333,1699,441,,303.3928571,78.75 +6017,100.3,1681,443,,300.1785714,79.10714286 +6018,100.3166667,1661,445,,296.6071429,79.46428571 +6019,100.3333333,1641,447,,293.0357143,79.82142857 +6020,100.35,1618,448,,288.9285714,80 +6021,100.3666667,1595,450,,284.8214286,80.35714286 +6022,100.3833333,1571,452,,280.5357143,80.71428571 +6023,100.4,1547,454,,276.25,81.07142857 +6024,100.4166667,1521,455,,271.6071429,81.25 +6025,100.4333333,1495,456,,266.9642857,81.42857143 +6026,100.45,1469,457,,262.3214286,81.60714286 +6027,100.4666667,1442,458,,257.5,81.78571429 +6028,100.4833333,1415,458,,252.6785714,81.78571429 +6029,100.5,1389,459,,248.0357143,81.96428571 +6030,100.5166667,1362,459,,243.2142857,81.96428571 +6031,100.5333333,1335,459,,238.3928571,81.96428571 +6032,100.55,1309,459,,233.75,81.96428571 +6033,100.5666667,1283,458,,229.1071429,81.78571429 +6034,100.5833333,1259,457,,224.8214286,81.60714286 +6035,100.6,1234,456,,220.3571429,81.42857143 +6036,100.6166667,1210,455,,216.0714286,81.25 +6037,100.6333333,1188,454,,212.1428571,81.07142857 +6038,100.65,1166,453,,208.2142857,80.89285714 +6039,100.6666667,1146,452,,204.6428571,80.71428571 +6040,100.6833333,1127,450,,201.25,80.35714286 +6041,100.7,1109,449,,198.0357143,80.17857143 +6042,100.7166667,1093,448,,195.1785714,80 +6043,100.7333333,1078,446,,192.5,79.64285714 +6044,100.75,1065,445,,190.1785714,79.46428571 +6045,100.7666667,1053,444,,188.0357143,79.28571429 +6046,100.7833333,1044,443,,186.4285714,79.10714286 +6047,100.8,1036,442,,185,78.92857143 +6048,100.8166667,1029,442,,183.75,78.92857143 +6049,100.8333333,1025,441,,183.0357143,78.75 +6050,100.85,1023,441,,182.6785714,78.75 +6051,100.8666667,1023,441,,182.6785714,78.75 +6052,100.8833333,1023,441,,182.6785714,78.75 +6053,100.9,1026,441,,183.2142857,78.75 +6054,100.9166667,1031,442,,184.1071429,78.92857143 +6055,100.9333333,1037,442,,185.1785714,78.92857143 +6056,100.95,1045,443,,186.6071429,79.10714286 +6057,100.9666667,1056,444,,188.5714286,79.28571429 +6058,100.9833333,1067,445,,190.5357143,79.46428571 +6059,101,1081,447,,193.0357143,79.82142857 +6060,101.0166667,1096,448,,195.7142857,80 +6061,101.0333333,1112,449,,198.5714286,80.17857143 +6062,101.05,1130,451,,201.7857143,80.53571429 +6063,101.0666667,1149,452,,205.1785714,80.71428571 +6064,101.0833333,1170,453,,208.9285714,80.89285714 +6065,101.1,1191,455,,212.6785714,81.25 +6066,101.1166667,1214,456,,216.7857143,81.42857143 +6067,101.1333333,1238,457,,221.0714286,81.60714286 +6068,101.15,1263,458,,225.5357143,81.78571429 +6069,101.1666667,1287,459,,229.8214286,81.96428571 +6070,101.1833333,1314,459,,234.6428571,81.96428571 +6071,101.2,1340,459,,239.2857143,81.96428571 +6072,101.2166667,1367,459,,244.1071429,81.96428571 +6073,101.2333333,1393,459,,248.75,81.96428571 +6074,101.25,1420,459,,253.5714286,81.96428571 +6075,101.2666667,1447,458,,258.3928571,81.78571429 +6076,101.2833333,1474,457,,263.2142857,81.60714286 +6077,101.3,1500,456,,267.8571429,81.42857143 +6078,101.3166667,1526,455,,272.5,81.25 +6079,101.3333333,1551,454,,276.9642857,81.07142857 +6080,101.35,1575,452,,281.25,80.71428571 +6081,101.3666667,1599,450,,285.5357143,80.35714286 +6082,101.3833333,1622,449,,289.6428571,80.17857143 +6083,101.4,1644,447,,293.5714286,79.82142857 +6084,101.4166667,1664,445,,297.1428571,79.46428571 +6085,101.4333333,1684,443,,300.7142857,79.10714286 +6086,101.45,1702,441,,303.9285714,78.75 +6087,101.4666667,1718,439,,306.7857143,78.39285714 +6088,101.4833333,1733,437,,309.4642857,78.03571429 +6089,101.5,1746,437,,311.7857143,78.03571429 +6090,101.5166667,1758,435,,313.9285714,77.67857143 +6091,101.5333333,1767,434,,315.5357143,77.5 +6092,101.55,1775,433,,316.9642857,77.32142857 +6093,101.5666667,1781,432,,318.0357143,77.14285714 +6094,101.5833333,1786,432,,318.9285714,77.14285714 +6095,101.6,1787,431,,319.1071429,76.96428571 +6096,101.6166667,1787,431,,319.1071429,76.96428571 +6097,101.6333333,1787,431,,319.1071429,76.96428571 +6098,101.65,1783,432,,318.3928571,77.14285714 +6099,101.6666667,1778,432,,317.5,77.14285714 +6100,101.6833333,1771,433,,316.25,77.32142857 +6101,101.7,1762,434,,314.6428571,77.5 +6102,101.7166667,1751,436,,312.6785714,77.85714286 +6103,101.7333333,1738,437,,310.3571429,78.03571429 +6104,101.75,1724,439,,307.8571429,78.39285714 +6105,101.7666667,1709,441,,305.1785714,78.75 +6106,101.7833333,1691,442,,301.9642857,78.92857143 +6107,101.8,1673,444,,298.75,79.28571429 +6108,101.8166667,1653,446,,295.1785714,79.64285714 +6109,101.8333333,1632,448,,291.4285714,80 +6110,101.85,1609,450,,287.3214286,80.35714286 +6111,101.8666667,1586,452,,283.2142857,80.71428571 +6112,101.8833333,1562,453,,278.9285714,80.89285714 +6113,101.9,1537,454,,274.4642857,81.07142857 +6114,101.9166667,1511,456,,269.8214286,81.42857143 +6115,101.9333333,1485,457,,265.1785714,81.60714286 +6116,101.95,1458,458,,260.3571429,81.78571429 +6117,101.9666667,1432,459,,255.7142857,81.96428571 +6118,101.9833333,1405,459,,250.8928571,81.96428571 +6119,102,1378,460,,246.0714286,82.14285714 +6120,102.0166667,1351,460,,241.25,82.14285714 +6121,102.0333333,1325,460,,236.6071429,82.14285714 +6122,102.05,1299,460,,231.9642857,82.14285714 +6123,102.0666667,1273,459,,227.3214286,81.96428571 +6124,102.0833333,1249,458,,223.0357143,81.78571429 +6125,102.1,1225,457,,218.75,81.60714286 +6126,102.1166667,1201,456,,214.4642857,81.42857143 +6127,102.1333333,1179,454,,210.5357143,81.07142857 +6128,102.15,1158,453,,206.7857143,80.89285714 +6129,102.1666667,1139,452,,203.3928571,80.71428571 +6130,102.1833333,1120,450,,200,80.35714286 +6131,102.2,1103,449,,196.9642857,80.17857143 +6132,102.2166667,1087,447,,194.1071429,79.82142857 +6133,102.2333333,1073,446,,191.6071429,79.64285714 +6134,102.25,1061,445,,189.4642857,79.46428571 +6135,102.2666667,1050,444,,187.5,79.28571429 +6136,102.2833333,1041,443,,185.8928571,79.10714286 +6137,102.3,1034,442,,184.6428571,78.92857143 +6138,102.3166667,1028,442,,183.5714286,78.92857143 +6139,102.3333333,1025,442,,183.0357143,78.92857143 +6140,102.35,1025,442,,183.0357143,78.92857143 +6141,102.3666667,1025,442,,183.0357143,78.92857143 +6142,102.3833333,1025,442,,183.0357143,78.92857143 +6143,102.4,1029,442,,183.75,78.92857143 +6144,102.4166667,1034,443,,184.6428571,79.10714286 +6145,102.4333333,1042,444,,186.0714286,79.28571429 +6146,102.45,1050,445,,187.5,79.46428571 +6147,102.4666667,1062,445,,189.6428571,79.46428571 +6148,102.4833333,1074,447,,191.7857143,79.82142857 +6149,102.5,1088,448,,194.2857143,80 +6150,102.5166667,1103,449,,196.9642857,80.17857143 +6151,102.5333333,1121,451,,200.1785714,80.53571429 +6152,102.55,1140,452,,203.5714286,80.71428571 +6153,102.5666667,1159,453,,206.9642857,80.89285714 +6154,102.5833333,1180,454,,210.7142857,81.07142857 +6155,102.6,1202,455,,214.6428571,81.25 +6156,102.6166667,1225,457,,218.75,81.60714286 +6157,102.6333333,1249,458,,223.0357143,81.78571429 +6158,102.65,1274,458,,227.5,81.78571429 +6159,102.6666667,1299,459,,231.9642857,81.96428571 +6160,102.6833333,1325,460,,236.6071429,82.14285714 +6161,102.7,1351,460,,241.25,82.14285714 +6162,102.7166667,1378,460,,246.0714286,82.14285714 +6163,102.7333333,1405,459,,250.8928571,81.96428571 +6164,102.75,1431,458,,255.5357143,81.78571429 +6165,102.7666667,1458,458,,260.3571429,81.78571429 +6166,102.7833333,1484,457,,265,81.60714286 +6167,102.8,1511,455,,269.8214286,81.25 +6168,102.8166667,1536,454,,274.2857143,81.07142857 +6169,102.8333333,1561,453,,278.75,80.89285714 +6170,102.85,1585,451,,283.0357143,80.53571429 +6171,102.8666667,1608,449,,287.1428571,80.17857143 +6172,102.8833333,1630,448,,291.0714286,80 +6173,102.9,1651,446,,294.8214286,79.64285714 +6174,102.9166667,1671,444,,298.3928571,79.28571429 +6175,102.9333333,1689,442,,301.6071429,78.92857143 +6176,102.95,1707,440,,304.8214286,78.57142857 +6177,102.9666667,1722,439,,307.5,78.39285714 +6178,102.9833333,1736,437,,310,78.03571429 +6179,103,1749,435,,312.3214286,77.67857143 +6180,103.0166667,1759,434,,314.1071429,77.5 +6181,103.0333333,1768,433,,315.7142857,77.32142857 +6182,103.05,1775,432,,316.9642857,77.14285714 +6183,103.0666667,1781,431,,318.0357143,76.96428571 +6184,103.0833333,1784,431,,318.5714286,76.96428571 +6185,103.1,1784,431,,318.5714286,76.96428571 +6186,103.1166667,1784,431,,318.5714286,76.96428571 +6187,103.1333333,1783,431,,318.3928571,76.96428571 +6188,103.15,1778,432,,317.5,77.14285714 +6189,103.1666667,1772,432,,316.4285714,77.14285714 +6190,103.1833333,1764,433,,315,77.32142857 +6191,103.2,1755,434,,313.3928571,77.5 +6192,103.2166667,1743,435,,311.25,77.67857143 +6193,103.2333333,1730,437,,308.9285714,78.03571429 +6194,103.25,1715,439,,306.25,78.39285714 +6195,103.2666667,1699,440,,303.3928571,78.57142857 +6196,103.2833333,1681,442,,300.1785714,78.92857143 +6197,103.3,1662,444,,296.7857143,79.28571429 +6198,103.3166667,1642,446,,293.2142857,79.64285714 +6199,103.3333333,1620,448,,289.2857143,80 +6200,103.35,1597,449,,285.1785714,80.17857143 +6201,103.3666667,1574,451,,281.0714286,80.53571429 +6202,103.3833333,1550,453,,276.7857143,80.89285714 +6203,103.4,1524,454,,272.1428571,81.07142857 +6204,103.4166667,1498,455,,267.5,81.25 +6205,103.4333333,1473,456,,263.0357143,81.42857143 +6206,103.45,1446,457,,258.2142857,81.60714286 +6207,103.4666667,1419,458,,253.3928571,81.78571429 +6208,103.4833333,1393,459,,248.75,81.96428571 +6209,103.5,1366,459,,243.9285714,81.96428571 +6210,103.5166667,1340,459,,239.2857143,81.96428571 +6211,103.5333333,1314,459,,234.6428571,81.96428571 +6212,103.55,1288,458,,230,81.78571429 +6213,103.5666667,1263,457,,225.5357143,81.60714286 +6214,103.5833333,1239,456,,221.25,81.42857143 +6215,103.6,1215,456,,216.9642857,81.42857143 +6216,103.6166667,1193,454,,213.0357143,81.07142857 +6217,103.6333333,1171,453,,209.1071429,80.89285714 +6218,103.65,1151,452,,205.5357143,80.71428571 +6219,103.6666667,1132,451,,202.1428571,80.53571429 +6220,103.6833333,1114,449,,198.9285714,80.17857143 +6221,103.7,1097,448,,195.8928571,80 +6222,103.7166667,1083,447,,193.3928571,79.82142857 +6223,103.7333333,1069,445,,190.8928571,79.46428571 +6224,103.75,1057,444,,188.75,79.28571429 +6225,103.7666667,1048,443,,187.1428571,79.10714286 +6226,103.7833333,1040,442,,185.7142857,78.92857143 +6227,103.8,1033,442,,184.4642857,78.92857143 +6228,103.8166667,1028,441,,183.5714286,78.75 +6229,103.8333333,1025,441,,183.0357143,78.75 +6230,103.85,1025,441,,183.0357143,78.75 +6231,103.8666667,1025,441,,183.0357143,78.75 +6232,103.8833333,1028,441,,183.5714286,78.75 +6233,103.9,1033,442,,184.4642857,78.92857143 +6234,103.9166667,1039,442,,185.5357143,78.92857143 +6235,103.9333333,1047,443,,186.9642857,79.10714286 +6236,103.95,1057,444,,188.75,79.28571429 +6237,103.9666667,1069,445,,190.8928571,79.46428571 +6238,103.9833333,1082,447,,193.2142857,79.82142857 +6239,104,1097,448,,195.8928571,80 +6240,104.0166667,1113,449,,198.75,80.17857143 +6241,104.0333333,1130,450,,201.7857143,80.35714286 +6242,104.05,1149,452,,205.1785714,80.71428571 +6243,104.0666667,1170,453,,208.9285714,80.89285714 +6244,104.0833333,1191,454,,212.6785714,81.07142857 +6245,104.1,1213,456,,216.6071429,81.42857143 +6246,104.1166667,1237,456,,220.8928571,81.42857143 +6247,104.1333333,1261,458,,225.1785714,81.78571429 +6248,104.15,1286,458,,229.6428571,81.78571429 +6249,104.1666667,1311,459,,234.1071429,81.96428571 +6250,104.1833333,1337,459,,238.75,81.96428571 +6251,104.2,1364,459,,243.5714286,81.96428571 +6252,104.2166667,1390,459,,248.2142857,81.96428571 +6253,104.2333333,1417,458,,253.0357143,81.78571429 +6254,104.25,1443,458,,257.6785714,81.78571429 +6255,104.2666667,1470,457,,262.5,81.60714286 +6256,104.2833333,1496,456,,267.1428571,81.42857143 +6257,104.3,1522,454,,271.7857143,81.07142857 +6258,104.3166667,1547,453,,276.25,80.89285714 +6259,104.3333333,1572,452,,280.7142857,80.71428571 +6260,104.35,1595,450,,284.8214286,80.35714286 +6261,104.3666667,1618,448,,288.9285714,80 +6262,104.3833333,1639,446,,292.6785714,79.64285714 +6263,104.4,1659,445,,296.25,79.46428571 +6264,104.4166667,1679,443,,299.8214286,79.10714286 +6265,104.4333333,1697,441,,303.0357143,78.75 +6266,104.45,1713,439,,305.8928571,78.39285714 +6267,104.4666667,1727,437,,308.3928571,78.03571429 +6268,104.4833333,1741,436,,310.8928571,77.85714286 +6269,104.5,1752,434,,312.8571429,77.5 +6270,104.5166667,1762,434,,314.6428571,77.5 +6271,104.5333333,1770,433,,316.0714286,77.32142857 +6272,104.55,1776,432,,317.1428571,77.14285714 +6273,104.5666667,1780,431,,317.8571429,76.96428571 +6274,104.5833333,1782,431,,318.2142857,76.96428571 +6275,104.6,1782,431,,318.2142857,76.96428571 +6276,104.6166667,1782,431,,318.2142857,76.96428571 +6277,104.6333333,1779,432,,317.6785714,77.14285714 +6278,104.65,1773,432,,316.6071429,77.14285714 +6279,104.6666667,1767,433,,315.5357143,77.32142857 +6280,104.6833333,1757,434,,313.75,77.5 +6281,104.7,1747,436,,311.9642857,77.85714286 +6282,104.7166667,1734,437,,309.6428571,78.03571429 +6283,104.7333333,1721,439,,307.3214286,78.39285714 +6284,104.75,1705,440,,304.4642857,78.57142857 +6285,104.7666667,1688,442,,301.4285714,78.92857143 +6286,104.7833333,1670,443,,298.2142857,79.10714286 +6287,104.8,1650,446,,294.6428571,79.64285714 +6288,104.8166667,1629,448,,290.8928571,80 +6289,104.8333333,1607,449,,286.9642857,80.17857143 +6290,104.85,1584,451,,282.8571429,80.53571429 +6291,104.8666667,1560,453,,278.5714286,80.89285714 +6292,104.8833333,1536,454,,274.2857143,81.07142857 +6293,104.9,1510,455,,269.6428571,81.25 +6294,104.9166667,1485,456,,265.1785714,81.42857143 +6295,104.9333333,1458,457,,260.3571429,81.60714286 +6296,104.95,1432,458,,255.7142857,81.78571429 +6297,104.9666667,1405,458,,250.8928571,81.78571429 +6298,104.9833333,1379,459,,246.25,81.96428571 +6299,105,1352,459,,241.4285714,81.96428571 +6300,105.0166667,1326,459,,236.7857143,81.96428571 +6301,105.0333333,1301,458,,232.3214286,81.78571429 +6302,105.05,1275,458,,227.6785714,81.78571429 +6303,105.0666667,1251,457,,223.3928571,81.60714286 +6304,105.0833333,1227,456,,219.1071429,81.42857143 +6305,105.1,1204,455,,215,81.25 +6306,105.1166667,1182,454,,211.0714286,81.07142857 +6307,105.1333333,1161,453,,207.3214286,80.89285714 +6308,105.15,1141,451,,203.75,80.53571429 +6309,105.1666667,1123,450,,200.5357143,80.35714286 +6310,105.1833333,1106,449,,197.5,80.17857143 +6311,105.2,1091,447,,194.8214286,79.82142857 +6312,105.2166667,1076,446,,192.1428571,79.64285714 +6313,105.2333333,1064,445,,190,79.46428571 +6314,105.25,1053,444,,188.0357143,79.28571429 +6315,105.2666667,1044,443,,186.4285714,79.10714286 +6316,105.2833333,1037,443,,185.1785714,79.10714286 +6317,105.3,1031,442,,184.1071429,78.92857143 +6318,105.3166667,1028,442,,183.5714286,78.92857143 +6319,105.3333333,1027,442,,183.3928571,78.92857143 +6320,105.35,1027,442,,183.3928571,78.92857143 +6321,105.3666667,1027,442,,183.3928571,78.92857143 +6322,105.3833333,1031,442,,184.1071429,78.92857143 +6323,105.4,1037,442,,185.1785714,78.92857143 +6324,105.4166667,1044,443,,186.4285714,79.10714286 +6325,105.4333333,1053,444,,188.0357143,79.28571429 +6326,105.45,1063,445,,189.8214286,79.46428571 +6327,105.4666667,1076,446,,192.1428571,79.64285714 +6328,105.4833333,1089,447,,194.4642857,79.82142857 +6329,105.5,1105,449,,197.3214286,80.17857143 +6330,105.5166667,1122,450,,200.3571429,80.35714286 +6331,105.5333333,1140,451,,203.5714286,80.53571429 +6332,105.55,1160,453,,207.1428571,80.89285714 +6333,105.5666667,1180,454,,210.7142857,81.07142857 +6334,105.5833333,1202,455,,214.6428571,81.25 +6335,105.6,1225,456,,218.75,81.42857143 +6336,105.6166667,1248,457,,222.8571429,81.60714286 +6337,105.6333333,1273,458,,227.3214286,81.78571429 +6338,105.65,1298,459,,231.7857143,81.96428571 +6339,105.6666667,1324,459,,236.4285714,81.96428571 +6340,105.6833333,1350,459,,241.0714286,81.96428571 +6341,105.7,1377,459,,245.8928571,81.96428571 +6342,105.7166667,1403,459,,250.5357143,81.96428571 +6343,105.7333333,1430,458,,255.3571429,81.78571429 +6344,105.75,1456,458,,260,81.78571429 +6345,105.7666667,1483,457,,264.8214286,81.60714286 +6346,105.7833333,1508,456,,269.2857143,81.42857143 +6347,105.8,1534,454,,273.9285714,81.07142857 +6348,105.8166667,1558,453,,278.2142857,80.89285714 +6349,105.8333333,1583,451,,282.6785714,80.53571429 +6350,105.85,1606,450,,286.7857143,80.35714286 +6351,105.8666667,1628,448,,290.7142857,80 +6352,105.8833333,1649,446,,294.4642857,79.64285714 +6353,105.9,1669,444,,298.0357143,79.28571429 +6354,105.9166667,1687,443,,301.25,79.10714286 +6355,105.9333333,1704,441,,304.2857143,78.75 +6356,105.95,1720,440,,307.1428571,78.57142857 +6357,105.9666667,1734,438,,309.6428571,78.21428571 +6358,105.9833333,1746,437,,311.7857143,78.03571429 +6359,106,1757,435,,313.75,77.67857143 +6360,106.0166667,1766,434,,315.3571429,77.5 +6361,106.0333333,1773,433,,316.6071429,77.32142857 +6362,106.05,1779,433,,317.6785714,77.32142857 +6363,106.0666667,1782,432,,318.2142857,77.14285714 +6364,106.0833333,1782,432,,318.2142857,77.14285714 +6365,106.1,1782,432,,318.2142857,77.14285714 +6366,106.1166667,1781,432,,318.0357143,77.14285714 +6367,106.1333333,1777,432,,317.3214286,77.14285714 +6368,106.15,1771,433,,316.25,77.32142857 +6369,106.1666667,1764,434,,315,77.5 +6370,106.1833333,1754,435,,313.2142857,77.67857143 +6371,106.2,1743,437,,311.25,78.03571429 +6372,106.2166667,1730,438,,308.9285714,78.21428571 +6373,106.2333333,1715,440,,306.25,78.57142857 +6374,106.25,1699,442,,303.3928571,78.92857143 +6375,106.2666667,1681,444,,300.1785714,79.28571429 +6376,106.2833333,1663,445,,296.9642857,79.46428571 +6377,106.3,1642,447,,293.2142857,79.82142857 +6378,106.3166667,1621,449,,289.4642857,80.17857143 +6379,106.3333333,1599,451,,285.5357143,80.53571429 +6380,106.35,1575,452,,281.25,80.71428571 +6381,106.3666667,1551,454,,276.9642857,81.07142857 +6382,106.3833333,1527,456,,272.6785714,81.42857143 +6383,106.4,1501,457,,268.0357143,81.60714286 +6384,106.4166667,1475,458,,263.3928571,81.78571429 +6385,106.4333333,1448,459,,258.5714286,81.96428571 +6386,106.45,1422,459,,253.9285714,81.96428571 +6387,106.4666667,1395,460,,249.1071429,82.14285714 +6388,106.4833333,1369,460,,244.4642857,82.14285714 +6389,106.5,1343,460,,239.8214286,82.14285714 +6390,106.5166667,1317,460,,235.1785714,82.14285714 +6391,106.5333333,1291,459,,230.5357143,81.96428571 +6392,106.55,1266,459,,226.0714286,81.96428571 +6393,106.5666667,1242,458,,221.7857143,81.78571429 +6394,106.5833333,1218,457,,217.5,81.60714286 +6395,106.6,1196,456,,213.5714286,81.42857143 +6396,106.6166667,1175,455,,209.8214286,81.25 +6397,106.6333333,1154,453,,206.0714286,80.89285714 +6398,106.65,1135,452,,202.6785714,80.71428571 +6399,106.6666667,1118,451,,199.6428571,80.53571429 +6400,106.6833333,1102,450,,196.7857143,80.35714286 +6401,106.7,1086,448,,193.9285714,80 +6402,106.7166667,1073,447,,191.6071429,79.82142857 +6403,106.7333333,1062,446,,189.6428571,79.64285714 +6404,106.75,1051,445,,187.6785714,79.46428571 +6405,106.7666667,1043,444,,186.25,79.28571429 +6406,106.7833333,1036,444,,185,79.28571429 +6407,106.8,1032,443,,184.2857143,79.10714286 +6408,106.8166667,1029,443,,183.75,79.10714286 +6409,106.8333333,1029,443,,183.75,79.10714286 +6410,106.85,1029,443,,183.75,79.10714286 +6411,106.8666667,1031,443,,184.1071429,79.10714286 +6412,106.8833333,1035,444,,184.8214286,79.28571429 +6413,106.9,1041,444,,185.8928571,79.28571429 +6414,106.9166667,1049,445,,187.3214286,79.46428571 +6415,106.9333333,1059,446,,189.1071429,79.64285714 +6416,106.95,1070,447,,191.0714286,79.82142857 +6417,106.9666667,1083,448,,193.3928571,80 +6418,106.9833333,1098,449,,196.0714286,80.17857143 +6419,107,1114,451,,198.9285714,80.53571429 +6420,107.0166667,1131,452,,201.9642857,80.71428571 +6421,107.0333333,1150,453,,205.3571429,80.89285714 +6422,107.05,1170,455,,208.9285714,81.25 +6423,107.0666667,1191,456,,212.6785714,81.42857143 +6424,107.0833333,1213,457,,216.6071429,81.60714286 +6425,107.1,1236,458,,220.7142857,81.78571429 +6426,107.1166667,1261,459,,225.1785714,81.96428571 +6427,107.1333333,1285,460,,229.4642857,82.14285714 +6428,107.15,1311,461,,234.1071429,82.32142857 +6429,107.1666667,1336,461,,238.5714286,82.32142857 +6430,107.1833333,1362,461,,243.2142857,82.32142857 +6431,107.2,1388,460,,247.8571429,82.14285714 +6432,107.2166667,1415,460,,252.6785714,82.14285714 +6433,107.2333333,1441,459,,257.3214286,81.96428571 +6434,107.25,1468,459,,262.1428571,81.96428571 +6435,107.2666667,1494,458,,266.7857143,81.78571429 +6436,107.2833333,1519,457,,271.25,81.60714286 +6437,107.3,1544,455,,275.7142857,81.25 +6438,107.3166667,1568,454,,280,81.07142857 +6439,107.3333333,1592,452,,284.2857143,80.71428571 +6440,107.35,1614,450,,288.2142857,80.35714286 +6441,107.3666667,1635,448,,291.9642857,80 +6442,107.3833333,1656,446,,295.7142857,79.64285714 +6443,107.4,1675,445,,299.1071429,79.46428571 +6444,107.4166667,1693,443,,302.3214286,79.10714286 +6445,107.4333333,1709,441,,305.1785714,78.75 +6446,107.45,1724,439,,307.8571429,78.39285714 +6447,107.4666667,1738,438,,310.3571429,78.21428571 +6448,107.4833333,1749,437,,312.3214286,78.03571429 +6449,107.5,1759,435,,314.1071429,77.67857143 +6450,107.5166667,1767,434,,315.5357143,77.5 +6451,107.5333333,1773,433,,316.6071429,77.32142857 +6452,107.55,1778,433,,317.5,77.32142857 +6453,107.5666667,1780,432,,317.8571429,77.14285714 +6454,107.5833333,1780,432,,317.8571429,77.14285714 +6455,107.6,1780,432,,317.8571429,77.14285714 +6456,107.6166667,1777,432,,317.3214286,77.14285714 +6457,107.6333333,1772,433,,316.4285714,77.32142857 +6458,107.65,1765,434,,315.1785714,77.5 +6459,107.6666667,1757,435,,313.75,77.67857143 +6460,107.6833333,1746,436,,311.7857143,77.85714286 +6461,107.7,1734,438,,309.6428571,78.21428571 +6462,107.7166667,1720,439,,307.1428571,78.39285714 +6463,107.7333333,1705,441,,304.4642857,78.75 +6464,107.75,1689,443,,301.6071429,79.10714286 +6465,107.7666667,1671,445,,298.3928571,79.46428571 +6466,107.7833333,1651,446,,294.8214286,79.64285714 +6467,107.8,1630,448,,291.0714286,80 +6468,107.8166667,1609,450,,287.3214286,80.35714286 +6469,107.8333333,1586,451,,283.2142857,80.53571429 +6470,107.85,1562,453,,278.9285714,80.89285714 +6471,107.8666667,1538,455,,274.6428571,81.25 +6472,107.8833333,1513,456,,270.1785714,81.42857143 +6473,107.9,1487,457,,265.5357143,81.60714286 +6474,107.9166667,1461,458,,260.8928571,81.78571429 +6475,107.9333333,1435,458,,256.25,81.78571429 +6476,107.95,1408,459,,251.4285714,81.96428571 +6477,107.9666667,1382,459,,246.7857143,81.96428571 +6478,107.9833333,1356,459,,242.1428571,81.96428571 +6479,108,1330,459,,237.5,81.96428571 +6480,108.0166667,1304,459,,232.8571429,81.96428571 +6481,108.0333333,1279,458,,228.3928571,81.78571429 +6482,108.05,1254,457,,223.9285714,81.60714286 +6483,108.0666667,1230,457,,219.6428571,81.60714286 +6484,108.0833333,1208,456,,215.7142857,81.42857143 +6485,108.1,1185,454,,211.6071429,81.07142857 +6486,108.1166667,1165,453,,208.0357143,80.89285714 +6487,108.1333333,1145,452,,204.4642857,80.71428571 +6488,108.15,1126,451,,201.0714286,80.53571429 +6489,108.1666667,1110,449,,198.2142857,80.17857143 +6490,108.1833333,1094,448,,195.3571429,80 +6491,108.2,1080,447,,192.8571429,79.82142857 +6492,108.2166667,1067,446,,190.5357143,79.64285714 +6493,108.2333333,1056,445,,188.5714286,79.46428571 +6494,108.25,1047,444,,186.9642857,79.28571429 +6495,108.2666667,1039,443,,185.5357143,79.10714286 +6496,108.2833333,1034,443,,184.6428571,79.10714286 +6497,108.3,1030,442,,183.9285714,78.92857143 +6498,108.3166667,1029,442,,183.75,78.92857143 +6499,108.3333333,1029,442,,183.75,78.92857143 +6500,108.35,1029,442,,183.75,78.92857143 +6501,108.3666667,1033,443,,184.4642857,79.10714286 +6502,108.3833333,1038,443,,185.3571429,79.10714286 +6503,108.4,1045,444,,186.6071429,79.28571429 +6504,108.4166667,1054,444,,188.2142857,79.28571429 +6505,108.4333333,1064,446,,190,79.64285714 +6506,108.45,1077,447,,192.3214286,79.82142857 +6507,108.4666667,1090,448,,194.6428571,80 +6508,108.4833333,1105,449,,197.3214286,80.17857143 +6509,108.5,1122,450,,200.3571429,80.35714286 +6510,108.5166667,1140,452,,203.5714286,80.71428571 +6511,108.5333333,1159,453,,206.9642857,80.89285714 +6512,108.55,1179,454,,210.5357143,81.07142857 +6513,108.5666667,1201,455,,214.4642857,81.25 +6514,108.5833333,1224,456,,218.5714286,81.42857143 +6515,108.6,1247,457,,222.6785714,81.60714286 +6516,108.6166667,1272,458,,227.1428571,81.78571429 +6517,108.6333333,1297,459,,231.6071429,81.96428571 +6518,108.65,1322,459,,236.0714286,81.96428571 +6519,108.6666667,1348,459,,240.7142857,81.96428571 +6520,108.6833333,1374,459,,245.3571429,81.96428571 +6521,108.7,1401,459,,250.1785714,81.96428571 +6522,108.7166667,1427,459,,254.8214286,81.96428571 +6523,108.7333333,1454,458,,259.6428571,81.78571429 +6524,108.75,1480,457,,264.2857143,81.60714286 +6525,108.7666667,1505,456,,268.75,81.42857143 +6526,108.7833333,1531,454,,273.3928571,81.07142857 +6527,108.8,1555,453,,277.6785714,80.89285714 +6528,108.8166667,1579,451,,281.9642857,80.53571429 +6529,108.8333333,1602,450,,286.0714286,80.35714286 +6530,108.85,1624,448,,290,80 +6531,108.8666667,1645,446,,293.75,79.64285714 +6532,108.8833333,1665,445,,297.3214286,79.46428571 +6533,108.9,1684,443,,300.7142857,79.10714286 +6534,108.9166667,1701,441,,303.75,78.75 +6535,108.9333333,1716,439,,306.4285714,78.39285714 +6536,108.95,1731,437,,309.1071429,78.03571429 +6537,108.9666667,1743,436,,311.25,77.85714286 +6538,108.9833333,1754,435,,313.2142857,77.67857143 +6539,109,1763,434,,314.8214286,77.5 +6540,109.0166667,1770,433,,316.0714286,77.32142857 +6541,109.0333333,1776,432,,317.1428571,77.14285714 +6542,109.05,1779,432,,317.6785714,77.14285714 +6543,109.0666667,1779,432,,317.6785714,77.14285714 +6544,109.0833333,1779,432,,317.6785714,77.14285714 +6545,109.1,1779,432,,317.6785714,77.14285714 +6546,109.1166667,1775,432,,316.9642857,77.14285714 +6547,109.1333333,1769,433,,315.8928571,77.32142857 +6548,109.15,1761,434,,314.4642857,77.5 +6549,109.1666667,1752,435,,312.8571429,77.67857143 +6550,109.1833333,1741,436,,310.8928571,77.85714286 +6551,109.2,1728,438,,308.5714286,78.21428571 +6552,109.2166667,1714,439,,306.0714286,78.39285714 +6553,109.2333333,1698,441,,303.2142857,78.75 +6554,109.25,1681,443,,300.1785714,79.10714286 +6555,109.2666667,1661,444,,296.6071429,79.28571429 +6556,109.2833333,1642,446,,293.2142857,79.64285714 +6557,109.3,1620,448,,289.2857143,80 +6558,109.3166667,1598,450,,285.3571429,80.35714286 +6559,109.3333333,1575,451,,281.25,80.53571429 +6560,109.35,1551,453,,276.9642857,80.89285714 +6561,109.3666667,1526,455,,272.5,81.25 +6562,109.3833333,1501,456,,268.0357143,81.42857143 +6563,109.4,1475,457,,263.3928571,81.60714286 +6564,109.4166667,1449,457,,258.75,81.60714286 +6565,109.4333333,1423,458,,254.1071429,81.78571429 +6566,109.45,1397,458,,249.4642857,81.78571429 +6567,109.4666667,1370,459,,244.6428571,81.96428571 +6568,109.4833333,1344,459,,240,81.96428571 +6569,109.5,1319,459,,235.5357143,81.96428571 +6570,109.5166667,1293,458,,230.8928571,81.78571429 +6571,109.5333333,1268,457,,226.4285714,81.60714286 +6572,109.55,1244,457,,222.1428571,81.60714286 +6573,109.5666667,1221,456,,218.0357143,81.42857143 +6574,109.5833333,1198,455,,213.9285714,81.25 +6575,109.6,1177,454,,210.1785714,81.07142857 +6576,109.6166667,1157,452,,206.6071429,80.71428571 +6577,109.6333333,1137,451,,203.0357143,80.53571429 +6578,109.65,1120,450,,200,80.35714286 +6579,109.6666667,1104,448,,197.1428571,80 +6580,109.6833333,1089,447,,194.4642857,79.82142857 +6581,109.7,1075,446,,191.9642857,79.64285714 +6582,109.7166667,1064,445,,190,79.46428571 +6583,109.7333333,1053,444,,188.0357143,79.28571429 +6584,109.75,1045,443,,186.6071429,79.10714286 +6585,109.7666667,1038,443,,185.3571429,79.10714286 +6586,109.7833333,1033,442,,184.4642857,78.92857143 +6587,109.8,1030,442,,183.9285714,78.92857143 +6588,109.8166667,1030,442,,183.9285714,78.92857143 +6589,109.8333333,1030,442,,183.9285714,78.92857143 +6590,109.85,1032,442,,184.2857143,78.92857143 +6591,109.8666667,1036,442,,185,78.92857143 +6592,109.8833333,1042,443,,186.0714286,79.10714286 +6593,109.9,1050,444,,187.5,79.28571429 +6594,109.9166667,1060,445,,189.2857143,79.46428571 +6595,109.9333333,1071,446,,191.25,79.64285714 +6596,109.95,1083,447,,193.3928571,79.82142857 +6597,109.9666667,1098,448,,196.0714286,80 +6598,109.9833333,1114,450,,198.9285714,80.35714286 +6599,110,1131,451,,201.9642857,80.53571429 +6600,110.0166667,1150,452,,205.3571429,80.71428571 +6601,110.0333333,1169,453,,208.75,80.89285714 +6602,110.05,1190,454,,212.5,81.07142857 +6603,110.0666667,1212,455,,216.4285714,81.25 +6604,110.0833333,1235,456,,220.5357143,81.42857143 +6605,110.1,1259,457,,224.8214286,81.60714286 +6606,110.1166667,1283,458,,229.1071429,81.78571429 +6607,110.1333333,1308,459,,233.5714286,81.96428571 +6608,110.15,1334,459,,238.2142857,81.96428571 +6609,110.1666667,1359,459,,242.6785714,81.96428571 +6610,110.1833333,1386,459,,247.5,81.96428571 +6611,110.2,1412,458,,252.1428571,81.78571429 +6612,110.2166667,1439,458,,256.9642857,81.78571429 +6613,110.2333333,1465,457,,261.6071429,81.60714286 +6614,110.25,1491,456,,266.25,81.42857143 +6615,110.2666667,1516,455,,270.7142857,81.25 +6616,110.2833333,1541,454,,275.1785714,81.07142857 +6617,110.3,1565,452,,279.4642857,80.71428571 +6618,110.3166667,1588,451,,283.5714286,80.53571429 +6619,110.3333333,1611,449,,287.6785714,80.17857143 +6620,110.35,1633,447,,291.6071429,79.82142857 +6621,110.3666667,1653,446,,295.1785714,79.64285714 +6622,110.3833333,1672,444,,298.5714286,79.28571429 +6623,110.4,1690,442,,301.7857143,78.92857143 +6624,110.4166667,1706,440,,304.6428571,78.57142857 +6625,110.4333333,1721,438,,307.3214286,78.21428571 +6626,110.45,1734,437,,309.6428571,78.03571429 +6627,110.4666667,1746,436,,311.7857143,77.85714286 +6628,110.4833333,1756,434,,313.5714286,77.5 +6629,110.5,1764,434,,315,77.5 +6630,110.5166667,1771,433,,316.25,77.32142857 +6631,110.5333333,1775,432,,316.9642857,77.14285714 +6632,110.55,1778,432,,317.5,77.14285714 +6633,110.5666667,1778,432,,317.5,77.14285714 +6634,110.5833333,1778,432,,317.5,77.14285714 +6635,110.6,1775,432,,316.9642857,77.14285714 +6636,110.6166667,1770,433,,316.0714286,77.32142857 +6637,110.6333333,1763,434,,314.8214286,77.5 +6638,110.65,1755,435,,313.3928571,77.67857143 +6639,110.6666667,1745,436,,311.6071429,77.85714286 +6640,110.6833333,1733,437,,309.4642857,78.03571429 +6641,110.7,1719,439,,306.9642857,78.39285714 +6642,110.7166667,1704,440,,304.2857143,78.57142857 +6643,110.7333333,1688,442,,301.4285714,78.92857143 +6644,110.75,1670,444,,298.2142857,79.28571429 +6645,110.7666667,1651,446,,294.8214286,79.64285714 +6646,110.7833333,1630,447,,291.0714286,79.82142857 +6647,110.8,1608,449,,287.1428571,80.17857143 +6648,110.8166667,1586,451,,283.2142857,80.53571429 +6649,110.8333333,1562,452,,278.9285714,80.71428571 +6650,110.85,1538,454,,274.6428571,81.07142857 +6651,110.8666667,1513,455,,270.1785714,81.25 +6652,110.8833333,1488,456,,265.7142857,81.42857143 +6653,110.9,1462,457,,261.0714286,81.60714286 +6654,110.9166667,1436,458,,256.4285714,81.78571429 +6655,110.9333333,1409,458,,251.6071429,81.78571429 +6656,110.95,1383,459,,246.9642857,81.96428571 +6657,110.9666667,1357,459,,242.3214286,81.96428571 +6658,110.9833333,1331,459,,237.6785714,81.96428571 +6659,111,1306,459,,233.2142857,81.96428571 +6660,111.0166667,1281,458,,228.75,81.78571429 +6661,111.0333333,1256,457,,224.2857143,81.60714286 +6662,111.05,1233,456,,220.1785714,81.42857143 +6663,111.0666667,1210,456,,216.0714286,81.42857143 +6664,111.0833333,1188,454,,212.1428571,81.07142857 +6665,111.1,1167,453,,208.3928571,80.89285714 +6666,111.1166667,1147,452,,204.8214286,80.71428571 +6667,111.1333333,1129,451,,201.6071429,80.53571429 +6668,111.15,1112,450,,198.5714286,80.35714286 +6669,111.1666667,1096,448,,195.7142857,80 +6670,111.1833333,1082,447,,193.2142857,79.82142857 +6671,111.2,1070,446,,191.0714286,79.64285714 +6672,111.2166667,1059,445,,189.1071429,79.46428571 +6673,111.2333333,1049,444,,187.3214286,79.28571429 +6674,111.25,1042,443,,186.0714286,79.10714286 +6675,111.2666667,1036,443,,185,79.10714286 +6676,111.2833333,1032,442,,184.2857143,78.92857143 +6677,111.3,1031,442,,184.1071429,78.92857143 +6678,111.3166667,1031,442,,184.1071429,78.92857143 +6679,111.3333333,1031,442,,184.1071429,78.92857143 +6680,111.35,1034,442,,184.6428571,78.92857143 +6681,111.3666667,1039,443,,185.5357143,79.10714286 +6682,111.3833333,1046,444,,186.7857143,79.28571429 +6683,111.4,1055,445,,188.3928571,79.46428571 +6684,111.4166667,1065,445,,190.1785714,79.46428571 +6685,111.4333333,1077,447,,192.3214286,79.82142857 +6686,111.45,1090,448,,194.6428571,80 +6687,111.4666667,1105,449,,197.3214286,80.17857143 +6688,111.4833333,1121,450,,200.1785714,80.35714286 +6689,111.5,1139,452,,203.3928571,80.71428571 +6690,111.5166667,1158,453,,206.7857143,80.89285714 +6691,111.5333333,1178,454,,210.3571429,81.07142857 +6692,111.55,1199,455,,214.1071429,81.25 +6693,111.5666667,1222,456,,218.2142857,81.42857143 +6694,111.5833333,1245,457,,222.3214286,81.60714286 +6695,111.6,1269,458,,226.6071429,81.78571429 +6696,111.6166667,1294,459,,231.0714286,81.96428571 +6697,111.6333333,1319,460,,235.5357143,82.14285714 +6698,111.65,1345,460,,240.1785714,82.14285714 +6699,111.6666667,1371,460,,244.8214286,82.14285714 +6700,111.6833333,1397,459,,249.4642857,81.96428571 +6701,111.7,1424,459,,254.2857143,81.96428571 +6702,111.7166667,1450,458,,258.9285714,81.78571429 +6703,111.7333333,1476,457,,263.5714286,81.60714286 +6704,111.75,1502,456,,268.2142857,81.42857143 +6705,111.7666667,1527,455,,272.6785714,81.25 +6706,111.7833333,1552,453,,277.1428571,80.89285714 +6707,111.8,1576,452,,281.4285714,80.71428571 +6708,111.8166667,1598,450,,285.3571429,80.35714286 +6709,111.8333333,1621,449,,289.4642857,80.17857143 +6710,111.85,1641,447,,293.0357143,79.82142857 +6711,111.8666667,1661,445,,296.6071429,79.46428571 +6712,111.8833333,1680,443,,300,79.10714286 +6713,111.9,1697,441,,303.0357143,78.75 +6714,111.9166667,1713,440,,305.8928571,78.57142857 +6715,111.9333333,1727,438,,308.3928571,78.21428571 +6716,111.95,1739,437,,310.5357143,78.03571429 +6717,111.9666667,1750,436,,312.5,77.85714286 +6718,111.9833333,1759,434,,314.1071429,77.5 +6719,112,1766,433,,315.3571429,77.32142857 +6720,112.0166667,1772,433,,316.4285714,77.32142857 +6721,112.0333333,1776,432,,317.1428571,77.14285714 +6722,112.05,1776,432,,317.1428571,77.14285714 +6723,112.0666667,1776,432,,317.1428571,77.14285714 +6724,112.0833333,1775,432,,316.9642857,77.14285714 +6725,112.1,1772,433,,316.4285714,77.32142857 +6726,112.1166667,1766,433,,315.3571429,77.32142857 +6727,112.1333333,1759,434,,314.1071429,77.5 +6728,112.15,1750,436,,312.5,77.85714286 +6729,112.1666667,1739,437,,310.5357143,78.03571429 +6730,112.1833333,1726,438,,308.2142857,78.21428571 +6731,112.2,1712,440,,305.7142857,78.57142857 +6732,112.2166667,1696,441,,302.8571429,78.75 +6733,112.2333333,1679,443,,299.8214286,79.10714286 +6734,112.25,1661,445,,296.6071429,79.46428571 +6735,112.2666667,1641,447,,293.0357143,79.82142857 +6736,112.2833333,1620,449,,289.2857143,80.17857143 +6737,112.3,1598,450,,285.3571429,80.35714286 +6738,112.3166667,1575,452,,281.25,80.71428571 +6739,112.3333333,1552,454,,277.1428571,81.07142857 +6740,112.35,1527,455,,272.6785714,81.25 +6741,112.3666667,1502,456,,268.2142857,81.42857143 +6742,112.3833333,1476,457,,263.5714286,81.60714286 +6743,112.4,1451,458,,259.1071429,81.78571429 +6744,112.4166667,1425,458,,254.4642857,81.78571429 +6745,112.4333333,1398,459,,249.6428571,81.96428571 +6746,112.45,1372,459,,245,81.96428571 +6747,112.4666667,1347,459,,240.5357143,81.96428571 +6748,112.4833333,1321,459,,235.8928571,81.96428571 +6749,112.5,1296,459,,231.4285714,81.96428571 +6750,112.5166667,1271,459,,226.9642857,81.96428571 +6751,112.5333333,1247,458,,222.6785714,81.78571429 +6752,112.55,1224,456,,218.5714286,81.42857143 +6753,112.5666667,1201,455,,214.4642857,81.25 +6754,112.5833333,1180,454,,210.7142857,81.07142857 +6755,112.6,1160,453,,207.1428571,80.89285714 +6756,112.6166667,1141,452,,203.75,80.71428571 +6757,112.6333333,1123,451,,200.5357143,80.53571429 +6758,112.65,1106,449,,197.5,80.17857143 +6759,112.6666667,1091,448,,194.8214286,80 +6760,112.6833333,1078,447,,192.5,79.82142857 +6761,112.7,1066,446,,190.3571429,79.64285714 +6762,112.7166667,1056,445,,188.5714286,79.46428571 +6763,112.7333333,1048,444,,187.1428571,79.28571429 +6764,112.75,1041,443,,185.8928571,79.10714286 +6765,112.7666667,1036,443,,185,79.10714286 +6766,112.7833333,1033,443,,184.4642857,79.10714286 +6767,112.8,1033,443,,184.4642857,79.10714286 +6768,112.8166667,1033,443,,184.4642857,79.10714286 +6769,112.8333333,1034,443,,184.6428571,79.10714286 +6770,112.85,1038,443,,185.3571429,79.10714286 +6771,112.8666667,1044,444,,186.4285714,79.28571429 +6772,112.8833333,1052,444,,187.8571429,79.28571429 +6773,112.9,1061,445,,189.4642857,79.46428571 +6774,112.9166667,1072,446,,191.4285714,79.64285714 +6775,112.9333333,1085,447,,193.75,79.82142857 +6776,112.95,1099,449,,196.25,80.17857143 +6777,112.9666667,1114,450,,198.9285714,80.35714286 +6778,112.9833333,1131,451,,201.9642857,80.53571429 +6779,113,1150,452,,205.3571429,80.71428571 +6780,113.0166667,1169,454,,208.75,81.07142857 +6781,113.0333333,1190,455,,212.5,81.25 +6782,113.05,1212,456,,216.4285714,81.42857143 +6783,113.0666667,1235,457,,220.5357143,81.60714286 +6784,113.0833333,1259,458,,224.8214286,81.78571429 +6785,113.1,1283,459,,229.1071429,81.96428571 +6786,113.1166667,1308,459,,233.5714286,81.96428571 +6787,113.1333333,1333,459,,238.0357143,81.96428571 +6788,113.15,1359,459,,242.6785714,81.96428571 +6789,113.1666667,1385,459,,247.3214286,81.96428571 +6790,113.1833333,1411,459,,251.9642857,81.96428571 +6791,113.2,1437,458,,256.6071429,81.78571429 +6792,113.2166667,1463,458,,261.25,81.78571429 +6793,113.2333333,1489,457,,265.8928571,81.60714286 +6794,113.25,1514,455,,270.3571429,81.25 +6795,113.2666667,1539,454,,274.8214286,81.07142857 +6796,113.2833333,1563,453,,279.1071429,80.89285714 +6797,113.3,1587,451,,283.3928571,80.53571429 +6798,113.3166667,1609,450,,287.3214286,80.35714286 +6799,113.3333333,1630,448,,291.0714286,80 +6800,113.35,1651,446,,294.8214286,79.64285714 +6801,113.3666667,1670,444,,298.2142857,79.28571429 +6802,113.3833333,1688,442,,301.4285714,78.92857143 +6803,113.4,1704,441,,304.2857143,78.75 +6804,113.4166667,1719,439,,306.9642857,78.39285714 +6805,113.4333333,1732,438,,309.2857143,78.21428571 +6806,113.45,1744,436,,311.4285714,77.85714286 +6807,113.4666667,1754,435,,313.2142857,77.67857143 +6808,113.4833333,1762,434,,314.6428571,77.5 +6809,113.5,1769,433,,315.8928571,77.32142857 +6810,113.5166667,1773,433,,316.6071429,77.32142857 +6811,113.5333333,1776,433,,317.1428571,77.32142857 +6812,113.55,1776,433,,317.1428571,77.32142857 +6813,113.5666667,1776,433,,317.1428571,77.32142857 +6814,113.5833333,1773,433,,316.6071429,77.32142857 +6815,113.6,1768,434,,315.7142857,77.5 +6816,113.6166667,1762,434,,314.6428571,77.5 +6817,113.6333333,1754,435,,313.2142857,77.67857143 +6818,113.65,1744,437,,311.4285714,78.03571429 +6819,113.6666667,1733,438,,309.4642857,78.21428571 +6820,113.6833333,1719,439,,306.9642857,78.39285714 +6821,113.7,1704,441,,304.2857143,78.75 +6822,113.7166667,1688,443,,301.4285714,79.10714286 +6823,113.7333333,1670,444,,298.2142857,79.28571429 +6824,113.75,1651,446,,294.8214286,79.64285714 +6825,113.7666667,1631,448,,291.25,80 +6826,113.7833333,1610,450,,287.5,80.35714286 +6827,113.8,1587,451,,283.3928571,80.53571429 +6828,113.8166667,1564,453,,279.2857143,80.89285714 +6829,113.8333333,1540,454,,275,81.07142857 +6830,113.85,1515,456,,270.5357143,81.42857143 +6831,113.8666667,1490,457,,266.0714286,81.60714286 +6832,113.8833333,1465,458,,261.6071429,81.78571429 +6833,113.9,1439,459,,256.9642857,81.96428571 +6834,113.9166667,1413,459,,252.3214286,81.96428571 +6835,113.9333333,1386,460,,247.5,82.14285714 +6836,113.95,1360,460,,242.8571429,82.14285714 +6837,113.9666667,1335,460,,238.3928571,82.14285714 +6838,113.9833333,1310,460,,233.9285714,82.14285714 +6839,114,1284,459,,229.2857143,81.96428571 +6840,114.0166667,1260,458,,225,81.78571429 +6841,114.0333333,1236,457,,220.7142857,81.60714286 +6842,114.05,1214,456,,216.7857143,81.42857143 +6843,114.0666667,1192,455,,212.8571429,81.25 +6844,114.0833333,1171,454,,209.1071429,81.07142857 +6845,114.1,1152,453,,205.7142857,80.89285714 +6846,114.1166667,1133,452,,202.3214286,80.71428571 +6847,114.1333333,1116,450,,199.2857143,80.35714286 +6848,114.15,1100,449,,196.4285714,80.17857143 +6849,114.1666667,1086,448,,193.9285714,80 +6850,114.1833333,1074,447,,191.7857143,79.82142857 +6851,114.2,1063,446,,189.8214286,79.64285714 +6852,114.2166667,1054,445,,188.2142857,79.46428571 +6853,114.2333333,1046,444,,186.7857143,79.28571429 +6854,114.25,1040,444,,185.7142857,79.28571429 +6855,114.2666667,1036,443,,185,79.10714286 +6856,114.2833333,1035,443,,184.8214286,79.10714286 +6857,114.3,1035,443,,184.8214286,79.10714286 +6858,114.3166667,1035,443,,184.8214286,79.10714286 +6859,114.3333333,1038,443,,185.3571429,79.10714286 +6860,114.35,1043,444,,186.25,79.28571429 +6861,114.3666667,1049,445,,187.3214286,79.46428571 +6862,114.3833333,1058,445,,188.9285714,79.46428571 +6863,114.4,1068,446,,190.7142857,79.64285714 +6864,114.4166667,1080,447,,192.8571429,79.82142857 +6865,114.4333333,1093,448,,195.1785714,80 +6866,114.45,1108,449,,197.8571429,80.17857143 +6867,114.4666667,1124,451,,200.7142857,80.53571429 +6868,114.4833333,1141,452,,203.75,80.71428571 +6869,114.5,1161,453,,207.3214286,80.89285714 +6870,114.5166667,1180,454,,210.7142857,81.07142857 +6871,114.5333333,1202,456,,214.6428571,81.42857143 +6872,114.55,1224,457,,218.5714286,81.60714286 +6873,114.5666667,1247,457,,222.6785714,81.60714286 +6874,114.5833333,1271,458,,226.9642857,81.78571429 +6875,114.6,1296,459,,231.4285714,81.96428571 +6876,114.6166667,1321,460,,235.8928571,82.14285714 +6877,114.6333333,1346,460,,240.3571429,82.14285714 +6878,114.65,1372,460,,245,82.14285714 +6879,114.6666667,1398,459,,249.6428571,81.96428571 +6880,114.6833333,1424,459,,254.2857143,81.96428571 +6881,114.7,1450,458,,258.9285714,81.78571429 +6882,114.7166667,1476,457,,263.5714286,81.60714286 +6883,114.7333333,1501,456,,268.0357143,81.42857143 +6884,114.75,1527,455,,272.6785714,81.25 +6885,114.7666667,1551,454,,276.9642857,81.07142857 +6886,114.7833333,1574,452,,281.0714286,80.71428571 +6887,114.8,1597,451,,285.1785714,80.53571429 +6888,114.8166667,1619,449,,289.1071429,80.17857143 +6889,114.8333333,1640,447,,292.8571429,79.82142857 +6890,114.85,1659,446,,296.25,79.64285714 +6891,114.8666667,1678,444,,299.6428571,79.28571429 +6892,114.8833333,1695,442,,302.6785714,78.92857143 +6893,114.9,1710,440,,305.3571429,78.57142857 +6894,114.9166667,1725,439,,308.0357143,78.39285714 +6895,114.9333333,1737,437,,310.1785714,78.03571429 +6896,114.95,1748,436,,312.1428571,77.85714286 +6897,114.9666667,1757,435,,313.75,77.67857143 +6898,114.9833333,1764,434,,315,77.5 +6899,115,1770,433,,316.0714286,77.32142857 +6900,115.0166667,1774,433,,316.7857143,77.32142857 +6901,115.0333333,1774,433,,316.7857143,77.32142857 +6902,115.05,1774,433,,316.7857143,77.32142857 +6903,115.0666667,1774,433,,316.7857143,77.32142857 +6904,115.0833333,1770,434,,316.0714286,77.5 +6905,115.1,1765,434,,315.1785714,77.5 +6906,115.1166667,1757,435,,313.75,77.67857143 +6907,115.1333333,1748,436,,312.1428571,77.85714286 +6908,115.15,1738,437,,310.3571429,78.03571429 +6909,115.1666667,1725,439,,308.0357143,78.39285714 +6910,115.1833333,1711,441,,305.5357143,78.75 +6911,115.2,1696,442,,302.8571429,78.92857143 +6912,115.2166667,1679,444,,299.8214286,79.28571429 +6913,115.2333333,1661,446,,296.6071429,79.64285714 +6914,115.25,1641,447,,293.0357143,79.82142857 +6915,115.2666667,1620,449,,289.2857143,80.17857143 +6916,115.2833333,1599,451,,285.5357143,80.53571429 +6917,115.3,1576,452,,281.4285714,80.71428571 +6918,115.3166667,1552,454,,277.1428571,81.07142857 +6919,115.3333333,1528,455,,272.8571429,81.25 +6920,115.35,1503,456,,268.3928571,81.42857143 +6921,115.3666667,1478,457,,263.9285714,81.60714286 +6922,115.3833333,1452,458,,259.2857143,81.78571429 +6923,115.4,1426,459,,254.6428571,81.96428571 +6924,115.4166667,1400,460,,250,82.14285714 +6925,115.4333333,1374,460,,245.3571429,82.14285714 +6926,115.45,1349,460,,240.8928571,82.14285714 +6927,115.4666667,1323,460,,236.25,82.14285714 +6928,115.4833333,1298,460,,231.7857143,82.14285714 +6929,115.5,1274,458,,227.5,81.78571429 +6930,115.5166667,1249,458,,223.0357143,81.78571429 +6931,115.5333333,1226,457,,218.9285714,81.60714286 +6932,115.55,1204,456,,215,81.42857143 +6933,115.5666667,1183,455,,211.25,81.25 +6934,115.5833333,1163,454,,207.6785714,81.07142857 +6935,115.6,1144,452,,204.2857143,80.71428571 +6936,115.6166667,1126,451,,201.0714286,80.53571429 +6937,115.6333333,1110,450,,198.2142857,80.35714286 +6938,115.65,1095,449,,195.5357143,80.17857143 +6939,115.6666667,1082,448,,193.2142857,80 +6940,115.6833333,1070,447,,191.0714286,79.82142857 +6941,115.7,1060,446,,189.2857143,79.64285714 +6942,115.7166667,1051,445,,187.6785714,79.46428571 +6943,115.7333333,1045,444,,186.6071429,79.28571429 +6944,115.75,1040,444,,185.7142857,79.28571429 +6945,115.7666667,1036,443,,185,79.10714286 +6946,115.7833333,1036,443,,185,79.10714286 +6947,115.8,1036,443,,185,79.10714286 +6948,115.8166667,1037,443,,185.1785714,79.10714286 +6949,115.8333333,1041,444,,185.8928571,79.28571429 +6950,115.85,1047,444,,186.9642857,79.28571429 +6951,115.8666667,1054,445,,188.2142857,79.46428571 +6952,115.8833333,1063,446,,189.8214286,79.64285714 +6953,115.9,1074,447,,191.7857143,79.82142857 +6954,115.9166667,1087,448,,194.1071429,80 +6955,115.9333333,1101,449,,196.6071429,80.17857143 +6956,115.95,1116,450,,199.2857143,80.35714286 +6957,115.9666667,1133,451,,202.3214286,80.53571429 +6958,115.9833333,1151,453,,205.5357143,80.89285714 +6959,116,1171,454,,209.1071429,81.07142857 +6960,116.0166667,1191,455,,212.6785714,81.25 +6961,116.0333333,1213,456,,216.6071429,81.42857143 +6962,116.05,1235,457,,220.5357143,81.60714286 +6963,116.0666667,1259,458,,224.8214286,81.78571429 +6964,116.0833333,1283,458,,229.1071429,81.78571429 +6965,116.1,1308,459,,233.5714286,81.96428571 +6966,116.1166667,1333,459,,238.0357143,81.96428571 +6967,116.1333333,1358,459,,242.5,81.96428571 +6968,116.15,1384,459,,247.1428571,81.96428571 +6969,116.1666667,1410,459,,251.7857143,81.96428571 +6970,116.1833333,1436,459,,256.4285714,81.96428571 +6971,116.2,1462,458,,261.0714286,81.78571429 +6972,116.2166667,1488,457,,265.7142857,81.60714286 +6973,116.2333333,1513,456,,270.1785714,81.42857143 +6974,116.25,1537,455,,274.4642857,81.25 +6975,116.2666667,1561,453,,278.75,80.89285714 +6976,116.2833333,1585,452,,283.0357143,80.71428571 +6977,116.3,1607,450,,286.9642857,80.35714286 +6978,116.3166667,1628,449,,290.7142857,80.17857143 +6979,116.3333333,1648,447,,294.2857143,79.82142857 +6980,116.35,1667,444,,297.6785714,79.28571429 +6981,116.3666667,1685,443,,300.8928571,79.10714286 +6982,116.3833333,1701,441,,303.75,78.75 +6983,116.4,1716,440,,306.4285714,78.57142857 +6984,116.4166667,1729,438,,308.75,78.21428571 +6985,116.4333333,1741,437,,310.8928571,78.03571429 +6986,116.45,1751,436,,312.6785714,77.85714286 +6987,116.4666667,1760,435,,314.2857143,77.67857143 +6988,116.4833333,1766,434,,315.3571429,77.5 +6989,116.5,1771,433,,316.25,77.32142857 +6990,116.5166667,1773,433,,316.6071429,77.32142857 +6991,116.5333333,1773,433,,316.6071429,77.32142857 +6992,116.55,1773,433,,316.6071429,77.32142857 +6993,116.5666667,1771,433,,316.25,77.32142857 +6994,116.5833333,1767,434,,315.5357143,77.5 +6995,116.6,1760,435,,314.2857143,77.67857143 +6996,116.6166667,1752,435,,312.8571429,77.67857143 +6997,116.6333333,1742,437,,311.0714286,78.03571429 +6998,116.65,1731,438,,309.1071429,78.21428571 +6999,116.6666667,1718,440,,306.7857143,78.57142857 +7000,116.6833333,1703,441,,304.1071429,78.75 +7001,116.7,1687,443,,301.25,79.10714286 +7002,116.7166667,1670,445,,298.2142857,79.46428571 +7003,116.7333333,1651,446,,294.8214286,79.64285714 +7004,116.75,1631,448,,291.25,80 +7005,116.7666667,1609,450,,287.3214286,80.35714286 +7006,116.7833333,1588,451,,283.5714286,80.53571429 +7007,116.8,1565,453,,279.4642857,80.89285714 +7008,116.8166667,1541,455,,275.1785714,81.25 +7009,116.8333333,1516,456,,270.7142857,81.42857143 +7010,116.85,1491,457,,266.25,81.60714286 +7011,116.8666667,1466,458,,261.7857143,81.78571429 +7012,116.8833333,1440,459,,257.1428571,81.96428571 +7013,116.9,1414,459,,252.5,81.96428571 +7014,116.9166667,1389,460,,248.0357143,82.14285714 +7015,116.9333333,1363,460,,243.3928571,82.14285714 +7016,116.95,1337,460,,238.75,82.14285714 +7017,116.9666667,1312,460,,234.2857143,82.14285714 +7018,116.9833333,1287,459,,229.8214286,81.96428571 +7019,117,1263,458,,225.5357143,81.78571429 +7020,117.0166667,1239,457,,221.25,81.60714286 +7021,117.0333333,1217,457,,217.3214286,81.60714286 +7022,117.05,1195,456,,213.3928571,81.42857143 +7023,117.0666667,1174,454,,209.6428571,81.07142857 +7024,117.0833333,1155,453,,206.25,80.89285714 +7025,117.1,1137,452,,203.0357143,80.71428571 +7026,117.1166667,1120,451,,200,80.53571429 +7027,117.1333333,1104,450,,197.1428571,80.35714286 +7028,117.15,1090,448,,194.6428571,80 +7029,117.1666667,1077,447,,192.3214286,79.82142857 +7030,117.1833333,1066,446,,190.3571429,79.64285714 +7031,117.2,1056,445,,188.5714286,79.46428571 +7032,117.2166667,1049,445,,187.3214286,79.46428571 +7033,117.2333333,1043,444,,186.25,79.28571429 +7034,117.25,1039,444,,185.5357143,79.28571429 +7035,117.2666667,1037,443,,185.1785714,79.10714286 +7036,117.2833333,1037,443,,185.1785714,79.10714286 +7037,117.3,1037,443,,185.1785714,79.10714286 +7038,117.3166667,1040,444,,185.7142857,79.28571429 +7039,117.3333333,1045,444,,186.6071429,79.28571429 +7040,117.35,1051,445,,187.6785714,79.46428571 +7041,117.3666667,1059,446,,189.1071429,79.64285714 +7042,117.3833333,1069,446,,190.8928571,79.64285714 +7043,117.4,1081,447,,193.0357143,79.82142857 +7044,117.4166667,1094,448,,195.3571429,80 +7045,117.4333333,1108,450,,197.8571429,80.35714286 +7046,117.45,1124,451,,200.7142857,80.53571429 +7047,117.4666667,1142,452,,203.9285714,80.71428571 +7048,117.4833333,1160,453,,207.1428571,80.89285714 +7049,117.5,1180,454,,210.7142857,81.07142857 +7050,117.5166667,1201,456,,214.4642857,81.42857143 +7051,117.5333333,1223,457,,218.3928571,81.60714286 +7052,117.55,1246,457,,222.5,81.60714286 +7053,117.5666667,1270,458,,226.7857143,81.78571429 +7054,117.5833333,1294,459,,231.0714286,81.96428571 +7055,117.6,1319,460,,235.5357143,82.14285714 +7056,117.6166667,1344,460,,240,82.14285714 +7057,117.6333333,1370,460,,244.6428571,82.14285714 +7058,117.65,1396,459,,249.2857143,81.96428571 +7059,117.6666667,1422,459,,253.9285714,81.96428571 +7060,117.6833333,1448,458,,258.5714286,81.78571429 +7061,117.7,1473,457,,263.0357143,81.60714286 +7062,117.7166667,1498,457,,267.5,81.60714286 +7063,117.7333333,1523,456,,271.9642857,81.42857143 +7064,117.75,1547,454,,276.25,81.07142857 +7065,117.7666667,1571,453,,280.5357143,80.89285714 +7066,117.7833333,1594,451,,284.6428571,80.53571429 +7067,117.8,1616,449,,288.5714286,80.17857143 +7068,117.8166667,1637,448,,292.3214286,80 +7069,117.8333333,1656,446,,295.7142857,79.64285714 +7070,117.85,1675,444,,299.1071429,79.28571429 +7071,117.8666667,1692,442,,302.1428571,78.92857143 +7072,117.8833333,1707,441,,304.8214286,78.75 +7073,117.9,1721,439,,307.3214286,78.39285714 +7074,117.9166667,1733,438,,309.4642857,78.21428571 +7075,117.9333333,1744,437,,311.4285714,78.03571429 +7076,117.95,1754,436,,313.2142857,77.85714286 +7077,117.9666667,1761,435,,314.4642857,77.67857143 +7078,117.9833333,1766,434,,315.3571429,77.5 +7079,118,1771,433,,316.25,77.32142857 +7080,118.0166667,1771,433,,316.25,77.32142857 +7081,118.0333333,1771,433,,316.25,77.32142857 +7082,118.05,1771,434,,316.25,77.5 +7083,118.0666667,1767,434,,315.5357143,77.5 +7084,118.0833333,1762,435,,314.6428571,77.67857143 +7085,118.1,1755,436,,313.3928571,77.85714286 +7086,118.1166667,1746,437,,311.7857143,78.03571429 +7087,118.1333333,1736,438,,310,78.21428571 +7088,118.15,1723,439,,307.6785714,78.39285714 +7089,118.1666667,1710,440,,305.3571429,78.57142857 +7090,118.1833333,1694,442,,302.5,78.92857143 +7091,118.2,1678,444,,299.6428571,79.28571429 +7092,118.2166667,1660,446,,296.4285714,79.64285714 +7093,118.2333333,1641,447,,293.0357143,79.82142857 +7094,118.25,1620,449,,289.2857143,80.17857143 +7095,118.2666667,1598,451,,285.3571429,80.53571429 +7096,118.2833333,1576,452,,281.4285714,80.71428571 +7097,118.3,1553,454,,277.3214286,81.07142857 +7098,118.3166667,1528,455,,272.8571429,81.25 +7099,118.3333333,1504,457,,268.5714286,81.60714286 +7100,118.35,1479,458,,264.1071429,81.78571429 +7101,118.3666667,1454,458,,259.6428571,81.78571429 +7102,118.3833333,1428,459,,255,81.96428571 +7103,118.4,1402,460,,250.3571429,82.14285714 +7104,118.4166667,1376,460,,245.7142857,82.14285714 +7105,118.4333333,1351,460,,241.25,82.14285714 +7106,118.45,1326,460,,236.7857143,82.14285714 +7107,118.4666667,1301,460,,232.3214286,82.14285714 +7108,118.4833333,1276,459,,227.8571429,81.96428571 +7109,118.5,1252,458,,223.5714286,81.78571429 +7110,118.5166667,1229,457,,219.4642857,81.60714286 +7111,118.5333333,1207,456,,215.5357143,81.42857143 +7112,118.55,1186,455,,211.7857143,81.25 +7113,118.5666667,1166,454,,208.2142857,81.07142857 +7114,118.5833333,1147,453,,204.8214286,80.89285714 +7115,118.6,1129,452,,201.6071429,80.71428571 +7116,118.6166667,1113,450,,198.75,80.35714286 +7117,118.6333333,1098,449,,196.0714286,80.17857143 +7118,118.65,1085,448,,193.75,80 +7119,118.6666667,1073,446,,191.6071429,79.64285714 +7120,118.6833333,1063,446,,189.8214286,79.64285714 +7121,118.7,1054,445,,188.2142857,79.46428571 +7122,118.7166667,1047,444,,186.9642857,79.28571429 +7123,118.7333333,1042,444,,186.0714286,79.28571429 +7124,118.75,1038,443,,185.3571429,79.10714286 +7125,118.7666667,1038,443,,185.3571429,79.10714286 +7126,118.7833333,1038,443,,185.3571429,79.10714286 +7127,118.8,1039,444,,185.5357143,79.28571429 +7128,118.8166667,1043,444,,186.25,79.28571429 +7129,118.8333333,1048,444,,187.1428571,79.28571429 +7130,118.85,1056,445,,188.5714286,79.46428571 +7131,118.8666667,1065,446,,190.1785714,79.64285714 +7132,118.8833333,1075,447,,191.9642857,79.82142857 +7133,118.9,1087,448,,194.1071429,80 +7134,118.9166667,1101,449,,196.6071429,80.17857143 +7135,118.9333333,1116,450,,199.2857143,80.35714286 +7136,118.95,1133,451,,202.3214286,80.53571429 +7137,118.9666667,1151,453,,205.5357143,80.89285714 +7138,118.9833333,1170,454,,208.9285714,81.07142857 +7139,119,1190,455,,212.5,81.25 +7140,119.0166667,1212,456,,216.4285714,81.42857143 +7141,119.0333333,1234,457,,220.3571429,81.60714286 +7142,119.05,1257,458,,224.4642857,81.78571429 +7143,119.0666667,1281,458,,228.75,81.78571429 +7144,119.0833333,1306,459,,233.2142857,81.96428571 +7145,119.1,1331,460,,237.6785714,82.14285714 +7146,119.1166667,1356,460,,242.1428571,82.14285714 +7147,119.1333333,1382,460,,246.7857143,82.14285714 +7148,119.15,1408,459,,251.4285714,81.96428571 +7149,119.1666667,1434,459,,256.0714286,81.96428571 +7150,119.1833333,1460,458,,260.7142857,81.78571429 +7151,119.2,1485,457,,265.1785714,81.60714286 +7152,119.2166667,1510,456,,269.6428571,81.42857143 +7153,119.2333333,1534,454,,273.9285714,81.07142857 +7154,119.25,1558,453,,278.2142857,80.89285714 +7155,119.2666667,1581,452,,282.3214286,80.71428571 +7156,119.2833333,1603,450,,286.25,80.35714286 +7157,119.3,1625,448,,290.1785714,80 +7158,119.3166667,1645,447,,293.75,79.82142857 +7159,119.3333333,1664,445,,297.1428571,79.46428571 +7160,119.35,1682,443,,300.3571429,79.10714286 +7161,119.3666667,1698,442,,303.2142857,78.92857143 +7162,119.3833333,1713,440,,305.8928571,78.57142857 +7163,119.4,1726,439,,308.2142857,78.39285714 +7164,119.4166667,1738,437,,310.3571429,78.03571429 +7165,119.4333333,1748,436,,312.1428571,77.85714286 +7166,119.45,1756,435,,313.5714286,77.67857143 +7167,119.4666667,1762,434,,314.6428571,77.5 +7168,119.4833333,1767,434,,315.5357143,77.5 +7169,119.5,1770,433,,316.0714286,77.32142857 +7170,119.5166667,1770,433,,316.0714286,77.32142857 +7171,119.5333333,1770,433,,316.0714286,77.32142857 +7172,119.55,1768,434,,315.7142857,77.5 +7173,119.5666667,1764,434,,315,77.5 +7174,119.5833333,1758,435,,313.9285714,77.67857143 +7175,119.6,1750,436,,312.5,77.85714286 +7176,119.6166667,1740,437,,310.7142857,78.03571429 +7177,119.6333333,1729,438,,308.75,78.21428571 +7178,119.65,1716,440,,306.4285714,78.57142857 +7179,119.6666667,1702,441,,303.9285714,78.75 +7180,119.6833333,1686,443,,301.0714286,79.10714286 +7181,119.7,1669,445,,298.0357143,79.46428571 +7182,119.7166667,1650,447,,294.6428571,79.82142857 +7183,119.7333333,1630,448,,291.0714286,80 +7184,119.75,1609,450,,287.3214286,80.35714286 +7185,119.7666667,1587,452,,283.3928571,80.71428571 +7186,119.7833333,1565,453,,279.4642857,80.89285714 +7187,119.8,1541,454,,275.1785714,81.07142857 +7188,119.8166667,1517,456,,270.8928571,81.42857143 +7189,119.8333333,1492,457,,266.4285714,81.60714286 +7190,119.85,1467,458,,261.9642857,81.78571429 +7191,119.8666667,1441,459,,257.3214286,81.96428571 +7192,119.8833333,1416,459,,252.8571429,81.96428571 +7193,119.9,1390,460,,248.2142857,82.14285714 +7194,119.9166667,1364,460,,243.5714286,82.14285714 +7195,119.9333333,1339,460,,239.1071429,82.14285714 +7196,119.95,1314,460,,234.6428571,82.14285714 +7197,119.9666667,1289,459,,230.1785714,81.96428571 +7198,119.9833333,1265,458,,225.8928571,81.78571429 +7199,120,1242,457,,221.7857143,81.60714286 +7200,120.0166667,1219,456,,217.6785714,81.42857143 +7201,120.0333333,1197,456,,213.75,81.42857143 +7202,120.05,1177,454,,210.1785714,81.07142857 +7203,120.0666667,1157,453,,206.6071429,80.89285714 +7204,120.0833333,1139,452,,203.3928571,80.71428571 +7205,120.1,1122,451,,200.3571429,80.53571429 +7206,120.1166667,1106,449,,197.5,80.17857143 +7207,120.1333333,1092,448,,195,80 +7208,120.15,1080,447,,192.8571429,79.82142857 +7209,120.1666667,1068,446,,190.7142857,79.64285714 +7210,120.1833333,1059,445,,189.1071429,79.46428571 +7211,120.2,1051,445,,187.6785714,79.46428571 +7212,120.2166667,1045,444,,186.6071429,79.28571429 +7213,120.2333333,1041,444,,185.8928571,79.28571429 +7214,120.25,1038,443,,185.3571429,79.10714286 +7215,120.2666667,1038,443,,185.3571429,79.10714286 +7216,120.2833333,1038,443,,185.3571429,79.10714286 +7217,120.3,1041,444,,185.8928571,79.28571429 +7218,120.3166667,1046,444,,186.7857143,79.28571429 +7219,120.3333333,1052,445,,187.8571429,79.46428571 +7220,120.35,1060,445,,189.2857143,79.46428571 +7221,120.3666667,1070,446,,191.0714286,79.64285714 +7222,120.3833333,1081,447,,193.0357143,79.82142857 +7223,120.4,1094,448,,195.3571429,80 +7224,120.4166667,1109,449,,198.0357143,80.17857143 +7225,120.4333333,1124,451,,200.7142857,80.53571429 +7226,120.45,1141,452,,203.75,80.71428571 +7227,120.4666667,1160,453,,207.1428571,80.89285714 +7228,120.4833333,1180,454,,210.7142857,81.07142857 +7229,120.5,1200,455,,214.2857143,81.25 +7230,120.5166667,1222,456,,218.2142857,81.42857143 +7231,120.5333333,1245,457,,222.3214286,81.60714286 +7232,120.55,1269,458,,226.6071429,81.78571429 +7233,120.5666667,1293,458,,230.8928571,81.78571429 +7234,120.5833333,1318,459,,235.3571429,81.96428571 +7235,120.6,1343,459,,239.8214286,81.96428571 +7236,120.6166667,1368,459,,244.2857143,81.96428571 +7237,120.6333333,1394,459,,248.9285714,81.96428571 +7238,120.65,1419,458,,253.3928571,81.78571429 +7239,120.6666667,1445,458,,258.0357143,81.78571429 +7240,120.6833333,1471,457,,262.6785714,81.60714286 +7241,120.7,1496,456,,267.1428571,81.42857143 +7242,120.7166667,1521,455,,271.6071429,81.25 +7243,120.7333333,1545,453,,275.8928571,80.89285714 +7244,120.75,1568,452,,280,80.71428571 +7245,120.7666667,1591,450,,284.1071429,80.35714286 +7246,120.7833333,1612,449,,287.8571429,80.17857143 +7247,120.8,1633,447,,291.6071429,79.82142857 +7248,120.8166667,1653,446,,295.1785714,79.64285714 +7249,120.8333333,1671,444,,298.3928571,79.28571429 +7250,120.85,1688,442,,301.4285714,78.92857143 +7251,120.8666667,1704,440,,304.2857143,78.57142857 +7252,120.8833333,1718,439,,306.7857143,78.39285714 +7253,120.9,1730,438,,308.9285714,78.21428571 +7254,120.9166667,1741,436,,310.8928571,77.85714286 +7255,120.9333333,1751,435,,312.6785714,77.67857143 +7256,120.95,1758,435,,313.9285714,77.67857143 +7257,120.9666667,1764,434,,315,77.5 +7258,120.9833333,1768,433,,315.7142857,77.32142857 +7259,121,1769,433,,315.8928571,77.32142857 +7260,121.0166667,1769,433,,315.8928571,77.32142857 +7261,121.0333333,1769,433,,315.8928571,77.32142857 +7262,121.05,1765,434,,315.1785714,77.5 +7263,121.0666667,1760,434,,314.2857143,77.5 +7264,121.0833333,1753,435,,313.0357143,77.67857143 +7265,121.1,1745,437,,311.6071429,78.03571429 +7266,121.1166667,1734,437,,309.6428571,78.03571429 +7267,121.1333333,1722,439,,307.5,78.39285714 +7268,121.15,1708,440,,305,78.57142857 +7269,121.1666667,1694,442,,302.5,78.92857143 +7270,121.1833333,1677,444,,299.4642857,79.28571429 +7271,121.2,1659,445,,296.25,79.46428571 +7272,121.2166667,1640,447,,292.8571429,79.82142857 +7273,121.2333333,1619,449,,289.1071429,80.17857143 +7274,121.25,1598,450,,285.3571429,80.35714286 +7275,121.2666667,1576,452,,281.4285714,80.71428571 +7276,121.2833333,1552,454,,277.1428571,81.07142857 +7277,121.3,1529,455,,273.0357143,81.25 +7278,121.3166667,1504,456,,268.5714286,81.42857143 +7279,121.3333333,1479,457,,264.1071429,81.60714286 +7280,121.35,1454,458,,259.6428571,81.78571429 +7281,121.3666667,1428,459,,255,81.96428571 +7282,121.3833333,1403,459,,250.5357143,81.96428571 +7283,121.4,1377,460,,245.8928571,82.14285714 +7284,121.4166667,1351,460,,241.25,82.14285714 +7285,121.4333333,1326,460,,236.7857143,82.14285714 +7286,121.45,1301,459,,232.3214286,81.96428571 +7287,121.4666667,1277,459,,228.0357143,81.96428571 +7288,121.4833333,1253,458,,223.75,81.78571429 +7289,121.5,1230,457,,219.6428571,81.60714286 +7290,121.5166667,1208,456,,215.7142857,81.42857143 +7291,121.5333333,1187,455,,211.9642857,81.25 +7292,121.55,1167,454,,208.3928571,81.07142857 +7293,121.5666667,1148,453,,205,80.89285714 +7294,121.5833333,1130,452,,201.7857143,80.71428571 +7295,121.6,1114,450,,198.9285714,80.35714286 +7296,121.6166667,1099,449,,196.25,80.17857143 +7297,121.6333333,1086,448,,193.9285714,80 +7298,121.65,1074,447,,191.7857143,79.82142857 +7299,121.6666667,1064,446,,190,79.64285714 +7300,121.6833333,1055,445,,188.3928571,79.46428571 +7301,121.7,1049,444,,187.3214286,79.28571429 +7302,121.7166667,1043,443,,186.25,79.10714286 +7303,121.7333333,1040,443,,185.7142857,79.10714286 +7304,121.75,1040,443,,185.7142857,79.10714286 +7305,121.7666667,1040,443,,185.7142857,79.10714286 +7306,121.7833333,1040,443,,185.7142857,79.10714286 +7307,121.8,1044,444,,186.4285714,79.28571429 +7308,121.8166667,1049,444,,187.3214286,79.28571429 +7309,121.8333333,1056,444,,188.5714286,79.28571429 +7310,121.85,1065,445,,190.1785714,79.46428571 +7311,121.8666667,1075,446,,191.9642857,79.64285714 +7312,121.8833333,1087,448,,194.1071429,80 +7313,121.9,1101,449,,196.6071429,80.17857143 +7314,121.9166667,1116,450,,199.2857143,80.35714286 +7315,121.9333333,1132,451,,202.1428571,80.53571429 +7316,121.95,1150,452,,205.3571429,80.71428571 +7317,121.9666667,1169,453,,208.75,80.89285714 +7318,121.9833333,1189,454,,212.3214286,81.07142857 +7319,122,1210,455,,216.0714286,81.25 +7320,122.0166667,1232,456,,220,81.42857143 +7321,122.0333333,1255,457,,224.1071429,81.60714286 +7322,122.05,1279,458,,228.3928571,81.78571429 +7323,122.0666667,1304,459,,232.8571429,81.96428571 +7324,122.0833333,1328,459,,237.1428571,81.96428571 +7325,122.1,1354,459,,241.7857143,81.96428571 +7326,122.1166667,1379,459,,246.25,81.96428571 +7327,122.1333333,1405,458,,250.8928571,81.78571429 +7328,122.15,1431,458,,255.5357143,81.78571429 +7329,122.1666667,1456,457,,260,81.60714286 +7330,122.1833333,1481,456,,264.4642857,81.42857143 +7331,122.2,1506,455,,268.9285714,81.25 +7332,122.2166667,1531,454,,273.3928571,81.07142857 +7333,122.2333333,1554,453,,277.5,80.89285714 +7334,122.25,1577,451,,281.6071429,80.53571429 +7335,122.2666667,1599,450,,285.5357143,80.35714286 +7336,122.2833333,1621,448,,289.4642857,80 +7337,122.3,1641,446,,293.0357143,79.64285714 +7338,122.3166667,1660,445,,296.4285714,79.46428571 +7339,122.3333333,1677,443,,299.4642857,79.10714286 +7340,122.35,1693,442,,302.3214286,78.92857143 +7341,122.3666667,1709,440,,305.1785714,78.57142857 +7342,122.3833333,1722,438,,307.5,78.21428571 +7343,122.4,1733,437,,309.4642857,78.03571429 +7344,122.4166667,1744,436,,311.4285714,77.85714286 +7345,122.4333333,1752,435,,312.8571429,77.67857143 +7346,122.45,1759,434,,314.1071429,77.5 +7347,122.4666667,1764,434,,315,77.5 +7348,122.4833333,1767,433,,315.5357143,77.32142857 +7349,122.5,1767,433,,315.5357143,77.32142857 +7350,122.5166667,1767,433,,315.5357143,77.32142857 +7351,122.5333333,1766,434,,315.3571429,77.5 +7352,122.55,1761,434,,314.4642857,77.5 +7353,122.5666667,1755,435,,313.3928571,77.67857143 +7354,122.5833333,1748,436,,312.1428571,77.85714286 +7355,122.6,1738,437,,310.3571429,78.03571429 +7356,122.6166667,1727,438,,308.3928571,78.21428571 +7357,122.6333333,1715,439,,306.25,78.39285714 +7358,122.65,1700,441,,303.5714286,78.75 +7359,122.6666667,1684,443,,300.7142857,79.10714286 +7360,122.6833333,1667,445,,297.6785714,79.46428571 +7361,122.7,1649,446,,294.4642857,79.64285714 +7362,122.7166667,1629,448,,290.8928571,80 +7363,122.7333333,1609,449,,287.3214286,80.17857143 +7364,122.75,1587,451,,283.3928571,80.53571429 +7365,122.7666667,1565,453,,279.4642857,80.89285714 +7366,122.7833333,1541,454,,275.1785714,81.07142857 +7367,122.8,1517,455,,270.8928571,81.25 +7368,122.8166667,1492,457,,266.4285714,81.60714286 +7369,122.8333333,1467,457,,261.9642857,81.60714286 +7370,122.85,1442,458,,257.5,81.78571429 +7371,122.8666667,1416,458,,252.8571429,81.78571429 +7372,122.8833333,1391,459,,248.3928571,81.96428571 +7373,122.9,1365,459,,243.75,81.96428571 +7374,122.9166667,1340,459,,239.2857143,81.96428571 +7375,122.9333333,1315,459,,234.8214286,81.96428571 +7376,122.95,1291,459,,230.5357143,81.96428571 +7377,122.9666667,1267,458,,226.25,81.78571429 +7378,122.9833333,1244,457,,222.1428571,81.60714286 +7379,123,1221,456,,218.0357143,81.42857143 +7380,123.0166667,1199,455,,214.1071429,81.25 +7381,123.0333333,1179,454,,210.5357143,81.07142857 +7382,123.05,1160,453,,207.1428571,80.89285714 +7383,123.0666667,1141,452,,203.75,80.71428571 +7384,123.0833333,1124,451,,200.7142857,80.53571429 +7385,123.1,1109,449,,198.0357143,80.17857143 +7386,123.1166667,1095,448,,195.5357143,80 +7387,123.1333333,1082,447,,193.2142857,79.82142857 +7388,123.15,1071,446,,191.25,79.64285714 +7389,123.1666667,1062,445,,189.6428571,79.46428571 +7390,123.1833333,1054,444,,188.2142857,79.28571429 +7391,123.2,1048,444,,187.1428571,79.28571429 +7392,123.2166667,1044,443,,186.4285714,79.10714286 +7393,123.2333333,1041,443,,185.8928571,79.10714286 +7394,123.25,1041,443,,185.8928571,79.10714286 +7395,123.2666667,1041,443,,185.8928571,79.10714286 +7396,123.2833333,1043,443,,186.25,79.10714286 +7397,123.3,1048,443,,187.1428571,79.10714286 +7398,123.3166667,1054,444,,188.2142857,79.28571429 +7399,123.3333333,1062,444,,189.6428571,79.28571429 +7400,123.35,1072,445,,191.4285714,79.46428571 +7401,123.3666667,1083,446,,193.3928571,79.64285714 +7402,123.3833333,1095,447,,195.5357143,79.82142857 +7403,123.4,1109,449,,198.0357143,80.17857143 +7404,123.4166667,1125,449,,200.8928571,80.17857143 +7405,123.4333333,1142,451,,203.9285714,80.53571429 +7406,123.45,1160,452,,207.1428571,80.71428571 +7407,123.4666667,1180,453,,210.7142857,80.89285714 +7408,123.4833333,1200,454,,214.2857143,81.07142857 +7409,123.5,1222,455,,218.2142857,81.25 +7410,123.5166667,1245,456,,222.3214286,81.42857143 +7411,123.5333333,1268,457,,226.4285714,81.60714286 +7412,123.55,1291,458,,230.5357143,81.78571429 +7413,123.5666667,1316,458,,235,81.78571429 +7414,123.5833333,1341,458,,239.4642857,81.78571429 +7415,123.6,1366,458,,243.9285714,81.78571429 +7416,123.6166667,1392,458,,248.5714286,81.78571429 +7417,123.6333333,1417,458,,253.0357143,81.78571429 +7418,123.65,1443,457,,257.6785714,81.60714286 +7419,123.6666667,1468,456,,262.1428571,81.42857143 +7420,123.6833333,1493,455,,266.6071429,81.25 +7421,123.7,1517,454,,270.8928571,81.07142857 +7422,123.7166667,1542,453,,275.3571429,80.89285714 +7423,123.7333333,1565,452,,279.4642857,80.71428571 +7424,123.75,1588,450,,283.5714286,80.35714286 +7425,123.7666667,1609,449,,287.3214286,80.17857143 +7426,123.7833333,1630,447,,291.0714286,79.82142857 +7427,123.8,1649,445,,294.4642857,79.46428571 +7428,123.8166667,1668,444,,297.8571429,79.28571429 +7429,123.8333333,1685,442,,300.8928571,78.92857143 +7430,123.85,1700,440,,303.5714286,78.57142857 +7431,123.8666667,1714,439,,306.0714286,78.39285714 +7432,123.8833333,1727,438,,308.3928571,78.21428571 +7433,123.9,1738,436,,310.3571429,77.85714286 +7434,123.9166667,1747,435,,311.9642857,77.67857143 +7435,123.9333333,1755,435,,313.3928571,77.67857143 +7436,123.95,1761,434,,314.4642857,77.5 +7437,123.9666667,1765,433,,315.1785714,77.32142857 +7438,123.9833333,1766,433,,315.3571429,77.32142857 +7439,124,1766,433,,315.3571429,77.32142857 +7440,124.0166667,1766,433,,315.3571429,77.32142857 +7441,124.0333333,1763,434,,314.8214286,77.5 +7442,124.05,1758,434,,313.9285714,77.5 +7443,124.0666667,1751,435,,312.6785714,77.67857143 +7444,124.0833333,1743,436,,311.25,77.85714286 +7445,124.1,1733,438,,309.4642857,78.21428571 +7446,124.1166667,1721,439,,307.3214286,78.39285714 +7447,124.1333333,1707,440,,304.8214286,78.57142857 +7448,124.15,1693,442,,302.3214286,78.92857143 +7449,124.1666667,1677,444,,299.4642857,79.28571429 +7450,124.1833333,1659,445,,296.25,79.46428571 +7451,124.2,1641,447,,293.0357143,79.82142857 +7452,124.2166667,1620,449,,289.2857143,80.17857143 +7453,124.2333333,1600,451,,285.7142857,80.53571429 +7454,124.25,1578,452,,281.7857143,80.71428571 +7455,124.2666667,1555,454,,277.6785714,81.07142857 +7456,124.2833333,1531,455,,273.3928571,81.25 +7457,124.3,1506,456,,268.9285714,81.42857143 +7458,124.3166667,1482,457,,264.6428571,81.60714286 +7459,124.3333333,1457,458,,260.1785714,81.78571429 +7460,124.35,1431,459,,255.5357143,81.96428571 +7461,124.3666667,1406,459,,251.0714286,81.96428571 +7462,124.3833333,1380,459,,246.4285714,81.96428571 +7463,124.4,1355,459,,241.9642857,81.96428571 +7464,124.4166667,1330,459,,237.5,81.96428571 +7465,124.4333333,1305,459,,233.0357143,81.96428571 +7466,124.45,1281,459,,228.75,81.96428571 +7467,124.4666667,1257,458,,224.4642857,81.78571429 +7468,124.4833333,1235,457,,220.5357143,81.60714286 +7469,124.5,1212,456,,216.4285714,81.42857143 +7470,124.5166667,1191,455,,212.6785714,81.25 +7471,124.5333333,1171,454,,209.1071429,81.07142857 +7472,124.55,1152,452,,205.7142857,80.71428571 +7473,124.5666667,1135,451,,202.6785714,80.53571429 +7474,124.5833333,1119,450,,199.8214286,80.35714286 +7475,124.6,1104,449,,197.1428571,80.17857143 +7476,124.6166667,1090,448,,194.6428571,80 +7477,124.6333333,1078,447,,192.5,79.82142857 +7478,124.65,1068,446,,190.7142857,79.64285714 +7479,124.6666667,1059,445,,189.1071429,79.46428571 +7480,124.6833333,1052,444,,187.8571429,79.28571429 +7481,124.7,1047,444,,186.9642857,79.28571429 +7482,124.7166667,1043,443,,186.25,79.10714286 +7483,124.7333333,1043,443,,186.25,79.10714286 +7484,124.75,1043,443,,186.25,79.10714286 +7485,124.7666667,1043,443,,186.25,79.10714286 +7486,124.7833333,1046,444,,186.7857143,79.28571429 +7487,124.8,1052,444,,187.8571429,79.28571429 +7488,124.8166667,1058,445,,188.9285714,79.46428571 +7489,124.8333333,1067,445,,190.5357143,79.46428571 +7490,124.85,1077,446,,192.3214286,79.64285714 +7491,124.8666667,1089,447,,194.4642857,79.82142857 +7492,124.8833333,1102,449,,196.7857143,80.17857143 +7493,124.9,1117,449,,199.4642857,80.17857143 +7494,124.9166667,1133,450,,202.3214286,80.35714286 +7495,124.9333333,1151,452,,205.5357143,80.71428571 +7496,124.95,1170,453,,208.9285714,80.89285714 +7497,124.9666667,1189,454,,212.3214286,81.07142857 +7498,124.9833333,1210,455,,216.0714286,81.25 +7499,125,1232,456,,220,81.42857143 +7500,125.0166667,1255,457,,224.1071429,81.60714286 +7501,125.0333333,1279,458,,228.3928571,81.78571429 +7502,125.05,1303,459,,232.6785714,81.96428571 +7503,125.0666667,1328,459,,237.1428571,81.96428571 +7504,125.0833333,1353,459,,241.6071429,81.96428571 +7505,125.1,1378,459,,246.0714286,81.96428571 +7506,125.1166667,1403,459,,250.5357143,81.96428571 +7507,125.1333333,1429,458,,255.1785714,81.78571429 +7508,125.15,1454,457,,259.6428571,81.60714286 +7509,125.1666667,1479,456,,264.1071429,81.42857143 +7510,125.1833333,1504,455,,268.5714286,81.25 +7511,125.2,1528,454,,272.8571429,81.07142857 +7512,125.2166667,1552,453,,277.1428571,80.89285714 +7513,125.2333333,1575,451,,281.25,80.53571429 +7514,125.25,1597,450,,285.1785714,80.35714286 +7515,125.2666667,1618,448,,288.9285714,80 +7516,125.2833333,1638,447,,292.5,79.82142857 +7517,125.3,1657,445,,295.8928571,79.46428571 +7518,125.3166667,1675,444,,299.1071429,79.28571429 +7519,125.3333333,1691,442,,301.9642857,78.92857143 +7520,125.35,1706,440,,304.6428571,78.57142857 +7521,125.3666667,1719,439,,306.9642857,78.39285714 +7522,125.3833333,1731,438,,309.1071429,78.21428571 +7523,125.4,1741,437,,310.8928571,78.03571429 +7524,125.4166667,1750,435,,312.5,77.67857143 +7525,125.4333333,1756,435,,313.5714286,77.67857143 +7526,125.45,1761,434,,314.4642857,77.5 +7527,125.4666667,1765,434,,315.1785714,77.5 +7528,125.4833333,1765,434,,315.1785714,77.5 +7529,125.5,1765,434,,315.1785714,77.5 +7530,125.5166667,1763,434,,314.8214286,77.5 +7531,125.5333333,1759,435,,314.1071429,77.67857143 +7532,125.55,1754,436,,313.2142857,77.85714286 +7533,125.5666667,1746,437,,311.7857143,78.03571429 +7534,125.5833333,1737,438,,310.1785714,78.21428571 +7535,125.6,1726,439,,308.2142857,78.39285714 +7536,125.6166667,1713,441,,305.8928571,78.75 +7537,125.6333333,1699,442,,303.3928571,78.92857143 +7538,125.65,1684,444,,300.7142857,79.28571429 +7539,125.6666667,1667,445,,297.6785714,79.46428571 +7540,125.6833333,1649,447,,294.4642857,79.82142857 +7541,125.7,1629,449,,290.8928571,80.17857143 +7542,125.7166667,1609,451,,287.3214286,80.53571429 +7543,125.7333333,1587,452,,283.3928571,80.71428571 +7544,125.75,1565,453,,279.4642857,80.89285714 +7545,125.7666667,1542,455,,275.3571429,81.25 +7546,125.7833333,1518,456,,271.0714286,81.42857143 +7547,125.8,1494,457,,266.7857143,81.60714286 +7548,125.8166667,1469,458,,262.3214286,81.78571429 +7549,125.8333333,1444,459,,257.8571429,81.96428571 +7550,125.85,1418,460,,253.2142857,82.14285714 +7551,125.8666667,1393,460,,248.75,82.14285714 +7552,125.8833333,1367,460,,244.1071429,82.14285714 +7553,125.9,1343,460,,239.8214286,82.14285714 +7554,125.9166667,1318,460,,235.3571429,82.14285714 +7555,125.9333333,1293,460,,230.8928571,82.14285714 +7556,125.95,1269,459,,226.6071429,81.96428571 +7557,125.9666667,1246,458,,222.5,81.78571429 +7558,125.9833333,1224,457,,218.5714286,81.60714286 +7559,126,1203,456,,214.8214286,81.42857143 +7560,126.0166667,1182,455,,211.0714286,81.25 +7561,126.0333333,1163,454,,207.6785714,81.07142857 +7562,126.05,1145,453,,204.4642857,80.89285714 +7563,126.0666667,1128,452,,201.4285714,80.71428571 +7564,126.0833333,1112,450,,198.5714286,80.35714286 +7565,126.1,1098,449,,196.0714286,80.17857143 +7566,126.1166667,1085,448,,193.75,80 +7567,126.1333333,1074,447,,191.7857143,79.82142857 +7568,126.15,1064,446,,190,79.64285714 +7569,126.1666667,1056,445,,188.5714286,79.46428571 +7570,126.1833333,1050,445,,187.5,79.46428571 +7571,126.2,1046,444,,186.7857143,79.28571429 +7572,126.2166667,1043,444,,186.25,79.28571429 +7573,126.2333333,1043,444,,186.25,79.28571429 +7574,126.25,1043,444,,186.25,79.28571429 +7575,126.2666667,1045,444,,186.6071429,79.28571429 +7576,126.2833333,1049,445,,187.3214286,79.46428571 +7577,126.3,1055,445,,188.3928571,79.46428571 +7578,126.3166667,1063,446,,189.8214286,79.64285714 +7579,126.3333333,1072,447,,191.4285714,79.82142857 +7580,126.35,1083,448,,193.3928571,80 +7581,126.3666667,1096,448,,195.7142857,80 +7582,126.3833333,1110,450,,198.2142857,80.35714286 +7583,126.4,1125,451,,200.8928571,80.53571429 +7584,126.4166667,1142,452,,203.9285714,80.71428571 +7585,126.4333333,1160,453,,207.1428571,80.89285714 +7586,126.45,1179,454,,210.5357143,81.07142857 +7587,126.4666667,1200,456,,214.2857143,81.42857143 +7588,126.4833333,1221,457,,218.0357143,81.60714286 +7589,126.5,1244,457,,222.1428571,81.60714286 +7590,126.5166667,1267,458,,226.25,81.78571429 +7591,126.5333333,1291,459,,230.5357143,81.96428571 +7592,126.55,1316,460,,235,82.14285714 +7593,126.5666667,1340,460,,239.2857143,82.14285714 +7594,126.5833333,1365,460,,243.75,82.14285714 +7595,126.6,1390,460,,248.2142857,82.14285714 +7596,126.6166667,1416,459,,252.8571429,81.96428571 +7597,126.6333333,1441,458,,257.3214286,81.78571429 +7598,126.65,1466,458,,261.7857143,81.78571429 +7599,126.6666667,1492,457,,266.4285714,81.60714286 +7600,126.6833333,1516,456,,270.7142857,81.42857143 +7601,126.7,1540,455,,275,81.25 +7602,126.7166667,1563,453,,279.1071429,80.89285714 +7603,126.7333333,1586,452,,283.2142857,80.71428571 +7604,126.75,1607,450,,286.9642857,80.35714286 +7605,126.7666667,1628,448,,290.7142857,80 +7606,126.7833333,1647,447,,294.1071429,79.82142857 +7607,126.8,1666,445,,297.5,79.46428571 +7608,126.8166667,1683,443,,300.5357143,79.10714286 +7609,126.8333333,1698,442,,303.2142857,78.92857143 +7610,126.85,1712,441,,305.7142857,78.75 +7611,126.8666667,1725,439,,308.0357143,78.39285714 +7612,126.8833333,1736,438,,310,78.21428571 +7613,126.9,1745,437,,311.6071429,78.03571429 +7614,126.9166667,1753,436,,313.0357143,77.85714286 +7615,126.9333333,1759,435,,314.1071429,77.67857143 +7616,126.95,1763,435,,314.8214286,77.67857143 +7617,126.9666667,1765,435,,315.1785714,77.67857143 +7618,126.9833333,1765,435,,315.1785714,77.67857143 +7619,127,1765,435,,315.1785714,77.67857143 +7620,127.0166667,1762,435,,314.6428571,77.67857143 +7621,127.0333333,1757,436,,313.75,77.85714286 +7622,127.05,1751,437,,312.6785714,78.03571429 +7623,127.0666667,1742,438,,311.0714286,78.21428571 +7624,127.0833333,1732,439,,309.2857143,78.39285714 +7625,127.1,1720,441,,307.1428571,78.75 +7626,127.1166667,1707,442,,304.8214286,78.92857143 +7627,127.1333333,1693,444,,302.3214286,79.28571429 +7628,127.15,1677,445,,299.4642857,79.46428571 +7629,127.1666667,1659,447,,296.25,79.82142857 +7630,127.1833333,1641,448,,293.0357143,80 +7631,127.2,1621,450,,289.4642857,80.35714286 +7632,127.2166667,1600,451,,285.7142857,80.53571429 +7633,127.2333333,1578,453,,281.7857143,80.89285714 +7634,127.25,1556,455,,277.8571429,81.25 +7635,127.2666667,1532,456,,273.5714286,81.42857143 +7636,127.2833333,1508,457,,269.2857143,81.60714286 +7637,127.3,1483,458,,264.8214286,81.78571429 +7638,127.3166667,1458,458,,260.3571429,81.78571429 +7639,127.3333333,1433,459,,255.8928571,81.96428571 +7640,127.35,1408,460,,251.4285714,82.14285714 +7641,127.3666667,1383,460,,246.9642857,82.14285714 +7642,127.3833333,1357,460,,242.3214286,82.14285714 +7643,127.4,1333,460,,238.0357143,82.14285714 +7644,127.4166667,1308,460,,233.5714286,82.14285714 +7645,127.4333333,1284,460,,229.2857143,82.14285714 +7646,127.45,1260,459,,225,81.96428571 +7647,127.4666667,1238,458,,221.0714286,81.78571429 +7648,127.4833333,1215,457,,216.9642857,81.60714286 +7649,127.5,1194,456,,213.2142857,81.42857143 +7650,127.5166667,1175,455,,209.8214286,81.25 +7651,127.5333333,1156,453,,206.4285714,80.89285714 +7652,127.55,1138,452,,203.2142857,80.71428571 +7653,127.5666667,1122,451,,200.3571429,80.53571429 +7654,127.5833333,1107,450,,197.6785714,80.35714286 +7655,127.6,1093,448,,195.1785714,80 +7656,127.6166667,1081,447,,193.0357143,79.82142857 +7657,127.6333333,1071,446,,191.25,79.64285714 +7658,127.65,1062,446,,189.6428571,79.64285714 +7659,127.6666667,1055,445,,188.3928571,79.46428571 +7660,127.6833333,1050,444,,187.5,79.28571429 +7661,127.7,1046,444,,186.7857143,79.28571429 +7662,127.7166667,1045,444,,186.6071429,79.28571429 +7663,127.7333333,1045,444,,186.6071429,79.28571429 +7664,127.75,1045,444,,186.6071429,79.28571429 +7665,127.7666667,1049,444,,187.3214286,79.28571429 +7666,127.7833333,1054,444,,188.2142857,79.28571429 +7667,127.8,1060,445,,189.2857143,79.46428571 +7668,127.8166667,1069,446,,190.8928571,79.64285714 +7669,127.8333333,1079,447,,192.6785714,79.82142857 +7670,127.85,1090,448,,194.6428571,80 +7671,127.8666667,1103,449,,196.9642857,80.17857143 +7672,127.8833333,1118,450,,199.6428571,80.35714286 +7673,127.9,1134,451,,202.5,80.53571429 +7674,127.9166667,1151,452,,205.5357143,80.71428571 +7675,127.9333333,1170,453,,208.9285714,80.89285714 +7676,127.95,1190,454,,212.5,81.07142857 +7677,127.9666667,1210,455,,216.0714286,81.25 +7678,127.9833333,1232,456,,220,81.42857143 +7679,128,1255,457,,224.1071429,81.60714286 +7680,128.0166667,1278,458,,228.2142857,81.78571429 +7681,128.0333333,1302,458,,232.5,81.78571429 +7682,128.05,1327,459,,236.9642857,81.96428571 +7683,128.0666667,1352,459,,241.4285714,81.96428571 +7684,128.0833333,1377,459,,245.8928571,81.96428571 +7685,128.1,1402,458,,250.3571429,81.78571429 +7686,128.1166667,1427,458,,254.8214286,81.78571429 +7687,128.1333333,1453,457,,259.4642857,81.60714286 +7688,128.15,1478,456,,263.9285714,81.42857143 +7689,128.1666667,1502,455,,268.2142857,81.25 +7690,128.1833333,1526,454,,272.5,81.07142857 +7691,128.2,1550,453,,276.7857143,80.89285714 +7692,128.2166667,1573,452,,280.8928571,80.71428571 +7693,128.2333333,1595,450,,284.8214286,80.35714286 +7694,128.25,1616,448,,288.5714286,80 +7695,128.2666667,1636,447,,292.1428571,79.82142857 +7696,128.2833333,1655,445,,295.5357143,79.46428571 +7697,128.3,1672,443,,298.5714286,79.10714286 +7698,128.3166667,1688,442,,301.4285714,78.92857143 +7699,128.3333333,1703,440,,304.1071429,78.57142857 +7700,128.35,1716,439,,306.4285714,78.39285714 +7701,128.3666667,1729,438,,308.75,78.21428571 +7702,128.3833333,1739,436,,310.5357143,77.85714286 +7703,128.4,1747,435,,311.9642857,77.67857143 +7704,128.4166667,1754,435,,313.2142857,77.67857143 +7705,128.4333333,1759,434,,314.1071429,77.5 +7706,128.45,1763,434,,314.8214286,77.5 +7707,128.4666667,1763,434,,314.8214286,77.5 +7708,128.4833333,1763,434,,314.8214286,77.5 +7709,128.5,1762,434,,314.6428571,77.5 +7710,128.5166667,1758,435,,313.9285714,77.67857143 +7711,128.5333333,1752,436,,312.8571429,77.85714286 +7712,128.55,1745,436,,311.6071429,77.85714286 +7713,128.5666667,1735,437,,309.8214286,78.03571429 +7714,128.5833333,1725,439,,308.0357143,78.39285714 +7715,128.6,1712,440,,305.7142857,78.57142857 +7716,128.6166667,1699,441,,303.3928571,78.75 +7717,128.6333333,1683,443,,300.5357143,79.10714286 +7718,128.65,1666,445,,297.5,79.46428571 +7719,128.6666667,1648,447,,294.2857143,79.82142857 +7720,128.6833333,1629,448,,290.8928571,80 +7721,128.7,1609,450,,287.3214286,80.35714286 +7722,128.7166667,1587,452,,283.3928571,80.71428571 +7723,128.7333333,1565,453,,279.4642857,80.89285714 +7724,128.75,1542,455,,275.3571429,81.25 +7725,128.7666667,1518,456,,271.0714286,81.42857143 +7726,128.7833333,1494,457,,266.7857143,81.60714286 +7727,128.8,1470,458,,262.5,81.78571429 +7728,128.8166667,1445,459,,258.0357143,81.96428571 +7729,128.8333333,1419,460,,253.3928571,82.14285714 +7730,128.85,1393,460,,248.75,82.14285714 +7731,128.8666667,1368,460,,244.2857143,82.14285714 +7732,128.8833333,1344,460,,240,82.14285714 +7733,128.9,1319,460,,235.5357143,82.14285714 +7734,128.9166667,1294,460,,231.0714286,82.14285714 +7735,128.9333333,1271,459,,226.9642857,81.96428571 +7736,128.95,1248,458,,222.8571429,81.78571429 +7737,128.9666667,1226,457,,218.9285714,81.60714286 +7738,128.9833333,1205,456,,215.1785714,81.42857143 +7739,129,1184,455,,211.4285714,81.25 +7740,129.0166667,1165,454,,208.0357143,81.07142857 +7741,129.0333333,1147,452,,204.8214286,80.71428571 +7742,129.05,1130,451,,201.7857143,80.53571429 +7743,129.0666667,1114,450,,198.9285714,80.35714286 +7744,129.0833333,1100,449,,196.4285714,80.17857143 +7745,129.1,1087,448,,194.1071429,80 +7746,129.1166667,1076,447,,192.1428571,79.82142857 +7747,129.1333333,1067,445,,190.5357143,79.46428571 +7748,129.15,1059,445,,189.1071429,79.46428571 +7749,129.1666667,1053,444,,188.0357143,79.28571429 +7750,129.1833333,1048,444,,187.1428571,79.28571429 +7751,129.2,1045,444,,186.6071429,79.28571429 +7752,129.2166667,1045,444,,186.6071429,79.28571429 +7753,129.2333333,1045,444,,186.6071429,79.28571429 +7754,129.25,1047,444,,186.9642857,79.28571429 +7755,129.2666667,1051,444,,187.6785714,79.28571429 +7756,129.2833333,1057,445,,188.75,79.46428571 +7757,129.3,1065,445,,190.1785714,79.46428571 +7758,129.3166667,1074,446,,191.7857143,79.64285714 +7759,129.3333333,1085,447,,193.75,79.82142857 +7760,129.35,1097,448,,195.8928571,80 +7761,129.3666667,1111,449,,198.3928571,80.17857143 +7762,129.3833333,1126,450,,201.0714286,80.35714286 +7763,129.4,1142,451,,203.9285714,80.53571429 +7764,129.4166667,1160,452,,207.1428571,80.71428571 +7765,129.4333333,1179,453,,210.5357143,80.89285714 +7766,129.45,1199,454,,214.1071429,81.07142857 +7767,129.4666667,1220,456,,217.8571429,81.42857143 +7768,129.4833333,1243,457,,221.9642857,81.60714286 +7769,129.5,1265,457,,225.8928571,81.60714286 +7770,129.5166667,1289,458,,230.1785714,81.78571429 +7771,129.5333333,1313,459,,234.4642857,81.96428571 +7772,129.55,1337,459,,238.75,81.96428571 +7773,129.5666667,1362,459,,243.2142857,81.96428571 +7774,129.5833333,1387,459,,247.6785714,81.96428571 +7775,129.6,1413,458,,252.3214286,81.78571429 +7776,129.6166667,1438,457,,256.7857143,81.60714286 +7777,129.6333333,1463,457,,261.25,81.60714286 +7778,129.65,1488,456,,265.7142857,81.42857143 +7779,129.6666667,1512,455,,270,81.25 +7780,129.6833333,1536,454,,274.2857143,81.07142857 +7781,129.7,1559,452,,278.3928571,80.71428571 +7782,129.7166667,1581,451,,282.3214286,80.53571429 +7783,129.7333333,1603,449,,286.25,80.17857143 +7784,129.75,1624,448,,290,80 +7785,129.7666667,1643,446,,293.3928571,79.64285714 +7786,129.7833333,1661,445,,296.6071429,79.46428571 +7787,129.8,1678,443,,299.6428571,79.10714286 +7788,129.8166667,1694,442,,302.5,78.92857143 +7789,129.8333333,1708,440,,305,78.57142857 +7790,129.85,1720,439,,307.1428571,78.39285714 +7791,129.8666667,1732,438,,309.2857143,78.21428571 +7792,129.8833333,1741,436,,310.8928571,77.85714286 +7793,129.9,1749,436,,312.3214286,77.85714286 +7794,129.9166667,1755,435,,313.3928571,77.67857143 +7795,129.9333333,1759,434,,314.1071429,77.5 +7796,129.95,1761,434,,314.4642857,77.5 +7797,129.9666667,1761,434,,314.4642857,77.5 +7798,129.9833333,1761,434,,314.4642857,77.5 +7799,130,1758,435,,313.9285714,77.67857143 +7800,130.0166667,1754,435,,313.2142857,77.67857143 +7801,130.0333333,1747,436,,311.9642857,77.85714286 +7802,130.05,1739,437,,310.5357143,78.03571429 +7803,130.0666667,1729,438,,308.75,78.21428571 +7804,130.0833333,1718,439,,306.7857143,78.39285714 +7805,130.1,1705,441,,304.4642857,78.75 +7806,130.1166667,1691,442,,301.9642857,78.92857143 +7807,130.1333333,1675,444,,299.1071429,79.28571429 +7808,130.15,1657,446,,295.8928571,79.64285714 +7809,130.1666667,1639,447,,292.6785714,79.82142857 +7810,130.1833333,1620,449,,289.2857143,80.17857143 +7811,130.2,1599,450,,285.5357143,80.35714286 +7812,130.2166667,1577,452,,281.6071429,80.71428571 +7813,130.2333333,1555,454,,277.6785714,81.07142857 +7814,130.25,1532,455,,273.5714286,81.25 +7815,130.2666667,1508,456,,269.2857143,81.42857143 +7816,130.2833333,1483,457,,264.8214286,81.60714286 +7817,130.3,1459,458,,260.5357143,81.78571429 +7818,130.3166667,1434,458,,256.0714286,81.78571429 +7819,130.3333333,1410,459,,251.7857143,81.96428571 +7820,130.35,1385,460,,247.3214286,82.14285714 +7821,130.3666667,1359,460,,242.6785714,82.14285714 +7822,130.3833333,1335,460,,238.3928571,82.14285714 +7823,130.4,1310,459,,233.9285714,81.96428571 +7824,130.4166667,1286,459,,229.6428571,81.96428571 +7825,130.4333333,1263,458,,225.5357143,81.78571429 +7826,130.45,1240,457,,221.4285714,81.60714286 +7827,130.4666667,1218,456,,217.5,81.42857143 +7828,130.4833333,1197,455,,213.75,81.25 +7829,130.5,1177,453,,210.1785714,80.89285714 +7830,130.5166667,1158,453,,206.7857143,80.89285714 +7831,130.5333333,1141,451,,203.75,80.53571429 +7832,130.55,1124,450,,200.7142857,80.35714286 +7833,130.5666667,1109,449,,198.0357143,80.17857143 +7834,130.5833333,1096,448,,195.7142857,80 +7835,130.6,1084,447,,193.5714286,79.82142857 +7836,130.6166667,1073,446,,191.6071429,79.64285714 +7837,130.6333333,1064,445,,190,79.46428571 +7838,130.65,1057,445,,188.75,79.46428571 +7839,130.6666667,1052,444,,187.8571429,79.28571429 +7840,130.6833333,1048,443,,187.1428571,79.10714286 +7841,130.7,1047,443,,186.9642857,79.10714286 +7842,130.7166667,1047,443,,186.9642857,79.10714286 +7843,130.7333333,1047,443,,186.9642857,79.10714286 +7844,130.75,1050,444,,187.5,79.28571429 +7845,130.7666667,1055,444,,188.3928571,79.28571429 +7846,130.7833333,1062,445,,189.6428571,79.46428571 +7847,130.8,1070,446,,191.0714286,79.64285714 +7848,130.8166667,1080,446,,192.8571429,79.64285714 +7849,130.8333333,1091,447,,194.8214286,79.82142857 +7850,130.85,1104,448,,197.1428571,80 +7851,130.8666667,1119,449,,199.8214286,80.17857143 +7852,130.8833333,1134,450,,202.5,80.35714286 +7853,130.9,1151,452,,205.5357143,80.71428571 +7854,130.9166667,1170,453,,208.9285714,80.89285714 +7855,130.9333333,1189,454,,212.3214286,81.07142857 +7856,130.95,1210,455,,216.0714286,81.25 +7857,130.9666667,1232,456,,220,81.42857143 +7858,130.9833333,1254,457,,223.9285714,81.60714286 +7859,131,1277,458,,228.0357143,81.78571429 +7860,131.0166667,1301,458,,232.3214286,81.78571429 +7861,131.0333333,1326,459,,236.7857143,81.96428571 +7862,131.05,1350,459,,241.0714286,81.96428571 +7863,131.0666667,1375,459,,245.5357143,81.96428571 +7864,131.0833333,1400,458,,250,81.78571429 +7865,131.1,1425,458,,254.4642857,81.78571429 +7866,131.1166667,1450,457,,258.9285714,81.60714286 +7867,131.1333333,1475,456,,263.3928571,81.42857143 +7868,131.15,1500,455,,267.8571429,81.25 +7869,131.1666667,1524,454,,272.1428571,81.07142857 +7870,131.1833333,1547,453,,276.25,80.89285714 +7871,131.2,1570,452,,280.3571429,80.71428571 +7872,131.2166667,1591,450,,284.1071429,80.35714286 +7873,131.2333333,1612,449,,287.8571429,80.17857143 +7874,131.25,1632,447,,291.4285714,79.82142857 +7875,131.2666667,1652,446,,295,79.64285714 +7876,131.2833333,1669,444,,298.0357143,79.28571429 +7877,131.3,1685,443,,300.8928571,79.10714286 +7878,131.3166667,1700,441,,303.5714286,78.75 +7879,131.3333333,1713,440,,305.8928571,78.57142857 +7880,131.35,1725,439,,308.0357143,78.39285714 +7881,131.3666667,1735,437,,309.8214286,78.03571429 +7882,131.3833333,1744,436,,311.4285714,77.85714286 +7883,131.4,1751,436,,312.6785714,77.85714286 +7884,131.4166667,1756,435,,313.5714286,77.67857143 +7885,131.4333333,1759,435,,314.1071429,77.67857143 +7886,131.45,1759,435,,314.1071429,77.67857143 +7887,131.4666667,1759,435,,314.1071429,77.67857143 +7888,131.4833333,1759,435,,314.1071429,77.67857143 +7889,131.5,1755,436,,313.3928571,77.85714286 +7890,131.5166667,1750,436,,312.5,77.85714286 +7891,131.5333333,1742,437,,311.0714286,78.03571429 +7892,131.55,1733,438,,309.4642857,78.21428571 +7893,131.5666667,1722,440,,307.5,78.57142857 +7894,131.5833333,1710,441,,305.3571429,78.75 +7895,131.6,1697,443,,303.0357143,79.10714286 +7896,131.6166667,1682,444,,300.3571429,79.28571429 +7897,131.6333333,1665,446,,297.3214286,79.64285714 +7898,131.65,1647,447,,294.1071429,79.82142857 +7899,131.6666667,1629,449,,290.8928571,80.17857143 +7900,131.6833333,1608,451,,287.1428571,80.53571429 +7901,131.7,1588,452,,283.5714286,80.71428571 +7902,131.7166667,1566,454,,279.6428571,81.07142857 +7903,131.7333333,1543,456,,275.5357143,81.42857143 +7904,131.75,1519,457,,271.25,81.60714286 +7905,131.7666667,1496,458,,267.1428571,81.78571429 +7906,131.7833333,1471,459,,262.6785714,81.96428571 +7907,131.8,1447,460,,258.3928571,82.14285714 +7908,131.8166667,1422,460,,253.9285714,82.14285714 +7909,131.8333333,1397,461,,249.4642857,82.32142857 +7910,131.85,1372,461,,245,82.32142857 +7911,131.8666667,1347,461,,240.5357143,82.32142857 +7912,131.8833333,1323,461,,236.25,82.32142857 +7913,131.9,1298,461,,231.7857143,82.32142857 +7914,131.9166667,1275,459,,227.6785714,81.96428571 +7915,131.9333333,1252,459,,223.5714286,81.96428571 +7916,131.95,1230,458,,219.6428571,81.78571429 +7917,131.9666667,1208,457,,215.7142857,81.60714286 +7918,131.9833333,1188,456,,212.1428571,81.42857143 +7919,132,1169,454,,208.75,81.07142857 +7920,132.0166667,1150,453,,205.3571429,80.89285714 +7921,132.0333333,1134,452,,202.5,80.71428571 +7922,132.05,1118,451,,199.6428571,80.53571429 +7923,132.0666667,1104,450,,197.1428571,80.35714286 +7924,132.0833333,1091,449,,194.8214286,80.17857143 +7925,132.1,1080,448,,192.8571429,80 +7926,132.1166667,1070,447,,191.0714286,79.82142857 +7927,132.1333333,1062,446,,189.6428571,79.64285714 +7928,132.15,1056,446,,188.5714286,79.64285714 +7929,132.1666667,1052,445,,187.8571429,79.46428571 +7930,132.1833333,1048,445,,187.1428571,79.46428571 +7931,132.2,1048,445,,187.1428571,79.46428571 +7932,132.2166667,1048,445,,187.1428571,79.46428571 +7933,132.2333333,1050,445,,187.5,79.46428571 +7934,132.25,1054,445,,188.2142857,79.46428571 +7935,132.2666667,1060,445,,189.2857143,79.46428571 +7936,132.2833333,1067,446,,190.5357143,79.64285714 +7937,132.3,1076,447,,192.1428571,79.82142857 +7938,132.3166667,1087,448,,194.1071429,80 +7939,132.3333333,1099,449,,196.25,80.17857143 +7940,132.35,1113,450,,198.75,80.35714286 +7941,132.3666667,1128,451,,201.4285714,80.53571429 +7942,132.3833333,1144,452,,204.2857143,80.71428571 +7943,132.4,1162,453,,207.5,80.89285714 +7944,132.4166667,1181,454,,210.8928571,81.07142857 +7945,132.4333333,1201,456,,214.4642857,81.42857143 +7946,132.45,1222,456,,218.2142857,81.42857143 +7947,132.4666667,1244,457,,222.1428571,81.60714286 +7948,132.4833333,1266,458,,226.0714286,81.78571429 +7949,132.5,1290,459,,230.3571429,81.96428571 +7950,132.5166667,1314,459,,234.6428571,81.96428571 +7951,132.5333333,1338,459,,238.9285714,81.96428571 +7952,132.55,1363,459,,243.3928571,81.96428571 +7953,132.5666667,1388,459,,247.8571429,81.96428571 +7954,132.5833333,1413,459,,252.3214286,81.96428571 +7955,132.6,1438,458,,256.7857143,81.78571429 +7956,132.6166667,1463,458,,261.25,81.78571429 +7957,132.6333333,1488,457,,265.7142857,81.60714286 +7958,132.65,1512,456,,270,81.42857143 +7959,132.6666667,1536,455,,274.2857143,81.25 +7960,132.6833333,1559,453,,278.3928571,80.89285714 +7961,132.7,1581,452,,282.3214286,80.71428571 +7962,132.7166667,1603,450,,286.25,80.35714286 +7963,132.7333333,1623,449,,289.8214286,80.17857143 +7964,132.75,1642,447,,293.2142857,79.82142857 +7965,132.7666667,1661,445,,296.6071429,79.46428571 +7966,132.7833333,1677,444,,299.4642857,79.28571429 +7967,132.8,1693,442,,302.3214286,78.92857143 +7968,132.8166667,1707,441,,304.8214286,78.75 +7969,132.8333333,1719,440,,306.9642857,78.57142857 +7970,132.85,1731,438,,309.1071429,78.21428571 +7971,132.8666667,1740,437,,310.7142857,78.03571429 +7972,132.8833333,1748,436,,312.1428571,77.85714286 +7973,132.9,1754,435,,313.2142857,77.67857143 +7974,132.9166667,1758,435,,313.9285714,77.67857143 +7975,132.9333333,1760,435,,314.2857143,77.67857143 +7976,132.95,1760,435,,314.2857143,77.67857143 +7977,132.9666667,1760,435,,314.2857143,77.67857143 +7978,132.9833333,1757,435,,313.75,77.67857143 +7979,133,1752,436,,312.8571429,77.85714286 +7980,133.0166667,1746,437,,311.7857143,78.03571429 +7981,133.0333333,1738,438,,310.3571429,78.21428571 +7982,133.05,1728,439,,308.5714286,78.39285714 +7983,133.0666667,1717,440,,306.6071429,78.57142857 +7984,133.0833333,1704,441,,304.2857143,78.75 +7985,133.1,1690,443,,301.7857143,79.10714286 +7986,133.1166667,1674,444,,298.9285714,79.28571429 +7987,133.1333333,1657,446,,295.8928571,79.64285714 +7988,133.15,1639,448,,292.6785714,80 +7989,133.1666667,1620,449,,289.2857143,80.17857143 +7990,133.1833333,1600,451,,285.7142857,80.53571429 +7991,133.2,1578,452,,281.7857143,80.71428571 +7992,133.2166667,1556,454,,277.8571429,81.07142857 +7993,133.2333333,1533,455,,273.75,81.25 +7994,133.25,1509,456,,269.4642857,81.42857143 +7995,133.2666667,1485,457,,265.1785714,81.60714286 +7996,133.2833333,1460,458,,260.7142857,81.78571429 +7997,133.3,1436,459,,256.4285714,81.96428571 +7998,133.3166667,1411,459,,251.9642857,81.96428571 +7999,133.3333333,1386,460,,247.5,82.14285714 +8000,133.35,1361,460,,243.0357143,82.14285714 +8001,133.3666667,1336,460,,238.5714286,82.14285714 +8002,133.3833333,1312,460,,234.2857143,82.14285714 +8003,133.4,1288,459,,230,81.96428571 +8004,133.4166667,1265,458,,225.8928571,81.78571429 +8005,133.4333333,1243,457,,221.9642857,81.60714286 +8006,133.45,1221,456,,218.0357143,81.42857143 +8007,133.4666667,1199,455,,214.1071429,81.25 +8008,133.4833333,1180,454,,210.7142857,81.07142857 +8009,133.5,1161,453,,207.3214286,80.89285714 +8010,133.5166667,1143,452,,204.1071429,80.71428571 +8011,133.5333333,1127,450,,201.25,80.35714286 +8012,133.55,1112,449,,198.5714286,80.17857143 +8013,133.5666667,1099,448,,196.25,80 +8014,133.5833333,1087,447,,194.1071429,79.82142857 +8015,133.6,1076,446,,192.1428571,79.64285714 +8016,133.6166667,1067,445,,190.5357143,79.46428571 +8017,133.6333333,1060,445,,189.2857143,79.46428571 +8018,133.65,1054,444,,188.2142857,79.28571429 +8019,133.6666667,1050,444,,187.5,79.28571429 +8020,133.6833333,1049,444,,187.3214286,79.28571429 +8021,133.7,1049,444,,187.3214286,79.28571429 +8022,133.7166667,1049,444,,187.3214286,79.28571429 +8023,133.7333333,1052,444,,187.8571429,79.28571429 +8024,133.75,1057,444,,188.75,79.28571429 +8025,133.7666667,1063,445,,189.8214286,79.46428571 +8026,133.7833333,1071,445,,191.25,79.46428571 +8027,133.8,1081,446,,193.0357143,79.64285714 +8028,133.8166667,1092,447,,195,79.82142857 +8029,133.8333333,1105,448,,197.3214286,80 +8030,133.85,1119,450,,199.8214286,80.35714286 +8031,133.8666667,1135,450,,202.6785714,80.35714286 +8032,133.8833333,1152,451,,205.7142857,80.53571429 +8033,133.9,1170,453,,208.9285714,80.89285714 +8034,133.9166667,1189,454,,212.3214286,81.07142857 +8035,133.9333333,1209,455,,215.8928571,81.25 +8036,133.95,1231,456,,219.8214286,81.42857143 +8037,133.9666667,1253,457,,223.75,81.60714286 +8038,133.9833333,1275,457,,227.6785714,81.60714286 +8039,134,1299,458,,231.9642857,81.78571429 +8040,134.0166667,1323,458,,236.25,81.78571429 +8041,134.0333333,1348,458,,240.7142857,81.78571429 +8042,134.05,1372,458,,245,81.78571429 +8043,134.0666667,1397,458,,249.4642857,81.78571429 +8044,134.0833333,1422,458,,253.9285714,81.78571429 +8045,134.1,1447,457,,258.3928571,81.60714286 +8046,134.1166667,1472,457,,262.8571429,81.60714286 +8047,134.1333333,1496,456,,267.1428571,81.42857143 +8048,134.15,1519,455,,271.25,81.25 +8049,134.1666667,1543,453,,275.5357143,80.89285714 +8050,134.1833333,1565,452,,279.4642857,80.71428571 +8051,134.2,1587,451,,283.3928571,80.53571429 +8052,134.2166667,1608,449,,287.1428571,80.17857143 +8053,134.2333333,1628,448,,290.7142857,80 +8054,134.25,1647,446,,294.1071429,79.64285714 +8055,134.2666667,1664,445,,297.1428571,79.46428571 +8056,134.2833333,1681,443,,300.1785714,79.10714286 +8057,134.3,1696,441,,302.8571429,78.75 +8058,134.3166667,1709,440,,305.1785714,78.57142857 +8059,134.3333333,1721,439,,307.3214286,78.39285714 +8060,134.35,1731,438,,309.1071429,78.21428571 +8061,134.3666667,1740,437,,310.7142857,78.03571429 +8062,134.3833333,1747,436,,311.9642857,77.85714286 +8063,134.4,1752,435,,312.8571429,77.67857143 +8064,134.4166667,1756,435,,313.5714286,77.67857143 +8065,134.4333333,1756,435,,313.5714286,77.67857143 +8066,134.45,1756,435,,313.5714286,77.67857143 +8067,134.4666667,1756,435,,313.5714286,77.67857143 +8068,134.4833333,1752,435,,312.8571429,77.67857143 +8069,134.5,1747,436,,311.9642857,77.85714286 +8070,134.5166667,1740,437,,310.7142857,78.03571429 +8071,134.5333333,1731,438,,309.1071429,78.21428571 +8072,134.55,1721,439,,307.3214286,78.39285714 +8073,134.5666667,1709,440,,305.1785714,78.57142857 +8074,134.5833333,1696,441,,302.8571429,78.75 +8075,134.6,1681,443,,300.1785714,79.10714286 +8076,134.6166667,1665,445,,297.3214286,79.46428571 +8077,134.6333333,1647,446,,294.1071429,79.64285714 +8078,134.65,1629,448,,290.8928571,80 +8079,134.6666667,1609,450,,287.3214286,80.35714286 +8080,134.6833333,1588,451,,283.5714286,80.53571429 +8081,134.7,1566,453,,279.6428571,80.89285714 +8082,134.7166667,1543,454,,275.5357143,81.07142857 +8083,134.7333333,1520,455,,271.4285714,81.25 +8084,134.75,1497,456,,267.3214286,81.42857143 +8085,134.7666667,1472,457,,262.8571429,81.60714286 +8086,134.7833333,1448,458,,258.5714286,81.78571429 +8087,134.8,1423,459,,254.1071429,81.96428571 +8088,134.8166667,1398,459,,249.6428571,81.96428571 +8089,134.8333333,1373,460,,245.1785714,82.14285714 +8090,134.85,1348,460,,240.7142857,82.14285714 +8091,134.8666667,1324,460,,236.4285714,82.14285714 +8092,134.8833333,1300,459,,232.1428571,81.96428571 +8093,134.9,1277,458,,228.0357143,81.78571429 +8094,134.9166667,1254,457,,223.9285714,81.60714286 +8095,134.9333333,1232,457,,220,81.60714286 +8096,134.95,1211,455,,216.25,81.25 +8097,134.9666667,1191,454,,212.6785714,81.07142857 +8098,134.9833333,1171,453,,209.1071429,80.89285714 +8099,135,1153,452,,205.8928571,80.71428571 +8100,135.0166667,1137,451,,203.0357143,80.53571429 +8101,135.0333333,1121,449,,200.1785714,80.17857143 +8102,135.05,1107,448,,197.6785714,80 +8103,135.0666667,1094,447,,195.3571429,79.82142857 +8104,135.0833333,1083,446,,193.3928571,79.64285714 +8105,135.1,1073,446,,191.6071429,79.64285714 +8106,135.1166667,1066,445,,190.3571429,79.46428571 +8107,135.1333333,1059,444,,189.1071429,79.28571429 +8108,135.15,1054,444,,188.2142857,79.28571429 +8109,135.1666667,1051,443,,187.6785714,79.10714286 +8110,135.1833333,1051,443,,187.6785714,79.10714286 +8111,135.2,1051,443,,187.6785714,79.10714286 +8112,135.2166667,1052,444,,187.8571429,79.28571429 +8113,135.2333333,1056,444,,188.5714286,79.28571429 +8114,135.25,1061,444,,189.4642857,79.28571429 +8115,135.2666667,1069,445,,190.8928571,79.46428571 +8116,135.2833333,1078,445,,192.5,79.46428571 +8117,135.3,1088,446,,194.2857143,79.64285714 +8118,135.3166667,1100,447,,196.4285714,79.82142857 +8119,135.3333333,1113,448,,198.75,80 +8120,135.35,1128,450,,201.4285714,80.35714286 +8121,135.3666667,1145,451,,204.4642857,80.53571429 +8122,135.3833333,1162,452,,207.5,80.71428571 +8123,135.4,1181,453,,210.8928571,80.89285714 +8124,135.4166667,1200,454,,214.2857143,81.07142857 +8125,135.4333333,1221,455,,218.0357143,81.25 +8126,135.45,1243,456,,221.9642857,81.42857143 +8127,135.4666667,1265,457,,225.8928571,81.60714286 +8128,135.4833333,1289,457,,230.1785714,81.60714286 +8129,135.5,1313,458,,234.4642857,81.78571429 +8130,135.5166667,1337,458,,238.75,81.78571429 +8131,135.5333333,1361,458,,243.0357143,81.78571429 +8132,135.55,1386,458,,247.5,81.78571429 +8133,135.5666667,1411,458,,251.9642857,81.78571429 +8134,135.5833333,1436,457,,256.4285714,81.60714286 +8135,135.6,1461,457,,260.8928571,81.60714286 +8136,135.6166667,1485,456,,265.1785714,81.42857143 +8137,135.6333333,1509,455,,269.4642857,81.25 +8138,135.65,1533,454,,273.75,81.07142857 +8139,135.6666667,1556,452,,277.8571429,80.71428571 +8140,135.6833333,1578,451,,281.7857143,80.53571429 +8141,135.7,1599,449,,285.5357143,80.17857143 +8142,135.7166667,1620,448,,289.2857143,80 +8143,135.7333333,1639,446,,292.6785714,79.64285714 +8144,135.75,1657,445,,295.8928571,79.46428571 +8145,135.7666667,1674,443,,298.9285714,79.10714286 +8146,135.7833333,1689,442,,301.6071429,78.92857143 +8147,135.8,1703,440,,304.1071429,78.57142857 +8148,135.8166667,1716,439,,306.4285714,78.39285714 +8149,135.8333333,1727,438,,308.3928571,78.21428571 +8150,135.85,1736,437,,310,78.03571429 +8151,135.8666667,1744,436,,311.4285714,77.85714286 +8152,135.8833333,1750,435,,312.5,77.67857143 +8153,135.9,1754,435,,313.2142857,77.67857143 +8154,135.9166667,1757,435,,313.75,77.67857143 +8155,135.9333333,1757,435,,313.75,77.67857143 +8156,135.95,1757,435,,313.75,77.67857143 +8157,135.9666667,1754,435,,313.2142857,77.67857143 +8158,135.9833333,1750,436,,312.5,77.85714286 +8159,136,1744,436,,311.4285714,77.85714286 +8160,136.0166667,1736,438,,310,78.21428571 +8161,136.0333333,1726,439,,308.2142857,78.39285714 +8162,136.05,1715,440,,306.25,78.57142857 +8163,136.0666667,1703,441,,304.1071429,78.75 +8164,136.0833333,1689,443,,301.6071429,79.10714286 +8165,136.1,1673,444,,298.75,79.28571429 +8166,136.1166667,1656,446,,295.7142857,79.64285714 +8167,136.1333333,1638,448,,292.5,80 +8168,136.15,1619,449,,289.1071429,80.17857143 +8169,136.1666667,1599,451,,285.5357143,80.53571429 +8170,136.1833333,1578,452,,281.7857143,80.71428571 +8171,136.2,1556,454,,277.8571429,81.07142857 +8172,136.2166667,1533,455,,273.75,81.25 +8173,136.2333333,1509,456,,269.4642857,81.42857143 +8174,136.25,1485,458,,265.1785714,81.78571429 +8175,136.2666667,1461,458,,260.8928571,81.78571429 +8176,136.2833333,1437,459,,256.6071429,81.96428571 +8177,136.3,1412,460,,252.1428571,82.14285714 +8178,136.3166667,1387,460,,247.6785714,82.14285714 +8179,136.3333333,1362,460,,243.2142857,82.14285714 +8180,136.35,1338,460,,238.9285714,82.14285714 +8181,136.3666667,1314,460,,234.6428571,82.14285714 +8182,136.3833333,1290,460,,230.3571429,82.14285714 +8183,136.4,1267,459,,226.25,81.96428571 +8184,136.4166667,1245,458,,222.3214286,81.78571429 +8185,136.4333333,1223,457,,218.3928571,81.60714286 +8186,136.45,1202,456,,214.6428571,81.42857143 +8187,136.4666667,1182,455,,211.0714286,81.25 +8188,136.4833333,1163,454,,207.6785714,81.07142857 +8189,136.5,1146,453,,204.6428571,80.89285714 +8190,136.5166667,1130,452,,201.7857143,80.71428571 +8191,136.5333333,1115,450,,199.1071429,80.35714286 +8192,136.55,1101,449,,196.6071429,80.17857143 +8193,136.5666667,1089,448,,194.4642857,80 +8194,136.5833333,1078,447,,192.5,79.82142857 +8195,136.6,1070,446,,191.0714286,79.64285714 +8196,136.6166667,1063,446,,189.8214286,79.64285714 +8197,136.6333333,1057,445,,188.75,79.46428571 +8198,136.65,1052,445,,187.8571429,79.46428571 +8199,136.6666667,1051,445,,187.6785714,79.46428571 +8200,136.6833333,1051,445,,187.6785714,79.46428571 +8201,136.7,1051,445,,187.6785714,79.46428571 +8202,136.7166667,1054,445,,188.2142857,79.46428571 +8203,136.7333333,1058,445,,188.9285714,79.46428571 +8204,136.75,1065,446,,190.1785714,79.64285714 +8205,136.7666667,1073,446,,191.6071429,79.64285714 +8206,136.7833333,1082,447,,193.2142857,79.82142857 +8207,136.8,1093,448,,195.1785714,80 +8208,136.8166667,1106,449,,197.5,80.17857143 +8209,136.8333333,1120,450,,200,80.35714286 +8210,136.85,1136,451,,202.8571429,80.53571429 +8211,136.8666667,1153,452,,205.8928571,80.71428571 +8212,136.8833333,1171,453,,209.1071429,80.89285714 +8213,136.9,1190,454,,212.5,81.07142857 +8214,136.9166667,1210,455,,216.0714286,81.25 +8215,136.9333333,1231,456,,219.8214286,81.42857143 +8216,136.95,1254,457,,223.9285714,81.60714286 +8217,136.9666667,1276,458,,227.8571429,81.78571429 +8218,136.9833333,1300,459,,232.1428571,81.96428571 +8219,137,1324,459,,236.4285714,81.96428571 +8220,137.0166667,1348,459,,240.7142857,81.96428571 +8221,137.0333333,1373,459,,245.1785714,81.96428571 +8222,137.05,1397,459,,249.4642857,81.96428571 +8223,137.0666667,1422,459,,253.9285714,81.96428571 +8224,137.0833333,1447,458,,258.3928571,81.78571429 +8225,137.1,1472,457,,262.8571429,81.60714286 +8226,137.1166667,1496,456,,267.1428571,81.42857143 +8227,137.1333333,1519,455,,271.25,81.25 +8228,137.15,1543,454,,275.5357143,81.07142857 +8229,137.1666667,1565,453,,279.4642857,80.89285714 +8230,137.1833333,1587,451,,283.3928571,80.53571429 +8231,137.2,1607,450,,286.9642857,80.35714286 +8232,137.2166667,1627,448,,290.5357143,80 +8233,137.2333333,1646,447,,293.9285714,79.82142857 +8234,137.25,1664,445,,297.1428571,79.46428571 +8235,137.2666667,1680,444,,300,79.28571429 +8236,137.2833333,1695,442,,302.6785714,78.92857143 +8237,137.3,1708,441,,305,78.75 +8238,137.3166667,1720,439,,307.1428571,78.39285714 +8239,137.3333333,1730,439,,308.9285714,78.39285714 +8240,137.35,1739,437,,310.5357143,78.03571429 +8241,137.3666667,1746,437,,311.7857143,78.03571429 +8242,137.3833333,1751,436,,312.6785714,77.85714286 +8243,137.4,1755,436,,313.3928571,77.85714286 +8244,137.4166667,1755,436,,313.3928571,77.85714286 +8245,137.4333333,1755,436,,313.3928571,77.85714286 +8246,137.45,1755,436,,313.3928571,77.85714286 +8247,137.4666667,1751,437,,312.6785714,78.03571429 +8248,137.4833333,1746,437,,311.7857143,78.03571429 +8249,137.5,1739,438,,310.5357143,78.21428571 +8250,137.5166667,1731,439,,309.1071429,78.39285714 +8251,137.5333333,1721,440,,307.3214286,78.57142857 +8252,137.55,1709,442,,305.1785714,78.92857143 +8253,137.5666667,1696,443,,302.8571429,79.10714286 +8254,137.5833333,1681,444,,300.1785714,79.28571429 +8255,137.6,1665,446,,297.3214286,79.64285714 +8256,137.6166667,1647,448,,294.1071429,80 +8257,137.6333333,1629,449,,290.8928571,80.17857143 +8258,137.65,1610,451,,287.5,80.53571429 +8259,137.6666667,1589,452,,283.75,80.71428571 +8260,137.6833333,1567,454,,279.8214286,81.07142857 +8261,137.7,1545,455,,275.8928571,81.25 +8262,137.7166667,1522,456,,271.7857143,81.42857143 +8263,137.7333333,1499,458,,267.6785714,81.78571429 +8264,137.75,1475,459,,263.3928571,81.96428571 +8265,137.7666667,1450,459,,258.9285714,81.96428571 +8266,137.7833333,1426,460,,254.6428571,82.14285714 +8267,137.8,1401,460,,250.1785714,82.14285714 +8268,137.8166667,1376,460,,245.7142857,82.14285714 +8269,137.8333333,1352,460,,241.4285714,82.14285714 +8270,137.85,1328,460,,237.1428571,82.14285714 +8271,137.8666667,1304,460,,232.8571429,82.14285714 +8272,137.8833333,1281,460,,228.75,82.14285714 +8273,137.9,1258,459,,224.6428571,81.96428571 +8274,137.9166667,1236,457,,220.7142857,81.60714286 +8275,137.9333333,1215,456,,216.9642857,81.42857143 +8276,137.95,1194,456,,213.2142857,81.42857143 +8277,137.9666667,1175,454,,209.8214286,81.07142857 +8278,137.9833333,1157,453,,206.6071429,80.89285714 +8279,138,1140,452,,203.5714286,80.71428571 +8280,138.0166667,1124,451,,200.7142857,80.53571429 +8281,138.0333333,1110,450,,198.2142857,80.35714286 +8282,138.05,1097,449,,195.8928571,80.17857143 +8283,138.0666667,1086,448,,193.9285714,80 +8284,138.0833333,1076,447,,192.1428571,79.82142857 +8285,138.1,1068,446,,190.7142857,79.64285714 +8286,138.1166667,1061,445,,189.4642857,79.46428571 +8287,138.1333333,1056,445,,188.5714286,79.46428571 +8288,138.15,1053,445,,188.0357143,79.46428571 +8289,138.1666667,1053,445,,188.0357143,79.46428571 +8290,138.1833333,1053,445,,188.0357143,79.46428571 +8291,138.2,1054,445,,188.2142857,79.46428571 +8292,138.2166667,1058,445,,188.9285714,79.46428571 +8293,138.2333333,1063,445,,189.8214286,79.46428571 +8294,138.25,1070,446,,191.0714286,79.64285714 +8295,138.2666667,1079,446,,192.6785714,79.64285714 +8296,138.2833333,1089,447,,194.4642857,79.82142857 +8297,138.3,1101,448,,196.6071429,80 +8298,138.3166667,1114,449,,198.9285714,80.17857143 +8299,138.3333333,1129,450,,201.6071429,80.35714286 +8300,138.35,1145,451,,204.4642857,80.53571429 +8301,138.3666667,1162,452,,207.5,80.71428571 +8302,138.3833333,1181,453,,210.8928571,80.89285714 +8303,138.4,1200,454,,214.2857143,81.07142857 +8304,138.4166667,1221,455,,218.0357143,81.25 +8305,138.4333333,1242,456,,221.7857143,81.42857143 +8306,138.45,1265,457,,225.8928571,81.60714286 +8307,138.4666667,1288,458,,230,81.78571429 +8308,138.4833333,1311,458,,234.1071429,81.78571429 +8309,138.5,1335,458,,238.3928571,81.78571429 +8310,138.5166667,1360,458,,242.8571429,81.78571429 +8311,138.5333333,1384,458,,247.1428571,81.78571429 +8312,138.55,1409,458,,251.6071429,81.78571429 +8313,138.5666667,1434,457,,256.0714286,81.60714286 +8314,138.5833333,1458,456,,260.3571429,81.42857143 +8315,138.6,1483,456,,264.8214286,81.42857143 +8316,138.6166667,1507,455,,269.1071429,81.25 +8317,138.6333333,1530,454,,273.2142857,81.07142857 +8318,138.65,1553,452,,277.3214286,80.71428571 +8319,138.6666667,1575,451,,281.25,80.53571429 +8320,138.6833333,1596,450,,285,80.35714286 +8321,138.7,1616,448,,288.5714286,80 +8322,138.7166667,1636,446,,292.1428571,79.64285714 +8323,138.7333333,1654,445,,295.3571429,79.46428571 +8324,138.75,1670,443,,298.2142857,79.10714286 +8325,138.7666667,1686,442,,301.0714286,78.92857143 +8326,138.7833333,1700,440,,303.5714286,78.57142857 +8327,138.8,1712,439,,305.7142857,78.39285714 +8328,138.8166667,1723,438,,307.6785714,78.21428571 +8329,138.8333333,1733,437,,309.4642857,78.03571429 +8330,138.85,1741,436,,310.8928571,77.85714286 +8331,138.8666667,1747,435,,311.9642857,77.67857143 +8332,138.8833333,1752,435,,312.8571429,77.67857143 +8333,138.9,1754,435,,313.2142857,77.67857143 +8334,138.9166667,1754,435,,313.2142857,77.67857143 +8335,138.9333333,1754,435,,313.2142857,77.67857143 +8336,138.95,1752,435,,312.8571429,77.67857143 +8337,138.9666667,1747,436,,311.9642857,77.85714286 +8338,138.9833333,1741,436,,310.8928571,77.85714286 +8339,139,1734,437,,309.6428571,78.03571429 +8340,139.0166667,1724,439,,307.8571429,78.39285714 +8341,139.0333333,1714,440,,306.0714286,78.57142857 +8342,139.05,1701,441,,303.75,78.75 +8343,139.0666667,1687,443,,301.25,79.10714286 +8344,139.0833333,1672,444,,298.5714286,79.28571429 +8345,139.1,1655,446,,295.5357143,79.64285714 +8346,139.1166667,1637,448,,292.3214286,80 +8347,139.1333333,1618,449,,288.9285714,80.17857143 +8348,139.15,1598,451,,285.3571429,80.53571429 +8349,139.1666667,1577,453,,281.6071429,80.89285714 +8350,139.1833333,1555,454,,277.6785714,81.07142857 +8351,139.2,1532,455,,273.5714286,81.25 +8352,139.2166667,1509,456,,269.4642857,81.42857143 +8353,139.2333333,1485,457,,265.1785714,81.60714286 +8354,139.25,1461,458,,260.8928571,81.78571429 +8355,139.2666667,1437,459,,256.6071429,81.96428571 +8356,139.2833333,1412,459,,252.1428571,81.96428571 +8357,139.3,1387,460,,247.6785714,82.14285714 +8358,139.3166667,1362,460,,243.2142857,82.14285714 +8359,139.3333333,1338,460,,238.9285714,82.14285714 +8360,139.35,1314,460,,234.6428571,82.14285714 +8361,139.3666667,1290,459,,230.3571429,81.96428571 +8362,139.3833333,1268,458,,226.4285714,81.78571429 +8363,139.4,1245,458,,222.3214286,81.78571429 +8364,139.4166667,1223,457,,218.3928571,81.60714286 +8365,139.4333333,1203,455,,214.8214286,81.25 +8366,139.45,1183,454,,211.25,81.07142857 +8367,139.4666667,1165,453,,208.0357143,80.89285714 +8368,139.4833333,1148,452,,205,80.71428571 +8369,139.5,1132,451,,202.1428571,80.53571429 +8370,139.5166667,1117,450,,199.4642857,80.35714286 +8371,139.5333333,1103,449,,196.9642857,80.17857143 +8372,139.55,1091,448,,194.8214286,80 +8373,139.5666667,1081,447,,193.0357143,79.82142857 +8374,139.5833333,1072,446,,191.4285714,79.64285714 +8375,139.6,1065,445,,190.1785714,79.46428571 +8376,139.6166667,1059,444,,189.1071429,79.28571429 +8377,139.6333333,1055,444,,188.3928571,79.28571429 +8378,139.65,1053,444,,188.0357143,79.28571429 +8379,139.6666667,1053,444,,188.0357143,79.28571429 +8380,139.6833333,1053,444,,188.0357143,79.28571429 +8381,139.7,1056,444,,188.5714286,79.28571429 +8382,139.7166667,1061,444,,189.4642857,79.28571429 +8383,139.7333333,1067,445,,190.5357143,79.46428571 +8384,139.75,1075,446,,191.9642857,79.64285714 +8385,139.7666667,1085,446,,193.75,79.64285714 +8386,139.7833333,1096,447,,195.7142857,79.82142857 +8387,139.8,1108,448,,197.8571429,80 +8388,139.8166667,1122,449,,200.3571429,80.17857143 +8389,139.8333333,1137,450,,203.0357143,80.35714286 +8390,139.85,1154,451,,206.0714286,80.53571429 +8391,139.8666667,1172,452,,209.2857143,80.71428571 +8392,139.8833333,1191,453,,212.6785714,80.89285714 +8393,139.9,1211,454,,216.25,81.07142857 +8394,139.9166667,1231,455,,219.8214286,81.25 +8395,139.9333333,1253,456,,223.75,81.42857143 +8396,139.95,1276,457,,227.8571429,81.60714286 +8397,139.9666667,1299,458,,231.9642857,81.78571429 +8398,139.9833333,1323,458,,236.25,81.78571429 +8399,140,1347,458,,240.5357143,81.78571429 +8400,140.0166667,1371,458,,244.8214286,81.78571429 +8401,140.0333333,1396,457,,249.2857143,81.60714286 +8402,140.05,1420,457,,253.5714286,81.60714286 +8403,140.0666667,1445,457,,258.0357143,81.60714286 +8404,140.0833333,1470,456,,262.5,81.42857143 +8405,140.1,1493,455,,266.6071429,81.25 +8406,140.1166667,1517,454,,270.8928571,81.07142857 +8407,140.1333333,1540,453,,275,80.89285714 +8408,140.15,1562,452,,278.9285714,80.71428571 +8409,140.1666667,1584,450,,282.8571429,80.35714286 +8410,140.1833333,1605,449,,286.6071429,80.17857143 +8411,140.2,1625,447,,290.1785714,79.82142857 +8412,140.2166667,1643,446,,293.3928571,79.64285714 +8413,140.2333333,1660,444,,296.4285714,79.28571429 +8414,140.25,1676,443,,299.2857143,79.10714286 +8415,140.2666667,1691,442,,301.9642857,78.92857143 +8416,140.2833333,1704,440,,304.2857143,78.57142857 +8417,140.3,1716,439,,306.4285714,78.39285714 +8418,140.3166667,1726,437,,308.2142857,78.03571429 +8419,140.3333333,1735,437,,309.8214286,78.03571429 +8420,140.35,1742,436,,311.0714286,77.85714286 +8421,140.3666667,1747,435,,311.9642857,77.67857143 +8422,140.3833333,1750,435,,312.5,77.67857143 +8423,140.4,1751,435,,312.6785714,77.67857143 +8424,140.4166667,1751,435,,312.6785714,77.67857143 +8425,140.4333333,1751,435,,312.6785714,77.67857143 +8426,140.45,1748,436,,312.1428571,77.85714286 +8427,140.4666667,1742,436,,311.0714286,77.85714286 +8428,140.4833333,1736,437,,310,78.03571429 +8429,140.5,1728,438,,308.5714286,78.21428571 +8430,140.5166667,1717,439,,306.6071429,78.39285714 +8431,140.5333333,1706,441,,304.6428571,78.75 +8432,140.55,1693,442,,302.3214286,78.92857143 +8433,140.5666667,1678,444,,299.6428571,79.28571429 +8434,140.5833333,1662,445,,296.7857143,79.46428571 +8435,140.6,1645,447,,293.75,79.82142857 +8436,140.6166667,1627,448,,290.5357143,80 +8437,140.6333333,1608,450,,287.1428571,80.35714286 +8438,140.65,1587,451,,283.3928571,80.53571429 +8439,140.6666667,1566,452,,279.6428571,80.71428571 +8440,140.6833333,1544,454,,275.7142857,81.07142857 +8441,140.7,1521,455,,271.6071429,81.25 +8442,140.7166667,1498,456,,267.5,81.42857143 +8443,140.7333333,1474,457,,263.2142857,81.60714286 +8444,140.75,1450,458,,258.9285714,81.78571429 +8445,140.7666667,1425,459,,254.4642857,81.96428571 +8446,140.7833333,1401,459,,250.1785714,81.96428571 +8447,140.8,1377,459,,245.8928571,81.96428571 +8448,140.8166667,1353,459,,241.6071429,81.96428571 +8449,140.8333333,1329,459,,237.3214286,81.96428571 +8450,140.85,1305,459,,233.0357143,81.96428571 +8451,140.8666667,1282,458,,228.9285714,81.78571429 +8452,140.8833333,1259,457,,224.8214286,81.60714286 +8453,140.9,1238,457,,221.0714286,81.60714286 +8454,140.9166667,1216,455,,217.1428571,81.25 +8455,140.9333333,1196,455,,213.5714286,81.25 +8456,140.95,1177,454,,210.1785714,81.07142857 +8457,140.9666667,1160,453,,207.1428571,80.89285714 +8458,140.9833333,1142,451,,203.9285714,80.53571429 +8459,141,1127,451,,201.25,80.53571429 +8460,141.0166667,1113,449,,198.75,80.17857143 +8461,141.0333333,1100,448,,196.4285714,80 +8462,141.05,1089,447,,194.4642857,79.82142857 +8463,141.0666667,1079,446,,192.6785714,79.64285714 +8464,141.0833333,1070,445,,191.0714286,79.46428571 +8465,141.1,1064,445,,190,79.46428571 +8466,141.1166667,1059,444,,189.1071429,79.28571429 +8467,141.1333333,1056,444,,188.5714286,79.28571429 +8468,141.15,1056,444,,188.5714286,79.28571429 +8469,141.1666667,1056,444,,188.5714286,79.28571429 +8470,141.1833333,1057,444,,188.75,79.28571429 +8471,141.2,1060,444,,189.2857143,79.28571429 +8472,141.2166667,1065,445,,190.1785714,79.46428571 +8473,141.2333333,1072,445,,191.4285714,79.46428571 +8474,141.25,1081,446,,193.0357143,79.64285714 +8475,141.2666667,1091,447,,194.8214286,79.82142857 +8476,141.2833333,1103,448,,196.9642857,80 +8477,141.3,1116,449,,199.2857143,80.17857143 +8478,141.3166667,1130,450,,201.7857143,80.35714286 +8479,141.3333333,1146,451,,204.6428571,80.53571429 +8480,141.35,1163,452,,207.6785714,80.71428571 +8481,141.3666667,1182,453,,211.0714286,80.89285714 +8482,141.3833333,1201,454,,214.4642857,81.07142857 +8483,141.4,1221,455,,218.0357143,81.25 +8484,141.4166667,1243,456,,221.9642857,81.42857143 +8485,141.4333333,1265,457,,225.8928571,81.60714286 +8486,141.45,1288,457,,230,81.60714286 +8487,141.4666667,1312,458,,234.2857143,81.78571429 +8488,141.4833333,1335,458,,238.3928571,81.78571429 +8489,141.5,1359,458,,242.6785714,81.78571429 +8490,141.5166667,1384,458,,247.1428571,81.78571429 +8491,141.5333333,1408,458,,251.4285714,81.78571429 +8492,141.55,1433,457,,255.8928571,81.60714286 +8493,141.5666667,1457,457,,260.1785714,81.60714286 +8494,141.5833333,1481,456,,264.4642857,81.42857143 +8495,141.6,1505,455,,268.75,81.25 +8496,141.6166667,1528,454,,272.8571429,81.07142857 +8497,141.6333333,1551,453,,276.9642857,80.89285714 +8498,141.65,1573,452,,280.8928571,80.71428571 +8499,141.6666667,1594,450,,284.6428571,80.35714286 +8500,141.6833333,1614,449,,288.2142857,80.17857143 +8501,141.7,1633,447,,291.6071429,79.82142857 +8502,141.7166667,1651,446,,294.8214286,79.64285714 +8503,141.7333333,1668,444,,297.8571429,79.28571429 +8504,141.75,1683,443,,300.5357143,79.10714286 +8505,141.7666667,1697,441,,303.0357143,78.75 +8506,141.7833333,1709,440,,305.1785714,78.57142857 +8507,141.8,1720,439,,307.1428571,78.39285714 +8508,141.8166667,1730,438,,308.9285714,78.21428571 +8509,141.8333333,1738,437,,310.3571429,78.03571429 +8510,141.85,1744,436,,311.4285714,77.85714286 +8511,141.8666667,1748,436,,312.1428571,77.85714286 +8512,141.8833333,1751,436,,312.6785714,77.85714286 +8513,141.9,1751,436,,312.6785714,77.85714286 +8514,141.9166667,1751,436,,312.6785714,77.85714286 +8515,141.9333333,1749,436,,312.3214286,77.85714286 +8516,141.95,1744,437,,311.4285714,78.03571429 +8517,141.9666667,1738,437,,310.3571429,78.03571429 +8518,141.9833333,1731,438,,309.1071429,78.21428571 +8519,142,1722,439,,307.5,78.39285714 +8520,142.0166667,1711,441,,305.5357143,78.75 +8521,142.0333333,1699,442,,303.3928571,78.92857143 +8522,142.05,1685,443,,300.8928571,79.10714286 +8523,142.0666667,1670,445,,298.2142857,79.46428571 +8524,142.0833333,1653,446,,295.1785714,79.64285714 +8525,142.1,1635,448,,291.9642857,80 +8526,142.1166667,1617,450,,288.75,80.35714286 +8527,142.1333333,1597,451,,285.1785714,80.53571429 +8528,142.15,1576,453,,281.4285714,80.89285714 +8529,142.1666667,1554,454,,277.5,81.07142857 +8530,142.1833333,1532,455,,273.5714286,81.25 +8531,142.2,1509,456,,269.4642857,81.42857143 +8532,142.2166667,1485,458,,265.1785714,81.78571429 +8533,142.2333333,1462,458,,261.0714286,81.78571429 +8534,142.25,1437,459,,256.6071429,81.96428571 +8535,142.2666667,1413,459,,252.3214286,81.96428571 +8536,142.2833333,1389,460,,248.0357143,82.14285714 +8537,142.3,1364,460,,243.5714286,82.14285714 +8538,142.3166667,1340,460,,239.2857143,82.14285714 +8539,142.3333333,1316,460,,235,82.14285714 +8540,142.35,1293,460,,230.8928571,82.14285714 +8541,142.3666667,1270,459,,226.7857143,81.96428571 +8542,142.3833333,1248,458,,222.8571429,81.78571429 +8543,142.4,1226,457,,218.9285714,81.60714286 +8544,142.4166667,1206,456,,215.3571429,81.42857143 +8545,142.4333333,1187,455,,211.9642857,81.25 +8546,142.45,1168,454,,208.5714286,81.07142857 +8547,142.4666667,1150,453,,205.3571429,80.89285714 +8548,142.4833333,1134,452,,202.5,80.71428571 +8549,142.5,1120,451,,200,80.53571429 +8550,142.5166667,1106,450,,197.5,80.35714286 +8551,142.5333333,1094,449,,195.3571429,80.17857143 +8552,142.55,1084,448,,193.5714286,80 +8553,142.5666667,1075,447,,191.9642857,79.82142857 +8554,142.5833333,1068,446,,190.7142857,79.64285714 +8555,142.6,1062,446,,189.6428571,79.64285714 +8556,142.6166667,1058,445,,188.9285714,79.46428571 +8557,142.6333333,1056,445,,188.5714286,79.46428571 +8558,142.65,1056,445,,188.5714286,79.46428571 +8559,142.6666667,1056,445,,188.5714286,79.46428571 +8560,142.6833333,1059,445,,189.1071429,79.46428571 +8561,142.7,1064,445,,190,79.46428571 +8562,142.7166667,1069,446,,190.8928571,79.64285714 +8563,142.7333333,1077,447,,192.3214286,79.82142857 +8564,142.75,1087,447,,194.1071429,79.82142857 +8565,142.7666667,1097,448,,195.8928571,80 +8566,142.7833333,1110,449,,198.2142857,80.17857143 +8567,142.8,1124,450,,200.7142857,80.35714286 +8568,142.8166667,1139,451,,203.3928571,80.53571429 +8569,142.8333333,1155,452,,206.25,80.71428571 +8570,142.85,1173,454,,209.4642857,81.07142857 +8571,142.8666667,1192,455,,212.8571429,81.25 +8572,142.8833333,1212,455,,216.4285714,81.25 +8573,142.9,1232,457,,220,81.60714286 +8574,142.9166667,1254,457,,223.9285714,81.60714286 +8575,142.9333333,1277,458,,228.0357143,81.78571429 +8576,142.95,1300,459,,232.1428571,81.96428571 +8577,142.9666667,1323,459,,236.25,81.96428571 +8578,142.9833333,1347,459,,240.5357143,81.96428571 +8579,143,1372,459,,245,81.96428571 +8580,143.0166667,1396,459,,249.2857143,81.96428571 +8581,143.0333333,1420,459,,253.5714286,81.96428571 +8582,143.05,1445,458,,258.0357143,81.78571429 +8583,143.0666667,1469,457,,262.3214286,81.60714286 +8584,143.0833333,1493,456,,266.6071429,81.42857143 +8585,143.1,1516,456,,270.7142857,81.42857143 +8586,143.1166667,1539,454,,274.8214286,81.07142857 +8587,143.1333333,1562,453,,278.9285714,80.89285714 +8588,143.15,1583,452,,282.6785714,80.71428571 +8589,143.1666667,1603,450,,286.25,80.35714286 +8590,143.1833333,1623,449,,289.8214286,80.17857143 +8591,143.2,1642,447,,293.2142857,79.82142857 +8592,143.2166667,1659,446,,296.25,79.64285714 +8593,143.2333333,1675,444,,299.1071429,79.28571429 +8594,143.25,1690,443,,301.7857143,79.10714286 +8595,143.2666667,1703,442,,304.1071429,78.92857143 +8596,143.2833333,1715,441,,306.25,78.75 +8597,143.3,1725,440,,308.0357143,78.57142857 +8598,143.3166667,1733,439,,309.4642857,78.39285714 +8599,143.3333333,1740,438,,310.7142857,78.21428571 +8600,143.35,1746,437,,311.7857143,78.03571429 +8601,143.3666667,1749,437,,312.3214286,78.03571429 +8602,143.3833333,1750,437,,312.5,78.03571429 +8603,143.4,1750,437,,312.5,78.03571429 +8604,143.4166667,1750,437,,312.5,78.03571429 +8605,143.4333333,1746,437,,311.7857143,78.03571429 +8606,143.45,1741,438,,310.8928571,78.21428571 +8607,143.4666667,1734,439,,309.6428571,78.39285714 +8608,143.4833333,1726,440,,308.2142857,78.57142857 +8609,143.5,1716,441,,306.4285714,78.75 +8610,143.5166667,1705,442,,304.4642857,78.92857143 +8611,143.5333333,1692,443,,302.1428571,79.10714286 +8612,143.55,1677,445,,299.4642857,79.46428571 +8613,143.5666667,1662,446,,296.7857143,79.64285714 +8614,143.5833333,1645,448,,293.75,80 +8615,143.6,1627,450,,290.5357143,80.35714286 +8616,143.6166667,1607,451,,286.9642857,80.53571429 +8617,143.6333333,1587,453,,283.3928571,80.89285714 +8618,143.65,1566,454,,279.6428571,81.07142857 +8619,143.6666667,1544,455,,275.7142857,81.25 +8620,143.6833333,1522,456,,271.7857143,81.42857143 +8621,143.7,1498,458,,267.5,81.78571429 +8622,143.7166667,1475,459,,263.3928571,81.96428571 +8623,143.7333333,1451,460,,259.1071429,82.14285714 +8624,143.75,1427,460,,254.8214286,82.14285714 +8625,143.7666667,1402,460,,250.3571429,82.14285714 +8626,143.7833333,1378,460,,246.0714286,82.14285714 +8627,143.8,1354,460,,241.7857143,82.14285714 +8628,143.8166667,1330,460,,237.5,82.14285714 +8629,143.8333333,1307,460,,233.3928571,82.14285714 +8630,143.85,1284,459,,229.2857143,81.96428571 +8631,143.8666667,1261,459,,225.1785714,81.96428571 +8632,143.8833333,1240,457,,221.4285714,81.60714286 +8633,143.9,1219,456,,217.6785714,81.42857143 +8634,143.9166667,1199,455,,214.1071429,81.25 +8635,143.9333333,1179,454,,210.5357143,81.07142857 +8636,143.95,1161,453,,207.3214286,80.89285714 +8637,143.9666667,1145,452,,204.4642857,80.71428571 +8638,143.9833333,1129,451,,201.6071429,80.53571429 +8639,144,1115,450,,199.1071429,80.35714286 +8640,144.0166667,1102,449,,196.7857143,80.17857143 +8641,144.0333333,1091,448,,194.8214286,80 +8642,144.05,1081,447,,193.0357143,79.82142857 +8643,144.0666667,1073,446,,191.6071429,79.64285714 +8644,144.0833333,1067,446,,190.5357143,79.64285714 +8645,144.1,1062,445,,189.6428571,79.46428571 +8646,144.1166667,1058,445,,188.9285714,79.46428571 +8647,144.1333333,1058,445,,188.9285714,79.46428571 +8648,144.15,1058,445,,188.9285714,79.46428571 +8649,144.1666667,1059,445,,189.1071429,79.46428571 +8650,144.1833333,1062,445,,189.6428571,79.46428571 +8651,144.2,1068,445,,190.7142857,79.46428571 +8652,144.2166667,1075,446,,191.9642857,79.64285714 +8653,144.2333333,1083,446,,193.3928571,79.64285714 +8654,144.25,1093,448,,195.1785714,80 +8655,144.2666667,1104,448,,197.1428571,80 +8656,144.2833333,1118,449,,199.6428571,80.17857143 +8657,144.3,1132,450,,202.1428571,80.35714286 +8658,144.3166667,1148,451,,205,80.53571429 +8659,144.3333333,1165,452,,208.0357143,80.71428571 +8660,144.35,1183,453,,211.25,80.89285714 +8661,144.3666667,1202,454,,214.6428571,81.07142857 +8662,144.3833333,1222,455,,218.2142857,81.25 +8663,144.4,1244,456,,222.1428571,81.42857143 +8664,144.4166667,1266,457,,226.0714286,81.60714286 +8665,144.4333333,1288,458,,230,81.78571429 +8666,144.45,1311,458,,234.1071429,81.78571429 +8667,144.4666667,1335,458,,238.3928571,81.78571429 +8668,144.4833333,1359,458,,242.6785714,81.78571429 +8669,144.5,1383,458,,246.9642857,81.78571429 +8670,144.5166667,1408,458,,251.4285714,81.78571429 +8671,144.5333333,1432,457,,255.7142857,81.60714286 +8672,144.55,1456,457,,260,81.60714286 +8673,144.5666667,1480,456,,264.2857143,81.42857143 +8674,144.5833333,1504,455,,268.5714286,81.25 +8675,144.6,1527,454,,272.6785714,81.07142857 +8676,144.6166667,1550,453,,276.7857143,80.89285714 +8677,144.6333333,1571,452,,280.5357143,80.71428571 +8678,144.65,1592,450,,284.2857143,80.35714286 +8679,144.6666667,1612,449,,287.8571429,80.17857143 +8680,144.6833333,1631,447,,291.25,79.82142857 +8681,144.7,1649,446,,294.4642857,79.64285714 +8682,144.7166667,1666,444,,297.5,79.28571429 +8683,144.7333333,1681,443,,300.1785714,79.10714286 +8684,144.75,1695,441,,302.6785714,78.75 +8685,144.7666667,1707,440,,304.8214286,78.57142857 +8686,144.7833333,1718,439,,306.7857143,78.39285714 +8687,144.8,1727,438,,308.3928571,78.21428571 +8688,144.8166667,1735,437,,309.8214286,78.03571429 +8689,144.8333333,1741,437,,310.8928571,78.03571429 +8690,144.85,1746,436,,311.7857143,77.85714286 +8691,144.8666667,1748,436,,312.1428571,77.85714286 +8692,144.8833333,1748,436,,312.1428571,77.85714286 +8693,144.9,1748,436,,312.1428571,77.85714286 +8694,144.9166667,1746,436,,311.7857143,77.85714286 +8695,144.9333333,1742,437,,311.0714286,78.03571429 +8696,144.95,1736,438,,310,78.21428571 +8697,144.9666667,1729,439,,308.75,78.39285714 +8698,144.9833333,1720,440,,307.1428571,78.57142857 +8699,145,1709,441,,305.1785714,78.75 +8700,145.0166667,1697,442,,303.0357143,78.92857143 +8701,145.0333333,1683,443,,300.5357143,79.10714286 +8702,145.05,1669,445,,298.0357143,79.46428571 +8703,145.0666667,1652,446,,295,79.64285714 +8704,145.0833333,1635,448,,291.9642857,80 +8705,145.1,1616,449,,288.5714286,80.17857143 +8706,145.1166667,1596,451,,285,80.53571429 +8707,145.1333333,1576,453,,281.4285714,80.89285714 +8708,145.15,1554,454,,277.5,81.07142857 +8709,145.1666667,1532,455,,273.5714286,81.25 +8710,145.1833333,1509,456,,269.4642857,81.42857143 +8711,145.2,1486,457,,265.3571429,81.60714286 +8712,145.2166667,1462,458,,261.0714286,81.78571429 +8713,145.2333333,1439,458,,256.9642857,81.78571429 +8714,145.25,1414,459,,252.5,81.96428571 +8715,145.2666667,1391,460,,248.3928571,82.14285714 +8716,145.2833333,1366,460,,243.9285714,82.14285714 +8717,145.3,1342,460,,239.6428571,82.14285714 +8718,145.3166667,1319,460,,235.5357143,82.14285714 +8719,145.3333333,1295,459,,231.25,81.96428571 +8720,145.35,1273,458,,227.3214286,81.78571429 +8721,145.3666667,1251,457,,223.3928571,81.60714286 +8722,145.3833333,1229,456,,219.4642857,81.42857143 +8723,145.4,1209,456,,215.8928571,81.42857143 +8724,145.4166667,1189,455,,212.3214286,81.25 +8725,145.4333333,1171,453,,209.1071429,80.89285714 +8726,145.45,1154,452,,206.0714286,80.71428571 +8727,145.4666667,1138,451,,203.2142857,80.53571429 +8728,145.4833333,1123,450,,200.5357143,80.35714286 +8729,145.5,1110,449,,198.2142857,80.17857143 +8730,145.5166667,1097,448,,195.8928571,80 +8731,145.5333333,1087,447,,194.1071429,79.82142857 +8732,145.55,1078,446,,192.5,79.64285714 +8733,145.5666667,1071,445,,191.25,79.46428571 +8734,145.5833333,1065,445,,190.1785714,79.46428571 +8735,145.6,1060,445,,189.2857143,79.46428571 +8736,145.6166667,1058,444,,188.9285714,79.28571429 +8737,145.6333333,1058,444,,188.9285714,79.28571429 +8738,145.65,1058,444,,188.9285714,79.28571429 +8739,145.6666667,1061,444,,189.4642857,79.28571429 +8740,145.6833333,1065,445,,190.1785714,79.46428571 +8741,145.7,1071,445,,191.25,79.46428571 +8742,145.7166667,1078,446,,192.5,79.64285714 +8743,145.7333333,1087,447,,194.1071429,79.82142857 +8744,145.75,1098,448,,196.0714286,80 +8745,145.7666667,1110,448,,198.2142857,80 +8746,145.7833333,1124,450,,200.7142857,80.35714286 +8747,145.8,1139,450,,203.3928571,80.35714286 +8748,145.8166667,1155,451,,206.25,80.53571429 +8749,145.8333333,1173,453,,209.4642857,80.89285714 +8750,145.85,1191,454,,212.6785714,81.07142857 +8751,145.8666667,1211,455,,216.25,81.25 +8752,145.8833333,1231,456,,219.8214286,81.42857143 +8753,145.9,1253,457,,223.75,81.60714286 +8754,145.9166667,1275,457,,227.6785714,81.60714286 +8755,145.9333333,1298,458,,231.7857143,81.78571429 +8756,145.95,1321,459,,235.8928571,81.96428571 +8757,145.9666667,1345,459,,240.1785714,81.96428571 +8758,145.9833333,1369,459,,244.4642857,81.96428571 +8759,146,1393,458,,248.75,81.78571429 +8760,146.0166667,1417,458,,253.0357143,81.78571429 +8761,146.0333333,1442,457,,257.5,81.60714286 +8762,146.05,1466,457,,261.7857143,81.60714286 +8763,146.0666667,1490,456,,266.0714286,81.42857143 +8764,146.0833333,1513,455,,270.1785714,81.25 +8765,146.1,1536,454,,274.2857143,81.07142857 +8766,146.1166667,1558,453,,278.2142857,80.89285714 +8767,146.1333333,1579,451,,281.9642857,80.53571429 +8768,146.15,1599,450,,285.5357143,80.35714286 +8769,146.1666667,1619,448,,289.1071429,80 +8770,146.1833333,1637,447,,292.3214286,79.82142857 +8771,146.2,1654,446,,295.3571429,79.64285714 +8772,146.2166667,1670,444,,298.2142857,79.28571429 +8773,146.2333333,1685,442,,300.8928571,78.92857143 +8774,146.25,1698,441,,303.2142857,78.75 +8775,146.2666667,1710,440,,305.3571429,78.57142857 +8776,146.2833333,1720,439,,307.1428571,78.39285714 +8777,146.3,1729,438,,308.75,78.21428571 +8778,146.3166667,1735,438,,309.8214286,78.21428571 +8779,146.3333333,1741,437,,310.8928571,78.03571429 +8780,146.35,1745,437,,311.6071429,78.03571429 +8781,146.3666667,1745,437,,311.6071429,78.03571429 +8782,146.3833333,1745,437,,311.6071429,78.03571429 +8783,146.4,1745,437,,311.6071429,78.03571429 +8784,146.4166667,1742,437,,311.0714286,78.03571429 +8785,146.4333333,1737,438,,310.1785714,78.21428571 +8786,146.45,1731,438,,309.1071429,78.21428571 +8787,146.4666667,1722,440,,307.5,78.57142857 +8788,146.4833333,1713,440,,305.8928571,78.57142857 +8789,146.5,1701,442,,303.75,78.92857143 +8790,146.5166667,1689,443,,301.6071429,79.10714286 +8791,146.5333333,1674,444,,298.9285714,79.28571429 +8792,146.55,1659,446,,296.25,79.64285714 +8793,146.5666667,1642,447,,293.2142857,79.82142857 +8794,146.5833333,1624,449,,290,80.17857143 +8795,146.6,1605,450,,286.6071429,80.35714286 +8796,146.6166667,1585,452,,283.0357143,80.71428571 +8797,146.6333333,1564,453,,279.2857143,80.89285714 +8798,146.65,1542,454,,275.3571429,81.07142857 +8799,146.6666667,1520,456,,271.4285714,81.42857143 +8800,146.6833333,1497,457,,267.3214286,81.60714286 +8801,146.7,1474,458,,263.2142857,81.78571429 +8802,146.7166667,1451,458,,259.1071429,81.78571429 +8803,146.7333333,1426,459,,254.6428571,81.96428571 +8804,146.75,1402,459,,250.3571429,81.96428571 +8805,146.7666667,1378,460,,246.0714286,82.14285714 +8806,146.7833333,1354,460,,241.7857143,82.14285714 +8807,146.8,1331,460,,237.6785714,82.14285714 +8808,146.8166667,1307,459,,233.3928571,81.96428571 +8809,146.8333333,1284,459,,229.2857143,81.96428571 +8810,146.85,1262,458,,225.3571429,81.78571429 +8811,146.8666667,1240,457,,221.4285714,81.60714286 +8812,146.8833333,1219,456,,217.6785714,81.42857143 +8813,146.9,1199,455,,214.1071429,81.25 +8814,146.9166667,1180,454,,210.7142857,81.07142857 +8815,146.9333333,1163,453,,207.6785714,80.89285714 +8816,146.95,1146,452,,204.6428571,80.71428571 +8817,146.9666667,1131,450,,201.9642857,80.35714286 +8818,146.9833333,1117,449,,199.4642857,80.17857143 +8819,147,1104,449,,197.1428571,80.17857143 +8820,147.0166667,1093,447,,195.1785714,79.82142857 +8821,147.0333333,1083,446,,193.3928571,79.64285714 +8822,147.05,1075,446,,191.9642857,79.64285714 +8823,147.0666667,1068,445,,190.7142857,79.46428571 +8824,147.0833333,1063,444,,189.8214286,79.28571429 +8825,147.1,1060,444,,189.2857143,79.28571429 +8826,147.1166667,1060,444,,189.2857143,79.28571429 +8827,147.1333333,1060,444,,189.2857143,79.28571429 +8828,147.15,1060,444,,189.2857143,79.28571429 +8829,147.1666667,1063,444,,189.8214286,79.28571429 +8830,147.1833333,1069,444,,190.8928571,79.28571429 +8831,147.2,1076,445,,192.1428571,79.46428571 +8832,147.2166667,1084,445,,193.5714286,79.46428571 +8833,147.2333333,1094,446,,195.3571429,79.64285714 +8834,147.25,1105,447,,197.3214286,79.82142857 +8835,147.2666667,1118,448,,199.6428571,80 +8836,147.2833333,1132,449,,202.1428571,80.17857143 +8837,147.3,1148,450,,205,80.35714286 +8838,147.3166667,1165,451,,208.0357143,80.53571429 +8839,147.3333333,1183,453,,211.25,80.89285714 +8840,147.35,1202,454,,214.6428571,81.07142857 +8841,147.3666667,1222,455,,218.2142857,81.25 +8842,147.3833333,1243,455,,221.9642857,81.25 +8843,147.4,1265,456,,225.8928571,81.42857143 +8844,147.4166667,1287,457,,229.8214286,81.60714286 +8845,147.4333333,1310,457,,233.9285714,81.60714286 +8846,147.45,1334,458,,238.2142857,81.78571429 +8847,147.4666667,1358,458,,242.5,81.78571429 +8848,147.4833333,1382,458,,246.7857143,81.78571429 +8849,147.5,1406,457,,251.0714286,81.60714286 +8850,147.5166667,1430,457,,255.3571429,81.60714286 +8851,147.5333333,1454,456,,259.6428571,81.42857143 +8852,147.55,1478,456,,263.9285714,81.42857143 +8853,147.5666667,1501,455,,268.0357143,81.25 +8854,147.5833333,1524,454,,272.1428571,81.07142857 +8855,147.6,1547,452,,276.25,80.71428571 +8856,147.6166667,1568,451,,280,80.53571429 +8857,147.6333333,1589,450,,283.75,80.35714286 +8858,147.65,1609,448,,287.3214286,80 +8859,147.6666667,1628,447,,290.7142857,79.82142857 +8860,147.6833333,1646,445,,293.9285714,79.46428571 +8861,147.7,1662,444,,296.7857143,79.28571429 +8862,147.7166667,1677,442,,299.4642857,78.92857143 +8863,147.7333333,1691,441,,301.9642857,78.75 +8864,147.75,1704,440,,304.2857143,78.57142857 +8865,147.7666667,1715,439,,306.25,78.39285714 +8866,147.7833333,1724,438,,307.8571429,78.21428571 +8867,147.8,1732,437,,309.2857143,78.03571429 +8868,147.8166667,1738,437,,310.3571429,78.03571429 +8869,147.8333333,1743,436,,311.25,77.85714286 +8870,147.85,1746,436,,311.7857143,77.85714286 +8871,147.8666667,1746,436,,311.7857143,77.85714286 +8872,147.8833333,1746,436,,311.7857143,77.85714286 +8873,147.9,1744,436,,311.4285714,77.85714286 +8874,147.9166667,1740,437,,310.7142857,78.03571429 +8875,147.9333333,1734,438,,309.6428571,78.21428571 +8876,147.95,1727,438,,308.3928571,78.21428571 +8877,147.9666667,1718,440,,306.7857143,78.57142857 +8878,147.9833333,1707,440,,304.8214286,78.57142857 +8879,148,1695,442,,302.6785714,78.92857143 +8880,148.0166667,1682,443,,300.3571429,79.10714286 +8881,148.0333333,1667,445,,297.6785714,79.46428571 +8882,148.05,1651,446,,294.8214286,79.64285714 +8883,148.0666667,1634,448,,291.7857143,80 +8884,148.0833333,1615,450,,288.3928571,80.35714286 +8885,148.1,1596,451,,285,80.53571429 +8886,148.1166667,1575,452,,281.25,80.71428571 +8887,148.1333333,1554,454,,277.5,81.07142857 +8888,148.15,1532,455,,273.5714286,81.25 +8889,148.1666667,1510,456,,269.6428571,81.42857143 +8890,148.1833333,1486,457,,265.3571429,81.60714286 +8891,148.2,1463,458,,261.25,81.78571429 +8892,148.2166667,1439,458,,256.9642857,81.78571429 +8893,148.2333333,1415,459,,252.6785714,81.96428571 +8894,148.25,1391,459,,248.3928571,81.96428571 +8895,148.2666667,1367,459,,244.1071429,81.96428571 +8896,148.2833333,1343,459,,239.8214286,81.96428571 +8897,148.3,1320,459,,235.7142857,81.96428571 +8898,148.3166667,1297,459,,231.6071429,81.96428571 +8899,148.3333333,1275,458,,227.6785714,81.78571429 +8900,148.35,1252,457,,223.5714286,81.60714286 +8901,148.3666667,1231,456,,219.8214286,81.42857143 +8902,148.3833333,1211,456,,216.25,81.42857143 +8903,148.4,1192,455,,212.8571429,81.25 +8904,148.4166667,1173,453,,209.4642857,80.89285714 +8905,148.4333333,1156,452,,206.4285714,80.71428571 +8906,148.45,1141,451,,203.75,80.53571429 +8907,148.4666667,1126,450,,201.0714286,80.35714286 +8908,148.4833333,1112,449,,198.5714286,80.17857143 +8909,148.5,1100,448,,196.4285714,80 +8910,148.5166667,1090,447,,194.6428571,79.82142857 +8911,148.5333333,1081,446,,193.0357143,79.64285714 +8912,148.55,1073,446,,191.6071429,79.64285714 +8913,148.5666667,1068,445,,190.7142857,79.46428571 +8914,148.5833333,1064,445,,190,79.46428571 +8915,148.6,1061,444,,189.4642857,79.28571429 +8916,148.6166667,1061,444,,189.4642857,79.28571429 +8917,148.6333333,1061,444,,189.4642857,79.28571429 +8918,148.65,1064,444,,190,79.28571429 +8919,148.6666667,1068,445,,190.7142857,79.46428571 +8920,148.6833333,1074,445,,191.7857143,79.46428571 +8921,148.7,1082,446,,193.2142857,79.64285714 +8922,148.7166667,1090,446,,194.6428571,79.64285714 +8923,148.7333333,1101,447,,196.6071429,79.82142857 +8924,148.75,1113,448,,198.75,80 +8925,148.7666667,1126,449,,201.0714286,80.17857143 +8926,148.7833333,1141,450,,203.75,80.35714286 +8927,148.8,1157,451,,206.6071429,80.53571429 +8928,148.8166667,1175,452,,209.8214286,80.71428571 +8929,148.8333333,1193,453,,213.0357143,80.89285714 +8930,148.85,1213,454,,216.6071429,81.07142857 +8931,148.8666667,1233,455,,220.1785714,81.25 +8932,148.8833333,1255,456,,224.1071429,81.42857143 +8933,148.9,1276,457,,227.8571429,81.60714286 +8934,148.9166667,1299,457,,231.9642857,81.60714286 +8935,148.9333333,1323,458,,236.25,81.78571429 +8936,148.95,1346,458,,240.3571429,81.78571429 +8937,148.9666667,1370,458,,244.6428571,81.78571429 +8938,148.9833333,1394,457,,248.9285714,81.60714286 +8939,149,1418,457,,253.2142857,81.60714286 +8940,149.0166667,1443,456,,257.6785714,81.42857143 +8941,149.0333333,1466,456,,261.7857143,81.42857143 +8942,149.05,1490,455,,266.0714286,81.25 +8943,149.0666667,1513,454,,270.1785714,81.07142857 +8944,149.0833333,1536,453,,274.2857143,80.89285714 +8945,149.1,1558,452,,278.2142857,80.71428571 +8946,149.1166667,1579,451,,281.9642857,80.53571429 +8947,149.1333333,1599,449,,285.5357143,80.17857143 +8948,149.15,1619,448,,289.1071429,80 +8949,149.1666667,1637,446,,292.3214286,79.64285714 +8950,149.1833333,1654,445,,295.3571429,79.46428571 +8951,149.2,1670,444,,298.2142857,79.28571429 +8952,149.2166667,1684,442,,300.7142857,78.92857143 +8953,149.2333333,1697,441,,303.0357143,78.75 +8954,149.25,1709,439,,305.1785714,78.39285714 +8955,149.2666667,1719,438,,306.9642857,78.21428571 +8956,149.2833333,1728,438,,308.5714286,78.21428571 +8957,149.3,1735,437,,309.8214286,78.03571429 +8958,149.3166667,1740,436,,310.7142857,77.85714286 +8959,149.3333333,1744,436,,311.4285714,77.85714286 +8960,149.35,1745,436,,311.6071429,77.85714286 +8961,149.3666667,1745,436,,311.6071429,77.85714286 +8962,149.3833333,1745,436,,311.6071429,77.85714286 +8963,149.4,1741,437,,310.8928571,78.03571429 +8964,149.4166667,1736,437,,310,78.03571429 +8965,149.4333333,1730,438,,308.9285714,78.21428571 +8966,149.45,1722,439,,307.5,78.39285714 +8967,149.4666667,1712,440,,305.7142857,78.57142857 +8968,149.4833333,1701,441,,303.75,78.75 +8969,149.5,1688,443,,301.4285714,79.10714286 +8970,149.5166667,1674,444,,298.9285714,79.28571429 +8971,149.5333333,1659,446,,296.25,79.64285714 +8972,149.55,1642,447,,293.2142857,79.82142857 +8973,149.5666667,1624,449,,290,80.17857143 +8974,149.5833333,1606,450,,286.7857143,80.35714286 +8975,149.6,1585,452,,283.0357143,80.71428571 +8976,149.6166667,1565,453,,279.4642857,80.89285714 +8977,149.6333333,1543,455,,275.5357143,81.25 +8978,149.65,1521,456,,271.6071429,81.42857143 +8979,149.6666667,1498,457,,267.5,81.60714286 +8980,149.6833333,1475,457,,263.3928571,81.60714286 +8981,149.7,1451,458,,259.1071429,81.78571429 +8982,149.7166667,1427,459,,254.8214286,81.96428571 +8983,149.7333333,1403,459,,250.5357143,81.96428571 +8984,149.75,1379,460,,246.25,82.14285714 +8985,149.7666667,1355,460,,241.9642857,82.14285714 +8986,149.7833333,1332,460,,237.8571429,82.14285714 +8987,149.8,1308,460,,233.5714286,82.14285714 +8988,149.8166667,1285,459,,229.4642857,81.96428571 +8989,149.8333333,1263,458,,225.5357143,81.78571429 +8990,149.85,1242,457,,221.7857143,81.60714286 +8991,149.8666667,1221,456,,218.0357143,81.42857143 +8992,149.8833333,1201,455,,214.4642857,81.25 +8993,149.9,1182,454,,211.0714286,81.07142857 +8994,149.9166667,1165,453,,208.0357143,80.89285714 +8995,149.9333333,1148,452,,205,80.71428571 +8996,149.95,1133,451,,202.3214286,80.53571429 +8997,149.9666667,1119,450,,199.8214286,80.35714286 +8998,149.9833333,1106,449,,197.5,80.17857143 +8999,150,1095,448,,195.5357143,80 +9000,150.0166667,1085,447,,193.75,79.82142857 +9001,150.0333333,1077,446,,192.3214286,79.64285714 +9002,150.05,1071,445,,191.25,79.46428571 +9003,150.0666667,1066,445,,190.3571429,79.46428571 +9004,150.0833333,1063,444,,189.8214286,79.28571429 +9005,150.1,1062,444,,189.6428571,79.28571429 +9006,150.1166667,1062,444,,189.6428571,79.28571429 +9007,150.1333333,1062,444,,189.6428571,79.28571429 +9008,150.15,1066,444,,190.3571429,79.28571429 +9009,150.1666667,1071,445,,191.25,79.46428571 +9010,150.1833333,1078,445,,192.5,79.46428571 +9011,150.2,1086,446,,193.9285714,79.64285714 +9012,150.2166667,1095,447,,195.5357143,79.82142857 +9013,150.2333333,1107,448,,197.6785714,80 +9014,150.25,1119,449,,199.8214286,80.17857143 +9015,150.2666667,1133,450,,202.3214286,80.35714286 +9016,150.2833333,1149,451,,205.1785714,80.53571429 +9017,150.3,1166,452,,208.2142857,80.71428571 +9018,150.3166667,1184,453,,211.4285714,80.89285714 +9019,150.3333333,1202,454,,214.6428571,81.07142857 +9020,150.35,1222,455,,218.2142857,81.25 +9021,150.3666667,1243,456,,221.9642857,81.42857143 +9022,150.3833333,1265,457,,225.8928571,81.60714286 +9023,150.4,1287,457,,229.8214286,81.60714286 +9024,150.4166667,1311,458,,234.1071429,81.78571429 +9025,150.4333333,1334,458,,238.2142857,81.78571429 +9026,150.45,1357,458,,242.3214286,81.78571429 +9027,150.4666667,1382,458,,246.7857143,81.78571429 +9028,150.4833333,1405,457,,250.8928571,81.60714286 +9029,150.5,1430,457,,255.3571429,81.60714286 +9030,150.5166667,1454,456,,259.6428571,81.42857143 +9031,150.5333333,1477,456,,263.75,81.42857143 +9032,150.55,1501,455,,268.0357143,81.25 +9033,150.5666667,1523,454,,271.9642857,81.07142857 +9034,150.5833333,1546,453,,276.0714286,80.89285714 +9035,150.6,1567,452,,279.8214286,80.71428571 +9036,150.6166667,1588,450,,283.5714286,80.35714286 +9037,150.6333333,1608,449,,287.1428571,80.17857143 +9038,150.65,1627,447,,290.5357143,79.82142857 +9039,150.6666667,1644,446,,293.5714286,79.64285714 +9040,150.6833333,1661,444,,296.6071429,79.28571429 +9041,150.7,1676,443,,299.2857143,79.10714286 +9042,150.7166667,1690,442,,301.7857143,78.92857143 +9043,150.7333333,1702,441,,303.9285714,78.75 +9044,150.75,1713,439,,305.8928571,78.39285714 +9045,150.7666667,1722,439,,307.5,78.39285714 +9046,150.7833333,1730,438,,308.9285714,78.21428571 +9047,150.8,1736,437,,310,78.03571429 +9048,150.8166667,1741,437,,310.8928571,78.03571429 +9049,150.8333333,1744,437,,311.4285714,78.03571429 +9050,150.85,1744,437,,311.4285714,78.03571429 +9051,150.8666667,1744,437,,311.4285714,78.03571429 +9052,150.8833333,1742,437,,311.0714286,78.03571429 +9053,150.9,1738,437,,310.3571429,78.03571429 +9054,150.9166667,1732,438,,309.2857143,78.21428571 +9055,150.9333333,1725,439,,308.0357143,78.39285714 +9056,150.95,1716,440,,306.4285714,78.57142857 +9057,150.9666667,1705,441,,304.4642857,78.75 +9058,150.9833333,1694,443,,302.5,79.10714286 +9059,151,1680,444,,300,79.28571429 +9060,151.0166667,1666,446,,297.5,79.64285714 +9061,151.0333333,1650,447,,294.6428571,79.82142857 +9062,151.05,1632,449,,291.4285714,80.17857143 +9063,151.0666667,1614,450,,288.2142857,80.35714286 +9064,151.0833333,1595,452,,284.8214286,80.71428571 +9065,151.1,1575,453,,281.25,80.89285714 +9066,151.1166667,1553,454,,277.3214286,81.07142857 +9067,151.1333333,1531,455,,273.3928571,81.25 +9068,151.15,1509,456,,269.4642857,81.42857143 +9069,151.1666667,1486,458,,265.3571429,81.78571429 +9070,151.1833333,1463,459,,261.25,81.96428571 +9071,151.2,1439,459,,256.9642857,81.96428571 +9072,151.2166667,1415,460,,252.6785714,82.14285714 +9073,151.2333333,1391,460,,248.3928571,82.14285714 +9074,151.25,1368,460,,244.2857143,82.14285714 +9075,151.2666667,1344,460,,240,82.14285714 +9076,151.2833333,1321,460,,235.8928571,82.14285714 +9077,151.3,1298,460,,231.7857143,82.14285714 +9078,151.3166667,1275,459,,227.6785714,81.96428571 +9079,151.3333333,1253,458,,223.75,81.78571429 +9080,151.35,1232,457,,220,81.60714286 +9081,151.3666667,1212,456,,216.4285714,81.42857143 +9082,151.3833333,1192,455,,212.8571429,81.25 +9083,151.4,1174,454,,209.6428571,81.07142857 +9084,151.4166667,1157,453,,206.6071429,80.89285714 +9085,151.4333333,1141,452,,203.75,80.71428571 +9086,151.45,1126,451,,201.0714286,80.53571429 +9087,151.4666667,1113,450,,198.75,80.35714286 +9088,151.4833333,1101,449,,196.6071429,80.17857143 +9089,151.5,1090,448,,194.6428571,80 +9090,151.5166667,1082,447,,193.2142857,79.82142857 +9091,151.5333333,1074,446,,191.7857143,79.64285714 +9092,151.55,1068,446,,190.7142857,79.64285714 +9093,151.5666667,1064,445,,190,79.46428571 +9094,151.5833333,1062,445,,189.6428571,79.46428571 +9095,151.6,1062,445,,189.6428571,79.46428571 +9096,151.6166667,1062,445,,189.6428571,79.46428571 +9097,151.6333333,1064,445,,190,79.46428571 +9098,151.65,1068,445,,190.7142857,79.46428571 +9099,151.6666667,1074,446,,191.7857143,79.64285714 +9100,151.6833333,1081,446,,193.0357143,79.64285714 +9101,151.7,1091,447,,194.8214286,79.82142857 +9102,151.7166667,1101,448,,196.6071429,80 +9103,151.7333333,1113,449,,198.75,80.17857143 +9104,151.75,1126,450,,201.0714286,80.35714286 +9105,151.7666667,1141,451,,203.75,80.53571429 +9106,151.7833333,1157,452,,206.6071429,80.71428571 +9107,151.8,1175,453,,209.8214286,80.89285714 +9108,151.8166667,1193,454,,213.0357143,81.07142857 +9109,151.8333333,1212,455,,216.4285714,81.25 +9110,151.85,1233,456,,220.1785714,81.42857143 +9111,151.8666667,1254,456,,223.9285714,81.42857143 +9112,151.8833333,1276,457,,227.8571429,81.60714286 +9113,151.9,1298,458,,231.7857143,81.78571429 +9114,151.9166667,1322,458,,236.0714286,81.78571429 +9115,151.9333333,1345,458,,240.1785714,81.78571429 +9116,151.95,1369,458,,244.4642857,81.78571429 +9117,151.9666667,1393,458,,248.75,81.78571429 +9118,151.9833333,1416,458,,252.8571429,81.78571429 +9119,152,1441,457,,257.3214286,81.60714286 +9120,152.0166667,1465,457,,261.6071429,81.60714286 +9121,152.0333333,1488,456,,265.7142857,81.42857143 +9122,152.05,1511,455,,269.8214286,81.25 +9123,152.0666667,1534,454,,273.9285714,81.07142857 +9124,152.0833333,1556,453,,277.8571429,80.89285714 +9125,152.1,1577,452,,281.6071429,80.71428571 +9126,152.1166667,1597,450,,285.1785714,80.35714286 +9127,152.1333333,1616,449,,288.5714286,80.17857143 +9128,152.15,1634,447,,291.7857143,79.82142857 +9129,152.1666667,1651,446,,294.8214286,79.64285714 +9130,152.1833333,1667,444,,297.6785714,79.28571429 +9131,152.2,1682,443,,300.3571429,79.10714286 +9132,152.2166667,1695,442,,302.6785714,78.92857143 +9133,152.2333333,1706,441,,304.6428571,78.75 +9134,152.25,1716,440,,306.4285714,78.57142857 +9135,152.2666667,1725,439,,308.0357143,78.39285714 +9136,152.2833333,1732,438,,309.2857143,78.21428571 +9137,152.3,1737,438,,310.1785714,78.21428571 +9138,152.3166667,1741,437,,310.8928571,78.03571429 +9139,152.3333333,1742,437,,311.0714286,78.03571429 +9140,152.35,1742,437,,311.0714286,78.03571429 +9141,152.3666667,1742,437,,311.0714286,78.03571429 +9142,152.3833333,1738,438,,310.3571429,78.21428571 +9143,152.4,1733,439,,309.4642857,78.39285714 +9144,152.4166667,1727,439,,308.3928571,78.39285714 +9145,152.4333333,1719,440,,306.9642857,78.57142857 +9146,152.45,1710,442,,305.3571429,78.92857143 +9147,152.4666667,1698,443,,303.2142857,79.10714286 +9148,152.4833333,1686,444,,301.0714286,79.28571429 +9149,152.5,1672,445,,298.5714286,79.46428571 +9150,152.5166667,1657,447,,295.8928571,79.82142857 +9151,152.5333333,1640,448,,292.8571429,80 +9152,152.55,1622,450,,289.6428571,80.35714286 +9153,152.5666667,1604,451,,286.4285714,80.53571429 +9154,152.5833333,1584,453,,282.8571429,80.89285714 +9155,152.6,1563,454,,279.1071429,81.07142857 +9156,152.6166667,1542,455,,275.3571429,81.25 +9157,152.6333333,1520,456,,271.4285714,81.42857143 +9158,152.65,1497,457,,267.3214286,81.60714286 +9159,152.6666667,1474,458,,263.2142857,81.78571429 +9160,152.6833333,1451,459,,259.1071429,81.96428571 +9161,152.7,1427,460,,254.8214286,82.14285714 +9162,152.7166667,1403,460,,250.5357143,82.14285714 +9163,152.7333333,1379,460,,246.25,82.14285714 +9164,152.75,1355,460,,241.9642857,82.14285714 +9165,152.7666667,1332,460,,237.8571429,82.14285714 +9166,152.7833333,1309,460,,233.75,82.14285714 +9167,152.8,1286,459,,229.6428571,81.96428571 +9168,152.8166667,1264,458,,225.7142857,81.78571429 +9169,152.8333333,1243,457,,221.9642857,81.60714286 +9170,152.85,1223,456,,218.3928571,81.42857143 +9171,152.8666667,1203,456,,214.8214286,81.42857143 +9172,152.8833333,1184,455,,211.4285714,81.25 +9173,152.9,1166,454,,208.2142857,81.07142857 +9174,152.9166667,1150,452,,205.3571429,80.71428571 +9175,152.9333333,1134,451,,202.5,80.53571429 +9176,152.95,1120,450,,200,80.35714286 +9177,152.9666667,1108,449,,197.8571429,80.17857143 +9178,152.9833333,1097,448,,195.8928571,80 +9179,153,1087,448,,194.1071429,80 +9180,153.0166667,1079,447,,192.6785714,79.82142857 +9181,153.0333333,1072,446,,191.4285714,79.64285714 +9182,153.05,1067,445,,190.5357143,79.46428571 +9183,153.0666667,1064,445,,190,79.46428571 +9184,153.0833333,1064,445,,190,79.46428571 +9185,153.1,1064,445,,190,79.46428571 +9186,153.1166667,1064,445,,190,79.46428571 +9187,153.1333333,1067,445,,190.5357143,79.46428571 +9188,153.15,1072,445,,191.4285714,79.46428571 +9189,153.1666667,1078,446,,192.5,79.64285714 +9190,153.1833333,1087,447,,194.1071429,79.82142857 +9191,153.2,1096,448,,195.7142857,80 +9192,153.2166667,1108,449,,197.8571429,80.17857143 +9193,153.2333333,1120,449,,200,80.17857143 +9194,153.25,1135,450,,202.6785714,80.35714286 +9195,153.2666667,1150,451,,205.3571429,80.53571429 +9196,153.2833333,1166,452,,208.2142857,80.71428571 +9197,153.3,1184,453,,211.4285714,80.89285714 +9198,153.3166667,1203,455,,214.8214286,81.25 +9199,153.3333333,1223,455,,218.3928571,81.25 +9200,153.35,1244,457,,222.1428571,81.60714286 +9201,153.3666667,1265,457,,225.8928571,81.60714286 +9202,153.3833333,1287,458,,229.8214286,81.78571429 +9203,153.4,1310,458,,233.9285714,81.78571429 +9204,153.4166667,1333,459,,238.0357143,81.96428571 +9205,153.4333333,1357,459,,242.3214286,81.96428571 +9206,153.45,1380,459,,246.4285714,81.96428571 +9207,153.4666667,1404,458,,250.7142857,81.78571429 +9208,153.4833333,1429,458,,255.1785714,81.78571429 +9209,153.5,1452,457,,259.2857143,81.60714286 +9210,153.5166667,1476,456,,263.5714286,81.42857143 +9211,153.5333333,1499,456,,267.6785714,81.42857143 +9212,153.55,1522,455,,271.7857143,81.25 +9213,153.5666667,1544,454,,275.7142857,81.07142857 +9214,153.5833333,1565,452,,279.4642857,80.71428571 +9215,153.6,1586,451,,283.2142857,80.53571429 +9216,153.6166667,1605,450,,286.6071429,80.35714286 +9217,153.6333333,1624,448,,290,80 +9218,153.65,1642,447,,293.2142857,79.82142857 +9219,153.6666667,1658,446,,296.0714286,79.64285714 +9220,153.6833333,1673,444,,298.75,79.28571429 +9221,153.7,1687,443,,301.25,79.10714286 +9222,153.7166667,1699,442,,303.3928571,78.92857143 +9223,153.7333333,1710,441,,305.3571429,78.75 +9224,153.75,1719,440,,306.9642857,78.57142857 +9225,153.7666667,1727,439,,308.3928571,78.39285714 +9226,153.7833333,1733,438,,309.4642857,78.21428571 +9227,153.8,1738,438,,310.3571429,78.21428571 +9228,153.8166667,1741,438,,310.8928571,78.21428571 +9229,153.8333333,1741,438,,310.8928571,78.21428571 +9230,153.85,1741,438,,310.8928571,78.21428571 +9231,153.8666667,1739,438,,310.5357143,78.21428571 +9232,153.8833333,1735,439,,309.8214286,78.39285714 +9233,153.9,1729,439,,308.75,78.39285714 +9234,153.9166667,1722,440,,307.5,78.57142857 +9235,153.9333333,1713,441,,305.8928571,78.75 +9236,153.95,1703,442,,304.1071429,78.92857143 +9237,153.9666667,1691,443,,301.9642857,79.10714286 +9238,153.9833333,1678,445,,299.6428571,79.46428571 +9239,154,1663,446,,296.9642857,79.64285714 +9240,154.0166667,1648,448,,294.2857143,80 +9241,154.0333333,1631,449,,291.25,80.17857143 +9242,154.05,1612,451,,287.8571429,80.53571429 +9243,154.0666667,1593,452,,284.4642857,80.71428571 +9244,154.0833333,1573,453,,280.8928571,80.89285714 +9245,154.1,1552,455,,277.1428571,81.25 +9246,154.1166667,1531,456,,273.3928571,81.42857143 +9247,154.1333333,1508,457,,269.2857143,81.60714286 +9248,154.15,1485,458,,265.1785714,81.78571429 +9249,154.1666667,1462,459,,261.0714286,81.96428571 +9250,154.1833333,1439,459,,256.9642857,81.96428571 +9251,154.2,1416,460,,252.8571429,82.14285714 +9252,154.2166667,1392,460,,248.5714286,82.14285714 +9253,154.2333333,1368,460,,244.2857143,82.14285714 +9254,154.25,1345,460,,240.1785714,82.14285714 +9255,154.2666667,1321,460,,235.8928571,82.14285714 +9256,154.2833333,1299,460,,231.9642857,82.14285714 +9257,154.3,1276,459,,227.8571429,81.96428571 +9258,154.3166667,1255,458,,224.1071429,81.78571429 +9259,154.3333333,1234,457,,220.3571429,81.60714286 +9260,154.35,1214,456,,216.7857143,81.42857143 +9261,154.3666667,1194,455,,213.2142857,81.25 +9262,154.3833333,1176,454,,210,81.07142857 +9263,154.4,1159,453,,206.9642857,80.89285714 +9264,154.4166667,1143,452,,204.1071429,80.71428571 +9265,154.4333333,1129,451,,201.6071429,80.53571429 +9266,154.45,1115,450,,199.1071429,80.35714286 +9267,154.4666667,1103,449,,196.9642857,80.17857143 +9268,154.4833333,1093,448,,195.1785714,80 +9269,154.5,1084,447,,193.5714286,79.82142857 +9270,154.5166667,1077,446,,192.3214286,79.64285714 +9271,154.5333333,1071,446,,191.25,79.64285714 +9272,154.55,1067,446,,190.5357143,79.64285714 +9273,154.5666667,1065,445,,190.1785714,79.46428571 +9274,154.5833333,1065,445,,190.1785714,79.46428571 +9275,154.6,1065,445,,190.1785714,79.46428571 +9276,154.6166667,1067,445,,190.5357143,79.46428571 +9277,154.6333333,1071,445,,191.25,79.46428571 +9278,154.65,1077,446,,192.3214286,79.64285714 +9279,154.6666667,1084,446,,193.5714286,79.64285714 +9280,154.6833333,1093,447,,195.1785714,79.82142857 +9281,154.7,1103,448,,196.9642857,80 +9282,154.7166667,1115,449,,199.1071429,80.17857143 +9283,154.7333333,1128,450,,201.4285714,80.35714286 +9284,154.75,1143,451,,204.1071429,80.53571429 +9285,154.7666667,1159,452,,206.9642857,80.71428571 +9286,154.7833333,1176,453,,210,80.89285714 +9287,154.8,1194,454,,213.2142857,81.07142857 +9288,154.8166667,1214,455,,216.7857143,81.25 +9289,154.8333333,1234,456,,220.3571429,81.42857143 +9290,154.85,1255,457,,224.1071429,81.60714286 +9291,154.8666667,1276,458,,227.8571429,81.78571429 +9292,154.8833333,1299,458,,231.9642857,81.78571429 +9293,154.9,1322,459,,236.0714286,81.96428571 +9294,154.9166667,1345,459,,240.1785714,81.96428571 +9295,154.9333333,1368,459,,244.2857143,81.96428571 +9296,154.95,1392,459,,248.5714286,81.96428571 +9297,154.9666667,1416,458,,252.8571429,81.78571429 +9298,154.9833333,1440,458,,257.1428571,81.78571429 +9299,155,1464,457,,261.4285714,81.60714286 +9300,155.0166667,1487,456,,265.5357143,81.42857143 +9301,155.0333333,1510,455,,269.6428571,81.25 +9302,155.05,1532,454,,273.5714286,81.07142857 +9303,155.0666667,1553,453,,277.3214286,80.89285714 +9304,155.0833333,1574,452,,281.0714286,80.71428571 +9305,155.1,1594,451,,284.6428571,80.53571429 +9306,155.1166667,1613,449,,288.0357143,80.17857143 +9307,155.1333333,1632,448,,291.4285714,80 +9308,155.15,1649,447,,294.4642857,79.82142857 +9309,155.1666667,1664,445,,297.1428571,79.46428571 +9310,155.1833333,1679,444,,299.8214286,79.28571429 +9311,155.2,1692,443,,302.1428571,79.10714286 +9312,155.2166667,1703,442,,304.1071429,78.92857143 +9313,155.2333333,1713,440,,305.8928571,78.57142857 +9314,155.25,1722,440,,307.5,78.57142857 +9315,155.2666667,1729,439,,308.75,78.39285714 +9316,155.2833333,1734,438,,309.6428571,78.21428571 +9317,155.3,1738,438,,310.3571429,78.21428571 +9318,155.3166667,1739,438,,310.5357143,78.21428571 +9319,155.3333333,1739,438,,310.5357143,78.21428571 +9320,155.35,1739,438,,310.5357143,78.21428571 +9321,155.3666667,1736,439,,310,78.39285714 +9322,155.3833333,1731,439,,309.1071429,78.39285714 +9323,155.4,1725,440,,308.0357143,78.57142857 +9324,155.4166667,1716,441,,306.4285714,78.75 +9325,155.4333333,1707,442,,304.8214286,78.92857143 +9326,155.45,1696,443,,302.8571429,79.10714286 +9327,155.4666667,1684,444,,300.7142857,79.28571429 +9328,155.4833333,1670,446,,298.2142857,79.64285714 +9329,155.5,1655,447,,295.5357143,79.82142857 +9330,155.5166667,1639,449,,292.6785714,80.17857143 +9331,155.5333333,1621,450,,289.4642857,80.35714286 +9332,155.55,1603,452,,286.25,80.71428571 +9333,155.5666667,1583,453,,282.6785714,80.89285714 +9334,155.5833333,1562,455,,278.9285714,81.25 +9335,155.6,1541,456,,275.1785714,81.42857143 +9336,155.6166667,1519,457,,271.25,81.60714286 +9337,155.6333333,1497,458,,267.3214286,81.78571429 +9338,155.65,1474,459,,263.2142857,81.96428571 +9339,155.6666667,1451,459,,259.1071429,81.96428571 +9340,155.6833333,1428,460,,255,82.14285714 +9341,155.7,1404,460,,250.7142857,82.14285714 +9342,155.7166667,1380,460,,246.4285714,82.14285714 +9343,155.7333333,1357,460,,242.3214286,82.14285714 +9344,155.75,1333,460,,238.0357143,82.14285714 +9345,155.7666667,1311,460,,234.1071429,82.14285714 +9346,155.7833333,1288,460,,230,82.14285714 +9347,155.8,1266,459,,226.0714286,81.96428571 +9348,155.8166667,1245,458,,222.3214286,81.78571429 +9349,155.8333333,1224,457,,218.5714286,81.60714286 +9350,155.85,1205,456,,215.1785714,81.42857143 +9351,155.8666667,1186,455,,211.7857143,81.25 +9352,155.8833333,1168,454,,208.5714286,81.07142857 +9353,155.9,1152,452,,205.7142857,80.71428571 +9354,155.9166667,1137,451,,203.0357143,80.53571429 +9355,155.9333333,1123,450,,200.5357143,80.35714286 +9356,155.95,1110,449,,198.2142857,80.17857143 +9357,155.9666667,1099,448,,196.25,80 +9358,155.9833333,1089,447,,194.4642857,79.82142857 +9359,156,1081,447,,193.0357143,79.82142857 +9360,156.0166667,1075,446,,191.9642857,79.64285714 +9361,156.0333333,1070,445,,191.0714286,79.46428571 +9362,156.05,1066,445,,190.3571429,79.46428571 +9363,156.0666667,1066,445,,190.3571429,79.46428571 +9364,156.0833333,1066,445,,190.3571429,79.46428571 +9365,156.1,1066,445,,190.3571429,79.46428571 +9366,156.1166667,1069,445,,190.8928571,79.46428571 +9367,156.1333333,1074,445,,191.7857143,79.46428571 +9368,156.15,1081,446,,193.0357143,79.64285714 +9369,156.1666667,1088,446,,194.2857143,79.64285714 +9370,156.1833333,1098,447,,196.0714286,79.82142857 +9371,156.2,1109,448,,198.0357143,80 +9372,156.2166667,1122,449,,200.3571429,80.17857143 +9373,156.2333333,1135,450,,202.6785714,80.35714286 +9374,156.25,1151,451,,205.5357143,80.53571429 +9375,156.2666667,1167,452,,208.3928571,80.71428571 +9376,156.2833333,1185,453,,211.6071429,80.89285714 +9377,156.3,1204,454,,215,81.07142857 +9378,156.3166667,1223,455,,218.3928571,81.25 +9379,156.3333333,1244,456,,222.1428571,81.42857143 +9380,156.35,1265,456,,225.8928571,81.42857143 +9381,156.3666667,1287,458,,229.8214286,81.78571429 +9382,156.3833333,1310,458,,233.9285714,81.78571429 +9383,156.4,1333,458,,238.0357143,81.78571429 +9384,156.4166667,1356,458,,242.1428571,81.78571429 +9385,156.4333333,1380,458,,246.4285714,81.78571429 +9386,156.45,1403,458,,250.5357143,81.78571429 +9387,156.4666667,1427,458,,254.8214286,81.78571429 +9388,156.4833333,1451,457,,259.1071429,81.60714286 +9389,156.5,1474,456,,263.2142857,81.42857143 +9390,156.5166667,1497,455,,267.3214286,81.25 +9391,156.5333333,1520,455,,271.4285714,81.25 +9392,156.55,1541,453,,275.1785714,80.89285714 +9393,156.5666667,1563,452,,279.1071429,80.71428571 +9394,156.5833333,1583,451,,282.6785714,80.53571429 +9395,156.6,1603,449,,286.25,80.17857143 +9396,156.6166667,1622,448,,289.6428571,80 +9397,156.6333333,1639,447,,292.6785714,79.82142857 +9398,156.65,1655,445,,295.5357143,79.46428571 +9399,156.6666667,1670,444,,298.2142857,79.28571429 +9400,156.6833333,1684,443,,300.7142857,79.10714286 +9401,156.7,1696,442,,302.8571429,78.92857143 +9402,156.7166667,1707,441,,304.8214286,78.75 +9403,156.7333333,1716,440,,306.4285714,78.57142857 +9404,156.75,1724,439,,307.8571429,78.39285714 +9405,156.7666667,1731,438,,309.1071429,78.21428571 +9406,156.7833333,1735,438,,309.8214286,78.21428571 +9407,156.8,1738,438,,310.3571429,78.21428571 +9408,156.8166667,1738,438,,310.3571429,78.21428571 +9409,156.8333333,1738,438,,310.3571429,78.21428571 +9410,156.85,1736,438,,310,78.21428571 +9411,156.8666667,1733,439,,309.4642857,78.39285714 +9412,156.8833333,1727,439,,308.3928571,78.39285714 +9413,156.9,1720,440,,307.1428571,78.57142857 +9414,156.9166667,1712,441,,305.7142857,78.75 +9415,156.9333333,1701,442,,303.75,78.92857143 +9416,156.95,1690,444,,301.7857143,79.28571429 +9417,156.9666667,1677,445,,299.4642857,79.46428571 +9418,156.9833333,1662,446,,296.7857143,79.64285714 +9419,157,1647,448,,294.1071429,80 +9420,157.0166667,1630,449,,291.0714286,80.17857143 +9421,157.0333333,1612,451,,287.8571429,80.53571429 +9422,157.05,1593,452,,284.4642857,80.71428571 +9423,157.0666667,1573,454,,280.8928571,81.07142857 +9424,157.0833333,1552,455,,277.1428571,81.25 +9425,157.1,1531,456,,273.3928571,81.42857143 +9426,157.1166667,1508,457,,269.2857143,81.60714286 +9427,157.1333333,1486,458,,265.3571429,81.78571429 +9428,157.15,1463,459,,261.25,81.96428571 +9429,157.1666667,1440,459,,257.1428571,81.96428571 +9430,157.1833333,1416,460,,252.8571429,82.14285714 +9431,157.2,1393,460,,248.75,82.14285714 +9432,157.2166667,1369,460,,244.4642857,82.14285714 +9433,157.2333333,1346,460,,240.3571429,82.14285714 +9434,157.25,1323,460,,236.25,82.14285714 +9435,157.2666667,1300,460,,232.1428571,82.14285714 +9436,157.2833333,1278,459,,228.2142857,81.96428571 +9437,157.3,1256,458,,224.2857143,81.78571429 +9438,157.3166667,1235,457,,220.5357143,81.60714286 +9439,157.3333333,1215,456,,216.9642857,81.42857143 +9440,157.35,1196,455,,213.5714286,81.25 +9441,157.3666667,1178,454,,210.3571429,81.07142857 +9442,157.3833333,1161,453,,207.3214286,80.89285714 +9443,157.4,1145,452,,204.4642857,80.71428571 +9444,157.4166667,1131,451,,201.9642857,80.53571429 +9445,157.4333333,1118,450,,199.6428571,80.35714286 +9446,157.45,1106,449,,197.5,80.17857143 +9447,157.4666667,1095,448,,195.5357143,80 +9448,157.4833333,1086,447,,193.9285714,79.82142857 +9449,157.5,1079,446,,192.6785714,79.64285714 +9450,157.5166667,1073,446,,191.6071429,79.64285714 +9451,157.5333333,1069,445,,190.8928571,79.46428571 +9452,157.55,1066,445,,190.3571429,79.46428571 +9453,157.5666667,1066,445,,190.3571429,79.46428571 +9454,157.5833333,1066,445,,190.3571429,79.46428571 +9455,157.6,1069,445,,190.8928571,79.46428571 +9456,157.6166667,1073,445,,191.6071429,79.46428571 +9457,157.6333333,1078,446,,192.5,79.64285714 +9458,157.65,1086,446,,193.9285714,79.64285714 +9459,157.6666667,1094,447,,195.3571429,79.82142857 +9460,157.6833333,1105,448,,197.3214286,80 +9461,157.7,1116,449,,199.2857143,80.17857143 +9462,157.7166667,1129,449,,201.6071429,80.17857143 +9463,157.7333333,1144,450,,204.2857143,80.35714286 +9464,157.75,1160,452,,207.1428571,80.71428571 +9465,157.7666667,1176,452,,210,80.71428571 +9466,157.7833333,1194,453,,213.2142857,80.89285714 +9467,157.8,1214,454,,216.7857143,81.07142857 +9468,157.8166667,1234,455,,220.3571429,81.25 +9469,157.8333333,1255,456,,224.1071429,81.42857143 +9470,157.85,1276,457,,227.8571429,81.60714286 +9471,157.8666667,1298,458,,231.7857143,81.78571429 +9472,157.8833333,1321,458,,235.8928571,81.78571429 +9473,157.9,1344,458,,240,81.78571429 +9474,157.9166667,1368,458,,244.2857143,81.78571429 +9475,157.9333333,1392,458,,248.5714286,81.78571429 +9476,157.95,1415,457,,252.6785714,81.60714286 +9477,157.9666667,1439,457,,256.9642857,81.60714286 +9478,157.9833333,1462,456,,261.0714286,81.42857143 +9479,158,1486,456,,265.3571429,81.42857143 +9480,158.0166667,1508,455,,269.2857143,81.25 +9481,158.0333333,1530,454,,273.2142857,81.07142857 +9482,158.05,1552,453,,277.1428571,80.89285714 +9483,158.0666667,1573,452,,280.8928571,80.71428571 +9484,158.0833333,1593,451,,284.4642857,80.53571429 +9485,158.1,1611,449,,287.6785714,80.17857143 +9486,158.1166667,1629,448,,290.8928571,80 +9487,158.1333333,1646,447,,293.9285714,79.82142857 +9488,158.15,1662,445,,296.7857143,79.46428571 +9489,158.1666667,1676,443,,299.2857143,79.10714286 +9490,158.1833333,1689,442,,301.6071429,78.92857143 +9491,158.2,1701,442,,303.75,78.92857143 +9492,158.2166667,1711,441,,305.5357143,78.75 +9493,158.2333333,1720,440,,307.1428571,78.57142857 +9494,158.25,1726,439,,308.2142857,78.39285714 +9495,158.2666667,1732,438,,309.2857143,78.21428571 +9496,158.2833333,1735,438,,309.8214286,78.21428571 +9497,158.3,1737,438,,310.1785714,78.21428571 +9498,158.3166667,1737,438,,310.1785714,78.21428571 +9499,158.3333333,1737,438,,310.1785714,78.21428571 +9500,158.35,1734,439,,309.6428571,78.39285714 +9501,158.3666667,1729,439,,308.75,78.39285714 +9502,158.3833333,1723,440,,307.6785714,78.57142857 +9503,158.4,1715,441,,306.25,78.75 +9504,158.4166667,1706,442,,304.6428571,78.92857143 +9505,158.4333333,1695,443,,302.6785714,79.10714286 +9506,158.45,1683,445,,300.5357143,79.46428571 +9507,158.4666667,1669,446,,298.0357143,79.64285714 +9508,158.4833333,1654,447,,295.3571429,79.82142857 +9509,158.5,1638,449,,292.5,80.17857143 +9510,158.5166667,1621,450,,289.4642857,80.35714286 +9511,158.5333333,1602,451,,286.0714286,80.53571429 +9512,158.55,1583,453,,282.6785714,80.89285714 +9513,158.5666667,1563,454,,279.1071429,81.07142857 +9514,158.5833333,1542,455,,275.3571429,81.25 +9515,158.6,1520,456,,271.4285714,81.42857143 +9516,158.6166667,1498,457,,267.5,81.60714286 +9517,158.6333333,1475,458,,263.3928571,81.78571429 +9518,158.65,1452,459,,259.2857143,81.96428571 +9519,158.6666667,1429,459,,255.1785714,81.96428571 +9520,158.6833333,1405,460,,250.8928571,82.14285714 +9521,158.7,1382,460,,246.7857143,82.14285714 +9522,158.7166667,1358,460,,242.5,82.14285714 +9523,158.7333333,1336,460,,238.5714286,82.14285714 +9524,158.75,1313,460,,234.4642857,82.14285714 +9525,158.7666667,1291,459,,230.5357143,81.96428571 +9526,158.7833333,1269,459,,226.6071429,81.96428571 +9527,158.8,1247,458,,222.6785714,81.78571429 +9528,158.8166667,1227,457,,219.1071429,81.60714286 +9529,158.8333333,1207,456,,215.5357143,81.42857143 +9530,158.85,1189,455,,212.3214286,81.25 +9531,158.8666667,1171,454,,209.1071429,81.07142857 +9532,158.8833333,1155,453,,206.25,80.89285714 +9533,158.9,1140,451,,203.5714286,80.53571429 +9534,158.9166667,1126,451,,201.0714286,80.53571429 +9535,158.9333333,1113,449,,198.75,80.17857143 +9536,158.95,1102,449,,196.7857143,80.17857143 +9537,158.9666667,1092,448,,195,80 +9538,158.9833333,1084,447,,193.5714286,79.82142857 +9539,159,1077,446,,192.3214286,79.64285714 +9540,159.0166667,1072,446,,191.4285714,79.64285714 +9541,159.0333333,1069,445,,190.8928571,79.46428571 +9542,159.05,1068,445,,190.7142857,79.46428571 +9543,159.0666667,1068,445,,190.7142857,79.46428571 +9544,159.0833333,1068,445,,190.7142857,79.46428571 +9545,159.1,1072,445,,191.4285714,79.46428571 +9546,159.1166667,1076,446,,192.1428571,79.64285714 +9547,159.1333333,1083,446,,193.3928571,79.64285714 +9548,159.15,1091,446,,194.8214286,79.64285714 +9549,159.1666667,1100,447,,196.4285714,79.82142857 +9550,159.1833333,1111,448,,198.3928571,80 +9551,159.2,1123,449,,200.5357143,80.17857143 +9552,159.2166667,1137,450,,203.0357143,80.35714286 +9553,159.2333333,1152,451,,205.7142857,80.53571429 +9554,159.25,1168,452,,208.5714286,80.71428571 +9555,159.2666667,1186,453,,211.7857143,80.89285714 +9556,159.2833333,1204,454,,215,81.07142857 +9557,159.3,1224,455,,218.5714286,81.25 +9558,159.3166667,1244,456,,222.1428571,81.42857143 +9559,159.3333333,1265,456,,225.8928571,81.42857143 +9560,159.35,1287,457,,229.8214286,81.60714286 +9561,159.3666667,1310,458,,233.9285714,81.78571429 +9562,159.3833333,1332,458,,237.8571429,81.78571429 +9563,159.4,1356,458,,242.1428571,81.78571429 +9564,159.4166667,1379,458,,246.25,81.78571429 +9565,159.4333333,1403,457,,250.5357143,81.60714286 +9566,159.45,1426,457,,254.6428571,81.60714286 +9567,159.4666667,1450,457,,258.9285714,81.60714286 +9568,159.4833333,1473,456,,263.0357143,81.42857143 +9569,159.5,1496,455,,267.1428571,81.25 +9570,159.5166667,1518,454,,271.0714286,81.07142857 +9571,159.5333333,1540,453,,275,80.89285714 +9572,159.55,1561,452,,278.75,80.71428571 +9573,159.5666667,1582,451,,282.5,80.53571429 +9574,159.5833333,1601,449,,285.8928571,80.17857143 +9575,159.6,1620,448,,289.2857143,80 +9576,159.6166667,1637,447,,292.3214286,79.82142857 +9577,159.6333333,1653,445,,295.1785714,79.46428571 +9578,159.65,1668,444,,297.8571429,79.28571429 +9579,159.6666667,1682,443,,300.3571429,79.10714286 +9580,159.6833333,1694,442,,302.5,78.92857143 +9581,159.7,1705,441,,304.4642857,78.75 +9582,159.7166667,1714,440,,306.0714286,78.57142857 +9583,159.7333333,1722,439,,307.5,78.39285714 +9584,159.75,1728,438,,308.5714286,78.21428571 +9585,159.7666667,1733,438,,309.4642857,78.21428571 +9586,159.7833333,1736,438,,310,78.21428571 +9587,159.8,1736,438,,310,78.21428571 +9588,159.8166667,1736,438,,310,78.21428571 +9589,159.8333333,1735,438,,309.8214286,78.21428571 +9590,159.85,1731,439,,309.1071429,78.39285714 +9591,159.8666667,1725,439,,308.0357143,78.39285714 +9592,159.8833333,1719,440,,306.9642857,78.57142857 +9593,159.9,1710,441,,305.3571429,78.75 +9594,159.9166667,1700,442,,303.5714286,78.92857143 +9595,159.9333333,1689,443,,301.6071429,79.10714286 +9596,159.95,1676,445,,299.2857143,79.46428571 +9597,159.9666667,1662,446,,296.7857143,79.64285714 +9598,159.9833333,1646,448,,293.9285714,80 +9599,160,1630,449,,291.0714286,80.17857143 +9600,160.0166667,1612,450,,287.8571429,80.35714286 +9601,160.0333333,1593,452,,284.4642857,80.71428571 +9602,160.05,1573,453,,280.8928571,80.89285714 +9603,160.0666667,1553,454,,277.3214286,81.07142857 +9604,160.0833333,1531,455,,273.3928571,81.25 +9605,160.1,1509,456,,269.4642857,81.42857143 +9606,160.1166667,1487,457,,265.5357143,81.60714286 +9607,160.1333333,1464,458,,261.4285714,81.78571429 +9608,160.15,1441,459,,257.3214286,81.96428571 +9609,160.1666667,1417,459,,253.0357143,81.96428571 +9610,160.1833333,1394,460,,248.9285714,82.14285714 +9611,160.2,1371,460,,244.8214286,82.14285714 +9612,160.2166667,1347,460,,240.5357143,82.14285714 +9613,160.2333333,1325,460,,236.6071429,82.14285714 +9614,160.25,1302,459,,232.5,81.96428571 +9615,160.2666667,1280,459,,228.5714286,81.96428571 +9616,160.2833333,1258,458,,224.6428571,81.78571429 +9617,160.3,1238,457,,221.0714286,81.60714286 +9618,160.3166667,1218,456,,217.5,81.42857143 +9619,160.3333333,1199,455,,214.1071429,81.25 +9620,160.35,1181,454,,210.8928571,81.07142857 +9621,160.3666667,1164,453,,207.8571429,80.89285714 +9622,160.3833333,1148,452,,205,80.71428571 +9623,160.4,1134,451,,202.5,80.53571429 +9624,160.4166667,1120,450,,200,80.35714286 +9625,160.4333333,1109,449,,198.0357143,80.17857143 +9626,160.45,1098,448,,196.0714286,80 +9627,160.4666667,1089,447,,194.4642857,79.82142857 +9628,160.4833333,1082,446,,193.2142857,79.64285714 +9629,160.5,1076,445,,192.1428571,79.46428571 +9630,160.5166667,1072,445,,191.4285714,79.46428571 +9631,160.5333333,1069,445,,190.8928571,79.46428571 +9632,160.55,1069,445,,190.8928571,79.46428571 +9633,160.5666667,1069,445,,190.8928571,79.46428571 +9634,160.5833333,1071,445,,191.25,79.46428571 +9635,160.6,1075,445,,191.9642857,79.46428571 +9636,160.6166667,1080,445,,192.8571429,79.46428571 +9637,160.6333333,1088,446,,194.2857143,79.64285714 +9638,160.65,1096,446,,195.7142857,79.64285714 +9639,160.6666667,1107,447,,197.6785714,79.82142857 +9640,160.6833333,1118,448,,199.6428571,80 +9641,160.7,1131,449,,201.9642857,80.17857143 +9642,160.7166667,1145,450,,204.4642857,80.35714286 +9643,160.7333333,1161,451,,207.3214286,80.53571429 +9644,160.75,1178,452,,210.3571429,80.71428571 +9645,160.7666667,1196,453,,213.5714286,80.89285714 +9646,160.7833333,1215,454,,216.9642857,81.07142857 +9647,160.8,1235,455,,220.5357143,81.25 +9648,160.8166667,1256,455,,224.2857143,81.25 +9649,160.8333333,1277,456,,228.0357143,81.42857143 +9650,160.85,1299,457,,231.9642857,81.60714286 +9651,160.8666667,1322,457,,236.0714286,81.60714286 +9652,160.8833333,1345,458,,240.1785714,81.78571429 +9653,160.9,1368,458,,244.2857143,81.78571429 +9654,160.9166667,1392,458,,248.5714286,81.78571429 +9655,160.9333333,1415,457,,252.6785714,81.60714286 +9656,160.95,1439,457,,256.9642857,81.60714286 +9657,160.9666667,1462,456,,261.0714286,81.42857143 +9658,160.9833333,1485,455,,265.1785714,81.25 +9659,161,1508,455,,269.2857143,81.25 +9660,161.0166667,1530,454,,273.2142857,81.07142857 +9661,161.0333333,1551,452,,276.9642857,80.71428571 +9662,161.05,1572,451,,280.7142857,80.53571429 +9663,161.0666667,1592,450,,284.2857143,80.35714286 +9664,161.0833333,1611,449,,287.6785714,80.17857143 +9665,161.1,1629,447,,290.8928571,79.82142857 +9666,161.1166667,1645,446,,293.75,79.64285714 +9667,161.1333333,1661,445,,296.6071429,79.46428571 +9668,161.15,1675,443,,299.1071429,79.10714286 +9669,161.1666667,1688,442,,301.4285714,78.92857143 +9670,161.1833333,1699,441,,303.3928571,78.75 +9671,161.2,1710,440,,305.3571429,78.57142857 +9672,161.2166667,1718,439,,306.7857143,78.39285714 +9673,161.2333333,1725,438,,308.0357143,78.21428571 +9674,161.25,1730,438,,308.9285714,78.21428571 +9675,161.2666667,1734,438,,309.6428571,78.21428571 +9676,161.2833333,1735,438,,309.8214286,78.21428571 +9677,161.3,1735,438,,309.8214286,78.21428571 +9678,161.3166667,1735,438,,309.8214286,78.21428571 +9679,161.3333333,1732,438,,309.2857143,78.21428571 +9680,161.35,1728,438,,308.5714286,78.21428571 +9681,161.3666667,1722,439,,307.5,78.39285714 +9682,161.3833333,1714,440,,306.0714286,78.57142857 +9683,161.4,1705,441,,304.4642857,78.75 +9684,161.4166667,1694,442,,302.5,78.92857143 +9685,161.4333333,1682,443,,300.3571429,79.10714286 +9686,161.45,1668,445,,297.8571429,79.46428571 +9687,161.4666667,1654,446,,295.3571429,79.64285714 +9688,161.4833333,1638,448,,292.5,80 +9689,161.5,1620,449,,289.2857143,80.17857143 +9690,161.5166667,1602,450,,286.0714286,80.35714286 +9691,161.5333333,1583,452,,282.6785714,80.71428571 +9692,161.55,1563,453,,279.1071429,80.89285714 +9693,161.5666667,1542,454,,275.3571429,81.07142857 +9694,161.5833333,1520,455,,271.4285714,81.25 +9695,161.6,1498,457,,267.5,81.60714286 +9696,161.6166667,1476,457,,263.5714286,81.60714286 +9697,161.6333333,1453,458,,259.4642857,81.78571429 +9698,161.65,1430,459,,255.3571429,81.96428571 +9699,161.6666667,1406,459,,251.0714286,81.96428571 +9700,161.6833333,1383,459,,246.9642857,81.96428571 +9701,161.7,1360,459,,242.8571429,81.96428571 +9702,161.7166667,1337,459,,238.75,81.96428571 +9703,161.7333333,1314,459,,234.6428571,81.96428571 +9704,161.75,1292,458,,230.7142857,81.78571429 +9705,161.7666667,1270,457,,226.7857143,81.60714286 +9706,161.7833333,1249,457,,223.0357143,81.60714286 +9707,161.8,1229,456,,219.4642857,81.42857143 +9708,161.8166667,1210,455,,216.0714286,81.25 +9709,161.8333333,1191,454,,212.6785714,81.07142857 +9710,161.85,1174,453,,209.6428571,80.89285714 +9711,161.8666667,1157,452,,206.6071429,80.71428571 +9712,161.8833333,1142,451,,203.9285714,80.53571429 +9713,161.9,1128,449,,201.4285714,80.17857143 +9714,161.9166667,1116,449,,199.2857143,80.17857143 +9715,161.9333333,1104,448,,197.1428571,80 +9716,161.95,1095,447,,195.5357143,79.82142857 +9717,161.9666667,1087,446,,194.1071429,79.64285714 +9718,161.9833333,1080,445,,192.8571429,79.46428571 +9719,162,1075,445,,191.9642857,79.46428571 +9720,162.0166667,1071,444,,191.25,79.28571429 +9721,162.0333333,1071,444,,191.25,79.28571429 +9722,162.05,1071,444,,191.25,79.28571429 +9723,162.0666667,1071,444,,191.25,79.28571429 +9724,162.0833333,1074,444,,191.7857143,79.28571429 +9725,162.1,1079,444,,192.6785714,79.28571429 +9726,162.1166667,1085,445,,193.75,79.46428571 +9727,162.1333333,1093,446,,195.1785714,79.64285714 +9728,162.15,1102,447,,196.7857143,79.82142857 +9729,162.1666667,1113,447,,198.75,79.82142857 +9730,162.1833333,1125,448,,200.8928571,80 +9731,162.2,1139,449,,203.3928571,80.17857143 +9732,162.2166667,1154,450,,206.0714286,80.35714286 +9733,162.2333333,1170,451,,208.9285714,80.53571429 +9734,162.25,1187,452,,211.9642857,80.71428571 +9735,162.2666667,1206,453,,215.3571429,80.89285714 +9736,162.2833333,1225,454,,218.75,81.07142857 +9737,162.3,1245,455,,222.3214286,81.25 +9738,162.3166667,1266,456,,226.0714286,81.42857143 +9739,162.3333333,1288,457,,230,81.60714286 +9740,162.35,1310,457,,233.9285714,81.60714286 +9741,162.3666667,1333,457,,238.0357143,81.60714286 +9742,162.3833333,1356,457,,242.1428571,81.60714286 +9743,162.4,1379,457,,246.25,81.60714286 +9744,162.4166667,1402,457,,250.3571429,81.60714286 +9745,162.4333333,1426,457,,254.6428571,81.60714286 +9746,162.45,1449,457,,258.75,81.60714286 +9747,162.4666667,1472,456,,262.8571429,81.42857143 +9748,162.4833333,1495,455,,266.9642857,81.25 +9749,162.5,1517,454,,270.8928571,81.07142857 +9750,162.5166667,1538,453,,274.6428571,80.89285714 +9751,162.5333333,1560,452,,278.5714286,80.71428571 +9752,162.55,1580,451,,282.1428571,80.53571429 +9753,162.5666667,1599,450,,285.5357143,80.35714286 +9754,162.5833333,1617,448,,288.75,80 +9755,162.6,1635,447,,291.9642857,79.82142857 +9756,162.6166667,1651,446,,294.8214286,79.64285714 +9757,162.6333333,1666,444,,297.5,79.28571429 +9758,162.65,1679,443,,299.8214286,79.10714286 +9759,162.6666667,1692,442,,302.1428571,78.92857143 +9760,162.6833333,1702,441,,303.9285714,78.75 +9761,162.7,1712,440,,305.7142857,78.57142857 +9762,162.7166667,1719,439,,306.9642857,78.39285714 +9763,162.7333333,1726,439,,308.2142857,78.39285714 +9764,162.75,1730,438,,308.9285714,78.21428571 +9765,162.7666667,1733,438,,309.4642857,78.21428571 +9766,162.7833333,1733,438,,309.4642857,78.21428571 +9767,162.8,1733,438,,309.4642857,78.21428571 +9768,162.8166667,1732,439,,309.2857143,78.39285714 +9769,162.8333333,1728,439,,308.5714286,78.39285714 +9770,162.85,1723,440,,307.6785714,78.57142857 +9771,162.8666667,1716,440,,306.4285714,78.57142857 +9772,162.8833333,1708,441,,305,78.75 +9773,162.9,1698,442,,303.2142857,78.92857143 +9774,162.9166667,1686,444,,301.0714286,79.28571429 +9775,162.9333333,1674,445,,298.9285714,79.46428571 +9776,162.95,1659,446,,296.25,79.64285714 +9777,162.9666667,1644,447,,293.5714286,79.82142857 +9778,162.9833333,1628,449,,290.7142857,80.17857143 +9779,163,1610,450,,287.5,80.35714286 +9780,163.0166667,1591,452,,284.1071429,80.71428571 +9781,163.0333333,1572,453,,280.7142857,80.89285714 +9782,163.05,1551,454,,276.9642857,81.07142857 +9783,163.0666667,1530,455,,273.2142857,81.25 +9784,163.0833333,1508,456,,269.2857143,81.42857143 +9785,163.1,1486,457,,265.3571429,81.60714286 +9786,163.1166667,1463,458,,261.25,81.78571429 +9787,163.1333333,1440,459,,257.1428571,81.96428571 +9788,163.15,1417,459,,253.0357143,81.96428571 +9789,163.1666667,1394,459,,248.9285714,81.96428571 +9790,163.1833333,1371,460,,244.8214286,82.14285714 +9791,163.2,1348,460,,240.7142857,82.14285714 +9792,163.2166667,1325,460,,236.6071429,82.14285714 +9793,163.2333333,1303,459,,232.6785714,81.96428571 +9794,163.25,1281,458,,228.75,81.78571429 +9795,163.2666667,1259,457,,224.8214286,81.60714286 +9796,163.2833333,1239,457,,221.25,81.60714286 +9797,163.3,1219,456,,217.6785714,81.42857143 +9798,163.3166667,1200,455,,214.2857143,81.25 +9799,163.3333333,1182,454,,211.0714286,81.07142857 +9800,163.35,1166,453,,208.2142857,80.89285714 +9801,163.3666667,1150,451,,205.3571429,80.53571429 +9802,163.3833333,1135,450,,202.6785714,80.35714286 +9803,163.4,1122,449,,200.3571429,80.17857143 +9804,163.4166667,1110,448,,198.2142857,80 +9805,163.4333333,1100,447,,196.4285714,79.82142857 +9806,163.45,1091,446,,194.8214286,79.64285714 +9807,163.4666667,1083,445,,193.3928571,79.46428571 +9808,163.4833333,1078,445,,192.5,79.46428571 +9809,163.5,1073,444,,191.6071429,79.28571429 +9810,163.5166667,1071,444,,191.25,79.28571429 +9811,163.5333333,1071,444,,191.25,79.28571429 +9812,163.55,1071,444,,191.25,79.28571429 +9813,163.5666667,1073,444,,191.6071429,79.28571429 +9814,163.5833333,1076,445,,192.1428571,79.46428571 +9815,163.6,1082,445,,193.2142857,79.46428571 +9816,163.6166667,1089,445,,194.4642857,79.46428571 +9817,163.6333333,1097,446,,195.8928571,79.64285714 +9818,163.65,1107,447,,197.6785714,79.82142857 +9819,163.6666667,1119,448,,199.8214286,80 +9820,163.6833333,1132,449,,202.1428571,80.17857143 +9821,163.7,1146,450,,204.6428571,80.35714286 +9822,163.7166667,1162,451,,207.5,80.53571429 +9823,163.7333333,1178,452,,210.3571429,80.71428571 +9824,163.75,1196,453,,213.5714286,80.89285714 +9825,163.7666667,1214,454,,216.7857143,81.07142857 +9826,163.7833333,1234,455,,220.3571429,81.25 +9827,163.8,1255,456,,224.1071429,81.42857143 +9828,163.8166667,1276,456,,227.8571429,81.42857143 +9829,163.8333333,1298,457,,231.7857143,81.60714286 +9830,163.85,1320,458,,235.7142857,81.78571429 +9831,163.8666667,1343,458,,239.8214286,81.78571429 +9832,163.8833333,1366,458,,243.9285714,81.78571429 +9833,163.9,1389,458,,248.0357143,81.78571429 +9834,163.9166667,1413,458,,252.3214286,81.78571429 +9835,163.9333333,1436,457,,256.4285714,81.60714286 +9836,163.95,1459,456,,260.5357143,81.42857143 +9837,163.9666667,1483,456,,264.8214286,81.42857143 +9838,163.9833333,1505,455,,268.75,81.25 +9839,164,1527,454,,272.6785714,81.07142857 +9840,164.0166667,1549,453,,276.6071429,80.89285714 +9841,164.0333333,1569,452,,280.1785714,80.71428571 +9842,164.05,1589,450,,283.75,80.35714286 +9843,164.0666667,1608,449,,287.1428571,80.17857143 +9844,164.0833333,1626,448,,290.3571429,80 +9845,164.1,1642,446,,293.2142857,79.64285714 +9846,164.1166667,1658,445,,296.0714286,79.46428571 +9847,164.1333333,1672,444,,298.5714286,79.28571429 +9848,164.15,1685,443,,300.8928571,79.10714286 +9849,164.1666667,1696,441,,302.8571429,78.75 +9850,164.1833333,1706,441,,304.6428571,78.75 +9851,164.2,1715,440,,306.25,78.57142857 +9852,164.2166667,1722,439,,307.5,78.39285714 +9853,164.2333333,1727,438,,308.3928571,78.21428571 +9854,164.25,1731,438,,309.1071429,78.21428571 +9855,164.2666667,1732,438,,309.2857143,78.21428571 +9856,164.2833333,1732,438,,309.2857143,78.21428571 +9857,164.3,1732,438,,309.2857143,78.21428571 +9858,164.3166667,1729,438,,308.75,78.21428571 +9859,164.3333333,1724,439,,307.8571429,78.39285714 +9860,164.35,1719,440,,306.9642857,78.57142857 +9861,164.3666667,1711,441,,305.5357143,78.75 +9862,164.3833333,1702,442,,303.9285714,78.92857143 +9863,164.4,1691,443,,301.9642857,79.10714286 +9864,164.4166667,1679,444,,299.8214286,79.28571429 +9865,164.4333333,1666,446,,297.5,79.64285714 +9866,164.45,1651,447,,294.8214286,79.82142857 +9867,164.4666667,1635,448,,291.9642857,80 +9868,164.4833333,1618,450,,288.9285714,80.35714286 +9869,164.5,1600,451,,285.7142857,80.53571429 +9870,164.5166667,1581,452,,282.3214286,80.71428571 +9871,164.5333333,1561,454,,278.75,81.07142857 +9872,164.55,1540,455,,275,81.25 +9873,164.5666667,1519,456,,271.25,81.42857143 +9874,164.5833333,1497,457,,267.3214286,81.60714286 +9875,164.6,1475,458,,263.3928571,81.78571429 +9876,164.6166667,1453,458,,259.4642857,81.78571429 +9877,164.6333333,1430,459,,255.3571429,81.96428571 +9878,164.65,1406,459,,251.0714286,81.96428571 +9879,164.6666667,1383,459,,246.9642857,81.96428571 +9880,164.6833333,1360,459,,242.8571429,81.96428571 +9881,164.7,1337,459,,238.75,81.96428571 +9882,164.7166667,1315,459,,234.8214286,81.96428571 +9883,164.7333333,1293,459,,230.8928571,81.96428571 +9884,164.75,1271,458,,226.9642857,81.78571429 +9885,164.7666667,1250,457,,223.2142857,81.60714286 +9886,164.7833333,1230,456,,219.6428571,81.42857143 +9887,164.8,1211,455,,216.25,81.25 +9888,164.8166667,1192,454,,212.8571429,81.07142857 +9889,164.8333333,1175,453,,209.8214286,80.89285714 +9890,164.85,1159,452,,206.9642857,80.71428571 +9891,164.8666667,1144,451,,204.2857143,80.53571429 +9892,164.8833333,1130,450,,201.7857143,80.35714286 +9893,164.9,1117,449,,199.4642857,80.17857143 +9894,164.9166667,1106,448,,197.5,80 +9895,164.9333333,1097,447,,195.8928571,79.82142857 +9896,164.95,1089,447,,194.4642857,79.82142857 +9897,164.9666667,1082,446,,193.2142857,79.64285714 +9898,164.9833333,1077,445,,192.3214286,79.46428571 +9899,165,1074,445,,191.7857143,79.46428571 +9900,165.0166667,1073,445,,191.6071429,79.46428571 +9901,165.0333333,1073,445,,191.6071429,79.46428571 +9902,165.05,1073,445,,191.6071429,79.46428571 +9903,165.0666667,1076,445,,192.1428571,79.46428571 +9904,165.0833333,1081,445,,193.0357143,79.46428571 +9905,165.1,1087,445,,194.1071429,79.46428571 +9906,165.1166667,1095,446,,195.5357143,79.64285714 +9907,165.1333333,1104,447,,197.1428571,79.82142857 +9908,165.15,1115,448,,199.1071429,80 +9909,165.1666667,1127,449,,201.25,80.17857143 +9910,165.1833333,1141,450,,203.75,80.35714286 +9911,165.2,1156,451,,206.4285714,80.53571429 +9912,165.2166667,1172,452,,209.2857143,80.71428571 +9913,165.2333333,1189,453,,212.3214286,80.89285714 +9914,165.25,1207,453,,215.5357143,80.89285714 +9915,165.2666667,1226,455,,218.9285714,81.25 +9916,165.2833333,1246,456,,222.5,81.42857143 +9917,165.3,1267,456,,226.25,81.42857143 +9918,165.3166667,1289,457,,230.1785714,81.60714286 +9919,165.3333333,1311,457,,234.1071429,81.60714286 +9920,165.35,1334,457,,238.2142857,81.60714286 +9921,165.3666667,1356,457,,242.1428571,81.60714286 +9922,165.3833333,1380,457,,246.4285714,81.60714286 +9923,165.4,1403,457,,250.5357143,81.60714286 +9924,165.4166667,1426,457,,254.6428571,81.60714286 +9925,165.4333333,1450,457,,258.9285714,81.60714286 +9926,165.45,1472,456,,262.8571429,81.42857143 +9927,165.4666667,1495,455,,266.9642857,81.25 +9928,165.4833333,1517,455,,270.8928571,81.25 +9929,165.5,1539,453,,274.8214286,80.89285714 +9930,165.5166667,1559,452,,278.3928571,80.71428571 +9931,165.5333333,1579,451,,281.9642857,80.53571429 +9932,165.55,1599,450,,285.5357143,80.35714286 +9933,165.5666667,1617,449,,288.75,80.17857143 +9934,165.5833333,1634,447,,291.7857143,79.82142857 +9935,165.6,1650,446,,294.6428571,79.64285714 +9936,165.6166667,1665,445,,297.3214286,79.46428571 +9937,165.6333333,1678,444,,299.6428571,79.28571429 +9938,165.65,1691,443,,301.9642857,79.10714286 +9939,165.6666667,1701,442,,303.75,78.92857143 +9940,165.6833333,1710,441,,305.3571429,78.75 +9941,165.7,1718,440,,306.7857143,78.57142857 +9942,165.7166667,1724,440,,307.8571429,78.57142857 +9943,165.7333333,1728,439,,308.5714286,78.39285714 +9944,165.75,1731,439,,309.1071429,78.39285714 +9945,165.7666667,1731,439,,309.1071429,78.39285714 +9946,165.7833333,1731,439,,309.1071429,78.39285714 +9947,165.8,1730,439,,308.9285714,78.39285714 +9948,165.8166667,1726,440,,308.2142857,78.57142857 +9949,165.8333333,1721,440,,307.3214286,78.57142857 +9950,165.85,1714,441,,306.0714286,78.75 +9951,165.8666667,1706,442,,304.6428571,78.92857143 +9952,165.8833333,1696,443,,302.8571429,79.10714286 +9953,165.9,1685,444,,300.8928571,79.28571429 +9954,165.9166667,1673,445,,298.75,79.46428571 +9955,165.9333333,1658,447,,296.0714286,79.82142857 +9956,165.95,1643,448,,293.3928571,80 +9957,165.9666667,1627,450,,290.5357143,80.35714286 +9958,165.9833333,1609,451,,287.3214286,80.53571429 +9959,166,1591,452,,284.1071429,80.71428571 +9960,166.0166667,1572,454,,280.7142857,81.07142857 +9961,166.0333333,1552,455,,277.1428571,81.25 +9962,166.05,1531,456,,273.3928571,81.42857143 +9963,166.0666667,1509,457,,269.4642857,81.60714286 +9964,166.0833333,1487,458,,265.5357143,81.78571429 +9965,166.1,1464,459,,261.4285714,81.96428571 +9966,166.1166667,1442,459,,257.5,81.96428571 +9967,166.1333333,1418,460,,253.2142857,82.14285714 +9968,166.15,1396,460,,249.2857143,82.14285714 +9969,166.1666667,1373,460,,245.1785714,82.14285714 +9970,166.1833333,1350,460,,241.0714286,82.14285714 +9971,166.2,1327,460,,236.9642857,82.14285714 +9972,166.2166667,1305,460,,233.0357143,82.14285714 +9973,166.2333333,1283,459,,229.1071429,81.96428571 +9974,166.25,1262,458,,225.3571429,81.78571429 +9975,166.2666667,1242,457,,221.7857143,81.60714286 +9976,166.2833333,1222,456,,218.2142857,81.42857143 +9977,166.3,1203,455,,214.8214286,81.25 +9978,166.3166667,1185,454,,211.6071429,81.07142857 +9979,166.3333333,1169,453,,208.75,80.89285714 +9980,166.35,1154,452,,206.0714286,80.71428571 +9981,166.3666667,1139,451,,203.3928571,80.53571429 +9982,166.3833333,1126,450,,201.0714286,80.35714286 +9983,166.4,1114,449,,198.9285714,80.17857143 +9984,166.4166667,1104,448,,197.1428571,80 +9985,166.4333333,1095,448,,195.5357143,80 +9986,166.45,1088,447,,194.2857143,79.82142857 +9987,166.4666667,1082,446,,193.2142857,79.64285714 +9988,166.4833333,1078,446,,192.5,79.64285714 +9989,166.5,1075,445,,191.9642857,79.46428571 +9990,166.5166667,1075,445,,191.9642857,79.46428571 +9991,166.5333333,1075,445,,191.9642857,79.46428571 +9992,166.55,1077,445,,192.3214286,79.46428571 +9993,166.5666667,1081,446,,193.0357143,79.64285714 +9994,166.5833333,1086,446,,193.9285714,79.64285714 +9995,166.6,1093,447,,195.1785714,79.82142857 +9996,166.6166667,1102,448,,196.7857143,80 +9997,166.6333333,1112,448,,198.5714286,80 +9998,166.65,1123,449,,200.5357143,80.17857143 +9999,166.6666667,1136,450,,202.8571429,80.35714286 +10000,166.6833333,1150,451,,205.3571429,80.53571429 +10001,166.7,1166,452,,208.2142857,80.71428571 +10002,166.7166667,1182,453,,211.0714286,80.89285714 +10003,166.7333333,1199,454,,214.1071429,81.07142857 +10004,166.75,1218,455,,217.5,81.25 +10005,166.7666667,1238,456,,221.0714286,81.42857143 +10006,166.7833333,1258,457,,224.6428571,81.60714286 +10007,166.8,1279,458,,228.3928571,81.78571429 +10008,166.8166667,1301,458,,232.3214286,81.78571429 +10009,166.8333333,1322,459,,236.0714286,81.96428571 +10010,166.85,1345,459,,240.1785714,81.96428571 +10011,166.8666667,1368,459,,244.2857143,81.96428571 +10012,166.8833333,1391,459,,248.3928571,81.96428571 +10013,166.9,1414,458,,252.5,81.78571429 +10014,166.9166667,1438,458,,256.7857143,81.78571429 +10015,166.9333333,1460,458,,260.7142857,81.78571429 +10016,166.95,1483,457,,264.8214286,81.60714286 +10017,166.9666667,1505,456,,268.75,81.42857143 +10018,166.9833333,1527,455,,272.6785714,81.25 +10019,167,1548,454,,276.4285714,81.07142857 +10020,167.0166667,1569,453,,280.1785714,80.89285714 +10021,167.0333333,1588,452,,283.5714286,80.71428571 +10022,167.05,1607,451,,286.9642857,80.53571429 +10023,167.0666667,1624,449,,290,80.17857143 +10024,167.0833333,1641,447,,293.0357143,79.82142857 +10025,167.1,1656,446,,295.7142857,79.64285714 +10026,167.1166667,1670,445,,298.2142857,79.46428571 +10027,167.1333333,1683,444,,300.5357143,79.28571429 +10028,167.15,1694,443,,302.5,79.10714286 +10029,167.1666667,1704,442,,304.2857143,78.92857143 +10030,167.1833333,1712,441,,305.7142857,78.75 +10031,167.2,1719,440,,306.9642857,78.57142857 +10032,167.2166667,1724,440,,307.8571429,78.57142857 +10033,167.2333333,1728,440,,308.5714286,78.57142857 +10034,167.25,1729,440,,308.75,78.57142857 +10035,167.2666667,1729,440,,308.75,78.57142857 +10036,167.2833333,1729,440,,308.75,78.57142857 +10037,167.3,1726,440,,308.2142857,78.57142857 +10038,167.3166667,1722,441,,307.5,78.75 +10039,167.3333333,1716,442,,306.4285714,78.92857143 +10040,167.35,1708,443,,305,79.10714286 +10041,167.3666667,1700,444,,303.5714286,79.28571429 +10042,167.3833333,1689,445,,301.6071429,79.46428571 +10043,167.4,1677,446,,299.4642857,79.64285714 +10044,167.4166667,1664,447,,297.1428571,79.82142857 +10045,167.4333333,1649,449,,294.4642857,80.17857143 +10046,167.45,1633,450,,291.6071429,80.35714286 +10047,167.4666667,1616,451,,288.5714286,80.53571429 +10048,167.4833333,1598,453,,285.3571429,80.89285714 +10049,167.5,1580,454,,282.1428571,81.07142857 +10050,167.5166667,1560,455,,278.5714286,81.25 +10051,167.5333333,1539,456,,274.8214286,81.42857143 +10052,167.55,1518,458,,271.0714286,81.78571429 +10053,167.5666667,1496,458,,267.1428571,81.78571429 +10054,167.5833333,1474,459,,263.2142857,81.96428571 +10055,167.6,1451,460,,259.1071429,82.14285714 +10056,167.6166667,1429,461,,255.1785714,82.32142857 +10057,167.6333333,1406,461,,251.0714286,82.32142857 +10058,167.65,1383,461,,246.9642857,82.32142857 +10059,167.6666667,1360,461,,242.8571429,82.32142857 +10060,167.6833333,1337,461,,238.75,82.32142857 +10061,167.7,1315,461,,234.8214286,82.32142857 +10062,167.7166667,1293,460,,230.8928571,82.14285714 +10063,167.7333333,1272,459,,227.1428571,81.96428571 +10064,167.75,1251,458,,223.3928571,81.78571429 +10065,167.7666667,1231,457,,219.8214286,81.60714286 +10066,167.7833333,1212,456,,216.4285714,81.42857143 +10067,167.8,1193,455,,213.0357143,81.25 +10068,167.8166667,1176,454,,210,81.07142857 +10069,167.8333333,1160,453,,207.1428571,80.89285714 +10070,167.85,1145,452,,204.4642857,80.71428571 +10071,167.8666667,1131,451,,201.9642857,80.53571429 +10072,167.8833333,1119,450,,199.8214286,80.35714286 +10073,167.9,1108,449,,197.8571429,80.17857143 +10074,167.9166667,1098,448,,196.0714286,80 +10075,167.9333333,1090,447,,194.6428571,79.82142857 +10076,167.95,1084,446,,193.5714286,79.64285714 +10077,167.9666667,1079,446,,192.6785714,79.64285714 +10078,167.9833333,1075,445,,191.9642857,79.46428571 +10079,168,1075,445,,191.9642857,79.46428571 +10080,168.0166667,1075,445,,191.9642857,79.46428571 +10081,168.0333333,1075,445,,191.9642857,79.46428571 +10082,168.05,1078,445,,192.5,79.46428571 +10083,168.0666667,1082,446,,193.2142857,79.64285714 +10084,168.0833333,1088,446,,194.2857143,79.64285714 +10085,168.1,1096,447,,195.7142857,79.82142857 +10086,168.1166667,1106,447,,197.5,79.82142857 +10087,168.1333333,1116,448,,199.2857143,80 +10088,168.15,1128,449,,201.4285714,80.17857143 +10089,168.1666667,1142,450,,203.9285714,80.35714286 +10090,168.1833333,1156,451,,206.4285714,80.53571429 +10091,168.2,1172,452,,209.2857143,80.71428571 +10092,168.2166667,1189,453,,212.3214286,80.89285714 +10093,168.2333333,1207,454,,215.5357143,81.07142857 +10094,168.25,1226,455,,218.9285714,81.25 +10095,168.2666667,1246,456,,222.5,81.42857143 +10096,168.2833333,1267,457,,226.25,81.60714286 +10097,168.3,1288,458,,230,81.78571429 +10098,168.3166667,1311,458,,234.1071429,81.78571429 +10099,168.3333333,1333,458,,238.0357143,81.78571429 +10100,168.35,1355,458,,241.9642857,81.78571429 +10101,168.3666667,1378,458,,246.0714286,81.78571429 +10102,168.3833333,1401,458,,250.1785714,81.78571429 +10103,168.4,1425,458,,254.4642857,81.78571429 +10104,168.4166667,1448,457,,258.5714286,81.60714286 +10105,168.4333333,1470,456,,262.5,81.42857143 +10106,168.45,1493,456,,266.6071429,81.42857143 +10107,168.4666667,1515,455,,270.5357143,81.25 +10108,168.4833333,1536,454,,274.2857143,81.07142857 +10109,168.5,1557,453,,278.0357143,80.89285714 +10110,168.5166667,1577,452,,281.6071429,80.71428571 +10111,168.5333333,1596,450,,285,80.35714286 +10112,168.55,1614,449,,288.2142857,80.17857143 +10113,168.5666667,1631,448,,291.25,80 +10114,168.5833333,1647,447,,294.1071429,79.82142857 +10115,168.6,1661,445,,296.6071429,79.46428571 +10116,168.6166667,1674,444,,298.9285714,79.28571429 +10117,168.6333333,1687,443,,301.25,79.10714286 +10118,168.65,1697,442,,303.0357143,78.92857143 +10119,168.6666667,1706,441,,304.6428571,78.75 +10120,168.6833333,1714,440,,306.0714286,78.57142857 +10121,168.7,1720,440,,307.1428571,78.57142857 +10122,168.7166667,1725,439,,308.0357143,78.39285714 +10123,168.7333333,1728,439,,308.5714286,78.39285714 +10124,168.75,1728,439,,308.5714286,78.39285714 +10125,168.7666667,1728,439,,308.5714286,78.39285714 +10126,168.7833333,1727,440,,308.3928571,78.57142857 +10127,168.8,1723,440,,307.6785714,78.57142857 +10128,168.8166667,1718,441,,306.7857143,78.75 +10129,168.8333333,1711,441,,305.5357143,78.75 +10130,168.85,1703,442,,304.1071429,78.92857143 +10131,168.8666667,1693,443,,302.3214286,79.10714286 +10132,168.8833333,1682,445,,300.3571429,79.46428571 +10133,168.9,1670,446,,298.2142857,79.64285714 +10134,168.9166667,1656,447,,295.7142857,79.82142857 +10135,168.9333333,1641,448,,293.0357143,80 +10136,168.95,1625,450,,290.1785714,80.35714286 +10137,168.9666667,1607,451,,286.9642857,80.53571429 +10138,168.9833333,1589,452,,283.75,80.71428571 +10139,169,1570,454,,280.3571429,81.07142857 +10140,169.0166667,1550,455,,276.7857143,81.25 +10141,169.0333333,1529,456,,273.0357143,81.42857143 +10142,169.05,1508,457,,269.2857143,81.60714286 +10143,169.0666667,1486,457,,265.3571429,81.60714286 +10144,169.0833333,1464,458,,261.4285714,81.78571429 +10145,169.1,1441,459,,257.3214286,81.96428571 +10146,169.1166667,1418,460,,253.2142857,82.14285714 +10147,169.1333333,1395,460,,249.1071429,82.14285714 +10148,169.15,1372,460,,245,82.14285714 +10149,169.1666667,1350,460,,241.0714286,82.14285714 +10150,169.1833333,1327,460,,236.9642857,82.14285714 +10151,169.2,1305,459,,233.0357143,81.96428571 +10152,169.2166667,1283,459,,229.1071429,81.96428571 +10153,169.2333333,1263,458,,225.5357143,81.78571429 +10154,169.25,1243,457,,221.9642857,81.60714286 +10155,169.2666667,1223,456,,218.3928571,81.42857143 +10156,169.2833333,1204,455,,215,81.25 +10157,169.3,1187,454,,211.9642857,81.07142857 +10158,169.3166667,1170,453,,208.9285714,80.89285714 +10159,169.3333333,1154,452,,206.0714286,80.71428571 +10160,169.35,1140,451,,203.5714286,80.53571429 +10161,169.3666667,1127,450,,201.25,80.35714286 +10162,169.3833333,1115,449,,199.1071429,80.17857143 +10163,169.4,1105,448,,197.3214286,80 +10164,169.4166667,1096,447,,195.7142857,79.82142857 +10165,169.4333333,1089,446,,194.4642857,79.64285714 +10166,169.45,1083,446,,193.3928571,79.64285714 +10167,169.4666667,1079,445,,192.6785714,79.46428571 +10168,169.4833333,1077,445,,192.3214286,79.46428571 +10169,169.5,1077,445,,192.3214286,79.46428571 +10170,169.5166667,1077,445,,192.3214286,79.46428571 +10171,169.5333333,1078,445,,192.5,79.46428571 +10172,169.55,1082,445,,193.2142857,79.46428571 +10173,169.5666667,1088,446,,194.2857143,79.64285714 +10174,169.5833333,1095,446,,195.5357143,79.64285714 +10175,169.6,1103,447,,196.9642857,79.82142857 +10176,169.6166667,1113,447,,198.75,79.82142857 +10177,169.6333333,1124,448,,200.7142857,80 +10178,169.65,1137,449,,203.0357143,80.17857143 +10179,169.6666667,1151,450,,205.5357143,80.35714286 +10180,169.6833333,1166,451,,208.2142857,80.53571429 +10181,169.7,1182,452,,211.0714286,80.71428571 +10182,169.7166667,1200,453,,214.2857143,80.89285714 +10183,169.7333333,1218,454,,217.5,81.07142857 +10184,169.75,1238,455,,221.0714286,81.25 +10185,169.7666667,1258,456,,224.6428571,81.42857143 +10186,169.7833333,1279,456,,228.3928571,81.42857143 +10187,169.8,1301,457,,232.3214286,81.60714286 +10188,169.8166667,1323,458,,236.25,81.78571429 +10189,169.8333333,1345,458,,240.1785714,81.78571429 +10190,169.85,1367,458,,244.1071429,81.78571429 +10191,169.8666667,1390,457,,248.2142857,81.60714286 +10192,169.8833333,1413,457,,252.3214286,81.60714286 +10193,169.9,1436,456,,256.4285714,81.42857143 +10194,169.9166667,1459,456,,260.5357143,81.42857143 +10195,169.9333333,1481,455,,264.4642857,81.25 +10196,169.95,1504,455,,268.5714286,81.25 +10197,169.9666667,1525,454,,272.3214286,81.07142857 +10198,169.9833333,1546,453,,276.0714286,80.89285714 +10199,170,1566,452,,279.6428571,80.71428571 +10200,170.0166667,1586,451,,283.2142857,80.53571429 +10201,170.0333333,1604,449,,286.4285714,80.17857143 +10202,170.05,1622,448,,289.6428571,80 +10203,170.0666667,1638,447,,292.5,79.82142857 +10204,170.0833333,1653,446,,295.1785714,79.64285714 +10205,170.1,1667,444,,297.6785714,79.28571429 +10206,170.1166667,1680,444,,300,79.28571429 +10207,170.1333333,1691,442,,301.9642857,78.92857143 +10208,170.15,1701,441,,303.75,78.75 +10209,170.1666667,1709,441,,305.1785714,78.75 +10210,170.1833333,1716,440,,306.4285714,78.57142857 +10211,170.2,1721,440,,307.3214286,78.57142857 +10212,170.2166667,1725,439,,308.0357143,78.39285714 +10213,170.2333333,1727,439,,308.3928571,78.39285714 +10214,170.25,1727,439,,308.3928571,78.39285714 +10215,170.2666667,1727,439,,308.3928571,78.39285714 +10216,170.2833333,1724,440,,307.8571429,78.57142857 +10217,170.3,1719,440,,306.9642857,78.57142857 +10218,170.3166667,1714,441,,306.0714286,78.75 +10219,170.3333333,1706,442,,304.6428571,78.92857143 +10220,170.35,1697,443,,303.0357143,79.10714286 +10221,170.3666667,1687,444,,301.25,79.28571429 +10222,170.3833333,1675,445,,299.1071429,79.46428571 +10223,170.4,1662,446,,296.7857143,79.64285714 +10224,170.4166667,1648,448,,294.2857143,80 +10225,170.4333333,1632,449,,291.4285714,80.17857143 +10226,170.45,1615,450,,288.3928571,80.35714286 +10227,170.4666667,1598,452,,285.3571429,80.71428571 +10228,170.4833333,1579,453,,281.9642857,80.89285714 +10229,170.5,1559,454,,278.3928571,81.07142857 +10230,170.5166667,1539,455,,274.8214286,81.25 +10231,170.5333333,1518,456,,271.0714286,81.42857143 +10232,170.55,1496,457,,267.1428571,81.60714286 +10233,170.5666667,1474,458,,263.2142857,81.78571429 +10234,170.5833333,1452,459,,259.2857143,81.96428571 +10235,170.6,1429,459,,255.1785714,81.96428571 +10236,170.6166667,1406,460,,251.0714286,82.14285714 +10237,170.6333333,1383,460,,246.9642857,82.14285714 +10238,170.65,1360,460,,242.8571429,82.14285714 +10239,170.6666667,1338,460,,238.9285714,82.14285714 +10240,170.6833333,1317,460,,235.1785714,82.14285714 +10241,170.7,1294,459,,231.0714286,81.96428571 +10242,170.7166667,1273,458,,227.3214286,81.78571429 +10243,170.7333333,1253,457,,223.75,81.60714286 +10244,170.75,1232,456,,220,81.42857143 +10245,170.7666667,1213,455,,216.6071429,81.25 +10246,170.7833333,1195,455,,213.3928571,81.25 +10247,170.8,1178,454,,210.3571429,81.07142857 +10248,170.8166667,1162,452,,207.5,80.71428571 +10249,170.8333333,1147,451,,204.8214286,80.53571429 +10250,170.85,1134,450,,202.5,80.35714286 +10251,170.8666667,1121,449,,200.1785714,80.17857143 +10252,170.8833333,1111,448,,198.3928571,80 +10253,170.9,1101,447,,196.6071429,79.82142857 +10254,170.9166667,1093,446,,195.1785714,79.64285714 +10255,170.9333333,1086,446,,193.9285714,79.64285714 +10256,170.95,1081,445,,193.0357143,79.46428571 +10257,170.9666667,1078,445,,192.5,79.46428571 +10258,170.9833333,1077,444,,192.3214286,79.28571429 +10259,171,1077,444,,192.3214286,79.28571429 +10260,171.0166667,1077,444,,192.3214286,79.28571429 +10261,171.0333333,1080,445,,192.8571429,79.46428571 +10262,171.05,1084,445,,193.5714286,79.46428571 +10263,171.0666667,1090,446,,194.6428571,79.64285714 +10264,171.0833333,1097,446,,195.8928571,79.64285714 +10265,171.1,1106,447,,197.5,79.82142857 +10266,171.1166667,1117,447,,199.4642857,79.82142857 +10267,171.1333333,1129,449,,201.6071429,80.17857143 +10268,171.15,1142,449,,203.9285714,80.17857143 +10269,171.1666667,1157,450,,206.6071429,80.35714286 +10270,171.1833333,1173,451,,209.4642857,80.53571429 +10271,171.2,1189,452,,212.3214286,80.71428571 +10272,171.2166667,1207,453,,215.5357143,80.89285714 +10273,171.2333333,1226,454,,218.9285714,81.07142857 +10274,171.25,1246,455,,222.5,81.25 +10275,171.2666667,1266,456,,226.0714286,81.42857143 +10276,171.2833333,1287,457,,229.8214286,81.60714286 +10277,171.3,1309,457,,233.75,81.60714286 +10278,171.3166667,1331,458,,237.6785714,81.78571429 +10279,171.3333333,1353,458,,241.6071429,81.78571429 +10280,171.35,1376,458,,245.7142857,81.78571429 +10281,171.3666667,1399,458,,249.8214286,81.78571429 +10282,171.3833333,1422,458,,253.9285714,81.78571429 +10283,171.4,1445,457,,258.0357143,81.60714286 +10284,171.4166667,1468,457,,262.1428571,81.60714286 +10285,171.4333333,1490,456,,266.0714286,81.42857143 +10286,171.45,1512,455,,270,81.25 +10287,171.4666667,1534,454,,273.9285714,81.07142857 +10288,171.4833333,1554,453,,277.5,80.89285714 +10289,171.5,1575,452,,281.25,80.71428571 +10290,171.5166667,1594,450,,284.6428571,80.35714286 +10291,171.5333333,1612,449,,287.8571429,80.17857143 +10292,171.55,1629,448,,290.8928571,80 +10293,171.5666667,1645,446,,293.75,79.64285714 +10294,171.5833333,1659,445,,296.25,79.46428571 +10295,171.6,1673,444,,298.75,79.28571429 +10296,171.6166667,1685,443,,300.8928571,79.10714286 +10297,171.6333333,1695,442,,302.6785714,78.92857143 +10298,171.65,1704,441,,304.2857143,78.75 +10299,171.6666667,1712,440,,305.7142857,78.57142857 +10300,171.6833333,1718,440,,306.7857143,78.57142857 +10301,171.7,1723,440,,307.6785714,78.57142857 +10302,171.7166667,1726,440,,308.2142857,78.57142857 +10303,171.7333333,1726,440,,308.2142857,78.57142857 +10304,171.75,1726,440,,308.2142857,78.57142857 +10305,171.7666667,1725,440,,308.0357143,78.57142857 +10306,171.7833333,1721,440,,307.3214286,78.57142857 +10307,171.8,1716,441,,306.4285714,78.75 +10308,171.8166667,1710,441,,305.3571429,78.75 +10309,171.8333333,1702,442,,303.9285714,78.92857143 +10310,171.85,1692,443,,302.1428571,79.10714286 +10311,171.8666667,1681,445,,300.1785714,79.46428571 +10312,171.8833333,1669,446,,298.0357143,79.64285714 +10313,171.9,1655,447,,295.5357143,79.82142857 +10314,171.9166667,1640,448,,292.8571429,80 +10315,171.9333333,1624,450,,290,80.35714286 +10316,171.95,1607,451,,286.9642857,80.53571429 +10317,171.9666667,1589,452,,283.75,80.71428571 +10318,171.9833333,1569,454,,280.1785714,81.07142857 +10319,172,1549,455,,276.6071429,81.25 +10320,172.0166667,1529,456,,273.0357143,81.42857143 +10321,172.0333333,1508,457,,269.2857143,81.60714286 +10322,172.05,1486,458,,265.3571429,81.78571429 +10323,172.0666667,1464,458,,261.4285714,81.78571429 +10324,172.0833333,1441,459,,257.3214286,81.96428571 +10325,172.1,1419,460,,253.3928571,82.14285714 +10326,172.1166667,1396,460,,249.2857143,82.14285714 +10327,172.1333333,1373,460,,245.1785714,82.14285714 +10328,172.15,1351,460,,241.25,82.14285714 +10329,172.1666667,1329,460,,237.3214286,82.14285714 +10330,172.1833333,1306,459,,233.2142857,81.96428571 +10331,172.2,1285,459,,229.4642857,81.96428571 +10332,172.2166667,1264,458,,225.7142857,81.78571429 +10333,172.2333333,1244,457,,222.1428571,81.60714286 +10334,172.25,1224,456,,218.5714286,81.42857143 +10335,172.2666667,1205,455,,215.1785714,81.25 +10336,172.2833333,1188,454,,212.1428571,81.07142857 +10337,172.3,1171,453,,209.1071429,80.89285714 +10338,172.3166667,1156,452,,206.4285714,80.71428571 +10339,172.3333333,1142,451,,203.9285714,80.53571429 +10340,172.35,1128,450,,201.4285714,80.35714286 +10341,172.3666667,1117,449,,199.4642857,80.17857143 +10342,172.3833333,1106,448,,197.5,80 +10343,172.4,1098,447,,196.0714286,79.82142857 +10344,172.4166667,1090,447,,194.6428571,79.82142857 +10345,172.4333333,1085,446,,193.75,79.64285714 +10346,172.45,1080,445,,192.8571429,79.46428571 +10347,172.4666667,1078,445,,192.5,79.46428571 +10348,172.4833333,1078,445,,192.5,79.46428571 +10349,172.5,1078,445,,192.5,79.46428571 +10350,172.5166667,1079,445,,192.6785714,79.46428571 +10351,172.5333333,1083,445,,193.3928571,79.46428571 +10352,172.55,1088,446,,194.2857143,79.64285714 +10353,172.5666667,1095,446,,195.5357143,79.64285714 +10354,172.5833333,1103,447,,196.9642857,79.82142857 +10355,172.6,1113,448,,198.75,80 +10356,172.6166667,1124,449,,200.7142857,80.17857143 +10357,172.6333333,1137,449,,203.0357143,80.17857143 +10358,172.65,1151,450,,205.5357143,80.35714286 +10359,172.6666667,1166,451,,208.2142857,80.53571429 +10360,172.6833333,1182,453,,211.0714286,80.89285714 +10361,172.7,1200,453,,214.2857143,80.89285714 +10362,172.7166667,1218,454,,217.5,81.07142857 +10363,172.7333333,1238,455,,221.0714286,81.25 +10364,172.75,1258,456,,224.6428571,81.42857143 +10365,172.7666667,1279,457,,228.3928571,81.60714286 +10366,172.7833333,1300,457,,232.1428571,81.60714286 +10367,172.8,1322,458,,236.0714286,81.78571429 +10368,172.8166667,1344,458,,240,81.78571429 +10369,172.8333333,1367,458,,244.1071429,81.78571429 +10370,172.85,1390,458,,248.2142857,81.78571429 +10371,172.8666667,1413,458,,252.3214286,81.78571429 +10372,172.8833333,1436,457,,256.4285714,81.60714286 +10373,172.9,1458,457,,260.3571429,81.60714286 +10374,172.9166667,1481,457,,264.4642857,81.60714286 +10375,172.9333333,1503,456,,268.3928571,81.42857143 +10376,172.95,1525,455,,272.3214286,81.25 +10377,172.9666667,1546,454,,276.0714286,81.07142857 +10378,172.9833333,1566,453,,279.6428571,80.89285714 +10379,173,1585,451,,283.0357143,80.53571429 +10380,173.0166667,1604,450,,286.4285714,80.35714286 +10381,173.0333333,1621,449,,289.4642857,80.17857143 +10382,173.05,1638,448,,292.5,80 +10383,173.0666667,1653,447,,295.1785714,79.82142857 +10384,173.0833333,1667,445,,297.6785714,79.46428571 +10385,173.1,1679,444,,299.8214286,79.28571429 +10386,173.1166667,1691,443,,301.9642857,79.10714286 +10387,173.1333333,1700,442,,303.5714286,78.92857143 +10388,173.15,1709,442,,305.1785714,78.92857143 +10389,173.1666667,1716,441,,306.4285714,78.75 +10390,173.1833333,1721,441,,307.3214286,78.75 +10391,173.2,1725,441,,308.0357143,78.75 +10392,173.2166667,1727,440,,308.3928571,78.57142857 +10393,173.2333333,1727,440,,308.3928571,78.57142857 +10394,173.25,1727,440,,308.3928571,78.57142857 +10395,173.2666667,1724,441,,307.8571429,78.75 +10396,173.2833333,1720,441,,307.1428571,78.75 +10397,173.3,1714,442,,306.0714286,78.92857143 +10398,173.3166667,1706,443,,304.6428571,79.10714286 +10399,173.3333333,1698,444,,303.2142857,79.28571429 +10400,173.35,1687,445,,301.25,79.46428571 +10401,173.3666667,1676,446,,299.2857143,79.64285714 +10402,173.3833333,1663,448,,296.9642857,80 +10403,173.4,1648,449,,294.2857143,80.17857143 +10404,173.4166667,1633,450,,291.6071429,80.35714286 +10405,173.4333333,1617,452,,288.75,80.71428571 +10406,173.45,1599,453,,285.5357143,80.89285714 +10407,173.4666667,1580,454,,282.1428571,81.07142857 +10408,173.4833333,1561,455,,278.75,81.25 +10409,173.5,1541,456,,275.1785714,81.42857143 +10410,173.5166667,1520,458,,271.4285714,81.78571429 +10411,173.5333333,1498,459,,267.5,81.96428571 +10412,173.55,1476,459,,263.5714286,81.96428571 +10413,173.5666667,1454,460,,259.6428571,82.14285714 +10414,173.5833333,1432,460,,255.7142857,82.14285714 +10415,173.6,1409,461,,251.6071429,82.32142857 +10416,173.6166667,1386,461,,247.5,82.32142857 +10417,173.6333333,1363,461,,243.3928571,82.32142857 +10418,173.65,1341,461,,239.4642857,82.32142857 +10419,173.6666667,1319,461,,235.5357143,82.32142857 +10420,173.6833333,1297,461,,231.6071429,82.32142857 +10421,173.7,1276,460,,227.8571429,82.14285714 +10422,173.7166667,1255,459,,224.1071429,81.96428571 +10423,173.7333333,1236,458,,220.7142857,81.78571429 +10424,173.75,1217,457,,217.3214286,81.60714286 +10425,173.7666667,1198,456,,213.9285714,81.42857143 +10426,173.7833333,1181,455,,210.8928571,81.25 +10427,173.8,1165,454,,208.0357143,81.07142857 +10428,173.8166667,1151,453,,205.5357143,80.89285714 +10429,173.8333333,1137,452,,203.0357143,80.71428571 +10430,173.85,1124,451,,200.7142857,80.53571429 +10431,173.8666667,1113,450,,198.75,80.35714286 +10432,173.8833333,1104,449,,197.1428571,80.17857143 +10433,173.9,1096,448,,195.7142857,80 +10434,173.9166667,1089,447,,194.4642857,79.82142857 +10435,173.9333333,1084,447,,193.5714286,79.82142857 +10436,173.95,1081,447,,193.0357143,79.82142857 +10437,173.9666667,1079,446,,192.6785714,79.64285714 +10438,173.9833333,1079,446,,192.6785714,79.64285714 +10439,174,1079,446,,192.6785714,79.64285714 +10440,174.0166667,1082,446,,193.2142857,79.64285714 +10441,174.0333333,1087,446,,194.1071429,79.64285714 +10442,174.05,1093,447,,195.1785714,79.82142857 +10443,174.0666667,1100,448,,196.4285714,80 +10444,174.0833333,1109,449,,198.0357143,80.17857143 +10445,174.1,1120,449,,200,80.17857143 +10446,174.1166667,1131,450,,201.9642857,80.35714286 +10447,174.1333333,1144,451,,204.2857143,80.53571429 +10448,174.15,1159,452,,206.9642857,80.71428571 +10449,174.1666667,1175,453,,209.8214286,80.89285714 +10450,174.1833333,1191,454,,212.6785714,81.07142857 +10451,174.2,1209,455,,215.8928571,81.25 +10452,174.2166667,1228,455,,219.2857143,81.25 +10453,174.2333333,1248,457,,222.8571429,81.60714286 +10454,174.25,1268,457,,226.4285714,81.60714286 +10455,174.2666667,1289,458,,230.1785714,81.78571429 +10456,174.2833333,1311,459,,234.1071429,81.96428571 +10457,174.3,1333,459,,238.0357143,81.96428571 +10458,174.3166667,1355,459,,241.9642857,81.96428571 +10459,174.3333333,1377,459,,245.8928571,81.96428571 +10460,174.35,1400,459,,250,81.96428571 +10461,174.3666667,1423,458,,254.1071429,81.78571429 +10462,174.3833333,1446,458,,258.2142857,81.78571429 +10463,174.4,1468,457,,262.1428571,81.60714286 +10464,174.4166667,1491,457,,266.25,81.60714286 +10465,174.4333333,1512,456,,270,81.42857143 +10466,174.45,1533,455,,273.75,81.25 +10467,174.4666667,1554,454,,277.5,81.07142857 +10468,174.4833333,1573,453,,280.8928571,80.89285714 +10469,174.5,1592,452,,284.2857143,80.71428571 +10470,174.5166667,1610,451,,287.5,80.53571429 +10471,174.5333333,1627,449,,290.5357143,80.17857143 +10472,174.55,1643,448,,293.3928571,80 +10473,174.5666667,1657,447,,295.8928571,79.82142857 +10474,174.5833333,1670,446,,298.2142857,79.64285714 +10475,174.6,1682,445,,300.3571429,79.46428571 +10476,174.6166667,1693,444,,302.3214286,79.28571429 +10477,174.6333333,1702,443,,303.9285714,79.10714286 +10478,174.65,1710,442,,305.3571429,78.92857143 +10479,174.6666667,1716,441,,306.4285714,78.75 +10480,174.6833333,1721,441,,307.3214286,78.75 +10481,174.7,1724,441,,307.8571429,78.75 +10482,174.7166667,1724,441,,307.8571429,78.75 +10483,174.7333333,1724,441,,307.8571429,78.75 +10484,174.75,1723,441,,307.6785714,78.75 +10485,174.7666667,1719,441,,306.9642857,78.75 +10486,174.7833333,1714,442,,306.0714286,78.92857143 +10487,174.8,1708,443,,305,79.10714286 +10488,174.8166667,1700,444,,303.5714286,79.28571429 +10489,174.8333333,1691,445,,301.9642857,79.46428571 +10490,174.85,1680,446,,300,79.64285714 +10491,174.8666667,1667,447,,297.6785714,79.82142857 +10492,174.8833333,1654,448,,295.3571429,80 +10493,174.9,1639,449,,292.6785714,80.17857143 +10494,174.9166667,1623,451,,289.8214286,80.53571429 +10495,174.9333333,1606,452,,286.7857143,80.71428571 +10496,174.95,1588,453,,283.5714286,80.89285714 +10497,174.9666667,1569,454,,280.1785714,81.07142857 +10498,174.9833333,1549,456,,276.6071429,81.42857143 +10499,175,1529,457,,273.0357143,81.60714286 +10500,175.0166667,1507,458,,269.1071429,81.78571429 +10501,175.0333333,1486,458,,265.3571429,81.78571429 +10502,175.05,1464,459,,261.4285714,81.96428571 +10503,175.0666667,1441,459,,257.3214286,81.96428571 +10504,175.0833333,1419,460,,253.3928571,82.14285714 +10505,175.1,1397,460,,249.4642857,82.14285714 +10506,175.1166667,1374,460,,245.3571429,82.14285714 +10507,175.1333333,1352,460,,241.4285714,82.14285714 +10508,175.15,1329,460,,237.3214286,82.14285714 +10509,175.1666667,1308,460,,233.5714286,82.14285714 +10510,175.1833333,1286,459,,229.6428571,81.96428571 +10511,175.2,1265,458,,225.8928571,81.78571429 +10512,175.2166667,1245,457,,222.3214286,81.60714286 +10513,175.2333333,1225,457,,218.75,81.60714286 +10514,175.25,1207,455,,215.5357143,81.25 +10515,175.2666667,1189,454,,212.3214286,81.07142857 +10516,175.2833333,1173,453,,209.4642857,80.89285714 +10517,175.3,1157,452,,206.6071429,80.71428571 +10518,175.3166667,1143,451,,204.1071429,80.53571429 +10519,175.3333333,1130,450,,201.7857143,80.35714286 +10520,175.35,1119,449,,199.8214286,80.17857143 +10521,175.3666667,1108,449,,197.8571429,80.17857143 +10522,175.3833333,1099,448,,196.25,80 +10523,175.4,1092,447,,195,79.82142857 +10524,175.4166667,1087,446,,194.1071429,79.64285714 +10525,175.4333333,1082,446,,193.2142857,79.64285714 +10526,175.45,1080,446,,192.8571429,79.64285714 +10527,175.4666667,1080,445,,192.8571429,79.46428571 +10528,175.4833333,1080,445,,192.8571429,79.46428571 +10529,175.5,1081,445,,193.0357143,79.46428571 +10530,175.5166667,1085,446,,193.75,79.64285714 +10531,175.5333333,1090,446,,194.6428571,79.64285714 +10532,175.55,1096,447,,195.7142857,79.82142857 +10533,175.5666667,1105,447,,197.3214286,79.82142857 +10534,175.5833333,1114,448,,198.9285714,80 +10535,175.6,1125,449,,200.8928571,80.17857143 +10536,175.6166667,1138,450,,203.2142857,80.35714286 +10537,175.6333333,1152,450,,205.7142857,80.35714286 +10538,175.65,1167,451,,208.3928571,80.53571429 +10539,175.6666667,1183,452,,211.25,80.71428571 +10540,175.6833333,1200,453,,214.2857143,80.89285714 +10541,175.7,1218,454,,217.5,81.07142857 +10542,175.7166667,1238,455,,221.0714286,81.25 +10543,175.7333333,1258,456,,224.6428571,81.42857143 +10544,175.75,1278,457,,228.2142857,81.60714286 +10545,175.7666667,1300,457,,232.1428571,81.60714286 +10546,175.7833333,1321,458,,235.8928571,81.78571429 +10547,175.8,1344,458,,240,81.78571429 +10548,175.8166667,1366,458,,243.9285714,81.78571429 +10549,175.8333333,1389,458,,248.0357143,81.78571429 +10550,175.85,1411,457,,251.9642857,81.60714286 +10551,175.8666667,1434,457,,256.0714286,81.60714286 +10552,175.8833333,1457,456,,260.1785714,81.42857143 +10553,175.9,1479,456,,264.1071429,81.42857143 +10554,175.9166667,1501,455,,268.0357143,81.25 +10555,175.9333333,1522,454,,271.7857143,81.07142857 +10556,175.95,1543,453,,275.5357143,80.89285714 +10557,175.9666667,1563,452,,279.1071429,80.71428571 +10558,175.9833333,1582,451,,282.5,80.53571429 +10559,176,1601,450,,285.8928571,80.35714286 +10560,176.0166667,1618,449,,288.9285714,80.17857143 +10561,176.0333333,1635,447,,291.9642857,79.82142857 +10562,176.05,1650,446,,294.6428571,79.64285714 +10563,176.0666667,1664,445,,297.1428571,79.46428571 +10564,176.0833333,1677,444,,299.4642857,79.28571429 +10565,176.1,1688,443,,301.4285714,79.10714286 +10566,176.1166667,1698,442,,303.2142857,78.92857143 +10567,176.1333333,1706,441,,304.6428571,78.75 +10568,176.15,1713,440,,305.8928571,78.57142857 +10569,176.1666667,1718,440,,306.7857143,78.57142857 +10570,176.1833333,1722,440,,307.5,78.57142857 +10571,176.2,1724,440,,307.8571429,78.57142857 +10572,176.2166667,1724,440,,307.8571429,78.57142857 +10573,176.2333333,1724,440,,307.8571429,78.57142857 +10574,176.25,1722,440,,307.5,78.57142857 +10575,176.2666667,1717,441,,306.6071429,78.75 +10576,176.2833333,1711,442,,305.5357143,78.92857143 +10577,176.3,1704,442,,304.2857143,78.92857143 +10578,176.3166667,1696,443,,302.8571429,79.10714286 +10579,176.3333333,1685,444,,300.8928571,79.28571429 +10580,176.35,1673,445,,298.75,79.46428571 +10581,176.3666667,1661,446,,296.6071429,79.64285714 +10582,176.3833333,1647,448,,294.1071429,80 +10583,176.4,1631,449,,291.25,80.17857143 +10584,176.4166667,1614,450,,288.2142857,80.35714286 +10585,176.4333333,1597,451,,285.1785714,80.53571429 +10586,176.45,1579,453,,281.9642857,80.89285714 +10587,176.4666667,1559,454,,278.3928571,81.07142857 +10588,176.4833333,1539,455,,274.8214286,81.25 +10589,176.5,1518,456,,271.0714286,81.42857143 +10590,176.5166667,1497,457,,267.3214286,81.60714286 +10591,176.5333333,1475,458,,263.3928571,81.78571429 +10592,176.55,1453,458,,259.4642857,81.78571429 +10593,176.5666667,1431,459,,255.5357143,81.96428571 +10594,176.5833333,1409,459,,251.6071429,81.96428571 +10595,176.6,1386,460,,247.5,82.14285714 +10596,176.6166667,1364,460,,243.5714286,82.14285714 +10597,176.6333333,1341,459,,239.4642857,81.96428571 +10598,176.65,1320,459,,235.7142857,81.96428571 +10599,176.6666667,1298,459,,231.7857143,81.96428571 +10600,176.6833333,1277,458,,228.0357143,81.78571429 +10601,176.7,1256,457,,224.2857143,81.60714286 +10602,176.7166667,1237,456,,220.8928571,81.42857143 +10603,176.7333333,1217,455,,217.3214286,81.25 +10604,176.75,1199,454,,214.1071429,81.07142857 +10605,176.7666667,1182,453,,211.0714286,80.89285714 +10606,176.7833333,1166,452,,208.2142857,80.71428571 +10607,176.8,1151,451,,205.5357143,80.53571429 +10608,176.8166667,1138,450,,203.2142857,80.35714286 +10609,176.8333333,1125,449,,200.8928571,80.17857143 +10610,176.85,1115,448,,199.1071429,80 +10611,176.8666667,1105,447,,197.3214286,79.82142857 +10612,176.8833333,1097,447,,195.8928571,79.82142857 +10613,176.9,1091,446,,194.8214286,79.64285714 +10614,176.9166667,1086,446,,193.9285714,79.64285714 +10615,176.9333333,1082,445,,193.2142857,79.46428571 +10616,176.95,1081,445,,193.0357143,79.46428571 +10617,176.9666667,1081,445,,193.0357143,79.46428571 +10618,176.9833333,1081,445,,193.0357143,79.46428571 +10619,177,1084,445,,193.5714286,79.46428571 +10620,177.0166667,1088,446,,194.2857143,79.64285714 +10621,177.0333333,1094,446,,195.3571429,79.64285714 +10622,177.05,1101,447,,196.6071429,79.82142857 +10623,177.0666667,1111,447,,198.3928571,79.82142857 +10624,177.0833333,1121,448,,200.1785714,80 +10625,177.1,1133,449,,202.3214286,80.17857143 +10626,177.1166667,1146,450,,204.6428571,80.35714286 +10627,177.1333333,1160,451,,207.1428571,80.53571429 +10628,177.15,1175,451,,209.8214286,80.53571429 +10629,177.1666667,1192,452,,212.8571429,80.71428571 +10630,177.1833333,1210,453,,216.0714286,80.89285714 +10631,177.2,1228,454,,219.2857143,81.07142857 +10632,177.2166667,1248,455,,222.8571429,81.25 +10633,177.2333333,1268,456,,226.4285714,81.42857143 +10634,177.25,1289,457,,230.1785714,81.60714286 +10635,177.2666667,1310,457,,233.9285714,81.60714286 +10636,177.2833333,1332,458,,237.8571429,81.78571429 +10637,177.3,1354,458,,241.7857143,81.78571429 +10638,177.3166667,1377,458,,245.8928571,81.78571429 +10639,177.3333333,1399,458,,249.8214286,81.78571429 +10640,177.35,1422,457,,253.9285714,81.60714286 +10641,177.3666667,1445,457,,258.0357143,81.60714286 +10642,177.3833333,1467,456,,261.9642857,81.42857143 +10643,177.4,1489,456,,265.8928571,81.42857143 +10644,177.4166667,1511,455,,269.8214286,81.25 +10645,177.4333333,1532,454,,273.5714286,81.07142857 +10646,177.45,1552,453,,277.1428571,80.89285714 +10647,177.4666667,1572,452,,280.7142857,80.71428571 +10648,177.4833333,1591,451,,284.1071429,80.53571429 +10649,177.5,1609,450,,287.3214286,80.35714286 +10650,177.5166667,1625,448,,290.1785714,80 +10651,177.5333333,1641,447,,293.0357143,79.82142857 +10652,177.55,1656,446,,295.7142857,79.64285714 +10653,177.5666667,1669,445,,298.0357143,79.46428571 +10654,177.5833333,1681,444,,300.1785714,79.28571429 +10655,177.6,1691,443,,301.9642857,79.10714286 +10656,177.6166667,1700,442,,303.5714286,78.92857143 +10657,177.6333333,1708,442,,305,78.92857143 +10658,177.65,1714,441,,306.0714286,78.75 +10659,177.6666667,1719,441,,306.9642857,78.75 +10660,177.6833333,1721,440,,307.3214286,78.57142857 +10661,177.7,1721,440,,307.3214286,78.57142857 +10662,177.7166667,1721,441,,307.3214286,78.75 +10663,177.7333333,1721,441,,307.3214286,78.75 +10664,177.75,1717,441,,306.6071429,78.75 +10665,177.7666667,1713,442,,305.8928571,78.92857143 +10666,177.7833333,1706,442,,304.6428571,78.92857143 +10667,177.8,1698,443,,303.2142857,79.10714286 +10668,177.8166667,1688,444,,301.4285714,79.28571429 +10669,177.8333333,1677,445,,299.4642857,79.46428571 +10670,177.85,1665,446,,297.3214286,79.64285714 +10671,177.8666667,1652,448,,295,80 +10672,177.8833333,1637,449,,292.3214286,80.17857143 +10673,177.9,1622,450,,289.6428571,80.35714286 +10674,177.9166667,1604,451,,286.4285714,80.53571429 +10675,177.9333333,1586,453,,283.2142857,80.89285714 +10676,177.95,1568,454,,280,81.07142857 +10677,177.9666667,1548,455,,276.4285714,81.25 +10678,177.9833333,1528,456,,272.8571429,81.42857143 +10679,178,1506,457,,268.9285714,81.60714286 +10680,178.0166667,1485,458,,265.1785714,81.78571429 +10681,178.0333333,1463,459,,261.25,81.96428571 +10682,178.05,1441,459,,257.3214286,81.96428571 +10683,178.0666667,1418,460,,253.2142857,82.14285714 +10684,178.0833333,1396,460,,249.2857143,82.14285714 +10685,178.1,1373,460,,245.1785714,82.14285714 +10686,178.1166667,1351,460,,241.25,82.14285714 +10687,178.1333333,1329,460,,237.3214286,82.14285714 +10688,178.15,1307,459,,233.3928571,81.96428571 +10689,178.1666667,1286,459,,229.6428571,81.96428571 +10690,178.1833333,1265,458,,225.8928571,81.78571429 +10691,178.2,1245,457,,222.3214286,81.60714286 +10692,178.2166667,1226,456,,218.9285714,81.42857143 +10693,178.2333333,1207,455,,215.5357143,81.25 +10694,178.25,1190,454,,212.5,81.07142857 +10695,178.2666667,1173,453,,209.4642857,80.89285714 +10696,178.2833333,1158,452,,206.7857143,80.71428571 +10697,178.3,1144,451,,204.2857143,80.53571429 +10698,178.3166667,1131,450,,201.9642857,80.35714286 +10699,178.3333333,1119,449,,199.8214286,80.17857143 +10700,178.35,1109,448,,198.0357143,80 +10701,178.3666667,1100,448,,196.4285714,80 +10702,178.3833333,1093,447,,195.1785714,79.82142857 +10703,178.4,1087,446,,194.1071429,79.64285714 +10704,178.4166667,1083,446,,193.3928571,79.64285714 +10705,178.4333333,1080,446,,192.8571429,79.64285714 +10706,178.45,1080,445,,192.8571429,79.46428571 +10707,178.4666667,1080,445,,192.8571429,79.46428571 +10708,178.4833333,1082,445,,193.2142857,79.46428571 +10709,178.5,1085,446,,193.75,79.64285714 +10710,178.5166667,1090,446,,194.6428571,79.64285714 +10711,178.5333333,1097,446,,195.8928571,79.64285714 +10712,178.55,1105,447,,197.3214286,79.82142857 +10713,178.5666667,1115,448,,199.1071429,80 +10714,178.5833333,1126,449,,201.0714286,80.17857143 +10715,178.6,1139,449,,203.3928571,80.17857143 +10716,178.6166667,1152,450,,205.7142857,80.35714286 +10717,178.6333333,1168,451,,208.5714286,80.53571429 +10718,178.65,1184,452,,211.4285714,80.71428571 +10719,178.6666667,1201,453,,214.4642857,80.89285714 +10720,178.6833333,1219,454,,217.6785714,81.07142857 +10721,178.7,1238,455,,221.0714286,81.25 +10722,178.7166667,1258,456,,224.6428571,81.42857143 +10723,178.7333333,1279,456,,228.3928571,81.42857143 +10724,178.75,1300,457,,232.1428571,81.60714286 +10725,178.7666667,1322,458,,236.0714286,81.78571429 +10726,178.7833333,1344,458,,240,81.78571429 +10727,178.8,1366,458,,243.9285714,81.78571429 +10728,178.8166667,1389,458,,248.0357143,81.78571429 +10729,178.8333333,1412,458,,252.1428571,81.78571429 +10730,178.85,1434,457,,256.0714286,81.60714286 +10731,178.8666667,1456,457,,260,81.60714286 +10732,178.8833333,1479,456,,264.1071429,81.42857143 +10733,178.9,1500,455,,267.8571429,81.25 +10734,178.9166667,1522,454,,271.7857143,81.07142857 +10735,178.9333333,1542,454,,275.3571429,81.07142857 +10736,178.95,1562,453,,278.9285714,80.89285714 +10737,178.9666667,1581,451,,282.3214286,80.53571429 +10738,178.9833333,1600,450,,285.7142857,80.35714286 +10739,179,1617,449,,288.75,80.17857143 +10740,179.0166667,1633,448,,291.6071429,80 +10741,179.0333333,1648,447,,294.2857143,79.82142857 +10742,179.05,1662,446,,296.7857143,79.64285714 +10743,179.0666667,1674,444,,298.9285714,79.28571429 +10744,179.0833333,1685,443,,300.8928571,79.10714286 +10745,179.1,1695,443,,302.6785714,79.10714286 +10746,179.1166667,1704,442,,304.2857143,78.92857143 +10747,179.1333333,1710,441,,305.3571429,78.75 +10748,179.15,1716,441,,306.4285714,78.75 +10749,179.1666667,1720,440,,307.1428571,78.57142857 +10750,179.1833333,1721,440,,307.3214286,78.57142857 +10751,179.2,1721,440,,307.3214286,78.57142857 +10752,179.2166667,1721,441,,307.3214286,78.75 +10753,179.2333333,1719,441,,306.9642857,78.75 +10754,179.25,1715,441,,306.25,78.75 +10755,179.2666667,1709,442,,305.1785714,78.92857143 +10756,179.2833333,1702,443,,303.9285714,79.10714286 +10757,179.3,1693,444,,302.3214286,79.28571429 +10758,179.3166667,1683,445,,300.5357143,79.46428571 +10759,179.3333333,1672,446,,298.5714286,79.64285714 +10760,179.35,1659,447,,296.25,79.82142857 +10761,179.3666667,1645,448,,293.75,80 +10762,179.3833333,1630,450,,291.0714286,80.35714286 +10763,179.4,1613,451,,288.0357143,80.53571429 +10764,179.4166667,1596,452,,285,80.71428571 +10765,179.4333333,1578,453,,281.7857143,80.89285714 +10766,179.45,1558,455,,278.2142857,81.25 +10767,179.4666667,1539,456,,274.8214286,81.42857143 +10768,179.4833333,1518,457,,271.0714286,81.60714286 +10769,179.5,1497,457,,267.3214286,81.60714286 +10770,179.5166667,1475,458,,263.3928571,81.78571429 +10771,179.5333333,1453,459,,259.4642857,81.96428571 +10772,179.55,1431,459,,255.5357143,81.96428571 +10773,179.5666667,1408,460,,251.4285714,82.14285714 +10774,179.5833333,1386,460,,247.5,82.14285714 +10775,179.6,1364,460,,243.5714286,82.14285714 +10776,179.6166667,1342,460,,239.6428571,82.14285714 +10777,179.6333333,1320,459,,235.7142857,81.96428571 +10778,179.65,1299,459,,231.9642857,81.96428571 +10779,179.6666667,1278,458,,228.2142857,81.78571429 +10780,179.6833333,1257,458,,224.4642857,81.78571429 +10781,179.7,1238,457,,221.0714286,81.60714286 +10782,179.7166667,1219,456,,217.6785714,81.42857143 +10783,179.7333333,1201,455,,214.4642857,81.25 +10784,179.75,1184,454,,211.4285714,81.07142857 +10785,179.7666667,1169,453,,208.75,80.89285714 +10786,179.7833333,1154,452,,206.0714286,80.71428571 +10787,179.8,1140,451,,203.5714286,80.53571429 +10788,179.8166667,1128,450,,201.4285714,80.35714286 +10789,179.8333333,1117,449,,199.4642857,80.17857143 +10790,179.85,1108,448,,197.8571429,80 +10791,179.8666667,1100,448,,196.4285714,80 +10792,179.8833333,1093,447,,195.1785714,79.82142857 +10793,179.9,1088,446,,194.2857143,79.64285714 +10794,179.9166667,1085,446,,193.75,79.64285714 +10795,179.9333333,1084,446,,193.5714286,79.64285714 +10796,179.95,1084,446,,193.5714286,79.64285714 +10797,179.9666667,1084,446,,193.5714286,79.64285714 +10798,179.9833333,1087,446,,194.1071429,79.64285714 +10799,180,1091,446,,194.8214286,79.64285714 +10800,180.0166667,1097,446,,195.8928571,79.64285714 +10801,180.0333333,1104,447,,197.1428571,79.82142857 +10802,180.05,1113,448,,198.75,80 +10803,180.0666667,1124,448,,200.7142857,80 +10804,180.0833333,1135,449,,202.6785714,80.17857143 +10805,180.1,1148,450,,205,80.35714286 +10806,180.1166667,1163,451,,207.6785714,80.53571429 +10807,180.1333333,1178,452,,210.3571429,80.71428571 +10808,180.15,1195,453,,213.3928571,80.89285714 +10809,180.1666667,1212,454,,216.4285714,81.07142857 +10810,180.1833333,1231,455,,219.8214286,81.25 +10811,180.2,1250,456,,223.2142857,81.42857143 +10812,180.2166667,1270,456,,226.7857143,81.42857143 +10813,180.2333333,1291,457,,230.5357143,81.60714286 +10814,180.25,1313,458,,234.4642857,81.78571429 +10815,180.2666667,1335,458,,238.3928571,81.78571429 +10816,180.2833333,1357,458,,242.3214286,81.78571429 +10817,180.3,1379,458,,246.25,81.78571429 +10818,180.3166667,1401,458,,250.1785714,81.78571429 +10819,180.3333333,1424,458,,254.2857143,81.78571429 +10820,180.35,1447,457,,258.3928571,81.60714286 +10821,180.3666667,1469,457,,262.3214286,81.60714286 +10822,180.3833333,1491,457,,266.25,81.60714286 +10823,180.4,1512,456,,270,81.42857143 +10824,180.4166667,1533,455,,273.75,81.25 +10825,180.4333333,1553,454,,277.3214286,81.07142857 +10826,180.45,1572,453,,280.7142857,80.89285714 +10827,180.4666667,1591,451,,284.1071429,80.53571429 +10828,180.4833333,1609,451,,287.3214286,80.53571429 +10829,180.5,1625,449,,290.1785714,80.17857143 +10830,180.5166667,1641,448,,293.0357143,80 +10831,180.5333333,1655,447,,295.5357143,79.82142857 +10832,180.55,1668,446,,297.8571429,79.64285714 +10833,180.5666667,1680,445,,300,79.46428571 +10834,180.5833333,1691,444,,301.9642857,79.28571429 +10835,180.6,1700,444,,303.5714286,79.28571429 +10836,180.6166667,1707,443,,304.8214286,79.10714286 +10837,180.6333333,1713,442,,305.8928571,78.92857143 +10838,180.65,1718,442,,306.7857143,78.92857143 +10839,180.6666667,1721,442,,307.3214286,78.92857143 +10840,180.6833333,1721,442,,307.3214286,78.92857143 +10841,180.7,1721,442,,307.3214286,78.92857143 +10842,180.7166667,1720,442,,307.1428571,78.92857143 +10843,180.7333333,1716,442,,306.4285714,78.92857143 +10844,180.75,1712,443,,305.7142857,79.10714286 +10845,180.7666667,1705,443,,304.4642857,79.10714286 +10846,180.7833333,1697,445,,303.0357143,79.46428571 +10847,180.8,1688,446,,301.4285714,79.64285714 +10848,180.8166667,1677,447,,299.4642857,79.82142857 +10849,180.8333333,1665,448,,297.3214286,80 +10850,180.85,1652,449,,295,80.17857143 +10851,180.8666667,1637,450,,292.3214286,80.35714286 +10852,180.8833333,1622,452,,289.6428571,80.71428571 +10853,180.9,1605,452,,286.6071429,80.71428571 +10854,180.9166667,1587,454,,283.3928571,81.07142857 +10855,180.9333333,1568,455,,280,81.25 +10856,180.95,1549,457,,276.6071429,81.60714286 +10857,180.9666667,1529,458,,273.0357143,81.78571429 +10858,180.9833333,1508,458,,269.2857143,81.78571429 +10859,181,1486,459,,265.3571429,81.96428571 +10860,181.0166667,1465,460,,261.6071429,82.14285714 +10861,181.0333333,1443,460,,257.6785714,82.14285714 +10862,181.05,1420,461,,253.5714286,82.32142857 +10863,181.0666667,1398,461,,249.6428571,82.32142857 +10864,181.0833333,1376,461,,245.7142857,82.32142857 +10865,181.1,1354,461,,241.7857143,82.32142857 +10866,181.1166667,1332,461,,237.8571429,82.32142857 +10867,181.1333333,1310,461,,233.9285714,82.32142857 +10868,181.15,1289,460,,230.1785714,82.14285714 +10869,181.1666667,1269,459,,226.6071429,81.96428571 +10870,181.1833333,1249,458,,223.0357143,81.78571429 +10871,181.2,1230,457,,219.6428571,81.60714286 +10872,181.2166667,1211,456,,216.25,81.42857143 +10873,181.2333333,1194,455,,213.2142857,81.25 +10874,181.25,1178,455,,210.3571429,81.25 +10875,181.2666667,1162,453,,207.5,80.89285714 +10876,181.2833333,1148,453,,205,80.89285714 +10877,181.3,1136,452,,202.8571429,80.71428571 +10878,181.3166667,1124,451,,200.7142857,80.53571429 +10879,181.3333333,1114,450,,198.9285714,80.35714286 +10880,181.35,1105,449,,197.3214286,80.17857143 +10881,181.3666667,1097,448,,195.8928571,80 +10882,181.3833333,1092,447,,195,79.82142857 +10883,181.4,1087,447,,194.1071429,79.82142857 +10884,181.4166667,1085,447,,193.75,79.82142857 +10885,181.4333333,1085,447,,193.75,79.82142857 +10886,181.45,1085,447,,193.75,79.82142857 +10887,181.4666667,1086,447,,193.9285714,79.82142857 +10888,181.4833333,1090,447,,194.6428571,79.82142857 +10889,181.5,1095,447,,195.5357143,79.82142857 +10890,181.5166667,1102,448,,196.7857143,80 +10891,181.5333333,1110,448,,198.2142857,80 +10892,181.55,1119,449,,199.8214286,80.17857143 +10893,181.5666667,1130,450,,201.7857143,80.35714286 +10894,181.5833333,1142,451,,203.9285714,80.53571429 +10895,181.6,1156,451,,206.4285714,80.53571429 +10896,181.6166667,1170,452,,208.9285714,80.71428571 +10897,181.6333333,1186,453,,211.7857143,80.89285714 +10898,181.65,1203,454,,214.8214286,81.07142857 +10899,181.6666667,1221,455,,218.0357143,81.25 +10900,181.6833333,1240,456,,221.4285714,81.42857143 +10901,181.7,1260,457,,225,81.60714286 +10902,181.7166667,1280,457,,228.5714286,81.60714286 +10903,181.7333333,1301,459,,232.3214286,81.96428571 +10904,181.75,1322,459,,236.0714286,81.96428571 +10905,181.7666667,1344,459,,240,81.96428571 +10906,181.7833333,1366,459,,243.9285714,81.96428571 +10907,181.8,1389,459,,248.0357143,81.96428571 +10908,181.8166667,1411,459,,251.9642857,81.96428571 +10909,181.8333333,1433,458,,255.8928571,81.78571429 +10910,181.85,1455,458,,259.8214286,81.78571429 +10911,181.8666667,1477,457,,263.75,81.60714286 +10912,181.8833333,1499,457,,267.6785714,81.60714286 +10913,181.9,1520,456,,271.4285714,81.42857143 +10914,181.9166667,1540,455,,275,81.25 +10915,181.9333333,1560,454,,278.5714286,81.07142857 +10916,181.95,1579,453,,281.9642857,80.89285714 +10917,181.9666667,1597,452,,285.1785714,80.71428571 +10918,181.9833333,1614,451,,288.2142857,80.53571429 +10919,182,1630,449,,291.0714286,80.17857143 +10920,182.0166667,1645,448,,293.75,80 +10921,182.0333333,1659,447,,296.25,79.82142857 +10922,182.05,1671,446,,298.3928571,79.64285714 +10923,182.0666667,1683,445,,300.5357143,79.46428571 +10924,182.0833333,1692,444,,302.1428571,79.28571429 +10925,182.1,1700,443,,303.5714286,79.10714286 +10926,182.1166667,1707,443,,304.8214286,79.10714286 +10927,182.1333333,1712,442,,305.7142857,78.92857143 +10928,182.15,1716,442,,306.4285714,78.92857143 +10929,182.1666667,1718,442,,306.7857143,78.92857143 +10930,182.1833333,1718,442,,306.7857143,78.92857143 +10931,182.2,1718,442,,306.7857143,78.92857143 +10932,182.2166667,1716,442,,306.4285714,78.92857143 +10933,182.2333333,1711,443,,305.5357143,79.10714286 +10934,182.25,1706,443,,304.6428571,79.10714286 +10935,182.2666667,1699,444,,303.3928571,79.28571429 +10936,182.2833333,1690,445,,301.7857143,79.46428571 +10937,182.3,1680,446,,300,79.64285714 +10938,182.3166667,1668,447,,297.8571429,79.82142857 +10939,182.3333333,1656,448,,295.7142857,80 +10940,182.35,1642,450,,293.2142857,80.35714286 +10941,182.3666667,1627,451,,290.5357143,80.53571429 +10942,182.3833333,1611,452,,287.6785714,80.71428571 +10943,182.4,1594,453,,284.6428571,80.89285714 +10944,182.4166667,1576,454,,281.4285714,81.07142857 +10945,182.4333333,1556,456,,277.8571429,81.42857143 +10946,182.45,1537,456,,274.4642857,81.42857143 +10947,182.4666667,1516,457,,270.7142857,81.60714286 +10948,182.4833333,1496,458,,267.1428571,81.78571429 +10949,182.5,1474,459,,263.2142857,81.96428571 +10950,182.5166667,1452,460,,259.2857143,82.14285714 +10951,182.5333333,1431,460,,255.5357143,82.14285714 +10952,182.55,1408,460,,251.4285714,82.14285714 +10953,182.5666667,1386,461,,247.5,82.32142857 +10954,182.5833333,1364,461,,243.5714286,82.32142857 +10955,182.6,1341,461,,239.4642857,82.32142857 +10956,182.6166667,1320,460,,235.7142857,82.14285714 +10957,182.6333333,1299,460,,231.9642857,82.14285714 +10958,182.65,1278,459,,228.2142857,81.96428571 +10959,182.6666667,1258,458,,224.6428571,81.78571429 +10960,182.6833333,1238,457,,221.0714286,81.60714286 +10961,182.7,1220,456,,217.8571429,81.42857143 +10962,182.7166667,1202,455,,214.6428571,81.25 +10963,182.7333333,1185,454,,211.6071429,81.07142857 +10964,182.75,1169,453,,208.75,80.89285714 +10965,182.7666667,1155,452,,206.25,80.71428571 +10966,182.7833333,1141,451,,203.75,80.53571429 +10967,182.8,1129,450,,201.6071429,80.35714286 +10968,182.8166667,1119,449,,199.8214286,80.17857143 +10969,182.8333333,1109,448,,198.0357143,80 +10970,182.85,1101,448,,196.6071429,80 +10971,182.8666667,1094,447,,195.3571429,79.82142857 +10972,182.8833333,1090,447,,194.6428571,79.82142857 +10973,182.9,1086,446,,193.9285714,79.64285714 +10974,182.9166667,1085,446,,193.75,79.64285714 +10975,182.9333333,1085,446,,193.75,79.64285714 +10976,182.95,1085,446,,193.75,79.64285714 +10977,182.9666667,1088,446,,194.2857143,79.64285714 +10978,182.9833333,1092,446,,195,79.64285714 +10979,183,1098,447,,196.0714286,79.82142857 +10980,183.0166667,1105,447,,197.3214286,79.82142857 +10981,183.0333333,1114,448,,198.9285714,80 +10982,183.05,1124,449,,200.7142857,80.17857143 +10983,183.0666667,1136,450,,202.8571429,80.35714286 +10984,183.0833333,1149,450,,205.1785714,80.35714286 +10985,183.1,1163,451,,207.6785714,80.53571429 +10986,183.1166667,1178,452,,210.3571429,80.71428571 +10987,183.1333333,1194,453,,213.2142857,80.89285714 +10988,183.15,1212,454,,216.4285714,81.07142857 +10989,183.1666667,1231,455,,219.8214286,81.25 +10990,183.1833333,1250,456,,223.2142857,81.42857143 +10991,183.2,1270,457,,226.7857143,81.60714286 +10992,183.2166667,1291,457,,230.5357143,81.60714286 +10993,183.2333333,1312,458,,234.2857143,81.78571429 +10994,183.25,1333,458,,238.0357143,81.78571429 +10995,183.2666667,1355,458,,241.9642857,81.78571429 +10996,183.2833333,1377,458,,245.8928571,81.78571429 +10997,183.3,1399,458,,249.8214286,81.78571429 +10998,183.3166667,1422,458,,253.9285714,81.78571429 +10999,183.3333333,1444,457,,257.8571429,81.60714286 +11000,183.35,1466,457,,261.7857143,81.60714286 +11001,183.3666667,1488,456,,265.7142857,81.42857143 +11002,183.3833333,1509,455,,269.4642857,81.25 +11003,183.4,1530,454,,273.2142857,81.07142857 +11004,183.4166667,1550,454,,276.7857143,81.07142857 +11005,183.4333333,1569,452,,280.1785714,80.71428571 +11006,183.45,1587,452,,283.3928571,80.71428571 +11007,183.4666667,1605,450,,286.6071429,80.35714286 +11008,183.4833333,1621,449,,289.4642857,80.17857143 +11009,183.5,1637,448,,292.3214286,80 +11010,183.5166667,1651,447,,294.8214286,79.82142857 +11011,183.5333333,1664,446,,297.1428571,79.64285714 +11012,183.55,1676,445,,299.2857143,79.46428571 +11013,183.5666667,1687,444,,301.25,79.28571429 +11014,183.5833333,1696,443,,302.8571429,79.10714286 +11015,183.6,1703,442,,304.1071429,78.92857143 +11016,183.6166667,1709,442,,305.1785714,78.92857143 +11017,183.6333333,1714,441,,306.0714286,78.75 +11018,183.65,1717,441,,306.6071429,78.75 +11019,183.6666667,1717,441,,306.6071429,78.75 +11020,183.6833333,1717,441,,306.6071429,78.75 +11021,183.7,1716,441,,306.4285714,78.75 +11022,183.7166667,1713,442,,305.8928571,78.92857143 +11023,183.7333333,1708,442,,305,78.92857143 +11024,183.75,1702,443,,303.9285714,79.10714286 +11025,183.7666667,1694,444,,302.5,79.28571429 +11026,183.7833333,1685,445,,300.8928571,79.46428571 +11027,183.8,1674,446,,298.9285714,79.64285714 +11028,183.8166667,1662,447,,296.7857143,79.82142857 +11029,183.8333333,1649,448,,294.4642857,80 +11030,183.85,1635,449,,291.9642857,80.17857143 +11031,183.8666667,1619,451,,289.1071429,80.53571429 +11032,183.8833333,1603,452,,286.25,80.71428571 +11033,183.9,1585,453,,283.0357143,80.89285714 +11034,183.9166667,1567,454,,279.8214286,81.07142857 +11035,183.9333333,1547,455,,276.25,81.25 +11036,183.95,1527,456,,272.6785714,81.42857143 +11037,183.9666667,1507,457,,269.1071429,81.60714286 +11038,183.9833333,1485,458,,265.1785714,81.78571429 +11039,184,1464,459,,261.4285714,81.96428571 +11040,184.0166667,1442,459,,257.5,81.96428571 +11041,184.0333333,1420,460,,253.5714286,82.14285714 +11042,184.05,1398,460,,249.6428571,82.14285714 +11043,184.0666667,1376,460,,245.7142857,82.14285714 +11044,184.0833333,1354,460,,241.7857143,82.14285714 +11045,184.1,1332,460,,237.8571429,82.14285714 +11046,184.1166667,1311,460,,234.1071429,82.14285714 +11047,184.1333333,1290,459,,230.3571429,81.96428571 +11048,184.15,1269,458,,226.6071429,81.78571429 +11049,184.1666667,1249,457,,223.0357143,81.60714286 +11050,184.1833333,1230,456,,219.6428571,81.42857143 +11051,184.2,1212,455,,216.4285714,81.25 +11052,184.2166667,1194,454,,213.2142857,81.07142857 +11053,184.2333333,1178,453,,210.3571429,80.89285714 +11054,184.25,1163,452,,207.6785714,80.71428571 +11055,184.2666667,1149,451,,205.1785714,80.53571429 +11056,184.2833333,1136,450,,202.8571429,80.35714286 +11057,184.3,1125,449,,200.8928571,80.17857143 +11058,184.3166667,1115,448,,199.1071429,80 +11059,184.3333333,1106,447,,197.5,79.82142857 +11060,184.35,1099,447,,196.25,79.82142857 +11061,184.3666667,1093,446,,195.1785714,79.64285714 +11062,184.3833333,1089,446,,194.4642857,79.64285714 +11063,184.4,1086,446,,193.9285714,79.64285714 +11064,184.4166667,1086,446,,193.9285714,79.64285714 +11065,184.4333333,1086,446,,193.9285714,79.64285714 +11066,184.45,1087,446,,194.1071429,79.64285714 +11067,184.4666667,1090,446,,194.6428571,79.64285714 +11068,184.4833333,1096,446,,195.7142857,79.64285714 +11069,184.5,1102,446,,196.7857143,79.64285714 +11070,184.5166667,1110,447,,198.2142857,79.82142857 +11071,184.5333333,1120,448,,200,80 +11072,184.55,1130,448,,201.7857143,80 +11073,184.5666667,1143,449,,204.1071429,80.17857143 +11074,184.5833333,1156,450,,206.4285714,80.35714286 +11075,184.6,1170,451,,208.9285714,80.53571429 +11076,184.6166667,1186,452,,211.7857143,80.71428571 +11077,184.6333333,1203,453,,214.8214286,80.89285714 +11078,184.65,1221,454,,218.0357143,81.07142857 +11079,184.6666667,1240,455,,221.4285714,81.25 +11080,184.6833333,1259,456,,224.8214286,81.42857143 +11081,184.7,1279,456,,228.3928571,81.42857143 +11082,184.7166667,1300,457,,232.1428571,81.60714286 +11083,184.7333333,1322,457,,236.0714286,81.60714286 +11084,184.75,1344,458,,240,81.78571429 +11085,184.7666667,1365,458,,243.75,81.78571429 +11086,184.7833333,1388,458,,247.8571429,81.78571429 +11087,184.8,1410,457,,251.7857143,81.60714286 +11088,184.8166667,1432,457,,255.7142857,81.60714286 +11089,184.8333333,1454,457,,259.6428571,81.60714286 +11090,184.85,1476,456,,263.5714286,81.42857143 +11091,184.8666667,1498,455,,267.5,81.25 +11092,184.8833333,1519,455,,271.25,81.25 +11093,184.9,1539,454,,274.8214286,81.07142857 +11094,184.9166667,1559,453,,278.3928571,80.89285714 +11095,184.9333333,1578,452,,281.7857143,80.71428571 +11096,184.95,1596,450,,285,80.35714286 +11097,184.9666667,1613,449,,288.0357143,80.17857143 +11098,184.9833333,1629,448,,290.8928571,80 +11099,185,1644,447,,293.5714286,79.82142857 +11100,185.0166667,1658,446,,296.0714286,79.64285714 +11101,185.0333333,1670,445,,298.2142857,79.46428571 +11102,185.05,1681,444,,300.1785714,79.28571429 +11103,185.0666667,1691,443,,301.9642857,79.10714286 +11104,185.0833333,1699,442,,303.3928571,78.92857143 +11105,185.1,1706,442,,304.6428571,78.92857143 +11106,185.1166667,1711,441,,305.5357143,78.75 +11107,185.1333333,1715,441,,306.25,78.75 +11108,185.15,1717,441,,306.6071429,78.75 +11109,185.1666667,1717,441,,306.6071429,78.75 +11110,185.1833333,1717,441,,306.6071429,78.75 +11111,185.2,1714,441,,306.0714286,78.75 +11112,185.2166667,1711,442,,305.5357143,78.92857143 +11113,185.2333333,1705,442,,304.4642857,78.92857143 +11114,185.25,1698,443,,303.2142857,79.10714286 +11115,185.2666667,1690,444,,301.7857143,79.28571429 +11116,185.2833333,1680,445,,300,79.46428571 +11117,185.3,1668,446,,297.8571429,79.64285714 +11118,185.3166667,1656,447,,295.7142857,79.82142857 +11119,185.3333333,1642,448,,293.2142857,80 +11120,185.35,1627,449,,290.5357143,80.17857143 +11121,185.3666667,1611,451,,287.6785714,80.53571429 +11122,185.3833333,1594,452,,284.6428571,80.71428571 +11123,185.4,1576,453,,281.4285714,80.89285714 +11124,185.4166667,1557,454,,278.0357143,81.07142857 +11125,185.4333333,1538,455,,274.6428571,81.25 +11126,185.45,1517,456,,270.8928571,81.42857143 +11127,185.4666667,1497,457,,267.3214286,81.60714286 +11128,185.4833333,1475,458,,263.3928571,81.78571429 +11129,185.5,1453,458,,259.4642857,81.78571429 +11130,185.5166667,1432,459,,255.7142857,81.96428571 +11131,185.5333333,1409,459,,251.6071429,81.96428571 +11132,185.55,1388,459,,247.8571429,81.96428571 +11133,185.5666667,1365,459,,243.75,81.96428571 +11134,185.5833333,1344,459,,240,81.96428571 +11135,185.6,1322,459,,236.0714286,81.96428571 +11136,185.6166667,1301,458,,232.3214286,81.78571429 +11137,185.6333333,1280,458,,228.5714286,81.78571429 +11138,185.65,1260,457,,225,81.60714286 +11139,185.6666667,1241,456,,221.6071429,81.42857143 +11140,185.6833333,1222,455,,218.2142857,81.25 +11141,185.7,1205,454,,215.1785714,81.07142857 +11142,185.7166667,1188,453,,212.1428571,80.89285714 +11143,185.7333333,1172,452,,209.2857143,80.71428571 +11144,185.75,1157,451,,206.6071429,80.53571429 +11145,185.7666667,1144,450,,204.2857143,80.35714286 +11146,185.7833333,1132,449,,202.1428571,80.17857143 +11147,185.8,1121,448,,200.1785714,80 +11148,185.8166667,1112,448,,198.5714286,80 +11149,185.8333333,1104,447,,197.1428571,79.82142857 +11150,185.85,1097,446,,195.8928571,79.64285714 +11151,185.8666667,1092,445,,195,79.46428571 +11152,185.8833333,1088,445,,194.2857143,79.46428571 +11153,185.9,1087,445,,194.1071429,79.46428571 +11154,185.9166667,1087,445,,194.1071429,79.46428571 +11155,185.9333333,1087,445,,194.1071429,79.46428571 +11156,185.95,1090,445,,194.6428571,79.46428571 +11157,185.9666667,1094,445,,195.3571429,79.46428571 +11158,185.9833333,1100,446,,196.4285714,79.64285714 +11159,186,1107,446,,197.6785714,79.64285714 +11160,186.0166667,1116,447,,199.2857143,79.82142857 +11161,186.0333333,1126,448,,201.0714286,80 +11162,186.05,1138,449,,203.2142857,80.17857143 +11163,186.0666667,1150,449,,205.3571429,80.17857143 +11164,186.0833333,1164,450,,207.8571429,80.35714286 +11165,186.1,1180,451,,210.7142857,80.53571429 +11166,186.1166667,1196,452,,213.5714286,80.71428571 +11167,186.1333333,1213,453,,216.6071429,80.89285714 +11168,186.15,1231,454,,219.8214286,81.07142857 +11169,186.1666667,1250,455,,223.2142857,81.25 +11170,186.1833333,1270,456,,226.7857143,81.42857143 +11171,186.2,1291,457,,230.5357143,81.60714286 +11172,186.2166667,1312,457,,234.2857143,81.60714286 +11173,186.2333333,1333,457,,238.0357143,81.60714286 +11174,186.25,1355,457,,241.9642857,81.60714286 +11175,186.2666667,1377,457,,245.8928571,81.60714286 +11176,186.2833333,1399,457,,249.8214286,81.60714286 +11177,186.3,1421,457,,253.75,81.60714286 +11178,186.3166667,1443,457,,257.6785714,81.60714286 +11179,186.3333333,1465,456,,261.6071429,81.42857143 +11180,186.35,1486,456,,265.3571429,81.42857143 +11181,186.3666667,1508,455,,269.2857143,81.25 +11182,186.3833333,1528,454,,272.8571429,81.07142857 +11183,186.4,1548,453,,276.4285714,80.89285714 +11184,186.4166667,1567,452,,279.8214286,80.71428571 +11185,186.4333333,1585,451,,283.0357143,80.53571429 +11186,186.45,1603,450,,286.25,80.35714286 +11187,186.4666667,1619,449,,289.1071429,80.17857143 +11188,186.4833333,1635,448,,291.9642857,80 +11189,186.5,1649,447,,294.4642857,79.82142857 +11190,186.5166667,1662,445,,296.7857143,79.46428571 +11191,186.5333333,1674,445,,298.9285714,79.46428571 +11192,186.55,1684,444,,300.7142857,79.28571429 +11193,186.5666667,1693,443,,302.3214286,79.10714286 +11194,186.5833333,1701,442,,303.75,78.92857143 +11195,186.6,1707,442,,304.8214286,78.92857143 +11196,186.6166667,1711,441,,305.5357143,78.75 +11197,186.6333333,1714,441,,306.0714286,78.75 +11198,186.65,1714,441,,306.0714286,78.75 +11199,186.6666667,1714,441,,306.0714286,78.75 +11200,186.6833333,1714,441,,306.0714286,78.75 +11201,186.7,1711,442,,305.5357143,78.92857143 +11202,186.7166667,1706,442,,304.6428571,78.92857143 +11203,186.7333333,1700,443,,303.5714286,79.10714286 +11204,186.75,1692,444,,302.1428571,79.28571429 +11205,186.7666667,1683,445,,300.5357143,79.46428571 +11206,186.7833333,1673,446,,298.75,79.64285714 +11207,186.8,1661,447,,296.6071429,79.82142857 +11208,186.8166667,1648,448,,294.2857143,80 +11209,186.8333333,1633,449,,291.6071429,80.17857143 +11210,186.85,1618,451,,288.9285714,80.53571429 +11211,186.8666667,1601,452,,285.8928571,80.71428571 +11212,186.8833333,1584,453,,282.8571429,80.89285714 +11213,186.9,1566,454,,279.6428571,81.07142857 +11214,186.9166667,1546,455,,276.0714286,81.25 +11215,186.9333333,1526,456,,272.5,81.42857143 +11216,186.95,1506,457,,268.9285714,81.60714286 +11217,186.9666667,1485,458,,265.1785714,81.78571429 +11218,186.9833333,1464,458,,261.4285714,81.78571429 +11219,187,1442,459,,257.5,81.96428571 +11220,187.0166667,1420,459,,253.5714286,81.96428571 +11221,187.0333333,1398,460,,249.6428571,82.14285714 +11222,187.05,1376,460,,245.7142857,82.14285714 +11223,187.0666667,1354,460,,241.7857143,82.14285714 +11224,187.0833333,1333,460,,238.0357143,82.14285714 +11225,187.1,1311,459,,234.1071429,81.96428571 +11226,187.1166667,1290,458,,230.3571429,81.78571429 +11227,187.1333333,1270,458,,226.7857143,81.78571429 +11228,187.15,1250,457,,223.2142857,81.60714286 +11229,187.1666667,1231,456,,219.8214286,81.42857143 +11230,187.1833333,1213,455,,216.6071429,81.25 +11231,187.2,1196,454,,213.5714286,81.07142857 +11232,187.2166667,1180,453,,210.7142857,80.89285714 +11233,187.2333333,1165,452,,208.0357143,80.71428571 +11234,187.25,1151,451,,205.5357143,80.53571429 +11235,187.2666667,1138,450,,203.2142857,80.35714286 +11236,187.2833333,1127,449,,201.25,80.17857143 +11237,187.3,1117,448,,199.4642857,80 +11238,187.3166667,1108,447,,197.8571429,79.82142857 +11239,187.3333333,1101,446,,196.6071429,79.64285714 +11240,187.35,1095,446,,195.5357143,79.64285714 +11241,187.3666667,1091,445,,194.8214286,79.46428571 +11242,187.3833333,1088,445,,194.2857143,79.46428571 +11243,187.4,1088,445,,194.2857143,79.46428571 +11244,187.4166667,1088,445,,194.2857143,79.46428571 +11245,187.4333333,1089,445,,194.4642857,79.46428571 +11246,187.45,1093,445,,195.1785714,79.46428571 +11247,187.4666667,1098,446,,196.0714286,79.64285714 +11248,187.4833333,1104,446,,197.1428571,79.64285714 +11249,187.5,1112,447,,198.5714286,79.82142857 +11250,187.5166667,1121,448,,200.1785714,80 +11251,187.5333333,1132,448,,202.1428571,80 +11252,187.55,1144,449,,204.2857143,80.17857143 +11253,187.5666667,1157,450,,206.6071429,80.35714286 +11254,187.5833333,1172,451,,209.2857143,80.53571429 +11255,187.6,1187,452,,211.9642857,80.71428571 +11256,187.6166667,1204,453,,215,80.89285714 +11257,187.6333333,1222,454,,218.2142857,81.07142857 +11258,187.65,1240,455,,221.4285714,81.25 +11259,187.6666667,1260,456,,225,81.42857143 +11260,187.6833333,1280,456,,228.5714286,81.42857143 +11261,187.7,1300,457,,232.1428571,81.60714286 +11262,187.7166667,1322,457,,236.0714286,81.60714286 +11263,187.7333333,1343,458,,239.8214286,81.78571429 +11264,187.75,1365,458,,243.75,81.78571429 +11265,187.7666667,1387,458,,247.6785714,81.78571429 +11266,187.7833333,1409,457,,251.6071429,81.60714286 +11267,187.8,1431,457,,255.5357143,81.60714286 +11268,187.8166667,1453,457,,259.4642857,81.60714286 +11269,187.8333333,1475,456,,263.3928571,81.42857143 +11270,187.85,1496,456,,267.1428571,81.42857143 +11271,187.8666667,1517,455,,270.8928571,81.25 +11272,187.8833333,1537,454,,274.4642857,81.07142857 +11273,187.9,1557,453,,278.0357143,80.89285714 +11274,187.9166667,1575,452,,281.25,80.71428571 +11275,187.9333333,1593,451,,284.4642857,80.53571429 +11276,187.95,1610,450,,287.5,80.35714286 +11277,187.9666667,1626,449,,290.3571429,80.17857143 +11278,187.9833333,1641,448,,293.0357143,80 +11279,188,1655,446,,295.5357143,79.64285714 +11280,188.0166667,1667,445,,297.6785714,79.46428571 +11281,188.0333333,1678,445,,299.6428571,79.46428571 +11282,188.05,1688,444,,301.4285714,79.28571429 +11283,188.0666667,1696,443,,302.8571429,79.10714286 +11284,188.0833333,1703,443,,304.1071429,79.10714286 +11285,188.1,1708,442,,305,78.92857143 +11286,188.1166667,1712,442,,305.7142857,78.92857143 +11287,188.1333333,1714,442,,306.0714286,78.92857143 +11288,188.15,1714,442,,306.0714286,78.92857143 +11289,188.1666667,1714,442,,306.0714286,78.92857143 +11290,188.1833333,1711,442,,305.5357143,78.92857143 +11291,188.2,1707,443,,304.8214286,79.10714286 +11292,188.2166667,1702,443,,303.9285714,79.10714286 +11293,188.2333333,1695,444,,302.6785714,79.28571429 +11294,188.25,1687,445,,301.25,79.46428571 +11295,188.2666667,1677,446,,299.4642857,79.64285714 +11296,188.2833333,1666,447,,297.5,79.82142857 +11297,188.3,1654,448,,295.3571429,80 +11298,188.3166667,1640,449,,292.8571429,80.17857143 +11299,188.3333333,1625,450,,290.1785714,80.35714286 +11300,188.35,1609,451,,287.3214286,80.53571429 +11301,188.3666667,1592,453,,284.2857143,80.89285714 +11302,188.3833333,1574,454,,281.0714286,81.07142857 +11303,188.4,1555,455,,277.6785714,81.25 +11304,188.4166667,1536,456,,274.2857143,81.42857143 +11305,188.4333333,1516,457,,270.7142857,81.60714286 +11306,188.45,1495,458,,266.9642857,81.78571429 +11307,188.4666667,1474,458,,263.2142857,81.78571429 +11308,188.4833333,1453,459,,259.4642857,81.96428571 +11309,188.5,1431,459,,255.5357143,81.96428571 +11310,188.5166667,1408,460,,251.4285714,82.14285714 +11311,188.5333333,1387,460,,247.6785714,82.14285714 +11312,188.55,1365,460,,243.75,82.14285714 +11313,188.5666667,1343,460,,239.8214286,82.14285714 +11314,188.5833333,1322,459,,236.0714286,81.96428571 +11315,188.6,1301,459,,232.3214286,81.96428571 +11316,188.6166667,1280,458,,228.5714286,81.78571429 +11317,188.6333333,1260,457,,225,81.60714286 +11318,188.65,1241,456,,221.6071429,81.42857143 +11319,188.6666667,1223,455,,218.3928571,81.25 +11320,188.6833333,1205,455,,215.1785714,81.25 +11321,188.7,1188,454,,212.1428571,81.07142857 +11322,188.7166667,1173,453,,209.4642857,80.89285714 +11323,188.7333333,1158,452,,206.7857143,80.71428571 +11324,188.75,1145,450,,204.4642857,80.35714286 +11325,188.7666667,1133,449,,202.3214286,80.17857143 +11326,188.7833333,1122,449,,200.3571429,80.17857143 +11327,188.8,1113,448,,198.75,80 +11328,188.8166667,1105,447,,197.3214286,79.82142857 +11329,188.8333333,1099,447,,196.25,79.82142857 +11330,188.85,1093,446,,195.1785714,79.64285714 +11331,188.8666667,1090,446,,194.6428571,79.64285714 +11332,188.8833333,1089,446,,194.4642857,79.64285714 +11333,188.9,1089,446,,194.4642857,79.64285714 +11334,188.9166667,1089,446,,194.4642857,79.64285714 +11335,188.9333333,1092,446,,195,79.64285714 +11336,188.95,1096,446,,195.7142857,79.64285714 +11337,188.9666667,1102,447,,196.7857143,79.82142857 +11338,188.9833333,1109,447,,198.0357143,79.82142857 +11339,189,1118,448,,199.6428571,80 +11340,189.0166667,1128,448,,201.4285714,80 +11341,189.0333333,1139,449,,203.3928571,80.17857143 +11342,189.05,1152,450,,205.7142857,80.35714286 +11343,189.0666667,1166,451,,208.2142857,80.53571429 +11344,189.0833333,1181,452,,210.8928571,80.71428571 +11345,189.1,1197,453,,213.75,80.89285714 +11346,189.1166667,1214,454,,216.7857143,81.07142857 +11347,189.1333333,1232,455,,220,81.25 +11348,189.15,1251,456,,223.3928571,81.42857143 +11349,189.1666667,1271,456,,226.9642857,81.42857143 +11350,189.1833333,1291,457,,230.5357143,81.60714286 +11351,189.2,1313,458,,234.4642857,81.78571429 +11352,189.2166667,1334,458,,238.2142857,81.78571429 +11353,189.2333333,1355,458,,241.9642857,81.78571429 +11354,189.25,1377,458,,245.8928571,81.78571429 +11355,189.2666667,1399,458,,249.8214286,81.78571429 +11356,189.2833333,1421,458,,253.75,81.78571429 +11357,189.3,1443,457,,257.6785714,81.60714286 +11358,189.3166667,1465,457,,261.6071429,81.60714286 +11359,189.3333333,1486,456,,265.3571429,81.42857143 +11360,189.35,1507,456,,269.1071429,81.42857143 +11361,189.3666667,1527,455,,272.6785714,81.25 +11362,189.3833333,1546,454,,276.0714286,81.07142857 +11363,189.4,1566,453,,279.6428571,80.89285714 +11364,189.4166667,1584,452,,282.8571429,80.71428571 +11365,189.4333333,1601,451,,285.8928571,80.53571429 +11366,189.45,1618,450,,288.9285714,80.35714286 +11367,189.4666667,1633,449,,291.6071429,80.17857143 +11368,189.4833333,1647,448,,294.1071429,80 +11369,189.5,1660,447,,296.4285714,79.82142857 +11370,189.5166667,1672,445,,298.5714286,79.46428571 +11371,189.5333333,1682,444,,300.3571429,79.28571429 +11372,189.55,1691,443,,301.9642857,79.10714286 +11373,189.5666667,1698,443,,303.2142857,79.10714286 +11374,189.5833333,1704,443,,304.2857143,79.10714286 +11375,189.6,1709,442,,305.1785714,78.92857143 +11376,189.6166667,1712,442,,305.7142857,78.92857143 +11377,189.6333333,1712,442,,305.7142857,78.92857143 +11378,189.65,1712,442,,305.7142857,78.92857143 +11379,189.6666667,1711,442,,305.5357143,78.92857143 +11380,189.6833333,1708,443,,305,79.10714286 +11381,189.7,1703,443,,304.1071429,79.10714286 +11382,189.7166667,1697,444,,303.0357143,79.28571429 +11383,189.7333333,1690,444,,301.7857143,79.28571429 +11384,189.75,1681,445,,300.1785714,79.46428571 +11385,189.7666667,1670,447,,298.2142857,79.82142857 +11386,189.7833333,1658,448,,296.0714286,80 +11387,189.8,1645,449,,293.75,80.17857143 +11388,189.8166667,1631,450,,291.25,80.35714286 +11389,189.8333333,1616,451,,288.5714286,80.53571429 +11390,189.85,1599,452,,285.5357143,80.71428571 +11391,189.8666667,1582,454,,282.5,81.07142857 +11392,189.8833333,1564,455,,279.2857143,81.25 +11393,189.9,1545,456,,275.8928571,81.42857143 +11394,189.9166667,1525,457,,272.3214286,81.60714286 +11395,189.9333333,1505,457,,268.75,81.60714286 +11396,189.95,1484,458,,265,81.78571429 +11397,189.9666667,1462,459,,261.0714286,81.96428571 +11398,189.9833333,1441,459,,257.3214286,81.96428571 +11399,190,1419,460,,253.3928571,82.14285714 +11400,190.0166667,1397,460,,249.4642857,82.14285714 +11401,190.0333333,1375,460,,245.5357143,82.14285714 +11402,190.05,1354,460,,241.7857143,82.14285714 +11403,190.0666667,1332,460,,237.8571429,82.14285714 +11404,190.0833333,1311,460,,234.1071429,82.14285714 +11405,190.1,1290,459,,230.3571429,81.96428571 +11406,190.1166667,1270,458,,226.7857143,81.78571429 +11407,190.1333333,1251,457,,223.3928571,81.60714286 +11408,190.15,1232,456,,220,81.42857143 +11409,190.1666667,1214,455,,216.7857143,81.25 +11410,190.1833333,1197,454,,213.75,81.07142857 +11411,190.2,1181,453,,210.8928571,80.89285714 +11412,190.2166667,1166,452,,208.2142857,80.71428571 +11413,190.2333333,1152,451,,205.7142857,80.53571429 +11414,190.25,1140,450,,203.5714286,80.35714286 +11415,190.2666667,1128,449,,201.4285714,80.17857143 +11416,190.2833333,1118,448,,199.6428571,80 +11417,190.3,1110,448,,198.2142857,80 +11418,190.3166667,1102,447,,196.7857143,79.82142857 +11419,190.3333333,1097,446,,195.8928571,79.64285714 +11420,190.35,1093,446,,195.1785714,79.64285714 +11421,190.3666667,1090,446,,194.6428571,79.64285714 +11422,190.3833333,1090,446,,194.6428571,79.64285714 +11423,190.4,1090,446,,194.6428571,79.64285714 +11424,190.4166667,1091,446,,194.8214286,79.64285714 +11425,190.4333333,1094,446,,195.3571429,79.64285714 +11426,190.45,1099,446,,196.25,79.64285714 +11427,190.4666667,1106,447,,197.5,79.82142857 +11428,190.4833333,1113,447,,198.75,79.82142857 +11429,190.5,1123,448,,200.5357143,80 +11430,190.5166667,1134,449,,202.5,80.17857143 +11431,190.5333333,1145,449,,204.4642857,80.17857143 +11432,190.55,1158,451,,206.7857143,80.53571429 +11433,190.5666667,1173,451,,209.4642857,80.53571429 +11434,190.5833333,1188,452,,212.1428571,80.71428571 +11435,190.6,1205,453,,215.1785714,80.89285714 +11436,190.6166667,1223,454,,218.3928571,81.07142857 +11437,190.6333333,1241,455,,221.6071429,81.25 +11438,190.65,1260,456,,225,81.42857143 +11439,190.6666667,1280,457,,228.5714286,81.60714286 +11440,190.6833333,1301,457,,232.3214286,81.60714286 +11441,190.7,1322,458,,236.0714286,81.78571429 +11442,190.7166667,1343,458,,239.8214286,81.78571429 +11443,190.7333333,1365,458,,243.75,81.78571429 +11444,190.75,1387,458,,247.6785714,81.78571429 +11445,190.7666667,1409,458,,251.6071429,81.78571429 +11446,190.7833333,1431,457,,255.5357143,81.60714286 +11447,190.8,1453,457,,259.4642857,81.60714286 +11448,190.8166667,1474,457,,263.2142857,81.60714286 +11449,190.8333333,1495,456,,266.9642857,81.42857143 +11450,190.85,1516,455,,270.7142857,81.25 +11451,190.8666667,1536,454,,274.2857143,81.07142857 +11452,190.8833333,1555,454,,277.6785714,81.07142857 +11453,190.9,1574,453,,281.0714286,80.89285714 +11454,190.9166667,1592,452,,284.2857143,80.71428571 +11455,190.9333333,1608,450,,287.1428571,80.35714286 +11456,190.95,1624,449,,290,80.17857143 +11457,190.9666667,1639,448,,292.6785714,80 +11458,190.9833333,1652,447,,295,79.82142857 +11459,191,1664,446,,297.1428571,79.64285714 +11460,191.0166667,1675,445,,299.1071429,79.46428571 +11461,191.0333333,1685,444,,300.8928571,79.28571429 +11462,191.05,1693,443,,302.3214286,79.10714286 +11463,191.0666667,1700,443,,303.5714286,79.10714286 +11464,191.0833333,1705,442,,304.4642857,78.92857143 +11465,191.1,1709,442,,305.1785714,78.92857143 +11466,191.1166667,1711,442,,305.5357143,78.92857143 +11467,191.1333333,1711,442,,305.5357143,78.92857143 +11468,191.15,1711,442,,305.5357143,78.92857143 +11469,191.1666667,1708,442,,305,78.92857143 +11470,191.1833333,1704,443,,304.2857143,79.10714286 +11471,191.2,1699,444,,303.3928571,79.28571429 +11472,191.2166667,1692,444,,302.1428571,79.28571429 +11473,191.2333333,1684,445,,300.7142857,79.46428571 +11474,191.25,1674,446,,298.9285714,79.64285714 +11475,191.2666667,1663,447,,296.9642857,79.82142857 +11476,191.2833333,1651,448,,294.8214286,80 +11477,191.3,1637,449,,292.3214286,80.17857143 +11478,191.3166667,1623,451,,289.8214286,80.53571429 +11479,191.3333333,1607,452,,286.9642857,80.71428571 +11480,191.35,1590,453,,283.9285714,80.89285714 +11481,191.3666667,1572,454,,280.7142857,81.07142857 +11482,191.3833333,1554,455,,277.5,81.25 +11483,191.4,1535,456,,274.1071429,81.42857143 +11484,191.4166667,1515,457,,270.5357143,81.60714286 +11485,191.4333333,1495,458,,266.9642857,81.78571429 +11486,191.45,1473,458,,263.0357143,81.78571429 +11487,191.4666667,1452,459,,259.2857143,81.96428571 +11488,191.4833333,1430,459,,255.3571429,81.96428571 +11489,191.5,1409,460,,251.6071429,82.14285714 +11490,191.5166667,1387,460,,247.6785714,82.14285714 +11491,191.5333333,1365,460,,243.75,82.14285714 +11492,191.55,1343,460,,239.8214286,82.14285714 +11493,191.5666667,1323,459,,236.25,81.96428571 +11494,191.5833333,1302,459,,232.5,81.96428571 +11495,191.6,1281,458,,228.75,81.78571429 +11496,191.6166667,1261,458,,225.1785714,81.78571429 +11497,191.6333333,1242,456,,221.7857143,81.42857143 +11498,191.65,1224,455,,218.5714286,81.25 +11499,191.6666667,1207,455,,215.5357143,81.25 +11500,191.6833333,1190,453,,212.5,80.89285714 +11501,191.7,1174,453,,209.6428571,80.89285714 +11502,191.7166667,1160,452,,207.1428571,80.71428571 +11503,191.7333333,1147,450,,204.8214286,80.35714286 +11504,191.75,1135,450,,202.6785714,80.35714286 +11505,191.7666667,1124,448,,200.7142857,80 +11506,191.7833333,1115,448,,199.1071429,80 +11507,191.8,1107,447,,197.6785714,79.82142857 +11508,191.8166667,1100,446,,196.4285714,79.64285714 +11509,191.8333333,1095,446,,195.5357143,79.64285714 +11510,191.85,1092,446,,195,79.64285714 +11511,191.8666667,1090,445,,194.6428571,79.46428571 +11512,191.8833333,1090,445,,194.6428571,79.46428571 +11513,191.9,1090,445,,194.6428571,79.46428571 +11514,191.9166667,1093,446,,195.1785714,79.64285714 +11515,191.9333333,1097,446,,195.8928571,79.64285714 +11516,191.95,1103,446,,196.9642857,79.64285714 +11517,191.9666667,1110,447,,198.2142857,79.82142857 +11518,191.9833333,1119,448,,199.8214286,80 +11519,192,1129,448,,201.6071429,80 +11520,192.0166667,1140,449,,203.5714286,80.17857143 +11521,192.0333333,1152,450,,205.7142857,80.35714286 +11522,192.05,1166,451,,208.2142857,80.53571429 +11523,192.0666667,1181,452,,210.8928571,80.71428571 +11524,192.0833333,1197,453,,213.75,80.89285714 +11525,192.1,1214,454,,216.7857143,81.07142857 +11526,192.1166667,1232,455,,220,81.25 +11527,192.1333333,1251,456,,223.3928571,81.42857143 +11528,192.15,1270,457,,226.7857143,81.60714286 +11529,192.1666667,1291,457,,230.5357143,81.60714286 +11530,192.1833333,1312,458,,234.2857143,81.78571429 +11531,192.2,1333,458,,238.0357143,81.78571429 +11532,192.2166667,1354,458,,241.7857143,81.78571429 +11533,192.2333333,1375,458,,245.5357143,81.78571429 +11534,192.25,1397,458,,249.4642857,81.78571429 +11535,192.2666667,1419,458,,253.3928571,81.78571429 +11536,192.2833333,1441,458,,257.3214286,81.78571429 +11537,192.3,1463,457,,261.25,81.60714286 +11538,192.3166667,1484,457,,265,81.60714286 +11539,192.3333333,1505,456,,268.75,81.42857143 +11540,192.35,1525,455,,272.3214286,81.25 +11541,192.3666667,1544,455,,275.7142857,81.25 +11542,192.3833333,1563,454,,279.1071429,81.07142857 +11543,192.4,1582,453,,282.5,80.89285714 +11544,192.4166667,1598,451,,285.3571429,80.53571429 +11545,192.4333333,1615,450,,288.3928571,80.35714286 +11546,192.45,1630,449,,291.0714286,80.17857143 +11547,192.4666667,1644,448,,293.5714286,80 +11548,192.4833333,1657,447,,295.8928571,79.82142857 +11549,192.5,1668,446,,297.8571429,79.64285714 +11550,192.5166667,1679,445,,299.8214286,79.46428571 +11551,192.5333333,1687,444,,301.25,79.28571429 +11552,192.55,1695,444,,302.6785714,79.28571429 +11553,192.5666667,1701,443,,303.75,79.10714286 +11554,192.5833333,1705,443,,304.4642857,79.10714286 +11555,192.6,1708,442,,305,78.92857143 +11556,192.6166667,1708,442,,305,78.92857143 +11557,192.6333333,1708,442,,305,78.92857143 +11558,192.65,1708,443,,305,79.10714286 +11559,192.6666667,1705,443,,304.4642857,79.10714286 +11560,192.6833333,1701,443,,303.75,79.10714286 +11561,192.7,1694,444,,302.5,79.28571429 +11562,192.7166667,1687,445,,301.25,79.46428571 +11563,192.7333333,1678,446,,299.6428571,79.64285714 +11564,192.75,1668,447,,297.8571429,79.82142857 +11565,192.7666667,1656,448,,295.7142857,80 +11566,192.7833333,1643,449,,293.3928571,80.17857143 +11567,192.8,1630,450,,291.0714286,80.35714286 +11568,192.8166667,1614,451,,288.2142857,80.53571429 +11569,192.8333333,1598,452,,285.3571429,80.71428571 +11570,192.85,1581,453,,282.3214286,80.89285714 +11571,192.8666667,1563,455,,279.1071429,81.25 +11572,192.8833333,1544,456,,275.7142857,81.42857143 +11573,192.9,1525,456,,272.3214286,81.42857143 +11574,192.9166667,1504,457,,268.5714286,81.60714286 +11575,192.9333333,1484,458,,265,81.78571429 +11576,192.95,1463,458,,261.25,81.78571429 +11577,192.9666667,1441,459,,257.3214286,81.96428571 +11578,192.9833333,1419,460,,253.3928571,82.14285714 +11579,193,1398,460,,249.6428571,82.14285714 +11580,193.0166667,1376,460,,245.7142857,82.14285714 +11581,193.0333333,1355,460,,241.9642857,82.14285714 +11582,193.05,1334,460,,238.2142857,82.14285714 +11583,193.0666667,1313,459,,234.4642857,81.96428571 +11584,193.0833333,1292,459,,230.7142857,81.96428571 +11585,193.1,1272,458,,227.1428571,81.78571429 +11586,193.1166667,1253,457,,223.75,81.60714286 +11587,193.1333333,1234,456,,220.3571429,81.42857143 +11588,193.15,1216,455,,217.1428571,81.25 +11589,193.1666667,1199,454,,214.1071429,81.07142857 +11590,193.1833333,1183,453,,211.25,80.89285714 +11591,193.2,1168,452,,208.5714286,80.71428571 +11592,193.2166667,1154,451,,206.0714286,80.53571429 +11593,193.2333333,1142,450,,203.9285714,80.35714286 +11594,193.25,1130,449,,201.7857143,80.17857143 +11595,193.2666667,1120,448,,200,80 +11596,193.2833333,1112,448,,198.5714286,80 +11597,193.3,1105,447,,197.3214286,79.82142857 +11598,193.3166667,1099,447,,196.25,79.82142857 +11599,193.3333333,1095,446,,195.5357143,79.64285714 +11600,193.35,1092,446,,195,79.64285714 +11601,193.3666667,1092,446,,195,79.64285714 +11602,193.3833333,1092,446,,195,79.64285714 +11603,193.4,1093,446,,195.1785714,79.64285714 +11604,193.4166667,1096,446,,195.7142857,79.64285714 +11605,193.4333333,1101,446,,196.6071429,79.64285714 +11606,193.45,1107,447,,197.6785714,79.82142857 +11607,193.4666667,1115,447,,199.1071429,79.82142857 +11608,193.4833333,1125,448,,200.8928571,80 +11609,193.5,1135,449,,202.6785714,80.17857143 +11610,193.5166667,1147,450,,204.8214286,80.35714286 +11611,193.5333333,1160,450,,207.1428571,80.35714286 +11612,193.55,1174,451,,209.6428571,80.53571429 +11613,193.5666667,1190,452,,212.5,80.71428571 +11614,193.5833333,1206,453,,215.3571429,80.89285714 +11615,193.6,1224,454,,218.5714286,81.07142857 +11616,193.6166667,1242,455,,221.7857143,81.25 +11617,193.6333333,1261,455,,225.1785714,81.25 +11618,193.65,1281,456,,228.75,81.42857143 +11619,193.6666667,1301,457,,232.3214286,81.60714286 +11620,193.6833333,1322,457,,236.0714286,81.60714286 +11621,193.7,1344,458,,240,81.78571429 +11622,193.7166667,1364,458,,243.5714286,81.78571429 +11623,193.7333333,1386,458,,247.5,81.78571429 +11624,193.75,1408,458,,251.4285714,81.78571429 +11625,193.7666667,1430,457,,255.3571429,81.60714286 +11626,193.7833333,1451,457,,259.1071429,81.60714286 +11627,193.8,1473,456,,263.0357143,81.42857143 +11628,193.8166667,1494,456,,266.7857143,81.42857143 +11629,193.8333333,1514,455,,270.3571429,81.25 +11630,193.85,1534,454,,273.9285714,81.07142857 +11631,193.8666667,1554,453,,277.5,80.89285714 +11632,193.8833333,1572,452,,280.7142857,80.71428571 +11633,193.9,1590,451,,283.9285714,80.53571429 +11634,193.9166667,1607,450,,286.9642857,80.35714286 +11635,193.9333333,1622,449,,289.6428571,80.17857143 +11636,193.95,1637,448,,292.3214286,80 +11637,193.9666667,1650,447,,294.6428571,79.82142857 +11638,193.9833333,1662,446,,296.7857143,79.64285714 +11639,194,1673,445,,298.75,79.46428571 +11640,194.0166667,1683,444,,300.5357143,79.28571429 +11641,194.0333333,1691,444,,301.9642857,79.28571429 +11642,194.05,1697,443,,303.0357143,79.10714286 +11643,194.0666667,1703,443,,304.1071429,79.10714286 +11644,194.0833333,1706,442,,304.6428571,78.92857143 +11645,194.1,1708,442,,305,78.92857143 +11646,194.1166667,1708,442,,305,78.92857143 +11647,194.1333333,1708,442,,305,78.92857143 +11648,194.15,1706,443,,304.6428571,79.10714286 +11649,194.1666667,1702,443,,303.9285714,79.10714286 +11650,194.1833333,1697,444,,303.0357143,79.28571429 +11651,194.2,1690,444,,301.7857143,79.28571429 +11652,194.2166667,1682,445,,300.3571429,79.46428571 +11653,194.2333333,1672,446,,298.5714286,79.64285714 +11654,194.25,1662,447,,296.7857143,79.82142857 +11655,194.2666667,1649,448,,294.4642857,80 +11656,194.2833333,1636,449,,292.1428571,80.17857143 +11657,194.3,1622,450,,289.6428571,80.35714286 +11658,194.3166667,1606,451,,286.7857143,80.53571429 +11659,194.3333333,1589,453,,283.75,80.89285714 +11660,194.35,1572,454,,280.7142857,81.07142857 +11661,194.3666667,1553,455,,277.3214286,81.25 +11662,194.3833333,1534,456,,273.9285714,81.42857143 +11663,194.4,1514,457,,270.3571429,81.60714286 +11664,194.4166667,1494,457,,266.7857143,81.60714286 +11665,194.4333333,1473,458,,263.0357143,81.78571429 +11666,194.45,1453,459,,259.4642857,81.96428571 +11667,194.4666667,1431,459,,255.5357143,81.96428571 +11668,194.4833333,1409,459,,251.6071429,81.96428571 +11669,194.5,1388,460,,247.8571429,82.14285714 +11670,194.5166667,1366,460,,243.9285714,82.14285714 +11671,194.5333333,1345,460,,240.1785714,82.14285714 +11672,194.55,1324,460,,236.4285714,82.14285714 +11673,194.5666667,1303,459,,232.6785714,81.96428571 +11674,194.5833333,1283,458,,229.1071429,81.78571429 +11675,194.6,1263,457,,225.5357143,81.60714286 +11676,194.6166667,1244,457,,222.1428571,81.60714286 +11677,194.6333333,1226,456,,218.9285714,81.42857143 +11678,194.65,1209,455,,215.8928571,81.25 +11679,194.6666667,1192,454,,212.8571429,81.07142857 +11680,194.6833333,1177,453,,210.1785714,80.89285714 +11681,194.7,1162,452,,207.5,80.71428571 +11682,194.7166667,1149,451,,205.1785714,80.53571429 +11683,194.7333333,1137,450,,203.0357143,80.35714286 +11684,194.75,1127,449,,201.25,80.17857143 +11685,194.7666667,1117,448,,199.4642857,80 +11686,194.7833333,1109,447,,198.0357143,79.82142857 +11687,194.8,1103,447,,196.9642857,79.82142857 +11688,194.8166667,1098,447,,196.0714286,79.82142857 +11689,194.8333333,1095,446,,195.5357143,79.64285714 +11690,194.85,1093,446,,195.1785714,79.64285714 +11691,194.8666667,1093,446,,195.1785714,79.64285714 +11692,194.8833333,1093,446,,195.1785714,79.64285714 +11693,194.9,1096,446,,195.7142857,79.64285714 +11694,194.9166667,1100,446,,196.4285714,79.64285714 +11695,194.9333333,1105,447,,197.3214286,79.82142857 +11696,194.95,1112,447,,198.5714286,79.82142857 +11697,194.9666667,1121,448,,200.1785714,80 +11698,194.9833333,1131,448,,201.9642857,80 +11699,195,1142,449,,203.9285714,80.17857143 +11700,195.0166667,1154,450,,206.0714286,80.35714286 +11701,195.0333333,1168,451,,208.5714286,80.53571429 +11702,195.05,1183,452,,211.25,80.71428571 +11703,195.0666667,1199,453,,214.1071429,80.89285714 +11704,195.0833333,1215,454,,216.9642857,81.07142857 +11705,195.1,1233,455,,220.1785714,81.25 +11706,195.1166667,1252,456,,223.5714286,81.42857143 +11707,195.1333333,1271,456,,226.9642857,81.42857143 +11708,195.15,1291,457,,230.5357143,81.60714286 +11709,195.1666667,1312,458,,234.2857143,81.78571429 +11710,195.1833333,1333,458,,238.0357143,81.78571429 +11711,195.2,1354,458,,241.7857143,81.78571429 +11712,195.2166667,1376,458,,245.7142857,81.78571429 +11713,195.2333333,1397,458,,249.4642857,81.78571429 +11714,195.25,1419,458,,253.3928571,81.78571429 +11715,195.2666667,1440,457,,257.1428571,81.60714286 +11716,195.2833333,1462,457,,261.0714286,81.60714286 +11717,195.3,1483,456,,264.8214286,81.42857143 +11718,195.3166667,1504,455,,268.5714286,81.25 +11719,195.3333333,1524,455,,272.1428571,81.25 +11720,195.35,1543,454,,275.5357143,81.07142857 +11721,195.3666667,1562,453,,278.9285714,80.89285714 +11722,195.3833333,1580,452,,282.1428571,80.71428571 +11723,195.4,1597,451,,285.1785714,80.53571429 +11724,195.4166667,1614,450,,288.2142857,80.35714286 +11725,195.4333333,1629,448,,290.8928571,80 +11726,195.45,1642,448,,293.2142857,80 +11727,195.4666667,1655,447,,295.5357143,79.82142857 +11728,195.4833333,1667,446,,297.6785714,79.64285714 +11729,195.5,1677,445,,299.4642857,79.46428571 +11730,195.5166667,1686,444,,301.0714286,79.28571429 +11731,195.5333333,1693,443,,302.3214286,79.10714286 +11732,195.55,1699,443,,303.3928571,79.10714286 +11733,195.5666667,1704,442,,304.2857143,78.92857143 +11734,195.5833333,1707,442,,304.8214286,78.92857143 +11735,195.6,1707,442,,304.8214286,78.92857143 +11736,195.6166667,1707,442,,304.8214286,78.92857143 +11737,195.6333333,1707,442,,304.8214286,78.92857143 +11738,195.65,1704,443,,304.2857143,79.10714286 +11739,195.6666667,1699,443,,303.3928571,79.10714286 +11740,195.6833333,1693,444,,302.3214286,79.28571429 +11741,195.7,1686,445,,301.0714286,79.46428571 +11742,195.7166667,1677,446,,299.4642857,79.64285714 +11743,195.7333333,1667,447,,297.6785714,79.82142857 +11744,195.75,1655,447,,295.5357143,79.82142857 +11745,195.7666667,1642,448,,293.2142857,80 +11746,195.7833333,1629,450,,290.8928571,80.35714286 +11747,195.8,1613,451,,288.0357143,80.53571429 +11748,195.8166667,1597,452,,285.1785714,80.71428571 +11749,195.8333333,1580,453,,282.1428571,80.89285714 +11750,195.85,1562,454,,278.9285714,81.07142857 +11751,195.8666667,1543,455,,275.5357143,81.25 +11752,195.8833333,1524,456,,272.1428571,81.42857143 +11753,195.9,1504,457,,268.5714286,81.60714286 +11754,195.9166667,1483,457,,264.8214286,81.60714286 +11755,195.9333333,1463,458,,261.25,81.78571429 +11756,195.95,1441,459,,257.3214286,81.96428571 +11757,195.9666667,1420,459,,253.5714286,81.96428571 +11758,195.9833333,1398,459,,249.6428571,81.96428571 +11759,196,1377,459,,245.8928571,81.96428571 +11760,196.0166667,1355,459,,241.9642857,81.96428571 +11761,196.0333333,1334,459,,238.2142857,81.96428571 +11762,196.05,1313,459,,234.4642857,81.96428571 +11763,196.0666667,1293,458,,230.8928571,81.78571429 +11764,196.0833333,1273,457,,227.3214286,81.60714286 +11765,196.1,1254,457,,223.9285714,81.60714286 +11766,196.1166667,1235,456,,220.5357143,81.42857143 +11767,196.1333333,1217,455,,217.3214286,81.25 +11768,196.15,1200,454,,214.2857143,81.07142857 +11769,196.1666667,1184,453,,211.4285714,80.89285714 +11770,196.1833333,1170,452,,208.9285714,80.71428571 +11771,196.2,1156,451,,206.4285714,80.53571429 +11772,196.2166667,1144,450,,204.2857143,80.35714286 +11773,196.2333333,1132,449,,202.1428571,80.17857143 +11774,196.25,1122,448,,200.3571429,80 +11775,196.2666667,1114,447,,198.9285714,79.82142857 +11776,196.2833333,1107,447,,197.6785714,79.82142857 +11777,196.3,1101,446,,196.6071429,79.64285714 +11778,196.3166667,1097,446,,195.8928571,79.64285714 +11779,196.3333333,1094,446,,195.3571429,79.64285714 +11780,196.35,1094,446,,195.3571429,79.64285714 +11781,196.3666667,1094,446,,195.3571429,79.64285714 +11782,196.3833333,1095,446,,195.5357143,79.64285714 +11783,196.4,1098,446,,196.0714286,79.64285714 +11784,196.4166667,1103,446,,196.9642857,79.64285714 +11785,196.4333333,1109,447,,198.0357143,79.82142857 +11786,196.45,1117,447,,199.4642857,79.82142857 +11787,196.4666667,1126,448,,201.0714286,80 +11788,196.4833333,1137,448,,203.0357143,80 +11789,196.5,1148,449,,205,80.17857143 +11790,196.5166667,1161,450,,207.3214286,80.35714286 +11791,196.5333333,1175,451,,209.8214286,80.53571429 +11792,196.55,1191,452,,212.6785714,80.71428571 +11793,196.5666667,1207,453,,215.5357143,80.89285714 +11794,196.5833333,1224,454,,218.5714286,81.07142857 +11795,196.6,1243,455,,221.9642857,81.25 +11796,196.6166667,1261,456,,225.1785714,81.42857143 +11797,196.6333333,1281,456,,228.75,81.42857143 +11798,196.65,1301,457,,232.3214286,81.60714286 +11799,196.6666667,1322,458,,236.0714286,81.78571429 +11800,196.6833333,1343,458,,239.8214286,81.78571429 +11801,196.7,1365,458,,243.75,81.78571429 +11802,196.7166667,1386,458,,247.5,81.78571429 +11803,196.7333333,1408,458,,251.4285714,81.78571429 +11804,196.75,1430,458,,255.3571429,81.78571429 +11805,196.7666667,1451,457,,259.1071429,81.60714286 +11806,196.7833333,1472,457,,262.8571429,81.60714286 +11807,196.8,1493,456,,266.6071429,81.42857143 +11808,196.8166667,1513,455,,270.1785714,81.25 +11809,196.8333333,1533,454,,273.75,81.07142857 +11810,196.85,1552,453,,277.1428571,80.89285714 +11811,196.8666667,1570,452,,280.3571429,80.71428571 +11812,196.8833333,1588,451,,283.5714286,80.53571429 +11813,196.9,1605,450,,286.6071429,80.35714286 +11814,196.9166667,1620,449,,289.2857143,80.17857143 +11815,196.9333333,1634,448,,291.7857143,80 +11816,196.95,1648,447,,294.2857143,79.82142857 +11817,196.9666667,1660,446,,296.4285714,79.64285714 +11818,196.9833333,1671,446,,298.3928571,79.64285714 +11819,197,1680,445,,300,79.46428571 +11820,197.0166667,1689,444,,301.6071429,79.28571429 +11821,197.0333333,1695,443,,302.6785714,79.10714286 +11822,197.05,1700,443,,303.5714286,79.10714286 +11823,197.0666667,1704,442,,304.2857143,78.92857143 +11824,197.0833333,1706,442,,304.6428571,78.92857143 +11825,197.1,1706,442,,304.6428571,78.92857143 +11826,197.1166667,1706,443,,304.6428571,79.10714286 +11827,197.1333333,1704,443,,304.2857143,79.10714286 +11828,197.15,1700,443,,303.5714286,79.10714286 +11829,197.1666667,1695,444,,302.6785714,79.28571429 +11830,197.1833333,1689,445,,301.6071429,79.46428571 +11831,197.2,1680,445,,300,79.46428571 +11832,197.2166667,1671,446,,298.3928571,79.64285714 +11833,197.2333333,1661,447,,296.6071429,79.82142857 +11834,197.25,1648,448,,294.2857143,80 +11835,197.2666667,1635,449,,291.9642857,80.17857143 +11836,197.2833333,1621,450,,289.4642857,80.35714286 +11837,197.3,1605,452,,286.6071429,80.71428571 +11838,197.3166667,1589,453,,283.75,80.89285714 +11839,197.3333333,1571,454,,280.5357143,81.07142857 +11840,197.35,1553,455,,277.3214286,81.25 +11841,197.3666667,1534,456,,273.9285714,81.42857143 +11842,197.3833333,1514,457,,270.3571429,81.60714286 +11843,197.4,1494,458,,266.7857143,81.78571429 +11844,197.4166667,1474,458,,263.2142857,81.78571429 +11845,197.4333333,1452,459,,259.2857143,81.96428571 +11846,197.45,1431,459,,255.5357143,81.96428571 +11847,197.4666667,1410,459,,251.7857143,81.96428571 +11848,197.4833333,1388,459,,247.8571429,81.96428571 +11849,197.5,1367,459,,244.1071429,81.96428571 +11850,197.5166667,1346,459,,240.3571429,81.96428571 +11851,197.5333333,1325,459,,236.6071429,81.96428571 +11852,197.55,1304,459,,232.8571429,81.96428571 +11853,197.5666667,1284,458,,229.2857143,81.78571429 +11854,197.5833333,1264,457,,225.7142857,81.60714286 +11855,197.6,1245,456,,222.3214286,81.42857143 +11856,197.6166667,1227,455,,219.1071429,81.25 +11857,197.6333333,1210,454,,216.0714286,81.07142857 +11858,197.65,1193,453,,213.0357143,80.89285714 +11859,197.6666667,1178,452,,210.3571429,80.71428571 +11860,197.6833333,1164,451,,207.8571429,80.53571429 +11861,197.7,1151,450,,205.5357143,80.35714286 +11862,197.7166667,1139,449,,203.3928571,80.17857143 +11863,197.7333333,1128,449,,201.4285714,80.17857143 +11864,197.75,1119,448,,199.8214286,80 +11865,197.7666667,1111,447,,198.3928571,79.82142857 +11866,197.7833333,1105,446,,197.3214286,79.64285714 +11867,197.8,1100,446,,196.4285714,79.64285714 +11868,197.8166667,1096,446,,195.7142857,79.64285714 +11869,197.8333333,1095,446,,195.5357143,79.64285714 +11870,197.85,1095,446,,195.5357143,79.64285714 +11871,197.8666667,1095,446,,195.5357143,79.64285714 +11872,197.8833333,1098,446,,196.0714286,79.64285714 +11873,197.9,1102,446,,196.7857143,79.64285714 +11874,197.9166667,1107,446,,197.6785714,79.64285714 +11875,197.9333333,1114,447,,198.9285714,79.82142857 +11876,197.95,1123,447,,200.5357143,79.82142857 +11877,197.9666667,1132,448,,202.1428571,80 +11878,197.9833333,1143,449,,204.1071429,80.17857143 +11879,198,1156,450,,206.4285714,80.35714286 +11880,198.0166667,1170,451,,208.9285714,80.53571429 +11881,198.0333333,1184,452,,211.4285714,80.71428571 +11882,198.05,1200,453,,214.2857143,80.89285714 +11883,198.0666667,1217,453,,217.3214286,80.89285714 +11884,198.0833333,1234,454,,220.3571429,81.07142857 +11885,198.1,1253,455,,223.75,81.25 +11886,198.1166667,1272,456,,227.1428571,81.42857143 +11887,198.1333333,1292,457,,230.7142857,81.60714286 +11888,198.15,1313,457,,234.4642857,81.60714286 +11889,198.1666667,1334,458,,238.2142857,81.78571429 +11890,198.1833333,1355,458,,241.9642857,81.78571429 +11891,198.2,1377,458,,245.8928571,81.78571429 +11892,198.2166667,1398,457,,249.6428571,81.60714286 +11893,198.2333333,1419,457,,253.3928571,81.60714286 +11894,198.25,1441,457,,257.3214286,81.60714286 +11895,198.2666667,1462,457,,261.0714286,81.60714286 +11896,198.2833333,1483,456,,264.8214286,81.42857143 +11897,198.3,1503,455,,268.3928571,81.25 +11898,198.3166667,1524,455,,272.1428571,81.25 +11899,198.3333333,1543,454,,275.5357143,81.07142857 +11900,198.35,1562,453,,278.9285714,80.89285714 +11901,198.3666667,1579,452,,281.9642857,80.71428571 +11902,198.3833333,1597,451,,285.1785714,80.53571429 +11903,198.4,1613,450,,288.0357143,80.35714286 +11904,198.4166667,1628,449,,290.7142857,80.17857143 +11905,198.4333333,1641,448,,293.0357143,80 +11906,198.45,1654,447,,295.3571429,79.82142857 +11907,198.4666667,1666,446,,297.5,79.64285714 +11908,198.4833333,1676,445,,299.2857143,79.46428571 +11909,198.5,1685,444,,300.8928571,79.28571429 +11910,198.5166667,1692,444,,302.1428571,79.28571429 +11911,198.5333333,1698,443,,303.2142857,79.10714286 +11912,198.55,1703,443,,304.1071429,79.10714286 +11913,198.5666667,1706,443,,304.6428571,79.10714286 +11914,198.5833333,1706,443,,304.6428571,79.10714286 +11915,198.6,1706,443,,304.6428571,79.10714286 +11916,198.6166667,1706,443,,304.6428571,79.10714286 +11917,198.6333333,1702,443,,303.9285714,79.10714286 +11918,198.65,1698,443,,303.2142857,79.10714286 +11919,198.6666667,1692,444,,302.1428571,79.28571429 +11920,198.6833333,1685,445,,300.8928571,79.46428571 +11921,198.7,1677,445,,299.4642857,79.46428571 +11922,198.7166667,1666,446,,297.5,79.64285714 +11923,198.7333333,1655,448,,295.5357143,80 +11924,198.75,1642,449,,293.2142857,80.17857143 +11925,198.7666667,1629,450,,290.8928571,80.35714286 +11926,198.7833333,1614,451,,288.2142857,80.53571429 +11927,198.8,1598,452,,285.3571429,80.71428571 +11928,198.8166667,1581,453,,282.3214286,80.89285714 +11929,198.8333333,1563,454,,279.1071429,81.07142857 +11930,198.85,1545,455,,275.8928571,81.25 +11931,198.8666667,1525,456,,272.3214286,81.42857143 +11932,198.8833333,1505,457,,268.75,81.60714286 +11933,198.9,1485,458,,265.1785714,81.78571429 +11934,198.9166667,1465,458,,261.6071429,81.78571429 +11935,198.9333333,1443,459,,257.6785714,81.96428571 +11936,198.95,1421,459,,253.75,81.96428571 +11937,198.9666667,1400,459,,250,81.96428571 +11938,198.9833333,1379,459,,246.25,81.96428571 +11939,199,1357,459,,242.3214286,81.96428571 +11940,199.0166667,1336,459,,238.5714286,81.96428571 +11941,199.0333333,1315,459,,234.8214286,81.96428571 +11942,199.05,1295,458,,231.25,81.78571429 +11943,199.0666667,1275,458,,227.6785714,81.78571429 +11944,199.0833333,1256,457,,224.2857143,81.60714286 +11945,199.1,1237,456,,220.8928571,81.42857143 +11946,199.1166667,1219,455,,217.6785714,81.25 +11947,199.1333333,1202,454,,214.6428571,81.07142857 +11948,199.15,1187,453,,211.9642857,80.89285714 +11949,199.1666667,1172,452,,209.2857143,80.71428571 +11950,199.1833333,1158,451,,206.7857143,80.53571429 +11951,199.2,1145,450,,204.4642857,80.35714286 +11952,199.2166667,1134,449,,202.5,80.17857143 +11953,199.2333333,1124,449,,200.7142857,80.17857143 +11954,199.25,1116,448,,199.2857143,80 +11955,199.2666667,1109,447,,198.0357143,79.82142857 +11956,199.2833333,1103,447,,196.9642857,79.82142857 +11957,199.3,1099,446,,196.25,79.64285714 +11958,199.3166667,1096,446,,195.7142857,79.64285714 +11959,199.3333333,1096,446,,195.7142857,79.64285714 +11960,199.35,1096,446,,195.7142857,79.64285714 +11961,199.3666667,1097,446,,195.8928571,79.64285714 +11962,199.3833333,1100,446,,196.4285714,79.64285714 +11963,199.4,1105,446,,197.3214286,79.64285714 +11964,199.4166667,1111,447,,198.3928571,79.82142857 +11965,199.4333333,1119,448,,199.8214286,80 +11966,199.45,1128,448,,201.4285714,80 +11967,199.4666667,1138,449,,203.2142857,80.17857143 +11968,199.4833333,1150,450,,205.3571429,80.35714286 +11969,199.5,1163,451,,207.6785714,80.53571429 +11970,199.5166667,1177,451,,210.1785714,80.53571429 +11971,199.5333333,1192,452,,212.8571429,80.71428571 +11972,199.55,1208,453,,215.7142857,80.89285714 +11973,199.5666667,1226,454,,218.9285714,81.07142857 +11974,199.5833333,1244,455,,222.1428571,81.25 +11975,199.6,1263,456,,225.5357143,81.42857143 +11976,199.6166667,1282,457,,228.9285714,81.60714286 +11977,199.6333333,1302,458,,232.5,81.78571429 +11978,199.65,1323,458,,236.25,81.78571429 +11979,199.6666667,1344,458,,240,81.78571429 +11980,199.6833333,1365,458,,243.75,81.78571429 +11981,199.7,1387,458,,247.6785714,81.78571429 +11982,199.7166667,1408,458,,251.4285714,81.78571429 +11983,199.7333333,1430,458,,255.3571429,81.78571429 +11984,199.75,1451,457,,259.1071429,81.60714286 +11985,199.7666667,1472,457,,262.8571429,81.60714286 +11986,199.7833333,1493,456,,266.6071429,81.42857143 +11987,199.8,1513,455,,270.1785714,81.25 +11988,199.8166667,1533,455,,273.75,81.25 +11989,199.8333333,1552,454,,277.1428571,81.07142857 +11990,199.85,1570,453,,280.3571429,80.89285714 +11991,199.8666667,1587,452,,283.3928571,80.71428571 +11992,199.8833333,1604,451,,286.4285714,80.53571429 +11993,199.9,1619,449,,289.1071429,80.17857143 +11994,199.9166667,1634,448,,291.7857143,80 +11995,199.9333333,1647,448,,294.1071429,80 +11996,199.95,1659,447,,296.25,79.82142857 +11997,199.9666667,1670,446,,298.2142857,79.64285714 +11998,199.9833333,1679,445,,299.8214286,79.46428571 +11999,200,1687,444,,301.25,79.28571429 +12000,200.0166667,1694,444,,302.5,79.28571429 +12001,200.0333333,1699,443,,303.3928571,79.10714286 +12002,200.05,1703,443,,304.1071429,79.10714286 +12003,200.0666667,1705,443,,304.4642857,79.10714286 +12004,200.0833333,1705,443,,304.4642857,79.10714286 +12005,200.1,1705,443,,304.4642857,79.10714286 +12006,200.1166667,1703,443,,304.1071429,79.10714286 +12007,200.1333333,1699,444,,303.3928571,79.28571429 +12008,200.15,1694,444,,302.5,79.28571429 +12009,200.1666667,1687,445,,301.25,79.46428571 +12010,200.1833333,1679,446,,299.8214286,79.64285714 +12011,200.2,1670,447,,298.2142857,79.82142857 +12012,200.2166667,1659,448,,296.25,80 +12013,200.2333333,1647,449,,294.1071429,80.17857143 +12014,200.25,1634,450,,291.7857143,80.35714286 +12015,200.2666667,1620,451,,289.2857143,80.53571429 +12016,200.2833333,1604,452,,286.4285714,80.71428571 +12017,200.3,1588,453,,283.5714286,80.89285714 +12018,200.3166667,1570,454,,280.3571429,81.07142857 +12019,200.3333333,1552,455,,277.1428571,81.25 +12020,200.35,1534,456,,273.9285714,81.42857143 +12021,200.3666667,1514,457,,270.3571429,81.60714286 +12022,200.3833333,1494,458,,266.7857143,81.78571429 +12023,200.4,1473,458,,263.0357143,81.78571429 +12024,200.4166667,1452,459,,259.2857143,81.96428571 +12025,200.4333333,1431,460,,255.5357143,82.14285714 +12026,200.45,1410,460,,251.7857143,82.14285714 +12027,200.4666667,1388,460,,247.8571429,82.14285714 +12028,200.4833333,1367,460,,244.1071429,82.14285714 +12029,200.5,1346,460,,240.3571429,82.14285714 +12030,200.5166667,1325,460,,236.6071429,82.14285714 +12031,200.5333333,1305,459,,233.0357143,81.96428571 +12032,200.55,1284,459,,229.2857143,81.96428571 +12033,200.5666667,1265,458,,225.8928571,81.78571429 +12034,200.5833333,1246,457,,222.5,81.60714286 +12035,200.6,1228,456,,219.2857143,81.42857143 +12036,200.6166667,1211,455,,216.25,81.25 +12037,200.6333333,1195,454,,213.3928571,81.07142857 +12038,200.65,1180,453,,210.7142857,80.89285714 +12039,200.6666667,1165,452,,208.0357143,80.71428571 +12040,200.6833333,1152,451,,205.7142857,80.53571429 +12041,200.7,1140,451,,203.5714286,80.53571429 +12042,200.7166667,1130,449,,201.7857143,80.17857143 +12043,200.7333333,1120,449,,200,80.17857143 +12044,200.75,1113,448,,198.75,80 +12045,200.7666667,1106,447,,197.5,79.82142857 +12046,200.7833333,1101,447,,196.6071429,79.82142857 +12047,200.8,1098,447,,196.0714286,79.82142857 +12048,200.8166667,1096,446,,195.7142857,79.64285714 +12049,200.8333333,1096,446,,195.7142857,79.64285714 +12050,200.85,1096,446,,195.7142857,79.64285714 +12051,200.8666667,1099,447,,196.25,79.82142857 +12052,200.8833333,1103,447,,196.9642857,79.82142857 +12053,200.9,1108,447,,197.8571429,79.82142857 +12054,200.9166667,1115,448,,199.1071429,80 +12055,200.9333333,1124,448,,200.7142857,80 +12056,200.95,1133,449,,202.3214286,80.17857143 +12057,200.9666667,1144,450,,204.2857143,80.35714286 +12058,200.9833333,1157,451,,206.6071429,80.53571429 +12059,201,1170,451,,208.9285714,80.53571429 +12060,201.0166667,1185,453,,211.6071429,80.89285714 +12061,201.0333333,1200,454,,214.2857143,81.07142857 +12062,201.05,1217,455,,217.3214286,81.25 +12063,201.0666667,1235,455,,220.5357143,81.25 +12064,201.0833333,1253,456,,223.75,81.42857143 +12065,201.1,1272,457,,227.1428571,81.60714286 +12066,201.1166667,1292,458,,230.7142857,81.78571429 +12067,201.1333333,1313,458,,234.4642857,81.78571429 +12068,201.15,1333,459,,238.0357143,81.96428571 +12069,201.1666667,1354,459,,241.7857143,81.96428571 +12070,201.1833333,1375,459,,245.5357143,81.96428571 +12071,201.2,1397,459,,249.4642857,81.96428571 +12072,201.2166667,1418,458,,253.2142857,81.78571429 +12073,201.2333333,1440,458,,257.1428571,81.78571429 +12074,201.25,1461,458,,260.8928571,81.78571429 +12075,201.2666667,1482,457,,264.6428571,81.60714286 +12076,201.2833333,1502,456,,268.2142857,81.42857143 +12077,201.3,1522,456,,271.7857143,81.42857143 +12078,201.3166667,1541,455,,275.1785714,81.25 +12079,201.3333333,1560,454,,278.5714286,81.07142857 +12080,201.35,1578,453,,281.7857143,80.89285714 +12081,201.3666667,1595,452,,284.8214286,80.71428571 +12082,201.3833333,1611,451,,287.6785714,80.53571429 +12083,201.4,1625,450,,290.1785714,80.35714286 +12084,201.4166667,1639,449,,292.6785714,80.17857143 +12085,201.4333333,1652,448,,295,80 +12086,201.45,1664,447,,297.1428571,79.82142857 +12087,201.4666667,1673,446,,298.75,79.64285714 +12088,201.4833333,1682,445,,300.3571429,79.46428571 +12089,201.5,1690,445,,301.7857143,79.46428571 +12090,201.5166667,1696,444,,302.8571429,79.28571429 +12091,201.5333333,1700,444,,303.5714286,79.28571429 +12092,201.55,1703,444,,304.1071429,79.28571429 +12093,201.5666667,1703,444,,304.1071429,79.28571429 +12094,201.5833333,1703,444,,304.1071429,79.28571429 +12095,201.6,1703,444,,304.1071429,79.28571429 +12096,201.6166667,1700,444,,303.5714286,79.28571429 +12097,201.6333333,1696,445,,302.8571429,79.46428571 +12098,201.65,1690,445,,301.7857143,79.46428571 +12099,201.6666667,1682,446,,300.3571429,79.64285714 +12100,201.6833333,1674,447,,298.9285714,79.82142857 +12101,201.7,1664,448,,297.1428571,80 +12102,201.7166667,1653,449,,295.1785714,80.17857143 +12103,201.7333333,1640,450,,292.8571429,80.35714286 +12104,201.75,1626,451,,290.3571429,80.53571429 +12105,201.7666667,1611,452,,287.6785714,80.71428571 +12106,201.7833333,1595,453,,284.8214286,80.89285714 +12107,201.8,1579,455,,281.9642857,81.25 +12108,201.8166667,1561,455,,278.75,81.25 +12109,201.8333333,1542,457,,275.3571429,81.60714286 +12110,201.85,1523,457,,271.9642857,81.60714286 +12111,201.8666667,1503,458,,268.3928571,81.78571429 +12112,201.8833333,1483,459,,264.8214286,81.96428571 +12113,201.9,1463,460,,261.25,82.14285714 +12114,201.9166667,1442,460,,257.5,82.14285714 +12115,201.9333333,1421,460,,253.75,82.14285714 +12116,201.95,1399,461,,249.8214286,82.32142857 +12117,201.9666667,1378,461,,246.0714286,82.32142857 +12118,201.9833333,1357,461,,242.3214286,82.32142857 +12119,202,1336,461,,238.5714286,82.32142857 +12120,202.0166667,1316,460,,235,82.14285714 +12121,202.0333333,1295,459,,231.25,81.96428571 +12122,202.05,1275,459,,227.6785714,81.96428571 +12123,202.0666667,1256,458,,224.2857143,81.78571429 +12124,202.0833333,1238,457,,221.0714286,81.60714286 +12125,202.1,1220,456,,217.8571429,81.42857143 +12126,202.1166667,1203,455,,214.8214286,81.25 +12127,202.1333333,1187,454,,211.9642857,81.07142857 +12128,202.15,1173,453,,209.4642857,80.89285714 +12129,202.1666667,1159,452,,206.9642857,80.71428571 +12130,202.1833333,1147,452,,204.8214286,80.71428571 +12131,202.2,1136,451,,202.8571429,80.53571429 +12132,202.2166667,1126,450,,201.0714286,80.35714286 +12133,202.2333333,1117,449,,199.4642857,80.17857143 +12134,202.25,1110,449,,198.2142857,80.17857143 +12135,202.2666667,1104,448,,197.1428571,80 +12136,202.2833333,1100,448,,196.4285714,80 +12137,202.3,1097,448,,195.8928571,80 +12138,202.3166667,1097,448,,195.8928571,80 +12139,202.3333333,1097,447,,195.8928571,79.82142857 +12140,202.35,1098,447,,196.0714286,79.82142857 +12141,202.3666667,1101,448,,196.6071429,80 +12142,202.3833333,1106,448,,197.5,80 +12143,202.4,1112,448,,198.5714286,80 +12144,202.4166667,1120,449,,200,80.17857143 +12145,202.4333333,1129,450,,201.6071429,80.35714286 +12146,202.45,1139,450,,203.3928571,80.35714286 +12147,202.4666667,1151,451,,205.5357143,80.53571429 +12148,202.4833333,1164,452,,207.8571429,80.71428571 +12149,202.5,1178,453,,210.3571429,80.89285714 +12150,202.5166667,1193,454,,213.0357143,81.07142857 +12151,202.5333333,1209,455,,215.8928571,81.25 +12152,202.55,1226,456,,218.9285714,81.42857143 +12153,202.5666667,1244,457,,222.1428571,81.60714286 +12154,202.5833333,1263,457,,225.5357143,81.60714286 +12155,202.6,1282,458,,228.9285714,81.78571429 +12156,202.6166667,1303,459,,232.6785714,81.96428571 +12157,202.6333333,1323,459,,236.25,81.96428571 +12158,202.65,1344,460,,240,82.14285714 +12159,202.6666667,1365,460,,243.75,82.14285714 +12160,202.6833333,1386,460,,247.5,82.14285714 +12161,202.7,1408,459,,251.4285714,81.96428571 +12162,202.7166667,1429,459,,255.1785714,81.96428571 +12163,202.7333333,1450,459,,258.9285714,81.96428571 +12164,202.75,1471,458,,262.6785714,81.78571429 +12165,202.7666667,1492,458,,266.4285714,81.78571429 +12166,202.7833333,1512,457,,270,81.60714286 +12167,202.8,1532,456,,273.5714286,81.42857143 +12168,202.8166667,1550,455,,276.7857143,81.25 +12169,202.8333333,1569,454,,280.1785714,81.07142857 +12170,202.85,1586,453,,283.2142857,80.89285714 +12171,202.8666667,1602,452,,286.0714286,80.71428571 +12172,202.8833333,1618,451,,288.9285714,80.53571429 +12173,202.9,1632,450,,291.4285714,80.35714286 +12174,202.9166667,1646,449,,293.9285714,80.17857143 +12175,202.9333333,1657,448,,295.8928571,80 +12176,202.95,1668,447,,297.8571429,79.82142857 +12177,202.9666667,1677,447,,299.4642857,79.82142857 +12178,202.9833333,1686,446,,301.0714286,79.64285714 +12179,203,1692,445,,302.1428571,79.46428571 +12180,203.0166667,1697,444,,303.0357143,79.28571429 +12181,203.0333333,1701,444,,303.75,79.28571429 +12182,203.05,1704,444,,304.2857143,79.28571429 +12183,203.0666667,1704,444,,304.2857143,79.28571429 +12184,203.0833333,1704,444,,304.2857143,79.28571429 +12185,203.1,1702,444,,303.9285714,79.28571429 +12186,203.1166667,1698,445,,303.2142857,79.46428571 +12187,203.1333333,1693,445,,302.3214286,79.46428571 +12188,203.15,1686,446,,301.0714286,79.64285714 +12189,203.1666667,1678,447,,299.6428571,79.82142857 +12190,203.1833333,1669,448,,298.0357143,80 +12191,203.2,1658,449,,296.0714286,80.17857143 +12192,203.2166667,1647,450,,294.1071429,80.35714286 +12193,203.2333333,1634,451,,291.7857143,80.53571429 +12194,203.25,1619,452,,289.1071429,80.71428571 +12195,203.2666667,1604,453,,286.4285714,80.89285714 +12196,203.2833333,1588,454,,283.5714286,81.07142857 +12197,203.3,1571,455,,280.5357143,81.25 +12198,203.3166667,1553,456,,277.3214286,81.42857143 +12199,203.3333333,1534,457,,273.9285714,81.60714286 +12200,203.35,1515,458,,270.5357143,81.78571429 +12201,203.3666667,1495,459,,266.9642857,81.96428571 +12202,203.3833333,1475,459,,263.3928571,81.96428571 +12203,203.4,1454,460,,259.6428571,82.14285714 +12204,203.4166667,1433,460,,255.8928571,82.14285714 +12205,203.4333333,1412,461,,252.1428571,82.32142857 +12206,203.45,1391,461,,248.3928571,82.32142857 +12207,203.4666667,1369,461,,244.4642857,82.32142857 +12208,203.4833333,1349,461,,240.8928571,82.32142857 +12209,203.5,1328,461,,237.1428571,82.32142857 +12210,203.5166667,1308,460,,233.5714286,82.14285714 +12211,203.5333333,1288,460,,230,82.14285714 +12212,203.55,1268,458,,226.4285714,81.78571429 +12213,203.5666667,1249,457,,223.0357143,81.60714286 +12214,203.5833333,1231,457,,219.8214286,81.60714286 +12215,203.6,1214,456,,216.7857143,81.42857143 +12216,203.6166667,1198,454,,213.9285714,81.07142857 +12217,203.6333333,1183,454,,211.25,81.07142857 +12218,203.65,1169,453,,208.75,80.89285714 +12219,203.6666667,1156,452,,206.4285714,80.71428571 +12220,203.6833333,1144,451,,204.2857143,80.53571429 +12221,203.7,1134,450,,202.5,80.35714286 +12222,203.7166667,1124,449,,200.7142857,80.17857143 +12223,203.7333333,1116,448,,199.2857143,80 +12224,203.75,1110,448,,198.2142857,80 +12225,203.7666667,1105,447,,197.3214286,79.82142857 +12226,203.7833333,1101,447,,196.6071429,79.82142857 +12227,203.8,1100,447,,196.4285714,79.82142857 +12228,203.8166667,1100,447,,196.4285714,79.82142857 +12229,203.8333333,1100,447,,196.4285714,79.82142857 +12230,203.85,1102,447,,196.7857143,79.82142857 +12231,203.8666667,1106,447,,197.5,79.82142857 +12232,203.8833333,1112,448,,198.5714286,80 +12233,203.9,1118,448,,199.6428571,80 +12234,203.9166667,1127,449,,201.25,80.17857143 +12235,203.9333333,1136,449,,202.8571429,80.17857143 +12236,203.95,1147,450,,204.8214286,80.35714286 +12237,203.9666667,1159,451,,206.9642857,80.53571429 +12238,203.9833333,1173,452,,209.4642857,80.71428571 +12239,204,1187,453,,211.9642857,80.89285714 +12240,204.0166667,1203,454,,214.8214286,81.07142857 +12241,204.0333333,1219,455,,217.6785714,81.25 +12242,204.05,1237,455,,220.8928571,81.25 +12243,204.0666667,1255,456,,224.1071429,81.42857143 +12244,204.0833333,1274,457,,227.5,81.60714286 +12245,204.1,1294,458,,231.0714286,81.78571429 +12246,204.1166667,1314,458,,234.6428571,81.78571429 +12247,204.1333333,1334,459,,238.2142857,81.96428571 +12248,204.15,1355,459,,241.9642857,81.96428571 +12249,204.1666667,1376,459,,245.7142857,81.96428571 +12250,204.1833333,1398,459,,249.6428571,81.96428571 +12251,204.2,1419,458,,253.3928571,81.78571429 +12252,204.2166667,1440,458,,257.1428571,81.78571429 +12253,204.2333333,1461,458,,260.8928571,81.78571429 +12254,204.25,1482,457,,264.6428571,81.60714286 +12255,204.2666667,1502,457,,268.2142857,81.60714286 +12256,204.2833333,1522,456,,271.7857143,81.42857143 +12257,204.3,1541,455,,275.1785714,81.25 +12258,204.3166667,1560,454,,278.5714286,81.07142857 +12259,204.3333333,1577,453,,281.6071429,80.89285714 +12260,204.35,1594,452,,284.6428571,80.71428571 +12261,204.3666667,1610,451,,287.5,80.53571429 +12262,204.3833333,1625,450,,290.1785714,80.35714286 +12263,204.4,1639,449,,292.6785714,80.17857143 +12264,204.4166667,1651,448,,294.8214286,80 +12265,204.4333333,1662,447,,296.7857143,79.82142857 +12266,204.45,1673,446,,298.75,79.64285714 +12267,204.4666667,1681,445,,300.1785714,79.46428571 +12268,204.4833333,1688,445,,301.4285714,79.46428571 +12269,204.5,1694,444,,302.5,79.28571429 +12270,204.5166667,1699,444,,303.3928571,79.28571429 +12271,204.5333333,1702,443,,303.9285714,79.10714286 +12272,204.55,1702,443,,303.9285714,79.10714286 +12273,204.5666667,1702,443,,303.9285714,79.10714286 +12274,204.5833333,1702,444,,303.9285714,79.28571429 +12275,204.6,1699,444,,303.3928571,79.28571429 +12276,204.6166667,1695,444,,302.6785714,79.28571429 +12277,204.6333333,1689,445,,301.6071429,79.46428571 +12278,204.65,1682,445,,300.3571429,79.46428571 +12279,204.6666667,1673,446,,298.75,79.64285714 +12280,204.6833333,1664,447,,297.1428571,79.82142857 +12281,204.7,1653,448,,295.1785714,80 +12282,204.7166667,1640,449,,292.8571429,80.17857143 +12283,204.7333333,1626,450,,290.3571429,80.35714286 +12284,204.75,1611,451,,287.6785714,80.53571429 +12285,204.7666667,1596,452,,285,80.71428571 +12286,204.7833333,1579,454,,281.9642857,81.07142857 +12287,204.8,1561,454,,278.75,81.07142857 +12288,204.8166667,1543,455,,275.5357143,81.25 +12289,204.8333333,1524,456,,272.1428571,81.42857143 +12290,204.85,1504,457,,268.5714286,81.60714286 +12291,204.8666667,1484,458,,265,81.78571429 +12292,204.8833333,1464,458,,261.4285714,81.78571429 +12293,204.9,1443,459,,257.6785714,81.96428571 +12294,204.9166667,1422,459,,253.9285714,81.96428571 +12295,204.9333333,1400,459,,250,81.96428571 +12296,204.95,1379,459,,246.25,81.96428571 +12297,204.9666667,1358,459,,242.5,81.96428571 +12298,204.9833333,1337,459,,238.75,81.96428571 +12299,205,1317,459,,235.1785714,81.96428571 +12300,205.0166667,1297,459,,231.6071429,81.96428571 +12301,205.0333333,1277,458,,228.0357143,81.78571429 +12302,205.05,1258,457,,224.6428571,81.60714286 +12303,205.0666667,1240,456,,221.4285714,81.42857143 +12304,205.0833333,1222,455,,218.2142857,81.25 +12305,205.1,1205,454,,215.1785714,81.07142857 +12306,205.1166667,1190,453,,212.5,80.89285714 +12307,205.1333333,1175,452,,209.8214286,80.71428571 +12308,205.15,1161,451,,207.3214286,80.53571429 +12309,205.1666667,1149,451,,205.1785714,80.53571429 +12310,205.1833333,1138,449,,203.2142857,80.17857143 +12311,205.2,1128,449,,201.4285714,80.17857143 +12312,205.2166667,1120,448,,200,80 +12313,205.2333333,1113,447,,198.75,79.82142857 +12314,205.25,1107,447,,197.6785714,79.82142857 +12315,205.2666667,1103,446,,196.9642857,79.64285714 +12316,205.2833333,1100,446,,196.4285714,79.64285714 +12317,205.3,1100,446,,196.4285714,79.64285714 +12318,205.3166667,1100,446,,196.4285714,79.64285714 +12319,205.3333333,1100,446,,196.4285714,79.64285714 +12320,205.35,1104,446,,197.1428571,79.64285714 +12321,205.3666667,1108,446,,197.8571429,79.64285714 +12322,205.3833333,1114,447,,198.9285714,79.82142857 +12323,205.4,1122,447,,200.3571429,79.82142857 +12324,205.4166667,1131,448,,201.9642857,80 +12325,205.4333333,1141,449,,203.75,80.17857143 +12326,205.45,1153,450,,205.8928571,80.35714286 +12327,205.4666667,1165,451,,208.0357143,80.53571429 +12328,205.4833333,1179,452,,210.5357143,80.71428571 +12329,205.5,1194,452,,213.2142857,80.71428571 +12330,205.5166667,1210,454,,216.0714286,81.07142857 +12331,205.5333333,1227,454,,219.1071429,81.07142857 +12332,205.55,1245,455,,222.3214286,81.25 +12333,205.5666667,1264,456,,225.7142857,81.42857143 +12334,205.5833333,1283,457,,229.1071429,81.60714286 +12335,205.6,1303,457,,232.6785714,81.60714286 +12336,205.6166667,1323,458,,236.25,81.78571429 +12337,205.6333333,1344,458,,240,81.78571429 +12338,205.65,1365,458,,243.75,81.78571429 +12339,205.6666667,1386,458,,247.5,81.78571429 +12340,205.6833333,1407,458,,251.25,81.78571429 +12341,205.7,1428,457,,255,81.60714286 +12342,205.7166667,1449,457,,258.75,81.60714286 +12343,205.7333333,1470,457,,262.5,81.60714286 +12344,205.75,1491,456,,266.25,81.42857143 +12345,205.7666667,1511,455,,269.8214286,81.25 +12346,205.7833333,1530,455,,273.2142857,81.25 +12347,205.8,1549,454,,276.6071429,81.07142857 +12348,205.8166667,1567,453,,279.8214286,80.89285714 +12349,205.8333333,1584,452,,282.8571429,80.71428571 +12350,205.85,1601,451,,285.8928571,80.53571429 +12351,205.8666667,1616,450,,288.5714286,80.35714286 +12352,205.8833333,1630,449,,291.0714286,80.17857143 +12353,205.9,1643,448,,293.3928571,80 +12354,205.9166667,1655,447,,295.5357143,79.82142857 +12355,205.9333333,1666,446,,297.5,79.64285714 +12356,205.95,1676,445,,299.2857143,79.46428571 +12357,205.9666667,1683,444,,300.5357143,79.28571429 +12358,205.9833333,1690,444,,301.7857143,79.28571429 +12359,206,1695,443,,302.6785714,79.10714286 +12360,206.0166667,1699,443,,303.3928571,79.10714286 +12361,206.0333333,1701,443,,303.75,79.10714286 +12362,206.05,1701,443,,303.75,79.10714286 +12363,206.0666667,1701,443,,303.75,79.10714286 +12364,206.0833333,1700,443,,303.5714286,79.10714286 +12365,206.1,1696,444,,302.8571429,79.28571429 +12366,206.1166667,1691,444,,301.9642857,79.28571429 +12367,206.1333333,1684,445,,300.7142857,79.46428571 +12368,206.15,1676,446,,299.2857143,79.64285714 +12369,206.1666667,1667,446,,297.6785714,79.64285714 +12370,206.1833333,1656,447,,295.7142857,79.82142857 +12371,206.2,1645,449,,293.75,80.17857143 +12372,206.2166667,1632,450,,291.4285714,80.35714286 +12373,206.2333333,1617,451,,288.75,80.53571429 +12374,206.25,1602,452,,286.0714286,80.71428571 +12375,206.2666667,1586,453,,283.2142857,80.89285714 +12376,206.2833333,1569,454,,280.1785714,81.07142857 +12377,206.3,1551,455,,276.9642857,81.25 +12378,206.3166667,1532,456,,273.5714286,81.42857143 +12379,206.3333333,1513,457,,270.1785714,81.60714286 +12380,206.35,1493,458,,266.6071429,81.78571429 +12381,206.3666667,1473,458,,263.0357143,81.78571429 +12382,206.3833333,1452,459,,259.2857143,81.96428571 +12383,206.4,1431,459,,255.5357143,81.96428571 +12384,206.4166667,1410,460,,251.7857143,82.14285714 +12385,206.4333333,1389,460,,248.0357143,82.14285714 +12386,206.45,1367,460,,244.1071429,82.14285714 +12387,206.4666667,1346,460,,240.3571429,82.14285714 +12388,206.4833333,1325,460,,236.6071429,82.14285714 +12389,206.5,1305,459,,233.0357143,81.96428571 +12390,206.5166667,1285,458,,229.4642857,81.78571429 +12391,206.5333333,1267,457,,226.25,81.60714286 +12392,206.55,1248,457,,222.8571429,81.60714286 +12393,206.5666667,1230,456,,219.6428571,81.42857143 +12394,206.5833333,1213,455,,216.6071429,81.25 +12395,206.6,1197,454,,213.75,81.07142857 +12396,206.6166667,1182,453,,211.0714286,80.89285714 +12397,206.6333333,1168,452,,208.5714286,80.71428571 +12398,206.65,1155,451,,206.25,80.53571429 +12399,206.6666667,1143,450,,204.1071429,80.35714286 +12400,206.6833333,1133,449,,202.3214286,80.17857143 +12401,206.7,1124,449,,200.7142857,80.17857143 +12402,206.7166667,1116,448,,199.2857143,80 +12403,206.7333333,1109,447,,198.0357143,79.82142857 +12404,206.75,1104,446,,197.1428571,79.64285714 +12405,206.7666667,1101,446,,196.6071429,79.64285714 +12406,206.7833333,1100,446,,196.4285714,79.64285714 +12407,206.8,1100,446,,196.4285714,79.64285714 +12408,206.8166667,1100,446,,196.4285714,79.64285714 +12409,206.8333333,1102,446,,196.7857143,79.64285714 +12410,206.85,1106,446,,197.5,79.64285714 +12411,206.8666667,1111,447,,198.3928571,79.82142857 +12412,206.8833333,1118,447,,199.6428571,79.82142857 +12413,206.9,1126,448,,201.0714286,80 +12414,206.9166667,1136,448,,202.8571429,80 +12415,206.9333333,1147,449,,204.8214286,80.17857143 +12416,206.95,1159,450,,206.9642857,80.35714286 +12417,206.9666667,1172,451,,209.2857143,80.53571429 +12418,206.9833333,1187,452,,211.9642857,80.71428571 +12419,207,1202,453,,214.6428571,80.89285714 +12420,207.0166667,1218,454,,217.5,81.07142857 +12421,207.0333333,1236,455,,220.7142857,81.25 +12422,207.05,1254,456,,223.9285714,81.42857143 +12423,207.0666667,1273,456,,227.3214286,81.42857143 +12424,207.0833333,1292,457,,230.7142857,81.60714286 +12425,207.1,1313,457,,234.4642857,81.60714286 +12426,207.1166667,1333,458,,238.0357143,81.78571429 +12427,207.1333333,1354,458,,241.7857143,81.78571429 +12428,207.15,1375,458,,245.5357143,81.78571429 +12429,207.1666667,1396,458,,249.2857143,81.78571429 +12430,207.1833333,1417,458,,253.0357143,81.78571429 +12431,207.2,1438,458,,256.7857143,81.78571429 +12432,207.2166667,1459,457,,260.5357143,81.60714286 +12433,207.2333333,1480,457,,264.2857143,81.60714286 +12434,207.25,1500,456,,267.8571429,81.42857143 +12435,207.2666667,1520,455,,271.4285714,81.25 +12436,207.2833333,1539,455,,274.8214286,81.25 +12437,207.3,1557,454,,278.0357143,81.07142857 +12438,207.3166667,1575,453,,281.25,80.89285714 +12439,207.3333333,1592,452,,284.2857143,80.71428571 +12440,207.35,1607,451,,286.9642857,80.53571429 +12441,207.3666667,1622,450,,289.6428571,80.35714286 +12442,207.3833333,1636,449,,292.1428571,80.17857143 +12443,207.4,1648,448,,294.2857143,80 +12444,207.4166667,1660,447,,296.4285714,79.82142857 +12445,207.4333333,1670,446,,298.2142857,79.64285714 +12446,207.45,1678,445,,299.6428571,79.46428571 +12447,207.4666667,1686,445,,301.0714286,79.46428571 +12448,207.4833333,1691,444,,301.9642857,79.28571429 +12449,207.5,1696,444,,302.8571429,79.28571429 +12450,207.5166667,1699,444,,303.3928571,79.28571429 +12451,207.5333333,1699,444,,303.3928571,79.28571429 +12452,207.55,1699,444,,303.3928571,79.28571429 +12453,207.5666667,1699,444,,303.3928571,79.28571429 +12454,207.5833333,1696,444,,302.8571429,79.28571429 +12455,207.6,1692,444,,302.1428571,79.28571429 +12456,207.6166667,1686,445,,301.0714286,79.46428571 +12457,207.6333333,1679,446,,299.8214286,79.64285714 +12458,207.65,1670,446,,298.2142857,79.64285714 +12459,207.6666667,1661,447,,296.6071429,79.82142857 +12460,207.6833333,1649,448,,294.4642857,80 +12461,207.7,1637,449,,292.3214286,80.17857143 +12462,207.7166667,1623,450,,289.8214286,80.35714286 +12463,207.7333333,1609,451,,287.3214286,80.53571429 +12464,207.75,1593,452,,284.4642857,80.71428571 +12465,207.7666667,1577,454,,281.6071429,81.07142857 +12466,207.7833333,1559,454,,278.3928571,81.07142857 +12467,207.8,1541,455,,275.1785714,81.25 +12468,207.8166667,1522,456,,271.7857143,81.42857143 +12469,207.8333333,1503,457,,268.3928571,81.60714286 +12470,207.85,1483,458,,264.8214286,81.78571429 +12471,207.8666667,1463,458,,261.25,81.78571429 +12472,207.8833333,1442,459,,257.5,81.96428571 +12473,207.9,1421,459,,253.75,81.96428571 +12474,207.9166667,1400,459,,250,81.96428571 +12475,207.9333333,1379,459,,246.25,81.96428571 +12476,207.95,1358,459,,242.5,81.96428571 +12477,207.9666667,1337,459,,238.75,81.96428571 +12478,207.9833333,1317,459,,235.1785714,81.96428571 +12479,208,1297,459,,231.6071429,81.96428571 +12480,208.0166667,1278,458,,228.2142857,81.78571429 +12481,208.0333333,1259,457,,224.8214286,81.60714286 +12482,208.05,1241,456,,221.6071429,81.42857143 +12483,208.0666667,1223,455,,218.3928571,81.25 +12484,208.0833333,1207,454,,215.5357143,81.07142857 +12485,208.1,1191,453,,212.6785714,80.89285714 +12486,208.1166667,1176,452,,210,80.71428571 +12487,208.1333333,1163,451,,207.6785714,80.53571429 +12488,208.15,1151,450,,205.5357143,80.35714286 +12489,208.1666667,1140,449,,203.5714286,80.17857143 +12490,208.1833333,1130,449,,201.7857143,80.17857143 +12491,208.2,1121,448,,200.1785714,80 +12492,208.2166667,1114,447,,198.9285714,79.82142857 +12493,208.2333333,1109,447,,198.0357143,79.82142857 +12494,208.25,1105,446,,197.3214286,79.64285714 +12495,208.2666667,1102,446,,196.7857143,79.64285714 +12496,208.2833333,1102,446,,196.7857143,79.64285714 +12497,208.3,1102,446,,196.7857143,79.64285714 +12498,208.3166667,1102,446,,196.7857143,79.64285714 +12499,208.3333333,1105,446,,197.3214286,79.64285714 +12500,208.35,1110,447,,198.2142857,79.82142857 +12501,208.3666667,1116,447,,199.2857143,79.82142857 +12502,208.3833333,1124,447,,200.7142857,79.82142857 +12503,208.4,1133,448,,202.3214286,80 +12504,208.4166667,1143,449,,204.1071429,80.17857143 +12505,208.4333333,1154,450,,206.0714286,80.35714286 +12506,208.45,1167,451,,208.3928571,80.53571429 +12507,208.4666667,1181,451,,210.8928571,80.53571429 +12508,208.4833333,1196,452,,213.5714286,80.71428571 +12509,208.5,1211,453,,216.25,80.89285714 +12510,208.5166667,1228,454,,219.2857143,81.07142857 +12511,208.5333333,1246,455,,222.5,81.25 +12512,208.55,1265,456,,225.8928571,81.42857143 +12513,208.5666667,1284,457,,229.2857143,81.60714286 +12514,208.5833333,1303,457,,232.6785714,81.60714286 +12515,208.6,1324,457,,236.4285714,81.60714286 +12516,208.6166667,1344,458,,240,81.78571429 +12517,208.6333333,1365,458,,243.75,81.78571429 +12518,208.65,1386,458,,247.5,81.78571429 +12519,208.6666667,1407,458,,251.25,81.78571429 +12520,208.6833333,1428,457,,255,81.60714286 +12521,208.7,1449,457,,258.75,81.60714286 +12522,208.7166667,1470,456,,262.5,81.42857143 +12523,208.7333333,1491,456,,266.25,81.42857143 +12524,208.75,1510,455,,269.6428571,81.25 +12525,208.7666667,1530,455,,273.2142857,81.25 +12526,208.7833333,1548,454,,276.4285714,81.07142857 +12527,208.8,1566,453,,279.6428571,80.89285714 +12528,208.8166667,1584,452,,282.8571429,80.71428571 +12529,208.8333333,1600,451,,285.7142857,80.53571429 +12530,208.85,1615,450,,288.3928571,80.35714286 +12531,208.8666667,1629,449,,290.8928571,80.17857143 +12532,208.8833333,1642,448,,293.2142857,80 +12533,208.9,1654,447,,295.3571429,79.82142857 +12534,208.9166667,1665,446,,297.3214286,79.64285714 +12535,208.9333333,1674,445,,298.9285714,79.46428571 +12536,208.95,1682,445,,300.3571429,79.46428571 +12537,208.9666667,1689,444,,301.6071429,79.28571429 +12538,208.9833333,1694,444,,302.5,79.28571429 +12539,209,1698,443,,303.2142857,79.10714286 +12540,209.0166667,1700,443,,303.5714286,79.10714286 +12541,209.0333333,1700,443,,303.5714286,79.10714286 +12542,209.05,1700,443,,303.5714286,79.10714286 +12543,209.0666667,1698,443,,303.2142857,79.10714286 +12544,209.0833333,1695,444,,302.6785714,79.28571429 +12545,209.1,1690,444,,301.7857143,79.28571429 +12546,209.1166667,1683,445,,300.5357143,79.46428571 +12547,209.1333333,1676,446,,299.2857143,79.64285714 +12548,209.15,1667,447,,297.6785714,79.82142857 +12549,209.1666667,1656,448,,295.7142857,80 +12550,209.1833333,1644,448,,293.5714286,80 +12551,209.2,1632,450,,291.4285714,80.35714286 +12552,209.2166667,1618,451,,288.9285714,80.53571429 +12553,209.2333333,1603,452,,286.25,80.71428571 +12554,209.25,1586,453,,283.2142857,80.89285714 +12555,209.2666667,1569,454,,280.1785714,81.07142857 +12556,209.2833333,1552,455,,277.1428571,81.25 +12557,209.3,1533,456,,273.75,81.42857143 +12558,209.3166667,1514,456,,270.3571429,81.42857143 +12559,209.3333333,1494,457,,266.7857143,81.60714286 +12560,209.35,1474,458,,263.2142857,81.78571429 +12561,209.3666667,1453,459,,259.4642857,81.96428571 +12562,209.3833333,1432,459,,255.7142857,81.96428571 +12563,209.4,1412,459,,252.1428571,81.96428571 +12564,209.4166667,1391,460,,248.3928571,82.14285714 +12565,209.4333333,1369,460,,244.4642857,82.14285714 +12566,209.45,1349,460,,240.8928571,82.14285714 +12567,209.4666667,1328,459,,237.1428571,81.96428571 +12568,209.4833333,1308,459,,233.5714286,81.96428571 +12569,209.5,1288,459,,230,81.96428571 +12570,209.5166667,1269,457,,226.6071429,81.60714286 +12571,209.5333333,1250,457,,223.2142857,81.60714286 +12572,209.55,1232,455,,220,81.25 +12573,209.5666667,1216,455,,217.1428571,81.25 +12574,209.5833333,1200,454,,214.2857143,81.07142857 +12575,209.6,1184,453,,211.4285714,80.89285714 +12576,209.6166667,1170,452,,208.9285714,80.71428571 +12577,209.6333333,1158,451,,206.7857143,80.53571429 +12578,209.65,1146,450,,204.6428571,80.35714286 +12579,209.6666667,1136,449,,202.8571429,80.17857143 +12580,209.6833333,1126,449,,201.0714286,80.17857143 +12581,209.7,1119,448,,199.8214286,80 +12582,209.7166667,1112,447,,198.5714286,79.82142857 +12583,209.7333333,1107,447,,197.6785714,79.82142857 +12584,209.75,1104,447,,197.1428571,79.82142857 +12585,209.7666667,1102,447,,196.7857143,79.82142857 +12586,209.7833333,1102,447,,196.7857143,79.82142857 +12587,209.8,1102,447,,196.7857143,79.82142857 +12588,209.8166667,1105,447,,197.3214286,79.82142857 +12589,209.8333333,1109,447,,198.0357143,79.82142857 +12590,209.85,1114,447,,198.9285714,79.82142857 +12591,209.8666667,1121,448,,200.1785714,80 +12592,209.8833333,1129,448,,201.6071429,80 +12593,209.9,1138,449,,203.2142857,80.17857143 +12594,209.9166667,1149,450,,205.1785714,80.35714286 +12595,209.9333333,1161,451,,207.3214286,80.53571429 +12596,209.95,1174,452,,209.6428571,80.71428571 +12597,209.9666667,1188,453,,212.1428571,80.89285714 +12598,209.9833333,1204,453,,215,80.89285714 +12599,210,1220,454,,217.8571429,81.07142857 +12600,210.0166667,1237,455,,220.8928571,81.25 +12601,210.0333333,1255,456,,224.1071429,81.42857143 +12602,210.05,1274,457,,227.5,81.60714286 +12603,210.0666667,1293,458,,230.8928571,81.78571429 +12604,210.0833333,1313,458,,234.4642857,81.78571429 +12605,210.1,1334,459,,238.2142857,81.96428571 +12606,210.1166667,1354,459,,241.7857143,81.96428571 +12607,210.1333333,1375,459,,245.5357143,81.96428571 +12608,210.15,1396,459,,249.2857143,81.96428571 +12609,210.1666667,1417,458,,253.0357143,81.78571429 +12610,210.1833333,1438,458,,256.7857143,81.78571429 +12611,210.2,1459,458,,260.5357143,81.78571429 +12612,210.2166667,1479,457,,264.1071429,81.60714286 +12613,210.2333333,1499,456,,267.6785714,81.42857143 +12614,210.25,1519,456,,271.25,81.42857143 +12615,210.2666667,1537,455,,274.4642857,81.25 +12616,210.2833333,1556,454,,277.8571429,81.07142857 +12617,210.3,1573,453,,280.8928571,80.89285714 +12618,210.3166667,1590,452,,283.9285714,80.71428571 +12619,210.3333333,1606,451,,286.7857143,80.53571429 +12620,210.35,1620,450,,289.2857143,80.35714286 +12621,210.3666667,1634,449,,291.7857143,80.17857143 +12622,210.3833333,1646,448,,293.9285714,80 +12623,210.4,1658,447,,296.0714286,79.82142857 +12624,210.4166667,1668,447,,297.8571429,79.82142857 +12625,210.4333333,1676,446,,299.2857143,79.64285714 +12626,210.45,1684,445,,300.7142857,79.46428571 +12627,210.4666667,1689,445,,301.6071429,79.46428571 +12628,210.4833333,1694,444,,302.5,79.28571429 +12629,210.5,1697,444,,303.0357143,79.28571429 +12630,210.5166667,1697,444,,303.0357143,79.28571429 +12631,210.5333333,1697,444,,303.0357143,79.28571429 +12632,210.55,1697,444,,303.0357143,79.28571429 +12633,210.5666667,1694,444,,302.5,79.28571429 +12634,210.5833333,1690,445,,301.7857143,79.46428571 +12635,210.6,1685,445,,300.8928571,79.46428571 +12636,210.6166667,1677,446,,299.4642857,79.64285714 +12637,210.6333333,1669,447,,298.0357143,79.82142857 +12638,210.65,1659,448,,296.25,80 +12639,210.6666667,1648,449,,294.2857143,80.17857143 +12640,210.6833333,1636,450,,292.1428571,80.35714286 +12641,210.7,1623,451,,289.8214286,80.53571429 +12642,210.7166667,1608,452,,287.1428571,80.71428571 +12643,210.7333333,1592,453,,284.2857143,80.89285714 +12644,210.75,1576,454,,281.4285714,81.07142857 +12645,210.7666667,1559,455,,278.3928571,81.25 +12646,210.7833333,1541,456,,275.1785714,81.42857143 +12647,210.8,1522,457,,271.7857143,81.60714286 +12648,210.8166667,1502,458,,268.2142857,81.78571429 +12649,210.8333333,1483,458,,264.8214286,81.78571429 +12650,210.85,1462,459,,261.0714286,81.96428571 +12651,210.8666667,1442,459,,257.5,81.96428571 +12652,210.8833333,1421,460,,253.75,82.14285714 +12653,210.9,1400,460,,250,82.14285714 +12654,210.9166667,1379,460,,246.25,82.14285714 +12655,210.9333333,1359,460,,242.6785714,82.14285714 +12656,210.95,1338,460,,238.9285714,82.14285714 +12657,210.9666667,1318,460,,235.3571429,82.14285714 +12658,210.9833333,1298,460,,231.7857143,82.14285714 +12659,211,1279,459,,228.3928571,81.96428571 +12660,211.0166667,1260,458,,225,81.78571429 +12661,211.0333333,1242,457,,221.7857143,81.60714286 +12662,211.05,1224,456,,218.5714286,81.42857143 +12663,211.0666667,1208,455,,215.7142857,81.25 +12664,211.0833333,1192,454,,212.8571429,81.07142857 +12665,211.1,1178,453,,210.3571429,80.89285714 +12666,211.1166667,1165,452,,208.0357143,80.71428571 +12667,211.1333333,1152,452,,205.7142857,80.71428571 +12668,211.15,1141,451,,203.75,80.53571429 +12669,211.1666667,1132,450,,202.1428571,80.35714286 +12670,211.1833333,1123,449,,200.5357143,80.17857143 +12671,211.2,1116,449,,199.2857143,80.17857143 +12672,211.2166667,1110,448,,198.2142857,80 +12673,211.2333333,1106,448,,197.5,80 +12674,211.25,1103,447,,196.9642857,79.82142857 +12675,211.2666667,1103,447,,196.9642857,79.82142857 +12676,211.2833333,1103,447,,196.9642857,79.82142857 +12677,211.3,1104,448,,197.1428571,80 +12678,211.3166667,1107,448,,197.6785714,80 +12679,211.3333333,1112,448,,198.5714286,80 +12680,211.35,1118,449,,199.6428571,80.17857143 +12681,211.3666667,1125,449,,200.8928571,80.17857143 +12682,211.3833333,1134,450,,202.5,80.35714286 +12683,211.4,1144,450,,204.2857143,80.35714286 +12684,211.4166667,1155,451,,206.25,80.53571429 +12685,211.4333333,1168,452,,208.5714286,80.71428571 +12686,211.45,1182,453,,211.0714286,80.89285714 +12687,211.4666667,1196,454,,213.5714286,81.07142857 +12688,211.4833333,1212,455,,216.4285714,81.25 +12689,211.5,1229,456,,219.4642857,81.42857143 +12690,211.5166667,1246,456,,222.5,81.42857143 +12691,211.5333333,1265,457,,225.8928571,81.60714286 +12692,211.55,1284,458,,229.2857143,81.78571429 +12693,211.5666667,1304,459,,232.8571429,81.96428571 +12694,211.5833333,1323,459,,236.25,81.96428571 +12695,211.6,1344,459,,240,81.96428571 +12696,211.6166667,1364,459,,243.5714286,81.96428571 +12697,211.6333333,1386,459,,247.5,81.96428571 +12698,211.65,1407,459,,251.25,81.96428571 +12699,211.6666667,1427,459,,254.8214286,81.96428571 +12700,211.6833333,1448,458,,258.5714286,81.78571429 +12701,211.7,1469,458,,262.3214286,81.78571429 +12702,211.7166667,1489,458,,265.8928571,81.78571429 +12703,211.7333333,1509,457,,269.4642857,81.60714286 +12704,211.75,1528,456,,272.8571429,81.42857143 +12705,211.7666667,1546,455,,276.0714286,81.25 +12706,211.7833333,1564,454,,279.2857143,81.07142857 +12707,211.8,1581,454,,282.3214286,81.07142857 +12708,211.8166667,1597,452,,285.1785714,80.71428571 +12709,211.8333333,1613,451,,288.0357143,80.53571429 +12710,211.85,1627,450,,290.5357143,80.35714286 +12711,211.8666667,1640,449,,292.8571429,80.17857143 +12712,211.8833333,1652,448,,295,80 +12713,211.9,1662,448,,296.7857143,80 +12714,211.9166667,1671,447,,298.3928571,79.82142857 +12715,211.9333333,1680,446,,300,79.64285714 +12716,211.95,1686,445,,301.0714286,79.46428571 +12717,211.9666667,1691,445,,301.9642857,79.46428571 +12718,211.9833333,1695,445,,302.6785714,79.46428571 +12719,212,1697,445,,303.0357143,79.46428571 +12720,212.0166667,1697,445,,303.0357143,79.46428571 +12721,212.0333333,1697,445,,303.0357143,79.46428571 +12722,212.05,1696,445,,302.8571429,79.46428571 +12723,212.0666667,1692,445,,302.1428571,79.46428571 +12724,212.0833333,1687,446,,301.25,79.64285714 +12725,212.1,1681,447,,300.1785714,79.82142857 +12726,212.1166667,1673,447,,298.75,79.82142857 +12727,212.1333333,1664,448,,297.1428571,80 +12728,212.15,1654,449,,295.3571429,80.17857143 +12729,212.1666667,1642,450,,293.2142857,80.35714286 +12730,212.1833333,1630,451,,291.0714286,80.53571429 +12731,212.2,1616,452,,288.5714286,80.71428571 +12732,212.2166667,1601,453,,285.8928571,80.89285714 +12733,212.2333333,1585,455,,283.0357143,81.25 +12734,212.25,1568,455,,280,81.25 +12735,212.2666667,1551,456,,276.9642857,81.42857143 +12736,212.2833333,1532,457,,273.5714286,81.60714286 +12737,212.3,1513,457,,270.1785714,81.60714286 +12738,212.3166667,1494,459,,266.7857143,81.96428571 +12739,212.3333333,1474,459,,263.2142857,81.96428571 +12740,212.35,1454,460,,259.6428571,82.14285714 +12741,212.3666667,1433,460,,255.8928571,82.14285714 +12742,212.3833333,1412,460,,252.1428571,82.14285714 +12743,212.4,1392,461,,248.5714286,82.32142857 +12744,212.4166667,1371,461,,244.8214286,82.32142857 +12745,212.4333333,1350,461,,241.0714286,82.32142857 +12746,212.45,1330,461,,237.5,82.32142857 +12747,212.4666667,1310,460,,233.9285714,82.14285714 +12748,212.4833333,1290,459,,230.3571429,81.96428571 +12749,212.5,1271,459,,226.9642857,81.96428571 +12750,212.5166667,1253,458,,223.75,81.78571429 +12751,212.5333333,1235,457,,220.5357143,81.60714286 +12752,212.55,1218,456,,217.5,81.42857143 +12753,212.5666667,1202,455,,214.6428571,81.25 +12754,212.5833333,1188,454,,212.1428571,81.07142857 +12755,212.6,1174,453,,209.6428571,80.89285714 +12756,212.6166667,1161,452,,207.3214286,80.71428571 +12757,212.6333333,1149,451,,205.1785714,80.53571429 +12758,212.65,1139,451,,203.3928571,80.53571429 +12759,212.6666667,1130,450,,201.7857143,80.35714286 +12760,212.6833333,1122,449,,200.3571429,80.17857143 +12761,212.7,1116,449,,199.2857143,80.17857143 +12762,212.7166667,1111,448,,198.3928571,80 +12763,212.7333333,1108,448,,197.8571429,80 +12764,212.75,1106,448,,197.5,80 +12765,212.7666667,1106,447,,197.5,79.82142857 +12766,212.7833333,1106,447,,197.5,79.82142857 +12767,212.8,1108,447,,197.8571429,79.82142857 +12768,212.8166667,1112,448,,198.5714286,80 +12769,212.8333333,1117,449,,199.4642857,80.17857143 +12770,212.85,1124,449,,200.7142857,80.17857143 +12771,212.8666667,1132,450,,202.1428571,80.35714286 +12772,212.8833333,1142,450,,203.9285714,80.35714286 +12773,212.9,1152,451,,205.7142857,80.53571429 +12774,212.9166667,1164,452,,207.8571429,80.71428571 +12775,212.9333333,1177,452,,210.1785714,80.71428571 +12776,212.95,1191,453,,212.6785714,80.89285714 +12777,212.9666667,1206,454,,215.3571429,81.07142857 +12778,212.9833333,1222,455,,218.2142857,81.25 +12779,213,1240,456,,221.4285714,81.42857143 +12780,213.0166667,1258,457,,224.6428571,81.60714286 +12781,213.0333333,1276,457,,227.8571429,81.60714286 +12782,213.05,1295,458,,231.25,81.78571429 +12783,213.0666667,1315,458,,234.8214286,81.78571429 +12784,213.0833333,1335,459,,238.3928571,81.96428571 +12785,213.1,1356,459,,242.1428571,81.96428571 +12786,213.1166667,1376,459,,245.7142857,81.96428571 +12787,213.1333333,1397,459,,249.4642857,81.96428571 +12788,213.15,1418,459,,253.2142857,81.96428571 +12789,213.1666667,1439,459,,256.9642857,81.96428571 +12790,213.1833333,1459,458,,260.5357143,81.78571429 +12791,213.2,1480,458,,264.2857143,81.78571429 +12792,213.2166667,1500,457,,267.8571429,81.60714286 +12793,213.2333333,1519,456,,271.25,81.42857143 +12794,213.25,1538,456,,274.6428571,81.42857143 +12795,213.2666667,1556,455,,277.8571429,81.25 +12796,213.2833333,1574,454,,281.0714286,81.07142857 +12797,213.3,1590,453,,283.9285714,80.89285714 +12798,213.3166667,1605,452,,286.6071429,80.71428571 +12799,213.3333333,1620,451,,289.2857143,80.53571429 +12800,213.35,1634,449,,291.7857143,80.17857143 +12801,213.3666667,1646,449,,293.9285714,80.17857143 +12802,213.3833333,1657,448,,295.8928571,80 +12803,213.4,1667,447,,297.6785714,79.82142857 +12804,213.4166667,1675,447,,299.1071429,79.82142857 +12805,213.4333333,1682,446,,300.3571429,79.64285714 +12806,213.45,1688,445,,301.4285714,79.46428571 +12807,213.4666667,1693,445,,302.3214286,79.46428571 +12808,213.4833333,1696,445,,302.8571429,79.46428571 +12809,213.5,1696,444,,302.8571429,79.28571429 +12810,213.5166667,1696,444,,302.8571429,79.28571429 +12811,213.5333333,1696,444,,302.8571429,79.28571429 +12812,213.55,1693,445,,302.3214286,79.46428571 +12813,213.5666667,1689,445,,301.6071429,79.46428571 +12814,213.5833333,1683,446,,300.5357143,79.64285714 +12815,213.6,1676,446,,299.2857143,79.64285714 +12816,213.6166667,1668,447,,297.8571429,79.82142857 +12817,213.6333333,1658,448,,296.0714286,80 +12818,213.65,1648,449,,294.2857143,80.17857143 +12819,213.6666667,1635,450,,291.9642857,80.35714286 +12820,213.6833333,1622,451,,289.6428571,80.53571429 +12821,213.7,1608,452,,287.1428571,80.71428571 +12822,213.7166667,1592,453,,284.2857143,80.89285714 +12823,213.7333333,1576,454,,281.4285714,81.07142857 +12824,213.75,1559,455,,278.3928571,81.25 +12825,213.7666667,1541,456,,275.1785714,81.42857143 +12826,213.7833333,1522,456,,271.7857143,81.42857143 +12827,213.8,1503,457,,268.3928571,81.60714286 +12828,213.8166667,1483,458,,264.8214286,81.78571429 +12829,213.8333333,1463,458,,261.25,81.78571429 +12830,213.85,1443,459,,257.6785714,81.96428571 +12831,213.8666667,1422,459,,253.9285714,81.96428571 +12832,213.8833333,1401,460,,250.1785714,82.14285714 +12833,213.9,1381,460,,246.6071429,82.14285714 +12834,213.9166667,1360,460,,242.8571429,82.14285714 +12835,213.9333333,1339,460,,239.1071429,82.14285714 +12836,213.95,1319,459,,235.5357143,81.96428571 +12837,213.9666667,1299,459,,231.9642857,81.96428571 +12838,213.9833333,1280,458,,228.5714286,81.78571429 +12839,214,1261,457,,225.1785714,81.60714286 +12840,214.0166667,1243,456,,221.9642857,81.42857143 +12841,214.0333333,1226,455,,218.9285714,81.25 +12842,214.05,1210,454,,216.0714286,81.07142857 +12843,214.0666667,1194,453,,213.2142857,80.89285714 +12844,214.0833333,1180,452,,210.7142857,80.71428571 +12845,214.1,1167,451,,208.3928571,80.53571429 +12846,214.1166667,1154,451,,206.0714286,80.53571429 +12847,214.1333333,1144,450,,204.2857143,80.35714286 +12848,214.15,1134,449,,202.5,80.17857143 +12849,214.1666667,1126,449,,201.0714286,80.17857143 +12850,214.1833333,1119,448,,199.8214286,80 +12851,214.2,1113,448,,198.75,80 +12852,214.2166667,1109,447,,198.0357143,79.82142857 +12853,214.2333333,1106,447,,197.5,79.82142857 +12854,214.25,1106,447,,197.5,79.82142857 +12855,214.2666667,1106,447,,197.5,79.82142857 +12856,214.2833333,1107,447,,197.6785714,79.82142857 +12857,214.3,1110,447,,198.2142857,79.82142857 +12858,214.3166667,1114,447,,198.9285714,79.82142857 +12859,214.3333333,1120,448,,200,80 +12860,214.35,1127,448,,201.25,80 +12861,214.3666667,1136,449,,202.8571429,80.17857143 +12862,214.3833333,1146,450,,204.6428571,80.35714286 +12863,214.4,1158,450,,206.7857143,80.35714286 +12864,214.4166667,1170,451,,208.9285714,80.53571429 +12865,214.4333333,1183,452,,211.25,80.71428571 +12866,214.45,1198,453,,213.9285714,80.89285714 +12867,214.4666667,1214,454,,216.7857143,81.07142857 +12868,214.4833333,1230,455,,219.6428571,81.25 +12869,214.5,1248,455,,222.8571429,81.25 +12870,214.5166667,1266,456,,226.0714286,81.42857143 +12871,214.5333333,1285,457,,229.4642857,81.60714286 +12872,214.55,1304,457,,232.8571429,81.60714286 +12873,214.5666667,1324,458,,236.4285714,81.78571429 +12874,214.5833333,1345,458,,240.1785714,81.78571429 +12875,214.6,1365,458,,243.75,81.78571429 +12876,214.6166667,1386,458,,247.5,81.78571429 +12877,214.6333333,1406,458,,251.0714286,81.78571429 +12878,214.65,1427,458,,254.8214286,81.78571429 +12879,214.6666667,1448,457,,258.5714286,81.60714286 +12880,214.6833333,1469,457,,262.3214286,81.60714286 +12881,214.7,1488,456,,265.7142857,81.42857143 +12882,214.7166667,1508,456,,269.2857143,81.42857143 +12883,214.7333333,1527,455,,272.6785714,81.25 +12884,214.75,1545,454,,275.8928571,81.07142857 +12885,214.7666667,1563,453,,279.1071429,80.89285714 +12886,214.7833333,1580,452,,282.1428571,80.71428571 +12887,214.8,1596,451,,285,80.53571429 +12888,214.8166667,1611,450,,287.6785714,80.35714286 +12889,214.8333333,1625,450,,290.1785714,80.35714286 +12890,214.85,1638,449,,292.5,80.17857143 +12891,214.8666667,1650,448,,294.6428571,80 +12892,214.8833333,1661,447,,296.6071429,79.82142857 +12893,214.9,1670,446,,298.2142857,79.64285714 +12894,214.9166667,1678,445,,299.6428571,79.46428571 +12895,214.9333333,1684,445,,300.7142857,79.46428571 +12896,214.95,1689,444,,301.6071429,79.28571429 +12897,214.9666667,1693,444,,302.3214286,79.28571429 +12898,214.9833333,1695,444,,302.6785714,79.28571429 +12899,215,1695,444,,302.6785714,79.28571429 +12900,215.0166667,1695,444,,302.6785714,79.28571429 +12901,215.0333333,1694,444,,302.5,79.28571429 +12902,215.05,1690,444,,301.7857143,79.28571429 +12903,215.0666667,1685,445,,300.8928571,79.46428571 +12904,215.0833333,1679,445,,299.8214286,79.46428571 +12905,215.1,1671,446,,298.3928571,79.64285714 +12906,215.1166667,1662,447,,296.7857143,79.82142857 +12907,215.1333333,1652,448,,295,80 +12908,215.15,1640,449,,292.8571429,80.17857143 +12909,215.1666667,1628,450,,290.7142857,80.35714286 +12910,215.1833333,1614,451,,288.2142857,80.53571429 +12911,215.2,1599,452,,285.5357143,80.71428571 +12912,215.2166667,1583,453,,282.6785714,80.89285714 +12913,215.2333333,1567,454,,279.8214286,81.07142857 +12914,215.25,1549,455,,276.6071429,81.25 +12915,215.2666667,1531,456,,273.3928571,81.42857143 +12916,215.2833333,1512,457,,270,81.60714286 +12917,215.3,1493,457,,266.6071429,81.60714286 +12918,215.3166667,1473,458,,263.0357143,81.78571429 +12919,215.3333333,1453,458,,259.4642857,81.78571429 +12920,215.35,1432,459,,255.7142857,81.96428571 +12921,215.3666667,1411,459,,251.9642857,81.96428571 +12922,215.3833333,1391,459,,248.3928571,81.96428571 +12923,215.4,1370,459,,244.6428571,81.96428571 +12924,215.4166667,1349,459,,240.8928571,81.96428571 +12925,215.4333333,1329,459,,237.3214286,81.96428571 +12926,215.45,1310,458,,233.9285714,81.78571429 +12927,215.4666667,1289,458,,230.1785714,81.78571429 +12928,215.4833333,1271,457,,226.9642857,81.60714286 +12929,215.5,1252,456,,223.5714286,81.42857143 +12930,215.5166667,1235,456,,220.5357143,81.42857143 +12931,215.5333333,1217,455,,217.3214286,81.25 +12932,215.55,1201,454,,214.4642857,81.07142857 +12933,215.5666667,1187,453,,211.9642857,80.89285714 +12934,215.5833333,1173,452,,209.4642857,80.71428571 +12935,215.6,1160,451,,207.1428571,80.53571429 +12936,215.6166667,1148,450,,205,80.35714286 +12937,215.6333333,1138,450,,203.2142857,80.35714286 +12938,215.65,1129,449,,201.6071429,80.17857143 +12939,215.6666667,1121,448,,200.1785714,80 +12940,215.6833333,1115,448,,199.1071429,80 +12941,215.7,1110,447,,198.2142857,79.82142857 +12942,215.7166667,1106,447,,197.5,79.82142857 +12943,215.7333333,1104,447,,197.1428571,79.82142857 +12944,215.75,1104,447,,197.1428571,79.82142857 +12945,215.7666667,1104,447,,197.1428571,79.82142857 +12946,215.7833333,1107,447,,197.6785714,79.82142857 +12947,215.8,1110,447,,198.2142857,79.82142857 +12948,215.8166667,1116,447,,199.2857143,79.82142857 +12949,215.8333333,1123,448,,200.5357143,80 +12950,215.85,1130,449,,201.7857143,80.17857143 +12951,215.8666667,1140,450,,203.5714286,80.35714286 +12952,215.8833333,1150,450,,205.3571429,80.35714286 +12953,215.9,1162,451,,207.5,80.53571429 +12954,215.9166667,1176,452,,210,80.71428571 +12955,215.9333333,1189,453,,212.3214286,80.89285714 +12956,215.95,1204,453,,215,80.89285714 +12957,215.9666667,1220,454,,217.8571429,81.07142857 +12958,215.9833333,1238,455,,221.0714286,81.25 +12959,216,1256,456,,224.2857143,81.42857143 +12960,216.0166667,1274,457,,227.5,81.60714286 +12961,216.0333333,1293,458,,230.8928571,81.78571429 +12962,216.05,1313,458,,234.4642857,81.78571429 +12963,216.0666667,1333,458,,238.0357143,81.78571429 +12964,216.0833333,1353,458,,241.6071429,81.78571429 +12965,216.1,1373,458,,245.1785714,81.78571429 +12966,216.1166667,1395,458,,249.1071429,81.78571429 +12967,216.1333333,1415,458,,252.6785714,81.78571429 +12968,216.15,1436,458,,256.4285714,81.78571429 +12969,216.1666667,1456,458,,260,81.78571429 +12970,216.1833333,1477,457,,263.75,81.60714286 +12971,216.2,1496,457,,267.1428571,81.60714286 +12972,216.2166667,1516,456,,270.7142857,81.42857143 +12973,216.2333333,1535,455,,274.1071429,81.25 +12974,216.25,1553,454,,277.3214286,81.07142857 +12975,216.2666667,1570,454,,280.3571429,81.07142857 +12976,216.2833333,1586,453,,283.2142857,80.89285714 +12977,216.3,1601,452,,285.8928571,80.71428571 +12978,216.3166667,1616,450,,288.5714286,80.35714286 +12979,216.3333333,1630,450,,291.0714286,80.35714286 +12980,216.35,1642,449,,293.2142857,80.17857143 +12981,216.3666667,1653,448,,295.1785714,80 +12982,216.3833333,1663,447,,296.9642857,79.82142857 +12983,216.4,1672,446,,298.5714286,79.64285714 +12984,216.4166667,1679,446,,299.8214286,79.64285714 +12985,216.4333333,1685,445,,300.8928571,79.46428571 +12986,216.45,1689,444,,301.6071429,79.28571429 +12987,216.4666667,1692,444,,302.1428571,79.28571429 +12988,216.4833333,1693,444,,302.3214286,79.28571429 +12989,216.5,1693,444,,302.3214286,79.28571429 +12990,216.5166667,1693,444,,302.3214286,79.28571429 +12991,216.5333333,1690,445,,301.7857143,79.46428571 +12992,216.55,1686,445,,301.0714286,79.46428571 +12993,216.5666667,1680,446,,300,79.64285714 +12994,216.5833333,1673,446,,298.75,79.64285714 +12995,216.6,1665,447,,297.3214286,79.82142857 +12996,216.6166667,1656,448,,295.7142857,80 +12997,216.6333333,1645,448,,293.75,80 +12998,216.65,1633,450,,291.6071429,80.35714286 +12999,216.6666667,1620,450,,289.2857143,80.35714286 +13000,216.6833333,1605,451,,286.6071429,80.53571429 +13001,216.7,1590,452,,283.9285714,80.71428571 +13002,216.7166667,1574,453,,281.0714286,80.89285714 +13003,216.7333333,1557,454,,278.0357143,81.07142857 +13004,216.75,1539,455,,274.8214286,81.25 +13005,216.7666667,1521,456,,271.6071429,81.42857143 +13006,216.7833333,1501,456,,268.0357143,81.42857143 +13007,216.8,1482,457,,264.6428571,81.60714286 +13008,216.8166667,1462,458,,261.0714286,81.78571429 +13009,216.8333333,1441,458,,257.3214286,81.78571429 +13010,216.85,1421,459,,253.75,81.96428571 +13011,216.8666667,1400,459,,250,81.96428571 +13012,216.8833333,1380,459,,246.4285714,81.96428571 +13013,216.9,1359,459,,242.6785714,81.96428571 +13014,216.9166667,1339,459,,239.1071429,81.96428571 +13015,216.9333333,1319,458,,235.5357143,81.78571429 +13016,216.95,1299,458,,231.9642857,81.78571429 +13017,216.9666667,1280,457,,228.5714286,81.60714286 +13018,216.9833333,1261,456,,225.1785714,81.42857143 +13019,217,1244,455,,222.1428571,81.25 +13020,217.0166667,1226,454,,218.9285714,81.07142857 +13021,217.0333333,1210,454,,216.0714286,81.07142857 +13022,217.05,1195,453,,213.3928571,80.89285714 +13023,217.0666667,1180,452,,210.7142857,80.71428571 +13024,217.0833333,1167,451,,208.3928571,80.53571429 +13025,217.1,1155,451,,206.25,80.53571429 +13026,217.1166667,1144,450,,204.2857143,80.35714286 +13027,217.1333333,1135,449,,202.6785714,80.17857143 +13028,217.15,1126,448,,201.0714286,80 +13029,217.1666667,1119,447,,199.8214286,79.82142857 +13030,217.1833333,1114,447,,198.9285714,79.82142857 +13031,217.2,1109,446,,198.0357143,79.64285714 +13032,217.2166667,1107,446,,197.6785714,79.64285714 +13033,217.2333333,1107,446,,197.6785714,79.64285714 +13034,217.25,1107,446,,197.6785714,79.64285714 +13035,217.2666667,1107,446,,197.6785714,79.64285714 +13036,217.2833333,1110,446,,198.2142857,79.64285714 +13037,217.3,1115,447,,199.1071429,79.82142857 +13038,217.3166667,1121,447,,200.1785714,79.82142857 +13039,217.3333333,1128,448,,201.4285714,80 +13040,217.35,1137,449,,203.0357143,80.17857143 +13041,217.3666667,1147,449,,204.8214286,80.17857143 +13042,217.3833333,1158,450,,206.7857143,80.35714286 +13043,217.4,1170,451,,208.9285714,80.53571429 +13044,217.4166667,1184,452,,211.4285714,80.71428571 +13045,217.4333333,1198,453,,213.9285714,80.89285714 +13046,217.45,1214,453,,216.7857143,80.89285714 +13047,217.4666667,1230,454,,219.6428571,81.07142857 +13048,217.4833333,1248,455,,222.8571429,81.25 +13049,217.5,1266,456,,226.0714286,81.42857143 +13050,217.5166667,1284,457,,229.2857143,81.60714286 +13051,217.5333333,1304,457,,232.8571429,81.60714286 +13052,217.55,1323,458,,236.25,81.78571429 +13053,217.5666667,1344,458,,240,81.78571429 +13054,217.5833333,1364,458,,243.5714286,81.78571429 +13055,217.6,1385,458,,247.3214286,81.78571429 +13056,217.6166667,1405,458,,250.8928571,81.78571429 +13057,217.6333333,1426,458,,254.6428571,81.78571429 +13058,217.65,1447,457,,258.3928571,81.60714286 +13059,217.6666667,1467,457,,261.9642857,81.60714286 +13060,217.6833333,1487,456,,265.5357143,81.42857143 +13061,217.7,1506,456,,268.9285714,81.42857143 +13062,217.7166667,1525,455,,272.3214286,81.25 +13063,217.7333333,1544,454,,275.7142857,81.07142857 +13064,217.75,1561,453,,278.75,80.89285714 +13065,217.7666667,1578,452,,281.7857143,80.71428571 +13066,217.7833333,1594,451,,284.6428571,80.53571429 +13067,217.8,1609,451,,287.3214286,80.53571429 +13068,217.8166667,1623,449,,289.8214286,80.17857143 +13069,217.8333333,1636,448,,292.1428571,80 +13070,217.85,1647,448,,294.1071429,80 +13071,217.8666667,1658,447,,296.0714286,79.82142857 +13072,217.8833333,1667,446,,297.6785714,79.64285714 +13073,217.9,1675,445,,299.1071429,79.46428571 +13074,217.9166667,1681,445,,300.1785714,79.46428571 +13075,217.9333333,1687,444,,301.25,79.28571429 +13076,217.95,1690,444,,301.7857143,79.28571429 +13077,217.9666667,1693,444,,302.3214286,79.28571429 +13078,217.9833333,1693,444,,302.3214286,79.28571429 +13079,218,1693,444,,302.3214286,79.28571429 +13080,218.0166667,1691,444,,301.9642857,79.28571429 +13081,218.0333333,1688,445,,301.4285714,79.46428571 +13082,218.05,1683,445,,300.5357143,79.46428571 +13083,218.0666667,1677,445,,299.4642857,79.46428571 +13084,218.0833333,1669,446,,298.0357143,79.64285714 +13085,218.1,1660,447,,296.4285714,79.82142857 +13086,218.1166667,1650,448,,294.6428571,80 +13087,218.1333333,1639,448,,292.6785714,80 +13088,218.15,1626,449,,290.3571429,80.17857143 +13089,218.1666667,1613,450,,288.0357143,80.35714286 +13090,218.1833333,1598,451,,285.3571429,80.53571429 +13091,218.2,1582,452,,282.5,80.71428571 +13092,218.2166667,1566,453,,279.6428571,80.89285714 +13093,218.2333333,1549,454,,276.6071429,81.07142857 +13094,218.25,1530,455,,273.2142857,81.25 +13095,218.2666667,1511,456,,269.8214286,81.42857143 +13096,218.2833333,1492,457,,266.4285714,81.60714286 +13097,218.3,1473,457,,263.0357143,81.60714286 +13098,218.3166667,1453,458,,259.4642857,81.78571429 +13099,218.3333333,1432,458,,255.7142857,81.78571429 +13100,218.35,1412,458,,252.1428571,81.78571429 +13101,218.3666667,1391,459,,248.3928571,81.96428571 +13102,218.3833333,1370,459,,244.6428571,81.96428571 +13103,218.4,1351,458,,241.25,81.78571429 +13104,218.4166667,1330,458,,237.5,81.78571429 +13105,218.4333333,1311,458,,234.1071429,81.78571429 +13106,218.45,1291,457,,230.5357143,81.60714286 +13107,218.4666667,1272,457,,227.1428571,81.60714286 +13108,218.4833333,1254,456,,223.9285714,81.42857143 +13109,218.5,1237,455,,220.8928571,81.25 +13110,218.5166667,1220,454,,217.8571429,81.07142857 +13111,218.5333333,1204,453,,215,80.89285714 +13112,218.55,1190,452,,212.5,80.71428571 +13113,218.5666667,1176,451,,210,80.53571429 +13114,218.5833333,1163,451,,207.6785714,80.53571429 +13115,218.6,1151,450,,205.5357143,80.35714286 +13116,218.6166667,1141,449,,203.75,80.17857143 +13117,218.6333333,1132,449,,202.1428571,80.17857143 +13118,218.65,1125,448,,200.8928571,80 +13119,218.6666667,1119,447,,199.8214286,79.82142857 +13120,218.6833333,1114,447,,198.9285714,79.82142857 +13121,218.7,1110,447,,198.2142857,79.82142857 +13122,218.7166667,1109,447,,198.0357143,79.82142857 +13123,218.7333333,1109,447,,198.0357143,79.82142857 +13124,218.75,1109,447,,198.0357143,79.82142857 +13125,218.7666667,1111,447,,198.3928571,79.82142857 +13126,218.7833333,1115,447,,199.1071429,79.82142857 +13127,218.8,1120,447,,200,79.82142857 +13128,218.8166667,1127,448,,201.25,80 +13129,218.8333333,1135,448,,202.6785714,80 +13130,218.85,1144,449,,204.2857143,80.17857143 +13131,218.8666667,1154,450,,206.0714286,80.35714286 +13132,218.8833333,1166,451,,208.2142857,80.53571429 +13133,218.9,1179,452,,210.5357143,80.71428571 +13134,218.9166667,1194,452,,213.2142857,80.71428571 +13135,218.9333333,1208,453,,215.7142857,80.89285714 +13136,218.95,1224,454,,218.5714286,81.07142857 +13137,218.9666667,1241,455,,221.6071429,81.25 +13138,218.9833333,1259,456,,224.8214286,81.42857143 +13139,219,1277,456,,228.0357143,81.42857143 +13140,219.0166667,1296,457,,231.4285714,81.60714286 +13141,219.0333333,1316,458,,235,81.78571429 +13142,219.05,1336,458,,238.5714286,81.78571429 +13143,219.0666667,1356,458,,242.1428571,81.78571429 +13144,219.0833333,1376,458,,245.7142857,81.78571429 +13145,219.1,1397,458,,249.4642857,81.78571429 +13146,219.1166667,1417,458,,253.0357143,81.78571429 +13147,219.1333333,1438,458,,256.7857143,81.78571429 +13148,219.15,1458,457,,260.3571429,81.60714286 +13149,219.1666667,1478,457,,263.9285714,81.60714286 +13150,219.1833333,1498,456,,267.5,81.42857143 +13151,219.2,1517,455,,270.8928571,81.25 +13152,219.2166667,1536,454,,274.2857143,81.07142857 +13153,219.2333333,1554,454,,277.5,81.07142857 +13154,219.25,1571,453,,280.5357143,80.89285714 +13155,219.2666667,1587,452,,283.3928571,80.71428571 +13156,219.2833333,1603,451,,286.25,80.53571429 +13157,219.3,1617,450,,288.75,80.35714286 +13158,219.3166667,1630,449,,291.0714286,80.17857143 +13159,219.3333333,1642,448,,293.2142857,80 +13160,219.35,1653,447,,295.1785714,79.82142857 +13161,219.3666667,1663,446,,296.9642857,79.64285714 +13162,219.3833333,1672,446,,298.5714286,79.64285714 +13163,219.4,1679,445,,299.8214286,79.46428571 +13164,219.4166667,1685,445,,300.8928571,79.46428571 +13165,219.4333333,1689,444,,301.6071429,79.28571429 +13166,219.45,1692,444,,302.1428571,79.28571429 +13167,219.4666667,1692,444,,302.1428571,79.28571429 +13168,219.4833333,1692,444,,302.1428571,79.28571429 +13169,219.5,1692,444,,302.1428571,79.28571429 +13170,219.5166667,1689,444,,301.6071429,79.28571429 +13171,219.5333333,1685,445,,300.8928571,79.46428571 +13172,219.55,1680,445,,300,79.46428571 +13173,219.5666667,1673,446,,298.75,79.64285714 +13174,219.5833333,1664,447,,297.1428571,79.82142857 +13175,219.6,1655,447,,295.5357143,79.82142857 +13176,219.6166667,1644,448,,293.5714286,80 +13177,219.6333333,1633,449,,291.6071429,80.17857143 +13178,219.65,1619,450,,289.1071429,80.35714286 +13179,219.6666667,1605,451,,286.6071429,80.53571429 +13180,219.6833333,1590,452,,283.9285714,80.71428571 +13181,219.7,1574,453,,281.0714286,80.89285714 +13182,219.7166667,1557,454,,278.0357143,81.07142857 +13183,219.7333333,1539,455,,274.8214286,81.25 +13184,219.75,1521,456,,271.6071429,81.42857143 +13185,219.7666667,1501,457,,268.0357143,81.60714286 +13186,219.7833333,1482,457,,264.6428571,81.60714286 +13187,219.8,1462,458,,261.0714286,81.78571429 +13188,219.8166667,1442,458,,257.5,81.78571429 +13189,219.8333333,1421,459,,253.75,81.96428571 +13190,219.85,1401,459,,250.1785714,81.96428571 +13191,219.8666667,1381,459,,246.6071429,81.96428571 +13192,219.8833333,1360,459,,242.8571429,81.96428571 +13193,219.9,1340,459,,239.2857143,81.96428571 +13194,219.9166667,1320,459,,235.7142857,81.96428571 +13195,219.9333333,1300,458,,232.1428571,81.78571429 +13196,219.95,1281,457,,228.75,81.60714286 +13197,219.9666667,1262,457,,225.3571429,81.60714286 +13198,219.9833333,1245,456,,222.3214286,81.42857143 +13199,220,1228,455,,219.2857143,81.25 +13200,220.0166667,1212,454,,216.4285714,81.07142857 +13201,220.0333333,1196,454,,213.5714286,81.07142857 +13202,220.05,1182,453,,211.0714286,80.89285714 +13203,220.0666667,1169,452,,208.75,80.71428571 +13204,220.0833333,1157,451,,206.6071429,80.53571429 +13205,220.1,1146,450,,204.6428571,80.35714286 +13206,220.1166667,1137,449,,203.0357143,80.17857143 +13207,220.1333333,1128,449,,201.4285714,80.17857143 +13208,220.15,1122,448,,200.3571429,80 +13209,220.1666667,1116,448,,199.2857143,80 +13210,220.1833333,1112,447,,198.5714286,79.82142857 +13211,220.2,1109,447,,198.0357143,79.82142857 +13212,220.2166667,1109,447,,198.0357143,79.82142857 +13213,220.2333333,1109,447,,198.0357143,79.82142857 +13214,220.25,1109,447,,198.0357143,79.82142857 +13215,220.2666667,1112,447,,198.5714286,79.82142857 +13216,220.2833333,1117,448,,199.4642857,80 +13217,220.3,1123,448,,200.5357143,80 +13218,220.3166667,1130,449,,201.7857143,80.17857143 +13219,220.3333333,1139,449,,203.3928571,80.17857143 +13220,220.35,1149,450,,205.1785714,80.35714286 +13221,220.3666667,1160,451,,207.1428571,80.53571429 +13222,220.3833333,1172,452,,209.2857143,80.71428571 +13223,220.4,1186,452,,211.7857143,80.71428571 +13224,220.4166667,1200,453,,214.2857143,80.89285714 +13225,220.4333333,1216,454,,217.1428571,81.07142857 +13226,220.45,1232,455,,220,81.25 +13227,220.4666667,1249,456,,223.0357143,81.42857143 +13228,220.4833333,1267,457,,226.25,81.60714286 +13229,220.5,1286,457,,229.6428571,81.60714286 +13230,220.5166667,1305,458,,233.0357143,81.78571429 +13231,220.5333333,1325,458,,236.6071429,81.78571429 +13232,220.55,1345,459,,240.1785714,81.96428571 +13233,220.5666667,1365,459,,243.75,81.96428571 +13234,220.5833333,1386,459,,247.5,81.96428571 +13235,220.6,1406,458,,251.0714286,81.78571429 +13236,220.6166667,1426,458,,254.6428571,81.78571429 +13237,220.6333333,1447,458,,258.3928571,81.78571429 +13238,220.65,1467,458,,261.9642857,81.78571429 +13239,220.6666667,1487,457,,265.5357143,81.60714286 +13240,220.6833333,1506,456,,268.9285714,81.42857143 +13241,220.7,1525,456,,272.3214286,81.42857143 +13242,220.7166667,1543,455,,275.5357143,81.25 +13243,220.7333333,1561,454,,278.75,81.07142857 +13244,220.75,1577,453,,281.6071429,80.89285714 +13245,220.7666667,1593,452,,284.4642857,80.71428571 +13246,220.7833333,1608,451,,287.1428571,80.53571429 +13247,220.8,1622,450,,289.6428571,80.35714286 +13248,220.8166667,1635,449,,291.9642857,80.17857143 +13249,220.8333333,1646,448,,293.9285714,80 +13250,220.85,1657,447,,295.8928571,79.82142857 +13251,220.8666667,1666,447,,297.5,79.82142857 +13252,220.8833333,1674,446,,298.9285714,79.64285714 +13253,220.9,1680,445,,300,79.46428571 +13254,220.9166667,1685,445,,300.8928571,79.46428571 +13255,220.9333333,1689,445,,301.6071429,79.46428571 +13256,220.95,1691,445,,301.9642857,79.46428571 +13257,220.9666667,1691,445,,301.9642857,79.46428571 +13258,220.9833333,1691,445,,301.9642857,79.46428571 +13259,221,1689,445,,301.6071429,79.46428571 +13260,221.0166667,1686,445,,301.0714286,79.46428571 +13261,221.0333333,1681,446,,300.1785714,79.64285714 +13262,221.05,1675,446,,299.1071429,79.64285714 +13263,221.0666667,1668,447,,297.8571429,79.82142857 +13264,221.0833333,1659,448,,296.25,80 +13265,221.1,1649,448,,294.4642857,80 +13266,221.1166667,1637,449,,292.3214286,80.17857143 +13267,221.1333333,1625,450,,290.1785714,80.35714286 +13268,221.15,1611,451,,287.6785714,80.53571429 +13269,221.1666667,1597,452,,285.1785714,80.71428571 +13270,221.1833333,1581,453,,282.3214286,80.89285714 +13271,221.2,1565,454,,279.4642857,81.07142857 +13272,221.2166667,1547,455,,276.25,81.25 +13273,221.2333333,1529,456,,273.0357143,81.42857143 +13274,221.25,1511,457,,269.8214286,81.60714286 +13275,221.2666667,1492,457,,266.4285714,81.60714286 +13276,221.2833333,1472,458,,262.8571429,81.78571429 +13277,221.3,1452,459,,259.2857143,81.96428571 +13278,221.3166667,1432,459,,255.7142857,81.96428571 +13279,221.3333333,1412,459,,252.1428571,81.96428571 +13280,221.35,1391,459,,248.3928571,81.96428571 +13281,221.3666667,1371,460,,244.8214286,82.14285714 +13282,221.3833333,1350,460,,241.0714286,82.14285714 +13283,221.4,1331,460,,237.6785714,82.14285714 +13284,221.4166667,1311,459,,234.1071429,81.96428571 +13285,221.4333333,1292,459,,230.7142857,81.96428571 +13286,221.45,1273,458,,227.3214286,81.78571429 +13287,221.4666667,1255,457,,224.1071429,81.60714286 +13288,221.4833333,1238,457,,221.0714286,81.60714286 +13289,221.5,1221,455,,218.0357143,81.25 +13290,221.5166667,1205,454,,215.1785714,81.07142857 +13291,221.5333333,1190,454,,212.5,81.07142857 +13292,221.55,1177,453,,210.1785714,80.89285714 +13293,221.5666667,1164,452,,207.8571429,80.71428571 +13294,221.5833333,1153,451,,205.8928571,80.53571429 +13295,221.6,1143,450,,204.1071429,80.35714286 +13296,221.6166667,1134,449,,202.5,80.17857143 +13297,221.6333333,1126,449,,201.0714286,80.17857143 +13298,221.65,1120,448,,200,80 +13299,221.6666667,1115,448,,199.1071429,80 +13300,221.6833333,1112,448,,198.5714286,80 +13301,221.7,1110,447,,198.2142857,79.82142857 +13302,221.7166667,1110,447,,198.2142857,79.82142857 +13303,221.7333333,1110,447,,198.2142857,79.82142857 +13304,221.75,1112,447,,198.5714286,79.82142857 +13305,221.7666667,1116,448,,199.2857143,80 +13306,221.7833333,1121,448,,200.1785714,80 +13307,221.8,1128,449,,201.4285714,80.17857143 +13308,221.8166667,1135,449,,202.6785714,80.17857143 +13309,221.8333333,1145,450,,204.4642857,80.35714286 +13310,221.85,1155,451,,206.25,80.53571429 +13311,221.8666667,1167,452,,208.3928571,80.71428571 +13312,221.8833333,1180,452,,210.7142857,80.71428571 +13313,221.9,1193,453,,213.0357143,80.89285714 +13314,221.9166667,1208,454,,215.7142857,81.07142857 +13315,221.9333333,1224,455,,218.5714286,81.25 +13316,221.95,1241,456,,221.6071429,81.42857143 +13317,221.9666667,1259,457,,224.8214286,81.60714286 +13318,221.9833333,1277,458,,228.0357143,81.78571429 +13319,222,1296,458,,231.4285714,81.78571429 +13320,222.0166667,1315,459,,234.8214286,81.96428571 +13321,222.0333333,1335,459,,238.3928571,81.96428571 +13322,222.05,1355,459,,241.9642857,81.96428571 +13323,222.0666667,1375,459,,245.5357143,81.96428571 +13324,222.0833333,1396,459,,249.2857143,81.96428571 +13325,222.1,1416,459,,252.8571429,81.96428571 +13326,222.1166667,1436,459,,256.4285714,81.96428571 +13327,222.1333333,1456,458,,260,81.78571429 +13328,222.15,1476,458,,263.5714286,81.78571429 +13329,222.1666667,1496,457,,267.1428571,81.60714286 +13330,222.1833333,1515,456,,270.5357143,81.42857143 +13331,222.2,1533,456,,273.75,81.42857143 +13332,222.2166667,1551,455,,276.9642857,81.25 +13333,222.2333333,1568,454,,280,81.07142857 +13334,222.25,1584,453,,282.8571429,80.89285714 +13335,222.2666667,1600,452,,285.7142857,80.71428571 +13336,222.2833333,1614,451,,288.2142857,80.53571429 +13337,222.3,1627,450,,290.5357143,80.35714286 +13338,222.3166667,1640,449,,292.8571429,80.17857143 +13339,222.3333333,1650,448,,294.6428571,80 +13340,222.35,1660,448,,296.4285714,80 +13341,222.3666667,1669,447,,298.0357143,79.82142857 +13342,222.3833333,1676,446,,299.2857143,79.64285714 +13343,222.4,1682,446,,300.3571429,79.64285714 +13344,222.4166667,1686,445,,301.0714286,79.46428571 +13345,222.4333333,1689,445,,301.6071429,79.46428571 +13346,222.45,1689,445,,301.6071429,79.46428571 +13347,222.4666667,1689,445,,301.6071429,79.46428571 +13348,222.4833333,1689,445,,301.6071429,79.46428571 +13349,222.5,1687,445,,301.25,79.46428571 +13350,222.5166667,1683,446,,300.5357143,79.64285714 +13351,222.5333333,1677,446,,299.4642857,79.64285714 +13352,222.55,1670,447,,298.2142857,79.82142857 +13353,222.5666667,1662,448,,296.7857143,80 +13354,222.5833333,1653,448,,295.1785714,80 +13355,222.6,1642,449,,293.2142857,80.17857143 +13356,222.6166667,1630,450,,291.0714286,80.35714286 +13357,222.6333333,1617,451,,288.75,80.53571429 +13358,222.65,1603,452,,286.25,80.71428571 +13359,222.6666667,1588,453,,283.5714286,80.89285714 +13360,222.6833333,1571,454,,280.5357143,81.07142857 +13361,222.7,1555,455,,277.6785714,81.25 +13362,222.7166667,1537,456,,274.4642857,81.42857143 +13363,222.7333333,1519,457,,271.25,81.60714286 +13364,222.75,1500,458,,267.8571429,81.78571429 +13365,222.7666667,1481,458,,264.4642857,81.78571429 +13366,222.7833333,1461,458,,260.8928571,81.78571429 +13367,222.8,1441,459,,257.3214286,81.96428571 +13368,222.8166667,1421,459,,253.75,81.96428571 +13369,222.8333333,1401,460,,250.1785714,82.14285714 +13370,222.85,1381,460,,246.6071429,82.14285714 +13371,222.8666667,1360,460,,242.8571429,82.14285714 +13372,222.8833333,1340,460,,239.2857143,82.14285714 +13373,222.9,1320,459,,235.7142857,81.96428571 +13374,222.9166667,1301,459,,232.3214286,81.96428571 +13375,222.9333333,1282,458,,228.9285714,81.78571429 +13376,222.95,1263,457,,225.5357143,81.60714286 +13377,222.9666667,1246,456,,222.5,81.42857143 +13378,222.9833333,1229,456,,219.4642857,81.42857143 +13379,223,1213,455,,216.6071429,81.25 +13380,223.0166667,1198,454,,213.9285714,81.07142857 +13381,223.0333333,1184,454,,211.4285714,81.07142857 +13382,223.05,1171,452,,209.1071429,80.71428571 +13383,223.0666667,1159,452,,206.9642857,80.71428571 +13384,223.0833333,1148,451,,205,80.53571429 +13385,223.1,1138,450,,203.2142857,80.35714286 +13386,223.1166667,1130,449,,201.7857143,80.17857143 +13387,223.1333333,1123,449,,200.5357143,80.17857143 +13388,223.15,1118,449,,199.6428571,80.17857143 +13389,223.1666667,1114,448,,198.9285714,80 +13390,223.1833333,1111,448,,198.3928571,80 +13391,223.2,1111,447,,198.3928571,79.82142857 +13392,223.2166667,1111,447,,198.3928571,79.82142857 +13393,223.2333333,1112,447,,198.5714286,79.82142857 +13394,223.25,1114,448,,198.9285714,80 +13395,223.2666667,1119,448,,199.8214286,80 +13396,223.2833333,1125,449,,200.8928571,80.17857143 +13397,223.3,1132,449,,202.1428571,80.17857143 +13398,223.3166667,1140,450,,203.5714286,80.35714286 +13399,223.3333333,1150,451,,205.3571429,80.53571429 +13400,223.35,1161,451,,207.3214286,80.53571429 +13401,223.3666667,1174,452,,209.6428571,80.71428571 +13402,223.3833333,1187,453,,211.9642857,80.89285714 +13403,223.4,1201,454,,214.4642857,81.07142857 +13404,223.4166667,1216,455,,217.1428571,81.25 +13405,223.4333333,1233,456,,220.1785714,81.42857143 +13406,223.45,1250,456,,223.2142857,81.42857143 +13407,223.4666667,1268,457,,226.4285714,81.60714286 +13408,223.4833333,1286,458,,229.6428571,81.78571429 +13409,223.5,1305,459,,233.0357143,81.96428571 +13410,223.5166667,1325,459,,236.6071429,81.96428571 +13411,223.5333333,1345,460,,240.1785714,82.14285714 +13412,223.55,1365,460,,243.75,82.14285714 +13413,223.5666667,1385,460,,247.3214286,82.14285714 +13414,223.5833333,1405,459,,250.8928571,81.96428571 +13415,223.6,1426,459,,254.6428571,81.96428571 +13416,223.6166667,1446,459,,258.2142857,81.96428571 +13417,223.6333333,1466,459,,261.7857143,81.96428571 +13418,223.65,1486,458,,265.3571429,81.78571429 +13419,223.6666667,1505,457,,268.75,81.60714286 +13420,223.6833333,1524,457,,272.1428571,81.60714286 +13421,223.7,1542,456,,275.3571429,81.42857143 +13422,223.7166667,1559,455,,278.3928571,81.25 +13423,223.7333333,1575,454,,281.25,81.07142857 +13424,223.75,1591,453,,284.1071429,80.89285714 +13425,223.7666667,1606,452,,286.7857143,80.71428571 +13426,223.7833333,1620,451,,289.2857143,80.53571429 +13427,223.8,1633,450,,291.6071429,80.35714286 +13428,223.8166667,1644,449,,293.5714286,80.17857143 +13429,223.8333333,1654,449,,295.3571429,80.17857143 +13430,223.85,1664,448,,297.1428571,80 +13431,223.8666667,1671,447,,298.3928571,79.82142857 +13432,223.8833333,1678,447,,299.6428571,79.82142857 +13433,223.9,1683,446,,300.5357143,79.64285714 +13434,223.9166667,1687,446,,301.25,79.64285714 +13435,223.9333333,1689,446,,301.6071429,79.64285714 +13436,223.95,1689,446,,301.6071429,79.64285714 +13437,223.9666667,1689,446,,301.6071429,79.64285714 +13438,223.9833333,1687,446,,301.25,79.64285714 +13439,224,1684,446,,300.7142857,79.64285714 +13440,224.0166667,1679,447,,299.8214286,79.82142857 +13441,224.0333333,1673,447,,298.75,79.82142857 +13442,224.05,1665,448,,297.3214286,80 +13443,224.0666667,1657,448,,295.8928571,80 +13444,224.0833333,1647,449,,294.1071429,80.17857143 +13445,224.1,1636,450,,292.1428571,80.35714286 +13446,224.1166667,1623,451,,289.8214286,80.53571429 +13447,224.1333333,1610,452,,287.5,80.71428571 +13448,224.15,1595,453,,284.8214286,80.89285714 +13449,224.1666667,1580,454,,282.1428571,81.07142857 +13450,224.1833333,1563,455,,279.1071429,81.25 +13451,224.2,1546,456,,276.0714286,81.42857143 +13452,224.2166667,1528,457,,272.8571429,81.60714286 +13453,224.2333333,1510,457,,269.6428571,81.60714286 +13454,224.25,1491,458,,266.25,81.78571429 +13455,224.2666667,1471,459,,262.6785714,81.96428571 +13456,224.2833333,1452,459,,259.2857143,81.96428571 +13457,224.3,1432,460,,255.7142857,82.14285714 +13458,224.3166667,1411,460,,251.9642857,82.14285714 +13459,224.3333333,1391,460,,248.3928571,82.14285714 +13460,224.35,1371,460,,244.8214286,82.14285714 +13461,224.3666667,1351,460,,241.25,82.14285714 +13462,224.3833333,1331,460,,237.6785714,82.14285714 +13463,224.4,1311,460,,234.1071429,82.14285714 +13464,224.4166667,1292,459,,230.7142857,81.96428571 +13465,224.4333333,1273,458,,227.3214286,81.78571429 +13466,224.45,1256,458,,224.2857143,81.78571429 +13467,224.4666667,1238,457,,221.0714286,81.60714286 +13468,224.4833333,1222,456,,218.2142857,81.42857143 +13469,224.5,1206,455,,215.3571429,81.25 +13470,224.5166667,1192,454,,212.8571429,81.07142857 +13471,224.5333333,1178,453,,210.3571429,80.89285714 +13472,224.55,1166,452,,208.2142857,80.71428571 +13473,224.5666667,1155,451,,206.25,80.53571429 +13474,224.5833333,1144,451,,204.2857143,80.53571429 +13475,224.6,1135,450,,202.6785714,80.35714286 +13476,224.6166667,1128,449,,201.4285714,80.17857143 +13477,224.6333333,1122,449,,200.3571429,80.17857143 +13478,224.65,1117,448,,199.4642857,80 +13479,224.6666667,1114,448,,198.9285714,80 +13480,224.6833333,1112,448,,198.5714286,80 +13481,224.7,1112,448,,198.5714286,80 +13482,224.7166667,1112,448,,198.5714286,80 +13483,224.7333333,1114,448,,198.9285714,80 +13484,224.75,1118,448,,199.6428571,80 +13485,224.7666667,1123,449,,200.5357143,80.17857143 +13486,224.7833333,1130,449,,201.7857143,80.17857143 +13487,224.8,1137,450,,203.0357143,80.35714286 +13488,224.8166667,1147,450,,204.8214286,80.35714286 +13489,224.8333333,1157,451,,206.6071429,80.53571429 +13490,224.85,1168,452,,208.5714286,80.71428571 +13491,224.8666667,1181,453,,210.8928571,80.89285714 +13492,224.8833333,1195,454,,213.3928571,81.07142857 +13493,224.9,1210,455,,216.0714286,81.25 +13494,224.9166667,1226,455,,218.9285714,81.25 +13495,224.9333333,1242,456,,221.7857143,81.42857143 +13496,224.95,1260,457,,225,81.60714286 +13497,224.9666667,1278,458,,228.2142857,81.78571429 +13498,224.9833333,1297,458,,231.6071429,81.78571429 +13499,225,1316,459,,235,81.96428571 +13500,225.0166667,1336,459,,238.5714286,81.96428571 +13501,225.0333333,1355,460,,241.9642857,82.14285714 +13502,225.05,1375,460,,245.5357143,82.14285714 +13503,225.0666667,1396,459,,249.2857143,81.96428571 +13504,225.0833333,1416,459,,252.8571429,81.96428571 +13505,225.1,1437,459,,256.6071429,81.96428571 +13506,225.1166667,1457,458,,260.1785714,81.78571429 +13507,225.1333333,1476,458,,263.5714286,81.78571429 +13508,225.15,1496,457,,267.1428571,81.60714286 +13509,225.1666667,1514,457,,270.3571429,81.60714286 +13510,225.1833333,1533,456,,273.75,81.42857143 +13511,225.2,1550,455,,276.7857143,81.25 +13512,225.2166667,1568,454,,280,81.07142857 +13513,225.2333333,1584,453,,282.8571429,80.89285714 +13514,225.25,1599,452,,285.5357143,80.71428571 +13515,225.2666667,1613,452,,288.0357143,80.71428571 +13516,225.2833333,1626,451,,290.3571429,80.53571429 +13517,225.3,1638,450,,292.5,80.35714286 +13518,225.3166667,1649,449,,294.4642857,80.17857143 +13519,225.3333333,1659,448,,296.25,80 +13520,225.35,1668,447,,297.8571429,79.82142857 +13521,225.3666667,1674,447,,298.9285714,79.82142857 +13522,225.3833333,1680,446,,300,79.64285714 +13523,225.4,1685,446,,300.8928571,79.64285714 +13524,225.4166667,1688,445,,301.4285714,79.46428571 +13525,225.4333333,1688,445,,301.4285714,79.46428571 +13526,225.45,1688,445,,301.4285714,79.46428571 +13527,225.4666667,1688,445,,301.4285714,79.46428571 +13528,225.4833333,1685,445,,300.8928571,79.46428571 +13529,225.5,1681,446,,300.1785714,79.64285714 +13530,225.5166667,1676,447,,299.2857143,79.82142857 +13531,225.5333333,1669,447,,298.0357143,79.82142857 +13532,225.55,1661,448,,296.6071429,80 +13533,225.5666667,1652,449,,295,80.17857143 +13534,225.5833333,1641,449,,293.0357143,80.17857143 +13535,225.6,1629,450,,290.8928571,80.35714286 +13536,225.6166667,1616,451,,288.5714286,80.53571429 +13537,225.6333333,1602,453,,286.0714286,80.89285714 +13538,225.65,1587,453,,283.3928571,80.89285714 +13539,225.6666667,1572,454,,280.7142857,81.07142857 +13540,225.6833333,1555,455,,277.6785714,81.25 +13541,225.7,1537,456,,274.4642857,81.42857143 +13542,225.7166667,1519,457,,271.25,81.60714286 +13543,225.7333333,1501,458,,268.0357143,81.78571429 +13544,225.75,1481,459,,264.4642857,81.96428571 +13545,225.7666667,1462,459,,261.0714286,81.96428571 +13546,225.7833333,1442,460,,257.5,82.14285714 +13547,225.8,1422,460,,253.9285714,82.14285714 +13548,225.8166667,1402,460,,250.3571429,82.14285714 +13549,225.8333333,1382,460,,246.7857143,82.14285714 +13550,225.85,1361,460,,243.0357143,82.14285714 +13551,225.8666667,1342,460,,239.6428571,82.14285714 +13552,225.8833333,1322,460,,236.0714286,82.14285714 +13553,225.9,1303,459,,232.6785714,81.96428571 +13554,225.9166667,1284,459,,229.2857143,81.96428571 +13555,225.9333333,1266,458,,226.0714286,81.78571429 +13556,225.95,1249,457,,223.0357143,81.60714286 +13557,225.9666667,1232,456,,220,81.42857143 +13558,225.9833333,1215,455,,216.9642857,81.25 +13559,226,1200,454,,214.2857143,81.07142857 +13560,226.0166667,1186,454,,211.7857143,81.07142857 +13561,226.0333333,1174,453,,209.6428571,80.89285714 +13562,226.05,1162,452,,207.5,80.71428571 +13563,226.0666667,1151,451,,205.5357143,80.53571429 +13564,226.0833333,1142,451,,203.9285714,80.53571429 +13565,226.1,1133,450,,202.3214286,80.35714286 +13566,226.1166667,1127,449,,201.25,80.17857143 +13567,226.1333333,1121,449,,200.1785714,80.17857143 +13568,226.15,1117,449,,199.4642857,80.17857143 +13569,226.1666667,1114,448,,198.9285714,80 +13570,226.1833333,1114,448,,198.9285714,80 +13571,226.2,1114,448,,198.9285714,80 +13572,226.2166667,1115,448,,199.1071429,80 +13573,226.2333333,1118,449,,199.6428571,80.17857143 +13574,226.25,1122,449,,200.3571429,80.17857143 +13575,226.2666667,1128,449,,201.4285714,80.17857143 +13576,226.2833333,1135,450,,202.6785714,80.35714286 +13577,226.3,1144,450,,204.2857143,80.35714286 +13578,226.3166667,1153,451,,205.8928571,80.53571429 +13579,226.3333333,1164,452,,207.8571429,80.71428571 +13580,226.35,1176,452,,210,80.71428571 +13581,226.3666667,1190,454,,212.5,81.07142857 +13582,226.3833333,1204,454,,215,81.07142857 +13583,226.4,1219,455,,217.6785714,81.25 +13584,226.4166667,1235,456,,220.5357143,81.42857143 +13585,226.4333333,1252,457,,223.5714286,81.60714286 +13586,226.45,1270,458,,226.7857143,81.78571429 +13587,226.4666667,1288,459,,230,81.96428571 +13588,226.4833333,1307,459,,233.3928571,81.96428571 +13589,226.5,1326,460,,236.7857143,82.14285714 +13590,226.5166667,1346,460,,240.3571429,82.14285714 +13591,226.5333333,1366,460,,243.9285714,82.14285714 +13592,226.55,1386,460,,247.5,82.14285714 +13593,226.5666667,1406,460,,251.0714286,82.14285714 +13594,226.5833333,1426,460,,254.6428571,82.14285714 +13595,226.6,1446,459,,258.2142857,81.96428571 +13596,226.6166667,1466,459,,261.7857143,81.96428571 +13597,226.6333333,1486,458,,265.3571429,81.78571429 +13598,226.65,1505,458,,268.75,81.78571429 +13599,226.6666667,1523,457,,271.9642857,81.60714286 +13600,226.6833333,1541,456,,275.1785714,81.42857143 +13601,226.7,1558,455,,278.2142857,81.25 +13602,226.7166667,1575,454,,281.25,81.07142857 +13603,226.7333333,1591,453,,284.1071429,80.89285714 +13604,226.75,1605,452,,286.6071429,80.71428571 +13605,226.7666667,1619,451,,289.1071429,80.53571429 +13606,226.7833333,1632,450,,291.4285714,80.35714286 +13607,226.8,1643,449,,293.3928571,80.17857143 +13608,226.8166667,1653,449,,295.1785714,80.17857143 +13609,226.8333333,1662,448,,296.7857143,80 +13610,226.85,1670,447,,298.2142857,79.82142857 +13611,226.8666667,1676,447,,299.2857143,79.82142857 +13612,226.8833333,1682,446,,300.3571429,79.64285714 +13613,226.9,1685,446,,300.8928571,79.64285714 +13614,226.9166667,1687,446,,301.25,79.64285714 +13615,226.9333333,1687,446,,301.25,79.64285714 +13616,226.95,1687,446,,301.25,79.64285714 +13617,226.9666667,1686,446,,301.0714286,79.64285714 +13618,226.9833333,1682,446,,300.3571429,79.64285714 +13619,227,1678,447,,299.6428571,79.82142857 +13620,227.0166667,1672,447,,298.5714286,79.82142857 +13621,227.0333333,1664,448,,297.1428571,80 +13622,227.05,1655,448,,295.5357143,80 +13623,227.0666667,1645,449,,293.75,80.17857143 +13624,227.0833333,1634,450,,291.7857143,80.35714286 +13625,227.1,1622,451,,289.6428571,80.53571429 +13626,227.1166667,1609,452,,287.3214286,80.71428571 +13627,227.1333333,1595,453,,284.8214286,80.89285714 +13628,227.15,1579,454,,281.9642857,81.07142857 +13629,227.1666667,1563,455,,279.1071429,81.25 +13630,227.1833333,1546,456,,276.0714286,81.42857143 +13631,227.2,1528,457,,272.8571429,81.60714286 +13632,227.2166667,1510,458,,269.6428571,81.78571429 +13633,227.2333333,1491,458,,266.25,81.78571429 +13634,227.25,1472,459,,262.8571429,81.96428571 +13635,227.2666667,1452,460,,259.2857143,82.14285714 +13636,227.2833333,1432,460,,255.7142857,82.14285714 +13637,227.3,1412,460,,252.1428571,82.14285714 +13638,227.3166667,1392,461,,248.5714286,82.32142857 +13639,227.3333333,1372,461,,245,82.32142857 +13640,227.35,1352,461,,241.4285714,82.32142857 +13641,227.3666667,1333,461,,238.0357143,82.32142857 +13642,227.3833333,1313,460,,234.4642857,82.14285714 +13643,227.4,1294,459,,231.0714286,81.96428571 +13644,227.4166667,1276,458,,227.8571429,81.78571429 +13645,227.4333333,1258,458,,224.6428571,81.78571429 +13646,227.45,1241,457,,221.6071429,81.60714286 +13647,227.4666667,1224,456,,218.5714286,81.42857143 +13648,227.4833333,1209,455,,215.8928571,81.25 +13649,227.5,1194,454,,213.2142857,81.07142857 +13650,227.5166667,1181,453,,210.8928571,80.89285714 +13651,227.5333333,1169,452,,208.75,80.71428571 +13652,227.55,1158,452,,206.7857143,80.71428571 +13653,227.5666667,1148,451,,205,80.53571429 +13654,227.5833333,1139,451,,203.3928571,80.53571429 +13655,227.6,1132,450,,202.1428571,80.35714286 +13656,227.6166667,1125,449,,200.8928571,80.17857143 +13657,227.6333333,1121,449,,200.1785714,80.17857143 +13658,227.65,1117,449,,199.4642857,80.17857143 +13659,227.6666667,1116,449,,199.2857143,80.17857143 +13660,227.6833333,1116,449,,199.2857143,80.17857143 +13661,227.7,1116,449,,199.2857143,80.17857143 +13662,227.7166667,1118,449,,199.6428571,80.17857143 +13663,227.7333333,1122,449,,200.3571429,80.17857143 +13664,227.75,1127,450,,201.25,80.35714286 +13665,227.7666667,1133,450,,202.3214286,80.35714286 +13666,227.7833333,1141,451,,203.75,80.53571429 +13667,227.8,1150,451,,205.3571429,80.53571429 +13668,227.8166667,1160,452,,207.1428571,80.71428571 +13669,227.8333333,1172,452,,209.2857143,80.71428571 +13670,227.85,1185,453,,211.6071429,80.89285714 +13671,227.8666667,1198,454,,213.9285714,81.07142857 +13672,227.8833333,1213,455,,216.6071429,81.25 +13673,227.9,1228,456,,219.2857143,81.42857143 +13674,227.9166667,1245,457,,222.3214286,81.60714286 +13675,227.9333333,1262,458,,225.3571429,81.78571429 +13676,227.95,1280,459,,228.5714286,81.96428571 +13677,227.9666667,1298,459,,231.7857143,81.96428571 +13678,227.9833333,1318,460,,235.3571429,82.14285714 +13679,228,1337,460,,238.75,82.14285714 +13680,228.0166667,1357,460,,242.3214286,82.14285714 +13681,228.0333333,1376,460,,245.7142857,82.14285714 +13682,228.05,1397,460,,249.4642857,82.14285714 +13683,228.0666667,1417,460,,253.0357143,82.14285714 +13684,228.0833333,1437,460,,256.6071429,82.14285714 +13685,228.1,1457,459,,260.1785714,81.96428571 +13686,228.1166667,1476,459,,263.5714286,81.96428571 +13687,228.1333333,1495,458,,266.9642857,81.78571429 +13688,228.15,1514,457,,270.3571429,81.60714286 +13689,228.1666667,1532,457,,273.5714286,81.60714286 +13690,228.1833333,1550,456,,276.7857143,81.42857143 +13691,228.2,1566,455,,279.6428571,81.25 +13692,228.2166667,1582,454,,282.5,81.07142857 +13693,228.2333333,1598,453,,285.3571429,80.89285714 +13694,228.25,1611,452,,287.6785714,80.71428571 +13695,228.2666667,1624,451,,290,80.53571429 +13696,228.2833333,1636,450,,292.1428571,80.35714286 +13697,228.3,1647,449,,294.1071429,80.17857143 +13698,228.3166667,1657,448,,295.8928571,80 +13699,228.3333333,1665,448,,297.3214286,80 +13700,228.35,1672,447,,298.5714286,79.82142857 +13701,228.3666667,1677,447,,299.4642857,79.82142857 +13702,228.3833333,1682,446,,300.3571429,79.64285714 +13703,228.4,1685,446,,300.8928571,79.64285714 +13704,228.4166667,1685,446,,300.8928571,79.64285714 +13705,228.4333333,1685,446,,300.8928571,79.64285714 +13706,228.45,1685,446,,300.8928571,79.64285714 +13707,228.4666667,1683,446,,300.5357143,79.64285714 +13708,228.4833333,1679,447,,299.8214286,79.82142857 +13709,228.5,1673,448,,298.75,80 +13710,228.5166667,1667,448,,297.6785714,80 +13711,228.5333333,1659,449,,296.25,80.17857143 +13712,228.55,1649,449,,294.4642857,80.17857143 +13713,228.5666667,1639,450,,292.6785714,80.35714286 +13714,228.5833333,1627,451,,290.5357143,80.53571429 +13715,228.6,1614,452,,288.2142857,80.71428571 +13716,228.6166667,1601,453,,285.8928571,80.89285714 +13717,228.6333333,1586,454,,283.2142857,81.07142857 +13718,228.65,1570,455,,280.3571429,81.25 +13719,228.6666667,1554,456,,277.5,81.42857143 +13720,228.6833333,1536,457,,274.2857143,81.60714286 +13721,228.7,1518,457,,271.0714286,81.60714286 +13722,228.7166667,1500,459,,267.8571429,81.96428571 +13723,228.7333333,1481,459,,264.4642857,81.96428571 +13724,228.75,1461,459,,260.8928571,81.96428571 +13725,228.7666667,1442,460,,257.5,82.14285714 +13726,228.7833333,1421,460,,253.75,82.14285714 +13727,228.8,1402,460,,250.3571429,82.14285714 +13728,228.8166667,1382,460,,246.7857143,82.14285714 +13729,228.8333333,1362,460,,243.2142857,82.14285714 +13730,228.85,1342,460,,239.6428571,82.14285714 +13731,228.8666667,1323,460,,236.25,82.14285714 +13732,228.8833333,1304,460,,232.8571429,82.14285714 +13733,228.9,1285,459,,229.4642857,81.96428571 +13734,228.9166667,1267,458,,226.25,81.78571429 +13735,228.9333333,1250,457,,223.2142857,81.60714286 +13736,228.95,1233,456,,220.1785714,81.42857143 +13737,228.9666667,1217,456,,217.3214286,81.42857143 +13738,228.9833333,1203,455,,214.8214286,81.25 +13739,229,1188,454,,212.1428571,81.07142857 +13740,229.0166667,1176,453,,210,80.89285714 +13741,229.0333333,1164,452,,207.8571429,80.71428571 +13742,229.05,1153,452,,205.8928571,80.71428571 +13743,229.0666667,1144,451,,204.2857143,80.53571429 +13744,229.0833333,1136,451,,202.8571429,80.53571429 +13745,229.1,1130,450,,201.7857143,80.35714286 +13746,229.1166667,1124,449,,200.7142857,80.17857143 +13747,229.1333333,1120,449,,200,80.17857143 +13748,229.15,1117,449,,199.4642857,80.17857143 +13749,229.1666667,1117,449,,199.4642857,80.17857143 +13750,229.1833333,1117,449,,199.4642857,80.17857143 +13751,229.2,1118,449,,199.6428571,80.17857143 +13752,229.2166667,1121,449,,200.1785714,80.17857143 +13753,229.2333333,1125,450,,200.8928571,80.35714286 +13754,229.25,1131,450,,201.9642857,80.35714286 +13755,229.2666667,1138,451,,203.2142857,80.53571429 +13756,229.2833333,1146,451,,204.6428571,80.53571429 +13757,229.3,1156,452,,206.4285714,80.71428571 +13758,229.3166667,1167,452,,208.3928571,80.71428571 +13759,229.3333333,1179,453,,210.5357143,80.89285714 +13760,229.35,1192,454,,212.8571429,81.07142857 +13761,229.3666667,1206,455,,215.3571429,81.25 +13762,229.3833333,1222,456,,218.2142857,81.42857143 +13763,229.4,1237,457,,220.8928571,81.60714286 +13764,229.4166667,1254,457,,223.9285714,81.60714286 +13765,229.4333333,1272,458,,227.1428571,81.78571429 +13766,229.45,1290,459,,230.3571429,81.96428571 +13767,229.4666667,1309,459,,233.75,81.96428571 +13768,229.4833333,1327,460,,236.9642857,82.14285714 +13769,229.5,1347,460,,240.5357143,82.14285714 +13770,229.5166667,1366,460,,243.9285714,82.14285714 +13771,229.5333333,1386,460,,247.5,82.14285714 +13772,229.55,1406,460,,251.0714286,82.14285714 +13773,229.5666667,1427,460,,254.8214286,82.14285714 +13774,229.5833333,1447,460,,258.3928571,82.14285714 +13775,229.6,1466,460,,261.7857143,82.14285714 +13776,229.6166667,1485,459,,265.1785714,81.96428571 +13777,229.6333333,1504,458,,268.5714286,81.78571429 +13778,229.65,1523,457,,271.9642857,81.60714286 +13779,229.6666667,1541,456,,275.1785714,81.42857143 +13780,229.6833333,1558,455,,278.2142857,81.25 +13781,229.7,1574,455,,281.0714286,81.25 +13782,229.7166667,1589,454,,283.75,81.07142857 +13783,229.7333333,1604,452,,286.4285714,80.71428571 +13784,229.75,1617,452,,288.75,80.71428571 +13785,229.7666667,1630,451,,291.0714286,80.53571429 +13786,229.7833333,1641,450,,293.0357143,80.35714286 +13787,229.8,1651,449,,294.8214286,80.17857143 +13788,229.8166667,1660,448,,296.4285714,80 +13789,229.8333333,1668,448,,297.8571429,80 +13790,229.85,1674,447,,298.9285714,79.82142857 +13791,229.8666667,1679,446,,299.8214286,79.64285714 +13792,229.8833333,1683,446,,300.5357143,79.64285714 +13793,229.9,1685,446,,300.8928571,79.64285714 +13794,229.9166667,1685,446,,300.8928571,79.64285714 +13795,229.9333333,1685,446,,300.8928571,79.64285714 +13796,229.95,1683,446,,300.5357143,79.64285714 +13797,229.9666667,1680,446,,300,79.64285714 +13798,229.9833333,1675,447,,299.1071429,79.82142857 +13799,230,1670,447,,298.2142857,79.82142857 +13800,230.0166667,1662,448,,296.7857143,80 +13801,230.0333333,1653,449,,295.1785714,80.17857143 +13802,230.05,1643,450,,293.3928571,80.35714286 +13803,230.0666667,1632,451,,291.4285714,80.53571429 +13804,230.0833333,1620,452,,289.2857143,80.71428571 +13805,230.1,1607,452,,286.9642857,80.71428571 +13806,230.1166667,1593,453,,284.4642857,80.89285714 +13807,230.1333333,1577,454,,281.6071429,81.07142857 +13808,230.15,1562,455,,278.9285714,81.25 +13809,230.1666667,1545,456,,275.8928571,81.42857143 +13810,230.1833333,1527,457,,272.6785714,81.60714286 +13811,230.2,1509,458,,269.4642857,81.78571429 +13812,230.2166667,1490,458,,266.0714286,81.78571429 +13813,230.2333333,1471,459,,262.6785714,81.96428571 +13814,230.25,1451,460,,259.1071429,82.14285714 +13815,230.2666667,1432,460,,255.7142857,82.14285714 +13816,230.2833333,1412,460,,252.1428571,82.14285714 +13817,230.3,1392,460,,248.5714286,82.14285714 +13818,230.3166667,1372,460,,245,82.14285714 +13819,230.3333333,1352,460,,241.4285714,82.14285714 +13820,230.35,1333,460,,238.0357143,82.14285714 +13821,230.3666667,1314,460,,234.6428571,82.14285714 +13822,230.3833333,1295,459,,231.25,81.96428571 +13823,230.4,1277,458,,228.0357143,81.78571429 +13824,230.4166667,1259,458,,224.8214286,81.78571429 +13825,230.4333333,1242,457,,221.7857143,81.60714286 +13826,230.45,1226,456,,218.9285714,81.42857143 +13827,230.4666667,1210,455,,216.0714286,81.25 +13828,230.4833333,1196,454,,213.5714286,81.07142857 +13829,230.5,1183,454,,211.25,81.07142857 +13830,230.5166667,1171,453,,209.1071429,80.89285714 +13831,230.5333333,1159,452,,206.9642857,80.71428571 +13832,230.55,1149,451,,205.1785714,80.53571429 +13833,230.5666667,1141,451,,203.75,80.53571429 +13834,230.5833333,1134,450,,202.5,80.35714286 +13835,230.6,1128,449,,201.4285714,80.17857143 +13836,230.6166667,1123,449,,200.5357143,80.17857143 +13837,230.6333333,1119,448,,199.8214286,80 +13838,230.65,1118,448,,199.6428571,80 +13839,230.6666667,1118,448,,199.6428571,80 +13840,230.6833333,1118,448,,199.6428571,80 +13841,230.7,1120,449,,200,80.17857143 +13842,230.7166667,1124,449,,200.7142857,80.17857143 +13843,230.7333333,1129,449,,201.6071429,80.17857143 +13844,230.75,1135,450,,202.6785714,80.35714286 +13845,230.7666667,1143,451,,204.1071429,80.53571429 +13846,230.7833333,1152,451,,205.7142857,80.53571429 +13847,230.8,1162,452,,207.5,80.71428571 +13848,230.8166667,1173,453,,209.4642857,80.89285714 +13849,230.8333333,1186,454,,211.7857143,81.07142857 +13850,230.85,1199,454,,214.1071429,81.07142857 +13851,230.8666667,1214,455,,216.7857143,81.25 +13852,230.8833333,1230,456,,219.6428571,81.42857143 +13853,230.9,1246,457,,222.5,81.60714286 +13854,230.9166667,1263,457,,225.5357143,81.60714286 +13855,230.9333333,1281,458,,228.75,81.78571429 +13856,230.95,1299,459,,231.9642857,81.96428571 +13857,230.9666667,1318,459,,235.3571429,81.96428571 +13858,230.9833333,1337,460,,238.75,82.14285714 +13859,231,1357,460,,242.3214286,82.14285714 +13860,231.0166667,1376,460,,245.7142857,82.14285714 +13861,231.0333333,1397,460,,249.4642857,82.14285714 +13862,231.05,1416,459,,252.8571429,81.96428571 +13863,231.0666667,1436,459,,256.4285714,81.96428571 +13864,231.0833333,1456,459,,260,81.96428571 +13865,231.1,1475,458,,263.3928571,81.78571429 +13866,231.1166667,1495,458,,266.9642857,81.78571429 +13867,231.1333333,1513,457,,270.1785714,81.60714286 +13868,231.15,1531,456,,273.3928571,81.42857143 +13869,231.1666667,1548,455,,276.4285714,81.25 +13870,231.1833333,1565,455,,279.4642857,81.25 +13871,231.2,1581,454,,282.3214286,81.07142857 +13872,231.2166667,1596,453,,285,80.89285714 +13873,231.2333333,1610,452,,287.5,80.71428571 +13874,231.25,1623,451,,289.8214286,80.53571429 +13875,231.2666667,1634,450,,291.7857143,80.35714286 +13876,231.2833333,1645,449,,293.75,80.17857143 +13877,231.3,1655,448,,295.5357143,80 +13878,231.3166667,1663,448,,296.9642857,80 +13879,231.3333333,1670,447,,298.2142857,79.82142857 +13880,231.35,1676,447,,299.2857143,79.82142857 +13881,231.3666667,1680,446,,300,79.64285714 +13882,231.3833333,1683,446,,300.5357143,79.64285714 +13883,231.4,1683,446,,300.5357143,79.64285714 +13884,231.4166667,1683,446,,300.5357143,79.64285714 +13885,231.4333333,1683,446,,300.5357143,79.64285714 +13886,231.45,1681,446,,300.1785714,79.64285714 +13887,231.4666667,1677,447,,299.4642857,79.82142857 +13888,231.4833333,1671,447,,298.3928571,79.82142857 +13889,231.5,1665,447,,297.3214286,79.82142857 +13890,231.5166667,1657,448,,295.8928571,80 +13891,231.5333333,1648,449,,294.2857143,80.17857143 +13892,231.55,1637,450,,292.3214286,80.35714286 +13893,231.5666667,1626,451,,290.3571429,80.53571429 +13894,231.5833333,1613,452,,288.0357143,80.71428571 +13895,231.6,1599,453,,285.5357143,80.89285714 +13896,231.6166667,1584,453,,282.8571429,80.89285714 +13897,231.6333333,1569,455,,280.1785714,81.25 +13898,231.65,1552,456,,277.1428571,81.42857143 +13899,231.6666667,1535,457,,274.1071429,81.60714286 +13900,231.6833333,1517,457,,270.8928571,81.60714286 +13901,231.7,1499,458,,267.6785714,81.78571429 +13902,231.7166667,1480,458,,264.2857143,81.78571429 +13903,231.7333333,1461,459,,260.8928571,81.96428571 +13904,231.75,1441,459,,257.3214286,81.96428571 +13905,231.7666667,1421,460,,253.75,82.14285714 +13906,231.7833333,1401,460,,250.1785714,82.14285714 +13907,231.8,1382,460,,246.7857143,82.14285714 +13908,231.8166667,1362,460,,243.2142857,82.14285714 +13909,231.8333333,1342,460,,239.6428571,82.14285714 +13910,231.85,1323,460,,236.25,82.14285714 +13911,231.8666667,1304,459,,232.8571429,81.96428571 +13912,231.8833333,1286,459,,229.6428571,81.96428571 +13913,231.9,1268,458,,226.4285714,81.78571429 +13914,231.9166667,1251,457,,223.3928571,81.60714286 +13915,231.9333333,1234,456,,220.3571429,81.42857143 +13916,231.95,1218,456,,217.5,81.42857143 +13917,231.9666667,1203,455,,214.8214286,81.25 +13918,231.9833333,1189,454,,212.3214286,81.07142857 +13919,232,1177,453,,210.1785714,80.89285714 +13920,232.0166667,1165,452,,208.0357143,80.71428571 +13921,232.0333333,1155,451,,206.25,80.53571429 +13922,232.05,1145,451,,204.4642857,80.53571429 +13923,232.0666667,1137,450,,203.0357143,80.35714286 +13924,232.0833333,1131,450,,201.9642857,80.35714286 +13925,232.1,1125,449,,200.8928571,80.17857143 +13926,232.1166667,1121,449,,200.1785714,80.17857143 +13927,232.1333333,1118,449,,199.6428571,80.17857143 +13928,232.15,1118,449,,199.6428571,80.17857143 +13929,232.1666667,1118,449,,199.6428571,80.17857143 +13930,232.1833333,1119,449,,199.8214286,80.17857143 +13931,232.2,1122,449,,200.3571429,80.17857143 +13932,232.2166667,1127,449,,201.25,80.17857143 +13933,232.2333333,1132,450,,202.1428571,80.35714286 +13934,232.25,1139,450,,203.3928571,80.35714286 +13935,232.2666667,1148,451,,205,80.53571429 +13936,232.2833333,1157,451,,206.6071429,80.53571429 +13937,232.3,1168,452,,208.5714286,80.71428571 +13938,232.3166667,1180,453,,210.7142857,80.89285714 +13939,232.3333333,1193,454,,213.0357143,81.07142857 +13940,232.35,1207,455,,215.5357143,81.25 +13941,232.3666667,1221,456,,218.0357143,81.42857143 +13942,232.3833333,1237,456,,220.8928571,81.42857143 +13943,232.4,1254,457,,223.9285714,81.60714286 +13944,232.4166667,1272,458,,227.1428571,81.78571429 +13945,232.4333333,1290,459,,230.3571429,81.96428571 +13946,232.45,1308,460,,233.5714286,82.14285714 +13947,232.4666667,1327,460,,236.9642857,82.14285714 +13948,232.4833333,1346,460,,240.3571429,82.14285714 +13949,232.5,1366,460,,243.9285714,82.14285714 +13950,232.5166667,1386,460,,247.5,82.14285714 +13951,232.5333333,1406,460,,251.0714286,82.14285714 +13952,232.55,1425,459,,254.4642857,81.96428571 +13953,232.5666667,1445,459,,258.0357143,81.96428571 +13954,232.5833333,1465,459,,261.6071429,81.96428571 +13955,232.6,1484,458,,265,81.78571429 +13956,232.6166667,1502,458,,268.2142857,81.78571429 +13957,232.6333333,1520,457,,271.4285714,81.60714286 +13958,232.65,1538,456,,274.6428571,81.42857143 +13959,232.6666667,1555,455,,277.6785714,81.25 +13960,232.6833333,1572,454,,280.7142857,81.07142857 +13961,232.7,1587,454,,283.3928571,81.07142857 +13962,232.7166667,1601,452,,285.8928571,80.71428571 +13963,232.7333333,1615,452,,288.3928571,80.71428571 +13964,232.75,1627,451,,290.5357143,80.53571429 +13965,232.7666667,1639,450,,292.6785714,80.35714286 +13966,232.7833333,1649,449,,294.4642857,80.17857143 +13967,232.8,1658,448,,296.0714286,80 +13968,232.8166667,1665,447,,297.3214286,79.82142857 +13969,232.8333333,1671,447,,298.3928571,79.82142857 +13970,232.85,1676,447,,299.2857143,79.82142857 +13971,232.8666667,1680,447,,300,79.82142857 +13972,232.8833333,1682,446,,300.3571429,79.64285714 +13973,232.9,1682,446,,300.3571429,79.64285714 +13974,232.9166667,1682,446,,300.3571429,79.64285714 +13975,232.9333333,1681,446,,300.1785714,79.64285714 +13976,232.95,1677,447,,299.4642857,79.82142857 +13977,232.9666667,1673,447,,298.75,79.82142857 +13978,232.9833333,1667,448,,297.6785714,80 +13979,233,1660,448,,296.4285714,80 +13980,233.0166667,1651,449,,294.8214286,80.17857143 +13981,233.0333333,1641,450,,293.0357143,80.35714286 +13982,233.05,1630,451,,291.0714286,80.53571429 +13983,233.0666667,1618,452,,288.9285714,80.71428571 +13984,233.0833333,1605,452,,286.6071429,80.71428571 +13985,233.1,1591,453,,284.1071429,80.89285714 +13986,233.1166667,1576,454,,281.4285714,81.07142857 +13987,233.1333333,1560,455,,278.5714286,81.25 +13988,233.15,1543,456,,275.5357143,81.42857143 +13989,233.1666667,1525,457,,272.3214286,81.60714286 +13990,233.1833333,1508,457,,269.2857143,81.60714286 +13991,233.2,1489,458,,265.8928571,81.78571429 +13992,233.2166667,1470,459,,262.5,81.96428571 +13993,233.2333333,1451,459,,259.1071429,81.96428571 +13994,233.25,1431,459,,255.5357143,81.96428571 +13995,233.2666667,1411,460,,251.9642857,82.14285714 +13996,233.2833333,1391,460,,248.3928571,82.14285714 +13997,233.3,1371,460,,244.8214286,82.14285714 +13998,233.3166667,1352,460,,241.4285714,82.14285714 +13999,233.3333333,1333,459,,238.0357143,81.96428571 +14000,233.35,1313,459,,234.4642857,81.96428571 +14001,233.3666667,1294,459,,231.0714286,81.96428571 +14002,233.3833333,1276,458,,227.8571429,81.78571429 +14003,233.4,1259,458,,224.8214286,81.78571429 +14004,233.4166667,1242,457,,221.7857143,81.60714286 +14005,233.4333333,1226,456,,218.9285714,81.42857143 +14006,233.45,1211,455,,216.25,81.25 +14007,233.4666667,1196,454,,213.5714286,81.07142857 +14008,233.4833333,1183,453,,211.25,80.89285714 +14009,233.5,1171,453,,209.1071429,80.89285714 +14010,233.5166667,1160,452,,207.1428571,80.71428571 +14011,233.5333333,1150,451,,205.3571429,80.53571429 +14012,233.55,1142,450,,203.9285714,80.35714286 +14013,233.5666667,1134,450,,202.5,80.35714286 +14014,233.5833333,1128,450,,201.4285714,80.35714286 +14015,233.6,1124,449,,200.7142857,80.17857143 +14016,233.6166667,1120,449,,200,80.17857143 +14017,233.6333333,1118,449,,199.6428571,80.17857143 +14018,233.65,1118,449,,199.6428571,80.17857143 +14019,233.6666667,1118,449,,199.6428571,80.17857143 +14020,233.6833333,1121,449,,200.1785714,80.17857143 +14021,233.7,1124,449,,200.7142857,80.17857143 +14022,233.7166667,1129,449,,201.6071429,80.17857143 +14023,233.7333333,1136,450,,202.8571429,80.35714286 +14024,233.75,1143,451,,204.1071429,80.53571429 +14025,233.7666667,1153,451,,205.8928571,80.53571429 +14026,233.7833333,1163,452,,207.6785714,80.71428571 +14027,233.8,1174,453,,209.6428571,80.89285714 +14028,233.8166667,1186,454,,211.7857143,81.07142857 +14029,233.8333333,1200,454,,214.2857143,81.07142857 +14030,233.85,1214,455,,216.7857143,81.25 +14031,233.8666667,1230,456,,219.6428571,81.42857143 +14032,233.8833333,1246,457,,222.5,81.60714286 +14033,233.9,1263,458,,225.5357143,81.78571429 +14034,233.9166667,1280,459,,228.5714286,81.96428571 +14035,233.9333333,1299,459,,231.9642857,81.96428571 +14036,233.95,1317,459,,235.1785714,81.96428571 +14037,233.9666667,1337,460,,238.75,82.14285714 +14038,233.9833333,1356,460,,242.1428571,82.14285714 +14039,234,1376,460,,245.7142857,82.14285714 +14040,234.0166667,1396,460,,249.2857143,82.14285714 +14041,234.0333333,1416,460,,252.8571429,82.14285714 +14042,234.05,1436,459,,256.4285714,81.96428571 +14043,234.0666667,1455,459,,259.8214286,81.96428571 +14044,234.0833333,1474,459,,263.2142857,81.96428571 +14045,234.1,1493,458,,266.6071429,81.78571429 +14046,234.1166667,1511,457,,269.8214286,81.60714286 +14047,234.1333333,1529,457,,273.0357143,81.60714286 +14048,234.15,1546,456,,276.0714286,81.42857143 +14049,234.1666667,1563,455,,279.1071429,81.25 +14050,234.1833333,1579,454,,281.9642857,81.07142857 +14051,234.2,1594,453,,284.6428571,80.89285714 +14052,234.2166667,1607,452,,286.9642857,80.71428571 +14053,234.2333333,1620,452,,289.2857143,80.71428571 +14054,234.25,1632,451,,291.4285714,80.53571429 +14055,234.2666667,1643,450,,293.3928571,80.35714286 +14056,234.2833333,1652,449,,295,80.17857143 +14057,234.3,1660,448,,296.4285714,80 +14058,234.3166667,1667,448,,297.6785714,80 +14059,234.3333333,1673,447,,298.75,79.82142857 +14060,234.35,1677,447,,299.4642857,79.82142857 +14061,234.3666667,1680,447,,300,79.82142857 +14062,234.3833333,1680,446,,300,79.64285714 +14063,234.4,1680,446,,300,79.64285714 +14064,234.4166667,1680,446,,300,79.64285714 +14065,234.4333333,1678,447,,299.6428571,79.82142857 +14066,234.45,1674,447,,298.9285714,79.82142857 +14067,234.4666667,1668,448,,297.8571429,80 +14068,234.4833333,1662,448,,296.7857143,80 +14069,234.5,1654,449,,295.3571429,80.17857143 +14070,234.5166667,1645,449,,293.75,80.17857143 +14071,234.5333333,1634,450,,291.7857143,80.35714286 +14072,234.55,1623,451,,289.8214286,80.53571429 +14073,234.5666667,1610,452,,287.5,80.71428571 +14074,234.5833333,1597,453,,285.1785714,80.89285714 +14075,234.6,1582,454,,282.5,81.07142857 +14076,234.6166667,1567,455,,279.8214286,81.25 +14077,234.6333333,1550,456,,276.7857143,81.42857143 +14078,234.65,1533,457,,273.75,81.60714286 +14079,234.6666667,1516,457,,270.7142857,81.60714286 +14080,234.6833333,1497,458,,267.3214286,81.78571429 +14081,234.7,1479,458,,264.1071429,81.78571429 +14082,234.7166667,1459,459,,260.5357143,81.96428571 +14083,234.7333333,1440,459,,257.1428571,81.96428571 +14084,234.75,1420,460,,253.5714286,82.14285714 +14085,234.7666667,1401,460,,250.1785714,82.14285714 +14086,234.7833333,1381,460,,246.6071429,82.14285714 +14087,234.8,1361,460,,243.0357143,82.14285714 +14088,234.8166667,1342,460,,239.6428571,82.14285714 +14089,234.8333333,1323,460,,236.25,82.14285714 +14090,234.85,1304,459,,232.8571429,81.96428571 +14091,234.8666667,1285,458,,229.4642857,81.78571429 +14092,234.8833333,1268,458,,226.4285714,81.78571429 +14093,234.9,1250,457,,223.2142857,81.60714286 +14094,234.9166667,1234,456,,220.3571429,81.42857143 +14095,234.9333333,1218,455,,217.5,81.25 +14096,234.95,1204,455,,215,81.25 +14097,234.9666667,1190,454,,212.5,81.07142857 +14098,234.9833333,1177,453,,210.1785714,80.89285714 +14099,235,1166,452,,208.2142857,80.71428571 +14100,235.0166667,1155,452,,206.25,80.71428571 +14101,235.0333333,1146,451,,204.6428571,80.53571429 +14102,235.05,1138,450,,203.2142857,80.35714286 +14103,235.0666667,1132,449,,202.1428571,80.17857143 +14104,235.0833333,1126,449,,201.0714286,80.17857143 +14105,235.1,1122,449,,200.3571429,80.17857143 +14106,235.1166667,1120,449,,200,80.17857143 +14107,235.1333333,1120,449,,200,80.17857143 +14108,235.15,1120,449,,200,80.17857143 +14109,235.1666667,1120,449,,200,80.17857143 +14110,235.1833333,1123,449,,200.5357143,80.17857143 +14111,235.2,1128,449,,201.4285714,80.17857143 +14112,235.2166667,1133,450,,202.3214286,80.35714286 +14113,235.2333333,1140,450,,203.5714286,80.35714286 +14114,235.25,1148,451,,205,80.53571429 +14115,235.2666667,1158,451,,206.7857143,80.53571429 +14116,235.2833333,1169,452,,208.75,80.71428571 +14117,235.3,1181,453,,210.8928571,80.89285714 +14118,235.3166667,1193,454,,213.0357143,81.07142857 +14119,235.3333333,1207,454,,215.5357143,81.07142857 +14120,235.35,1222,456,,218.2142857,81.42857143 +14121,235.3666667,1238,456,,221.0714286,81.42857143 +14122,235.3833333,1255,457,,224.1071429,81.60714286 +14123,235.4,1272,458,,227.1428571,81.78571429 +14124,235.4166667,1290,459,,230.3571429,81.96428571 +14125,235.4333333,1309,459,,233.75,81.96428571 +14126,235.45,1327,459,,236.9642857,81.96428571 +14127,235.4666667,1347,459,,240.5357143,81.96428571 +14128,235.4833333,1366,459,,243.9285714,81.96428571 +14129,235.5,1386,459,,247.5,81.96428571 +14130,235.5166667,1405,459,,250.8928571,81.96428571 +14131,235.5333333,1426,459,,254.6428571,81.96428571 +14132,235.55,1445,459,,258.0357143,81.96428571 +14133,235.5666667,1464,458,,261.4285714,81.78571429 +14134,235.5833333,1483,458,,264.8214286,81.78571429 +14135,235.6,1502,457,,268.2142857,81.60714286 +14136,235.6166667,1520,457,,271.4285714,81.60714286 +14137,235.6333333,1538,456,,274.6428571,81.42857143 +14138,235.65,1554,455,,277.5,81.25 +14139,235.6666667,1571,454,,280.5357143,81.07142857 +14140,235.6833333,1586,453,,283.2142857,80.89285714 +14141,235.7,1600,453,,285.7142857,80.89285714 +14142,235.7166667,1613,452,,288.0357143,80.71428571 +14143,235.7333333,1626,451,,290.3571429,80.53571429 +14144,235.75,1637,450,,292.3214286,80.35714286 +14145,235.7666667,1647,449,,294.1071429,80.17857143 +14146,235.7833333,1656,448,,295.7142857,80 +14147,235.8,1663,448,,296.9642857,80 +14148,235.8166667,1670,447,,298.2142857,79.82142857 +14149,235.8333333,1674,447,,298.9285714,79.82142857 +14150,235.85,1678,447,,299.6428571,79.82142857 +14151,235.8666667,1680,446,,300,79.64285714 +14152,235.8833333,1680,446,,300,79.64285714 +14153,235.9,1680,446,,300,79.64285714 +14154,235.9166667,1679,446,,299.8214286,79.64285714 +14155,235.9333333,1675,447,,299.1071429,79.82142857 +14156,235.95,1671,447,,298.3928571,79.82142857 +14157,235.9666667,1665,448,,297.3214286,80 +14158,235.9833333,1657,448,,295.8928571,80 +14159,236,1649,449,,294.4642857,80.17857143 +14160,236.0166667,1639,450,,292.6785714,80.35714286 +14161,236.0333333,1629,450,,290.8928571,80.35714286 +14162,236.05,1617,451,,288.75,80.53571429 +14163,236.0666667,1603,452,,286.25,80.71428571 +14164,236.0833333,1589,453,,283.75,80.89285714 +14165,236.1,1574,454,,281.0714286,81.07142857 +14166,236.1166667,1558,455,,278.2142857,81.25 +14167,236.1333333,1542,456,,275.3571429,81.42857143 +14168,236.15,1525,456,,272.3214286,81.42857143 +14169,236.1666667,1507,457,,269.1071429,81.60714286 +14170,236.1833333,1488,458,,265.7142857,81.78571429 +14171,236.2,1469,458,,262.3214286,81.78571429 +14172,236.2166667,1450,459,,258.9285714,81.96428571 +14173,236.2333333,1431,459,,255.5357143,81.96428571 +14174,236.25,1411,459,,251.9642857,81.96428571 +14175,236.2666667,1391,459,,248.3928571,81.96428571 +14176,236.2833333,1371,459,,244.8214286,81.96428571 +14177,236.3,1352,459,,241.4285714,81.96428571 +14178,236.3166667,1333,459,,238.0357143,81.96428571 +14179,236.3333333,1314,459,,234.6428571,81.96428571 +14180,236.35,1295,458,,231.25,81.78571429 +14181,236.3666667,1277,457,,228.0357143,81.60714286 +14182,236.3833333,1260,457,,225,81.60714286 +14183,236.4,1243,456,,221.9642857,81.42857143 +14184,236.4166667,1227,455,,219.1071429,81.25 +14185,236.4333333,1212,454,,216.4285714,81.07142857 +14186,236.45,1197,453,,213.75,80.89285714 +14187,236.4666667,1184,453,,211.4285714,80.89285714 +14188,236.4833333,1172,452,,209.2857143,80.71428571 +14189,236.5,1161,451,,207.3214286,80.53571429 +14190,236.5166667,1152,451,,205.7142857,80.53571429 +14191,236.5333333,1143,450,,204.1071429,80.35714286 +14192,236.55,1136,449,,202.8571429,80.17857143 +14193,236.5666667,1130,449,,201.7857143,80.17857143 +14194,236.5833333,1125,448,,200.8928571,80 +14195,236.6,1122,448,,200.3571429,80 +14196,236.6166667,1120,448,,200,80 +14197,236.6333333,1120,448,,200,80 +14198,236.65,1120,448,,200,80 +14199,236.6666667,1123,448,,200.5357143,80 +14200,236.6833333,1126,448,,201.0714286,80 +14201,236.7,1131,449,,201.9642857,80.17857143 +14202,236.7166667,1137,449,,203.0357143,80.17857143 +14203,236.7333333,1145,450,,204.4642857,80.35714286 +14204,236.75,1154,451,,206.0714286,80.53571429 +14205,236.7666667,1164,451,,207.8571429,80.53571429 +14206,236.7833333,1175,452,,209.8214286,80.71428571 +14207,236.8,1188,453,,212.1428571,80.89285714 +14208,236.8166667,1201,454,,214.4642857,81.07142857 +14209,236.8333333,1215,454,,216.9642857,81.07142857 +14210,236.85,1231,455,,219.8214286,81.25 +14211,236.8666667,1247,456,,222.6785714,81.42857143 +14212,236.8833333,1264,457,,225.7142857,81.60714286 +14213,236.9,1281,458,,228.75,81.78571429 +14214,236.9166667,1300,458,,232.1428571,81.78571429 +14215,236.9333333,1318,459,,235.3571429,81.96428571 +14216,236.95,1337,459,,238.75,81.96428571 +14217,236.9666667,1357,459,,242.3214286,81.96428571 +14218,236.9833333,1376,459,,245.7142857,81.96428571 +14219,237,1396,459,,249.2857143,81.96428571 +14220,237.0166667,1416,459,,252.8571429,81.96428571 +14221,237.0333333,1435,459,,256.25,81.96428571 +14222,237.05,1454,458,,259.6428571,81.78571429 +14223,237.0666667,1474,458,,263.2142857,81.78571429 +14224,237.0833333,1492,457,,266.4285714,81.60714286 +14225,237.1,1511,456,,269.8214286,81.42857143 +14226,237.1166667,1528,456,,272.8571429,81.42857143 +14227,237.1333333,1546,455,,276.0714286,81.25 +14228,237.15,1562,454,,278.9285714,81.07142857 +14229,237.1666667,1578,453,,281.7857143,80.89285714 +14230,237.1833333,1592,452,,284.2857143,80.71428571 +14231,237.2,1606,451,,286.7857143,80.53571429 +14232,237.2166667,1619,450,,289.1071429,80.35714286 +14233,237.2333333,1631,450,,291.25,80.35714286 +14234,237.25,1641,449,,293.0357143,80.17857143 +14235,237.2666667,1651,448,,294.8214286,80 +14236,237.2833333,1659,447,,296.25,79.82142857 +14237,237.3,1666,447,,297.5,79.82142857 +14238,237.3166667,1671,447,,298.3928571,79.82142857 +14239,237.3333333,1675,446,,299.1071429,79.64285714 +14240,237.35,1679,446,,299.8214286,79.64285714 +14241,237.3666667,1679,446,,299.8214286,79.64285714 +14242,237.3833333,1679,446,,299.8214286,79.64285714 +14243,237.4,1679,446,,299.8214286,79.64285714 +14244,237.4166667,1676,446,,299.2857143,79.64285714 +14245,237.4333333,1672,446,,298.5714286,79.64285714 +14246,237.45,1667,447,,297.6785714,79.82142857 +14247,237.4666667,1660,447,,296.4285714,79.82142857 +14248,237.4833333,1653,448,,295.1785714,80 +14249,237.5,1644,449,,293.5714286,80.17857143 +14250,237.5166667,1633,450,,291.6071429,80.35714286 +14251,237.5333333,1622,450,,289.6428571,80.35714286 +14252,237.55,1610,451,,287.5,80.53571429 +14253,237.5666667,1596,452,,285,80.71428571 +14254,237.5833333,1582,453,,282.5,80.89285714 +14255,237.6,1566,454,,279.6428571,81.07142857 +14256,237.6166667,1550,455,,276.7857143,81.25 +14257,237.6333333,1533,455,,273.75,81.25 +14258,237.65,1515,456,,270.5357143,81.42857143 +14259,237.6666667,1497,457,,267.3214286,81.60714286 +14260,237.6833333,1478,457,,263.9285714,81.60714286 +14261,237.7,1459,458,,260.5357143,81.78571429 +14262,237.7166667,1440,458,,257.1428571,81.78571429 +14263,237.7333333,1420,459,,253.5714286,81.96428571 +14264,237.75,1401,459,,250.1785714,81.96428571 +14265,237.7666667,1381,459,,246.6071429,81.96428571 +14266,237.7833333,1361,459,,243.0357143,81.96428571 +14267,237.8,1342,459,,239.6428571,81.96428571 +14268,237.8166667,1323,459,,236.25,81.96428571 +14269,237.8333333,1305,458,,233.0357143,81.78571429 +14270,237.85,1286,458,,229.6428571,81.78571429 +14271,237.8666667,1268,457,,226.4285714,81.60714286 +14272,237.8833333,1251,456,,223.3928571,81.42857143 +14273,237.9,1235,455,,220.5357143,81.25 +14274,237.9166667,1220,454,,217.8571429,81.07142857 +14275,237.9333333,1205,453,,215.1785714,80.89285714 +14276,237.95,1192,453,,212.8571429,80.89285714 +14277,237.9666667,1179,452,,210.5357143,80.71428571 +14278,237.9833333,1167,451,,208.3928571,80.53571429 +14279,238,1157,450,,206.6071429,80.35714286 +14280,238.0166667,1148,450,,205,80.35714286 +14281,238.0333333,1140,449,,203.5714286,80.17857143 +14282,238.05,1133,449,,202.3214286,80.17857143 +14283,238.0666667,1128,448,,201.4285714,80 +14284,238.0833333,1124,448,,200.7142857,80 +14285,238.1,1121,448,,200.1785714,80 +14286,238.1166667,1121,448,,200.1785714,80 +14287,238.1333333,1121,448,,200.1785714,80 +14288,238.15,1122,448,,200.3571429,80 +14289,238.1666667,1125,448,,200.8928571,80 +14290,238.1833333,1129,449,,201.6071429,80.17857143 +14291,238.2,1135,449,,202.6785714,80.17857143 +14292,238.2166667,1142,449,,203.9285714,80.17857143 +14293,238.2333333,1150,450,,205.3571429,80.35714286 +14294,238.25,1160,451,,207.1428571,80.53571429 +14295,238.2666667,1170,452,,208.9285714,80.71428571 +14296,238.2833333,1182,452,,211.0714286,80.71428571 +14297,238.3,1195,453,,213.3928571,80.89285714 +14298,238.3166667,1209,454,,215.8928571,81.07142857 +14299,238.3333333,1224,454,,218.5714286,81.07142857 +14300,238.35,1239,455,,221.25,81.25 +14301,238.3666667,1256,456,,224.2857143,81.42857143 +14302,238.3833333,1273,457,,227.3214286,81.60714286 +14303,238.4,1291,458,,230.5357143,81.78571429 +14304,238.4166667,1310,458,,233.9285714,81.78571429 +14305,238.4333333,1328,459,,237.1428571,81.96428571 +14306,238.45,1347,459,,240.5357143,81.96428571 +14307,238.4666667,1367,459,,244.1071429,81.96428571 +14308,238.4833333,1386,459,,247.5,81.96428571 +14309,238.5,1406,459,,251.0714286,81.96428571 +14310,238.5166667,1426,459,,254.6428571,81.96428571 +14311,238.5333333,1446,458,,258.2142857,81.78571429 +14312,238.55,1465,458,,261.6071429,81.78571429 +14313,238.5666667,1484,457,,265,81.60714286 +14314,238.5833333,1502,457,,268.2142857,81.60714286 +14315,238.6,1520,456,,271.4285714,81.42857143 +14316,238.6166667,1538,456,,274.6428571,81.42857143 +14317,238.6333333,1554,455,,277.5,81.25 +14318,238.65,1570,454,,280.3571429,81.07142857 +14319,238.6666667,1586,453,,283.2142857,80.89285714 +14320,238.6833333,1600,452,,285.7142857,80.71428571 +14321,238.7,1613,451,,288.0357143,80.53571429 +14322,238.7166667,1625,450,,290.1785714,80.35714286 +14323,238.7333333,1636,449,,292.1428571,80.17857143 +14324,238.75,1646,448,,293.9285714,80 +14325,238.7666667,1655,448,,295.5357143,80 +14326,238.7833333,1662,447,,296.7857143,79.82142857 +14327,238.8,1668,447,,297.8571429,79.82142857 +14328,238.8166667,1673,446,,298.75,79.64285714 +14329,238.8333333,1677,446,,299.4642857,79.64285714 +14330,238.85,1679,446,,299.8214286,79.64285714 +14331,238.8666667,1679,446,,299.8214286,79.64285714 +14332,238.8833333,1679,446,,299.8214286,79.64285714 +14333,238.9,1678,446,,299.6428571,79.64285714 +14334,238.9333333,1674,446,,298.9285714,79.64285714 +14335,238.95,1670,446,,298.2142857,79.64285714 +14336,238.9666667,1664,447,,297.1428571,79.82142857 +14337,238.9833333,1656,447,,295.7142857,79.82142857 +14338,239,1648,448,,294.2857143,80 +14339,239.0166667,1639,449,,292.6785714,80.17857143 +14340,239.0333333,1628,450,,290.7142857,80.35714286 +14341,239.05,1616,450,,288.5714286,80.35714286 +14342,239.0666667,1603,451,,286.25,80.53571429 +14343,239.0833333,1589,452,,283.75,80.71428571 +14344,239.1,1574,453,,281.0714286,80.89285714 +14345,239.1166667,1558,454,,278.2142857,81.07142857 +14346,239.1333333,1541,455,,275.1785714,81.25 +14347,239.15,1524,455,,272.1428571,81.25 +14348,239.1666667,1506,456,,268.9285714,81.42857143 +14349,239.1833333,1488,457,,265.7142857,81.60714286 +14350,239.2,1469,457,,262.3214286,81.60714286 +14351,239.2166667,1450,458,,258.9285714,81.78571429 +14352,239.2333333,1430,458,,255.3571429,81.78571429 +14353,239.25,1411,458,,251.9642857,81.78571429 +14354,239.2666667,1391,458,,248.3928571,81.78571429 +14355,239.2833333,1372,458,,245,81.78571429 +14356,239.3,1353,458,,241.6071429,81.78571429 +14357,239.3166667,1333,458,,238.0357143,81.78571429 +14358,239.3333333,1315,458,,234.8214286,81.78571429 +14359,239.35,1296,458,,231.4285714,81.78571429 +14360,239.3666667,1278,457,,228.2142857,81.60714286 +14361,239.3833333,1261,456,,225.1785714,81.42857143 +14362,239.4,1244,455,,222.1428571,81.25 +14363,239.4166667,1228,454,,219.2857143,81.07142857 +14364,239.4333333,1213,454,,216.6071429,81.07142857 +14365,239.45,1199,453,,214.1071429,80.89285714 +14366,239.4666667,1186,452,,211.7857143,80.71428571 +14367,239.4833333,1175,451,,209.8214286,80.53571429 +14368,239.5,1163,450,,207.6785714,80.35714286 +14369,239.5166667,1154,450,,206.0714286,80.35714286 +14370,239.5333333,1145,449,,204.4642857,80.17857143 +14371,239.55,1138,448,,203.2142857,80 +14372,239.5666667,1132,448,,202.1428571,80 +14373,239.5833333,1128,448,,201.4285714,80 +14374,239.6,1124,448,,200.7142857,80 +14375,239.6166667,1123,448,,200.5357143,80 +14376,239.6333333,1123,448,,200.5357143,80 +14377,239.65,1123,448,,200.5357143,80 +14378,239.6666667,1125,448,,200.8928571,80 +14379,239.6833333,1129,448,,201.6071429,80 +14380,239.7,1134,448,,202.5,80 +14381,239.7166667,1140,449,,203.5714286,80.17857143 +14382,239.7333333,1148,449,,205,80.17857143 +14383,239.75,1156,450,,206.4285714,80.35714286 +14384,239.7666667,1167,451,,208.3928571,80.53571429 +14385,239.7833333,1178,452,,210.3571429,80.71428571 +14386,239.8,1190,452,,212.5,80.71428571 +14387,239.8166667,1203,453,,214.8214286,80.89285714 +14388,239.8333333,1218,454,,217.5,81.07142857 +14389,239.85,1233,455,,220.1785714,81.25 +14390,239.8666667,1249,456,,223.0357143,81.42857143 +14391,239.8833333,1266,456,,226.0714286,81.42857143 +14392,239.9,1283,457,,229.1071429,81.60714286 +14393,239.9166667,1301,458,,232.3214286,81.78571429 +14394,239.9333333,1319,459,,235.5357143,81.96428571 +14395,239.95,1338,459,,238.9285714,81.96428571 +14396,239.9666667,1358,459,,242.5,81.96428571 +14397,239.9833333,1377,459,,245.8928571,81.96428571 +14398,240,1397,458,,249.4642857,81.78571429 +14399,240.0166667,1416,458,,252.8571429,81.78571429 +14400,240.0333333,1435,458,,256.25,81.78571429 +14401,240.05,1455,458,,259.8214286,81.78571429 +14402,240.0666667,1474,458,,263.2142857,81.78571429 +14403,240.0833333,1492,457,,266.4285714,81.60714286 +14404,240.1,1510,457,,269.6428571,81.60714286 +14405,240.1166667,1528,456,,272.8571429,81.42857143 +14406,240.1333333,1545,455,,275.8928571,81.25 +14407,240.15,1561,454,,278.75,81.07142857 +14408,240.1666667,1577,453,,281.6071429,80.89285714 +14409,240.1833333,1591,453,,284.1071429,80.89285714 +14410,240.2,1605,452,,286.6071429,80.71428571 +14411,240.2166667,1618,451,,288.9285714,80.53571429 +14412,240.2333333,1629,450,,290.8928571,80.35714286 +14413,240.25,1639,449,,292.6785714,80.17857143 +14414,240.2666667,1649,448,,294.4642857,80 +14415,240.2833333,1657,448,,295.8928571,80 +14416,240.3,1663,447,,296.9642857,79.82142857 +14417,240.3166667,1669,447,,298.0357143,79.82142857 +14418,240.3333333,1673,446,,298.75,79.64285714 +14419,240.35,1676,446,,299.2857143,79.64285714 +14420,240.3666667,1676,446,,299.2857143,79.64285714 +14421,240.3833333,1676,446,,299.2857143,79.64285714 +14422,240.4,1676,446,,299.2857143,79.64285714 +14423,240.4166667,1674,446,,298.9285714,79.64285714 +14424,240.4333333,1670,446,,298.2142857,79.64285714 +14425,240.45,1664,447,,297.1428571,79.82142857 +14426,240.4666667,1658,448,,296.0714286,80 +14427,240.4833333,1650,448,,294.6428571,80 +14428,240.5,1641,449,,293.0357143,80.17857143 +14429,240.5166667,1631,450,,291.25,80.35714286 +14430,240.5333333,1619,450,,289.1071429,80.35714286 +14431,240.55,1607,451,,286.9642857,80.53571429 +14432,240.5666667,1593,452,,284.4642857,80.71428571 +14433,240.5833333,1579,453,,281.9642857,80.89285714 +14434,240.6,1564,454,,279.2857143,81.07142857 +14435,240.6166667,1548,455,,276.4285714,81.25 +14436,240.6333333,1530,455,,273.2142857,81.25 +14437,240.65,1513,456,,270.1785714,81.42857143 +14438,240.6666667,1495,457,,266.9642857,81.60714286 +14439,240.6833333,1477,457,,263.75,81.60714286 +14440,240.7,1458,458,,260.3571429,81.78571429 +14441,240.7166667,1438,458,,256.7857143,81.78571429 +14442,240.7333333,1419,459,,253.3928571,81.96428571 +14443,240.75,1399,459,,249.8214286,81.96428571 +14444,240.7666667,1380,459,,246.4285714,81.96428571 +14445,240.7833333,1360,459,,242.8571429,81.96428571 +14446,240.8,1341,459,,239.4642857,81.96428571 +14447,240.8166667,1322,459,,236.0714286,81.96428571 +14448,240.8333333,1304,458,,232.8571429,81.78571429 +14449,240.85,1286,457,,229.6428571,81.60714286 +14450,240.8666667,1268,456,,226.4285714,81.42857143 +14451,240.8833333,1251,456,,223.3928571,81.42857143 +14452,240.9,1235,455,,220.5357143,81.25 +14453,240.9166667,1220,454,,217.8571429,81.07142857 +14454,240.9333333,1205,454,,215.1785714,81.07142857 +14455,240.95,1192,453,,212.8571429,80.89285714 +14456,240.9666667,1180,452,,210.7142857,80.71428571 +14457,240.9833333,1168,451,,208.5714286,80.53571429 +14458,241,1158,450,,206.7857143,80.35714286 +14459,241.0166667,1149,450,,205.1785714,80.35714286 +14460,241.0333333,1141,449,,203.75,80.17857143 +14461,241.05,1135,449,,202.6785714,80.17857143 +14462,241.0666667,1130,448,,201.7857143,80 +14463,241.0833333,1126,448,,201.0714286,80 +14464,241.1,1123,448,,200.5357143,80 +14465,241.1166667,1123,448,,200.5357143,80 +14466,241.1333333,1123,448,,200.5357143,80 +14467,241.15,1124,448,,200.7142857,80 +14468,241.1666667,1127,448,,201.25,80 +14469,241.1833333,1131,448,,201.9642857,80 +14470,241.2,1137,449,,203.0357143,80.17857143 +14471,241.2166667,1144,449,,204.2857143,80.17857143 +14472,241.2333333,1152,450,,205.7142857,80.35714286 +14473,241.25,1162,451,,207.5,80.53571429 +14474,241.2666667,1172,452,,209.2857143,80.71428571 +14475,241.2833333,1184,452,,211.4285714,80.71428571 +14476,241.3,1197,453,,213.75,80.89285714 +14477,241.3166667,1210,454,,216.0714286,81.07142857 +14478,241.3333333,1225,455,,218.75,81.25 +14479,241.35,1241,455,,221.6071429,81.25 +14480,241.3666667,1257,456,,224.4642857,81.42857143 +14481,241.3833333,1274,457,,227.5,81.60714286 +14482,241.4,1292,458,,230.7142857,81.78571429 +14483,241.4166667,1310,458,,233.9285714,81.78571429 +14484,241.4333333,1329,459,,237.3214286,81.96428571 +14485,241.45,1348,459,,240.7142857,81.96428571 +14486,241.4666667,1366,459,,243.9285714,81.96428571 +14487,241.4833333,1386,459,,247.5,81.96428571 +14488,241.5,1405,458,,250.8928571,81.78571429 +14489,241.5166667,1425,458,,254.4642857,81.78571429 +14490,241.5333333,1444,458,,257.8571429,81.78571429 +14491,241.55,1464,458,,261.4285714,81.78571429 +14492,241.5666667,1483,457,,264.8214286,81.60714286 +14493,241.5833333,1501,457,,268.0357143,81.60714286 +14494,241.6,1518,456,,271.0714286,81.42857143 +14495,241.6166667,1535,455,,274.1071429,81.25 +14496,241.6333333,1552,455,,277.1428571,81.25 +14497,241.65,1568,454,,280,81.07142857 +14498,241.6666667,1583,453,,282.6785714,80.89285714 +14499,241.6833333,1597,452,,285.1785714,80.71428571 +14500,241.7,1610,451,,287.5,80.53571429 +14501,241.7166667,1622,450,,289.6428571,80.35714286 +14502,241.7333333,1633,449,,291.6071429,80.17857143 +14503,241.75,1643,449,,293.3928571,80.17857143 +14504,241.7666667,1651,448,,294.8214286,80 +14505,241.7833333,1659,447,,296.25,79.82142857 +14506,241.8,1665,447,,297.3214286,79.82142857 +14507,241.8166667,1670,447,,298.2142857,79.82142857 +14508,241.8333333,1673,446,,298.75,79.64285714 +14509,241.85,1675,446,,299.1071429,79.64285714 +14510,241.8666667,1675,446,,299.1071429,79.64285714 +14511,241.8833333,1675,446,,299.1071429,79.64285714 +14512,241.9,1674,446,,298.9285714,79.64285714 +14513,241.9166667,1670,447,,298.2142857,79.82142857 +14514,241.9333333,1666,447,,297.5,79.82142857 +14515,241.95,1660,447,,296.4285714,79.82142857 +14516,241.9666667,1653,448,,295.1785714,80 +14517,241.9833333,1644,449,,293.5714286,80.17857143 +14518,242,1635,449,,291.9642857,80.17857143 +14519,242.0166667,1623,450,,289.8214286,80.35714286 +14520,242.0333333,1612,451,,287.8571429,80.53571429 +14521,242.05,1599,452,,285.5357143,80.71428571 +14522,242.0666667,1585,453,,283.0357143,80.89285714 +14523,242.0833333,1570,454,,280.3571429,81.07142857 +14524,242.1,1554,455,,277.5,81.25 +14525,242.1166667,1538,455,,274.6428571,81.25 +14526,242.1333333,1521,456,,271.6071429,81.42857143 +14527,242.15,1503,457,,268.3928571,81.60714286 +14528,242.1666667,1485,457,,265.1785714,81.60714286 +14529,242.1833333,1466,458,,261.7857143,81.78571429 +14530,242.2,1447,458,,258.3928571,81.78571429 +14531,242.2166667,1428,459,,255,81.96428571 +14532,242.2333333,1409,459,,251.6071429,81.96428571 +14533,242.25,1390,459,,248.2142857,81.96428571 +14534,242.2666667,1370,459,,244.6428571,81.96428571 +14535,242.2833333,1350,459,,241.0714286,81.96428571 +14536,242.3,1332,459,,237.8571429,81.96428571 +14537,242.3166667,1313,458,,234.4642857,81.78571429 +14538,242.3333333,1295,458,,231.25,81.78571429 +14539,242.35,1277,457,,228.0357143,81.60714286 +14540,242.3666667,1260,456,,225,81.42857143 +14541,242.3833333,1244,455,,222.1428571,81.25 +14542,242.4,1228,455,,219.2857143,81.25 +14543,242.4166667,1213,454,,216.6071429,81.07142857 +14544,242.4333333,1199,453,,214.1071429,80.89285714 +14545,242.45,1186,452,,211.7857143,80.71428571 +14546,242.4666667,1174,451,,209.6428571,80.53571429 +14547,242.4833333,1164,451,,207.8571429,80.53571429 +14548,242.5,1154,450,,206.0714286,80.35714286 +14549,242.5166667,1146,449,,204.6428571,80.17857143 +14550,242.5333333,1139,449,,203.3928571,80.17857143 +14551,242.55,1133,448,,202.3214286,80 +14552,242.5666667,1128,448,,201.4285714,80 +14553,242.5833333,1125,448,,200.8928571,80 +14554,242.6,1124,448,,200.7142857,80 +14555,242.6166667,1124,448,,200.7142857,80 +14556,242.6333333,1124,448,,200.7142857,80 +14557,242.65,1126,448,,201.0714286,80 +14558,242.6666667,1130,448,,201.7857143,80 +14559,242.6833333,1135,449,,202.6785714,80.17857143 +14560,242.7,1142,449,,203.9285714,80.17857143 +14561,242.7166667,1149,450,,205.1785714,80.35714286 +14562,242.7333333,1158,450,,206.7857143,80.35714286 +14563,242.75,1168,451,,208.5714286,80.53571429 +14564,242.7666667,1179,452,,210.5357143,80.71428571 +14565,242.7833333,1191,453,,212.6785714,80.89285714 +14566,242.8,1205,453,,215.1785714,80.89285714 +14567,242.8166667,1219,454,,217.6785714,81.07142857 +14568,242.8333333,1234,455,,220.3571429,81.25 +14569,242.85,1250,456,,223.2142857,81.42857143 +14570,242.8666667,1267,456,,226.25,81.42857143 +14571,242.8833333,1284,457,,229.2857143,81.60714286 +14572,242.9,1302,458,,232.5,81.78571429 +14573,242.9166667,1320,459,,235.7142857,81.96428571 +14574,242.9333333,1339,459,,239.1071429,81.96428571 +14575,242.95,1358,459,,242.5,81.96428571 +14576,242.9666667,1377,459,,245.8928571,81.96428571 +14577,242.9833333,1397,459,,249.4642857,81.96428571 +14578,243,1416,459,,252.8571429,81.96428571 +14579,243.0166667,1436,458,,256.4285714,81.78571429 +14580,243.0333333,1455,458,,259.8214286,81.78571429 +14581,243.05,1474,458,,263.2142857,81.78571429 +14582,243.0666667,1492,457,,266.4285714,81.60714286 +14583,243.0833333,1510,456,,269.6428571,81.42857143 +14584,243.1,1528,456,,272.8571429,81.42857143 +14585,243.1166667,1545,455,,275.8928571,81.25 +14586,243.1333333,1561,454,,278.75,81.07142857 +14587,243.15,1576,453,,281.4285714,80.89285714 +14588,243.1666667,1591,452,,284.1071429,80.71428571 +14589,243.1833333,1604,452,,286.4285714,80.71428571 +14590,243.2,1617,451,,288.75,80.53571429 +14591,243.2166667,1628,450,,290.7142857,80.35714286 +14592,243.2333333,1638,449,,292.5,80.17857143 +14593,243.25,1648,448,,294.2857143,80 +14594,243.2666667,1655,448,,295.5357143,80 +14595,243.2833333,1662,447,,296.7857143,79.82142857 +14596,243.3,1668,447,,297.8571429,79.82142857 +14597,243.3166667,1672,446,,298.5714286,79.64285714 +14598,243.3333333,1675,446,,299.1071429,79.64285714 +14599,243.35,1675,446,,299.1071429,79.64285714 +14600,243.3666667,1675,446,,299.1071429,79.64285714 +14601,243.3833333,1675,446,,299.1071429,79.64285714 +14602,243.4,1673,446,,298.75,79.64285714 +14603,243.4166667,1669,446,,298.0357143,79.64285714 +14604,243.4333333,1664,447,,297.1428571,79.82142857 +14605,243.45,1657,447,,295.8928571,79.82142857 +14606,243.4666667,1649,448,,294.4642857,80 +14607,243.4833333,1640,449,,292.8571429,80.17857143 +14608,243.5,1630,449,,291.0714286,80.17857143 +14609,243.5166667,1619,450,,289.1071429,80.35714286 +14610,243.5333333,1606,451,,286.7857143,80.53571429 +14611,243.55,1593,452,,284.4642857,80.71428571 +14612,243.5666667,1579,453,,281.9642857,80.89285714 +14613,243.5833333,1564,454,,279.2857143,81.07142857 +14614,243.6,1548,454,,276.4285714,81.07142857 +14615,243.6166667,1531,455,,273.3928571,81.25 +14616,243.6333333,1513,456,,270.1785714,81.42857143 +14617,243.65,1496,457,,267.1428571,81.60714286 +14618,243.6666667,1477,457,,263.75,81.60714286 +14619,243.6833333,1459,458,,260.5357143,81.78571429 +14620,243.7,1439,458,,256.9642857,81.78571429 +14621,243.7166667,1420,459,,253.5714286,81.96428571 +14622,243.7333333,1401,459,,250.1785714,81.96428571 +14623,243.75,1382,459,,246.7857143,81.96428571 +14624,243.7666667,1362,459,,243.2142857,81.96428571 +14625,243.7833333,1343,459,,239.8214286,81.96428571 +14626,243.8,1324,458,,236.4285714,81.78571429 +14627,243.8166667,1306,458,,233.2142857,81.78571429 +14628,243.8333333,1288,458,,230,81.78571429 +14629,243.85,1271,457,,226.9642857,81.60714286 +14630,243.8666667,1254,456,,223.9285714,81.42857143 +14631,243.8833333,1238,455,,221.0714286,81.25 +14632,243.9,1223,454,,218.3928571,81.07142857 +14633,243.9166667,1208,454,,215.7142857,81.07142857 +14634,243.9333333,1195,453,,213.3928571,80.89285714 +14635,243.95,1183,452,,211.25,80.71428571 +14636,243.9666667,1171,451,,209.1071429,80.53571429 +14637,243.9833333,1161,451,,207.3214286,80.53571429 +14638,244,1152,450,,205.7142857,80.35714286 +14639,244.0166667,1144,449,,204.2857143,80.17857143 +14640,244.0333333,1138,449,,203.2142857,80.17857143 +14641,244.05,1133,449,,202.3214286,80.17857143 +14642,244.0666667,1129,448,,201.6071429,80 +14643,244.0833333,1126,448,,201.0714286,80 +14644,244.1,1126,448,,201.0714286,80 +14645,244.1166667,1126,448,,201.0714286,80 +14646,244.1333333,1127,448,,201.25,80 +14647,244.15,1130,449,,201.7857143,80.17857143 +14648,244.1666667,1134,449,,202.5,80.17857143 +14649,244.1833333,1140,449,,203.5714286,80.17857143 +14650,244.2,1146,450,,204.6428571,80.35714286 +14651,244.2166667,1155,450,,206.25,80.35714286 +14652,244.2333333,1164,451,,207.8571429,80.53571429 +14653,244.25,1174,452,,209.6428571,80.71428571 +14654,244.2666667,1186,453,,211.7857143,80.89285714 +14655,244.2833333,1199,454,,214.1071429,81.07142857 +14656,244.3,1212,454,,216.4285714,81.07142857 +14657,244.3166667,1227,455,,219.1071429,81.25 +14658,244.3333333,1243,456,,221.9642857,81.42857143 +14659,244.35,1259,456,,224.8214286,81.42857143 +14660,244.3666667,1276,457,,227.8571429,81.60714286 +14661,244.3833333,1293,458,,230.8928571,81.78571429 +14662,244.4,1312,459,,234.2857143,81.96428571 +14663,244.4166667,1330,459,,237.5,81.96428571 +14664,244.4333333,1349,459,,240.8928571,81.96428571 +14665,244.45,1368,459,,244.2857143,81.96428571 +14666,244.4666667,1387,459,,247.6785714,81.96428571 +14667,244.4833333,1406,459,,251.0714286,81.96428571 +14668,244.5,1426,459,,254.6428571,81.96428571 +14669,244.5166667,1445,459,,258.0357143,81.96428571 +14670,244.5333333,1464,458,,261.4285714,81.78571429 +14671,244.55,1482,458,,264.6428571,81.78571429 +14672,244.5666667,1500,457,,267.8571429,81.60714286 +14673,244.5833333,1518,457,,271.0714286,81.60714286 +14674,244.6,1535,456,,274.1071429,81.42857143 +14675,244.6166667,1552,455,,277.1428571,81.25 +14676,244.6333333,1567,454,,279.8214286,81.07142857 +14677,244.65,1583,454,,282.6785714,81.07142857 +14678,244.6666667,1596,452,,285,80.71428571 +14679,244.6833333,1609,452,,287.3214286,80.71428571 +14680,244.7,1621,451,,289.4642857,80.53571429 +14681,244.7166667,1632,450,,291.4285714,80.35714286 +14682,244.7333333,1642,449,,293.2142857,80.17857143 +14683,244.75,1651,449,,294.8214286,80.17857143 +14684,244.7666667,1658,448,,296.0714286,80 +14685,244.7833333,1664,448,,297.1428571,80 +14686,244.8,1669,447,,298.0357143,79.82142857 +14687,244.8166667,1673,447,,298.75,79.82142857 +14688,244.8333333,1674,447,,298.9285714,79.82142857 +14689,244.85,1674,447,,298.9285714,79.82142857 +14690,244.8666667,1674,447,,298.9285714,79.82142857 +14691,244.8833333,1673,447,,298.75,79.82142857 +14692,244.9,1670,447,,298.2142857,79.82142857 +14693,244.9166667,1666,448,,297.5,80 +14694,244.9333333,1660,448,,296.4285714,80 +14695,244.95,1652,448,,295,80 +14696,244.9666667,1644,449,,293.5714286,80.17857143 +14697,244.9833333,1635,450,,291.9642857,80.35714286 +14698,245,1624,450,,290,80.35714286 +14699,245.0166667,1613,451,,288.0357143,80.53571429 +14700,245.0333333,1600,452,,285.7142857,80.71428571 +14701,245.05,1586,453,,283.2142857,80.89285714 +14702,245.0666667,1571,454,,280.5357143,81.07142857 +14703,245.0833333,1556,455,,277.8571429,81.25 +14704,245.1,1540,456,,275,81.42857143 +14705,245.1166667,1523,457,,271.9642857,81.60714286 +14706,245.1333333,1505,457,,268.75,81.60714286 +14707,245.15,1487,458,,265.5357143,81.78571429 +14708,245.1666667,1468,458,,262.1428571,81.78571429 +14709,245.1833333,1450,459,,258.9285714,81.96428571 +14710,245.2,1431,459,,255.5357143,81.96428571 +14711,245.2166667,1411,459,,251.9642857,81.96428571 +14712,245.2333333,1392,459,,248.5714286,81.96428571 +14713,245.25,1373,459,,245.1785714,81.96428571 +14714,245.2666667,1354,459,,241.7857143,81.96428571 +14715,245.2833333,1335,459,,238.3928571,81.96428571 +14716,245.3,1317,459,,235.1785714,81.96428571 +14717,245.3166667,1299,458,,231.9642857,81.78571429 +14718,245.3333333,1281,458,,228.75,81.78571429 +14719,245.35,1264,457,,225.7142857,81.60714286 +14720,245.3666667,1248,456,,222.8571429,81.42857143 +14721,245.3833333,1232,455,,220,81.25 +14722,245.4,1217,454,,217.3214286,81.07142857 +14723,245.4166667,1203,454,,214.8214286,81.07142857 +14724,245.4333333,1191,453,,212.6785714,80.89285714 +14725,245.45,1179,452,,210.5357143,80.71428571 +14726,245.4666667,1168,452,,208.5714286,80.71428571 +14727,245.4833333,1159,451,,206.9642857,80.53571429 +14728,245.5,1150,450,,205.3571429,80.35714286 +14729,245.5166667,1143,450,,204.1071429,80.35714286 +14730,245.5333333,1138,449,,203.2142857,80.17857143 +14731,245.55,1133,449,,202.3214286,80.17857143 +14732,245.5666667,1130,449,,201.7857143,80.17857143 +14733,245.5833333,1129,449,,201.6071429,80.17857143 +14734,245.6,1129,449,,201.6071429,80.17857143 +14735,245.6166667,1129,449,,201.6071429,80.17857143 +14736,245.6333333,1131,449,,201.9642857,80.17857143 +14737,245.65,1134,449,,202.5,80.17857143 +14738,245.6666667,1139,449,,203.3928571,80.17857143 +14739,245.6833333,1146,450,,204.6428571,80.35714286 +14740,245.7,1153,451,,205.8928571,80.53571429 +14741,245.7166667,1162,451,,207.5,80.53571429 +14742,245.7333333,1172,452,,209.2857143,80.71428571 +14743,245.75,1183,453,,211.25,80.89285714 +14744,245.7666667,1195,453,,213.3928571,80.89285714 +14745,245.7833333,1208,455,,215.7142857,81.25 +14746,245.8,1222,455,,218.2142857,81.25 +14747,245.8166667,1237,456,,220.8928571,81.42857143 +14748,245.8333333,1253,457,,223.75,81.60714286 +14749,245.85,1269,458,,226.6071429,81.78571429 +14750,245.8666667,1286,459,,229.6428571,81.96428571 +14751,245.8833333,1304,459,,232.8571429,81.96428571 +14752,245.9,1323,460,,236.25,82.14285714 +14753,245.9166667,1341,460,,239.4642857,82.14285714 +14754,245.9333333,1360,460,,242.8571429,82.14285714 +14755,245.95,1379,460,,246.25,82.14285714 +14756,245.9666667,1398,460,,249.6428571,82.14285714 +14757,245.9833333,1417,460,,253.0357143,82.14285714 +14758,246,1436,460,,256.4285714,82.14285714 +14759,246.0166667,1455,459,,259.8214286,81.96428571 +14760,246.0333333,1474,459,,263.2142857,81.96428571 +14761,246.05,1492,458,,266.4285714,81.78571429 +14762,246.0666667,1510,458,,269.6428571,81.78571429 +14763,246.0833333,1528,457,,272.8571429,81.60714286 +14764,246.1,1544,456,,275.7142857,81.42857143 +14765,246.1166667,1560,455,,278.5714286,81.25 +14766,246.1333333,1575,455,,281.25,81.25 +14767,246.15,1589,454,,283.75,81.07142857 +14768,246.1666667,1603,453,,286.25,80.89285714 +14769,246.1833333,1615,452,,288.3928571,80.71428571 +14770,246.2,1627,451,,290.5357143,80.53571429 +14771,246.2166667,1637,450,,292.3214286,80.35714286 +14772,246.2333333,1646,450,,293.9285714,80.35714286 +14773,246.25,1654,449,,295.3571429,80.17857143 +14774,246.2666667,1661,448,,296.6071429,80 +14775,246.2833333,1666,448,,297.5,80 +14776,246.3,1670,448,,298.2142857,80 +14777,246.3166667,1673,447,,298.75,79.82142857 +14778,246.3333333,1673,447,,298.75,79.82142857 +14779,246.35,1673,447,,298.75,79.82142857 +14780,246.3666667,1673,447,,298.75,79.82142857 +14781,246.3833333,1671,448,,298.3928571,80 +14782,246.4,1667,448,,297.6785714,80 +14783,246.4166667,1662,448,,296.7857143,80 +14784,246.4333333,1655,449,,295.5357143,80.17857143 +14785,246.45,1648,449,,294.2857143,80.17857143 +14786,246.4666667,1639,450,,292.6785714,80.35714286 +14787,246.4833333,1628,451,,290.7142857,80.53571429 +14788,246.5,1617,452,,288.75,80.71428571 +14789,246.5166667,1605,453,,286.6071429,80.89285714 +14790,246.5333333,1592,453,,284.2857143,80.89285714 +14791,246.55,1578,454,,281.7857143,81.07142857 +14792,246.5666667,1563,455,,279.1071429,81.25 +14793,246.5833333,1547,456,,276.25,81.42857143 +14794,246.6,1530,457,,273.2142857,81.60714286 +14795,246.6166667,1513,457,,270.1785714,81.60714286 +14796,246.6333333,1495,458,,266.9642857,81.78571429 +14797,246.65,1477,458,,263.75,81.78571429 +14798,246.6666667,1458,459,,260.3571429,81.96428571 +14799,246.6833333,1440,459,,257.1428571,81.96428571 +14800,246.7,1420,460,,253.5714286,82.14285714 +14801,246.7166667,1401,460,,250.1785714,82.14285714 +14802,246.7333333,1382,460,,246.7857143,82.14285714 +14803,246.75,1363,460,,243.3928571,82.14285714 +14804,246.7666667,1344,460,,240,82.14285714 +14805,246.7833333,1325,459,,236.6071429,81.96428571 +14806,246.8,1307,459,,233.3928571,81.96428571 +14807,246.8166667,1289,459,,230.1785714,81.96428571 +14808,246.8333333,1271,458,,226.9642857,81.78571429 +14809,246.85,1255,457,,224.1071429,81.60714286 +14810,246.8666667,1239,456,,221.25,81.42857143 +14811,246.8833333,1224,455,,218.5714286,81.25 +14812,246.9,1210,455,,216.0714286,81.25 +14813,246.9166667,1196,454,,213.5714286,81.07142857 +14814,246.9333333,1184,453,,211.4285714,80.89285714 +14815,246.95,1173,452,,209.4642857,80.71428571 +14816,246.9666667,1163,452,,207.6785714,80.71428571 +14817,246.9833333,1154,451,,206.0714286,80.53571429 +14818,247,1146,451,,204.6428571,80.53571429 +14819,247.0166667,1140,450,,203.5714286,80.35714286 +14820,247.0333333,1135,450,,202.6785714,80.35714286 +14821,247.05,1131,450,,201.9642857,80.35714286 +14822,247.0666667,1129,449,,201.6071429,80.17857143 +14823,247.0833333,1129,449,,201.6071429,80.17857143 +14824,247.1,1129,449,,201.6071429,80.17857143 +14825,247.1166667,1129,449,,201.6071429,80.17857143 +14826,247.1333333,1132,450,,202.1428571,80.35714286 +14827,247.15,1136,450,,202.8571429,80.35714286 +14828,247.1666667,1142,450,,203.9285714,80.35714286 +14829,247.1833333,1149,451,,205.1785714,80.53571429 +14830,247.2,1157,451,,206.6071429,80.53571429 +14831,247.2166667,1166,452,,208.2142857,80.71428571 +14832,247.2333333,1176,453,,210,80.89285714 +14833,247.25,1188,454,,212.1428571,81.07142857 +14834,247.2666667,1200,454,,214.2857143,81.07142857 +14835,247.2833333,1214,455,,216.7857143,81.25 +14836,247.3,1228,456,,219.2857143,81.42857143 +14837,247.3166667,1244,457,,222.1428571,81.60714286 +14838,247.3333333,1260,457,,225,81.60714286 +14839,247.35,1277,458,,228.0357143,81.78571429 +14840,247.3666667,1294,459,,231.0714286,81.96428571 +14841,247.3833333,1312,460,,234.2857143,82.14285714 +14842,247.4,1330,460,,237.5,82.14285714 +14843,247.4166667,1349,460,,240.8928571,82.14285714 +14844,247.4333333,1367,460,,244.1071429,82.14285714 +14845,247.45,1387,460,,247.6785714,82.14285714 +14846,247.4666667,1406,460,,251.0714286,82.14285714 +14847,247.4833333,1425,459,,254.4642857,81.96428571 +14848,247.5,1444,459,,257.8571429,81.96428571 +14849,247.5166667,1463,459,,261.25,81.96428571 +14850,247.5333333,1481,459,,264.4642857,81.96428571 +14851,247.55,1499,458,,267.6785714,81.78571429 +14852,247.5666667,1517,457,,270.8928571,81.60714286 +14853,247.5833333,1533,457,,273.75,81.60714286 +14854,247.6,1550,456,,276.7857143,81.42857143 +14855,247.6166667,1565,455,,279.4642857,81.25 +14856,247.6333333,1580,454,,282.1428571,81.07142857 +14857,247.65,1594,453,,284.6428571,80.89285714 +14858,247.6666667,1607,453,,286.9642857,80.89285714 +14859,247.6833333,1619,451,,289.1071429,80.53571429 +14860,247.7,1630,451,,291.0714286,80.53571429 +14861,247.7166667,1639,450,,292.6785714,80.35714286 +14862,247.7333333,1648,449,,294.2857143,80.17857143 +14863,247.75,1656,449,,295.7142857,80.17857143 +14864,247.7666667,1661,448,,296.6071429,80 +14865,247.7833333,1666,448,,297.5,80 +14866,247.8,1670,448,,298.2142857,80 +14867,247.8166667,1672,447,,298.5714286,79.82142857 +14868,247.8333333,1672,447,,298.5714286,79.82142857 +14869,247.85,1672,447,,298.5714286,79.82142857 +14870,247.8666667,1670,447,,298.2142857,79.82142857 +14871,247.8833333,1667,448,,297.6785714,80 +14872,247.9,1662,448,,296.7857143,80 +14873,247.9166667,1656,448,,295.7142857,80 +14874,247.9333333,1649,449,,294.4642857,80.17857143 +14875,247.95,1641,449,,293.0357143,80.17857143 +14876,247.9666667,1632,450,,291.4285714,80.35714286 +14877,247.9833333,1621,451,,289.4642857,80.53571429 +14878,248,1610,452,,287.5,80.71428571 +14879,248.0166667,1597,453,,285.1785714,80.89285714 +14880,248.0333333,1583,454,,282.6785714,81.07142857 +14881,248.05,1569,454,,280.1785714,81.07142857 +14882,248.0666667,1553,455,,277.3214286,81.25 +14883,248.0833333,1537,456,,274.4642857,81.42857143 +14884,248.1,1520,457,,271.4285714,81.60714286 +14885,248.1166667,1502,457,,268.2142857,81.60714286 +14886,248.1333333,1485,458,,265.1785714,81.78571429 +14887,248.15,1466,458,,261.7857143,81.78571429 +14888,248.1666667,1448,459,,258.5714286,81.96428571 +14889,248.1833333,1429,459,,255.1785714,81.96428571 +14890,248.2,1410,459,,251.7857143,81.96428571 +14891,248.2166667,1391,459,,248.3928571,81.96428571 +14892,248.2333333,1372,459,,245,81.96428571 +14893,248.25,1352,459,,241.4285714,81.96428571 +14894,248.2666667,1334,459,,238.2142857,81.96428571 +14895,248.2833333,1315,459,,234.8214286,81.96428571 +14896,248.3,1297,458,,231.6071429,81.78571429 +14897,248.3166667,1280,458,,228.5714286,81.78571429 +14898,248.3333333,1263,457,,225.5357143,81.60714286 +14899,248.35,1247,456,,222.6785714,81.42857143 +14900,248.3666667,1231,455,,219.8214286,81.25 +14901,248.3833333,1216,454,,217.1428571,81.07142857 +14902,248.4,1203,454,,214.8214286,81.07142857 +14903,248.4166667,1190,453,,212.5,80.89285714 +14904,248.4333333,1178,452,,210.3571429,80.71428571 +14905,248.45,1168,451,,208.5714286,80.53571429 +14906,248.4666667,1158,451,,206.7857143,80.53571429 +14907,248.4833333,1150,451,,205.3571429,80.53571429 +14908,248.5,1143,450,,204.1071429,80.35714286 +14909,248.5166667,1137,449,,203.0357143,80.17857143 +14910,248.5333333,1133,449,,202.3214286,80.17857143 +14911,248.55,1130,449,,201.7857143,80.17857143 +14912,248.5666667,1129,449,,201.6071429,80.17857143 +14913,248.5833333,1129,449,,201.6071429,80.17857143 +14914,248.6,1129,449,,201.6071429,80.17857143 +14915,248.6166667,1131,449,,201.9642857,80.17857143 +14916,248.6333333,1135,449,,202.6785714,80.17857143 +14917,248.65,1139,450,,203.3928571,80.35714286 +14918,248.6666667,1146,450,,204.6428571,80.35714286 +14919,248.6833333,1153,451,,205.8928571,80.53571429 +14920,248.7,1162,451,,207.5,80.53571429 +14921,248.7166667,1171,452,,209.1071429,80.71428571 +14922,248.7333333,1182,453,,211.0714286,80.89285714 +14923,248.75,1194,453,,213.2142857,80.89285714 +14924,248.7666667,1207,454,,215.5357143,81.07142857 +14925,248.7833333,1221,455,,218.0357143,81.25 +14926,248.8,1236,456,,220.7142857,81.42857143 +14927,248.8166667,1252,457,,223.5714286,81.60714286 +14928,248.8333333,1269,457,,226.6071429,81.60714286 +14929,248.85,1285,458,,229.4642857,81.78571429 +14930,248.8666667,1304,459,,232.8571429,81.96428571 +14931,248.8833333,1321,459,,235.8928571,81.96428571 +14932,248.9,1340,459,,239.2857143,81.96428571 +14933,248.9166667,1358,459,,242.5,81.96428571 +14934,248.9333333,1377,459,,245.8928571,81.96428571 +14935,248.95,1397,459,,249.4642857,81.96428571 +14936,248.9666667,1416,459,,252.8571429,81.96428571 +14937,248.9833333,1435,459,,256.25,81.96428571 +14938,249,1453,459,,259.4642857,81.96428571 +14939,249.0166667,1472,458,,262.8571429,81.78571429 +14940,249.0333333,1490,458,,266.0714286,81.78571429 +14941,249.05,1508,457,,269.2857143,81.60714286 +14942,249.0666667,1525,456,,272.3214286,81.42857143 +14943,249.0833333,1542,455,,275.3571429,81.25 +14944,249.1,1558,455,,278.2142857,81.25 +14945,249.1166667,1573,454,,280.8928571,81.07142857 +14946,249.1333333,1587,453,,283.3928571,80.89285714 +14947,249.15,1600,452,,285.7142857,80.71428571 +14948,249.1666667,1613,451,,288.0357143,80.53571429 +14949,249.1833333,1624,450,,290,80.35714286 +14950,249.2,1635,449,,291.9642857,80.17857143 +14951,249.2166667,1644,449,,293.5714286,80.17857143 +14952,249.2333333,1651,448,,294.8214286,80 +14953,249.25,1658,448,,296.0714286,80 +14954,249.2666667,1663,447,,296.9642857,79.82142857 +14955,249.2833333,1668,447,,297.8571429,79.82142857 +14956,249.3,1670,447,,298.2142857,79.82142857 +14957,249.3166667,1671,447,,298.3928571,79.82142857 +14958,249.3333333,1671,447,,298.3928571,79.82142857 +14959,249.35,1671,447,,298.3928571,79.82142857 +14960,249.3666667,1668,447,,297.8571429,79.82142857 +14961,249.3833333,1664,447,,297.1428571,79.82142857 +14962,249.4,1659,447,,296.25,79.82142857 +14963,249.4166667,1653,448,,295.1785714,80 +14964,249.4333333,1645,449,,293.75,80.17857143 +14965,249.45,1636,449,,292.1428571,80.17857143 +14966,249.4666667,1626,450,,290.3571429,80.35714286 +14967,249.4833333,1615,451,,288.3928571,80.53571429 +14968,249.5,1603,452,,286.25,80.71428571 +14969,249.5166667,1590,452,,283.9285714,80.71428571 +14970,249.5333333,1575,453,,281.25,80.89285714 +14971,249.55,1561,454,,278.75,81.07142857 +14972,249.5666667,1545,455,,275.8928571,81.25 +14973,249.5833333,1529,455,,273.0357143,81.25 +14974,249.6,1512,456,,270,81.42857143 +14975,249.6166667,1494,457,,266.7857143,81.60714286 +14976,249.6333333,1476,457,,263.5714286,81.60714286 +14977,249.65,1457,458,,260.1785714,81.78571429 +14978,249.6666667,1438,458,,256.7857143,81.78571429 +14979,249.6833333,1419,458,,253.3928571,81.78571429 +14980,249.7,1400,459,,250,81.96428571 +14981,249.7166667,1381,459,,246.6071429,81.96428571 +14982,249.7333333,1362,459,,243.2142857,81.96428571 +14983,249.75,1343,459,,239.8214286,81.96428571 +14984,249.7666667,1325,458,,236.6071429,81.78571429 +14985,249.7833333,1307,458,,233.3928571,81.78571429 +14986,249.8,1289,458,,230.1785714,81.78571429 +14987,249.8166667,1272,457,,227.1428571,81.60714286 +14988,249.8333333,1255,456,,224.1071429,81.42857143 +14989,249.85,1240,455,,221.4285714,81.25 +14990,249.8666667,1224,455,,218.5714286,81.25 +14991,249.8833333,1210,454,,216.0714286,81.07142857 +14992,249.9,1197,453,,213.75,80.89285714 +14993,249.9166667,1185,452,,211.6071429,80.71428571 +14994,249.9333333,1174,452,,209.6428571,80.71428571 +14995,249.95,1164,451,,207.8571429,80.53571429 +14996,249.9666667,1155,450,,206.25,80.35714286 +14997,249.9833333,1148,450,,205,80.35714286 +14998,250,1141,449,,203.75,80.17857143 +14999,250.0166667,1136,449,,202.8571429,80.17857143 +15000,250.0333333,1132,449,,202.1428571,80.17857143 +15001,250.05,1130,449,,201.7857143,80.17857143 +15002,250.0666667,1130,449,,201.7857143,80.17857143 +15003,250.0833333,1130,449,,201.7857143,80.17857143 +15004,250.1,1130,449,,201.7857143,80.17857143 +15005,250.1166667,1134,449,,202.5,80.17857143 +15006,250.1333333,1138,449,,203.2142857,80.17857143 +15007,250.15,1143,449,,204.1071429,80.17857143 +15008,250.1666667,1150,450,,205.3571429,80.35714286 +15009,250.1833333,1158,451,,206.7857143,80.53571429 +15010,250.2,1167,451,,208.3928571,80.53571429 +15011,250.2166667,1177,452,,210.1785714,80.71428571 +15012,250.2333333,1189,453,,212.3214286,80.89285714 +15013,250.25,1202,454,,214.6428571,81.07142857 +15014,250.2666667,1215,454,,216.9642857,81.07142857 +15015,250.2833333,1230,455,,219.6428571,81.25 +15016,250.3,1245,456,,222.3214286,81.42857143 +15017,250.3166667,1261,457,,225.1785714,81.60714286 +15018,250.3333333,1278,457,,228.2142857,81.60714286 +15019,250.35,1295,458,,231.25,81.78571429 +15020,250.3666667,1313,459,,234.4642857,81.96428571 +15021,250.3833333,1331,459,,237.6785714,81.96428571 +15022,250.4,1350,459,,241.0714286,81.96428571 +15023,250.4166667,1368,459,,244.2857143,81.96428571 +15024,250.4333333,1388,459,,247.8571429,81.96428571 +15025,250.45,1407,459,,251.25,81.96428571 +15026,250.4666667,1426,459,,254.6428571,81.96428571 +15027,250.4833333,1445,459,,258.0357143,81.96428571 +15028,250.5,1463,458,,261.25,81.78571429 +15029,250.5166667,1482,458,,264.6428571,81.78571429 +15030,250.5333333,1499,457,,267.6785714,81.60714286 +15031,250.55,1517,457,,270.8928571,81.60714286 +15032,250.5666667,1534,455,,273.9285714,81.25 +15033,250.5833333,1550,455,,276.7857143,81.25 +15034,250.6,1566,454,,279.6428571,81.07142857 +15035,250.6166667,1580,453,,282.1428571,80.89285714 +15036,250.6333333,1594,452,,284.6428571,80.71428571 +15037,250.65,1607,451,,286.9642857,80.53571429 +15038,250.6666667,1618,450,,288.9285714,80.35714286 +15039,250.6833333,1629,450,,290.8928571,80.35714286 +15040,250.7,1639,449,,292.6785714,80.17857143 +15041,250.7166667,1647,448,,294.1071429,80 +15042,250.7333333,1654,447,,295.3571429,79.82142857 +15043,250.75,1660,447,,296.4285714,79.82142857 +15044,250.7666667,1665,447,,297.3214286,79.82142857 +15045,250.7833333,1669,446,,298.0357143,79.64285714 +15046,250.8,1670,446,,298.2142857,79.64285714 +15047,250.8166667,1670,446,,298.2142857,79.64285714 +15048,250.8333333,1670,446,,298.2142857,79.64285714 +15049,250.85,1669,446,,298.0357143,79.64285714 +15050,250.8666667,1666,446,,297.5,79.64285714 +15051,250.8833333,1661,447,,296.6071429,79.82142857 +15052,250.9,1656,447,,295.7142857,79.82142857 +15053,250.9166667,1649,448,,294.4642857,80 +15054,250.9333333,1640,448,,292.8571429,80 +15055,250.95,1631,449,,291.25,80.17857143 +15056,250.9666667,1620,450,,289.2857143,80.35714286 +15057,250.9833333,1609,451,,287.3214286,80.53571429 +15058,251,1596,451,,285,80.53571429 +15059,251.0166667,1583,452,,282.6785714,80.71428571 +15060,251.0333333,1568,453,,280,80.89285714 +15061,251.05,1553,454,,277.3214286,81.07142857 +15062,251.0666667,1536,455,,274.2857143,81.25 +15063,251.0833333,1520,456,,271.4285714,81.42857143 +15064,251.1,1502,456,,268.2142857,81.42857143 +15065,251.1166667,1485,457,,265.1785714,81.60714286 +15066,251.1333333,1466,457,,261.7857143,81.60714286 +15067,251.15,1448,458,,258.5714286,81.78571429 +15068,251.1666667,1429,458,,255.1785714,81.78571429 +15069,251.1833333,1410,458,,251.7857143,81.78571429 +15070,251.2,1391,458,,248.3928571,81.78571429 +15071,251.2166667,1372,458,,245,81.78571429 +15072,251.2333333,1353,458,,241.6071429,81.78571429 +15073,251.25,1335,458,,238.3928571,81.78571429 +15074,251.2666667,1316,458,,235,81.78571429 +15075,251.2833333,1299,457,,231.9642857,81.60714286 +15076,251.3,1281,457,,228.75,81.60714286 +15077,251.3166667,1265,456,,225.8928571,81.42857143 +15078,251.3333333,1248,455,,222.8571429,81.25 +15079,251.35,1233,455,,220.1785714,81.25 +15080,251.3666667,1218,454,,217.5,81.07142857 +15081,251.3833333,1205,453,,215.1785714,80.89285714 +15082,251.4,1192,452,,212.8571429,80.71428571 +15083,251.4166667,1180,452,,210.7142857,80.71428571 +15084,251.4333333,1170,451,,208.9285714,80.53571429 +15085,251.45,1161,450,,207.3214286,80.35714286 +15086,251.4666667,1152,449,,205.7142857,80.17857143 +15087,251.4833333,1145,449,,204.4642857,80.17857143 +15088,251.5,1140,449,,203.5714286,80.17857143 +15089,251.5166667,1135,449,,202.6785714,80.17857143 +15090,251.5333333,1132,448,,202.1428571,80 +15091,251.55,1131,448,,201.9642857,80 +15092,251.5666667,1131,448,,201.9642857,80 +15093,251.5833333,1131,448,,201.9642857,80 +15094,251.6,1133,449,,202.3214286,80.17857143 +15095,251.6166667,1137,449,,203.0357143,80.17857143 +15096,251.6333333,1142,449,,203.9285714,80.17857143 +15097,251.65,1148,450,,205,80.35714286 +15098,251.6666667,1155,450,,206.25,80.35714286 +15099,251.6833333,1164,451,,207.8571429,80.53571429 +15100,251.7,1174,452,,209.6428571,80.71428571 +15101,251.7166667,1184,452,,211.4285714,80.71428571 +15102,251.7333333,1196,453,,213.5714286,80.89285714 +15103,251.75,1209,454,,215.8928571,81.07142857 +15104,251.7666667,1223,455,,218.3928571,81.25 +15105,251.7833333,1238,455,,221.0714286,81.25 +15106,251.8,1254,456,,223.9285714,81.42857143 +15107,251.8166667,1270,457,,226.7857143,81.60714286 +15108,251.8333333,1287,458,,229.8214286,81.78571429 +15109,251.85,1304,458,,232.8571429,81.78571429 +15110,251.8666667,1322,459,,236.0714286,81.96428571 +15111,251.8833333,1340,459,,239.2857143,81.96428571 +15112,251.9,1359,459,,242.6785714,81.96428571 +15113,251.9166667,1378,459,,246.0714286,81.96428571 +15114,251.9333333,1397,459,,249.4642857,81.96428571 +15115,251.95,1416,459,,252.8571429,81.96428571 +15116,251.9666667,1434,459,,256.0714286,81.96428571 +15117,251.9833333,1453,459,,259.4642857,81.96428571 +15118,252,1471,458,,262.6785714,81.78571429 +15119,252.0166667,1489,458,,265.8928571,81.78571429 +15120,252.0333333,1507,457,,269.1071429,81.60714286 +15121,252.05,1524,456,,272.1428571,81.42857143 +15122,252.0666667,1540,455,,275,81.25 +15123,252.0833333,1556,454,,277.8571429,81.07142857 +15124,252.1,1571,454,,280.5357143,81.07142857 +15125,252.1166667,1585,453,,283.0357143,80.89285714 +15126,252.1333333,1598,452,,285.3571429,80.71428571 +15127,252.15,1610,451,,287.5,80.53571429 +15128,252.1666667,1622,450,,289.6428571,80.35714286 +15129,252.1833333,1632,449,,291.4285714,80.17857143 +15130,252.2,1641,449,,293.0357143,80.17857143 +15131,252.2166667,1649,448,,294.4642857,80 +15132,252.2333333,1655,448,,295.5357143,80 +15133,252.25,1661,447,,296.6071429,79.82142857 +15134,252.2666667,1665,447,,297.3214286,79.82142857 +15135,252.2833333,1667,447,,297.6785714,79.82142857 +15136,252.3,1668,447,,297.8571429,79.82142857 +15137,252.3166667,1668,447,,297.8571429,79.82142857 +15138,252.3333333,1668,447,,297.8571429,79.82142857 +15139,252.35,1665,447,,297.3214286,79.82142857 +15140,252.3666667,1661,447,,296.6071429,79.82142857 +15141,252.3833333,1656,447,,295.7142857,79.82142857 +15142,252.4,1650,448,,294.6428571,80 +15143,252.4166667,1642,449,,293.2142857,80.17857143 +15144,252.4333333,1634,449,,291.7857143,80.17857143 +15145,252.45,1623,450,,289.8214286,80.35714286 +15146,252.4666667,1612,451,,287.8571429,80.53571429 +15147,252.4833333,1600,451,,285.7142857,80.53571429 +15148,252.5,1587,452,,283.3928571,80.71428571 +15149,252.5166667,1574,453,,281.0714286,80.89285714 +15150,252.5333333,1559,454,,278.3928571,81.07142857 +15151,252.55,1543,455,,275.5357143,81.25 +15152,252.5666667,1526,455,,272.5,81.25 +15153,252.5833333,1509,456,,269.4642857,81.42857143 +15154,252.6,1492,457,,266.4285714,81.60714286 +15155,252.6166667,1474,457,,263.2142857,81.60714286 +15156,252.6333333,1456,458,,260,81.78571429 +15157,252.65,1437,458,,256.6071429,81.78571429 +15158,252.6666667,1418,459,,253.2142857,81.96428571 +15159,252.6833333,1399,459,,249.8214286,81.96428571 +15160,252.7,1380,459,,246.4285714,81.96428571 +15161,252.7166667,1362,459,,243.2142857,81.96428571 +15162,252.7333333,1343,458,,239.8214286,81.78571429 +15163,252.75,1325,458,,236.6071429,81.78571429 +15164,252.7666667,1307,457,,233.3928571,81.60714286 +15165,252.7833333,1289,457,,230.1785714,81.60714286 +15166,252.8,1272,457,,227.1428571,81.60714286 +15167,252.8166667,1256,456,,224.2857143,81.42857143 +15168,252.8333333,1240,455,,221.4285714,81.25 +15169,252.85,1225,454,,218.75,81.07142857 +15170,252.8666667,1211,454,,216.25,81.07142857 +15171,252.8833333,1198,453,,213.9285714,80.89285714 +15172,252.9,1186,452,,211.7857143,80.71428571 +15173,252.9166667,1175,451,,209.8214286,80.53571429 +15174,252.9333333,1165,451,,208.0357143,80.53571429 +15175,252.95,1156,450,,206.4285714,80.35714286 +15176,252.9666667,1149,450,,205.1785714,80.35714286 +15177,252.9833333,1143,449,,204.1071429,80.17857143 +15178,253,1138,449,,203.2142857,80.17857143 +15179,253.0166667,1134,449,,202.5,80.17857143 +15180,253.0333333,1132,449,,202.1428571,80.17857143 +15181,253.05,1132,449,,202.1428571,80.17857143 +15182,253.0666667,1132,449,,202.1428571,80.17857143 +15183,253.0833333,1133,449,,202.3214286,80.17857143 +15184,253.1,1136,449,,202.8571429,80.17857143 +15185,253.1166667,1140,449,,203.5714286,80.17857143 +15186,253.1333333,1145,450,,204.4642857,80.35714286 +15187,253.15,1152,450,,205.7142857,80.35714286 +15188,253.1666667,1160,451,,207.1428571,80.53571429 +15189,253.1833333,1169,452,,208.75,80.71428571 +15190,253.2,1180,452,,210.7142857,80.71428571 +15191,253.2166667,1191,453,,212.6785714,80.89285714 +15192,253.2333333,1204,454,,215,81.07142857 +15193,253.25,1217,455,,217.3214286,81.25 +15194,253.2666667,1231,456,,219.8214286,81.42857143 +15195,253.2833333,1246,456,,222.5,81.42857143 +15196,253.3,1262,457,,225.3571429,81.60714286 +15197,253.3166667,1279,458,,228.3928571,81.78571429 +15198,253.3333333,1296,458,,231.4285714,81.78571429 +15199,253.35,1314,459,,234.6428571,81.96428571 +15200,253.3666667,1332,459,,237.8571429,81.96428571 +15201,253.3833333,1350,460,,241.0714286,82.14285714 +15202,253.4,1368,460,,244.2857143,82.14285714 +15203,253.4166667,1387,460,,247.6785714,82.14285714 +15204,253.4333333,1405,459,,250.8928571,81.96428571 +15205,253.45,1425,459,,254.4642857,81.96428571 +15206,253.4666667,1443,459,,257.6785714,81.96428571 +15207,253.4833333,1462,459,,261.0714286,81.96428571 +15208,253.5,1480,458,,264.2857143,81.78571429 +15209,253.5166667,1498,457,,267.5,81.60714286 +15210,253.5333333,1515,457,,270.5357143,81.60714286 +15211,253.55,1531,456,,273.3928571,81.42857143 +15212,253.5666667,1547,455,,276.25,81.25 +15213,253.5833333,1563,455,,279.1071429,81.25 +15214,253.6,1577,454,,281.6071429,81.07142857 +15215,253.6166667,1591,453,,284.1071429,80.89285714 +15216,253.6333333,1604,452,,286.4285714,80.71428571 +15217,253.65,1615,451,,288.3928571,80.53571429 +15218,253.6666667,1626,450,,290.3571429,80.35714286 +15219,253.6833333,1635,450,,291.9642857,80.35714286 +15220,253.7,1643,449,,293.3928571,80.17857143 +15221,253.7166667,1651,449,,294.8214286,80.17857143 +15222,253.7333333,1656,449,,295.7142857,80.17857143 +15223,253.75,1661,448,,296.6071429,80 +15224,253.7666667,1665,448,,297.3214286,80 +15225,253.7833333,1667,448,,297.6785714,80 +15226,253.8,1667,448,,297.6785714,80 +15227,253.8166667,1667,448,,297.6785714,80 +15228,253.8333333,1665,448,,297.3214286,80 +15229,253.85,1662,448,,296.7857143,80 +15230,253.8666667,1657,448,,295.8928571,80 +15231,253.8833333,1651,448,,294.8214286,80 +15232,253.9,1644,449,,293.5714286,80.17857143 +15233,253.9166667,1636,450,,292.1428571,80.35714286 +15234,253.9333333,1627,450,,290.5357143,80.35714286 +15235,253.95,1616,451,,288.5714286,80.53571429 +15236,253.9666667,1605,452,,286.6071429,80.71428571 +15237,253.9833333,1593,453,,284.4642857,80.89285714 +15238,254,1579,454,,281.9642857,81.07142857 +15239,254.0166667,1565,454,,279.4642857,81.07142857 +15240,254.0333333,1550,455,,276.7857143,81.25 +15241,254.05,1534,456,,273.9285714,81.42857143 +15242,254.0666667,1517,456,,270.8928571,81.42857143 +15243,254.0833333,1499,457,,267.6785714,81.60714286 +15244,254.1,1482,457,,264.6428571,81.60714286 +15245,254.1166667,1464,458,,261.4285714,81.78571429 +15246,254.1333333,1445,458,,258.0357143,81.78571429 +15247,254.15,1427,459,,254.8214286,81.96428571 +15248,254.1666667,1408,459,,251.4285714,81.96428571 +15249,254.1833333,1389,459,,248.0357143,81.96428571 +15250,254.2,1370,459,,244.6428571,81.96428571 +15251,254.2166667,1351,459,,241.25,81.96428571 +15252,254.2333333,1333,459,,238.0357143,81.96428571 +15253,254.25,1315,458,,234.8214286,81.78571429 +15254,254.2666667,1297,458,,231.6071429,81.78571429 +15255,254.2833333,1280,457,,228.5714286,81.60714286 +15256,254.3,1264,456,,225.7142857,81.42857143 +15257,254.3166667,1248,456,,222.8571429,81.42857143 +15258,254.3333333,1232,455,,220,81.25 +15259,254.35,1218,454,,217.5,81.07142857 +15260,254.3666667,1205,453,,215.1785714,80.89285714 +15261,254.3833333,1192,453,,212.8571429,80.89285714 +15262,254.4,1181,452,,210.8928571,80.71428571 +15263,254.4166667,1170,451,,208.9285714,80.53571429 +15264,254.4333333,1161,451,,207.3214286,80.53571429 +15265,254.45,1153,450,,205.8928571,80.35714286 +15266,254.4666667,1146,450,,204.6428571,80.35714286 +15267,254.4833333,1140,449,,203.5714286,80.17857143 +15268,254.5,1136,449,,202.8571429,80.17857143 +15269,254.5166667,1133,449,,202.3214286,80.17857143 +15270,254.5333333,1132,449,,202.1428571,80.17857143 +15271,254.55,1132,449,,202.1428571,80.17857143 +15272,254.5666667,1132,449,,202.1428571,80.17857143 +15273,254.5833333,1134,449,,202.5,80.17857143 +15274,254.6,1138,449,,203.2142857,80.17857143 +15275,254.6166667,1143,450,,204.1071429,80.35714286 +15276,254.6333333,1149,450,,205.1785714,80.35714286 +15277,254.65,1156,451,,206.4285714,80.53571429 +15278,254.6666667,1165,451,,208.0357143,80.53571429 +15279,254.6833333,1175,452,,209.8214286,80.71428571 +15280,254.7,1185,453,,211.6071429,80.89285714 +15281,254.7166667,1197,454,,213.75,81.07142857 +15282,254.7333333,1210,454,,216.0714286,81.07142857 +15283,254.75,1224,455,,218.5714286,81.25 +15284,254.7666667,1239,456,,221.25,81.42857143 +15285,254.7833333,1254,456,,223.9285714,81.42857143 +15286,254.8,1271,457,,226.9642857,81.60714286 +15287,254.8166667,1287,458,,229.8214286,81.78571429 +15288,254.8333333,1305,459,,233.0357143,81.96428571 +15289,254.85,1323,459,,236.25,81.96428571 +15290,254.8666667,1341,459,,239.4642857,81.96428571 +15291,254.8833333,1359,459,,242.6785714,81.96428571 +15292,254.9,1378,459,,246.0714286,81.96428571 +15293,254.9166667,1397,459,,249.4642857,81.96428571 +15294,254.9333333,1416,459,,252.8571429,81.96428571 +15295,254.95,1434,459,,256.0714286,81.96428571 +15296,254.9666667,1453,459,,259.4642857,81.96428571 +15297,254.9833333,1471,458,,262.6785714,81.78571429 +15298,255,1489,458,,265.8928571,81.78571429 +15299,255.0166667,1506,457,,268.9285714,81.60714286 +15300,255.0333333,1523,456,,271.9642857,81.42857143 +15301,255.05,1540,455,,275,81.25 +15302,255.0666667,1555,455,,277.6785714,81.25 +15303,255.0833333,1570,454,,280.3571429,81.07142857 +15304,255.1,1585,453,,283.0357143,80.89285714 +15305,255.1166667,1597,452,,285.1785714,80.71428571 +15306,255.1333333,1610,451,,287.5,80.53571429 +15307,255.15,1621,451,,289.4642857,80.53571429 +15308,255.1666667,1631,450,,291.25,80.35714286 +15309,255.1833333,1640,449,,292.8571429,80.17857143 +15310,255.2,1648,449,,294.2857143,80.17857143 +15311,255.2166667,1654,448,,295.3571429,80 +15312,255.2333333,1660,447,,296.4285714,79.82142857 +15313,255.25,1664,447,,297.1428571,79.82142857 +15314,255.2666667,1666,447,,297.5,79.82142857 +15315,255.2833333,1667,447,,297.6785714,79.82142857 +15316,255.3,1667,447,,297.6785714,79.82142857 +15317,255.3166667,1667,447,,297.6785714,79.82142857 +15318,255.3333333,1664,447,,297.1428571,79.82142857 +15319,255.35,1660,447,,296.4285714,79.82142857 +15320,255.3666667,1655,448,,295.5357143,80 +15321,255.3833333,1649,448,,294.4642857,80 +15322,255.4,1641,449,,293.0357143,80.17857143 +15323,255.4166667,1633,449,,291.6071429,80.17857143 +15324,255.4333333,1623,450,,289.8214286,80.35714286 +15325,255.45,1612,450,,287.8571429,80.35714286 +15326,255.4666667,1600,451,,285.7142857,80.53571429 +15327,255.4833333,1587,452,,283.3928571,80.71428571 +15328,255.5,1573,453,,280.8928571,80.89285714 +15329,255.5166667,1558,454,,278.2142857,81.07142857 +15330,255.5333333,1543,455,,275.5357143,81.25 +15331,255.55,1527,456,,272.6785714,81.42857143 +15332,255.5666667,1510,456,,269.6428571,81.42857143 +15333,255.5833333,1493,457,,266.6071429,81.60714286 +15334,255.6,1475,457,,263.3928571,81.60714286 +15335,255.6166667,1456,457,,260,81.60714286 +15336,255.6333333,1438,458,,256.7857143,81.78571429 +15337,255.65,1419,458,,253.3928571,81.78571429 +15338,255.6666667,1400,458,,250,81.78571429 +15339,255.6833333,1382,459,,246.7857143,81.96428571 +15340,255.7,1363,459,,243.3928571,81.96428571 +15341,255.7166667,1345,459,,240.1785714,81.96428571 +15342,255.7333333,1326,459,,236.7857143,81.96428571 +15343,255.75,1308,458,,233.5714286,81.78571429 +15344,255.7666667,1291,457,,230.5357143,81.60714286 +15345,255.7833333,1274,457,,227.5,81.60714286 +15346,255.8,1258,456,,224.6428571,81.42857143 +15347,255.8166667,1242,455,,221.7857143,81.25 +15348,255.8333333,1227,455,,219.1071429,81.25 +15349,255.85,1214,454,,216.7857143,81.07142857 +15350,255.8666667,1201,453,,214.4642857,80.89285714 +15351,255.8833333,1189,453,,212.3214286,80.89285714 +15352,255.9,1178,452,,210.3571429,80.71428571 +15353,255.9166667,1168,451,,208.5714286,80.53571429 +15354,255.9333333,1159,451,,206.9642857,80.53571429 +15355,255.95,1152,450,,205.7142857,80.35714286 +15356,255.9666667,1145,450,,204.4642857,80.35714286 +15357,255.9833333,1140,449,,203.5714286,80.17857143 +15358,256,1137,449,,203.0357143,80.17857143 +15359,256.0166667,1134,449,,202.5,80.17857143 +15360,256.0333333,1134,449,,202.5,80.17857143 +15361,256.05,1134,449,,202.5,80.17857143 +15362,256.0666667,1135,449,,202.6785714,80.17857143 +15363,256.0833333,1138,449,,203.2142857,80.17857143 +15364,256.1,1142,450,,203.9285714,80.35714286 +15365,256.1166667,1148,450,,205,80.35714286 +15366,256.1333333,1154,451,,206.0714286,80.53571429 +15367,256.15,1162,451,,207.5,80.53571429 +15368,256.1666667,1171,452,,209.1071429,80.71428571 +15369,256.1833333,1182,453,,211.0714286,80.89285714 +15370,256.2,1193,453,,213.0357143,80.89285714 +15371,256.2166667,1205,454,,215.1785714,81.07142857 +15372,256.2333333,1219,455,,217.6785714,81.25 +15373,256.25,1233,456,,220.1785714,81.42857143 +15374,256.2666667,1248,456,,222.8571429,81.42857143 +15375,256.2833333,1264,457,,225.7142857,81.60714286 +15376,256.3,1280,458,,228.5714286,81.78571429 +15377,256.3166667,1297,458,,231.6071429,81.78571429 +15378,256.3333333,1314,459,,234.6428571,81.96428571 +15379,256.35,1333,459,,238.0357143,81.96428571 +15380,256.3666667,1350,460,,241.0714286,82.14285714 +15381,256.3833333,1369,460,,244.4642857,82.14285714 +15382,256.4,1388,460,,247.8571429,82.14285714 +15383,256.4166667,1407,460,,251.25,82.14285714 +15384,256.4333333,1425,459,,254.4642857,81.96428571 +15385,256.45,1444,459,,257.8571429,81.96428571 +15386,256.4666667,1462,458,,261.0714286,81.78571429 +15387,256.4833333,1480,458,,264.2857143,81.78571429 +15388,256.5,1498,458,,267.5,81.78571429 +15389,256.5166667,1515,457,,270.5357143,81.60714286 +15390,256.5333333,1532,456,,273.5714286,81.42857143 +15391,256.55,1548,455,,276.4285714,81.25 +15392,256.5666667,1563,455,,279.1071429,81.25 +15393,256.5833333,1577,454,,281.6071429,81.07142857 +15394,256.6,1591,453,,284.1071429,80.89285714 +15395,256.6166667,1604,452,,286.4285714,80.71428571 +15396,256.6333333,1615,452,,288.3928571,80.71428571 +15397,256.65,1626,451,,290.3571429,80.53571429 +15398,256.6666667,1635,450,,291.9642857,80.35714286 +15399,256.6833333,1643,449,,293.3928571,80.17857143 +15400,256.7,1651,449,,294.8214286,80.17857143 +15401,256.7166667,1657,448,,295.8928571,80 +15402,256.7333333,1661,448,,296.6071429,80 +15403,256.75,1665,447,,297.3214286,79.82142857 +15404,256.7666667,1667,447,,297.6785714,79.82142857 +15405,256.7833333,1667,447,,297.6785714,79.82142857 +15406,256.8,1667,447,,297.6785714,79.82142857 +15407,256.8166667,1665,447,,297.3214286,79.82142857 +15408,256.8333333,1662,448,,296.7857143,80 +15409,256.85,1657,448,,295.8928571,80 +15410,256.8666667,1652,449,,295,80.17857143 +15411,256.8833333,1645,449,,293.75,80.17857143 +15412,256.9,1637,449,,292.3214286,80.17857143 +15413,256.9166667,1628,450,,290.7142857,80.35714286 +15414,256.9333333,1617,451,,288.75,80.53571429 +15415,256.95,1606,452,,286.7857143,80.71428571 +15416,256.9666667,1593,452,,284.4642857,80.71428571 +15417,256.9833333,1580,453,,282.1428571,80.89285714 +15418,257,1566,454,,279.6428571,81.07142857 +15419,257.0166667,1551,455,,276.9642857,81.25 +15420,257.0333333,1535,456,,274.1071429,81.42857143 +15421,257.05,1518,456,,271.0714286,81.42857143 +15422,257.0666667,1501,457,,268.0357143,81.60714286 +15423,257.0833333,1483,457,,264.8214286,81.60714286 +15424,257.1,1465,458,,261.6071429,81.78571429 +15425,257.1166667,1447,458,,258.3928571,81.78571429 +15426,257.1333333,1429,459,,255.1785714,81.96428571 +15427,257.15,1410,459,,251.7857143,81.96428571 +15428,257.1666667,1391,459,,248.3928571,81.96428571 +15429,257.1833333,1372,459,,245,81.96428571 +15430,257.2,1354,459,,241.7857143,81.96428571 +15431,257.2166667,1336,459,,238.5714286,81.96428571 +15432,257.2333333,1318,459,,235.3571429,81.96428571 +15433,257.25,1300,458,,232.1428571,81.78571429 +15434,257.2666667,1283,457,,229.1071429,81.60714286 +15435,257.2833333,1266,457,,226.0714286,81.60714286 +15436,257.3,1251,456,,223.3928571,81.42857143 +15437,257.3166667,1236,455,,220.7142857,81.25 +15438,257.3333333,1221,454,,218.0357143,81.07142857 +15439,257.35,1208,454,,215.7142857,81.07142857 +15440,257.3666667,1195,453,,213.3928571,80.89285714 +15441,257.3833333,1184,453,,211.4285714,80.89285714 +15442,257.4,1173,452,,209.4642857,80.71428571 +15443,257.4166667,1164,451,,207.8571429,80.53571429 +15444,257.4333333,1156,451,,206.4285714,80.53571429 +15445,257.45,1149,450,,205.1785714,80.35714286 +15446,257.4666667,1144,450,,204.2857143,80.35714286 +15447,257.4833333,1140,450,,203.5714286,80.35714286 +15448,257.5,1136,449,,202.8571429,80.17857143 +15449,257.5166667,1135,449,,202.6785714,80.17857143 +15450,257.5333333,1135,449,,202.6785714,80.17857143 +15451,257.55,1135,449,,202.6785714,80.17857143 +15452,257.5666667,1138,450,,203.2142857,80.35714286 +15453,257.5833333,1141,450,,203.75,80.35714286 +15454,257.6,1146,450,,204.6428571,80.35714286 +15455,257.6166667,1152,451,,205.7142857,80.53571429 +15456,257.6333333,1159,451,,206.9642857,80.53571429 +15457,257.65,1168,452,,208.5714286,80.71428571 +15458,257.6666667,1177,452,,210.1785714,80.71428571 +15459,257.6833333,1188,453,,212.1428571,80.89285714 +15460,257.7,1200,454,,214.2857143,81.07142857 +15461,257.7166667,1213,455,,216.6071429,81.25 +15462,257.7333333,1226,456,,218.9285714,81.42857143 +15463,257.75,1241,456,,221.6071429,81.42857143 +15464,257.7666667,1256,457,,224.2857143,81.60714286 +15465,257.7833333,1272,458,,227.1428571,81.78571429 +15466,257.8,1289,458,,230.1785714,81.78571429 +15467,257.8166667,1307,459,,233.3928571,81.96428571 +15468,257.8333333,1324,460,,236.4285714,82.14285714 +15469,257.85,1342,460,,239.6428571,82.14285714 +15470,257.8666667,1360,460,,242.8571429,82.14285714 +15471,257.8833333,1379,460,,246.25,82.14285714 +15472,257.9,1398,460,,249.6428571,82.14285714 +15473,257.9166667,1416,460,,252.8571429,82.14285714 +15474,257.9333333,1435,459,,256.25,81.96428571 +15475,257.95,1453,459,,259.4642857,81.96428571 +15476,257.9666667,1471,459,,262.6785714,81.96428571 +15477,257.9833333,1489,458,,265.8928571,81.78571429 +15478,258,1506,458,,268.9285714,81.78571429 +15479,258.0166667,1523,457,,271.9642857,81.60714286 +15480,258.0333333,1539,456,,274.8214286,81.42857143 +15481,258.05,1555,455,,277.6785714,81.25 +15482,258.0666667,1570,455,,280.3571429,81.25 +15483,258.0833333,1584,454,,282.8571429,81.07142857 +15484,258.1,1597,453,,285.1785714,80.89285714 +15485,258.1166667,1609,452,,287.3214286,80.71428571 +15486,258.1333333,1620,451,,289.2857143,80.53571429 +15487,258.15,1630,451,,291.0714286,80.53571429 +15488,258.1666667,1639,450,,292.6785714,80.35714286 +15489,258.1833333,1647,449,,294.1071429,80.17857143 +15490,258.2,1653,449,,295.1785714,80.17857143 +15491,258.2166667,1658,448,,296.0714286,80 +15492,258.2333333,1662,448,,296.7857143,80 +15493,258.25,1665,448,,297.3214286,80 +15494,258.2666667,1666,447,,297.5,79.82142857 +15495,258.2833333,1666,447,,297.5,79.82142857 +15496,258.3,1666,447,,297.5,79.82142857 +15497,258.3166667,1663,447,,296.9642857,79.82142857 +15498,258.3333333,1659,448,,296.25,80 +15499,258.35,1654,448,,295.3571429,80 +15500,258.3666667,1648,449,,294.2857143,80.17857143 +15501,258.3833333,1640,449,,292.8571429,80.17857143 +15502,258.4,1632,450,,291.4285714,80.35714286 +15503,258.4166667,1622,451,,289.6428571,80.53571429 +15504,258.4333333,1611,451,,287.6785714,80.53571429 +15505,258.45,1599,452,,285.5357143,80.71428571 +15506,258.4666667,1586,453,,283.2142857,80.89285714 +15507,258.4833333,1573,454,,280.8928571,81.07142857 +15508,258.5,1558,454,,278.2142857,81.07142857 +15509,258.5166667,1542,455,,275.3571429,81.25 +15510,258.5333333,1526,456,,272.5,81.42857143 +15511,258.55,1509,457,,269.4642857,81.60714286 +15512,258.5666667,1492,457,,266.4285714,81.60714286 +15513,258.5833333,1474,458,,263.2142857,81.78571429 +15514,258.6,1456,458,,260,81.78571429 +15515,258.6166667,1438,458,,256.7857143,81.78571429 +15516,258.6333333,1419,459,,253.3928571,81.96428571 +15517,258.65,1401,459,,250.1785714,81.96428571 +15518,258.6666667,1382,459,,246.7857143,81.96428571 +15519,258.6833333,1363,459,,243.3928571,81.96428571 +15520,258.7,1345,459,,240.1785714,81.96428571 +15521,258.7166667,1327,459,,236.9642857,81.96428571 +15522,258.7333333,1309,458,,233.75,81.78571429 +15523,258.75,1292,458,,230.7142857,81.78571429 +15524,258.7666667,1275,457,,227.6785714,81.60714286 +15525,258.7833333,1259,457,,224.8214286,81.60714286 +15526,258.8,1244,456,,222.1428571,81.42857143 +15527,258.8166667,1229,455,,219.4642857,81.25 +15528,258.8333333,1215,454,,216.9642857,81.07142857 +15529,258.85,1203,454,,214.8214286,81.07142857 +15530,258.8666667,1190,453,,212.5,80.89285714 +15531,258.8833333,1180,452,,210.7142857,80.71428571 +15532,258.9,1170,452,,208.9285714,80.71428571 +15533,258.9166667,1161,451,,207.3214286,80.53571429 +15534,258.9333333,1154,451,,206.0714286,80.53571429 +15535,258.95,1148,450,,205,80.35714286 +15536,258.9666667,1143,450,,204.1071429,80.35714286 +15537,258.9833333,1139,450,,203.3928571,80.35714286 +15538,259,1137,450,,203.0357143,80.35714286 +15539,259.0166667,1137,450,,203.0357143,80.35714286 +15540,259.0333333,1137,450,,203.0357143,80.35714286 +15541,259.05,1138,450,,203.2142857,80.35714286 +15542,259.0666667,1141,450,,203.75,80.35714286 +15543,259.0833333,1145,450,,204.4642857,80.35714286 +15544,259.1,1150,451,,205.3571429,80.53571429 +15545,259.1166667,1157,451,,206.6071429,80.53571429 +15546,259.1333333,1165,452,,208.0357143,80.71428571 +15547,259.15,1174,453,,209.6428571,80.89285714 +15548,259.1666667,1184,453,,211.4285714,80.89285714 +15549,259.1833333,1196,454,,213.5714286,81.07142857 +15550,259.2,1208,455,,215.7142857,81.25 +15551,259.2166667,1221,455,,218.0357143,81.25 +15552,259.2333333,1235,456,,220.5357143,81.42857143 +15553,259.25,1250,457,,223.2142857,81.60714286 +15554,259.2666667,1266,458,,226.0714286,81.78571429 +15555,259.2833333,1282,459,,228.9285714,81.96428571 +15556,259.3,1299,460,,231.9642857,82.14285714 +15557,259.3166667,1317,460,,235.1785714,82.14285714 +15558,259.3333333,1334,460,,238.2142857,82.14285714 +15559,259.35,1353,461,,241.6071429,82.32142857 +15560,259.3666667,1371,461,,244.8214286,82.32142857 +15561,259.3833333,1389,461,,248.0357143,82.32142857 +15562,259.4,1408,460,,251.4285714,82.14285714 +15563,259.4166667,1427,460,,254.8214286,82.14285714 +15564,259.4333333,1445,460,,258.0357143,82.14285714 +15565,259.45,1464,459,,261.4285714,81.96428571 +15566,259.4666667,1481,459,,264.4642857,81.96428571 +15567,259.4833333,1499,458,,267.6785714,81.78571429 +15568,259.5,1516,457,,270.7142857,81.60714286 +15569,259.5166667,1532,457,,273.5714286,81.60714286 +15570,259.5333333,1548,456,,276.4285714,81.42857143 +15571,259.55,1563,455,,279.1071429,81.25 +15572,259.5666667,1578,455,,281.7857143,81.25 +15573,259.5833333,1591,454,,284.1071429,81.07142857 +15574,259.6,1603,453,,286.25,80.89285714 +15575,259.6166667,1615,452,,288.3928571,80.71428571 +15576,259.6333333,1626,451,,290.3571429,80.53571429 +15577,259.65,1635,451,,291.9642857,80.53571429 +15578,259.6666667,1643,450,,293.3928571,80.35714286 +15579,259.6833333,1650,449,,294.6428571,80.17857143 +15580,259.7,1656,449,,295.7142857,80.17857143 +15581,259.7166667,1661,448,,296.6071429,80 +15582,259.7333333,1664,448,,297.1428571,80 +15583,259.75,1666,448,,297.5,80 +15584,259.7666667,1666,448,,297.5,80 +15585,259.7833333,1666,448,,297.5,80 +15586,259.8,1664,448,,297.1428571,80 +15587,259.8166667,1661,448,,296.6071429,80 +15588,259.8333333,1657,448,,295.8928571,80 +15589,259.85,1651,449,,294.8214286,80.17857143 +15590,259.8666667,1644,449,,293.5714286,80.17857143 +15591,259.8833333,1636,450,,292.1428571,80.35714286 +15592,259.9,1627,451,,290.5357143,80.53571429 +15593,259.9166667,1616,452,,288.5714286,80.71428571 +15594,259.9333333,1605,452,,286.6071429,80.71428571 +15595,259.95,1592,453,,284.2857143,80.89285714 +15596,259.9666667,1579,454,,281.9642857,81.07142857 +15597,259.9833333,1565,455,,279.4642857,81.25 +15598,260,1550,455,,276.7857143,81.25 +15599,260.0166667,1534,456,,273.9285714,81.42857143 +15600,260.0333333,1517,457,,270.8928571,81.60714286 +15601,260.05,1501,457,,268.0357143,81.60714286 +15602,260.0666667,1483,458,,264.8214286,81.78571429 +15603,260.0833333,1465,458,,261.6071429,81.78571429 +15604,260.1,1447,459,,258.3928571,81.96428571 +15605,260.1166667,1429,459,,255.1785714,81.96428571 +15606,260.1333333,1410,459,,251.7857143,81.96428571 +15607,260.15,1391,460,,248.3928571,82.14285714 +15608,260.1666667,1372,460,,245,82.14285714 +15609,260.1833333,1354,460,,241.7857143,82.14285714 +15610,260.2,1336,460,,238.5714286,82.14285714 +15611,260.2166667,1319,459,,235.5357143,81.96428571 +15612,260.2333333,1301,459,,232.3214286,81.96428571 +15613,260.25,1284,458,,229.2857143,81.78571429 +15614,260.2666667,1268,457,,226.4285714,81.60714286 +15615,260.2833333,1252,456,,223.5714286,81.42857143 +15616,260.3,1237,456,,220.8928571,81.42857143 +15617,260.3166667,1223,455,,218.3928571,81.25 +15618,260.3333333,1209,454,,215.8928571,81.07142857 +15619,260.35,1197,454,,213.75,81.07142857 +15620,260.3666667,1186,453,,211.7857143,80.89285714 +15621,260.3833333,1175,452,,209.8214286,80.71428571 +15622,260.4,1166,452,,208.2142857,80.71428571 +15623,260.4166667,1158,451,,206.7857143,80.53571429 +15624,260.4333333,1152,451,,205.7142857,80.53571429 +15625,260.45,1146,451,,204.6428571,80.53571429 +15626,260.4666667,1142,450,,203.9285714,80.35714286 +15627,260.4833333,1139,450,,203.3928571,80.35714286 +15628,260.5,1138,450,,203.2142857,80.35714286 +15629,260.5166667,1138,450,,203.2142857,80.35714286 +15630,260.5333333,1138,450,,203.2142857,80.35714286 +15631,260.55,1140,450,,203.5714286,80.35714286 +15632,260.5666667,1144,451,,204.2857143,80.53571429 +15633,260.5833333,1148,451,,205,80.53571429 +15634,260.6,1154,452,,206.0714286,80.71428571 +15635,260.6166667,1162,452,,207.5,80.71428571 +15636,260.6333333,1171,453,,209.1071429,80.89285714 +15637,260.65,1180,453,,210.7142857,80.89285714 +15638,260.6666667,1191,454,,212.6785714,81.07142857 +15639,260.6833333,1203,455,,214.8214286,81.25 +15640,260.7,1215,456,,216.9642857,81.42857143 +15641,260.7166667,1229,457,,219.4642857,81.60714286 +15642,260.7333333,1244,457,,222.1428571,81.60714286 +15643,260.75,1259,458,,224.8214286,81.78571429 +15644,260.7666667,1275,459,,227.6785714,81.96428571 +15645,260.7833333,1291,460,,230.5357143,82.14285714 +15646,260.8,1309,460,,233.75,82.14285714 +15647,260.8166667,1326,460,,236.7857143,82.14285714 +15648,260.8333333,1344,461,,240,82.32142857 +15649,260.85,1362,461,,243.2142857,82.32142857 +15650,260.8666667,1380,461,,246.4285714,82.32142857 +15651,260.8833333,1399,461,,249.8214286,82.32142857 +15652,260.9,1417,460,,253.0357143,82.14285714 +15653,260.9166667,1436,460,,256.4285714,82.14285714 +15654,260.9333333,1454,460,,259.6428571,82.14285714 +15655,260.95,1472,459,,262.8571429,81.96428571 +15656,260.9666667,1490,459,,266.0714286,81.96428571 +15657,260.9833333,1507,458,,269.1071429,81.78571429 +15658,261,1524,458,,272.1428571,81.78571429 +15659,261.0166667,1540,457,,275,81.60714286 +15660,261.0333333,1556,456,,277.8571429,81.42857143 +15661,261.05,1570,456,,280.3571429,81.42857143 +15662,261.0666667,1584,455,,282.8571429,81.25 +15663,261.0833333,1597,454,,285.1785714,81.07142857 +15664,261.1,1609,453,,287.3214286,80.89285714 +15665,261.1166667,1620,452,,289.2857143,80.71428571 +15666,261.1333333,1629,451,,290.8928571,80.53571429 +15667,261.15,1638,451,,292.5,80.53571429 +15668,261.1666667,1646,450,,293.9285714,80.35714286 +15669,261.1833333,1652,449,,295,80.17857143 +15670,261.2,1657,449,,295.8928571,80.17857143 +15671,261.2166667,1662,449,,296.7857143,80.17857143 +15672,261.2333333,1664,448,,297.1428571,80 +15673,261.25,1664,448,,297.1428571,80 +15674,261.2666667,1664,448,,297.1428571,80 +15675,261.2833333,1664,448,,297.1428571,80 +15676,261.3,1662,448,,296.7857143,80 +15677,261.3166667,1658,449,,296.0714286,80.17857143 +15678,261.3333333,1653,449,,295.1785714,80.17857143 +15679,261.35,1646,450,,293.9285714,80.35714286 +15680,261.3666667,1639,450,,292.6785714,80.35714286 +15681,261.3833333,1630,451,,291.0714286,80.53571429 +15682,261.4,1621,452,,289.4642857,80.71428571 +15683,261.4166667,1610,452,,287.5,80.71428571 +15684,261.4333333,1598,453,,285.3571429,80.89285714 +15685,261.45,1585,454,,283.0357143,81.07142857 +15686,261.4666667,1572,454,,280.7142857,81.07142857 +15687,261.4833333,1557,456,,278.0357143,81.42857143 +15688,261.5,1541,456,,275.1785714,81.42857143 +15689,261.5166667,1525,457,,272.3214286,81.60714286 +15690,261.5333333,1509,457,,269.4642857,81.60714286 +15691,261.55,1492,458,,266.4285714,81.78571429 +15692,261.5666667,1474,458,,263.2142857,81.78571429 +15693,261.5833333,1456,459,,260,81.96428571 +15694,261.6,1438,459,,256.7857143,81.96428571 +15695,261.6166667,1419,460,,253.3928571,82.14285714 +15696,261.6333333,1400,460,,250,82.14285714 +15697,261.65,1382,460,,246.7857143,82.14285714 +15698,261.6666667,1363,460,,243.3928571,82.14285714 +15699,261.6833333,1345,460,,240.1785714,82.14285714 +15700,261.7,1327,460,,236.9642857,82.14285714 +15701,261.7166667,1310,459,,233.9285714,81.96428571 +15702,261.7333333,1292,459,,230.7142857,81.96428571 +15703,261.75,1276,458,,227.8571429,81.78571429 +15704,261.7666667,1260,457,,225,81.60714286 +15705,261.7833333,1245,456,,222.3214286,81.42857143 +15706,261.8,1230,456,,219.6428571,81.42857143 +15707,261.8166667,1216,455,,217.1428571,81.25 +15708,261.8333333,1204,454,,215,81.07142857 +15709,261.85,1192,454,,212.8571429,81.07142857 +15710,261.8666667,1181,453,,210.8928571,80.89285714 +15711,261.8833333,1172,452,,209.2857143,80.71428571 +15712,261.9,1163,452,,207.6785714,80.71428571 +15713,261.9166667,1156,452,,206.4285714,80.71428571 +15714,261.9333333,1150,451,,205.3571429,80.53571429 +15715,261.95,1144,451,,204.2857143,80.53571429 +15716,261.9666667,1141,450,,203.75,80.35714286 +15717,261.9833333,1139,450,,203.3928571,80.35714286 +15718,262,1139,450,,203.3928571,80.35714286 +15719,262.0166667,1139,451,,203.3928571,80.53571429 +15720,262.0333333,1140,451,,203.5714286,80.53571429 +15721,262.05,1143,451,,204.1071429,80.53571429 +15722,262.0666667,1147,451,,204.8214286,80.53571429 +15723,262.0833333,1152,452,,205.7142857,80.71428571 +15724,262.1,1159,452,,206.9642857,80.71428571 +15725,262.1166667,1167,453,,208.3928571,80.89285714 +15726,262.1333333,1176,453,,210,80.89285714 +15727,262.15,1186,454,,211.7857143,81.07142857 +15728,262.1666667,1197,455,,213.75,81.25 +15729,262.1833333,1210,456,,216.0714286,81.42857143 +15730,262.2,1222,456,,218.2142857,81.42857143 +15731,262.2166667,1237,457,,220.8928571,81.60714286 +15732,262.2333333,1252,458,,223.5714286,81.78571429 +15733,262.25,1267,459,,226.25,81.96428571 +15734,262.2666667,1283,459,,229.1071429,81.96428571 +15735,262.2833333,1300,460,,232.1428571,82.14285714 +15736,262.3,1317,460,,235.1785714,82.14285714 +15737,262.3166667,1335,461,,238.3928571,82.32142857 +15738,262.3333333,1353,461,,241.6071429,82.32142857 +15739,262.35,1371,461,,244.8214286,82.32142857 +15740,262.3666667,1390,461,,248.2142857,82.32142857 +15741,262.3833333,1408,461,,251.4285714,82.32142857 +15742,262.4,1427,460,,254.8214286,82.14285714 +15743,262.4166667,1445,460,,258.0357143,82.14285714 +15744,262.4333333,1463,459,,261.25,81.96428571 +15745,262.45,1481,459,,264.4642857,81.96428571 +15746,262.4666667,1498,458,,267.5,81.78571429 +15747,262.4833333,1515,458,,270.5357143,81.78571429 +15748,262.5,1531,457,,273.3928571,81.60714286 +15749,262.5166667,1547,456,,276.25,81.42857143 +15750,262.5333333,1562,456,,278.9285714,81.42857143 +15751,262.55,1576,455,,281.4285714,81.25 +15752,262.5666667,1589,454,,283.75,81.07142857 +15753,262.5833333,1602,453,,286.0714286,80.89285714 +15754,262.6,1613,452,,288.0357143,80.71428571 +15755,262.6166667,1624,451,,290,80.53571429 +15756,262.6333333,1633,451,,291.6071429,80.53571429 +15757,262.65,1641,450,,293.0357143,80.35714286 +15758,262.6666667,1648,450,,294.2857143,80.35714286 +15759,262.6833333,1654,449,,295.3571429,80.17857143 +15760,262.7,1658,449,,296.0714286,80.17857143 +15761,262.7166667,1661,448,,296.6071429,80 +15762,262.7333333,1663,448,,296.9642857,80 +15763,262.75,1663,448,,296.9642857,80 +15764,262.7666667,1663,448,,296.9642857,80 +15765,262.7833333,1662,448,,296.7857143,80 +15766,262.8,1659,448,,296.25,80 +15767,262.8166667,1654,449,,295.3571429,80.17857143 +15768,262.8333333,1648,449,,294.2857143,80.17857143 +15769,262.85,1642,450,,293.2142857,80.35714286 +15770,262.8666667,1634,451,,291.7857143,80.53571429 +15771,262.8833333,1625,451,,290.1785714,80.53571429 +15772,262.9,1614,452,,288.2142857,80.71428571 +15773,262.9166667,1603,453,,286.25,80.89285714 +15774,262.9333333,1591,453,,284.1071429,80.89285714 +15775,262.95,1577,454,,281.6071429,81.07142857 +15776,262.9666667,1563,455,,279.1071429,81.25 +15777,262.9833333,1548,456,,276.4285714,81.42857143 +15778,263,1532,456,,273.5714286,81.42857143 +15779,263.0166667,1516,457,,270.7142857,81.60714286 +15780,263.0333333,1499,458,,267.6785714,81.78571429 +15781,263.05,1482,458,,264.6428571,81.78571429 +15782,263.0666667,1464,458,,261.4285714,81.78571429 +15783,263.0833333,1446,459,,258.2142857,81.96428571 +15784,263.1,1428,459,,255,81.96428571 +15785,263.1166667,1410,460,,251.7857143,82.14285714 +15786,263.1333333,1391,460,,248.3928571,82.14285714 +15787,263.15,1373,460,,245.1785714,82.14285714 +15788,263.1666667,1354,460,,241.7857143,82.14285714 +15789,263.1833333,1336,460,,238.5714286,82.14285714 +15790,263.2,1319,460,,235.5357143,82.14285714 +15791,263.2166667,1302,459,,232.5,81.96428571 +15792,263.2333333,1285,458,,229.4642857,81.78571429 +15793,263.25,1268,458,,226.4285714,81.78571429 +15794,263.2666667,1253,458,,223.75,81.78571429 +15795,263.2833333,1238,457,,221.0714286,81.60714286 +15796,263.3,1224,456,,218.5714286,81.42857143 +15797,263.3166667,1211,455,,216.25,81.25 +15798,263.3333333,1199,455,,214.1071429,81.25 +15799,263.35,1187,454,,211.9642857,81.07142857 +15800,263.3666667,1177,453,,210.1785714,80.89285714 +15801,263.3833333,1168,453,,208.5714286,80.89285714 +15802,263.4,1160,452,,207.1428571,80.71428571 +15803,263.4166667,1153,452,,205.8928571,80.71428571 +15804,263.4333333,1148,451,,205,80.53571429 +15805,263.45,1144,451,,204.2857143,80.53571429 +15806,263.4666667,1141,451,,203.75,80.53571429 +15807,263.4833333,1140,451,,203.5714286,80.53571429 +15808,263.5,1140,451,,203.5714286,80.53571429 +15809,263.5166667,1140,451,,203.5714286,80.53571429 +15810,263.5333333,1142,451,,203.9285714,80.53571429 +15811,263.55,1146,451,,204.6428571,80.53571429 +15812,263.5666667,1150,452,,205.3571429,80.71428571 +15813,263.5833333,1157,452,,206.6071429,80.71428571 +15814,263.6,1164,453,,207.8571429,80.89285714 +15815,263.6166667,1172,454,,209.2857143,81.07142857 +15816,263.6333333,1182,454,,211.0714286,81.07142857 +15817,263.65,1192,454,,212.8571429,81.07142857 +15818,263.6666667,1204,455,,215,81.25 +15819,263.6833333,1217,456,,217.3214286,81.42857143 +15820,263.7,1230,457,,219.6428571,81.60714286 +15821,263.7166667,1245,458,,222.3214286,81.78571429 +15822,263.7333333,1260,458,,225,81.78571429 +15823,263.75,1276,460,,227.8571429,82.14285714 +15824,263.7666667,1292,460,,230.7142857,82.14285714 +15825,263.7833333,1309,460,,233.75,82.14285714 +15826,263.8,1326,461,,236.7857143,82.32142857 +15827,263.8166667,1344,461,,240,82.32142857 +15828,263.8333333,1362,461,,243.2142857,82.32142857 +15829,263.85,1380,461,,246.4285714,82.32142857 +15830,263.8666667,1399,461,,249.8214286,82.32142857 +15831,263.8833333,1417,461,,253.0357143,82.32142857 +15832,263.9,1435,461,,256.25,82.32142857 +15833,263.9166667,1453,460,,259.4642857,82.14285714 +15834,263.9333333,1471,460,,262.6785714,82.14285714 +15835,263.95,1489,459,,265.8928571,81.96428571 +15836,263.9666667,1506,458,,268.9285714,81.78571429 +15837,263.9833333,1523,458,,271.9642857,81.78571429 +15838,264,1539,457,,274.8214286,81.60714286 +15839,264.0166667,1554,456,,277.5,81.42857143 +15840,264.0333333,1568,455,,280,81.25 +15841,264.05,1582,455,,282.5,81.25 +15842,264.0666667,1595,454,,284.8214286,81.07142857 +15843,264.0833333,1607,453,,286.9642857,80.89285714 +15844,264.1,1618,452,,288.9285714,80.71428571 +15845,264.1166667,1628,452,,290.7142857,80.71428571 +15846,264.1333333,1636,451,,292.1428571,80.53571429 +15847,264.15,1644,451,,293.5714286,80.53571429 +15848,264.1666667,1650,450,,294.6428571,80.35714286 +15849,264.1833333,1655,449,,295.5357143,80.17857143 +15850,264.2,1659,449,,296.25,80.17857143 +15851,264.2166667,1662,449,,296.7857143,80.17857143 +15852,264.2333333,1662,449,,296.7857143,80.17857143 +15853,264.25,1662,449,,296.7857143,80.17857143 +15854,264.2666667,1662,449,,296.7857143,80.17857143 +15855,264.2833333,1660,449,,296.4285714,80.17857143 +15856,264.3,1656,449,,295.7142857,80.17857143 +15857,264.3166667,1651,449,,294.8214286,80.17857143 +15858,264.3333333,1645,450,,293.75,80.35714286 +15859,264.35,1637,450,,292.3214286,80.35714286 +15860,264.3666667,1628,451,,290.7142857,80.53571429 +15861,264.3833333,1619,452,,289.1071429,80.71428571 +15862,264.4,1608,453,,287.1428571,80.89285714 +15863,264.4166667,1596,453,,285,80.89285714 +15864,264.4333333,1583,454,,282.6785714,81.07142857 +15865,264.45,1570,455,,280.3571429,81.25 +15866,264.4666667,1555,455,,277.6785714,81.25 +15867,264.4833333,1540,456,,275,81.42857143 +15868,264.5,1524,457,,272.1428571,81.60714286 +15869,264.5166667,1507,457,,269.1071429,81.60714286 +15870,264.5333333,1491,459,,266.25,81.96428571 +15871,264.55,1473,459,,263.0357143,81.96428571 +15872,264.5666667,1455,459,,259.8214286,81.96428571 +15873,264.5833333,1437,460,,256.6071429,82.14285714 +15874,264.6,1419,460,,253.3928571,82.14285714 +15875,264.6166667,1400,460,,250,82.14285714 +15876,264.6333333,1382,460,,246.7857143,82.14285714 +15877,264.65,1364,460,,243.5714286,82.14285714 +15878,264.6666667,1346,460,,240.3571429,82.14285714 +15879,264.6833333,1328,460,,237.1428571,82.14285714 +15880,264.7,1311,459,,234.1071429,81.96428571 +15881,264.7166667,1293,459,,230.8928571,81.96428571 +15882,264.7333333,1277,458,,228.0357143,81.78571429 +15883,264.75,1261,458,,225.1785714,81.78571429 +15884,264.7666667,1246,457,,222.5,81.60714286 +15885,264.7833333,1231,456,,219.8214286,81.42857143 +15886,264.8,1218,455,,217.5,81.25 +15887,264.8166667,1205,455,,215.1785714,81.25 +15888,264.8333333,1194,454,,213.2142857,81.07142857 +15889,264.85,1183,453,,211.25,80.89285714 +15890,264.8666667,1173,453,,209.4642857,80.89285714 +15891,264.8833333,1165,452,,208.0357143,80.71428571 +15892,264.9,1158,452,,206.7857143,80.71428571 +15893,264.9166667,1152,451,,205.7142857,80.53571429 +15894,264.9333333,1147,451,,204.8214286,80.53571429 +15895,264.95,1143,451,,204.1071429,80.53571429 +15896,264.9666667,1141,451,,203.75,80.53571429 +15897,264.9833333,1141,451,,203.75,80.53571429 +15898,265,1141,451,,203.75,80.53571429 +15899,265.0166667,1142,451,,203.9285714,80.53571429 +15900,265.0333333,1145,451,,204.4642857,80.53571429 +15901,265.05,1149,451,,205.1785714,80.53571429 +15902,265.0666667,1154,452,,206.0714286,80.71428571 +15903,265.0833333,1161,452,,207.3214286,80.71428571 +15904,265.1,1169,453,,208.75,80.89285714 +15905,265.1166667,1178,453,,210.3571429,80.89285714 +15906,265.1333333,1188,454,,212.1428571,81.07142857 +15907,265.15,1199,455,,214.1071429,81.25 +15908,265.1666667,1211,456,,216.25,81.42857143 +15909,265.1833333,1224,457,,218.5714286,81.60714286 +15910,265.2,1238,457,,221.0714286,81.60714286 +15911,265.2166667,1253,458,,223.75,81.78571429 +15912,265.2333333,1268,459,,226.4285714,81.96428571 +15913,265.25,1284,460,,229.2857143,82.14285714 +15914,265.2666667,1301,460,,232.3214286,82.14285714 +15915,265.2833333,1318,461,,235.3571429,82.32142857 +15916,265.3,1336,461,,238.5714286,82.32142857 +15917,265.3166667,1353,461,,241.6071429,82.32142857 +15918,265.3333333,1371,461,,244.8214286,82.32142857 +15919,265.35,1390,461,,248.2142857,82.32142857 +15920,265.3666667,1408,461,,251.4285714,82.32142857 +15921,265.3833333,1426,461,,254.6428571,82.32142857 +15922,265.4,1444,460,,257.8571429,82.14285714 +15923,265.4166667,1462,460,,261.0714286,82.14285714 +15924,265.4333333,1480,460,,264.2857143,82.14285714 +15925,265.45,1497,459,,267.3214286,81.96428571 +15926,265.4666667,1514,458,,270.3571429,81.78571429 +15927,265.4833333,1530,458,,273.2142857,81.78571429 +15928,265.5,1546,457,,276.0714286,81.60714286 +15929,265.5166667,1561,456,,278.75,81.42857143 +15930,265.5333333,1575,455,,281.25,81.25 +15931,265.55,1588,455,,283.5714286,81.25 +15932,265.5666667,1600,454,,285.7142857,81.07142857 +15933,265.5833333,1612,453,,287.8571429,80.89285714 +15934,265.6,1622,452,,289.6428571,80.71428571 +15935,265.6166667,1631,451,,291.25,80.53571429 +15936,265.6333333,1639,450,,292.6785714,80.35714286 +15937,265.65,1646,450,,293.9285714,80.35714286 +15938,265.6666667,1652,449,,295,80.17857143 +15939,265.6833333,1656,449,,295.7142857,80.17857143 +15940,265.7,1660,449,,296.4285714,80.17857143 +15941,265.7166667,1661,448,,296.6071429,80 +15942,265.7333333,1661,448,,296.6071429,80 +15943,265.75,1661,448,,296.6071429,80 +15944,265.7666667,1660,448,,296.4285714,80 +15945,265.7833333,1657,449,,295.8928571,80.17857143 +15946,265.8,1653,449,,295.1785714,80.17857143 +15947,265.8166667,1647,449,,294.1071429,80.17857143 +15948,265.8333333,1640,450,,292.8571429,80.35714286 +15949,265.85,1632,450,,291.4285714,80.35714286 +15950,265.8666667,1623,451,,289.8214286,80.53571429 +15951,265.8833333,1613,452,,288.0357143,80.71428571 +15952,265.9,1602,452,,286.0714286,80.71428571 +15953,265.9166667,1589,453,,283.75,80.89285714 +15954,265.9333333,1576,454,,281.4285714,81.07142857 +15955,265.95,1562,455,,278.9285714,81.25 +15956,265.9666667,1547,455,,276.25,81.25 +15957,265.9833333,1532,456,,273.5714286,81.42857143 +15958,266,1516,457,,270.7142857,81.60714286 +15959,266.0166667,1499,457,,267.6785714,81.60714286 +15960,266.0333333,1482,458,,264.6428571,81.78571429 +15961,266.05,1464,459,,261.4285714,81.96428571 +15962,266.0666667,1446,459,,258.2142857,81.96428571 +15963,266.0833333,1429,459,,255.1785714,81.96428571 +15964,266.1,1410,459,,251.7857143,81.96428571 +15965,266.1166667,1391,460,,248.3928571,82.14285714 +15966,266.1333333,1373,460,,245.1785714,82.14285714 +15967,266.15,1355,460,,241.9642857,82.14285714 +15968,266.1666667,1337,460,,238.75,82.14285714 +15969,266.1833333,1320,459,,235.7142857,81.96428571 +15970,266.2,1303,459,,232.6785714,81.96428571 +15971,266.2166667,1286,459,,229.6428571,81.96428571 +15972,266.2333333,1270,457,,226.7857143,81.60714286 +15973,266.25,1254,457,,223.9285714,81.60714286 +15974,266.2666667,1240,456,,221.4285714,81.42857143 +15975,266.2833333,1226,455,,218.9285714,81.25 +15976,266.3,1212,455,,216.4285714,81.25 +15977,266.3166667,1200,454,,214.2857143,81.07142857 +15978,266.3333333,1189,454,,212.3214286,81.07142857 +15979,266.35,1179,453,,210.5357143,80.89285714 +15980,266.3666667,1170,452,,208.9285714,80.71428571 +15981,266.3833333,1162,452,,207.5,80.71428571 +15982,266.4,1155,451,,206.25,80.53571429 +15983,266.4166667,1150,451,,205.3571429,80.53571429 +15984,266.4333333,1146,451,,204.6428571,80.53571429 +15985,266.45,1143,450,,204.1071429,80.35714286 +15986,266.4666667,1142,450,,203.9285714,80.35714286 +15987,266.4833333,1142,450,,203.9285714,80.35714286 +15988,266.5,1142,451,,203.9285714,80.53571429 +15989,266.5166667,1144,451,,204.2857143,80.53571429 +15990,266.5333333,1148,451,,205,80.53571429 +15991,266.55,1152,452,,205.7142857,80.71428571 +15992,266.5666667,1158,453,,206.7857143,80.89285714 +15993,266.5833333,1165,453,,208.0357143,80.89285714 +15994,266.6,1174,453,,209.6428571,80.89285714 +15995,266.6166667,1183,454,,211.25,81.07142857 +15996,266.6333333,1194,454,,213.2142857,81.07142857 +15997,266.65,1205,455,,215.1785714,81.25 +15998,266.6666667,1218,456,,217.5,81.42857143 +15999,266.6833333,1231,457,,219.8214286,81.60714286 +16000,266.7,1246,457,,222.5,81.60714286 +16001,266.7166667,1261,458,,225.1785714,81.78571429 +16002,266.7333333,1276,459,,227.8571429,81.96428571 +16003,266.75,1293,460,,230.8928571,82.14285714 +16004,266.7666667,1310,460,,233.9285714,82.14285714 +16005,266.7833333,1327,461,,236.9642857,82.32142857 +16006,266.8,1345,461,,240.1785714,82.32142857 +16007,266.8166667,1362,461,,243.2142857,82.32142857 +16008,266.8333333,1381,461,,246.6071429,82.32142857 +16009,266.85,1399,461,,249.8214286,82.32142857 +16010,266.8666667,1417,460,,253.0357143,82.14285714 +16011,266.8833333,1435,460,,256.25,82.14285714 +16012,266.9,1453,460,,259.4642857,82.14285714 +16013,266.9166667,1471,459,,262.6785714,81.96428571 +16014,266.9333333,1488,459,,265.7142857,81.96428571 +16015,266.95,1505,458,,268.75,81.78571429 +16016,266.9666667,1522,458,,271.7857143,81.78571429 +16017,266.9833333,1538,457,,274.6428571,81.60714286 +16018,267,1552,456,,277.1428571,81.42857143 +16019,267.0166667,1567,456,,279.8214286,81.42857143 +16020,267.0333333,1581,455,,282.3214286,81.25 +16021,267.05,1594,454,,284.6428571,81.07142857 +16022,267.0666667,1606,453,,286.7857143,80.89285714 +16023,267.0833333,1616,452,,288.5714286,80.71428571 +16024,267.1,1626,452,,290.3571429,80.71428571 +16025,267.1166667,1634,450,,291.7857143,80.35714286 +16026,267.1333333,1642,450,,293.2142857,80.35714286 +16027,267.15,1648,450,,294.2857143,80.35714286 +16028,267.1666667,1654,449,,295.3571429,80.17857143 +16029,267.1833333,1658,449,,296.0714286,80.17857143 +16030,267.2,1660,449,,296.4285714,80.17857143 +16031,267.2166667,1661,449,,296.6071429,80.17857143 +16032,267.2333333,1661,449,,296.6071429,80.17857143 +16033,267.25,1661,449,,296.6071429,80.17857143 +16034,267.2666667,1658,449,,296.0714286,80.17857143 +16035,267.2833333,1654,449,,295.3571429,80.17857143 +16036,267.3,1649,449,,294.4642857,80.17857143 +16037,267.3166667,1643,449,,293.3928571,80.17857143 +16038,267.3333333,1636,450,,292.1428571,80.35714286 +16039,267.35,1627,451,,290.5357143,80.53571429 +16040,267.3666667,1618,451,,288.9285714,80.53571429 +16041,267.3833333,1607,452,,286.9642857,80.71428571 +16042,267.4,1595,453,,284.8214286,80.89285714 +16043,267.4166667,1583,454,,282.6785714,81.07142857 +16044,267.4333333,1569,454,,280.1785714,81.07142857 +16045,267.45,1555,455,,277.6785714,81.25 +16046,267.4666667,1540,456,,275,81.42857143 +16047,267.4833333,1524,457,,272.1428571,81.60714286 +16048,267.5,1507,457,,269.1071429,81.60714286 +16049,267.5166667,1490,458,,266.0714286,81.78571429 +16050,267.5333333,1473,458,,263.0357143,81.78571429 +16051,267.55,1455,459,,259.8214286,81.96428571 +16052,267.5666667,1438,459,,256.7857143,81.96428571 +16053,267.5833333,1419,459,,253.3928571,81.96428571 +16054,267.6,1401,459,,250.1785714,81.96428571 +16055,267.6166667,1383,460,,246.9642857,82.14285714 +16056,267.6333333,1364,460,,243.5714286,82.14285714 +16057,267.65,1346,459,,240.3571429,81.96428571 +16058,267.6666667,1329,459,,237.3214286,81.96428571 +16059,267.6833333,1311,459,,234.1071429,81.96428571 +16060,267.7,1294,458,,231.0714286,81.78571429 +16061,267.7166667,1278,458,,228.2142857,81.78571429 +16062,267.7333333,1262,457,,225.3571429,81.60714286 +16063,267.75,1247,456,,222.6785714,81.42857143 +16064,267.7666667,1233,456,,220.1785714,81.42857143 +16065,267.7833333,1219,455,,217.6785714,81.25 +16066,267.8,1207,454,,215.5357143,81.07142857 +16067,267.8166667,1195,454,,213.3928571,81.07142857 +16068,267.8333333,1184,453,,211.4285714,80.89285714 +16069,267.85,1175,452,,209.8214286,80.71428571 +16070,267.8666667,1166,452,,208.2142857,80.71428571 +16071,267.8833333,1159,451,,206.9642857,80.53571429 +16072,267.9,1153,451,,205.8928571,80.53571429 +16073,267.9166667,1148,451,,205,80.53571429 +16074,267.9333333,1145,451,,204.4642857,80.53571429 +16075,267.95,1142,451,,203.9285714,80.53571429 +16076,267.9666667,1142,451,,203.9285714,80.53571429 +16077,267.9833333,1142,451,,203.9285714,80.53571429 +16078,268,1143,451,,204.1071429,80.53571429 +16079,268.0166667,1146,451,,204.6428571,80.53571429 +16080,268.0333333,1150,451,,205.3571429,80.53571429 +16081,268.05,1156,452,,206.4285714,80.71428571 +16082,268.0666667,1162,452,,207.5,80.71428571 +16083,268.0833333,1170,452,,208.9285714,80.71428571 +16084,268.1,1179,453,,210.5357143,80.89285714 +16085,268.1166667,1189,454,,212.3214286,81.07142857 +16086,268.1333333,1200,454,,214.2857143,81.07142857 +16087,268.15,1212,455,,216.4285714,81.25 +16088,268.1666667,1225,456,,218.75,81.42857143 +16089,268.1833333,1239,457,,221.25,81.60714286 +16090,268.2,1254,458,,223.9285714,81.78571429 +16091,268.2166667,1269,458,,226.6071429,81.78571429 +16092,268.2333333,1285,459,,229.4642857,81.96428571 +16093,268.25,1302,460,,232.5,82.14285714 +16094,268.2666667,1319,460,,235.5357143,82.14285714 +16095,268.2833333,1336,460,,238.5714286,82.14285714 +16096,268.3,1354,461,,241.7857143,82.32142857 +16097,268.3166667,1372,461,,245,82.32142857 +16098,268.3333333,1390,461,,248.2142857,82.32142857 +16099,268.35,1408,460,,251.4285714,82.14285714 +16100,268.3666667,1426,460,,254.6428571,82.14285714 +16101,268.3833333,1444,460,,257.8571429,82.14285714 +16102,268.4,1462,460,,261.0714286,82.14285714 +16103,268.4166667,1480,459,,264.2857143,81.96428571 +16104,268.4333333,1497,459,,267.3214286,81.96428571 +16105,268.45,1514,458,,270.3571429,81.78571429 +16106,268.4666667,1530,457,,273.2142857,81.60714286 +16107,268.4833333,1545,456,,275.8928571,81.42857143 +16108,268.5,1560,456,,278.5714286,81.42857143 +16109,268.5166667,1574,455,,281.0714286,81.25 +16110,268.5333333,1587,454,,283.3928571,81.07142857 +16111,268.55,1600,453,,285.7142857,80.89285714 +16112,268.5666667,1611,453,,287.6785714,80.89285714 +16113,268.5833333,1621,452,,289.4642857,80.71428571 +16114,268.6,1630,451,,291.0714286,80.53571429 +16115,268.6166667,1638,450,,292.5,80.35714286 +16116,268.6333333,1645,450,,293.75,80.35714286 +16117,268.65,1651,449,,294.8214286,80.17857143 +16118,268.6666667,1656,449,,295.7142857,80.17857143 +16119,268.6833333,1659,448,,296.25,80 +16120,268.7,1660,448,,296.4285714,80 +16121,268.7166667,1660,448,,296.4285714,80 +16122,268.7333333,1660,448,,296.4285714,80 +16123,268.75,1659,448,,296.25,80 +16124,268.7666667,1656,448,,295.7142857,80 +16125,268.7833333,1651,449,,294.8214286,80.17857143 +16126,268.8,1646,449,,293.9285714,80.17857143 +16127,268.8166667,1639,449,,292.6785714,80.17857143 +16128,268.8333333,1631,450,,291.25,80.35714286 +16129,268.85,1622,451,,289.6428571,80.53571429 +16130,268.8666667,1612,451,,287.8571429,80.53571429 +16131,268.8833333,1601,452,,285.8928571,80.71428571 +16132,268.9,1588,453,,283.5714286,80.89285714 +16133,268.9166667,1575,454,,281.25,81.07142857 +16134,268.9333333,1561,454,,278.75,81.07142857 +16135,268.95,1546,455,,276.0714286,81.25 +16136,268.9666667,1531,456,,273.3928571,81.42857143 +16137,268.9833333,1515,457,,270.5357143,81.60714286 +16138,269,1498,457,,267.5,81.60714286 +16139,269.0166667,1481,458,,264.4642857,81.78571429 +16140,269.0333333,1463,458,,261.25,81.78571429 +16141,269.05,1445,458,,258.0357143,81.78571429 +16142,269.0666667,1428,459,,255,81.96428571 +16143,269.0833333,1409,459,,251.6071429,81.96428571 +16144,269.1,1391,459,,248.3928571,81.96428571 +16145,269.1166667,1372,459,,245,81.96428571 +16146,269.1333333,1354,459,,241.7857143,81.96428571 +16147,269.15,1337,459,,238.75,81.96428571 +16148,269.1666667,1320,459,,235.7142857,81.96428571 +16149,269.1833333,1302,458,,232.5,81.78571429 +16150,269.2,1285,458,,229.4642857,81.78571429 +16151,269.2166667,1269,457,,226.6071429,81.60714286 +16152,269.2333333,1254,456,,223.9285714,81.42857143 +16153,269.25,1239,456,,221.25,81.42857143 +16154,269.2666667,1226,455,,218.9285714,81.25 +16155,269.2833333,1212,455,,216.4285714,81.25 +16156,269.3,1201,454,,214.4642857,81.07142857 +16157,269.3166667,1189,453,,212.3214286,80.89285714 +16158,269.3333333,1179,453,,210.5357143,80.89285714 +16159,269.35,1170,452,,208.9285714,80.71428571 +16160,269.3666667,1162,451,,207.5,80.53571429 +16161,269.3833333,1156,451,,206.4285714,80.53571429 +16162,269.4,1150,451,,205.3571429,80.53571429 +16163,269.4166667,1147,450,,204.8214286,80.35714286 +16164,269.4333333,1143,450,,204.1071429,80.35714286 +16165,269.45,1142,450,,203.9285714,80.35714286 +16166,269.4666667,1142,450,,203.9285714,80.35714286 +16167,269.4833333,1142,450,,203.9285714,80.35714286 +16168,269.5,1145,450,,204.4642857,80.35714286 +16169,269.5166667,1148,451,,205,80.53571429 +16170,269.5333333,1153,451,,205.8928571,80.53571429 +16171,269.55,1159,452,,206.9642857,80.71428571 +16172,269.5666667,1166,452,,208.2142857,80.71428571 +16173,269.5833333,1174,453,,209.6428571,80.89285714 +16174,269.6,1184,454,,211.4285714,81.07142857 +16175,269.6166667,1194,454,,213.2142857,81.07142857 +16176,269.6333333,1206,455,,215.3571429,81.25 +16177,269.65,1218,455,,217.5,81.25 +16178,269.6666667,1232,456,,220,81.42857143 +16179,269.6833333,1246,457,,222.5,81.60714286 +16180,269.7,1261,458,,225.1785714,81.78571429 +16181,269.7166667,1277,458,,228.0357143,81.78571429 +16182,269.7333333,1293,459,,230.8928571,81.96428571 +16183,269.75,1310,460,,233.9285714,82.14285714 +16184,269.7666667,1327,460,,236.9642857,82.14285714 +16185,269.7833333,1344,460,,240,82.14285714 +16186,269.8,1362,460,,243.2142857,82.14285714 +16187,269.8166667,1380,460,,246.4285714,82.14285714 +16188,269.8333333,1398,460,,249.6428571,82.14285714 +16189,269.85,1417,460,,253.0357143,82.14285714 +16190,269.8666667,1435,459,,256.25,81.96428571 +16191,269.8833333,1453,459,,259.4642857,81.96428571 +16192,269.9,1470,459,,262.5,81.96428571 +16193,269.9166667,1488,458,,265.7142857,81.78571429 +16194,269.9333333,1505,458,,268.75,81.78571429 +16195,269.95,1521,457,,271.6071429,81.60714286 +16196,269.9666667,1537,456,,274.4642857,81.42857143 +16197,269.9833333,1552,456,,277.1428571,81.42857143 +16198,270,1566,455,,279.6428571,81.25 +16199,270.0166667,1579,454,,281.9642857,81.07142857 +16200,270.0333333,1592,453,,284.2857143,80.89285714 +16201,270.05,1604,453,,286.4285714,80.89285714 +16202,270.0666667,1615,452,,288.3928571,80.71428571 +16203,270.0833333,1625,451,,290.1785714,80.53571429 +16204,270.1,1633,450,,291.6071429,80.35714286 +16205,270.1166667,1640,449,,292.8571429,80.17857143 +16206,270.1333333,1647,449,,294.1071429,80.17857143 +16207,270.15,1652,448,,295,80 +16208,270.1666667,1656,448,,295.7142857,80 +16209,270.1833333,1658,448,,296.0714286,80 +16210,270.2,1659,448,,296.25,80 +16211,270.2166667,1659,448,,296.25,80 +16212,270.2333333,1659,448,,296.25,80 +16213,270.25,1656,448,,295.7142857,80 +16214,270.2666667,1652,448,,295,80 +16215,270.2833333,1647,449,,294.1071429,80.17857143 +16216,270.3,1641,449,,293.0357143,80.17857143 +16217,270.3166667,1634,450,,291.7857143,80.35714286 +16218,270.3333333,1625,450,,290.1785714,80.35714286 +16219,270.35,1616,451,,288.5714286,80.53571429 +16220,270.3666667,1605,451,,286.6071429,80.53571429 +16221,270.3833333,1593,452,,284.4642857,80.71428571 +16222,270.4,1580,453,,282.1428571,80.89285714 +16223,270.4166667,1567,454,,279.8214286,81.07142857 +16224,270.4333333,1553,454,,277.3214286,81.07142857 +16225,270.45,1538,455,,274.6428571,81.25 +16226,270.4666667,1522,456,,271.7857143,81.42857143 +16227,270.4833333,1505,456,,268.75,81.42857143 +16228,270.5,1489,457,,265.8928571,81.60714286 +16229,270.5166667,1471,457,,262.6785714,81.60714286 +16230,270.5333333,1454,458,,259.6428571,81.78571429 +16231,270.55,1436,458,,256.4285714,81.78571429 +16232,270.5666667,1418,458,,253.2142857,81.78571429 +16233,270.5833333,1399,459,,249.8214286,81.96428571 +16234,270.6,1381,459,,246.6071429,81.96428571 +16235,270.6166667,1363,459,,243.3928571,81.96428571 +16236,270.6333333,1345,459,,240.1785714,81.96428571 +16237,270.65,1328,459,,237.1428571,81.96428571 +16238,270.6666667,1310,458,,233.9285714,81.78571429 +16239,270.6833333,1293,458,,230.8928571,81.78571429 +16240,270.7,1277,457,,228.0357143,81.60714286 +16241,270.7166667,1261,457,,225.1785714,81.60714286 +16242,270.7333333,1246,456,,222.5,81.42857143 +16243,270.75,1232,455,,220,81.25 +16244,270.7666667,1219,455,,217.6785714,81.25 +16245,270.7833333,1206,454,,215.3571429,81.07142857 +16246,270.8,1195,453,,213.3928571,80.89285714 +16247,270.8166667,1185,453,,211.6071429,80.89285714 +16248,270.8333333,1175,452,,209.8214286,80.71428571 +16249,270.85,1167,452,,208.3928571,80.71428571 +16250,270.8666667,1160,451,,207.1428571,80.53571429 +16251,270.8833333,1153,451,,205.8928571,80.53571429 +16252,270.9,1149,450,,205.1785714,80.35714286 +16253,270.9166667,1145,450,,204.4642857,80.35714286 +16254,270.9333333,1143,450,,204.1071429,80.35714286 +16255,270.95,1143,450,,204.1071429,80.35714286 +16256,270.9666667,1143,450,,204.1071429,80.35714286 +16257,270.9833333,1144,450,,204.2857143,80.35714286 +16258,271,1147,451,,204.8214286,80.53571429 +16259,271.0166667,1151,451,,205.5357143,80.53571429 +16260,271.0333333,1157,451,,206.6071429,80.53571429 +16261,271.05,1163,452,,207.6785714,80.71428571 +16262,271.0666667,1171,453,,209.1071429,80.89285714 +16263,271.0833333,1180,453,,210.7142857,80.89285714 +16264,271.1,1190,454,,212.5,81.07142857 +16265,271.1166667,1201,454,,214.4642857,81.07142857 +16266,271.1333333,1213,455,,216.6071429,81.25 +16267,271.15,1226,456,,218.9285714,81.42857143 +16268,271.1666667,1239,456,,221.25,81.42857143 +16269,271.1833333,1254,457,,223.9285714,81.60714286 +16270,271.2,1269,458,,226.6071429,81.78571429 +16271,271.2166667,1285,458,,229.4642857,81.78571429 +16272,271.2333333,1301,459,,232.3214286,81.96428571 +16273,271.25,1319,460,,235.5357143,82.14285714 +16274,271.2666667,1336,460,,238.5714286,82.14285714 +16275,271.2833333,1354,460,,241.7857143,82.14285714 +16276,271.3,1371,460,,244.8214286,82.14285714 +16277,271.3166667,1390,460,,248.2142857,82.14285714 +16278,271.3333333,1408,460,,251.4285714,82.14285714 +16279,271.35,1426,460,,254.6428571,82.14285714 +16280,271.3666667,1444,459,,257.8571429,81.96428571 +16281,271.3833333,1462,459,,261.0714286,81.96428571 +16282,271.4,1479,458,,264.1071429,81.78571429 +16283,271.4166667,1496,458,,267.1428571,81.78571429 +16284,271.4333333,1512,457,,270,81.60714286 +16285,271.45,1529,456,,273.0357143,81.42857143 +16286,271.4666667,1544,456,,275.7142857,81.42857143 +16287,271.4833333,1559,455,,278.3928571,81.25 +16288,271.5,1572,454,,280.7142857,81.07142857 +16289,271.5166667,1585,453,,283.0357143,80.89285714 +16290,271.5333333,1598,452,,285.3571429,80.71428571 +16291,271.55,1609,452,,287.3214286,80.71428571 +16292,271.5666667,1619,451,,289.1071429,80.53571429 +16293,271.5833333,1628,450,,290.7142857,80.35714286 +16294,271.6,1636,449,,292.1428571,80.17857143 +16295,271.6166667,1643,449,,293.3928571,80.17857143 +16296,271.6333333,1649,448,,294.4642857,80 +16297,271.65,1653,448,,295.1785714,80 +16298,271.6666667,1656,447,,295.7142857,79.82142857 +16299,271.6833333,1658,447,,296.0714286,79.82142857 +16300,271.7,1658,447,,296.0714286,79.82142857 +16301,271.7166667,1658,447,,296.0714286,79.82142857 +16302,271.7333333,1656,447,,295.7142857,79.82142857 +16303,271.75,1653,448,,295.1785714,80 +16304,271.7666667,1649,448,,294.4642857,80 +16305,271.7833333,1643,448,,293.3928571,80 +16306,271.8,1637,449,,292.3214286,80.17857143 +16307,271.8166667,1629,449,,290.8928571,80.17857143 +16308,271.8333333,1620,450,,289.2857143,80.35714286 +16309,271.85,1610,451,,287.5,80.53571429 +16310,271.8666667,1598,451,,285.3571429,80.53571429 +16311,271.8833333,1586,452,,283.2142857,80.71428571 +16312,271.9,1573,453,,280.8928571,80.89285714 +16313,271.9166667,1559,454,,278.3928571,81.07142857 +16314,271.9333333,1544,455,,275.7142857,81.25 +16315,271.95,1529,455,,273.0357143,81.25 +16316,271.9666667,1513,456,,270.1785714,81.42857143 +16317,271.9833333,1496,456,,267.1428571,81.42857143 +16318,272,1479,457,,264.1071429,81.60714286 +16319,272.0166667,1462,457,,261.0714286,81.60714286 +16320,272.0333333,1444,458,,257.8571429,81.78571429 +16321,272.05,1426,458,,254.6428571,81.78571429 +16322,272.0666667,1408,458,,251.4285714,81.78571429 +16323,272.0833333,1390,458,,248.2142857,81.78571429 +16324,272.1,1372,458,,245,81.78571429 +16325,272.1166667,1354,458,,241.7857143,81.78571429 +16326,272.1333333,1336,458,,238.5714286,81.78571429 +16327,272.15,1319,458,,235.5357143,81.78571429 +16328,272.1666667,1302,458,,232.5,81.78571429 +16329,272.1833333,1285,457,,229.4642857,81.60714286 +16330,272.2,1269,456,,226.6071429,81.42857143 +16331,272.2166667,1254,456,,223.9285714,81.42857143 +16332,272.2333333,1239,455,,221.25,81.25 +16333,272.25,1226,455,,218.9285714,81.25 +16334,272.2666667,1213,454,,216.6071429,81.07142857 +16335,272.2833333,1201,453,,214.4642857,80.89285714 +16336,272.3,1190,453,,212.5,80.89285714 +16337,272.3166667,1180,452,,210.7142857,80.71428571 +16338,272.3333333,1171,451,,209.1071429,80.53571429 +16339,272.35,1163,451,,207.6785714,80.53571429 +16340,272.3666667,1157,451,,206.6071429,80.53571429 +16341,272.3833333,1152,450,,205.7142857,80.35714286 +16342,272.4,1147,450,,204.8214286,80.35714286 +16343,272.4166667,1145,450,,204.4642857,80.35714286 +16344,272.4333333,1143,450,,204.1071429,80.35714286 +16345,272.45,1143,450,,204.1071429,80.35714286 +16346,272.4666667,1143,450,,204.1071429,80.35714286 +16347,272.4833333,1146,450,,204.6428571,80.35714286 +16348,272.5,1149,450,,205.1785714,80.35714286 +16349,272.5166667,1154,451,,206.0714286,80.53571429 +16350,272.5333333,1160,451,,207.1428571,80.53571429 +16351,272.55,1167,452,,208.3928571,80.71428571 +16352,272.5666667,1175,453,,209.8214286,80.89285714 +16353,272.5833333,1185,453,,211.6071429,80.89285714 +16354,272.6,1195,454,,213.3928571,81.07142857 +16355,272.6166667,1207,455,,215.5357143,81.25 +16356,272.6333333,1219,455,,217.6785714,81.25 +16357,272.65,1232,456,,220,81.42857143 +16358,272.6666667,1247,457,,222.6785714,81.60714286 +16359,272.6833333,1262,457,,225.3571429,81.60714286 +16360,272.7,1277,458,,228.0357143,81.78571429 +16361,272.7166667,1293,459,,230.8928571,81.96428571 +16362,272.7333333,1310,459,,233.9285714,81.96428571 +16363,272.75,1327,459,,236.9642857,81.96428571 +16364,272.7666667,1345,460,,240.1785714,82.14285714 +16365,272.7833333,1362,460,,243.2142857,82.14285714 +16366,272.8,1380,460,,246.4285714,82.14285714 +16367,272.8166667,1398,460,,249.6428571,82.14285714 +16368,272.8333333,1416,460,,252.8571429,82.14285714 +16369,272.85,1434,460,,256.0714286,82.14285714 +16370,272.8666667,1452,459,,259.2857143,81.96428571 +16371,272.8833333,1469,458,,262.3214286,81.78571429 +16372,272.9,1486,458,,265.3571429,81.78571429 +16373,272.9166667,1503,458,,268.3928571,81.78571429 +16374,272.9333333,1519,457,,271.25,81.60714286 +16375,272.95,1535,456,,274.1071429,81.42857143 +16376,272.9666667,1550,455,,276.7857143,81.25 +16377,272.9833333,1564,455,,279.2857143,81.25 +16378,273,1578,454,,281.7857143,81.07142857 +16379,273.0166667,1591,453,,284.1071429,80.89285714 +16380,273.0333333,1602,452,,286.0714286,80.71428571 +16381,273.05,1613,451,,288.0357143,80.53571429 +16382,273.0666667,1623,450,,289.8214286,80.35714286 +16383,273.0833333,1631,450,,291.25,80.35714286 +16384,273.1,1639,449,,292.6785714,80.17857143 +16385,273.1166667,1644,449,,293.5714286,80.17857143 +16386,273.1333333,1650,448,,294.6428571,80 +16387,273.15,1653,448,,295.1785714,80 +16388,273.1666667,1656,448,,295.7142857,80 +16389,273.1833333,1656,448,,295.7142857,80 +16390,273.2,1656,448,,295.7142857,80 +16391,273.2166667,1656,448,,295.7142857,80 +16392,273.2333333,1653,448,,295.1785714,80 +16393,273.25,1649,448,,294.4642857,80 +16394,273.2666667,1644,449,,293.5714286,80.17857143 +16395,273.2833333,1638,449,,292.5,80.17857143 +16396,273.3,1631,449,,291.25,80.17857143 +16397,273.3166667,1623,450,,289.8214286,80.35714286 +16398,273.3333333,1613,451,,288.0357143,80.53571429 +16399,273.35,1602,452,,286.0714286,80.71428571 +16400,273.3666667,1591,452,,284.1071429,80.71428571 +16401,273.3833333,1578,453,,281.7857143,80.89285714 +16402,273.4,1564,454,,279.2857143,81.07142857 +16403,273.4166667,1550,455,,276.7857143,81.25 +16404,273.4333333,1535,455,,274.1071429,81.25 +16405,273.45,1519,456,,271.25,81.42857143 +16406,273.4666667,1503,457,,268.3928571,81.60714286 +16407,273.4833333,1486,457,,265.3571429,81.60714286 +16408,273.5,1469,458,,262.3214286,81.78571429 +16409,273.5166667,1451,458,,259.1071429,81.78571429 +16410,273.5333333,1433,458,,255.8928571,81.78571429 +16411,273.55,1415,459,,252.6785714,81.96428571 +16412,273.5666667,1397,459,,249.4642857,81.96428571 +16413,273.5833333,1379,459,,246.25,81.96428571 +16414,273.6,1361,459,,243.0357143,81.96428571 +16415,273.6166667,1343,459,,239.8214286,81.96428571 +16416,273.6333333,1326,459,,236.7857143,81.96428571 +16417,273.65,1308,458,,233.5714286,81.78571429 +16418,273.6666667,1292,458,,230.7142857,81.78571429 +16419,273.6833333,1276,457,,227.8571429,81.60714286 +16420,273.7,1260,457,,225,81.60714286 +16421,273.7166667,1245,456,,222.3214286,81.42857143 +16422,273.7333333,1232,456,,220,81.42857143 +16423,273.75,1218,455,,217.5,81.25 +16424,273.7666667,1206,454,,215.3571429,81.07142857 +16425,273.7833333,1194,453,,213.2142857,80.89285714 +16426,273.8,1184,452,,211.4285714,80.71428571 +16427,273.8166667,1175,452,,209.8214286,80.71428571 +16428,273.8333333,1167,452,,208.3928571,80.71428571 +16429,273.85,1160,451,,207.1428571,80.53571429 +16430,273.8666667,1154,451,,206.0714286,80.53571429 +16431,273.8833333,1149,451,,205.1785714,80.53571429 +16432,273.9,1146,450,,204.6428571,80.35714286 +16433,273.9166667,1143,450,,204.1071429,80.35714286 +16434,273.9333333,1143,450,,204.1071429,80.35714286 +16435,273.95,1143,450,,204.1071429,80.35714286 +16436,273.9666667,1145,450,,204.4642857,80.35714286 +16437,273.9833333,1148,451,,205,80.53571429 +16438,274,1152,451,,205.7142857,80.53571429 +16439,274.0166667,1157,452,,206.6071429,80.71428571 +16440,274.0333333,1164,452,,207.8571429,80.71428571 +16441,274.05,1171,452,,209.1071429,80.71428571 +16442,274.0666667,1180,453,,210.7142857,80.89285714 +16443,274.0833333,1190,454,,212.5,81.07142857 +16444,274.1,1201,455,,214.4642857,81.25 +16445,274.1166667,1213,455,,216.6071429,81.25 +16446,274.1333333,1226,456,,218.9285714,81.42857143 +16447,274.15,1239,457,,221.25,81.60714286 +16448,274.1666667,1254,457,,223.9285714,81.60714286 +16449,274.1833333,1269,458,,226.6071429,81.78571429 +16450,274.2,1285,459,,229.4642857,81.96428571 +16451,274.2166667,1301,459,,232.3214286,81.96428571 +16452,274.2333333,1318,459,,235.3571429,81.96428571 +16453,274.25,1335,460,,238.3928571,82.14285714 +16454,274.2666667,1353,460,,241.6071429,82.14285714 +16455,274.2833333,1371,460,,244.8214286,82.14285714 +16456,274.3,1389,460,,248.0357143,82.14285714 +16457,274.3166667,1406,460,,251.0714286,82.14285714 +16458,274.3333333,1424,460,,254.2857143,82.14285714 +16459,274.35,1443,459,,257.6785714,81.96428571 +16460,274.3666667,1460,459,,260.7142857,81.96428571 +16461,274.3833333,1477,458,,263.75,81.78571429 +16462,274.4,1494,458,,266.7857143,81.78571429 +16463,274.4166667,1511,457,,269.8214286,81.60714286 +16464,274.4333333,1527,457,,272.6785714,81.60714286 +16465,274.45,1542,456,,275.3571429,81.42857143 +16466,274.4666667,1557,455,,278.0357143,81.25 +16467,274.4833333,1570,454,,280.3571429,81.07142857 +16468,274.5,1583,453,,282.6785714,80.89285714 +16469,274.5166667,1595,453,,284.8214286,80.89285714 +16470,274.5333333,1606,452,,286.7857143,80.71428571 +16471,274.55,1616,451,,288.5714286,80.53571429 +16472,274.5666667,1625,450,,290.1785714,80.35714286 +16473,274.5833333,1633,450,,291.6071429,80.35714286 +16474,274.6,1640,449,,292.8571429,80.17857143 +16475,274.6166667,1646,449,,293.9285714,80.17857143 +16476,274.6333333,1650,448,,294.6428571,80 +16477,274.65,1654,448,,295.3571429,80 +16478,274.6666667,1655,448,,295.5357143,80 +16479,274.6833333,1655,448,,295.5357143,80 +16480,274.7,1655,448,,295.5357143,80 +16481,274.7166667,1654,448,,295.3571429,80 +16482,274.7333333,1650,448,,294.6428571,80 +16483,274.75,1646,448,,293.9285714,80 +16484,274.7666667,1641,449,,293.0357143,80.17857143 +16485,274.7833333,1634,449,,291.7857143,80.17857143 +16486,274.8,1626,450,,290.3571429,80.35714286 +16487,274.8166667,1617,450,,288.75,80.35714286 +16488,274.8333333,1607,451,,286.9642857,80.53571429 +16489,274.85,1596,451,,285,80.53571429 +16490,274.8666667,1584,452,,282.8571429,80.71428571 +16491,274.8833333,1571,453,,280.5357143,80.89285714 +16492,274.9,1557,454,,278.0357143,81.07142857 +16493,274.9166667,1542,454,,275.3571429,81.07142857 +16494,274.9333333,1527,455,,272.6785714,81.25 +16495,274.95,1511,456,,269.8214286,81.42857143 +16496,274.9666667,1495,456,,266.9642857,81.42857143 +16497,274.9833333,1478,457,,263.9285714,81.60714286 +16498,275,1461,457,,260.8928571,81.60714286 +16499,275.0166667,1443,458,,257.6785714,81.78571429 +16500,275.0333333,1425,458,,254.4642857,81.78571429 +16501,275.05,1407,458,,251.25,81.78571429 +16502,275.0666667,1389,458,,248.0357143,81.78571429 +16503,275.0833333,1371,458,,244.8214286,81.78571429 +16504,275.1,1353,458,,241.6071429,81.78571429 +16505,275.1166667,1336,458,,238.5714286,81.78571429 +16506,275.1333333,1318,458,,235.3571429,81.78571429 +16507,275.15,1302,457,,232.5,81.60714286 +16508,275.1666667,1285,457,,229.4642857,81.60714286 +16509,275.1833333,1269,456,,226.6071429,81.42857143 +16510,275.2,1254,456,,223.9285714,81.42857143 +16511,275.2166667,1240,455,,221.4285714,81.25 +16512,275.2333333,1226,455,,218.9285714,81.25 +16513,275.25,1213,454,,216.6071429,81.07142857 +16514,275.2666667,1201,453,,214.4642857,80.89285714 +16515,275.2833333,1190,453,,212.5,80.89285714 +16516,275.3,1181,452,,210.8928571,80.71428571 +16517,275.3166667,1172,451,,209.2857143,80.53571429 +16518,275.3333333,1164,451,,207.8571429,80.53571429 +16519,275.35,1158,451,,206.7857143,80.53571429 +16520,275.3666667,1153,450,,205.8928571,80.35714286 +16521,275.3833333,1148,450,,205,80.35714286 +16522,275.4,1145,450,,204.4642857,80.35714286 +16523,275.4166667,1145,450,,204.4642857,80.35714286 +16524,275.4333333,1145,450,,204.4642857,80.35714286 +16525,275.45,1145,450,,204.4642857,80.35714286 +16526,275.4666667,1147,450,,204.8214286,80.35714286 +16527,275.4833333,1150,451,,205.3571429,80.53571429 +16528,275.5,1155,451,,206.25,80.53571429 +16529,275.5166667,1161,451,,207.3214286,80.53571429 +16530,275.5333333,1168,452,,208.5714286,80.71428571 +16531,275.55,1177,452,,210.1785714,80.71428571 +16532,275.5666667,1186,453,,211.7857143,80.89285714 +16533,275.5833333,1196,454,,213.5714286,81.07142857 +16534,275.6,1207,454,,215.5357143,81.07142857 +16535,275.6166667,1220,455,,217.8571429,81.25 +16536,275.6333333,1233,456,,220.1785714,81.42857143 +16537,275.65,1247,456,,222.6785714,81.42857143 +16538,275.6666667,1262,457,,225.3571429,81.60714286 +16539,275.6833333,1277,458,,228.0357143,81.78571429 +16540,275.7,1294,458,,231.0714286,81.78571429 +16541,275.7166667,1310,459,,233.9285714,81.96428571 +16542,275.7333333,1327,459,,236.9642857,81.96428571 +16543,275.75,1344,459,,240,81.96428571 +16544,275.7666667,1362,459,,243.2142857,81.96428571 +16545,275.7833333,1379,459,,246.25,81.96428571 +16546,275.8,1397,459,,249.4642857,81.96428571 +16547,275.8166667,1415,459,,252.6785714,81.96428571 +16548,275.8333333,1433,459,,255.8928571,81.96428571 +16549,275.85,1451,459,,259.1071429,81.96428571 +16550,275.8666667,1468,458,,262.1428571,81.78571429 +16551,275.8833333,1485,458,,265.1785714,81.78571429 +16552,275.9,1502,457,,268.2142857,81.60714286 +16553,275.9166667,1518,456,,271.0714286,81.42857143 +16554,275.9333333,1533,456,,273.75,81.42857143 +16555,275.95,1549,455,,276.6071429,81.25 +16556,275.9666667,1563,454,,279.1071429,81.07142857 +16557,275.9833333,1576,453,,281.4285714,80.89285714 +16558,276,1588,453,,283.5714286,80.89285714 +16559,276.0166667,1600,452,,285.7142857,80.71428571 +16560,276.0333333,1611,451,,287.6785714,80.53571429 +16561,276.05,1620,450,,289.2857143,80.35714286 +16562,276.0666667,1629,450,,290.8928571,80.35714286 +16563,276.0833333,1636,449,,292.1428571,80.17857143 +16564,276.1,1642,448,,293.2142857,80 +16565,276.1166667,1647,448,,294.1071429,80 +16566,276.1333333,1651,448,,294.8214286,80 +16567,276.15,1654,448,,295.3571429,80 +16568,276.1666667,1654,447,,295.3571429,79.82142857 +16569,276.1833333,1654,447,,295.3571429,79.82142857 +16570,276.2,1654,447,,295.3571429,79.82142857 +16571,276.2166667,1651,448,,294.8214286,80 +16572,276.2333333,1648,448,,294.2857143,80 +16573,276.25,1643,448,,293.3928571,80 +16574,276.2666667,1637,449,,292.3214286,80.17857143 +16575,276.2833333,1629,449,,290.8928571,80.17857143 +16576,276.3,1621,450,,289.4642857,80.35714286 +16577,276.3166667,1611,450,,287.6785714,80.35714286 +16578,276.3333333,1601,451,,285.8928571,80.53571429 +16579,276.35,1589,452,,283.75,80.71428571 +16580,276.3666667,1577,452,,281.6071429,80.71428571 +16581,276.3833333,1564,453,,279.2857143,80.89285714 +16582,276.4,1550,454,,276.7857143,81.07142857 +16583,276.4166667,1535,455,,274.1071429,81.25 +16584,276.4333333,1519,455,,271.25,81.25 +16585,276.45,1503,456,,268.3928571,81.42857143 +16586,276.4666667,1486,456,,265.3571429,81.42857143 +16587,276.4833333,1469,457,,262.3214286,81.60714286 +16588,276.5,1452,457,,259.2857143,81.60714286 +16589,276.5166667,1434,458,,256.0714286,81.78571429 +16590,276.5333333,1416,458,,252.8571429,81.78571429 +16591,276.55,1399,458,,249.8214286,81.78571429 +16592,276.5666667,1381,458,,246.6071429,81.78571429 +16593,276.5833333,1363,458,,243.3928571,81.78571429 +16594,276.6,1345,458,,240.1785714,81.78571429 +16595,276.6166667,1328,458,,237.1428571,81.78571429 +16596,276.6333333,1311,457,,234.1071429,81.60714286 +16597,276.65,1295,457,,231.25,81.60714286 +16598,276.6666667,1278,456,,228.2142857,81.42857143 +16599,276.6833333,1263,456,,225.5357143,81.42857143 +16600,276.7,1248,455,,222.8571429,81.25 +16601,276.7166667,1234,455,,220.3571429,81.25 +16602,276.7333333,1221,454,,218.0357143,81.07142857 +16603,276.75,1209,453,,215.8928571,80.89285714 +16604,276.7666667,1197,453,,213.75,80.89285714 +16605,276.7833333,1187,452,,211.9642857,80.71428571 +16606,276.8,1178,452,,210.3571429,80.71428571 +16607,276.8166667,1170,451,,208.9285714,80.53571429 +16608,276.8333333,1163,451,,207.6785714,80.53571429 +16609,276.85,1157,450,,206.6071429,80.35714286 +16610,276.8666667,1152,450,,205.7142857,80.35714286 +16611,276.8833333,1149,450,,205.1785714,80.35714286 +16612,276.9,1147,450,,204.8214286,80.35714286 +16613,276.9166667,1147,450,,204.8214286,80.35714286 +16614,276.9333333,1147,450,,204.8214286,80.35714286 +16615,276.95,1148,450,,205,80.35714286 +16616,276.9666667,1151,450,,205.5357143,80.35714286 +16617,276.9833333,1155,451,,206.25,80.53571429 +16618,277,1160,451,,207.1428571,80.53571429 +16619,277.0166667,1167,452,,208.3928571,80.71428571 +16620,277.0333333,1174,452,,209.6428571,80.71428571 +16621,277.05,1183,453,,211.25,80.89285714 +16622,277.0666667,1193,454,,213.0357143,81.07142857 +16623,277.0833333,1203,454,,214.8214286,81.07142857 +16624,277.1,1215,455,,216.9642857,81.25 +16625,277.1166667,1228,455,,219.2857143,81.25 +16626,277.1333333,1242,456,,221.7857143,81.42857143 +16627,277.15,1256,457,,224.2857143,81.60714286 +16628,277.1666667,1271,457,,226.9642857,81.60714286 +16629,277.1833333,1287,458,,229.8214286,81.78571429 +16630,277.2,1303,459,,232.6785714,81.96428571 +16631,277.2166667,1320,459,,235.7142857,81.96428571 +16632,277.2333333,1337,459,,238.75,81.96428571 +16633,277.25,1355,459,,241.9642857,81.96428571 +16634,277.2666667,1372,459,,245,81.96428571 +16635,277.2833333,1390,459,,248.2142857,81.96428571 +16636,277.3,1408,459,,251.4285714,81.96428571 +16637,277.3166667,1425,459,,254.4642857,81.96428571 +16638,277.3333333,1443,459,,257.6785714,81.96428571 +16639,277.35,1461,458,,260.8928571,81.78571429 +16640,277.3666667,1478,458,,263.9285714,81.78571429 +16641,277.3833333,1495,457,,266.9642857,81.60714286 +16642,277.4,1511,457,,269.8214286,81.60714286 +16643,277.4166667,1527,456,,272.6785714,81.42857143 +16644,277.4333333,1542,455,,275.3571429,81.25 +16645,277.45,1556,455,,277.8571429,81.25 +16646,277.4666667,1570,454,,280.3571429,81.07142857 +16647,277.4833333,1583,453,,282.6785714,80.89285714 +16648,277.5,1595,452,,284.8214286,80.71428571 +16649,277.5166667,1606,451,,286.7857143,80.53571429 +16650,277.5333333,1616,451,,288.5714286,80.53571429 +16651,277.55,1625,450,,290.1785714,80.35714286 +16652,277.5666667,1633,449,,291.6071429,80.17857143 +16653,277.5833333,1640,449,,292.8571429,80.17857143 +16654,277.6,1645,448,,293.75,80 +16655,277.6166667,1650,448,,294.6428571,80 +16656,277.6333333,1653,448,,295.1785714,80 +16657,277.65,1655,447,,295.5357143,79.82142857 +16658,277.6666667,1655,447,,295.5357143,79.82142857 +16659,277.6833333,1655,447,,295.5357143,79.82142857 +16660,277.7,1653,447,,295.1785714,79.82142857 +16661,277.7166667,1650,448,,294.6428571,80 +16662,277.7333333,1645,448,,293.75,80 +16663,277.75,1640,448,,292.8571429,80 +16664,277.7666667,1633,449,,291.6071429,80.17857143 +16665,277.7833333,1625,449,,290.1785714,80.17857143 +16666,277.8,1617,450,,288.75,80.35714286 +16667,277.8166667,1607,451,,286.9642857,80.53571429 +16668,277.8333333,1596,451,,285,80.53571429 +16669,277.85,1583,452,,282.6785714,80.71428571 +16670,277.8666667,1571,453,,280.5357143,80.89285714 +16671,277.8833333,1557,454,,278.0357143,81.07142857 +16672,277.9,1543,454,,275.5357143,81.07142857 +16673,277.9166667,1528,455,,272.8571429,81.25 +16674,277.9333333,1512,456,,270,81.42857143 +16675,277.95,1496,456,,267.1428571,81.42857143 +16676,277.9666667,1479,457,,264.1071429,81.60714286 +16677,277.9833333,1461,457,,260.8928571,81.60714286 +16678,278,1444,458,,257.8571429,81.78571429 +16679,278.0166667,1426,458,,254.6428571,81.78571429 +16680,278.0333333,1408,458,,251.4285714,81.78571429 +16681,278.05,1390,459,,248.2142857,81.96428571 +16682,278.0666667,1372,459,,245,81.96428571 +16683,278.0833333,1354,459,,241.7857143,81.96428571 +16684,278.1,1337,459,,238.75,81.96428571 +16685,278.1166667,1320,458,,235.7142857,81.78571429 +16686,278.1333333,1303,458,,232.6785714,81.78571429 +16687,278.15,1287,457,,229.8214286,81.60714286 +16688,278.1666667,1271,457,,226.9642857,81.60714286 +16689,278.1833333,1256,456,,224.2857143,81.42857143 +16690,278.2,1242,456,,221.7857143,81.42857143 +16691,278.2166667,1228,455,,219.2857143,81.25 +16692,278.2333333,1215,454,,216.9642857,81.07142857 +16693,278.25,1203,454,,214.8214286,81.07142857 +16694,278.2666667,1192,453,,212.8571429,80.89285714 +16695,278.2833333,1183,453,,211.25,80.89285714 +16696,278.3,1174,452,,209.6428571,80.71428571 +16697,278.3166667,1166,451,,208.2142857,80.53571429 +16698,278.3333333,1160,451,,207.1428571,80.53571429 +16699,278.35,1155,451,,206.25,80.53571429 +16700,278.3666667,1151,451,,205.5357143,80.53571429 +16701,278.3833333,1148,451,,205,80.53571429 +16702,278.4,1147,451,,204.8214286,80.53571429 +16703,278.4166667,1147,451,,204.8214286,80.53571429 +16704,278.4333333,1147,451,,204.8214286,80.53571429 +16705,278.45,1149,451,,205.1785714,80.53571429 +16706,278.4666667,1153,451,,205.8928571,80.53571429 +16707,278.4833333,1158,451,,206.7857143,80.53571429 +16708,278.5,1163,452,,207.6785714,80.71428571 +16709,278.5166667,1170,452,,208.9285714,80.71428571 +16710,278.5333333,1179,453,,210.5357143,80.89285714 +16711,278.55,1188,453,,212.1428571,80.89285714 +16712,278.5666667,1198,454,,213.9285714,81.07142857 +16713,278.5833333,1209,455,,215.8928571,81.25 +16714,278.6,1221,455,,218.0357143,81.25 +16715,278.6166667,1235,456,,220.5357143,81.42857143 +16716,278.6333333,1249,457,,223.0357143,81.60714286 +16717,278.65,1263,457,,225.5357143,81.60714286 +16718,278.6666667,1279,458,,228.3928571,81.78571429 +16719,278.6833333,1295,459,,231.25,81.96428571 +16720,278.7,1311,459,,234.1071429,81.96428571 +16721,278.7166667,1328,460,,237.1428571,82.14285714 +16722,278.7333333,1345,460,,240.1785714,82.14285714 +16723,278.75,1363,460,,243.3928571,82.14285714 +16724,278.7666667,1380,460,,246.4285714,82.14285714 +16725,278.7833333,1398,460,,249.6428571,82.14285714 +16726,278.8,1416,460,,252.8571429,82.14285714 +16727,278.8166667,1434,459,,256.0714286,81.96428571 +16728,278.8333333,1451,459,,259.1071429,81.96428571 +16729,278.85,1469,459,,262.3214286,81.96428571 +16730,278.8666667,1486,458,,265.3571429,81.78571429 +16731,278.8833333,1502,458,,268.2142857,81.78571429 +16732,278.9,1518,457,,271.0714286,81.60714286 +16733,278.9166667,1534,456,,273.9285714,81.42857143 +16734,278.9333333,1549,455,,276.6071429,81.25 +16735,278.95,1563,455,,279.1071429,81.25 +16736,278.9666667,1576,454,,281.4285714,81.07142857 +16737,278.9833333,1588,453,,283.5714286,80.89285714 +16738,279,1600,452,,285.7142857,80.71428571 +16739,279.0166667,1610,451,,287.5,80.53571429 +16740,279.0333333,1620,450,,289.2857143,80.35714286 +16741,279.05,1628,450,,290.7142857,80.35714286 +16742,279.0666667,1635,449,,291.9642857,80.17857143 +16743,279.0833333,1642,449,,293.2142857,80.17857143 +16744,279.1,1647,449,,294.1071429,80.17857143 +16745,279.1166667,1650,448,,294.6428571,80 +16746,279.1333333,1653,448,,295.1785714,80 +16747,279.15,1653,448,,295.1785714,80 +16748,279.1666667,1653,448,,295.1785714,80 +16749,279.1833333,1653,448,,295.1785714,80 +16750,279.2,1651,448,,294.8214286,80 +16751,279.2166667,1647,448,,294.1071429,80 +16752,279.2333333,1642,448,,293.2142857,80 +16753,279.25,1636,449,,292.1428571,80.17857143 +16754,279.2666667,1628,449,,290.7142857,80.17857143 +16755,279.2833333,1620,450,,289.2857143,80.35714286 +16756,279.3,1611,450,,287.6785714,80.35714286 +16757,279.3166667,1600,451,,285.7142857,80.53571429 +16758,279.3333333,1589,452,,283.75,80.71428571 +16759,279.35,1577,453,,281.6071429,80.89285714 +16760,279.3666667,1563,454,,279.1071429,81.07142857 +16761,279.3833333,1549,454,,276.6071429,81.07142857 +16762,279.4,1534,455,,273.9285714,81.25 +16763,279.4166667,1519,455,,271.25,81.25 +16764,279.4333333,1503,456,,268.3928571,81.42857143 +16765,279.45,1486,457,,265.3571429,81.60714286 +16766,279.4666667,1469,457,,262.3214286,81.60714286 +16767,279.4833333,1452,458,,259.2857143,81.78571429 +16768,279.5,1434,458,,256.0714286,81.78571429 +16769,279.5166667,1416,458,,252.8571429,81.78571429 +16770,279.5333333,1399,458,,249.8214286,81.78571429 +16771,279.55,1381,458,,246.6071429,81.78571429 +16772,279.5666667,1363,459,,243.3928571,81.96428571 +16773,279.5833333,1345,459,,240.1785714,81.96428571 +16774,279.6,1328,459,,237.1428571,81.96428571 +16775,279.6166667,1311,458,,234.1071429,81.78571429 +16776,279.6333333,1294,458,,231.0714286,81.78571429 +16777,279.65,1279,457,,228.3928571,81.60714286 +16778,279.6666667,1263,457,,225.5357143,81.60714286 +16779,279.6833333,1249,456,,223.0357143,81.42857143 +16780,279.7,1234,456,,220.3571429,81.42857143 +16781,279.7166667,1221,455,,218.0357143,81.25 +16782,279.7333333,1209,454,,215.8928571,81.07142857 +16783,279.75,1198,454,,213.9285714,81.07142857 +16784,279.7666667,1188,453,,212.1428571,80.89285714 +16785,279.7833333,1179,453,,210.5357143,80.89285714 +16786,279.8,1170,452,,208.9285714,80.71428571 +16787,279.8166667,1163,452,,207.6785714,80.71428571 +16788,279.8333333,1157,451,,206.6071429,80.53571429 +16789,279.85,1153,451,,205.8928571,80.53571429 +16790,279.8666667,1149,451,,205.1785714,80.53571429 +16791,279.8833333,1147,451,,204.8214286,80.53571429 +16792,279.9,1147,451,,204.8214286,80.53571429 +16793,279.9166667,1147,451,,204.8214286,80.53571429 +16794,279.9333333,1148,451,,205,80.53571429 +16795,279.95,1151,451,,205.5357143,80.53571429 +16796,279.9666667,1155,451,,206.25,80.53571429 +16797,279.9833333,1161,452,,207.3214286,80.71428571 +16798,280,1167,452,,208.3928571,80.71428571 +16799,280.0166667,1175,453,,209.8214286,80.89285714 +16800,280.0333333,1183,454,,211.25,81.07142857 +16801,280.05,1193,454,,213.0357143,81.07142857 +16802,280.0666667,1204,455,,215,81.25 +16803,280.0833333,1215,456,,216.9642857,81.42857143 +16804,280.1,1228,456,,219.2857143,81.42857143 +16805,280.1166667,1242,457,,221.7857143,81.60714286 +16806,280.1333333,1256,457,,224.2857143,81.60714286 +16807,280.15,1271,458,,226.9642857,81.78571429 +16808,280.1666667,1286,459,,229.6428571,81.96428571 +16809,280.1833333,1303,459,,232.6785714,81.96428571 +16810,280.2,1319,460,,235.5357143,82.14285714 +16811,280.2166667,1336,460,,238.5714286,82.14285714 +16812,280.2333333,1353,460,,241.6071429,82.14285714 +16813,280.25,1371,460,,244.8214286,82.14285714 +16814,280.2666667,1389,460,,248.0357143,82.14285714 +16815,280.2833333,1407,460,,251.25,82.14285714 +16816,280.3,1425,460,,254.4642857,82.14285714 +16817,280.3166667,1442,460,,257.5,82.14285714 +16818,280.3333333,1459,459,,260.5357143,81.96428571 +16819,280.35,1477,459,,263.75,81.96428571 +16820,280.3666667,1493,458,,266.6071429,81.78571429 +16821,280.3833333,1510,458,,269.6428571,81.78571429 +16822,280.4,1525,457,,272.3214286,81.60714286 +16823,280.4166667,1540,456,,275,81.42857143 +16824,280.4333333,1555,455,,277.6785714,81.25 +16825,280.45,1569,455,,280.1785714,81.25 +16826,280.4666667,1582,454,,282.5,81.07142857 +16827,280.4833333,1594,453,,284.6428571,80.89285714 +16828,280.5,1604,452,,286.4285714,80.71428571 +16829,280.5166667,1614,452,,288.2142857,80.71428571 +16830,280.5333333,1623,451,,289.8214286,80.53571429 +16831,280.55,1631,450,,291.25,80.35714286 +16832,280.5666667,1638,450,,292.5,80.35714286 +16833,280.5833333,1643,449,,293.3928571,80.17857143 +16834,280.6,1648,449,,294.2857143,80.17857143 +16835,280.6166667,1651,449,,294.8214286,80.17857143 +16836,280.6333333,1653,449,,295.1785714,80.17857143 +16837,280.65,1653,448,,295.1785714,80 +16838,280.6666667,1653,448,,295.1785714,80 +16839,280.6833333,1651,448,,294.8214286,80 +16840,280.7,1648,449,,294.2857143,80.17857143 +16841,280.7166667,1643,449,,293.3928571,80.17857143 +16842,280.7333333,1638,449,,292.5,80.17857143 +16843,280.75,1631,450,,291.25,80.35714286 +16844,280.7666667,1623,450,,289.8214286,80.35714286 +16845,280.7833333,1615,451,,288.3928571,80.53571429 +16846,280.8,1604,452,,286.4285714,80.71428571 +16847,280.8166667,1593,452,,284.4642857,80.71428571 +16848,280.8333333,1582,453,,282.5,80.89285714 +16849,280.85,1569,454,,280.1785714,81.07142857 +16850,280.8666667,1555,454,,277.6785714,81.07142857 +16851,280.8833333,1541,455,,275.1785714,81.25 +16852,280.9,1525,456,,272.3214286,81.42857143 +16853,280.9166667,1510,456,,269.6428571,81.42857143 +16854,280.9333333,1493,457,,266.6071429,81.60714286 +16855,280.95,1477,458,,263.75,81.78571429 +16856,280.9666667,1460,458,,260.7142857,81.78571429 +16857,280.9833333,1442,458,,257.5,81.78571429 +16858,281,1425,459,,254.4642857,81.96428571 +16859,281.0166667,1407,459,,251.25,81.96428571 +16860,281.0333333,1389,459,,248.0357143,81.96428571 +16861,281.05,1372,460,,245,82.14285714 +16862,281.0666667,1354,460,,241.7857143,82.14285714 +16863,281.0833333,1336,460,,238.5714286,82.14285714 +16864,281.1,1320,459,,235.7142857,81.96428571 +16865,281.1166667,1303,459,,232.6785714,81.96428571 +16866,281.1333333,1286,458,,229.6428571,81.78571429 +16867,281.15,1271,458,,226.9642857,81.78571429 +16868,281.1666667,1256,457,,224.2857143,81.60714286 +16869,281.1833333,1242,457,,221.7857143,81.60714286 +16870,281.2,1229,456,,219.4642857,81.42857143 +16871,281.2166667,1216,455,,217.1428571,81.25 +16872,281.2333333,1204,455,,215,81.25 +16873,281.25,1193,454,,213.0357143,81.07142857 +16874,281.2666667,1184,453,,211.4285714,80.89285714 +16875,281.2833333,1175,453,,209.8214286,80.89285714 +16876,281.3,1167,452,,208.3928571,80.71428571 +16877,281.3166667,1161,452,,207.3214286,80.71428571 +16878,281.3333333,1156,452,,206.4285714,80.71428571 +16879,281.35,1152,452,,205.7142857,80.71428571 +16880,281.3666667,1149,452,,205.1785714,80.71428571 +16881,281.3833333,1149,451,,205.1785714,80.53571429 +16882,281.4,1149,451,,205.1785714,80.53571429 +16883,281.4166667,1149,451,,205.1785714,80.53571429 +16884,281.4333333,1151,452,,205.5357143,80.71428571 +16885,281.45,1154,452,,206.0714286,80.71428571 +16886,281.4666667,1159,452,,206.9642857,80.71428571 +16887,281.4833333,1165,453,,208.0357143,80.89285714 +16888,281.5,1172,453,,209.2857143,80.89285714 +16889,281.5166667,1180,454,,210.7142857,81.07142857 +16890,281.5333333,1189,454,,212.3214286,81.07142857 +16891,281.55,1200,455,,214.2857143,81.25 +16892,281.5666667,1211,456,,216.25,81.42857143 +16893,281.5833333,1223,457,,218.3928571,81.60714286 +16894,281.6,1236,457,,220.7142857,81.60714286 +16895,281.6166667,1250,458,,223.2142857,81.78571429 +16896,281.6333333,1265,458,,225.8928571,81.78571429 +16897,281.65,1280,459,,228.5714286,81.96428571 +16898,281.6666667,1296,460,,231.4285714,82.14285714 +16899,281.6833333,1312,461,,234.2857143,82.32142857 +16900,281.7,1329,461,,237.3214286,82.32142857 +16901,281.7166667,1346,461,,240.3571429,82.32142857 +16902,281.7333333,1363,461,,243.3928571,82.32142857 +16903,281.75,1381,461,,246.6071429,82.32142857 +16904,281.7666667,1399,461,,249.8214286,82.32142857 +16905,281.7833333,1416,460,,252.8571429,82.14285714 +16906,281.8,1434,460,,256.0714286,82.14285714 +16907,281.8166667,1451,460,,259.1071429,82.14285714 +16908,281.8333333,1469,459,,262.3214286,81.96428571 +16909,281.85,1485,459,,265.1785714,81.96428571 +16910,281.8666667,1502,458,,268.2142857,81.78571429 +16911,281.8833333,1518,458,,271.0714286,81.78571429 +16912,281.9,1533,457,,273.75,81.60714286 +16913,281.9166667,1548,456,,276.4285714,81.42857143 +16914,281.9333333,1562,455,,278.9285714,81.25 +16915,281.95,1575,455,,281.25,81.25 +16916,281.9666667,1588,454,,283.5714286,81.07142857 +16917,281.9833333,1599,453,,285.5357143,80.89285714 +16918,282,1609,452,,287.3214286,80.71428571 +16919,282.0166667,1619,452,,289.1071429,80.71428571 +16920,282.0333333,1627,451,,290.5357143,80.53571429 +16921,282.05,1634,450,,291.7857143,80.35714286 +16922,282.0666667,1640,450,,292.8571429,80.35714286 +16923,282.0833333,1645,449,,293.75,80.17857143 +16924,282.1,1649,449,,294.4642857,80.17857143 +16925,282.1166667,1651,449,,294.8214286,80.17857143 +16926,282.1333333,1652,449,,295,80.17857143 +16927,282.15,1652,449,,295,80.17857143 +16928,282.1666667,1652,449,,295,80.17857143 +16929,282.1833333,1649,449,,294.4642857,80.17857143 +16930,282.2,1645,449,,293.75,80.17857143 +16931,282.2166667,1640,449,,292.8571429,80.17857143 +16932,282.2333333,1634,450,,291.7857143,80.35714286 +16933,282.25,1627,450,,290.5357143,80.35714286 +16934,282.2666667,1619,451,,289.1071429,80.53571429 +16935,282.2833333,1609,452,,287.3214286,80.71428571 +16936,282.3,1599,452,,285.5357143,80.71428571 +16937,282.3166667,1588,453,,283.5714286,80.89285714 +16938,282.3333333,1575,454,,281.25,81.07142857 +16939,282.35,1562,454,,278.9285714,81.07142857 +16940,282.3666667,1548,455,,276.4285714,81.25 +16941,282.3833333,1533,456,,273.75,81.42857143 +16942,282.4,1518,457,,271.0714286,81.60714286 +16943,282.4166667,1502,457,,268.2142857,81.60714286 +16944,282.4333333,1485,458,,265.1785714,81.78571429 +16945,282.45,1468,458,,262.1428571,81.78571429 +16946,282.4666667,1451,459,,259.1071429,81.96428571 +16947,282.4833333,1434,459,,256.0714286,81.96428571 +16948,282.5,1416,459,,252.8571429,81.96428571 +16949,282.5166667,1398,459,,249.6428571,81.96428571 +16950,282.5333333,1381,460,,246.6071429,82.14285714 +16951,282.55,1363,460,,243.3928571,82.14285714 +16952,282.5666667,1346,460,,240.3571429,82.14285714 +16953,282.5833333,1329,460,,237.3214286,82.14285714 +16954,282.6,1312,459,,234.2857143,81.96428571 +16955,282.6166667,1296,459,,231.4285714,81.96428571 +16956,282.6333333,1280,458,,228.5714286,81.78571429 +16957,282.65,1265,458,,225.8928571,81.78571429 +16958,282.6666667,1250,457,,223.2142857,81.60714286 +16959,282.6833333,1236,456,,220.7142857,81.42857143 +16960,282.7,1223,456,,218.3928571,81.42857143 +16961,282.7166667,1211,455,,216.25,81.25 +16962,282.7333333,1200,454,,214.2857143,81.07142857 +16963,282.75,1190,454,,212.5,81.07142857 +16964,282.7666667,1181,453,,210.8928571,80.89285714 +16965,282.7833333,1173,453,,209.4642857,80.89285714 +16966,282.8,1166,453,,208.2142857,80.89285714 +16967,282.8166667,1160,453,,207.1428571,80.89285714 +16968,282.8333333,1155,452,,206.25,80.71428571 +16969,282.85,1152,452,,205.7142857,80.71428571 +16970,282.8666667,1150,452,,205.3571429,80.71428571 +16971,282.8833333,1150,452,,205.3571429,80.71428571 +16972,282.9,1150,452,,205.3571429,80.71428571 +16973,282.9166667,1151,452,,205.5357143,80.71428571 +16974,282.9333333,1154,452,,206.0714286,80.71428571 +16975,282.95,1158,453,,206.7857143,80.89285714 +16976,282.9666667,1163,453,,207.6785714,80.89285714 +16977,282.9833333,1170,453,,208.9285714,80.89285714 +16978,283,1178,454,,210.3571429,81.07142857 +16979,283.0166667,1187,455,,211.9642857,81.25 +16980,283.0333333,1196,455,,213.5714286,81.25 +16981,283.05,1207,456,,215.5357143,81.42857143 +16982,283.0666667,1219,456,,217.6785714,81.42857143 +16983,283.0833333,1231,457,,219.8214286,81.60714286 +16984,283.1,1245,458,,222.3214286,81.78571429 +16985,283.1166667,1259,459,,224.8214286,81.96428571 +16986,283.1333333,1274,459,,227.5,81.96428571 +16987,283.15,1289,460,,230.1785714,82.14285714 +16988,283.1666667,1306,460,,233.2142857,82.14285714 +16989,283.1833333,1322,461,,236.0714286,82.32142857 +16990,283.2,1339,461,,239.1071429,82.32142857 +16991,283.2166667,1356,461,,242.1428571,82.32142857 +16992,283.2333333,1374,461,,245.3571429,82.32142857 +16993,283.25,1391,461,,248.3928571,82.32142857 +16994,283.2666667,1409,461,,251.6071429,82.32142857 +16995,283.2833333,1427,461,,254.8214286,82.32142857 +16996,283.3,1444,461,,257.8571429,82.32142857 +16997,283.3166667,1461,460,,260.8928571,82.14285714 +16998,283.3333333,1478,459,,263.9285714,81.96428571 +16999,283.35,1495,459,,266.9642857,81.96428571 +17000,283.3666667,1511,458,,269.8214286,81.78571429 +17001,283.3833333,1527,458,,272.6785714,81.78571429 +17002,283.4,1542,457,,275.3571429,81.60714286 +17003,283.4166667,1556,456,,277.8571429,81.42857143 +17004,283.4333333,1570,456,,280.3571429,81.42857143 +17005,283.45,1582,455,,282.5,81.25 +17006,283.4666667,1594,454,,284.6428571,81.07142857 +17007,283.4833333,1605,453,,286.6071429,80.89285714 +17008,283.5,1615,453,,288.3928571,80.89285714 +17009,283.5166667,1623,452,,289.8214286,80.71428571 +17010,283.5333333,1631,451,,291.25,80.53571429 +17011,283.55,1638,451,,292.5,80.53571429 +17012,283.5666667,1643,450,,293.3928571,80.35714286 +17013,283.5833333,1648,449,,294.2857143,80.17857143 +17014,283.6,1651,449,,294.8214286,80.17857143 +17015,283.6166667,1652,449,,295,80.17857143 +17016,283.6333333,1652,449,,295,80.17857143 +17017,283.65,1652,449,,295,80.17857143 +17018,283.6666667,1651,449,,294.8214286,80.17857143 +17019,283.6833333,1648,449,,294.2857143,80.17857143 +17020,283.7,1643,449,,293.3928571,80.17857143 +17021,283.7166667,1638,450,,292.5,80.35714286 +17022,283.7333333,1631,450,,291.25,80.35714286 +17023,283.75,1623,451,,289.8214286,80.53571429 +17024,283.7666667,1614,451,,288.2142857,80.53571429 +17025,283.7833333,1604,452,,286.4285714,80.71428571 +17026,283.8,1594,452,,284.6428571,80.71428571 +17027,283.8166667,1582,453,,282.5,80.89285714 +17028,283.8333333,1569,454,,280.1785714,81.07142857 +17029,283.85,1556,455,,277.8571429,81.25 +17030,283.8666667,1541,455,,275.1785714,81.25 +17031,283.8833333,1526,456,,272.5,81.42857143 +17032,283.9,1511,456,,269.8214286,81.42857143 +17033,283.9166667,1494,457,,266.7857143,81.60714286 +17034,283.9333333,1478,458,,263.9285714,81.78571429 +17035,283.95,1461,458,,260.8928571,81.78571429 +17036,283.9666667,1443,458,,257.6785714,81.78571429 +17037,283.9833333,1426,459,,254.6428571,81.96428571 +17038,284,1408,459,,251.4285714,81.96428571 +17039,284.0166667,1391,459,,248.3928571,81.96428571 +17040,284.0333333,1373,459,,245.1785714,81.96428571 +17041,284.05,1355,459,,241.9642857,81.96428571 +17042,284.0666667,1338,459,,238.9285714,81.96428571 +17043,284.0833333,1321,459,,235.8928571,81.96428571 +17044,284.1,1305,458,,233.0357143,81.78571429 +17045,284.1166667,1289,458,,230.1785714,81.78571429 +17046,284.1333333,1273,457,,227.3214286,81.60714286 +17047,284.15,1259,457,,224.8214286,81.60714286 +17048,284.1666667,1244,456,,222.1428571,81.42857143 +17049,284.1833333,1231,455,,219.8214286,81.25 +17050,284.2,1218,455,,217.5,81.25 +17051,284.2166667,1207,454,,215.5357143,81.07142857 +17052,284.2333333,1196,453,,213.5714286,80.89285714 +17053,284.25,1186,453,,211.7857143,80.89285714 +17054,284.2666667,1178,453,,210.3571429,80.89285714 +17055,284.2833333,1170,452,,208.9285714,80.71428571 +17056,284.3,1164,452,,207.8571429,80.71428571 +17057,284.3166667,1159,452,,206.9642857,80.71428571 +17058,284.3333333,1155,451,,206.25,80.53571429 +17059,284.35,1152,451,,205.7142857,80.53571429 +17060,284.3666667,1151,451,,205.5357143,80.53571429 +17061,284.3833333,1151,451,,205.5357143,80.53571429 +17062,284.4,1151,451,,205.5357143,80.53571429 +17063,284.4166667,1154,452,,206.0714286,80.71428571 +17064,284.4333333,1157,452,,206.6071429,80.71428571 +17065,284.45,1162,452,,207.5,80.71428571 +17066,284.4666667,1168,453,,208.5714286,80.89285714 +17067,284.4833333,1175,453,,209.8214286,80.89285714 +17068,284.5,1183,454,,211.25,81.07142857 +17069,284.5166667,1192,455,,212.8571429,81.25 +17070,284.5333333,1202,455,,214.6428571,81.25 +17071,284.55,1213,456,,216.6071429,81.42857143 +17072,284.5666667,1225,456,,218.75,81.42857143 +17073,284.5833333,1238,457,,221.0714286,81.60714286 +17074,284.6,1252,458,,223.5714286,81.78571429 +17075,284.6166667,1267,458,,226.25,81.78571429 +17076,284.6333333,1282,459,,228.9285714,81.96428571 +17077,284.65,1298,459,,231.7857143,81.96428571 +17078,284.6666667,1314,460,,234.6428571,82.14285714 +17079,284.6833333,1331,460,,237.6785714,82.14285714 +17080,284.7,1348,461,,240.7142857,82.32142857 +17081,284.7166667,1365,461,,243.75,82.32142857 +17082,284.7333333,1383,461,,246.9642857,82.32142857 +17083,284.75,1400,461,,250,82.32142857 +17084,284.7666667,1417,460,,253.0357143,82.14285714 +17085,284.7833333,1435,460,,256.25,82.14285714 +17086,284.8,1452,459,,259.2857143,81.96428571 +17087,284.8166667,1469,459,,262.3214286,81.96428571 +17088,284.8333333,1486,458,,265.3571429,81.78571429 +17089,284.85,1503,458,,268.3928571,81.78571429 +17090,284.8666667,1518,457,,271.0714286,81.60714286 +17091,284.8833333,1534,456,,273.9285714,81.42857143 +17092,284.9,1548,456,,276.4285714,81.42857143 +17093,284.9166667,1562,455,,278.9285714,81.25 +17094,284.9333333,1575,454,,281.25,81.07142857 +17095,284.95,1587,453,,283.3928571,80.89285714 +17096,284.9666667,1598,453,,285.3571429,80.89285714 +17097,284.9833333,1609,452,,287.3214286,80.71428571 +17098,285,1618,451,,288.9285714,80.53571429 +17099,285.0166667,1626,450,,290.3571429,80.35714286 +17100,285.0333333,1633,450,,291.6071429,80.35714286 +17101,285.05,1640,449,,292.8571429,80.17857143 +17102,285.0666667,1644,449,,293.5714286,80.17857143 +17103,285.0833333,1648,448,,294.2857143,80 +17104,285.1,1650,448,,294.6428571,80 +17105,285.1166667,1650,448,,294.6428571,80 +17106,285.1333333,1650,448,,294.6428571,80 +17107,285.15,1650,448,,294.6428571,80 +17108,285.1666667,1648,448,,294.2857143,80 +17109,285.1833333,1644,448,,293.5714286,80 +17110,285.2,1639,448,,292.6785714,80 +17111,285.2166667,1633,449,,291.6071429,80.17857143 +17112,285.2333333,1626,450,,290.3571429,80.35714286 +17113,285.25,1618,450,,288.9285714,80.35714286 +17114,285.2666667,1608,451,,287.1428571,80.53571429 +17115,285.2833333,1598,451,,285.3571429,80.53571429 +17116,285.3,1587,452,,283.3928571,80.71428571 +17117,285.3166667,1574,453,,281.0714286,80.89285714 +17118,285.3333333,1562,453,,278.9285714,80.89285714 +17119,285.35,1547,454,,276.25,81.07142857 +17120,285.3666667,1533,455,,273.75,81.25 +17121,285.3833333,1518,456,,271.0714286,81.42857143 +17122,285.4,1502,456,,268.2142857,81.42857143 +17123,285.4166667,1485,457,,265.1785714,81.60714286 +17124,285.4333333,1468,457,,262.1428571,81.60714286 +17125,285.45,1451,457,,259.1071429,81.60714286 +17126,285.4666667,1434,458,,256.0714286,81.78571429 +17127,285.4833333,1416,458,,252.8571429,81.78571429 +17128,285.5,1399,459,,249.8214286,81.96428571 +17129,285.5166667,1381,459,,246.6071429,81.96428571 +17130,285.5333333,1363,459,,243.3928571,81.96428571 +17131,285.55,1346,459,,240.3571429,81.96428571 +17132,285.5666667,1329,458,,237.3214286,81.78571429 +17133,285.5833333,1312,458,,234.2857143,81.78571429 +17134,285.6,1296,458,,231.4285714,81.78571429 +17135,285.6166667,1280,457,,228.5714286,81.60714286 +17136,285.6333333,1265,457,,225.8928571,81.60714286 +17137,285.65,1251,456,,223.3928571,81.42857143 +17138,285.6666667,1237,455,,220.8928571,81.25 +17139,285.6833333,1224,455,,218.5714286,81.25 +17140,285.7,1212,454,,216.4285714,81.07142857 +17141,285.7166667,1201,454,,214.4642857,81.07142857 +17142,285.7333333,1191,453,,212.6785714,80.89285714 +17143,285.75,1182,453,,211.0714286,80.89285714 +17144,285.7666667,1174,452,,209.6428571,80.71428571 +17145,285.7833333,1167,452,,208.3928571,80.71428571 +17146,285.8,1162,451,,207.5,80.53571429 +17147,285.8166667,1157,451,,206.6071429,80.53571429 +17148,285.8333333,1154,451,,206.0714286,80.53571429 +17149,285.85,1152,451,,205.7142857,80.53571429 +17150,285.8666667,1152,451,,205.7142857,80.53571429 +17151,285.8833333,1152,451,,205.7142857,80.53571429 +17152,285.9,1153,451,,205.8928571,80.53571429 +17153,285.9166667,1156,451,,206.4285714,80.53571429 +17154,285.9333333,1160,452,,207.1428571,80.71428571 +17155,285.95,1165,452,,208.0357143,80.71428571 +17156,285.9666667,1171,453,,209.1071429,80.89285714 +17157,285.9833333,1179,453,,210.5357143,80.89285714 +17158,286,1188,454,,212.1428571,81.07142857 +17159,286.0166667,1197,454,,213.75,81.07142857 +17160,286.0333333,1208,455,,215.7142857,81.25 +17161,286.05,1220,455,,217.8571429,81.25 +17162,286.0666667,1232,456,,220,81.42857143 +17163,286.0833333,1245,457,,222.3214286,81.60714286 +17164,286.1,1259,457,,224.8214286,81.60714286 +17165,286.1166667,1274,458,,227.5,81.78571429 +17166,286.1333333,1290,459,,230.3571429,81.96428571 +17167,286.15,1306,459,,233.2142857,81.96428571 +17168,286.1666667,1322,459,,236.0714286,81.96428571 +17169,286.1833333,1339,460,,239.1071429,82.14285714 +17170,286.2,1355,460,,241.9642857,82.14285714 +17171,286.2166667,1373,460,,245.1785714,82.14285714 +17172,286.2333333,1391,460,,248.3928571,82.14285714 +17173,286.25,1408,460,,251.4285714,82.14285714 +17174,286.2666667,1425,459,,254.4642857,81.96428571 +17175,286.2833333,1443,459,,257.6785714,81.96428571 +17176,286.3,1460,459,,260.7142857,81.96428571 +17177,286.3166667,1477,458,,263.75,81.78571429 +17178,286.3333333,1493,458,,266.6071429,81.78571429 +17179,286.35,1509,457,,269.4642857,81.60714286 +17180,286.3666667,1525,456,,272.3214286,81.42857143 +17181,286.3833333,1540,456,,275,81.42857143 +17182,286.4,1554,455,,277.5,81.25 +17183,286.4166667,1567,454,,279.8214286,81.07142857 +17184,286.4333333,1580,453,,282.1428571,80.89285714 +17185,286.45,1592,453,,284.2857143,80.89285714 +17186,286.4666667,1602,452,,286.0714286,80.71428571 +17187,286.4833333,1612,451,,287.8571429,80.53571429 +17188,286.5,1621,451,,289.4642857,80.53571429 +17189,286.5166667,1629,450,,290.8928571,80.35714286 +17190,286.5333333,1635,449,,291.9642857,80.17857143 +17191,286.55,1641,449,,293.0357143,80.17857143 +17192,286.5666667,1645,448,,293.75,80 +17193,286.5833333,1648,448,,294.2857143,80 +17194,286.6,1650,448,,294.6428571,80 +17195,286.6166667,1650,448,,294.6428571,80 +17196,286.6333333,1650,448,,294.6428571,80 +17197,286.65,1648,448,,294.2857143,80 +17198,286.6666667,1645,448,,293.75,80 +17199,286.6833333,1640,448,,292.8571429,80 +17200,286.7,1635,448,,291.9642857,80 +17201,286.7166667,1629,449,,290.8928571,80.17857143 +17202,286.7333333,1621,449,,289.4642857,80.17857143 +17203,286.75,1612,450,,287.8571429,80.35714286 +17204,286.7666667,1602,451,,286.0714286,80.53571429 +17205,286.7833333,1591,451,,284.1071429,80.53571429 +17206,286.8,1579,452,,281.9642857,80.71428571 +17207,286.8166667,1567,453,,279.8214286,80.89285714 +17208,286.8333333,1553,453,,277.3214286,80.89285714 +17209,286.85,1539,454,,274.8214286,81.07142857 +17210,286.8666667,1524,455,,272.1428571,81.25 +17211,286.8833333,1509,455,,269.4642857,81.25 +17212,286.9,1493,456,,266.6071429,81.42857143 +17213,286.9166667,1476,456,,263.5714286,81.42857143 +17214,286.9333333,1459,457,,260.5357143,81.60714286 +17215,286.95,1442,457,,257.5,81.60714286 +17216,286.9666667,1424,458,,254.2857143,81.78571429 +17217,286.9833333,1407,458,,251.25,81.78571429 +17218,287,1389,458,,248.0357143,81.78571429 +17219,287.0166667,1372,458,,245,81.78571429 +17220,287.0333333,1355,458,,241.9642857,81.78571429 +17221,287.05,1338,458,,238.9285714,81.78571429 +17222,287.0666667,1321,458,,235.8928571,81.78571429 +17223,287.0833333,1305,458,,233.0357143,81.78571429 +17224,287.1,1289,457,,230.1785714,81.60714286 +17225,287.1166667,1273,457,,227.3214286,81.60714286 +17226,287.1333333,1258,456,,224.6428571,81.42857143 +17227,287.15,1245,456,,222.3214286,81.42857143 +17228,287.1666667,1231,455,,219.8214286,81.25 +17229,287.1833333,1219,454,,217.6785714,81.07142857 +17230,287.2,1207,454,,215.5357143,81.07142857 +17231,287.2166667,1197,453,,213.75,80.89285714 +17232,287.2333333,1187,452,,211.9642857,80.71428571 +17233,287.25,1179,452,,210.5357143,80.71428571 +17234,287.2666667,1171,452,,209.1071429,80.71428571 +17235,287.2833333,1165,451,,208.0357143,80.53571429 +17236,287.3,1160,451,,207.1428571,80.53571429 +17237,287.3166667,1156,451,,206.4285714,80.53571429 +17238,287.3333333,1153,451,,205.8928571,80.53571429 +17239,287.35,1153,451,,205.8928571,80.53571429 +17240,287.3666667,1153,451,,205.8928571,80.53571429 +17241,287.3833333,1153,451,,205.8928571,80.53571429 +17242,287.4,1155,451,,206.25,80.53571429 +17243,287.4166667,1159,451,,206.9642857,80.53571429 +17244,287.4333333,1163,452,,207.6785714,80.71428571 +17245,287.45,1169,452,,208.75,80.71428571 +17246,287.4666667,1176,453,,210,80.89285714 +17247,287.4833333,1184,453,,211.4285714,80.89285714 +17248,287.5,1193,454,,213.0357143,81.07142857 +17249,287.5166667,1203,455,,214.8214286,81.25 +17250,287.5333333,1214,455,,216.7857143,81.25 +17251,287.55,1226,456,,218.9285714,81.42857143 +17252,287.5666667,1239,457,,221.25,81.60714286 +17253,287.5833333,1253,457,,223.75,81.60714286 +17254,287.6,1267,458,,226.25,81.78571429 +17255,287.6166667,1282,459,,228.9285714,81.96428571 +17256,287.6333333,1297,459,,231.6071429,81.96428571 +17257,287.65,1314,459,,234.6428571,81.96428571 +17258,287.6666667,1330,460,,237.5,82.14285714 +17259,287.6833333,1347,460,,240.5357143,82.14285714 +17260,287.7,1364,460,,243.5714286,82.14285714 +17261,287.7166667,1381,460,,246.6071429,82.14285714 +17262,287.7333333,1399,460,,249.8214286,82.14285714 +17263,287.75,1416,460,,252.8571429,82.14285714 +17264,287.7666667,1434,459,,256.0714286,81.96428571 +17265,287.7833333,1451,459,,259.1071429,81.96428571 +17266,287.8,1468,459,,262.1428571,81.96428571 +17267,287.8166667,1484,458,,265,81.78571429 +17268,287.8333333,1500,458,,267.8571429,81.78571429 +17269,287.85,1516,457,,270.7142857,81.60714286 +17270,287.8666667,1531,456,,273.3928571,81.42857143 +17271,287.8833333,1546,455,,276.0714286,81.25 +17272,287.9,1559,455,,278.3928571,81.25 +17273,287.9166667,1572,454,,280.7142857,81.07142857 +17274,287.9333333,1584,453,,282.8571429,80.89285714 +17275,287.95,1596,452,,285,80.71428571 +17276,287.9666667,1606,451,,286.7857143,80.53571429 +17277,287.9833333,1615,451,,288.3928571,80.53571429 +17278,288,1624,450,,290,80.35714286 +17279,288.0166667,1631,450,,291.25,80.35714286 +17280,288.0333333,1636,449,,292.1428571,80.17857143 +17281,288.05,1641,449,,293.0357143,80.17857143 +17282,288.0666667,1645,448,,293.75,80 +17283,288.0833333,1647,448,,294.1071429,80 +17284,288.1,1647,448,,294.1071429,80 +17285,288.1166667,1647,448,,294.1071429,80 +17286,288.1333333,1647,448,,294.1071429,80 +17287,288.15,1645,448,,293.75,80 +17288,288.1666667,1641,448,,293.0357143,80 +17289,288.1833333,1636,449,,292.1428571,80.17857143 +17290,288.2,1630,449,,291.0714286,80.17857143 +17291,288.2166667,1623,449,,289.8214286,80.17857143 +17292,288.2333333,1615,450,,288.3928571,80.35714286 +17293,288.25,1605,451,,286.6071429,80.53571429 +17294,288.2666667,1595,451,,284.8214286,80.53571429 +17295,288.2833333,1584,452,,282.8571429,80.71428571 +17296,288.3,1572,453,,280.7142857,80.89285714 +17297,288.3166667,1558,453,,278.2142857,80.89285714 +17298,288.3333333,1544,454,,275.7142857,81.07142857 +17299,288.35,1530,455,,273.2142857,81.25 +17300,288.3666667,1515,456,,270.5357143,81.42857143 +17301,288.3833333,1499,456,,267.6785714,81.42857143 +17302,288.4,1483,457,,264.8214286,81.60714286 +17303,288.4166667,1466,457,,261.7857143,81.60714286 +17304,288.4333333,1449,458,,258.75,81.78571429 +17305,288.45,1432,458,,255.7142857,81.78571429 +17306,288.4666667,1414,458,,252.5,81.78571429 +17307,288.4833333,1397,458,,249.4642857,81.78571429 +17308,288.5,1379,459,,246.25,81.96428571 +17309,288.5166667,1362,459,,243.2142857,81.96428571 +17310,288.5333333,1345,459,,240.1785714,81.96428571 +17311,288.55,1328,459,,237.1428571,81.96428571 +17312,288.5666667,1311,458,,234.1071429,81.78571429 +17313,288.5833333,1295,458,,231.25,81.78571429 +17314,288.6,1279,457,,228.3928571,81.60714286 +17315,288.6166667,1265,457,,225.8928571,81.60714286 +17316,288.6333333,1250,456,,223.2142857,81.42857143 +17317,288.65,1237,456,,220.8928571,81.42857143 +17318,288.6666667,1224,455,,218.5714286,81.25 +17319,288.6833333,1212,454,,216.4285714,81.07142857 +17320,288.7,1201,454,,214.4642857,81.07142857 +17321,288.7166667,1191,453,,212.6785714,80.89285714 +17322,288.7333333,1183,452,,211.25,80.71428571 +17323,288.75,1175,452,,209.8214286,80.71428571 +17324,288.7666667,1168,452,,208.5714286,80.71428571 +17325,288.7833333,1162,451,,207.5,80.53571429 +17326,288.8,1158,451,,206.7857143,80.53571429 +17327,288.8166667,1154,451,,206.0714286,80.53571429 +17328,288.8333333,1153,451,,205.8928571,80.53571429 +17329,288.85,1153,451,,205.8928571,80.53571429 +17330,288.8666667,1153,451,,205.8928571,80.53571429 +17331,288.8833333,1154,451,,206.0714286,80.53571429 +17332,288.9,1157,451,,206.6071429,80.53571429 +17333,288.9166667,1161,451,,207.3214286,80.53571429 +17334,288.9333333,1166,452,,208.2142857,80.71428571 +17335,288.95,1172,452,,209.2857143,80.71428571 +17336,288.9666667,1180,453,,210.7142857,80.89285714 +17337,288.9833333,1188,453,,212.1428571,80.89285714 +17338,289,1198,454,,213.9285714,81.07142857 +17339,289.0166667,1208,455,,215.7142857,81.25 +17340,289.0333333,1220,455,,217.8571429,81.25 +17341,289.05,1232,456,,220,81.42857143 +17342,289.0666667,1245,457,,222.3214286,81.60714286 +17343,289.0833333,1259,457,,224.8214286,81.60714286 +17344,289.1,1274,458,,227.5,81.78571429 +17345,289.1166667,1289,459,,230.1785714,81.96428571 +17346,289.1333333,1305,459,,233.0357143,81.96428571 +17347,289.15,1321,459,,235.8928571,81.96428571 +17348,289.1666667,1338,460,,238.9285714,82.14285714 +17349,289.1833333,1355,460,,241.9642857,82.14285714 +17350,289.2,1372,460,,245,82.14285714 +17351,289.2166667,1390,460,,248.2142857,82.14285714 +17352,289.2333333,1407,460,,251.25,82.14285714 +17353,289.25,1424,460,,254.2857143,82.14285714 +17354,289.2666667,1441,459,,257.3214286,81.96428571 +17355,289.2833333,1458,459,,260.3571429,81.96428571 +17356,289.3,1475,458,,263.3928571,81.78571429 +17357,289.3166667,1492,458,,266.4285714,81.78571429 +17358,289.3333333,1507,457,,269.1071429,81.60714286 +17359,289.35,1523,457,,271.9642857,81.60714286 +17360,289.3666667,1538,456,,274.6428571,81.42857143 +17361,289.3833333,1551,455,,276.9642857,81.25 +17362,289.4,1565,454,,279.4642857,81.07142857 +17363,289.4166667,1577,454,,281.6071429,81.07142857 +17364,289.4333333,1589,453,,283.75,80.89285714 +17365,289.45,1600,452,,285.7142857,80.71428571 +17366,289.4666667,1609,451,,287.3214286,80.53571429 +17367,289.4833333,1618,451,,288.9285714,80.53571429 +17368,289.5,1626,450,,290.3571429,80.35714286 +17369,289.5166667,1632,449,,291.4285714,80.17857143 +17370,289.5333333,1638,449,,292.5,80.17857143 +17371,289.55,1642,449,,293.2142857,80.17857143 +17372,289.5666667,1645,448,,293.75,80 +17373,289.5833333,1647,448,,294.1071429,80 +17374,289.6,1647,448,,294.1071429,80 +17375,289.6166667,1647,448,,294.1071429,80 +17376,289.6333333,1645,448,,293.75,80 +17377,289.65,1642,448,,293.2142857,80 +17378,289.6666667,1638,448,,292.5,80 +17379,289.6833333,1632,449,,291.4285714,80.17857143 +17380,289.7,1626,449,,290.3571429,80.17857143 +17381,289.7166667,1618,450,,288.9285714,80.35714286 +17382,289.7333333,1609,450,,287.3214286,80.35714286 +17383,289.75,1600,451,,285.7142857,80.53571429 +17384,289.7666667,1589,451,,283.75,80.53571429 +17385,289.7833333,1577,452,,281.6071429,80.71428571 +17386,289.8,1565,453,,279.4642857,80.89285714 +17387,289.8166667,1551,454,,276.9642857,81.07142857 +17388,289.8333333,1537,454,,274.4642857,81.07142857 +17389,289.85,1522,455,,271.7857143,81.25 +17390,289.8666667,1507,456,,269.1071429,81.42857143 +17391,289.8833333,1491,456,,266.25,81.42857143 +17392,289.9,1474,456,,263.2142857,81.42857143 +17393,289.9166667,1458,457,,260.3571429,81.60714286 +17394,289.9333333,1441,458,,257.3214286,81.78571429 +17395,289.95,1424,458,,254.2857143,81.78571429 +17396,289.9666667,1406,458,,251.0714286,81.78571429 +17397,289.9833333,1389,458,,248.0357143,81.78571429 +17398,290,1371,458,,244.8214286,81.78571429 +17399,290.0166667,1354,458,,241.7857143,81.78571429 +17400,290.0333333,1338,458,,238.9285714,81.78571429 +17401,290.05,1321,458,,235.8928571,81.78571429 +17402,290.0666667,1305,458,,233.0357143,81.78571429 +17403,290.0833333,1289,457,,230.1785714,81.60714286 +17404,290.1,1273,456,,227.3214286,81.42857143 +17405,290.1166667,1259,456,,224.8214286,81.42857143 +17406,290.1333333,1245,455,,222.3214286,81.25 +17407,290.15,1231,455,,219.8214286,81.25 +17408,290.1666667,1219,454,,217.6785714,81.07142857 +17409,290.1833333,1208,454,,215.7142857,81.07142857 +17410,290.2,1197,453,,213.75,80.89285714 +17411,290.2166667,1188,452,,212.1428571,80.71428571 +17412,290.2333333,1179,452,,210.5357143,80.71428571 +17413,290.25,1172,452,,209.2857143,80.71428571 +17414,290.2666667,1166,451,,208.2142857,80.53571429 +17415,290.2833333,1161,451,,207.3214286,80.53571429 +17416,290.3,1157,451,,206.6071429,80.53571429 +17417,290.3166667,1154,451,,206.0714286,80.53571429 +17418,290.3333333,1153,451,,205.8928571,80.53571429 +17419,290.35,1153,451,,205.8928571,80.53571429 +17420,290.3666667,1153,451,,205.8928571,80.53571429 +17421,290.3833333,1156,451,,206.4285714,80.53571429 +17422,290.4,1159,452,,206.9642857,80.71428571 +17423,290.4166667,1163,452,,207.6785714,80.71428571 +17424,290.4333333,1169,452,,208.75,80.71428571 +17425,290.45,1176,453,,210,80.89285714 +17426,290.4666667,1184,453,,211.4285714,80.89285714 +17427,290.4833333,1193,454,,213.0357143,81.07142857 +17428,290.5,1203,455,,214.8214286,81.25 +17429,290.5166667,1214,455,,216.7857143,81.25 +17430,290.5333333,1226,456,,218.9285714,81.42857143 +17431,290.55,1239,457,,221.25,81.60714286 +17432,290.5666667,1253,457,,223.75,81.60714286 +17433,290.5833333,1267,458,,226.25,81.78571429 +17434,290.6,1282,459,,228.9285714,81.96428571 +17435,290.6166667,1297,459,,231.6071429,81.96428571 +17436,290.6333333,1314,460,,234.6428571,82.14285714 +17437,290.65,1330,460,,237.5,82.14285714 +17438,290.6666667,1346,460,,240.3571429,82.14285714 +17439,290.6833333,1364,460,,243.5714286,82.14285714 +17440,290.7,1381,460,,246.6071429,82.14285714 +17441,290.7166667,1398,460,,249.6428571,82.14285714 +17442,290.7333333,1416,460,,252.8571429,82.14285714 +17443,290.75,1433,459,,255.8928571,81.96428571 +17444,290.7666667,1450,459,,258.9285714,81.96428571 +17445,290.7833333,1467,459,,261.9642857,81.96428571 +17446,290.8,1484,458,,265,81.78571429 +17447,290.8166667,1499,457,,267.6785714,81.60714286 +17448,290.8333333,1515,457,,270.5357143,81.60714286 +17449,290.85,1530,456,,273.2142857,81.42857143 +17450,290.8666667,1545,455,,275.8928571,81.25 +17451,290.8833333,1558,455,,278.2142857,81.25 +17452,290.9,1571,454,,280.5357143,81.07142857 +17453,290.9166667,1583,453,,282.6785714,80.89285714 +17454,290.9333333,1594,452,,284.6428571,80.71428571 +17455,290.95,1605,451,,286.6071429,80.53571429 +17456,290.9666667,1614,451,,288.2142857,80.53571429 +17457,290.9833333,1622,450,,289.6428571,80.35714286 +17458,291,1629,450,,290.8928571,80.35714286 +17459,291.0166667,1635,449,,291.9642857,80.17857143 +17460,291.0333333,1640,449,,292.8571429,80.17857143 +17461,291.05,1644,448,,293.5714286,80 +17462,291.0666667,1646,448,,293.9285714,80 +17463,291.0833333,1646,448,,293.9285714,80 +17464,291.1,1646,448,,293.9285714,80 +17465,291.1166667,1646,448,,293.9285714,80 +17466,291.1333333,1643,448,,293.3928571,80 +17467,291.15,1640,448,,292.8571429,80 +17468,291.1666667,1635,449,,291.9642857,80.17857143 +17469,291.1833333,1629,449,,290.8928571,80.17857143 +17470,291.2,1622,450,,289.6428571,80.35714286 +17471,291.2166667,1614,450,,288.2142857,80.35714286 +17472,291.2333333,1604,451,,286.4285714,80.53571429 +17473,291.25,1594,452,,284.6428571,80.71428571 +17474,291.2666667,1583,452,,282.6785714,80.71428571 +17475,291.2833333,1571,453,,280.5357143,80.89285714 +17476,291.3,1558,453,,278.2142857,80.89285714 +17477,291.3166667,1544,454,,275.7142857,81.07142857 +17478,291.3333333,1529,455,,273.0357143,81.25 +17479,291.35,1514,456,,270.3571429,81.42857143 +17480,291.3666667,1498,456,,267.5,81.42857143 +17481,291.3833333,1482,457,,264.6428571,81.60714286 +17482,291.4,1466,457,,261.7857143,81.60714286 +17483,291.4166667,1449,457,,258.75,81.60714286 +17484,291.4333333,1432,458,,255.7142857,81.78571429 +17485,291.45,1414,458,,252.5,81.78571429 +17486,291.4666667,1397,458,,249.4642857,81.78571429 +17487,291.4833333,1380,458,,246.4285714,81.78571429 +17488,291.5,1362,458,,243.2142857,81.78571429 +17489,291.5166667,1345,458,,240.1785714,81.78571429 +17490,291.5333333,1329,458,,237.3214286,81.78571429 +17491,291.55,1312,458,,234.2857143,81.78571429 +17492,291.5666667,1296,458,,231.4285714,81.78571429 +17493,291.5833333,1281,457,,228.75,81.60714286 +17494,291.6,1266,456,,226.0714286,81.42857143 +17495,291.6166667,1252,456,,223.5714286,81.42857143 +17496,291.6333333,1238,455,,221.0714286,81.25 +17497,291.65,1225,455,,218.75,81.25 +17498,291.6666667,1213,454,,216.6071429,81.07142857 +17499,291.6833333,1202,453,,214.6428571,80.89285714 +17500,291.7,1192,453,,212.8571429,80.89285714 +17501,291.7166667,1184,452,,211.4285714,80.71428571 +17502,291.7333333,1176,452,,210,80.71428571 +17503,291.75,1170,452,,208.9285714,80.71428571 +17504,291.7666667,1164,451,,207.8571429,80.53571429 +17505,291.7833333,1159,451,,206.9642857,80.53571429 +17506,291.8,1156,451,,206.4285714,80.53571429 +17507,291.8166667,1154,451,,206.0714286,80.53571429 +17508,291.8333333,1154,451,,206.0714286,80.53571429 +17509,291.85,1154,451,,206.0714286,80.53571429 +17510,291.8666667,1155,451,,206.25,80.53571429 +17511,291.8833333,1158,451,,206.7857143,80.53571429 +17512,291.9,1162,452,,207.5,80.71428571 +17513,291.9166667,1167,452,,208.3928571,80.71428571 +17514,291.9333333,1173,453,,209.4642857,80.89285714 +17515,291.95,1181,453,,210.8928571,80.89285714 +17516,291.9666667,1190,454,,212.5,81.07142857 +17517,291.9833333,1199,454,,214.1071429,81.07142857 +17518,292,1210,455,,216.0714286,81.25 +17519,292.0166667,1221,456,,218.0357143,81.42857143 +17520,292.0333333,1234,456,,220.3571429,81.42857143 +17521,292.05,1247,457,,222.6785714,81.60714286 +17522,292.0666667,1261,457,,225.1785714,81.60714286 +17523,292.0833333,1275,458,,227.6785714,81.78571429 +17524,292.1,1290,459,,230.3571429,81.96428571 +17525,292.1166667,1306,459,,233.2142857,81.96428571 +17526,292.1333333,1322,459,,236.0714286,81.96428571 +17527,292.15,1339,460,,239.1071429,82.14285714 +17528,292.1666667,1356,460,,242.1428571,82.14285714 +17529,292.1833333,1373,460,,245.1785714,82.14285714 +17530,292.2,1390,460,,248.2142857,82.14285714 +17531,292.2166667,1407,460,,251.25,82.14285714 +17532,292.2333333,1425,459,,254.4642857,81.96428571 +17533,292.25,1442,459,,257.5,81.96428571 +17534,292.2666667,1459,459,,260.5357143,81.96428571 +17535,292.2833333,1475,458,,263.3928571,81.78571429 +17536,292.3,1492,458,,266.4285714,81.78571429 +17537,292.3166667,1508,457,,269.2857143,81.60714286 +17538,292.3333333,1523,456,,271.9642857,81.42857143 +17539,292.35,1537,456,,274.4642857,81.42857143 +17540,292.3666667,1551,455,,276.9642857,81.25 +17541,292.3833333,1565,454,,279.4642857,81.07142857 +17542,292.4,1577,453,,281.6071429,80.89285714 +17543,292.4166667,1589,452,,283.75,80.71428571 +17544,292.4333333,1600,452,,285.7142857,80.71428571 +17545,292.45,1609,451,,287.3214286,80.53571429 +17546,292.4666667,1618,450,,288.9285714,80.35714286 +17547,292.4833333,1625,450,,290.1785714,80.35714286 +17548,292.5,1632,449,,291.4285714,80.17857143 +17549,292.5166667,1637,449,,292.3214286,80.17857143 +17550,292.5333333,1642,448,,293.2142857,80 +17551,292.55,1645,448,,293.75,80 +17552,292.5666667,1646,448,,293.9285714,80 +17553,292.5833333,1646,448,,293.9285714,80 +17554,292.6,1646,448,,293.9285714,80 +17555,292.6166667,1644,448,,293.5714286,80 +17556,292.6333333,1641,448,,293.0357143,80 +17557,292.65,1637,448,,292.3214286,80 +17558,292.6666667,1632,449,,291.4285714,80.17857143 +17559,292.6833333,1625,449,,290.1785714,80.17857143 +17560,292.7,1618,450,,288.9285714,80.35714286 +17561,292.7166667,1609,450,,287.3214286,80.35714286 +17562,292.7333333,1599,451,,285.5357143,80.53571429 +17563,292.75,1589,451,,283.75,80.53571429 +17564,292.7666667,1577,452,,281.6071429,80.71428571 +17565,292.7833333,1564,453,,279.2857143,80.89285714 +17566,292.8,1551,454,,276.9642857,81.07142857 +17567,292.8166667,1537,454,,274.4642857,81.07142857 +17568,292.8333333,1522,455,,271.7857143,81.25 +17569,292.85,1507,455,,269.1071429,81.25 +17570,292.8666667,1491,456,,266.25,81.42857143 +17571,292.8833333,1474,457,,263.2142857,81.60714286 +17572,292.9,1458,457,,260.3571429,81.60714286 +17573,292.9166667,1440,457,,257.1428571,81.60714286 +17574,292.9333333,1424,458,,254.2857143,81.78571429 +17575,292.95,1406,458,,251.0714286,81.78571429 +17576,292.9666667,1389,458,,248.0357143,81.78571429 +17577,292.9833333,1372,458,,245,81.78571429 +17578,293,1354,458,,241.7857143,81.78571429 +17579,293.0166667,1338,458,,238.9285714,81.78571429 +17580,293.0333333,1321,458,,235.8928571,81.78571429 +17581,293.05,1305,457,,233.0357143,81.60714286 +17582,293.0666667,1289,457,,230.1785714,81.60714286 +17583,293.0833333,1274,456,,227.5,81.42857143 +17584,293.1,1260,456,,225,81.42857143 +17585,293.1166667,1246,455,,222.5,81.25 +17586,293.1333333,1233,455,,220.1785714,81.25 +17587,293.15,1220,454,,217.8571429,81.07142857 +17588,293.1666667,1209,454,,215.8928571,81.07142857 +17589,293.1833333,1199,453,,214.1071429,80.89285714 +17590,293.2,1189,453,,212.3214286,80.89285714 +17591,293.2166667,1181,452,,210.8928571,80.71428571 +17592,293.2333333,1174,452,,209.6428571,80.71428571 +17593,293.25,1167,451,,208.3928571,80.53571429 +17594,293.2666667,1163,451,,207.6785714,80.53571429 +17595,293.2833333,1159,451,,206.9642857,80.53571429 +17596,293.3,1156,451,,206.4285714,80.53571429 +17597,293.3166667,1156,451,,206.4285714,80.53571429 +17598,293.3333333,1156,451,,206.4285714,80.53571429 +17599,293.35,1156,451,,206.4285714,80.53571429 +17600,293.3666667,1158,451,,206.7857143,80.53571429 +17601,293.3833333,1161,451,,207.3214286,80.53571429 +17602,293.4,1166,452,,208.2142857,80.71428571 +17603,293.4166667,1172,452,,209.2857143,80.71428571 +17604,293.4333333,1179,453,,210.5357143,80.89285714 +17605,293.45,1187,453,,211.9642857,80.89285714 +17606,293.4666667,1196,454,,213.5714286,81.07142857 +17607,293.4833333,1206,454,,215.3571429,81.07142857 +17608,293.5,1217,455,,217.3214286,81.25 +17609,293.5166667,1229,456,,219.4642857,81.42857143 +17610,293.5333333,1242,456,,221.7857143,81.42857143 +17611,293.55,1255,457,,224.1071429,81.60714286 +17612,293.5666667,1270,457,,226.7857143,81.60714286 +17613,293.5833333,1284,458,,229.2857143,81.78571429 +17614,293.6,1300,459,,232.1428571,81.96428571 +17615,293.6166667,1316,459,,235,81.96428571 +17616,293.6333333,1332,459,,237.8571429,81.96428571 +17617,293.65,1349,459,,240.8928571,81.96428571 +17618,293.6666667,1365,460,,243.75,82.14285714 +17619,293.6833333,1382,460,,246.7857143,82.14285714 +17620,293.7,1400,460,,250,82.14285714 +17621,293.7166667,1417,459,,253.0357143,81.96428571 +17622,293.7333333,1434,459,,256.0714286,81.96428571 +17623,293.75,1451,459,,259.1071429,81.96428571 +17624,293.7666667,1468,458,,262.1428571,81.78571429 +17625,293.7833333,1484,458,,265,81.78571429 +17626,293.8,1500,457,,267.8571429,81.60714286 +17627,293.8166667,1516,457,,270.7142857,81.60714286 +17628,293.8333333,1531,456,,273.3928571,81.42857143 +17629,293.85,1545,455,,275.8928571,81.25 +17630,293.8666667,1559,454,,278.3928571,81.07142857 +17631,293.8833333,1572,454,,280.7142857,81.07142857 +17632,293.9,1583,453,,282.6785714,80.89285714 +17633,293.9166667,1595,452,,284.8214286,80.71428571 +17634,293.9333333,1604,451,,286.4285714,80.53571429 +17635,293.95,1614,451,,288.2142857,80.53571429 +17636,293.9666667,1622,450,,289.6428571,80.35714286 +17637,293.9833333,1629,449,,290.8928571,80.17857143 +17638,294,1635,449,,291.9642857,80.17857143 +17639,294.0166667,1639,448,,292.6785714,80 +17640,294.0333333,1643,448,,293.3928571,80 +17641,294.05,1645,448,,293.75,80 +17642,294.0666667,1645,448,,293.75,80 +17643,294.0833333,1645,447,,293.75,79.82142857 +17644,294.1,1645,447,,293.75,79.82142857 +17645,294.1166667,1643,448,,293.3928571,80 +17646,294.1333333,1639,448,,292.6785714,80 +17647,294.15,1634,448,,291.7857143,80 +17648,294.1666667,1628,449,,290.7142857,80.17857143 +17649,294.1833333,1621,449,,289.4642857,80.17857143 +17650,294.2,1613,450,,288.0357143,80.35714286 +17651,294.2166667,1603,450,,286.25,80.35714286 +17652,294.2333333,1593,451,,284.4642857,80.53571429 +17653,294.25,1582,452,,282.5,80.71428571 +17654,294.2666667,1570,452,,280.3571429,80.71428571 +17655,294.2833333,1557,453,,278.0357143,80.89285714 +17656,294.3,1543,453,,275.5357143,80.89285714 +17657,294.3166667,1529,454,,273.0357143,81.07142857 +17658,294.3333333,1514,455,,270.3571429,81.25 +17659,294.35,1498,456,,267.5,81.42857143 +17660,294.3666667,1482,456,,264.6428571,81.42857143 +17661,294.3833333,1466,456,,261.7857143,81.42857143 +17662,294.4,1449,457,,258.75,81.60714286 +17663,294.4166667,1432,457,,255.7142857,81.60714286 +17664,294.4333333,1415,458,,252.6785714,81.78571429 +17665,294.45,1397,458,,249.4642857,81.78571429 +17666,294.4666667,1380,458,,246.4285714,81.78571429 +17667,294.4833333,1363,458,,243.3928571,81.78571429 +17668,294.5,1346,458,,240.3571429,81.78571429 +17669,294.5166667,1329,458,,237.3214286,81.78571429 +17670,294.5333333,1313,457,,234.4642857,81.60714286 +17671,294.55,1297,457,,231.6071429,81.60714286 +17672,294.5666667,1281,456,,228.75,81.42857143 +17673,294.5833333,1267,456,,226.25,81.42857143 +17674,294.6,1253,456,,223.75,81.42857143 +17675,294.6166667,1239,455,,221.25,81.25 +17676,294.6333333,1226,455,,218.9285714,81.25 +17677,294.65,1215,454,,216.9642857,81.07142857 +17678,294.6666667,1204,453,,215,80.89285714 +17679,294.6833333,1194,453,,213.2142857,80.89285714 +17680,294.7,1185,452,,211.6071429,80.71428571 +17681,294.7166667,1178,452,,210.3571429,80.71428571 +17682,294.7333333,1171,452,,209.1071429,80.71428571 +17683,294.75,1165,451,,208.0357143,80.53571429 +17684,294.7666667,1161,451,,207.3214286,80.53571429 +17685,294.7833333,1158,451,,206.7857143,80.53571429 +17686,294.8,1156,451,,206.4285714,80.53571429 +17687,294.8166667,1156,451,,206.4285714,80.53571429 +17688,294.8333333,1156,451,,206.4285714,80.53571429 +17689,294.85,1157,451,,206.6071429,80.53571429 +17690,294.8666667,1160,451,,207.1428571,80.53571429 +17691,294.8833333,1164,452,,207.8571429,80.71428571 +17692,294.9,1169,452,,208.75,80.71428571 +17693,294.9166667,1175,453,,209.8214286,80.89285714 +17694,294.9333333,1183,453,,211.25,80.89285714 +17695,294.95,1192,454,,212.8571429,81.07142857 +17696,294.9666667,1201,454,,214.4642857,81.07142857 +17697,294.9833333,1212,455,,216.4285714,81.25 +17698,295,1223,455,,218.3928571,81.25 +17699,295.0166667,1235,456,,220.5357143,81.42857143 +17700,295.0333333,1249,457,,223.0357143,81.60714286 +17701,295.05,1262,457,,225.3571429,81.60714286 +17702,295.0666667,1277,458,,228.0357143,81.78571429 +17703,295.0833333,1293,458,,230.8928571,81.78571429 +17704,295.1,1308,459,,233.5714286,81.96428571 +17705,295.1166667,1324,459,,236.4285714,81.96428571 +17706,295.1333333,1341,459,,239.4642857,81.96428571 +17707,295.15,1357,459,,242.3214286,81.96428571 +17708,295.1666667,1374,459,,245.3571429,81.96428571 +17709,295.1833333,1392,459,,248.5714286,81.96428571 +17710,295.2,1409,459,,251.6071429,81.96428571 +17711,295.2166667,1426,459,,254.6428571,81.96428571 +17712,295.2333333,1443,459,,257.6785714,81.96428571 +17713,295.25,1460,458,,260.7142857,81.78571429 +17714,295.2666667,1476,458,,263.5714286,81.78571429 +17715,295.2833333,1493,457,,266.6071429,81.60714286 +17716,295.3,1508,457,,269.2857143,81.60714286 +17717,295.3166667,1523,456,,271.9642857,81.42857143 +17718,295.3333333,1538,455,,274.6428571,81.25 +17719,295.35,1552,455,,277.1428571,81.25 +17720,295.3666667,1565,454,,279.4642857,81.07142857 +17721,295.3833333,1578,453,,281.7857143,80.89285714 +17722,295.4,1589,452,,283.75,80.71428571 +17723,295.4166667,1599,451,,285.5357143,80.53571429 +17724,295.4333333,1609,451,,287.3214286,80.53571429 +17725,295.45,1618,450,,288.9285714,80.35714286 +17726,295.4666667,1625,449,,290.1785714,80.17857143 +17727,295.4833333,1632,449,,291.4285714,80.17857143 +17728,295.5,1637,448,,292.3214286,80 +17729,295.5166667,1641,448,,293.0357143,80 +17730,295.5333333,1644,447,,293.5714286,79.82142857 +17731,295.55,1645,447,,293.75,79.82142857 +17732,295.5666667,1645,447,,293.75,79.82142857 +17733,295.5833333,1645,447,,293.75,79.82142857 +17734,295.6,1643,447,,293.3928571,79.82142857 +17735,295.6166667,1640,447,,292.8571429,79.82142857 +17736,295.6333333,1636,448,,292.1428571,80 +17737,295.65,1631,448,,291.25,80 +17738,295.6666667,1624,449,,290,80.17857143 +17739,295.6833333,1616,449,,288.5714286,80.17857143 +17740,295.7,1608,450,,287.1428571,80.35714286 +17741,295.7166667,1598,450,,285.3571429,80.35714286 +17742,295.7333333,1587,451,,283.3928571,80.53571429 +17743,295.75,1575,452,,281.25,80.71428571 +17744,295.7666667,1563,452,,279.1071429,80.71428571 +17745,295.7833333,1550,453,,276.7857143,80.89285714 +17746,295.8,1536,454,,274.2857143,81.07142857 +17747,295.8166667,1521,455,,271.6071429,81.25 +17748,295.8333333,1505,455,,268.75,81.25 +17749,295.85,1490,456,,266.0714286,81.42857143 +17750,295.8666667,1474,456,,263.2142857,81.42857143 +17751,295.8833333,1457,457,,260.1785714,81.60714286 +17752,295.9,1440,457,,257.1428571,81.60714286 +17753,295.9166667,1423,457,,254.1071429,81.60714286 +17754,295.9333333,1406,458,,251.0714286,81.78571429 +17755,295.95,1389,458,,248.0357143,81.78571429 +17756,295.9666667,1371,458,,244.8214286,81.78571429 +17757,295.9833333,1355,458,,241.9642857,81.78571429 +17758,296,1338,458,,238.9285714,81.78571429 +17759,296.0166667,1321,458,,235.8928571,81.78571429 +17760,296.0333333,1305,457,,233.0357143,81.60714286 +17761,296.05,1290,457,,230.3571429,81.60714286 +17762,296.0666667,1274,456,,227.5,81.42857143 +17763,296.0833333,1260,456,,225,81.42857143 +17764,296.1,1246,456,,222.5,81.42857143 +17765,296.1166667,1233,455,,220.1785714,81.25 +17766,296.1333333,1221,454,,218.0357143,81.07142857 +17767,296.15,1210,454,,216.0714286,81.07142857 +17768,296.1666667,1200,453,,214.2857143,80.89285714 +17769,296.1833333,1191,453,,212.6785714,80.89285714 +17770,296.2,1182,453,,211.0714286,80.89285714 +17771,296.2166667,1175,452,,209.8214286,80.71428571 +17772,296.2333333,1169,452,,208.75,80.71428571 +17773,296.25,1164,452,,207.8571429,80.71428571 +17774,296.2666667,1161,451,,207.3214286,80.53571429 +17775,296.2833333,1158,451,,206.7857143,80.53571429 +17776,296.3,1158,451,,206.7857143,80.53571429 +17777,296.3166667,1158,451,,206.7857143,80.53571429 +17778,296.3333333,1158,451,,206.7857143,80.53571429 +17779,296.35,1160,452,,207.1428571,80.71428571 +17780,296.3666667,1163,452,,207.6785714,80.71428571 +17781,296.3833333,1168,452,,208.5714286,80.71428571 +17782,296.4,1174,453,,209.6428571,80.89285714 +17783,296.4166667,1181,453,,210.8928571,80.89285714 +17784,296.4333333,1189,454,,212.3214286,81.07142857 +17785,296.45,1198,454,,213.9285714,81.07142857 +17786,296.4666667,1208,455,,215.7142857,81.25 +17787,296.4833333,1219,455,,217.6785714,81.25 +17788,296.5,1231,456,,219.8214286,81.42857143 +17789,296.5166667,1243,457,,221.9642857,81.60714286 +17790,296.5333333,1256,457,,224.2857143,81.60714286 +17791,296.55,1271,458,,226.9642857,81.78571429 +17792,296.5666667,1286,459,,229.6428571,81.96428571 +17793,296.5833333,1301,459,,232.3214286,81.96428571 +17794,296.6,1317,459,,235.1785714,81.96428571 +17795,296.6166667,1333,460,,238.0357143,82.14285714 +17796,296.6333333,1350,460,,241.0714286,82.14285714 +17797,296.65,1367,460,,244.1071429,82.14285714 +17798,296.6666667,1383,460,,246.9642857,82.14285714 +17799,296.6833333,1401,460,,250.1785714,82.14285714 +17800,296.7,1418,459,,253.2142857,81.96428571 +17801,296.7166667,1435,459,,256.25,81.96428571 +17802,296.7333333,1452,458,,259.2857143,81.78571429 +17803,296.75,1468,458,,262.1428571,81.78571429 +17804,296.7666667,1485,458,,265.1785714,81.78571429 +17805,296.7833333,1501,457,,268.0357143,81.60714286 +17806,296.8,1516,456,,270.7142857,81.42857143 +17807,296.8166667,1530,456,,273.2142857,81.42857143 +17808,296.8333333,1545,455,,275.8928571,81.25 +17809,296.85,1558,454,,278.2142857,81.07142857 +17810,296.8666667,1571,453,,280.5357143,80.89285714 +17811,296.8833333,1583,453,,282.6785714,80.89285714 +17812,296.9,1594,452,,284.6428571,80.71428571 +17813,296.9166667,1604,451,,286.4285714,80.53571429 +17814,296.9333333,1613,450,,288.0357143,80.35714286 +17815,296.95,1621,450,,289.4642857,80.35714286 +17816,296.9666667,1628,449,,290.7142857,80.17857143 +17817,296.9833333,1633,449,,291.6071429,80.17857143 +17818,297,1638,448,,292.5,80 +17819,297.0166667,1642,448,,293.2142857,80 +17820,297.0333333,1644,448,,293.5714286,80 +17821,297.05,1644,448,,293.5714286,80 +17822,297.0666667,1644,448,,293.5714286,80 +17823,297.0833333,1643,448,,293.3928571,80 +17824,297.1,1641,448,,293.0357143,80 +17825,297.1166667,1637,448,,292.3214286,80 +17826,297.1333333,1633,448,,291.6071429,80 +17827,297.15,1626,449,,290.3571429,80.17857143 +17828,297.1666667,1619,449,,289.1071429,80.17857143 +17829,297.1833333,1611,450,,287.6785714,80.35714286 +17830,297.2,1602,450,,286.0714286,80.35714286 +17831,297.2166667,1592,451,,284.2857143,80.53571429 +17832,297.2333333,1581,451,,282.3214286,80.53571429 +17833,297.25,1569,452,,280.1785714,80.71428571 +17834,297.2666667,1556,453,,277.8571429,80.89285714 +17835,297.2833333,1542,453,,275.3571429,80.89285714 +17836,297.3,1528,454,,272.8571429,81.07142857 +17837,297.3166667,1513,455,,270.1785714,81.25 +17838,297.3333333,1497,456,,267.3214286,81.42857143 +17839,297.35,1481,456,,264.4642857,81.42857143 +17840,297.3666667,1465,456,,261.6071429,81.42857143 +17841,297.3833333,1448,457,,258.5714286,81.60714286 +17842,297.4,1431,457,,255.5357143,81.60714286 +17843,297.4166667,1414,458,,252.5,81.78571429 +17844,297.4333333,1397,458,,249.4642857,81.78571429 +17845,297.45,1380,458,,246.4285714,81.78571429 +17846,297.4666667,1363,458,,243.3928571,81.78571429 +17847,297.4833333,1346,458,,240.3571429,81.78571429 +17848,297.5,1330,458,,237.5,81.78571429 +17849,297.5166667,1313,458,,234.4642857,81.78571429 +17850,297.5333333,1298,457,,231.7857143,81.60714286 +17851,297.55,1282,457,,228.9285714,81.60714286 +17852,297.5666667,1267,456,,226.25,81.42857143 +17853,297.5833333,1254,456,,223.9285714,81.42857143 +17854,297.6,1240,455,,221.4285714,81.25 +17855,297.6166667,1228,455,,219.2857143,81.25 +17856,297.6333333,1216,454,,217.1428571,81.07142857 +17857,297.65,1206,454,,215.3571429,81.07142857 +17858,297.6666667,1196,453,,213.5714286,80.89285714 +17859,297.6833333,1187,453,,211.9642857,80.89285714 +17860,297.7,1180,452,,210.7142857,80.71428571 +17861,297.7166667,1173,452,,209.4642857,80.71428571 +17862,297.7333333,1168,451,,208.5714286,80.53571429 +17863,297.75,1163,451,,207.6785714,80.53571429 +17864,297.7666667,1160,451,,207.1428571,80.53571429 +17865,297.7833333,1158,451,,206.7857143,80.53571429 +17866,297.8,1158,451,,206.7857143,80.53571429 +17867,297.8166667,1158,451,,206.7857143,80.53571429 +17868,297.8333333,1160,451,,207.1428571,80.53571429 +17869,297.85,1163,452,,207.6785714,80.71428571 +17870,297.8666667,1167,452,,208.3928571,80.71428571 +17871,297.8833333,1172,453,,209.2857143,80.89285714 +17872,297.9,1178,453,,210.3571429,80.89285714 +17873,297.9166667,1186,453,,211.7857143,80.89285714 +17874,297.9333333,1194,454,,213.2142857,81.07142857 +17875,297.95,1204,454,,215,81.07142857 +17876,297.9666667,1214,455,,216.7857143,81.25 +17877,297.9833333,1226,456,,218.9285714,81.42857143 +17878,298,1238,456,,221.0714286,81.42857143 +17879,298.0166667,1251,457,,223.3928571,81.60714286 +17880,298.0333333,1265,457,,225.8928571,81.60714286 +17881,298.05,1279,458,,228.3928571,81.78571429 +17882,298.0666667,1294,459,,231.0714286,81.96428571 +17883,298.0833333,1310,459,,233.9285714,81.96428571 +17884,298.1,1326,459,,236.7857143,81.96428571 +17885,298.1166667,1342,459,,239.6428571,81.96428571 +17886,298.1333333,1359,460,,242.6785714,82.14285714 +17887,298.15,1376,460,,245.7142857,82.14285714 +17888,298.1666667,1393,460,,248.75,82.14285714 +17889,298.1833333,1410,459,,251.7857143,81.96428571 +17890,298.2,1427,459,,254.8214286,81.96428571 +17891,298.2166667,1444,459,,257.8571429,81.96428571 +17892,298.2333333,1460,459,,260.7142857,81.96428571 +17893,298.25,1477,458,,263.75,81.78571429 +17894,298.2666667,1493,457,,266.6071429,81.60714286 +17895,298.2833333,1508,457,,269.2857143,81.60714286 +17896,298.3,1524,456,,272.1428571,81.42857143 +17897,298.3166667,1538,455,,274.6428571,81.25 +17898,298.3333333,1552,454,,277.1428571,81.07142857 +17899,298.35,1565,454,,279.4642857,81.07142857 +17900,298.3666667,1577,453,,281.6071429,80.89285714 +17901,298.3833333,1588,452,,283.5714286,80.71428571 +17902,298.4,1599,452,,285.5357143,80.71428571 +17903,298.4166667,1608,451,,287.1428571,80.53571429 +17904,298.4333333,1617,450,,288.75,80.35714286 +17905,298.45,1624,450,,290,80.35714286 +17906,298.4666667,1630,449,,291.0714286,80.17857143 +17907,298.4833333,1635,449,,291.9642857,80.17857143 +17908,298.5,1639,448,,292.6785714,80 +17909,298.5166667,1642,448,,293.2142857,80 +17910,298.5333333,1644,447,,293.5714286,79.82142857 +17911,298.55,1644,447,,293.5714286,79.82142857 +17912,298.5666667,1644,447,,293.5714286,79.82142857 +17913,298.5833333,1642,448,,293.2142857,80 +17914,298.6,1639,448,,292.6785714,80 +17915,298.6166667,1634,448,,291.7857143,80 +17916,298.6333333,1629,449,,290.8928571,80.17857143 +17917,298.65,1622,449,,289.6428571,80.17857143 +17918,298.6666667,1615,449,,288.3928571,80.17857143 +17919,298.6833333,1606,450,,286.7857143,80.35714286 +17920,298.7,1596,450,,285,80.35714286 +17921,298.7166667,1586,451,,283.2142857,80.53571429 +17922,298.7333333,1574,452,,281.0714286,80.71428571 +17923,298.75,1562,453,,278.9285714,80.89285714 +17924,298.7666667,1548,453,,276.4285714,80.89285714 +17925,298.7833333,1534,454,,273.9285714,81.07142857 +17926,298.8,1520,454,,271.4285714,81.07142857 +17927,298.8166667,1504,455,,268.5714286,81.25 +17928,298.8333333,1489,456,,265.8928571,81.42857143 +17929,298.85,1473,456,,263.0357143,81.42857143 +17930,298.8666667,1456,457,,260,81.60714286 +17931,298.8833333,1440,457,,257.1428571,81.60714286 +17932,298.9,1423,458,,254.1071429,81.78571429 +17933,298.9166667,1406,458,,251.0714286,81.78571429 +17934,298.9333333,1388,458,,247.8571429,81.78571429 +17935,298.95,1371,458,,244.8214286,81.78571429 +17936,298.9666667,1355,458,,241.9642857,81.78571429 +17937,298.9833333,1338,458,,238.9285714,81.78571429 +17938,299,1322,458,,236.0714286,81.78571429 +17939,299.0166667,1306,457,,233.2142857,81.60714286 +17940,299.0333333,1290,457,,230.3571429,81.60714286 +17941,299.05,1275,457,,227.6785714,81.60714286 +17942,299.0666667,1261,456,,225.1785714,81.42857143 +17943,299.0833333,1247,456,,222.6785714,81.42857143 +17944,299.1,1234,455,,220.3571429,81.25 +17945,299.1166667,1223,454,,218.3928571,81.07142857 +17946,299.1333333,1211,454,,216.25,81.07142857 +17947,299.15,1201,453,,214.4642857,80.89285714 +17948,299.1666667,1192,453,,212.8571429,80.89285714 +17949,299.1833333,1184,452,,211.4285714,80.71428571 +17950,299.2,1177,452,,210.1785714,80.71428571 +17951,299.2166667,1171,452,,209.1071429,80.71428571 +17952,299.2333333,1166,452,,208.2142857,80.71428571 +17953,299.25,1162,452,,207.5,80.71428571 +17954,299.2666667,1160,451,,207.1428571,80.53571429 +17955,299.2833333,1159,451,,206.9642857,80.53571429 +17956,299.3,1159,451,,206.9642857,80.53571429 +17957,299.3166667,1159,451,,206.9642857,80.53571429 +17958,299.3333333,1162,452,,207.5,80.71428571 +17959,299.35,1165,452,,208.0357143,80.71428571 +17960,299.3666667,1170,452,,208.9285714,80.71428571 +17961,299.3833333,1176,453,,210,80.89285714 +17962,299.4,1183,453,,211.25,80.89285714 +17963,299.4166667,1190,454,,212.5,81.07142857 +17964,299.4333333,1199,454,,214.1071429,81.07142857 +17965,299.45,1209,455,,215.8928571,81.25 +17966,299.4666667,1221,455,,218.0357143,81.25 +17967,299.4833333,1232,456,,220,81.42857143 +17968,299.5,1245,456,,222.3214286,81.42857143 +17969,299.5166667,1258,457,,224.6428571,81.60714286 +17970,299.5333333,1272,458,,227.1428571,81.78571429 +17971,299.55,1287,458,,229.8214286,81.78571429 +17972,299.5666667,1302,459,,232.5,81.96428571 +17973,299.5833333,1318,459,,235.3571429,81.96428571 +17974,299.6,1334,460,,238.2142857,82.14285714 +17975,299.6166667,1351,460,,241.25,82.14285714 +17976,299.6333333,1367,460,,244.1071429,82.14285714 +17977,299.65,1384,460,,247.1428571,82.14285714 +17978,299.6666667,1401,459,,250.1785714,81.96428571 +17979,299.6833333,1419,459,,253.3928571,81.96428571 +17980,299.7,1435,459,,256.25,81.96428571 +17981,299.7166667,1452,458,,259.2857143,81.78571429 +17982,299.7333333,1469,458,,262.3214286,81.78571429 +17983,299.75,1485,457,,265.1785714,81.60714286 +17984,299.7666667,1501,457,,268.0357143,81.60714286 +17985,299.7833333,1516,456,,270.7142857,81.42857143 +17986,299.8,1530,455,,273.2142857,81.25 +17987,299.8166667,1545,455,,275.8928571,81.25 +17988,299.8333333,1558,454,,278.2142857,81.07142857 +17989,299.85,1571,453,,280.5357143,80.89285714 +17990,299.8666667,1582,452,,282.5,80.71428571 +17991,299.8833333,1593,452,,284.4642857,80.71428571 +17992,299.9,1603,451,,286.25,80.53571429 +17993,299.9166667,1612,450,,287.8571429,80.35714286 +17994,299.9333333,1620,450,,289.2857143,80.35714286 +17995,299.95,1627,449,,290.5357143,80.17857143 +17996,299.9666667,1633,449,,291.6071429,80.17857143 +17997,299.9833333,1637,448,,292.3214286,80 +17998,300,1641,448,,293.0357143,80 +17999,300.0166667,1643,448,,293.3928571,80 +18000,300.0333333,1643,448,,293.3928571,80 +18001,300.05,1643,448,,293.3928571,80 +18002,300.0666667,1642,448,,293.2142857,80 +18003,300.0833333,1640,448,,292.8571429,80 +18004,300.1,1636,448,,292.1428571,80 +18005,300.1166667,1631,448,,291.25,80 +18006,300.1333333,1625,449,,290.1785714,80.17857143 +18007,300.15,1618,449,,288.9285714,80.17857143 +18008,300.1666667,1610,450,,287.5,80.35714286 +18009,300.1833333,1601,450,,285.8928571,80.35714286 +18010,300.2,1590,451,,283.9285714,80.53571429 +18011,300.2166667,1579,452,,281.9642857,80.71428571 +18012,300.2333333,1567,452,,279.8214286,80.71428571 +18013,300.25,1555,453,,277.6785714,80.89285714 +18014,300.2666667,1541,454,,275.1785714,81.07142857 +18015,300.2833333,1527,454,,272.6785714,81.07142857 +18016,300.3,1512,455,,270,81.25 +18017,300.3166667,1496,456,,267.1428571,81.42857143 +18018,300.3333333,1480,456,,264.2857143,81.42857143 +18019,300.35,1464,456,,261.4285714,81.42857143 +18020,300.3666667,1447,457,,258.3928571,81.60714286 +18021,300.3833333,1430,457,,255.3571429,81.60714286 +18022,300.4,1413,458,,252.3214286,81.78571429 +18023,300.4166667,1397,458,,249.4642857,81.78571429 +18024,300.4333333,1379,458,,246.25,81.78571429 +18025,300.45,1363,458,,243.3928571,81.78571429 +18026,300.4666667,1346,458,,240.3571429,81.78571429 +18027,300.4833333,1330,458,,237.5,81.78571429 +18028,300.5,1313,457,,234.4642857,81.60714286 +18029,300.5166667,1298,457,,231.7857143,81.60714286 +18030,300.5333333,1283,457,,229.1071429,81.60714286 +18031,300.55,1268,456,,226.4285714,81.42857143 +18032,300.5666667,1254,456,,223.9285714,81.42857143 +18033,300.5833333,1241,455,,221.6071429,81.25 +18034,300.6,1229,455,,219.4642857,81.25 +18035,300.6166667,1217,454,,217.3214286,81.07142857 +18036,300.6333333,1207,454,,215.5357143,81.07142857 +18037,300.65,1197,453,,213.75,80.89285714 +18038,300.6666667,1189,453,,212.3214286,80.89285714 +18039,300.6833333,1181,452,,210.8928571,80.71428571 +18040,300.7,1174,452,,209.6428571,80.71428571 +18041,300.7166667,1169,452,,208.75,80.71428571 +18042,300.7333333,1165,452,,208.0357143,80.71428571 +18043,300.75,1162,451,,207.5,80.53571429 +18044,300.7666667,1159,451,,206.9642857,80.53571429 +18045,300.7833333,1159,451,,206.9642857,80.53571429 +18046,300.8,1159,451,,206.9642857,80.53571429 +18047,300.8166667,1161,452,,207.3214286,80.71428571 +18048,300.8333333,1164,452,,207.8571429,80.71428571 +18049,300.85,1168,452,,208.5714286,80.71428571 +18050,300.8666667,1173,452,,209.4642857,80.71428571 +18051,300.8833333,1180,453,,210.7142857,80.89285714 +18052,300.9,1187,453,,211.9642857,80.89285714 +18053,300.9166667,1195,454,,213.3928571,81.07142857 +18054,300.9333333,1205,454,,215.1785714,81.07142857 +18055,300.95,1215,455,,216.9642857,81.25 +18056,300.9666667,1226,456,,218.9285714,81.42857143 +18057,300.9833333,1239,456,,221.25,81.42857143 +18058,301,1252,457,,223.5714286,81.60714286 +18059,301.0166667,1266,457,,226.0714286,81.60714286 +18060,301.0333333,1280,458,,228.5714286,81.78571429 +18061,301.05,1295,459,,231.25,81.96428571 +18062,301.0666667,1311,459,,234.1071429,81.96428571 +18063,301.0833333,1326,459,,236.7857143,81.96428571 +18064,301.1,1342,459,,239.6428571,81.96428571 +18065,301.1166667,1359,459,,242.6785714,81.96428571 +18066,301.1333333,1376,459,,245.7142857,81.96428571 +18067,301.15,1393,459,,248.75,81.96428571 +18068,301.1666667,1410,459,,251.7857143,81.96428571 +18069,301.1833333,1426,459,,254.6428571,81.96428571 +18070,301.2,1443,458,,257.6785714,81.78571429 +18071,301.2166667,1460,458,,260.7142857,81.78571429 +18072,301.2333333,1476,458,,263.5714286,81.78571429 +18073,301.25,1492,457,,266.4285714,81.60714286 +18074,301.2666667,1508,457,,269.2857143,81.60714286 +18075,301.2833333,1522,456,,271.7857143,81.42857143 +18076,301.3,1537,455,,274.4642857,81.25 +18077,301.3166667,1550,454,,276.7857143,81.07142857 +18078,301.3333333,1563,453,,279.1071429,80.89285714 +18079,301.35,1575,453,,281.25,80.89285714 +18080,301.3666667,1587,452,,283.3928571,80.71428571 +18081,301.3833333,1597,452,,285.1785714,80.71428571 +18082,301.4,1606,451,,286.7857143,80.53571429 +18083,301.4166667,1615,450,,288.3928571,80.35714286 +18084,301.4333333,1622,450,,289.6428571,80.35714286 +18085,301.45,1629,449,,290.8928571,80.17857143 +18086,301.4666667,1634,448,,291.7857143,80 +18087,301.4833333,1638,448,,292.5,80 +18088,301.5,1641,447,,293.0357143,79.82142857 +18089,301.5166667,1642,447,,293.2142857,79.82142857 +18090,301.5333333,1642,447,,293.2142857,79.82142857 +18091,301.55,1642,447,,293.2142857,79.82142857 +18092,301.5666667,1640,447,,292.8571429,79.82142857 +18093,301.5833333,1637,447,,292.3214286,79.82142857 +18094,301.6,1633,448,,291.6071429,80 +18095,301.6166667,1627,448,,290.5357143,80 +18096,301.6333333,1621,449,,289.4642857,80.17857143 +18097,301.65,1613,449,,288.0357143,80.17857143 +18098,301.6666667,1605,450,,286.6071429,80.35714286 +18099,301.6833333,1595,450,,284.8214286,80.35714286 +18100,301.7,1584,451,,282.8571429,80.53571429 +18101,301.7166667,1573,452,,280.8928571,80.71428571 +18102,301.7333333,1560,452,,278.5714286,80.71428571 +18103,301.75,1547,453,,276.25,80.89285714 +18104,301.7666667,1533,454,,273.75,81.07142857 +18105,301.7833333,1519,455,,271.25,81.25 +18106,301.8,1503,455,,268.3928571,81.25 +18107,301.8166667,1488,456,,265.7142857,81.42857143 +18108,301.8333333,1472,456,,262.8571429,81.42857143 +18109,301.85,1455,457,,259.8214286,81.60714286 +18110,301.8666667,1438,457,,256.7857143,81.60714286 +18111,301.8833333,1421,457,,253.75,81.60714286 +18112,301.9,1405,458,,250.8928571,81.78571429 +18113,301.9166667,1388,458,,247.8571429,81.78571429 +18114,301.9333333,1371,458,,244.8214286,81.78571429 +18115,301.95,1354,458,,241.7857143,81.78571429 +18116,301.9666667,1337,458,,238.75,81.78571429 +18117,301.9833333,1322,458,,236.0714286,81.78571429 +18118,302,1305,457,,233.0357143,81.60714286 +18119,302.0166667,1290,457,,230.3571429,81.60714286 +18120,302.0333333,1275,456,,227.6785714,81.42857143 +18121,302.05,1261,455,,225.1785714,81.25 +18122,302.0666667,1248,455,,222.8571429,81.25 +18123,302.0833333,1235,455,,220.5357143,81.25 +18124,302.1,1223,454,,218.3928571,81.07142857 +18125,302.1166667,1212,454,,216.4285714,81.07142857 +18126,302.1333333,1202,453,,214.6428571,80.89285714 +18127,302.15,1192,453,,212.8571429,80.89285714 +18128,302.1666667,1184,453,,211.4285714,80.89285714 +18129,302.1833333,1178,452,,210.3571429,80.71428571 +18130,302.2,1172,452,,209.2857143,80.71428571 +18131,302.2166667,1167,451,,208.3928571,80.53571429 +18132,302.2333333,1163,451,,207.6785714,80.53571429 +18133,302.25,1160,451,,207.1428571,80.53571429 +18134,302.2666667,1160,451,,207.1428571,80.53571429 +18135,302.2833333,1160,451,,207.1428571,80.53571429 +18136,302.3,1160,451,,207.1428571,80.53571429 +18137,302.3166667,1163,452,,207.6785714,80.71428571 +18138,302.3333333,1166,452,,208.2142857,80.71428571 +18139,302.35,1171,452,,209.1071429,80.71428571 +18140,302.3666667,1177,453,,210.1785714,80.89285714 +18141,302.3833333,1183,453,,211.25,80.89285714 +18142,302.4,1191,454,,212.6785714,81.07142857 +18143,302.4166667,1200,454,,214.2857143,81.07142857 +18144,302.4333333,1210,455,,216.0714286,81.25 +18145,302.45,1221,455,,218.0357143,81.25 +18146,302.4666667,1232,456,,220,81.42857143 +18147,302.4833333,1245,456,,222.3214286,81.42857143 +18148,302.5,1258,457,,224.6428571,81.60714286 +18149,302.5166667,1272,458,,227.1428571,81.78571429 +18150,302.5333333,1287,458,,229.8214286,81.78571429 +18151,302.55,1302,459,,232.5,81.96428571 +18152,302.5666667,1318,459,,235.3571429,81.96428571 +18153,302.5833333,1334,460,,238.2142857,82.14285714 +18154,302.6,1350,460,,241.0714286,82.14285714 +18155,302.6166667,1367,460,,244.1071429,82.14285714 +18156,302.6333333,1383,460,,246.9642857,82.14285714 +18157,302.65,1400,459,,250,81.96428571 +18158,302.6666667,1417,459,,253.0357143,81.96428571 +18159,302.6833333,1434,459,,256.0714286,81.96428571 +18160,302.7,1451,459,,259.1071429,81.96428571 +18161,302.7166667,1467,458,,261.9642857,81.78571429 +18162,302.7333333,1483,458,,264.8214286,81.78571429 +18163,302.75,1499,457,,267.6785714,81.60714286 +18164,302.7666667,1514,456,,270.3571429,81.42857143 +18165,302.7833333,1528,456,,272.8571429,81.42857143 +18166,302.8,1542,455,,275.3571429,81.25 +18167,302.8166667,1556,454,,277.8571429,81.07142857 +18168,302.8333333,1568,454,,280,81.07142857 +18169,302.85,1580,453,,282.1428571,80.89285714 +18170,302.8666667,1591,452,,284.1071429,80.71428571 +18171,302.8833333,1600,451,,285.7142857,80.53571429 +18172,302.9,1609,451,,287.3214286,80.53571429 +18173,302.9166667,1617,450,,288.75,80.35714286 +18174,302.9333333,1624,450,,290,80.35714286 +18175,302.95,1630,449,,291.0714286,80.17857143 +18176,302.9666667,1634,449,,291.7857143,80.17857143 +18177,302.9833333,1638,448,,292.5,80 +18178,303,1640,448,,292.8571429,80 +18179,303.0166667,1640,448,,292.8571429,80 +18180,303.0333333,1640,448,,292.8571429,80 +18181,303.05,1640,448,,292.8571429,80 +18182,303.0666667,1637,448,,292.3214286,80 +18183,303.0833333,1633,448,,291.6071429,80 +18184,303.1,1628,449,,290.7142857,80.17857143 +18185,303.1166667,1623,449,,289.8214286,80.17857143 +18186,303.1333333,1615,450,,288.3928571,80.35714286 +18187,303.15,1607,450,,286.9642857,80.35714286 +18188,303.1666667,1598,451,,285.3571429,80.53571429 +18189,303.1833333,1588,451,,283.5714286,80.53571429 +18190,303.2,1577,452,,281.6071429,80.71428571 +18191,303.2166667,1565,453,,279.4642857,80.89285714 +18192,303.2333333,1552,453,,277.1428571,80.89285714 +18193,303.25,1539,454,,274.8214286,81.07142857 +18194,303.2666667,1525,455,,272.3214286,81.25 +18195,303.2833333,1510,455,,269.6428571,81.25 +18196,303.3,1494,456,,266.7857143,81.42857143 +18197,303.3166667,1479,456,,264.1071429,81.42857143 +18198,303.3333333,1462,457,,261.0714286,81.60714286 +18199,303.35,1446,457,,258.2142857,81.60714286 +18200,303.3666667,1429,458,,255.1785714,81.78571429 +18201,303.3833333,1412,458,,252.1428571,81.78571429 +18202,303.4,1395,458,,249.1071429,81.78571429 +18203,303.4166667,1378,458,,246.0714286,81.78571429 +18204,303.4333333,1361,458,,243.0357143,81.78571429 +18205,303.45,1345,458,,240.1785714,81.78571429 +18206,303.4666667,1329,458,,237.3214286,81.78571429 +18207,303.4833333,1312,458,,234.2857143,81.78571429 +18208,303.5,1297,458,,231.6071429,81.78571429 +18209,303.5166667,1282,457,,228.9285714,81.60714286 +18210,303.5333333,1268,457,,226.4285714,81.60714286 +18211,303.55,1254,456,,223.9285714,81.42857143 +18212,303.5666667,1241,456,,221.6071429,81.42857143 +18213,303.5833333,1229,455,,219.4642857,81.25 +18214,303.6,1217,455,,217.3214286,81.25 +18215,303.6166667,1206,454,,215.3571429,81.07142857 +18216,303.6333333,1197,453,,213.75,80.89285714 +18217,303.65,1188,453,,212.1428571,80.89285714 +18218,303.6666667,1181,453,,210.8928571,80.89285714 +18219,303.6833333,1174,452,,209.6428571,80.71428571 +18220,303.7,1169,452,,208.75,80.71428571 +18221,303.7166667,1165,452,,208.0357143,80.71428571 +18222,303.7333333,1162,452,,207.5,80.71428571 +18223,303.75,1160,452,,207.1428571,80.71428571 +18224,303.7666667,1160,452,,207.1428571,80.71428571 +18225,303.7833333,1160,452,,207.1428571,80.71428571 +18226,303.8,1161,452,,207.3214286,80.71428571 +18227,303.8166667,1164,452,,207.8571429,80.71428571 +18228,303.8333333,1168,453,,208.5714286,80.89285714 +18229,303.85,1173,453,,209.4642857,80.89285714 +18230,303.8666667,1180,453,,210.7142857,80.89285714 +18231,303.8833333,1187,454,,211.9642857,81.07142857 +18232,303.9,1195,455,,213.3928571,81.25 +18233,303.9166667,1205,455,,215.1785714,81.25 +18234,303.9333333,1215,455,,216.9642857,81.25 +18235,303.95,1226,456,,218.9285714,81.42857143 +18236,303.9666667,1238,457,,221.0714286,81.60714286 +18237,303.9833333,1251,457,,223.3928571,81.60714286 +18238,304,1265,458,,225.8928571,81.78571429 +18239,304.0166667,1279,459,,228.3928571,81.96428571 +18240,304.0333333,1294,459,,231.0714286,81.96428571 +18241,304.05,1310,460,,233.9285714,82.14285714 +18242,304.0666667,1325,460,,236.6071429,82.14285714 +18243,304.0833333,1341,460,,239.4642857,82.14285714 +18244,304.1,1358,460,,242.5,82.14285714 +18245,304.1166667,1375,460,,245.5357143,82.14285714 +18246,304.1333333,1392,460,,248.5714286,82.14285714 +18247,304.15,1408,460,,251.4285714,82.14285714 +18248,304.1666667,1425,460,,254.4642857,82.14285714 +18249,304.1833333,1442,459,,257.5,81.96428571 +18250,304.2,1459,459,,260.5357143,81.96428571 +18251,304.2166667,1475,459,,263.3928571,81.96428571 +18252,304.2333333,1491,458,,266.25,81.78571429 +18253,304.25,1506,457,,268.9285714,81.60714286 +18254,304.2666667,1521,456,,271.6071429,81.42857143 +18255,304.2833333,1535,455,,274.1071429,81.25 +18256,304.3,1549,455,,276.6071429,81.25 +18257,304.3166667,1562,454,,278.9285714,81.07142857 +18258,304.3333333,1574,454,,281.0714286,81.07142857 +18259,304.35,1585,453,,283.0357143,80.89285714 +18260,304.3666667,1595,452,,284.8214286,80.71428571 +18261,304.3833333,1605,451,,286.6071429,80.53571429 +18262,304.4,1613,451,,288.0357143,80.53571429 +18263,304.4166667,1621,450,,289.4642857,80.35714286 +18264,304.4333333,1627,449,,290.5357143,80.17857143 +18265,304.45,1632,449,,291.4285714,80.17857143 +18266,304.4666667,1636,449,,292.1428571,80.17857143 +18267,304.4833333,1639,448,,292.6785714,80 +18268,304.5,1640,448,,292.8571429,80 +18269,304.5166667,1640,448,,292.8571429,80 +18270,304.5333333,1640,448,,292.8571429,80 +18271,304.55,1639,448,,292.6785714,80 +18272,304.5666667,1635,448,,291.9642857,80 +18273,304.5833333,1632,448,,291.4285714,80 +18274,304.6,1626,449,,290.3571429,80.17857143 +18275,304.6166667,1619,449,,289.1071429,80.17857143 +18276,304.6333333,1612,450,,287.8571429,80.35714286 +18277,304.65,1603,450,,286.25,80.35714286 +18278,304.6666667,1593,451,,284.4642857,80.53571429 +18279,304.6833333,1583,452,,282.6785714,80.71428571 +18280,304.7,1571,452,,280.5357143,80.71428571 +18281,304.7166667,1559,453,,278.3928571,80.89285714 +18282,304.7333333,1546,453,,276.0714286,80.89285714 +18283,304.75,1532,454,,273.5714286,81.07142857 +18284,304.7666667,1517,455,,270.8928571,81.25 +18285,304.7833333,1502,455,,268.2142857,81.25 +18286,304.8,1487,456,,265.5357143,81.42857143 +18287,304.8166667,1471,457,,262.6785714,81.60714286 +18288,304.8333333,1455,457,,259.8214286,81.60714286 +18289,304.85,1438,457,,256.7857143,81.60714286 +18290,304.8666667,1421,458,,253.75,81.78571429 +18291,304.8833333,1404,458,,250.7142857,81.78571429 +18292,304.9,1387,458,,247.6785714,81.78571429 +18293,304.9166667,1370,458,,244.6428571,81.78571429 +18294,304.9333333,1353,458,,241.6071429,81.78571429 +18295,304.95,1337,458,,238.75,81.78571429 +18296,304.9666667,1321,458,,235.8928571,81.78571429 +18297,304.9833333,1305,458,,233.0357143,81.78571429 +18298,305,1290,457,,230.3571429,81.60714286 +18299,305.0166667,1275,457,,227.6785714,81.60714286 +18300,305.0333333,1261,456,,225.1785714,81.42857143 +18301,305.05,1248,456,,222.8571429,81.42857143 +18302,305.0666667,1235,455,,220.5357143,81.25 +18303,305.0833333,1223,455,,218.3928571,81.25 +18304,305.1,1212,455,,216.4285714,81.25 +18305,305.1166667,1202,454,,214.6428571,81.07142857 +18306,305.1333333,1193,453,,213.0357143,80.89285714 +18307,305.15,1185,453,,211.6071429,80.89285714 +18308,305.1666667,1178,453,,210.3571429,80.89285714 +18309,305.1833333,1173,452,,209.4642857,80.71428571 +18310,305.2,1168,452,,208.5714286,80.71428571 +18311,305.2166667,1164,452,,207.8571429,80.71428571 +18312,305.2333333,1162,452,,207.5,80.71428571 +18313,305.25,1162,452,,207.5,80.71428571 +18314,305.2666667,1162,452,,207.5,80.71428571 +18315,305.2833333,1162,452,,207.5,80.71428571 +18316,305.3,1164,452,,207.8571429,80.71428571 +18317,305.3166667,1167,453,,208.3928571,80.89285714 +18318,305.3333333,1172,453,,209.2857143,80.89285714 +18319,305.35,1178,453,,210.3571429,80.89285714 +18320,305.3666667,1185,454,,211.6071429,81.07142857 +18321,305.3833333,1192,454,,212.8571429,81.07142857 +18322,305.4,1201,455,,214.4642857,81.25 +18323,305.4166667,1211,455,,216.25,81.25 +18324,305.4333333,1222,456,,218.2142857,81.42857143 +18325,305.45,1233,457,,220.1785714,81.60714286 +18326,305.4666667,1246,457,,222.5,81.60714286 +18327,305.4833333,1259,458,,224.8214286,81.78571429 +18328,305.5,1273,458,,227.3214286,81.78571429 +18329,305.5166667,1287,459,,229.8214286,81.96428571 +18330,305.5333333,1302,459,,232.5,81.96428571 +18331,305.55,1318,460,,235.3571429,82.14285714 +18332,305.5666667,1334,460,,238.2142857,82.14285714 +18333,305.5833333,1350,460,,241.0714286,82.14285714 +18334,305.6,1366,460,,243.9285714,82.14285714 +18335,305.6166667,1383,460,,246.9642857,82.14285714 +18336,305.6333333,1400,460,,250,82.14285714 +18337,305.65,1417,459,,253.0357143,81.96428571 +18338,305.6666667,1434,459,,256.0714286,81.96428571 +18339,305.6833333,1450,459,,258.9285714,81.96428571 +18340,305.7,1467,459,,261.9642857,81.96428571 +18341,305.7166667,1483,458,,264.8214286,81.78571429 +18342,305.7333333,1498,457,,267.5,81.60714286 +18343,305.75,1513,457,,270.1785714,81.60714286 +18344,305.7666667,1528,456,,272.8571429,81.42857143 +18345,305.7833333,1542,456,,275.3571429,81.42857143 +18346,305.8,1555,455,,277.6785714,81.25 +18347,305.8166667,1567,454,,279.8214286,81.07142857 +18348,305.8333333,1579,453,,281.9642857,80.89285714 +18349,305.85,1589,452,,283.75,80.71428571 +18350,305.8666667,1599,452,,285.5357143,80.71428571 +18351,305.8833333,1608,451,,287.1428571,80.53571429 +18352,305.9,1616,451,,288.5714286,80.53571429 +18353,305.9166667,1623,450,,289.8214286,80.35714286 +18354,305.9333333,1629,449,,290.8928571,80.17857143 +18355,305.95,1633,449,,291.6071429,80.17857143 +18356,305.9666667,1636,449,,292.1428571,80.17857143 +18357,305.9833333,1638,449,,292.5,80.17857143 +18358,306,1638,449,,292.5,80.17857143 +18359,306.0166667,1638,449,,292.5,80.17857143 +18360,306.0333333,1638,449,,292.5,80.17857143 +18361,306.05,1635,449,,291.9642857,80.17857143 +18362,306.0666667,1632,449,,291.4285714,80.17857143 +18363,306.0833333,1627,449,,290.5357143,80.17857143 +18364,306.1,1621,450,,289.4642857,80.35714286 +18365,306.1166667,1614,450,,288.2142857,80.35714286 +18366,306.1333333,1606,450,,286.7857143,80.35714286 +18367,306.15,1597,451,,285.1785714,80.53571429 +18368,306.1666667,1587,452,,283.3928571,80.71428571 +18369,306.1833333,1576,453,,281.4285714,80.89285714 +18370,306.2,1564,453,,279.2857143,80.89285714 +18371,306.2166667,1551,454,,276.9642857,81.07142857 +18372,306.2333333,1537,455,,274.4642857,81.25 +18373,306.25,1523,455,,271.9642857,81.25 +18374,306.2666667,1509,456,,269.4642857,81.42857143 +18375,306.2833333,1493,457,,266.6071429,81.60714286 +18376,306.3,1478,457,,263.9285714,81.60714286 +18377,306.3166667,1461,458,,260.8928571,81.78571429 +18378,306.3333333,1445,458,,258.0357143,81.78571429 +18379,306.35,1428,458,,255,81.78571429 +18380,306.3666667,1411,459,,251.9642857,81.96428571 +18381,306.3833333,1394,459,,248.9285714,81.96428571 +18382,306.4,1377,459,,245.8928571,81.96428571 +18383,306.4166667,1361,459,,243.0357143,81.96428571 +18384,306.4333333,1344,459,,240,81.96428571 +18385,306.45,1328,459,,237.1428571,81.96428571 +18386,306.4666667,1312,459,,234.2857143,81.96428571 +18387,306.4833333,1296,458,,231.4285714,81.78571429 +18388,306.5,1281,458,,228.75,81.78571429 +18389,306.5166667,1267,457,,226.25,81.60714286 +18390,306.5333333,1253,457,,223.75,81.60714286 +18391,306.55,1240,456,,221.4285714,81.42857143 +18392,306.5666667,1228,456,,219.2857143,81.42857143 +18393,306.5833333,1217,455,,217.3214286,81.25 +18394,306.6,1207,455,,215.5357143,81.25 +18395,306.6166667,1197,454,,213.75,81.07142857 +18396,306.6333333,1188,454,,212.1428571,81.07142857 +18397,306.65,1181,453,,210.8928571,80.89285714 +18398,306.6666667,1174,453,,209.6428571,80.89285714 +18399,306.6833333,1169,453,,208.75,80.89285714 +18400,306.7,1165,453,,208.0357143,80.89285714 +18401,306.7166667,1162,452,,207.5,80.71428571 +18402,306.7333333,1160,452,,207.1428571,80.71428571 +18403,306.75,1160,452,,207.1428571,80.71428571 +18404,306.7666667,1160,452,,207.1428571,80.71428571 +18405,306.7833333,1162,453,,207.5,80.89285714 +18406,306.8,1165,453,,208.0357143,80.89285714 +18407,306.8166667,1169,453,,208.75,80.89285714 +18408,306.8333333,1174,453,,209.6428571,80.89285714 +18409,306.85,1180,454,,210.7142857,81.07142857 +18410,306.8666667,1188,454,,212.1428571,81.07142857 +18411,306.8833333,1196,455,,213.5714286,81.25 +18412,306.9,1205,455,,215.1785714,81.25 +18413,306.9166667,1216,456,,217.1428571,81.42857143 +18414,306.9333333,1227,457,,219.1071429,81.60714286 +18415,306.95,1239,457,,221.25,81.60714286 +18416,306.9666667,1252,458,,223.5714286,81.78571429 +18417,306.9833333,1266,458,,226.0714286,81.78571429 +18418,307,1280,459,,228.5714286,81.96428571 +18419,307.0166667,1295,459,,231.25,81.96428571 +18420,307.0333333,1311,460,,234.1071429,82.14285714 +18421,307.05,1326,460,,236.7857143,82.14285714 +18422,307.0666667,1343,460,,239.8214286,82.14285714 +18423,307.0833333,1359,460,,242.6785714,82.14285714 +18424,307.1,1375,460,,245.5357143,82.14285714 +18425,307.1166667,1393,460,,248.75,82.14285714 +18426,307.1333333,1409,460,,251.6071429,82.14285714 +18427,307.15,1426,460,,254.6428571,82.14285714 +18428,307.1666667,1443,459,,257.6785714,81.96428571 +18429,307.1833333,1459,459,,260.5357143,81.96428571 +18430,307.2,1475,458,,263.3928571,81.78571429 +18431,307.2166667,1491,458,,266.25,81.78571429 +18432,307.2333333,1507,457,,269.1071429,81.60714286 +18433,307.25,1521,456,,271.6071429,81.42857143 +18434,307.2666667,1535,456,,274.1071429,81.42857143 +18435,307.2833333,1549,455,,276.6071429,81.25 +18436,307.3,1562,454,,278.9285714,81.07142857 +18437,307.3166667,1574,454,,281.0714286,81.07142857 +18438,307.3333333,1585,453,,283.0357143,80.89285714 +18439,307.35,1595,452,,284.8214286,80.71428571 +18440,307.3666667,1605,451,,286.6071429,80.53571429 +18441,307.3833333,1613,451,,288.0357143,80.53571429 +18442,307.4,1620,450,,289.2857143,80.35714286 +18443,307.4166667,1627,449,,290.5357143,80.17857143 +18444,307.4333333,1631,449,,291.25,80.17857143 +18445,307.45,1635,449,,291.9642857,80.17857143 +18446,307.4666667,1638,448,,292.5,80 +18447,307.4833333,1639,448,,292.6785714,80 +18448,307.5,1639,448,,292.6785714,80 +18449,307.5166667,1639,448,,292.6785714,80 +18450,307.5333333,1637,448,,292.3214286,80 +18451,307.55,1634,448,,291.7857143,80 +18452,307.5666667,1630,449,,291.0714286,80.17857143 +18453,307.5833333,1625,449,,290.1785714,80.17857143 +18454,307.6,1618,449,,288.9285714,80.17857143 +18455,307.6166667,1610,450,,287.5,80.35714286 +18456,307.6333333,1602,450,,286.0714286,80.35714286 +18457,307.65,1592,451,,284.2857143,80.53571429 +18458,307.6666667,1581,452,,282.3214286,80.71428571 +18459,307.6833333,1570,452,,280.3571429,80.71428571 +18460,307.7,1558,453,,278.2142857,80.89285714 +18461,307.7166667,1545,454,,275.8928571,81.07142857 +18462,307.7333333,1531,454,,273.3928571,81.07142857 +18463,307.75,1516,455,,270.7142857,81.25 +18464,307.7666667,1501,455,,268.0357143,81.25 +18465,307.7833333,1486,456,,265.3571429,81.42857143 +18466,307.8,1470,457,,262.5,81.60714286 +18467,307.8166667,1454,457,,259.6428571,81.60714286 +18468,307.8333333,1437,457,,256.6071429,81.60714286 +18469,307.85,1421,457,,253.75,81.60714286 +18470,307.8666667,1403,458,,250.5357143,81.78571429 +18471,307.8833333,1387,458,,247.6785714,81.78571429 +18472,307.9,1370,458,,244.6428571,81.78571429 +18473,307.9166667,1353,458,,241.6071429,81.78571429 +18474,307.9333333,1337,458,,238.75,81.78571429 +18475,307.95,1321,458,,235.8928571,81.78571429 +18476,307.9666667,1306,458,,233.2142857,81.78571429 +18477,307.9833333,1290,457,,230.3571429,81.60714286 +18478,308,1275,457,,227.6785714,81.60714286 +18479,308.0166667,1261,456,,225.1785714,81.42857143 +18480,308.0333333,1248,456,,222.8571429,81.42857143 +18481,308.05,1236,455,,220.7142857,81.25 +18482,308.0666667,1224,455,,218.5714286,81.25 +18483,308.0833333,1213,454,,216.6071429,81.07142857 +18484,308.1,1203,454,,214.8214286,81.07142857 +18485,308.1166667,1194,453,,213.2142857,80.89285714 +18486,308.1333333,1187,453,,211.9642857,80.89285714 +18487,308.15,1180,453,,210.7142857,80.89285714 +18488,308.1666667,1174,452,,209.6428571,80.71428571 +18489,308.1833333,1169,452,,208.75,80.71428571 +18490,308.2,1166,452,,208.2142857,80.71428571 +18491,308.2166667,1163,452,,207.6785714,80.71428571 +18492,308.2333333,1163,452,,207.6785714,80.71428571 +18493,308.25,1163,452,,207.6785714,80.71428571 +18494,308.2666667,1163,452,,207.6785714,80.71428571 +18495,308.2833333,1166,452,,208.2142857,80.71428571 +18496,308.3,1169,453,,208.75,80.89285714 +18497,308.3166667,1174,453,,209.6428571,80.89285714 +18498,308.3333333,1180,453,,210.7142857,80.89285714 +18499,308.35,1186,454,,211.7857143,81.07142857 +18500,308.3666667,1194,454,,213.2142857,81.07142857 +18501,308.3833333,1203,455,,214.8214286,81.25 +18502,308.4,1213,455,,216.6071429,81.25 +18503,308.4166667,1224,456,,218.5714286,81.42857143 +18504,308.4333333,1236,456,,220.7142857,81.42857143 +18505,308.45,1248,457,,222.8571429,81.60714286 +18506,308.4666667,1262,458,,225.3571429,81.78571429 +18507,308.4833333,1276,458,,227.8571429,81.78571429 +18508,308.5,1290,459,,230.3571429,81.96428571 +18509,308.5166667,1305,459,,233.0357143,81.96428571 +18510,308.5333333,1321,460,,235.8928571,82.14285714 +18511,308.55,1336,460,,238.5714286,82.14285714 +18512,308.5666667,1352,460,,241.4285714,82.14285714 +18513,308.5833333,1369,460,,244.4642857,82.14285714 +18514,308.6,1385,460,,247.3214286,82.14285714 +18515,308.6166667,1403,460,,250.5357143,82.14285714 +18516,308.6333333,1419,460,,253.3928571,82.14285714 +18517,308.65,1436,459,,256.4285714,81.96428571 +18518,308.6666667,1452,459,,259.2857143,81.96428571 +18519,308.6833333,1468,458,,262.1428571,81.78571429 +18520,308.7,1484,458,,265,81.78571429 +18521,308.7166667,1500,457,,267.8571429,81.60714286 +18522,308.7333333,1515,457,,270.5357143,81.60714286 +18523,308.75,1529,456,,273.0357143,81.42857143 +18524,308.7666667,1543,455,,275.5357143,81.25 +18525,308.7833333,1556,454,,277.8571429,81.07142857 +18526,308.8,1568,454,,280,81.07142857 +18527,308.8166667,1579,453,,281.9642857,80.89285714 +18528,308.8333333,1590,452,,283.9285714,80.71428571 +18529,308.85,1600,451,,285.7142857,80.53571429 +18530,308.8666667,1609,451,,287.3214286,80.53571429 +18531,308.8833333,1616,450,,288.5714286,80.35714286 +18532,308.9,1623,449,,289.8214286,80.17857143 +18533,308.9166667,1629,449,,290.8928571,80.17857143 +18534,308.9333333,1633,449,,291.6071429,80.17857143 +18535,308.95,1636,448,,292.1428571,80 +18536,308.9666667,1639,448,,292.6785714,80 +18537,308.9833333,1639,448,,292.6785714,80 +18538,309,1639,448,,292.6785714,80 +18539,309.0166667,1638,448,,292.5,80 +18540,309.0333333,1635,448,,291.9642857,80 +18541,309.05,1631,448,,291.25,80 +18542,309.0666667,1626,449,,290.3571429,80.17857143 +18543,309.0833333,1621,449,,289.4642857,80.17857143 +18544,309.1,1613,450,,288.0357143,80.35714286 +18545,309.1166667,1605,450,,286.6071429,80.35714286 +18546,309.1333333,1596,451,,285,80.53571429 +18547,309.15,1586,451,,283.2142857,80.53571429 +18548,309.1666667,1575,452,,281.25,80.71428571 +18549,309.1833333,1563,453,,279.1071429,80.89285714 +18550,309.2,1550,453,,276.7857143,80.89285714 +18551,309.2166667,1537,454,,274.4642857,81.07142857 +18552,309.2333333,1523,455,,271.9642857,81.25 +18553,309.25,1508,455,,269.2857143,81.25 +18554,309.2666667,1493,456,,266.6071429,81.42857143 +18555,309.2833333,1477,456,,263.75,81.42857143 +18556,309.3,1461,457,,260.8928571,81.60714286 +18557,309.3166667,1445,457,,258.0357143,81.60714286 +18558,309.3333333,1429,458,,255.1785714,81.78571429 +18559,309.35,1412,458,,252.1428571,81.78571429 +18560,309.3666667,1395,458,,249.1071429,81.78571429 +18561,309.3833333,1378,458,,246.0714286,81.78571429 +18562,309.4,1362,458,,243.2142857,81.78571429 +18563,309.4166667,1345,458,,240.1785714,81.78571429 +18564,309.4333333,1329,458,,237.3214286,81.78571429 +18565,309.45,1314,458,,234.6428571,81.78571429 +18566,309.4666667,1298,458,,231.7857143,81.78571429 +18567,309.4833333,1283,457,,229.1071429,81.60714286 +18568,309.5,1269,457,,226.6071429,81.60714286 +18569,309.5166667,1255,456,,224.1071429,81.42857143 +18570,309.5333333,1242,456,,221.7857143,81.42857143 +18571,309.55,1230,455,,219.6428571,81.25 +18572,309.5666667,1219,455,,217.6785714,81.25 +18573,309.5833333,1209,455,,215.8928571,81.25 +18574,309.6,1200,454,,214.2857143,81.07142857 +18575,309.6166667,1191,454,,212.6785714,81.07142857 +18576,309.6333333,1184,453,,211.4285714,80.89285714 +18577,309.65,1178,453,,210.3571429,80.89285714 +18578,309.6666667,1172,452,,209.2857143,80.71428571 +18579,309.6833333,1168,452,,208.5714286,80.71428571 +18580,309.7,1165,452,,208.0357143,80.71428571 +18581,309.7166667,1164,452,,207.8571429,80.71428571 +18582,309.7333333,1164,452,,207.8571429,80.71428571 +18583,309.75,1164,452,,207.8571429,80.71428571 +18584,309.7666667,1166,452,,208.2142857,80.71428571 +18585,309.7833333,1169,452,,208.75,80.71428571 +18586,309.8,1173,453,,209.4642857,80.89285714 +18587,309.8166667,1178,454,,210.3571429,81.07142857 +18588,309.8333333,1184,454,,211.4285714,81.07142857 +18589,309.85,1191,454,,212.6785714,81.07142857 +18590,309.8666667,1200,455,,214.2857143,81.25 +18591,309.8833333,1209,455,,215.8928571,81.25 +18592,309.9,1220,456,,217.8571429,81.42857143 +18593,309.9166667,1231,457,,219.8214286,81.60714286 +18594,309.9333333,1243,457,,221.9642857,81.60714286 +18595,309.95,1256,458,,224.2857143,81.78571429 +18596,309.9666667,1269,458,,226.6071429,81.78571429 +18597,309.9833333,1283,459,,229.1071429,81.96428571 +18598,310,1298,459,,231.7857143,81.96428571 +18599,310.0166667,1314,460,,234.6428571,82.14285714 +18600,310.0333333,1329,460,,237.3214286,82.14285714 +18601,310.05,1345,460,,240.1785714,82.14285714 +18602,310.0666667,1361,460,,243.0357143,82.14285714 +18603,310.0833333,1378,460,,246.0714286,82.14285714 +18604,310.1,1395,460,,249.1071429,82.14285714 +18605,310.1166667,1411,460,,251.9642857,82.14285714 +18606,310.1333333,1428,460,,255,82.14285714 +18607,310.15,1445,459,,258.0357143,81.96428571 +18608,310.1666667,1461,459,,260.8928571,81.96428571 +18609,310.1833333,1477,458,,263.75,81.78571429 +18610,310.2,1492,458,,266.4285714,81.78571429 +18611,310.2166667,1508,457,,269.2857143,81.60714286 +18612,310.2333333,1522,457,,271.7857143,81.60714286 +18613,310.25,1536,456,,274.2857143,81.42857143 +18614,310.2666667,1550,455,,276.7857143,81.25 +18615,310.2833333,1562,454,,278.9285714,81.07142857 +18616,310.3,1574,453,,281.0714286,80.89285714 +18617,310.3166667,1585,453,,283.0357143,80.89285714 +18618,310.3333333,1595,452,,284.8214286,80.71428571 +18619,310.35,1604,451,,286.4285714,80.53571429 +18620,310.3666667,1613,451,,288.0357143,80.53571429 +18621,310.3833333,1620,450,,289.2857143,80.35714286 +18622,310.4,1626,450,,290.3571429,80.35714286 +18623,310.4166667,1630,449,,291.0714286,80.17857143 +18624,310.4333333,1634,449,,291.7857143,80.17857143 +18625,310.45,1637,449,,292.3214286,80.17857143 +18626,310.4666667,1638,449,,292.5,80.17857143 +18627,310.4833333,1638,449,,292.5,80.17857143 +18628,310.5,1638,449,,292.5,80.17857143 +18629,310.5166667,1636,449,,292.1428571,80.17857143 +18630,310.5333333,1633,449,,291.6071429,80.17857143 +18631,310.55,1628,449,,290.7142857,80.17857143 +18632,310.5666667,1623,450,,289.8214286,80.35714286 +18633,310.5833333,1616,450,,288.5714286,80.35714286 +18634,310.6,1609,451,,287.3214286,80.53571429 +18635,310.6166667,1600,451,,285.7142857,80.53571429 +18636,310.6333333,1591,452,,284.1071429,80.71428571 +18637,310.65,1580,452,,282.1428571,80.71428571 +18638,310.6666667,1569,453,,280.1785714,80.89285714 +18639,310.6833333,1557,454,,278.0357143,81.07142857 +18640,310.7,1544,455,,275.7142857,81.25 +18641,310.7166667,1530,455,,273.2142857,81.25 +18642,310.7333333,1516,456,,270.7142857,81.42857143 +18643,310.75,1501,456,,268.0357143,81.42857143 +18644,310.7666667,1485,457,,265.1785714,81.60714286 +18645,310.7833333,1469,457,,262.3214286,81.60714286 +18646,310.8,1453,458,,259.4642857,81.78571429 +18647,310.8166667,1437,458,,256.6071429,81.78571429 +18648,310.8333333,1420,459,,253.5714286,81.96428571 +18649,310.85,1404,459,,250.7142857,81.96428571 +18650,310.8666667,1387,459,,247.6785714,81.96428571 +18651,310.8833333,1370,459,,244.6428571,81.96428571 +18652,310.9,1354,459,,241.7857143,81.96428571 +18653,310.9166667,1338,459,,238.9285714,81.96428571 +18654,310.9333333,1322,459,,236.0714286,81.96428571 +18655,310.95,1307,458,,233.3928571,81.78571429 +18656,310.9666667,1291,458,,230.5357143,81.78571429 +18657,310.9833333,1277,457,,228.0357143,81.60714286 +18658,311,1263,457,,225.5357143,81.60714286 +18659,311.0166667,1250,456,,223.2142857,81.42857143 +18660,311.0333333,1238,456,,221.0714286,81.42857143 +18661,311.05,1226,456,,218.9285714,81.42857143 +18662,311.0666667,1215,455,,216.9642857,81.25 +18663,311.0833333,1206,455,,215.3571429,81.25 +18664,311.1,1196,454,,213.5714286,81.07142857 +18665,311.1166667,1189,454,,212.3214286,81.07142857 +18666,311.1333333,1182,454,,211.0714286,81.07142857 +18667,311.15,1177,453,,210.1785714,80.89285714 +18668,311.1666667,1172,453,,209.2857143,80.89285714 +18669,311.1833333,1169,453,,208.75,80.89285714 +18670,311.2,1166,453,,208.2142857,80.89285714 +18671,311.2166667,1166,453,,208.2142857,80.89285714 +18672,311.2333333,1166,453,,208.2142857,80.89285714 +18673,311.25,1167,453,,208.3928571,80.89285714 +18674,311.2666667,1169,453,,208.75,80.89285714 +18675,311.2833333,1173,454,,209.4642857,81.07142857 +18676,311.3,1177,454,,210.1785714,81.07142857 +18677,311.3166667,1183,454,,211.25,81.07142857 +18678,311.3333333,1190,455,,212.5,81.25 +18679,311.35,1198,455,,213.9285714,81.25 +18680,311.3666667,1206,456,,215.3571429,81.42857143 +18681,311.3833333,1216,456,,217.1428571,81.42857143 +18682,311.4,1227,457,,219.1071429,81.60714286 +18683,311.4166667,1239,457,,221.25,81.60714286 +18684,311.4333333,1251,458,,223.3928571,81.78571429 +18685,311.45,1264,459,,225.7142857,81.96428571 +18686,311.4666667,1278,459,,228.2142857,81.96428571 +18687,311.4833333,1292,459,,230.7142857,81.96428571 +18688,311.5,1308,460,,233.5714286,82.14285714 +18689,311.5166667,1323,460,,236.25,82.14285714 +18690,311.5333333,1339,461,,239.1071429,82.32142857 +18691,311.55,1354,461,,241.7857143,82.32142857 +18692,311.5666667,1371,461,,244.8214286,82.32142857 +18693,311.5833333,1387,461,,247.6785714,82.32142857 +18694,311.6,1404,461,,250.7142857,82.32142857 +18695,311.6166667,1420,461,,253.5714286,82.32142857 +18696,311.6333333,1437,460,,256.6071429,82.14285714 +18697,311.65,1453,460,,259.4642857,82.14285714 +18698,311.6666667,1469,459,,262.3214286,81.96428571 +18699,311.6833333,1485,459,,265.1785714,81.96428571 +18700,311.7,1500,458,,267.8571429,81.78571429 +18701,311.7166667,1515,457,,270.5357143,81.60714286 +18702,311.7333333,1529,456,,273.0357143,81.42857143 +18703,311.75,1543,456,,275.5357143,81.42857143 +18704,311.7666667,1556,455,,277.8571429,81.25 +18705,311.7833333,1568,454,,280,81.07142857 +18706,311.8,1579,454,,281.9642857,81.07142857 +18707,311.8166667,1590,453,,283.9285714,80.89285714 +18708,311.8333333,1599,453,,285.5357143,80.89285714 +18709,311.85,1608,452,,287.1428571,80.71428571 +18710,311.8666667,1616,451,,288.5714286,80.53571429 +18711,311.8833333,1623,451,,289.8214286,80.53571429 +18712,311.9,1628,451,,290.7142857,80.53571429 +18713,311.9166667,1632,450,,291.4285714,80.35714286 +18714,311.9333333,1635,450,,291.9642857,80.35714286 +18715,311.95,1637,450,,292.3214286,80.35714286 +18716,311.9666667,1637,449,,292.3214286,80.17857143 +18717,311.9833333,1637,449,,292.3214286,80.17857143 +18718,312,1636,449,,292.1428571,80.17857143 +18719,312.0166667,1634,450,,291.7857143,80.35714286 +18720,312.0333333,1630,450,,291.0714286,80.35714286 +18721,312.05,1625,450,,290.1785714,80.35714286 +18722,312.0666667,1619,450,,289.1071429,80.35714286 +18723,312.0833333,1612,451,,287.8571429,80.53571429 +18724,312.1,1604,451,,286.4285714,80.53571429 +18725,312.1166667,1595,452,,284.8214286,80.71428571 +18726,312.1333333,1585,453,,283.0357143,80.89285714 +18727,312.15,1574,453,,281.0714286,80.89285714 +18728,312.1666667,1562,454,,278.9285714,81.07142857 +18729,312.1833333,1550,455,,276.7857143,81.25 +18730,312.2,1536,455,,274.2857143,81.25 +18731,312.2166667,1523,456,,271.9642857,81.42857143 +18732,312.2333333,1508,457,,269.2857143,81.60714286 +18733,312.25,1493,457,,266.6071429,81.60714286 +18734,312.2666667,1477,458,,263.75,81.78571429 +18735,312.2833333,1462,459,,261.0714286,81.96428571 +18736,312.3,1445,459,,258.0357143,81.96428571 +18737,312.3166667,1429,459,,255.1785714,81.96428571 +18738,312.3333333,1412,459,,252.1428571,81.96428571 +18739,312.35,1396,459,,249.2857143,81.96428571 +18740,312.3666667,1379,460,,246.25,82.14285714 +18741,312.3833333,1363,460,,243.3928571,82.14285714 +18742,312.4,1346,460,,240.3571429,82.14285714 +18743,312.4166667,1330,460,,237.5,82.14285714 +18744,312.4333333,1315,459,,234.8214286,81.96428571 +18745,312.45,1299,459,,231.9642857,81.96428571 +18746,312.4666667,1285,459,,229.4642857,81.96428571 +18747,312.4833333,1271,458,,226.9642857,81.78571429 +18748,312.5,1257,458,,224.4642857,81.78571429 +18749,312.5166667,1245,457,,222.3214286,81.60714286 +18750,312.5333333,1233,457,,220.1785714,81.60714286 +18751,312.55,1222,456,,218.2142857,81.42857143 +18752,312.5666667,1211,456,,216.25,81.42857143 +18753,312.5833333,1202,455,,214.6428571,81.25 +18754,312.6,1193,455,,213.0357143,81.25 +18755,312.6166667,1186,455,,211.7857143,81.25 +18756,312.6333333,1180,454,,210.7142857,81.07142857 +18757,312.65,1175,454,,209.8214286,81.07142857 +18758,312.6666667,1171,454,,209.1071429,81.07142857 +18759,312.6833333,1169,454,,208.75,81.07142857 +18760,312.7,1167,454,,208.3928571,81.07142857 +18761,312.7166667,1167,454,,208.3928571,81.07142857 +18762,312.7333333,1167,454,,208.3928571,81.07142857 +18763,312.75,1168,454,,208.5714286,81.07142857 +18764,312.7666667,1171,454,,209.1071429,81.07142857 +18765,312.7833333,1175,454,,209.8214286,81.07142857 +18766,312.8,1180,455,,210.7142857,81.25 +18767,312.8166667,1187,455,,211.9642857,81.25 +18768,312.8333333,1194,456,,213.2142857,81.42857143 +18769,312.85,1202,456,,214.6428571,81.42857143 +18770,312.8666667,1212,457,,216.4285714,81.60714286 +18771,312.8833333,1222,457,,218.2142857,81.60714286 +18772,312.9,1233,458,,220.1785714,81.78571429 +18773,312.9166667,1245,458,,222.3214286,81.78571429 +18774,312.9333333,1257,459,,224.4642857,81.96428571 +18775,312.95,1271,460,,226.9642857,82.14285714 +18776,312.9666667,1285,460,,229.4642857,82.14285714 +18777,312.9833333,1299,461,,231.9642857,82.32142857 +18778,313,1315,461,,234.8214286,82.32142857 +18779,313.0166667,1330,461,,237.5,82.32142857 +18780,313.0333333,1346,462,,240.3571429,82.5 +18781,313.05,1362,462,,243.2142857,82.5 +18782,313.0666667,1378,462,,246.0714286,82.5 +18783,313.0833333,1395,461,,249.1071429,82.32142857 +18784,313.1,1411,461,,251.9642857,82.32142857 +18785,313.1166667,1428,461,,255,82.32142857 +18786,313.1333333,1444,460,,257.8571429,82.14285714 +18787,313.15,1460,460,,260.7142857,82.14285714 +18788,313.1666667,1476,459,,263.5714286,81.96428571 +18789,313.1833333,1492,459,,266.4285714,81.96428571 +18790,313.2,1507,458,,269.1071429,81.78571429 +18791,313.2166667,1521,457,,271.6071429,81.60714286 +18792,313.2333333,1535,457,,274.1071429,81.60714286 +18793,313.25,1548,456,,276.4285714,81.42857143 +18794,313.2666667,1561,455,,278.75,81.25 +18795,313.2833333,1573,455,,280.8928571,81.25 +18796,313.3,1583,454,,282.6785714,81.07142857 +18797,313.3166667,1594,453,,284.6428571,80.89285714 +18798,313.3333333,1603,453,,286.25,80.89285714 +18799,313.35,1611,452,,287.6785714,80.71428571 +18800,313.3666667,1618,451,,288.9285714,80.53571429 +18801,313.3833333,1624,451,,290,80.53571429 +18802,313.4,1629,450,,290.8928571,80.35714286 +18803,313.4166667,1633,450,,291.6071429,80.35714286 +18804,313.4333333,1635,450,,291.9642857,80.35714286 +18805,313.45,1636,449,,292.1428571,80.17857143 +18806,313.4666667,1636,449,,292.1428571,80.17857143 +18807,313.4833333,1636,449,,292.1428571,80.17857143 +18808,313.5,1634,449,,291.7857143,80.17857143 +18809,313.5166667,1631,450,,291.25,80.35714286 +18810,313.5333333,1627,450,,290.5357143,80.35714286 +18811,313.55,1621,450,,289.4642857,80.35714286 +18812,313.5666667,1615,450,,288.3928571,80.35714286 +18813,313.5833333,1607,451,,286.9642857,80.53571429 +18814,313.6,1598,452,,285.3571429,80.71428571 +18815,313.6166667,1589,452,,283.75,80.71428571 +18816,313.6333333,1578,453,,281.7857143,80.89285714 +18817,313.65,1567,454,,279.8214286,81.07142857 +18818,313.6666667,1555,454,,277.6785714,81.07142857 +18819,313.6833333,1542,455,,275.3571429,81.25 +18820,313.7,1528,456,,272.8571429,81.42857143 +18821,313.7166667,1514,456,,270.3571429,81.42857143 +18822,313.7333333,1499,457,,267.6785714,81.60714286 +18823,313.75,1484,458,,265,81.78571429 +18824,313.7666667,1468,458,,262.1428571,81.78571429 +18825,313.7833333,1452,458,,259.2857143,81.78571429 +18826,313.8,1436,459,,256.4285714,81.96428571 +18827,313.8166667,1420,459,,253.5714286,81.96428571 +18828,313.8333333,1403,459,,250.5357143,81.96428571 +18829,313.85,1386,459,,247.5,81.96428571 +18830,313.8666667,1370,459,,244.6428571,81.96428571 +18831,313.8833333,1354,460,,241.7857143,82.14285714 +18832,313.9,1337,460,,238.75,82.14285714 +18833,313.9166667,1322,459,,236.0714286,81.96428571 +18834,313.9333333,1306,459,,233.2142857,81.96428571 +18835,313.95,1291,459,,230.5357143,81.96428571 +18836,313.9666667,1277,458,,228.0357143,81.78571429 +18837,313.9833333,1263,458,,225.5357143,81.78571429 +18838,314,1250,457,,223.2142857,81.60714286 +18839,314.0166667,1238,457,,221.0714286,81.60714286 +18840,314.0333333,1226,456,,218.9285714,81.42857143 +18841,314.05,1215,456,,216.9642857,81.42857143 +18842,314.0666667,1206,455,,215.3571429,81.25 +18843,314.0833333,1197,455,,213.75,81.25 +18844,314.1,1189,455,,212.3214286,81.25 +18845,314.1166667,1183,454,,211.25,81.07142857 +18846,314.1333333,1177,454,,210.1785714,81.07142857 +18847,314.15,1173,454,,209.4642857,81.07142857 +18848,314.1666667,1169,454,,208.75,81.07142857 +18849,314.1833333,1167,453,,208.3928571,80.89285714 +18850,314.2,1167,453,,208.3928571,80.89285714 +18851,314.2166667,1167,453,,208.3928571,80.89285714 +18852,314.2333333,1167,453,,208.3928571,80.89285714 +18853,314.25,1169,454,,208.75,81.07142857 +18854,314.2666667,1173,454,,209.4642857,81.07142857 +18855,314.2833333,1177,455,,210.1785714,81.25 +18856,314.3,1183,455,,211.25,81.25 +18857,314.3166667,1190,455,,212.5,81.25 +18858,314.3333333,1198,456,,213.9285714,81.42857143 +18859,314.35,1206,456,,215.3571429,81.42857143 +18860,314.3666667,1216,457,,217.1428571,81.60714286 +18861,314.3833333,1227,457,,219.1071429,81.60714286 +18862,314.4,1238,458,,221.0714286,81.78571429 +18863,314.4166667,1251,459,,223.3928571,81.96428571 +18864,314.4333333,1264,459,,225.7142857,81.96428571 +18865,314.45,1277,460,,228.0357143,82.14285714 +18866,314.4666667,1292,460,,230.7142857,82.14285714 +18867,314.4833333,1307,461,,233.3928571,82.32142857 +18868,314.5,1322,461,,236.0714286,82.32142857 +18869,314.5166667,1338,461,,238.9285714,82.32142857 +18870,314.5333333,1354,461,,241.7857143,82.32142857 +18871,314.55,1370,461,,244.6428571,82.32142857 +18872,314.5666667,1387,461,,247.6785714,82.32142857 +18873,314.5833333,1403,461,,250.5357143,82.32142857 +18874,314.6,1419,461,,253.3928571,82.32142857 +18875,314.6166667,1436,460,,256.4285714,82.14285714 +18876,314.6333333,1452,460,,259.2857143,82.14285714 +18877,314.65,1467,459,,261.9642857,81.96428571 +18878,314.6666667,1483,459,,264.8214286,81.96428571 +18879,314.6833333,1498,458,,267.5,81.78571429 +18880,314.7,1513,458,,270.1785714,81.78571429 +18881,314.7166667,1527,457,,272.6785714,81.60714286 +18882,314.7333333,1540,456,,275,81.42857143 +18883,314.75,1553,456,,277.3214286,81.42857143 +18884,314.7666667,1566,455,,279.6428571,81.25 +18885,314.7833333,1577,454,,281.6071429,81.07142857 +18886,314.8,1587,454,,283.3928571,81.07142857 +18887,314.8166667,1597,453,,285.1785714,80.89285714 +18888,314.8333333,1605,452,,286.6071429,80.71428571 +18889,314.85,1613,452,,288.0357143,80.71428571 +18890,314.8666667,1620,451,,289.2857143,80.53571429 +18891,314.8833333,1625,451,,290.1785714,80.53571429 +18892,314.9,1629,450,,290.8928571,80.35714286 +18893,314.9166667,1633,450,,291.6071429,80.35714286 +18894,314.9333333,1635,449,,291.9642857,80.17857143 +18895,314.95,1635,449,,291.9642857,80.17857143 +18896,314.9666667,1635,449,,291.9642857,80.17857143 +18897,314.9833333,1634,449,,291.7857143,80.17857143 +18898,315,1631,450,,291.25,80.35714286 +18899,315.0166667,1627,450,,290.5357143,80.35714286 +18900,315.0333333,1623,450,,289.8214286,80.35714286 +18901,315.05,1617,450,,288.75,80.35714286 +18902,315.0666667,1610,451,,287.5,80.53571429 +18903,315.0833333,1602,452,,286.0714286,80.71428571 +18904,315.1,1593,452,,284.4642857,80.71428571 +18905,315.1166667,1583,453,,282.6785714,80.89285714 +18906,315.1333333,1572,454,,280.7142857,81.07142857 +18907,315.15,1560,454,,278.5714286,81.07142857 +18908,315.1666667,1547,455,,276.25,81.25 +18909,315.1833333,1534,455,,273.9285714,81.25 +18910,315.2,1520,456,,271.4285714,81.42857143 +18911,315.2166667,1506,456,,268.9285714,81.42857143 +18912,315.2333333,1491,457,,266.25,81.60714286 +18913,315.25,1475,457,,263.3928571,81.60714286 +18914,315.2666667,1459,458,,260.5357143,81.78571429 +18915,315.2833333,1443,458,,257.6785714,81.78571429 +18916,315.3,1427,459,,254.8214286,81.96428571 +18917,315.3166667,1410,459,,251.7857143,81.96428571 +18918,315.3333333,1394,459,,248.9285714,81.96428571 +18919,315.35,1377,459,,245.8928571,81.96428571 +18920,315.3666667,1361,459,,243.0357143,81.96428571 +18921,315.3833333,1345,459,,240.1785714,81.96428571 +18922,315.4,1329,459,,237.3214286,81.96428571 +18923,315.4166667,1313,459,,234.4642857,81.96428571 +18924,315.4333333,1298,459,,231.7857143,81.96428571 +18925,315.45,1283,458,,229.1071429,81.78571429 +18926,315.4666667,1269,458,,226.6071429,81.78571429 +18927,315.4833333,1256,457,,224.2857143,81.60714286 +18928,315.5,1243,457,,221.9642857,81.60714286 +18929,315.5166667,1231,456,,219.8214286,81.42857143 +18930,315.5333333,1220,456,,217.8571429,81.42857143 +18931,315.55,1210,455,,216.0714286,81.25 +18932,315.5666667,1201,455,,214.4642857,81.25 +18933,315.5833333,1193,454,,213.0357143,81.07142857 +18934,315.6,1186,454,,211.7857143,81.07142857 +18935,315.6166667,1180,454,,210.7142857,81.07142857 +18936,315.6333333,1175,454,,209.8214286,81.07142857 +18937,315.65,1171,454,,209.1071429,81.07142857 +18938,315.6666667,1168,453,,208.5714286,80.89285714 +18939,315.6833333,1166,453,,208.2142857,80.89285714 +18940,315.7,1166,453,,208.2142857,80.89285714 +18941,315.7166667,1166,453,,208.2142857,80.89285714 +18942,315.7333333,1168,453,,208.5714286,80.89285714 +18943,315.75,1171,454,,209.1071429,81.07142857 +18944,315.7666667,1175,454,,209.8214286,81.07142857 +18945,315.7833333,1180,454,,210.7142857,81.07142857 +18946,315.8,1186,455,,211.7857143,81.25 +18947,315.8166667,1194,455,,213.2142857,81.25 +18948,315.8333333,1202,456,,214.6428571,81.42857143 +18949,315.85,1212,456,,216.4285714,81.42857143 +18950,315.8666667,1222,456,,218.2142857,81.42857143 +18951,315.8833333,1233,457,,220.1785714,81.60714286 +18952,315.9,1245,458,,222.3214286,81.78571429 +18953,315.9166667,1257,458,,224.4642857,81.78571429 +18954,315.9333333,1271,459,,226.9642857,81.96428571 +18955,315.95,1285,459,,229.4642857,81.96428571 +18956,315.9666667,1299,460,,231.9642857,82.14285714 +18957,315.9833333,1315,460,,234.8214286,82.14285714 +18958,316,1330,461,,237.5,82.32142857 +18959,316.0166667,1346,461,,240.3571429,82.32142857 +18960,316.0333333,1362,461,,243.2142857,82.32142857 +18961,316.05,1378,461,,246.0714286,82.32142857 +18962,316.0666667,1395,461,,249.1071429,82.32142857 +18963,316.0833333,1411,460,,251.9642857,82.14285714 +18964,316.1,1428,460,,255,82.14285714 +18965,316.1166667,1444,460,,257.8571429,82.14285714 +18966,316.1333333,1460,459,,260.7142857,81.96428571 +18967,316.15,1476,458,,263.5714286,81.78571429 +18968,316.1666667,1491,458,,266.25,81.78571429 +18969,316.1833333,1506,457,,268.9285714,81.60714286 +18970,316.2,1521,456,,271.6071429,81.42857143 +18971,316.2166667,1534,456,,273.9285714,81.42857143 +18972,316.2333333,1548,455,,276.4285714,81.25 +18973,316.25,1560,454,,278.5714286,81.07142857 +18974,316.2666667,1572,454,,280.7142857,81.07142857 +18975,316.2833333,1582,453,,282.5,80.89285714 +18976,316.3,1592,452,,284.2857143,80.71428571 +18977,316.3166667,1601,452,,285.8928571,80.71428571 +18978,316.3333333,1609,451,,287.3214286,80.53571429 +18979,316.35,1616,450,,288.5714286,80.35714286 +18980,316.3666667,1622,450,,289.6428571,80.35714286 +18981,316.3833333,1627,449,,290.5357143,80.17857143 +18982,316.4,1631,449,,291.25,80.17857143 +18983,316.4166667,1633,449,,291.6071429,80.17857143 +18984,316.4333333,1634,449,,291.7857143,80.17857143 +18985,316.45,1634,449,,291.7857143,80.17857143 +18986,316.4666667,1634,449,,291.7857143,80.17857143 +18987,316.4833333,1632,449,,291.4285714,80.17857143 +18988,316.5,1629,449,,290.8928571,80.17857143 +18989,316.5166667,1625,449,,290.1785714,80.17857143 +18990,316.5333333,1619,449,,289.1071429,80.17857143 +18991,316.55,1613,450,,288.0357143,80.35714286 +18992,316.5666667,1606,450,,286.7857143,80.35714286 +18993,316.5833333,1597,451,,285.1785714,80.53571429 +18994,316.6,1587,451,,283.3928571,80.53571429 +18995,316.6166667,1577,452,,281.6071429,80.71428571 +18996,316.6333333,1565,452,,279.4642857,80.71428571 +18997,316.65,1553,453,,277.3214286,80.89285714 +18998,316.6666667,1540,454,,275,81.07142857 +18999,316.6833333,1527,455,,272.6785714,81.25 +19000,316.7,1512,455,,270,81.25 +19001,316.7166667,1498,456,,267.5,81.42857143 +19002,316.7333333,1482,456,,264.6428571,81.42857143 +19003,316.75,1467,457,,261.9642857,81.60714286 +19004,316.7666667,1451,457,,259.1071429,81.60714286 +19005,316.7833333,1435,458,,256.25,81.78571429 +19006,316.8,1418,458,,253.2142857,81.78571429 +19007,316.8166667,1402,458,,250.3571429,81.78571429 +19008,316.8333333,1385,458,,247.3214286,81.78571429 +19009,316.85,1369,458,,244.4642857,81.78571429 +19010,316.8666667,1353,458,,241.6071429,81.78571429 +19011,316.8833333,1337,458,,238.75,81.78571429 +19012,316.9,1321,458,,235.8928571,81.78571429 +19013,316.9166667,1306,458,,233.2142857,81.78571429 +19014,316.9333333,1291,458,,230.5357143,81.78571429 +19015,316.95,1276,457,,227.8571429,81.60714286 +19016,316.9666667,1263,457,,225.5357143,81.60714286 +19017,316.9833333,1250,456,,223.2142857,81.42857143 +19018,317,1237,456,,220.8928571,81.42857143 +19019,317.0166667,1226,456,,218.9285714,81.42857143 +19020,317.0333333,1215,455,,216.9642857,81.25 +19021,317.05,1206,455,,215.3571429,81.25 +19022,317.0666667,1197,454,,213.75,81.07142857 +19023,317.0833333,1190,454,,212.5,81.07142857 +19024,317.1,1183,454,,211.25,81.07142857 +19025,317.1166667,1178,453,,210.3571429,80.89285714 +19026,317.1333333,1173,453,,209.4642857,80.89285714 +19027,317.15,1170,453,,208.9285714,80.89285714 +19028,317.1666667,1168,453,,208.5714286,80.89285714 +19029,317.1833333,1168,453,,208.5714286,80.89285714 +19030,317.2,1168,453,,208.5714286,80.89285714 +19031,317.2166667,1168,453,,208.5714286,80.89285714 +19032,317.2333333,1170,453,,208.9285714,80.89285714 +19033,317.25,1174,453,,209.6428571,80.89285714 +19034,317.2666667,1179,454,,210.5357143,81.07142857 +19035,317.2833333,1184,454,,211.4285714,81.07142857 +19036,317.3,1191,455,,212.6785714,81.25 +19037,317.3166667,1199,455,,214.1071429,81.25 +19038,317.3333333,1208,455,,215.7142857,81.25 +19039,317.35,1218,456,,217.5,81.42857143 +19040,317.3666667,1228,456,,219.2857143,81.42857143 +19041,317.3833333,1240,457,,221.4285714,81.60714286 +19042,317.4,1252,458,,223.5714286,81.78571429 +19043,317.4166667,1265,458,,225.8928571,81.78571429 +19044,317.4333333,1278,459,,228.2142857,81.96428571 +19045,317.45,1293,459,,230.8928571,81.96428571 +19046,317.4666667,1308,460,,233.5714286,82.14285714 +19047,317.4833333,1323,460,,236.25,82.14285714 +19048,317.5,1339,460,,239.1071429,82.14285714 +19049,317.5166667,1354,460,,241.7857143,82.14285714 +19050,317.5333333,1371,460,,244.8214286,82.14285714 +19051,317.55,1387,460,,247.6785714,82.14285714 +19052,317.5666667,1403,460,,250.5357143,82.14285714 +19053,317.5833333,1420,460,,253.5714286,82.14285714 +19054,317.6,1436,460,,256.4285714,82.14285714 +19055,317.6166667,1452,459,,259.2857143,81.96428571 +19056,317.6333333,1468,458,,262.1428571,81.78571429 +19057,317.65,1484,458,,265,81.78571429 +19058,317.6666667,1499,457,,267.6785714,81.60714286 +19059,317.6833333,1513,456,,270.1785714,81.42857143 +19060,317.7,1527,456,,272.6785714,81.42857143 +19061,317.7166667,1541,455,,275.1785714,81.25 +19062,317.7333333,1554,455,,277.5,81.25 +19063,317.75,1566,454,,279.6428571,81.07142857 +19064,317.7666667,1577,453,,281.6071429,80.89285714 +19065,317.7833333,1587,452,,283.3928571,80.71428571 +19066,317.8,1597,452,,285.1785714,80.71428571 +19067,317.8166667,1606,451,,286.7857143,80.53571429 +19068,317.8333333,1613,451,,288.0357143,80.53571429 +19069,317.85,1619,450,,289.1071429,80.35714286 +19070,317.8666667,1625,449,,290.1785714,80.17857143 +19071,317.8833333,1629,449,,290.8928571,80.17857143 +19072,317.9,1632,449,,291.4285714,80.17857143 +19073,317.9166667,1634,449,,291.7857143,80.17857143 +19074,317.9333333,1634,449,,291.7857143,80.17857143 +19075,317.95,1634,449,,291.7857143,80.17857143 +19076,317.9666667,1633,449,,291.6071429,80.17857143 +19077,317.9833333,1630,449,,291.0714286,80.17857143 +19078,318,1627,449,,290.5357143,80.17857143 +19079,318.0166667,1622,449,,289.6428571,80.17857143 +19080,318.0333333,1616,450,,288.5714286,80.35714286 +19081,318.05,1609,450,,287.3214286,80.35714286 +19082,318.0666667,1601,451,,285.8928571,80.53571429 +19083,318.0833333,1592,451,,284.2857143,80.53571429 +19084,318.1,1581,452,,282.3214286,80.71428571 +19085,318.1166667,1570,452,,280.3571429,80.71428571 +19086,318.1333333,1559,453,,278.3928571,80.89285714 +19087,318.15,1546,454,,276.0714286,81.07142857 +19088,318.1666667,1533,454,,273.75,81.07142857 +19089,318.1833333,1519,455,,271.25,81.25 +19090,318.2,1504,456,,268.5714286,81.42857143 +19091,318.2166667,1489,456,,265.8928571,81.42857143 +19092,318.2333333,1474,457,,263.2142857,81.60714286 +19093,318.25,1458,457,,260.3571429,81.60714286 +19094,318.2666667,1442,458,,257.5,81.78571429 +19095,318.2833333,1426,458,,254.6428571,81.78571429 +19096,318.3,1410,458,,251.7857143,81.78571429 +19097,318.3166667,1393,458,,248.75,81.78571429 +19098,318.3333333,1377,459,,245.8928571,81.96428571 +19099,318.35,1360,459,,242.8571429,81.96428571 +19100,318.3666667,1344,459,,240,81.96428571 +19101,318.3833333,1328,459,,237.1428571,81.96428571 +19102,318.4,1313,458,,234.4642857,81.78571429 +19103,318.4166667,1298,458,,231.7857143,81.78571429 +19104,318.4333333,1284,458,,229.2857143,81.78571429 +19105,318.45,1270,457,,226.7857143,81.60714286 +19106,318.4666667,1256,457,,224.2857143,81.60714286 +19107,318.4833333,1244,456,,222.1428571,81.42857143 +19108,318.5,1232,456,,220,81.42857143 +19109,318.5166667,1221,455,,218.0357143,81.25 +19110,318.5333333,1211,455,,216.25,81.25 +19111,318.55,1202,454,,214.6428571,81.07142857 +19112,318.5666667,1194,454,,213.2142857,81.07142857 +19113,318.5833333,1187,453,,211.9642857,80.89285714 +19114,318.6,1181,453,,210.8928571,80.89285714 +19115,318.6166667,1176,453,,210,80.89285714 +19116,318.6333333,1172,453,,209.2857143,80.89285714 +19117,318.65,1169,453,,208.75,80.89285714 +19118,318.6666667,1168,453,,208.5714286,80.89285714 +19119,318.6833333,1168,453,,208.5714286,80.89285714 +19120,318.7,1168,453,,208.5714286,80.89285714 +19121,318.7166667,1170,453,,208.9285714,80.89285714 +19122,318.7333333,1173,453,,209.4642857,80.89285714 +19123,318.75,1177,454,,210.1785714,81.07142857 +19124,318.7666667,1182,454,,211.0714286,81.07142857 +19125,318.7833333,1188,454,,212.1428571,81.07142857 +19126,318.8,1196,455,,213.5714286,81.25 +19127,318.8166667,1204,455,,215,81.25 +19128,318.8333333,1213,456,,216.6071429,81.42857143 +19129,318.85,1224,456,,218.5714286,81.42857143 +19130,318.8666667,1235,457,,220.5357143,81.60714286 +19131,318.8833333,1247,457,,222.6785714,81.60714286 +19132,318.9,1259,458,,224.8214286,81.78571429 +19133,318.9166667,1273,458,,227.3214286,81.78571429 +19134,318.9333333,1286,459,,229.6428571,81.96428571 +19135,318.95,1301,459,,232.3214286,81.96428571 +19136,318.9666667,1317,460,,235.1785714,82.14285714 +19137,318.9833333,1332,460,,237.8571429,82.14285714 +19138,319,1348,460,,240.7142857,82.14285714 +19139,319.0166667,1364,460,,243.5714286,82.14285714 +19140,319.0333333,1380,460,,246.4285714,82.14285714 +19141,319.05,1396,460,,249.2857143,82.14285714 +19142,319.0666667,1412,460,,252.1428571,82.14285714 +19143,319.0833333,1429,460,,255.1785714,82.14285714 +19144,319.1,1445,459,,258.0357143,81.96428571 +19145,319.1166667,1461,459,,260.8928571,81.96428571 +19146,319.1333333,1477,458,,263.75,81.78571429 +19147,319.15,1492,457,,266.4285714,81.60714286 +19148,319.1666667,1507,457,,269.1071429,81.60714286 +19149,319.1833333,1521,456,,271.6071429,81.42857143 +19150,319.2,1535,455,,274.1071429,81.25 +19151,319.2166667,1548,455,,276.4285714,81.25 +19152,319.2333333,1561,454,,278.75,81.07142857 +19153,319.25,1572,453,,280.7142857,80.89285714 +19154,319.2666667,1583,453,,282.6785714,80.89285714 +19155,319.2833333,1593,452,,284.4642857,80.71428571 +19156,319.3,1602,451,,286.0714286,80.53571429 +19157,319.3166667,1609,451,,287.3214286,80.53571429 +19158,319.3333333,1616,450,,288.5714286,80.35714286 +19159,319.35,1622,450,,289.6428571,80.35714286 +19160,319.3666667,1627,449,,290.5357143,80.17857143 +19161,319.3833333,1630,449,,291.0714286,80.17857143 +19162,319.4,1633,449,,291.6071429,80.17857143 +19163,319.4166667,1634,448,,291.7857143,80 +19164,319.4333333,1634,448,,291.7857143,80 +19165,319.45,1634,448,,291.7857143,80 +19166,319.4666667,1631,448,,291.25,80 +19167,319.4833333,1628,449,,290.7142857,80.17857143 +19168,319.5,1624,449,,290,80.17857143 +19169,319.5166667,1618,449,,288.9285714,80.17857143 +19170,319.5333333,1612,450,,287.8571429,80.35714286 +19171,319.55,1604,450,,286.4285714,80.35714286 +19172,319.5666667,1596,451,,285,80.53571429 +19173,319.5833333,1586,451,,283.2142857,80.53571429 +19174,319.6,1576,452,,281.4285714,80.71428571 +19175,319.6166667,1564,453,,279.2857143,80.89285714 +19176,319.6333333,1552,453,,277.1428571,80.89285714 +19177,319.65,1539,454,,274.8214286,81.07142857 +19178,319.6666667,1526,454,,272.5,81.07142857 +19179,319.6833333,1512,455,,270,81.25 +19180,319.7,1497,456,,267.3214286,81.42857143 +19181,319.7166667,1482,456,,264.6428571,81.42857143 +19182,319.7333333,1466,456,,261.7857143,81.42857143 +19183,319.75,1450,457,,258.9285714,81.60714286 +19184,319.7666667,1434,457,,256.0714286,81.60714286 +19185,319.7833333,1418,458,,253.2142857,81.78571429 +19186,319.8,1401,458,,250.1785714,81.78571429 +19187,319.8166667,1385,458,,247.3214286,81.78571429 +19188,319.8333333,1369,458,,244.4642857,81.78571429 +19189,319.85,1353,458,,241.6071429,81.78571429 +19190,319.8666667,1337,458,,238.75,81.78571429 +19191,319.8833333,1321,458,,235.8928571,81.78571429 +19192,319.9,1306,458,,233.2142857,81.78571429 +19193,319.9166667,1291,457,,230.5357143,81.60714286 +19194,319.9333333,1277,457,,228.0357143,81.60714286 +19195,319.95,1264,457,,225.7142857,81.60714286 +19196,319.9666667,1251,456,,223.3928571,81.42857143 +19197,319.9833333,1239,455,,221.25,81.25 +19198,320,1227,455,,219.1071429,81.25 +19199,320.0166667,1217,455,,217.3214286,81.25 +19200,320.0333333,1208,454,,215.7142857,81.07142857 +19201,320.05,1199,454,,214.1071429,81.07142857 +19202,320.0666667,1192,453,,212.8571429,80.89285714 +19203,320.0833333,1185,453,,211.6071429,80.89285714 +19204,320.1,1180,453,,210.7142857,80.89285714 +19205,320.1166667,1175,453,,209.8214286,80.89285714 +19206,320.1333333,1172,452,,209.2857143,80.71428571 +19207,320.15,1170,452,,208.9285714,80.71428571 +19208,320.1666667,1170,452,,208.9285714,80.71428571 +19209,320.1833333,1170,452,,208.9285714,80.71428571 +19210,320.2,1170,453,,208.9285714,80.89285714 +19211,320.2166667,1173,453,,209.4642857,80.89285714 +19212,320.2333333,1177,453,,210.1785714,80.89285714 +19213,320.25,1181,454,,210.8928571,81.07142857 +19214,320.2666667,1187,454,,211.9642857,81.07142857 +19215,320.2833333,1194,454,,213.2142857,81.07142857 +19216,320.3,1202,455,,214.6428571,81.25 +19217,320.3166667,1211,455,,216.25,81.25 +19218,320.3333333,1220,456,,217.8571429,81.42857143 +19219,320.35,1231,456,,219.8214286,81.42857143 +19220,320.3666667,1242,457,,221.7857143,81.60714286 +19221,320.3833333,1255,457,,224.1071429,81.60714286 +19222,320.4,1267,458,,226.25,81.78571429 +19223,320.4166667,1281,459,,228.75,81.96428571 +19224,320.4333333,1295,459,,231.25,81.96428571 +19225,320.45,1310,459,,233.9285714,81.96428571 +19226,320.4666667,1325,460,,236.6071429,82.14285714 +19227,320.4833333,1341,460,,239.4642857,82.14285714 +19228,320.5,1356,460,,242.1428571,82.14285714 +19229,320.5166667,1372,460,,245,82.14285714 +19230,320.5333333,1388,460,,247.8571429,82.14285714 +19231,320.55,1405,460,,250.8928571,82.14285714 +19232,320.5666667,1421,459,,253.75,81.96428571 +19233,320.5833333,1437,459,,256.6071429,81.96428571 +19234,320.6,1453,459,,259.4642857,81.96428571 +19235,320.6166667,1469,458,,262.3214286,81.78571429 +19236,320.6333333,1484,458,,265,81.78571429 +19237,320.65,1499,457,,267.6785714,81.60714286 +19238,320.6666667,1514,456,,270.3571429,81.42857143 +19239,320.6833333,1528,456,,272.8571429,81.42857143 +19240,320.7,1541,455,,275.1785714,81.25 +19241,320.7166667,1553,454,,277.3214286,81.07142857 +19242,320.7333333,1565,453,,279.4642857,80.89285714 +19243,320.75,1576,453,,281.4285714,80.89285714 +19244,320.7666667,1587,452,,283.3928571,80.71428571 +19245,320.7833333,1596,451,,285,80.53571429 +19246,320.8,1604,451,,286.4285714,80.53571429 +19247,320.8166667,1612,450,,287.8571429,80.35714286 +19248,320.8333333,1618,449,,288.9285714,80.17857143 +19249,320.85,1623,449,,289.8214286,80.17857143 +19250,320.8666667,1627,449,,290.5357143,80.17857143 +19251,320.8833333,1630,448,,291.0714286,80 +19252,320.9,1632,448,,291.4285714,80 +19253,320.9166667,1632,448,,291.4285714,80 +19254,320.9333333,1632,448,,291.4285714,80 +19255,320.95,1631,448,,291.25,80 +19256,320.9666667,1628,448,,290.7142857,80 +19257,320.9833333,1624,449,,290,80.17857143 +19258,321,1619,449,,289.1071429,80.17857143 +19259,321.0166667,1613,449,,288.0357143,80.17857143 +19260,321.0333333,1606,450,,286.7857143,80.35714286 +19261,321.05,1598,450,,285.3571429,80.35714286 +19262,321.0666667,1589,451,,283.75,80.53571429 +19263,321.0833333,1579,451,,281.9642857,80.53571429 +19264,321.1,1568,452,,280,80.71428571 +19265,321.1166667,1557,453,,278.0357143,80.89285714 +19266,321.1333333,1544,453,,275.7142857,80.89285714 +19267,321.15,1531,454,,273.3928571,81.07142857 +19268,321.1666667,1517,455,,270.8928571,81.25 +19269,321.1833333,1503,455,,268.3928571,81.25 +19270,321.2,1488,456,,265.7142857,81.42857143 +19271,321.2166667,1472,456,,262.8571429,81.42857143 +19272,321.2333333,1457,457,,260.1785714,81.60714286 +19273,321.25,1441,457,,257.3214286,81.60714286 +19274,321.2666667,1424,457,,254.2857143,81.60714286 +19275,321.2833333,1408,458,,251.4285714,81.78571429 +19276,321.3,1392,458,,248.5714286,81.78571429 +19277,321.3166667,1376,458,,245.7142857,81.78571429 +19278,321.3333333,1360,458,,242.8571429,81.78571429 +19279,321.35,1344,458,,240,81.78571429 +19280,321.3666667,1329,458,,237.3214286,81.78571429 +19281,321.3833333,1313,458,,234.4642857,81.78571429 +19282,321.4,1298,458,,231.7857143,81.78571429 +19283,321.4166667,1284,457,,229.2857143,81.60714286 +19284,321.4333333,1270,457,,226.7857143,81.60714286 +19285,321.45,1257,456,,224.4642857,81.42857143 +19286,321.4666667,1245,456,,222.3214286,81.42857143 +19287,321.4833333,1233,455,,220.1785714,81.25 +19288,321.5,1222,455,,218.2142857,81.25 +19289,321.5166667,1213,454,,216.6071429,81.07142857 +19290,321.5333333,1204,454,,215,81.07142857 +19291,321.55,1196,454,,213.5714286,81.07142857 +19292,321.5666667,1189,453,,212.3214286,80.89285714 +19293,321.5833333,1183,453,,211.25,80.89285714 +19294,321.6,1178,453,,210.3571429,80.89285714 +19295,321.6166667,1174,453,,209.6428571,80.89285714 +19296,321.6333333,1171,453,,209.1071429,80.89285714 +19297,321.65,1170,453,,208.9285714,80.89285714 +19298,321.6666667,1170,453,,208.9285714,80.89285714 +19299,321.6833333,1170,453,,208.9285714,80.89285714 +19300,321.7,1172,453,,209.2857143,80.89285714 +19301,321.7166667,1175,453,,209.8214286,80.89285714 +19302,321.7333333,1179,453,,210.5357143,80.89285714 +19303,321.75,1184,454,,211.4285714,81.07142857 +19304,321.7666667,1191,454,,212.6785714,81.07142857 +19305,321.7833333,1198,454,,213.9285714,81.07142857 +19306,321.8,1206,455,,215.3571429,81.25 +19307,321.8166667,1215,455,,216.9642857,81.25 +19308,321.8333333,1226,456,,218.9285714,81.42857143 +19309,321.85,1237,457,,220.8928571,81.60714286 +19310,321.8666667,1248,457,,222.8571429,81.60714286 +19311,321.8833333,1261,458,,225.1785714,81.78571429 +19312,321.9,1274,458,,227.5,81.78571429 +19313,321.9166667,1288,458,,230,81.78571429 +19314,321.9333333,1302,459,,232.5,81.96428571 +19315,321.95,1317,459,,235.1785714,81.96428571 +19316,321.9666667,1332,460,,237.8571429,82.14285714 +19317,321.9833333,1348,460,,240.7142857,82.14285714 +19318,322,1364,460,,243.5714286,82.14285714 +19319,322.0166667,1380,460,,246.4285714,82.14285714 +19320,322.0333333,1396,460,,249.2857143,82.14285714 +19321,322.05,1412,459,,252.1428571,81.96428571 +19322,322.0666667,1428,459,,255,81.96428571 +19323,322.0833333,1444,458,,257.8571429,81.78571429 +19324,322.1,1460,458,,260.7142857,81.78571429 +19325,322.1166667,1475,458,,263.3928571,81.78571429 +19326,322.1333333,1490,457,,266.0714286,81.60714286 +19327,322.15,1505,457,,268.75,81.60714286 +19328,322.1666667,1519,456,,271.25,81.42857143 +19329,322.1833333,1533,455,,273.75,81.25 +19330,322.2,1545,454,,275.8928571,81.07142857 +19331,322.2166667,1558,454,,278.2142857,81.07142857 +19332,322.2333333,1569,453,,280.1785714,80.89285714 +19333,322.25,1580,452,,282.1428571,80.71428571 +19334,322.2666667,1590,452,,283.9285714,80.71428571 +19335,322.2833333,1598,451,,285.3571429,80.53571429 +19336,322.3,1606,450,,286.7857143,80.35714286 +19337,322.3166667,1613,450,,288.0357143,80.35714286 +19338,322.3333333,1619,449,,289.1071429,80.17857143 +19339,322.35,1623,449,,289.8214286,80.17857143 +19340,322.3666667,1627,449,,290.5357143,80.17857143 +19341,322.3833333,1629,448,,290.8928571,80 +19342,322.4,1630,448,,291.0714286,80 +19343,322.4166667,1630,448,,291.0714286,80 +19344,322.4333333,1630,448,,291.0714286,80 +19345,322.45,1628,448,,290.7142857,80 +19346,322.4666667,1625,449,,290.1785714,80.17857143 +19347,322.4833333,1620,449,,289.2857143,80.17857143 +19348,322.5,1615,449,,288.3928571,80.17857143 +19349,322.5166667,1608,449,,287.1428571,80.17857143 +19350,322.5333333,1601,450,,285.8928571,80.35714286 +19351,322.55,1592,451,,284.2857143,80.53571429 +19352,322.5666667,1583,451,,282.6785714,80.53571429 +19353,322.5833333,1572,452,,280.7142857,80.71428571 +19354,322.6,1561,453,,278.75,80.89285714 +19355,322.6166667,1549,453,,276.6071429,80.89285714 +19356,322.6333333,1536,454,,274.2857143,81.07142857 +19357,322.65,1523,455,,271.9642857,81.25 +19358,322.6666667,1509,455,,269.4642857,81.25 +19359,322.6833333,1494,456,,266.7857143,81.42857143 +19360,322.7,1479,456,,264.1071429,81.42857143 +19361,322.7166667,1464,457,,261.4285714,81.60714286 +19362,322.7333333,1448,457,,258.5714286,81.60714286 +19363,322.75,1432,458,,255.7142857,81.78571429 +19364,322.7666667,1416,458,,252.8571429,81.78571429 +19365,322.7833333,1399,458,,249.8214286,81.78571429 +19366,322.8,1383,458,,246.9642857,81.78571429 +19367,322.8166667,1367,458,,244.1071429,81.78571429 +19368,322.8333333,1351,458,,241.25,81.78571429 +19369,322.85,1336,458,,238.5714286,81.78571429 +19370,322.8666667,1320,458,,235.7142857,81.78571429 +19371,322.8833333,1306,458,,233.2142857,81.78571429 +19372,322.9,1291,458,,230.5357143,81.78571429 +19373,322.9166667,1277,457,,228.0357143,81.60714286 +19374,322.9333333,1264,456,,225.7142857,81.42857143 +19375,322.95,1251,456,,223.3928571,81.42857143 +19376,322.9666667,1239,456,,221.25,81.42857143 +19377,322.9833333,1228,455,,219.2857143,81.25 +19378,323,1217,455,,217.3214286,81.25 +19379,323.0166667,1208,454,,215.7142857,81.07142857 +19380,323.0333333,1200,454,,214.2857143,81.07142857 +19381,323.05,1192,454,,212.8571429,81.07142857 +19382,323.0666667,1186,454,,211.7857143,81.07142857 +19383,323.0833333,1181,453,,210.8928571,80.89285714 +19384,323.1,1176,453,,210,80.89285714 +19385,323.1166667,1173,453,,209.4642857,80.89285714 +19386,323.1333333,1171,453,,209.1071429,80.89285714 +19387,323.15,1171,453,,209.1071429,80.89285714 +19388,323.1666667,1171,453,,209.1071429,80.89285714 +19389,323.1833333,1172,453,,209.2857143,80.89285714 +19390,323.2,1174,454,,209.6428571,81.07142857 +19391,323.2166667,1178,454,,210.3571429,81.07142857 +19392,323.2333333,1183,454,,211.25,81.07142857 +19393,323.25,1188,454,,212.1428571,81.07142857 +19394,323.2666667,1195,455,,213.3928571,81.25 +19395,323.2833333,1203,455,,214.8214286,81.25 +19396,323.3,1211,456,,216.25,81.42857143 +19397,323.3166667,1221,456,,218.0357143,81.42857143 +19398,323.3333333,1231,457,,219.8214286,81.60714286 +19399,323.35,1243,457,,221.9642857,81.60714286 +19400,323.3666667,1255,457,,224.1071429,81.60714286 +19401,323.3833333,1268,458,,226.4285714,81.78571429 +19402,323.4,1281,459,,228.75,81.96428571 +19403,323.4166667,1296,459,,231.4285714,81.96428571 +19404,323.4333333,1310,459,,233.9285714,81.96428571 +19405,323.45,1325,460,,236.6071429,82.14285714 +19406,323.4666667,1341,460,,239.4642857,82.14285714 +19407,323.4833333,1356,460,,242.1428571,82.14285714 +19408,323.5,1372,460,,245,82.14285714 +19409,323.5166667,1388,460,,247.8571429,82.14285714 +19410,323.5333333,1404,460,,250.7142857,82.14285714 +19411,323.55,1420,459,,253.5714286,81.96428571 +19412,323.5666667,1436,459,,256.4285714,81.96428571 +19413,323.5833333,1452,458,,259.2857143,81.78571429 +19414,323.6,1468,458,,262.1428571,81.78571429 +19415,323.6166667,1483,458,,264.8214286,81.78571429 +19416,323.6333333,1498,457,,267.5,81.60714286 +19417,323.65,1512,457,,270,81.60714286 +19418,323.6666667,1526,456,,272.5,81.42857143 +19419,323.6833333,1539,455,,274.8214286,81.25 +19420,323.7,1551,454,,276.9642857,81.07142857 +19421,323.7166667,1563,454,,279.1071429,81.07142857 +19422,323.7333333,1575,453,,281.25,80.89285714 +19423,323.75,1585,452,,283.0357143,80.71428571 +19424,323.7666667,1594,452,,284.6428571,80.71428571 +19425,323.7833333,1602,451,,286.0714286,80.53571429 +19426,323.8,1609,450,,287.3214286,80.35714286 +19427,323.8166667,1615,450,,288.3928571,80.35714286 +19428,323.8333333,1621,449,,289.4642857,80.17857143 +19429,323.85,1625,449,,290.1785714,80.17857143 +19430,323.8666667,1628,449,,290.7142857,80.17857143 +19431,323.8833333,1629,449,,290.8928571,80.17857143 +19432,323.9,1629,449,,290.8928571,80.17857143 +19433,323.9166667,1629,449,,290.8928571,80.17857143 +19434,323.9333333,1629,449,,290.8928571,80.17857143 +19435,323.95,1626,449,,290.3571429,80.17857143 +19436,323.9666667,1622,449,,289.6428571,80.17857143 +19437,323.9833333,1617,449,,288.75,80.17857143 +19438,324,1611,449,,287.6785714,80.17857143 +19439,324.0166667,1604,450,,286.4285714,80.35714286 +19440,324.0333333,1596,450,,285,80.35714286 +19441,324.05,1587,451,,283.3928571,80.53571429 +19442,324.0666667,1577,452,,281.6071429,80.71428571 +19443,324.0833333,1566,452,,279.6428571,80.71428571 +19444,324.1,1555,453,,277.6785714,80.89285714 +19445,324.1166667,1542,454,,275.3571429,81.07142857 +19446,324.1333333,1529,454,,273.0357143,81.07142857 +19447,324.15,1516,455,,270.7142857,81.25 +19448,324.1666667,1502,455,,268.2142857,81.25 +19449,324.1833333,1486,456,,265.3571429,81.42857143 +19450,324.2,1471,456,,262.6785714,81.42857143 +19451,324.2166667,1456,457,,260,81.60714286 +19452,324.2333333,1440,457,,257.1428571,81.60714286 +19453,324.25,1423,458,,254.1071429,81.78571429 +19454,324.2666667,1407,458,,251.25,81.78571429 +19455,324.2833333,1391,458,,248.3928571,81.78571429 +19456,324.3,1375,458,,245.5357143,81.78571429 +19457,324.3166667,1359,458,,242.6785714,81.78571429 +19458,324.3333333,1344,458,,240,81.78571429 +19459,324.35,1328,458,,237.1428571,81.78571429 +19460,324.3666667,1313,458,,234.4642857,81.78571429 +19461,324.3833333,1298,458,,231.7857143,81.78571429 +19462,324.4,1284,457,,229.2857143,81.60714286 +19463,324.4166667,1270,457,,226.7857143,81.60714286 +19464,324.4333333,1257,456,,224.4642857,81.42857143 +19465,324.45,1245,456,,222.3214286,81.42857143 +19466,324.4666667,1234,455,,220.3571429,81.25 +19467,324.4833333,1223,455,,218.3928571,81.25 +19468,324.5,1213,454,,216.6071429,81.07142857 +19469,324.5166667,1204,454,,215,81.07142857 +19470,324.5333333,1196,453,,213.5714286,80.89285714 +19471,324.55,1189,453,,212.3214286,80.89285714 +19472,324.5666667,1184,453,,211.4285714,80.89285714 +19473,324.5833333,1179,453,,210.5357143,80.89285714 +19474,324.6,1175,453,,209.8214286,80.89285714 +19475,324.6166667,1172,453,,209.2857143,80.89285714 +19476,324.6333333,1171,453,,209.1071429,80.89285714 +19477,324.65,1171,453,,209.1071429,80.89285714 +19478,324.6666667,1171,453,,209.1071429,80.89285714 +19479,324.6833333,1173,453,,209.4642857,80.89285714 +19480,324.7,1176,453,,210,80.89285714 +19481,324.7166667,1180,454,,210.7142857,81.07142857 +19482,324.7333333,1185,454,,211.6071429,81.07142857 +19483,324.75,1191,454,,212.6785714,81.07142857 +19484,324.7666667,1199,455,,214.1071429,81.25 +19485,324.7833333,1207,455,,215.5357143,81.25 +19486,324.8,1216,456,,217.1428571,81.42857143 +19487,324.8166667,1226,456,,218.9285714,81.42857143 +19488,324.8333333,1237,457,,220.8928571,81.60714286 +19489,324.85,1249,457,,223.0357143,81.60714286 +19490,324.8666667,1261,458,,225.1785714,81.78571429 +19491,324.8833333,1274,459,,227.5,81.96428571 +19492,324.9,1288,459,,230,81.96428571 +19493,324.9166667,1302,460,,232.5,82.14285714 +19494,324.9333333,1317,460,,235.1785714,82.14285714 +19495,324.95,1332,460,,237.8571429,82.14285714 +19496,324.9666667,1348,460,,240.7142857,82.14285714 +19497,324.9833333,1363,460,,243.3928571,82.14285714 +19498,325,1379,460,,246.25,82.14285714 +19499,325.0166667,1395,460,,249.1071429,82.14285714 +19500,325.0333333,1411,460,,251.9642857,82.14285714 +19501,325.05,1427,459,,254.8214286,81.96428571 +19502,325.0666667,1443,459,,257.6785714,81.96428571 +19503,325.0833333,1459,459,,260.5357143,81.96428571 +19504,325.1,1474,458,,263.2142857,81.78571429 +19505,325.1166667,1489,458,,265.8928571,81.78571429 +19506,325.1333333,1504,457,,268.5714286,81.60714286 +19507,325.15,1518,457,,271.0714286,81.60714286 +19508,325.1666667,1531,456,,273.3928571,81.42857143 +19509,325.1833333,1544,455,,275.7142857,81.25 +19510,325.2,1556,455,,277.8571429,81.25 +19511,325.2166667,1567,454,,279.8214286,81.07142857 +19512,325.2333333,1578,453,,281.7857143,80.89285714 +19513,325.25,1587,452,,283.3928571,80.71428571 +19514,325.2666667,1596,452,,285,80.71428571 +19515,325.2833333,1604,451,,286.4285714,80.53571429 +19516,325.3,1611,451,,287.6785714,80.53571429 +19517,325.3166667,1617,450,,288.75,80.35714286 +19518,325.3333333,1621,450,,289.4642857,80.35714286 +19519,325.35,1625,450,,290.1785714,80.35714286 +19520,325.3666667,1627,449,,290.5357143,80.17857143 +19521,325.3833333,1628,449,,290.7142857,80.17857143 +19522,325.4,1628,449,,290.7142857,80.17857143 +19523,325.4166667,1628,449,,290.7142857,80.17857143 +19524,325.4333333,1625,449,,290.1785714,80.17857143 +19525,325.45,1622,450,,289.6428571,80.35714286 +19526,325.4666667,1618,450,,288.9285714,80.35714286 +19527,325.4833333,1612,450,,287.8571429,80.35714286 +19528,325.5,1606,451,,286.7857143,80.53571429 +19529,325.5166667,1599,451,,285.5357143,80.53571429 +19530,325.5333333,1590,452,,283.9285714,80.71428571 +19531,325.55,1581,452,,282.3214286,80.71428571 +19532,325.5666667,1570,453,,280.3571429,80.89285714 +19533,325.5833333,1559,454,,278.3928571,81.07142857 +19534,325.6,1547,454,,276.25,81.07142857 +19535,325.6166667,1534,455,,273.9285714,81.25 +19536,325.6333333,1521,456,,271.6071429,81.42857143 +19537,325.65,1507,456,,269.1071429,81.42857143 +19538,325.6666667,1493,457,,266.6071429,81.60714286 +19539,325.6833333,1478,457,,263.9285714,81.60714286 +19540,325.7,1462,457,,261.0714286,81.60714286 +19541,325.7166667,1447,458,,258.3928571,81.78571429 +19542,325.7333333,1431,458,,255.5357143,81.78571429 +19543,325.75,1414,459,,252.5,81.96428571 +19544,325.7666667,1398,459,,249.6428571,81.96428571 +19545,325.7833333,1382,459,,246.7857143,81.96428571 +19546,325.8,1366,459,,243.9285714,81.96428571 +19547,325.8166667,1350,459,,241.0714286,81.96428571 +19548,325.8333333,1335,459,,238.3928571,81.96428571 +19549,325.85,1320,459,,235.7142857,81.96428571 +19550,325.8666667,1305,459,,233.0357143,81.96428571 +19551,325.8833333,1290,458,,230.3571429,81.78571429 +19552,325.9,1276,458,,227.8571429,81.78571429 +19553,325.9166667,1263,457,,225.5357143,81.60714286 +19554,325.9333333,1251,457,,223.3928571,81.60714286 +19555,325.95,1239,457,,221.25,81.60714286 +19556,325.9666667,1228,456,,219.2857143,81.42857143 +19557,325.9833333,1217,455,,217.3214286,81.25 +19558,326,1208,455,,215.7142857,81.25 +19559,326.0166667,1200,455,,214.2857143,81.25 +19560,326.0333333,1192,455,,212.8571429,81.25 +19561,326.05,1185,454,,211.6071429,81.07142857 +19562,326.0666667,1180,454,,210.7142857,81.07142857 +19563,326.0833333,1176,453,,210,80.89285714 +19564,326.1,1173,453,,209.4642857,80.89285714 +19565,326.1166667,1171,453,,209.1071429,80.89285714 +19566,326.1333333,1171,453,,209.1071429,80.89285714 +19567,326.15,1171,453,,209.1071429,80.89285714 +19568,326.1666667,1171,454,,209.1071429,81.07142857 +19569,326.1833333,1174,454,,209.6428571,81.07142857 +19570,326.2,1177,454,,210.1785714,81.07142857 +19571,326.2166667,1182,454,,211.0714286,81.07142857 +19572,326.2333333,1188,455,,212.1428571,81.25 +19573,326.25,1194,455,,213.2142857,81.25 +19574,326.2666667,1202,456,,214.6428571,81.42857143 +19575,326.2833333,1211,456,,216.25,81.42857143 +19576,326.3,1220,457,,217.8571429,81.60714286 +19577,326.3166667,1231,457,,219.8214286,81.60714286 +19578,326.3333333,1242,458,,221.7857143,81.78571429 +19579,326.35,1254,458,,223.9285714,81.78571429 +19580,326.3666667,1267,459,,226.25,81.96428571 +19581,326.3833333,1281,460,,228.75,82.14285714 +19582,326.4,1295,460,,231.25,82.14285714 +19583,326.4166667,1309,460,,233.75,82.14285714 +19584,326.4333333,1324,461,,236.4285714,82.32142857 +19585,326.45,1339,461,,239.1071429,82.32142857 +19586,326.4666667,1355,461,,241.9642857,82.32142857 +19587,326.4833333,1371,461,,244.8214286,82.32142857 +19588,326.5,1387,461,,247.6785714,82.32142857 +19589,326.5166667,1403,460,,250.5357143,82.14285714 +19590,326.5333333,1419,460,,253.3928571,82.14285714 +19591,326.55,1435,460,,256.25,82.14285714 +19592,326.5666667,1451,459,,259.1071429,81.96428571 +19593,326.5833333,1467,459,,261.9642857,81.96428571 +19594,326.6,1482,458,,264.6428571,81.78571429 +19595,326.6166667,1497,458,,267.3214286,81.78571429 +19596,326.6333333,1511,457,,269.8214286,81.60714286 +19597,326.65,1525,456,,272.3214286,81.42857143 +19598,326.6666667,1538,456,,274.6428571,81.42857143 +19599,326.6833333,1551,455,,276.9642857,81.25 +19600,326.7,1562,454,,278.9285714,81.07142857 +19601,326.7166667,1573,454,,280.8928571,81.07142857 +19602,326.7333333,1584,453,,282.8571429,80.89285714 +19603,326.75,1593,452,,284.4642857,80.71428571 +19604,326.7666667,1601,451,,285.8928571,80.53571429 +19605,326.7833333,1608,451,,287.1428571,80.53571429 +19606,326.8,1614,450,,288.2142857,80.35714286 +19607,326.8166667,1620,450,,289.2857143,80.35714286 +19608,326.8333333,1624,449,,290,80.17857143 +19609,326.85,1627,449,,290.5357143,80.17857143 +19610,326.8666667,1629,449,,290.8928571,80.17857143 +19611,326.8833333,1629,449,,290.8928571,80.17857143 +19612,326.9,1629,449,,290.8928571,80.17857143 +19613,326.9166667,1627,449,,290.5357143,80.17857143 +19614,326.9333333,1625,449,,290.1785714,80.17857143 +19615,326.95,1621,449,,289.4642857,80.17857143 +19616,326.9666667,1616,450,,288.5714286,80.35714286 +19617,326.9833333,1610,450,,287.5,80.35714286 +19618,327,1603,451,,286.25,80.53571429 +19619,327.0166667,1595,451,,284.8214286,80.53571429 +19620,327.0333333,1587,451,,283.3928571,80.53571429 +19621,327.05,1577,452,,281.6071429,80.71428571 +19622,327.0666667,1566,453,,279.6428571,80.89285714 +19623,327.0833333,1554,453,,277.5,80.89285714 +19624,327.1,1542,454,,275.3571429,81.07142857 +19625,327.1166667,1529,455,,273.0357143,81.25 +19626,327.1333333,1515,455,,270.5357143,81.25 +19627,327.15,1501,456,,268.0357143,81.42857143 +19628,327.1666667,1486,457,,265.3571429,81.60714286 +19629,327.1833333,1471,457,,262.6785714,81.60714286 +19630,327.2,1456,457,,260,81.60714286 +19631,327.2166667,1440,458,,257.1428571,81.78571429 +19632,327.2333333,1424,458,,254.2857143,81.78571429 +19633,327.25,1408,458,,251.4285714,81.78571429 +19634,327.2666667,1392,459,,248.5714286,81.96428571 +19635,327.2833333,1375,459,,245.5357143,81.96428571 +19636,327.3,1360,459,,242.8571429,81.96428571 +19637,327.3166667,1344,459,,240,81.96428571 +19638,327.3333333,1329,459,,237.3214286,81.96428571 +19639,327.35,1314,458,,234.6428571,81.78571429 +19640,327.3666667,1299,458,,231.9642857,81.78571429 +19641,327.3833333,1285,458,,229.4642857,81.78571429 +19642,327.4,1271,457,,226.9642857,81.60714286 +19643,327.4166667,1258,457,,224.6428571,81.60714286 +19644,327.4333333,1246,456,,222.5,81.42857143 +19645,327.45,1234,456,,220.3571429,81.42857143 +19646,327.4666667,1224,456,,218.5714286,81.42857143 +19647,327.4833333,1214,455,,216.7857143,81.25 +19648,327.5,1205,455,,215.1785714,81.25 +19649,327.5166667,1197,454,,213.75,81.07142857 +19650,327.5333333,1190,454,,212.5,81.07142857 +19651,327.55,1184,454,,211.4285714,81.07142857 +19652,327.5666667,1180,453,,210.7142857,80.89285714 +19653,327.5833333,1176,453,,210,80.89285714 +19654,327.6,1173,453,,209.4642857,80.89285714 +19655,327.6166667,1172,453,,209.2857143,80.89285714 +19656,327.6333333,1172,453,,209.2857143,80.89285714 +19657,327.65,1172,453,,209.2857143,80.89285714 +19658,327.6666667,1174,453,,209.6428571,80.89285714 +19659,327.6833333,1177,454,,210.1785714,81.07142857 +19660,327.7,1181,454,,210.8928571,81.07142857 +19661,327.7166667,1187,454,,211.9642857,81.07142857 +19662,327.7333333,1193,454,,213.0357143,81.07142857 +19663,327.75,1200,455,,214.2857143,81.25 +19664,327.7666667,1208,456,,215.7142857,81.42857143 +19665,327.7833333,1217,456,,217.3214286,81.42857143 +19666,327.8,1227,457,,219.1071429,81.60714286 +19667,327.8166667,1238,457,,221.0714286,81.60714286 +19668,327.8333333,1250,458,,223.2142857,81.78571429 +19669,327.85,1262,458,,225.3571429,81.78571429 +19670,327.8666667,1275,459,,227.6785714,81.96428571 +19671,327.8833333,1289,459,,230.1785714,81.96428571 +19672,327.9,1304,459,,232.8571429,81.96428571 +19673,327.9166667,1318,460,,235.3571429,82.14285714 +19674,327.9333333,1333,460,,238.0357143,82.14285714 +19675,327.95,1349,460,,240.8928571,82.14285714 +19676,327.9666667,1364,460,,243.5714286,82.14285714 +19677,327.9833333,1380,460,,246.4285714,82.14285714 +19678,328,1397,460,,249.4642857,82.14285714 +19679,328.0166667,1413,460,,252.3214286,82.14285714 +19680,328.0333333,1429,459,,255.1785714,81.96428571 +19681,328.05,1445,459,,258.0357143,81.96428571 +19682,328.0666667,1460,459,,260.7142857,81.96428571 +19683,328.0833333,1475,458,,263.3928571,81.78571429 +19684,328.1,1490,457,,266.0714286,81.60714286 +19685,328.1166667,1505,457,,268.75,81.60714286 +19686,328.1333333,1519,456,,271.25,81.42857143 +19687,328.15,1533,455,,273.75,81.25 +19688,328.1666667,1545,455,,275.8928571,81.25 +19689,328.1833333,1558,454,,278.2142857,81.07142857 +19690,328.2,1569,453,,280.1785714,80.89285714 +19691,328.2166667,1579,453,,281.9642857,80.89285714 +19692,328.2333333,1589,452,,283.75,80.71428571 +19693,328.25,1597,451,,285.1785714,80.53571429 +19694,328.2666667,1605,451,,286.6071429,80.53571429 +19695,328.2833333,1612,450,,287.8571429,80.35714286 +19696,328.3,1618,449,,288.9285714,80.17857143 +19697,328.3166667,1622,449,,289.6428571,80.17857143 +19698,328.3333333,1626,449,,290.3571429,80.17857143 +19699,328.35,1628,449,,290.7142857,80.17857143 +19700,328.3666667,1629,449,,290.8928571,80.17857143 +19701,328.3833333,1629,449,,290.8928571,80.17857143 +19702,328.4,1629,449,,290.8928571,80.17857143 +19703,328.4166667,1626,449,,290.3571429,80.17857143 +19704,328.4333333,1623,449,,289.8214286,80.17857143 +19705,328.45,1619,449,,289.1071429,80.17857143 +19706,328.4666667,1613,450,,288.0357143,80.35714286 +19707,328.4833333,1607,450,,286.9642857,80.35714286 +19708,328.5,1600,451,,285.7142857,80.53571429 +19709,328.5166667,1591,451,,284.1071429,80.53571429 +19710,328.5333333,1582,452,,282.5,80.71428571 +19711,328.55,1571,453,,280.5357143,80.89285714 +19712,328.5666667,1560,453,,278.5714286,80.89285714 +19713,328.5833333,1548,454,,276.4285714,81.07142857 +19714,328.6,1535,454,,274.1071429,81.07142857 +19715,328.6166667,1522,455,,271.7857143,81.25 +19716,328.6333333,1508,456,,269.2857143,81.42857143 +19717,328.65,1494,456,,266.7857143,81.42857143 +19718,328.6666667,1479,457,,264.1071429,81.60714286 +19719,328.6833333,1464,457,,261.4285714,81.60714286 +19720,328.7,1448,457,,258.5714286,81.60714286 +19721,328.7166667,1432,458,,255.7142857,81.78571429 +19722,328.7333333,1416,458,,252.8571429,81.78571429 +19723,328.75,1400,459,,250,81.96428571 +19724,328.7666667,1384,459,,247.1428571,81.96428571 +19725,328.7833333,1368,459,,244.2857143,81.96428571 +19726,328.8,1352,459,,241.4285714,81.96428571 +19727,328.8166667,1336,459,,238.5714286,81.96428571 +19728,328.8333333,1321,458,,235.8928571,81.78571429 +19729,328.85,1306,458,,233.2142857,81.78571429 +19730,328.8666667,1292,458,,230.7142857,81.78571429 +19731,328.8833333,1278,458,,228.2142857,81.78571429 +19732,328.9,1265,457,,225.8928571,81.60714286 +19733,328.9166667,1253,457,,223.75,81.60714286 +19734,328.9333333,1241,456,,221.6071429,81.42857143 +19735,328.95,1230,456,,219.6428571,81.42857143 +19736,328.9666667,1219,455,,217.6785714,81.25 +19737,328.9833333,1210,455,,216.0714286,81.25 +19738,329,1202,454,,214.6428571,81.07142857 +19739,329.0166667,1194,454,,213.2142857,81.07142857 +19740,329.0333333,1188,454,,212.1428571,81.07142857 +19741,329.05,1183,453,,211.25,80.89285714 +19742,329.0666667,1178,453,,210.3571429,80.89285714 +19743,329.0833333,1176,453,,210,80.89285714 +19744,329.1,1173,453,,209.4642857,80.89285714 +19745,329.1166667,1173,453,,209.4642857,80.89285714 +19746,329.1333333,1173,453,,209.4642857,80.89285714 +19747,329.15,1174,453,,209.6428571,80.89285714 +19748,329.1666667,1176,454,,210,81.07142857 +19749,329.1833333,1180,454,,210.7142857,81.07142857 +19750,329.2,1185,454,,211.6071429,81.07142857 +19751,329.2166667,1190,455,,212.5,81.25 +19752,329.2333333,1197,455,,213.75,81.25 +19753,329.25,1205,456,,215.1785714,81.42857143 +19754,329.2666667,1214,456,,216.7857143,81.42857143 +19755,329.2833333,1223,457,,218.3928571,81.60714286 +19756,329.3,1234,457,,220.3571429,81.60714286 +19757,329.3166667,1245,457,,222.3214286,81.60714286 +19758,329.3333333,1257,458,,224.4642857,81.78571429 +19759,329.35,1270,459,,226.7857143,81.96428571 +19760,329.3666667,1283,459,,229.1071429,81.96428571 +19761,329.3833333,1297,459,,231.6071429,81.96428571 +19762,329.4,1312,460,,234.2857143,82.14285714 +19763,329.4166667,1327,460,,236.9642857,82.14285714 +19764,329.4333333,1342,460,,239.6428571,82.14285714 +19765,329.45,1358,460,,242.5,82.14285714 +19766,329.4666667,1373,460,,245.1785714,82.14285714 +19767,329.4833333,1389,460,,248.0357143,82.14285714 +19768,329.5,1405,460,,250.8928571,82.14285714 +19769,329.5166667,1421,460,,253.75,82.14285714 +19770,329.5333333,1437,459,,256.6071429,81.96428571 +19771,329.55,1453,459,,259.4642857,81.96428571 +19772,329.5666667,1468,458,,262.1428571,81.78571429 +19773,329.5833333,1484,458,,265,81.78571429 +19774,329.6,1498,457,,267.5,81.60714286 +19775,329.6166667,1513,456,,270.1785714,81.42857143 +19776,329.6333333,1526,456,,272.5,81.42857143 +19777,329.65,1539,455,,274.8214286,81.25 +19778,329.6666667,1552,454,,277.1428571,81.07142857 +19779,329.6833333,1563,454,,279.1071429,81.07142857 +19780,329.7,1574,453,,281.0714286,80.89285714 +19781,329.7166667,1584,452,,282.8571429,80.71428571 +19782,329.7333333,1593,451,,284.4642857,80.53571429 +19783,329.75,1602,451,,286.0714286,80.53571429 +19784,329.7666667,1609,450,,287.3214286,80.35714286 +19785,329.7833333,1615,450,,288.3928571,80.35714286 +19786,329.8,1620,449,,289.2857143,80.17857143 +19787,329.8166667,1624,449,,290,80.17857143 +19788,329.8333333,1627,449,,290.5357143,80.17857143 +19789,329.85,1629,448,,290.8928571,80 +19790,329.8666667,1629,448,,290.8928571,80 +19791,329.8833333,1629,448,,290.8928571,80 +19792,329.9,1627,448,,290.5357143,80 +19793,329.9166667,1624,449,,290,80.17857143 +19794,329.9333333,1621,449,,289.4642857,80.17857143 +19795,329.95,1616,449,,288.5714286,80.17857143 +19796,329.9666667,1610,450,,287.5,80.35714286 +19797,329.9833333,1603,450,,286.25,80.35714286 +19798,330,1595,451,,284.8214286,80.53571429 +19799,330.0166667,1586,451,,283.2142857,80.53571429 +19800,330.0333333,1576,452,,281.4285714,80.71428571 +19801,330.05,1565,453,,279.4642857,80.89285714 +19802,330.0666667,1554,453,,277.5,80.89285714 +19803,330.0833333,1541,454,,275.1785714,81.07142857 +19804,330.1,1528,454,,272.8571429,81.07142857 +19805,330.1166667,1515,455,,270.5357143,81.25 +19806,330.1333333,1501,456,,268.0357143,81.42857143 +19807,330.15,1486,456,,265.3571429,81.42857143 +19808,330.1666667,1471,457,,262.6785714,81.60714286 +19809,330.1833333,1455,457,,259.8214286,81.60714286 +19810,330.2,1440,458,,257.1428571,81.78571429 +19811,330.2166667,1424,458,,254.2857143,81.78571429 +19812,330.2333333,1408,458,,251.4285714,81.78571429 +19813,330.25,1392,459,,248.5714286,81.96428571 +19814,330.2666667,1375,459,,245.5357143,81.96428571 +19815,330.2833333,1360,459,,242.8571429,81.96428571 +19816,330.3,1344,459,,240,81.96428571 +19817,330.3166667,1329,459,,237.3214286,81.96428571 +19818,330.3333333,1314,459,,234.6428571,81.96428571 +19819,330.35,1299,458,,231.9642857,81.78571429 +19820,330.3666667,1285,458,,229.4642857,81.78571429 +19821,330.3833333,1272,458,,227.1428571,81.78571429 +19822,330.4,1259,457,,224.8214286,81.60714286 +19823,330.4166667,1247,457,,222.6785714,81.60714286 +19824,330.4333333,1235,456,,220.5357143,81.42857143 +19825,330.45,1225,456,,218.75,81.42857143 +19826,330.4666667,1215,455,,216.9642857,81.25 +19827,330.4833333,1206,455,,215.3571429,81.25 +19828,330.5,1198,454,,213.9285714,81.07142857 +19829,330.5166667,1192,454,,212.8571429,81.07142857 +19830,330.5333333,1186,454,,211.7857143,81.07142857 +19831,330.55,1181,454,,210.8928571,81.07142857 +19832,330.5666667,1178,453,,210.3571429,80.89285714 +19833,330.5833333,1175,453,,209.8214286,80.89285714 +19834,330.6,1174,453,,209.6428571,80.89285714 +19835,330.6166667,1174,453,,209.6428571,80.89285714 +19836,330.6333333,1174,453,,209.6428571,80.89285714 +19837,330.65,1176,454,,210,81.07142857 +19838,330.6666667,1179,454,,210.5357143,81.07142857 +19839,330.6833333,1183,454,,211.25,81.07142857 +19840,330.7,1189,455,,212.3214286,81.25 +19841,330.7166667,1195,455,,213.3928571,81.25 +19842,330.7333333,1202,455,,214.6428571,81.25 +19843,330.75,1210,456,,216.0714286,81.42857143 +19844,330.7666667,1219,456,,217.6785714,81.42857143 +19845,330.7833333,1229,457,,219.4642857,81.60714286 +19846,330.8,1240,457,,221.4285714,81.60714286 +19847,330.8166667,1252,458,,223.5714286,81.78571429 +19848,330.8333333,1264,458,,225.7142857,81.78571429 +19849,330.85,1277,459,,228.0357143,81.96428571 +19850,330.8666667,1291,459,,230.5357143,81.96428571 +19851,330.8833333,1305,460,,233.0357143,82.14285714 +19852,330.9,1320,460,,235.7142857,82.14285714 +19853,330.9166667,1335,460,,238.3928571,82.14285714 +19854,330.9333333,1351,460,,241.25,82.14285714 +19855,330.95,1366,460,,243.9285714,82.14285714 +19856,330.9666667,1382,460,,246.7857143,82.14285714 +19857,330.9833333,1398,460,,249.6428571,82.14285714 +19858,331,1414,459,,252.5,81.96428571 +19859,331.0166667,1430,459,,255.3571429,81.96428571 +19860,331.0333333,1446,459,,258.2142857,81.96428571 +19861,331.05,1461,458,,260.8928571,81.78571429 +19862,331.0666667,1477,458,,263.75,81.78571429 +19863,331.0833333,1491,457,,266.25,81.60714286 +19864,331.1,1505,456,,268.75,81.42857143 +19865,331.1166667,1519,456,,271.25,81.42857143 +19866,331.1333333,1533,455,,273.75,81.25 +19867,331.15,1546,455,,276.0714286,81.25 +19868,331.1666667,1557,454,,278.0357143,81.07142857 +19869,331.1833333,1569,453,,280.1785714,80.89285714 +19870,331.2,1579,452,,281.9642857,80.71428571 +19871,331.2166667,1588,452,,283.5714286,80.71428571 +19872,331.2333333,1597,451,,285.1785714,80.53571429 +19873,331.25,1605,451,,286.6071429,80.53571429 +19874,331.2666667,1611,450,,287.6785714,80.35714286 +19875,331.2833333,1617,450,,288.75,80.35714286 +19876,331.3,1621,449,,289.4642857,80.17857143 +19877,331.3166667,1625,449,,290.1785714,80.17857143 +19878,331.3333333,1627,449,,290.5357143,80.17857143 +19879,331.35,1627,449,,290.5357143,80.17857143 +19880,331.3666667,1627,449,,290.5357143,80.17857143 +19881,331.3833333,1627,449,,290.5357143,80.17857143 +19882,331.4,1625,449,,290.1785714,80.17857143 +19883,331.4166667,1622,449,,289.6428571,80.17857143 +19884,331.4333333,1617,449,,288.75,80.17857143 +19885,331.45,1612,449,,287.8571429,80.17857143 +19886,331.4666667,1606,450,,286.7857143,80.35714286 +19887,331.4833333,1598,450,,285.3571429,80.35714286 +19888,331.5,1590,451,,283.9285714,80.53571429 +19889,331.5166667,1580,452,,282.1428571,80.71428571 +19890,331.5333333,1570,452,,280.3571429,80.71428571 +19891,331.55,1559,453,,278.3928571,80.89285714 +19892,331.5666667,1547,454,,276.25,81.07142857 +19893,331.5833333,1534,454,,273.9285714,81.07142857 +19894,331.6,1521,455,,271.6071429,81.25 +19895,331.6166667,1507,455,,269.1071429,81.25 +19896,331.6333333,1492,456,,266.4285714,81.42857143 +19897,331.65,1478,456,,263.9285714,81.42857143 +19898,331.6666667,1462,457,,261.0714286,81.60714286 +19899,331.6833333,1447,457,,258.3928571,81.60714286 +19900,331.7,1431,458,,255.5357143,81.78571429 +19901,331.7166667,1415,458,,252.6785714,81.78571429 +19902,331.7333333,1399,458,,249.8214286,81.78571429 +19903,331.75,1383,459,,246.9642857,81.96428571 +19904,331.7666667,1368,459,,244.2857143,81.96428571 +19905,331.7833333,1352,459,,241.4285714,81.96428571 +19906,331.8,1336,459,,238.5714286,81.96428571 +19907,331.8166667,1321,459,,235.8928571,81.96428571 +19908,331.8333333,1307,459,,233.3928571,81.96428571 +19909,331.85,1292,458,,230.7142857,81.78571429 +19910,331.8666667,1279,457,,228.3928571,81.60714286 +19911,331.8833333,1265,457,,225.8928571,81.60714286 +19912,331.9,1253,456,,223.75,81.42857143 +19913,331.9166667,1241,456,,221.6071429,81.42857143 +19914,331.9333333,1230,456,,219.6428571,81.42857143 +19915,331.95,1220,455,,217.8571429,81.25 +19916,331.9666667,1211,455,,216.25,81.25 +19917,331.9833333,1203,455,,214.8214286,81.25 +19918,332,1195,454,,213.3928571,81.07142857 +19919,332.0166667,1190,454,,212.5,81.07142857 +19920,332.0333333,1184,454,,211.4285714,81.07142857 +19921,332.05,1180,454,,210.7142857,81.07142857 +19922,332.0666667,1177,454,,210.1785714,81.07142857 +19923,332.0833333,1175,454,,209.8214286,81.07142857 +19924,332.1,1175,454,,209.8214286,81.07142857 +19925,332.1166667,1175,454,,209.8214286,81.07142857 +19926,332.1333333,1176,454,,210,81.07142857 +19927,332.15,1179,454,,210.5357143,81.07142857 +19928,332.1666667,1182,454,,211.0714286,81.07142857 +19929,332.1833333,1187,454,,211.9642857,81.07142857 +19930,332.2,1192,454,,212.8571429,81.07142857 +19931,332.2166667,1199,455,,214.1071429,81.25 +19932,332.2333333,1207,455,,215.5357143,81.25 +19933,332.25,1216,456,,217.1428571,81.42857143 +19934,332.2666667,1225,456,,218.75,81.42857143 +19935,332.2833333,1236,457,,220.7142857,81.60714286 +19936,332.3,1247,457,,222.6785714,81.60714286 +19937,332.3166667,1259,458,,224.8214286,81.78571429 +19938,332.3333333,1272,459,,227.1428571,81.96428571 +19939,332.35,1285,459,,229.4642857,81.96428571 +19940,332.3666667,1299,459,,231.9642857,81.96428571 +19941,332.3833333,1314,460,,234.6428571,82.14285714 +19942,332.4,1328,460,,237.1428571,82.14285714 +19943,332.4166667,1344,460,,240,82.14285714 +19944,332.4333333,1359,460,,242.6785714,82.14285714 +19945,332.45,1374,460,,245.3571429,82.14285714 +19946,332.4666667,1390,460,,248.2142857,82.14285714 +19947,332.4833333,1406,460,,251.0714286,82.14285714 +19948,332.5,1422,460,,253.9285714,82.14285714 +19949,332.5166667,1438,459,,256.7857143,81.96428571 +19950,332.5333333,1454,459,,259.6428571,81.96428571 +19951,332.55,1469,458,,262.3214286,81.78571429 +19952,332.5666667,1484,458,,265,81.78571429 +19953,332.5833333,1498,457,,267.5,81.60714286 +19954,332.6,1512,457,,270,81.60714286 +19955,332.6166667,1526,456,,272.5,81.42857143 +19956,332.6333333,1539,455,,274.8214286,81.25 +19957,332.65,1551,455,,276.9642857,81.25 +19958,332.6666667,1563,454,,279.1071429,81.07142857 +19959,332.6833333,1573,453,,280.8928571,80.89285714 +19960,332.7,1583,453,,282.6785714,80.89285714 +19961,332.7166667,1592,452,,284.2857143,80.71428571 +19962,332.7333333,1601,451,,285.8928571,80.53571429 +19963,332.75,1607,450,,286.9642857,80.35714286 +19964,332.7666667,1614,450,,288.2142857,80.35714286 +19965,332.7833333,1618,450,,288.9285714,80.35714286 +19966,332.8,1622,449,,289.6428571,80.17857143 +19967,332.8166667,1625,449,,290.1785714,80.17857143 +19968,332.8333333,1627,449,,290.5357143,80.17857143 +19969,332.85,1627,449,,290.5357143,80.17857143 +19970,332.8666667,1627,449,,290.5357143,80.17857143 +19971,332.8833333,1625,449,,290.1785714,80.17857143 +19972,332.9,1622,449,,289.6428571,80.17857143 +19973,332.9166667,1618,449,,288.9285714,80.17857143 +19974,332.9333333,1614,450,,288.2142857,80.35714286 +19975,332.95,1608,450,,287.1428571,80.35714286 +19976,332.9666667,1600,450,,285.7142857,80.35714286 +19977,332.9833333,1592,451,,284.2857143,80.53571429 +19978,333,1584,452,,282.8571429,80.71428571 +19979,333.0166667,1574,452,,281.0714286,80.71428571 +19980,333.0333333,1563,453,,279.1071429,80.89285714 +19981,333.05,1551,453,,276.9642857,80.89285714 +19982,333.0666667,1539,454,,274.8214286,81.07142857 +19983,333.0833333,1526,454,,272.5,81.07142857 +19984,333.1,1513,455,,270.1785714,81.25 +19985,333.1166667,1499,456,,267.6785714,81.42857143 +19986,333.1333333,1484,456,,265,81.42857143 +19987,333.15,1469,457,,262.3214286,81.60714286 +19988,333.1666667,1454,457,,259.6428571,81.60714286 +19989,333.1833333,1439,458,,256.9642857,81.78571429 +19990,333.2,1423,458,,254.1071429,81.78571429 +19991,333.2166667,1406,458,,251.0714286,81.78571429 +19992,333.2333333,1391,459,,248.3928571,81.96428571 +19993,333.25,1375,459,,245.5357143,81.96428571 +19994,333.2666667,1359,459,,242.6785714,81.96428571 +19995,333.2833333,1344,459,,240,81.96428571 +19996,333.3,1329,459,,237.3214286,81.96428571 +19997,333.3166667,1314,459,,234.6428571,81.96428571 +19998,333.3333333,1299,458,,231.9642857,81.78571429 +19999,333.35,1286,458,,229.6428571,81.78571429 +20000,333.3666667,1272,458,,227.1428571,81.78571429 +20001,333.3833333,1260,457,,225,81.60714286 +20002,333.4,1248,457,,222.8571429,81.60714286 +20003,333.4166667,1236,456,,220.7142857,81.42857143 +20004,333.4333333,1226,456,,218.9285714,81.42857143 +20005,333.45,1216,455,,217.1428571,81.25 +20006,333.4666667,1207,455,,215.5357143,81.25 +20007,333.4833333,1200,455,,214.2857143,81.25 +20008,333.5,1193,454,,213.0357143,81.07142857 +20009,333.5166667,1187,454,,211.9642857,81.07142857 +20010,333.5333333,1183,454,,211.25,81.07142857 +20011,333.55,1179,454,,210.5357143,81.07142857 +20012,333.5666667,1177,454,,210.1785714,81.07142857 +20013,333.5833333,1176,454,,210,81.07142857 +20014,333.6,1176,454,,210,81.07142857 +20015,333.6166667,1176,454,,210,81.07142857 +20016,333.6333333,1178,454,,210.3571429,81.07142857 +20017,333.65,1182,454,,211.0714286,81.07142857 +20018,333.6666667,1185,454,,211.6071429,81.07142857 +20019,333.6833333,1191,455,,212.6785714,81.25 +20020,333.7,1197,455,,213.75,81.25 +20021,333.7166667,1204,456,,215,81.42857143 +20022,333.7333333,1213,456,,216.6071429,81.42857143 +20023,333.75,1222,456,,218.2142857,81.42857143 +20024,333.7666667,1232,457,,220,81.60714286 +20025,333.7833333,1243,457,,221.9642857,81.60714286 +20026,333.8,1254,458,,223.9285714,81.78571429 +20027,333.8166667,1266,458,,226.0714286,81.78571429 +20028,333.8333333,1279,459,,228.3928571,81.96428571 +20029,333.85,1293,459,,230.8928571,81.96428571 +20030,333.8666667,1307,460,,233.3928571,82.14285714 +20031,333.8833333,1322,460,,236.0714286,82.14285714 +20032,333.9,1337,460,,238.75,82.14285714 +20033,333.9166667,1352,460,,241.4285714,82.14285714 +20034,333.9333333,1367,460,,244.1071429,82.14285714 +20035,333.95,1383,460,,246.9642857,82.14285714 +20036,333.9666667,1399,460,,249.8214286,82.14285714 +20037,333.9833333,1415,460,,252.6785714,82.14285714 +20038,334,1430,460,,255.3571429,82.14285714 +20039,334.0166667,1446,459,,258.2142857,81.96428571 +20040,334.0333333,1462,459,,261.0714286,81.96428571 +20041,334.05,1477,458,,263.75,81.78571429 +20042,334.0666667,1491,458,,266.25,81.78571429 +20043,334.0833333,1505,457,,268.75,81.60714286 +20044,334.1,1519,456,,271.25,81.42857143 +20045,334.1166667,1532,456,,273.5714286,81.42857143 +20046,334.1333333,1545,455,,275.8928571,81.25 +20047,334.15,1557,454,,278.0357143,81.07142857 +20048,334.1666667,1568,454,,280,81.07142857 +20049,334.1833333,1578,453,,281.7857143,80.89285714 +20050,334.2,1587,452,,283.3928571,80.71428571 +20051,334.2166667,1595,452,,284.8214286,80.71428571 +20052,334.2333333,1603,451,,286.25,80.53571429 +20053,334.25,1610,450,,287.5,80.35714286 +20054,334.2666667,1615,450,,288.3928571,80.35714286 +20055,334.2833333,1619,450,,289.1071429,80.35714286 +20056,334.3,1623,449,,289.8214286,80.17857143 +20057,334.3166667,1625,449,,290.1785714,80.17857143 +20058,334.3333333,1625,449,,290.1785714,80.17857143 +20059,334.35,1625,449,,290.1785714,80.17857143 +20060,334.3666667,1625,449,,290.1785714,80.17857143 +20061,334.3833333,1623,449,,289.8214286,80.17857143 +20062,334.4,1619,449,,289.1071429,80.17857143 +20063,334.4166667,1615,449,,288.3928571,80.17857143 +20064,334.4333333,1610,450,,287.5,80.35714286 +20065,334.45,1603,450,,286.25,80.35714286 +20066,334.4666667,1595,451,,284.8214286,80.53571429 +20067,334.4833333,1587,451,,283.3928571,80.53571429 +20068,334.5,1578,452,,281.7857143,80.71428571 +20069,334.5166667,1567,452,,279.8214286,80.71428571 +20070,334.5333333,1556,453,,277.8571429,80.89285714 +20071,334.55,1544,454,,275.7142857,81.07142857 +20072,334.5666667,1532,454,,273.5714286,81.07142857 +20073,334.5833333,1519,455,,271.25,81.25 +20074,334.6,1505,456,,268.75,81.42857143 +20075,334.6166667,1490,456,,266.0714286,81.42857143 +20076,334.6333333,1476,457,,263.5714286,81.60714286 +20077,334.65,1461,457,,260.8928571,81.60714286 +20078,334.6666667,1445,457,,258.0357143,81.60714286 +20079,334.6833333,1430,458,,255.3571429,81.78571429 +20080,334.7,1414,458,,252.5,81.78571429 +20081,334.7166667,1398,458,,249.6428571,81.78571429 +20082,334.7333333,1382,458,,246.7857143,81.78571429 +20083,334.75,1366,459,,243.9285714,81.96428571 +20084,334.7666667,1351,459,,241.25,81.96428571 +20085,334.7833333,1336,459,,238.5714286,81.96428571 +20086,334.8,1321,459,,235.8928571,81.96428571 +20087,334.8166667,1306,458,,233.2142857,81.78571429 +20088,334.8333333,1292,458,,230.7142857,81.78571429 +20089,334.85,1279,458,,228.3928571,81.78571429 +20090,334.8666667,1266,457,,226.0714286,81.60714286 +20091,334.8833333,1253,457,,223.75,81.60714286 +20092,334.9,1242,456,,221.7857143,81.42857143 +20093,334.9166667,1231,456,,219.8214286,81.42857143 +20094,334.9333333,1221,456,,218.0357143,81.42857143 +20095,334.95,1212,455,,216.4285714,81.25 +20096,334.9666667,1204,455,,215,81.25 +20097,334.9833333,1197,455,,213.75,81.25 +20098,335,1191,454,,212.6785714,81.07142857 +20099,335.0166667,1186,454,,211.7857143,81.07142857 +20100,335.0333333,1182,454,,211.0714286,81.07142857 +20101,335.05,1179,454,,210.5357143,81.07142857 +20102,335.0666667,1177,454,,210.1785714,81.07142857 +20103,335.0833333,1177,454,,210.1785714,81.07142857 +20104,335.1,1177,454,,210.1785714,81.07142857 +20105,335.1166667,1178,454,,210.3571429,81.07142857 +20106,335.1333333,1180,454,,210.7142857,81.07142857 +20107,335.15,1184,454,,211.4285714,81.07142857 +20108,335.1666667,1189,455,,212.3214286,81.25 +20109,335.1833333,1194,455,,213.2142857,81.25 +20110,335.2,1201,455,,214.4642857,81.25 +20111,335.2166667,1209,456,,215.8928571,81.42857143 +20112,335.2333333,1217,456,,217.3214286,81.42857143 +20113,335.25,1227,457,,219.1071429,81.60714286 +20114,335.2666667,1237,457,,220.8928571,81.60714286 +20115,335.2833333,1249,458,,223.0357143,81.78571429 +20116,335.3,1260,458,,225,81.78571429 +20117,335.3166667,1273,459,,227.3214286,81.96428571 +20118,335.3333333,1286,459,,229.6428571,81.96428571 +20119,335.35,1300,460,,232.1428571,82.14285714 +20120,335.3666667,1314,460,,234.6428571,82.14285714 +20121,335.3833333,1329,460,,237.3214286,82.14285714 +20122,335.4,1344,460,,240,82.14285714 +20123,335.4166667,1359,460,,242.6785714,82.14285714 +20124,335.4333333,1375,460,,245.5357143,82.14285714 +20125,335.45,1391,460,,248.3928571,82.14285714 +20126,335.4666667,1406,460,,251.0714286,82.14285714 +20127,335.4833333,1422,459,,253.9285714,81.96428571 +20128,335.5,1438,459,,256.7857143,81.96428571 +20129,335.5166667,1453,459,,259.4642857,81.96428571 +20130,335.5333333,1468,458,,262.1428571,81.78571429 +20131,335.55,1483,458,,264.8214286,81.78571429 +20132,335.5666667,1498,457,,267.5,81.60714286 +20133,335.5833333,1511,456,,269.8214286,81.42857143 +20134,335.6,1525,456,,272.3214286,81.42857143 +20135,335.6166667,1538,455,,274.6428571,81.25 +20136,335.6333333,1550,454,,276.7857143,81.07142857 +20137,335.65,1561,454,,278.75,81.07142857 +20138,335.6666667,1572,453,,280.7142857,80.89285714 +20139,335.6833333,1582,452,,282.5,80.71428571 +20140,335.7,1591,452,,284.1071429,80.71428571 +20141,335.7166667,1598,451,,285.3571429,80.53571429 +20142,335.7333333,1605,450,,286.6071429,80.35714286 +20143,335.75,1611,450,,287.6785714,80.35714286 +20144,335.7666667,1616,450,,288.5714286,80.35714286 +20145,335.7833333,1620,449,,289.2857143,80.17857143 +20146,335.8,1623,449,,289.8214286,80.17857143 +20147,335.8166667,1624,449,,290,80.17857143 +20148,335.8333333,1624,449,,290,80.17857143 +20149,335.85,1624,449,,290,80.17857143 +20150,335.8666667,1623,449,,289.8214286,80.17857143 +20151,335.8833333,1620,449,,289.2857143,80.17857143 +20152,335.9,1616,450,,288.5714286,80.35714286 +20153,335.9166667,1611,450,,287.6785714,80.35714286 +20154,335.9333333,1605,450,,286.6071429,80.35714286 +20155,335.95,1598,451,,285.3571429,80.53571429 +20156,335.9666667,1590,451,,283.9285714,80.53571429 +20157,335.9833333,1581,452,,282.3214286,80.71428571 +20158,336,1571,453,,280.5357143,80.89285714 +20159,336.0166667,1561,453,,278.75,80.89285714 +20160,336.0333333,1549,454,,276.6071429,81.07142857 +20161,336.05,1537,454,,274.4642857,81.07142857 +20162,336.0666667,1524,455,,272.1428571,81.25 +20163,336.0833333,1511,456,,269.8214286,81.42857143 +20164,336.1,1497,456,,267.3214286,81.42857143 +20165,336.1166667,1482,457,,264.6428571,81.60714286 +20166,336.1333333,1467,457,,261.9642857,81.60714286 +20167,336.15,1452,457,,259.2857143,81.60714286 +20168,336.1666667,1437,458,,256.6071429,81.78571429 +20169,336.1833333,1421,458,,253.75,81.78571429 +20170,336.2,1405,459,,250.8928571,81.96428571 +20171,336.2166667,1389,459,,248.0357143,81.96428571 +20172,336.2333333,1374,459,,245.3571429,81.96428571 +20173,336.25,1358,459,,242.5,81.96428571 +20174,336.2666667,1343,459,,239.8214286,81.96428571 +20175,336.2833333,1328,459,,237.1428571,81.96428571 +20176,336.3,1313,459,,234.4642857,81.96428571 +20177,336.3166667,1299,459,,231.9642857,81.96428571 +20178,336.3333333,1285,458,,229.4642857,81.78571429 +20179,336.35,1272,458,,227.1428571,81.78571429 +20180,336.3666667,1259,457,,224.8214286,81.60714286 +20181,336.3833333,1247,457,,222.6785714,81.60714286 +20182,336.4,1236,457,,220.7142857,81.60714286 +20183,336.4166667,1226,456,,218.9285714,81.42857143 +20184,336.4333333,1216,456,,217.1428571,81.42857143 +20185,336.45,1208,455,,215.7142857,81.25 +20186,336.4666667,1200,455,,214.2857143,81.25 +20187,336.4833333,1193,455,,213.0357143,81.25 +20188,336.5,1188,454,,212.1428571,81.07142857 +20189,336.5166667,1183,454,,211.25,81.07142857 +20190,336.5333333,1180,454,,210.7142857,81.07142857 +20191,336.55,1177,454,,210.1785714,81.07142857 +20192,336.5666667,1177,454,,210.1785714,81.07142857 +20193,336.5833333,1177,454,,210.1785714,81.07142857 +20194,336.6,1177,454,,210.1785714,81.07142857 +20195,336.6166667,1179,454,,210.5357143,81.07142857 +20196,336.6333333,1182,454,,211.0714286,81.07142857 +20197,336.65,1186,454,,211.7857143,81.07142857 +20198,336.6666667,1191,455,,212.6785714,81.25 +20199,336.6833333,1197,455,,213.75,81.25 +20200,336.7,1205,456,,215.1785714,81.42857143 +20201,336.7166667,1213,456,,216.6071429,81.42857143 +20202,336.7333333,1221,456,,218.0357143,81.42857143 +20203,336.75,1232,457,,220,81.60714286 +20204,336.7666667,1242,458,,221.7857143,81.78571429 +20205,336.7833333,1254,458,,223.9285714,81.78571429 +20206,336.8,1266,459,,226.0714286,81.96428571 +20207,336.8166667,1279,459,,228.3928571,81.96428571 +20208,336.8333333,1293,459,,230.8928571,81.96428571 +20209,336.85,1307,460,,233.3928571,82.14285714 +20210,336.8666667,1321,460,,235.8928571,82.14285714 +20211,336.8833333,1336,461,,238.5714286,82.32142857 +20212,336.9,1351,461,,241.25,82.32142857 +20213,336.9166667,1366,461,,243.9285714,82.32142857 +20214,336.9333333,1382,460,,246.7857143,82.14285714 +20215,336.95,1398,460,,249.6428571,82.14285714 +20216,336.9666667,1413,460,,252.3214286,82.14285714 +20217,336.9833333,1429,460,,255.1785714,82.14285714 +20218,337,1444,459,,257.8571429,81.96428571 +20219,337.0166667,1460,459,,260.7142857,81.96428571 +20220,337.0333333,1474,459,,263.2142857,81.96428571 +20221,337.05,1489,458,,265.8928571,81.78571429 +20222,337.0666667,1503,457,,268.3928571,81.60714286 +20223,337.0833333,1517,457,,270.8928571,81.60714286 +20224,337.1,1530,456,,273.2142857,81.42857143 +20225,337.1166667,1542,455,,275.3571429,81.25 +20226,337.1333333,1554,455,,277.5,81.25 +20227,337.15,1565,454,,279.4642857,81.07142857 +20228,337.1666667,1575,453,,281.25,80.89285714 +20229,337.1833333,1584,453,,282.8571429,80.89285714 +20230,337.2,1593,452,,284.4642857,80.71428571 +20231,337.2166667,1600,451,,285.7142857,80.53571429 +20232,337.2333333,1607,451,,286.9642857,80.53571429 +20233,337.25,1612,450,,287.8571429,80.35714286 +20234,337.2666667,1616,450,,288.5714286,80.35714286 +20235,337.2833333,1620,450,,289.2857143,80.35714286 +20236,337.3,1622,450,,289.6428571,80.35714286 +20237,337.3166667,1622,449,,289.6428571,80.17857143 +20238,337.3333333,1622,449,,289.6428571,80.17857143 +20239,337.35,1622,449,,289.6428571,80.17857143 +20240,337.3666667,1620,450,,289.2857143,80.35714286 +20241,337.3833333,1616,450,,288.5714286,80.35714286 +20242,337.4,1612,450,,287.8571429,80.35714286 +20243,337.4166667,1606,450,,286.7857143,80.35714286 +20244,337.4333333,1600,451,,285.7142857,80.53571429 +20245,337.45,1592,451,,284.2857143,80.53571429 +20246,337.4666667,1584,452,,282.8571429,80.71428571 +20247,337.4833333,1575,453,,281.25,80.89285714 +20248,337.5,1564,453,,279.2857143,80.89285714 +20249,337.5166667,1553,454,,277.3214286,81.07142857 +20250,337.5333333,1541,455,,275.1785714,81.25 +20251,337.55,1529,455,,273.0357143,81.25 +20252,337.5666667,1516,456,,270.7142857,81.42857143 +20253,337.5833333,1502,456,,268.2142857,81.42857143 +20254,337.6,1488,457,,265.7142857,81.60714286 +20255,337.6166667,1474,457,,263.2142857,81.60714286 +20256,337.6333333,1459,458,,260.5357143,81.78571429 +20257,337.65,1443,458,,257.6785714,81.78571429 +20258,337.6666667,1428,458,,255,81.78571429 +20259,337.6833333,1412,459,,252.1428571,81.96428571 +20260,337.7,1397,459,,249.4642857,81.96428571 +20261,337.7166667,1381,459,,246.6071429,81.96428571 +20262,337.7333333,1365,459,,243.75,81.96428571 +20263,337.75,1350,459,,241.0714286,81.96428571 +20264,337.7666667,1335,459,,238.3928571,81.96428571 +20265,337.7833333,1320,459,,235.7142857,81.96428571 +20266,337.8,1306,458,,233.2142857,81.78571429 +20267,337.8166667,1292,458,,230.7142857,81.78571429 +20268,337.8333333,1278,458,,228.2142857,81.78571429 +20269,337.85,1266,458,,226.0714286,81.78571429 +20270,337.8666667,1253,457,,223.75,81.60714286 +20271,337.8833333,1242,457,,221.7857143,81.60714286 +20272,337.9,1231,456,,219.8214286,81.42857143 +20273,337.9166667,1221,456,,218.0357143,81.42857143 +20274,337.9333333,1213,455,,216.6071429,81.25 +20275,337.95,1204,455,,215,81.25 +20276,337.9666667,1197,455,,213.75,81.25 +20277,337.9833333,1191,454,,212.6785714,81.07142857 +20278,338,1186,454,,211.7857143,81.07142857 +20279,338.0166667,1182,454,,211.0714286,81.07142857 +20280,338.0333333,1180,454,,210.7142857,81.07142857 +20281,338.05,1178,454,,210.3571429,81.07142857 +20282,338.0666667,1178,454,,210.3571429,81.07142857 +20283,338.0833333,1178,454,,210.3571429,81.07142857 +20284,338.1,1179,454,,210.5357143,81.07142857 +20285,338.1166667,1181,454,,210.8928571,81.07142857 +20286,338.1333333,1185,454,,211.6071429,81.07142857 +20287,338.15,1189,454,,212.3214286,81.07142857 +20288,338.1666667,1195,455,,213.3928571,81.25 +20289,338.1833333,1202,455,,214.6428571,81.25 +20290,338.2,1209,456,,215.8928571,81.42857143 +20291,338.2166667,1218,456,,217.5,81.42857143 +20292,338.2333333,1227,456,,219.1071429,81.42857143 +20293,338.25,1238,457,,221.0714286,81.60714286 +20294,338.2666667,1249,457,,223.0357143,81.60714286 +20295,338.2833333,1261,458,,225.1785714,81.78571429 +20296,338.3,1273,458,,227.3214286,81.78571429 +20297,338.3166667,1286,459,,229.6428571,81.96428571 +20298,338.3333333,1300,460,,232.1428571,82.14285714 +20299,338.35,1314,460,,234.6428571,82.14285714 +20300,338.3666667,1329,460,,237.3214286,82.14285714 +20301,338.3833333,1344,460,,240,82.14285714 +20302,338.4,1359,460,,242.6785714,82.14285714 +20303,338.4166667,1374,460,,245.3571429,82.14285714 +20304,338.4333333,1390,460,,248.2142857,82.14285714 +20305,338.45,1405,460,,250.8928571,82.14285714 +20306,338.4666667,1421,460,,253.75,82.14285714 +20307,338.4833333,1437,459,,256.6071429,81.96428571 +20308,338.5,1452,459,,259.2857143,81.96428571 +20309,338.5166667,1467,458,,261.9642857,81.78571429 +20310,338.5333333,1482,458,,264.6428571,81.78571429 +20311,338.55,1497,457,,267.3214286,81.60714286 +20312,338.5666667,1510,457,,269.6428571,81.60714286 +20313,338.5833333,1524,456,,272.1428571,81.42857143 +20314,338.6,1536,456,,274.2857143,81.42857143 +20315,338.6166667,1548,455,,276.4285714,81.25 +20316,338.6333333,1560,454,,278.5714286,81.07142857 +20317,338.65,1570,454,,280.3571429,81.07142857 +20318,338.6666667,1580,453,,282.1428571,80.89285714 +20319,338.6833333,1589,452,,283.75,80.71428571 +20320,338.7,1597,452,,285.1785714,80.71428571 +20321,338.7166667,1604,451,,286.4285714,80.53571429 +20322,338.7333333,1610,451,,287.5,80.53571429 +20323,338.75,1615,450,,288.3928571,80.35714286 +20324,338.7666667,1619,450,,289.1071429,80.35714286 +20325,338.7833333,1621,449,,289.4642857,80.17857143 +20326,338.8,1623,449,,289.8214286,80.17857143 +20327,338.8166667,1623,449,,289.8214286,80.17857143 +20328,338.8333333,1623,449,,289.8214286,80.17857143 +20329,338.85,1621,449,,289.4642857,80.17857143 +20330,338.8666667,1618,449,,288.9285714,80.17857143 +20331,338.8833333,1615,450,,288.3928571,80.35714286 +20332,338.9,1609,450,,287.3214286,80.35714286 +20333,338.9166667,1603,450,,286.25,80.35714286 +20334,338.9333333,1596,451,,285,80.53571429 +20335,338.95,1589,451,,283.75,80.53571429 +20336,338.9666667,1580,452,,282.1428571,80.71428571 +20337,338.9833333,1570,452,,280.3571429,80.71428571 +20338,339,1559,453,,278.3928571,80.89285714 +20339,339.0166667,1548,454,,276.4285714,81.07142857 +20340,339.0333333,1536,454,,274.2857143,81.07142857 +20341,339.05,1523,455,,271.9642857,81.25 +20342,339.0666667,1510,456,,269.6428571,81.42857143 +20343,339.0833333,1496,456,,267.1428571,81.42857143 +20344,339.1,1481,457,,264.4642857,81.60714286 +20345,339.1166667,1467,457,,261.9642857,81.60714286 +20346,339.1333333,1451,458,,259.1071429,81.78571429 +20347,339.15,1436,458,,256.4285714,81.78571429 +20348,339.1666667,1420,458,,253.5714286,81.78571429 +20349,339.1833333,1405,459,,250.8928571,81.96428571 +20350,339.2,1390,459,,248.2142857,81.96428571 +20351,339.2166667,1374,459,,245.3571429,81.96428571 +20352,339.2333333,1358,459,,242.5,81.96428571 +20353,339.25,1343,459,,239.8214286,81.96428571 +20354,339.2666667,1328,459,,237.1428571,81.96428571 +20355,339.2833333,1314,459,,234.6428571,81.96428571 +20356,339.3,1300,458,,232.1428571,81.78571429 +20357,339.3166667,1286,458,,229.6428571,81.78571429 +20358,339.3333333,1273,458,,227.3214286,81.78571429 +20359,339.35,1261,457,,225.1785714,81.60714286 +20360,339.3666667,1249,457,,223.0357143,81.60714286 +20361,339.3833333,1238,457,,221.0714286,81.60714286 +20362,339.4,1227,456,,219.1071429,81.42857143 +20363,339.4166667,1218,456,,217.5,81.42857143 +20364,339.4333333,1209,455,,215.8928571,81.25 +20365,339.45,1202,455,,214.6428571,81.25 +20366,339.4666667,1195,455,,213.3928571,81.25 +20367,339.4833333,1190,454,,212.5,81.07142857 +20368,339.5,1185,454,,211.6071429,81.07142857 +20369,339.5166667,1182,454,,211.0714286,81.07142857 +20370,339.5333333,1180,454,,210.7142857,81.07142857 +20371,339.55,1179,454,,210.5357143,81.07142857 +20372,339.5666667,1179,454,,210.5357143,81.07142857 +20373,339.5833333,1179,454,,210.5357143,81.07142857 +20374,339.6,1181,454,,210.8928571,81.07142857 +20375,339.6166667,1184,454,,211.4285714,81.07142857 +20376,339.6333333,1188,455,,212.1428571,81.25 +20377,339.65,1193,455,,213.0357143,81.25 +20378,339.6666667,1199,455,,214.1071429,81.25 +20379,339.6833333,1207,456,,215.5357143,81.42857143 +20380,339.7,1215,456,,216.9642857,81.42857143 +20381,339.7166667,1224,457,,218.5714286,81.60714286 +20382,339.7333333,1234,457,,220.3571429,81.60714286 +20383,339.75,1244,457,,222.1428571,81.60714286 +20384,339.7666667,1256,458,,224.2857143,81.78571429 +20385,339.7833333,1268,458,,226.4285714,81.78571429 +20386,339.8,1281,459,,228.75,81.96428571 +20387,339.8166667,1294,459,,231.0714286,81.96428571 +20388,339.8333333,1308,460,,233.5714286,82.14285714 +20389,339.85,1323,460,,236.25,82.14285714 +20390,339.8666667,1337,460,,238.75,82.14285714 +20391,339.8833333,1352,460,,241.4285714,82.14285714 +20392,339.9,1368,460,,244.2857143,82.14285714 +20393,339.9166667,1383,460,,246.9642857,82.14285714 +20394,339.9333333,1399,460,,249.8214286,82.14285714 +20395,339.95,1414,460,,252.5,82.14285714 +20396,339.9666667,1430,459,,255.3571429,81.96428571 +20397,339.9833333,1445,459,,258.0357143,81.96428571 +20398,340,1461,459,,260.8928571,81.96428571 +20399,340.0166667,1476,458,,263.5714286,81.78571429 +20400,340.0333333,1490,457,,266.0714286,81.60714286 +20401,340.05,1504,457,,268.5714286,81.60714286 +20402,340.0666667,1518,456,,271.0714286,81.42857143 +20403,340.0833333,1530,455,,273.2142857,81.25 +20404,340.1,1543,455,,275.5357143,81.25 +20405,340.1166667,1555,454,,277.6785714,81.07142857 +20406,340.1333333,1566,453,,279.6428571,80.89285714 +20407,340.15,1576,453,,281.4285714,80.89285714 +20408,340.1666667,1585,452,,283.0357143,80.71428571 +20409,340.1833333,1593,451,,284.4642857,80.53571429 +20410,340.2,1601,451,,285.8928571,80.53571429 +20411,340.2166667,1607,450,,286.9642857,80.35714286 +20412,340.2333333,1612,450,,287.8571429,80.35714286 +20413,340.25,1617,450,,288.75,80.35714286 +20414,340.2666667,1620,449,,289.2857143,80.17857143 +20415,340.2833333,1622,449,,289.6428571,80.17857143 +20416,340.3,1622,449,,289.6428571,80.17857143 +20417,340.3166667,1622,449,,289.6428571,80.17857143 +20418,340.3333333,1622,449,,289.6428571,80.17857143 +20419,340.35,1620,449,,289.2857143,80.17857143 +20420,340.3666667,1616,449,,288.5714286,80.17857143 +20421,340.3833333,1612,450,,287.8571429,80.35714286 +20422,340.4,1607,450,,286.9642857,80.35714286 +20423,340.4166667,1600,450,,285.7142857,80.35714286 +20424,340.4333333,1593,451,,284.4642857,80.53571429 +20425,340.45,1584,452,,282.8571429,80.71428571 +20426,340.4666667,1575,452,,281.25,80.71428571 +20427,340.4833333,1564,453,,279.2857143,80.89285714 +20428,340.5,1553,453,,277.3214286,80.89285714 +20429,340.5166667,1542,454,,275.3571429,81.07142857 +20430,340.5333333,1529,455,,273.0357143,81.25 +20431,340.55,1516,455,,270.7142857,81.25 +20432,340.5666667,1502,456,,268.2142857,81.42857143 +20433,340.5833333,1488,457,,265.7142857,81.60714286 +20434,340.6,1474,457,,263.2142857,81.60714286 +20435,340.6166667,1459,457,,260.5357143,81.60714286 +20436,340.6333333,1443,458,,257.6785714,81.78571429 +20437,340.65,1428,458,,255,81.78571429 +20438,340.6666667,1412,458,,252.1428571,81.78571429 +20439,340.6833333,1397,459,,249.4642857,81.96428571 +20440,340.7,1381,459,,246.6071429,81.96428571 +20441,340.7166667,1366,459,,243.9285714,81.96428571 +20442,340.7333333,1350,459,,241.0714286,81.96428571 +20443,340.75,1335,459,,238.3928571,81.96428571 +20444,340.7666667,1321,459,,235.8928571,81.96428571 +20445,340.7833333,1306,459,,233.2142857,81.96428571 +20446,340.8,1292,458,,230.7142857,81.78571429 +20447,340.8166667,1279,458,,228.3928571,81.78571429 +20448,340.8333333,1266,458,,226.0714286,81.78571429 +20449,340.85,1254,457,,223.9285714,81.60714286 +20450,340.8666667,1243,457,,221.9642857,81.60714286 +20451,340.8833333,1232,456,,220,81.42857143 +20452,340.9,1222,456,,218.2142857,81.42857143 +20453,340.9166667,1213,455,,216.6071429,81.25 +20454,340.9333333,1205,455,,215.1785714,81.25 +20455,340.95,1199,455,,214.1071429,81.25 +20456,340.9666667,1192,454,,212.8571429,81.07142857 +20457,340.9833333,1188,454,,212.1428571,81.07142857 +20458,341,1183,454,,211.25,81.07142857 +20459,341.0166667,1180,454,,210.7142857,81.07142857 +20460,341.0333333,1179,454,,210.5357143,81.07142857 +20461,341.05,1179,454,,210.5357143,81.07142857 +20462,341.0666667,1179,454,,210.5357143,81.07142857 +20463,341.0833333,1180,454,,210.7142857,81.07142857 +20464,341.1,1182,454,,211.0714286,81.07142857 +20465,341.1166667,1186,454,,211.7857143,81.07142857 +20466,341.1333333,1191,455,,212.6785714,81.25 +20467,341.15,1196,455,,213.5714286,81.25 +20468,341.1666667,1203,455,,214.8214286,81.25 +20469,341.1833333,1211,455,,216.25,81.25 +20470,341.2,1219,456,,217.6785714,81.42857143 +20471,341.2166667,1229,457,,219.4642857,81.60714286 +20472,341.2333333,1239,457,,221.25,81.60714286 +20473,341.25,1250,458,,223.2142857,81.78571429 +20474,341.2666667,1262,458,,225.3571429,81.78571429 +20475,341.2833333,1274,458,,227.5,81.78571429 +20476,341.3,1287,459,,229.8214286,81.96428571 +20477,341.3166667,1301,460,,232.3214286,82.14285714 +20478,341.3333333,1316,460,,235,82.14285714 +20479,341.35,1330,460,,237.5,82.14285714 +20480,341.3666667,1345,460,,240.1785714,82.14285714 +20481,341.3833333,1360,460,,242.8571429,82.14285714 +20482,341.4,1376,460,,245.7142857,82.14285714 +20483,341.4166667,1391,460,,248.3928571,82.14285714 +20484,341.4333333,1407,460,,251.25,82.14285714 +20485,341.45,1422,459,,253.9285714,81.96428571 +20486,341.4666667,1438,459,,256.7857143,81.96428571 +20487,341.4833333,1453,458,,259.4642857,81.78571429 +20488,341.5,1468,458,,262.1428571,81.78571429 +20489,341.5166667,1482,457,,264.6428571,81.60714286 +20490,341.5333333,1497,457,,267.3214286,81.60714286 +20491,341.55,1511,456,,269.8214286,81.42857143 +20492,341.5666667,1524,456,,272.1428571,81.42857143 +20493,341.5833333,1537,455,,274.4642857,81.25 +20494,341.6,1549,454,,276.6071429,81.07142857 +20495,341.6166667,1560,454,,278.5714286,81.07142857 +20496,341.6333333,1570,453,,280.3571429,80.89285714 +20497,341.65,1580,452,,282.1428571,80.71428571 +20498,341.6666667,1589,452,,283.75,80.71428571 +20499,341.6833333,1596,451,,285,80.53571429 +20500,341.7,1603,450,,286.25,80.35714286 +20501,341.7166667,1609,450,,287.3214286,80.35714286 +20502,341.7333333,1614,450,,288.2142857,80.35714286 +20503,341.75,1618,450,,288.9285714,80.35714286 +20504,341.7666667,1620,449,,289.2857143,80.17857143 +20505,341.7833333,1622,449,,289.6428571,80.17857143 +20506,341.8,1622,449,,289.6428571,80.17857143 +20507,341.8166667,1622,449,,289.6428571,80.17857143 +20508,341.8333333,1620,449,,289.2857143,80.17857143 +20509,341.85,1617,449,,288.75,80.17857143 +20510,341.8666667,1613,450,,288.0357143,80.35714286 +20511,341.8833333,1608,450,,287.1428571,80.35714286 +20512,341.9,1602,450,,286.0714286,80.35714286 +20513,341.9166667,1596,451,,285,80.53571429 +20514,341.9333333,1588,451,,283.5714286,80.53571429 +20515,341.95,1579,452,,281.9642857,80.71428571 +20516,341.9666667,1569,453,,280.1785714,80.89285714 +20517,341.9833333,1558,453,,278.2142857,80.89285714 +20518,342,1547,454,,276.25,81.07142857 +20519,342.0166667,1535,454,,274.1071429,81.07142857 +20520,342.0333333,1522,455,,271.7857143,81.25 +20521,342.05,1509,456,,269.4642857,81.42857143 +20522,342.0666667,1495,456,,266.9642857,81.42857143 +20523,342.0833333,1481,457,,264.4642857,81.60714286 +20524,342.1,1466,457,,261.7857143,81.60714286 +20525,342.1166667,1451,457,,259.1071429,81.60714286 +20526,342.1333333,1436,458,,256.4285714,81.78571429 +20527,342.15,1420,458,,253.5714286,81.78571429 +20528,342.1666667,1405,458,,250.8928571,81.78571429 +20529,342.1833333,1389,459,,248.0357143,81.96428571 +20530,342.2,1373,459,,245.1785714,81.96428571 +20531,342.2166667,1358,459,,242.5,81.96428571 +20532,342.2333333,1343,459,,239.8214286,81.96428571 +20533,342.25,1328,459,,237.1428571,81.96428571 +20534,342.2666667,1314,458,,234.6428571,81.78571429 +20535,342.2833333,1300,458,,232.1428571,81.78571429 +20536,342.3,1286,458,,229.6428571,81.78571429 +20537,342.3166667,1273,457,,227.3214286,81.60714286 +20538,342.3333333,1260,457,,225,81.60714286 +20539,342.35,1249,456,,223.0357143,81.42857143 +20540,342.3666667,1238,456,,221.0714286,81.42857143 +20541,342.3833333,1228,456,,219.2857143,81.42857143 +20542,342.4,1218,455,,217.5,81.25 +20543,342.4166667,1210,455,,216.0714286,81.25 +20544,342.4333333,1203,455,,214.8214286,81.25 +20545,342.45,1196,454,,213.5714286,81.07142857 +20546,342.4666667,1191,454,,212.6785714,81.07142857 +20547,342.4833333,1186,454,,211.7857143,81.07142857 +20548,342.5,1183,454,,211.25,81.07142857 +20549,342.5166667,1181,454,,210.8928571,81.07142857 +20550,342.5333333,1180,454,,210.7142857,81.07142857 +20551,342.55,1180,454,,210.7142857,81.07142857 +20552,342.5666667,1180,454,,210.7142857,81.07142857 +20553,342.5833333,1182,454,,211.0714286,81.07142857 +20554,342.6,1186,454,,211.7857143,81.07142857 +20555,342.6166667,1190,454,,212.5,81.07142857 +20556,342.6333333,1195,455,,213.3928571,81.25 +20557,342.65,1201,455,,214.4642857,81.25 +20558,342.6666667,1208,455,,215.7142857,81.25 +20559,342.6833333,1216,456,,217.1428571,81.42857143 +20560,342.7,1225,456,,218.75,81.42857143 +20561,342.7166667,1235,457,,220.5357143,81.60714286 +20562,342.7333333,1246,457,,222.5,81.60714286 +20563,342.75,1257,457,,224.4642857,81.60714286 +20564,342.7666667,1269,458,,226.6071429,81.78571429 +20565,342.7833333,1282,458,,228.9285714,81.78571429 +20566,342.8,1296,459,,231.4285714,81.96428571 +20567,342.8166667,1310,459,,233.9285714,81.96428571 +20568,342.8333333,1324,460,,236.4285714,82.14285714 +20569,342.85,1338,460,,238.9285714,82.14285714 +20570,342.8666667,1353,460,,241.6071429,82.14285714 +20571,342.8833333,1369,460,,244.4642857,82.14285714 +20572,342.9,1384,459,,247.1428571,81.96428571 +20573,342.9166667,1400,459,,250,81.96428571 +20574,342.9333333,1415,459,,252.6785714,81.96428571 +20575,342.95,1431,459,,255.5357143,81.96428571 +20576,342.9666667,1446,459,,258.2142857,81.96428571 +20577,342.9833333,1461,458,,260.8928571,81.78571429 +20578,343,1476,458,,263.5714286,81.78571429 +20579,343.0166667,1490,457,,266.0714286,81.60714286 +20580,343.0333333,1504,456,,268.5714286,81.42857143 +20581,343.05,1518,456,,271.0714286,81.42857143 +20582,343.0666667,1531,455,,273.3928571,81.25 +20583,343.0833333,1543,454,,275.5357143,81.07142857 +20584,343.1,1555,454,,277.6785714,81.07142857 +20585,343.1166667,1565,453,,279.4642857,80.89285714 +20586,343.1333333,1576,452,,281.4285714,80.71428571 +20587,343.15,1585,452,,283.0357143,80.71428571 +20588,343.1666667,1593,451,,284.4642857,80.53571429 +20589,343.1833333,1600,450,,285.7142857,80.35714286 +20590,343.2,1607,450,,286.9642857,80.35714286 +20591,343.2166667,1612,450,,287.8571429,80.35714286 +20592,343.2333333,1616,449,,288.5714286,80.17857143 +20593,343.25,1619,449,,289.1071429,80.17857143 +20594,343.2666667,1621,449,,289.4642857,80.17857143 +20595,343.2833333,1621,449,,289.4642857,80.17857143 +20596,343.3,1621,449,,289.4642857,80.17857143 +20597,343.3166667,1621,449,,289.4642857,80.17857143 +20598,343.3333333,1619,449,,289.1071429,80.17857143 +20599,343.35,1615,449,,288.3928571,80.17857143 +20600,343.3666667,1611,449,,287.6785714,80.17857143 +20601,343.3833333,1606,449,,286.7857143,80.17857143 +20602,343.4,1599,450,,285.5357143,80.35714286 +20603,343.4166667,1591,451,,284.1071429,80.53571429 +20604,343.4333333,1583,451,,282.6785714,80.53571429 +20605,343.45,1574,452,,281.0714286,80.71428571 +20606,343.4666667,1564,452,,279.2857143,80.71428571 +20607,343.4833333,1553,453,,277.3214286,80.89285714 +20608,343.5,1541,453,,275.1785714,80.89285714 +20609,343.5166667,1528,454,,272.8571429,81.07142857 +20610,343.5333333,1515,455,,270.5357143,81.25 +20611,343.55,1502,455,,268.2142857,81.25 +20612,343.5666667,1488,456,,265.7142857,81.42857143 +20613,343.5833333,1473,457,,263.0357143,81.60714286 +20614,343.6,1458,457,,260.3571429,81.60714286 +20615,343.6166667,1443,457,,257.6785714,81.60714286 +20616,343.6333333,1428,458,,255,81.78571429 +20617,343.65,1412,458,,252.1428571,81.78571429 +20618,343.6666667,1397,458,,249.4642857,81.78571429 +20619,343.6833333,1381,458,,246.6071429,81.78571429 +20620,343.7,1366,459,,243.9285714,81.96428571 +20621,343.7166667,1351,459,,241.25,81.96428571 +20622,343.7333333,1336,459,,238.5714286,81.96428571 +20623,343.75,1321,459,,235.8928571,81.96428571 +20624,343.7666667,1307,458,,233.3928571,81.78571429 +20625,343.7833333,1293,458,,230.8928571,81.78571429 +20626,343.8,1280,458,,228.5714286,81.78571429 +20627,343.8166667,1267,457,,226.25,81.60714286 +20628,343.8333333,1255,457,,224.1071429,81.60714286 +20629,343.85,1244,456,,222.1428571,81.42857143 +20630,343.8666667,1234,456,,220.3571429,81.42857143 +20631,343.8833333,1224,456,,218.5714286,81.42857143 +20632,343.9,1215,455,,216.9642857,81.25 +20633,343.9166667,1207,455,,215.5357143,81.25 +20634,343.9333333,1201,455,,214.4642857,81.25 +20635,343.95,1195,454,,213.3928571,81.07142857 +20636,343.9666667,1190,454,,212.5,81.07142857 +20637,343.9833333,1186,454,,211.7857143,81.07142857 +20638,344,1183,454,,211.25,81.07142857 +20639,344.0166667,1182,454,,211.0714286,81.07142857 +20640,344.0333333,1182,454,,211.0714286,81.07142857 +20641,344.05,1182,454,,211.0714286,81.07142857 +20642,344.0666667,1183,454,,211.25,81.07142857 +20643,344.0833333,1186,454,,211.7857143,81.07142857 +20644,344.1,1189,454,,212.3214286,81.07142857 +20645,344.1166667,1194,455,,213.2142857,81.25 +20646,344.1333333,1199,455,,214.1071429,81.25 +20647,344.15,1206,455,,215.3571429,81.25 +20648,344.1666667,1214,456,,216.7857143,81.42857143 +20649,344.1833333,1223,456,,218.3928571,81.42857143 +20650,344.2,1232,457,,220,81.60714286 +20651,344.2166667,1242,457,,221.7857143,81.60714286 +20652,344.2333333,1254,458,,223.9285714,81.78571429 +20653,344.25,1265,458,,225.8928571,81.78571429 +20654,344.2666667,1277,458,,228.0357143,81.78571429 +20655,344.2833333,1291,459,,230.5357143,81.96428571 +20656,344.3,1304,459,,232.8571429,81.96428571 +20657,344.3166667,1319,460,,235.5357143,82.14285714 +20658,344.3333333,1333,460,,238.0357143,82.14285714 +20659,344.35,1348,460,,240.7142857,82.14285714 +20660,344.3666667,1363,460,,243.3928571,82.14285714 +20661,344.3833333,1378,460,,246.0714286,82.14285714 +20662,344.4,1394,460,,248.9285714,82.14285714 +20663,344.4166667,1409,459,,251.6071429,81.96428571 +20664,344.4333333,1425,459,,254.4642857,81.96428571 +20665,344.45,1440,459,,257.1428571,81.96428571 +20666,344.4666667,1455,459,,259.8214286,81.96428571 +20667,344.4833333,1470,458,,262.5,81.78571429 +20668,344.5,1485,457,,265.1785714,81.60714286 +20669,344.5166667,1499,457,,267.6785714,81.60714286 +20670,344.5333333,1513,456,,270.1785714,81.42857143 +20671,344.55,1526,455,,272.5,81.25 +20672,344.5666667,1538,455,,274.6428571,81.25 +20673,344.5833333,1550,454,,276.7857143,81.07142857 +20674,344.6,1561,453,,278.75,80.89285714 +20675,344.6166667,1572,452,,280.7142857,80.71428571 +20676,344.6333333,1581,452,,282.3214286,80.71428571 +20677,344.65,1590,451,,283.9285714,80.53571429 +20678,344.6666667,1598,451,,285.3571429,80.53571429 +20679,344.6833333,1604,450,,286.4285714,80.35714286 +20680,344.7,1610,450,,287.5,80.35714286 +20681,344.7166667,1615,449,,288.3928571,80.17857143 +20682,344.7333333,1618,449,,288.9285714,80.17857143 +20683,344.75,1621,449,,289.4642857,80.17857143 +20684,344.7666667,1622,449,,289.6428571,80.17857143 +20685,344.7833333,1622,449,,289.6428571,80.17857143 +20686,344.8,1622,449,,289.6428571,80.17857143 +20687,344.8166667,1620,449,,289.2857143,80.17857143 +20688,344.8333333,1617,449,,288.75,80.17857143 +20689,344.85,1613,449,,288.0357143,80.17857143 +20690,344.8666667,1608,450,,287.1428571,80.35714286 +20691,344.8833333,1602,450,,286.0714286,80.35714286 +20692,344.9,1595,450,,284.8214286,80.35714286 +20693,344.9166667,1587,451,,283.3928571,80.53571429 +20694,344.9333333,1578,452,,281.7857143,80.71428571 +20695,344.95,1569,452,,280.1785714,80.71428571 +20696,344.9666667,1558,453,,278.2142857,80.89285714 +20697,344.9833333,1547,454,,276.25,81.07142857 +20698,345,1535,454,,274.1071429,81.07142857 +20699,345.0166667,1522,455,,271.7857143,81.25 +20700,345.0333333,1508,455,,269.2857143,81.25 +20701,345.05,1495,456,,266.9642857,81.42857143 +20702,345.0666667,1480,456,,264.2857143,81.42857143 +20703,345.0833333,1466,457,,261.7857143,81.60714286 +20704,345.1,1451,457,,259.1071429,81.60714286 +20705,345.1166667,1435,458,,256.25,81.78571429 +20706,345.1333333,1420,458,,253.5714286,81.78571429 +20707,345.15,1404,459,,250.7142857,81.96428571 +20708,345.1666667,1389,459,,248.0357143,81.96428571 +20709,345.1833333,1373,459,,245.1785714,81.96428571 +20710,345.2,1358,459,,242.5,81.96428571 +20711,345.2166667,1343,459,,239.8214286,81.96428571 +20712,345.2333333,1328,459,,237.1428571,81.96428571 +20713,345.25,1314,459,,234.6428571,81.96428571 +20714,345.2666667,1300,459,,232.1428571,81.96428571 +20715,345.2833333,1286,458,,229.6428571,81.78571429 +20716,345.3,1273,458,,227.3214286,81.78571429 +20717,345.3166667,1261,457,,225.1785714,81.60714286 +20718,345.3333333,1250,457,,223.2142857,81.60714286 +20719,345.35,1239,457,,221.25,81.60714286 +20720,345.3666667,1229,456,,219.4642857,81.42857143 +20721,345.3833333,1219,456,,217.6785714,81.42857143 +20722,345.4,1211,455,,216.25,81.25 +20723,345.4166667,1204,455,,215,81.25 +20724,345.4333333,1197,455,,213.75,81.25 +20725,345.45,1192,455,,212.8571429,81.25 +20726,345.4666667,1188,455,,212.1428571,81.25 +20727,345.4833333,1184,454,,211.4285714,81.07142857 +20728,345.5,1182,454,,211.0714286,81.07142857 +20729,345.5166667,1182,454,,211.0714286,81.07142857 +20730,345.5333333,1182,454,,211.0714286,81.07142857 +20731,345.55,1182,454,,211.0714286,81.07142857 +20732,345.5666667,1184,455,,211.4285714,81.25 +20733,345.5833333,1187,455,,211.9642857,81.25 +20734,345.6,1191,455,,212.6785714,81.25 +20735,345.6166667,1196,455,,213.5714286,81.25 +20736,345.6333333,1203,455,,214.8214286,81.25 +20737,345.65,1210,456,,216.0714286,81.42857143 +20738,345.6666667,1218,456,,217.5,81.42857143 +20739,345.6833333,1227,457,,219.1071429,81.60714286 +20740,345.7,1237,457,,220.8928571,81.60714286 +20741,345.7166667,1248,458,,222.8571429,81.78571429 +20742,345.7333333,1259,458,,224.8214286,81.78571429 +20743,345.75,1271,459,,226.9642857,81.96428571 +20744,345.7666667,1284,459,,229.2857143,81.96428571 +20745,345.7833333,1297,460,,231.6071429,82.14285714 +20746,345.8,1311,460,,234.1071429,82.14285714 +20747,345.8166667,1325,460,,236.6071429,82.14285714 +20748,345.8333333,1340,460,,239.2857143,82.14285714 +20749,345.85,1355,460,,241.9642857,82.14285714 +20750,345.8666667,1370,460,,244.6428571,82.14285714 +20751,345.8833333,1385,460,,247.3214286,82.14285714 +20752,345.9,1401,460,,250.1785714,82.14285714 +20753,345.9166667,1416,460,,252.8571429,82.14285714 +20754,345.9333333,1432,459,,255.7142857,81.96428571 +20755,345.95,1447,459,,258.3928571,81.96428571 +20756,345.9666667,1462,458,,261.0714286,81.78571429 +20757,345.9833333,1477,458,,263.75,81.78571429 +20758,346,1491,457,,266.25,81.60714286 +20759,346.0166667,1505,457,,268.75,81.60714286 +20760,346.0333333,1518,456,,271.0714286,81.42857143 +20761,346.05,1531,456,,273.3928571,81.42857143 +20762,346.0666667,1543,455,,275.5357143,81.25 +20763,346.0833333,1554,454,,277.5,81.07142857 +20764,346.1,1565,453,,279.4642857,80.89285714 +20765,346.1166667,1575,453,,281.25,80.89285714 +20766,346.1333333,1584,452,,282.8571429,80.71428571 +20767,346.15,1592,451,,284.2857143,80.53571429 +20768,346.1666667,1599,451,,285.5357143,80.53571429 +20769,346.1833333,1606,451,,286.7857143,80.53571429 +20770,346.2,1611,450,,287.6785714,80.35714286 +20771,346.2166667,1615,450,,288.3928571,80.35714286 +20772,346.2333333,1618,449,,288.9285714,80.17857143 +20773,346.25,1620,449,,289.2857143,80.17857143 +20774,346.2666667,1620,449,,289.2857143,80.17857143 +20775,346.2833333,1620,449,,289.2857143,80.17857143 +20776,346.3,1619,449,,289.1071429,80.17857143 +20777,346.3166667,1617,449,,288.75,80.17857143 +20778,346.3333333,1614,449,,288.2142857,80.17857143 +20779,346.35,1609,450,,287.3214286,80.35714286 +20780,346.3666667,1604,450,,286.4285714,80.35714286 +20781,346.3833333,1597,451,,285.1785714,80.53571429 +20782,346.4,1590,451,,283.9285714,80.53571429 +20783,346.4166667,1581,452,,282.3214286,80.71428571 +20784,346.4333333,1572,452,,280.7142857,80.71428571 +20785,346.45,1562,453,,278.9285714,80.89285714 +20786,346.4666667,1551,453,,276.9642857,80.89285714 +20787,346.4833333,1539,454,,274.8214286,81.07142857 +20788,346.5,1527,455,,272.6785714,81.25 +20789,346.5166667,1514,455,,270.3571429,81.25 +20790,346.5333333,1501,456,,268.0357143,81.42857143 +20791,346.55,1487,456,,265.5357143,81.42857143 +20792,346.5666667,1472,457,,262.8571429,81.60714286 +20793,346.5833333,1457,457,,260.1785714,81.60714286 +20794,346.6,1443,458,,257.6785714,81.78571429 +20795,346.6166667,1427,458,,254.8214286,81.78571429 +20796,346.6333333,1412,458,,252.1428571,81.78571429 +20797,346.65,1397,459,,249.4642857,81.96428571 +20798,346.6666667,1381,459,,246.6071429,81.96428571 +20799,346.6833333,1366,459,,243.9285714,81.96428571 +20800,346.7,1350,459,,241.0714286,81.96428571 +20801,346.7166667,1336,459,,238.5714286,81.96428571 +20802,346.7333333,1321,459,,235.8928571,81.96428571 +20803,346.75,1307,459,,233.3928571,81.96428571 +20804,346.7666667,1293,459,,230.8928571,81.96428571 +20805,346.7833333,1280,458,,228.5714286,81.78571429 +20806,346.8,1268,458,,226.4285714,81.78571429 +20807,346.8166667,1256,457,,224.2857143,81.60714286 +20808,346.8333333,1245,457,,222.3214286,81.60714286 +20809,346.85,1234,457,,220.3571429,81.60714286 +20810,346.8666667,1224,456,,218.5714286,81.42857143 +20811,346.8833333,1216,456,,217.1428571,81.42857143 +20812,346.9,1208,455,,215.7142857,81.25 +20813,346.9166667,1202,455,,214.6428571,81.25 +20814,346.9333333,1196,455,,213.5714286,81.25 +20815,346.95,1191,455,,212.6785714,81.25 +20816,346.9666667,1187,455,,211.9642857,81.25 +20817,346.9833333,1184,454,,211.4285714,81.07142857 +20818,347,1183,454,,211.25,81.07142857 +20819,347.0166667,1183,454,,211.25,81.07142857 +20820,347.0333333,1183,455,,211.25,81.25 +20821,347.05,1184,455,,211.4285714,81.25 +20822,347.0666667,1187,455,,211.9642857,81.25 +20823,347.0833333,1190,455,,212.5,81.25 +20824,347.1,1195,456,,213.3928571,81.42857143 +20825,347.1166667,1201,456,,214.4642857,81.42857143 +20826,347.1333333,1207,456,,215.5357143,81.42857143 +20827,347.15,1215,457,,216.9642857,81.60714286 +20828,347.1666667,1223,457,,218.3928571,81.60714286 +20829,347.1833333,1233,457,,220.1785714,81.60714286 +20830,347.2,1244,458,,222.1428571,81.78571429 +20831,347.2166667,1254,458,,223.9285714,81.78571429 +20832,347.2333333,1266,459,,226.0714286,81.96428571 +20833,347.25,1278,459,,228.2142857,81.96428571 +20834,347.2666667,1291,460,,230.5357143,82.14285714 +20835,347.2833333,1305,460,,233.0357143,82.14285714 +20836,347.3,1319,460,,235.5357143,82.14285714 +20837,347.3166667,1333,460,,238.0357143,82.14285714 +20838,347.3333333,1348,460,,240.7142857,82.14285714 +20839,347.35,1363,460,,243.3928571,82.14285714 +20840,347.3666667,1378,460,,246.0714286,82.14285714 +20841,347.3833333,1394,460,,248.9285714,82.14285714 +20842,347.4,1409,460,,251.6071429,82.14285714 +20843,347.4166667,1424,460,,254.2857143,82.14285714 +20844,347.4333333,1439,459,,256.9642857,81.96428571 +20845,347.45,1454,459,,259.6428571,81.96428571 +20846,347.4666667,1469,459,,262.3214286,81.96428571 +20847,347.4833333,1483,458,,264.8214286,81.78571429 +20848,347.5,1497,457,,267.3214286,81.60714286 +20849,347.5166667,1511,457,,269.8214286,81.60714286 +20850,347.5333333,1524,456,,272.1428571,81.42857143 +20851,347.55,1536,455,,274.2857143,81.25 +20852,347.5666667,1548,455,,276.4285714,81.25 +20853,347.5833333,1559,454,,278.3928571,81.07142857 +20854,347.6,1569,453,,280.1785714,80.89285714 +20855,347.6166667,1578,453,,281.7857143,80.89285714 +20856,347.6333333,1587,452,,283.3928571,80.71428571 +20857,347.65,1595,451,,284.8214286,80.53571429 +20858,347.6666667,1601,451,,285.8928571,80.53571429 +20859,347.6833333,1607,451,,286.9642857,80.53571429 +20860,347.7,1611,450,,287.6785714,80.35714286 +20861,347.7166667,1615,450,,288.3928571,80.35714286 +20862,347.7333333,1618,450,,288.9285714,80.35714286 +20863,347.75,1619,450,,289.1071429,80.35714286 +20864,347.7666667,1619,450,,289.1071429,80.35714286 +20865,347.7833333,1619,450,,289.1071429,80.35714286 +20866,347.8,1617,450,,288.75,80.35714286 +20867,347.8166667,1614,450,,288.2142857,80.35714286 +20868,347.8333333,1610,450,,287.5,80.35714286 +20869,347.85,1605,451,,286.6071429,80.53571429 +20870,347.8666667,1599,451,,285.5357143,80.53571429 +20871,347.8833333,1592,451,,284.2857143,80.53571429 +20872,347.9,1584,452,,282.8571429,80.71428571 +20873,347.9166667,1576,452,,281.4285714,80.71428571 +20874,347.9333333,1566,453,,279.6428571,80.89285714 +20875,347.95,1556,454,,277.8571429,81.07142857 +20876,347.9666667,1544,454,,275.7142857,81.07142857 +20877,347.9833333,1532,455,,273.5714286,81.25 +20878,348,1520,456,,271.4285714,81.42857143 +20879,348.0166667,1507,456,,269.1071429,81.42857143 +20880,348.0333333,1493,457,,266.6071429,81.60714286 +20881,348.05,1479,457,,264.1071429,81.60714286 +20882,348.0666667,1464,458,,261.4285714,81.78571429 +20883,348.0833333,1449,458,,258.75,81.78571429 +20884,348.1,1434,459,,256.0714286,81.96428571 +20885,348.1166667,1419,459,,253.3928571,81.96428571 +20886,348.1333333,1403,459,,250.5357143,81.96428571 +20887,348.15,1388,459,,247.8571429,81.96428571 +20888,348.1666667,1373,460,,245.1785714,82.14285714 +20889,348.1833333,1358,460,,242.5,82.14285714 +20890,348.2,1343,460,,239.8214286,82.14285714 +20891,348.2166667,1328,460,,237.1428571,82.14285714 +20892,348.2333333,1314,459,,234.6428571,81.96428571 +20893,348.25,1300,459,,232.1428571,81.96428571 +20894,348.2666667,1287,459,,229.8214286,81.96428571 +20895,348.2833333,1274,458,,227.5,81.78571429 +20896,348.3,1262,458,,225.3571429,81.78571429 +20897,348.3166667,1251,457,,223.3928571,81.60714286 +20898,348.3333333,1240,457,,221.4285714,81.60714286 +20899,348.35,1230,457,,219.6428571,81.60714286 +20900,348.3666667,1221,456,,218.0357143,81.42857143 +20901,348.3833333,1212,456,,216.4285714,81.42857143 +20902,348.4,1205,456,,215.1785714,81.42857143 +20903,348.4166667,1199,455,,214.1071429,81.25 +20904,348.4333333,1193,455,,213.0357143,81.25 +20905,348.45,1189,455,,212.3214286,81.25 +20906,348.4666667,1186,455,,211.7857143,81.25 +20907,348.4833333,1184,455,,211.4285714,81.25 +20908,348.5,1184,455,,211.4285714,81.25 +20909,348.5166667,1184,455,,211.4285714,81.25 +20910,348.5333333,1184,455,,211.4285714,81.25 +20911,348.55,1186,455,,211.7857143,81.25 +20912,348.5666667,1189,455,,212.3214286,81.25 +20913,348.5833333,1193,456,,213.0357143,81.42857143 +20914,348.6,1198,456,,213.9285714,81.42857143 +20915,348.6166667,1204,456,,215,81.42857143 +20916,348.6333333,1211,457,,216.25,81.60714286 +20917,348.65,1219,457,,217.6785714,81.60714286 +20918,348.6666667,1228,458,,219.2857143,81.78571429 +20919,348.6833333,1238,458,,221.0714286,81.78571429 +20920,348.7,1249,459,,223.0357143,81.96428571 +20921,348.7166667,1260,459,,225,81.96428571 +20922,348.7333333,1272,459,,227.1428571,81.96428571 +20923,348.75,1285,460,,229.4642857,82.14285714 +20924,348.7666667,1298,460,,231.7857143,82.14285714 +20925,348.7833333,1312,461,,234.2857143,82.32142857 +20926,348.8,1325,461,,236.6071429,82.32142857 +20927,348.8166667,1340,461,,239.2857143,82.32142857 +20928,348.8333333,1355,461,,241.9642857,82.32142857 +20929,348.85,1370,461,,244.6428571,82.32142857 +20930,348.8666667,1385,461,,247.3214286,82.32142857 +20931,348.8833333,1400,460,,250,82.14285714 +20932,348.9,1416,460,,252.8571429,82.14285714 +20933,348.9166667,1431,460,,255.5357143,82.14285714 +20934,348.9333333,1446,460,,258.2142857,82.14285714 +20935,348.95,1461,459,,260.8928571,81.96428571 +20936,348.9666667,1475,459,,263.3928571,81.96428571 +20937,348.9833333,1489,458,,265.8928571,81.78571429 +20938,349,1503,457,,268.3928571,81.60714286 +20939,349.0166667,1516,457,,270.7142857,81.60714286 +20940,349.0333333,1529,456,,273.0357143,81.42857143 +20941,349.05,1541,456,,275.1785714,81.42857143 +20942,349.0666667,1552,455,,277.1428571,81.25 +20943,349.0833333,1563,454,,279.1071429,81.07142857 +20944,349.1,1573,454,,280.8928571,81.07142857 +20945,349.1166667,1581,453,,282.3214286,80.89285714 +20946,349.1333333,1589,452,,283.75,80.71428571 +20947,349.15,1596,452,,285,80.71428571 +20948,349.1666667,1603,451,,286.25,80.53571429 +20949,349.1833333,1608,451,,287.1428571,80.53571429 +20950,349.2,1612,451,,287.8571429,80.53571429 +20951,349.2166667,1615,450,,288.3928571,80.35714286 +20952,349.2333333,1617,450,,288.75,80.35714286 +20953,349.25,1617,450,,288.75,80.35714286 +20954,349.2666667,1617,450,,288.75,80.35714286 +20955,349.2833333,1616,450,,288.5714286,80.35714286 +20956,349.3,1614,450,,288.2142857,80.35714286 +20957,349.3166667,1611,451,,287.6785714,80.53571429 +20958,349.3333333,1606,451,,286.7857143,80.53571429 +20959,349.35,1601,451,,285.8928571,80.53571429 +20960,349.3666667,1594,452,,284.6428571,80.71428571 +20961,349.3833333,1587,452,,283.3928571,80.71428571 +20962,349.4,1579,453,,281.9642857,80.89285714 +20963,349.4166667,1570,453,,280.3571429,80.89285714 +20964,349.4333333,1560,454,,278.5714286,81.07142857 +20965,349.45,1549,455,,276.6071429,81.25 +20966,349.4666667,1537,455,,274.4642857,81.25 +20967,349.4833333,1525,456,,272.3214286,81.42857143 +20968,349.5,1512,457,,270,81.60714286 +20969,349.5166667,1499,457,,267.6785714,81.60714286 +20970,349.5333333,1485,458,,265.1785714,81.78571429 +20971,349.55,1471,458,,262.6785714,81.78571429 +20972,349.5666667,1456,458,,260,81.78571429 +20973,349.5833333,1441,459,,257.3214286,81.96428571 +20974,349.6,1426,459,,254.6428571,81.96428571 +20975,349.6166667,1411,460,,251.9642857,82.14285714 +20976,349.6333333,1396,460,,249.2857143,82.14285714 +20977,349.65,1381,460,,246.6071429,82.14285714 +20978,349.6666667,1365,460,,243.75,82.14285714 +20979,349.6833333,1350,460,,241.0714286,82.14285714 +20980,349.7,1336,460,,238.5714286,82.14285714 +20981,349.7166667,1322,460,,236.0714286,82.14285714 +20982,349.7333333,1307,460,,233.3928571,82.14285714 +20983,349.75,1294,459,,231.0714286,81.96428571 +20984,349.7666667,1281,459,,228.75,81.96428571 +20985,349.7833333,1269,459,,226.6071429,81.96428571 +20986,349.8,1257,459,,224.4642857,81.96428571 +20987,349.8166667,1246,458,,222.5,81.78571429 +20988,349.8333333,1235,458,,220.5357143,81.78571429 +20989,349.85,1226,457,,218.9285714,81.60714286 +20990,349.8666667,1217,457,,217.3214286,81.60714286 +20991,349.8833333,1209,457,,215.8928571,81.60714286 +20992,349.9,1203,456,,214.8214286,81.42857143 +20993,349.9166667,1197,456,,213.75,81.42857143 +20994,349.9333333,1192,456,,212.8571429,81.42857143 +20995,349.95,1188,456,,212.1428571,81.42857143 +20996,349.9666667,1186,455,,211.7857143,81.25 +20997,349.9833333,1184,455,,211.4285714,81.25 +20998,350,1184,455,,211.4285714,81.25 +20999,350.0166667,1184,455,,211.4285714,81.25 +21000,350.0333333,1185,455,,211.6071429,81.25 +21001,350.05,1188,456,,212.1428571,81.42857143 +21002,350.0666667,1192,456,,212.8571429,81.42857143 +21003,350.0833333,1196,456,,213.5714286,81.42857143 +21004,350.1,1202,456,,214.6428571,81.42857143 +21005,350.1166667,1209,457,,215.8928571,81.60714286 +21006,350.1333333,1216,457,,217.1428571,81.60714286 +21007,350.15,1224,458,,218.5714286,81.78571429 +21008,350.1666667,1234,458,,220.3571429,81.78571429 +21009,350.1833333,1244,459,,222.1428571,81.96428571 +21010,350.2,1255,459,,224.1071429,81.96428571 +21011,350.2166667,1267,460,,226.25,82.14285714 +21012,350.2333333,1279,460,,228.3928571,82.14285714 +21013,350.25,1292,460,,230.7142857,82.14285714 +21014,350.2666667,1305,461,,233.0357143,82.32142857 +21015,350.2833333,1320,461,,235.7142857,82.32142857 +21016,350.3,1334,461,,238.2142857,82.32142857 +21017,350.3166667,1348,461,,240.7142857,82.32142857 +21018,350.3333333,1363,461,,243.3928571,82.32142857 +21019,350.35,1378,461,,246.0714286,82.32142857 +21020,350.3666667,1393,461,,248.75,82.32142857 +21021,350.3833333,1409,461,,251.6071429,82.32142857 +21022,350.4,1424,460,,254.2857143,82.14285714 +21023,350.4166667,1439,460,,256.9642857,82.14285714 +21024,350.4333333,1454,460,,259.6428571,82.14285714 +21025,350.45,1469,459,,262.3214286,81.96428571 +21026,350.4666667,1483,459,,264.8214286,81.96428571 +21027,350.4833333,1496,458,,267.1428571,81.78571429 +21028,350.5,1510,458,,269.6428571,81.78571429 +21029,350.5166667,1523,457,,271.9642857,81.60714286 +21030,350.5333333,1535,456,,274.1071429,81.42857143 +21031,350.55,1547,455,,276.25,81.25 +21032,350.5666667,1558,455,,278.2142857,81.25 +21033,350.5833333,1568,454,,280,81.07142857 +21034,350.6,1577,454,,281.6071429,81.07142857 +21035,350.6166667,1586,453,,283.2142857,80.89285714 +21036,350.6333333,1593,452,,284.4642857,80.71428571 +21037,350.65,1600,452,,285.7142857,80.71428571 +21038,350.6666667,1606,451,,286.7857143,80.53571429 +21039,350.6833333,1610,451,,287.5,80.53571429 +21040,350.7,1614,451,,288.2142857,80.53571429 +21041,350.7166667,1616,450,,288.5714286,80.35714286 +21042,350.7333333,1618,450,,288.9285714,80.35714286 +21043,350.75,1618,450,,288.9285714,80.35714286 +21044,350.7666667,1618,450,,288.9285714,80.35714286 +21045,350.7833333,1616,451,,288.5714286,80.53571429 +21046,350.8,1613,451,,288.0357143,80.53571429 +21047,350.8166667,1609,451,,287.3214286,80.53571429 +21048,350.8333333,1604,451,,286.4285714,80.53571429 +21049,350.85,1598,452,,285.3571429,80.71428571 +21050,350.8666667,1591,452,,284.1071429,80.71428571 +21051,350.8833333,1583,453,,282.6785714,80.89285714 +21052,350.9,1574,454,,281.0714286,81.07142857 +21053,350.9166667,1565,454,,279.4642857,81.07142857 +21054,350.9333333,1555,455,,277.6785714,81.25 +21055,350.95,1543,455,,275.5357143,81.25 +21056,350.9666667,1531,456,,273.3928571,81.42857143 +21057,350.9833333,1519,456,,271.25,81.42857143 +21058,351,1506,457,,268.9285714,81.60714286 +21059,351.0166667,1492,457,,266.4285714,81.60714286 +21060,351.0333333,1478,458,,263.9285714,81.78571429 +21061,351.05,1464,458,,261.4285714,81.78571429 +21062,351.0666667,1449,459,,258.75,81.96428571 +21063,351.0833333,1434,459,,256.0714286,81.96428571 +21064,351.1,1419,460,,253.3928571,82.14285714 +21065,351.1166667,1404,460,,250.7142857,82.14285714 +21066,351.1333333,1389,460,,248.0357143,82.14285714 +21067,351.15,1374,460,,245.3571429,82.14285714 +21068,351.1666667,1358,460,,242.5,82.14285714 +21069,351.1833333,1343,460,,239.8214286,82.14285714 +21070,351.2,1329,460,,237.3214286,82.14285714 +21071,351.2166667,1315,460,,234.8214286,82.14285714 +21072,351.2333333,1301,460,,232.3214286,82.14285714 +21073,351.25,1288,460,,230,82.14285714 +21074,351.2666667,1275,459,,227.6785714,81.96428571 +21075,351.2833333,1263,459,,225.5357143,81.96428571 +21076,351.3,1252,459,,223.5714286,81.96428571 +21077,351.3166667,1241,458,,221.6071429,81.78571429 +21078,351.3333333,1231,458,,219.8214286,81.78571429 +21079,351.35,1223,457,,218.3928571,81.60714286 +21080,351.3666667,1214,457,,216.7857143,81.60714286 +21081,351.3833333,1207,456,,215.5357143,81.42857143 +21082,351.4,1201,456,,214.4642857,81.42857143 +21083,351.4166667,1196,456,,213.5714286,81.42857143 +21084,351.4333333,1192,456,,212.8571429,81.42857143 +21085,351.45,1188,456,,212.1428571,81.42857143 +21086,351.4666667,1186,456,,211.7857143,81.42857143 +21087,351.4833333,1186,456,,211.7857143,81.42857143 +21088,351.5,1186,456,,211.7857143,81.42857143 +21089,351.5166667,1186,456,,211.7857143,81.42857143 +21090,351.5333333,1188,456,,212.1428571,81.42857143 +21091,351.55,1191,456,,212.6785714,81.42857143 +21092,351.5666667,1195,456,,213.3928571,81.42857143 +21093,351.5833333,1201,456,,214.4642857,81.42857143 +21094,351.6,1207,456,,215.5357143,81.42857143 +21095,351.6166667,1214,457,,216.7857143,81.60714286 +21096,351.6333333,1222,458,,218.2142857,81.78571429 +21097,351.65,1231,458,,219.8214286,81.78571429 +21098,351.6666667,1240,458,,221.4285714,81.78571429 +21099,351.6833333,1251,459,,223.3928571,81.96428571 +21100,351.7,1263,459,,225.5357143,81.96428571 +21101,351.7166667,1274,460,,227.5,82.14285714 +21102,351.7333333,1286,460,,229.6428571,82.14285714 +21103,351.75,1300,460,,232.1428571,82.14285714 +21104,351.7666667,1314,461,,234.6428571,82.32142857 +21105,351.7833333,1328,461,,237.1428571,82.32142857 +21106,351.8,1342,461,,239.6428571,82.32142857 +21107,351.8166667,1356,461,,242.1428571,82.32142857 +21108,351.8333333,1372,461,,245,82.32142857 +21109,351.85,1387,461,,247.6785714,82.32142857 +21110,351.8666667,1402,460,,250.3571429,82.14285714 +21111,351.8833333,1417,460,,253.0357143,82.14285714 +21112,351.9,1432,460,,255.7142857,82.14285714 +21113,351.9166667,1447,459,,258.3928571,81.96428571 +21114,351.9333333,1462,459,,261.0714286,81.96428571 +21115,351.95,1476,459,,263.5714286,81.96428571 +21116,351.9666667,1491,458,,266.25,81.78571429 +21117,351.9833333,1504,458,,268.5714286,81.78571429 +21118,352,1518,457,,271.0714286,81.60714286 +21119,352.0166667,1530,456,,273.2142857,81.42857143 +21120,352.0333333,1542,456,,275.3571429,81.42857143 +21121,352.05,1553,455,,277.3214286,81.25 +21122,352.0666667,1564,454,,279.2857143,81.07142857 +21123,352.0833333,1574,454,,281.0714286,81.07142857 +21124,352.1,1582,453,,282.5,80.89285714 +21125,352.1166667,1590,453,,283.9285714,80.89285714 +21126,352.1333333,1597,452,,285.1785714,80.71428571 +21127,352.15,1604,452,,286.4285714,80.71428571 +21128,352.1666667,1609,451,,287.3214286,80.53571429 +21129,352.1833333,1613,451,,288.0357143,80.53571429 +21130,352.2,1616,451,,288.5714286,80.53571429 +21131,352.2166667,1618,450,,288.9285714,80.35714286 +21132,352.2333333,1618,450,,288.9285714,80.35714286 +21133,352.25,1618,450,,288.9285714,80.35714286 +21134,352.2666667,1617,450,,288.75,80.35714286 +21135,352.2833333,1615,450,,288.3928571,80.35714286 +21136,352.3,1612,451,,287.8571429,80.53571429 +21137,352.3166667,1607,451,,286.9642857,80.53571429 +21138,352.3333333,1602,452,,286.0714286,80.71428571 +21139,352.35,1595,452,,284.8214286,80.71428571 +21140,352.3666667,1588,452,,283.5714286,80.71428571 +21141,352.3833333,1580,453,,282.1428571,80.89285714 +21142,352.4,1571,453,,280.5357143,80.89285714 +21143,352.4166667,1561,454,,278.75,81.07142857 +21144,352.4333333,1550,455,,276.7857143,81.25 +21145,352.45,1538,455,,274.6428571,81.25 +21146,352.4666667,1526,456,,272.5,81.42857143 +21147,352.4833333,1514,457,,270.3571429,81.60714286 +21148,352.5,1500,457,,267.8571429,81.60714286 +21149,352.5166667,1486,458,,265.3571429,81.78571429 +21150,352.5333333,1472,458,,262.8571429,81.78571429 +21151,352.55,1457,459,,260.1785714,81.96428571 +21152,352.5666667,1442,459,,257.5,81.96428571 +21153,352.5833333,1428,459,,255,81.96428571 +21154,352.6,1412,460,,252.1428571,82.14285714 +21155,352.6166667,1397,460,,249.4642857,82.14285714 +21156,352.6333333,1382,460,,246.7857143,82.14285714 +21157,352.65,1367,461,,244.1071429,82.32142857 +21158,352.6666667,1352,461,,241.4285714,82.32142857 +21159,352.6833333,1337,461,,238.75,82.32142857 +21160,352.7,1323,460,,236.25,82.14285714 +21161,352.7166667,1309,460,,233.75,82.14285714 +21162,352.7333333,1296,460,,231.4285714,82.14285714 +21163,352.75,1283,459,,229.1071429,81.96428571 +21164,352.7666667,1271,459,,226.9642857,81.96428571 +21165,352.7833333,1259,458,,224.8214286,81.78571429 +21166,352.8,1248,458,,222.8571429,81.78571429 +21167,352.8166667,1238,458,,221.0714286,81.78571429 +21168,352.8333333,1228,457,,219.2857143,81.60714286 +21169,352.85,1220,457,,217.8571429,81.60714286 +21170,352.8666667,1212,456,,216.4285714,81.42857143 +21171,352.8833333,1205,456,,215.1785714,81.42857143 +21172,352.9,1200,455,,214.2857143,81.25 +21173,352.9166667,1195,455,,213.3928571,81.25 +21174,352.9333333,1191,455,,212.6785714,81.25 +21175,352.95,1189,455,,212.3214286,81.25 +21176,352.9666667,1187,455,,211.9642857,81.25 +21177,352.9833333,1187,455,,211.9642857,81.25 +21178,353,1187,455,,211.9642857,81.25 +21179,353.0166667,1188,455,,212.1428571,81.25 +21180,353.0333333,1191,455,,212.6785714,81.25 +21181,353.05,1194,456,,213.2142857,81.42857143 +21182,353.0666667,1199,456,,214.1071429,81.42857143 +21183,353.0833333,1205,456,,215.1785714,81.42857143 +21184,353.1,1211,457,,216.25,81.60714286 +21185,353.1166667,1219,457,,217.6785714,81.60714286 +21186,353.1333333,1227,457,,219.1071429,81.60714286 +21187,353.15,1237,458,,220.8928571,81.78571429 +21188,353.1666667,1247,458,,222.6785714,81.78571429 +21189,353.1833333,1258,459,,224.6428571,81.96428571 +21190,353.2,1269,459,,226.6071429,81.96428571 +21191,353.2166667,1281,459,,228.75,81.96428571 +21192,353.2333333,1294,460,,231.0714286,82.14285714 +21193,353.25,1308,461,,233.5714286,82.32142857 +21194,353.2666667,1322,461,,236.0714286,82.32142857 +21195,353.2833333,1335,461,,238.3928571,82.32142857 +21196,353.3,1350,461,,241.0714286,82.32142857 +21197,353.3166667,1365,461,,243.75,82.32142857 +21198,353.3333333,1380,461,,246.4285714,82.32142857 +21199,353.35,1395,461,,249.1071429,82.32142857 +21200,353.3666667,1410,460,,251.7857143,82.14285714 +21201,353.3833333,1425,460,,254.4642857,82.14285714 +21202,353.4,1440,460,,257.1428571,82.14285714 +21203,353.4166667,1455,459,,259.8214286,81.96428571 +21204,353.4333333,1470,459,,262.5,81.96428571 +21205,353.45,1484,458,,265,81.78571429 +21206,353.4666667,1498,458,,267.5,81.78571429 +21207,353.4833333,1511,457,,269.8214286,81.60714286 +21208,353.5,1524,456,,272.1428571,81.42857143 +21209,353.5166667,1536,455,,274.2857143,81.25 +21210,353.5333333,1548,455,,276.4285714,81.25 +21211,353.55,1559,454,,278.3928571,81.07142857 +21212,353.5666667,1569,454,,280.1785714,81.07142857 +21213,353.5833333,1578,453,,281.7857143,80.89285714 +21214,353.6,1586,453,,283.2142857,80.89285714 +21215,353.6166667,1594,452,,284.6428571,80.71428571 +21216,353.6333333,1600,452,,285.7142857,80.71428571 +21217,353.65,1606,451,,286.7857143,80.53571429 +21218,353.6666667,1610,451,,287.5,80.53571429 +21219,353.6833333,1614,450,,288.2142857,80.35714286 +21220,353.7,1616,450,,288.5714286,80.35714286 +21221,353.7166667,1617,450,,288.75,80.35714286 +21222,353.7333333,1617,450,,288.75,80.35714286 +21223,353.75,1617,450,,288.75,80.35714286 +21224,353.7666667,1616,450,,288.5714286,80.35714286 +21225,353.7833333,1613,450,,288.0357143,80.35714286 +21226,353.8,1609,451,,287.3214286,80.53571429 +21227,353.8166667,1604,451,,286.4285714,80.53571429 +21228,353.8333333,1598,451,,285.3571429,80.53571429 +21229,353.85,1591,452,,284.1071429,80.71428571 +21230,353.8666667,1583,452,,282.6785714,80.71428571 +21231,353.8833333,1574,453,,281.0714286,80.89285714 +21232,353.9,1565,454,,279.4642857,81.07142857 +21233,353.9166667,1554,454,,277.5,81.07142857 +21234,353.9333333,1543,454,,275.5357143,81.07142857 +21235,353.95,1531,455,,273.3928571,81.25 +21236,353.9666667,1519,456,,271.25,81.42857143 +21237,353.9833333,1506,456,,268.9285714,81.42857143 +21238,354,1492,457,,266.4285714,81.60714286 +21239,354.0166667,1478,457,,263.9285714,81.60714286 +21240,354.0333333,1464,458,,261.4285714,81.78571429 +21241,354.05,1449,458,,258.75,81.78571429 +21242,354.0666667,1434,459,,256.0714286,81.96428571 +21243,354.0833333,1419,459,,253.3928571,81.96428571 +21244,354.1,1404,459,,250.7142857,81.96428571 +21245,354.1166667,1389,459,,248.0357143,81.96428571 +21246,354.1333333,1373,460,,245.1785714,82.14285714 +21247,354.15,1359,460,,242.6785714,82.14285714 +21248,354.1666667,1344,460,,240,82.14285714 +21249,354.1833333,1329,460,,237.3214286,82.14285714 +21250,354.2,1315,460,,234.8214286,82.14285714 +21251,354.2166667,1302,459,,232.5,81.96428571 +21252,354.2333333,1289,459,,230.1785714,81.96428571 +21253,354.25,1276,458,,227.8571429,81.78571429 +21254,354.2666667,1264,458,,225.7142857,81.78571429 +21255,354.2833333,1252,458,,223.5714286,81.78571429 +21256,354.3,1242,457,,221.7857143,81.60714286 +21257,354.3166667,1232,457,,220,81.60714286 +21258,354.3333333,1223,457,,218.3928571,81.60714286 +21259,354.35,1215,456,,216.9642857,81.42857143 +21260,354.3666667,1208,456,,215.7142857,81.42857143 +21261,354.3833333,1202,455,,214.6428571,81.25 +21262,354.4,1197,455,,213.75,81.25 +21263,354.4166667,1193,455,,213.0357143,81.25 +21264,354.4333333,1189,455,,212.3214286,81.25 +21265,354.45,1187,455,,211.9642857,81.25 +21266,354.4666667,1187,455,,211.9642857,81.25 +21267,354.4833333,1187,455,,211.9642857,81.25 +21268,354.5,1187,455,,211.9642857,81.25 +21269,354.5166667,1189,455,,212.3214286,81.25 +21270,354.5333333,1192,455,,212.8571429,81.25 +21271,354.55,1196,455,,213.5714286,81.25 +21272,354.5666667,1202,456,,214.6428571,81.42857143 +21273,354.5833333,1208,456,,215.7142857,81.42857143 +21274,354.6,1215,457,,216.9642857,81.60714286 +21275,354.6166667,1223,457,,218.3928571,81.60714286 +21276,354.6333333,1232,457,,220,81.60714286 +21277,354.65,1242,458,,221.7857143,81.78571429 +21278,354.6666667,1252,458,,223.5714286,81.78571429 +21279,354.6833333,1263,459,,225.5357143,81.96428571 +21280,354.7,1275,459,,227.6785714,81.96428571 +21281,354.7166667,1288,460,,230,82.14285714 +21282,354.7333333,1301,460,,232.3214286,82.14285714 +21283,354.75,1315,460,,234.8214286,82.14285714 +21284,354.7666667,1328,460,,237.1428571,82.14285714 +21285,354.7833333,1343,461,,239.8214286,82.32142857 +21286,354.8,1357,461,,242.3214286,82.32142857 +21287,354.8166667,1372,461,,245,82.32142857 +21288,354.8333333,1388,460,,247.8571429,82.14285714 +21289,354.85,1402,460,,250.3571429,82.14285714 +21290,354.8666667,1417,460,,253.0357143,82.14285714 +21291,354.8833333,1432,460,,255.7142857,82.14285714 +21292,354.9,1448,459,,258.5714286,81.96428571 +21293,354.9166667,1462,459,,261.0714286,81.96428571 +21294,354.9333333,1476,458,,263.5714286,81.78571429 +21295,354.95,1491,458,,266.25,81.78571429 +21296,354.9666667,1504,457,,268.5714286,81.60714286 +21297,354.9833333,1517,456,,270.8928571,81.42857143 +21298,355,1530,456,,273.2142857,81.42857143 +21299,355.0166667,1542,455,,275.3571429,81.25 +21300,355.0333333,1553,455,,277.3214286,81.25 +21301,355.05,1563,454,,279.1071429,81.07142857 +21302,355.0666667,1573,453,,280.8928571,80.89285714 +21303,355.0833333,1582,452,,282.5,80.71428571 +21304,355.1,1589,452,,283.75,80.71428571 +21305,355.1166667,1596,451,,285,80.53571429 +21306,355.1333333,1602,451,,286.0714286,80.53571429 +21307,355.15,1608,451,,287.1428571,80.53571429 +21308,355.1666667,1612,450,,287.8571429,80.35714286 +21309,355.1833333,1615,450,,288.3928571,80.35714286 +21310,355.2,1617,450,,288.75,80.35714286 +21311,355.2166667,1617,450,,288.75,80.35714286 +21312,355.2333333,1617,450,,288.75,80.35714286 +21313,355.25,1616,450,,288.5714286,80.35714286 +21314,355.2666667,1613,450,,288.0357143,80.35714286 +21315,355.2833333,1610,450,,287.5,80.35714286 +21316,355.3,1605,450,,286.6071429,80.35714286 +21317,355.3166667,1600,451,,285.7142857,80.53571429 +21318,355.3333333,1593,451,,284.4642857,80.53571429 +21319,355.35,1586,452,,283.2142857,80.71428571 +21320,355.3666667,1577,452,,281.6071429,80.71428571 +21321,355.3833333,1568,453,,280,80.89285714 +21322,355.4,1558,454,,278.2142857,81.07142857 +21323,355.4166667,1547,454,,276.25,81.07142857 +21324,355.4333333,1536,455,,274.2857143,81.25 +21325,355.45,1524,456,,272.1428571,81.42857143 +21326,355.4666667,1511,456,,269.8214286,81.42857143 +21327,355.4833333,1498,457,,267.5,81.60714286 +21328,355.5,1484,457,,265,81.60714286 +21329,355.5166667,1470,457,,262.5,81.60714286 +21330,355.5333333,1455,458,,259.8214286,81.78571429 +21331,355.55,1440,458,,257.1428571,81.78571429 +21332,355.5666667,1425,459,,254.4642857,81.96428571 +21333,355.5833333,1411,459,,251.9642857,81.96428571 +21334,355.6,1395,459,,249.1071429,81.96428571 +21335,355.6166667,1380,460,,246.4285714,82.14285714 +21336,355.6333333,1365,460,,243.75,82.14285714 +21337,355.65,1351,459,,241.25,81.96428571 +21338,355.6666667,1336,459,,238.5714286,81.96428571 +21339,355.6833333,1321,459,,235.8928571,81.96428571 +21340,355.7,1308,459,,233.5714286,81.96428571 +21341,355.7166667,1294,459,,231.0714286,81.96428571 +21342,355.7333333,1282,459,,228.9285714,81.96428571 +21343,355.75,1269,458,,226.6071429,81.78571429 +21344,355.7666667,1258,458,,224.6428571,81.78571429 +21345,355.7833333,1247,457,,222.6785714,81.60714286 +21346,355.8,1237,457,,220.8928571,81.60714286 +21347,355.8166667,1228,456,,219.2857143,81.42857143 +21348,355.8333333,1219,456,,217.6785714,81.42857143 +21349,355.85,1212,456,,216.4285714,81.42857143 +21350,355.8666667,1205,456,,215.1785714,81.42857143 +21351,355.8833333,1199,455,,214.1071429,81.25 +21352,355.9,1195,455,,213.3928571,81.25 +21353,355.9166667,1191,455,,212.6785714,81.25 +21354,355.9333333,1188,455,,212.1428571,81.25 +21355,355.95,1187,455,,211.9642857,81.25 +21356,355.9666667,1187,455,,211.9642857,81.25 +21357,355.9833333,1187,455,,211.9642857,81.25 +21358,356,1188,455,,212.1428571,81.25 +21359,356.0166667,1191,455,,212.6785714,81.25 +21360,356.0333333,1195,455,,213.3928571,81.25 +21361,356.05,1199,455,,214.1071429,81.25 +21362,356.0666667,1205,456,,215.1785714,81.42857143 +21363,356.0833333,1212,456,,216.4285714,81.42857143 +21364,356.1,1219,456,,217.6785714,81.42857143 +21365,356.1166667,1228,457,,219.2857143,81.60714286 +21366,356.1333333,1237,457,,220.8928571,81.60714286 +21367,356.15,1247,458,,222.6785714,81.78571429 +21368,356.1666667,1258,458,,224.6428571,81.78571429 +21369,356.1833333,1270,459,,226.7857143,81.96428571 +21370,356.2,1282,459,,228.9285714,81.96428571 +21371,356.2166667,1295,460,,231.25,82.14285714 +21372,356.2333333,1308,460,,233.5714286,82.14285714 +21373,356.25,1322,460,,236.0714286,82.14285714 +21374,356.2666667,1336,460,,238.5714286,82.14285714 +21375,356.2833333,1350,460,,241.0714286,82.14285714 +21376,356.3,1365,460,,243.75,82.14285714 +21377,356.3166667,1380,460,,246.4285714,82.14285714 +21378,356.3333333,1395,460,,249.1071429,82.14285714 +21379,356.35,1410,459,,251.7857143,81.96428571 +21380,356.3666667,1425,459,,254.4642857,81.96428571 +21381,356.3833333,1440,459,,257.1428571,81.96428571 +21382,356.4,1455,458,,259.8214286,81.78571429 +21383,356.4166667,1469,458,,262.3214286,81.78571429 +21384,356.4333333,1483,457,,264.8214286,81.60714286 +21385,356.45,1497,457,,267.3214286,81.60714286 +21386,356.4666667,1511,456,,269.8214286,81.42857143 +21387,356.4833333,1523,455,,271.9642857,81.25 +21388,356.5,1536,455,,274.2857143,81.25 +21389,356.5166667,1547,455,,276.25,81.25 +21390,356.5333333,1558,454,,278.2142857,81.07142857 +21391,356.55,1568,453,,280,80.89285714 +21392,356.5666667,1577,452,,281.6071429,80.71428571 +21393,356.5833333,1585,452,,283.0357143,80.71428571 +21394,356.6,1592,452,,284.2857143,80.71428571 +21395,356.6166667,1599,451,,285.5357143,80.53571429 +21396,356.6333333,1604,451,,286.4285714,80.53571429 +21397,356.65,1609,450,,287.3214286,80.35714286 +21398,356.6666667,1612,450,,287.8571429,80.35714286 +21399,356.6833333,1614,450,,288.2142857,80.35714286 +21400,356.7,1615,450,,288.3928571,80.35714286 +21401,356.7166667,1615,450,,288.3928571,80.35714286 +21402,356.7333333,1615,450,,288.3928571,80.35714286 +21403,356.75,1613,450,,288.0357143,80.35714286 +21404,356.7666667,1610,450,,287.5,80.35714286 +21405,356.7833333,1606,450,,286.7857143,80.35714286 +21406,356.8,1601,450,,285.8928571,80.35714286 +21407,356.8166667,1595,451,,284.8214286,80.53571429 +21408,356.8333333,1589,451,,283.75,80.53571429 +21409,356.85,1581,452,,282.3214286,80.71428571 +21410,356.8666667,1572,452,,280.7142857,80.71428571 +21411,356.8833333,1562,453,,278.9285714,80.89285714 +21412,356.9,1552,454,,277.1428571,81.07142857 +21413,356.9166667,1541,454,,275.1785714,81.07142857 +21414,356.9333333,1529,455,,273.0357143,81.25 +21415,356.95,1517,455,,270.8928571,81.25 +21416,356.9666667,1504,456,,268.5714286,81.42857143 +21417,356.9833333,1490,457,,266.0714286,81.60714286 +21418,357,1476,457,,263.5714286,81.60714286 +21419,357.0166667,1462,458,,261.0714286,81.78571429 +21420,357.0333333,1447,458,,258.3928571,81.78571429 +21421,357.05,1432,458,,255.7142857,81.78571429 +21422,357.0666667,1417,458,,253.0357143,81.78571429 +21423,357.0833333,1402,459,,250.3571429,81.96428571 +21424,357.1,1387,459,,247.6785714,81.96428571 +21425,357.1166667,1372,459,,245,81.96428571 +21426,357.1333333,1357,459,,242.3214286,81.96428571 +21427,357.15,1343,459,,239.8214286,81.96428571 +21428,357.1666667,1328,459,,237.1428571,81.96428571 +21429,357.1833333,1314,459,,234.6428571,81.96428571 +21430,357.2,1301,459,,232.3214286,81.96428571 +21431,357.2166667,1288,458,,230,81.78571429 +21432,357.2333333,1275,458,,227.6785714,81.78571429 +21433,357.25,1264,458,,225.7142857,81.78571429 +21434,357.2666667,1253,457,,223.75,81.60714286 +21435,357.2833333,1242,457,,221.7857143,81.60714286 +21436,357.3,1233,456,,220.1785714,81.42857143 +21437,357.3166667,1224,456,,218.5714286,81.42857143 +21438,357.3333333,1216,456,,217.1428571,81.42857143 +21439,357.35,1209,455,,215.8928571,81.25 +21440,357.3666667,1203,455,,214.8214286,81.25 +21441,357.3833333,1197,455,,213.75,81.25 +21442,357.4,1193,455,,213.0357143,81.25 +21443,357.4166667,1190,455,,212.5,81.25 +21444,357.4333333,1188,455,,212.1428571,81.25 +21445,357.45,1188,455,,212.1428571,81.25 +21446,357.4666667,1188,455,,212.1428571,81.25 +21447,357.4833333,1188,455,,212.1428571,81.25 +21448,357.5,1191,455,,212.6785714,81.25 +21449,357.5166667,1194,455,,213.2142857,81.25 +21450,357.5333333,1198,455,,213.9285714,81.25 +21451,357.55,1203,455,,214.8214286,81.25 +21452,357.5666667,1209,456,,215.8928571,81.42857143 +21453,357.5833333,1217,456,,217.3214286,81.42857143 +21454,357.6,1225,456,,218.75,81.42857143 +21455,357.6166667,1234,457,,220.3571429,81.60714286 +21456,357.6333333,1243,458,,221.9642857,81.78571429 +21457,357.65,1253,458,,223.75,81.78571429 +21458,357.6666667,1265,458,,225.8928571,81.78571429 +21459,357.6833333,1276,459,,227.8571429,81.96428571 +21460,357.7,1289,459,,230.1785714,81.96428571 +21461,357.7166667,1302,459,,232.5,81.96428571 +21462,357.7333333,1316,460,,235,82.14285714 +21463,357.75,1329,460,,237.3214286,82.14285714 +21464,357.7666667,1344,460,,240,82.14285714 +21465,357.7833333,1358,460,,242.5,82.14285714 +21466,357.8,1373,460,,245.1785714,82.14285714 +21467,357.8166667,1388,459,,247.8571429,81.96428571 +21468,357.8333333,1403,459,,250.5357143,81.96428571 +21469,357.85,1418,459,,253.2142857,81.96428571 +21470,357.8666667,1433,459,,255.8928571,81.96428571 +21471,357.8833333,1448,458,,258.5714286,81.78571429 +21472,357.9,1462,458,,261.0714286,81.78571429 +21473,357.9166667,1476,458,,263.5714286,81.78571429 +21474,357.9333333,1490,457,,266.0714286,81.60714286 +21475,357.95,1504,457,,268.5714286,81.60714286 +21476,357.9666667,1517,456,,270.8928571,81.42857143 +21477,357.9833333,1529,455,,273.0357143,81.25 +21478,358,1541,454,,275.1785714,81.07142857 +21479,358.0166667,1552,454,,277.1428571,81.07142857 +21480,358.0333333,1562,454,,278.9285714,81.07142857 +21481,358.05,1572,453,,280.7142857,80.89285714 +21482,358.0666667,1580,452,,282.1428571,80.71428571 +21483,358.0833333,1588,452,,283.5714286,80.71428571 +21484,358.1,1595,451,,284.8214286,80.53571429 +21485,358.1166667,1601,450,,285.8928571,80.35714286 +21486,358.1333333,1606,450,,286.7857143,80.35714286 +21487,358.15,1610,450,,287.5,80.35714286 +21488,358.1666667,1612,450,,287.8571429,80.35714286 +21489,358.1833333,1614,449,,288.2142857,80.17857143 +21490,358.2,1614,449,,288.2142857,80.17857143 +21491,358.2166667,1614,449,,288.2142857,80.17857143 +21492,358.2333333,1613,449,,288.0357143,80.17857143 +21493,358.25,1611,450,,287.6785714,80.35714286 +21494,358.2666667,1607,450,,286.9642857,80.35714286 +21495,358.2833333,1603,450,,286.25,80.35714286 +21496,358.3,1597,450,,285.1785714,80.35714286 +21497,358.3166667,1591,451,,284.1071429,80.53571429 +21498,358.3333333,1584,451,,282.8571429,80.53571429 +21499,358.35,1575,452,,281.25,80.71428571 +21500,358.3666667,1566,453,,279.6428571,80.89285714 +21501,358.3833333,1556,454,,277.8571429,81.07142857 +21502,358.4,1545,454,,275.8928571,81.07142857 +21503,358.4166667,1534,455,,273.9285714,81.25 +21504,358.4333333,1522,455,,271.7857143,81.25 +21505,358.45,1509,456,,269.4642857,81.42857143 +21506,358.4666667,1496,456,,267.1428571,81.42857143 +21507,358.4833333,1482,457,,264.6428571,81.60714286 +21508,358.5,1468,457,,262.1428571,81.60714286 +21509,358.5166667,1454,458,,259.6428571,81.78571429 +21510,358.5333333,1439,458,,256.9642857,81.78571429 +21511,358.55,1424,459,,254.2857143,81.96428571 +21512,358.5666667,1409,459,,251.6071429,81.96428571 +21513,358.5833333,1394,459,,248.9285714,81.96428571 +21514,358.6,1379,459,,246.25,81.96428571 +21515,358.6166667,1364,460,,243.5714286,82.14285714 +21516,358.6333333,1350,460,,241.0714286,82.14285714 +21517,358.65,1335,460,,238.3928571,82.14285714 +21518,358.6666667,1321,459,,235.8928571,81.96428571 +21519,358.6833333,1308,459,,233.5714286,81.96428571 +21520,358.7,1294,459,,231.0714286,81.96428571 +21521,358.7166667,1282,458,,228.9285714,81.78571429 +21522,358.7333333,1270,458,,226.7857143,81.78571429 +21523,358.75,1258,458,,224.6428571,81.78571429 +21524,358.7666667,1248,457,,222.8571429,81.60714286 +21525,358.7833333,1237,457,,220.8928571,81.60714286 +21526,358.8,1228,456,,219.2857143,81.42857143 +21527,358.8166667,1220,456,,217.8571429,81.42857143 +21528,358.8333333,1213,456,,216.6071429,81.42857143 +21529,358.85,1206,455,,215.3571429,81.25 +21530,358.8666667,1200,455,,214.2857143,81.25 +21531,358.8833333,1196,455,,213.5714286,81.25 +21532,358.9,1192,455,,212.8571429,81.25 +21533,358.9166667,1190,455,,212.5,81.25 +21534,358.9333333,1188,455,,212.1428571,81.25 +21535,358.95,1188,455,,212.1428571,81.25 +21536,358.9666667,1188,455,,212.1428571,81.25 +21537,358.9833333,1190,455,,212.5,81.25 +21538,359,1193,455,,213.0357143,81.25 +21539,359.0166667,1196,455,,213.5714286,81.25 +21540,359.0333333,1201,456,,214.4642857,81.42857143 +21541,359.05,1207,456,,215.5357143,81.42857143 +21542,359.0666667,1213,456,,216.6071429,81.42857143 +21543,359.0833333,1221,456,,218.0357143,81.42857143 +21544,359.1,1229,457,,219.4642857,81.60714286 +21545,359.1166667,1238,457,,221.0714286,81.60714286 +21546,359.1333333,1248,458,,222.8571429,81.78571429 +21547,359.15,1259,458,,224.8214286,81.78571429 +21548,359.1666667,1271,459,,226.9642857,81.96428571 +21549,359.1833333,1283,459,,229.1071429,81.96428571 +21550,359.2,1296,459,,231.4285714,81.96428571 +21551,359.2166667,1309,460,,233.75,82.14285714 +21552,359.2333333,1323,460,,236.25,82.14285714 +21553,359.25,1337,460,,238.75,82.14285714 +21554,359.2666667,1351,460,,241.25,82.14285714 +21555,359.2833333,1366,460,,243.9285714,82.14285714 +21556,359.3,1380,460,,246.4285714,82.14285714 +21557,359.3166667,1395,460,,249.1071429,82.14285714 +21558,359.3333333,1410,460,,251.7857143,82.14285714 +21559,359.35,1425,459,,254.4642857,81.96428571 +21560,359.3666667,1440,459,,257.1428571,81.96428571 +21561,359.3833333,1455,458,,259.8214286,81.78571429 +21562,359.4,1469,458,,262.3214286,81.78571429 +21563,359.4166667,1483,458,,264.8214286,81.78571429 +21564,359.4333333,1497,457,,267.3214286,81.60714286 +21565,359.45,1510,456,,269.6428571,81.42857143 +21566,359.4666667,1522,456,,271.7857143,81.42857143 +21567,359.4833333,1534,455,,273.9285714,81.25 +21568,359.5,1545,454,,275.8928571,81.07142857 +21569,359.5166667,1556,454,,277.8571429,81.07142857 +21570,359.5333333,1566,453,,279.6428571,80.89285714 +21571,359.55,1575,453,,281.25,80.89285714 +21572,359.5666667,1583,452,,282.6785714,80.71428571 +21573,359.5833333,1590,451,,283.9285714,80.53571429 +21574,359.6,1597,451,,285.1785714,80.53571429 +21575,359.6166667,1602,451,,286.0714286,80.53571429 +21576,359.6333333,1607,450,,286.9642857,80.35714286 +21577,359.65,1610,450,,287.5,80.35714286 +21578,359.6666667,1612,450,,287.8571429,80.35714286 +21579,359.6833333,1613,450,,288.0357143,80.35714286 +21580,359.7,1613,450,,288.0357143,80.35714286 +21581,359.7166667,1613,450,,288.0357143,80.35714286 +21582,359.7333333,1611,450,,287.6785714,80.35714286 +21583,359.75,1608,450,,287.1428571,80.35714286 +21584,359.7666667,1604,450,,286.4285714,80.35714286 +21585,359.7833333,1599,451,,285.5357143,80.53571429 +21586,359.8,1593,451,,284.4642857,80.53571429 +21587,359.8166667,1586,452,,283.2142857,80.71428571 +21588,359.8333333,1578,452,,281.7857143,80.71428571 +21589,359.85,1570,453,,280.3571429,80.89285714 +21590,359.8666667,1560,453,,278.5714286,80.89285714 +21591,359.8833333,1549,454,,276.6071429,81.07142857 +21592,359.9,1539,454,,274.8214286,81.07142857 +21593,359.9166667,1527,455,,272.6785714,81.25 +21594,359.9333333,1514,456,,270.3571429,81.42857143 +21595,359.95,1501,456,,268.0357143,81.42857143 +21596,359.9666667,1488,457,,265.7142857,81.60714286 +21597,359.9833333,1474,457,,263.2142857,81.60714286 +21598,360,1460,458,,260.7142857,81.78571429 +21599,360.0166667,1445,458,,258.0357143,81.78571429 +21600,360.0333333,1431,459,,255.5357143,81.96428571 +21601,360.05,1416,459,,252.8571429,81.96428571 +21602,360.0666667,1401,459,,250.1785714,81.96428571 +21603,360.0833333,1386,460,,247.5,82.14285714 +21604,360.1,1371,460,,244.8214286,82.14285714 +21605,360.1166667,1356,460,,242.1428571,82.14285714 +21606,360.1333333,1342,460,,239.6428571,82.14285714 +21607,360.15,1328,460,,237.1428571,82.14285714 +21608,360.1666667,1314,459,,234.6428571,81.96428571 +21609,360.1833333,1300,459,,232.1428571,81.96428571 +21610,360.2,1287,459,,229.8214286,81.96428571 +21611,360.2166667,1275,459,,227.6785714,81.96428571 +21612,360.2333333,1263,458,,225.5357143,81.78571429 +21613,360.25,1252,458,,223.5714286,81.78571429 +21614,360.2666667,1242,457,,221.7857143,81.60714286 +21615,360.2833333,1232,457,,220,81.60714286 +21616,360.3,1223,456,,218.3928571,81.42857143 +21617,360.3166667,1215,456,,216.9642857,81.42857143 +21618,360.3333333,1208,456,,215.7142857,81.42857143 +21619,360.35,1203,456,,214.8214286,81.42857143 +21620,360.3666667,1198,455,,213.9285714,81.25 +21621,360.3833333,1193,455,,213.0357143,81.25 +21622,360.4,1190,455,,212.5,81.25 +21623,360.4166667,1188,455,,212.1428571,81.25 +21624,360.4333333,1188,455,,212.1428571,81.25 +21625,360.45,1188,455,,212.1428571,81.25 +21626,360.4666667,1188,455,,212.1428571,81.25 +21627,360.4833333,1191,455,,212.6785714,81.25 +21628,360.5,1194,455,,213.2142857,81.25 +21629,360.5166667,1198,456,,213.9285714,81.42857143 +21630,360.5333333,1203,456,,214.8214286,81.42857143 +21631,360.55,1209,456,,215.8928571,81.42857143 +21632,360.5666667,1217,456,,217.3214286,81.42857143 +21633,360.5833333,1224,457,,218.5714286,81.60714286 +21634,360.6,1233,457,,220.1785714,81.60714286 +21635,360.6166667,1243,458,,221.9642857,81.78571429 +21636,360.6333333,1253,458,,223.75,81.78571429 +21637,360.65,1264,459,,225.7142857,81.96428571 +21638,360.6666667,1276,459,,227.8571429,81.96428571 +21639,360.6833333,1289,459,,230.1785714,81.96428571 +21640,360.7,1302,460,,232.5,82.14285714 +21641,360.7166667,1315,460,,234.8214286,82.14285714 +21642,360.7333333,1329,460,,237.3214286,82.14285714 +21643,360.75,1343,460,,239.8214286,82.14285714 +21644,360.7666667,1357,460,,242.3214286,82.14285714 +21645,360.7833333,1372,460,,245,82.14285714 +21646,360.8,1387,460,,247.6785714,82.14285714 +21647,360.8166667,1402,460,,250.3571429,82.14285714 +21648,360.8333333,1417,460,,253.0357143,82.14285714 +21649,360.85,1432,459,,255.7142857,81.96428571 +21650,360.8666667,1446,459,,258.2142857,81.96428571 +21651,360.8833333,1461,458,,260.8928571,81.78571429 +21652,360.9,1475,458,,263.3928571,81.78571429 +21653,360.9166667,1488,457,,265.7142857,81.60714286 +21654,360.9333333,1501,457,,268.0357143,81.60714286 +21655,360.95,1514,456,,270.3571429,81.42857143 +21656,360.9666667,1526,456,,272.5,81.42857143 +21657,360.9833333,1538,455,,274.6428571,81.25 +21658,361,1549,455,,276.6071429,81.25 +21659,361.0166667,1559,454,,278.3928571,81.07142857 +21660,361.0333333,1569,453,,280.1785714,80.89285714 +21661,361.05,1577,453,,281.6071429,80.89285714 +21662,361.0666667,1585,452,,283.0357143,80.71428571 +21663,361.0833333,1592,451,,284.2857143,80.53571429 +21664,361.1,1597,451,,285.1785714,80.53571429 +21665,361.1166667,1602,451,,286.0714286,80.53571429 +21666,361.1333333,1606,451,,286.7857143,80.53571429 +21667,361.15,1609,450,,287.3214286,80.35714286 +21668,361.1666667,1611,450,,287.6785714,80.35714286 +21669,361.1833333,1611,450,,287.6785714,80.35714286 +21670,361.2,1611,450,,287.6785714,80.35714286 +21671,361.2166667,1609,450,,287.3214286,80.35714286 +21672,361.2333333,1607,450,,286.9642857,80.35714286 +21673,361.25,1604,451,,286.4285714,80.53571429 +21674,361.2666667,1599,451,,285.5357143,80.53571429 +21675,361.2833333,1593,451,,284.4642857,80.53571429 +21676,361.3,1587,452,,283.3928571,80.71428571 +21677,361.3166667,1580,452,,282.1428571,80.71428571 +21678,361.3333333,1571,453,,280.5357143,80.89285714 +21679,361.35,1562,453,,278.9285714,80.89285714 +21680,361.3666667,1552,454,,277.1428571,81.07142857 +21681,361.3833333,1541,454,,275.1785714,81.07142857 +21682,361.4,1530,455,,273.2142857,81.25 +21683,361.4166667,1518,456,,271.0714286,81.42857143 +21684,361.4333333,1505,456,,268.75,81.42857143 +21685,361.45,1492,457,,266.4285714,81.60714286 +21686,361.4666667,1479,458,,264.1071429,81.78571429 +21687,361.4833333,1465,458,,261.6071429,81.78571429 +21688,361.5,1450,458,,258.9285714,81.78571429 +21689,361.5166667,1436,459,,256.4285714,81.96428571 +21690,361.5333333,1421,459,,253.75,81.96428571 +21691,361.55,1406,459,,251.0714286,81.96428571 +21692,361.5666667,1392,459,,248.5714286,81.96428571 +21693,361.5833333,1377,460,,245.8928571,82.14285714 +21694,361.6,1362,460,,243.2142857,82.14285714 +21695,361.6166667,1347,460,,240.5357143,82.14285714 +21696,361.6333333,1334,460,,238.2142857,82.14285714 +21697,361.65,1320,460,,235.7142857,82.14285714 +21698,361.6666667,1306,459,,233.2142857,81.96428571 +21699,361.6833333,1293,459,,230.8928571,81.96428571 +21700,361.7,1280,459,,228.5714286,81.96428571 +21701,361.7166667,1268,458,,226.4285714,81.78571429 +21702,361.7333333,1257,458,,224.4642857,81.78571429 +21703,361.75,1247,457,,222.6785714,81.60714286 +21704,361.7666667,1237,457,,220.8928571,81.60714286 +21705,361.7833333,1228,456,,219.2857143,81.42857143 +21706,361.8,1220,456,,217.8571429,81.42857143 +21707,361.8166667,1212,456,,216.4285714,81.42857143 +21708,361.8333333,1206,456,,215.3571429,81.42857143 +21709,361.85,1201,455,,214.4642857,81.25 +21710,361.8666667,1196,455,,213.5714286,81.25 +21711,361.8833333,1193,455,,213.0357143,81.25 +21712,361.9,1190,455,,212.5,81.25 +21713,361.9166667,1189,455,,212.3214286,81.25 +21714,361.9333333,1189,455,,212.3214286,81.25 +21715,361.95,1189,455,,212.3214286,81.25 +21716,361.9666667,1191,455,,212.6785714,81.25 +21717,361.9833333,1194,455,,213.2142857,81.25 +21718,362,1197,455,,213.75,81.25 +21719,362.0166667,1202,456,,214.6428571,81.42857143 +21720,362.0333333,1207,456,,215.5357143,81.42857143 +21721,362.05,1214,456,,216.7857143,81.42857143 +21722,362.0666667,1222,457,,218.2142857,81.60714286 +21723,362.0833333,1230,457,,219.6428571,81.60714286 +21724,362.1,1239,458,,221.25,81.78571429 +21725,362.1166667,1249,458,,223.0357143,81.78571429 +21726,362.1333333,1260,458,,225,81.78571429 +21727,362.15,1272,459,,227.1428571,81.96428571 +21728,362.1666667,1284,459,,229.2857143,81.96428571 +21729,362.1833333,1296,459,,231.4285714,81.96428571 +21730,362.2,1310,460,,233.9285714,82.14285714 +21731,362.2166667,1323,460,,236.25,82.14285714 +21732,362.2333333,1337,460,,238.75,82.14285714 +21733,362.25,1351,460,,241.25,82.14285714 +21734,362.2666667,1365,460,,243.75,82.14285714 +21735,362.2833333,1380,460,,246.4285714,82.14285714 +21736,362.3,1395,460,,249.1071429,82.14285714 +21737,362.3166667,1409,460,,251.6071429,82.14285714 +21738,362.3333333,1424,460,,254.2857143,82.14285714 +21739,362.35,1440,459,,257.1428571,81.96428571 +21740,362.3666667,1454,459,,259.6428571,81.96428571 +21741,362.3833333,1468,458,,262.1428571,81.78571429 +21742,362.4,1482,458,,264.6428571,81.78571429 +21743,362.4166667,1495,457,,266.9642857,81.60714286 +21744,362.4333333,1508,457,,269.2857143,81.60714286 +21745,362.45,1521,456,,271.6071429,81.42857143 +21746,362.4666667,1532,456,,273.5714286,81.42857143 +21747,362.4833333,1544,455,,275.7142857,81.25 +21748,362.5,1554,454,,277.5,81.07142857 +21749,362.5166667,1564,454,,279.2857143,81.07142857 +21750,362.5333333,1573,453,,280.8928571,80.89285714 +21751,362.55,1581,453,,282.3214286,80.89285714 +21752,362.5666667,1588,452,,283.5714286,80.71428571 +21753,362.5833333,1594,452,,284.6428571,80.71428571 +21754,362.6,1599,451,,285.5357143,80.53571429 +21755,362.6166667,1604,451,,286.4285714,80.53571429 +21756,362.6333333,1607,451,,286.9642857,80.53571429 +21757,362.65,1609,450,,287.3214286,80.35714286 +21758,362.6666667,1610,450,,287.5,80.35714286 +21759,362.6833333,1610,450,,287.5,80.35714286 +21760,362.7,1610,450,,287.5,80.35714286 +21761,362.7166667,1608,450,,287.1428571,80.35714286 +21762,362.7333333,1605,451,,286.6071429,80.53571429 +21763,362.75,1601,451,,285.8928571,80.53571429 +21764,362.7666667,1596,451,,285,80.53571429 +21765,362.7833333,1590,451,,283.9285714,80.53571429 +21766,362.8,1583,452,,282.6785714,80.71428571 +21767,362.8166667,1575,452,,281.25,80.71428571 +21768,362.8333333,1567,453,,279.8214286,80.89285714 +21769,362.85,1557,454,,278.0357143,81.07142857 +21770,362.8666667,1547,454,,276.25,81.07142857 +21771,362.8833333,1536,455,,274.2857143,81.25 +21772,362.9,1525,455,,272.3214286,81.25 +21773,362.9166667,1512,456,,270,81.42857143 +21774,362.9333333,1500,456,,267.8571429,81.42857143 +21775,362.95,1486,457,,265.3571429,81.60714286 +21776,362.9666667,1473,457,,263.0357143,81.60714286 +21777,362.9833333,1459,457,,260.5357143,81.60714286 +21778,363,1444,458,,257.8571429,81.78571429 +21779,363.0166667,1430,458,,255.3571429,81.78571429 +21780,363.0333333,1415,459,,252.6785714,81.96428571 +21781,363.05,1400,459,,250,81.96428571 +21782,363.0666667,1385,459,,247.3214286,81.96428571 +21783,363.0833333,1370,459,,244.6428571,81.96428571 +21784,363.1,1356,459,,242.1428571,81.96428571 +21785,363.1166667,1341,459,,239.4642857,81.96428571 +21786,363.1333333,1327,459,,236.9642857,81.96428571 +21787,363.15,1314,459,,234.6428571,81.96428571 +21788,363.1666667,1301,459,,232.3214286,81.96428571 +21789,363.1833333,1288,458,,230,81.78571429 +21790,363.2,1275,458,,227.6785714,81.78571429 +21791,363.2166667,1264,458,,225.7142857,81.78571429 +21792,363.2333333,1253,457,,223.75,81.60714286 +21793,363.25,1243,457,,221.9642857,81.60714286 +21794,363.2666667,1233,456,,220.1785714,81.42857143 +21795,363.2833333,1225,456,,218.75,81.42857143 +21796,363.3,1217,456,,217.3214286,81.42857143 +21797,363.3166667,1210,455,,216.0714286,81.25 +21798,363.3333333,1204,455,,215,81.25 +21799,363.35,1199,455,,214.1071429,81.25 +21800,363.3666667,1195,455,,213.3928571,81.25 +21801,363.3833333,1192,455,,212.8571429,81.25 +21802,363.4,1190,454,,212.5,81.07142857 +21803,363.4166667,1190,454,,212.5,81.07142857 +21804,363.4333333,1190,454,,212.5,81.07142857 +21805,363.45,1191,454,,212.6785714,81.07142857 +21806,363.4666667,1193,455,,213.0357143,81.25 +21807,363.4833333,1196,455,,213.5714286,81.25 +21808,363.5,1200,455,,214.2857143,81.25 +21809,363.5166667,1205,455,,215.1785714,81.25 +21810,363.5333333,1211,455,,216.25,81.25 +21811,363.55,1218,456,,217.5,81.42857143 +21812,363.5666667,1226,457,,218.9285714,81.60714286 +21813,363.5833333,1235,457,,220.5357143,81.60714286 +21814,363.6,1245,457,,222.3214286,81.60714286 +21815,363.6166667,1255,457,,224.1071429,81.60714286 +21816,363.6333333,1266,458,,226.0714286,81.78571429 +21817,363.65,1278,458,,228.2142857,81.78571429 +21818,363.6666667,1290,459,,230.3571429,81.96428571 +21819,363.6833333,1303,459,,232.6785714,81.96428571 +21820,363.7,1317,459,,235.1785714,81.96428571 +21821,363.7166667,1330,459,,237.5,81.96428571 +21822,363.7333333,1344,460,,240,82.14285714 +21823,363.75,1358,460,,242.5,82.14285714 +21824,363.7666667,1373,460,,245.1785714,82.14285714 +21825,363.7833333,1388,460,,247.8571429,82.14285714 +21826,363.8,1403,459,,250.5357143,81.96428571 +21827,363.8166667,1417,459,,253.0357143,81.96428571 +21828,363.8333333,1432,459,,255.7142857,81.96428571 +21829,363.85,1447,459,,258.3928571,81.96428571 +21830,363.8666667,1461,458,,260.8928571,81.78571429 +21831,363.8833333,1475,458,,263.3928571,81.78571429 +21832,363.9,1489,457,,265.8928571,81.60714286 +21833,363.9166667,1502,456,,268.2142857,81.42857143 +21834,363.9333333,1515,456,,270.5357143,81.42857143 +21835,363.95,1527,455,,272.6785714,81.25 +21836,363.9666667,1538,455,,274.6428571,81.25 +21837,363.9833333,1549,454,,276.6071429,81.07142857 +21838,364,1559,454,,278.3928571,81.07142857 +21839,364.0166667,1568,453,,280,80.89285714 +21840,364.0333333,1577,452,,281.6071429,80.71428571 +21841,364.05,1584,452,,282.8571429,80.71428571 +21842,364.0666667,1591,452,,284.1071429,80.71428571 +21843,364.0833333,1597,451,,285.1785714,80.53571429 +21844,364.1,1602,451,,286.0714286,80.53571429 +21845,364.1166667,1606,450,,286.7857143,80.35714286 +21846,364.1333333,1608,450,,287.1428571,80.35714286 +21847,364.15,1610,450,,287.5,80.35714286 +21848,364.1666667,1610,450,,287.5,80.35714286 +21849,364.1833333,1610,450,,287.5,80.35714286 +21850,364.2,1609,450,,287.3214286,80.35714286 +21851,364.2166667,1607,450,,286.9642857,80.35714286 +21852,364.2333333,1603,450,,286.25,80.35714286 +21853,364.25,1598,451,,285.3571429,80.53571429 +21854,364.2666667,1593,451,,284.4642857,80.53571429 +21855,364.2833333,1587,452,,283.3928571,80.71428571 +21856,364.3,1579,452,,281.9642857,80.71428571 +21857,364.3166667,1571,453,,280.5357143,80.89285714 +21858,364.3333333,1562,453,,278.9285714,80.89285714 +21859,364.35,1552,454,,277.1428571,81.07142857 +21860,364.3666667,1541,455,,275.1785714,81.25 +21861,364.3833333,1530,455,,273.2142857,81.25 +21862,364.4,1518,456,,271.0714286,81.42857143 +21863,364.4166667,1506,456,,268.9285714,81.42857143 +21864,364.4333333,1493,457,,266.6071429,81.60714286 +21865,364.45,1479,457,,264.1071429,81.60714286 +21866,364.4666667,1466,458,,261.7857143,81.78571429 +21867,364.4833333,1451,458,,259.1071429,81.78571429 +21868,364.5,1437,458,,256.6071429,81.78571429 +21869,364.5166667,1422,459,,253.9285714,81.96428571 +21870,364.5333333,1407,459,,251.25,81.96428571 +21871,364.55,1393,459,,248.75,81.96428571 +21872,364.5666667,1378,459,,246.0714286,81.96428571 +21873,364.5833333,1363,459,,243.3928571,81.96428571 +21874,364.6,1349,459,,240.8928571,81.96428571 +21875,364.6166667,1335,459,,238.3928571,81.96428571 +21876,364.6333333,1321,459,,235.8928571,81.96428571 +21877,364.65,1308,459,,233.5714286,81.96428571 +21878,364.6666667,1295,459,,231.25,81.96428571 +21879,364.6833333,1282,458,,228.9285714,81.78571429 +21880,364.7,1270,458,,226.7857143,81.78571429 +21881,364.7166667,1259,457,,224.8214286,81.60714286 +21882,364.7333333,1248,457,,222.8571429,81.60714286 +21883,364.75,1239,457,,221.25,81.60714286 +21884,364.7666667,1229,456,,219.4642857,81.42857143 +21885,364.7833333,1221,456,,218.0357143,81.42857143 +21886,364.8,1214,456,,216.7857143,81.42857143 +21887,364.8166667,1208,456,,215.7142857,81.42857143 +21888,364.8333333,1202,455,,214.6428571,81.25 +21889,364.85,1198,455,,213.9285714,81.25 +21890,364.8666667,1194,455,,213.2142857,81.25 +21891,364.8833333,1192,455,,212.8571429,81.25 +21892,364.9,1191,455,,212.6785714,81.25 +21893,364.9166667,1191,455,,212.6785714,81.25 +21894,364.9333333,1191,455,,212.6785714,81.25 +21895,364.95,1193,455,,213.0357143,81.25 +21896,364.9666667,1195,455,,213.3928571,81.25 +21897,364.9833333,1199,455,,214.1071429,81.25 +21898,365,1204,455,,215,81.25 +21899,365.0166667,1210,456,,216.0714286,81.42857143 +21900,365.0333333,1216,456,,217.1428571,81.42857143 +21901,365.05,1223,456,,218.3928571,81.42857143 +21902,365.0666667,1232,457,,220,81.60714286 +21903,365.0833333,1241,457,,221.6071429,81.60714286 +21904,365.1,1251,457,,223.3928571,81.60714286 +21905,365.1166667,1262,458,,225.3571429,81.78571429 +21906,365.1333333,1273,458,,227.3214286,81.78571429 +21907,365.15,1285,459,,229.4642857,81.96428571 +21908,365.1666667,1298,459,,231.7857143,81.96428571 +21909,365.1833333,1311,459,,234.1071429,81.96428571 +21910,365.2,1324,459,,236.4285714,81.96428571 +21911,365.2166667,1338,460,,238.9285714,82.14285714 +21912,365.2333333,1352,460,,241.4285714,82.14285714 +21913,365.25,1367,460,,244.1071429,82.14285714 +21914,365.2666667,1381,460,,246.6071429,82.14285714 +21915,365.2833333,1396,459,,249.2857143,81.96428571 +21916,365.3,1411,459,,251.9642857,81.96428571 +21917,365.3166667,1426,459,,254.6428571,81.96428571 +21918,365.3333333,1440,458,,257.1428571,81.78571429 +21919,365.35,1455,458,,259.8214286,81.78571429 +21920,365.3666667,1469,458,,262.3214286,81.78571429 +21921,365.3833333,1483,457,,264.8214286,81.60714286 +21922,365.4,1496,457,,267.1428571,81.60714286 +21923,365.4166667,1509,456,,269.4642857,81.42857143 +21924,365.4333333,1521,455,,271.6071429,81.25 +21925,365.45,1533,455,,273.75,81.25 +21926,365.4666667,1544,454,,275.7142857,81.07142857 +21927,365.4833333,1555,453,,277.6785714,80.89285714 +21928,365.5,1564,453,,279.2857143,80.89285714 +21929,365.5166667,1573,452,,280.8928571,80.71428571 +21930,365.5333333,1581,452,,282.3214286,80.71428571 +21931,365.55,1588,451,,283.5714286,80.53571429 +21932,365.5666667,1594,451,,284.6428571,80.53571429 +21933,365.5833333,1600,450,,285.7142857,80.35714286 +21934,365.6,1604,450,,286.4285714,80.35714286 +21935,365.6166667,1607,450,,286.9642857,80.35714286 +21936,365.6333333,1609,450,,287.3214286,80.35714286 +21937,365.65,1610,450,,287.5,80.35714286 +21938,365.6666667,1610,449,,287.5,80.17857143 +21939,365.6833333,1610,449,,287.5,80.17857143 +21940,365.7,1608,450,,287.1428571,80.35714286 +21941,365.7166667,1605,450,,286.6071429,80.35714286 +21942,365.7333333,1601,450,,285.8928571,80.35714286 +21943,365.75,1596,451,,285,80.53571429 +21944,365.7666667,1590,451,,283.9285714,80.53571429 +21945,365.7833333,1583,451,,282.6785714,80.53571429 +21946,365.8,1575,452,,281.25,80.71428571 +21947,365.8166667,1566,452,,279.6428571,80.71428571 +21948,365.8333333,1557,453,,278.0357143,80.89285714 +21949,365.85,1546,454,,276.0714286,81.07142857 +21950,365.8666667,1535,454,,274.1071429,81.07142857 +21951,365.8833333,1524,455,,272.1428571,81.25 +21952,365.9,1511,455,,269.8214286,81.25 +21953,365.9166667,1499,456,,267.6785714,81.42857143 +21954,365.9333333,1485,456,,265.1785714,81.42857143 +21955,365.95,1472,457,,262.8571429,81.60714286 +21956,365.9666667,1458,457,,260.3571429,81.60714286 +21957,365.9833333,1443,458,,257.6785714,81.78571429 +21958,366,1429,458,,255.1785714,81.78571429 +21959,366.0166667,1414,458,,252.5,81.78571429 +21960,366.0333333,1399,459,,249.8214286,81.96428571 +21961,366.05,1385,459,,247.3214286,81.96428571 +21962,366.0666667,1369,459,,244.4642857,81.96428571 +21963,366.0833333,1355,459,,241.9642857,81.96428571 +21964,366.1,1341,459,,239.4642857,81.96428571 +21965,366.1166667,1327,459,,236.9642857,81.96428571 +21966,366.1333333,1314,458,,234.6428571,81.78571429 +21967,366.15,1300,458,,232.1428571,81.78571429 +21968,366.1666667,1288,458,,230,81.78571429 +21969,366.1833333,1275,458,,227.6785714,81.78571429 +21970,366.2,1264,457,,225.7142857,81.60714286 +21971,366.2166667,1253,457,,223.75,81.60714286 +21972,366.2333333,1243,456,,221.9642857,81.42857143 +21973,366.25,1234,456,,220.3571429,81.42857143 +21974,366.2666667,1225,456,,218.75,81.42857143 +21975,366.2833333,1218,456,,217.5,81.42857143 +21976,366.3,1211,455,,216.25,81.25 +21977,366.3166667,1205,455,,215.1785714,81.25 +21978,366.3333333,1200,455,,214.2857143,81.25 +21979,366.35,1196,454,,213.5714286,81.07142857 +21980,366.3666667,1193,454,,213.0357143,81.07142857 +21981,366.3833333,1191,454,,212.6785714,81.07142857 +21982,366.4,1191,454,,212.6785714,81.07142857 +21983,366.4166667,1191,454,,212.6785714,81.07142857 +21984,366.4333333,1192,454,,212.8571429,81.07142857 +21985,366.45,1194,455,,213.2142857,81.25 +21986,366.4666667,1197,455,,213.75,81.25 +21987,366.4833333,1202,455,,214.6428571,81.25 +21988,366.5,1207,455,,215.5357143,81.25 +21989,366.5166667,1213,456,,216.6071429,81.42857143 +21990,366.5333333,1220,456,,217.8571429,81.42857143 +21991,366.55,1228,457,,219.2857143,81.60714286 +21992,366.5666667,1237,457,,220.8928571,81.60714286 +21993,366.5833333,1247,457,,222.6785714,81.60714286 +21994,366.6,1257,458,,224.4642857,81.78571429 +21995,366.6166667,1268,458,,226.4285714,81.78571429 +21996,366.6333333,1279,458,,228.3928571,81.78571429 +21997,366.65,1292,459,,230.7142857,81.96428571 +21998,366.6666667,1305,459,,233.0357143,81.96428571 +21999,366.6833333,1318,459,,235.3571429,81.96428571 +22000,366.7,1332,460,,237.8571429,82.14285714 +22001,366.7166667,1345,460,,240.1785714,82.14285714 +22002,366.7333333,1360,460,,242.8571429,82.14285714 +22003,366.75,1374,460,,245.3571429,82.14285714 +22004,366.7666667,1389,460,,248.0357143,82.14285714 +22005,366.7833333,1404,459,,250.7142857,81.96428571 +22006,366.8,1418,459,,253.2142857,81.96428571 +22007,366.8166667,1433,459,,255.8928571,81.96428571 +22008,366.8333333,1447,458,,258.3928571,81.78571429 +22009,366.85,1462,458,,261.0714286,81.78571429 +22010,366.8666667,1476,457,,263.5714286,81.60714286 +22011,366.8833333,1489,457,,265.8928571,81.60714286 +22012,366.9,1502,456,,268.2142857,81.42857143 +22013,366.9166667,1515,456,,270.5357143,81.42857143 +22014,366.9333333,1527,455,,272.6785714,81.25 +22015,366.95,1538,455,,274.6428571,81.25 +22016,366.9666667,1549,454,,276.6071429,81.07142857 +22017,366.9833333,1559,454,,278.3928571,81.07142857 +22018,367,1568,453,,280,80.89285714 +22019,367.0166667,1576,453,,281.4285714,80.89285714 +22020,367.0333333,1584,452,,282.8571429,80.71428571 +22021,367.05,1590,451,,283.9285714,80.53571429 +22022,367.0666667,1596,451,,285,80.53571429 +22023,367.0833333,1601,450,,285.8928571,80.35714286 +22024,367.1,1604,450,,286.4285714,80.35714286 +22025,367.1166667,1607,450,,286.9642857,80.35714286 +22026,367.1333333,1609,450,,287.3214286,80.35714286 +22027,367.15,1609,450,,287.3214286,80.35714286 +22028,367.1666667,1609,450,,287.3214286,80.35714286 +22029,367.1833333,1608,450,,287.1428571,80.35714286 +22030,367.2,1605,450,,286.6071429,80.35714286 +22031,367.2166667,1601,451,,285.8928571,80.53571429 +22032,367.2333333,1597,451,,285.1785714,80.53571429 +22033,367.25,1591,451,,284.1071429,80.53571429 +22034,367.2666667,1585,452,,283.0357143,80.71428571 +22035,367.2833333,1578,452,,281.7857143,80.71428571 +22036,367.3,1569,453,,280.1785714,80.89285714 +22037,367.3166667,1560,454,,278.5714286,81.07142857 +22038,367.3333333,1550,454,,276.7857143,81.07142857 +22039,367.35,1540,454,,275,81.07142857 +22040,367.3666667,1528,455,,272.8571429,81.25 +22041,367.3833333,1517,456,,270.8928571,81.42857143 +22042,367.4,1504,456,,268.5714286,81.42857143 +22043,367.4166667,1491,456,,266.25,81.42857143 +22044,367.4333333,1478,457,,263.9285714,81.60714286 +22045,367.45,1464,458,,261.4285714,81.78571429 +22046,367.4666667,1450,458,,258.9285714,81.78571429 +22047,367.4833333,1435,458,,256.25,81.78571429 +22048,367.5,1421,459,,253.75,81.96428571 +22049,367.5166667,1406,459,,251.0714286,81.96428571 +22050,367.5333333,1391,459,,248.3928571,81.96428571 +22051,367.55,1377,459,,245.8928571,81.96428571 +22052,367.5666667,1362,459,,243.2142857,81.96428571 +22053,367.5833333,1348,459,,240.7142857,81.96428571 +22054,367.6,1334,459,,238.2142857,81.96428571 +22055,367.6166667,1320,459,,235.7142857,81.96428571 +22056,367.6333333,1307,459,,233.3928571,81.96428571 +22057,367.65,1294,459,,231.0714286,81.96428571 +22058,367.6666667,1281,458,,228.75,81.78571429 +22059,367.6833333,1270,458,,226.7857143,81.78571429 +22060,367.7,1259,458,,224.8214286,81.78571429 +22061,367.7166667,1248,457,,222.8571429,81.60714286 +22062,367.7333333,1239,457,,221.25,81.60714286 +22063,367.75,1229,456,,219.4642857,81.42857143 +22064,367.7666667,1222,456,,218.2142857,81.42857143 +22065,367.7833333,1214,456,,216.7857143,81.42857143 +22066,367.8,1208,455,,215.7142857,81.25 +22067,367.8166667,1203,455,,214.8214286,81.25 +22068,367.8333333,1198,455,,213.9285714,81.25 +22069,367.85,1195,455,,213.3928571,81.25 +22070,367.8666667,1192,455,,212.8571429,81.25 +22071,367.8833333,1192,455,,212.8571429,81.25 +22072,367.9,1192,455,,212.8571429,81.25 +22073,367.9166667,1192,455,,212.8571429,81.25 +22074,367.9333333,1193,455,,213.0357143,81.25 +22075,367.95,1196,455,,213.5714286,81.25 +22076,367.9666667,1200,455,,214.2857143,81.25 +22077,367.9833333,1205,455,,215.1785714,81.25 +22078,368,1210,455,,216.0714286,81.25 +22079,368.0166667,1217,456,,217.3214286,81.42857143 +22080,368.0333333,1225,456,,218.75,81.42857143 +22081,368.05,1233,457,,220.1785714,81.60714286 +22082,368.0666667,1242,457,,221.7857143,81.60714286 +22083,368.0833333,1252,457,,223.5714286,81.60714286 +22084,368.1,1263,458,,225.5357143,81.78571429 +22085,368.1166667,1274,458,,227.5,81.78571429 +22086,368.1333333,1286,459,,229.6428571,81.96428571 +22087,368.15,1299,459,,231.9642857,81.96428571 +22088,368.1666667,1312,460,,234.2857143,82.14285714 +22089,368.1833333,1325,460,,236.6071429,82.14285714 +22090,368.2,1339,460,,239.1071429,82.14285714 +22091,368.2166667,1353,460,,241.6071429,82.14285714 +22092,368.2333333,1368,460,,244.2857143,82.14285714 +22093,368.25,1382,460,,246.7857143,82.14285714 +22094,368.2666667,1396,459,,249.2857143,81.96428571 +22095,368.2833333,1411,459,,251.9642857,81.96428571 +22096,368.3,1426,459,,254.6428571,81.96428571 +22097,368.3166667,1441,459,,257.3214286,81.96428571 +22098,368.3333333,1455,458,,259.8214286,81.78571429 +22099,368.35,1469,458,,262.3214286,81.78571429 +22100,368.3666667,1482,457,,264.6428571,81.60714286 +22101,368.3833333,1496,457,,267.1428571,81.60714286 +22102,368.4,1508,456,,269.2857143,81.42857143 +22103,368.4166667,1521,456,,271.6071429,81.42857143 +22104,368.4333333,1532,455,,273.5714286,81.25 +22105,368.45,1543,455,,275.5357143,81.25 +22106,368.4666667,1554,454,,277.5,81.07142857 +22107,368.4833333,1563,454,,279.1071429,81.07142857 +22108,368.5,1572,453,,280.7142857,80.89285714 +22109,368.5166667,1580,452,,282.1428571,80.71428571 +22110,368.5333333,1587,452,,283.3928571,80.71428571 +22111,368.55,1593,451,,284.4642857,80.53571429 +22112,368.5666667,1598,451,,285.3571429,80.53571429 +22113,368.5833333,1602,451,,286.0714286,80.53571429 +22114,368.6,1605,450,,286.6071429,80.35714286 +22115,368.6166667,1607,450,,286.9642857,80.35714286 +22116,368.6333333,1607,450,,286.9642857,80.35714286 +22117,368.65,1607,450,,286.9642857,80.35714286 +22118,368.6666667,1607,450,,286.9642857,80.35714286 +22119,368.6833333,1605,450,,286.6071429,80.35714286 +22120,368.7,1602,450,,286.0714286,80.35714286 +22121,368.7166667,1598,451,,285.3571429,80.53571429 +22122,368.7333333,1593,451,,284.4642857,80.53571429 +22123,368.75,1587,452,,283.3928571,80.71428571 +22124,368.7666667,1580,452,,282.1428571,80.71428571 +22125,368.7833333,1572,453,,280.7142857,80.89285714 +22126,368.8,1563,453,,279.1071429,80.89285714 +22127,368.8166667,1554,454,,277.5,81.07142857 +22128,368.8333333,1544,454,,275.7142857,81.07142857 +22129,368.85,1533,455,,273.75,81.25 +22130,368.8666667,1521,456,,271.6071429,81.42857143 +22131,368.8833333,1509,456,,269.4642857,81.42857143 +22132,368.9,1496,457,,267.1428571,81.60714286 +22133,368.9166667,1483,457,,264.8214286,81.60714286 +22134,368.9333333,1470,458,,262.5,81.78571429 +22135,368.95,1456,458,,260,81.78571429 +22136,368.9666667,1441,458,,257.3214286,81.78571429 +22137,368.9833333,1427,459,,254.8214286,81.96428571 +22138,369,1412,459,,252.1428571,81.96428571 +22139,369.0166667,1398,459,,249.6428571,81.96428571 +22140,369.0333333,1383,460,,246.9642857,82.14285714 +22141,369.05,1369,460,,244.4642857,82.14285714 +22142,369.0666667,1354,460,,241.7857143,82.14285714 +22143,369.0833333,1340,460,,239.2857143,82.14285714 +22144,369.1,1326,460,,236.7857143,82.14285714 +22145,369.1166667,1313,459,,234.4642857,81.96428571 +22146,369.1333333,1300,459,,232.1428571,81.96428571 +22147,369.15,1287,459,,229.8214286,81.96428571 +22148,369.1666667,1275,458,,227.6785714,81.78571429 +22149,369.1833333,1264,458,,225.7142857,81.78571429 +22150,369.2,1253,457,,223.75,81.60714286 +22151,369.2166667,1244,457,,222.1428571,81.60714286 +22152,369.2333333,1234,457,,220.3571429,81.60714286 +22153,369.25,1226,456,,218.9285714,81.42857143 +22154,369.2666667,1219,456,,217.6785714,81.42857143 +22155,369.2833333,1212,456,,216.4285714,81.42857143 +22156,369.3,1206,456,,215.3571429,81.42857143 +22157,369.3166667,1201,455,,214.4642857,81.25 +22158,369.3333333,1197,455,,213.75,81.25 +22159,369.35,1195,455,,213.3928571,81.25 +22160,369.3666667,1193,455,,213.0357143,81.25 +22161,369.3833333,1193,455,,213.0357143,81.25 +22162,369.4,1193,455,,213.0357143,81.25 +22163,369.4166667,1193,455,,213.0357143,81.25 +22164,369.4333333,1196,455,,213.5714286,81.25 +22165,369.45,1199,455,,214.1071429,81.25 +22166,369.4666667,1203,455,,214.8214286,81.25 +22167,369.4833333,1208,456,,215.7142857,81.42857143 +22168,369.5,1214,456,,216.7857143,81.42857143 +22169,369.5166667,1221,457,,218.0357143,81.60714286 +22170,369.5333333,1229,457,,219.4642857,81.60714286 +22171,369.55,1238,457,,221.0714286,81.60714286 +22172,369.5666667,1248,458,,222.8571429,81.78571429 +22173,369.5833333,1258,458,,224.6428571,81.78571429 +22174,369.6,1269,458,,226.6071429,81.78571429 +22175,369.6166667,1281,459,,228.75,81.96428571 +22176,369.6333333,1293,459,,230.8928571,81.96428571 +22177,369.65,1305,459,,233.0357143,81.96428571 +22178,369.6666667,1319,460,,235.5357143,82.14285714 +22179,369.6833333,1332,460,,237.8571429,82.14285714 +22180,369.7,1346,460,,240.3571429,82.14285714 +22181,369.7166667,1360,460,,242.8571429,82.14285714 +22182,369.7333333,1374,460,,245.3571429,82.14285714 +22183,369.75,1389,460,,248.0357143,82.14285714 +22184,369.7666667,1404,460,,250.7142857,82.14285714 +22185,369.7833333,1418,459,,253.2142857,81.96428571 +22186,369.8,1433,459,,255.8928571,81.96428571 +22187,369.8166667,1447,459,,258.3928571,81.96428571 +22188,369.8333333,1461,458,,260.8928571,81.78571429 +22189,369.85,1475,458,,263.3928571,81.78571429 +22190,369.8666667,1489,457,,265.8928571,81.60714286 +22191,369.8833333,1502,457,,268.2142857,81.60714286 +22192,369.9,1514,456,,270.3571429,81.42857143 +22193,369.9166667,1526,456,,272.5,81.42857143 +22194,369.9333333,1537,455,,274.4642857,81.25 +22195,369.95,1548,454,,276.4285714,81.07142857 +22196,369.9666667,1558,454,,278.2142857,81.07142857 +22197,369.9833333,1567,453,,279.8214286,80.89285714 +22198,370,1575,453,,281.25,80.89285714 +22199,370.0166667,1583,452,,282.6785714,80.71428571 +22200,370.0333333,1589,452,,283.75,80.71428571 +22201,370.05,1595,451,,284.8214286,80.53571429 +22202,370.0666667,1599,451,,285.5357143,80.53571429 +22203,370.0833333,1603,451,,286.25,80.53571429 +22204,370.1,1605,451,,286.6071429,80.53571429 +22205,370.1166667,1607,450,,286.9642857,80.35714286 +22206,370.1333333,1607,450,,286.9642857,80.35714286 +22207,370.15,1607,450,,286.9642857,80.35714286 +22208,370.1666667,1606,450,,286.7857143,80.35714286 +22209,370.1833333,1603,451,,286.25,80.53571429 +22210,370.2,1599,451,,285.5357143,80.53571429 +22211,370.2166667,1595,451,,284.8214286,80.53571429 +22212,370.2333333,1589,452,,283.75,80.71428571 +22213,370.25,1583,452,,282.6785714,80.71428571 +22214,370.2666667,1575,452,,281.25,80.71428571 +22215,370.2833333,1567,453,,279.8214286,80.89285714 +22216,370.3,1558,454,,278.2142857,81.07142857 +22217,370.3166667,1548,454,,276.4285714,81.07142857 +22218,370.3333333,1538,455,,274.6428571,81.25 +22219,370.35,1527,455,,272.6785714,81.25 +22220,370.3666667,1515,456,,270.5357143,81.42857143 +22221,370.3833333,1502,457,,268.2142857,81.60714286 +22222,370.4,1489,457,,265.8928571,81.60714286 +22223,370.4166667,1476,457,,263.5714286,81.60714286 +22224,370.4333333,1462,458,,261.0714286,81.78571429 +22225,370.45,1448,458,,258.5714286,81.78571429 +22226,370.4666667,1434,459,,256.0714286,81.96428571 +22227,370.4833333,1419,459,,253.3928571,81.96428571 +22228,370.5,1405,459,,250.8928571,81.96428571 +22229,370.5166667,1390,460,,248.2142857,82.14285714 +22230,370.5333333,1375,460,,245.5357143,82.14285714 +22231,370.55,1361,460,,243.0357143,82.14285714 +22232,370.5666667,1347,460,,240.5357143,82.14285714 +22233,370.5833333,1333,460,,238.0357143,82.14285714 +22234,370.6,1320,460,,235.7142857,82.14285714 +22235,370.6166667,1306,459,,233.2142857,81.96428571 +22236,370.6333333,1294,459,,231.0714286,81.96428571 +22237,370.65,1281,459,,228.75,81.96428571 +22238,370.6666667,1270,459,,226.7857143,81.96428571 +22239,370.6833333,1259,458,,224.8214286,81.78571429 +22240,370.7,1249,458,,223.0357143,81.78571429 +22241,370.7166667,1239,457,,221.25,81.60714286 +22242,370.7333333,1230,457,,219.6428571,81.60714286 +22243,370.75,1222,457,,218.2142857,81.60714286 +22244,370.7666667,1215,456,,216.9642857,81.42857143 +22245,370.7833333,1209,456,,215.8928571,81.42857143 +22246,370.8,1204,456,,215,81.42857143 +22247,370.8166667,1199,456,,214.1071429,81.42857143 +22248,370.8333333,1196,456,,213.5714286,81.42857143 +22249,370.85,1194,455,,213.2142857,81.25 +22250,370.8666667,1193,455,,213.0357143,81.25 +22251,370.8833333,1193,455,,213.0357143,81.25 +22252,370.9,1193,455,,213.0357143,81.25 +22253,370.9166667,1195,456,,213.3928571,81.42857143 +22254,370.9333333,1198,456,,213.9285714,81.42857143 +22255,370.95,1202,456,,214.6428571,81.42857143 +22256,370.9666667,1206,456,,215.3571429,81.42857143 +22257,370.9833333,1212,457,,216.4285714,81.60714286 +22258,371,1219,457,,217.6785714,81.60714286 +22259,371.0166667,1226,457,,218.9285714,81.60714286 +22260,371.0333333,1235,458,,220.5357143,81.78571429 +22261,371.05,1244,458,,222.1428571,81.78571429 +22262,371.0666667,1254,458,,223.9285714,81.78571429 +22263,371.0833333,1265,458,,225.8928571,81.78571429 +22264,371.1,1276,459,,227.8571429,81.96428571 +22265,371.1166667,1288,459,,230,81.96428571 +22266,371.1333333,1300,460,,232.1428571,82.14285714 +22267,371.15,1313,460,,234.4642857,82.14285714 +22268,371.1666667,1327,460,,236.9642857,82.14285714 +22269,371.1833333,1340,460,,239.2857143,82.14285714 +22270,371.2,1354,460,,241.7857143,82.14285714 +22271,371.2166667,1369,460,,244.4642857,82.14285714 +22272,371.2333333,1383,460,,246.9642857,82.14285714 +22273,371.25,1398,460,,249.6428571,82.14285714 +22274,371.2666667,1412,460,,252.1428571,82.14285714 +22275,371.2833333,1427,459,,254.8214286,81.96428571 +22276,371.3,1441,459,,257.3214286,81.96428571 +22277,371.3166667,1455,458,,259.8214286,81.78571429 +22278,371.3333333,1469,458,,262.3214286,81.78571429 +22279,371.35,1483,457,,264.8214286,81.60714286 +22280,371.3666667,1496,457,,267.1428571,81.60714286 +22281,371.3833333,1509,456,,269.4642857,81.42857143 +22282,371.4,1521,456,,271.6071429,81.42857143 +22283,371.4166667,1532,455,,273.5714286,81.25 +22284,371.4333333,1543,455,,275.5357143,81.25 +22285,371.45,1553,454,,277.3214286,81.07142857 +22286,371.4666667,1563,453,,279.1071429,80.89285714 +22287,371.4833333,1572,453,,280.7142857,80.89285714 +22288,371.5,1579,452,,281.9642857,80.71428571 +22289,371.5166667,1586,452,,283.2142857,80.71428571 +22290,371.5333333,1592,451,,284.2857143,80.53571429 +22291,371.55,1597,451,,285.1785714,80.53571429 +22292,371.5666667,1601,451,,285.8928571,80.53571429 +22293,371.5833333,1604,450,,286.4285714,80.35714286 +22294,371.6,1606,450,,286.7857143,80.35714286 +22295,371.6166667,1607,450,,286.9642857,80.35714286 +22296,371.6333333,1607,450,,286.9642857,80.35714286 +22297,371.65,1607,450,,286.9642857,80.35714286 +22298,371.6666667,1604,450,,286.4285714,80.35714286 +22299,371.6833333,1601,451,,285.8928571,80.53571429 +22300,371.7,1597,451,,285.1785714,80.53571429 +22301,371.7166667,1592,451,,284.2857143,80.53571429 +22302,371.7333333,1586,451,,283.2142857,80.53571429 +22303,371.75,1579,452,,281.9642857,80.71428571 +22304,371.7666667,1572,452,,280.7142857,80.71428571 +22305,371.7833333,1563,453,,279.1071429,80.89285714 +22306,371.8,1554,454,,277.5,81.07142857 +22307,371.8166667,1543,454,,275.5357143,81.07142857 +22308,371.8333333,1533,455,,273.75,81.25 +22309,371.85,1521,455,,271.6071429,81.25 +22310,371.8666667,1509,456,,269.4642857,81.42857143 +22311,371.8833333,1496,456,,267.1428571,81.42857143 +22312,371.9,1483,457,,264.8214286,81.60714286 +22313,371.9166667,1470,457,,262.5,81.60714286 +22314,371.9333333,1456,458,,260,81.78571429 +22315,371.95,1442,458,,257.5,81.78571429 +22316,371.9666667,1428,459,,255,81.96428571 +22317,371.9833333,1413,459,,252.3214286,81.96428571 +22318,372,1399,459,,249.8214286,81.96428571 +22319,372.0166667,1384,459,,247.1428571,81.96428571 +22320,372.0333333,1369,460,,244.4642857,82.14285714 +22321,372.05,1355,460,,241.9642857,82.14285714 +22322,372.0666667,1342,460,,239.6428571,82.14285714 +22323,372.0833333,1328,460,,237.1428571,82.14285714 +22324,372.1,1314,459,,234.6428571,81.96428571 +22325,372.1166667,1301,459,,232.3214286,81.96428571 +22326,372.1333333,1289,459,,230.1785714,81.96428571 +22327,372.15,1277,459,,228.0357143,81.96428571 +22328,372.1666667,1266,458,,226.0714286,81.78571429 +22329,372.1833333,1255,457,,224.1071429,81.60714286 +22330,372.2,1245,457,,222.3214286,81.60714286 +22331,372.2166667,1236,457,,220.7142857,81.60714286 +22332,372.2333333,1228,457,,219.2857143,81.60714286 +22333,372.25,1220,456,,217.8571429,81.42857143 +22334,372.2666667,1214,456,,216.7857143,81.42857143 +22335,372.2833333,1208,455,,215.7142857,81.25 +22336,372.3,1203,455,,214.8214286,81.25 +22337,372.3166667,1200,455,,214.2857143,81.25 +22338,372.3333333,1197,455,,213.75,81.25 +22339,372.35,1195,455,,213.3928571,81.25 +22340,372.3666667,1195,455,,213.3928571,81.25 +22341,372.3833333,1195,455,,213.3928571,81.25 +22342,372.4,1196,455,,213.5714286,81.25 +22343,372.4166667,1198,455,,213.9285714,81.25 +22344,372.4333333,1202,455,,214.6428571,81.25 +22345,372.45,1206,455,,215.3571429,81.25 +22346,372.4666667,1211,456,,216.25,81.42857143 +22347,372.4833333,1217,456,,217.3214286,81.42857143 +22348,372.5,1224,456,,218.5714286,81.42857143 +22349,372.5166667,1232,457,,220,81.60714286 +22350,372.5333333,1241,457,,221.6071429,81.60714286 +22351,372.55,1250,457,,223.2142857,81.60714286 +22352,372.5666667,1261,458,,225.1785714,81.78571429 +22353,372.5833333,1271,458,,226.9642857,81.78571429 +22354,372.6,1283,459,,229.1071429,81.96428571 +22355,372.6166667,1295,459,,231.25,81.96428571 +22356,372.6333333,1308,459,,233.5714286,81.96428571 +22357,372.65,1321,459,,235.8928571,81.96428571 +22358,372.6666667,1335,459,,238.3928571,81.96428571 +22359,372.6833333,1349,459,,240.8928571,81.96428571 +22360,372.7,1362,459,,243.2142857,81.96428571 +22361,372.7166667,1377,459,,245.8928571,81.96428571 +22362,372.7333333,1391,459,,248.3928571,81.96428571 +22363,372.75,1406,459,,251.0714286,81.96428571 +22364,372.7666667,1420,459,,253.5714286,81.96428571 +22365,372.7833333,1435,458,,256.25,81.78571429 +22366,372.8,1449,458,,258.75,81.78571429 +22367,372.8166667,1463,458,,261.25,81.78571429 +22368,372.8333333,1476,457,,263.5714286,81.60714286 +22369,372.85,1490,457,,266.0714286,81.60714286 +22370,372.8666667,1503,456,,268.3928571,81.42857143 +22371,372.8833333,1515,456,,270.5357143,81.42857143 +22372,372.9,1527,455,,272.6785714,81.25 +22373,372.9166667,1538,454,,274.6428571,81.07142857 +22374,372.9333333,1548,454,,276.4285714,81.07142857 +22375,372.95,1558,453,,278.2142857,80.89285714 +22376,372.9666667,1567,453,,279.8214286,80.89285714 +22377,372.9833333,1575,452,,281.25,80.71428571 +22378,373,1583,452,,282.6785714,80.71428571 +22379,373.0166667,1589,451,,283.75,80.53571429 +22380,373.0333333,1595,451,,284.8214286,80.53571429 +22381,373.05,1599,451,,285.5357143,80.53571429 +22382,373.0666667,1603,450,,286.25,80.35714286 +22383,373.0833333,1605,450,,286.6071429,80.35714286 +22384,373.1,1607,450,,286.9642857,80.35714286 +22385,373.1166667,1607,450,,286.9642857,80.35714286 +22386,373.1333333,1607,450,,286.9642857,80.35714286 +22387,373.15,1605,450,,286.6071429,80.35714286 +22388,373.1666667,1602,450,,286.0714286,80.35714286 +22389,373.1833333,1599,450,,285.5357143,80.35714286 +22390,373.2,1595,451,,284.8214286,80.53571429 +22391,373.2166667,1589,451,,283.75,80.53571429 +22392,373.2333333,1582,452,,282.5,80.71428571 +22393,373.25,1575,452,,281.25,80.71428571 +22394,373.2666667,1567,453,,279.8214286,80.89285714 +22395,373.2833333,1558,453,,278.2142857,80.89285714 +22396,373.3,1548,454,,276.4285714,81.07142857 +22397,373.3166667,1538,455,,274.6428571,81.25 +22398,373.3333333,1527,455,,272.6785714,81.25 +22399,373.35,1515,456,,270.5357143,81.42857143 +22400,373.3666667,1503,456,,268.3928571,81.42857143 +22401,373.3833333,1490,457,,266.0714286,81.60714286 +22402,373.4,1476,457,,263.5714286,81.60714286 +22403,373.4166667,1463,458,,261.25,81.78571429 +22404,373.4333333,1449,458,,258.75,81.78571429 +22405,373.45,1435,458,,256.25,81.78571429 +22406,373.4666667,1420,459,,253.5714286,81.96428571 +22407,373.4833333,1406,459,,251.0714286,81.96428571 +22408,373.5,1392,459,,248.5714286,81.96428571 +22409,373.5166667,1377,459,,245.8928571,81.96428571 +22410,373.5333333,1363,460,,243.3928571,82.14285714 +22411,373.55,1349,460,,240.8928571,82.14285714 +22412,373.5666667,1335,460,,238.3928571,82.14285714 +22413,373.5833333,1321,460,,235.8928571,82.14285714 +22414,373.6,1308,459,,233.5714286,81.96428571 +22415,373.6166667,1296,459,,231.4285714,81.96428571 +22416,373.6333333,1284,459,,229.2857143,81.96428571 +22417,373.65,1272,458,,227.1428571,81.78571429 +22418,373.6666667,1261,458,,225.1785714,81.78571429 +22419,373.6833333,1251,458,,223.3928571,81.78571429 +22420,373.7,1242,457,,221.7857143,81.60714286 +22421,373.7166667,1233,457,,220.1785714,81.60714286 +22422,373.7333333,1225,456,,218.75,81.42857143 +22423,373.75,1218,456,,217.5,81.42857143 +22424,373.7666667,1212,456,,216.4285714,81.42857143 +22425,373.7833333,1206,456,,215.3571429,81.42857143 +22426,373.8,1202,456,,214.6428571,81.42857143 +22427,373.8166667,1199,455,,214.1071429,81.25 +22428,373.8333333,1197,455,,213.75,81.25 +22429,373.85,1196,455,,213.5714286,81.25 +22430,373.8666667,1196,455,,213.5714286,81.25 +22431,373.8833333,1196,455,,213.5714286,81.25 +22432,373.9,1198,455,,213.9285714,81.25 +22433,373.9166667,1200,455,,214.2857143,81.25 +22434,373.9333333,1204,455,,215,81.25 +22435,373.95,1209,456,,215.8928571,81.42857143 +22436,373.9666667,1215,456,,216.9642857,81.42857143 +22437,373.9833333,1221,456,,218.0357143,81.42857143 +22438,374,1228,457,,219.2857143,81.60714286 +22439,374.0166667,1237,457,,220.8928571,81.60714286 +22440,374.0333333,1246,457,,222.5,81.60714286 +22441,374.05,1256,458,,224.2857143,81.78571429 +22442,374.0666667,1267,459,,226.25,81.96428571 +22443,374.0833333,1278,459,,228.2142857,81.96428571 +22444,374.1,1290,459,,230.3571429,81.96428571 +22445,374.1166667,1302,459,,232.5,81.96428571 +22446,374.1333333,1315,460,,234.8214286,82.14285714 +22447,374.15,1328,460,,237.1428571,82.14285714 +22448,374.1666667,1342,460,,239.6428571,82.14285714 +22449,374.1833333,1356,460,,242.1428571,82.14285714 +22450,374.2,1370,460,,244.6428571,82.14285714 +22451,374.2166667,1384,459,,247.1428571,81.96428571 +22452,374.2333333,1399,459,,249.8214286,81.96428571 +22453,374.25,1413,459,,252.3214286,81.96428571 +22454,374.2666667,1428,459,,255,81.96428571 +22455,374.2833333,1442,458,,257.5,81.78571429 +22456,374.3,1456,458,,260,81.78571429 +22457,374.3166667,1470,457,,262.5,81.60714286 +22458,374.3333333,1483,457,,264.8214286,81.60714286 +22459,374.35,1496,456,,267.1428571,81.42857143 +22460,374.3666667,1509,456,,269.4642857,81.42857143 +22461,374.3833333,1521,455,,271.6071429,81.25 +22462,374.4,1532,455,,273.5714286,81.25 +22463,374.4166667,1543,454,,275.5357143,81.07142857 +22464,374.4333333,1553,453,,277.3214286,80.89285714 +22465,374.45,1563,453,,279.1071429,80.89285714 +22466,374.4666667,1571,452,,280.5357143,80.71428571 +22467,374.4833333,1579,452,,281.9642857,80.71428571 +22468,374.5,1586,451,,283.2142857,80.53571429 +22469,374.5166667,1592,451,,284.2857143,80.53571429 +22470,374.5333333,1597,451,,285.1785714,80.53571429 +22471,374.55,1601,450,,285.8928571,80.35714286 +22472,374.5666667,1604,450,,286.4285714,80.35714286 +22473,374.5833333,1606,450,,286.7857143,80.35714286 +22474,374.6,1606,450,,286.7857143,80.35714286 +22475,374.6166667,1606,450,,286.7857143,80.35714286 +22476,374.6333333,1606,450,,286.7857143,80.35714286 +22477,374.65,1604,450,,286.4285714,80.35714286 +22478,374.6666667,1601,450,,285.8928571,80.35714286 +22479,374.6833333,1597,451,,285.1785714,80.53571429 +22480,374.7,1592,451,,284.2857143,80.53571429 +22481,374.7166667,1586,452,,283.2142857,80.71428571 +22482,374.7333333,1579,452,,281.9642857,80.71428571 +22483,374.75,1571,452,,280.5357143,80.71428571 +22484,374.7666667,1562,453,,278.9285714,80.89285714 +22485,374.7833333,1553,453,,277.3214286,80.89285714 +22486,374.8,1543,454,,275.5357143,81.07142857 +22487,374.8166667,1532,455,,273.5714286,81.25 +22488,374.8333333,1521,455,,271.6071429,81.25 +22489,374.85,1509,456,,269.4642857,81.42857143 +22490,374.8666667,1496,457,,267.1428571,81.60714286 +22491,374.8833333,1483,457,,264.8214286,81.60714286 +22492,374.9,1469,458,,262.3214286,81.78571429 +22493,374.9166667,1456,458,,260,81.78571429 +22494,374.9333333,1442,458,,257.5,81.78571429 +22495,374.95,1428,459,,255,81.96428571 +22496,374.9666667,1413,459,,252.3214286,81.96428571 +22497,374.9833333,1398,459,,249.6428571,81.96428571 +22498,375,1384,459,,247.1428571,81.96428571 +22499,375.0166667,1370,460,,244.6428571,82.14285714 +22500,375.0333333,1356,460,,242.1428571,82.14285714 +22501,375.05,1342,460,,239.6428571,82.14285714 +22502,375.0666667,1328,460,,237.1428571,82.14285714 +22503,375.0833333,1315,459,,234.8214286,81.96428571 +22504,375.1,1302,459,,232.5,81.96428571 +22505,375.1166667,1290,459,,230.3571429,81.96428571 +22506,375.1333333,1278,459,,228.2142857,81.96428571 +22507,375.15,1267,458,,226.25,81.78571429 +22508,375.1666667,1256,458,,224.2857143,81.78571429 +22509,375.1833333,1246,457,,222.5,81.60714286 +22510,375.2,1237,457,,220.8928571,81.60714286 +22511,375.2166667,1229,456,,219.4642857,81.42857143 +22512,375.2333333,1221,456,,218.0357143,81.42857143 +22513,375.25,1215,456,,216.9642857,81.42857143 +22514,375.2666667,1209,456,,215.8928571,81.42857143 +22515,375.2833333,1204,455,,215,81.25 +22516,375.3,1201,455,,214.4642857,81.25 +22517,375.3166667,1198,455,,213.9285714,81.25 +22518,375.3333333,1196,455,,213.5714286,81.25 +22519,375.35,1196,455,,213.5714286,81.25 +22520,375.3666667,1196,455,,213.5714286,81.25 +22521,375.3833333,1197,455,,213.75,81.25 +22522,375.4,1199,455,,214.1071429,81.25 +22523,375.4166667,1202,455,,214.6428571,81.25 +22524,375.4333333,1207,455,,215.5357143,81.25 +22525,375.45,1212,456,,216.4285714,81.42857143 +22526,375.4666667,1218,456,,217.5,81.42857143 +22527,375.4833333,1225,456,,218.75,81.42857143 +22528,375.5,1233,457,,220.1785714,81.60714286 +22529,375.5166667,1242,457,,221.7857143,81.60714286 +22530,375.5333333,1251,457,,223.3928571,81.60714286 +22531,375.55,1261,458,,225.1785714,81.78571429 +22532,375.5666667,1272,458,,227.1428571,81.78571429 +22533,375.5833333,1284,458,,229.2857143,81.78571429 +22534,375.6,1296,459,,231.4285714,81.96428571 +22535,375.6166667,1309,459,,233.75,81.96428571 +22536,375.6333333,1321,459,,235.8928571,81.96428571 +22537,375.65,1335,460,,238.3928571,82.14285714 +22538,375.6666667,1349,460,,240.8928571,82.14285714 +22539,375.6833333,1363,460,,243.3928571,82.14285714 +22540,375.7,1377,460,,245.8928571,82.14285714 +22541,375.7166667,1392,459,,248.5714286,81.96428571 +22542,375.7333333,1406,459,,251.0714286,81.96428571 +22543,375.75,1421,459,,253.75,81.96428571 +22544,375.7666667,1435,459,,256.25,81.96428571 +22545,375.7833333,1449,458,,258.75,81.78571429 +22546,375.8,1463,458,,261.25,81.78571429 +22547,375.8166667,1476,457,,263.5714286,81.60714286 +22548,375.8333333,1490,457,,266.0714286,81.60714286 +22549,375.85,1502,456,,268.2142857,81.42857143 +22550,375.8666667,1515,456,,270.5357143,81.42857143 +22551,375.8833333,1526,455,,272.5,81.25 +22552,375.9,1538,455,,274.6428571,81.25 +22553,375.9166667,1548,454,,276.4285714,81.07142857 +22554,375.9333333,1558,454,,278.2142857,81.07142857 +22555,375.95,1567,453,,279.8214286,80.89285714 +22556,375.9666667,1575,452,,281.25,80.71428571 +22557,375.9833333,1582,452,,282.5,80.71428571 +22558,376,1588,452,,283.5714286,80.71428571 +22559,376.0166667,1594,451,,284.6428571,80.53571429 +22560,376.0333333,1599,451,,285.5357143,80.53571429 +22561,376.05,1602,451,,286.0714286,80.53571429 +22562,376.0666667,1605,451,,286.6071429,80.53571429 +22563,376.0833333,1606,450,,286.7857143,80.35714286 +22564,376.1,1606,450,,286.7857143,80.35714286 +22565,376.1166667,1606,450,,286.7857143,80.35714286 +22566,376.1333333,1604,451,,286.4285714,80.53571429 +22567,376.15,1602,451,,286.0714286,80.53571429 +22568,376.1666667,1598,451,,285.3571429,80.53571429 +22569,376.1833333,1594,451,,284.6428571,80.53571429 +22570,376.2,1588,452,,283.5714286,80.71428571 +22571,376.2166667,1582,452,,282.5,80.71428571 +22572,376.2333333,1575,453,,281.25,80.89285714 +22573,376.25,1566,453,,279.6428571,80.89285714 +22574,376.2666667,1557,454,,278.0357143,81.07142857 +22575,376.2833333,1548,454,,276.4285714,81.07142857 +22576,376.3,1537,455,,274.4642857,81.25 +22577,376.3166667,1526,456,,272.5,81.42857143 +22578,376.3333333,1514,456,,270.3571429,81.42857143 +22579,376.35,1502,457,,268.2142857,81.60714286 +22580,376.3666667,1489,457,,265.8928571,81.60714286 +22581,376.3833333,1476,458,,263.5714286,81.78571429 +22582,376.4,1462,458,,261.0714286,81.78571429 +22583,376.4166667,1448,458,,258.5714286,81.78571429 +22584,376.4333333,1434,459,,256.0714286,81.96428571 +22585,376.45,1420,459,,253.5714286,81.96428571 +22586,376.4666667,1406,459,,251.0714286,81.96428571 +22587,376.4833333,1391,460,,248.3928571,82.14285714 +22588,376.5,1377,460,,245.8928571,82.14285714 +22589,376.5166667,1363,460,,243.3928571,82.14285714 +22590,376.5333333,1349,460,,240.8928571,82.14285714 +22591,376.55,1335,460,,238.3928571,82.14285714 +22592,376.5666667,1322,460,,236.0714286,82.14285714 +22593,376.5833333,1308,459,,233.5714286,81.96428571 +22594,376.6,1295,459,,231.25,81.96428571 +22595,376.6166667,1284,459,,229.2857143,81.96428571 +22596,376.6333333,1272,459,,227.1428571,81.96428571 +22597,376.65,1261,458,,225.1785714,81.78571429 +22598,376.6666667,1251,458,,223.3928571,81.78571429 +22599,376.6833333,1242,457,,221.7857143,81.60714286 +22600,376.7,1233,457,,220.1785714,81.60714286 +22601,376.7166667,1225,457,,218.75,81.60714286 +22602,376.7333333,1218,456,,217.5,81.42857143 +22603,376.75,1212,456,,216.4285714,81.42857143 +22604,376.7666667,1208,456,,215.7142857,81.42857143 +22605,376.7833333,1203,456,,214.8214286,81.42857143 +22606,376.8,1200,455,,214.2857143,81.25 +22607,376.8166667,1198,455,,213.9285714,81.25 +22608,376.8333333,1197,455,,213.75,81.25 +22609,376.85,1197,455,,213.75,81.25 +22610,376.8666667,1197,456,,213.75,81.42857143 +22611,376.8833333,1199,456,,214.1071429,81.42857143 +22612,376.9,1202,456,,214.6428571,81.42857143 +22613,376.9166667,1206,456,,215.3571429,81.42857143 +22614,376.9333333,1210,456,,216.0714286,81.42857143 +22615,376.95,1216,456,,217.1428571,81.42857143 +22616,376.9666667,1223,457,,218.3928571,81.60714286 +22617,376.9833333,1230,457,,219.6428571,81.60714286 +22618,377,1238,457,,221.0714286,81.60714286 +22619,377.0166667,1247,458,,222.6785714,81.78571429 +22620,377.0333333,1257,458,,224.4642857,81.78571429 +22621,377.05,1268,459,,226.4285714,81.96428571 +22622,377.0666667,1279,459,,228.3928571,81.96428571 +22623,377.0833333,1291,459,,230.5357143,81.96428571 +22624,377.1,1304,459,,232.8571429,81.96428571 +22625,377.1166667,1317,460,,235.1785714,82.14285714 +22626,377.1333333,1330,460,,237.5,82.14285714 +22627,377.15,1343,460,,239.8214286,82.14285714 +22628,377.1666667,1357,460,,242.3214286,82.14285714 +22629,377.1833333,1371,460,,244.8214286,82.14285714 +22630,377.2,1385,460,,247.3214286,82.14285714 +22631,377.2166667,1400,460,,250,82.14285714 +22632,377.2333333,1414,460,,252.5,82.14285714 +22633,377.25,1429,459,,255.1785714,81.96428571 +22634,377.2666667,1443,459,,257.6785714,81.96428571 +22635,377.2833333,1457,458,,260.1785714,81.78571429 +22636,377.3,1471,458,,262.6785714,81.78571429 +22637,377.3166667,1484,457,,265,81.60714286 +22638,377.3333333,1497,457,,267.3214286,81.60714286 +22639,377.35,1509,456,,269.4642857,81.42857143 +22640,377.3666667,1522,456,,271.7857143,81.42857143 +22641,377.3833333,1533,455,,273.75,81.25 +22642,377.4,1544,455,,275.7142857,81.25 +22643,377.4166667,1554,454,,277.5,81.07142857 +22644,377.4333333,1563,454,,279.1071429,81.07142857 +22645,377.45,1572,453,,280.7142857,80.89285714 +22646,377.4666667,1579,453,,281.9642857,80.89285714 +22647,377.4833333,1586,452,,283.2142857,80.71428571 +22648,377.5,1592,452,,284.2857143,80.71428571 +22649,377.5166667,1597,451,,285.1785714,80.53571429 +22650,377.5333333,1601,451,,285.8928571,80.53571429 +22651,377.55,1604,451,,286.4285714,80.53571429 +22652,377.5666667,1606,451,,286.7857143,80.53571429 +22653,377.5833333,1606,451,,286.7857143,80.53571429 +22654,377.6,1606,451,,286.7857143,80.53571429 +22655,377.6166667,1606,451,,286.7857143,80.53571429 +22656,377.6333333,1604,451,,286.4285714,80.53571429 +22657,377.65,1601,451,,285.8928571,80.53571429 +22658,377.6666667,1596,451,,285,80.53571429 +22659,377.6833333,1592,452,,284.2857143,80.71428571 +22660,377.7,1586,452,,283.2142857,80.71428571 +22661,377.7166667,1579,452,,281.9642857,80.71428571 +22662,377.7333333,1571,453,,280.5357143,80.89285714 +22663,377.75,1562,454,,278.9285714,81.07142857 +22664,377.7666667,1553,454,,277.3214286,81.07142857 +22665,377.7833333,1543,455,,275.5357143,81.25 +22666,377.8,1532,455,,273.5714286,81.25 +22667,377.8166667,1521,456,,271.6071429,81.42857143 +22668,377.8333333,1508,457,,269.2857143,81.60714286 +22669,377.85,1496,457,,267.1428571,81.60714286 +22670,377.8666667,1483,458,,264.8214286,81.78571429 +22671,377.8833333,1470,458,,262.5,81.78571429 +22672,377.9,1456,458,,260,81.78571429 +22673,377.9166667,1441,459,,257.3214286,81.96428571 +22674,377.9333333,1427,459,,254.8214286,81.96428571 +22675,377.95,1413,459,,252.3214286,81.96428571 +22676,377.9666667,1399,460,,249.8214286,82.14285714 +22677,377.9833333,1384,460,,247.1428571,82.14285714 +22678,378,1370,460,,244.6428571,82.14285714 +22679,378.0166667,1356,460,,242.1428571,82.14285714 +22680,378.0333333,1342,460,,239.6428571,82.14285714 +22681,378.05,1329,460,,237.3214286,82.14285714 +22682,378.0666667,1316,460,,235,82.14285714 +22683,378.0833333,1303,460,,232.6785714,82.14285714 +22684,378.1,1291,459,,230.5357143,81.96428571 +22685,378.1166667,1279,459,,228.3928571,81.96428571 +22686,378.1333333,1268,459,,226.4285714,81.96428571 +22687,378.15,1257,458,,224.4642857,81.78571429 +22688,378.1666667,1247,458,,222.6785714,81.78571429 +22689,378.1833333,1238,457,,221.0714286,81.60714286 +22690,378.2,1230,457,,219.6428571,81.60714286 +22691,378.2166667,1223,457,,218.3928571,81.60714286 +22692,378.2333333,1216,456,,217.1428571,81.42857143 +22693,378.25,1211,456,,216.25,81.42857143 +22694,378.2666667,1206,456,,215.3571429,81.42857143 +22695,378.2833333,1203,456,,214.8214286,81.42857143 +22696,378.3,1200,456,,214.2857143,81.42857143 +22697,378.3166667,1198,456,,213.9285714,81.42857143 +22698,378.3333333,1198,455,,213.9285714,81.25 +22699,378.35,1198,455,,213.9285714,81.25 +22700,378.3666667,1199,456,,214.1071429,81.42857143 +22701,378.3833333,1202,456,,214.6428571,81.42857143 +22702,378.4,1205,456,,215.1785714,81.42857143 +22703,378.4166667,1209,456,,215.8928571,81.42857143 +22704,378.4333333,1215,456,,216.9642857,81.42857143 +22705,378.45,1221,457,,218.0357143,81.60714286 +22706,378.4666667,1228,457,,219.2857143,81.60714286 +22707,378.4833333,1236,457,,220.7142857,81.60714286 +22708,378.5,1245,457,,222.3214286,81.60714286 +22709,378.5166667,1254,458,,223.9285714,81.78571429 +22710,378.5333333,1265,458,,225.8928571,81.78571429 +22711,378.55,1275,459,,227.6785714,81.96428571 +22712,378.5666667,1287,460,,229.8214286,82.14285714 +22713,378.5833333,1299,460,,231.9642857,82.14285714 +22714,378.6,1312,460,,234.2857143,82.14285714 +22715,378.6166667,1325,460,,236.6071429,82.14285714 +22716,378.6333333,1338,460,,238.9285714,82.14285714 +22717,378.65,1351,460,,241.25,82.14285714 +22718,378.6666667,1365,460,,243.75,82.14285714 +22719,378.6833333,1380,460,,246.4285714,82.14285714 +22720,378.7,1394,460,,248.9285714,82.14285714 +22721,378.7166667,1409,460,,251.6071429,82.14285714 +22722,378.7333333,1423,459,,254.1071429,81.96428571 +22723,378.75,1437,459,,256.6071429,81.96428571 +22724,378.7666667,1451,459,,259.1071429,81.96428571 +22725,378.7833333,1465,459,,261.6071429,81.96428571 +22726,378.8,1479,458,,264.1071429,81.78571429 +22727,378.8166667,1492,458,,266.4285714,81.78571429 +22728,378.8333333,1504,457,,268.5714286,81.60714286 +22729,378.85,1517,457,,270.8928571,81.60714286 +22730,378.8666667,1528,456,,272.8571429,81.42857143 +22731,378.8833333,1539,455,,274.8214286,81.25 +22732,378.9,1550,455,,276.7857143,81.25 +22733,378.9166667,1559,454,,278.3928571,81.07142857 +22734,378.9333333,1568,454,,280,81.07142857 +22735,378.95,1576,453,,281.4285714,80.89285714 +22736,378.9666667,1583,453,,282.6785714,80.89285714 +22737,378.9833333,1589,452,,283.75,80.71428571 +22738,379,1595,452,,284.8214286,80.71428571 +22739,379.0166667,1599,452,,285.5357143,80.71428571 +22740,379.0333333,1602,451,,286.0714286,80.53571429 +22741,379.05,1605,451,,286.6071429,80.53571429 +22742,379.0666667,1606,451,,286.7857143,80.53571429 +22743,379.0833333,1606,451,,286.7857143,80.53571429 +22744,379.1,1606,451,,286.7857143,80.53571429 +22745,379.1166667,1604,451,,286.4285714,80.53571429 +22746,379.1333333,1602,452,,286.0714286,80.71428571 +22747,379.15,1598,452,,285.3571429,80.71428571 +22748,379.1666667,1593,452,,284.4642857,80.71428571 +22749,379.1833333,1588,453,,283.5714286,80.89285714 +22750,379.2,1581,453,,282.3214286,80.89285714 +22751,379.2166667,1574,454,,281.0714286,81.07142857 +22752,379.2333333,1566,454,,279.6428571,81.07142857 +22753,379.25,1557,455,,278.0357143,81.25 +22754,379.2666667,1547,455,,276.25,81.25 +22755,379.2833333,1537,456,,274.4642857,81.42857143 +22756,379.3,1526,456,,272.5,81.42857143 +22757,379.3166667,1514,457,,270.3571429,81.60714286 +22758,379.3333333,1502,457,,268.2142857,81.60714286 +22759,379.35,1489,458,,265.8928571,81.78571429 +22760,379.3666667,1475,458,,263.3928571,81.78571429 +22761,379.3833333,1462,459,,261.0714286,81.96428571 +22762,379.4,1448,459,,258.5714286,81.96428571 +22763,379.4166667,1434,460,,256.0714286,82.14285714 +22764,379.4333333,1420,460,,253.5714286,82.14285714 +22765,379.45,1406,461,,251.0714286,82.32142857 +22766,379.4666667,1392,461,,248.5714286,82.32142857 +22767,379.4833333,1377,461,,245.8928571,82.32142857 +22768,379.5,1363,461,,243.3928571,82.32142857 +22769,379.5166667,1349,461,,240.8928571,82.32142857 +22770,379.5333333,1335,461,,238.3928571,82.32142857 +22771,379.55,1322,461,,236.0714286,82.32142857 +22772,379.5666667,1309,461,,233.75,82.32142857 +22773,379.5833333,1297,460,,231.6071429,82.14285714 +22774,379.6,1285,460,,229.4642857,82.14285714 +22775,379.6166667,1273,459,,227.3214286,81.96428571 +22776,379.6333333,1263,459,,225.5357143,81.96428571 +22777,379.65,1253,458,,223.75,81.78571429 +22778,379.6666667,1243,458,,221.9642857,81.78571429 +22779,379.6833333,1235,458,,220.5357143,81.78571429 +22780,379.7,1227,457,,219.1071429,81.60714286 +22781,379.7166667,1220,457,,217.8571429,81.60714286 +22782,379.7333333,1214,457,,216.7857143,81.60714286 +22783,379.75,1209,457,,215.8928571,81.60714286 +22784,379.7666667,1205,457,,215.1785714,81.60714286 +22785,379.7833333,1202,456,,214.6428571,81.42857143 +22786,379.8,1200,456,,214.2857143,81.42857143 +22787,379.8166667,1200,456,,214.2857143,81.42857143 +22788,379.8333333,1200,456,,214.2857143,81.42857143 +22789,379.85,1200,456,,214.2857143,81.42857143 +22790,379.8666667,1201,456,,214.4642857,81.42857143 +22791,379.8833333,1204,456,,215,81.42857143 +22792,379.9,1208,456,,215.7142857,81.42857143 +22793,379.9166667,1213,457,,216.6071429,81.60714286 +22794,379.9333333,1218,457,,217.5,81.60714286 +22795,379.95,1225,457,,218.75,81.60714286 +22796,379.9666667,1232,457,,220,81.60714286 +22797,379.9833333,1241,458,,221.6071429,81.78571429 +22798,380,1250,458,,223.2142857,81.78571429 +22799,380.0166667,1260,459,,225,81.96428571 +22800,380.0333333,1270,459,,226.7857143,81.96428571 +22801,380.05,1282,460,,228.9285714,82.14285714 +22802,380.0666667,1293,460,,230.8928571,82.14285714 +22803,380.0833333,1306,461,,233.2142857,82.32142857 +22804,380.1,1318,461,,235.3571429,82.32142857 +22805,380.1166667,1331,461,,237.6785714,82.32142857 +22806,380.1333333,1344,461,,240,82.32142857 +22807,380.15,1358,461,,242.5,82.32142857 +22808,380.1666667,1372,461,,245,82.32142857 +22809,380.1833333,1386,461,,247.5,82.32142857 +22810,380.2,1401,461,,250.1785714,82.32142857 +22811,380.2166667,1415,460,,252.6785714,82.14285714 +22812,380.2333333,1429,460,,255.1785714,82.14285714 +22813,380.25,1443,460,,257.6785714,82.14285714 +22814,380.2666667,1457,459,,260.1785714,81.96428571 +22815,380.2833333,1471,458,,262.6785714,81.78571429 +22816,380.3,1484,458,,265,81.78571429 +22817,380.3166667,1497,458,,267.3214286,81.78571429 +22818,380.3333333,1509,457,,269.4642857,81.60714286 +22819,380.35,1521,456,,271.6071429,81.42857143 +22820,380.3666667,1532,456,,273.5714286,81.42857143 +22821,380.3833333,1543,455,,275.5357143,81.25 +22822,380.4,1553,454,,277.3214286,81.07142857 +22823,380.4166667,1562,454,,278.9285714,81.07142857 +22824,380.4333333,1570,453,,280.3571429,80.89285714 +22825,380.45,1578,453,,281.7857143,80.89285714 +22826,380.4666667,1584,453,,282.8571429,80.89285714 +22827,380.4833333,1590,453,,283.9285714,80.89285714 +22828,380.5,1594,452,,284.6428571,80.71428571 +22829,380.5166667,1599,452,,285.5357143,80.71428571 +22830,380.5333333,1601,452,,285.8928571,80.71428571 +22831,380.55,1603,452,,286.25,80.71428571 +22832,380.5666667,1603,452,,286.25,80.71428571 +22833,380.5833333,1603,452,,286.25,80.71428571 +22834,380.6,1603,452,,286.25,80.71428571 +22835,380.6166667,1601,452,,285.8928571,80.71428571 +22836,380.6333333,1598,452,,285.3571429,80.71428571 +22837,380.65,1593,452,,284.4642857,80.71428571 +22838,380.6666667,1589,453,,283.75,80.89285714 +22839,380.6833333,1582,453,,282.5,80.89285714 +22840,380.7,1576,454,,281.4285714,81.07142857 +22841,380.7166667,1568,454,,280,81.07142857 +22842,380.7333333,1559,454,,278.3928571,81.07142857 +22843,380.75,1550,455,,276.7857143,81.25 +22844,380.7666667,1540,456,,275,81.42857143 +22845,380.7833333,1529,456,,273.0357143,81.42857143 +22846,380.8,1518,457,,271.0714286,81.60714286 +22847,380.8166667,1506,457,,268.9285714,81.60714286 +22848,380.8333333,1493,458,,266.6071429,81.78571429 +22849,380.85,1480,458,,264.2857143,81.78571429 +22850,380.8666667,1467,459,,261.9642857,81.96428571 +22851,380.8833333,1453,459,,259.4642857,81.96428571 +22852,380.9,1439,460,,256.9642857,82.14285714 +22853,380.9166667,1425,460,,254.4642857,82.14285714 +22854,380.9333333,1411,460,,251.9642857,82.14285714 +22855,380.95,1397,460,,249.4642857,82.14285714 +22856,380.9666667,1383,461,,246.9642857,82.32142857 +22857,380.9833333,1368,461,,244.2857143,82.32142857 +22858,381,1354,461,,241.7857143,82.32142857 +22859,381.0166667,1341,461,,239.4642857,82.32142857 +22860,381.0333333,1327,461,,236.9642857,82.32142857 +22861,381.05,1314,461,,234.6428571,82.32142857 +22862,381.0666667,1302,461,,232.5,82.32142857 +22863,381.0833333,1290,460,,230.3571429,82.14285714 +22864,381.1,1278,460,,228.2142857,82.14285714 +22865,381.1166667,1267,459,,226.25,81.96428571 +22866,381.1333333,1257,459,,224.4642857,81.96428571 +22867,381.15,1247,458,,222.6785714,81.78571429 +22868,381.1666667,1238,458,,221.0714286,81.78571429 +22869,381.1833333,1230,458,,219.6428571,81.78571429 +22870,381.2,1223,457,,218.3928571,81.60714286 +22871,381.2166667,1217,457,,217.3214286,81.60714286 +22872,381.2333333,1211,457,,216.25,81.60714286 +22873,381.25,1207,457,,215.5357143,81.60714286 +22874,381.2666667,1203,457,,214.8214286,81.60714286 +22875,381.2833333,1201,457,,214.4642857,81.60714286 +22876,381.3,1199,456,,214.1071429,81.42857143 +22877,381.3166667,1199,456,,214.1071429,81.42857143 +22878,381.3333333,1199,456,,214.1071429,81.42857143 +22879,381.35,1200,456,,214.2857143,81.42857143 +22880,381.3666667,1202,456,,214.6428571,81.42857143 +22881,381.3833333,1206,457,,215.3571429,81.60714286 +22882,381.4,1210,457,,216.0714286,81.60714286 +22883,381.4166667,1215,457,,216.9642857,81.60714286 +22884,381.4333333,1222,457,,218.2142857,81.60714286 +22885,381.45,1229,458,,219.4642857,81.78571429 +22886,381.4666667,1237,458,,220.8928571,81.78571429 +22887,381.4833333,1245,458,,222.3214286,81.78571429 +22888,381.5,1255,459,,224.1071429,81.96428571 +22889,381.5166667,1265,459,,225.8928571,81.96428571 +22890,381.5333333,1276,459,,227.8571429,81.96428571 +22891,381.55,1287,460,,229.8214286,82.14285714 +22892,381.5666667,1299,460,,231.9642857,82.14285714 +22893,381.5833333,1312,460,,234.2857143,82.14285714 +22894,381.6,1324,461,,236.4285714,82.32142857 +22895,381.6166667,1338,461,,238.9285714,82.32142857 +22896,381.6333333,1351,461,,241.25,82.32142857 +22897,381.65,1365,461,,243.75,82.32142857 +22898,381.6666667,1379,461,,246.25,82.32142857 +22899,381.6833333,1393,460,,248.75,82.14285714 +22900,381.7,1407,460,,251.25,82.14285714 +22901,381.7166667,1422,460,,253.9285714,82.14285714 +22902,381.7333333,1436,459,,256.4285714,81.96428571 +22903,381.75,1450,459,,258.9285714,81.96428571 +22904,381.7666667,1464,459,,261.4285714,81.96428571 +22905,381.7833333,1477,458,,263.75,81.78571429 +22906,381.8,1490,458,,266.0714286,81.78571429 +22907,381.8166667,1503,457,,268.3928571,81.60714286 +22908,381.8333333,1514,457,,270.3571429,81.60714286 +22909,381.85,1526,456,,272.5,81.42857143 +22910,381.8666667,1536,455,,274.2857143,81.25 +22911,381.8833333,1547,455,,276.25,81.25 +22912,381.9,1556,454,,277.8571429,81.07142857 +22913,381.9166667,1565,454,,279.4642857,81.07142857 +22914,381.9333333,1573,453,,280.8928571,80.89285714 +22915,381.95,1580,453,,282.1428571,80.89285714 +22916,381.9666667,1586,452,,283.2142857,80.71428571 +22917,381.9833333,1591,452,,284.1071429,80.71428571 +22918,382,1595,452,,284.8214286,80.71428571 +22919,382.0166667,1599,452,,285.5357143,80.71428571 +22920,382.0333333,1601,452,,285.8928571,80.71428571 +22921,382.05,1602,452,,286.0714286,80.71428571 +22922,382.0666667,1602,451,,286.0714286,80.53571429 +22923,382.0833333,1602,451,,286.0714286,80.53571429 +22924,382.1,1601,452,,285.8928571,80.71428571 +22925,382.1166667,1598,452,,285.3571429,80.71428571 +22926,382.1333333,1594,452,,284.6428571,80.71428571 +22927,382.15,1589,452,,283.75,80.71428571 +22928,382.1666667,1584,453,,282.8571429,80.89285714 +22929,382.1833333,1578,453,,281.7857143,80.89285714 +22930,382.2,1570,454,,280.3571429,81.07142857 +22931,382.2166667,1562,454,,278.9285714,81.07142857 +22932,382.2333333,1553,454,,277.3214286,81.07142857 +22933,382.25,1544,455,,275.7142857,81.25 +22934,382.2666667,1533,456,,273.75,81.42857143 +22935,382.2833333,1522,456,,271.7857143,81.42857143 +22936,382.3,1511,457,,269.8214286,81.60714286 +22937,382.3166667,1498,458,,267.5,81.78571429 +22938,382.3333333,1486,458,,265.3571429,81.78571429 +22939,382.35,1473,459,,263.0357143,81.96428571 +22940,382.3666667,1459,459,,260.5357143,81.96428571 +22941,382.3833333,1446,459,,258.2142857,81.96428571 +22942,382.4,1432,459,,255.7142857,81.96428571 +22943,382.4166667,1417,460,,253.0357143,82.14285714 +22944,382.4333333,1404,460,,250.7142857,82.14285714 +22945,382.45,1389,460,,248.0357143,82.14285714 +22946,382.4666667,1375,461,,245.5357143,82.32142857 +22947,382.4833333,1361,461,,243.0357143,82.32142857 +22948,382.5,1348,461,,240.7142857,82.32142857 +22949,382.5166667,1334,461,,238.2142857,82.32142857 +22950,382.5333333,1321,461,,235.8928571,82.32142857 +22951,382.55,1308,461,,233.5714286,82.32142857 +22952,382.5666667,1296,460,,231.4285714,82.14285714 +22953,382.5833333,1284,460,,229.2857143,82.14285714 +22954,382.6,1273,459,,227.3214286,81.96428571 +22955,382.6166667,1262,459,,225.3571429,81.96428571 +22956,382.6333333,1252,459,,223.5714286,81.96428571 +22957,382.65,1243,458,,221.9642857,81.78571429 +22958,382.6666667,1235,458,,220.5357143,81.78571429 +22959,382.6833333,1227,458,,219.1071429,81.78571429 +22960,382.7,1220,458,,217.8571429,81.78571429 +22961,382.7166667,1214,457,,216.7857143,81.60714286 +22962,382.7333333,1209,457,,215.8928571,81.60714286 +22963,382.75,1205,457,,215.1785714,81.60714286 +22964,382.7666667,1203,457,,214.8214286,81.60714286 +22965,382.7833333,1200,456,,214.2857143,81.42857143 +22966,382.8,1200,456,,214.2857143,81.42857143 +22967,382.8166667,1200,456,,214.2857143,81.42857143 +22968,382.8333333,1200,456,,214.2857143,81.42857143 +22969,382.85,1202,456,,214.6428571,81.42857143 +22970,382.8666667,1205,456,,215.1785714,81.42857143 +22971,382.8833333,1209,457,,215.8928571,81.60714286 +22972,382.9,1213,457,,216.6071429,81.60714286 +22973,382.9166667,1219,457,,217.6785714,81.60714286 +22974,382.9333333,1226,457,,218.9285714,81.60714286 +22975,382.95,1233,458,,220.1785714,81.78571429 +22976,382.9666667,1241,458,,221.6071429,81.78571429 +22977,382.9833333,1250,458,,223.2142857,81.78571429 +22978,383,1260,459,,225,81.96428571 +22979,383.0166667,1270,459,,226.7857143,81.96428571 +22980,383.0333333,1281,460,,228.75,82.14285714 +22981,383.05,1293,460,,230.8928571,82.14285714 +22982,383.0666667,1305,460,,233.0357143,82.14285714 +22983,383.0833333,1318,460,,235.3571429,82.14285714 +22984,383.1,1331,461,,237.6785714,82.32142857 +22985,383.1166667,1345,461,,240.1785714,82.32142857 +22986,383.1333333,1358,461,,242.5,82.32142857 +22987,383.15,1372,461,,245,82.32142857 +22988,383.1666667,1386,460,,247.5,82.14285714 +22989,383.1833333,1400,460,,250,82.14285714 +22990,383.2,1414,460,,252.5,82.14285714 +22991,383.2166667,1428,459,,255,81.96428571 +22992,383.2333333,1442,459,,257.5,81.96428571 +22993,383.25,1456,459,,260,81.96428571 +22994,383.2666667,1470,458,,262.5,81.78571429 +22995,383.2833333,1483,458,,264.8214286,81.78571429 +22996,383.3,1496,457,,267.1428571,81.60714286 +22997,383.3166667,1508,457,,269.2857143,81.60714286 +22998,383.3333333,1519,456,,271.25,81.42857143 +22999,383.35,1531,456,,273.3928571,81.42857143 +23000,383.3666667,1541,455,,275.1785714,81.25 +23001,383.3833333,1551,455,,276.9642857,81.25 +23002,383.4,1560,454,,278.5714286,81.07142857 +23003,383.4166667,1568,454,,280,81.07142857 +23004,383.4333333,1575,453,,281.25,80.89285714 +23005,383.45,1582,453,,282.5,80.89285714 +23006,383.4666667,1588,452,,283.5714286,80.71428571 +23007,383.4833333,1592,452,,284.2857143,80.71428571 +23008,383.5,1596,452,,285,80.71428571 +23009,383.5166667,1599,452,,285.5357143,80.71428571 +23010,383.5333333,1601,451,,285.8928571,80.53571429 +23011,383.55,1601,451,,285.8928571,80.53571429 +23012,383.5666667,1601,451,,285.8928571,80.53571429 +23013,383.5833333,1600,451,,285.7142857,80.53571429 +23014,383.6,1598,451,,285.3571429,80.53571429 +23015,383.6166667,1595,452,,284.8214286,80.71428571 +23016,383.6333333,1591,452,,284.1071429,80.71428571 +23017,383.65,1586,452,,283.2142857,80.71428571 +23018,383.6666667,1580,453,,282.1428571,80.89285714 +23019,383.6833333,1573,453,,280.8928571,80.89285714 +23020,383.7,1565,454,,279.4642857,81.07142857 +23021,383.7166667,1557,454,,278.0357143,81.07142857 +23022,383.7333333,1547,455,,276.25,81.25 +23023,383.75,1537,455,,274.4642857,81.25 +23024,383.7666667,1527,456,,272.6785714,81.42857143 +23025,383.7833333,1515,456,,270.5357143,81.42857143 +23026,383.8,1503,457,,268.3928571,81.60714286 +23027,383.8166667,1491,458,,266.25,81.78571429 +23028,383.8333333,1478,458,,263.9285714,81.78571429 +23029,383.85,1465,459,,261.6071429,81.96428571 +23030,383.8666667,1451,459,,259.1071429,81.96428571 +23031,383.8833333,1438,459,,256.7857143,81.96428571 +23032,383.9,1424,460,,254.2857143,82.14285714 +23033,383.9166667,1409,460,,251.6071429,82.14285714 +23034,383.9333333,1396,460,,249.2857143,82.14285714 +23035,383.95,1382,460,,246.7857143,82.14285714 +23036,383.9666667,1367,460,,244.1071429,82.14285714 +23037,383.9833333,1354,461,,241.7857143,82.32142857 +23038,384,1340,461,,239.2857143,82.32142857 +23039,384.0166667,1327,461,,236.9642857,82.32142857 +23040,384.0333333,1314,460,,234.6428571,82.14285714 +23041,384.05,1302,460,,232.5,82.14285714 +23042,384.0666667,1290,459,,230.3571429,81.96428571 +23043,384.0833333,1278,459,,228.2142857,81.96428571 +23044,384.1,1267,459,,226.25,81.96428571 +23045,384.1166667,1257,458,,224.4642857,81.78571429 +23046,384.1333333,1248,458,,222.8571429,81.78571429 +23047,384.15,1239,458,,221.25,81.78571429 +23048,384.1666667,1231,457,,219.8214286,81.60714286 +23049,384.1833333,1223,457,,218.3928571,81.60714286 +23050,384.2,1217,457,,217.3214286,81.60714286 +23051,384.2166667,1212,456,,216.4285714,81.42857143 +23052,384.2333333,1207,456,,215.5357143,81.42857143 +23053,384.25,1204,456,,215,81.42857143 +23054,384.2666667,1201,456,,214.4642857,81.42857143 +23055,384.2833333,1200,456,,214.2857143,81.42857143 +23056,384.3,1200,456,,214.2857143,81.42857143 +23057,384.3166667,1200,456,,214.2857143,81.42857143 +23058,384.3333333,1201,456,,214.4642857,81.42857143 +23059,384.35,1203,456,,214.8214286,81.42857143 +23060,384.3666667,1207,456,,215.5357143,81.42857143 +23061,384.3833333,1211,456,,216.25,81.42857143 +23062,384.4,1216,456,,217.1428571,81.42857143 +23063,384.4166667,1222,457,,218.2142857,81.60714286 +23064,384.4333333,1229,457,,219.4642857,81.60714286 +23065,384.45,1238,457,,221.0714286,81.60714286 +23066,384.4666667,1246,458,,222.5,81.78571429 +23067,384.4833333,1255,458,,224.1071429,81.78571429 +23068,384.5,1265,458,,225.8928571,81.78571429 +23069,384.5166667,1276,458,,227.8571429,81.78571429 +23070,384.5333333,1288,459,,230,81.96428571 +23071,384.55,1300,459,,232.1428571,81.96428571 +23072,384.5666667,1312,460,,234.2857143,82.14285714 +23073,384.5833333,1325,460,,236.6071429,82.14285714 +23074,384.6,1338,460,,238.9285714,82.14285714 +23075,384.6166667,1351,460,,241.25,82.14285714 +23076,384.6333333,1365,460,,243.75,82.14285714 +23077,384.65,1379,460,,246.25,82.14285714 +23078,384.6666667,1394,459,,248.9285714,81.96428571 +23079,384.6833333,1408,459,,251.4285714,81.96428571 +23080,384.7,1422,459,,253.9285714,81.96428571 +23081,384.7166667,1436,459,,256.4285714,81.96428571 +23082,384.7333333,1449,458,,258.75,81.78571429 +23083,384.75,1463,458,,261.25,81.78571429 +23084,384.7666667,1476,457,,263.5714286,81.60714286 +23085,384.7833333,1489,457,,265.8928571,81.60714286 +23086,384.8,1502,457,,268.2142857,81.60714286 +23087,384.8166667,1514,456,,270.3571429,81.42857143 +23088,384.8333333,1525,455,,272.3214286,81.25 +23089,384.85,1536,455,,274.2857143,81.25 +23090,384.8666667,1546,454,,276.0714286,81.07142857 +23091,384.8833333,1555,454,,277.6785714,81.07142857 +23092,384.9,1564,453,,279.2857143,80.89285714 +23093,384.9166667,1572,452,,280.7142857,80.71428571 +23094,384.9333333,1579,452,,281.9642857,80.71428571 +23095,384.95,1585,452,,283.0357143,80.71428571 +23096,384.9666667,1590,451,,283.9285714,80.53571429 +23097,384.9833333,1595,451,,284.8214286,80.53571429 +23098,385,1598,451,,285.3571429,80.53571429 +23099,385.0166667,1600,451,,285.7142857,80.53571429 +23100,385.0333333,1601,451,,285.8928571,80.53571429 +23101,385.05,1601,451,,285.8928571,80.53571429 +23102,385.0666667,1601,451,,285.8928571,80.53571429 +23103,385.0833333,1600,451,,285.7142857,80.53571429 +23104,385.1,1597,451,,285.1785714,80.53571429 +23105,385.1166667,1593,452,,284.4642857,80.71428571 +23106,385.1333333,1589,452,,283.75,80.71428571 +23107,385.15,1583,452,,282.6785714,80.71428571 +23108,385.1666667,1577,453,,281.6071429,80.89285714 +23109,385.1833333,1570,453,,280.3571429,80.89285714 +23110,385.2,1561,454,,278.75,81.07142857 +23111,385.2166667,1552,454,,277.1428571,81.07142857 +23112,385.2333333,1543,455,,275.5357143,81.25 +23113,385.25,1532,455,,273.5714286,81.25 +23114,385.2666667,1522,456,,271.7857143,81.42857143 +23115,385.2833333,1510,456,,269.6428571,81.42857143 +23116,385.3,1498,457,,267.5,81.60714286 +23117,385.3166667,1485,458,,265.1785714,81.78571429 +23118,385.3333333,1472,458,,262.8571429,81.78571429 +23119,385.35,1459,458,,260.5357143,81.78571429 +23120,385.3666667,1445,459,,258.0357143,81.96428571 +23121,385.3833333,1431,459,,255.5357143,81.96428571 +23122,385.4,1417,460,,253.0357143,82.14285714 +23123,385.4166667,1403,460,,250.5357143,82.14285714 +23124,385.4333333,1389,460,,248.0357143,82.14285714 +23125,385.45,1375,460,,245.5357143,82.14285714 +23126,385.4666667,1361,460,,243.0357143,82.14285714 +23127,385.4833333,1347,460,,240.5357143,82.14285714 +23128,385.5,1334,460,,238.2142857,82.14285714 +23129,385.5166667,1321,460,,235.8928571,82.14285714 +23130,385.5333333,1308,460,,233.5714286,82.14285714 +23131,385.55,1296,460,,231.4285714,82.14285714 +23132,385.5666667,1284,459,,229.2857143,81.96428571 +23133,385.5833333,1273,459,,227.3214286,81.96428571 +23134,385.6,1263,458,,225.5357143,81.78571429 +23135,385.6166667,1253,458,,223.75,81.78571429 +23136,385.6333333,1244,458,,222.1428571,81.78571429 +23137,385.65,1235,457,,220.5357143,81.60714286 +23138,385.6666667,1228,457,,219.2857143,81.60714286 +23139,385.6833333,1221,457,,218.0357143,81.60714286 +23140,385.7,1215,456,,216.9642857,81.42857143 +23141,385.7166667,1210,456,,216.0714286,81.42857143 +23142,385.7333333,1206,456,,215.3571429,81.42857143 +23143,385.75,1203,456,,214.8214286,81.42857143 +23144,385.7666667,1201,456,,214.4642857,81.42857143 +23145,385.7833333,1201,456,,214.4642857,81.42857143 +23146,385.8,1201,456,,214.4642857,81.42857143 +23147,385.8166667,1201,456,,214.4642857,81.42857143 +23148,385.8333333,1203,456,,214.8214286,81.42857143 +23149,385.85,1206,456,,215.3571429,81.42857143 +23150,385.8666667,1209,456,,215.8928571,81.42857143 +23151,385.8833333,1214,456,,216.7857143,81.42857143 +23152,385.9,1220,456,,217.8571429,81.42857143 +23153,385.9166667,1226,456,,218.9285714,81.42857143 +23154,385.9333333,1234,457,,220.3571429,81.60714286 +23155,385.95,1242,457,,221.7857143,81.60714286 +23156,385.9666667,1251,458,,223.3928571,81.78571429 +23157,385.9833333,1261,458,,225.1785714,81.78571429 +23158,386,1271,458,,226.9642857,81.78571429 +23159,386.0166667,1282,459,,228.9285714,81.96428571 +23160,386.0333333,1294,459,,231.0714286,81.96428571 +23161,386.05,1306,459,,233.2142857,81.96428571 +23162,386.0666667,1319,460,,235.5357143,82.14285714 +23163,386.0833333,1332,460,,237.8571429,82.14285714 +23164,386.1,1345,460,,240.1785714,82.14285714 +23165,386.1166667,1359,460,,242.6785714,82.14285714 +23166,386.1333333,1373,459,,245.1785714,81.96428571 +23167,386.15,1387,459,,247.6785714,81.96428571 +23168,386.1666667,1401,459,,250.1785714,81.96428571 +23169,386.1833333,1415,459,,252.6785714,81.96428571 +23170,386.2,1429,459,,255.1785714,81.96428571 +23171,386.2166667,1443,458,,257.6785714,81.78571429 +23172,386.2333333,1457,458,,260.1785714,81.78571429 +23173,386.25,1470,458,,262.5,81.78571429 +23174,386.2666667,1483,457,,264.8214286,81.60714286 +23175,386.2833333,1495,456,,266.9642857,81.42857143 +23176,386.3,1508,456,,269.2857143,81.42857143 +23177,386.3166667,1519,455,,271.25,81.25 +23178,386.3333333,1530,455,,273.2142857,81.25 +23179,386.35,1541,454,,275.1785714,81.07142857 +23180,386.3666667,1550,454,,276.7857143,81.07142857 +23181,386.3833333,1560,453,,278.5714286,80.89285714 +23182,386.4,1568,453,,280,80.89285714 +23183,386.4166667,1575,452,,281.25,80.71428571 +23184,386.4333333,1582,452,,282.5,80.71428571 +23185,386.45,1587,452,,283.3928571,80.71428571 +23186,386.4666667,1592,451,,284.2857143,80.53571429 +23187,386.4833333,1596,451,,285,80.53571429 +23188,386.5,1598,451,,285.3571429,80.53571429 +23189,386.5166667,1600,451,,285.7142857,80.53571429 +23190,386.5333333,1600,451,,285.7142857,80.53571429 +23191,386.55,1600,451,,285.7142857,80.53571429 +23192,386.5666667,1600,451,,285.7142857,80.53571429 +23193,386.5833333,1597,451,,285.1785714,80.53571429 +23194,386.6,1595,451,,284.8214286,80.53571429 +23195,386.6166667,1590,452,,283.9285714,80.71428571 +23196,386.6333333,1585,452,,283.0357143,80.71428571 +23197,386.65,1579,452,,281.9642857,80.71428571 +23198,386.6666667,1572,453,,280.7142857,80.89285714 +23199,386.6833333,1565,453,,279.4642857,80.89285714 +23200,386.7,1556,454,,277.8571429,81.07142857 +23201,386.7166667,1547,454,,276.25,81.07142857 +23202,386.7333333,1537,455,,274.4642857,81.25 +23203,386.75,1526,455,,272.5,81.25 +23204,386.7666667,1515,456,,270.5357143,81.42857143 +23205,386.7833333,1503,457,,268.3928571,81.60714286 +23206,386.8,1491,457,,266.25,81.60714286 +23207,386.8166667,1478,457,,263.9285714,81.60714286 +23208,386.8333333,1465,458,,261.6071429,81.78571429 +23209,386.85,1451,458,,259.1071429,81.78571429 +23210,386.8666667,1438,459,,256.7857143,81.96428571 +23211,386.8833333,1424,459,,254.2857143,81.96428571 +23212,386.9,1410,459,,251.7857143,81.96428571 +23213,386.9166667,1396,460,,249.2857143,82.14285714 +23214,386.9333333,1382,460,,246.7857143,82.14285714 +23215,386.95,1368,460,,244.2857143,82.14285714 +23216,386.9666667,1354,460,,241.7857143,82.14285714 +23217,386.9833333,1341,460,,239.4642857,82.14285714 +23218,387,1327,460,,236.9642857,82.14285714 +23219,387.0166667,1314,460,,234.6428571,82.14285714 +23220,387.0333333,1302,460,,232.5,82.14285714 +23221,387.05,1290,459,,230.3571429,81.96428571 +23222,387.0666667,1279,459,,228.3928571,81.96428571 +23223,387.0833333,1267,458,,226.25,81.78571429 +23224,387.1,1257,458,,224.4642857,81.78571429 +23225,387.1166667,1248,458,,222.8571429,81.78571429 +23226,387.1333333,1239,457,,221.25,81.60714286 +23227,387.15,1231,457,,219.8214286,81.60714286 +23228,387.1666667,1224,457,,218.5714286,81.60714286 +23229,387.1833333,1218,456,,217.5,81.42857143 +23230,387.2,1213,456,,216.6071429,81.42857143 +23231,387.2166667,1208,456,,215.7142857,81.42857143 +23232,387.2333333,1205,456,,215.1785714,81.42857143 +23233,387.25,1202,455,,214.6428571,81.25 +23234,387.2666667,1201,455,,214.4642857,81.25 +23235,387.2833333,1201,455,,214.4642857,81.25 +23236,387.3,1201,455,,214.4642857,81.25 +23237,387.3166667,1202,455,,214.6428571,81.25 +23238,387.3333333,1204,455,,215,81.25 +23239,387.35,1208,456,,215.7142857,81.42857143 +23240,387.3666667,1212,456,,216.4285714,81.42857143 +23241,387.3833333,1217,456,,217.3214286,81.42857143 +23242,387.4,1223,456,,218.3928571,81.42857143 +23243,387.4166667,1231,457,,219.8214286,81.60714286 +23244,387.4333333,1238,457,,221.0714286,81.60714286 +23245,387.45,1247,457,,222.6785714,81.60714286 +23246,387.4666667,1256,457,,224.2857143,81.60714286 +23247,387.4833333,1266,458,,226.0714286,81.78571429 +23248,387.5,1277,459,,228.0357143,81.96428571 +23249,387.5166667,1288,459,,230,81.96428571 +23250,387.5333333,1301,459,,232.3214286,81.96428571 +23251,387.55,1313,459,,234.4642857,81.96428571 +23252,387.5666667,1326,460,,236.7857143,82.14285714 +23253,387.5833333,1339,460,,239.1071429,82.14285714 +23254,387.6,1352,460,,241.4285714,82.14285714 +23255,387.6166667,1366,460,,243.9285714,82.14285714 +23256,387.6333333,1380,459,,246.4285714,81.96428571 +23257,387.65,1394,459,,248.9285714,81.96428571 +23258,387.6666667,1408,459,,251.4285714,81.96428571 +23259,387.6833333,1422,459,,253.9285714,81.96428571 +23260,387.7,1436,458,,256.4285714,81.78571429 +23261,387.7166667,1450,458,,258.9285714,81.78571429 +23262,387.7333333,1463,458,,261.25,81.78571429 +23263,387.75,1476,457,,263.5714286,81.60714286 +23264,387.7666667,1489,457,,265.8928571,81.60714286 +23265,387.7833333,1502,456,,268.2142857,81.42857143 +23266,387.8,1514,456,,270.3571429,81.42857143 +23267,387.8166667,1525,455,,272.3214286,81.25 +23268,387.8333333,1536,454,,274.2857143,81.07142857 +23269,387.85,1546,454,,276.0714286,81.07142857 +23270,387.8666667,1555,453,,277.6785714,80.89285714 +23271,387.8833333,1564,453,,279.2857143,80.89285714 +23272,387.9,1571,452,,280.5357143,80.71428571 +23273,387.9166667,1578,452,,281.7857143,80.71428571 +23274,387.9333333,1584,451,,282.8571429,80.53571429 +23275,387.95,1590,451,,283.9285714,80.53571429 +23276,387.9666667,1594,451,,284.6428571,80.53571429 +23277,387.9833333,1597,451,,285.1785714,80.53571429 +23278,388,1599,451,,285.5357143,80.53571429 +23279,388.0166667,1600,451,,285.7142857,80.53571429 +23280,388.0333333,1600,451,,285.7142857,80.53571429 +23281,388.05,1600,451,,285.7142857,80.53571429 +23282,388.0666667,1599,451,,285.5357143,80.53571429 +23283,388.0833333,1596,451,,285,80.53571429 +23284,388.1,1592,451,,284.2857143,80.53571429 +23285,388.1166667,1588,451,,283.5714286,80.53571429 +23286,388.1333333,1582,452,,282.5,80.71428571 +23287,388.15,1576,452,,281.4285714,80.71428571 +23288,388.1666667,1568,453,,280,80.89285714 +23289,388.1833333,1561,453,,278.75,80.89285714 +23290,388.2,1552,454,,277.1428571,81.07142857 +23291,388.2166667,1542,454,,275.3571429,81.07142857 +23292,388.2333333,1532,455,,273.5714286,81.25 +23293,388.25,1521,455,,271.6071429,81.25 +23294,388.2666667,1509,456,,269.4642857,81.42857143 +23295,388.2833333,1497,457,,267.3214286,81.60714286 +23296,388.3,1485,457,,265.1785714,81.60714286 +23297,388.3166667,1472,457,,262.8571429,81.60714286 +23298,388.3333333,1458,458,,260.3571429,81.78571429 +23299,388.35,1444,458,,257.8571429,81.78571429 +23300,388.3666667,1431,458,,255.5357143,81.78571429 +23301,388.3833333,1417,459,,253.0357143,81.96428571 +23302,388.4,1403,459,,250.5357143,81.96428571 +23303,388.4166667,1389,459,,248.0357143,81.96428571 +23304,388.4333333,1375,460,,245.5357143,82.14285714 +23305,388.45,1361,460,,243.0357143,82.14285714 +23306,388.4666667,1347,460,,240.5357143,82.14285714 +23307,388.4833333,1334,460,,238.2142857,82.14285714 +23308,388.5,1321,459,,235.8928571,81.96428571 +23309,388.5166667,1308,459,,233.5714286,81.96428571 +23310,388.5333333,1296,459,,231.4285714,81.96428571 +23311,388.55,1284,459,,229.2857143,81.96428571 +23312,388.5666667,1273,458,,227.3214286,81.78571429 +23313,388.5833333,1263,458,,225.5357143,81.78571429 +23314,388.6,1253,458,,223.75,81.78571429 +23315,388.6166667,1244,457,,222.1428571,81.60714286 +23316,388.6333333,1236,457,,220.7142857,81.60714286 +23317,388.65,1228,456,,219.2857143,81.42857143 +23318,388.6666667,1221,456,,218.0357143,81.42857143 +23319,388.6833333,1216,456,,217.1428571,81.42857143 +23320,388.7,1211,456,,216.25,81.42857143 +23321,388.7166667,1207,455,,215.5357143,81.25 +23322,388.7333333,1204,455,,215,81.25 +23323,388.75,1202,455,,214.6428571,81.25 +23324,388.7666667,1202,455,,214.6428571,81.25 +23325,388.7833333,1202,455,,214.6428571,81.25 +23326,388.8,1202,455,,214.6428571,81.25 +23327,388.8166667,1204,455,,215,81.25 +23328,388.8333333,1207,455,,215.5357143,81.25 +23329,388.85,1211,455,,216.25,81.25 +23330,388.8666667,1215,455,,216.9642857,81.25 +23331,388.8833333,1221,456,,218.0357143,81.42857143 +23332,388.9,1227,456,,219.1071429,81.42857143 +23333,388.9166667,1235,457,,220.5357143,81.60714286 +23334,388.9333333,1244,457,,222.1428571,81.60714286 +23335,388.95,1253,457,,223.75,81.60714286 +23336,388.9666667,1262,458,,225.3571429,81.78571429 +23337,388.9833333,1273,458,,227.3214286,81.78571429 +23338,389,1284,458,,229.2857143,81.78571429 +23339,389.0166667,1295,459,,231.25,81.96428571 +23340,389.0333333,1307,459,,233.3928571,81.96428571 +23341,389.05,1320,459,,235.7142857,81.96428571 +23342,389.0666667,1333,459,,238.0357143,81.96428571 +23343,389.0833333,1346,459,,240.3571429,81.96428571 +23344,389.1,1360,459,,242.8571429,81.96428571 +23345,389.1166667,1373,459,,245.1785714,81.96428571 +23346,389.1333333,1388,459,,247.8571429,81.96428571 +23347,389.15,1402,459,,250.3571429,81.96428571 +23348,389.1666667,1415,459,,252.6785714,81.96428571 +23349,389.1833333,1430,458,,255.3571429,81.78571429 +23350,389.2,1444,458,,257.8571429,81.78571429 +23351,389.2166667,1457,457,,260.1785714,81.60714286 +23352,389.2333333,1470,457,,262.5,81.60714286 +23353,389.25,1483,457,,264.8214286,81.60714286 +23354,389.2666667,1496,456,,267.1428571,81.42857143 +23355,389.2833333,1508,456,,269.2857143,81.42857143 +23356,389.3,1520,455,,271.4285714,81.25 +23357,389.3166667,1531,455,,273.3928571,81.25 +23358,389.3333333,1541,454,,275.1785714,81.07142857 +23359,389.35,1551,453,,276.9642857,80.89285714 +23360,389.3666667,1560,453,,278.5714286,80.89285714 +23361,389.3833333,1568,452,,280,80.71428571 +23362,389.4,1575,452,,281.25,80.71428571 +23363,389.4166667,1582,451,,282.5,80.53571429 +23364,389.4333333,1587,451,,283.3928571,80.53571429 +23365,389.45,1592,451,,284.2857143,80.53571429 +23366,389.4666667,1596,450,,285,80.35714286 +23367,389.4833333,1599,450,,285.5357143,80.35714286 +23368,389.5,1600,450,,285.7142857,80.35714286 +23369,389.5166667,1600,450,,285.7142857,80.35714286 +23370,389.5333333,1600,450,,285.7142857,80.35714286 +23371,389.55,1599,450,,285.5357143,80.35714286 +23372,389.5666667,1597,450,,285.1785714,80.35714286 +23373,389.5833333,1594,451,,284.6428571,80.53571429 +23374,389.6,1590,451,,283.9285714,80.53571429 +23375,389.6166667,1585,451,,283.0357143,80.53571429 +23376,389.6333333,1579,452,,281.9642857,80.71428571 +23377,389.65,1572,452,,280.7142857,80.71428571 +23378,389.6666667,1564,453,,279.2857143,80.89285714 +23379,389.6833333,1556,453,,277.8571429,80.89285714 +23380,389.7,1547,454,,276.25,81.07142857 +23381,389.7166667,1536,454,,274.2857143,81.07142857 +23382,389.7333333,1526,455,,272.5,81.25 +23383,389.75,1515,455,,270.5357143,81.25 +23384,389.7666667,1503,456,,268.3928571,81.42857143 +23385,389.7833333,1491,456,,266.25,81.42857143 +23386,389.8,1478,457,,263.9285714,81.60714286 +23387,389.8166667,1465,457,,261.6071429,81.60714286 +23388,389.8333333,1451,458,,259.1071429,81.78571429 +23389,389.85,1438,458,,256.7857143,81.78571429 +23390,389.8666667,1424,458,,254.2857143,81.78571429 +23391,389.8833333,1410,459,,251.7857143,81.96428571 +23392,389.9,1396,459,,249.2857143,81.96428571 +23393,389.9166667,1382,459,,246.7857143,81.96428571 +23394,389.9333333,1368,459,,244.2857143,81.96428571 +23395,389.95,1354,459,,241.7857143,81.96428571 +23396,389.9666667,1341,459,,239.4642857,81.96428571 +23397,389.9833333,1328,459,,237.1428571,81.96428571 +23398,390,1315,459,,234.8214286,81.96428571 +23399,390.0166667,1303,459,,232.6785714,81.96428571 +23400,390.0333333,1291,459,,230.5357143,81.96428571 +23401,390.05,1280,458,,228.5714286,81.78571429 +23402,390.0666667,1269,458,,226.6071429,81.78571429 +23403,390.0833333,1259,457,,224.8214286,81.60714286 +23404,390.1,1250,457,,223.2142857,81.60714286 +23405,390.1166667,1241,457,,221.6071429,81.60714286 +23406,390.1333333,1234,457,,220.3571429,81.60714286 +23407,390.15,1226,456,,218.9285714,81.42857143 +23408,390.1666667,1220,456,,217.8571429,81.42857143 +23409,390.1833333,1215,456,,216.9642857,81.42857143 +23410,390.2,1211,456,,216.25,81.42857143 +23411,390.2166667,1207,455,,215.5357143,81.25 +23412,390.2333333,1205,455,,215.1785714,81.25 +23413,390.25,1203,455,,214.8214286,81.25 +23414,390.2666667,1203,455,,214.8214286,81.25 +23415,390.2833333,1203,455,,214.8214286,81.25 +23416,390.3,1205,455,,215.1785714,81.25 +23417,390.3166667,1207,455,,215.5357143,81.25 +23418,390.3333333,1211,456,,216.25,81.42857143 +23419,390.35,1215,456,,216.9642857,81.42857143 +23420,390.3666667,1220,456,,217.8571429,81.42857143 +23421,390.3833333,1226,456,,218.9285714,81.42857143 +23422,390.4,1234,456,,220.3571429,81.42857143 +23423,390.4166667,1241,457,,221.6071429,81.60714286 +23424,390.4333333,1250,457,,223.2142857,81.60714286 +23425,390.45,1259,458,,224.8214286,81.78571429 +23426,390.4666667,1269,458,,226.6071429,81.78571429 +23427,390.4833333,1280,458,,228.5714286,81.78571429 +23428,390.5,1292,459,,230.7142857,81.96428571 +23429,390.5166667,1303,459,,232.6785714,81.96428571 +23430,390.5333333,1316,459,,235,81.96428571 +23431,390.55,1328,459,,237.1428571,81.96428571 +23432,390.5666667,1341,459,,239.4642857,81.96428571 +23433,390.5833333,1354,459,,241.7857143,81.96428571 +23434,390.6,1368,459,,244.2857143,81.96428571 +23435,390.6166667,1382,459,,246.7857143,81.96428571 +23436,390.6333333,1396,459,,249.2857143,81.96428571 +23437,390.65,1410,459,,251.7857143,81.96428571 +23438,390.6666667,1424,458,,254.2857143,81.78571429 +23439,390.6833333,1438,458,,256.7857143,81.78571429 +23440,390.7,1451,458,,259.1071429,81.78571429 +23441,390.7166667,1465,457,,261.6071429,81.60714286 +23442,390.7333333,1478,457,,263.9285714,81.60714286 +23443,390.75,1490,456,,266.0714286,81.42857143 +23444,390.7666667,1503,456,,268.3928571,81.42857143 +23445,390.7833333,1514,455,,270.3571429,81.25 +23446,390.8,1525,455,,272.3214286,81.25 +23447,390.8166667,1536,454,,274.2857143,81.07142857 +23448,390.8333333,1546,454,,276.0714286,81.07142857 +23449,390.85,1555,453,,277.6785714,80.89285714 +23450,390.8666667,1564,453,,279.2857143,80.89285714 +23451,390.8833333,1571,452,,280.5357143,80.71428571 +23452,390.9,1578,452,,281.7857143,80.71428571 +23453,390.9166667,1584,452,,282.8571429,80.71428571 +23454,390.9333333,1589,451,,283.75,80.53571429 +23455,390.95,1593,451,,284.4642857,80.53571429 +23456,390.9666667,1596,451,,285,80.53571429 +23457,390.9833333,1598,451,,285.3571429,80.53571429 +23458,391,1599,450,,285.5357143,80.35714286 +23459,391.0166667,1599,450,,285.5357143,80.35714286 +23460,391.0333333,1599,451,,285.5357143,80.53571429 +23461,391.05,1597,451,,285.1785714,80.53571429 +23462,391.0666667,1594,451,,284.6428571,80.53571429 +23463,391.0833333,1591,451,,284.1071429,80.53571429 +23464,391.1,1586,452,,283.2142857,80.71428571 +23465,391.1166667,1580,452,,282.1428571,80.71428571 +23466,391.1333333,1574,452,,281.0714286,80.71428571 +23467,391.15,1567,453,,279.8214286,80.89285714 +23468,391.1666667,1558,453,,278.2142857,80.89285714 +23469,391.1833333,1550,454,,276.7857143,81.07142857 +23470,391.2,1540,454,,275,81.07142857 +23471,391.2166667,1530,455,,273.2142857,81.25 +23472,391.2333333,1519,456,,271.25,81.42857143 +23473,391.25,1507,456,,269.1071429,81.42857143 +23474,391.2666667,1495,457,,266.9642857,81.60714286 +23475,391.2833333,1483,457,,264.8214286,81.60714286 +23476,391.3,1470,458,,262.5,81.78571429 +23477,391.3166667,1456,458,,260,81.78571429 +23478,391.3333333,1443,458,,257.6785714,81.78571429 +23479,391.35,1430,459,,255.3571429,81.96428571 +23480,391.3666667,1415,459,,252.6785714,81.96428571 +23481,391.3833333,1401,459,,250.1785714,81.96428571 +23482,391.4,1388,459,,247.8571429,81.96428571 +23483,391.4166667,1374,460,,245.3571429,82.14285714 +23484,391.4333333,1360,460,,242.8571429,82.14285714 +23485,391.45,1347,460,,240.5357143,82.14285714 +23486,391.4666667,1334,459,,238.2142857,81.96428571 +23487,391.4833333,1321,459,,235.8928571,81.96428571 +23488,391.5,1308,459,,233.5714286,81.96428571 +23489,391.5166667,1296,459,,231.4285714,81.96428571 +23490,391.5333333,1285,459,,229.4642857,81.96428571 +23491,391.55,1274,458,,227.5,81.78571429 +23492,391.5666667,1263,458,,225.5357143,81.78571429 +23493,391.5833333,1254,457,,223.9285714,81.60714286 +23494,391.6,1245,457,,222.3214286,81.60714286 +23495,391.6166667,1237,457,,220.8928571,81.60714286 +23496,391.6333333,1229,456,,219.4642857,81.42857143 +23497,391.65,1223,456,,218.3928571,81.42857143 +23498,391.6666667,1217,456,,217.3214286,81.42857143 +23499,391.6833333,1213,456,,216.6071429,81.42857143 +23500,391.7,1209,455,,215.8928571,81.25 +23501,391.7166667,1206,455,,215.3571429,81.25 +23502,391.7333333,1204,455,,215,81.25 +23503,391.75,1204,455,,215,81.25 +23504,391.7666667,1204,455,,215,81.25 +23505,391.7833333,1204,455,,215,81.25 +23506,391.8,1206,455,,215.3571429,81.25 +23507,391.8166667,1209,455,,215.8928571,81.25 +23508,391.8333333,1213,456,,216.6071429,81.42857143 +23509,391.85,1218,456,,217.5,81.42857143 +23510,391.8666667,1223,456,,218.3928571,81.42857143 +23511,391.8833333,1230,456,,219.6428571,81.42857143 +23512,391.9,1238,456,,221.0714286,81.42857143 +23513,391.9166667,1246,457,,222.5,81.60714286 +23514,391.9333333,1255,457,,224.1071429,81.60714286 +23515,391.95,1264,457,,225.7142857,81.60714286 +23516,391.9666667,1275,458,,227.6785714,81.78571429 +23517,391.9833333,1286,458,,229.6428571,81.78571429 +23518,392,1297,458,,231.6071429,81.78571429 +23519,392.0166667,1309,458,,233.75,81.78571429 +23520,392.0333333,1322,459,,236.0714286,81.96428571 +23521,392.05,1335,459,,238.3928571,81.96428571 +23522,392.0666667,1348,459,,240.7142857,81.96428571 +23523,392.0833333,1361,459,,243.0357143,81.96428571 +23524,392.1,1375,459,,245.5357143,81.96428571 +23525,392.1166667,1389,459,,248.0357143,81.96428571 +23526,392.1333333,1403,458,,250.5357143,81.78571429 +23527,392.15,1416,458,,252.8571429,81.78571429 +23528,392.1666667,1430,458,,255.3571429,81.78571429 +23529,392.1833333,1444,458,,257.8571429,81.78571429 +23530,392.2,1458,457,,260.3571429,81.60714286 +23531,392.2166667,1471,457,,262.6785714,81.60714286 +23532,392.2333333,1484,456,,265,81.42857143 +23533,392.25,1496,456,,267.1428571,81.42857143 +23534,392.2666667,1508,456,,269.2857143,81.42857143 +23535,392.2833333,1519,455,,271.25,81.25 +23536,392.3,1530,454,,273.2142857,81.07142857 +23537,392.3166667,1540,454,,275,81.07142857 +23538,392.3333333,1550,453,,276.7857143,80.89285714 +23539,392.35,1559,453,,278.3928571,80.89285714 +23540,392.3666667,1567,452,,279.8214286,80.71428571 +23541,392.3833333,1574,452,,281.0714286,80.71428571 +23542,392.4,1580,452,,282.1428571,80.71428571 +23543,392.4166667,1586,451,,283.2142857,80.53571429 +23544,392.4333333,1590,451,,283.9285714,80.53571429 +23545,392.45,1594,451,,284.6428571,80.53571429 +23546,392.4666667,1596,451,,285,80.53571429 +23547,392.4833333,1598,451,,285.3571429,80.53571429 +23548,392.5,1598,451,,285.3571429,80.53571429 +23549,392.5166667,1598,451,,285.3571429,80.53571429 +23550,392.5333333,1597,451,,285.1785714,80.53571429 +23551,392.55,1595,451,,284.8214286,80.53571429 +23552,392.5666667,1591,451,,284.1071429,80.53571429 +23553,392.5833333,1587,451,,283.3928571,80.53571429 +23554,392.6,1582,452,,282.5,80.71428571 +23555,392.6166667,1576,452,,281.4285714,80.71428571 +23556,392.6333333,1569,453,,280.1785714,80.89285714 +23557,392.65,1562,453,,278.9285714,80.89285714 +23558,392.6666667,1553,454,,277.3214286,81.07142857 +23559,392.6833333,1544,454,,275.7142857,81.07142857 +23560,392.7,1534,455,,273.9285714,81.25 +23561,392.7166667,1523,455,,271.9642857,81.25 +23562,392.7333333,1512,456,,270,81.42857143 +23563,392.75,1500,456,,267.8571429,81.42857143 +23564,392.7666667,1488,457,,265.7142857,81.60714286 +23565,392.7833333,1476,457,,263.5714286,81.60714286 +23566,392.8,1463,458,,261.25,81.78571429 +23567,392.8166667,1449,458,,258.75,81.78571429 +23568,392.8333333,1436,458,,256.4285714,81.78571429 +23569,392.85,1422,459,,253.9285714,81.96428571 +23570,392.8666667,1408,459,,251.4285714,81.96428571 +23571,392.8833333,1394,459,,248.9285714,81.96428571 +23572,392.9,1380,459,,246.4285714,81.96428571 +23573,392.9166667,1367,460,,244.1071429,82.14285714 +23574,392.9333333,1353,460,,241.6071429,82.14285714 +23575,392.95,1340,460,,239.2857143,82.14285714 +23576,392.9666667,1327,459,,236.9642857,81.96428571 +23577,392.9833333,1314,459,,234.6428571,81.96428571 +23578,393,1302,459,,232.5,81.96428571 +23579,393.0166667,1290,459,,230.3571429,81.96428571 +23580,393.0333333,1279,458,,228.3928571,81.78571429 +23581,393.05,1268,458,,226.4285714,81.78571429 +23582,393.0666667,1259,458,,224.8214286,81.78571429 +23583,393.0833333,1249,457,,223.0357143,81.60714286 +23584,393.1,1241,457,,221.6071429,81.60714286 +23585,393.1166667,1233,456,,220.1785714,81.42857143 +23586,393.1333333,1226,456,,218.9285714,81.42857143 +23587,393.15,1220,456,,217.8571429,81.42857143 +23588,393.1666667,1215,456,,216.9642857,81.42857143 +23589,393.1833333,1211,455,,216.25,81.25 +23590,393.2,1208,455,,215.7142857,81.25 +23591,393.2166667,1205,455,,215.1785714,81.25 +23592,393.2333333,1204,455,,215,81.25 +23593,393.25,1204,455,,215,81.25 +23594,393.2666667,1204,455,,215,81.25 +23595,393.2833333,1205,455,,215.1785714,81.25 +23596,393.3,1208,455,,215.7142857,81.25 +23597,393.3166667,1211,455,,216.25,81.25 +23598,393.3333333,1216,455,,217.1428571,81.25 +23599,393.35,1221,456,,218.0357143,81.42857143 +23600,393.3666667,1227,456,,219.1071429,81.42857143 +23601,393.3833333,1234,456,,220.3571429,81.42857143 +23602,393.4,1242,457,,221.7857143,81.60714286 +23603,393.4166667,1250,457,,223.2142857,81.60714286 +23604,393.4333333,1260,457,,225,81.60714286 +23605,393.45,1270,458,,226.7857143,81.78571429 +23606,393.4666667,1280,458,,228.5714286,81.78571429 +23607,393.4833333,1292,458,,230.7142857,81.78571429 +23608,393.5,1303,459,,232.6785714,81.96428571 +23609,393.5166667,1316,459,,235,81.96428571 +23610,393.5333333,1328,459,,237.1428571,81.96428571 +23611,393.55,1341,459,,239.4642857,81.96428571 +23612,393.5666667,1354,459,,241.7857143,81.96428571 +23613,393.5833333,1368,459,,244.2857143,81.96428571 +23614,393.6,1382,459,,246.7857143,81.96428571 +23615,393.6166667,1396,459,,249.2857143,81.96428571 +23616,393.6333333,1410,459,,251.7857143,81.96428571 +23617,393.65,1423,458,,254.1071429,81.78571429 +23618,393.6666667,1437,458,,256.6071429,81.78571429 +23619,393.6833333,1451,458,,259.1071429,81.78571429 +23620,393.7,1464,457,,261.4285714,81.60714286 +23621,393.7166667,1477,457,,263.75,81.60714286 +23622,393.7333333,1490,456,,266.0714286,81.42857143 +23623,393.75,1501,456,,268.0357143,81.42857143 +23624,393.7666667,1513,456,,270.1785714,81.42857143 +23625,393.7833333,1524,455,,272.1428571,81.25 +23626,393.8,1535,454,,274.1071429,81.07142857 +23627,393.8166667,1545,454,,275.8928571,81.07142857 +23628,393.8333333,1553,453,,277.3214286,80.89285714 +23629,393.85,1562,453,,278.9285714,80.89285714 +23630,393.8666667,1569,452,,280.1785714,80.71428571 +23631,393.8833333,1576,452,,281.4285714,80.71428571 +23632,393.9,1582,451,,282.5,80.53571429 +23633,393.9166667,1587,451,,283.3928571,80.53571429 +23634,393.9333333,1591,451,,284.1071429,80.53571429 +23635,393.95,1594,451,,284.6428571,80.53571429 +23636,393.9666667,1596,451,,285,80.53571429 +23637,393.9833333,1596,451,,285,80.53571429 +23638,394,1596,451,,285,80.53571429 +23639,394.0166667,1596,451,,285,80.53571429 +23640,394.0333333,1594,451,,284.6428571,80.53571429 +23641,394.05,1592,451,,284.2857143,80.53571429 +23642,394.0666667,1588,451,,283.5714286,80.53571429 +23643,394.0833333,1583,452,,282.6785714,80.71428571 +23644,394.1,1578,452,,281.7857143,80.71428571 +23645,394.1166667,1571,452,,280.5357143,80.71428571 +23646,394.1333333,1564,453,,279.2857143,80.89285714 +23647,394.15,1556,454,,277.8571429,81.07142857 +23648,394.1666667,1547,454,,276.25,81.07142857 +23649,394.1833333,1538,454,,274.6428571,81.07142857 +23650,394.2,1527,455,,272.6785714,81.25 +23651,394.2166667,1517,456,,270.8928571,81.42857143 +23652,394.2333333,1505,456,,268.75,81.42857143 +23653,394.25,1493,457,,266.6071429,81.60714286 +23654,394.2666667,1481,457,,264.4642857,81.60714286 +23655,394.2833333,1468,457,,262.1428571,81.60714286 +23656,394.3,1455,458,,259.8214286,81.78571429 +23657,394.3166667,1441,458,,257.3214286,81.78571429 +23658,394.3333333,1428,458,,255,81.78571429 +23659,394.35,1414,459,,252.5,81.96428571 +23660,394.3666667,1400,459,,250,81.96428571 +23661,394.3833333,1387,459,,247.6785714,81.96428571 +23662,394.4,1373,459,,245.1785714,81.96428571 +23663,394.4166667,1359,460,,242.6785714,82.14285714 +23664,394.4333333,1346,460,,240.3571429,82.14285714 +23665,394.45,1333,460,,238.0357143,82.14285714 +23666,394.4666667,1320,460,,235.7142857,82.14285714 +23667,394.4833333,1308,459,,233.5714286,81.96428571 +23668,394.5,1296,459,,231.4285714,81.96428571 +23669,394.5166667,1285,459,,229.4642857,81.96428571 +23670,394.5333333,1274,458,,227.5,81.78571429 +23671,394.55,1264,458,,225.7142857,81.78571429 +23672,394.5666667,1254,457,,223.9285714,81.60714286 +23673,394.5833333,1245,457,,222.3214286,81.60714286 +23674,394.6,1237,457,,220.8928571,81.60714286 +23675,394.6166667,1230,456,,219.6428571,81.42857143 +23676,394.6333333,1224,456,,218.5714286,81.42857143 +23677,394.65,1218,456,,217.5,81.42857143 +23678,394.6666667,1213,456,,216.6071429,81.42857143 +23679,394.6833333,1210,455,,216.0714286,81.25 +23680,394.7,1207,455,,215.5357143,81.25 +23681,394.7166667,1205,455,,215.1785714,81.25 +23682,394.7333333,1205,455,,215.1785714,81.25 +23683,394.75,1205,455,,215.1785714,81.25 +23684,394.7666667,1205,455,,215.1785714,81.25 +23685,394.7833333,1207,455,,215.5357143,81.25 +23686,394.8,1210,455,,216.0714286,81.25 +23687,394.8166667,1214,456,,216.7857143,81.42857143 +23688,394.8333333,1219,456,,217.6785714,81.42857143 +23689,394.85,1224,456,,218.5714286,81.42857143 +23690,394.8666667,1231,456,,219.8214286,81.42857143 +23691,394.8833333,1238,457,,221.0714286,81.60714286 +23692,394.9,1247,457,,222.6785714,81.60714286 +23693,394.9166667,1256,458,,224.2857143,81.78571429 +23694,394.9333333,1265,458,,225.8928571,81.78571429 +23695,394.95,1275,458,,227.6785714,81.78571429 +23696,394.9666667,1286,458,,229.6428571,81.78571429 +23697,394.9833333,1298,459,,231.7857143,81.96428571 +23698,395,1310,459,,233.9285714,81.96428571 +23699,395.0166667,1322,459,,236.0714286,81.96428571 +23700,395.0333333,1335,459,,238.3928571,81.96428571 +23701,395.05,1348,459,,240.7142857,81.96428571 +23702,395.0666667,1361,459,,243.0357143,81.96428571 +23703,395.0833333,1375,459,,245.5357143,81.96428571 +23704,395.1,1389,459,,248.0357143,81.96428571 +23705,395.1166667,1403,459,,250.5357143,81.96428571 +23706,395.1333333,1416,459,,252.8571429,81.96428571 +23707,395.15,1430,458,,255.3571429,81.78571429 +23708,395.1666667,1444,458,,257.8571429,81.78571429 +23709,395.1833333,1457,458,,260.1785714,81.78571429 +23710,395.2,1470,457,,262.5,81.60714286 +23711,395.2166667,1483,457,,264.8214286,81.60714286 +23712,395.2333333,1495,456,,266.9642857,81.42857143 +23713,395.25,1507,456,,269.1071429,81.42857143 +23714,395.2666667,1518,455,,271.0714286,81.25 +23715,395.2833333,1529,455,,273.0357143,81.25 +23716,395.3,1539,454,,274.8214286,81.07142857 +23717,395.3166667,1549,454,,276.6071429,81.07142857 +23718,395.3333333,1557,453,,278.0357143,80.89285714 +23719,395.35,1565,453,,279.4642857,80.89285714 +23720,395.3666667,1572,453,,280.7142857,80.89285714 +23721,395.3833333,1579,452,,281.9642857,80.71428571 +23722,395.4,1584,452,,282.8571429,80.71428571 +23723,395.4166667,1588,451,,283.5714286,80.53571429 +23724,395.4333333,1592,451,,284.2857143,80.53571429 +23725,395.45,1594,451,,284.6428571,80.53571429 +23726,395.4666667,1596,451,,285,80.53571429 +23727,395.4833333,1596,451,,285,80.53571429 +23728,395.5,1596,451,,285,80.53571429 +23729,395.5166667,1595,451,,284.8214286,80.53571429 +23730,395.5333333,1593,451,,284.4642857,80.53571429 +23731,395.55,1589,451,,283.75,80.53571429 +23732,395.5666667,1585,452,,283.0357143,80.71428571 +23733,395.5833333,1580,452,,282.1428571,80.71428571 +23734,395.6,1574,453,,281.0714286,80.89285714 +23735,395.6166667,1567,453,,279.8214286,80.89285714 +23736,395.6333333,1560,453,,278.5714286,80.89285714 +23737,395.65,1551,454,,276.9642857,81.07142857 +23738,395.6666667,1542,454,,275.3571429,81.07142857 +23739,395.6833333,1532,455,,273.5714286,81.25 +23740,395.7,1521,455,,271.6071429,81.25 +23741,395.7166667,1510,456,,269.6428571,81.42857143 +23742,395.7333333,1499,457,,267.6785714,81.60714286 +23743,395.75,1486,457,,265.3571429,81.60714286 +23744,395.7666667,1474,458,,263.2142857,81.78571429 +23745,395.7833333,1461,458,,260.8928571,81.78571429 +23746,395.8,1448,458,,258.5714286,81.78571429 +23747,395.8166667,1434,458,,256.0714286,81.78571429 +23748,395.8333333,1420,459,,253.5714286,81.96428571 +23749,395.85,1407,459,,251.25,81.96428571 +23750,395.8666667,1393,459,,248.75,81.96428571 +23751,395.8833333,1379,459,,246.25,81.96428571 +23752,395.9,1365,460,,243.75,82.14285714 +23753,395.9166667,1352,460,,241.4285714,82.14285714 +23754,395.9333333,1339,460,,239.1071429,82.14285714 +23755,395.95,1326,460,,236.7857143,82.14285714 +23756,395.9666667,1314,460,,234.6428571,82.14285714 +23757,395.9833333,1302,460,,232.5,82.14285714 +23758,396,1290,459,,230.3571429,81.96428571 +23759,396.0166667,1278,459,,228.2142857,81.96428571 +23760,396.0333333,1268,458,,226.4285714,81.78571429 +23761,396.05,1259,458,,224.8214286,81.78571429 +23762,396.0666667,1249,457,,223.0357143,81.60714286 +23763,396.0833333,1241,457,,221.6071429,81.60714286 +23764,396.1,1233,457,,220.1785714,81.60714286 +23765,396.1166667,1226,456,,218.9285714,81.42857143 +23766,396.1333333,1220,456,,217.8571429,81.42857143 +23767,396.15,1215,456,,216.9642857,81.42857143 +23768,396.1666667,1211,456,,216.25,81.42857143 +23769,396.1833333,1208,456,,215.7142857,81.42857143 +23770,396.2,1206,455,,215.3571429,81.25 +23771,396.2166667,1204,455,,215,81.25 +23772,396.2333333,1204,455,,215,81.25 +23773,396.25,1204,455,,215,81.25 +23774,396.2666667,1206,455,,215.3571429,81.25 +23775,396.2833333,1208,455,,215.7142857,81.25 +23776,396.3,1212,455,,216.4285714,81.25 +23777,396.3166667,1216,456,,217.1428571,81.42857143 +23778,396.3333333,1221,456,,218.0357143,81.42857143 +23779,396.35,1227,456,,219.1071429,81.42857143 +23780,396.3666667,1235,456,,220.5357143,81.42857143 +23781,396.3833333,1243,457,,221.9642857,81.60714286 +23782,396.4,1251,457,,223.3928571,81.60714286 +23783,396.4166667,1260,457,,225,81.60714286 +23784,396.4333333,1270,458,,226.7857143,81.78571429 +23785,396.45,1281,458,,228.75,81.78571429 +23786,396.4666667,1292,459,,230.7142857,81.96428571 +23787,396.4833333,1304,459,,232.8571429,81.96428571 +23788,396.5,1316,459,,235,81.96428571 +23789,396.5166667,1329,459,,237.3214286,81.96428571 +23790,396.5333333,1342,459,,239.6428571,81.96428571 +23791,396.55,1355,459,,241.9642857,81.96428571 +23792,396.5666667,1368,459,,244.2857143,81.96428571 +23793,396.5833333,1382,459,,246.7857143,81.96428571 +23794,396.6,1396,459,,249.2857143,81.96428571 +23795,396.6166667,1409,459,,251.6071429,81.96428571 +23796,396.6333333,1423,458,,254.1071429,81.78571429 +23797,396.65,1437,458,,256.6071429,81.78571429 +23798,396.6666667,1450,458,,258.9285714,81.78571429 +23799,396.6833333,1464,458,,261.4285714,81.78571429 +23800,396.7,1477,457,,263.75,81.60714286 +23801,396.7166667,1489,457,,265.8928571,81.60714286 +23802,396.7333333,1501,456,,268.0357143,81.42857143 +23803,396.75,1513,456,,270.1785714,81.42857143 +23804,396.7666667,1524,455,,272.1428571,81.25 +23805,396.7833333,1534,455,,273.9285714,81.25 +23806,396.8,1544,454,,275.7142857,81.07142857 +23807,396.8166667,1553,454,,277.3214286,81.07142857 +23808,396.8333333,1561,453,,278.75,80.89285714 +23809,396.85,1569,453,,280.1785714,80.89285714 +23810,396.8666667,1575,452,,281.25,80.71428571 +23811,396.8833333,1581,452,,282.3214286,80.71428571 +23812,396.9,1586,452,,283.2142857,80.71428571 +23813,396.9166667,1590,451,,283.9285714,80.53571429 +23814,396.9333333,1593,451,,284.4642857,80.53571429 +23815,396.95,1595,451,,284.8214286,80.53571429 +23816,396.9666667,1595,451,,284.8214286,80.53571429 +23817,396.9833333,1595,451,,284.8214286,80.53571429 +23818,397,1595,451,,284.8214286,80.53571429 +23819,397.0166667,1593,451,,284.4642857,80.53571429 +23820,397.0333333,1591,452,,284.1071429,80.71428571 +23821,397.05,1587,452,,283.3928571,80.71428571 +23822,397.0666667,1582,452,,282.5,80.71428571 +23823,397.0833333,1577,453,,281.6071429,80.89285714 +23824,397.1,1570,453,,280.3571429,80.89285714 +23825,397.1166667,1563,454,,279.1071429,81.07142857 +23826,397.1333333,1555,454,,277.6785714,81.07142857 +23827,397.15,1546,455,,276.0714286,81.25 +23828,397.1666667,1537,455,,274.4642857,81.25 +23829,397.1833333,1526,456,,272.5,81.42857143 +23830,397.2,1516,456,,270.7142857,81.42857143 +23831,397.2166667,1504,456,,268.5714286,81.42857143 +23832,397.2333333,1492,457,,266.4285714,81.60714286 +23833,397.25,1480,457,,264.2857143,81.60714286 +23834,397.2666667,1467,458,,261.9642857,81.78571429 +23835,397.2833333,1454,458,,259.6428571,81.78571429 +23836,397.3,1441,459,,257.3214286,81.96428571 +23837,397.3166667,1427,459,,254.8214286,81.96428571 +23838,397.3333333,1413,459,,252.3214286,81.96428571 +23839,397.35,1400,460,,250,82.14285714 +23840,397.3666667,1386,460,,247.5,82.14285714 +23841,397.3833333,1372,460,,245,82.14285714 +23842,397.4,1359,460,,242.6785714,82.14285714 +23843,397.4166667,1346,460,,240.3571429,82.14285714 +23844,397.4333333,1332,460,,237.8571429,82.14285714 +23845,397.45,1320,460,,235.7142857,82.14285714 +23846,397.4666667,1308,459,,233.5714286,81.96428571 +23847,397.4833333,1296,459,,231.4285714,81.96428571 +23848,397.5,1284,459,,229.2857143,81.96428571 +23849,397.5166667,1274,459,,227.5,81.96428571 +23850,397.5333333,1263,458,,225.5357143,81.78571429 +23851,397.55,1254,458,,223.9285714,81.78571429 +23852,397.5666667,1245,457,,222.3214286,81.60714286 +23853,397.5833333,1237,457,,220.8928571,81.60714286 +23854,397.6,1230,457,,219.6428571,81.60714286 +23855,397.6166667,1223,457,,218.3928571,81.60714286 +23856,397.6333333,1218,456,,217.5,81.42857143 +23857,397.65,1213,456,,216.6071429,81.42857143 +23858,397.6666667,1210,456,,216.0714286,81.42857143 +23859,397.6833333,1207,455,,215.5357143,81.25 +23860,397.7,1205,455,,215.1785714,81.25 +23861,397.7166667,1205,455,,215.1785714,81.25 +23862,397.7333333,1205,455,,215.1785714,81.25 +23863,397.75,1205,455,,215.1785714,81.25 +23864,397.7666667,1207,455,,215.5357143,81.25 +23865,397.7833333,1210,456,,216.0714286,81.42857143 +23866,397.8,1214,456,,216.7857143,81.42857143 +23867,397.8166667,1219,456,,217.6785714,81.42857143 +23868,397.8333333,1225,456,,218.75,81.42857143 +23869,397.85,1232,456,,220,81.42857143 +23870,397.8666667,1239,457,,221.25,81.60714286 +23871,397.8833333,1247,457,,222.6785714,81.60714286 +23872,397.9,1256,457,,224.2857143,81.60714286 +23873,397.9166667,1266,458,,226.0714286,81.78571429 +23874,397.9333333,1276,458,,227.8571429,81.78571429 +23875,397.95,1287,459,,229.8214286,81.96428571 +23876,397.9666667,1298,459,,231.7857143,81.96428571 +23877,397.9833333,1311,459,,234.1071429,81.96428571 +23878,398,1323,459,,236.25,81.96428571 +23879,398.0166667,1336,459,,238.5714286,81.96428571 +23880,398.0333333,1348,459,,240.7142857,81.96428571 +23881,398.05,1362,459,,243.2142857,81.96428571 +23882,398.0666667,1376,459,,245.7142857,81.96428571 +23883,398.0833333,1389,459,,248.0357143,81.96428571 +23884,398.1,1403,459,,250.5357143,81.96428571 +23885,398.1166667,1417,459,,253.0357143,81.96428571 +23886,398.1333333,1431,458,,255.5357143,81.78571429 +23887,398.15,1444,458,,257.8571429,81.78571429 +23888,398.1666667,1457,458,,260.1785714,81.78571429 +23889,398.1833333,1470,457,,262.5,81.60714286 +23890,398.2,1483,457,,264.8214286,81.60714286 +23891,398.2166667,1496,456,,267.1428571,81.42857143 +23892,398.2333333,1507,456,,269.1071429,81.42857143 +23893,398.25,1518,455,,271.0714286,81.25 +23894,398.2666667,1529,455,,273.0357143,81.25 +23895,398.2833333,1539,454,,274.8214286,81.07142857 +23896,398.3,1549,454,,276.6071429,81.07142857 +23897,398.3166667,1557,453,,278.0357143,80.89285714 +23898,398.3333333,1565,453,,279.4642857,80.89285714 +23899,398.35,1572,452,,280.7142857,80.71428571 +23900,398.3666667,1578,452,,281.7857143,80.71428571 +23901,398.3833333,1584,452,,282.8571429,80.71428571 +23902,398.4,1588,451,,283.5714286,80.53571429 +23903,398.4166667,1592,451,,284.2857143,80.53571429 +23904,398.4333333,1594,451,,284.6428571,80.53571429 +23905,398.45,1595,451,,284.8214286,80.53571429 +23906,398.4666667,1595,451,,284.8214286,80.53571429 +23907,398.4833333,1595,451,,284.8214286,80.53571429 +23908,398.5,1595,451,,284.8214286,80.53571429 +23909,398.5166667,1592,451,,284.2857143,80.53571429 +23910,398.5333333,1589,452,,283.75,80.71428571 +23911,398.55,1585,452,,283.0357143,80.71428571 +23912,398.5666667,1579,452,,281.9642857,80.71428571 +23913,398.5833333,1573,452,,280.8928571,80.71428571 +23914,398.6,1567,453,,279.8214286,80.89285714 +23915,398.6166667,1559,454,,278.3928571,81.07142857 +23916,398.6333333,1551,454,,276.9642857,81.07142857 +23917,398.65,1541,455,,275.1785714,81.25 +23918,398.6666667,1532,455,,273.5714286,81.25 +23919,398.6833333,1521,456,,271.6071429,81.42857143 +23920,398.7,1510,456,,269.6428571,81.42857143 +23921,398.7166667,1498,457,,267.5,81.60714286 +23922,398.7333333,1486,457,,265.3571429,81.60714286 +23923,398.75,1474,458,,263.2142857,81.78571429 +23924,398.7666667,1461,458,,260.8928571,81.78571429 +23925,398.7833333,1448,458,,258.5714286,81.78571429 +23926,398.8,1434,459,,256.0714286,81.96428571 +23927,398.8166667,1421,459,,253.75,81.96428571 +23928,398.8333333,1406,460,,251.0714286,82.14285714 +23929,398.85,1393,460,,248.75,82.14285714 +23930,398.8666667,1379,460,,246.25,82.14285714 +23931,398.8833333,1366,460,,243.9285714,82.14285714 +23932,398.9,1352,460,,241.4285714,82.14285714 +23933,398.9166667,1339,460,,239.1071429,82.14285714 +23934,398.9333333,1326,460,,236.7857143,82.14285714 +23935,398.95,1314,460,,234.6428571,82.14285714 +23936,398.9666667,1302,459,,232.5,81.96428571 +23937,398.9833333,1290,459,,230.3571429,81.96428571 +23938,399,1279,459,,228.3928571,81.96428571 +23939,399.0166667,1269,458,,226.6071429,81.78571429 +23940,399.0333333,1259,458,,224.8214286,81.78571429 +23941,399.05,1250,458,,223.2142857,81.78571429 +23942,399.0666667,1242,457,,221.7857143,81.60714286 +23943,399.0833333,1234,457,,220.3571429,81.60714286 +23944,399.1,1227,457,,219.1071429,81.60714286 +23945,399.1166667,1221,456,,218.0357143,81.42857143 +23946,399.1333333,1216,456,,217.1428571,81.42857143 +23947,399.15,1212,456,,216.4285714,81.42857143 +23948,399.1666667,1209,456,,215.8928571,81.42857143 +23949,399.1833333,1206,455,,215.3571429,81.25 +23950,399.2,1205,455,,215.1785714,81.25 +23951,399.2166667,1205,455,,215.1785714,81.25 +23952,399.2333333,1205,455,,215.1785714,81.25 +23953,399.25,1207,456,,215.5357143,81.42857143 +23954,399.2666667,1210,456,,216.0714286,81.42857143 +23955,399.2833333,1213,456,,216.6071429,81.42857143 +23956,399.3,1217,456,,217.3214286,81.42857143 +23957,399.3166667,1223,456,,218.3928571,81.42857143 +23958,399.3333333,1229,456,,219.4642857,81.42857143 +23959,399.35,1236,457,,220.7142857,81.60714286 +23960,399.3666667,1244,457,,222.1428571,81.60714286 +23961,399.3833333,1252,457,,223.5714286,81.60714286 +23962,399.4,1261,458,,225.1785714,81.78571429 +23963,399.4166667,1271,458,,226.9642857,81.78571429 +23964,399.4333333,1282,459,,228.9285714,81.96428571 +23965,399.45,1293,459,,230.8928571,81.96428571 +23966,399.4666667,1305,459,,233.0357143,81.96428571 +23967,399.4833333,1317,459,,235.1785714,81.96428571 +23968,399.5,1329,459,,237.3214286,81.96428571 +23969,399.5166667,1342,459,,239.6428571,81.96428571 +23970,399.5333333,1356,459,,242.1428571,81.96428571 +23971,399.55,1369,459,,244.4642857,81.96428571 +23972,399.5666667,1383,459,,246.9642857,81.96428571 +23973,399.5833333,1397,459,,249.4642857,81.96428571 +23974,399.6,1410,459,,251.7857143,81.96428571 +23975,399.6166667,1424,459,,254.2857143,81.96428571 +23976,399.6333333,1438,458,,256.7857143,81.78571429 +23977,399.65,1451,458,,259.1071429,81.78571429 +23978,399.6666667,1464,458,,261.4285714,81.78571429 +23979,399.6833333,1477,457,,263.75,81.60714286 +23980,399.7,1490,457,,266.0714286,81.60714286 +23981,399.7166667,1502,456,,268.2142857,81.42857143 +23982,399.7333333,1513,456,,270.1785714,81.42857143 +23983,399.75,1524,455,,272.1428571,81.25 +23984,399.7666667,1534,454,,273.9285714,81.07142857 +23985,399.7833333,1544,454,,275.7142857,81.07142857 +23986,399.8,1553,454,,277.3214286,81.07142857 +23987,399.8166667,1561,453,,278.75,80.89285714 +23988,399.8333333,1569,453,,280.1785714,80.89285714 +23989,399.85,1575,452,,281.25,80.71428571 +23990,399.8666667,1581,452,,282.3214286,80.71428571 +23991,399.8833333,1585,451,,283.0357143,80.53571429 +23992,399.9,1589,451,,283.75,80.53571429 +23993,399.9166667,1592,451,,284.2857143,80.53571429 +23994,399.9333333,1595,451,,284.8214286,80.53571429 +23995,399.95,1595,451,,284.8214286,80.53571429 +23996,399.9666667,1595,451,,284.8214286,80.53571429 +23997,399.9833333,1595,451,,284.8214286,80.53571429 +23998,400,1593,451,,284.4642857,80.53571429 +23999,400.0166667,1590,452,,283.9285714,80.71428571 +24000,400.0333333,1586,452,,283.2142857,80.71428571 +24001,400.05,1582,452,,282.5,80.71428571 +24002,400.0666667,1576,452,,281.4285714,80.71428571 +24003,400.0833333,1570,453,,280.3571429,80.89285714 +24004,400.1,1562,453,,278.9285714,80.89285714 +24005,400.1166667,1554,454,,277.5,81.07142857 +24006,400.1333333,1545,454,,275.8928571,81.07142857 +24007,400.15,1536,455,,274.2857143,81.25 +24008,400.1666667,1526,456,,272.5,81.42857143 +24009,400.1833333,1515,456,,270.5357143,81.42857143 +24010,400.2,1503,456,,268.3928571,81.42857143 +24011,400.2166667,1492,457,,266.4285714,81.60714286 +24012,400.2333333,1479,457,,264.1071429,81.60714286 +24013,400.25,1466,458,,261.7857143,81.78571429 +24014,400.2666667,1453,458,,259.4642857,81.78571429 +24015,400.2833333,1440,458,,257.1428571,81.78571429 +24016,400.3,1427,459,,254.8214286,81.96428571 +24017,400.3166667,1413,459,,252.3214286,81.96428571 +24018,400.3333333,1399,460,,249.8214286,82.14285714 +24019,400.35,1385,460,,247.3214286,82.14285714 +24020,400.3666667,1372,460,,245,82.14285714 +24021,400.3833333,1358,460,,242.5,82.14285714 +24022,400.4,1345,460,,240.1785714,82.14285714 +24023,400.4166667,1332,460,,237.8571429,82.14285714 +24024,400.4333333,1319,460,,235.5357143,82.14285714 +24025,400.45,1308,460,,233.5714286,82.14285714 +24026,400.4666667,1296,459,,231.4285714,81.96428571 +24027,400.4833333,1284,459,,229.2857143,81.96428571 +24028,400.5,1274,458,,227.5,81.78571429 +24029,400.5166667,1264,458,,225.7142857,81.78571429 +24030,400.5333333,1254,458,,223.9285714,81.78571429 +24031,400.55,1246,457,,222.5,81.60714286 +24032,400.5666667,1238,457,,221.0714286,81.60714286 +24033,400.5833333,1231,456,,219.8214286,81.42857143 +24034,400.6,1224,456,,218.5714286,81.42857143 +24035,400.6166667,1219,456,,217.6785714,81.42857143 +24036,400.6333333,1214,455,,216.7857143,81.25 +24037,400.65,1211,455,,216.25,81.25 +24038,400.6666667,1208,455,,215.7142857,81.25 +24039,400.6833333,1206,455,,215.3571429,81.25 +24040,400.7,1206,455,,215.3571429,81.25 +24041,400.7166667,1206,455,,215.3571429,81.25 +24042,400.7333333,1207,455,,215.5357143,81.25 +24043,400.75,1209,455,,215.8928571,81.25 +24044,400.7666667,1212,455,,216.4285714,81.25 +24045,400.7833333,1216,456,,217.1428571,81.42857143 +24046,400.8,1221,456,,218.0357143,81.42857143 +24047,400.8166667,1227,456,,219.1071429,81.42857143 +24048,400.8333333,1233,457,,220.1785714,81.60714286 +24049,400.85,1240,457,,221.4285714,81.60714286 +24050,400.8666667,1249,457,,223.0357143,81.60714286 +24051,400.8833333,1258,457,,224.6428571,81.60714286 +24052,400.9,1267,458,,226.25,81.78571429 +24053,400.9166667,1277,458,,228.0357143,81.78571429 +24054,400.9333333,1289,458,,230.1785714,81.78571429 +24055,400.95,1300,459,,232.1428571,81.96428571 +24056,400.9666667,1312,459,,234.2857143,81.96428571 +24057,400.9833333,1324,459,,236.4285714,81.96428571 +24058,401,1337,459,,238.75,81.96428571 +24059,401.0166667,1350,459,,241.0714286,81.96428571 +24060,401.0333333,1363,459,,243.3928571,81.96428571 +24061,401.05,1377,459,,245.8928571,81.96428571 +24062,401.0666667,1390,459,,248.2142857,81.96428571 +24063,401.0833333,1404,459,,250.7142857,81.96428571 +24064,401.1,1418,459,,253.2142857,81.96428571 +24065,401.1166667,1431,458,,255.5357143,81.78571429 +24066,401.1333333,1445,458,,258.0357143,81.78571429 +24067,401.15,1458,458,,260.3571429,81.78571429 +24068,401.1666667,1471,457,,262.6785714,81.60714286 +24069,401.1833333,1484,457,,265,81.60714286 +24070,401.2,1496,456,,267.1428571,81.42857143 +24071,401.2166667,1508,456,,269.2857143,81.42857143 +24072,401.2333333,1518,455,,271.0714286,81.25 +24073,401.25,1529,455,,273.0357143,81.25 +24074,401.2666667,1539,454,,274.8214286,81.07142857 +24075,401.2833333,1548,454,,276.4285714,81.07142857 +24076,401.3,1557,453,,278.0357143,80.89285714 +24077,401.3166667,1565,453,,279.4642857,80.89285714 +24078,401.3333333,1572,452,,280.7142857,80.71428571 +24079,401.35,1578,452,,281.7857143,80.71428571 +24080,401.3666667,1583,451,,282.6785714,80.53571429 +24081,401.3833333,1587,451,,283.3928571,80.53571429 +24082,401.4,1591,451,,284.1071429,80.53571429 +24083,401.4166667,1593,451,,284.4642857,80.53571429 +24084,401.4333333,1595,451,,284.8214286,80.53571429 +24085,401.45,1595,451,,284.8214286,80.53571429 +24086,401.4666667,1595,451,,284.8214286,80.53571429 +24087,401.4833333,1593,451,,284.4642857,80.53571429 +24088,401.5,1591,451,,284.1071429,80.53571429 +24089,401.5166667,1587,451,,283.3928571,80.53571429 +24090,401.5333333,1583,452,,282.6785714,80.71428571 +24091,401.55,1578,452,,281.7857143,80.71428571 +24092,401.5666667,1572,453,,280.7142857,80.89285714 +24093,401.5833333,1566,453,,279.6428571,80.89285714 +24094,401.6,1558,454,,278.2142857,81.07142857 +24095,401.6166667,1549,454,,276.6071429,81.07142857 +24096,401.6333333,1540,455,,275,81.25 +24097,401.65,1530,455,,273.2142857,81.25 +24098,401.6666667,1520,456,,271.4285714,81.42857143 +24099,401.6833333,1509,456,,269.4642857,81.42857143 +24100,401.7,1497,457,,267.3214286,81.60714286 +24101,401.7166667,1485,457,,265.1785714,81.60714286 +24102,401.7333333,1472,458,,262.8571429,81.78571429 +24103,401.75,1460,458,,260.7142857,81.78571429 +24104,401.7666667,1447,459,,258.3928571,81.96428571 +24105,401.7833333,1433,459,,255.8928571,81.96428571 +24106,401.8,1419,459,,253.3928571,81.96428571 +24107,401.8166667,1406,459,,251.0714286,81.96428571 +24108,401.8333333,1392,460,,248.5714286,82.14285714 +24109,401.85,1379,460,,246.25,82.14285714 +24110,401.8666667,1365,460,,243.75,82.14285714 +24111,401.8833333,1352,460,,241.4285714,82.14285714 +24112,401.9,1339,460,,239.1071429,82.14285714 +24113,401.9166667,1326,460,,236.7857143,82.14285714 +24114,401.9333333,1314,459,,234.6428571,81.96428571 +24115,401.95,1302,459,,232.5,81.96428571 +24116,401.9666667,1291,459,,230.5357143,81.96428571 +24117,401.9833333,1280,459,,228.5714286,81.96428571 +24118,402,1269,458,,226.6071429,81.78571429 +24119,402.0166667,1260,458,,225,81.78571429 +24120,402.0333333,1251,457,,223.3928571,81.60714286 +24121,402.05,1242,457,,221.7857143,81.60714286 +24122,402.0666667,1235,457,,220.5357143,81.60714286 +24123,402.0833333,1228,456,,219.2857143,81.42857143 +24124,402.1,1222,456,,218.2142857,81.42857143 +24125,402.1166667,1217,456,,217.3214286,81.42857143 +24126,402.1333333,1213,456,,216.6071429,81.42857143 +24127,402.15,1210,455,,216.0714286,81.25 +24128,402.1666667,1208,455,,215.7142857,81.25 +24129,402.1833333,1207,455,,215.5357143,81.25 +24130,402.2,1207,455,,215.5357143,81.25 +24131,402.2166667,1207,455,,215.5357143,81.25 +24132,402.2333333,1208,455,,215.7142857,81.25 +24133,402.25,1211,455,,216.25,81.25 +24134,402.2666667,1215,456,,216.9642857,81.42857143 +24135,402.2833333,1219,456,,217.6785714,81.42857143 +24136,402.3,1225,456,,218.75,81.42857143 +24137,402.3166667,1231,456,,219.8214286,81.42857143 +24138,402.3333333,1238,457,,221.0714286,81.60714286 +24139,402.35,1246,457,,222.5,81.60714286 +24140,402.3666667,1254,458,,223.9285714,81.78571429 +24141,402.3833333,1263,458,,225.5357143,81.78571429 +24142,402.4,1273,458,,227.3214286,81.78571429 +24143,402.4166667,1284,459,,229.2857143,81.96428571 +24144,402.4333333,1295,459,,231.25,81.96428571 +24145,402.45,1307,459,,233.3928571,81.96428571 +24146,402.4666667,1319,459,,235.5357143,81.96428571 +24147,402.4833333,1331,459,,237.6785714,81.96428571 +24148,402.5,1344,459,,240,81.96428571 +24149,402.5166667,1357,459,,242.3214286,81.96428571 +24150,402.5333333,1370,459,,244.6428571,81.96428571 +24151,402.55,1384,459,,247.1428571,81.96428571 +24152,402.5666667,1398,459,,249.6428571,81.96428571 +24153,402.5833333,1411,459,,251.9642857,81.96428571 +24154,402.6,1425,459,,254.4642857,81.96428571 +24155,402.6166667,1438,458,,256.7857143,81.78571429 +24156,402.6333333,1451,458,,259.1071429,81.78571429 +24157,402.65,1464,458,,261.4285714,81.78571429 +24158,402.6666667,1477,457,,263.75,81.60714286 +24159,402.6833333,1490,457,,266.0714286,81.60714286 +24160,402.7,1501,456,,268.0357143,81.42857143 +24161,402.7166667,1513,456,,270.1785714,81.42857143 +24162,402.7333333,1524,455,,272.1428571,81.25 +24163,402.75,1534,455,,273.9285714,81.25 +24164,402.7666667,1543,454,,275.5357143,81.07142857 +24165,402.7833333,1552,454,,277.1428571,81.07142857 +24166,402.8,1560,453,,278.5714286,80.89285714 +24167,402.8166667,1567,453,,279.8214286,80.89285714 +24168,402.8333333,1574,453,,281.0714286,80.89285714 +24169,402.85,1580,452,,282.1428571,80.71428571 +24170,402.8666667,1584,452,,282.8571429,80.71428571 +24171,402.8833333,1588,452,,283.5714286,80.71428571 +24172,402.9,1591,451,,284.1071429,80.53571429 +24173,402.9166667,1593,451,,284.4642857,80.53571429 +24174,402.9333333,1593,451,,284.4642857,80.53571429 +24175,402.95,1593,451,,284.4642857,80.53571429 +24176,402.9666667,1593,451,,284.4642857,80.53571429 +24177,402.9833333,1591,451,,284.1071429,80.53571429 +24178,403,1588,452,,283.5714286,80.71428571 +24179,403.0166667,1585,452,,283.0357143,80.71428571 +24180,403.0333333,1580,452,,282.1428571,80.71428571 +24181,403.05,1574,452,,281.0714286,80.71428571 +24182,403.0666667,1568,453,,280,80.89285714 +24183,403.0833333,1560,454,,278.5714286,81.07142857 +24184,403.1,1552,454,,277.1428571,81.07142857 +24185,403.1166667,1543,454,,275.5357143,81.07142857 +24186,403.1333333,1534,455,,273.9285714,81.25 +24187,403.15,1524,455,,272.1428571,81.25 +24188,403.1666667,1513,456,,270.1785714,81.42857143 +24189,403.1833333,1502,456,,268.2142857,81.42857143 +24190,403.2,1490,457,,266.0714286,81.60714286 +24191,403.2166667,1478,457,,263.9285714,81.60714286 +24192,403.2333333,1465,458,,261.6071429,81.78571429 +24193,403.25,1452,458,,259.2857143,81.78571429 +24194,403.2666667,1439,459,,256.9642857,81.96428571 +24195,403.2833333,1426,459,,254.6428571,81.96428571 +24196,403.3,1412,459,,252.1428571,81.96428571 +24197,403.3166667,1398,459,,249.6428571,81.96428571 +24198,403.3333333,1385,460,,247.3214286,82.14285714 +24199,403.35,1371,460,,244.8214286,82.14285714 +24200,403.3666667,1358,460,,242.5,82.14285714 +24201,403.3833333,1345,460,,240.1785714,82.14285714 +24202,403.4,1332,460,,237.8571429,82.14285714 +24203,403.4166667,1319,460,,235.5357143,82.14285714 +24204,403.4333333,1307,459,,233.3928571,81.96428571 +24205,403.45,1295,459,,231.25,81.96428571 +24206,403.4666667,1284,459,,229.2857143,81.96428571 +24207,403.4833333,1274,458,,227.5,81.78571429 +24208,403.5,1264,458,,225.7142857,81.78571429 +24209,403.5166667,1255,458,,224.1071429,81.78571429 +24210,403.5333333,1246,457,,222.5,81.60714286 +24211,403.55,1238,457,,221.0714286,81.60714286 +24212,403.5666667,1231,457,,219.8214286,81.60714286 +24213,403.5833333,1225,457,,218.75,81.60714286 +24214,403.6,1220,456,,217.8571429,81.42857143 +24215,403.6333333,1215,456,,216.9642857,81.42857143 +24216,403.65,1212,456,,216.4285714,81.42857143 +24217,403.6666667,1209,456,,215.8928571,81.42857143 +24218,403.6833333,1208,456,,215.7142857,81.42857143 +24219,403.7,1208,456,,215.7142857,81.42857143 +24220,403.7166667,1208,456,,215.7142857,81.42857143 +24221,403.7333333,1208,456,,215.7142857,81.42857143 +24222,403.75,1210,456,,216.0714286,81.42857143 +24223,403.7666667,1213,456,,216.6071429,81.42857143 +24224,403.7833333,1218,456,,217.5,81.42857143 +24225,403.8,1222,456,,218.2142857,81.42857143 +24226,403.8166667,1228,456,,219.2857143,81.42857143 +24227,403.8333333,1234,456,,220.3571429,81.42857143 +24228,403.85,1242,457,,221.7857143,81.60714286 +24229,403.8666667,1250,457,,223.2142857,81.60714286 +24230,403.8833333,1259,457,,224.8214286,81.60714286 +24231,403.9,1268,458,,226.4285714,81.78571429 +24232,403.9166667,1279,458,,228.3928571,81.78571429 +24233,403.9333333,1290,458,,230.3571429,81.78571429 +24234,403.95,1301,459,,232.3214286,81.96428571 +24235,403.9666667,1313,459,,234.4642857,81.96428571 +24236,403.9833333,1325,459,,236.6071429,81.96428571 +24237,404,1338,459,,238.9285714,81.96428571 +24238,404.0166667,1351,459,,241.25,81.96428571 +24239,404.0333333,1364,459,,243.5714286,81.96428571 +24240,404.05,1378,459,,246.0714286,81.96428571 +24241,404.0666667,1391,459,,248.3928571,81.96428571 +24242,404.0833333,1405,459,,250.8928571,81.96428571 +24243,404.1,1418,459,,253.2142857,81.96428571 +24244,404.1166667,1431,458,,255.5357143,81.78571429 +24245,404.1333333,1445,458,,258.0357143,81.78571429 +24246,404.15,1458,458,,260.3571429,81.78571429 +24247,404.1666667,1471,457,,262.6785714,81.60714286 +24248,404.1833333,1483,456,,264.8214286,81.42857143 +24249,404.2,1496,456,,267.1428571,81.42857143 +24250,404.2166667,1507,456,,269.1071429,81.42857143 +24251,404.2333333,1518,455,,271.0714286,81.25 +24252,404.25,1528,455,,272.8571429,81.25 +24253,404.2666667,1538,454,,274.6428571,81.07142857 +24254,404.2833333,1548,454,,276.4285714,81.07142857 +24255,404.3,1556,453,,277.8571429,80.89285714 +24256,404.3166667,1563,453,,279.1071429,80.89285714 +24257,404.3333333,1570,453,,280.3571429,80.89285714 +24258,404.35,1576,452,,281.4285714,80.71428571 +24259,404.3666667,1581,452,,282.3214286,80.71428571 +24260,404.3833333,1586,451,,283.2142857,80.53571429 +24261,404.4,1589,451,,283.75,80.53571429 +24262,404.4166667,1591,451,,284.1071429,80.53571429 +24263,404.4333333,1593,451,,284.4642857,80.53571429 +24264,404.45,1593,451,,284.4642857,80.53571429 +24265,404.4666667,1593,451,,284.4642857,80.53571429 +24266,404.4833333,1592,451,,284.2857143,80.53571429 +24267,404.5,1589,452,,283.75,80.71428571 +24268,404.5166667,1586,452,,283.2142857,80.71428571 +24269,404.5333333,1581,452,,282.3214286,80.71428571 +24270,404.55,1576,452,,281.4285714,80.71428571 +24271,404.5666667,1570,453,,280.3571429,80.89285714 +24272,404.5833333,1563,453,,279.1071429,80.89285714 +24273,404.6,1556,454,,277.8571429,81.07142857 +24274,404.6166667,1547,454,,276.25,81.07142857 +24275,404.6333333,1538,454,,274.6428571,81.07142857 +24276,404.65,1528,455,,272.8571429,81.25 +24277,404.6666667,1518,456,,271.0714286,81.42857143 +24278,404.6833333,1507,456,,269.1071429,81.42857143 +24279,404.7,1495,457,,266.9642857,81.60714286 +24280,404.7166667,1483,457,,264.8214286,81.60714286 +24281,404.7333333,1471,458,,262.6785714,81.78571429 +24282,404.75,1458,458,,260.3571429,81.78571429 +24283,404.7666667,1445,458,,258.0357143,81.78571429 +24284,404.7833333,1432,458,,255.7142857,81.78571429 +24285,404.8,1418,459,,253.2142857,81.96428571 +24286,404.8166667,1405,459,,250.8928571,81.96428571 +24287,404.8333333,1392,459,,248.5714286,81.96428571 +24288,404.85,1378,460,,246.0714286,82.14285714 +24289,404.8666667,1364,460,,243.5714286,82.14285714 +24290,404.8833333,1351,460,,241.25,82.14285714 +24291,404.9,1338,460,,238.9285714,82.14285714 +24292,404.9166667,1326,460,,236.7857143,82.14285714 +24293,404.9333333,1314,459,,234.6428571,81.96428571 +24294,404.95,1302,459,,232.5,81.96428571 +24295,404.9666667,1290,459,,230.3571429,81.96428571 +24296,404.9833333,1280,458,,228.5714286,81.78571429 +24297,405,1269,458,,226.6071429,81.78571429 +24298,405.0166667,1260,458,,225,81.78571429 +24299,405.0333333,1251,457,,223.3928571,81.60714286 +24300,405.05,1243,457,,221.9642857,81.60714286 +24301,405.0666667,1236,456,,220.7142857,81.42857143 +24302,405.0833333,1229,456,,219.4642857,81.42857143 +24303,405.1,1223,456,,218.3928571,81.42857143 +24304,405.1166667,1218,456,,217.5,81.42857143 +24305,405.1333333,1214,455,,216.7857143,81.25 +24306,405.15,1211,455,,216.25,81.25 +24307,405.1666667,1209,455,,215.8928571,81.25 +24308,405.1833333,1208,455,,215.7142857,81.25 +24309,405.2,1208,455,,215.7142857,81.25 +24310,405.2166667,1208,455,,215.7142857,81.25 +24311,405.2333333,1210,455,,216.0714286,81.25 +24312,405.25,1213,456,,216.6071429,81.42857143 +24313,405.2666667,1217,456,,217.3214286,81.42857143 +24314,405.2833333,1221,456,,218.0357143,81.42857143 +24315,405.3,1226,456,,218.9285714,81.42857143 +24316,405.3166667,1232,456,,220,81.42857143 +24317,405.3333333,1239,456,,221.25,81.42857143 +24318,405.35,1247,457,,222.6785714,81.60714286 +24319,405.3666667,1255,457,,224.1071429,81.60714286 +24320,405.3833333,1264,457,,225.7142857,81.60714286 +24321,405.4,1274,458,,227.5,81.78571429 +24322,405.4166667,1285,458,,229.4642857,81.78571429 +24323,405.4333333,1296,459,,231.4285714,81.96428571 +24324,405.45,1308,459,,233.5714286,81.96428571 +24325,405.4666667,1320,459,,235.7142857,81.96428571 +24326,405.4833333,1332,459,,237.8571429,81.96428571 +24327,405.5,1345,459,,240.1785714,81.96428571 +24328,405.5166667,1358,459,,242.5,81.96428571 +24329,405.5333333,1371,459,,244.8214286,81.96428571 +24330,405.55,1384,459,,247.1428571,81.96428571 +24331,405.5666667,1398,459,,249.6428571,81.96428571 +24332,405.5833333,1411,459,,251.9642857,81.96428571 +24333,405.6,1425,458,,254.4642857,81.78571429 +24334,405.6166667,1438,458,,256.7857143,81.78571429 +24335,405.6333333,1451,458,,259.1071429,81.78571429 +24336,405.65,1465,457,,261.6071429,81.60714286 +24337,405.6666667,1477,457,,263.75,81.60714286 +24338,405.6833333,1489,457,,265.8928571,81.60714286 +24339,405.7,1501,456,,268.0357143,81.42857143 +24340,405.7166667,1512,456,,270,81.42857143 +24341,405.7333333,1523,455,,271.9642857,81.25 +24342,405.75,1533,455,,273.75,81.25 +24343,405.7666667,1542,454,,275.3571429,81.07142857 +24344,405.7833333,1551,454,,276.9642857,81.07142857 +24345,405.8,1559,453,,278.3928571,80.89285714 +24346,405.8166667,1566,453,,279.6428571,80.89285714 +24347,405.8333333,1573,452,,280.8928571,80.71428571 +24348,405.85,1578,452,,281.7857143,80.71428571 +24349,405.8666667,1583,452,,282.6785714,80.71428571 +24350,405.8833333,1587,452,,283.3928571,80.71428571 +24351,405.9,1589,451,,283.75,80.53571429 +24352,405.9166667,1591,451,,284.1071429,80.53571429 +24353,405.9333333,1591,451,,284.1071429,80.53571429 +24354,405.95,1591,451,,284.1071429,80.53571429 +24355,405.9666667,1591,451,,284.1071429,80.53571429 +24356,405.9833333,1589,452,,283.75,80.71428571 +24357,406,1586,452,,283.2142857,80.71428571 +24358,406.0166667,1582,452,,282.5,80.71428571 +24359,406.0333333,1578,452,,281.7857143,80.71428571 +24360,406.05,1572,453,,280.7142857,80.89285714 +24361,406.0666667,1566,453,,279.6428571,80.89285714 +24362,406.0833333,1558,454,,278.2142857,81.07142857 +24363,406.1,1550,454,,276.7857143,81.07142857 +24364,406.1166667,1542,455,,275.3571429,81.25 +24365,406.1333333,1532,455,,273.5714286,81.25 +24366,406.15,1522,455,,271.7857143,81.25 +24367,406.1666667,1511,456,,269.8214286,81.42857143 +24368,406.1833333,1500,457,,267.8571429,81.60714286 +24369,406.2,1488,457,,265.7142857,81.60714286 +24370,406.2166667,1476,458,,263.5714286,81.78571429 +24371,406.2333333,1464,458,,261.4285714,81.78571429 +24372,406.25,1451,458,,259.1071429,81.78571429 +24373,406.2666667,1438,459,,256.7857143,81.96428571 +24374,406.2833333,1424,459,,254.2857143,81.96428571 +24375,406.3,1411,459,,251.9642857,81.96428571 +24376,406.3166667,1398,459,,249.6428571,81.96428571 +24377,406.3333333,1384,460,,247.1428571,82.14285714 +24378,406.35,1371,460,,244.8214286,82.14285714 +24379,406.3666667,1358,460,,242.5,82.14285714 +24380,406.3833333,1344,460,,240,82.14285714 +24381,406.4,1332,460,,237.8571429,82.14285714 +24382,406.4166667,1320,459,,235.7142857,81.96428571 +24383,406.4333333,1308,459,,233.5714286,81.96428571 +24384,406.45,1296,459,,231.4285714,81.96428571 +24385,406.4666667,1285,459,,229.4642857,81.96428571 +24386,406.4833333,1275,458,,227.6785714,81.78571429 +24387,406.5,1265,458,,225.8928571,81.78571429 +24388,406.5166667,1256,458,,224.2857143,81.78571429 +24389,406.5333333,1247,457,,222.6785714,81.60714286 +24390,406.55,1240,457,,221.4285714,81.60714286 +24391,406.5666667,1232,456,,220,81.42857143 +24392,406.5833333,1226,456,,218.9285714,81.42857143 +24393,406.6,1221,456,,218.0357143,81.42857143 +24394,406.6166667,1217,456,,217.3214286,81.42857143 +24395,406.6333333,1213,455,,216.6071429,81.25 +24396,406.65,1211,455,,216.25,81.25 +24397,406.6666667,1209,455,,215.8928571,81.25 +24398,406.6833333,1209,455,,215.8928571,81.25 +24399,406.7,1209,455,,215.8928571,81.25 +24400,406.7166667,1210,455,,216.0714286,81.25 +24401,406.7333333,1212,455,,216.4285714,81.25 +24402,406.75,1215,456,,216.9642857,81.42857143 +24403,406.7666667,1219,456,,217.6785714,81.42857143 +24404,406.7833333,1223,456,,218.3928571,81.42857143 +24405,406.8,1229,456,,219.4642857,81.42857143 +24406,406.8166667,1236,457,,220.7142857,81.60714286 +24407,406.8333333,1243,457,,221.9642857,81.60714286 +24408,406.85,1252,457,,223.5714286,81.60714286 +24409,406.8666667,1260,458,,225,81.78571429 +24410,406.8833333,1270,458,,226.7857143,81.78571429 +24411,406.9,1280,458,,228.5714286,81.78571429 +24412,406.9166667,1291,458,,230.5357143,81.78571429 +24413,406.9333333,1302,459,,232.5,81.96428571 +24414,406.95,1314,459,,234.6428571,81.96428571 +24415,406.9666667,1326,459,,236.7857143,81.96428571 +24416,406.9833333,1338,459,,238.9285714,81.96428571 +24417,407,1351,459,,241.25,81.96428571 +24418,407.0166667,1364,459,,243.5714286,81.96428571 +24419,407.0333333,1378,459,,246.0714286,81.96428571 +24420,407.05,1391,459,,248.3928571,81.96428571 +24421,407.0666667,1404,459,,250.7142857,81.96428571 +24422,407.0833333,1418,459,,253.2142857,81.96428571 +24423,407.1,1432,458,,255.7142857,81.78571429 +24424,407.1166667,1445,458,,258.0357143,81.78571429 +24425,407.1333333,1458,458,,260.3571429,81.78571429 +24426,407.15,1470,458,,262.5,81.78571429 +24427,407.1666667,1483,457,,264.8214286,81.60714286 +24428,407.1833333,1495,457,,266.9642857,81.60714286 +24429,407.2,1506,456,,268.9285714,81.42857143 +24430,407.2166667,1517,455,,270.8928571,81.25 +24431,407.2333333,1527,455,,272.6785714,81.25 +24432,407.25,1537,454,,274.4642857,81.07142857 +24433,407.2666667,1546,454,,276.0714286,81.07142857 +24434,407.2833333,1554,453,,277.5,80.89285714 +24435,407.3,1562,453,,278.9285714,80.89285714 +24436,407.3166667,1569,452,,280.1785714,80.71428571 +24437,407.3333333,1575,452,,281.25,80.71428571 +24438,407.35,1579,452,,281.9642857,80.71428571 +24439,407.3666667,1584,452,,282.8571429,80.71428571 +24440,407.3833333,1587,452,,283.3928571,80.71428571 +24441,407.4,1589,451,,283.75,80.53571429 +24442,407.4166667,1591,451,,284.1071429,80.53571429 +24443,407.4333333,1591,451,,284.1071429,80.53571429 +24444,407.45,1591,451,,284.1071429,80.53571429 +24445,407.4666667,1589,452,,283.75,80.71428571 +24446,407.4833333,1587,452,,283.3928571,80.71428571 +24447,407.5,1583,452,,282.6785714,80.71428571 +24448,407.5166667,1579,452,,281.9642857,80.71428571 +24449,407.5333333,1574,453,,281.0714286,80.89285714 +24450,407.55,1568,453,,280,80.89285714 +24451,407.5666667,1561,453,,278.75,80.89285714 +24452,407.5833333,1554,454,,277.5,81.07142857 +24453,407.6,1545,454,,275.8928571,81.07142857 +24454,407.6166667,1536,455,,274.2857143,81.25 +24455,407.6333333,1527,456,,272.6785714,81.42857143 +24456,407.65,1516,456,,270.7142857,81.42857143 +24457,407.6666667,1505,456,,268.75,81.42857143 +24458,407.6833333,1494,457,,266.7857143,81.60714286 +24459,407.7,1482,457,,264.6428571,81.60714286 +24460,407.7166667,1469,458,,262.3214286,81.78571429 +24461,407.7333333,1457,458,,260.1785714,81.78571429 +24462,407.75,1444,458,,257.8571429,81.78571429 +24463,407.7666667,1431,459,,255.5357143,81.96428571 +24464,407.7833333,1417,459,,253.0357143,81.96428571 +24465,407.8,1404,460,,250.7142857,82.14285714 +24466,407.8166667,1391,460,,248.3928571,82.14285714 +24467,407.8333333,1377,460,,245.8928571,82.14285714 +24468,407.85,1364,460,,243.5714286,82.14285714 +24469,407.8666667,1351,460,,241.25,82.14285714 +24470,407.8833333,1338,460,,238.9285714,82.14285714 +24471,407.9,1326,460,,236.7857143,82.14285714 +24472,407.9166667,1314,459,,234.6428571,81.96428571 +24473,407.9333333,1302,459,,232.5,81.96428571 +24474,407.95,1291,459,,230.5357143,81.96428571 +24475,407.9666667,1280,459,,228.5714286,81.96428571 +24476,407.9833333,1270,458,,226.7857143,81.78571429 +24477,408,1261,458,,225.1785714,81.78571429 +24478,408.0166667,1252,458,,223.5714286,81.78571429 +24479,408.0333333,1244,457,,222.1428571,81.60714286 +24480,408.05,1236,457,,220.7142857,81.60714286 +24481,408.0666667,1230,456,,219.6428571,81.42857143 +24482,408.0833333,1224,456,,218.5714286,81.42857143 +24483,408.1,1219,456,,217.6785714,81.42857143 +24484,408.1166667,1216,456,,217.1428571,81.42857143 +24485,408.1333333,1212,455,,216.4285714,81.25 +24486,408.15,1210,455,,216.0714286,81.25 +24487,408.1666667,1210,455,,216.0714286,81.25 +24488,408.1833333,1210,455,,216.0714286,81.25 +24489,408.2,1210,455,,216.0714286,81.25 +24490,408.2166667,1211,455,,216.25,81.25 +24491,408.2333333,1214,455,,216.7857143,81.25 +24492,408.25,1218,456,,217.5,81.42857143 +24493,408.2666667,1222,456,,218.2142857,81.42857143 +24494,408.2833333,1227,456,,219.1071429,81.42857143 +24495,408.3,1233,456,,220.1785714,81.42857143 +24496,408.3166667,1240,456,,221.4285714,81.42857143 +24497,408.3333333,1248,456,,222.8571429,81.42857143 +24498,408.35,1256,457,,224.2857143,81.60714286 +24499,408.3666667,1266,457,,226.0714286,81.60714286 +24500,408.3833333,1275,458,,227.6785714,81.78571429 +24501,408.4,1286,458,,229.6428571,81.78571429 +24502,408.4166667,1297,459,,231.6071429,81.96428571 +24503,408.4333333,1308,459,,233.5714286,81.96428571 +24504,408.45,1320,459,,235.7142857,81.96428571 +24505,408.4666667,1333,459,,238.0357143,81.96428571 +24506,408.4833333,1345,459,,240.1785714,81.96428571 +24507,408.5,1358,459,,242.5,81.96428571 +24508,408.5166667,1371,459,,244.8214286,81.96428571 +24509,408.5333333,1385,459,,247.3214286,81.96428571 +24510,408.55,1398,458,,249.6428571,81.78571429 +24511,408.5666667,1412,458,,252.1428571,81.78571429 +24512,408.5833333,1425,458,,254.4642857,81.78571429 +24513,408.6,1438,458,,256.7857143,81.78571429 +24514,408.6166667,1452,458,,259.2857143,81.78571429 +24515,408.6333333,1464,457,,261.4285714,81.60714286 +24516,408.65,1477,457,,263.75,81.60714286 +24517,408.6666667,1489,456,,265.8928571,81.42857143 +24518,408.6833333,1501,456,,268.0357143,81.42857143 +24519,408.7,1512,455,,270,81.25 +24520,408.7166667,1522,455,,271.7857143,81.25 +24521,408.7333333,1532,455,,273.5714286,81.25 +24522,408.75,1542,454,,275.3571429,81.07142857 +24523,408.7666667,1550,453,,276.7857143,80.89285714 +24524,408.7833333,1558,453,,278.2142857,80.89285714 +24525,408.8,1565,453,,279.4642857,80.89285714 +24526,408.8166667,1572,452,,280.7142857,80.71428571 +24527,408.8333333,1577,452,,281.6071429,80.71428571 +24528,408.85,1582,452,,282.5,80.71428571 +24529,408.8666667,1585,451,,283.0357143,80.53571429 +24530,408.8833333,1588,451,,283.5714286,80.53571429 +24531,408.9,1590,451,,283.9285714,80.53571429 +24532,408.9166667,1590,451,,283.9285714,80.53571429 +24533,408.9333333,1590,451,,283.9285714,80.53571429 +24534,408.95,1590,451,,283.9285714,80.53571429 +24535,408.9666667,1588,452,,283.5714286,80.71428571 +24536,408.9833333,1585,452,,283.0357143,80.71428571 +24537,409,1581,452,,282.3214286,80.71428571 +24538,409.0166667,1576,452,,281.4285714,80.71428571 +24539,409.0333333,1571,453,,280.5357143,80.89285714 +24540,409.05,1565,453,,279.4642857,80.89285714 +24541,409.0666667,1558,454,,278.2142857,81.07142857 +24542,409.0833333,1549,454,,276.6071429,81.07142857 +24543,409.1,1541,455,,275.1785714,81.25 +24544,409.1166667,1531,455,,273.3928571,81.25 +24545,409.1333333,1521,456,,271.6071429,81.42857143 +24546,409.15,1511,456,,269.8214286,81.42857143 +24547,409.1666667,1499,457,,267.6785714,81.60714286 +24548,409.1833333,1488,457,,265.7142857,81.60714286 +24549,409.2,1476,457,,263.5714286,81.60714286 +24550,409.2166667,1464,458,,261.4285714,81.78571429 +24551,409.2333333,1451,458,,259.1071429,81.78571429 +24552,409.25,1438,459,,256.7857143,81.96428571 +24553,409.2666667,1424,459,,254.2857143,81.96428571 +24554,409.2833333,1411,459,,251.9642857,81.96428571 +24555,409.3,1398,460,,249.6428571,82.14285714 +24556,409.3166667,1385,460,,247.3214286,82.14285714 +24557,409.3333333,1371,460,,244.8214286,82.14285714 +24558,409.35,1358,460,,242.5,82.14285714 +24559,409.3666667,1345,460,,240.1785714,82.14285714 +24560,409.3833333,1333,460,,238.0357143,82.14285714 +24561,409.4,1320,460,,235.7142857,82.14285714 +24562,409.4166667,1308,459,,233.5714286,81.96428571 +24563,409.4333333,1297,459,,231.6071429,81.96428571 +24564,409.45,1286,459,,229.6428571,81.96428571 +24565,409.4666667,1276,458,,227.8571429,81.78571429 +24566,409.4833333,1266,458,,226.0714286,81.78571429 +24567,409.5,1257,458,,224.4642857,81.78571429 +24568,409.5166667,1248,457,,222.8571429,81.60714286 +24569,409.5333333,1241,457,,221.6071429,81.60714286 +24570,409.55,1234,457,,220.3571429,81.60714286 +24571,409.5666667,1228,456,,219.2857143,81.42857143 +24572,409.5833333,1223,456,,218.3928571,81.42857143 +24573,409.6,1218,456,,217.5,81.42857143 +24574,409.6166667,1215,456,,216.9642857,81.42857143 +24575,409.6333333,1212,456,,216.4285714,81.42857143 +24576,409.65,1210,456,,216.0714286,81.42857143 +24577,409.6666667,1210,456,,216.0714286,81.42857143 +24578,409.6833333,1210,456,,216.0714286,81.42857143 +24579,409.7,1211,456,,216.25,81.42857143 +24580,409.7166667,1213,455,,216.6071429,81.25 +24581,409.7333333,1216,456,,217.1428571,81.42857143 +24582,409.75,1220,456,,217.8571429,81.42857143 +24583,409.7666667,1225,456,,218.75,81.42857143 +24584,409.7833333,1231,456,,219.8214286,81.42857143 +24585,409.8,1238,456,,221.0714286,81.42857143 +24586,409.8166667,1245,457,,222.3214286,81.60714286 +24587,409.8333333,1253,457,,223.75,81.60714286 +24588,409.85,1262,457,,225.3571429,81.60714286 +24589,409.8666667,1271,458,,226.9642857,81.78571429 +24590,409.8833333,1281,458,,228.75,81.78571429 +24591,409.9,1292,458,,230.7142857,81.78571429 +24592,409.9166667,1303,458,,232.6785714,81.78571429 +24593,409.9333333,1315,459,,234.8214286,81.96428571 +24594,409.95,1327,459,,236.9642857,81.96428571 +24595,409.9666667,1340,459,,239.2857143,81.96428571 +24596,409.9833333,1353,459,,241.6071429,81.96428571 +24597,410,1366,459,,243.9285714,81.96428571 +24598,410.0166667,1379,459,,246.25,81.96428571 +24599,410.0333333,1392,459,,248.5714286,81.96428571 +24600,410.05,1405,458,,250.8928571,81.78571429 +24601,410.0666667,1419,458,,253.3928571,81.78571429 +24602,410.0833333,1432,458,,255.7142857,81.78571429 +24603,410.1,1445,458,,258.0357143,81.78571429 +24604,410.1166667,1458,457,,260.3571429,81.60714286 +24605,410.1333333,1471,457,,262.6785714,81.60714286 +24606,410.15,1483,457,,264.8214286,81.60714286 +24607,410.1666667,1495,456,,266.9642857,81.42857143 +24608,410.1833333,1506,456,,268.9285714,81.42857143 +24609,410.2,1517,455,,270.8928571,81.25 +24610,410.2166667,1527,454,,272.6785714,81.07142857 +24611,410.2333333,1537,454,,274.4642857,81.07142857 +24612,410.25,1546,454,,276.0714286,81.07142857 +24613,410.2666667,1554,453,,277.5,80.89285714 +24614,410.2833333,1562,453,,278.9285714,80.89285714 +24615,410.3,1568,452,,280,80.71428571 +24616,410.3166667,1574,452,,281.0714286,80.71428571 +24617,410.3333333,1579,452,,281.9642857,80.71428571 +24618,410.35,1584,451,,282.8571429,80.53571429 +24619,410.3666667,1587,451,,283.3928571,80.53571429 +24620,410.3833333,1589,451,,283.75,80.53571429 +24621,410.4,1590,451,,283.9285714,80.53571429 +24622,410.4166667,1590,451,,283.9285714,80.53571429 +24623,410.4333333,1590,451,,283.9285714,80.53571429 +24624,410.45,1589,451,,283.75,80.53571429 +24625,410.4666667,1586,452,,283.2142857,80.71428571 +24626,410.4833333,1583,452,,282.6785714,80.71428571 +24627,410.5,1579,452,,281.9642857,80.71428571 +24628,410.5166667,1574,453,,281.0714286,80.89285714 +24629,410.5333333,1568,453,,280,80.89285714 +24630,410.55,1561,453,,278.75,80.89285714 +24631,410.5666667,1553,454,,277.3214286,81.07142857 +24632,410.5833333,1545,454,,275.8928571,81.07142857 +24633,410.6,1536,455,,274.2857143,81.25 +24634,410.6166667,1526,455,,272.5,81.25 +24635,410.6333333,1516,456,,270.7142857,81.42857143 +24636,410.65,1505,456,,268.75,81.42857143 +24637,410.6666667,1494,457,,266.7857143,81.60714286 +24638,410.6833333,1482,457,,264.6428571,81.60714286 +24639,410.7,1470,458,,262.5,81.78571429 +24640,410.7166667,1457,458,,260.1785714,81.78571429 +24641,410.7333333,1444,459,,257.8571429,81.96428571 +24642,410.75,1431,459,,255.5357143,81.96428571 +24643,410.7666667,1418,459,,253.2142857,81.96428571 +24644,410.7833333,1404,459,,250.7142857,81.96428571 +24645,410.8,1391,460,,248.3928571,82.14285714 +24646,410.8166667,1378,460,,246.0714286,82.14285714 +24647,410.8333333,1365,460,,243.75,82.14285714 +24648,410.85,1352,460,,241.4285714,82.14285714 +24649,410.8666667,1339,460,,239.1071429,82.14285714 +24650,410.8833333,1327,460,,236.9642857,82.14285714 +24651,410.9,1315,459,,234.8214286,81.96428571 +24652,410.9166667,1303,459,,232.6785714,81.96428571 +24653,410.9333333,1292,459,,230.7142857,81.96428571 +24654,410.95,1281,458,,228.75,81.78571429 +24655,410.9666667,1271,458,,226.9642857,81.78571429 +24656,410.9833333,1262,458,,225.3571429,81.78571429 +24657,411,1253,457,,223.75,81.60714286 +24658,411.0166667,1245,457,,222.3214286,81.60714286 +24659,411.0333333,1238,456,,221.0714286,81.42857143 +24660,411.05,1231,456,,219.8214286,81.42857143 +24661,411.0666667,1226,456,,218.9285714,81.42857143 +24662,411.0833333,1221,456,,218.0357143,81.42857143 +24663,411.1,1217,455,,217.3214286,81.25 +24664,411.1166667,1214,455,,216.7857143,81.25 +24665,411.1333333,1212,455,,216.4285714,81.25 +24666,411.15,1211,455,,216.25,81.25 +24667,411.1666667,1211,455,,216.25,81.25 +24668,411.1833333,1211,455,,216.25,81.25 +24669,411.2,1213,455,,216.6071429,81.25 +24670,411.2166667,1216,455,,217.1428571,81.25 +24671,411.2333333,1219,455,,217.6785714,81.25 +24672,411.25,1224,456,,218.5714286,81.42857143 +24673,411.2666667,1229,456,,219.4642857,81.42857143 +24674,411.2833333,1235,456,,220.5357143,81.42857143 +24675,411.3,1242,456,,221.7857143,81.42857143 +24676,411.3166667,1250,457,,223.2142857,81.60714286 +24677,411.3333333,1258,457,,224.6428571,81.60714286 +24678,411.35,1267,457,,226.25,81.60714286 +24679,411.3666667,1277,457,,228.0357143,81.60714286 +24680,411.3833333,1287,458,,229.8214286,81.78571429 +24681,411.4,1298,458,,231.7857143,81.78571429 +24682,411.4166667,1310,458,,233.9285714,81.78571429 +24683,411.4333333,1322,458,,236.0714286,81.78571429 +24684,411.45,1334,459,,238.2142857,81.96428571 +24685,411.4666667,1347,459,,240.5357143,81.96428571 +24686,411.4833333,1360,458,,242.8571429,81.78571429 +24687,411.5,1373,458,,245.1785714,81.78571429 +24688,411.5166667,1386,458,,247.5,81.78571429 +24689,411.5333333,1400,458,,250,81.78571429 +24690,411.55,1413,458,,252.3214286,81.78571429 +24691,411.5666667,1426,458,,254.6428571,81.78571429 +24692,411.5833333,1439,457,,256.9642857,81.60714286 +24693,411.6,1452,457,,259.2857143,81.60714286 +24694,411.6166667,1465,457,,261.6071429,81.60714286 +24695,411.6333333,1477,456,,263.75,81.42857143 +24696,411.65,1489,456,,265.8928571,81.42857143 +24697,411.6666667,1501,456,,268.0357143,81.42857143 +24698,411.6833333,1512,455,,270,81.25 +24699,411.7,1523,454,,271.9642857,81.07142857 +24700,411.7166667,1532,454,,273.5714286,81.07142857 +24701,411.7333333,1542,454,,275.3571429,81.07142857 +24702,411.75,1550,453,,276.7857143,80.89285714 +24703,411.7666667,1558,453,,278.2142857,80.89285714 +24704,411.7833333,1565,452,,279.4642857,80.71428571 +24705,411.8,1571,452,,280.5357143,80.71428571 +24706,411.8166667,1577,452,,281.6071429,80.71428571 +24707,411.8333333,1581,451,,282.3214286,80.53571429 +24708,411.85,1585,451,,283.0357143,80.53571429 +24709,411.8666667,1588,451,,283.5714286,80.53571429 +24710,411.8833333,1589,451,,283.75,80.53571429 +24711,411.9,1589,451,,283.75,80.53571429 +24712,411.9166667,1589,451,,283.75,80.53571429 +24713,411.9333333,1589,451,,283.75,80.53571429 +24714,411.95,1587,451,,283.3928571,80.53571429 +24715,411.9666667,1584,451,,282.8571429,80.53571429 +24716,411.9833333,1581,452,,282.3214286,80.71428571 +24717,412,1576,452,,281.4285714,80.71428571 +24718,412.0166667,1571,453,,280.5357143,80.89285714 +24719,412.0333333,1564,453,,279.2857143,80.89285714 +24720,412.05,1557,453,,278.0357143,80.89285714 +24721,412.0666667,1549,454,,276.6071429,81.07142857 +24722,412.0833333,1540,454,,275,81.07142857 +24723,412.1,1531,455,,273.3928571,81.25 +24724,412.1166667,1521,456,,271.6071429,81.42857143 +24725,412.1333333,1510,456,,269.6428571,81.42857143 +24726,412.15,1499,456,,267.6785714,81.42857143 +24727,412.1666667,1488,457,,265.7142857,81.60714286 +24728,412.1833333,1476,457,,263.5714286,81.60714286 +24729,412.2,1463,458,,261.25,81.78571429 +24730,412.2166667,1450,458,,258.9285714,81.78571429 +24731,412.2333333,1438,458,,256.7857143,81.78571429 +24732,412.25,1424,459,,254.2857143,81.96428571 +24733,412.2666667,1411,459,,251.9642857,81.96428571 +24734,412.2833333,1398,459,,249.6428571,81.96428571 +24735,412.3,1385,459,,247.3214286,81.96428571 +24736,412.3166667,1372,459,,245,81.96428571 +24737,412.3333333,1358,459,,242.5,81.96428571 +24738,412.35,1346,459,,240.3571429,81.96428571 +24739,412.3666667,1333,459,,238.0357143,81.96428571 +24740,412.3833333,1321,459,,235.8928571,81.96428571 +24741,412.4,1309,459,,233.75,81.96428571 +24742,412.4166667,1298,459,,231.7857143,81.96428571 +24743,412.4333333,1287,458,,229.8214286,81.78571429 +24744,412.45,1276,458,,227.8571429,81.78571429 +24745,412.4666667,1267,458,,226.25,81.78571429 +24746,412.4833333,1258,457,,224.6428571,81.60714286 +24747,412.5,1249,457,,223.0357143,81.60714286 +24748,412.5166667,1242,456,,221.7857143,81.42857143 +24749,412.5333333,1235,456,,220.5357143,81.42857143 +24750,412.55,1229,456,,219.4642857,81.42857143 +24751,412.5666667,1224,456,,218.5714286,81.42857143 +24752,412.5833333,1220,456,,217.8571429,81.42857143 +24753,412.6,1216,456,,217.1428571,81.42857143 +24754,412.6166667,1214,455,,216.7857143,81.25 +24755,412.6333333,1212,455,,216.4285714,81.25 +24756,412.65,1212,455,,216.4285714,81.25 +24757,412.6666667,1212,455,,216.4285714,81.25 +24758,412.6833333,1213,455,,216.6071429,81.25 +24759,412.7,1215,456,,216.9642857,81.42857143 +24760,412.7166667,1218,456,,217.5,81.42857143 +24761,412.7333333,1222,456,,218.2142857,81.42857143 +24762,412.75,1227,456,,219.1071429,81.42857143 +24763,412.7666667,1233,456,,220.1785714,81.42857143 +24764,412.7833333,1239,456,,221.25,81.42857143 +24765,412.8,1247,456,,222.6785714,81.42857143 +24766,412.8166667,1255,457,,224.1071429,81.60714286 +24767,412.8333333,1264,457,,225.7142857,81.60714286 +24768,412.85,1273,457,,227.3214286,81.60714286 +24769,412.8666667,1283,458,,229.1071429,81.78571429 +24770,412.8833333,1294,458,,231.0714286,81.78571429 +24771,412.9,1305,458,,233.0357143,81.78571429 +24772,412.9166667,1317,458,,235.1785714,81.78571429 +24773,412.9333333,1329,459,,237.3214286,81.96428571 +24774,412.95,1341,459,,239.4642857,81.96428571 +24775,412.9666667,1354,459,,241.7857143,81.96428571 +24776,412.9833333,1367,459,,244.1071429,81.96428571 +24777,413,1380,458,,246.4285714,81.78571429 +24778,413.0166667,1393,458,,248.75,81.78571429 +24779,413.0333333,1406,458,,251.0714286,81.78571429 +24780,413.05,1420,458,,253.5714286,81.78571429 +24781,413.0666667,1433,458,,255.8928571,81.78571429 +24782,413.0833333,1446,457,,258.2142857,81.60714286 +24783,413.1,1459,457,,260.5357143,81.60714286 +24784,413.1166667,1471,457,,262.6785714,81.60714286 +24785,413.1333333,1484,456,,265,81.42857143 +24786,413.15,1495,456,,266.9642857,81.42857143 +24787,413.1666667,1507,455,,269.1071429,81.25 +24788,413.1833333,1517,455,,270.8928571,81.25 +24789,413.2,1528,454,,272.8571429,81.07142857 +24790,413.2166667,1537,454,,274.4642857,81.07142857 +24791,413.2333333,1546,454,,276.0714286,81.07142857 +24792,413.25,1554,453,,277.5,80.89285714 +24793,413.2666667,1562,453,,278.9285714,80.89285714 +24794,413.2833333,1568,452,,280,80.71428571 +24795,413.3,1574,452,,281.0714286,80.71428571 +24796,413.3166667,1579,452,,281.9642857,80.71428571 +24797,413.3333333,1583,451,,282.6785714,80.53571429 +24798,413.35,1586,451,,283.2142857,80.53571429 +24799,413.3666667,1588,451,,283.5714286,80.53571429 +24800,413.3833333,1590,451,,283.9285714,80.53571429 +24801,413.4,1590,451,,283.9285714,80.53571429 +24802,413.4166667,1590,451,,283.9285714,80.53571429 +24803,413.4333333,1588,451,,283.5714286,80.53571429 +24804,413.45,1586,452,,283.2142857,80.71428571 +24805,413.4666667,1582,452,,282.5,80.71428571 +24806,413.4833333,1578,452,,281.7857143,80.71428571 +24807,413.5,1573,453,,280.8928571,80.89285714 +24808,413.5166667,1567,453,,279.8214286,80.89285714 +24809,413.5333333,1560,454,,278.5714286,81.07142857 +24810,413.55,1553,454,,277.3214286,81.07142857 +24811,413.5666667,1544,454,,275.7142857,81.07142857 +24812,413.5833333,1535,455,,274.1071429,81.25 +24813,413.6,1526,456,,272.5,81.42857143 +24814,413.6166667,1516,456,,270.7142857,81.42857143 +24815,413.6333333,1505,456,,268.75,81.42857143 +24816,413.65,1493,457,,266.6071429,81.60714286 +24817,413.6666667,1482,457,,264.6428571,81.60714286 +24818,413.6833333,1469,458,,262.3214286,81.78571429 +24819,413.7,1456,458,,260,81.78571429 +24820,413.7166667,1444,458,,257.8571429,81.78571429 +24821,413.7333333,1431,459,,255.5357143,81.96428571 +24822,413.75,1418,459,,253.2142857,81.96428571 +24823,413.7666667,1404,459,,250.7142857,81.96428571 +24824,413.7833333,1391,459,,248.3928571,81.96428571 +24825,413.8,1378,460,,246.0714286,82.14285714 +24826,413.8166667,1365,460,,243.75,82.14285714 +24827,413.8333333,1352,460,,241.4285714,82.14285714 +24828,413.85,1339,460,,239.1071429,82.14285714 +24829,413.8666667,1327,460,,236.9642857,82.14285714 +24830,413.8833333,1315,460,,234.8214286,82.14285714 +24831,413.9,1303,460,,232.6785714,82.14285714 +24832,413.9166667,1292,459,,230.7142857,81.96428571 +24833,413.9333333,1281,459,,228.75,81.96428571 +24834,413.95,1272,458,,227.1428571,81.78571429 +24835,413.9666667,1262,458,,225.3571429,81.78571429 +24836,413.9833333,1253,458,,223.75,81.78571429 +24837,414,1246,458,,222.5,81.78571429 +24838,414.0166667,1238,457,,221.0714286,81.60714286 +24839,414.0333333,1232,457,,220,81.60714286 +24840,414.05,1226,457,,218.9285714,81.60714286 +24841,414.0666667,1222,456,,218.2142857,81.42857143 +24842,414.0833333,1218,456,,217.5,81.42857143 +24843,414.1,1215,456,,216.9642857,81.42857143 +24844,414.1166667,1213,456,,216.6071429,81.42857143 +24845,414.1333333,1213,456,,216.6071429,81.42857143 +24846,414.15,1213,456,,216.6071429,81.42857143 +24847,414.1666667,1213,456,,216.6071429,81.42857143 +24848,414.1833333,1214,456,,216.7857143,81.42857143 +24849,414.2,1217,456,,217.3214286,81.42857143 +24850,414.2166667,1220,456,,217.8571429,81.42857143 +24851,414.2333333,1225,456,,218.75,81.42857143 +24852,414.25,1230,456,,219.6428571,81.42857143 +24853,414.2666667,1236,456,,220.7142857,81.42857143 +24854,414.2833333,1243,457,,221.9642857,81.60714286 +24855,414.3,1251,457,,223.3928571,81.60714286 +24856,414.3166667,1259,457,,224.8214286,81.60714286 +24857,414.3333333,1268,458,,226.4285714,81.78571429 +24858,414.35,1278,458,,228.2142857,81.78571429 +24859,414.3666667,1289,458,,230.1785714,81.78571429 +24860,414.3833333,1299,459,,231.9642857,81.96428571 +24861,414.4,1311,459,,234.1071429,81.96428571 +24862,414.4166667,1323,459,,236.25,81.96428571 +24863,414.4333333,1335,459,,238.3928571,81.96428571 +24864,414.45,1347,459,,240.5357143,81.96428571 +24865,414.4666667,1360,459,,242.8571429,81.96428571 +24866,414.4833333,1373,459,,245.1785714,81.96428571 +24867,414.5,1386,459,,247.5,81.96428571 +24868,414.5166667,1400,459,,250,81.96428571 +24869,414.5333333,1413,459,,252.3214286,81.96428571 +24870,414.55,1426,458,,254.6428571,81.78571429 +24871,414.5666667,1440,458,,257.1428571,81.78571429 +24872,414.5833333,1452,458,,259.2857143,81.78571429 +24873,414.6,1465,457,,261.6071429,81.60714286 +24874,414.6166667,1478,457,,263.9285714,81.60714286 +24875,414.6333333,1489,457,,265.8928571,81.60714286 +24876,414.65,1501,456,,268.0357143,81.42857143 +24877,414.6666667,1512,456,,270,81.42857143 +24878,414.6833333,1522,456,,271.7857143,81.42857143 +24879,414.7,1532,455,,273.5714286,81.25 +24880,414.7166667,1541,454,,275.1785714,81.07142857 +24881,414.7333333,1550,454,,276.7857143,81.07142857 +24882,414.75,1557,454,,278.0357143,81.07142857 +24883,414.7666667,1565,453,,279.4642857,80.89285714 +24884,414.7833333,1571,453,,280.5357143,80.89285714 +24885,414.8,1576,452,,281.4285714,80.71428571 +24886,414.8166667,1581,452,,282.3214286,80.71428571 +24887,414.8333333,1584,452,,282.8571429,80.71428571 +24888,414.85,1587,452,,283.3928571,80.71428571 +24889,414.8666667,1589,452,,283.75,80.71428571 +24890,414.8833333,1589,452,,283.75,80.71428571 +24891,414.9,1589,452,,283.75,80.71428571 +24892,414.9166667,1588,452,,283.5714286,80.71428571 +24893,414.9333333,1586,452,,283.2142857,80.71428571 +24894,414.95,1583,452,,282.6785714,80.71428571 +24895,414.9666667,1580,453,,282.1428571,80.89285714 +24896,414.9833333,1575,453,,281.25,80.89285714 +24897,415,1569,453,,280.1785714,80.89285714 +24898,415.0166667,1563,454,,279.1071429,81.07142857 +24899,415.0333333,1556,454,,277.8571429,81.07142857 +24900,415.05,1548,454,,276.4285714,81.07142857 +24901,415.0666667,1539,455,,274.8214286,81.25 +24902,415.0833333,1530,455,,273.2142857,81.25 +24903,415.1,1520,456,,271.4285714,81.42857143 +24904,415.1166667,1509,456,,269.4642857,81.42857143 +24905,415.1333333,1498,457,,267.5,81.60714286 +24906,415.15,1486,457,,265.3571429,81.60714286 +24907,415.1666667,1475,458,,263.3928571,81.78571429 +24908,415.1833333,1462,458,,261.0714286,81.78571429 +24909,415.2,1449,459,,258.75,81.96428571 +24910,415.2166667,1437,459,,256.6071429,81.96428571 +24911,415.2333333,1423,459,,254.1071429,81.96428571 +24912,415.25,1410,460,,251.7857143,82.14285714 +24913,415.2666667,1397,460,,249.4642857,82.14285714 +24914,415.2833333,1384,460,,247.1428571,82.14285714 +24915,415.3,1371,460,,244.8214286,82.14285714 +24916,415.3166667,1358,460,,242.5,82.14285714 +24917,415.3333333,1345,460,,240.1785714,82.14285714 +24918,415.35,1332,460,,237.8571429,82.14285714 +24919,415.3666667,1321,460,,235.8928571,82.14285714 +24920,415.3833333,1309,460,,233.75,82.14285714 +24921,415.4,1297,459,,231.6071429,81.96428571 +24922,415.4166667,1286,459,,229.6428571,81.96428571 +24923,415.4333333,1276,459,,227.8571429,81.96428571 +24924,415.45,1267,458,,226.25,81.78571429 +24925,415.4666667,1258,458,,224.6428571,81.78571429 +24926,415.4833333,1249,457,,223.0357143,81.60714286 +24927,415.5,1242,457,,221.7857143,81.60714286 +24928,415.5166667,1235,457,,220.5357143,81.60714286 +24929,415.5333333,1229,456,,219.4642857,81.42857143 +24930,415.55,1224,456,,218.5714286,81.42857143 +24931,415.5666667,1220,456,,217.8571429,81.42857143 +24932,415.5833333,1216,456,,217.1428571,81.42857143 +24933,415.6,1214,455,,216.7857143,81.25 +24934,415.6166667,1213,455,,216.6071429,81.25 +24935,415.6333333,1213,455,,216.6071429,81.25 +24936,415.65,1213,455,,216.6071429,81.25 +24937,415.6666667,1213,455,,216.6071429,81.25 +24938,415.6833333,1215,456,,216.9642857,81.42857143 +24939,415.7,1219,456,,217.6785714,81.42857143 +24940,415.7166667,1223,456,,218.3928571,81.42857143 +24941,415.7333333,1228,456,,219.2857143,81.42857143 +24942,415.75,1234,456,,220.3571429,81.42857143 +24943,415.7666667,1240,457,,221.4285714,81.60714286 +24944,415.7833333,1248,457,,222.8571429,81.60714286 +24945,415.8,1255,457,,224.1071429,81.60714286 +24946,415.8166667,1264,458,,225.7142857,81.78571429 +24947,415.8333333,1273,458,,227.3214286,81.78571429 +24948,415.85,1284,458,,229.2857143,81.78571429 +24949,415.8666667,1294,459,,231.0714286,81.96428571 +24950,415.8833333,1306,459,,233.2142857,81.96428571 +24951,415.9,1317,459,,235.1785714,81.96428571 +24952,415.9166667,1329,459,,237.3214286,81.96428571 +24953,415.9333333,1342,459,,239.6428571,81.96428571 +24954,415.95,1354,459,,241.7857143,81.96428571 +24955,415.9666667,1367,459,,244.1071429,81.96428571 +24956,415.9833333,1380,459,,246.4285714,81.96428571 +24957,416,1393,459,,248.75,81.96428571 +24958,416.0166667,1407,459,,251.25,81.96428571 +24959,416.0333333,1420,458,,253.5714286,81.78571429 +24960,416.05,1433,458,,255.8928571,81.78571429 +24961,416.0666667,1446,458,,258.2142857,81.78571429 +24962,416.0833333,1459,458,,260.5357143,81.78571429 +24963,416.1,1471,457,,262.6785714,81.60714286 +24964,416.1166667,1484,457,,265,81.60714286 +24965,416.1333333,1495,456,,266.9642857,81.42857143 +24966,416.15,1506,456,,268.9285714,81.42857143 +24967,416.1666667,1517,455,,270.8928571,81.25 +24968,416.1833333,1527,455,,272.6785714,81.25 +24969,416.2,1536,455,,274.2857143,81.25 +24970,416.2166667,1545,454,,275.8928571,81.07142857 +24971,416.2333333,1553,453,,277.3214286,80.89285714 +24972,416.25,1561,453,,278.75,80.89285714 +24973,416.2666667,1567,453,,279.8214286,80.89285714 +24974,416.2833333,1573,452,,280.8928571,80.71428571 +24975,416.3,1578,452,,281.7857143,80.71428571 +24976,416.3166667,1582,452,,282.5,80.71428571 +24977,416.3333333,1585,452,,283.0357143,80.71428571 +24978,416.35,1587,452,,283.3928571,80.71428571 +24979,416.3666667,1588,452,,283.5714286,80.71428571 +24980,416.3833333,1588,452,,283.5714286,80.71428571 +24981,416.4,1588,452,,283.5714286,80.71428571 +24982,416.4166667,1586,452,,283.2142857,80.71428571 +24983,416.4333333,1584,452,,282.8571429,80.71428571 +24984,416.45,1580,452,,282.1428571,80.71428571 +24985,416.4666667,1576,453,,281.4285714,80.89285714 +24986,416.4833333,1571,453,,280.5357143,80.89285714 +24987,416.5,1565,453,,279.4642857,80.89285714 +24988,416.5166667,1558,454,,278.2142857,81.07142857 +24989,416.5333333,1551,454,,276.9642857,81.07142857 +24990,416.55,1542,455,,275.3571429,81.25 +24991,416.5666667,1533,455,,273.75,81.25 +24992,416.5833333,1524,456,,272.1428571,81.42857143 +24993,416.6,1513,456,,270.1785714,81.42857143 +24994,416.6166667,1503,457,,268.3928571,81.60714286 +24995,416.6333333,1491,457,,266.25,81.60714286 +24996,416.65,1479,458,,264.1071429,81.78571429 +24997,416.6666667,1467,458,,261.9642857,81.78571429 +24998,416.6833333,1455,458,,259.8214286,81.78571429 +24999,416.7,1442,459,,257.5,81.96428571 +25000,416.7166667,1429,459,,255.1785714,81.96428571 +25001,416.7333333,1416,459,,252.8571429,81.96428571 +25002,416.75,1403,460,,250.5357143,82.14285714 +25003,416.7666667,1390,460,,248.2142857,82.14285714 +25004,416.7833333,1377,460,,245.8928571,82.14285714 +25005,416.8,1364,460,,243.5714286,82.14285714 +25006,416.8166667,1351,460,,241.25,82.14285714 +25007,416.8333333,1339,460,,239.1071429,82.14285714 +25008,416.85,1326,460,,236.7857143,82.14285714 +25009,416.8666667,1314,460,,234.6428571,82.14285714 +25010,416.8833333,1303,460,,232.6785714,82.14285714 +25011,416.9,1292,460,,230.7142857,82.14285714 +25012,416.9166667,1281,459,,228.75,81.96428571 +25013,416.9333333,1272,458,,227.1428571,81.78571429 +25014,416.95,1262,458,,225.3571429,81.78571429 +25015,416.9666667,1254,458,,223.9285714,81.78571429 +25016,416.9833333,1246,457,,222.5,81.60714286 +25017,417,1239,457,,221.25,81.60714286 +25018,417.0166667,1233,457,,220.1785714,81.60714286 +25019,417.0333333,1227,457,,219.1071429,81.60714286 +25020,417.05,1222,456,,218.2142857,81.42857143 +25021,417.0666667,1219,456,,217.6785714,81.42857143 +25022,417.0833333,1216,456,,217.1428571,81.42857143 +25023,417.1,1214,456,,216.7857143,81.42857143 +25024,417.1166667,1214,456,,216.7857143,81.42857143 +25025,417.1333333,1214,456,,216.7857143,81.42857143 +25026,417.15,1214,456,,216.7857143,81.42857143 +25027,417.1666667,1216,456,,217.1428571,81.42857143 +25028,417.1833333,1218,456,,217.5,81.42857143 +25029,417.2,1222,456,,218.2142857,81.42857143 +25030,417.2166667,1226,456,,218.9285714,81.42857143 +25031,417.2333333,1232,456,,220,81.42857143 +25032,417.25,1238,457,,221.0714286,81.60714286 +25033,417.2666667,1245,457,,222.3214286,81.60714286 +25034,417.2833333,1252,457,,223.5714286,81.60714286 +25035,417.3,1261,458,,225.1785714,81.78571429 +25036,417.3166667,1270,458,,226.7857143,81.78571429 +25037,417.3333333,1280,458,,228.5714286,81.78571429 +25038,417.35,1290,458,,230.3571429,81.78571429 +25039,417.3666667,1301,459,,232.3214286,81.96428571 +25040,417.3833333,1312,459,,234.2857143,81.96428571 +25041,417.4,1324,459,,236.4285714,81.96428571 +25042,417.4166667,1336,459,,238.5714286,81.96428571 +25043,417.4333333,1349,459,,240.8928571,81.96428571 +25044,417.45,1361,459,,243.0357143,81.96428571 +25045,417.4666667,1374,459,,245.3571429,81.96428571 +25046,417.4833333,1387,459,,247.6785714,81.96428571 +25047,417.5,1401,459,,250.1785714,81.96428571 +25048,417.5166667,1414,459,,252.5,81.96428571 +25049,417.5333333,1427,458,,254.8214286,81.78571429 +25050,417.55,1440,458,,257.1428571,81.78571429 +25051,417.5666667,1453,458,,259.4642857,81.78571429 +25052,417.5833333,1465,457,,261.6071429,81.60714286 +25053,417.6,1478,457,,263.9285714,81.60714286 +25054,417.6166667,1489,457,,265.8928571,81.60714286 +25055,417.6333333,1501,456,,268.0357143,81.42857143 +25056,417.65,1512,456,,270,81.42857143 +25057,417.6666667,1522,455,,271.7857143,81.25 +25058,417.6833333,1532,455,,273.5714286,81.25 +25059,417.7,1540,454,,275,81.07142857 +25060,417.7166667,1549,454,,276.6071429,81.07142857 +25061,417.7333333,1557,454,,278.0357143,81.07142857 +25062,417.75,1564,453,,279.2857143,80.89285714 +25063,417.7666667,1569,453,,280.1785714,80.89285714 +25064,417.7833333,1574,453,,281.0714286,80.89285714 +25065,417.8,1579,452,,281.9642857,80.71428571 +25066,417.8166667,1582,452,,282.5,80.71428571 +25067,417.8333333,1585,452,,283.0357143,80.71428571 +25068,417.85,1587,452,,283.3928571,80.71428571 +25069,417.8666667,1587,452,,283.3928571,80.71428571 +25070,417.8833333,1587,452,,283.3928571,80.71428571 +25071,417.9,1586,452,,283.2142857,80.71428571 +25072,417.9166667,1584,452,,282.8571429,80.71428571 +25073,417.9333333,1581,453,,282.3214286,80.89285714 +25074,417.95,1577,453,,281.6071429,80.89285714 +25075,417.9666667,1572,453,,280.7142857,80.89285714 +25076,417.9833333,1567,454,,279.8214286,81.07142857 +25077,418,1560,454,,278.5714286,81.07142857 +25078,418.0166667,1553,455,,277.3214286,81.25 +25079,418.0333333,1545,455,,275.8928571,81.25 +25080,418.05,1537,456,,274.4642857,81.42857143 +25081,418.0666667,1527,456,,272.6785714,81.42857143 +25082,418.0833333,1517,457,,270.8928571,81.60714286 +25083,418.1,1507,457,,269.1071429,81.60714286 +25084,418.1166667,1496,457,,267.1428571,81.60714286 +25085,418.1333333,1484,458,,265,81.78571429 +25086,418.15,1472,458,,262.8571429,81.78571429 +25087,418.1666667,1460,459,,260.7142857,81.96428571 +25088,418.1833333,1447,459,,258.3928571,81.96428571 +25089,418.2,1435,460,,256.25,82.14285714 +25090,418.2166667,1422,460,,253.9285714,82.14285714 +25091,418.2333333,1408,460,,251.4285714,82.14285714 +25092,418.25,1396,460,,249.2857143,82.14285714 +25093,418.2666667,1383,460,,246.9642857,82.14285714 +25094,418.2833333,1369,460,,244.4642857,82.14285714 +25095,418.3,1356,460,,242.1428571,82.14285714 +25096,418.3166667,1344,460,,240,82.14285714 +25097,418.3333333,1332,460,,237.8571429,82.14285714 +25098,418.35,1320,460,,235.7142857,82.14285714 +25099,418.3666667,1308,460,,233.5714286,82.14285714 +25100,418.3833333,1297,460,,231.6071429,82.14285714 +25101,418.4,1287,459,,229.8214286,81.96428571 +25102,418.4166667,1276,459,,227.8571429,81.96428571 +25103,418.4333333,1266,459,,226.0714286,81.96428571 +25104,418.45,1258,458,,224.6428571,81.78571429 +25105,418.4666667,1250,458,,223.2142857,81.78571429 +25106,418.4833333,1242,457,,221.7857143,81.60714286 +25107,418.5,1236,457,,220.7142857,81.60714286 +25108,418.5166667,1230,457,,219.6428571,81.60714286 +25109,418.5333333,1225,457,,218.75,81.60714286 +25110,418.55,1221,456,,218.0357143,81.42857143 +25111,418.5666667,1217,456,,217.3214286,81.42857143 +25112,418.5833333,1215,456,,216.9642857,81.42857143 +25113,418.6,1214,456,,216.7857143,81.42857143 +25114,418.6166667,1214,456,,216.7857143,81.42857143 +25115,418.6333333,1214,456,,216.7857143,81.42857143 +25116,418.65,1215,456,,216.9642857,81.42857143 +25117,418.6666667,1217,456,,217.3214286,81.42857143 +25118,418.6833333,1220,456,,217.8571429,81.42857143 +25119,418.7,1224,456,,218.5714286,81.42857143 +25120,418.7166667,1229,457,,219.4642857,81.60714286 +25121,418.7333333,1235,457,,220.5357143,81.60714286 +25122,418.75,1241,457,,221.6071429,81.60714286 +25123,418.7666667,1249,457,,223.0357143,81.60714286 +25124,418.7833333,1257,458,,224.4642857,81.78571429 +25125,418.8,1265,458,,225.8928571,81.78571429 +25126,418.8166667,1275,458,,227.6785714,81.78571429 +25127,418.8333333,1285,458,,229.4642857,81.78571429 +25128,418.85,1295,459,,231.25,81.96428571 +25129,418.8666667,1307,459,,233.3928571,81.96428571 +25130,418.8833333,1318,459,,235.3571429,81.96428571 +25131,418.9,1330,460,,237.5,82.14285714 +25132,418.9166667,1342,460,,239.6428571,82.14285714 +25133,418.9333333,1355,460,,241.9642857,82.14285714 +25134,418.95,1368,459,,244.2857143,81.96428571 +25135,418.9666667,1381,459,,246.6071429,81.96428571 +25136,418.9833333,1394,459,,248.9285714,81.96428571 +25137,419,1407,459,,251.25,81.96428571 +25138,419.0166667,1420,459,,253.5714286,81.96428571 +25139,419.0333333,1433,459,,255.8928571,81.96428571 +25140,419.05,1446,458,,258.2142857,81.78571429 +25141,419.0666667,1458,458,,260.3571429,81.78571429 +25142,419.0833333,1471,457,,262.6785714,81.60714286 +25143,419.1,1483,457,,264.8214286,81.60714286 +25144,419.1166667,1495,457,,266.9642857,81.60714286 +25145,419.1333333,1505,457,,268.75,81.60714286 +25146,419.15,1516,456,,270.7142857,81.42857143 +25147,419.1666667,1526,456,,272.5,81.42857143 +25148,419.1833333,1536,455,,274.2857143,81.25 +25149,419.2,1544,455,,275.7142857,81.25 +25150,419.2166667,1552,454,,277.1428571,81.07142857 +25151,419.2333333,1559,454,,278.3928571,81.07142857 +25152,419.25,1566,453,,279.6428571,80.89285714 +25153,419.2666667,1571,453,,280.5357143,80.89285714 +25154,419.2833333,1576,453,,281.4285714,80.89285714 +25155,419.3,1580,453,,282.1428571,80.89285714 +25156,419.3166667,1583,453,,282.6785714,80.89285714 +25157,419.3333333,1585,452,,283.0357143,80.71428571 +25158,419.35,1586,452,,283.2142857,80.71428571 +25159,419.3666667,1586,453,,283.2142857,80.89285714 +25160,419.3833333,1586,453,,283.2142857,80.89285714 +25161,419.4,1584,453,,282.8571429,80.89285714 +25162,419.4166667,1582,453,,282.5,80.89285714 +25163,419.4333333,1578,453,,281.7857143,80.89285714 +25164,419.45,1574,453,,281.0714286,80.89285714 +25165,419.4666667,1569,454,,280.1785714,81.07142857 +25166,419.4833333,1563,454,,279.1071429,81.07142857 +25167,419.5,1556,455,,277.8571429,81.25 +25168,419.5166667,1548,455,,276.4285714,81.25 +25169,419.5333333,1540,456,,275,81.42857143 +25170,419.55,1531,456,,273.3928571,81.42857143 +25171,419.5666667,1522,457,,271.7857143,81.60714286 +25172,419.5833333,1511,457,,269.8214286,81.60714286 +25173,419.6,1500,458,,267.8571429,81.78571429 +25174,419.6166667,1489,458,,265.8928571,81.78571429 +25175,419.6333333,1477,458,,263.75,81.78571429 +25176,419.65,1465,459,,261.6071429,81.96428571 +25177,419.6666667,1453,459,,259.4642857,81.96428571 +25178,419.6833333,1441,460,,257.3214286,82.14285714 +25179,419.7,1428,460,,255,82.14285714 +25180,419.7166667,1415,460,,252.6785714,82.14285714 +25181,419.7333333,1402,460,,250.3571429,82.14285714 +25182,419.75,1389,460,,248.0357143,82.14285714 +25183,419.7666667,1375,461,,245.5357143,82.32142857 +25184,419.7833333,1362,461,,243.2142857,82.32142857 +25185,419.8,1350,461,,241.0714286,82.32142857 +25186,419.8166667,1338,461,,238.9285714,82.32142857 +25187,419.8333333,1326,461,,236.7857143,82.32142857 +25188,419.85,1314,461,,234.6428571,82.32142857 +25189,419.8666667,1302,460,,232.5,82.14285714 +25190,419.8833333,1291,460,,230.5357143,82.14285714 +25191,419.9,1281,460,,228.75,82.14285714 +25192,419.9166667,1271,459,,226.9642857,81.96428571 +25193,419.9333333,1262,459,,225.3571429,81.96428571 +25194,419.95,1254,459,,223.9285714,81.96428571 +25195,419.9666667,1246,458,,222.5,81.78571429 +25196,419.9833333,1239,458,,221.25,81.78571429 +25197,420,1233,458,,220.1785714,81.78571429 +25198,420.0166667,1227,457,,219.1071429,81.60714286 +25199,420.0333333,1223,457,,218.3928571,81.60714286 +25200,420.05,1219,457,,217.6785714,81.60714286 +25201,420.0666667,1216,457,,217.1428571,81.60714286 +25202,420.0833333,1214,456,,216.7857143,81.42857143 +25203,420.1,1214,456,,216.7857143,81.42857143 +25204,420.1166667,1214,456,,216.7857143,81.42857143 +25205,420.1333333,1214,456,,216.7857143,81.42857143 +25206,420.15,1216,456,,217.1428571,81.42857143 +25207,420.1666667,1219,457,,217.6785714,81.60714286 +25208,420.1833333,1222,457,,218.2142857,81.60714286 +25209,420.2,1227,457,,219.1071429,81.60714286 +25210,420.2166667,1232,457,,220,81.60714286 +25211,420.2333333,1238,457,,221.0714286,81.60714286 +25212,420.25,1245,458,,222.3214286,81.78571429 +25213,420.2666667,1253,458,,223.75,81.78571429 +25214,420.2833333,1261,458,,225.1785714,81.78571429 +25215,420.3,1271,459,,226.9642857,81.96428571 +25216,420.3166667,1280,459,,228.5714286,81.96428571 +25217,420.3333333,1290,459,,230.3571429,81.96428571 +25218,420.35,1301,459,,232.3214286,81.96428571 +25219,420.3666667,1313,460,,234.4642857,82.14285714 +25220,420.3833333,1324,460,,236.4285714,82.14285714 +25221,420.4,1336,460,,238.5714286,82.14285714 +25222,420.4166667,1349,460,,240.8928571,82.14285714 +25223,420.4333333,1361,460,,243.0357143,82.14285714 +25224,420.45,1374,459,,245.3571429,81.96428571 +25225,420.4666667,1388,459,,247.8571429,81.96428571 +25226,420.4833333,1401,459,,250.1785714,81.96428571 +25227,420.5,1414,459,,252.5,81.96428571 +25228,420.5166667,1427,459,,254.8214286,81.96428571 +25229,420.5333333,1440,459,,257.1428571,81.96428571 +25230,420.55,1452,458,,259.2857143,81.78571429 +25231,420.5666667,1465,458,,261.6071429,81.78571429 +25232,420.5833333,1477,458,,263.75,81.78571429 +25233,420.6,1489,457,,265.8928571,81.60714286 +25234,420.6166667,1500,457,,267.8571429,81.60714286 +25235,420.6333333,1511,456,,269.8214286,81.42857143 +25236,420.65,1521,456,,271.6071429,81.42857143 +25237,420.6666667,1531,455,,273.3928571,81.25 +25238,420.6833333,1540,455,,275,81.25 +25239,420.7,1548,455,,276.4285714,81.25 +25240,420.7166667,1556,454,,277.8571429,81.07142857 +25241,420.7333333,1562,454,,278.9285714,81.07142857 +25242,420.75,1568,454,,280,81.07142857 +25243,420.7666667,1573,454,,280.8928571,81.07142857 +25244,420.7833333,1578,453,,281.7857143,80.89285714 +25245,420.8,1581,453,,282.3214286,80.89285714 +25246,420.8166667,1584,453,,282.8571429,80.89285714 +25247,420.8333333,1585,453,,283.0357143,80.89285714 +25248,420.85,1585,453,,283.0357143,80.89285714 +25249,420.8666667,1585,453,,283.0357143,80.89285714 +25250,420.8833333,1584,453,,282.8571429,80.89285714 +25251,420.9,1582,453,,282.5,80.89285714 +25252,420.9166667,1579,453,,281.9642857,80.89285714 +25253,420.9333333,1576,454,,281.4285714,81.07142857 +25254,420.95,1571,454,,280.5357143,81.07142857 +25255,420.9666667,1565,454,,279.4642857,81.07142857 +25256,420.9833333,1559,455,,278.3928571,81.25 +25257,421,1552,455,,277.1428571,81.25 +25258,421.0166667,1544,456,,275.7142857,81.42857143 +25259,421.0333333,1535,456,,274.1071429,81.42857143 +25260,421.05,1526,457,,272.5,81.60714286 +25261,421.0666667,1516,457,,270.7142857,81.60714286 +25262,421.0833333,1506,458,,268.9285714,81.78571429 +25263,421.1,1495,458,,266.9642857,81.78571429 +25264,421.1166667,1483,459,,264.8214286,81.96428571 +25265,421.1333333,1471,459,,262.6785714,81.96428571 +25266,421.15,1459,459,,260.5357143,81.96428571 +25267,421.1666667,1447,460,,258.3928571,82.14285714 +25268,421.1833333,1434,460,,256.0714286,82.14285714 +25269,421.2,1421,460,,253.75,82.14285714 +25270,421.2166667,1408,461,,251.4285714,82.32142857 +25271,421.2333333,1395,461,,249.1071429,82.32142857 +25272,421.25,1382,461,,246.7857143,82.32142857 +25273,421.2666667,1369,461,,244.4642857,82.32142857 +25274,421.2833333,1356,461,,242.1428571,82.32142857 +25275,421.3,1344,461,,240,82.32142857 +25276,421.3166667,1332,461,,237.8571429,82.32142857 +25277,421.3333333,1320,461,,235.7142857,82.32142857 +25278,421.35,1308,461,,233.5714286,82.32142857 +25279,421.3666667,1297,460,,231.6071429,82.14285714 +25280,421.3833333,1286,460,,229.6428571,82.14285714 +25281,421.4,1276,460,,227.8571429,82.14285714 +25282,421.4166667,1267,459,,226.25,81.96428571 +25283,421.4333333,1258,459,,224.6428571,81.96428571 +25284,421.45,1250,459,,223.2142857,81.96428571 +25285,421.4666667,1243,458,,221.9642857,81.78571429 +25286,421.4833333,1236,458,,220.7142857,81.78571429 +25287,421.5,1230,457,,219.6428571,81.60714286 +25288,421.5166667,1226,457,,218.9285714,81.60714286 +25289,421.5333333,1222,457,,218.2142857,81.60714286 +25290,421.55,1218,457,,217.5,81.60714286 +25291,421.5666667,1216,457,,217.1428571,81.60714286 +25292,421.5833333,1214,457,,216.7857143,81.60714286 +25293,421.6,1214,457,,216.7857143,81.60714286 +25294,421.6166667,1214,457,,216.7857143,81.60714286 +25295,421.6333333,1216,457,,217.1428571,81.60714286 +25296,421.65,1218,457,,217.5,81.60714286 +25297,421.6666667,1221,457,,218.0357143,81.60714286 +25298,421.6833333,1225,457,,218.75,81.60714286 +25299,421.7,1230,457,,219.6428571,81.60714286 +25300,421.7166667,1236,457,,220.7142857,81.60714286 +25301,421.7333333,1243,457,,221.9642857,81.60714286 +25302,421.75,1250,457,,223.2142857,81.60714286 +25303,421.7666667,1258,458,,224.6428571,81.78571429 +25304,421.7833333,1266,458,,226.0714286,81.78571429 +25305,421.8,1276,459,,227.8571429,81.96428571 +25306,421.8166667,1286,459,,229.6428571,81.96428571 +25307,421.8333333,1297,459,,231.6071429,81.96428571 +25308,421.85,1308,459,,233.5714286,81.96428571 +25309,421.8666667,1320,459,,235.7142857,81.96428571 +25310,421.8833333,1331,460,,237.6785714,82.14285714 +25311,421.9,1343,460,,239.8214286,82.14285714 +25312,421.9166667,1356,460,,242.1428571,82.14285714 +25313,421.9333333,1369,460,,244.4642857,82.14285714 +25314,421.95,1382,459,,246.7857143,81.96428571 +25315,421.9666667,1395,459,,249.1071429,81.96428571 +25316,421.9833333,1408,459,,251.4285714,81.96428571 +25317,422,1421,459,,253.75,81.96428571 +25318,422.0166667,1434,459,,256.0714286,81.96428571 +25319,422.0333333,1447,459,,258.3928571,81.96428571 +25320,422.05,1459,458,,260.5357143,81.78571429 +25321,422.0666667,1472,458,,262.8571429,81.78571429 +25322,422.0833333,1483,458,,264.8214286,81.78571429 +25323,422.1,1495,457,,266.9642857,81.60714286 +25324,422.1166667,1506,457,,268.9285714,81.60714286 +25325,422.1333333,1516,456,,270.7142857,81.42857143 +25326,422.15,1526,456,,272.5,81.42857143 +25327,422.1666667,1536,456,,274.2857143,81.42857143 +25328,422.1833333,1544,455,,275.7142857,81.25 +25329,422.2,1552,455,,277.1428571,81.25 +25330,422.2166667,1559,455,,278.3928571,81.25 +25331,422.2333333,1566,454,,279.6428571,81.07142857 +25332,422.25,1571,454,,280.5357143,81.07142857 +25333,422.2666667,1576,454,,281.4285714,81.07142857 +25334,422.2833333,1580,453,,282.1428571,80.89285714 +25335,422.3,1583,453,,282.6785714,80.89285714 +25336,422.3166667,1585,453,,283.0357143,80.89285714 +25337,422.3333333,1585,453,,283.0357143,80.89285714 +25338,422.35,1585,453,,283.0357143,80.89285714 +25339,422.3666667,1585,453,,283.0357143,80.89285714 +25340,422.3833333,1584,453,,282.8571429,80.89285714 +25341,422.4,1581,453,,282.3214286,80.89285714 +25342,422.4166667,1578,454,,281.7857143,81.07142857 +25343,422.4333333,1574,454,,281.0714286,81.07142857 +25344,422.45,1568,454,,280,81.07142857 +25345,422.4666667,1562,455,,278.9285714,81.25 +25346,422.4833333,1556,455,,277.8571429,81.25 +25347,422.5,1548,455,,276.4285714,81.25 +25348,422.5166667,1540,456,,275,81.42857143 +25349,422.5333333,1531,457,,273.3928571,81.60714286 +25350,422.55,1521,457,,271.6071429,81.60714286 +25351,422.5666667,1511,457,,269.8214286,81.60714286 +25352,422.5833333,1500,458,,267.8571429,81.78571429 +25353,422.6,1489,458,,265.8928571,81.78571429 +25354,422.6166667,1477,459,,263.75,81.96428571 +25355,422.6333333,1465,459,,261.6071429,81.96428571 +25356,422.65,1453,460,,259.4642857,82.14285714 +25357,422.6666667,1441,460,,257.3214286,82.14285714 +25358,422.6833333,1428,460,,255,82.14285714 +25359,422.7,1415,460,,252.6785714,82.14285714 +25360,422.7166667,1402,461,,250.3571429,82.32142857 +25361,422.7333333,1389,461,,248.0357143,82.32142857 +25362,422.75,1376,461,,245.7142857,82.32142857 +25363,422.7666667,1363,461,,243.3928571,82.32142857 +25364,422.7833333,1351,461,,241.25,82.32142857 +25365,422.8,1338,461,,238.9285714,82.32142857 +25366,422.8166667,1326,461,,236.7857143,82.32142857 +25367,422.8333333,1315,461,,234.8214286,82.32142857 +25368,422.85,1303,461,,232.6785714,82.32142857 +25369,422.8666667,1293,460,,230.8928571,82.14285714 +25370,422.8833333,1282,460,,228.9285714,82.14285714 +25371,422.9,1272,460,,227.1428571,82.14285714 +25372,422.9166667,1263,459,,225.5357143,81.96428571 +25373,422.9333333,1255,459,,224.1071429,81.96428571 +25374,422.95,1247,458,,222.6785714,81.78571429 +25375,422.9666667,1240,458,,221.4285714,81.78571429 +25376,422.9833333,1234,458,,220.3571429,81.78571429 +25377,423,1229,457,,219.4642857,81.60714286 +25378,423.0166667,1224,457,,218.5714286,81.60714286 +25379,423.0333333,1220,457,,217.8571429,81.60714286 +25380,423.05,1218,457,,217.5,81.60714286 +25381,423.0666667,1216,457,,217.1428571,81.60714286 +25382,423.0833333,1216,457,,217.1428571,81.60714286 +25383,423.1,1216,457,,217.1428571,81.60714286 +25384,423.1166667,1216,457,,217.1428571,81.60714286 +25385,423.1333333,1218,457,,217.5,81.60714286 +25386,423.15,1221,457,,218.0357143,81.60714286 +25387,423.1666667,1224,457,,218.5714286,81.60714286 +25388,423.1833333,1229,457,,219.4642857,81.60714286 +25389,423.2,1234,457,,220.3571429,81.60714286 +25390,423.2166667,1240,458,,221.4285714,81.78571429 +25391,423.2333333,1247,458,,222.6785714,81.78571429 +25392,423.25,1255,458,,224.1071429,81.78571429 +25393,423.2666667,1263,458,,225.5357143,81.78571429 +25394,423.2833333,1272,458,,227.1428571,81.78571429 +25395,423.3,1282,459,,228.9285714,81.96428571 +25396,423.3166667,1292,459,,230.7142857,81.96428571 +25397,423.3333333,1303,459,,232.6785714,81.96428571 +25398,423.35,1314,460,,234.6428571,82.14285714 +25399,423.3666667,1326,460,,236.7857143,82.14285714 +25400,423.3833333,1338,460,,238.9285714,82.14285714 +25401,423.4,1350,460,,241.0714286,82.14285714 +25402,423.4166667,1363,460,,243.3928571,82.14285714 +25403,423.4333333,1376,460,,245.7142857,82.14285714 +25404,423.45,1389,460,,248.0357143,82.14285714 +25405,423.4666667,1402,460,,250.3571429,82.14285714 +25406,423.4833333,1415,459,,252.6785714,81.96428571 +25407,423.5,1428,459,,255,81.96428571 +25408,423.5166667,1441,459,,257.3214286,81.96428571 +25409,423.5333333,1453,458,,259.4642857,81.78571429 +25410,423.55,1466,458,,261.7857143,81.78571429 +25411,423.5666667,1478,458,,263.9285714,81.78571429 +25412,423.5833333,1490,457,,266.0714286,81.60714286 +25413,423.6,1501,457,,268.0357143,81.60714286 +25414,423.6166667,1512,457,,270,81.60714286 +25415,423.6333333,1522,456,,271.7857143,81.42857143 +25416,423.65,1531,456,,273.3928571,81.42857143 +25417,423.6666667,1540,456,,275,81.42857143 +25418,423.6833333,1548,455,,276.4285714,81.25 +25419,423.7,1556,455,,277.8571429,81.25 +25420,423.7166667,1563,455,,279.1071429,81.25 +25421,423.7333333,1569,454,,280.1785714,81.07142857 +25422,423.75,1574,454,,281.0714286,81.07142857 +25423,423.7666667,1578,454,,281.7857143,81.07142857 +25424,423.7833333,1581,453,,282.3214286,80.89285714 +25425,423.8,1584,453,,282.8571429,80.89285714 +25426,423.8166667,1586,453,,283.2142857,80.89285714 +25427,423.8333333,1586,453,,283.2142857,80.89285714 +25428,423.85,1586,453,,283.2142857,80.89285714 +25429,423.8666667,1585,453,,283.0357143,80.89285714 +25430,423.8833333,1582,453,,282.5,80.89285714 +25431,423.9,1579,454,,281.9642857,81.07142857 +25432,423.9166667,1575,454,,281.25,81.07142857 +25433,423.9333333,1571,455,,280.5357143,81.25 +25434,423.95,1565,455,,279.4642857,81.25 +25435,423.9666667,1559,455,,278.3928571,81.25 +25436,423.9833333,1552,456,,277.1428571,81.42857143 +25437,424,1544,456,,275.7142857,81.42857143 +25438,424.0166667,1535,457,,274.1071429,81.60714286 +25439,424.0333333,1526,457,,272.5,81.60714286 +25440,424.05,1516,457,,270.7142857,81.60714286 +25441,424.0666667,1506,458,,268.9285714,81.78571429 +25442,424.0833333,1495,459,,266.9642857,81.96428571 +25443,424.1,1483,459,,264.8214286,81.96428571 +25444,424.1166667,1472,459,,262.8571429,81.96428571 +25445,424.1333333,1459,460,,260.5357143,82.14285714 +25446,424.15,1447,460,,258.3928571,82.14285714 +25447,424.1666667,1434,460,,256.0714286,82.14285714 +25448,424.1833333,1421,461,,253.75,82.32142857 +25449,424.2,1408,461,,251.4285714,82.32142857 +25450,424.2166667,1395,461,,249.1071429,82.32142857 +25451,424.2333333,1382,461,,246.7857143,82.32142857 +25452,424.25,1370,461,,244.6428571,82.32142857 +25453,424.2666667,1357,461,,242.3214286,82.32142857 +25454,424.2833333,1345,461,,240.1785714,82.32142857 +25455,424.3,1333,461,,238.0357143,82.32142857 +25456,424.3166667,1320,461,,235.7142857,82.32142857 +25457,424.3333333,1309,461,,233.75,82.32142857 +25458,424.35,1298,461,,231.7857143,82.32142857 +25459,424.3666667,1288,460,,230,82.14285714 +25460,424.3833333,1277,460,,228.0357143,82.14285714 +25461,424.4,1269,460,,226.6071429,82.14285714 +25462,424.4166667,1260,459,,225,81.96428571 +25463,424.4333333,1252,459,,223.5714286,81.96428571 +25464,424.45,1244,458,,222.1428571,81.78571429 +25465,424.4666667,1238,458,,221.0714286,81.78571429 +25466,424.4833333,1232,458,,220,81.78571429 +25467,424.5,1227,457,,219.1071429,81.60714286 +25468,424.5166667,1223,457,,218.3928571,81.60714286 +25469,424.5333333,1220,457,,217.8571429,81.60714286 +25470,424.55,1218,457,,217.5,81.60714286 +25471,424.5666667,1216,457,,217.1428571,81.60714286 +25472,424.5833333,1216,457,,217.1428571,81.60714286 +25473,424.6,1216,457,,217.1428571,81.60714286 +25474,424.6166667,1218,457,,217.5,81.60714286 +25475,424.6333333,1220,457,,217.8571429,81.60714286 +25476,424.65,1224,457,,218.5714286,81.60714286 +25477,424.6666667,1228,457,,219.2857143,81.60714286 +25478,424.6833333,1233,457,,220.1785714,81.60714286 +25479,424.7,1238,458,,221.0714286,81.78571429 +25480,424.7166667,1245,458,,222.3214286,81.78571429 +25481,424.7333333,1252,458,,223.5714286,81.78571429 +25482,424.75,1260,459,,225,81.96428571 +25483,424.7666667,1269,459,,226.6071429,81.96428571 +25484,424.7833333,1278,459,,228.2142857,81.96428571 +25485,424.8,1288,460,,230,82.14285714 +25486,424.8166667,1299,460,,231.9642857,82.14285714 +25487,424.8333333,1310,460,,233.9285714,82.14285714 +25488,424.85,1321,460,,235.8928571,82.14285714 +25489,424.8666667,1333,460,,238.0357143,82.14285714 +25490,424.8833333,1345,460,,240.1785714,82.14285714 +25491,424.9,1358,460,,242.5,82.14285714 +25492,424.9166667,1370,460,,244.6428571,82.14285714 +25493,424.9333333,1384,460,,247.1428571,82.14285714 +25494,424.95,1396,460,,249.2857143,82.14285714 +25495,424.9666667,1409,459,,251.6071429,81.96428571 +25496,424.9833333,1422,459,,253.9285714,81.96428571 +25497,425,1435,459,,256.25,81.96428571 +25498,425.0166667,1448,458,,258.5714286,81.78571429 +25499,425.0333333,1460,458,,260.7142857,81.78571429 +25500,425.05,1473,458,,263.0357143,81.78571429 +25501,425.0666667,1484,458,,265,81.78571429 +25502,425.0833333,1496,457,,267.1428571,81.60714286 +25503,425.1,1507,457,,269.1071429,81.60714286 +25504,425.1166667,1517,456,,270.8928571,81.42857143 +25505,425.1333333,1527,456,,272.6785714,81.42857143 +25506,425.15,1536,456,,274.2857143,81.42857143 +25507,425.1666667,1545,455,,275.8928571,81.25 +25508,425.1833333,1552,455,,277.1428571,81.25 +25509,425.2,1560,454,,278.5714286,81.07142857 +25510,425.2166667,1566,454,,279.6428571,81.07142857 +25511,425.2333333,1571,454,,280.5357143,81.07142857 +25512,425.25,1576,453,,281.4285714,80.89285714 +25513,425.2666667,1580,453,,282.1428571,80.89285714 +25514,425.2833333,1583,453,,282.6785714,80.89285714 +25515,425.3,1585,453,,283.0357143,80.89285714 +25516,425.3166667,1585,453,,283.0357143,80.89285714 +25517,425.3333333,1585,453,,283.0357143,80.89285714 +25518,425.35,1585,453,,283.0357143,80.89285714 +25519,425.3666667,1584,453,,282.8571429,80.89285714 +25520,425.3833333,1581,453,,282.3214286,80.89285714 +25521,425.4,1577,454,,281.6071429,81.07142857 +25522,425.4166667,1573,454,,280.8928571,81.07142857 +25523,425.4333333,1568,454,,280,81.07142857 +25524,425.45,1562,455,,278.9285714,81.25 +25525,425.4666667,1555,455,,277.6785714,81.25 +25526,425.4833333,1548,455,,276.4285714,81.25 +25527,425.5,1540,456,,275,81.42857143 +25528,425.5166667,1531,456,,273.3928571,81.42857143 +25529,425.5333333,1521,457,,271.6071429,81.60714286 +25530,425.55,1511,457,,269.8214286,81.60714286 +25531,425.5666667,1500,458,,267.8571429,81.78571429 +25532,425.5833333,1489,458,,265.8928571,81.78571429 +25533,425.6,1478,459,,263.9285714,81.96428571 +25534,425.6166667,1466,459,,261.7857143,81.96428571 +25535,425.6333333,1453,460,,259.4642857,82.14285714 +25536,425.65,1441,460,,257.3214286,82.14285714 +25537,425.6666667,1428,460,,255,82.14285714 +25538,425.6833333,1415,460,,252.6785714,82.14285714 +25539,425.7,1402,461,,250.3571429,82.32142857 +25540,425.7166667,1389,461,,248.0357143,82.32142857 +25541,425.7333333,1376,461,,245.7142857,82.32142857 +25542,425.75,1364,461,,243.5714286,82.32142857 +25543,425.7666667,1351,461,,241.25,82.32142857 +25544,425.7833333,1339,461,,239.1071429,82.32142857 +25545,425.8,1327,461,,236.9642857,82.32142857 +25546,425.8166667,1315,461,,234.8214286,82.32142857 +25547,425.8333333,1304,461,,232.8571429,82.32142857 +25548,425.85,1293,461,,230.8928571,82.32142857 +25549,425.8666667,1284,460,,229.2857143,82.14285714 +25550,425.8833333,1274,459,,227.5,81.96428571 +25551,425.9,1265,459,,225.8928571,81.96428571 +25552,425.9166667,1256,459,,224.2857143,81.96428571 +25553,425.9333333,1249,458,,223.0357143,81.78571429 +25554,425.95,1242,458,,221.7857143,81.78571429 +25555,425.9666667,1236,458,,220.7142857,81.78571429 +25556,425.9833333,1231,458,,219.8214286,81.78571429 +25557,426,1226,457,,218.9285714,81.60714286 +25558,426.0166667,1223,457,,218.3928571,81.60714286 +25559,426.0333333,1220,457,,217.8571429,81.60714286 +25560,426.05,1218,457,,217.5,81.60714286 +25561,426.0666667,1218,457,,217.5,81.60714286 +25562,426.0833333,1218,457,,217.5,81.60714286 +25563,426.1,1218,457,,217.5,81.60714286 +25564,426.1166667,1220,457,,217.8571429,81.60714286 +25565,426.1333333,1223,457,,218.3928571,81.60714286 +25566,426.15,1226,457,,218.9285714,81.60714286 +25567,426.1666667,1231,457,,219.8214286,81.60714286 +25568,426.1833333,1236,457,,220.7142857,81.60714286 +25569,426.2,1243,458,,221.9642857,81.78571429 +25570,426.2166667,1250,458,,223.2142857,81.78571429 +25571,426.2333333,1258,458,,224.6428571,81.78571429 +25572,426.25,1266,458,,226.0714286,81.78571429 +25573,426.2666667,1275,459,,227.6785714,81.96428571 +25574,426.2833333,1284,459,,229.2857143,81.96428571 +25575,426.3,1295,460,,231.25,82.14285714 +25576,426.3166667,1306,460,,233.2142857,82.14285714 +25577,426.3333333,1317,460,,235.1785714,82.14285714 +25578,426.35,1328,460,,237.1428571,82.14285714 +25579,426.3666667,1340,460,,239.2857143,82.14285714 +25580,426.3833333,1353,460,,241.6071429,82.14285714 +25581,426.4,1365,460,,243.75,82.14285714 +25582,426.4166667,1378,460,,246.0714286,82.14285714 +25583,426.4333333,1391,460,,248.3928571,82.14285714 +25584,426.45,1404,460,,250.7142857,82.14285714 +25585,426.4666667,1417,460,,253.0357143,82.14285714 +25586,426.4833333,1430,459,,255.3571429,81.96428571 +25587,426.5,1443,459,,257.6785714,81.96428571 +25588,426.5166667,1455,459,,259.8214286,81.96428571 +25589,426.5333333,1467,458,,261.9642857,81.78571429 +25590,426.55,1479,458,,264.1071429,81.78571429 +25591,426.5666667,1491,457,,266.25,81.60714286 +25592,426.5833333,1502,457,,268.2142857,81.60714286 +25593,426.6,1513,457,,270.1785714,81.60714286 +25594,426.6166667,1523,456,,271.9642857,81.42857143 +25595,426.6333333,1532,455,,273.5714286,81.25 +25596,426.65,1541,455,,275.1785714,81.25 +25597,426.6666667,1549,455,,276.6071429,81.25 +25598,426.6833333,1556,455,,277.8571429,81.25 +25599,426.7,1563,454,,279.1071429,81.07142857 +25600,426.7166667,1569,454,,280.1785714,81.07142857 +25601,426.7333333,1574,454,,281.0714286,81.07142857 +25602,426.75,1578,453,,281.7857143,80.89285714 +25603,426.7666667,1581,453,,282.3214286,80.89285714 +25604,426.7833333,1584,453,,282.8571429,80.89285714 +25605,426.8,1585,453,,283.0357143,80.89285714 +25606,426.8166667,1585,453,,283.0357143,80.89285714 +25607,426.8333333,1585,453,,283.0357143,80.89285714 +25608,426.85,1584,453,,282.8571429,80.89285714 +25609,426.8666667,1582,453,,282.5,80.89285714 +25610,426.8833333,1579,453,,281.9642857,80.89285714 +25611,426.9,1575,453,,281.25,80.89285714 +25612,426.9166667,1571,454,,280.5357143,81.07142857 +25613,426.9333333,1565,454,,279.4642857,81.07142857 +25614,426.95,1558,455,,278.2142857,81.25 +25615,426.9666667,1551,455,,276.9642857,81.25 +25616,426.9833333,1544,456,,275.7142857,81.42857143 +25617,427,1535,456,,274.1071429,81.42857143 +25618,427.0166667,1526,456,,272.5,81.42857143 +25619,427.0333333,1516,457,,270.7142857,81.60714286 +25620,427.05,1505,458,,268.75,81.78571429 +25621,427.0666667,1494,458,,266.7857143,81.78571429 +25622,427.0833333,1483,458,,264.8214286,81.78571429 +25623,427.1,1472,459,,262.8571429,81.96428571 +25624,427.1166667,1459,459,,260.5357143,81.96428571 +25625,427.1333333,1447,459,,258.3928571,81.96428571 +25626,427.15,1434,460,,256.0714286,82.14285714 +25627,427.1666667,1421,460,,253.75,82.14285714 +25628,427.1833333,1408,460,,251.4285714,82.14285714 +25629,427.2,1396,460,,249.2857143,82.14285714 +25630,427.2166667,1383,461,,246.9642857,82.32142857 +25631,427.2333333,1370,461,,244.6428571,82.32142857 +25632,427.25,1357,461,,242.3214286,82.32142857 +25633,427.2666667,1345,461,,240.1785714,82.32142857 +25634,427.2833333,1333,460,,238.0357143,82.14285714 +25635,427.3,1321,460,,235.8928571,82.14285714 +25636,427.3166667,1310,460,,233.9285714,82.14285714 +25637,427.3333333,1299,460,,231.9642857,82.14285714 +25638,427.35,1288,459,,230,81.96428571 +25639,427.3666667,1278,459,,228.2142857,81.96428571 +25640,427.3833333,1269,459,,226.6071429,81.96428571 +25641,427.4,1260,458,,225,81.78571429 +25642,427.4166667,1253,458,,223.75,81.78571429 +25643,427.4333333,1245,458,,222.3214286,81.78571429 +25644,427.45,1239,457,,221.25,81.60714286 +25645,427.4666667,1233,457,,220.1785714,81.60714286 +25646,427.4833333,1228,457,,219.2857143,81.60714286 +25647,427.5,1224,457,,218.5714286,81.60714286 +25648,427.5166667,1221,456,,218.0357143,81.42857143 +25649,427.5333333,1219,456,,217.6785714,81.42857143 +25650,427.55,1218,456,,217.5,81.42857143 +25651,427.5666667,1218,456,,217.5,81.42857143 +25652,427.5833333,1218,456,,217.5,81.42857143 +25653,427.6,1219,456,,217.6785714,81.42857143 +25654,427.6166667,1222,456,,218.2142857,81.42857143 +25655,427.6333333,1225,456,,218.75,81.42857143 +25656,427.65,1229,456,,219.4642857,81.42857143 +25657,427.6666667,1234,456,,220.3571429,81.42857143 +25658,427.6833333,1239,457,,221.25,81.60714286 +25659,427.7,1246,457,,222.5,81.60714286 +25660,427.7166667,1254,457,,223.9285714,81.60714286 +25661,427.7333333,1262,458,,225.3571429,81.78571429 +25662,427.75,1270,458,,226.7857143,81.78571429 +25663,427.7666667,1280,458,,228.5714286,81.78571429 +25664,427.7833333,1290,458,,230.3571429,81.78571429 +25665,427.8,1300,459,,232.1428571,81.96428571 +25666,427.8166667,1311,459,,234.1071429,81.96428571 +25667,427.8333333,1323,459,,236.25,81.96428571 +25668,427.85,1334,459,,238.2142857,81.96428571 +25669,427.8666667,1346,460,,240.3571429,82.14285714 +25670,427.8833333,1359,460,,242.6785714,82.14285714 +25671,427.9,1372,460,,245,82.14285714 +25672,427.9166667,1385,459,,247.3214286,81.96428571 +25673,427.9333333,1397,459,,249.4642857,81.96428571 +25674,427.95,1410,459,,251.7857143,81.96428571 +25675,427.9666667,1423,459,,254.1071429,81.96428571 +25676,427.9833333,1436,458,,256.4285714,81.78571429 +25677,428,1449,458,,258.75,81.78571429 +25678,428.0166667,1461,458,,260.8928571,81.78571429 +25679,428.0333333,1473,457,,263.0357143,81.60714286 +25680,428.05,1485,457,,265.1785714,81.60714286 +25681,428.0666667,1496,457,,267.1428571,81.60714286 +25682,428.0833333,1507,457,,269.1071429,81.60714286 +25683,428.1,1517,456,,270.8928571,81.42857143 +25684,428.1166667,1527,455,,272.6785714,81.25 +25685,428.1333333,1536,455,,274.2857143,81.25 +25686,428.15,1545,454,,275.8928571,81.07142857 +25687,428.1666667,1552,454,,277.1428571,81.07142857 +25688,428.1833333,1559,454,,278.3928571,81.07142857 +25689,428.2,1565,453,,279.4642857,80.89285714 +25690,428.2166667,1571,453,,280.5357143,80.89285714 +25691,428.2333333,1575,453,,281.25,80.89285714 +25692,428.25,1579,453,,281.9642857,80.89285714 +25693,428.2666667,1582,453,,282.5,80.89285714 +25694,428.2833333,1584,453,,282.8571429,80.89285714 +25695,428.3,1584,453,,282.8571429,80.89285714 +25696,428.3166667,1584,453,,282.8571429,80.89285714 +25697,428.3333333,1584,453,,282.8571429,80.89285714 +25698,428.35,1582,453,,282.5,80.89285714 +25699,428.3666667,1580,453,,282.1428571,80.89285714 +25700,428.3833333,1576,453,,281.4285714,80.89285714 +25701,428.4,1572,454,,280.7142857,81.07142857 +25702,428.4166667,1566,454,,279.6428571,81.07142857 +25703,428.4333333,1560,454,,278.5714286,81.07142857 +25704,428.45,1554,455,,277.5,81.25 +25705,428.4666667,1546,455,,276.0714286,81.25 +25706,428.4833333,1538,456,,274.6428571,81.42857143 +25707,428.5,1529,456,,273.0357143,81.42857143 +25708,428.5166667,1519,457,,271.25,81.60714286 +25709,428.5333333,1509,457,,269.4642857,81.60714286 +25710,428.55,1498,457,,267.5,81.60714286 +25711,428.5666667,1487,458,,265.5357143,81.78571429 +25712,428.5833333,1476,459,,263.5714286,81.96428571 +25713,428.6,1464,459,,261.4285714,81.96428571 +25714,428.6166667,1452,459,,259.2857143,81.96428571 +25715,428.6333333,1439,459,,256.9642857,81.96428571 +25716,428.65,1426,460,,254.6428571,82.14285714 +25717,428.6666667,1414,460,,252.5,82.14285714 +25718,428.6833333,1401,460,,250.1785714,82.14285714 +25719,428.7,1388,460,,247.8571429,82.14285714 +25720,428.7166667,1375,460,,245.5357143,82.14285714 +25721,428.7333333,1362,461,,243.2142857,82.32142857 +25722,428.75,1350,461,,241.0714286,82.32142857 +25723,428.7666667,1338,461,,238.9285714,82.32142857 +25724,428.7833333,1326,460,,236.7857143,82.14285714 +25725,428.8,1315,460,,234.8214286,82.14285714 +25726,428.8166667,1304,460,,232.8571429,82.14285714 +25727,428.8333333,1293,459,,230.8928571,81.96428571 +25728,428.85,1283,459,,229.1071429,81.96428571 +25729,428.8666667,1273,458,,227.3214286,81.78571429 +25730,428.8833333,1264,458,,225.7142857,81.78571429 +25731,428.9,1256,458,,224.2857143,81.78571429 +25732,428.9166667,1249,457,,223.0357143,81.60714286 +25733,428.9333333,1242,457,,221.7857143,81.60714286 +25734,428.95,1235,457,,220.5357143,81.60714286 +25735,428.9666667,1230,457,,219.6428571,81.60714286 +25736,428.9833333,1226,456,,218.9285714,81.42857143 +25737,429,1223,456,,218.3928571,81.42857143 +25738,429.0166667,1220,456,,217.8571429,81.42857143 +25739,429.0333333,1218,456,,217.5,81.42857143 +25740,429.05,1218,456,,217.5,81.42857143 +25741,429.0666667,1218,456,,217.5,81.42857143 +25742,429.0833333,1218,456,,217.5,81.42857143 +25743,429.1,1220,456,,217.8571429,81.42857143 +25744,429.1166667,1223,456,,218.3928571,81.42857143 +25745,429.1333333,1227,456,,219.1071429,81.42857143 +25746,429.15,1231,456,,219.8214286,81.42857143 +25747,429.1666667,1237,456,,220.8928571,81.42857143 +25748,429.1833333,1243,457,,221.9642857,81.60714286 +25749,429.2,1250,457,,223.2142857,81.60714286 +25750,429.2166667,1257,457,,224.4642857,81.60714286 +25751,429.2333333,1266,457,,226.0714286,81.60714286 +25752,429.25,1275,458,,227.6785714,81.78571429 +25753,429.2666667,1284,458,,229.2857143,81.78571429 +25754,429.2833333,1295,458,,231.25,81.78571429 +25755,429.3,1306,459,,233.2142857,81.96428571 +25756,429.3166667,1317,459,,235.1785714,81.96428571 +25757,429.3333333,1329,459,,237.3214286,81.96428571 +25758,429.35,1341,459,,239.4642857,81.96428571 +25759,429.3666667,1353,459,,241.6071429,81.96428571 +25760,429.3833333,1365,459,,243.75,81.96428571 +25761,429.4,1378,459,,246.0714286,81.96428571 +25762,429.4166667,1391,459,,248.3928571,81.96428571 +25763,429.4333333,1404,459,,250.7142857,81.96428571 +25764,429.45,1417,459,,253.0357143,81.96428571 +25765,429.4666667,1430,459,,255.3571429,81.96428571 +25766,429.4833333,1442,458,,257.5,81.78571429 +25767,429.5,1455,458,,259.8214286,81.78571429 +25768,429.5166667,1467,458,,261.9642857,81.78571429 +25769,429.5333333,1479,457,,264.1071429,81.60714286 +25770,429.55,1490,457,,266.0714286,81.60714286 +25771,429.5666667,1501,456,,268.0357143,81.42857143 +25772,429.5833333,1512,456,,270,81.42857143 +25773,429.6,1522,456,,271.7857143,81.42857143 +25774,429.6166667,1531,455,,273.3928571,81.25 +25775,429.6333333,1540,455,,275,81.25 +25776,429.65,1548,454,,276.4285714,81.07142857 +25777,429.6666667,1555,454,,277.6785714,81.07142857 +25778,429.6833333,1562,454,,278.9285714,81.07142857 +25779,429.7,1567,453,,279.8214286,80.89285714 +25780,429.7166667,1572,453,,280.7142857,80.89285714 +25781,429.7333333,1576,453,,281.4285714,80.89285714 +25782,429.75,1580,453,,282.1428571,80.89285714 +25783,429.7666667,1582,453,,282.5,80.89285714 +25784,429.7833333,1583,453,,282.6785714,80.89285714 +25785,429.8,1583,453,,282.6785714,80.89285714 +25786,429.8166667,1583,453,,282.6785714,80.89285714 +25787,429.8333333,1582,453,,282.5,80.89285714 +25788,429.85,1580,453,,282.1428571,80.89285714 +25789,429.8666667,1577,453,,281.6071429,80.89285714 +25790,429.8833333,1573,453,,280.8928571,80.89285714 +25791,429.9,1568,454,,280,81.07142857 +25792,429.9166667,1563,454,,279.1071429,81.07142857 +25793,429.9333333,1556,455,,277.8571429,81.25 +25794,429.95,1549,455,,276.6071429,81.25 +25795,429.9666667,1541,456,,275.1785714,81.42857143 +25796,429.9833333,1533,456,,273.75,81.42857143 +25797,430,1523,457,,271.9642857,81.60714286 +25798,430.0166667,1513,457,,270.1785714,81.60714286 +25799,430.0333333,1503,457,,268.3928571,81.60714286 +25800,430.05,1492,458,,266.4285714,81.78571429 +25801,430.0666667,1481,458,,264.4642857,81.78571429 +25802,430.0833333,1469,458,,262.3214286,81.78571429 +25803,430.1,1457,459,,260.1785714,81.96428571 +25804,430.1166667,1445,459,,258.0357143,81.96428571 +25805,430.1333333,1433,459,,255.8928571,81.96428571 +25806,430.15,1420,460,,253.5714286,82.14285714 +25807,430.1666667,1407,460,,251.25,82.14285714 +25808,430.1833333,1394,460,,248.9285714,82.14285714 +25809,430.2,1381,460,,246.6071429,82.14285714 +25810,430.2166667,1369,460,,244.4642857,82.14285714 +25811,430.2333333,1356,460,,242.1428571,82.14285714 +25812,430.25,1344,460,,240,82.14285714 +25813,430.2666667,1332,460,,237.8571429,82.14285714 +25814,430.2833333,1320,460,,235.7142857,82.14285714 +25815,430.3,1309,460,,233.75,82.14285714 +25816,430.3166667,1298,460,,231.7857143,82.14285714 +25817,430.3333333,1288,459,,230,81.96428571 +25818,430.35,1278,459,,228.2142857,81.96428571 +25819,430.3666667,1269,458,,226.6071429,81.78571429 +25820,430.3833333,1260,458,,225,81.78571429 +25821,430.4,1253,458,,223.75,81.78571429 +25822,430.4166667,1246,457,,222.5,81.60714286 +25823,430.4333333,1239,457,,221.25,81.60714286 +25824,430.45,1233,457,,220.1785714,81.60714286 +25825,430.4666667,1229,457,,219.4642857,81.60714286 +25826,430.4833333,1225,456,,218.75,81.42857143 +25827,430.5,1222,456,,218.2142857,81.42857143 +25828,430.5166667,1220,456,,217.8571429,81.42857143 +25829,430.5333333,1219,456,,217.6785714,81.42857143 +25830,430.55,1219,456,,217.6785714,81.42857143 +25831,430.5666667,1219,456,,217.6785714,81.42857143 +25832,430.5833333,1220,456,,217.8571429,81.42857143 +25833,430.6,1222,456,,218.2142857,81.42857143 +25834,430.6166667,1226,456,,218.9285714,81.42857143 +25835,430.6333333,1230,456,,219.6428571,81.42857143 +25836,430.65,1235,456,,220.5357143,81.42857143 +25837,430.6666667,1240,457,,221.4285714,81.60714286 +25838,430.6833333,1247,457,,222.6785714,81.60714286 +25839,430.7,1254,457,,223.9285714,81.60714286 +25840,430.7166667,1262,457,,225.3571429,81.60714286 +25841,430.7333333,1271,458,,226.9642857,81.78571429 +25842,430.75,1280,458,,228.5714286,81.78571429 +25843,430.7666667,1290,458,,230.3571429,81.78571429 +25844,430.7833333,1300,459,,232.1428571,81.96428571 +25845,430.8,1311,459,,234.1071429,81.96428571 +25846,430.8166667,1323,459,,236.25,81.96428571 +25847,430.8333333,1334,459,,238.2142857,81.96428571 +25848,430.85,1347,459,,240.5357143,81.96428571 +25849,430.8666667,1359,459,,242.6785714,81.96428571 +25850,430.8833333,1372,459,,245,81.96428571 +25851,430.9,1384,459,,247.1428571,81.96428571 +25852,430.9166667,1397,459,,249.4642857,81.96428571 +25853,430.9333333,1410,459,,251.7857143,81.96428571 +25854,430.95,1423,459,,254.1071429,81.96428571 +25855,430.9666667,1435,458,,256.25,81.78571429 +25856,430.9833333,1448,458,,258.5714286,81.78571429 +25857,431,1460,458,,260.7142857,81.78571429 +25858,431.0166667,1472,457,,262.8571429,81.60714286 +25859,431.0333333,1484,457,,265,81.60714286 +25860,431.05,1495,457,,266.9642857,81.60714286 +25861,431.0666667,1506,456,,268.9285714,81.42857143 +25862,431.0833333,1516,456,,270.7142857,81.42857143 +25863,431.1,1526,455,,272.5,81.25 +25864,431.1166667,1534,455,,273.9285714,81.25 +25865,431.1333333,1543,455,,275.5357143,81.25 +25866,431.15,1551,454,,276.9642857,81.07142857 +25867,431.1666667,1557,454,,278.0357143,81.07142857 +25868,431.1833333,1564,454,,279.2857143,81.07142857 +25869,431.2,1569,453,,280.1785714,80.89285714 +25870,431.2166667,1573,453,,280.8928571,80.89285714 +25871,431.2333333,1577,453,,281.6071429,80.89285714 +25872,431.25,1580,453,,282.1428571,80.89285714 +25873,431.2666667,1582,453,,282.5,80.89285714 +25874,431.2833333,1582,452,,282.5,80.71428571 +25875,431.3,1582,452,,282.5,80.71428571 +25876,431.3166667,1582,452,,282.5,80.71428571 +25877,431.3333333,1580,453,,282.1428571,80.89285714 +25878,431.35,1577,453,,281.6071429,80.89285714 +25879,431.3666667,1574,453,,281.0714286,80.89285714 +25880,431.3833333,1570,454,,280.3571429,81.07142857 +25881,431.4,1564,454,,279.2857143,81.07142857 +25882,431.4166667,1558,454,,278.2142857,81.07142857 +25883,431.4333333,1552,455,,277.1428571,81.25 +25884,431.45,1544,455,,275.7142857,81.25 +25885,431.4666667,1536,456,,274.2857143,81.42857143 +25886,431.4833333,1527,456,,272.6785714,81.42857143 +25887,431.5,1518,457,,271.0714286,81.60714286 +25888,431.5166667,1508,457,,269.2857143,81.60714286 +25889,431.5333333,1497,457,,267.3214286,81.60714286 +25890,431.55,1486,458,,265.3571429,81.78571429 +25891,431.5666667,1475,458,,263.3928571,81.78571429 +25892,431.5833333,1463,458,,261.25,81.78571429 +25893,431.6,1451,459,,259.1071429,81.96428571 +25894,431.6166667,1438,459,,256.7857143,81.96428571 +25895,431.6333333,1425,460,,254.4642857,82.14285714 +25896,431.65,1413,460,,252.3214286,82.14285714 +25897,431.6666667,1400,460,,250,82.14285714 +25898,431.6833333,1387,460,,247.6785714,82.14285714 +25899,431.7,1375,460,,245.5357143,82.14285714 +25900,431.7166667,1362,460,,243.2142857,82.14285714 +25901,431.7333333,1350,460,,241.0714286,82.14285714 +25902,431.75,1338,460,,238.9285714,82.14285714 +25903,431.7666667,1326,460,,236.7857143,82.14285714 +25904,431.7833333,1315,460,,234.8214286,82.14285714 +25905,431.8,1303,460,,232.6785714,82.14285714 +25906,431.8166667,1293,459,,230.8928571,81.96428571 +25907,431.8333333,1283,459,,229.1071429,81.96428571 +25908,431.85,1273,458,,227.3214286,81.78571429 +25909,431.8666667,1265,458,,225.8928571,81.78571429 +25910,431.8833333,1257,458,,224.4642857,81.78571429 +25911,431.9,1249,457,,223.0357143,81.60714286 +25912,431.9166667,1243,457,,221.9642857,81.60714286 +25913,431.9333333,1236,457,,220.7142857,81.60714286 +25914,431.95,1232,457,,220,81.60714286 +25915,431.9666667,1227,456,,219.1071429,81.42857143 +25916,431.9833333,1224,456,,218.5714286,81.42857143 +25917,432,1221,456,,218.0357143,81.42857143 +25918,432.0166667,1219,456,,217.6785714,81.42857143 +25919,432.0333333,1219,456,,217.6785714,81.42857143 +25920,432.05,1219,456,,217.6785714,81.42857143 +25921,432.0666667,1220,456,,217.8571429,81.42857143 +25922,432.0833333,1222,456,,218.2142857,81.42857143 +25923,432.1,1224,456,,218.5714286,81.42857143 +25924,432.1166667,1228,456,,219.2857143,81.42857143 +25925,432.1333333,1233,456,,220.1785714,81.42857143 +25926,432.15,1238,456,,221.0714286,81.42857143 +25927,432.1666667,1244,456,,222.1428571,81.42857143 +25928,432.1833333,1251,457,,223.3928571,81.60714286 +25929,432.2,1259,457,,224.8214286,81.60714286 +25930,432.2166667,1267,457,,226.25,81.60714286 +25931,432.2333333,1276,458,,227.8571429,81.78571429 +25932,432.25,1285,458,,229.4642857,81.78571429 +25933,432.2666667,1296,458,,231.4285714,81.78571429 +25934,432.2833333,1306,458,,233.2142857,81.78571429 +25935,432.3,1318,459,,235.3571429,81.96428571 +25936,432.3166667,1329,459,,237.3214286,81.96428571 +25937,432.3333333,1341,459,,239.4642857,81.96428571 +25938,432.35,1353,459,,241.6071429,81.96428571 +25939,432.3666667,1366,459,,243.9285714,81.96428571 +25940,432.3833333,1378,459,,246.0714286,81.96428571 +25941,432.4,1391,459,,248.3928571,81.96428571 +25942,432.4166667,1404,459,,250.7142857,81.96428571 +25943,432.4333333,1417,458,,253.0357143,81.78571429 +25944,432.45,1430,458,,255.3571429,81.78571429 +25945,432.4666667,1442,458,,257.5,81.78571429 +25946,432.4833333,1454,457,,259.6428571,81.60714286 +25947,432.5,1467,457,,261.9642857,81.60714286 +25948,432.5166667,1478,457,,263.9285714,81.60714286 +25949,432.5333333,1490,457,,266.0714286,81.60714286 +25950,432.55,1501,456,,268.0357143,81.42857143 +25951,432.5666667,1511,456,,269.8214286,81.42857143 +25952,432.5833333,1521,455,,271.6071429,81.25 +25953,432.6,1530,455,,273.2142857,81.25 +25954,432.6166667,1539,454,,274.8214286,81.07142857 +25955,432.6333333,1547,454,,276.25,81.07142857 +25956,432.65,1554,454,,277.5,81.07142857 +25957,432.6666667,1561,453,,278.75,80.89285714 +25958,432.6833333,1566,453,,279.6428571,80.89285714 +25959,432.7,1571,453,,280.5357143,80.89285714 +25960,432.7166667,1575,453,,281.25,80.89285714 +25961,432.7333333,1578,452,,281.7857143,80.71428571 +25962,432.75,1581,452,,282.3214286,80.71428571 +25963,432.7666667,1582,452,,282.5,80.71428571 +25964,432.7833333,1582,452,,282.5,80.71428571 +25965,432.8,1582,452,,282.5,80.71428571 +25966,432.8166667,1581,452,,282.3214286,80.71428571 +25967,432.8333333,1579,453,,281.9642857,80.89285714 +25968,432.85,1576,453,,281.4285714,80.89285714 +25969,432.8666667,1572,453,,280.7142857,80.89285714 +25970,432.8833333,1567,453,,279.8214286,80.89285714 +25971,432.9,1561,454,,278.75,81.07142857 +25972,432.9166667,1555,454,,277.6785714,81.07142857 +25973,432.9333333,1548,455,,276.4285714,81.25 +25974,432.95,1540,455,,275,81.25 +25975,432.9666667,1531,456,,273.3928571,81.42857143 +25976,432.9833333,1522,456,,271.7857143,81.42857143 +25977,433,1512,457,,270,81.60714286 +25978,433.0166667,1502,457,,268.2142857,81.60714286 +25979,433.0333333,1491,457,,266.25,81.60714286 +25980,433.05,1480,458,,264.2857143,81.78571429 +25981,433.0666667,1468,458,,262.1428571,81.78571429 +25982,433.0833333,1456,459,,260,81.96428571 +25983,433.1,1444,459,,257.8571429,81.96428571 +25984,433.1166667,1432,459,,255.7142857,81.96428571 +25985,433.1333333,1419,459,,253.3928571,81.96428571 +25986,433.15,1406,459,,251.0714286,81.96428571 +25987,433.1666667,1394,460,,248.9285714,82.14285714 +25988,433.1833333,1381,460,,246.6071429,82.14285714 +25989,433.2,1368,460,,244.2857143,82.14285714 +25990,433.2166667,1356,460,,242.1428571,82.14285714 +25991,433.2333333,1344,460,,240,82.14285714 +25992,433.25,1332,460,,237.8571429,82.14285714 +25993,433.2666667,1321,460,,235.8928571,82.14285714 +25994,433.2833333,1309,459,,233.75,81.96428571 +25995,433.3,1298,459,,231.7857143,81.96428571 +25996,433.3166667,1288,459,,230,81.96428571 +25997,433.3333333,1278,458,,228.2142857,81.78571429 +25998,433.35,1269,458,,226.6071429,81.78571429 +25999,433.3666667,1261,457,,225.1785714,81.60714286 +26000,433.3833333,1253,457,,223.75,81.60714286 +26001,433.4,1246,457,,222.5,81.60714286 +26002,433.4166667,1240,457,,221.4285714,81.60714286 +26003,433.4333333,1235,457,,220.5357143,81.60714286 +26004,433.45,1230,456,,219.6428571,81.42857143 +26005,433.4666667,1226,456,,218.9285714,81.42857143 +26006,433.4833333,1223,456,,218.3928571,81.42857143 +26007,433.5,1221,456,,218.0357143,81.42857143 +26008,433.5166667,1220,456,,217.8571429,81.42857143 +26009,433.5333333,1220,455,,217.8571429,81.25 +26010,433.55,1220,455,,217.8571429,81.25 +26011,433.5666667,1221,456,,218.0357143,81.42857143 +26012,433.5833333,1224,456,,218.5714286,81.42857143 +26013,433.6,1227,456,,219.1071429,81.42857143 +26014,433.6166667,1231,456,,219.8214286,81.42857143 +26015,433.6333333,1236,456,,220.7142857,81.42857143 +26016,433.65,1242,456,,221.7857143,81.42857143 +26017,433.6666667,1248,457,,222.8571429,81.60714286 +26018,433.6833333,1255,457,,224.1071429,81.60714286 +26019,433.7,1263,457,,225.5357143,81.60714286 +26020,433.7166667,1272,457,,227.1428571,81.60714286 +26021,433.7333333,1281,457,,228.75,81.60714286 +26022,433.75,1291,458,,230.5357143,81.78571429 +26023,433.7666667,1301,458,,232.3214286,81.78571429 +26024,433.7833333,1313,458,,234.4642857,81.78571429 +26025,433.8,1324,459,,236.4285714,81.96428571 +26026,433.8166667,1335,459,,238.3928571,81.96428571 +26027,433.8333333,1348,459,,240.7142857,81.96428571 +26028,433.85,1360,459,,242.8571429,81.96428571 +26029,433.8666667,1372,459,,245,81.96428571 +26030,433.8833333,1385,459,,247.3214286,81.96428571 +26031,433.9,1397,458,,249.4642857,81.78571429 +26032,433.9166667,1410,458,,251.7857143,81.78571429 +26033,433.9333333,1423,458,,254.1071429,81.78571429 +26034,433.95,1435,458,,256.25,81.78571429 +26035,433.9666667,1448,457,,258.5714286,81.60714286 +26036,433.9833333,1460,457,,260.7142857,81.60714286 +26037,434,1472,457,,262.8571429,81.60714286 +26038,434.0166667,1484,456,,265,81.42857143 +26039,434.0333333,1494,456,,266.7857143,81.42857143 +26040,434.05,1505,456,,268.75,81.42857143 +26041,434.0666667,1515,455,,270.5357143,81.25 +26042,434.0833333,1525,455,,272.3214286,81.25 +26043,434.1,1534,455,,273.9285714,81.25 +26044,434.1166667,1542,454,,275.3571429,81.07142857 +26045,434.1333333,1550,454,,276.7857143,81.07142857 +26046,434.15,1556,454,,277.8571429,81.07142857 +26047,434.1666667,1563,453,,279.1071429,80.89285714 +26048,434.1833333,1568,453,,280,80.89285714 +26049,434.2,1572,453,,280.7142857,80.89285714 +26050,434.2166667,1576,453,,281.4285714,80.89285714 +26051,434.2333333,1579,453,,281.9642857,80.89285714 +26052,434.25,1580,453,,282.1428571,80.89285714 +26053,434.2666667,1580,452,,282.1428571,80.71428571 +26054,434.2833333,1580,452,,282.1428571,80.71428571 +26055,434.3,1580,452,,282.1428571,80.71428571 +26056,434.3166667,1579,453,,281.9642857,80.89285714 +26057,434.3333333,1576,453,,281.4285714,80.89285714 +26058,434.35,1573,453,,280.8928571,80.89285714 +26059,434.3666667,1569,453,,280.1785714,80.89285714 +26060,434.3833333,1563,454,,279.1071429,81.07142857 +26061,434.4,1557,454,,278.0357143,81.07142857 +26062,434.4166667,1551,455,,276.9642857,81.25 +26063,434.4333333,1543,455,,275.5357143,81.25 +26064,434.45,1535,455,,274.1071429,81.25 +26065,434.4666667,1526,456,,272.5,81.42857143 +26066,434.4833333,1517,456,,270.8928571,81.42857143 +26067,434.5,1507,457,,269.1071429,81.60714286 +26068,434.5166667,1496,457,,267.1428571,81.60714286 +26069,434.5333333,1485,458,,265.1785714,81.78571429 +26070,434.55,1474,458,,263.2142857,81.78571429 +26071,434.5666667,1462,458,,261.0714286,81.78571429 +26072,434.5833333,1450,459,,258.9285714,81.96428571 +26073,434.6,1438,459,,256.7857143,81.96428571 +26074,434.6166667,1425,459,,254.4642857,81.96428571 +26075,434.6333333,1412,459,,252.1428571,81.96428571 +26076,434.65,1400,460,,250,82.14285714 +26077,434.6666667,1387,460,,247.6785714,82.14285714 +26078,434.6833333,1375,460,,245.5357143,82.14285714 +26079,434.7,1362,460,,243.2142857,82.14285714 +26080,434.7166667,1350,460,,241.0714286,82.14285714 +26081,434.7333333,1338,460,,238.9285714,82.14285714 +26082,434.75,1326,460,,236.7857143,82.14285714 +26083,434.7666667,1315,459,,234.8214286,81.96428571 +26084,434.7833333,1304,459,,232.8571429,81.96428571 +26085,434.8,1293,459,,230.8928571,81.96428571 +26086,434.8166667,1283,458,,229.1071429,81.78571429 +26087,434.8333333,1274,458,,227.5,81.78571429 +26088,434.85,1265,458,,225.8928571,81.78571429 +26089,434.8666667,1257,457,,224.4642857,81.60714286 +26090,434.8833333,1250,457,,223.2142857,81.60714286 +26091,434.9,1243,457,,221.9642857,81.60714286 +26092,434.9166667,1237,457,,220.8928571,81.60714286 +26093,434.9333333,1232,456,,220,81.42857143 +26094,434.95,1228,456,,219.2857143,81.42857143 +26095,434.9666667,1224,456,,218.5714286,81.42857143 +26096,434.9833333,1222,456,,218.2142857,81.42857143 +26097,435,1220,456,,217.8571429,81.42857143 +26098,435.0166667,1220,456,,217.8571429,81.42857143 +26099,435.0333333,1220,456,,217.8571429,81.42857143 +26100,435.05,1221,456,,218.0357143,81.42857143 +26101,435.0666667,1223,456,,218.3928571,81.42857143 +26102,435.0833333,1225,456,,218.75,81.42857143 +26103,435.1,1229,456,,219.4642857,81.42857143 +26104,435.1166667,1234,456,,220.3571429,81.42857143 +26105,435.1333333,1239,456,,221.25,81.42857143 +26106,435.15,1245,456,,222.3214286,81.42857143 +26107,435.1666667,1252,457,,223.5714286,81.60714286 +26108,435.1833333,1259,457,,224.8214286,81.60714286 +26109,435.2,1268,457,,226.4285714,81.60714286 +26110,435.2166667,1277,457,,228.0357143,81.60714286 +26111,435.2333333,1286,458,,229.6428571,81.78571429 +26112,435.25,1296,458,,231.4285714,81.78571429 +26113,435.2666667,1307,458,,233.3928571,81.78571429 +26114,435.2833333,1318,458,,235.3571429,81.78571429 +26115,435.3,1330,459,,237.5,81.96428571 +26116,435.3166667,1341,459,,239.4642857,81.96428571 +26117,435.3333333,1354,459,,241.7857143,81.96428571 +26118,435.35,1366,459,,243.9285714,81.96428571 +26119,435.3666667,1379,459,,246.25,81.96428571 +26120,435.3833333,1391,458,,248.3928571,81.78571429 +26121,435.4,1404,458,,250.7142857,81.78571429 +26122,435.4166667,1416,458,,252.8571429,81.78571429 +26123,435.4333333,1429,458,,255.1785714,81.78571429 +26124,435.45,1442,458,,257.5,81.78571429 +26125,435.4666667,1454,457,,259.6428571,81.60714286 +26126,435.4833333,1466,457,,261.7857143,81.60714286 +26127,435.5,1478,457,,263.9285714,81.60714286 +26128,435.5166667,1489,456,,265.8928571,81.42857143 +26129,435.5333333,1500,456,,267.8571429,81.42857143 +26130,435.55,1510,456,,269.6428571,81.42857143 +26131,435.5666667,1520,455,,271.4285714,81.25 +26132,435.5833333,1529,455,,273.0357143,81.25 +26133,435.6,1538,455,,274.6428571,81.25 +26134,435.6166667,1546,454,,276.0714286,81.07142857 +26135,435.6333333,1553,454,,277.3214286,81.07142857 +26136,435.65,1560,453,,278.5714286,80.89285714 +26137,435.6666667,1565,453,,279.4642857,80.89285714 +26138,435.6833333,1570,453,,280.3571429,80.89285714 +26139,435.7,1574,453,,281.0714286,80.89285714 +26140,435.7166667,1577,453,,281.6071429,80.89285714 +26141,435.7333333,1580,453,,282.1428571,80.89285714 +26142,435.75,1581,452,,282.3214286,80.71428571 +26143,435.7666667,1581,453,,282.3214286,80.89285714 +26144,435.7833333,1581,453,,282.3214286,80.89285714 +26145,435.8,1580,453,,282.1428571,80.89285714 +26146,435.8166667,1577,453,,281.6071429,80.89285714 +26147,435.8333333,1574,453,,281.0714286,80.89285714 +26148,435.85,1570,453,,280.3571429,80.89285714 +26149,435.8666667,1566,453,,279.6428571,80.89285714 +26150,435.8833333,1560,454,,278.5714286,81.07142857 +26151,435.9,1554,454,,277.5,81.07142857 +26152,435.9166667,1547,454,,276.25,81.07142857 +26153,435.9333333,1539,455,,274.8214286,81.25 +26154,435.95,1530,456,,273.2142857,81.42857143 +26155,435.9666667,1521,456,,271.6071429,81.42857143 +26156,435.9833333,1511,457,,269.8214286,81.60714286 +26157,436,1501,457,,268.0357143,81.60714286 +26158,436.0166667,1490,457,,266.0714286,81.60714286 +26159,436.0333333,1479,458,,264.1071429,81.78571429 +26160,436.05,1468,458,,262.1428571,81.78571429 +26161,436.0666667,1456,459,,260,81.96428571 +26162,436.0833333,1444,459,,257.8571429,81.96428571 +26163,436.1,1431,459,,255.5357143,81.96428571 +26164,436.1166667,1419,459,,253.3928571,81.96428571 +26165,436.1333333,1406,460,,251.0714286,82.14285714 +26166,436.15,1393,460,,248.75,82.14285714 +26167,436.1666667,1381,460,,246.6071429,82.14285714 +26168,436.1833333,1368,460,,244.2857143,82.14285714 +26169,436.2,1356,460,,242.1428571,82.14285714 +26170,436.2166667,1344,460,,240,82.14285714 +26171,436.2333333,1332,460,,237.8571429,82.14285714 +26172,436.25,1321,460,,235.8928571,82.14285714 +26173,436.2666667,1310,460,,233.9285714,82.14285714 +26174,436.2833333,1299,459,,231.9642857,81.96428571 +26175,436.3,1288,459,,230,81.96428571 +26176,436.3166667,1279,458,,228.3928571,81.78571429 +26177,436.3333333,1270,458,,226.7857143,81.78571429 +26178,436.35,1262,458,,225.3571429,81.78571429 +26179,436.3666667,1254,457,,223.9285714,81.60714286 +26180,436.3833333,1247,457,,222.6785714,81.60714286 +26181,436.4,1240,457,,221.4285714,81.60714286 +26182,436.4166667,1235,456,,220.5357143,81.42857143 +26183,436.4333333,1230,456,,219.6428571,81.42857143 +26184,436.45,1227,456,,219.1071429,81.42857143 +26185,436.4666667,1224,456,,218.5714286,81.42857143 +26186,436.4833333,1222,456,,218.2142857,81.42857143 +26187,436.5,1221,456,,218.0357143,81.42857143 +26188,436.5166667,1221,456,,218.0357143,81.42857143 +26189,436.5333333,1221,456,,218.0357143,81.42857143 +26190,436.55,1222,456,,218.2142857,81.42857143 +26191,436.5666667,1225,456,,218.75,81.42857143 +26192,436.5833333,1228,456,,219.2857143,81.42857143 +26193,436.6,1232,456,,220,81.42857143 +26194,436.6166667,1237,456,,220.8928571,81.42857143 +26195,436.6333333,1243,456,,221.9642857,81.42857143 +26196,436.65,1249,457,,223.0357143,81.60714286 +26197,436.6666667,1256,457,,224.2857143,81.60714286 +26198,436.6833333,1264,457,,225.7142857,81.60714286 +26199,436.7,1273,458,,227.3214286,81.78571429 +26200,436.7166667,1282,458,,228.9285714,81.78571429 +26201,436.7333333,1292,458,,230.7142857,81.78571429 +26202,436.75,1302,458,,232.5,81.78571429 +26203,436.7666667,1313,458,,234.4642857,81.78571429 +26204,436.7833333,1324,459,,236.4285714,81.96428571 +26205,436.8,1336,459,,238.5714286,81.96428571 +26206,436.8166667,1348,459,,240.7142857,81.96428571 +26207,436.8333333,1360,459,,242.8571429,81.96428571 +26208,436.85,1373,459,,245.1785714,81.96428571 +26209,436.8666667,1385,459,,247.3214286,81.96428571 +26210,436.8833333,1398,459,,249.6428571,81.96428571 +26211,436.9,1411,458,,251.9642857,81.78571429 +26212,436.9166667,1423,458,,254.1071429,81.78571429 +26213,436.9333333,1436,458,,256.4285714,81.78571429 +26214,436.95,1448,458,,258.5714286,81.78571429 +26215,436.9666667,1460,457,,260.7142857,81.60714286 +26216,436.9833333,1472,457,,262.8571429,81.60714286 +26217,437,1483,457,,264.8214286,81.60714286 +26218,437.0166667,1494,456,,266.7857143,81.42857143 +26219,437.0333333,1505,456,,268.75,81.42857143 +26220,437.05,1515,456,,270.5357143,81.42857143 +26221,437.0666667,1524,455,,272.1428571,81.25 +26222,437.0833333,1533,455,,273.75,81.25 +26223,437.1,1542,454,,275.3571429,81.07142857 +26224,437.1166667,1549,454,,276.6071429,81.07142857 +26225,437.1333333,1556,454,,277.8571429,81.07142857 +26226,437.15,1562,453,,278.9285714,80.89285714 +26227,437.1666667,1567,453,,279.8214286,80.89285714 +26228,437.1833333,1571,453,,280.5357143,80.89285714 +26229,437.2,1575,453,,281.25,80.89285714 +26230,437.2166667,1577,453,,281.6071429,80.89285714 +26231,437.2333333,1579,453,,281.9642857,80.89285714 +26232,437.25,1579,453,,281.9642857,80.89285714 +26233,437.2666667,1579,453,,281.9642857,80.89285714 +26234,437.2833333,1579,453,,281.9642857,80.89285714 +26235,437.3,1577,453,,281.6071429,80.89285714 +26236,437.3166667,1575,453,,281.25,80.89285714 +26237,437.3333333,1571,453,,280.5357143,80.89285714 +26238,437.35,1567,454,,279.8214286,81.07142857 +26239,437.3666667,1562,454,,278.9285714,81.07142857 +26240,437.3833333,1556,454,,277.8571429,81.07142857 +26241,437.4,1549,455,,276.6071429,81.25 +26242,437.4166667,1542,455,,275.3571429,81.25 +26243,437.4333333,1534,456,,273.9285714,81.42857143 +26244,437.45,1525,456,,272.3214286,81.42857143 +26245,437.4666667,1515,456,,270.5357143,81.42857143 +26246,437.4833333,1505,457,,268.75,81.60714286 +26247,437.5,1495,457,,266.9642857,81.60714286 +26248,437.5166667,1484,458,,265,81.78571429 +26249,437.5333333,1472,458,,262.8571429,81.78571429 +26250,437.55,1461,459,,260.8928571,81.96428571 +26251,437.5666667,1449,459,,258.75,81.96428571 +26252,437.5833333,1437,459,,256.6071429,81.96428571 +26253,437.6,1424,459,,254.2857143,81.96428571 +26254,437.6166667,1411,460,,251.9642857,82.14285714 +26255,437.6333333,1399,460,,249.8214286,82.14285714 +26256,437.65,1386,460,,247.5,82.14285714 +26257,437.6666667,1374,460,,245.3571429,82.14285714 +26258,437.6833333,1361,460,,243.0357143,82.14285714 +26259,437.7,1349,460,,240.8928571,82.14285714 +26260,437.7166667,1337,460,,238.75,82.14285714 +26261,437.7333333,1326,460,,236.7857143,82.14285714 +26262,437.75,1315,459,,234.8214286,81.96428571 +26263,437.7666667,1304,459,,232.8571429,81.96428571 +26264,437.7833333,1293,459,,230.8928571,81.96428571 +26265,437.8,1283,459,,229.1071429,81.96428571 +26266,437.8166667,1274,458,,227.5,81.78571429 +26267,437.8333333,1265,458,,225.8928571,81.78571429 +26268,437.85,1257,458,,224.4642857,81.78571429 +26269,437.8666667,1250,457,,223.2142857,81.60714286 +26270,437.8833333,1243,457,,221.9642857,81.60714286 +26271,437.9,1238,457,,221.0714286,81.60714286 +26272,437.9166667,1233,456,,220.1785714,81.42857143 +26273,437.9333333,1228,456,,219.2857143,81.42857143 +26274,437.95,1225,456,,218.75,81.42857143 +26275,437.9666667,1223,456,,218.3928571,81.42857143 +26276,437.9833333,1221,455,,218.0357143,81.25 +26277,438,1221,455,,218.0357143,81.25 +26278,438.0166667,1221,455,,218.0357143,81.25 +26279,438.0333333,1222,455,,218.2142857,81.25 +26280,438.05,1224,456,,218.5714286,81.42857143 +26281,438.0666667,1226,456,,218.9285714,81.42857143 +26282,438.0833333,1230,456,,219.6428571,81.42857143 +26283,438.1,1235,456,,220.5357143,81.42857143 +26284,438.1166667,1240,456,,221.4285714,81.42857143 +26285,438.1333333,1246,456,,222.5,81.42857143 +26286,438.15,1253,457,,223.75,81.60714286 +26287,438.1666667,1261,457,,225.1785714,81.60714286 +26288,438.1833333,1269,457,,226.6071429,81.60714286 +26289,438.2,1278,457,,228.2142857,81.60714286 +26290,438.2166667,1287,458,,229.8214286,81.78571429 +26291,438.2333333,1298,458,,231.7857143,81.78571429 +26292,438.25,1308,458,,233.5714286,81.78571429 +26293,438.2666667,1319,458,,235.5357143,81.78571429 +26294,438.2833333,1331,459,,237.6785714,81.96428571 +26295,438.3,1342,459,,239.6428571,81.96428571 +26296,438.3166667,1354,459,,241.7857143,81.96428571 +26297,438.3333333,1367,459,,244.1071429,81.96428571 +26298,438.35,1379,459,,246.25,81.96428571 +26299,438.3666667,1392,459,,248.5714286,81.96428571 +26300,438.3833333,1405,459,,250.8928571,81.96428571 +26301,438.4,1417,458,,253.0357143,81.78571429 +26302,438.4166667,1430,458,,255.3571429,81.78571429 +26303,438.4333333,1442,458,,257.5,81.78571429 +26304,438.45,1454,458,,259.6428571,81.78571429 +26305,438.4666667,1466,457,,261.7857143,81.60714286 +26306,438.4833333,1478,457,,263.9285714,81.60714286 +26307,438.5,1489,457,,265.8928571,81.60714286 +26308,438.5166667,1500,456,,267.8571429,81.42857143 +26309,438.5333333,1510,456,,269.6428571,81.42857143 +26310,438.55,1520,456,,271.4285714,81.42857143 +26311,438.5666667,1529,455,,273.0357143,81.25 +26312,438.5833333,1537,455,,274.4642857,81.25 +26313,438.6,1545,454,,275.8928571,81.07142857 +26314,438.6166667,1552,454,,277.1428571,81.07142857 +26315,438.6333333,1559,454,,278.3928571,81.07142857 +26316,438.65,1564,454,,279.2857143,81.07142857 +26317,438.6666667,1569,453,,280.1785714,80.89285714 +26318,438.6833333,1573,453,,280.8928571,80.89285714 +26319,438.7,1576,453,,281.4285714,80.89285714 +26320,438.7166667,1578,453,,281.7857143,80.89285714 +26321,438.7333333,1579,453,,281.9642857,80.89285714 +26322,438.75,1579,453,,281.9642857,80.89285714 +26323,438.7666667,1579,453,,281.9642857,80.89285714 +26324,438.7833333,1578,453,,281.7857143,80.89285714 +26325,438.8,1576,453,,281.4285714,80.89285714 +26326,438.8166667,1573,453,,280.8928571,80.89285714 +26327,438.8333333,1569,454,,280.1785714,81.07142857 +26328,438.85,1564,454,,279.2857143,81.07142857 +26329,438.8666667,1559,454,,278.3928571,81.07142857 +26330,438.8833333,1552,454,,277.1428571,81.07142857 +26331,438.9,1545,455,,275.8928571,81.25 +26332,438.9166667,1537,455,,274.4642857,81.25 +26333,438.9333333,1529,456,,273.0357143,81.42857143 +26334,438.95,1520,456,,271.4285714,81.42857143 +26335,438.9666667,1510,457,,269.6428571,81.60714286 +26336,438.9833333,1500,457,,267.8571429,81.60714286 +26337,439,1489,458,,265.8928571,81.78571429 +26338,439.0166667,1478,458,,263.9285714,81.78571429 +26339,439.0333333,1466,458,,261.7857143,81.78571429 +26340,439.05,1454,459,,259.6428571,81.96428571 +26341,439.0666667,1442,459,,257.5,81.96428571 +26342,439.0833333,1430,459,,255.3571429,81.96428571 +26343,439.1,1417,460,,253.0357143,82.14285714 +26344,439.1166667,1405,460,,250.8928571,82.14285714 +26345,439.1333333,1392,460,,248.5714286,82.14285714 +26346,439.15,1380,460,,246.4285714,82.14285714 +26347,439.1666667,1367,460,,244.1071429,82.14285714 +26348,439.1833333,1355,460,,241.9642857,82.14285714 +26349,439.2,1343,460,,239.8214286,82.14285714 +26350,439.2166667,1331,460,,237.6785714,82.14285714 +26351,439.2333333,1320,460,,235.7142857,82.14285714 +26352,439.25,1309,460,,233.75,82.14285714 +26353,439.2666667,1298,459,,231.7857143,81.96428571 +26354,439.2833333,1288,459,,230,81.96428571 +26355,439.3,1278,459,,228.2142857,81.96428571 +26356,439.3166667,1270,458,,226.7857143,81.78571429 +26357,439.3333333,1261,458,,225.1785714,81.78571429 +26358,439.35,1254,457,,223.9285714,81.60714286 +26359,439.3666667,1247,457,,222.6785714,81.60714286 +26360,439.3833333,1241,457,,221.6071429,81.60714286 +26361,439.4,1235,456,,220.5357143,81.42857143 +26362,439.4166667,1231,456,,219.8214286,81.42857143 +26363,439.4333333,1227,456,,219.1071429,81.42857143 +26364,439.45,1224,456,,218.5714286,81.42857143 +26365,439.4666667,1222,456,,218.2142857,81.42857143 +26366,439.4833333,1221,456,,218.0357143,81.42857143 +26367,439.5,1221,456,,218.0357143,81.42857143 +26368,439.5166667,1221,456,,218.0357143,81.42857143 +26369,439.5333333,1223,456,,218.3928571,81.42857143 +26370,439.55,1225,456,,218.75,81.42857143 +26371,439.5666667,1229,456,,219.4642857,81.42857143 +26372,439.5833333,1233,456,,220.1785714,81.42857143 +26373,439.6,1238,456,,221.0714286,81.42857143 +26374,439.6166667,1244,456,,222.1428571,81.42857143 +26375,439.6333333,1250,457,,223.2142857,81.60714286 +26376,439.65,1257,457,,224.4642857,81.60714286 +26377,439.6666667,1265,457,,225.8928571,81.60714286 +26378,439.6833333,1274,457,,227.5,81.60714286 +26379,439.7,1283,458,,229.1071429,81.78571429 +26380,439.7166667,1293,458,,230.8928571,81.78571429 +26381,439.7333333,1303,458,,232.6785714,81.78571429 +26382,439.75,1315,459,,234.8214286,81.96428571 +26383,439.7666667,1326,459,,236.7857143,81.96428571 +26384,439.7833333,1337,459,,238.75,81.96428571 +26385,439.8,1349,459,,240.8928571,81.96428571 +26386,439.8166667,1361,459,,243.0357143,81.96428571 +26387,439.8333333,1373,459,,245.1785714,81.96428571 +26388,439.85,1386,459,,247.5,81.96428571 +26389,439.8666667,1399,458,,249.8214286,81.78571429 +26390,439.8833333,1411,458,,251.9642857,81.78571429 +26391,439.9,1424,458,,254.2857143,81.78571429 +26392,439.9166667,1437,458,,256.6071429,81.78571429 +26393,439.9333333,1449,458,,258.75,81.78571429 +26394,439.95,1461,457,,260.8928571,81.60714286 +26395,439.9666667,1472,457,,262.8571429,81.60714286 +26396,439.9833333,1484,457,,265,81.60714286 +26397,440,1494,456,,266.7857143,81.42857143 +26398,440.0166667,1505,456,,268.75,81.42857143 +26399,440.0333333,1515,456,,270.5357143,81.42857143 +26400,440.05,1524,455,,272.1428571,81.25 +26401,440.0666667,1533,455,,273.75,81.25 +26402,440.0833333,1541,454,,275.1785714,81.07142857 +26403,440.1,1549,454,,276.6071429,81.07142857 +26404,440.1166667,1555,454,,277.6785714,81.07142857 +26405,440.1333333,1561,454,,278.75,81.07142857 +26406,440.15,1566,453,,279.6428571,80.89285714 +26407,440.1666667,1571,453,,280.5357143,80.89285714 +26408,440.1833333,1574,453,,281.0714286,80.89285714 +26409,440.2,1577,453,,281.6071429,80.89285714 +26410,440.2166667,1578,453,,281.7857143,80.89285714 +26411,440.2333333,1578,453,,281.7857143,80.89285714 +26412,440.25,1578,453,,281.7857143,80.89285714 +26413,440.2666667,1578,453,,281.7857143,80.89285714 +26414,440.2833333,1576,453,,281.4285714,80.89285714 +26415,440.3,1574,453,,281.0714286,80.89285714 +26416,440.3166667,1570,454,,280.3571429,81.07142857 +26417,440.3333333,1566,454,,279.6428571,81.07142857 +26418,440.35,1561,454,,278.75,81.07142857 +26419,440.3666667,1555,455,,277.6785714,81.25 +26420,440.3833333,1548,455,,276.4285714,81.25 +26421,440.4,1540,455,,275,81.25 +26422,440.4166667,1532,456,,273.5714286,81.42857143 +26423,440.4333333,1523,456,,271.9642857,81.42857143 +26424,440.45,1514,457,,270.3571429,81.60714286 +26425,440.4666667,1504,457,,268.5714286,81.60714286 +26426,440.4833333,1493,457,,266.6071429,81.60714286 +26427,440.5,1482,458,,264.6428571,81.78571429 +26428,440.5166667,1471,458,,262.6785714,81.78571429 +26429,440.5333333,1460,458,,260.7142857,81.78571429 +26430,440.55,1448,459,,258.5714286,81.96428571 +26431,440.5666667,1436,459,,256.4285714,81.96428571 +26432,440.5833333,1423,460,,254.1071429,82.14285714 +26433,440.6,1411,460,,251.9642857,82.14285714 +26434,440.6166667,1398,460,,249.6428571,82.14285714 +26435,440.6333333,1385,460,,247.3214286,82.14285714 +26436,440.65,1373,460,,245.1785714,82.14285714 +26437,440.6666667,1361,460,,243.0357143,82.14285714 +26438,440.6833333,1349,460,,240.8928571,82.14285714 +26439,440.7,1337,460,,238.75,82.14285714 +26440,440.7166667,1325,460,,236.6071429,82.14285714 +26441,440.7333333,1314,460,,234.6428571,82.14285714 +26442,440.75,1303,459,,232.6785714,81.96428571 +26443,440.7666667,1293,459,,230.8928571,81.96428571 +26444,440.7833333,1283,459,,229.1071429,81.96428571 +26445,440.8,1274,458,,227.5,81.78571429 +26446,440.8166667,1266,458,,226.0714286,81.78571429 +26447,440.8333333,1258,458,,224.6428571,81.78571429 +26448,440.85,1250,457,,223.2142857,81.60714286 +26449,440.8666667,1244,457,,222.1428571,81.60714286 +26450,440.8833333,1238,457,,221.0714286,81.60714286 +26451,440.9,1233,456,,220.1785714,81.42857143 +26452,440.9166667,1229,456,,219.4642857,81.42857143 +26453,440.9333333,1226,456,,218.9285714,81.42857143 +26454,440.95,1224,456,,218.5714286,81.42857143 +26455,440.9666667,1222,456,,218.2142857,81.42857143 +26456,440.9833333,1222,456,,218.2142857,81.42857143 +26457,441,1222,456,,218.2142857,81.42857143 +26458,441.0166667,1223,456,,218.3928571,81.42857143 +26459,441.0333333,1225,456,,218.75,81.42857143 +26460,441.05,1228,456,,219.2857143,81.42857143 +26461,441.0666667,1231,456,,219.8214286,81.42857143 +26462,441.0833333,1236,456,,220.7142857,81.42857143 +26463,441.1,1241,456,,221.6071429,81.42857143 +26464,441.1166667,1247,456,,222.6785714,81.42857143 +26465,441.1333333,1254,456,,223.9285714,81.42857143 +26466,441.15,1262,457,,225.3571429,81.60714286 +26467,441.1666667,1270,457,,226.7857143,81.60714286 +26468,441.1833333,1279,458,,228.3928571,81.78571429 +26469,441.2,1289,458,,230.1785714,81.78571429 +26470,441.2166667,1299,458,,231.9642857,81.78571429 +26471,441.2333333,1310,458,,233.9285714,81.78571429 +26472,441.25,1320,459,,235.7142857,81.96428571 +26473,441.2666667,1332,459,,237.8571429,81.96428571 +26474,441.2833333,1344,459,,240,81.96428571 +26475,441.3,1355,459,,241.9642857,81.96428571 +26476,441.3166667,1368,459,,244.2857143,81.96428571 +26477,441.3333333,1380,459,,246.4285714,81.96428571 +26478,441.35,1393,459,,248.75,81.96428571 +26479,441.3666667,1405,459,,250.8928571,81.96428571 +26480,441.3833333,1418,458,,253.2142857,81.78571429 +26481,441.4,1430,458,,255.3571429,81.78571429 +26482,441.4166667,1443,458,,257.6785714,81.78571429 +26483,441.4333333,1455,458,,259.8214286,81.78571429 +26484,441.45,1467,457,,261.9642857,81.60714286 +26485,441.4666667,1478,457,,263.9285714,81.60714286 +26486,441.4833333,1489,457,,265.8928571,81.60714286 +26487,441.5,1500,456,,267.8571429,81.42857143 +26488,441.5166667,1510,456,,269.6428571,81.42857143 +26489,441.5333333,1520,455,,271.4285714,81.25 +26490,441.55,1529,455,,273.0357143,81.25 +26491,441.5666667,1537,455,,274.4642857,81.25 +26492,441.5833333,1545,454,,275.8928571,81.07142857 +26493,441.6,1552,454,,277.1428571,81.07142857 +26494,441.6166667,1558,454,,278.2142857,81.07142857 +26495,441.6333333,1564,453,,279.2857143,80.89285714 +26496,441.65,1568,453,,280,80.89285714 +26497,441.6666667,1572,453,,280.7142857,80.89285714 +26498,441.6833333,1575,453,,281.25,80.89285714 +26499,441.7,1577,453,,281.6071429,80.89285714 +26500,441.7166667,1578,453,,281.7857143,80.89285714 +26501,441.7333333,1578,453,,281.7857143,80.89285714 +26502,441.75,1578,453,,281.7857143,80.89285714 +26503,441.7666667,1577,453,,281.6071429,80.89285714 +26504,441.7833333,1575,453,,281.25,80.89285714 +26505,441.8,1571,453,,280.5357143,80.89285714 +26506,441.8166667,1567,454,,279.8214286,81.07142857 +26507,441.8333333,1563,454,,279.1071429,81.07142857 +26508,441.85,1557,454,,278.0357143,81.07142857 +26509,441.8666667,1551,455,,276.9642857,81.25 +26510,441.8833333,1544,455,,275.7142857,81.25 +26511,441.9,1536,455,,274.2857143,81.25 +26512,441.9166667,1527,456,,272.6785714,81.42857143 +26513,441.9333333,1518,456,,271.0714286,81.42857143 +26514,441.95,1508,457,,269.2857143,81.60714286 +26515,441.9666667,1498,457,,267.5,81.60714286 +26516,441.9833333,1488,458,,265.7142857,81.78571429 +26517,442,1477,458,,263.75,81.78571429 +26518,442.0166667,1465,458,,261.6071429,81.78571429 +26519,442.0333333,1453,459,,259.4642857,81.96428571 +26520,442.05,1441,459,,257.3214286,81.96428571 +26521,442.0666667,1429,459,,255.1785714,81.96428571 +26522,442.0833333,1417,460,,253.0357143,82.14285714 +26523,442.1,1404,460,,250.7142857,82.14285714 +26524,442.1166667,1392,460,,248.5714286,82.14285714 +26525,442.1333333,1379,460,,246.25,82.14285714 +26526,442.15,1367,460,,244.1071429,82.14285714 +26527,442.1666667,1354,460,,241.7857143,82.14285714 +26528,442.1833333,1343,460,,239.8214286,82.14285714 +26529,442.2,1331,460,,237.6785714,82.14285714 +26530,442.2166667,1320,460,,235.7142857,82.14285714 +26531,442.2333333,1309,460,,233.75,82.14285714 +26532,442.25,1298,459,,231.7857143,81.96428571 +26533,442.2666667,1289,459,,230.1785714,81.96428571 +26534,442.2833333,1279,459,,228.3928571,81.96428571 +26535,442.3,1270,458,,226.7857143,81.78571429 +26536,442.3166667,1262,458,,225.3571429,81.78571429 +26537,442.3333333,1254,457,,223.9285714,81.60714286 +26538,442.35,1248,457,,222.8571429,81.60714286 +26539,442.3666667,1242,457,,221.7857143,81.60714286 +26540,442.3833333,1236,457,,220.7142857,81.60714286 +26541,442.4,1232,456,,220,81.42857143 +26542,442.4166667,1228,456,,219.2857143,81.42857143 +26543,442.4333333,1225,456,,218.75,81.42857143 +26544,442.45,1223,456,,218.3928571,81.42857143 +26545,442.4666667,1223,456,,218.3928571,81.42857143 +26546,442.4833333,1223,456,,218.3928571,81.42857143 +26547,442.5,1223,456,,218.3928571,81.42857143 +26548,442.5166667,1225,456,,218.75,81.42857143 +26549,442.5333333,1227,456,,219.1071429,81.42857143 +26550,442.55,1230,456,,219.6428571,81.42857143 +26551,442.5666667,1234,456,,220.3571429,81.42857143 +26552,442.5833333,1239,456,,221.25,81.42857143 +26553,442.6,1245,457,,222.3214286,81.60714286 +26554,442.6166667,1252,457,,223.5714286,81.60714286 +26555,442.6333333,1259,457,,224.8214286,81.60714286 +26556,442.65,1267,458,,226.25,81.78571429 +26557,442.6666667,1275,458,,227.6785714,81.78571429 +26558,442.6833333,1284,458,,229.2857143,81.78571429 +26559,442.7,1294,458,,231.0714286,81.78571429 +26560,442.7166667,1305,458,,233.0357143,81.78571429 +26561,442.7333333,1316,459,,235,81.96428571 +26562,442.75,1327,459,,236.9642857,81.96428571 +26563,442.7666667,1338,459,,238.9285714,81.96428571 +26564,442.7833333,1350,459,,241.0714286,81.96428571 +26565,442.8,1362,459,,243.2142857,81.96428571 +26566,442.8166667,1375,459,,245.5357143,81.96428571 +26567,442.8333333,1387,459,,247.6785714,81.96428571 +26568,442.85,1400,459,,250,81.96428571 +26569,442.8666667,1412,458,,252.1428571,81.78571429 +26570,442.8833333,1425,458,,254.4642857,81.78571429 +26571,442.9,1437,458,,256.6071429,81.78571429 +26572,442.9166667,1449,458,,258.75,81.78571429 +26573,442.9333333,1461,457,,260.8928571,81.60714286 +26574,442.95,1473,457,,263.0357143,81.60714286 +26575,442.9666667,1484,457,,265,81.60714286 +26576,442.9833333,1495,456,,266.9642857,81.42857143 +26577,443,1505,456,,268.75,81.42857143 +26578,443.0166667,1515,456,,270.5357143,81.42857143 +26579,443.0333333,1524,455,,272.1428571,81.25 +26580,443.05,1533,455,,273.75,81.25 +26581,443.0666667,1541,454,,275.1785714,81.07142857 +26582,443.0833333,1548,454,,276.4285714,81.07142857 +26583,443.1,1555,454,,277.6785714,81.07142857 +26584,443.1166667,1561,453,,278.75,80.89285714 +26585,443.1333333,1566,453,,279.6428571,80.89285714 +26586,443.15,1570,453,,280.3571429,80.89285714 +26587,443.1666667,1573,453,,280.8928571,80.89285714 +26588,443.1833333,1576,453,,281.4285714,80.89285714 +26589,443.2,1578,453,,281.7857143,80.89285714 +26590,443.2166667,1578,453,,281.7857143,80.89285714 +26591,443.2333333,1578,453,,281.7857143,80.89285714 +26592,443.25,1577,453,,281.6071429,80.89285714 +26593,443.2666667,1575,453,,281.25,80.89285714 +26594,443.2833333,1573,453,,280.8928571,80.89285714 +26595,443.3,1569,454,,280.1785714,81.07142857 +26596,443.3166667,1565,454,,279.4642857,81.07142857 +26597,443.3333333,1559,454,,278.3928571,81.07142857 +26598,443.35,1553,455,,277.3214286,81.25 +26599,443.3666667,1546,455,,276.0714286,81.25 +26600,443.3833333,1539,455,,274.8214286,81.25 +26601,443.4,1531,456,,273.3928571,81.42857143 +26602,443.4166667,1522,456,,271.7857143,81.42857143 +26603,443.4333333,1513,457,,270.1785714,81.60714286 +26604,443.45,1503,457,,268.3928571,81.60714286 +26605,443.4666667,1493,457,,266.6071429,81.60714286 +26606,443.4833333,1482,458,,264.6428571,81.78571429 +26607,443.5,1470,458,,262.5,81.78571429 +26608,443.5166667,1459,458,,260.5357143,81.78571429 +26609,443.5333333,1447,459,,258.3928571,81.96428571 +26610,443.55,1435,459,,256.25,81.96428571 +26611,443.5666667,1422,459,,253.9285714,81.96428571 +26612,443.5833333,1410,460,,251.7857143,82.14285714 +26613,443.6,1397,460,,249.4642857,82.14285714 +26614,443.6166667,1385,460,,247.3214286,82.14285714 +26615,443.6333333,1372,460,,245,82.14285714 +26616,443.65,1360,460,,242.8571429,82.14285714 +26617,443.6666667,1349,460,,240.8928571,82.14285714 +26618,443.6833333,1337,460,,238.75,82.14285714 +26619,443.7,1325,460,,236.6071429,82.14285714 +26620,443.7166667,1314,460,,234.6428571,82.14285714 +26621,443.7333333,1304,460,,232.8571429,82.14285714 +26622,443.75,1294,460,,231.0714286,82.14285714 diff --git a/single_pdl/data/618.csv b/single_pdl/data/618.csv new file mode 100644 index 0000000..22df3d0 --- /dev/null +++ b/single_pdl/data/618.csv @@ -0,0 +1,34496 @@ +frame,time,x,y +0,0.0,1674,450 +1,0.016666666666666666,1724,447 +2,0.03333333333333333,1724,447 +3,0.05,1748,445 +4,0.06666666666666667,1773,443 +5,0.08333333333333333,1821,439 +6,0.1,1867,434 +7,0.11666666666666667,1912,430 +8,0.13333333333333333,1956,425 +9,0.15,1997,420 +10,0.16666666666666666,2036,415 +11,0.18333333333333332,2072,409 +12,0.2,2106,404 +13,0.21666666666666667,2137,398 +14,0.23333333333333334,2166,394 +15,0.25,2192,389 +16,0.26666666666666666,2215,385 +17,0.2833333333333333,2234,382 +18,0.3,2250,378 +19,0.31666666666666665,2262,376 +20,0.3333333333333333,2271,374 +21,0.35,2277,373 +22,0.36666666666666664,2277,373 +23,0.3833333333333333,2277,373 +24,0.4,2273,375 +25,0.4166666666666667,2264,376 +26,0.43333333333333335,2252,379 +27,0.45,2237,382 +28,0.4666666666666667,2218,386 +29,0.48333333333333334,2195,390 +30,0.5,2170,394 +31,0.5166666666666666,2141,399 +32,0.5333333333333333,2109,404 +33,0.55,2075,409 +34,0.5666666666666667,2038,415 +35,0.5833333333333334,1999,420 +36,0.6,1957,426 +37,0.6166666666666667,1914,431 +38,0.6333333333333333,1869,436 +39,0.65,1821,441 +40,0.6666666666666666,1773,445 +41,0.6833333333333333,1723,449 +42,0.7,1673,452 +43,0.7166666666666667,1621,455 +44,0.7333333333333333,1570,457 +45,0.75,1516,458 +46,0.7666666666666666,1464,458 +47,0.7833333333333333,1413,458 +48,0.8,1361,457 +49,0.8166666666666667,1312,456 +50,0.8333333333333334,1262,454 +51,0.85,1213,451 +52,0.8666666666666667,1166,448 +53,0.8833333333333333,1120,444 +54,0.9,1076,440 +55,0.9166666666666666,1033,436 +56,0.9333333333333333,993,431 +57,0.95,955,427 +58,0.9666666666666667,919,422 +59,0.9833333333333333,886,417 +60,1.0,856,412 +61,1.0166666666666666,828,408 +62,1.0333333333333332,803,404 +63,1.05,782,400 +64,1.0666666666666667,763,397 +65,1.0833333333333333,747,394 +66,1.1,734,391 +67,1.1166666666666667,725,389 +68,1.1333333333333333,719,388 +69,1.15,719,388 +70,1.1666666666666667,719,388 +71,1.1833333333333333,719,388 +72,1.2,726,389 +73,1.2166666666666666,736,391 +74,1.2333333333333334,750,393 +75,1.25,766,396 +76,1.2666666666666666,785,400 +77,1.2833333333333332,807,404 +78,1.3,833,408 +79,1.3166666666666667,861,412 +80,1.3333333333333333,891,417 +81,1.35,924,421 +82,1.3666666666666667,960,426 +83,1.3833333333333333,998,431 +84,1.4,1038,435 +85,1.4166666666666667,1080,439 +86,1.4333333333333333,1123,443 +87,1.45,1169,447 +88,1.4666666666666666,1216,450 +89,1.4833333333333334,1264,453 +90,1.5,1313,455 +91,1.5166666666666666,1363,457 +92,1.5333333333333332,1413,457 +93,1.55,1464,457 +94,1.5666666666666667,1515,456 +95,1.5833333333333333,1566,455 +96,1.6,1617,454 +97,1.6166666666666667,1667,452 +98,1.6333333333333333,1717,449 +99,1.65,1766,446 +100,1.6666666666666667,1814,442 +101,1.6833333333333333,1860,437 +102,1.7,1905,432 +103,1.7166666666666666,1948,428 +104,1.7333333333333334,1989,423 +105,1.75,2028,418 +106,1.7666666666666666,2064,413 +107,1.7833333333333332,2099,407 +108,1.8,2131,402 +109,1.8166666666666667,2160,397 +110,1.8333333333333333,2186,392 +111,1.8499999999999999,2209,388 +112,1.8666666666666667,2229,384 +113,1.8833333333333333,2245,381 +114,1.9,2258,379 +115,1.9166666666666667,2268,377 +116,1.9333333333333333,2274,376 +117,1.95,2274,376 +118,1.9666666666666666,2274,376 +119,1.9833333333333334,2270,377 +120,2.0,2262,379 +121,2.0166666666666666,2250,381 +122,2.033333333333333,2235,384 +123,2.05,2217,388 +124,2.0666666666666664,2195,392 +125,2.0833333333333335,2170,396 +126,2.1,2142,401 +127,2.1166666666666667,2110,406 +128,2.1333333333333333,2076,412 +129,2.15,2040,418 +130,2.1666666666666665,2001,423 +131,2.183333333333333,1960,428 +132,2.2,1917,434 +133,2.216666666666667,1872,439 +134,2.2333333333333334,1825,443 +135,2.25,1777,448 +136,2.2666666666666666,1727,451 +137,2.283333333333333,1677,454 +138,2.3,1626,457 +139,2.3166666666666664,1574,459 +140,2.3333333333333335,1522,460 +141,2.35,1471,460 +142,2.3666666666666667,1419,460 +143,2.3833333333333333,1367,460 +144,2.4,1317,459 +145,2.4166666666666665,1268,457 +146,2.433333333333333,1219,453 +147,2.45,1172,450 +148,2.466666666666667,1126,447 +149,2.4833333333333334,1082,443 +150,2.5,1040,438 +151,2.5166666666666666,999,434 +152,2.533333333333333,961,429 +153,2.55,925,425 +154,2.5666666666666664,892,420 +155,2.5833333333333335,862,416 +156,2.6,834,411 +157,2.6166666666666667,809,407 +158,2.6333333333333333,787,403 +159,2.65,768,399 +160,2.6666666666666665,751,396 +161,2.683333333333333,739,393 +162,2.7,729,391 +163,2.716666666666667,722,389 +164,2.7333333333333334,722,389 +165,2.75,722,389 +166,2.7666666666666666,723,390 +167,2.783333333333333,730,391 +168,2.8,739,393 +169,2.8166666666666664,751,395 +170,2.8333333333333335,767,398 +171,2.85,786,401 +172,2.8666666666666667,808,405 +173,2.8833333333333333,833,409 +174,2.9,860,413 +175,2.9166666666666665,890,418 +176,2.933333333333333,922,423 +177,2.95,958,428 +178,2.966666666666667,996,432 +179,2.9833333333333334,1035,437 +180,3.0,1077,441 +181,3.0166666666666666,1120,445 +182,3.033333333333333,1165,448 +183,3.05,1212,452 +184,3.0666666666666664,1259,454 +185,3.0833333333333335,1308,457 +186,3.1,1357,458 +187,3.1166666666666667,1408,459 +188,3.1333333333333333,1458,459 +189,3.15,1509,459 +190,3.1666666666666665,1561,458 +191,3.183333333333333,1611,456 +192,3.2,1662,454 +193,3.216666666666667,1711,451 +194,3.2333333333333334,1760,448 +195,3.25,1808,444 +196,3.2666666666666666,1854,439 +197,3.283333333333333,1899,435 +198,3.3,1942,430 +199,3.3166666666666664,1983,425 +200,3.3333333333333335,2022,420 +201,3.35,2059,414 +202,3.3666666666666667,2093,409 +203,3.3833333333333333,2125,404 +204,3.4,2154,400 +205,3.4166666666666665,2180,395 +206,3.433333333333333,2203,391 +207,3.4499999999999997,2223,387 +208,3.466666666666667,2239,384 +209,3.4833333333333334,2252,381 +210,3.5,2262,379 +211,3.5166666666666666,2269,378 +212,3.533333333333333,2269,378 +213,3.55,2269,378 +214,3.5666666666666664,2266,379 +215,3.5833333333333335,2258,381 +216,3.6,2247,383 +217,3.6166666666666667,2232,386 +218,3.6333333333333333,2214,389 +219,3.65,2193,393 +220,3.6666666666666665,2169,398 +221,3.683333333333333,2141,403 +222,3.6999999999999997,2111,408 +223,3.716666666666667,2077,413 +224,3.7333333333333334,2041,418 +225,3.75,2002,423 +226,3.7666666666666666,1962,429 +227,3.783333333333333,1919,434 +228,3.8,1874,438 +229,3.8166666666666664,1828,443 +230,3.8333333333333335,1780,447 +231,3.85,1731,451 +232,3.8666666666666667,1681,454 +233,3.8833333333333333,1630,457 +234,3.9,1579,459 +235,3.9166666666666665,1528,460 +236,3.933333333333333,1476,460 +237,3.9499999999999997,1425,460 +238,3.966666666666667,1373,460 +239,3.9833333333333334,1323,459 +240,4.0,1274,458 +241,4.016666666666667,1226,455 +242,4.033333333333333,1178,452 +243,4.05,1132,448 +244,4.066666666666666,1088,444 +245,4.083333333333333,1046,440 +246,4.1,1005,436 +247,4.116666666666666,967,431 +248,4.133333333333333,931,426 +249,4.15,898,422 +250,4.166666666666667,867,417 +251,4.183333333333334,840,413 +252,4.2,815,408 +253,4.216666666666667,792,404 +254,4.233333333333333,773,401 +255,4.25,757,398 +256,4.266666666666667,744,395 +257,4.283333333333333,734,393 +258,4.3,727,392 +259,4.316666666666666,726,392 +260,4.333333333333333,726,392 +261,4.35,726,392 +262,4.366666666666666,732,393 +263,4.383333333333333,741,394 +264,4.4,754,396 +265,4.416666666666667,769,399 +266,4.433333333333334,788,403 +267,4.45,810,406 +268,4.466666666666667,834,410 +269,4.483333333333333,861,415 +270,4.5,891,419 +271,4.516666666666667,923,423 +272,4.533333333333333,958,428 +273,4.55,994,433 +274,4.566666666666666,1033,437 +275,4.583333333333333,1075,441 +276,4.6,1117,445 +277,4.616666666666666,1161,449 +278,4.633333333333333,1207,452 +279,4.65,1255,456 +280,4.666666666666667,1302,457 +281,4.683333333333334,1351,459 +282,4.7,1402,460 +283,4.716666666666667,1452,460 +284,4.733333333333333,1502,460 +285,4.75,1553,459 +286,4.766666666666667,1604,457 +287,4.783333333333333,1654,455 +288,4.8,1704,452 +289,4.816666666666666,1753,449 +290,4.833333333333333,1800,445 +291,4.85,1846,441 +292,4.866666666666666,1891,436 +293,4.883333333333333,1934,432 +294,4.9,1976,427 +295,4.916666666666667,2015,421 +296,4.933333333333334,2052,416 +297,4.95,2087,411 +298,4.966666666666667,2119,406 +299,4.983333333333333,2149,401 +300,5.0,2175,396 +301,5.016666666666667,2198,392 +302,5.033333333333333,2217,388 +303,5.05,2234,385 +304,5.066666666666666,2248,382 +305,5.083333333333333,2258,380 +306,5.1,2264,379 +307,5.116666666666666,2264,379 +308,5.133333333333333,2264,379 +309,5.15,2263,380 +310,5.166666666666667,2256,381 +311,5.183333333333334,2245,384 +312,5.2,2231,387 +313,5.216666666666667,2213,390 +314,5.233333333333333,2192,394 +315,5.25,2168,398 +316,5.266666666666667,2141,403 +317,5.283333333333333,2110,408 +318,5.3,2077,414 +319,5.316666666666666,2042,419 +320,5.333333333333333,2004,424 +321,5.35,1963,430 +322,5.366666666666666,1920,435 +323,5.383333333333333,1876,440 +324,5.4,1830,445 +325,5.416666666666667,1784,449 +326,5.433333333333334,1735,452 +327,5.45,1686,455 +328,5.466666666666667,1636,458 +329,5.483333333333333,1585,460 +330,5.5,1534,461 +331,5.516666666666667,1482,461 +332,5.533333333333333,1430,461 +333,5.55,1380,461 +334,5.566666666666666,1330,460 +335,5.583333333333333,1281,458 +336,5.6,1233,456 +337,5.616666666666666,1185,453 +338,5.633333333333333,1140,449 +339,5.65,1096,446 +340,5.666666666666667,1053,441 +341,5.683333333333334,1013,437 +342,5.7,975,432 +343,5.716666666666667,939,428 +344,5.733333333333333,905,423 +345,5.75,874,419 +346,5.766666666666667,846,414 +347,5.783333333333333,821,410 +348,5.8,798,406 +349,5.816666666666666,779,403 +350,5.833333333333333,763,400 +351,5.85,749,397 +352,5.866666666666666,739,395 +353,5.883333333333333,732,394 +354,5.9,729,393 +355,5.916666666666667,729,393 +356,5.933333333333334,729,393 +357,5.95,735,394 +358,5.966666666666667,743,396 +359,5.983333333333333,756,398 +360,6.0,771,400 +361,6.016666666666667,788,403 +362,6.033333333333333,809,407 +363,6.05,833,411 +364,6.066666666666666,860,415 +365,6.083333333333333,889,419 +366,6.1,921,424 +367,6.116666666666666,955,428 +368,6.133333333333333,991,433 +369,6.15,1030,437 +370,6.166666666666667,1071,441 +371,6.183333333333334,1113,446 +372,6.2,1157,449 +373,6.216666666666667,1203,452 +374,6.233333333333333,1250,456 +375,6.25,1297,458 +376,6.266666666666667,1346,459 +377,6.283333333333333,1396,460 +378,6.3,1447,460 +379,6.316666666666666,1497,460 +380,6.333333333333333,1547,459 +381,6.35,1598,458 +382,6.366666666666666,1648,456 +383,6.383333333333333,1697,453 +384,6.4,1746,450 +385,6.416666666666667,1794,446 +386,6.433333333333334,1840,442 +387,6.45,1885,438 +388,6.466666666666667,1929,433 +389,6.483333333333333,1970,428 +390,6.5,2009,423 +391,6.516666666666667,2046,417 +392,6.533333333333333,2080,412 +393,6.55,2112,407 +394,6.566666666666666,2142,402 +395,6.583333333333333,2168,397 +396,6.6,2191,393 +397,6.616666666666666,2212,390 +398,6.633333333333333,2229,386 +399,6.6499999999999995,2243,384 +400,6.666666666666667,2254,382 +401,6.683333333333334,2261,381 +402,6.7,2261,381 +403,6.716666666666667,2261,381 +404,6.733333333333333,2261,381 +405,6.75,2254,382 +406,6.766666666666667,2243,385 +407,6.783333333333333,2229,387 +408,6.8,2212,391 +409,6.816666666666666,2191,395 +410,6.833333333333333,2167,399 +411,6.85,2140,404 +412,6.866666666666666,2110,409 +413,6.883333333333333,2078,415 +414,6.8999999999999995,2042,420 +415,6.916666666666667,2005,425 +416,6.933333333333334,1965,430 +417,6.95,1924,435 +418,6.966666666666667,1880,440 +419,6.983333333333333,1835,445 +420,7.0,1788,449 +421,7.016666666666667,1740,452 +422,7.033333333333333,1691,456 +423,7.05,1640,458 +424,7.066666666666666,1590,460 +425,7.083333333333333,1539,462 +426,7.1,1488,462 +427,7.116666666666666,1436,462 +428,7.133333333333333,1386,462 +429,7.1499999999999995,1335,461 +430,7.166666666666667,1286,460 +431,7.183333333333334,1239,457 +432,7.2,1191,454 +433,7.216666666666667,1145,451 +434,7.233333333333333,1102,447 +435,7.25,1059,443 +436,7.266666666666667,1019,438 +437,7.283333333333333,981,434 +438,7.3,944,429 +439,7.316666666666666,911,425 +440,7.333333333333333,880,420 +441,7.35,852,416 +442,7.366666666666666,826,412 +443,7.383333333333333,803,408 +444,7.3999999999999995,783,404 +445,7.416666666666667,767,402 +446,7.433333333333334,753,399 +447,7.45,743,397 +448,7.466666666666667,735,395 +449,7.483333333333333,732,394 +450,7.5,732,394 +451,7.516666666666667,732,394 +452,7.533333333333333,737,395 +453,7.55,746,396 +454,7.566666666666666,757,398 +455,7.583333333333333,772,401 +456,7.6,789,404 +457,7.616666666666666,810,407 +458,7.633333333333333,833,411 +459,7.6499999999999995,859,415 +460,7.666666666666667,888,420 +461,7.683333333333334,919,424 +462,7.7,953,429 +463,7.716666666666667,989,433 +464,7.733333333333333,1028,438 +465,7.75,1067,442 +466,7.766666666666667,1109,446 +467,7.783333333333333,1153,450 +468,7.8,1199,453 +469,7.816666666666666,1245,456 +470,7.833333333333333,1292,458 +471,7.85,1341,460 +472,7.866666666666666,1391,461 +473,7.883333333333333,1440,461 +474,7.8999999999999995,1491,461 +475,7.916666666666667,1541,460 +476,7.933333333333334,1592,459 +477,7.95,1641,457 +478,7.966666666666667,1691,454 +479,7.983333333333333,1739,451 +480,8.0,1787,447 +481,8.016666666666666,1833,443 +482,8.033333333333333,1878,439 +483,8.05,1921,434 +484,8.066666666666666,1963,429 +485,8.083333333333334,2002,424 +486,8.1,2040,419 +487,8.116666666666667,2075,414 +488,8.133333333333333,2107,409 +489,8.15,2137,404 +490,8.166666666666666,2164,399 +491,8.183333333333334,2188,395 +492,8.2,2208,391 +493,8.216666666666667,2225,388 +494,8.233333333333333,2239,385 +495,8.25,2250,383 +496,8.266666666666666,2257,382 +497,8.283333333333333,2258,381 +498,8.3,2258,381 +499,8.316666666666666,2258,381 +500,8.333333333333334,2252,383 +501,8.35,2242,385 +502,8.366666666666667,2228,388 +503,8.383333333333333,2211,391 +504,8.4,2191,395 +505,8.416666666666666,2167,399 +506,8.433333333333334,2141,404 +507,8.45,2112,408 +508,8.466666666666667,2080,414 +509,8.483333333333333,2045,419 +510,8.5,2008,424 +511,8.516666666666666,1968,430 +512,8.533333333333333,1927,435 +513,8.55,1883,440 +514,8.566666666666666,1839,444 +515,8.583333333333334,1792,448 +516,8.6,1744,452 +517,8.616666666666667,1695,455 +518,8.633333333333333,1645,458 +519,8.65,1595,460 +520,8.666666666666666,1544,462 +521,8.683333333333334,1493,462 +522,8.7,1442,462 +523,8.716666666666667,1391,462 +524,8.733333333333333,1341,462 +525,8.75,1292,460 +526,8.766666666666666,1244,458 +527,8.783333333333333,1197,454 +528,8.8,1151,451 +529,8.816666666666666,1107,448 +530,8.833333333333334,1064,444 +531,8.85,1024,439 +532,8.866666666666667,985,435 +533,8.883333333333333,949,431 +534,8.9,916,426 +535,8.916666666666666,885,421 +536,8.933333333333334,856,417 +537,8.95,831,413 +538,8.966666666666667,808,409 +539,8.983333333333333,788,405 +540,9.0,771,402 +541,9.016666666666666,757,400 +542,9.033333333333333,746,397 +543,9.05,738,396 +544,9.066666666666666,735,395 +545,9.083333333333334,735,395 +546,9.1,735,395 +547,9.116666666666667,739,395 +548,9.133333333333333,747,397 +549,9.15,759,399 +550,9.166666666666666,773,401 +551,9.183333333333334,790,404 +552,9.2,810,408 +553,9.216666666666667,833,411 +554,9.233333333333333,859,416 +555,9.25,888,420 +556,9.266666666666666,919,424 +557,9.283333333333333,952,429 +558,9.3,988,433 +559,9.316666666666666,1026,438 +560,9.333333333333334,1066,442 +561,9.35,1107,446 +562,9.366666666666667,1151,449 +563,9.383333333333333,1196,453 +564,9.4,1243,456 +565,9.416666666666666,1289,459 +566,9.433333333333334,1338,460 +567,9.45,1387,462 +568,9.466666666666667,1437,462 +569,9.483333333333333,1486,462 +570,9.5,1537,461 +571,9.516666666666666,1587,459 +572,9.533333333333333,1636,458 +573,9.55,1685,455 +574,9.566666666666666,1734,452 +575,9.583333333333334,1781,448 +576,9.6,1827,445 +577,9.616666666666667,1872,440 +578,9.633333333333333,1915,436 +579,9.65,1957,431 +580,9.666666666666666,1996,426 +581,9.683333333333334,2034,420 +582,9.7,2069,415 +583,9.716666666666667,2101,410 +584,9.733333333333333,2131,405 +585,9.75,2158,401 +586,9.766666666666666,2182,397 +587,9.783333333333333,2203,393 +588,9.8,2220,390 +589,9.816666666666666,2235,387 +590,9.833333333333334,2246,385 +591,9.85,2253,384 +592,9.866666666666667,2256,384 +593,9.883333333333333,2256,384 +594,9.9,2256,384 +595,9.916666666666666,2249,385 +596,9.933333333333334,2240,387 +597,9.95,2227,389 +598,9.966666666666667,2210,392 +599,9.983333333333333,2190,396 +600,10.0,2167,400 +601,10.016666666666666,2141,405 +602,10.033333333333333,2113,410 +603,10.05,2081,415 +604,10.066666666666666,2047,420 +605,10.083333333333334,2010,425 +606,10.1,1970,430 +607,10.116666666666667,1929,435 +608,10.133333333333333,1886,440 +609,10.15,1841,445 +610,10.166666666666666,1795,449 +611,10.183333333333334,1747,453 +612,10.2,1699,456 +613,10.216666666666667,1649,459 +614,10.233333333333333,1599,461 +615,10.25,1548,462 +616,10.266666666666666,1498,463 +617,10.283333333333333,1447,463 +618,10.3,1397,463 +619,10.316666666666666,1346,462 +620,10.333333333333334,1298,461 +621,10.35,1250,458 +622,10.366666666666667,1203,456 +623,10.383333333333333,1158,452 +624,10.4,1113,449 +625,10.416666666666666,1071,445 +626,10.433333333333334,1031,441 +627,10.45,992,436 +628,10.466666666666667,956,432 +629,10.483333333333333,922,427 +630,10.5,891,422 +631,10.516666666666666,862,418 +632,10.533333333333333,836,414 +633,10.55,813,410 +634,10.566666666666666,793,406 +635,10.583333333333334,776,403 +636,10.6,762,401 +637,10.616666666666667,751,399 +638,10.633333333333333,743,397 +639,10.65,738,396 +640,10.666666666666666,738,396 +641,10.683333333333334,738,396 +642,10.7,743,397 +643,10.716666666666667,750,398 +644,10.733333333333333,761,400 +645,10.75,775,402 +646,10.766666666666666,792,405 +647,10.783333333333333,812,408 +648,10.8,834,412 +649,10.816666666666666,859,416 +650,10.833333333333334,887,420 +651,10.85,918,424 +652,10.866666666666667,951,428 +653,10.883333333333333,986,433 +654,10.9,1024,437 +655,10.916666666666666,1063,441 +656,10.933333333333334,1105,445 +657,10.95,1148,449 +658,10.966666666666667,1192,452 +659,10.983333333333333,1238,455 +660,11.0,1284,458 +661,11.016666666666666,1332,459 +662,11.033333333333333,1381,461 +663,11.05,1430,461 +664,11.066666666666666,1480,461 +665,11.083333333333334,1530,461 +666,11.1,1580,460 +667,11.116666666666667,1630,458 +668,11.133333333333333,1679,456 +669,11.15,1727,453 +670,11.166666666666666,1775,449 +671,11.183333333333334,1821,445 +672,11.2,1866,441 +673,11.216666666666667,1909,437 +674,11.233333333333333,1950,432 +675,11.25,1990,427 +676,11.266666666666666,2027,422 +677,11.283333333333333,2062,417 +678,11.3,2095,412 +679,11.316666666666666,2125,407 +680,11.333333333333334,2152,403 +681,11.35,2176,398 +682,11.366666666666667,2197,395 +683,11.383333333333333,2215,392 +684,11.4,2229,389 +685,11.416666666666666,2241,387 +686,11.433333333333334,2249,385 +687,11.45,2251,385 +688,11.466666666666667,2251,385 +689,11.483333333333333,2251,385 +690,11.5,2245,387 +691,11.516666666666666,2236,388 +692,11.533333333333333,2224,391 +693,11.55,2208,394 +694,11.566666666666666,2188,397 +695,11.583333333333334,2166,401 +696,11.6,2141,406 +697,11.616666666666667,2112,410 +698,11.633333333333333,2081,415 +699,11.65,2047,420 +700,11.666666666666666,2011,425 +701,11.683333333333334,1972,430 +702,11.7,1931,436 +703,11.716666666666667,1888,440 +704,11.733333333333333,1844,445 +705,11.75,1798,449 +706,11.766666666666666,1751,453 +707,11.783333333333333,1702,456 +708,11.8,1653,459 +709,11.816666666666666,1603,461 +710,11.833333333333334,1553,463 +711,11.85,1503,464 +712,11.866666666666667,1452,464 +713,11.883333333333333,1402,464 +714,11.9,1352,463 +715,11.916666666666666,1304,461 +716,11.933333333333334,1256,459 +717,11.95,1209,456 +718,11.966666666666667,1164,453 +719,11.983333333333333,1120,450 +720,12.0,1077,446 +721,12.016666666666666,1037,441 +722,12.033333333333333,999,437 +723,12.05,962,432 +724,12.066666666666666,929,428 +725,12.083333333333334,897,423 +726,12.1,869,419 +727,12.116666666666667,843,415 +728,12.133333333333333,819,411 +729,12.15,799,408 +730,12.166666666666666,781,405 +731,12.183333333333334,767,402 +732,12.2,755,400 +733,12.216666666666667,747,398 +734,12.233333333333333,742,397 +735,12.25,742,397 +736,12.266666666666666,742,397 +737,12.283333333333333,746,397 +738,12.3,753,398 +739,12.316666666666666,763,400 +740,12.333333333333334,777,403 +741,12.35,793,406 +742,12.366666666666667,813,409 +743,12.383333333333333,835,413 +744,12.4,860,417 +745,12.416666666666666,887,421 +746,12.433333333333334,918,425 +747,12.45,950,429 +748,12.466666666666667,985,434 +749,12.483333333333333,1022,438 +750,12.5,1061,442 +751,12.516666666666666,1102,446 +752,12.533333333333333,1145,450 +753,12.55,1189,453 +754,12.566666666666666,1235,456 +755,12.583333333333334,1281,459 +756,12.6,1329,461 +757,12.616666666666667,1377,462 +758,12.633333333333333,1426,462 +759,12.65,1476,462 +760,12.666666666666666,1526,462 +761,12.683333333333334,1576,461 +762,12.7,1625,459 +763,12.716666666666667,1674,457 +764,12.733333333333333,1722,454 +765,12.75,1769,450 +766,12.766666666666666,1816,446 +767,12.783333333333333,1860,442 +768,12.8,1904,438 +769,12.816666666666666,1945,433 +770,12.833333333333334,1985,428 +771,12.85,2022,423 +772,12.866666666666667,2057,418 +773,12.883333333333333,2090,412 +774,12.9,2120,408 +775,12.916666666666666,2147,403 +776,12.933333333333334,2172,399 +777,12.95,2193,395 +778,12.966666666666667,2211,392 +779,12.983333333333333,2226,389 +780,13.0,2238,387 +781,13.016666666666666,2246,386 +782,13.033333333333333,2250,385 +783,13.049999999999999,2250,385 +784,13.066666666666666,2250,385 +785,13.083333333333334,2245,386 +786,13.1,2236,388 +787,13.116666666666667,2223,390 +788,13.133333333333333,2208,393 +789,13.15,2189,397 +790,13.166666666666666,2167,401 +791,13.183333333333334,2141,405 +792,13.2,2113,410 +793,13.216666666666667,2082,415 +794,13.233333333333333,2049,420 +795,13.25,2013,425 +796,13.266666666666666,1974,430 +797,13.283333333333333,1934,435 +798,13.299999999999999,1891,440 +799,13.316666666666666,1847,445 +800,13.333333333333334,1802,449 +801,13.35,1755,453 +802,13.366666666666667,1707,456 +803,13.383333333333333,1658,459 +804,13.4,1608,461 +805,13.416666666666666,1558,463 +806,13.433333333333334,1508,464 +807,13.45,1458,464 +808,13.466666666666667,1408,464 +809,13.483333333333333,1357,463 +810,13.5,1310,463 +811,13.516666666666666,1262,460 +812,13.533333333333333,1216,457 +813,13.549999999999999,1170,454 +814,13.566666666666666,1126,450 +815,13.583333333333334,1084,447 +816,13.6,1044,443 +817,13.616666666666667,1005,438 +818,13.633333333333333,969,434 +819,13.65,935,430 +820,13.666666666666666,904,425 +821,13.683333333333334,875,421 +822,13.7,849,417 +823,13.716666666666667,825,413 +824,13.733333333333333,804,409 +825,13.75,787,406 +826,13.766666666666666,772,404 +827,13.783333333333333,760,401 +828,13.799999999999999,752,400 +829,13.816666666666666,746,398 +830,13.833333333333334,746,398 +831,13.85,746,398 +832,13.866666666666667,749,399 +833,13.883333333333333,755,400 +834,13.9,765,402 +835,13.916666666666666,779,404 +836,13.933333333333334,795,407 +837,13.95,814,410 +838,13.966666666666667,836,414 +839,13.983333333333333,860,417 +840,14.0,887,422 +841,14.016666666666666,917,426 +842,14.033333333333333,949,430 +843,14.049999999999999,984,434 +844,14.066666666666666,1020,439 +845,14.083333333333334,1059,443 +846,14.1,1099,447 +847,14.116666666666667,1141,450 +848,14.133333333333333,1185,454 +849,14.15,1231,457 +850,14.166666666666666,1277,459 +851,14.183333333333334,1324,461 +852,14.2,1372,462 +853,14.216666666666667,1421,462 +854,14.233333333333333,1470,462 +855,14.25,1520,462 +856,14.266666666666666,1569,461 +857,14.283333333333333,1618,460 +858,14.299999999999999,1667,457 +859,14.316666666666666,1715,455 +860,14.333333333333334,1762,451 +861,14.35,1809,448 +862,14.366666666666667,1853,443 +863,14.383333333333333,1896,439 +864,14.4,1938,434 +865,14.416666666666666,1978,429 +866,14.433333333333334,2015,424 +867,14.45,2051,419 +868,14.466666666666667,2083,414 +869,14.483333333333333,2114,410 +870,14.5,2141,405 +871,14.516666666666666,2166,401 +872,14.533333333333333,2188,397 +873,14.549999999999999,2206,394 +874,14.566666666666666,2221,391 +875,14.583333333333334,2233,389 +876,14.6,2242,387 +877,14.616666666666667,2247,387 +878,14.633333333333333,2247,387 +879,14.65,2247,387 +880,14.666666666666666,2242,388 +881,14.683333333333334,2233,389 +882,14.7,2221,392 +883,14.716666666666667,2206,395 +884,14.733333333333333,2187,398 +885,14.75,2166,402 +886,14.766666666666666,2141,406 +887,14.783333333333333,2113,411 +888,14.799999999999999,2082,416 +889,14.816666666666666,2049,421 +890,14.833333333333334,2014,426 +891,14.85,1976,431 +892,14.866666666666667,1936,436 +893,14.883333333333333,1894,440 +894,14.9,1850,445 +895,14.916666666666666,1805,449 +896,14.933333333333334,1758,453 +897,14.95,1710,456 +898,14.966666666666667,1662,459 +899,14.983333333333333,1612,462 +900,15.0,1563,463 +901,15.016666666666666,1513,464 +902,15.033333333333333,1462,464 +903,15.049999999999999,1413,464 +904,15.066666666666666,1363,464 +905,15.083333333333334,1315,462 +906,15.1,1268,460 +907,15.116666666666667,1221,458 +908,15.133333333333333,1176,455 +909,15.15,1132,451 +910,15.166666666666666,1090,447 +911,15.183333333333334,1050,443 +912,15.2,1011,439 +913,15.216666666666667,975,435 +914,15.233333333333333,941,430 +915,15.25,909,426 +916,15.266666666666666,880,421 +917,15.283333333333333,854,417 +918,15.299999999999999,830,414 +919,15.316666666666666,809,410 +920,15.333333333333334,792,407 +921,15.35,777,404 +922,15.366666666666667,765,402 +923,15.383333333333333,756,400 +924,15.4,750,399 +925,15.416666666666666,750,399 +926,15.433333333333334,750,399 +927,15.45,751,399 +928,15.466666666666667,758,400 +929,15.483333333333333,768,402 +930,15.5,780,404 +931,15.516666666666666,796,406 +932,15.533333333333333,815,410 +933,15.549999999999999,836,413 +934,15.566666666666666,860,417 +935,15.583333333333334,887,421 +936,15.6,916,426 +937,15.616666666666667,948,430 +938,15.633333333333333,982,434 +939,15.65,1018,438 +940,15.666666666666666,1056,443 +941,15.683333333333334,1097,447 +942,15.7,1139,450 +943,15.716666666666667,1182,454 +944,15.733333333333333,1227,457 +945,15.75,1273,459 +946,15.766666666666666,1319,461 +947,15.783333333333333,1367,463 +948,15.799999999999999,1416,463 +949,15.816666666666666,1465,463 +950,15.833333333333334,1515,463 +951,15.85,1564,462 +952,15.866666666666667,1613,460 +953,15.883333333333333,1661,458 +954,15.9,1709,455 +955,15.916666666666666,1756,452 +956,15.933333333333334,1802,448 +957,15.95,1847,444 +958,15.966666666666667,1890,440 +959,15.983333333333333,1932,435 +960,16.0,1972,430 +961,16.016666666666666,2009,425 +962,16.03333333333333,2045,420 +963,16.05,2077,416 +964,16.066666666666666,2108,411 +965,16.083333333333332,2136,406 +966,16.1,2161,402 +967,16.116666666666667,2182,398 +968,16.133333333333333,2201,395 +969,16.15,2217,392 +970,16.166666666666668,2229,390 +971,16.183333333333334,2238,388 +972,16.2,2243,387 +973,16.216666666666665,2243,387 +974,16.233333333333334,2243,387 +975,16.25,2239,388 +976,16.266666666666666,2231,390 +977,16.28333333333333,2219,392 +978,16.3,2205,395 +979,16.316666666666666,2187,398 +980,16.333333333333332,2165,402 +981,16.35,2141,406 +982,16.366666666666667,2114,411 +983,16.383333333333333,2084,415 +984,16.4,2051,420 +985,16.416666666666668,2016,425 +986,16.433333333333334,1978,430 +987,16.45,1939,435 +988,16.466666666666665,1897,440 +989,16.483333333333334,1853,445 +990,16.5,1809,449 +991,16.516666666666666,1762,453 +992,16.53333333333333,1715,456 +993,16.55,1666,459 +994,16.566666666666666,1618,461 +995,16.583333333333332,1568,463 +996,16.6,1518,464 +997,16.616666666666667,1469,464 +998,16.633333333333333,1419,464 +999,16.65,1370,464 +1000,16.666666666666668,1321,463 +1001,16.683333333333334,1274,461 +1002,16.7,1228,458 +1003,16.716666666666665,1182,455 +1004,16.733333333333334,1138,452 +1005,16.75,1096,448 +1006,16.766666666666666,1055,445 +1007,16.78333333333333,1017,440 +1008,16.8,981,436 +1009,16.816666666666666,947,431 +1010,16.833333333333332,915,427 +1011,16.85,886,423 +1012,16.866666666666667,859,419 +1013,16.883333333333333,836,415 +1014,16.9,814,411 +1015,16.916666666666668,797,408 +1016,16.933333333333334,781,405 +1017,16.95,769,403 +1018,16.966666666666665,760,401 +1019,16.983333333333334,754,400 +1020,17.0,754,400 +1021,17.016666666666666,754,400 +1022,17.03333333333333,754,400 +1023,17.05,760,401 +1024,17.066666666666666,770,403 +1025,17.083333333333332,782,405 +1026,17.1,797,407 +1027,17.116666666666667,816,410 +1028,17.133333333333333,837,414 +1029,17.15,860,417 +1030,17.166666666666668,887,422 +1031,17.183333333333334,915,426 +1032,17.2,947,430 +1033,17.216666666666665,981,434 +1034,17.233333333333334,1017,439 +1035,17.25,1054,443 +1036,17.266666666666666,1094,447 +1037,17.28333333333333,1136,450 +1038,17.3,1179,454 +1039,17.316666666666666,1224,456 +1040,17.333333333333332,1269,459 +1041,17.35,1316,462 +1042,17.366666666666667,1363,463 +1043,17.383333333333333,1412,463 +1044,17.4,1461,463 +1045,17.416666666666668,1510,463 +1046,17.433333333333334,1559,462 +1047,17.45,1608,461 +1048,17.466666666666665,1656,458 +1049,17.483333333333334,1703,456 +1050,17.5,1751,453 +1051,17.516666666666666,1797,449 +1052,17.53333333333333,1841,445 +1053,17.55,1885,441 +1054,17.566666666666666,1926,436 +1055,17.583333333333332,1966,431 +1056,17.6,2004,426 +1057,17.616666666666667,2039,422 +1058,17.633333333333333,2072,417 +1059,17.65,2103,412 +1060,17.666666666666668,2131,407 +1061,17.683333333333334,2156,403 +1062,17.7,2178,399 +1063,17.716666666666665,2197,396 +1064,17.733333333333334,2213,393 +1065,17.75,2225,391 +1066,17.766666666666666,2234,389 +1067,17.78333333333333,2240,388 +1068,17.8,2240,388 +1069,17.816666666666666,2240,388 +1070,17.833333333333332,2237,389 +1071,17.85,2229,391 +1072,17.866666666666667,2217,393 +1073,17.883333333333333,2203,396 +1074,17.9,2185,399 +1075,17.916666666666668,2164,403 +1076,17.933333333333334,2140,407 +1077,17.95,2113,412 +1078,17.966666666666665,2083,416 +1079,17.983333333333334,2050,421 +1080,18.0,2015,426 +1081,18.016666666666666,1978,431 +1082,18.03333333333333,1938,436 +1083,18.05,1897,441 +1084,18.066666666666666,1853,446 +1085,18.083333333333332,1809,450 +1086,18.1,1763,454 +1087,18.116666666666667,1716,457 +1088,18.133333333333333,1668,460 +1089,18.15,1619,462 +1090,18.166666666666668,1570,464 +1091,18.183333333333334,1520,465 +1092,18.2,1471,465 +1093,18.216666666666665,1421,465 +1094,18.233333333333334,1372,464 +1095,18.25,1325,463 +1096,18.266666666666666,1277,461 +1097,18.28333333333333,1232,459 +1098,18.3,1186,455 +1099,18.316666666666666,1142,452 +1100,18.333333333333332,1101,449 +1101,18.35,1060,445 +1102,18.366666666666667,1022,441 +1103,18.383333333333333,986,436 +1104,18.4,952,432 +1105,18.416666666666668,920,428 +1106,18.433333333333334,890,423 +1107,18.45,864,419 +1108,18.466666666666665,840,415 +1109,18.483333333333334,818,411 +1110,18.5,800,408 +1111,18.516666666666666,785,405 +1112,18.53333333333333,772,403 +1113,18.55,763,401 +1114,18.566666666666666,757,400 +1115,18.583333333333332,756,399 +1116,18.6,756,399 +1117,18.616666666666667,756,399 +1118,18.633333333333333,762,400 +1119,18.65,771,402 +1120,18.666666666666668,784,404 +1121,18.683333333333334,798,406 +1122,18.7,816,410 +1123,18.716666666666665,837,413 +1124,18.733333333333334,861,417 +1125,18.75,887,421 +1126,18.766666666666666,916,425 +1127,18.78333333333333,946,430 +1128,18.8,980,434 +1129,18.816666666666666,1016,438 +1130,18.833333333333332,1053,443 +1131,18.85,1093,447 +1132,18.866666666666667,1134,450 +1133,18.883333333333333,1177,454 +1134,18.9,1221,457 +1135,18.916666666666668,1267,459 +1136,18.933333333333334,1313,462 +1137,18.95,1360,463 +1138,18.966666666666665,1409,464 +1139,18.983333333333334,1457,464 +1140,19.0,1506,464 +1141,19.016666666666666,1555,463 +1142,19.03333333333333,1603,462 +1143,19.05,1652,459 +1144,19.066666666666666,1699,457 +1145,19.083333333333332,1746,453 +1146,19.1,1792,450 +1147,19.116666666666667,1837,446 +1148,19.133333333333333,1880,442 +1149,19.15,1921,437 +1150,19.166666666666668,1961,432 +1151,19.183333333333334,1999,427 +1152,19.2,2034,422 +1153,19.216666666666665,2067,418 +1154,19.233333333333334,2098,413 +1155,19.25,2126,409 +1156,19.266666666666666,2151,404 +1157,19.28333333333333,2173,401 +1158,19.3,2192,397 +1159,19.316666666666666,2208,394 +1160,19.333333333333332,2221,392 +1161,19.35,2230,390 +1162,19.366666666666667,2236,389 +1163,19.383333333333333,2236,389 +1164,19.4,2236,389 +1165,19.416666666666668,2234,390 +1166,19.433333333333334,2226,391 +1167,19.45,2215,393 +1168,19.466666666666665,2201,396 +1169,19.483333333333334,2183,399 +1170,19.5,2163,403 +1171,19.516666666666666,2139,407 +1172,19.53333333333333,2113,412 +1173,19.55,2083,416 +1174,19.566666666666666,2051,421 +1175,19.583333333333332,2016,426 +1176,19.6,1979,431 +1177,19.616666666666667,1940,436 +1178,19.633333333333333,1899,441 +1179,19.65,1856,445 +1180,19.666666666666668,1812,449 +1181,19.683333333333334,1766,453 +1182,19.7,1719,457 +1183,19.716666666666665,1671,459 +1184,19.733333333333334,1623,462 +1185,19.75,1574,463 +1186,19.766666666666666,1525,465 +1187,19.78333333333333,1475,465 +1188,19.8,1427,465 +1189,19.816666666666666,1377,465 +1190,19.833333333333332,1329,464 +1191,19.85,1282,462 +1192,19.866666666666667,1237,459 +1193,19.883333333333333,1192,456 +1194,19.9,1148,453 +1195,19.916666666666668,1106,450 +1196,19.933333333333334,1066,446 +1197,19.95,1027,442 +1198,19.966666666666665,991,437 +1199,19.983333333333334,957,433 +1200,20.0,925,429 +1201,20.016666666666666,896,425 +1202,20.03333333333333,869,421 +1203,20.05,845,417 +1204,20.066666666666666,824,414 +1205,20.083333333333332,806,410 +1206,20.1,790,408 +1207,20.116666666666667,778,405 +1208,20.133333333333333,768,403 +1209,20.15,762,402 +1210,20.166666666666668,760,402 +1211,20.183333333333334,760,402 +1212,20.2,760,402 +1213,20.216666666666665,766,402 +1214,20.233333333333334,775,404 +1215,20.25,787,406 +1216,20.266666666666666,801,408 +1217,20.28333333333333,819,411 +1218,20.3,839,414 +1219,20.316666666666666,862,418 +1220,20.333333333333332,888,422 +1221,20.35,916,426 +1222,20.366666666666667,947,430 +1223,20.383333333333333,980,434 +1224,20.4,1015,439 +1225,20.416666666666668,1052,443 +1226,20.433333333333334,1092,447 +1227,20.45,1132,450 +1228,20.466666666666665,1175,454 +1229,20.483333333333334,1219,457 +1230,20.5,1264,459 +1231,20.516666666666666,1310,461 +1232,20.53333333333333,1356,463 +1233,20.55,1405,464 +1234,20.566666666666666,1453,464 +1235,20.583333333333332,1502,464 +1236,20.6,1550,463 +1237,20.616666666666667,1599,461 +1238,20.633333333333333,1647,459 +1239,20.65,1694,457 +1240,20.666666666666668,1741,454 +1241,20.683333333333334,1787,450 +1242,20.7,1831,446 +1243,20.716666666666665,1875,442 +1244,20.733333333333334,1916,438 +1245,20.75,1956,433 +1246,20.766666666666666,1994,428 +1247,20.78333333333333,2029,423 +1248,20.8,2062,419 +1249,20.816666666666666,2093,414 +1250,20.833333333333332,2121,410 +1251,20.85,2146,406 +1252,20.866666666666667,2168,402 +1253,20.883333333333333,2187,399 +1254,20.9,2203,396 +1255,20.916666666666668,2215,394 +1256,20.933333333333334,2225,392 +1257,20.95,2232,391 +1258,20.966666666666665,2232,391 +1259,20.983333333333334,2232,391 +1260,21.0,2231,391 +1261,21.016666666666666,2223,392 +1262,21.03333333333333,2213,394 +1263,21.05,2199,396 +1264,21.066666666666666,2182,400 +1265,21.083333333333332,2162,403 +1266,21.1,2138,407 +1267,21.116666666666667,2112,411 +1268,21.133333333333333,2083,416 +1269,21.15,2051,421 +1270,21.166666666666668,2017,426 +1271,21.183333333333334,1980,430 +1272,21.2,1941,435 +1273,21.216666666666665,1900,440 +1274,21.233333333333334,1858,444 +1275,21.25,1814,449 +1276,21.266666666666666,1768,452 +1277,21.28333333333333,1722,455 +1278,21.3,1675,458 +1279,21.316666666666666,1627,461 +1280,21.333333333333332,1578,463 +1281,21.35,1529,464 +1282,21.366666666666667,1480,464 +1283,21.383333333333333,1431,464 +1284,21.4,1383,464 +1285,21.416666666666668,1335,464 +1286,21.433333333333334,1288,462 +1287,21.45,1243,459 +1288,21.466666666666665,1197,457 +1289,21.483333333333334,1153,453 +1290,21.5,1111,450 +1291,21.516666666666666,1071,446 +1292,21.53333333333333,1032,442 +1293,21.55,996,438 +1294,21.566666666666666,962,434 +1295,21.583333333333332,930,429 +1296,21.6,901,425 +1297,21.616666666666667,874,421 +1298,21.633333333333333,850,417 +1299,21.65,829,414 +1300,21.666666666666668,810,410 +1301,21.683333333333334,794,408 +1302,21.7,782,405 +1303,21.716666666666665,772,403 +1304,21.733333333333334,765,402 +1305,21.75,763,402 +1306,21.766666666666666,763,402 +1307,21.78333333333333,763,402 +1308,21.8,768,403 +1309,21.816666666666666,777,404 +1310,21.833333333333332,788,406 +1311,21.85,802,409 +1312,21.866666666666667,820,411 +1313,21.883333333333333,840,415 +1314,21.9,863,418 +1315,21.916666666666668,888,422 +1316,21.933333333333334,916,426 +1317,21.95,946,430 +1318,21.966666666666665,979,434 +1319,21.983333333333334,1014,438 +1320,22.0,1051,443 +1321,22.016666666666666,1090,447 +1322,22.03333333333333,1130,450 +1323,22.05,1172,454 +1324,22.066666666666666,1216,457 +1325,22.083333333333332,1261,459 +1326,22.1,1307,462 +1327,22.116666666666667,1353,463 +1328,22.133333333333333,1401,464 +1329,22.15,1449,464 +1330,22.166666666666668,1498,464 +1331,22.183333333333334,1546,463 +1332,22.2,1594,462 +1333,22.216666666666665,1642,460 +1334,22.233333333333334,1690,458 +1335,22.25,1737,454 +1336,22.266666666666666,1782,451 +1337,22.28333333333333,1827,447 +1338,22.3,1870,443 +1339,22.316666666666666,1912,438 +1340,22.333333333333332,1951,434 +1341,22.35,1989,429 +1342,22.366666666666667,2025,424 +1343,22.383333333333333,2058,420 +1344,22.4,2089,415 +1345,22.416666666666668,2117,411 +1346,22.433333333333334,2142,407 +1347,22.45,2164,403 +1348,22.466666666666665,2184,400 +1349,22.483333333333334,2201,397 +1350,22.5,2213,394 +1351,22.516666666666666,2223,392 +1352,22.53333333333333,2230,391 +1353,22.55,2230,391 +1354,22.566666666666666,2230,391 +1355,22.583333333333332,2229,392 +1356,22.6,2222,393 +1357,22.616666666666667,2212,395 +1358,22.633333333333333,2198,397 +1359,22.65,2181,401 +1360,22.666666666666668,2161,404 +1361,22.683333333333334,2138,408 +1362,22.7,2112,412 +1363,22.716666666666665,2083,417 +1364,22.733333333333334,2052,422 +1365,22.75,2018,426 +1366,22.766666666666666,1981,431 +1367,22.78333333333333,1943,436 +1368,22.8,1902,441 +1369,22.816666666666666,1860,446 +1370,22.833333333333332,1815,450 +1371,22.85,1770,454 +1372,22.866666666666667,1724,457 +1373,22.883333333333333,1677,460 +1374,22.9,1630,462 +1375,22.916666666666668,1581,464 +1376,22.933333333333334,1533,465 +1377,22.95,1484,465 +1378,22.966666666666665,1435,465 +1379,22.983333333333334,1386,465 +1380,23.0,1338,464 +1381,23.016666666666666,1292,462 +1382,23.03333333333333,1247,460 +1383,23.05,1202,457 +1384,23.066666666666666,1158,454 +1385,23.083333333333332,1116,450 +1386,23.1,1076,446 +1387,23.116666666666667,1038,442 +1388,23.133333333333333,1002,438 +1389,23.15,968,434 +1390,23.166666666666668,936,430 +1391,23.183333333333334,907,426 +1392,23.2,880,422 +1393,23.216666666666665,855,418 +1394,23.233333333333334,834,415 +1395,23.25,815,412 +1396,23.266666666666666,800,409 +1397,23.28333333333333,786,406 +1398,23.3,776,404 +1399,23.316666666666666,769,403 +1400,23.333333333333332,766,402 +1401,23.35,766,402 +1402,23.366666666666667,766,402 +1403,23.383333333333333,771,403 +1404,23.4,779,404 +1405,23.416666666666668,790,406 +1406,23.433333333333334,805,409 +1407,23.45,821,411 +1408,23.466666666666665,841,415 +1409,23.483333333333334,863,418 +1410,23.5,888,422 +1411,23.516666666666666,916,426 +1412,23.53333333333333,946,430 +1413,23.55,978,435 +1414,23.566666666666666,1012,439 +1415,23.583333333333332,1049,443 +1416,23.6,1087,447 +1417,23.616666666666667,1127,450 +1418,23.633333333333333,1169,454 +1419,23.65,1212,457 +1420,23.666666666666668,1257,460 +1421,23.683333333333334,1302,462 +1422,23.7,1348,463 +1423,23.716666666666665,1396,464 +1424,23.733333333333334,1444,464 +1425,23.75,1492,464 +1426,23.766666666666666,1540,464 +1427,23.78333333333333,1589,462 +1428,23.8,1636,461 +1429,23.816666666666666,1684,459 +1430,23.833333333333332,1730,456 +1431,23.85,1776,452 +1432,23.866666666666667,1821,448 +1433,23.883333333333333,1864,445 +1434,23.9,1905,440 +1435,23.916666666666668,1945,435 +1436,23.933333333333334,1983,430 +1437,23.95,2019,426 +1438,23.966666666666665,2052,421 +1439,23.983333333333334,2083,416 +1440,24.0,2111,412 +1441,24.016666666666666,2137,407 +1442,24.03333333333333,2160,404 +1443,24.05,2180,400 +1444,24.066666666666666,2196,397 +1445,24.083333333333332,2210,395 +1446,24.1,2219,393 +1447,24.116666666666667,2226,392 +1448,24.133333333333333,2226,392 +1449,24.15,2226,392 +1450,24.166666666666668,2226,392 +1451,24.183333333333334,2220,394 +1452,24.2,2210,396 +1453,24.216666666666665,2196,398 +1454,24.233333333333334,2180,401 +1455,24.25,2160,404 +1456,24.266666666666666,2137,408 +1457,24.28333333333333,2112,413 +1458,24.3,2083,417 +1459,24.316666666666666,2052,422 +1460,24.333333333333332,2018,426 +1461,24.35,1982,431 +1462,24.366666666666667,1944,436 +1463,24.383333333333333,1904,441 +1464,24.4,1862,445 +1465,24.416666666666668,1818,450 +1466,24.433333333333334,1773,454 +1467,24.45,1726,457 +1468,24.466666666666665,1680,460 +1469,24.483333333333334,1632,462 +1470,24.5,1584,464 +1471,24.516666666666666,1536,465 +1472,24.53333333333333,1487,465 +1473,24.55,1439,465 +1474,24.566666666666666,1390,465 +1475,24.583333333333332,1342,464 +1476,24.6,1297,462 +1477,24.616666666666667,1252,460 +1478,24.633333333333333,1206,457 +1479,24.65,1163,454 +1480,24.666666666666668,1121,450 +1481,24.683333333333334,1081,447 +1482,24.7,1043,443 +1483,24.716666666666665,1007,439 +1484,24.733333333333334,972,435 +1485,24.75,941,431 +1486,24.766666666666666,911,427 +1487,24.78333333333333,884,423 +1488,24.8,860,419 +1489,24.816666666666666,838,416 +1490,24.833333333333332,820,413 +1491,24.85,803,410 +1492,24.866666666666667,790,408 +1493,24.883333333333333,780,405 +1494,24.9,772,404 +1495,24.916666666666668,769,403 +1496,24.933333333333334,769,403 +1497,24.95,769,403 +1498,24.966666666666665,774,404 +1499,24.983333333333334,782,405 +1500,25.0,793,407 +1501,25.016666666666666,806,409 +1502,25.03333333333333,822,412 +1503,25.05,842,415 +1504,25.066666666666666,864,419 +1505,25.083333333333332,888,422 +1506,25.1,916,426 +1507,25.116666666666667,945,430 +1508,25.133333333333333,977,435 +1509,25.15,1011,439 +1510,25.166666666666668,1048,443 +1511,25.183333333333334,1086,447 +1512,25.2,1125,451 +1513,25.216666666666665,1167,454 +1514,25.233333333333334,1210,457 +1515,25.25,1254,460 +1516,25.266666666666666,1299,462 +1517,25.28333333333333,1345,464 +1518,25.3,1393,464 +1519,25.316666666666666,1440,464 +1520,25.333333333333332,1488,464 +1521,25.35,1536,464 +1522,25.366666666666667,1585,463 +1523,25.383333333333333,1632,461 +1524,25.4,1679,459 +1525,25.416666666666668,1726,456 +1526,25.433333333333334,1771,452 +1527,25.45,1816,449 +1528,25.466666666666665,1859,445 +1529,25.483333333333334,1901,440 +1530,25.5,1940,436 +1531,25.516666666666666,1978,431 +1532,25.53333333333333,2014,426 +1533,25.55,2047,422 +1534,25.566666666666666,2078,417 +1535,25.583333333333332,2107,413 +1536,25.6,2132,409 +1537,25.616666666666667,2155,405 +1538,25.633333333333333,2175,401 +1539,25.65,2192,398 +1540,25.666666666666668,2205,396 +1541,25.683333333333334,2216,394 +1542,25.7,2223,393 +1543,25.716666666666665,2224,393 +1544,25.733333333333334,2224,393 +1545,25.75,2224,393 +1546,25.766666666666666,2217,394 +1547,25.78333333333333,2208,396 +1548,25.8,2194,398 +1549,25.816666666666666,2178,401 +1550,25.833333333333332,2159,405 +1551,25.849999999999998,2136,409 +1552,25.866666666666667,2111,413 +1553,25.883333333333333,2082,418 +1554,25.9,2051,423 +1555,25.916666666666668,2018,427 +1556,25.933333333333334,1982,432 +1557,25.95,1945,436 +1558,25.966666666666665,1905,441 +1559,25.983333333333334,1864,445 +1560,26.0,1820,449 +1561,26.016666666666666,1776,453 +1562,26.03333333333333,1731,456 +1563,26.05,1684,459 +1564,26.066666666666666,1636,461 +1565,26.083333333333332,1588,463 +1566,26.099999999999998,1540,464 +1567,26.116666666666667,1492,465 +1568,26.133333333333333,1443,465 +1569,26.15,1396,465 +1570,26.166666666666668,1348,464 +1571,26.183333333333334,1302,463 +1572,26.2,1257,461 +1573,26.216666666666665,1213,458 +1574,26.233333333333334,1169,455 +1575,26.25,1127,452 +1576,26.266666666666666,1087,448 +1577,26.28333333333333,1048,444 +1578,26.3,1012,440 +1579,26.316666666666666,978,436 +1580,26.333333333333332,946,432 +1581,26.349999999999998,916,427 +1582,26.366666666666667,889,424 +1583,26.383333333333333,865,420 +1584,26.4,843,416 +1585,26.416666666666668,824,413 +1586,26.433333333333334,808,410 +1587,26.45,794,408 +1588,26.466666666666665,784,406 +1589,26.483333333333334,777,405 +1590,26.5,772,404 +1591,26.516666666666666,772,404 +1592,26.53333333333333,772,404 +1593,26.55,777,404 +1594,26.566666666666666,784,405 +1595,26.583333333333332,795,407 +1596,26.599999999999998,808,410 +1597,26.616666666666667,824,412 +1598,26.633333333333333,843,415 +1599,26.65,865,419 +1600,26.666666666666668,890,422 +1601,26.683333333333334,917,426 +1602,26.7,946,430 +1603,26.716666666666665,978,434 +1604,26.733333333333334,1012,439 +1605,26.75,1047,442 +1606,26.766666666666666,1085,447 +1607,26.78333333333333,1125,450 +1608,26.8,1166,454 +1609,26.816666666666666,1209,457 +1610,26.833333333333332,1253,459 +1611,26.849999999999998,1297,462 +1612,26.866666666666667,1343,464 +1613,26.883333333333333,1390,464 +1614,26.9,1437,464 +1615,26.916666666666668,1485,464 +1616,26.933333333333334,1532,464 +1617,26.95,1580,463 +1618,26.966666666666665,1628,461 +1619,26.983333333333334,1675,459 +1620,27.0,1721,456 +1621,27.016666666666666,1766,453 +1622,27.03333333333333,1811,449 +1623,27.05,1854,445 +1624,27.066666666666666,1895,441 +1625,27.083333333333332,1935,436 +1626,27.099999999999998,1973,432 +1627,27.116666666666667,2009,427 +1628,27.133333333333333,2042,423 +1629,27.15,2073,418 +1630,27.166666666666668,2101,414 +1631,27.183333333333334,2127,410 +1632,27.2,2149,406 +1633,27.216666666666665,2169,403 +1634,27.233333333333334,2186,400 +1635,27.25,2200,397 +1636,27.266666666666666,2211,395 +1637,27.28333333333333,2219,394 +1638,27.3,2220,393 +1639,27.316666666666666,2220,393 +1640,27.333333333333332,2220,393 +1641,27.349999999999998,2214,395 +1642,27.366666666666667,2205,396 +1643,27.383333333333333,2192,398 +1644,27.4,2176,401 +1645,27.416666666666668,2156,404 +1646,27.433333333333334,2134,408 +1647,27.45,2110,412 +1648,27.466666666666665,2082,416 +1649,27.483333333333334,2052,421 +1650,27.5,2019,426 +1651,27.516666666666666,1984,431 +1652,27.53333333333333,1946,436 +1653,27.55,1907,440 +1654,27.566666666666666,1866,445 +1655,27.583333333333332,1823,449 +1656,27.599999999999998,1778,453 +1657,27.616666666666667,1733,456 +1658,27.633333333333333,1686,459 +1659,27.65,1639,462 +1660,27.666666666666668,1591,463 +1661,27.683333333333334,1543,465 +1662,27.7,1495,465 +1663,27.716666666666665,1447,465 +1664,27.733333333333334,1399,465 +1665,27.75,1351,465 +1666,27.766666666666666,1305,463 +1667,27.78333333333333,1260,461 +1668,27.8,1215,459 +1669,27.816666666666666,1172,455 +1670,27.833333333333332,1130,452 +1671,27.849999999999998,1091,449 +1672,27.866666666666667,1053,445 +1673,27.883333333333333,1016,441 +1674,27.9,982,436 +1675,27.916666666666668,950,432 +1676,27.933333333333334,921,428 +1677,27.95,894,424 +1678,27.966666666666665,869,420 +1679,27.983333333333334,848,417 +1680,28.0,829,414 +1681,28.016666666666666,813,411 +1682,28.03333333333333,799,409 +1683,28.05,789,407 +1684,28.066666666666666,781,405 +1685,28.083333333333332,776,404 +1686,28.099999999999998,776,404 +1687,28.116666666666667,776,404 +1688,28.133333333333333,780,405 +1689,28.15,788,406 +1690,28.166666666666668,798,408 +1691,28.183333333333334,810,410 +1692,28.2,827,413 +1693,28.216666666666665,845,416 +1694,28.233333333333334,866,419 +1695,28.25,890,423 +1696,28.266666666666666,917,426 +1697,28.28333333333333,946,431 +1698,28.3,977,435 +1699,28.316666666666666,1010,438 +1700,28.333333333333332,1046,442 +1701,28.349999999999998,1083,446 +1702,28.366666666666667,1122,450 +1703,28.383333333333333,1162,453 +1704,28.4,1205,456 +1705,28.416666666666668,1249,459 +1706,28.433333333333334,1293,462 +1707,28.45,1339,463 +1708,28.466666666666665,1386,464 +1709,28.483333333333334,1433,464 +1710,28.5,1480,464 +1711,28.516666666666666,1528,464 +1712,28.53333333333333,1576,463 +1713,28.55,1623,461 +1714,28.566666666666666,1670,459 +1715,28.583333333333332,1716,456 +1716,28.599999999999998,1761,453 +1717,28.616666666666667,1805,449 +1718,28.633333333333333,1848,445 +1719,28.65,1890,441 +1720,28.666666666666668,1930,436 +1721,28.683333333333334,1968,432 +1722,28.7,2004,427 +1723,28.716666666666665,2037,423 +1724,28.733333333333334,2068,418 +1725,28.75,2098,414 +1726,28.766666666666666,2124,410 +1727,28.78333333333333,2147,406 +1728,28.8,2167,403 +1729,28.816666666666666,2183,400 +1730,28.833333333333332,2197,397 +1731,28.849999999999998,2208,395 +1732,28.866666666666667,2215,394 +1733,28.883333333333333,2218,394 +1734,28.9,2218,394 +1735,28.916666666666668,2218,394 +1736,28.933333333333334,2212,395 +1737,28.95,2202,397 +1738,28.966666666666665,2190,399 +1739,28.983333333333334,2174,402 +1740,29.0,2156,405 +1741,29.016666666666666,2134,409 +1742,29.03333333333333,2109,413 +1743,29.05,2082,418 +1744,29.066666666666666,2051,422 +1745,29.083333333333332,2019,427 +1746,29.099999999999998,1984,431 +1747,29.116666666666667,1947,436 +1748,29.133333333333333,1908,440 +1749,29.15,1867,445 +1750,29.166666666666668,1824,449 +1751,29.183333333333334,1780,452 +1752,29.2,1735,456 +1753,29.216666666666665,1689,459 +1754,29.233333333333334,1642,461 +1755,29.25,1595,463 +1756,29.266666666666666,1547,465 +1757,29.28333333333333,1499,466 +1758,29.3,1451,466 +1759,29.316666666666666,1403,466 +1760,29.333333333333332,1356,465 +1761,29.349999999999998,1310,463 +1762,29.366666666666667,1265,461 +1763,29.383333333333333,1221,459 +1764,29.4,1177,456 +1765,29.416666666666668,1136,452 +1766,29.433333333333334,1096,449 +1767,29.45,1058,445 +1768,29.466666666666665,1022,441 +1769,29.483333333333334,987,437 +1770,29.5,955,433 +1771,29.516666666666666,925,429 +1772,29.53333333333333,898,425 +1773,29.55,874,421 +1774,29.566666666666666,852,417 +1775,29.583333333333332,833,414 +1776,29.599999999999998,817,411 +1777,29.616666666666667,803,409 +1778,29.633333333333333,793,407 +1779,29.65,786,406 +1780,29.666666666666668,781,404 +1781,29.683333333333334,781,404 +1782,29.7,781,404 +1783,29.716666666666665,784,404 +1784,29.733333333333334,791,405 +1785,29.75,801,407 +1786,29.766666666666666,814,409 +1787,29.78333333333333,829,412 +1788,29.8,848,415 +1789,29.816666666666666,869,419 +1790,29.833333333333332,893,423 +1791,29.849999999999998,919,427 +1792,29.866666666666667,948,431 +1793,29.883333333333333,979,435 +1794,29.9,1012,439 +1795,29.916666666666668,1046,442 +1796,29.933333333333334,1083,446 +1797,29.95,1122,450 +1798,29.966666666666665,1163,453 +1799,29.983333333333334,1205,456 +1800,30.0,1248,459 +1801,30.016666666666666,1292,462 +1802,30.03333333333333,1337,463 +1803,30.05,1384,464 +1804,30.066666666666666,1430,464 +1805,30.083333333333332,1478,464 +1806,30.099999999999998,1525,464 +1807,30.116666666666667,1572,463 +1808,30.133333333333333,1619,462 +1809,30.15,1666,459 +1810,30.166666666666668,1712,457 +1811,30.183333333333334,1757,454 +1812,30.2,1802,450 +1813,30.216666666666665,1844,447 +1814,30.233333333333334,1886,442 +1815,30.25,1925,438 +1816,30.266666666666666,1963,433 +1817,30.28333333333333,1999,429 +1818,30.3,2033,424 +1819,30.316666666666666,2064,419 +1820,30.333333333333332,2093,415 +1821,30.349999999999998,2119,411 +1822,30.366666666666667,2142,407 +1823,30.383333333333333,2163,404 +1824,30.4,2180,401 +1825,30.416666666666668,2194,398 +1826,30.433333333333334,2205,396 +1827,30.45,2212,395 +1828,30.466666666666665,2215,395 +1829,30.483333333333334,2215,395 +1830,30.5,2215,395 +1831,30.516666666666666,2209,396 +1832,30.53333333333333,2200,397 +1833,30.55,2188,399 +1834,30.566666666666666,2173,402 +1835,30.583333333333332,2154,406 +1836,30.599999999999998,2133,409 +1837,30.616666666666667,2108,413 +1838,30.633333333333333,2081,418 +1839,30.65,2051,422 +1840,30.666666666666668,2018,427 +1841,30.683333333333334,1983,432 +1842,30.7,1946,436 +1843,30.716666666666665,1908,441 +1844,30.733333333333334,1867,445 +1845,30.75,1825,449 +1846,30.766666666666666,1781,452 +1847,30.78333333333333,1737,456 +1848,30.8,1691,459 +1849,30.816666666666666,1644,461 +1850,30.833333333333332,1596,463 +1851,30.849999999999998,1549,464 +1852,30.866666666666667,1501,465 +1853,30.883333333333333,1454,465 +1854,30.9,1407,465 +1855,30.916666666666668,1359,465 +1856,30.933333333333334,1314,464 +1857,30.95,1270,461 +1858,30.966666666666665,1226,459 +1859,30.983333333333334,1183,456 +1860,31.0,1141,453 +1861,31.016666666666666,1101,449 +1862,31.03333333333333,1063,446 +1863,31.05,1027,442 +1864,31.066666666666666,993,438 +1865,31.083333333333332,961,434 +1866,31.099999999999998,931,430 +1867,31.116666666666667,904,426 +1868,31.133333333333333,879,422 +1869,31.15,858,419 +1870,31.166666666666668,838,415 +1871,31.183333333333334,822,413 +1872,31.2,808,410 +1873,31.216666666666665,798,408 +1874,31.233333333333334,790,407 +1875,31.25,785,406 +1876,31.266666666666666,785,406 +1877,31.28333333333333,785,406 +1878,31.3,788,406 +1879,31.316666666666666,795,407 +1880,31.333333333333332,804,409 +1881,31.349999999999998,817,411 +1882,31.366666666666667,832,413 +1883,31.383333333333333,850,417 +1884,31.4,871,420 +1885,31.416666666666668,895,423 +1886,31.433333333333334,920,427 +1887,31.45,948,431 +1888,31.466666666666665,979,435 +1889,31.483333333333334,1012,439 +1890,31.5,1046,443 +1891,31.516666666666666,1083,446 +1892,31.53333333333333,1122,450 +1893,31.55,1162,453 +1894,31.566666666666666,1203,456 +1895,31.583333333333332,1246,459 +1896,31.599999999999998,1290,462 +1897,31.616666666666667,1335,463 +1898,31.633333333333333,1381,464 +1899,31.65,1427,464 +1900,31.666666666666668,1474,464 +1901,31.683333333333334,1521,464 +1902,31.7,1568,463 +1903,31.716666666666665,1614,462 +1904,31.733333333333334,1660,460 +1905,31.75,1706,458 +1906,31.766666666666666,1752,455 +1907,31.78333333333333,1796,451 +1908,31.8,1838,447 +1909,31.816666666666666,1880,443 +1910,31.833333333333332,1920,438 +1911,31.849999999999998,1957,434 +1912,31.866666666666667,1993,429 +1913,31.883333333333333,2027,424 +1914,31.9,2058,420 +1915,31.916666666666668,2087,415 +1916,31.933333333333334,2113,411 +1917,31.95,2136,407 +1918,31.966666666666665,2156,404 +1919,31.983333333333334,2174,401 +1920,32.0,2188,399 +1921,32.016666666666666,2200,397 +1922,32.03333333333333,2207,395 +1923,32.05,2212,395 +1924,32.06666666666666,2212,395 +1925,32.083333333333336,2212,395 +1926,32.1,2206,396 +1927,32.11666666666667,2197,398 +1928,32.13333333333333,2185,400 +1929,32.15,2170,403 +1930,32.166666666666664,2152,406 +1931,32.18333333333333,2131,409 +1932,32.2,2107,413 +1933,32.21666666666667,2080,418 +1934,32.233333333333334,2051,422 +1935,32.25,2019,427 +1936,32.266666666666666,1984,431 +1937,32.28333333333333,1948,436 +1938,32.3,1909,441 +1939,32.31666666666666,1869,445 +1940,32.333333333333336,1827,449 +1941,32.35,1784,453 +1942,32.36666666666667,1739,456 +1943,32.38333333333333,1694,459 +1944,32.4,1648,462 +1945,32.416666666666664,1601,463 +1946,32.43333333333333,1554,465 +1947,32.45,1506,466 +1948,32.46666666666667,1459,466 +1949,32.483333333333334,1412,466 +1950,32.5,1365,465 +1951,32.516666666666666,1319,464 +1952,32.53333333333333,1274,462 +1953,32.55,1231,459 +1954,32.56666666666666,1188,457 +1955,32.583333333333336,1146,453 +1956,32.6,1106,450 +1957,32.61666666666667,1069,446 +1958,32.63333333333333,1032,442 +1959,32.65,998,438 +1960,32.666666666666664,966,434 +1961,32.68333333333333,937,431 +1962,32.7,909,427 +1963,32.71666666666667,884,423 +1964,32.733333333333334,863,419 +1965,32.75,843,416 +1966,32.766666666666666,827,413 +1967,32.78333333333333,813,411 +1968,32.8,802,409 +1969,32.81666666666666,794,407 +1970,32.833333333333336,790,406 +1971,32.85,790,406 +1972,32.86666666666667,790,406 +1973,32.88333333333333,791,406 +1974,32.9,797,407 +1975,32.916666666666664,807,408 +1976,32.93333333333333,819,411 +1977,32.95,834,413 +1978,32.96666666666667,852,416 +1979,32.983333333333334,873,420 +1980,33.0,896,424 +1981,33.016666666666666,922,427 +1982,33.03333333333333,949,431 +1983,33.05,979,435 +1984,33.06666666666666,1011,438 +1985,33.083333333333336,1046,442 +1986,33.1,1082,446 +1987,33.11666666666667,1121,450 +1988,33.13333333333333,1160,453 +1989,33.15,1202,456 +1990,33.166666666666664,1244,459 +1991,33.18333333333333,1287,462 +1992,33.2,1332,464 +1993,33.21666666666667,1378,464 +1994,33.233333333333334,1424,464 +1995,33.25,1471,464 +1996,33.266666666666666,1517,464 +1997,33.28333333333333,1564,464 +1998,33.3,1611,462 +1999,33.31666666666666,1657,460 +2000,33.333333333333336,1703,458 +2001,33.35,1748,455 +2002,33.36666666666667,1792,451 +2003,33.38333333333333,1834,448 +2004,33.4,1876,444 +2005,33.416666666666664,1915,439 +2006,33.43333333333333,1953,435 +2007,33.45,1989,430 +2008,33.46666666666667,2023,425 +2009,33.483333333333334,2054,421 +2010,33.5,2083,417 +2011,33.516666666666666,2109,413 +2012,33.53333333333333,2133,409 +2013,33.55,2153,406 +2014,33.56666666666666,2170,403 +2015,33.583333333333336,2185,400 +2016,33.6,2196,398 +2017,33.61666666666667,2204,397 +2018,33.63333333333333,2209,396 +2019,33.65,2209,396 +2020,33.666666666666664,2209,396 +2021,33.68333333333333,2203,397 +2022,33.7,2195,399 +2023,33.71666666666667,2183,401 +2024,33.733333333333334,2168,403 +2025,33.75,2150,407 +2026,33.766666666666666,2129,411 +2027,33.78333333333333,2104,415 +2028,33.8,2078,418 +2029,33.81666666666666,2049,422 +2030,33.833333333333336,2018,427 +2031,33.85,1984,431 +2032,33.86666666666667,1948,436 +2033,33.88333333333333,1910,440 +2034,33.9,1869,444 +2035,33.916666666666664,1828,448 +2036,33.93333333333333,1785,452 +2037,33.95,1741,455 +2038,33.96666666666667,1695,458 +2039,33.983333333333334,1650,461 +2040,34.0,1603,463 +2041,34.016666666666666,1556,465 +2042,34.03333333333333,1509,466 +2043,34.05,1463,466 +2044,34.06666666666666,1416,466 +2045,34.083333333333336,1368,465 +2046,34.1,1323,464 +2047,34.11666666666667,1278,462 +2048,34.13333333333333,1234,459 +2049,34.15,1191,457 +2050,34.166666666666664,1150,454 +2051,34.18333333333333,1111,450 +2052,34.2,1073,447 +2053,34.21666666666667,1037,443 +2054,34.233333333333334,1003,439 +2055,34.25,971,435 +2056,34.266666666666666,942,431 +2057,34.28333333333333,915,427 +2058,34.3,890,423 +2059,34.31666666666666,868,420 +2060,34.333333333333336,848,417 +2061,34.35,832,414 +2062,34.36666666666667,818,412 +2063,34.38333333333333,807,410 +2064,34.4,799,408 +2065,34.416666666666664,794,407 +2066,34.43333333333333,794,407 +2067,34.45,794,407 +2068,34.46666666666667,795,407 +2069,34.483333333333334,801,408 +2070,34.5,810,410 +2071,34.516666666666666,822,412 +2072,34.53333333333333,837,414 +2073,34.55,854,417 +2074,34.56666666666666,874,420 +2075,34.583333333333336,897,423 +2076,34.6,922,427 +2077,34.61666666666667,950,431 +2078,34.63333333333333,979,435 +2079,34.65,1011,439 +2080,34.666666666666664,1046,443 +2081,34.68333333333333,1081,446 +2082,34.7,1119,450 +2083,34.71666666666667,1158,454 +2084,34.733333333333334,1198,457 +2085,34.75,1242,459 +2086,34.766666666666666,1285,462 +2087,34.78333333333333,1329,463 +2088,34.8,1375,464 +2089,34.81666666666666,1421,464 +2090,34.833333333333336,1467,464 +2091,34.85,1514,464 +2092,34.86666666666667,1561,463 +2093,34.88333333333333,1607,462 +2094,34.9,1653,460 +2095,34.916666666666664,1698,457 +2096,34.93333333333333,1744,454 +2097,34.95,1787,451 +2098,34.96666666666667,1830,447 +2099,34.983333333333334,1871,443 +2100,35.0,1911,439 +2101,35.016666666666666,1949,435 +2102,35.03333333333333,1985,431 +2103,35.05,2019,426 +2104,35.06666666666666,2050,422 +2105,35.083333333333336,2078,418 +2106,35.1,2104,414 +2107,35.11666666666667,2128,410 +2108,35.13333333333333,2148,407 +2109,35.15,2166,403 +2110,35.166666666666664,2180,401 +2111,35.18333333333333,2192,399 +2112,35.2,2200,398 +2113,35.21666666666667,2205,397 +2114,35.233333333333334,2205,397 +2115,35.25,2205,397 +2116,35.266666666666666,2200,398 +2117,35.28333333333333,2192,399 +2118,35.3,2181,402 +2119,35.31666666666666,2166,404 +2120,35.333333333333336,2148,407 +2121,35.35,2128,411 +2122,35.36666666666667,2105,414 +2123,35.38333333333333,2078,418 +2124,35.4,2049,423 +2125,35.416666666666664,2018,427 +2126,35.43333333333333,1985,431 +2127,35.45,1949,436 +2128,35.46666666666667,1911,440 +2129,35.483333333333334,1871,445 +2130,35.5,1829,449 +2131,35.516666666666666,1787,453 +2132,35.53333333333333,1743,456 +2133,35.55,1698,459 +2134,35.56666666666666,1652,461 +2135,35.583333333333336,1605,463 +2136,35.6,1558,465 +2137,35.61666666666667,1512,466 +2138,35.63333333333333,1464,466 +2139,35.65,1417,466 +2140,35.666666666666664,1371,465 +2141,35.68333333333333,1325,464 +2142,35.7,1280,463 +2143,35.71666666666667,1237,460 +2144,35.733333333333334,1195,457 +2145,35.75,1154,454 +2146,35.766666666666666,1115,450 +2147,35.78333333333333,1077,447 +2148,35.8,1041,443 +2149,35.81666666666666,1008,439 +2150,35.833333333333336,976,435 +2151,35.85,946,431 +2152,35.86666666666667,919,427 +2153,35.88333333333333,895,423 +2154,35.9,872,420 +2155,35.916666666666664,853,417 +2156,35.93333333333333,836,414 +2157,35.95,823,412 +2158,35.96666666666667,812,410 +2159,35.983333333333334,803,409 +2160,36.0,797,407 +2161,36.016666666666666,797,407 +2162,36.03333333333333,797,407 +2163,36.05,798,407 +2164,36.06666666666666,804,408 +2165,36.083333333333336,813,410 +2166,36.1,825,412 +2167,36.11666666666667,839,414 +2168,36.13333333333333,856,417 +2169,36.15,876,420 +2170,36.166666666666664,898,423 +2171,36.18333333333333,923,427 +2172,36.2,950,431 +2173,36.21666666666667,980,435 +2174,36.233333333333334,1012,439 +2175,36.25,1046,442 +2176,36.266666666666666,1081,446 +2177,36.28333333333333,1119,450 +2178,36.3,1158,453 +2179,36.31666666666666,1199,456 +2180,36.333333333333336,1242,459 +2181,36.35,1285,461 +2182,36.36666666666667,1329,463 +2183,36.38333333333333,1374,464 +2184,36.4,1420,465 +2185,36.416666666666664,1466,465 +2186,36.43333333333333,1512,465 +2187,36.45,1558,464 +2188,36.46666666666667,1604,462 +2189,36.483333333333334,1650,460 +2190,36.5,1696,458 +2191,36.516666666666666,1740,455 +2192,36.53333333333333,1784,452 +2193,36.55,1826,448 +2194,36.56666666666666,1867,444 +2195,36.583333333333336,1906,440 +2196,36.6,1944,436 +2197,36.61666666666667,1980,431 +2198,36.63333333333333,2013,427 +2199,36.65,2044,423 +2200,36.666666666666664,2073,419 +2201,36.68333333333333,2099,415 +2202,36.7,2122,411 +2203,36.71666666666667,2142,408 +2204,36.733333333333334,2161,404 +2205,36.75,2176,402 +2206,36.766666666666666,2187,400 +2207,36.78333333333333,2196,398 +2208,36.8,2201,397 +2209,36.81666666666666,2201,397 +2210,36.833333333333336,2201,397 +2211,36.85,2196,398 +2212,36.86666666666667,2188,399 +2213,36.88333333333333,2177,401 +2214,36.9,2163,403 +2215,36.916666666666664,2146,406 +2216,36.93333333333333,2126,410 +2217,36.95,2103,414 +2218,36.96666666666667,2077,418 +2219,36.983333333333334,2049,423 +2220,37.0,2017,427 +2221,37.016666666666666,1983,432 +2222,37.03333333333333,1948,436 +2223,37.05,1910,440 +2224,37.06666666666666,1871,445 +2225,37.083333333333336,1829,448 +2226,37.1,1787,452 +2227,37.11666666666667,1743,456 +2228,37.13333333333333,1698,459 +2229,37.15,1653,461 +2230,37.166666666666664,1607,463 +2231,37.18333333333333,1560,465 +2232,37.2,1514,466 +2233,37.21666666666667,1467,466 +2234,37.233333333333334,1421,466 +2235,37.25,1375,466 +2236,37.266666666666666,1329,464 +2237,37.28333333333333,1285,463 +2238,37.3,1243,460 +2239,37.31666666666666,1200,457 +2240,37.333333333333336,1159,455 +2241,37.35,1120,451 +2242,37.36666666666667,1083,448 +2243,37.38333333333333,1047,444 +2244,37.4,1013,440 +2245,37.416666666666664,981,436 +2246,37.43333333333333,952,433 +2247,37.45,925,429 +2248,37.46666666666667,900,425 +2249,37.483333333333334,878,422 +2250,37.5,858,418 +2251,37.516666666666666,841,415 +2252,37.53333333333333,827,413 +2253,37.55,816,411 +2254,37.56666666666666,807,409 +2255,37.583333333333336,801,408 +2256,37.6,801,408 +2257,37.61666666666667,801,408 +2258,37.63333333333333,802,408 +2259,37.65,807,409 +2260,37.666666666666664,816,410 +2261,37.68333333333333,828,412 +2262,37.7,842,415 +2263,37.71666666666667,860,418 +2264,37.733333333333334,879,420 +2265,37.75,901,423 +2266,37.766666666666666,925,427 +2267,37.78333333333333,952,430 +2268,37.8,981,434 +2269,37.81666666666666,1013,438 +2270,37.833333333333336,1046,442 +2271,37.85,1082,446 +2272,37.86666666666667,1119,450 +2273,37.88333333333333,1159,453 +2274,37.9,1199,456 +2275,37.916666666666664,1240,459 +2276,37.93333333333333,1282,461 +2277,37.95,1326,463 +2278,37.96666666666667,1370,464 +2279,37.983333333333334,1416,465 +2280,38.0,1462,465 +2281,38.016666666666666,1508,465 +2282,38.03333333333333,1554,464 +2283,38.05,1600,463 +2284,38.06666666666666,1646,461 +2285,38.083333333333336,1691,459 +2286,38.1,1735,456 +2287,38.11666666666667,1779,453 +2288,38.13333333333333,1821,449 +2289,38.15,1862,445 +2290,38.166666666666664,1901,441 +2291,38.18333333333333,1939,437 +2292,38.2,1975,432 +2293,38.21666666666667,2008,428 +2294,38.233333333333334,2040,424 +2295,38.25,2068,420 +2296,38.266666666666666,2095,416 +2297,38.28333333333333,2119,412 +2298,38.3,2139,408 +2299,38.31666666666666,2157,405 +2300,38.333333333333336,2172,403 +2301,38.35,2184,401 +2302,38.36666666666667,2192,399 +2303,38.38333333333333,2198,398 +2304,38.4,2198,398 +2305,38.416666666666664,2198,398 +2306,38.43333333333333,2194,399 +2307,38.45,2186,400 +2308,38.46666666666667,2175,403 +2309,38.483333333333334,2161,405 +2310,38.5,2144,408 +2311,38.516666666666666,2124,411 +2312,38.53333333333333,2101,415 +2313,38.55,2075,419 +2314,38.56666666666666,2046,423 +2315,38.583333333333336,2015,428 +2316,38.6,1981,433 +2317,38.61666666666667,1946,437 +2318,38.63333333333333,1909,441 +2319,38.65,1870,445 +2320,38.666666666666664,1829,449 +2321,38.68333333333333,1787,452 +2322,38.7,1744,455 +2323,38.71666666666667,1700,458 +2324,38.733333333333334,1654,460 +2325,38.75,1608,462 +2326,38.766666666666666,1562,464 +2327,38.78333333333333,1516,465 +2328,38.8,1470,465 +2329,38.81666666666666,1424,465 +2330,38.833333333333336,1378,465 +2331,38.85,1334,464 +2332,38.86666666666667,1289,463 +2333,38.88333333333333,1246,460 +2334,38.9,1203,457 +2335,38.916666666666664,1162,454 +2336,38.93333333333333,1123,451 +2337,38.95,1086,448 +2338,38.96666666666667,1050,444 +2339,38.983333333333334,1016,440 +2340,39.0,985,436 +2341,39.016666666666666,955,432 +2342,39.03333333333333,928,429 +2343,39.05,904,425 +2344,39.06666666666666,881,422 +2345,39.083333333333336,862,418 +2346,39.1,845,416 +2347,39.11666666666667,831,413 +2348,39.13333333333333,820,411 +2349,39.15,811,410 +2350,39.166666666666664,806,409 +2351,39.18333333333333,805,409 +2352,39.2,805,409 +2353,39.21666666666667,805,409 +2354,39.233333333333334,811,410 +2355,39.25,820,411 +2356,39.266666666666666,831,413 +2357,39.28333333333333,844,415 +2358,39.3,861,418 +2359,39.31666666666666,880,421 +2360,39.333333333333336,902,424 +2361,39.35,926,427 +2362,39.36666666666667,953,431 +2363,39.38333333333333,982,435 +2364,39.4,1013,439 +2365,39.416666666666664,1046,443 +2366,39.43333333333333,1081,446 +2367,39.45,1118,450 +2368,39.46666666666667,1157,453 +2369,39.483333333333334,1196,456 +2370,39.5,1238,459 +2371,39.516666666666666,1279,461 +2372,39.53333333333333,1322,463 +2373,39.55,1367,464 +2374,39.56666666666666,1413,465 +2375,39.583333333333336,1459,465 +2376,39.6,1505,465 +2377,39.61666666666667,1551,464 +2378,39.63333333333333,1597,462 +2379,39.65,1642,461 +2380,39.666666666666664,1687,458 +2381,39.68333333333333,1731,455 +2382,39.7,1774,452 +2383,39.71666666666667,1817,449 +2384,39.733333333333334,1857,445 +2385,39.75,1897,441 +2386,39.766666666666666,1934,436 +2387,39.78333333333333,1970,432 +2388,39.8,2004,428 +2389,39.81666666666666,2035,424 +2390,39.833333333333336,2065,420 +2391,39.85,2091,416 +2392,39.86666666666667,2114,412 +2393,39.88333333333333,2134,409 +2394,39.9,2152,406 +2395,39.916666666666664,2167,403 +2396,39.93333333333333,2179,401 +2397,39.95,2188,400 +2398,39.96666666666667,2193,399 +2399,39.983333333333334,2193,399 +2400,40.0,2193,399 +2401,40.016666666666666,2190,400 +2402,40.03333333333333,2182,401 +2403,40.05,2172,403 +2404,40.06666666666666,2158,406 +2405,40.083333333333336,2142,408 +2406,40.1,2122,411 +2407,40.11666666666667,2099,415 +2408,40.13333333333333,2074,419 +2409,40.15,2046,423 +2410,40.166666666666664,2015,428 +2411,40.18333333333333,1983,432 +2412,40.2,1948,436 +2413,40.21666666666667,1911,440 +2414,40.233333333333334,1872,444 +2415,40.25,1831,448 +2416,40.266666666666666,1789,452 +2417,40.28333333333333,1746,455 +2418,40.3,1702,458 +2419,40.31666666666666,1657,461 +2420,40.333333333333336,1611,463 +2421,40.35,1565,464 +2422,40.36666666666667,1519,465 +2423,40.38333333333333,1473,465 +2424,40.4,1426,465 +2425,40.416666666666664,1381,465 +2426,40.43333333333333,1336,464 +2427,40.45,1291,463 +2428,40.46666666666667,1248,460 +2429,40.483333333333334,1206,458 +2430,40.5,1166,455 +2431,40.516666666666666,1127,451 +2432,40.53333333333333,1090,448 +2433,40.55,1054,444 +2434,40.56666666666666,1021,440 +2435,40.583333333333336,990,436 +2436,40.6,960,433 +2437,40.61666666666667,933,428 +2438,40.63333333333333,908,425 +2439,40.65,886,421 +2440,40.666666666666664,866,418 +2441,40.68333333333333,849,415 +2442,40.7,835,414 +2443,40.71666666666667,824,412 +2444,40.733333333333334,815,410 +2445,40.75,809,409 +2446,40.766666666666666,808,408 +2447,40.78333333333333,808,408 +2448,40.8,808,408 +2449,40.81666666666666,813,409 +2450,40.833333333333336,821,411 +2451,40.85,833,413 +2452,40.86666666666667,846,415 +2453,40.88333333333333,863,417 +2454,40.9,882,420 +2455,40.916666666666664,903,424 +2456,40.93333333333333,927,427 +2457,40.95,953,431 +2458,40.96666666666667,982,435 +2459,40.983333333333334,1013,439 +2460,41.0,1046,442 +2461,41.016666666666666,1081,446 +2462,41.03333333333333,1118,450 +2463,41.05,1156,453 +2464,41.06666666666666,1196,456 +2465,41.083333333333336,1237,459 +2466,41.1,1279,461 +2467,41.11666666666667,1323,463 +2468,41.13333333333333,1367,464 +2469,41.15,1412,465 +2470,41.166666666666664,1457,465 +2471,41.18333333333333,1503,465 +2472,41.2,1549,464 +2473,41.21666666666667,1594,463 +2474,41.233333333333334,1639,461 +2475,41.25,1684,459 +2476,41.266666666666666,1728,456 +2477,41.28333333333333,1771,453 +2478,41.3,1813,450 +2479,41.31666666666666,1854,446 +2480,41.333333333333336,1893,442 +2481,41.35,1931,437 +2482,41.36666666666667,1966,433 +2483,41.38333333333333,2000,429 +2484,41.4,2031,425 +2485,41.416666666666664,2060,420 +2486,41.43333333333333,2086,417 +2487,41.45,2109,413 +2488,41.46666666666667,2130,410 +2489,41.483333333333334,2147,408 +2490,41.5,2163,405 +2491,41.516666666666666,2175,402 +2492,41.53333333333333,2184,400 +2493,41.55,2190,399 +2494,41.56666666666666,2190,399 +2495,41.583333333333336,2190,399 +2496,41.6,2187,400 +2497,41.61666666666667,2179,401 +2498,41.63333333333333,2169,403 +2499,41.65,2156,405 +2500,41.666666666666664,2139,408 +2501,41.68333333333333,2119,411 +2502,41.7,2097,414 +2503,41.71666666666667,2072,419 +2504,41.733333333333334,2045,423 +2505,41.75,2015,427 +2506,41.766666666666666,1982,432 +2507,41.78333333333333,1947,436 +2508,41.8,1910,440 +2509,41.81666666666666,1871,445 +2510,41.833333333333336,1831,449 +2511,41.85,1789,452 +2512,41.86666666666667,1746,455 +2513,41.88333333333333,1702,458 +2514,41.9,1658,461 +2515,41.916666666666664,1612,463 +2516,41.93333333333333,1567,464 +2517,41.95,1521,465 +2518,41.96666666666667,1474,465 +2519,41.983333333333334,1429,465 +2520,42.0,1383,465 +2521,42.016666666666666,1339,464 +2522,42.03333333333333,1295,463 +2523,42.05,1253,461 +2524,42.06666666666666,1211,458 +2525,42.083333333333336,1171,455 +2526,42.1,1132,452 +2527,42.11666666666667,1094,448 +2528,42.13333333333333,1059,445 +2529,42.15,1025,441 +2530,42.166666666666664,994,437 +2531,42.18333333333333,964,433 +2532,42.2,937,430 +2533,42.21666666666667,912,426 +2534,42.233333333333334,890,423 +2535,42.25,870,420 +2536,42.266666666666666,853,417 +2537,42.28333333333333,839,415 +2538,42.3,827,412 +2539,42.31666666666666,818,411 +2540,42.333333333333336,812,410 +2541,42.35,810,409 +2542,42.36666666666667,810,409 +2543,42.38333333333333,810,409 +2544,42.4,815,410 +2545,42.416666666666664,824,411 +2546,42.43333333333333,835,413 +2547,42.45,848,415 +2548,42.46666666666667,864,418 +2549,42.483333333333334,883,421 +2550,42.5,905,424 +2551,42.516666666666666,929,428 +2552,42.53333333333333,955,431 +2553,42.55,983,435 +2554,42.56666666666666,1013,438 +2555,42.583333333333336,1046,441 +2556,42.6,1081,445 +2557,42.61666666666667,1117,449 +2558,42.63333333333333,1155,452 +2559,42.65,1195,455 +2560,42.666666666666664,1237,458 +2561,42.68333333333333,1279,461 +2562,42.7,1321,463 +2563,42.71666666666667,1365,464 +2564,42.733333333333334,1409,465 +2565,42.75,1454,465 +2566,42.766666666666666,1500,465 +2567,42.78333333333333,1545,464 +2568,42.8,1591,463 +2569,42.81666666666666,1636,461 +2570,42.833333333333336,1681,459 +2571,42.85,1724,456 +2572,42.86666666666667,1768,453 +2573,42.88333333333333,1809,450 +2574,42.9,1850,446 +2575,42.916666666666664,1889,442 +2576,42.93333333333333,1927,438 +2577,42.95,1962,434 +2578,42.96666666666667,1996,430 +2579,42.983333333333334,2027,425 +2580,43.0,2056,421 +2581,43.016666666666666,2083,417 +2582,43.03333333333333,2107,414 +2583,43.05,2128,410 +2584,43.06666666666666,2146,407 +2585,43.083333333333336,2161,404 +2586,43.1,2173,402 +2587,43.11666666666667,2182,401 +2588,43.13333333333333,2188,400 +2589,43.15,2188,400 +2590,43.166666666666664,2188,400 +2591,43.18333333333333,2186,400 +2592,43.2,2179,402 +2593,43.21666666666667,2168,404 +2594,43.233333333333334,2155,406 +2595,43.25,2138,408 +2596,43.266666666666666,2119,412 +2597,43.28333333333333,2097,415 +2598,43.3,2071,419 +2599,43.31666666666666,2044,423 +2600,43.333333333333336,2014,427 +2601,43.35,1981,432 +2602,43.36666666666667,1946,436 +2603,43.38333333333333,1910,440 +2604,43.4,1871,445 +2605,43.416666666666664,1830,449 +2606,43.43333333333333,1789,453 +2607,43.45,1747,455 +2608,43.46666666666667,1703,458 +2609,43.483333333333334,1659,461 +2610,43.5,1614,462 +2611,43.516666666666666,1568,464 +2612,43.53333333333333,1522,465 +2613,43.55,1476,465 +2614,43.56666666666666,1430,465 +2615,43.583333333333336,1385,464 +2616,43.6,1340,463 +2617,43.61666666666667,1297,462 +2618,43.63333333333333,1255,460 +2619,43.65,1214,458 +2620,43.666666666666664,1174,455 +2621,43.68333333333333,1135,452 +2622,43.7,1097,448 +2623,43.71666666666667,1062,445 +2624,43.733333333333334,1028,441 +2625,43.75,997,437 +2626,43.766666666666666,967,433 +2627,43.78333333333333,940,430 +2628,43.8,915,426 +2629,43.81666666666666,893,423 +2630,43.833333333333336,873,420 +2631,43.85,856,417 +2632,43.86666666666667,842,415 +2633,43.88333333333333,830,413 +2634,43.9,821,411 +2635,43.916666666666664,815,410 +2636,43.93333333333333,814,410 +2637,43.95,814,410 +2638,43.96666666666667,814,410 +2639,43.983333333333334,819,410 +2640,44.0,827,412 +2641,44.016666666666666,838,413 +2642,44.03333333333333,851,415 +2643,44.05,867,418 +2644,44.06666666666666,886,421 +2645,44.083333333333336,907,425 +2646,44.1,931,428 +2647,44.11666666666667,957,431 +2648,44.13333333333333,985,435 +2649,44.15,1015,439 +2650,44.166666666666664,1047,442 +2651,44.18333333333333,1082,446 +2652,44.2,1118,449 +2653,44.21666666666667,1156,453 +2654,44.233333333333334,1195,456 +2655,44.25,1236,458 +2656,44.266666666666666,1277,460 +2657,44.28333333333333,1320,462 +2658,44.3,1364,464 +2659,44.31666666666666,1408,464 +2660,44.333333333333336,1453,464 +2661,44.35,1499,464 +2662,44.36666666666667,1543,464 +2663,44.38333333333333,1588,463 +2664,44.4,1633,461 +2665,44.416666666666664,1677,459 +2666,44.43333333333333,1721,457 +2667,44.45,1764,454 +2668,44.46666666666667,1806,450 +2669,44.483333333333334,1847,446 +2670,44.5,1886,442 +2671,44.516666666666666,1923,438 +2672,44.53333333333333,1959,433 +2673,44.55,1992,429 +2674,44.56666666666666,2023,425 +2675,44.583333333333336,2052,421 +2676,44.6,2078,417 +2677,44.61666666666667,2102,413 +2678,44.63333333333333,2123,410 +2679,44.65,2142,407 +2680,44.666666666666664,2157,404 +2681,44.68333333333333,2169,402 +2682,44.7,2178,401 +2683,44.71666666666667,2184,400 +2684,44.733333333333334,2184,400 +2685,44.75,2184,400 +2686,44.766666666666666,2182,401 +2687,44.78333333333333,2175,402 +2688,44.8,2165,404 +2689,44.81666666666666,2152,406 +2690,44.833333333333336,2135,409 +2691,44.85,2116,412 +2692,44.86666666666667,2094,415 +2693,44.88333333333333,2069,419 +2694,44.9,2042,423 +2695,44.916666666666664,2012,428 +2696,44.93333333333333,1980,432 +2697,44.95,1945,436 +2698,44.96666666666667,1909,440 +2699,44.983333333333334,1871,444 +2700,45.0,1831,448 +2701,45.016666666666666,1790,452 +2702,45.03333333333333,1747,455 +2703,45.05,1704,458 +2704,45.06666666666666,1660,461 +2705,45.083333333333336,1615,463 +2706,45.1,1570,464 +2707,45.11666666666667,1524,465 +2708,45.13333333333333,1479,466 +2709,45.15,1433,466 +2710,45.166666666666664,1389,466 +2711,45.18333333333333,1343,465 +2712,45.2,1300,463 +2713,45.21666666666667,1258,461 +2714,45.233333333333334,1216,458 +2715,45.25,1176,455 +2716,45.266666666666666,1137,452 +2717,45.28333333333333,1100,449 +2718,45.3,1065,445 +2719,45.31666666666666,1031,442 +2720,45.333333333333336,1000,438 +2721,45.35,971,434 +2722,45.36666666666667,943,430 +2723,45.38333333333333,919,427 +2724,45.4,896,424 +2725,45.416666666666664,876,420 +2726,45.43333333333333,859,418 +2727,45.45,845,415 +2728,45.46666666666667,834,413 +2729,45.483333333333334,825,411 +2730,45.5,819,410 +2731,45.516666666666666,817,410 +2732,45.53333333333333,817,410 +2733,45.55,817,410 +2734,45.56666666666666,822,410 +2735,45.583333333333336,830,411 +2736,45.6,840,413 +2737,45.61666666666667,853,415 +2738,45.63333333333333,869,418 +2739,45.65,888,421 +2740,45.666666666666664,909,424 +2741,45.68333333333333,932,428 +2742,45.7,958,431 +2743,45.71666666666667,986,435 +2744,45.733333333333334,1016,439 +2745,45.75,1048,442 +2746,45.766666666666666,1082,446 +2747,45.78333333333333,1118,449 +2748,45.8,1155,452 +2749,45.81666666666666,1194,455 +2750,45.833333333333336,1235,458 +2751,45.85,1276,460 +2752,45.86666666666667,1318,462 +2753,45.88333333333333,1362,464 +2754,45.9,1407,464 +2755,45.916666666666664,1451,464 +2756,45.93333333333333,1497,464 +2757,45.95,1542,464 +2758,45.96666666666667,1587,463 +2759,45.983333333333334,1632,461 +2760,46.0,1676,459 +2761,46.016666666666666,1720,456 +2762,46.03333333333333,1762,453 +2763,46.05,1804,450 +2764,46.06666666666666,1844,447 +2765,46.083333333333336,1883,443 +2766,46.1,1921,438 +2767,46.11666666666667,1956,434 +2768,46.13333333333333,1989,430 +2769,46.15,2021,426 +2770,46.166666666666664,2050,421 +2771,46.18333333333333,2076,417 +2772,46.2,2100,414 +2773,46.21666666666667,2121,411 +2774,46.233333333333334,2139,408 +2775,46.25,2154,405 +2776,46.266666666666666,2166,403 +2777,46.28333333333333,2175,402 +2778,46.3,2181,401 +2779,46.31666666666666,2181,401 +2780,46.333333333333336,2181,401 +2781,46.35,2180,401 +2782,46.36666666666667,2172,402 +2783,46.38333333333333,2163,404 +2784,46.4,2149,406 +2785,46.416666666666664,2133,409 +2786,46.43333333333333,2114,412 +2787,46.45,2092,416 +2788,46.46666666666667,2067,419 +2789,46.483333333333334,2040,424 +2790,46.5,2010,428 +2791,46.516666666666666,1977,433 +2792,46.53333333333333,1943,436 +2793,46.55,1907,440 +2794,46.56666666666666,1870,444 +2795,46.583333333333336,1830,448 +2796,46.6,1789,452 +2797,46.61666666666667,1747,455 +2798,46.63333333333333,1704,458 +2799,46.65,1659,460 +2800,46.666666666666664,1615,462 +2801,46.68333333333333,1570,463 +2802,46.7,1525,464 +2803,46.71666666666667,1479,464 +2804,46.733333333333334,1434,464 +2805,46.75,1390,464 +2806,46.766666666666666,1345,464 +2807,46.78333333333333,1303,463 +2808,46.8,1261,461 +2809,46.81666666666666,1219,458 +2810,46.833333333333336,1179,455 +2811,46.85,1140,452 +2812,46.86666666666667,1103,449 +2813,46.88333333333333,1068,445 +2814,46.9,1035,442 +2815,46.916666666666664,1003,438 +2816,46.93333333333333,974,434 +2817,46.95,947,431 +2818,46.96666666666667,923,427 +2819,46.983333333333334,901,424 +2820,47.0,881,421 +2821,47.016666666666666,864,418 +2822,47.03333333333333,850,416 +2823,47.05,838,414 +2824,47.06666666666666,829,412 +2825,47.083333333333336,823,411 +2826,47.1,821,411 +2827,47.11666666666667,821,411 +2828,47.13333333333333,821,411 +2829,47.15,826,411 +2830,47.166666666666664,834,412 +2831,47.18333333333333,844,414 +2832,47.2,857,417 +2833,47.21666666666667,873,419 +2834,47.233333333333334,891,422 +2835,47.25,912,425 +2836,47.266666666666666,935,428 +2837,47.28333333333333,960,432 +2838,47.3,988,435 +2839,47.31666666666666,1018,439 +2840,47.333333333333336,1050,443 +2841,47.35,1084,446 +2842,47.36666666666667,1119,450 +2843,47.38333333333333,1156,453 +2844,47.4,1195,456 +2845,47.416666666666664,1235,458 +2846,47.43333333333333,1277,461 +2847,47.45,1319,463 +2848,47.46666666666667,1362,464 +2849,47.483333333333334,1406,465 +2850,47.5,1450,465 +2851,47.516666666666666,1495,465 +2852,47.53333333333333,1540,464 +2853,47.55,1584,463 +2854,47.56666666666666,1629,462 +2855,47.583333333333336,1672,460 +2856,47.6,1715,458 +2857,47.61666666666667,1758,454 +2858,47.63333333333333,1800,451 +2859,47.65,1840,447 +2860,47.666666666666664,1879,443 +2861,47.68333333333333,1917,439 +2862,47.7,1952,435 +2863,47.71666666666667,1985,431 +2864,47.733333333333334,2016,426 +2865,47.75,2045,422 +2866,47.766666666666666,2071,418 +2867,47.78333333333333,2095,414 +2868,47.8,2115,411 +2869,47.81666666666666,2134,408 +2870,47.833333333333336,2149,405 +2871,47.85,2161,403 +2872,47.86666666666667,2170,402 +2873,47.88333333333333,2177,401 +2874,47.9,2177,401 +2875,47.916666666666664,2177,401 +2876,47.93333333333333,2176,402 +2877,47.95,2170,403 +2878,47.96666666666667,2160,405 +2879,47.983333333333334,2146,407 +2880,48.0,2130,410 +2881,48.016666666666666,2111,413 +2882,48.03333333333333,2089,416 +2883,48.05,2065,420 +2884,48.06666666666666,2038,424 +2885,48.083333333333336,2008,428 +2886,48.1,1977,432 +2887,48.11666666666667,1943,436 +2888,48.13333333333333,1907,441 +2889,48.15,1869,445 +2890,48.166666666666664,1830,448 +2891,48.18333333333333,1789,452 +2892,48.2,1747,456 +2893,48.21666666666667,1704,458 +2894,48.233333333333334,1661,461 +2895,48.25,1616,463 +2896,48.266666666666666,1571,464 +2897,48.28333333333333,1526,465 +2898,48.3,1482,465 +2899,48.31666666666666,1436,465 +2900,48.333333333333336,1392,465 +2901,48.35,1348,465 +2902,48.36666666666667,1306,464 +2903,48.38333333333333,1264,461 +2904,48.4,1222,458 +2905,48.416666666666664,1182,456 +2906,48.43333333333333,1144,453 +2907,48.45,1107,449 +2908,48.46666666666667,1072,446 +2909,48.483333333333334,1039,443 +2910,48.5,1007,439 +2911,48.516666666666666,978,435 +2912,48.53333333333333,952,432 +2913,48.55,927,428 +2914,48.56666666666666,905,425 +2915,48.583333333333336,885,422 +2916,48.6,868,419 +2917,48.61666666666667,854,417 +2918,48.63333333333333,842,415 +2919,48.65,832,413 +2920,48.666666666666664,826,412 +2921,48.68333333333333,824,411 +2922,48.7,824,411 +2923,48.71666666666667,824,411 +2924,48.733333333333334,828,412 +2925,48.75,836,413 +2926,48.766666666666666,846,415 +2927,48.78333333333333,859,417 +2928,48.8,875,419 +2929,48.81666666666666,893,422 +2930,48.833333333333336,913,425 +2931,48.85,936,428 +2932,48.86666666666667,961,431 +2933,48.88333333333333,988,434 +2934,48.9,1018,438 +2935,48.916666666666664,1050,442 +2936,48.93333333333333,1084,445 +2937,48.95,1119,449 +2938,48.96666666666667,1157,453 +2939,48.983333333333334,1195,455 +2940,49.0,1236,458 +2941,49.016666666666666,1277,460 +2942,49.03333333333333,1319,463 +2943,49.05,1361,464 +2944,49.06666666666666,1405,464 +2945,49.083333333333336,1449,464 +2946,49.1,1493,464 +2947,49.11666666666667,1538,464 +2948,49.13333333333333,1583,463 +2949,49.15,1627,461 +2950,49.166666666666664,1671,459 +2951,49.18333333333333,1714,457 +2952,49.2,1756,454 +2953,49.21666666666667,1798,451 +2954,49.233333333333334,1838,447 +2955,49.25,1876,443 +2956,49.266666666666666,1914,439 +2957,49.28333333333333,1949,436 +2958,49.3,1982,431 +2959,49.31666666666666,2013,427 +2960,49.333333333333336,2041,423 +2961,49.35,2068,420 +2962,49.36666666666667,2091,416 +2963,49.38333333333333,2112,413 +2964,49.4,2131,410 +2965,49.416666666666664,2146,407 +2966,49.43333333333333,2159,405 +2967,49.45,2168,403 +2968,49.46666666666667,2174,402 +2969,49.483333333333334,2174,402 +2970,49.5,2174,402 +2971,49.516666666666666,2173,402 +2972,49.53333333333333,2166,403 +2973,49.55,2157,405 +2974,49.56666666666666,2144,407 +2975,49.583333333333336,2129,410 +2976,49.6,2110,413 +2977,49.61666666666667,2089,416 +2978,49.63333333333333,2064,420 +2979,49.65,2037,424 +2980,49.666666666666664,2008,428 +2981,49.68333333333333,1976,432 +2982,49.7,1943,436 +2983,49.71666666666667,1907,440 +2984,49.733333333333334,1869,444 +2985,49.75,1830,448 +2986,49.766666666666666,1790,452 +2987,49.78333333333333,1748,455 +2988,49.8,1705,458 +2989,49.81666666666666,1662,460 +2990,49.833333333333336,1617,462 +2991,49.85,1572,464 +2992,49.86666666666667,1527,465 +2993,49.88333333333333,1482,465 +2994,49.9,1437,465 +2995,49.916666666666664,1393,465 +2996,49.93333333333333,1349,464 +2997,49.95,1306,463 +2998,49.96666666666667,1265,461 +2999,49.983333333333334,1224,458 +3000,50.0,1184,455 +3001,50.016666666666666,1146,452 +3002,50.03333333333333,1110,449 +3003,50.05,1075,445 +3004,50.06666666666666,1041,442 +3005,50.083333333333336,1010,438 +3006,50.1,981,434 +3007,50.11666666666667,955,431 +3008,50.13333333333333,930,427 +3009,50.15,908,424 +3010,50.166666666666664,889,422 +3011,50.18333333333333,872,419 +3012,50.2,858,417 +3013,50.21666666666667,846,415 +3014,50.233333333333334,837,413 +3015,50.25,830,412 +3016,50.266666666666666,827,411 +3017,50.28333333333333,827,411 +3018,50.3,827,411 +3019,50.31666666666666,832,412 +3020,50.333333333333336,839,413 +3021,50.35,849,415 +3022,50.36666666666667,862,417 +3023,50.38333333333333,877,419 +3024,50.4,895,422 +3025,50.416666666666664,915,425 +3026,50.43333333333333,938,428 +3027,50.45,963,432 +3028,50.46666666666667,990,435 +3029,50.483333333333334,1020,439 +3030,50.5,1051,442 +3031,50.516666666666666,1084,446 +3032,50.53333333333333,1120,450 +3033,50.55,1156,453 +3034,50.56666666666666,1195,456 +3035,50.583333333333336,1235,459 +3036,50.6,1276,461 +3037,50.61666666666667,1317,463 +3038,50.63333333333333,1360,464 +3039,50.65,1404,464 +3040,50.666666666666664,1448,464 +3041,50.68333333333333,1492,464 +3042,50.7,1537,464 +3043,50.71666666666667,1581,463 +3044,50.733333333333334,1626,461 +3045,50.75,1670,459 +3046,50.766666666666666,1712,457 +3047,50.78333333333333,1755,454 +3048,50.8,1796,451 +3049,50.81666666666666,1836,447 +3050,50.833333333333336,1874,443 +3051,50.85,1911,440 +3052,50.86666666666667,1946,436 +3053,50.88333333333333,1979,432 +3054,50.9,2010,428 +3055,50.916666666666664,2039,423 +3056,50.93333333333333,2065,420 +3057,50.95,2089,416 +3058,50.96666666666667,2110,413 +3059,50.983333333333334,2128,410 +3060,51.0,2143,407 +3061,51.016666666666666,2155,405 +3062,51.03333333333333,2165,404 +3063,51.05,2171,403 +3064,51.06666666666666,2171,403 +3065,51.083333333333336,2171,403 +3066,51.1,2170,403 +3067,51.11666666666667,2163,404 +3068,51.13333333333333,2154,406 +3069,51.15,2141,408 +3070,51.166666666666664,2125,411 +3071,51.18333333333333,2106,415 +3072,51.2,2084,418 +3073,51.21666666666667,2061,421 +3074,51.233333333333334,2034,425 +3075,51.25,2005,429 +3076,51.266666666666666,1974,433 +3077,51.28333333333333,1941,436 +3078,51.3,1905,441 +3079,51.31666666666666,1868,444 +3080,51.333333333333336,1829,448 +3081,51.35,1789,452 +3082,51.36666666666667,1747,455 +3083,51.38333333333333,1704,457 +3084,51.4,1661,460 +3085,51.416666666666664,1617,462 +3086,51.43333333333333,1573,463 +3087,51.449999999999996,1529,464 +3088,51.46666666666667,1484,465 +3089,51.483333333333334,1440,465 +3090,51.5,1396,465 +3091,51.516666666666666,1353,464 +3092,51.53333333333333,1310,463 +3093,51.55,1268,461 +3094,51.56666666666666,1227,459 +3095,51.583333333333336,1187,456 +3096,51.6,1149,453 +3097,51.61666666666667,1112,450 +3098,51.63333333333333,1078,446 +3099,51.65,1045,443 +3100,51.666666666666664,1014,439 +3101,51.68333333333333,985,435 +3102,51.699999999999996,958,432 +3103,51.71666666666667,933,428 +3104,51.733333333333334,911,425 +3105,51.75,892,422 +3106,51.766666666666666,875,419 +3107,51.78333333333333,860,417 +3108,51.8,848,415 +3109,51.81666666666666,839,413 +3110,51.833333333333336,833,412 +3111,51.85,830,412 +3112,51.86666666666667,830,412 +3113,51.88333333333333,830,412 +3114,51.9,835,412 +3115,51.916666666666664,842,414 +3116,51.93333333333333,852,415 +3117,51.949999999999996,864,417 +3118,51.96666666666667,880,419 +3119,51.983333333333334,897,422 +3120,52.0,918,426 +3121,52.016666666666666,940,429 +3122,52.03333333333333,965,432 +3123,52.05,992,435 +3124,52.06666666666666,1022,439 +3125,52.083333333333336,1053,443 +3126,52.1,1086,446 +3127,52.11666666666667,1121,450 +3128,52.13333333333333,1157,453 +3129,52.15,1195,455 +3130,52.166666666666664,1235,458 +3131,52.18333333333333,1276,460 +3132,52.199999999999996,1317,462 +3133,52.21666666666667,1360,464 +3134,52.233333333333334,1403,464 +3135,52.25,1447,464 +3136,52.266666666666666,1491,464 +3137,52.28333333333333,1535,464 +3138,52.3,1579,463 +3139,52.31666666666666,1623,462 +3140,52.333333333333336,1667,459 +3141,52.35,1710,457 +3142,52.36666666666667,1752,454 +3143,52.38333333333333,1793,451 +3144,52.4,1833,448 +3145,52.416666666666664,1871,444 +3146,52.43333333333333,1907,440 +3147,52.449999999999996,1943,436 +3148,52.46666666666667,1976,432 +3149,52.483333333333334,2006,428 +3150,52.5,2035,424 +3151,52.516666666666666,2061,421 +3152,52.53333333333333,2084,418 +3153,52.55,2104,414 +3154,52.56666666666666,2123,411 +3155,52.583333333333336,2139,408 +3156,52.6,2151,406 +3157,52.61666666666667,2160,405 +3158,52.63333333333333,2167,403 +3159,52.65,2167,403 +3160,52.666666666666664,2167,403 +3161,52.68333333333333,2167,403 +3162,52.699999999999996,2160,404 +3163,52.71666666666667,2150,406 +3164,52.733333333333334,2138,408 +3165,52.75,2122,410 +3166,52.766666666666666,2104,413 +3167,52.78333333333333,2083,417 +3168,52.8,2059,420 +3169,52.81666666666666,2033,424 +3170,52.833333333333336,2004,428 +3171,52.85,1973,432 +3172,52.86666666666667,1940,436 +3173,52.88333333333333,1905,441 +3174,52.9,1867,445 +3175,52.916666666666664,1829,448 +3176,52.93333333333333,1789,452 +3177,52.949999999999996,1748,455 +3178,52.96666666666667,1705,458 +3179,52.983333333333334,1662,460 +3180,53.0,1618,462 +3181,53.016666666666666,1574,464 +3182,53.03333333333333,1529,465 +3183,53.05,1484,465 +3184,53.06666666666666,1440,465 +3185,53.083333333333336,1396,465 +3186,53.1,1352,464 +3187,53.11666666666667,1310,463 +3188,53.13333333333333,1269,461 +3189,53.15,1228,459 +3190,53.166666666666664,1189,456 +3191,53.18333333333333,1151,453 +3192,53.199999999999996,1114,450 +3193,53.21666666666667,1080,446 +3194,53.233333333333334,1047,443 +3195,53.25,1016,439 +3196,53.266666666666666,987,436 +3197,53.28333333333333,961,432 +3198,53.3,936,429 +3199,53.31666666666666,915,425 +3200,53.333333333333336,895,423 +3201,53.35,878,420 +3202,53.36666666666667,864,418 +3203,53.38333333333333,852,416 +3204,53.4,843,414 +3205,53.416666666666664,836,413 +3206,53.43333333333333,833,413 +3207,53.449999999999996,833,413 +3208,53.46666666666667,833,413 +3209,53.483333333333334,838,413 +3210,53.5,845,414 +3211,53.516666666666666,855,416 +3212,53.53333333333333,867,418 +3213,53.55,882,420 +3214,53.56666666666666,900,423 +3215,53.583333333333336,920,426 +3216,53.6,942,429 +3217,53.61666666666667,967,432 +3218,53.63333333333333,993,436 +3219,53.65,1023,439 +3220,53.666666666666664,1054,443 +3221,53.68333333333333,1087,446 +3222,53.699999999999996,1122,449 +3223,53.71666666666667,1158,453 +3224,53.733333333333334,1196,455 +3225,53.75,1235,458 +3226,53.766666666666666,1276,460 +3227,53.78333333333333,1317,462 +3228,53.8,1359,464 +3229,53.81666666666666,1403,464 +3230,53.833333333333336,1446,464 +3231,53.85,1490,464 +3232,53.86666666666667,1534,464 +3233,53.88333333333333,1578,463 +3234,53.9,1622,461 +3235,53.916666666666664,1665,459 +3236,53.93333333333333,1708,457 +3237,53.949999999999996,1750,454 +3238,53.96666666666667,1791,451 +3239,53.983333333333334,1830,448 +3240,54.0,1868,445 +3241,54.016666666666666,1904,441 +3242,54.03333333333333,1939,437 +3243,54.05,1973,433 +3244,54.06666666666666,2003,428 +3245,54.083333333333336,2032,424 +3246,54.1,2058,421 +3247,54.11666666666667,2082,417 +3248,54.13333333333333,2103,414 +3249,54.15,2121,411 +3250,54.166666666666664,2137,408 +3251,54.18333333333333,2149,406 +3252,54.199999999999996,2158,405 +3253,54.21666666666667,2164,403 +3254,54.233333333333334,2164,403 +3255,54.25,2164,403 +3256,54.266666666666666,2163,403 +3257,54.28333333333333,2157,405 +3258,54.3,2148,406 +3259,54.31666666666666,2136,408 +3260,54.333333333333336,2120,410 +3261,54.35,2102,413 +3262,54.36666666666667,2081,417 +3263,54.38333333333333,2057,420 +3264,54.4,2031,424 +3265,54.416666666666664,2002,428 +3266,54.43333333333333,1971,433 +3267,54.449999999999996,1938,437 +3268,54.46666666666667,1904,441 +3269,54.483333333333334,1867,445 +3270,54.5,1828,448 +3271,54.516666666666666,1788,452 +3272,54.53333333333333,1747,455 +3273,54.55,1704,458 +3274,54.56666666666666,1661,460 +3275,54.583333333333336,1618,462 +3276,54.6,1574,464 +3277,54.61666666666667,1529,465 +3278,54.63333333333333,1485,465 +3279,54.65,1441,465 +3280,54.666666666666664,1397,465 +3281,54.68333333333333,1353,464 +3282,54.699999999999996,1311,463 +3283,54.71666666666667,1270,461 +3284,54.733333333333334,1230,459 +3285,54.75,1190,456 +3286,54.766666666666666,1153,453 +3287,54.78333333333333,1116,450 +3288,54.8,1082,446 +3289,54.81666666666666,1049,443 +3290,54.833333333333336,1018,440 +3291,54.85,990,436 +3292,54.86666666666667,964,433 +3293,54.88333333333333,939,429 +3294,54.9,917,426 +3295,54.916666666666664,898,423 +3296,54.93333333333333,881,420 +3297,54.949999999999996,867,418 +3298,54.96666666666667,855,416 +3299,54.983333333333334,846,415 +3300,55.0,840,414 +3301,55.016666666666666,837,413 +3302,55.03333333333333,837,413 +3303,55.05,837,413 +3304,55.06666666666666,841,414 +3305,55.083333333333336,848,415 +3306,55.1,858,416 +3307,55.11666666666667,871,418 +3308,55.13333333333333,885,421 +3309,55.15,903,424 +3310,55.166666666666664,923,426 +3311,55.18333333333333,945,429 +3312,55.199999999999996,969,433 +3313,55.21666666666667,996,436 +3314,55.233333333333334,1025,439 +3315,55.25,1056,443 +3316,55.266666666666666,1089,446 +3317,55.28333333333333,1124,450 +3318,55.3,1159,453 +3319,55.31666666666666,1197,456 +3320,55.333333333333336,1236,458 +3321,55.35,1276,460 +3322,55.36666666666667,1317,462 +3323,55.38333333333333,1359,464 +3324,55.4,1403,464 +3325,55.416666666666664,1446,464 +3326,55.43333333333333,1490,464 +3327,55.449999999999996,1534,464 +3328,55.46666666666667,1577,463 +3329,55.483333333333334,1621,462 +3330,55.5,1664,460 +3331,55.516666666666666,1707,457 +3332,55.53333333333333,1749,455 +3333,55.55,1789,451 +3334,55.56666666666666,1829,448 +3335,55.583333333333336,1867,444 +3336,55.6,1903,441 +3337,55.61666666666667,1937,437 +3338,55.63333333333333,1970,433 +3339,55.65,2001,429 +3340,55.666666666666664,2029,425 +3341,55.68333333333333,2055,422 +3342,55.699999999999996,2078,419 +3343,55.71666666666667,2098,416 +3344,55.733333333333334,2117,413 +3345,55.75,2132,410 +3346,55.766666666666666,2145,407 +3347,55.78333333333333,2154,406 +3348,55.8,2160,405 +3349,55.81666666666666,2160,404 +3350,55.833333333333336,2160,404 +3351,55.85,2160,404 +3352,55.86666666666667,2154,406 +3353,55.88333333333333,2145,407 +3354,55.9,2132,409 +3355,55.916666666666664,2117,412 +3356,55.93333333333333,2099,414 +3357,55.949999999999996,2078,417 +3358,55.96666666666667,2054,421 +3359,55.983333333333334,2028,425 +3360,56.0,1999,428 +3361,56.016666666666666,1968,432 +3362,56.03333333333333,1936,436 +3363,56.05,1901,440 +3364,56.06666666666666,1864,444 +3365,56.083333333333336,1826,448 +3366,56.1,1787,451 +3367,56.11666666666667,1746,455 +3368,56.13333333333333,1704,457 +3369,56.15,1661,460 +3370,56.166666666666664,1618,462 +3371,56.18333333333333,1575,464 +3372,56.199999999999996,1531,465 +3373,56.21666666666667,1487,465 +3374,56.233333333333334,1443,465 +3375,56.25,1399,465 +3376,56.266666666666666,1355,464 +3377,56.28333333333333,1313,463 +3378,56.3,1272,461 +3379,56.31666666666666,1232,458 +3380,56.333333333333336,1193,456 +3381,56.35,1155,453 +3382,56.36666666666667,1119,450 +3383,56.38333333333333,1085,447 +3384,56.4,1052,443 +3385,56.416666666666664,1022,440 +3386,56.43333333333333,993,436 +3387,56.449999999999996,967,433 +3388,56.46666666666667,942,429 +3389,56.483333333333334,921,426 +3390,56.5,901,423 +3391,56.516666666666666,884,421 +3392,56.53333333333333,870,418 +3393,56.55,858,416 +3394,56.56666666666666,849,415 +3395,56.583333333333336,843,414 +3396,56.6,840,413 +3397,56.61666666666667,840,413 +3398,56.63333333333333,840,413 +3399,56.65,844,414 +3400,56.666666666666664,851,415 +3401,56.68333333333333,861,416 +3402,56.699999999999996,873,418 +3403,56.71666666666667,888,421 +3404,56.733333333333334,905,423 +3405,56.75,925,426 +3406,56.766666666666666,947,429 +3407,56.78333333333333,971,433 +3408,56.8,997,436 +3409,56.81666666666666,1026,440 +3410,56.833333333333336,1057,443 +3411,56.85,1090,447 +3412,56.86666666666667,1124,450 +3413,56.88333333333333,1161,453 +3414,56.9,1198,456 +3415,56.916666666666664,1237,458 +3416,56.93333333333333,1277,461 +3417,56.949999999999996,1318,462 +3418,56.96666666666667,1359,463 +3419,56.983333333333334,1402,465 +3420,57.0,1446,465 +3421,57.016666666666666,1489,465 +3422,57.03333333333333,1533,464 +3423,57.05,1576,463 +3424,57.06666666666666,1620,462 +3425,57.083333333333336,1663,459 +3426,57.1,1705,457 +3427,57.11666666666667,1747,455 +3428,57.13333333333333,1787,451 +3429,57.15,1827,448 +3430,57.166666666666664,1864,445 +3431,57.18333333333333,1901,441 +3432,57.199999999999996,1935,437 +3433,57.21666666666667,1968,433 +3434,57.233333333333334,1998,429 +3435,57.25,2027,425 +3436,57.266666666666666,2053,422 +3437,57.28333333333333,2076,418 +3438,57.3,2097,415 +3439,57.31666666666666,2115,412 +3440,57.333333333333336,2130,410 +3441,57.35,2142,408 +3442,57.36666666666667,2152,406 +3443,57.38333333333333,2158,405 +3444,57.4,2158,405 +3445,57.416666666666664,2158,405 +3446,57.43333333333333,2158,405 +3447,57.449999999999996,2151,406 +3448,57.46666666666667,2142,408 +3449,57.483333333333334,2130,410 +3450,57.5,2115,412 +3451,57.516666666666666,2097,415 +3452,57.53333333333333,2076,418 +3453,57.55,2052,422 +3454,57.56666666666666,2026,426 +3455,57.583333333333336,1998,430 +3456,57.6,1967,434 +3457,57.61666666666667,1934,438 +3458,57.63333333333333,1899,442 +3459,57.65,1863,446 +3460,57.666666666666664,1824,449 +3461,57.68333333333333,1784,453 +3462,57.699999999999996,1743,456 +3463,57.71666666666667,1702,459 +3464,57.733333333333334,1660,461 +3465,57.75,1617,463 +3466,57.766666666666666,1574,464 +3467,57.78333333333333,1530,465 +3468,57.8,1486,465 +3469,57.81666666666666,1442,465 +3470,57.833333333333336,1400,465 +3471,57.85,1356,464 +3472,57.86666666666667,1314,463 +3473,57.88333333333333,1274,461 +3474,57.9,1235,458 +3475,57.916666666666664,1196,456 +3476,57.93333333333333,1158,453 +3477,57.949999999999996,1122,450 +3478,57.96666666666667,1087,446 +3479,57.983333333333334,1055,442 +3480,58.0,1024,439 +3481,58.016666666666666,996,436 +3482,58.03333333333333,970,432 +3483,58.05,946,429 +3484,58.06666666666666,924,426 +3485,58.083333333333336,905,423 +3486,58.1,888,420 +3487,58.11666666666667,874,418 +3488,58.13333333333333,862,416 +3489,58.15,853,415 +3490,58.166666666666664,846,414 +3491,58.18333333333333,843,413 +3492,58.199999999999996,843,413 +3493,58.21666666666667,843,413 +3494,58.233333333333334,847,414 +3495,58.25,854,415 +3496,58.266666666666666,864,417 +3497,58.28333333333333,876,419 +3498,58.3,891,421 +3499,58.31666666666666,908,424 +3500,58.333333333333336,927,427 +3501,58.35,949,430 +3502,58.36666666666667,973,433 +3503,58.38333333333333,1000,436 +3504,58.4,1028,440 +3505,58.416666666666664,1058,443 +3506,58.43333333333333,1091,446 +3507,58.449999999999996,1125,450 +3508,58.46666666666667,1161,453 +3509,58.483333333333334,1198,455 +3510,58.5,1237,458 +3511,58.516666666666666,1276,460 +3512,58.53333333333333,1317,462 +3513,58.55,1358,463 +3514,58.56666666666666,1401,464 +3515,58.583333333333336,1444,464 +3516,58.6,1487,464 +3517,58.61666666666667,1531,464 +3518,58.63333333333333,1574,463 +3519,58.65,1618,462 +3520,58.666666666666664,1660,460 +3521,58.68333333333333,1702,457 +3522,58.699999999999996,1744,455 +3523,58.71666666666667,1784,452 +3524,58.733333333333334,1823,449 +3525,58.75,1861,445 +3526,58.766666666666666,1897,441 +3527,58.78333333333333,1932,438 +3528,58.8,1964,434 +3529,58.81666666666666,1995,430 +3530,58.833333333333336,2023,426 +3531,58.85,2049,422 +3532,58.86666666666667,2072,419 +3533,58.88333333333333,2093,416 +3534,58.9,2111,413 +3535,58.916666666666664,2126,411 +3536,58.93333333333333,2138,409 +3537,58.949999999999996,2148,407 +3538,58.96666666666667,2154,406 +3539,58.983333333333334,2154,406 +3540,59.0,2154,406 +3541,59.016666666666666,2154,406 +3542,59.03333333333333,2148,407 +3543,59.05,2139,409 +3544,59.06666666666666,2127,411 +3545,59.083333333333336,2112,413 +3546,59.1,2094,416 +3547,59.11666666666667,2074,419 +3548,59.13333333333333,2050,423 +3549,59.15,2025,426 +3550,59.166666666666664,1996,430 +3551,59.18333333333333,1966,434 +3552,59.199999999999996,1933,438 +3553,59.21666666666667,1899,442 +3554,59.233333333333334,1862,446 +3555,59.25,1825,449 +3556,59.266666666666666,1785,452 +3557,59.28333333333333,1745,455 +3558,59.3,1704,458 +3559,59.31666666666666,1662,461 +3560,59.333333333333336,1619,463 +3561,59.35,1576,464 +3562,59.36666666666667,1532,465 +3563,59.38333333333333,1488,465 +3564,59.4,1445,465 +3565,59.416666666666664,1402,465 +3566,59.43333333333333,1359,465 +3567,59.449999999999996,1318,464 +3568,59.46666666666667,1277,461 +3569,59.483333333333334,1237,459 +3570,59.5,1198,457 +3571,59.516666666666666,1161,454 +3572,59.53333333333333,1125,451 +3573,59.55,1091,447 +3574,59.56666666666666,1059,444 +3575,59.583333333333336,1028,440 +3576,59.6,1000,437 +3577,59.61666666666667,974,434 +3578,59.63333333333333,950,431 +3579,59.65,928,427 +3580,59.666666666666664,909,425 +3581,59.68333333333333,892,422 +3582,59.699999999999996,878,420 +3583,59.71666666666667,866,418 +3584,59.733333333333334,857,416 +3585,59.75,850,415 +3586,59.766666666666666,847,414 +3587,59.78333333333333,847,414 +3588,59.8,847,414 +3589,59.81666666666666,851,415 +3590,59.833333333333336,858,416 +3591,59.85,867,418 +3592,59.86666666666667,879,419 +3593,59.88333333333333,893,421 +3594,59.9,911,424 +3595,59.916666666666664,930,427 +3596,59.93333333333333,952,430 +3597,59.949999999999996,976,433 +3598,59.96666666666667,1002,436 +3599,59.983333333333334,1030,440 +3600,60.0,1060,443 +3601,60.016666666666666,1093,447 +3602,60.03333333333333,1127,450 +3603,60.05,1162,453 +3604,60.06666666666666,1199,455 +3605,60.083333333333336,1238,458 +3606,60.1,1277,460 +3607,60.11666666666667,1317,462 +3608,60.13333333333333,1359,464 +3609,60.15,1401,464 +3610,60.166666666666664,1444,464 +3611,60.18333333333333,1487,464 +3612,60.199999999999996,1530,464 +3613,60.21666666666667,1573,463 +3614,60.233333333333334,1616,462 +3615,60.25,1658,460 +3616,60.266666666666666,1700,458 +3617,60.28333333333333,1741,455 +3618,60.3,1781,452 +3619,60.31666666666666,1820,449 +3620,60.333333333333336,1858,446 +3621,60.35,1893,442 +3622,60.36666666666667,1928,438 +3623,60.38333333333333,1960,434 +3624,60.4,1990,431 +3625,60.416666666666664,2018,427 +3626,60.43333333333333,2044,423 +3627,60.449999999999996,2068,419 +3628,60.46666666666667,2089,416 +3629,60.483333333333334,2107,413 +3630,60.5,2122,411 +3631,60.516666666666666,2135,409 +3632,60.53333333333333,2144,407 +3633,60.55,2150,406 +3634,60.56666666666666,2150,406 +3635,60.583333333333336,2150,406 +3636,60.6,2150,406 +3637,60.61666666666667,2144,407 +3638,60.63333333333333,2135,409 +3639,60.65,2123,411 +3640,60.666666666666664,2108,413 +3641,60.68333333333333,2090,416 +3642,60.699999999999996,2070,419 +3643,60.71666666666667,2047,422 +3644,60.733333333333334,2021,426 +3645,60.75,1993,430 +3646,60.766666666666666,1963,434 +3647,60.78333333333333,1930,438 +3648,60.8,1896,441 +3649,60.81666666666666,1860,445 +3650,60.833333333333336,1822,449 +3651,60.85,1783,452 +3652,60.86666666666667,1743,455 +3653,60.88333333333333,1701,458 +3654,60.9,1659,460 +3655,60.916666666666664,1617,462 +3656,60.93333333333333,1574,463 +3657,60.949999999999996,1530,464 +3658,60.96666666666667,1487,464 +3659,60.983333333333334,1444,464 +3660,61.0,1401,464 +3661,61.016666666666666,1358,463 +3662,61.03333333333333,1317,462 +3663,61.05,1277,460 +3664,61.06666666666666,1238,458 +3665,61.083333333333336,1199,456 +3666,61.1,1162,453 +3667,61.11666666666667,1127,450 +3668,61.13333333333333,1093,447 +3669,61.15,1061,444 +3670,61.166666666666664,1030,441 +3671,61.18333333333333,1002,437 +3672,61.199999999999996,976,434 +3673,61.21666666666667,953,431 +3674,61.233333333333334,931,428 +3675,61.25,912,425 +3676,61.266666666666666,895,422 +3677,61.28333333333333,881,420 +3678,61.3,869,418 +3679,61.31666666666666,860,417 +3680,61.333333333333336,854,416 +3681,61.35,850,415 +3682,61.36666666666667,850,415 +3683,61.38333333333333,850,415 +3684,61.4,853,415 +3685,61.416666666666664,860,416 +3686,61.43333333333333,869,418 +3687,61.449999999999996,881,420 +3688,61.46666666666667,896,422 +3689,61.483333333333334,912,424 +3690,61.5,932,427 +3691,61.516666666666666,953,430 +3692,61.53333333333333,977,433 +3693,61.55,1003,436 +3694,61.56666666666666,1031,440 +3695,61.583333333333336,1062,443 +3696,61.6,1094,447 +3697,61.61666666666667,1127,450 +3698,61.63333333333333,1163,453 +3699,61.65,1200,456 +3700,61.666666666666664,1238,458 +3701,61.68333333333333,1277,461 +3702,61.699999999999996,1317,462 +3703,61.71666666666667,1358,464 +3704,61.733333333333334,1401,464 +3705,61.75,1443,464 +3706,61.766666666666666,1486,464 +3707,61.78333333333333,1529,464 +3708,61.8,1572,463 +3709,61.81666666666666,1615,462 +3710,61.833333333333336,1658,460 +3711,61.85,1699,458 +3712,61.86666666666667,1740,455 +3713,61.88333333333333,1780,452 +3714,61.9,1819,449 +3715,61.916666666666664,1857,445 +3716,61.93333333333333,1893,442 +3717,61.949999999999996,1927,438 +3718,61.96666666666667,1959,434 +3719,61.983333333333334,1989,431 +3720,62.0,2017,427 +3721,62.016666666666666,2043,423 +3722,62.03333333333333,2066,420 +3723,62.05,2087,417 +3724,62.06666666666666,2105,414 +3725,62.083333333333336,2119,411 +3726,62.1,2132,409 +3727,62.11666666666667,2141,408 +3728,62.13333333333333,2147,407 +3729,62.15,2148,407 +3730,62.166666666666664,2148,407 +3731,62.18333333333333,2148,407 +3732,62.199999999999996,2142,408 +3733,62.21666666666667,2132,409 +3734,62.233333333333334,2120,411 +3735,62.25,2106,414 +3736,62.266666666666666,2088,416 +3737,62.28333333333333,2067,419 +3738,62.3,2044,423 +3739,62.31666666666666,2019,426 +3740,62.333333333333336,1991,430 +3741,62.35,1961,434 +3742,62.36666666666667,1928,438 +3743,62.38333333333333,1894,442 +3744,62.4,1858,446 +3745,62.416666666666664,1821,449 +3746,62.43333333333333,1782,452 +3747,62.449999999999996,1742,455 +3748,62.46666666666667,1701,458 +3749,62.483333333333334,1659,460 +3750,62.5,1616,462 +3751,62.516666666666666,1573,464 +3752,62.53333333333333,1530,465 +3753,62.55,1487,465 +3754,62.56666666666666,1444,465 +3755,62.583333333333336,1401,465 +3756,62.6,1359,464 +3757,62.61666666666667,1318,463 +3758,62.63333333333333,1277,462 +3759,62.65,1238,459 +3760,62.666666666666664,1200,457 +3761,62.68333333333333,1163,454 +3762,62.699999999999996,1127,451 +3763,62.71666666666667,1094,448 +3764,62.733333333333334,1062,444 +3765,62.75,1032,441 +3766,62.766666666666666,1004,437 +3767,62.78333333333333,978,434 +3768,62.8,954,431 +3769,62.81666666666666,932,428 +3770,62.833333333333336,913,425 +3771,62.85,897,423 +3772,62.86666666666667,883,420 +3773,62.88333333333333,871,418 +3774,62.9,862,417 +3775,62.916666666666664,855,416 +3776,62.93333333333333,852,415 +3777,62.949999999999996,852,415 +3778,62.96666666666667,852,415 +3779,62.983333333333334,856,416 +3780,63.0,862,417 +3781,63.016666666666666,872,418 +3782,63.03333333333333,884,420 +3783,63.05,898,422 +3784,63.06666666666666,915,425 +3785,63.083333333333336,934,427 +3786,63.1,955,430 +3787,63.11666666666667,979,434 +3788,63.13333333333333,1005,437 +3789,63.15,1033,440 +3790,63.166666666666664,1064,444 +3791,63.18333333333333,1096,447 +3792,63.199999999999996,1129,450 +3793,63.21666666666667,1164,453 +3794,63.233333333333334,1201,456 +3795,63.25,1239,459 +3796,63.266666666666666,1278,461 +3797,63.28333333333333,1318,463 +3798,63.3,1359,464 +3799,63.31666666666666,1402,465 +3800,63.333333333333336,1444,465 +3801,63.35,1487,465 +3802,63.36666666666667,1530,465 +3803,63.38333333333333,1573,464 +3804,63.4,1615,462 +3805,63.416666666666664,1657,460 +3806,63.43333333333333,1699,458 +3807,63.449999999999996,1740,455 +3808,63.46666666666667,1780,452 +3809,63.483333333333334,1818,449 +3810,63.5,1856,446 +3811,63.516666666666666,1891,442 +3812,63.53333333333333,1926,438 +3813,63.55,1958,435 +3814,63.56666666666666,1988,431 +3815,63.583333333333336,2016,427 +3816,63.6,2041,423 +3817,63.61666666666667,2064,420 +3818,63.63333333333333,2085,417 +3819,63.65,2103,414 +3820,63.666666666666664,2118,412 +3821,63.68333333333333,2130,410 +3822,63.699999999999996,2139,408 +3823,63.71666666666667,2145,408 +3824,63.733333333333334,2145,407 +3825,63.75,2145,407 +3826,63.766666666666666,2145,407 +3827,63.78333333333333,2139,408 +3828,63.8,2130,410 +3829,63.81666666666666,2119,412 +3830,63.833333333333336,2104,414 +3831,63.85,2086,417 +3832,63.86666666666667,2066,420 +3833,63.88333333333333,2043,423 +3834,63.9,2018,427 +3835,63.916666666666664,1990,431 +3836,63.93333333333333,1960,435 +3837,63.949999999999996,1928,438 +3838,63.96666666666667,1893,442 +3839,63.983333333333334,1858,446 +3840,64.0,1821,449 +3841,64.01666666666667,1782,453 +3842,64.03333333333333,1742,456 +3843,64.05,1701,458 +3844,64.06666666666666,1659,461 +3845,64.08333333333333,1617,462 +3846,64.1,1574,464 +3847,64.11666666666666,1531,465 +3848,64.13333333333333,1488,466 +3849,64.15,1445,466 +3850,64.16666666666667,1403,466 +3851,64.18333333333334,1361,465 +3852,64.2,1320,464 +3853,64.21666666666667,1279,462 +3854,64.23333333333333,1240,459 +3855,64.25,1202,457 +3856,64.26666666666667,1165,454 +3857,64.28333333333333,1130,451 +3858,64.3,1096,448 +3859,64.31666666666666,1064,445 +3860,64.33333333333333,1034,441 +3861,64.35,1006,438 +3862,64.36666666666666,980,435 +3863,64.38333333333333,956,432 +3864,64.4,935,429 +3865,64.41666666666667,916,426 +3866,64.43333333333334,899,423 +3867,64.45,885,421 +3868,64.46666666666667,873,419 +3869,64.48333333333333,865,418 +3870,64.5,858,417 +3871,64.51666666666667,854,416 +3872,64.53333333333333,854,416 +3873,64.55,854,416 +3874,64.56666666666666,858,417 +3875,64.58333333333333,865,418 +3876,64.6,874,419 +3877,64.61666666666666,886,421 +3878,64.63333333333333,900,423 +3879,64.65,917,426 +3880,64.66666666666667,936,429 +3881,64.68333333333334,958,431 +3882,64.7,981,434 +3883,64.71666666666667,1007,438 +3884,64.73333333333333,1035,441 +3885,64.75,1065,444 +3886,64.76666666666667,1097,448 +3887,64.78333333333333,1130,451 +3888,64.8,1166,454 +3889,64.81666666666666,1202,456 +3890,64.83333333333333,1240,459 +3891,64.85,1279,461 +3892,64.86666666666666,1319,463 +3893,64.88333333333333,1360,464 +3894,64.9,1402,465 +3895,64.91666666666667,1444,465 +3896,64.93333333333334,1487,465 +3897,64.95,1530,465 +3898,64.96666666666667,1572,464 +3899,64.98333333333333,1615,462 +3900,65.0,1657,460 +3901,65.01666666666667,1698,458 +3902,65.03333333333333,1739,456 +3903,65.05,1778,453 +3904,65.06666666666666,1817,450 +3905,65.08333333333333,1854,446 +3906,65.1,1890,443 +3907,65.11666666666666,1924,439 +3908,65.13333333333333,1956,435 +3909,65.15,1986,431 +3910,65.16666666666667,2013,428 +3911,65.18333333333334,2039,424 +3912,65.2,2062,421 +3913,65.21666666666667,2082,418 +3914,65.23333333333333,2100,415 +3915,65.25,2115,413 +3916,65.26666666666667,2127,411 +3917,65.28333333333333,2136,409 +3918,65.3,2142,408 +3919,65.31666666666666,2142,408 +3920,65.33333333333333,2142,408 +3921,65.35,2142,408 +3922,65.36666666666666,2137,409 +3923,65.38333333333333,2127,411 +3924,65.4,2116,413 +3925,65.41666666666667,2101,415 +3926,65.43333333333334,2083,418 +3927,65.45,2063,421 +3928,65.46666666666667,2040,424 +3929,65.48333333333333,2015,428 +3930,65.5,1987,431 +3931,65.51666666666667,1957,435 +3932,65.53333333333333,1925,439 +3933,65.55,1891,443 +3934,65.56666666666666,1856,446 +3935,65.58333333333333,1818,450 +3936,65.6,1780,453 +3937,65.61666666666666,1740,456 +3938,65.63333333333333,1699,458 +3939,65.65,1658,461 +3940,65.66666666666667,1616,463 +3941,65.68333333333334,1573,464 +3942,65.7,1530,465 +3943,65.71666666666667,1487,465 +3944,65.73333333333333,1445,465 +3945,65.75,1402,465 +3946,65.76666666666667,1360,465 +3947,65.78333333333333,1320,464 +3948,65.8,1279,462 +3949,65.81666666666666,1241,459 +3950,65.83333333333333,1203,457 +3951,65.85,1166,454 +3952,65.86666666666666,1131,451 +3953,65.88333333333333,1098,448 +3954,65.9,1066,445 +3955,65.91666666666667,1036,442 +3956,65.93333333333334,1008,438 +3957,65.95,982,435 +3958,65.96666666666667,959,432 +3959,65.98333333333333,937,429 +3960,66.0,919,426 +3961,66.01666666666667,902,423 +3962,66.03333333333333,888,421 +3963,66.05,876,419 +3964,66.06666666666666,867,418 +3965,66.08333333333333,861,417 +3966,66.1,857,416 +3967,66.11666666666666,857,416 +3968,66.13333333333333,857,416 +3969,66.15,861,417 +3970,66.16666666666667,868,418 +3971,66.18333333333334,877,419 +3972,66.2,889,421 +3973,66.21666666666667,903,423 +3974,66.23333333333333,920,426 +3975,66.25,939,429 +3976,66.26666666666667,960,432 +3977,66.28333333333333,984,435 +3978,66.3,1010,438 +3979,66.31666666666666,1038,441 +3980,66.33333333333333,1068,445 +3981,66.35,1099,448 +3982,66.36666666666666,1132,451 +3983,66.38333333333333,1167,454 +3984,66.4,1204,457 +3985,66.41666666666667,1242,459 +3986,66.43333333333334,1280,461 +3987,66.45,1320,463 +3988,66.46666666666667,1360,464 +3989,66.48333333333333,1402,465 +3990,66.5,1445,465 +3991,66.51666666666667,1487,465 +3992,66.53333333333333,1530,465 +3993,66.55,1572,464 +3994,66.56666666666666,1615,462 +3995,66.58333333333333,1656,460 +3996,66.6,1698,458 +3997,66.61666666666666,1738,456 +3998,66.63333333333333,1778,453 +3999,66.65,1816,450 +4000,66.66666666666667,1853,446 +4001,66.68333333333334,1888,443 +4002,66.7,1922,439 +4003,66.71666666666667,1954,435 +4004,66.73333333333333,1984,431 +4005,66.75,2011,428 +4006,66.76666666666667,2037,424 +4007,66.78333333333333,2060,421 +4008,66.8,2080,418 +4009,66.81666666666666,2098,415 +4010,66.83333333333333,2112,413 +4011,66.85,2125,411 +4012,66.86666666666666,2134,409 +4013,66.88333333333333,2140,408 +4014,66.9,2140,408 +4015,66.91666666666667,2140,408 +4016,66.93333333333334,2140,408 +4017,66.95,2134,409 +4018,66.96666666666667,2125,411 +4019,66.98333333333333,2113,413 +4020,67.0,2098,415 +4021,67.01666666666667,2081,418 +4022,67.03333333333333,2061,421 +4023,67.05,2038,424 +4024,67.06666666666666,2012,428 +4025,67.08333333333333,1985,431 +4026,67.1,1955,435 +4027,67.11666666666666,1923,439 +4028,67.13333333333333,1889,442 +4029,67.15,1854,446 +4030,67.16666666666667,1817,450 +4031,67.18333333333334,1779,453 +4032,67.2,1739,456 +4033,67.21666666666667,1699,459 +4034,67.23333333333333,1657,461 +4035,67.25,1615,463 +4036,67.26666666666667,1573,464 +4037,67.28333333333333,1530,465 +4038,67.3,1488,465 +4039,67.31666666666666,1445,465 +4040,67.33333333333333,1403,465 +4041,67.35,1361,465 +4042,67.36666666666666,1321,464 +4043,67.38333333333333,1281,462 +4044,67.4,1242,459 +4045,67.41666666666667,1204,457 +4046,67.43333333333334,1168,454 +4047,67.45,1132,452 +4048,67.46666666666667,1099,448 +4049,67.48333333333333,1068,445 +4050,67.5,1038,442 +4051,67.51666666666667,1010,439 +4052,67.53333333333333,984,436 +4053,67.55,961,432 +4054,67.56666666666666,940,429 +4055,67.58333333333333,921,427 +4056,67.6,904,424 +4057,67.61666666666666,890,422 +4058,67.63333333333333,879,421 +4059,67.65,870,419 +4060,67.66666666666667,863,418 +4061,67.68333333333334,860,417 +4062,67.7,860,417 +4063,67.71666666666667,860,417 +4064,67.73333333333333,864,418 +4065,67.75,870,419 +4066,67.76666666666667,880,420 +4067,67.78333333333333,891,422 +4068,67.8,905,424 +4069,67.81666666666666,922,427 +4070,67.83333333333333,941,429 +4071,67.85,962,432 +4072,67.86666666666666,986,435 +4073,67.88333333333333,1011,438 +4074,67.9,1039,441 +4075,67.91666666666667,1068,445 +4076,67.93333333333334,1100,448 +4077,67.95,1133,451 +4078,67.96666666666667,1168,454 +4079,67.98333333333333,1204,456 +4080,68.0,1242,459 +4081,68.01666666666667,1280,461 +4082,68.03333333333333,1320,463 +4083,68.05,1360,465 +4084,68.06666666666666,1402,465 +4085,68.08333333333333,1444,465 +4086,68.1,1486,465 +4087,68.11666666666666,1528,465 +4088,68.13333333333333,1570,464 +4089,68.15,1613,463 +4090,68.16666666666667,1654,461 +4091,68.18333333333334,1695,459 +4092,68.2,1736,456 +4093,68.21666666666667,1775,453 +4094,68.23333333333333,1813,450 +4095,68.25,1850,447 +4096,68.26666666666667,1885,443 +4097,68.28333333333333,1919,439 +4098,68.3,1951,436 +4099,68.31666666666666,1980,432 +4100,68.33333333333333,2008,429 +4101,68.35,2033,425 +4102,68.36666666666666,2056,422 +4103,68.38333333333333,2076,419 +4104,68.4,2094,416 +4105,68.41666666666667,2109,414 +4106,68.43333333333334,2121,412 +4107,68.45,2130,410 +4108,68.46666666666667,2136,409 +4109,68.48333333333333,2136,409 +4110,68.5,2136,409 +4111,68.51666666666667,2136,410 +4112,68.53333333333333,2130,411 +4113,68.55,2121,412 +4114,68.56666666666666,2109,414 +4115,68.58333333333333,2094,416 +4116,68.6,2077,419 +4117,68.61666666666666,2057,422 +4118,68.63333333333333,2034,425 +4119,68.65,2009,428 +4120,68.66666666666667,1982,432 +4121,68.68333333333334,1952,436 +4122,68.7,1920,439 +4123,68.71666666666667,1887,443 +4124,68.73333333333333,1851,447 +4125,68.75,1815,450 +4126,68.76666666666667,1776,453 +4127,68.78333333333333,1737,456 +4128,68.8,1697,459 +4129,68.81666666666666,1655,461 +4130,68.83333333333333,1614,463 +4131,68.85,1571,464 +4132,68.86666666666666,1529,465 +4133,68.88333333333333,1487,465 +4134,68.9,1444,465 +4135,68.91666666666667,1402,465 +4136,68.93333333333334,1360,465 +4137,68.95,1320,463 +4138,68.96666666666667,1280,462 +4139,68.98333333333333,1242,460 +4140,69.0,1204,457 +4141,69.01666666666667,1168,454 +4142,69.03333333333333,1133,452 +4143,69.05,1100,449 +4144,69.06666666666666,1068,445 +4145,69.08333333333333,1039,442 +4146,69.1,1011,439 +4147,69.11666666666666,986,435 +4148,69.13333333333333,962,432 +4149,69.15,941,429 +4150,69.16666666666667,922,427 +4151,69.18333333333334,906,424 +4152,69.2,892,422 +4153,69.21666666666667,880,420 +4154,69.23333333333333,871,419 +4155,69.25,865,418 +4156,69.26666666666667,861,417 +4157,69.28333333333333,861,417 +4158,69.3,861,417 +4159,69.31666666666666,865,418 +4160,69.33333333333333,872,419 +4161,69.35,881,420 +4162,69.36666666666666,892,422 +4163,69.38333333333333,907,424 +4164,69.4,923,427 +4165,69.41666666666667,942,429 +4166,69.43333333333334,963,432 +4167,69.45,987,435 +4168,69.46666666666667,1012,438 +4169,69.48333333333333,1040,442 +4170,69.5,1069,445 +4171,69.51666666666667,1101,448 +4172,69.53333333333333,1134,451 +4173,69.55,1169,454 +4174,69.56666666666666,1205,456 +4175,69.58333333333333,1243,459 +4176,69.6,1280,461 +4177,69.61666666666666,1320,463 +4178,69.63333333333333,1360,464 +4179,69.65,1402,465 +4180,69.66666666666667,1444,465 +4181,69.68333333333334,1486,465 +4182,69.7,1528,465 +4183,69.71666666666667,1570,464 +4184,69.73333333333333,1613,463 +4185,69.75,1654,461 +4186,69.76666666666667,1695,459 +4187,69.78333333333333,1736,456 +4188,69.8,1775,453 +4189,69.81666666666666,1813,450 +4190,69.83333333333333,1849,447 +4191,69.85,1885,443 +4192,69.86666666666666,1918,440 +4193,69.88333333333333,1950,436 +4194,69.9,1979,432 +4195,69.91666666666667,2006,429 +4196,69.93333333333334,2032,425 +4197,69.95,2054,422 +4198,69.96666666666667,2074,419 +4199,69.98333333333333,2092,416 +4200,70.0,2107,414 +4201,70.01666666666667,2119,412 +4202,70.03333333333333,2127,410 +4203,70.05,2134,409 +4204,70.06666666666666,2134,409 +4205,70.08333333333333,2134,409 +4206,70.1,2134,409 +4207,70.11666666666666,2128,410 +4208,70.13333333333333,2119,412 +4209,70.15,2107,413 +4210,70.16666666666667,2092,416 +4211,70.18333333333334,2075,418 +4212,70.2,2055,421 +4213,70.21666666666667,2032,425 +4214,70.23333333333333,2007,428 +4215,70.25,1979,432 +4216,70.26666666666667,1950,436 +4217,70.28333333333333,1918,439 +4218,70.3,1885,443 +4219,70.31666666666666,1850,446 +4220,70.33333333333333,1813,450 +4221,70.35,1775,453 +4222,70.36666666666666,1736,456 +4223,70.38333333333333,1696,459 +4224,70.4,1655,461 +4225,70.41666666666667,1613,463 +4226,70.43333333333334,1571,464 +4227,70.45,1529,465 +4228,70.46666666666667,1487,465 +4229,70.48333333333333,1444,465 +4230,70.5,1403,465 +4231,70.51666666666667,1361,464 +4232,70.53333333333333,1321,463 +4233,70.55,1281,462 +4234,70.56666666666666,1243,459 +4235,70.58333333333333,1206,457 +4236,70.6,1170,454 +4237,70.61666666666666,1135,451 +4238,70.63333333333333,1102,448 +4239,70.65,1070,445 +4240,70.66666666666667,1040,442 +4241,70.68333333333334,1013,439 +4242,70.7,987,436 +4243,70.71666666666667,964,433 +4244,70.73333333333333,943,430 +4245,70.75,924,427 +4246,70.76666666666667,908,424 +4247,70.78333333333333,894,422 +4248,70.8,882,420 +4249,70.81666666666666,873,419 +4250,70.83333333333333,867,418 +4251,70.85,863,417 +4252,70.86666666666666,863,417 +4253,70.88333333333333,863,417 +4254,70.9,867,418 +4255,70.91666666666667,873,419 +4256,70.93333333333334,882,420 +4257,70.95,894,422 +4258,70.96666666666667,908,424 +4259,70.98333333333333,925,427 +4260,71.0,943,430 +4261,71.01666666666667,964,433 +4262,71.03333333333333,987,435 +4263,71.05,1012,439 +4264,71.06666666666666,1040,442 +4265,71.08333333333333,1070,445 +4266,71.1,1101,448 +4267,71.11666666666666,1134,452 +4268,71.13333333333333,1169,454 +4269,71.15,1205,457 +4270,71.16666666666667,1243,459 +4271,71.18333333333334,1281,462 +4272,71.2,1321,463 +4273,71.21666666666667,1361,464 +4274,71.23333333333333,1403,465 +4275,71.25,1444,465 +4276,71.26666666666667,1486,465 +4277,71.28333333333333,1528,465 +4278,71.3,1570,464 +4279,71.31666666666666,1612,463 +4280,71.33333333333333,1653,461 +4281,71.35,1694,459 +4282,71.36666666666666,1735,456 +4283,71.38333333333333,1773,454 +4284,71.4,1811,450 +4285,71.41666666666667,1848,447 +4286,71.43333333333334,1883,444 +4287,71.45,1917,440 +4288,71.46666666666667,1948,436 +4289,71.48333333333333,1978,433 +4290,71.5,2005,429 +4291,71.51666666666667,2030,426 +4292,71.53333333333333,2053,423 +4293,71.55,2073,419 +4294,71.56666666666666,2090,417 +4295,71.58333333333333,2105,415 +4296,71.6,2117,413 +4297,71.61666666666666,2126,411 +4298,71.63333333333333,2132,410 +4299,71.65,2132,410 +4300,71.66666666666667,2132,410 +4301,71.68333333333334,2132,410 +4302,71.7,2126,411 +4303,71.71666666666667,2117,412 +4304,71.73333333333333,2106,415 +4305,71.75,2092,417 +4306,71.76666666666667,2074,419 +4307,71.78333333333333,2054,422 +4308,71.8,2031,425 +4309,71.81666666666666,2007,429 +4310,71.83333333333333,1979,432 +4311,71.85,1949,436 +4312,71.86666666666666,1918,440 +4313,71.88333333333333,1884,443 +4314,71.9,1850,447 +4315,71.91666666666667,1813,450 +4316,71.93333333333334,1775,453 +4317,71.95,1736,456 +4318,71.96666666666667,1696,459 +4319,71.98333333333333,1655,462 +4320,72.0,1613,463 +4321,72.01666666666667,1571,465 +4322,72.03333333333333,1529,466 +4323,72.05,1487,466 +4324,72.06666666666666,1445,466 +4325,72.08333333333333,1403,466 +4326,72.1,1361,465 +4327,72.11666666666666,1321,464 +4328,72.13333333333333,1282,463 +4329,72.15,1244,460 +4330,72.16666666666667,1206,458 +4331,72.18333333333334,1170,455 +4332,72.2,1135,452 +4333,72.21666666666667,1102,449 +4334,72.23333333333333,1071,446 +4335,72.25,1042,443 +4336,72.26666666666667,1014,440 +4337,72.28333333333333,989,436 +4338,72.3,966,433 +4339,72.31666666666666,945,431 +4340,72.33333333333333,926,428 +4341,72.35,909,425 +4342,72.36666666666666,896,423 +4343,72.38333333333333,884,421 +4344,72.4,875,420 +4345,72.41666666666667,869,419 +4346,72.43333333333334,865,418 +4347,72.45,865,418 +4348,72.46666666666667,865,418 +4349,72.48333333333333,869,419 +4350,72.5,876,420 +4351,72.51666666666667,885,421 +4352,72.53333333333333,896,423 +4353,72.55,910,425 +4354,72.56666666666666,927,428 +4355,72.58333333333333,946,430 +4356,72.6,967,433 +4357,72.61666666666666,990,436 +4358,72.63333333333333,1016,439 +4359,72.65,1043,443 +4360,72.66666666666667,1073,446 +4361,72.68333333333334,1104,449 +4362,72.7,1137,452 +4363,72.71666666666667,1171,455 +4364,72.73333333333333,1207,457 +4365,72.75,1244,460 +4366,72.76666666666667,1282,462 +4367,72.78333333333333,1322,463 +4368,72.8,1362,465 +4369,72.81666666666666,1403,465 +4370,72.83333333333333,1445,465 +4371,72.85,1487,465 +4372,72.86666666666666,1528,465 +4373,72.88333333333333,1570,464 +4374,72.9,1612,463 +4375,72.91666666666667,1653,461 +4376,72.93333333333334,1694,459 +4377,72.95,1734,457 +4378,72.96666666666667,1773,454 +4379,72.98333333333333,1811,451 +4380,73.0,1848,447 +4381,73.01666666666667,1883,444 +4382,73.03333333333333,1916,440 +4383,73.05,1947,437 +4384,73.06666666666666,1976,433 +4385,73.08333333333333,2003,429 +4386,73.1,2028,426 +4387,73.11666666666666,2050,423 +4388,73.13333333333333,2070,420 +4389,73.15,2087,417 +4390,73.16666666666667,2102,414 +4391,73.18333333333334,2114,412 +4392,73.2,2122,411 +4393,73.21666666666667,2128,410 +4394,73.23333333333333,2128,410 +4395,73.25,2128,410 +4396,73.26666666666667,2128,410 +4397,73.28333333333333,2122,411 +4398,73.3,2113,413 +4399,73.31666666666666,2101,415 +4400,73.33333333333333,2087,417 +4401,73.35,2070,420 +4402,73.36666666666666,2050,423 +4403,73.38333333333333,2027,426 +4404,73.4,2003,429 +4405,73.41666666666667,1976,433 +4406,73.43333333333334,1946,437 +4407,73.45,1915,440 +4408,73.46666666666667,1881,444 +4409,73.48333333333333,1847,447 +4410,73.5,1810,451 +4411,73.51666666666667,1772,454 +4412,73.53333333333333,1733,457 +4413,73.55,1693,459 +4414,73.56666666666666,1652,462 +4415,73.58333333333333,1611,463 +4416,73.6,1569,465 +4417,73.61666666666666,1527,466 +4418,73.63333333333333,1485,466 +4419,73.65,1443,466 +4420,73.66666666666667,1401,466 +4421,73.68333333333334,1360,465 +4422,73.7,1320,464 +4423,73.71666666666667,1281,462 +4424,73.73333333333333,1243,460 +4425,73.75,1205,457 +4426,73.76666666666667,1170,455 +4427,73.78333333333333,1135,452 +4428,73.8,1102,449 +4429,73.81666666666666,1070,446 +4430,73.83333333333333,1041,443 +4431,73.85,1015,440 +4432,73.86666666666666,989,437 +4433,73.88333333333333,966,433 +4434,73.9,946,431 +4435,73.91666666666667,927,428 +4436,73.93333333333334,911,425 +4437,73.95,898,423 +4438,73.96666666666667,887,422 +4439,73.98333333333333,878,420 +4440,74.0,871,419 +4441,74.01666666666667,868,418 +4442,74.03333333333333,868,418 +4443,74.05,868,418 +4444,74.06666666666666,872,419 +4445,74.08333333333333,879,420 +4446,74.1,888,422 +4447,74.11666666666666,900,423 +4448,74.13333333333333,914,425 +4449,74.15,930,428 +4450,74.16666666666667,949,431 +4451,74.18333333333334,949,431 +4452,74.2,970,433 +4453,74.21666666666667,993,436 +4454,74.23333333333333,1019,440 +4455,74.25,1046,443 +4456,74.26666666666667,1075,446 +4457,74.28333333333333,1106,449 +4458,74.3,1139,452 +4459,74.31666666666666,1173,455 +4460,74.33333333333333,1209,458 +4461,74.35,1247,460 +4462,74.36666666666666,1284,462 +4463,74.38333333333333,1324,464 +4464,74.4,1364,465 +4465,74.41666666666667,1405,466 +4466,74.43333333333334,1446,466 +4467,74.45,1488,466 +4468,74.46666666666667,1530,466 +4469,74.48333333333333,1571,465 +4470,74.5,1613,464 +4471,74.51666666666667,1654,461 +4472,74.53333333333333,1694,460 +4473,74.55,1734,457 +4474,74.56666666666666,1772,454 +4475,74.58333333333333,1810,451 +4476,74.6,1846,448 +4477,74.61666666666666,1881,444 +4478,74.63333333333333,1914,441 +4479,74.65,1945,437 +4480,74.66666666666667,1974,434 +4481,74.68333333333334,2001,430 +4482,74.7,2026,427 +4483,74.71666666666667,2048,424 +4484,74.73333333333333,2068,421 +4485,74.75,2085,418 +4486,74.76666666666667,2099,416 +4487,74.78333333333333,2111,414 +4488,74.8,2119,413 +4489,74.81666666666666,2125,412 +4490,74.83333333333333,2125,412 +4491,74.85,2125,412 +4492,74.86666666666666,2125,412 +4493,74.88333333333333,2119,413 +4494,74.9,2111,414 +4495,74.91666666666667,2099,416 +4496,74.93333333333334,2084,419 +4497,74.95,2067,421 +4498,74.96666666666667,2047,424 +4499,74.98333333333333,2025,427 +4500,75.0,2000,430 +4501,75.01666666666667,1973,434 +4502,75.03333333333333,1944,437 +4503,75.05,1912,441 +4504,75.06666666666666,1880,444 +4505,75.08333333333333,1845,448 +4506,75.1,1808,451 +4507,75.11666666666666,1771,455 +4508,75.13333333333333,1732,457 +4509,75.15,1692,460 +4510,75.16666666666667,1652,462 +4511,75.18333333333334,1610,464 +4512,75.2,1569,465 +4513,75.21666666666667,1527,466 +4514,75.23333333333333,1485,466 +4515,75.25,1443,466 +4516,75.26666666666667,1402,466 +4517,75.28333333333333,1362,465 +4518,75.3,1322,464 +4519,75.31666666666666,1283,463 +4520,75.33333333333333,1246,461 +4521,75.35,1208,458 +4522,75.36666666666666,1173,456 +4523,75.38333333333333,1139,453 +4524,75.4,1105,449 +4525,75.41666666666667,1074,447 +4526,75.43333333333334,1045,443 +4527,75.45,1018,440 +4528,75.46666666666667,993,437 +4529,75.48333333333333,970,434 +4530,75.5,949,431 +4531,75.51666666666667,930,428 +4532,75.53333333333333,914,425 +4533,75.55,900,423 +4534,75.56666666666666,889,421 +4535,75.58333333333333,880,420 +4536,75.6,874,419 +4537,75.61666666666666,871,418 +4538,75.63333333333333,871,418 +4539,75.65,871,418 +4540,75.66666666666667,875,419 +4541,75.68333333333334,882,420 +4542,75.7,891,422 +4543,75.71666666666667,902,424 +4544,75.73333333333333,917,426 +4545,75.75,932,428 +4546,75.76666666666667,951,431 +4547,75.78333333333333,972,434 +4548,75.8,995,437 +4549,75.81666666666666,1020,440 +4550,75.83333333333333,1048,443 +4551,75.85,1077,446 +4552,75.86666666666666,1107,449 +4553,75.88333333333333,1140,452 +4554,75.9,1174,455 +4555,75.91666666666667,1209,458 +4556,75.93333333333334,1246,460 +4557,75.95,1284,462 +4558,75.96666666666667,1323,464 +4559,75.98333333333333,1363,465 +4560,76.0,1405,466 +4561,76.01666666666667,1446,466 +4562,76.03333333333333,1487,466 +4563,76.05,1529,465 +4564,76.06666666666666,1570,464 +4565,76.08333333333333,1612,463 +4566,76.1,1653,461 +4567,76.11666666666666,1693,459 +4568,76.13333333333333,1732,457 +4569,76.15,1771,454 +4570,76.16666666666667,1809,451 +4571,76.18333333333334,1845,448 +4572,76.2,1879,444 +4573,76.21666666666667,1912,441 +4574,76.23333333333333,1943,437 +4575,76.25,1972,434 +4576,76.26666666666667,1999,430 +4577,76.28333333333333,2024,427 +4578,76.3,2046,424 +4579,76.31666666666666,2066,421 +4580,76.33333333333333,2083,418 +4581,76.35,2098,416 +4582,76.36666666666666,2109,414 +4583,76.38333333333333,2118,412 +4584,76.4,2124,412 +4585,76.41666666666667,2124,412 +4586,76.43333333333334,2124,412 +4587,76.45,2124,412 +4588,76.46666666666667,2118,413 +4589,76.48333333333333,2109,414 +4590,76.5,2097,416 +4591,76.51666666666667,2083,419 +4592,76.53333333333333,2065,421 +4593,76.55,2045,424 +4594,76.56666666666666,2023,427 +4595,76.58333333333333,1998,431 +4596,76.6,1971,434 +4597,76.61666666666666,1942,438 +4598,76.63333333333333,1911,441 +4599,76.65,1878,445 +4600,76.66666666666667,1843,448 +4601,76.68333333333334,1807,452 +4602,76.7,1770,455 +4603,76.71666666666667,1731,458 +4604,76.73333333333333,1691,460 +4605,76.75,1651,462 +4606,76.76666666666667,1610,464 +4607,76.78333333333333,1569,465 +4608,76.8,1527,466 +4609,76.81666666666666,1485,466 +4610,76.83333333333333,1444,466 +4611,76.85,1403,466 +4612,76.86666666666666,1361,465 +4613,76.88333333333333,1322,464 +4614,76.9,1283,463 +4615,76.91666666666667,1245,461 +4616,76.93333333333334,1208,458 +4617,76.95,1173,456 +4618,76.96666666666667,1138,453 +4619,76.98333333333333,1106,450 +4620,77.0,1075,447 +4621,77.01666666666667,1046,443 +4622,77.03333333333333,1019,440 +4623,77.05,994,437 +4624,77.06666666666666,971,434 +4625,77.08333333333333,950,431 +4626,77.1,932,429 +4627,77.11666666666666,916,426 +4628,77.13333333333333,902,424 +4629,77.15,891,422 +4630,77.16666666666667,882,421 +4631,77.18333333333334,876,420 +4632,77.2,873,420 +4633,77.21666666666667,873,420 +4634,77.23333333333333,873,420 +4635,77.25,877,420 +4636,77.26666666666667,884,421 +4637,77.28333333333333,893,423 +4638,77.3,904,424 +4639,77.31666666666666,918,426 +4640,77.33333333333333,934,429 +4641,77.35,953,431 +4642,77.36666666666666,974,434 +4643,77.38333333333333,997,437 +4644,77.4,1022,440 +4645,77.41666666666667,1049,443 +4646,77.43333333333334,1078,445 +4647,77.45,1109,449 +4648,77.46666666666667,1141,452 +4649,77.48333333333333,1175,455 +4650,77.5,1211,457 +4651,77.51666666666667,1248,460 +4652,77.53333333333333,1285,462 +4653,77.55,1325,464 +4654,77.56666666666666,1363,465 +4655,77.58333333333333,1405,466 +4656,77.6,1446,466 +4657,77.61666666666666,1486,466 +4658,77.63333333333333,1528,465 +4659,77.65,1569,465 +4660,77.66666666666667,1610,464 +4661,77.68333333333334,1651,462 +4662,77.7,1690,460 +4663,77.71666666666667,1730,458 +4664,77.73333333333333,1768,455 +4665,77.75,1806,452 +4666,77.76666666666667,1842,448 +4667,77.78333333333333,1877,445 +4668,77.8,1910,442 +4669,77.81666666666666,1941,438 +4670,77.83333333333333,1970,434 +4671,77.85,1997,431 +4672,77.86666666666666,2021,427 +4673,77.88333333333333,2044,424 +4674,77.9,2063,421 +4675,77.91666666666667,2080,419 +4676,77.93333333333334,2095,417 +4677,77.95,2106,415 +4678,77.96666666666667,2115,413 +4679,77.98333333333333,2121,413 +4680,78.0,2121,413 +4681,78.01666666666667,2121,413 +4682,78.03333333333333,2121,413 +4683,78.05,2115,414 +4684,78.06666666666666,2106,415 +4685,78.08333333333333,2094,417 +4686,78.1,2080,419 +4687,78.11666666666666,2063,422 +4688,78.13333333333333,2043,424 +4689,78.15,2021,427 +4690,78.16666666666667,1997,430 +4691,78.18333333333334,1970,434 +4692,78.2,1940,438 +4693,78.21666666666667,1909,441 +4694,78.23333333333333,1877,445 +4695,78.25,1842,448 +4696,78.26666666666667,1806,451 +4697,78.28333333333333,1769,454 +4698,78.3,1730,457 +4699,78.31666666666666,1691,460 +4700,78.33333333333333,1650,462 +4701,78.35,1609,464 +4702,78.36666666666666,1568,465 +4703,78.38333333333333,1527,466 +4704,78.4,1485,466 +4705,78.41666666666667,1444,466 +4706,78.43333333333334,1403,466 +4707,78.45,1362,466 +4708,78.46666666666667,1323,465 +4709,78.48333333333333,1284,463 +4710,78.5,1246,461 +4711,78.51666666666667,1209,459 +4712,78.53333333333333,1173,456 +4713,78.55,1139,453 +4714,78.56666666666666,1107,450 +4715,78.58333333333333,1076,447 +4716,78.6,1047,444 +4717,78.61666666666666,1020,441 +4718,78.63333333333333,996,437 +4719,78.65,973,435 +4720,78.66666666666667,952,432 +4721,78.68333333333334,933,429 +4722,78.7,918,427 +4723,78.71666666666667,904,425 +4724,78.73333333333333,893,423 +4725,78.75,884,422 +4726,78.76666666666667,878,421 +4727,78.78333333333333,874,420 +4728,78.8,874,420 +4729,78.81666666666666,874,420 +4730,78.83333333333333,878,421 +4731,78.85,885,422 +4732,78.86666666666666,894,423 +4733,78.88333333333333,905,425 +4734,78.9,919,427 +4735,78.91666666666667,936,429 +4736,78.93333333333334,955,432 +4737,78.95,976,435 +4738,78.96666666666667,999,438 +4739,78.98333333333333,1024,441 +4740,79.0,1051,444 +4741,79.01666666666667,1080,447 +4742,79.03333333333333,1110,450 +4743,79.05,1142,452 +4744,79.06666666666666,1176,455 +4745,79.08333333333333,1212,458 +4746,79.1,1249,459 +4747,79.11666666666666,1286,462 +4748,79.13333333333333,1324,463 +4749,79.15,1364,465 +4750,79.16666666666667,1405,465 +4751,79.18333333333334,1446,466 +4752,79.2,1487,466 +4753,79.21666666666667,1528,466 +4754,79.23333333333333,1569,465 +4755,79.25,1610,463 +4756,79.26666666666667,1651,462 +4757,79.28333333333333,1690,460 +4758,79.3,1730,457 +4759,79.31666666666666,1768,455 +4760,79.33333333333333,1805,452 +4761,79.35,1840,449 +4762,79.36666666666666,1874,446 +4763,79.38333333333333,1907,442 +4764,79.4,1938,438 +4765,79.41666666666667,1968,435 +4766,79.43333333333334,1994,431 +4767,79.45,2019,428 +4768,79.46666666666667,2041,425 +4769,79.48333333333333,2061,422 +4770,79.5,2078,420 +4771,79.51666666666667,2092,417 +4772,79.53333333333333,2104,416 +4773,79.55,2112,414 +4774,79.56666666666666,2118,413 +4775,79.58333333333333,2118,413 +4776,79.6,2118,413 +4777,79.61666666666666,2118,413 +4778,79.63333333333333,2112,414 +4779,79.65,2103,416 +4780,79.66666666666667,2092,417 +4781,79.68333333333334,2078,420 +4782,79.7,2060,422 +4783,79.71666666666667,2041,425 +4784,79.73333333333333,2019,428 +4785,79.75,1994,431 +4786,79.76666666666667,1967,435 +4787,79.78333333333333,1939,438 +4788,79.8,1908,442 +4789,79.81666666666666,1875,445 +4790,79.83333333333333,1840,449 +4791,79.85,1805,452 +4792,79.86666666666666,1767,455 +4793,79.88333333333333,1729,458 +4794,79.9,1690,461 +4795,79.91666666666667,1650,463 +4796,79.93333333333334,1609,464 +4797,79.95,1568,466 +4798,79.96666666666667,1526,467 +4799,79.98333333333333,1485,467 +4800,80.0,1443,467 +4801,80.01666666666667,1403,467 +4802,80.03333333333333,1362,466 +4803,80.05,1323,465 +4804,80.06666666666666,1284,464 +4805,80.08333333333333,1246,461 +4806,80.1,1210,459 +4807,80.11666666666666,1174,456 +4808,80.13333333333333,1140,454 +4809,80.15,1108,451 +4810,80.16666666666667,1077,447 +4811,80.18333333333334,1048,444 +4812,80.2,1021,441 +4813,80.21666666666667,996,438 +4814,80.23333333333333,973,435 +4815,80.25,953,432 +4816,80.26666666666667,935,430 +4817,80.28333333333333,919,427 +4818,80.3,905,425 +4819,80.31666666666666,894,424 +4820,80.33333333333333,885,422 +4821,80.35,879,421 +4822,80.36666666666666,876,421 +4823,80.38333333333333,876,421 +4824,80.4,876,421 +4825,80.41666666666667,880,421 +4826,80.43333333333334,886,422 +4827,80.45,895,424 +4828,80.46666666666667,907,426 +4829,80.48333333333333,921,428 +4830,80.5,937,430 +4831,80.51666666666667,956,433 +4832,80.53333333333333,977,436 +4833,80.55,1000,439 +4834,80.56666666666666,1025,442 +4835,80.58333333333333,1052,444 +4836,80.6,1081,447 +4837,80.61666666666666,1112,450 +4838,80.63333333333333,1144,453 +4839,80.65,1178,455 +4840,80.66666666666667,1213,458 +4841,80.68333333333334,1249,460 +4842,80.7,1286,462 +4843,80.71666666666667,1325,464 +4844,80.73333333333333,1365,465 +4845,80.75,1405,466 +4846,80.76666666666667,1446,466 +4847,80.78333333333333,1487,466 +4848,80.8,1528,466 +4849,80.81666666666666,1569,465 +4850,80.83333333333333,1610,464 +4851,80.85,1650,462 +4852,80.86666666666666,1690,460 +4853,80.88333333333333,1729,458 +4854,80.9,1766,456 +4855,80.91666666666667,1803,453 +4856,80.93333333333334,1839,450 +4857,80.95,1874,446 +4858,80.96666666666667,1907,442 +4859,80.98333333333333,1937,439 +4860,81.0,1967,435 +4861,81.01666666666667,1993,432 +4862,81.03333333333333,2018,429 +4863,81.05,2039,425 +4864,81.06666666666666,2059,423 +4865,81.08333333333333,2076,420 +4866,81.1,2090,418 +4867,81.11666666666666,2101,416 +4868,81.13333333333333,2110,415 +4869,81.15,2116,414 +4870,81.16666666666667,2116,414 +4871,81.18333333333334,2116,414 +4872,81.2,2116,414 +4873,81.21666666666667,2110,415 +4874,81.23333333333333,2101,417 +4875,81.25,2089,418 +4876,81.26666666666667,2075,421 +4877,81.28333333333333,2058,423 +4878,81.3,2038,426 +4879,81.31666666666666,2016,429 +4880,81.33333333333333,1992,432 +4881,81.35,1965,435 +4882,81.36666666666666,1936,439 +4883,81.38333333333333,1905,442 +4884,81.4,1873,446 +4885,81.41666666666667,1838,449 +4886,81.43333333333334,1802,453 +4887,81.45,1765,456 +4888,81.46666666666667,1727,459 +4889,81.48333333333333,1688,461 +4890,81.5,1648,463 +4891,81.51666666666667,1607,465 +4892,81.53333333333333,1566,466 +4893,81.55,1525,467 +4894,81.56666666666666,1484,467 +4895,81.58333333333333,1443,467 +4896,81.6,1402,467 +4897,81.61666666666666,1362,466 +4898,81.63333333333333,1323,465 +4899,81.65,1283,464 +4900,81.66666666666667,1246,462 +4901,81.68333333333334,1210,459 +4902,81.7,1175,456 +4903,81.71666666666667,1141,454 +4904,81.73333333333333,1109,451 +4905,81.75,1078,448 +4906,81.76666666666667,1050,445 +4907,81.78333333333333,1023,442 +4908,81.8,998,439 +4909,81.81666666666666,976,436 +4910,81.83333333333333,955,433 +4911,81.85,937,430 +4912,81.86666666666666,921,428 +4913,81.88333333333333,908,426 +4914,81.9,897,424 +4915,81.91666666666667,888,423 +4916,81.93333333333334,882,422 +4917,81.95,879,422 +4918,81.96666666666667,879,422 +4919,81.98333333333333,879,422 +4920,82.0,883,422 +4921,82.01666666666667,890,423 +4922,82.03333333333333,899,425 +4923,82.05,910,426 +4924,82.06666666666666,924,428 +4925,82.08333333333333,940,431 +4926,82.1,958,433 +4927,82.11666666666666,979,435 +4928,82.13333333333333,1002,438 +4929,82.15,1027,441 +4930,82.16666666666667,1054,444 +4931,82.18333333333334,1082,447 +4932,82.2,1113,450 +4933,82.21666666666667,1145,453 +4934,82.23333333333333,1179,456 +4935,82.25,1215,459 +4936,82.26666666666667,1252,461 +4937,82.28333333333333,1288,464 +4938,82.3,1327,465 +4939,82.31666666666666,1366,466 +4940,82.33333333333333,1406,467 +4941,82.35,1447,467 +4942,82.36666666666666,1487,467 +4943,82.38333333333333,1528,467 +4944,82.4,1568,466 +4945,82.41666666666667,1609,465 +4946,82.43333333333334,1650,463 +4947,82.45,1690,461 +4948,82.46666666666667,1729,458 +4949,82.48333333333333,1767,456 +4950,82.5,1804,453 +4951,82.51666666666667,1840,449 +4952,82.53333333333333,1874,446 +4953,82.55,1906,442 +4954,82.56666666666666,1936,439 +4955,82.58333333333333,1965,436 +4956,82.6,1991,432 +4957,82.61666666666666,2016,429 +4958,82.63333333333333,2037,426 +4959,82.65,2057,424 +4960,82.66666666666667,2073,421 +4961,82.68333333333334,2088,419 +4962,82.7,2099,417 +4963,82.71666666666667,2108,416 +4964,82.73333333333333,2113,415 +4965,82.75,2113,415 +4966,82.76666666666667,2113,415 +4967,82.78333333333333,2113,415 +4968,82.8,2107,415 +4969,82.81666666666666,2098,417 +4970,82.83333333333333,2086,418 +4971,82.85,2072,421 +4972,82.86666666666666,2055,423 +4973,82.88333333333333,2035,426 +4974,82.9,2013,430 +4975,82.91666666666667,1989,433 +4976,82.93333333333334,1962,436 +4977,82.95,1933,440 +4978,82.96666666666667,1903,443 +4979,82.98333333333333,1870,447 +4980,83.0,1836,450 +4981,83.01666666666667,1800,453 +4982,83.03333333333333,1763,456 +4983,83.05,1725,459 +4984,83.06666666666666,1686,461 +4985,83.08333333333333,1647,463 +4986,83.1,1606,465 +4987,83.11666666666666,1565,466 +4988,83.13333333333333,1525,467 +4989,83.15,1484,467 +4990,83.16666666666667,1443,467 +4991,83.18333333333334,1402,467 +4992,83.2,1362,466 +4993,83.21666666666667,1323,465 +4994,83.23333333333333,1284,464 +4995,83.25,1247,462 +4996,83.26666666666667,1211,459 +4997,83.28333333333333,1176,457 +4998,83.3,1142,454 +4999,83.31666666666666,1110,451 +5000,83.33333333333333,1080,448 +5001,83.35,1052,445 +5002,83.36666666666666,1025,442 +5003,83.38333333333333,1000,439 +5004,83.4,978,436 +5005,83.41666666666667,958,434 +5006,83.43333333333334,940,431 +5007,83.45,924,429 +5008,83.46666666666667,911,427 +5009,83.48333333333333,900,425 +5010,83.5,891,423 +5011,83.51666666666667,885,422 +5012,83.53333333333333,881,422 +5013,83.55,881,422 +5014,83.56666666666666,881,422 +5015,83.58333333333333,885,422 +5016,83.6,891,423 +5017,83.61666666666666,900,424 +5018,83.63333333333333,912,426 +5019,83.65,926,428 +5020,83.66666666666667,942,431 +5021,83.68333333333334,961,433 +5022,83.7,981,436 +5023,83.71666666666667,1004,439 +5024,83.73333333333333,1028,442 +5025,83.75,1055,445 +5026,83.76666666666667,1084,448 +5027,83.78333333333333,1114,451 +5028,83.8,1146,454 +5029,83.81666666666666,1180,457 +5030,83.83333333333333,1214,459 +5031,83.85,1251,462 +5032,83.86666666666666,1288,464 +5033,83.88333333333333,1327,465 +5034,83.9,1367,466 +5035,83.91666666666667,1407,467 +5036,83.93333333333334,1447,467 +5037,83.95,1488,467 +5038,83.96666666666667,1529,467 +5039,83.98333333333333,1569,466 +5040,84.0,1610,465 +5041,84.01666666666667,1650,463 +5042,84.03333333333333,1690,461 +5043,84.05,1728,459 +5044,84.06666666666666,1766,456 +5045,84.08333333333333,1803,453 +5046,84.1,1838,450 +5047,84.11666666666666,1872,446 +5048,84.13333333333333,1904,443 +5049,84.15,1935,439 +5050,84.16666666666667,1963,436 +5051,84.18333333333334,1989,432 +5052,84.2,2013,429 +5053,84.21666666666667,2035,426 +5054,84.23333333333333,2054,423 +5055,84.25,2071,421 +5056,84.26666666666667,2085,419 +5057,84.28333333333333,2096,418 +5058,84.3,2104,416 +5059,84.31666666666666,2110,416 +5060,84.33333333333333,2110,416 +5061,84.35,2110,416 +5062,84.36666666666666,2109,416 +5063,84.38333333333333,2104,417 +5064,84.4,2095,418 +5065,84.41666666666667,2083,420 +5066,84.43333333333334,2069,422 +5067,84.45,2052,424 +5068,84.46666666666667,2032,427 +5069,84.48333333333333,2010,430 +5070,84.5,1986,433 +5071,84.51666666666667,1959,437 +5072,84.53333333333333,1931,440 +5073,84.55,1901,443 +5074,84.56666666666666,1868,447 +5075,84.58333333333333,1834,450 +5076,84.6,1799,453 +5077,84.61666666666666,1762,456 +5078,84.63333333333333,1724,459 +5079,84.65,1685,461 +5080,84.66666666666667,1646,463 +5081,84.68333333333334,1606,465 +5082,84.7,1565,466 +5083,84.71666666666667,1524,467 +5084,84.73333333333333,1483,467 +5085,84.75,1443,467 +5086,84.76666666666667,1403,467 +5087,84.78333333333333,1363,466 +5088,84.8,1325,465 +5089,84.81666666666666,1286,464 +5090,84.83333333333333,1250,462 +5091,84.85,1213,459 +5092,84.86666666666666,1177,457 +5093,84.88333333333333,1144,454 +5094,84.9,1112,451 +5095,84.91666666666667,1082,448 +5096,84.93333333333334,1053,444 +5097,84.95,1027,441 +5098,84.96666666666667,1002,438 +5099,84.98333333333333,979,435 +5100,85.0,959,433 +5101,85.01666666666667,941,431 +5102,85.03333333333333,926,429 +5103,85.05,912,427 +5104,85.06666666666666,901,425 +5105,85.08333333333333,892,424 +5106,85.1,886,423 +5107,85.11666666666666,883,422 +5108,85.13333333333333,883,422 +5109,85.15,883,422 +5110,85.16666666666667,887,423 +5111,85.18333333333334,893,424 +5112,85.2,902,425 +5113,85.21666666666667,913,427 +5114,85.23333333333333,926,429 +5115,85.25,942,432 +5116,85.26666666666667,961,434 +5117,85.28333333333333,982,437 +5118,85.3,1005,440 +5119,85.31666666666666,1030,443 +5120,85.33333333333333,1057,446 +5121,85.35,1086,449 +5122,85.36666666666666,1116,452 +5123,85.38333333333333,1148,455 +5124,85.4,1181,457 +5125,85.41666666666667,1217,460 +5126,85.43333333333334,1253,462 +5127,85.45,1290,464 +5128,85.46666666666667,1328,466 +5129,85.48333333333333,1367,467 +5130,85.5,1407,467 +5131,85.51666666666667,1448,467 +5132,85.53333333333333,1488,467 +5133,85.55,1529,467 +5134,85.56666666666666,1569,466 +5135,85.58333333333333,1610,465 +5136,85.6,1650,463 +5137,85.61666666666666,1689,461 +5138,85.63333333333333,1727,459 +5139,85.65,1765,456 +5140,85.66666666666667,1801,453 +5141,85.68333333333334,1836,450 +5142,85.7,1870,447 +5143,85.71666666666667,1902,444 +5144,85.73333333333333,1932,440 +5145,85.75,1960,437 +5146,85.76666666666667,1987,434 +5147,85.78333333333333,2011,430 +5148,85.8,2032,427 +5149,85.81666666666666,2051,425 +5150,85.83333333333333,2068,422 +5151,85.85,2082,420 +5152,85.86666666666666,2093,418 +5153,85.88333333333333,2102,417 +5154,85.9,2107,416 +5155,85.91666666666667,2107,416 +5156,85.93333333333334,2107,416 +5157,85.95,2107,416 +5158,85.96666666666667,2101,417 +5159,85.98333333333333,2092,418 +5160,86.0,2081,420 +5161,86.01666666666667,2066,422 +5162,86.03333333333333,2050,425 +5163,86.05,2030,428 +5164,86.06666666666666,2009,431 +5165,86.08333333333333,1985,434 +5166,86.1,1959,437 +5167,86.11666666666666,1930,441 +5168,86.13333333333333,1900,444 +5169,86.15,1867,447 +5170,86.16666666666667,1834,450 +5171,86.18333333333334,1798,453 +5172,86.2,1762,456 +5173,86.21666666666667,1724,459 +5174,86.23333333333333,1685,461 +5175,86.25,1645,463 +5176,86.26666666666667,1605,464 +5177,86.28333333333333,1565,466 +5178,86.3,1524,467 +5179,86.31666666666666,1483,467 +5180,86.33333333333333,1443,467 +5181,86.35,1403,467 +5182,86.36666666666666,1363,466 +5183,86.38333333333333,1324,465 +5184,86.4,1286,464 +5185,86.41666666666667,1249,462 +5186,86.43333333333334,1213,459 +5187,86.45,1178,457 +5188,86.46666666666667,1145,454 +5189,86.48333333333333,1113,452 +5190,86.5,1082,449 +5191,86.51666666666667,1054,445 +5192,86.53333333333333,1027,443 +5193,86.55,1003,440 +5194,86.56666666666666,980,437 +5195,86.58333333333333,960,434 +5196,86.6,942,432 +5197,86.61666666666666,927,430 +5198,86.63333333333333,914,427 +5199,86.65,903,426 +5200,86.66666666666667,894,424 +5201,86.68333333333334,888,424 +5202,86.7,885,423 +5203,86.71666666666667,885,423 +5204,86.73333333333333,885,423 +5205,86.75,889,424 +5206,86.76666666666667,895,425 +5207,86.78333333333333,904,426 +5208,86.8,916,428 +5209,86.81666666666666,930,430 +5210,86.83333333333333,945,432 +5211,86.85,964,435 +5212,86.86666666666666,984,437 +5213,86.88333333333333,1007,440 +5214,86.9,1032,443 +5215,86.91666666666667,1059,446 +5216,86.93333333333334,1087,449 +5217,86.95,1117,452 +5218,86.96666666666667,1149,455 +5219,86.98333333333333,1183,457 +5220,87.0,1217,460 +5221,87.01666666666667,1254,462 +5222,87.03333333333333,1290,465 +5223,87.05,1328,466 +5224,87.06666666666666,1367,467 +5225,87.08333333333333,1407,467 +5226,87.1,1447,467 +5227,87.11666666666666,1487,467 +5228,87.13333333333333,1528,467 +5229,87.15,1568,466 +5230,87.16666666666667,1608,465 +5231,87.18333333333334,1648,463 +5232,87.2,1687,461 +5233,87.21666666666667,1726,459 +5234,87.23333333333333,1763,456 +5235,87.25,1800,453 +5236,87.26666666666667,1835,450 +5237,87.28333333333333,1868,447 +5238,87.3,1900,443 +5239,87.31666666666666,1931,440 +5240,87.33333333333333,1959,437 +5241,87.35,1985,433 +5242,87.36666666666666,2009,430 +5243,87.38333333333333,2030,427 +5244,87.4,2050,425 +5245,87.41666666666667,2067,422 +5246,87.43333333333334,2081,420 +5247,87.45,2092,419 +5248,87.46666666666667,2100,417 +5249,87.48333333333333,2105,416 +5250,87.5,2105,416 +5251,87.51666666666667,2105,416 +5252,87.53333333333333,2105,416 +5253,87.55,2099,416 +5254,87.56666666666666,2090,418 +5255,87.58333333333333,2078,420 +5256,87.6,2064,422 +5257,87.61666666666666,2047,424 +5258,87.63333333333333,2028,427 +5259,87.65,2006,430 +5260,87.66666666666667,1983,434 +5261,87.68333333333334,1956,437 +5262,87.7,1928,441 +5263,87.71666666666667,1897,444 +5264,87.73333333333333,1865,447 +5265,87.75,1831,450 +5266,87.76666666666667,1796,454 +5267,87.78333333333333,1760,457 +5268,87.8,1721,459 +5269,87.81666666666666,1683,462 +5270,87.83333333333333,1643,464 +5271,87.85,1604,466 +5272,87.86666666666666,1564,467 +5273,87.88333333333333,1524,467 +5274,87.9,1483,467 +5275,87.91666666666667,1443,467 +5276,87.93333333333334,1403,467 +5277,87.95,1364,467 +5278,87.96666666666667,1325,466 +5279,87.98333333333333,1287,464 +5280,88.0,1250,462 +5281,88.01666666666667,1214,460 +5282,88.03333333333333,1179,457 +5283,88.05,1146,455 +5284,88.06666666666666,1114,452 +5285,88.08333333333333,1085,449 +5286,88.1,1056,446 +5287,88.11666666666666,1030,443 +5288,88.13333333333333,1005,440 +5289,88.15,983,437 +5290,88.16666666666667,963,435 +5291,88.18333333333334,945,432 +5292,88.2,930,430 +5293,88.21666666666667,917,428 +5294,88.23333333333333,906,426 +5295,88.25,897,425 +5296,88.26666666666667,891,424 +5297,88.28333333333333,887,423 +5298,88.3,887,423 +5299,88.31666666666666,887,423 +5300,88.33333333333333,891,424 +5301,88.35,898,425 +5302,88.36666666666666,906,426 +5303,88.38333333333333,918,428 +5304,88.4,931,430 +5305,88.41666666666667,947,432 +5306,88.43333333333334,965,434 +5307,88.45,986,437 +5308,88.46666666666667,1008,440 +5309,88.48333333333333,1033,443 +5310,88.5,1060,446 +5311,88.51666666666667,1088,449 +5312,88.53333333333333,1118,452 +5313,88.55,1150,455 +5314,88.56666666666666,1183,457 +5315,88.58333333333333,1218,460 +5316,88.6,1254,462 +5317,88.61666666666666,1291,464 +5318,88.63333333333333,1329,466 +5319,88.65,1368,466 +5320,88.66666666666667,1408,467 +5321,88.68333333333334,1448,467 +5322,88.7,1488,467 +5323,88.71666666666667,1528,467 +5324,88.73333333333333,1569,466 +5325,88.75,1609,465 +5326,88.76666666666667,1649,463 +5327,88.78333333333333,1688,461 +5328,88.8,1726,459 +5329,88.81666666666666,1763,456 +5330,88.83333333333333,1800,453 +5331,88.85,1834,450 +5332,88.86666666666666,1868,446 +5333,88.88333333333333,1899,443 +5334,88.9,1929,440 +5335,88.91666666666667,1957,437 +5336,88.93333333333334,1983,433 +5337,88.95,2007,430 +5338,88.96666666666667,2029,427 +5339,88.98333333333333,2048,425 +5340,89.0,2064,423 +5341,89.01666666666667,2077,420 +5342,89.03333333333333,2089,419 +5343,89.05,2097,418 +5344,89.06666666666666,2102,417 +5345,89.08333333333333,2102,417 +5346,89.1,2102,417 +5347,89.11666666666666,2101,418 +5348,89.13333333333333,2096,419 +5349,89.15,2087,420 +5350,89.16666666666667,2076,421 +5351,89.18333333333334,2062,423 +5352,89.2,2045,426 +5353,89.21666666666667,2026,428 +5354,89.23333333333333,2005,431 +5355,89.25,1981,434 +5356,89.26666666666667,1954,438 +5357,89.28333333333333,1926,441 +5358,89.3,1896,445 +5359,89.31666666666666,1864,448 +5360,89.33333333333333,1830,451 +5361,89.35,1795,454 +5362,89.36666666666666,1759,457 +5363,89.38333333333333,1721,460 +5364,89.4,1683,462 +5365,89.41666666666667,1644,464 +5366,89.43333333333334,1604,466 +5367,89.45,1564,467 +5368,89.46666666666667,1524,468 +5369,89.48333333333333,1484,468 +5370,89.5,1444,468 +5371,89.51666666666667,1404,467 +5372,89.53333333333333,1364,467 +5373,89.55,1326,466 +5374,89.56666666666666,1288,465 +5375,89.58333333333333,1251,463 +5376,89.6,1215,460 +5377,89.61666666666666,1180,458 +5378,89.63333333333333,1147,455 +5379,89.65,1115,452 +5380,89.66666666666667,1085,449 +5381,89.68333333333334,1057,446 +5382,89.7,1031,443 +5383,89.71666666666667,1007,440 +5384,89.73333333333333,984,438 +5385,89.75,964,435 +5386,89.76666666666667,946,433 +5387,89.78333333333333,930,430 +5388,89.8,917,428 +5389,89.81666666666666,906,427 +5390,89.83333333333333,898,425 +5391,89.85,892,424 +5392,89.86666666666666,889,424 +5393,89.88333333333333,889,424 +5394,89.9,889,424 +5395,89.91666666666667,893,425 +5396,89.93333333333334,899,425 +5397,89.95,908,427 +5398,89.96666666666667,919,428 +5399,89.98333333333333,933,431 +5400,90.0,949,433 +5401,90.01666666666667,967,435 +5402,90.03333333333333,987,438 +5403,90.05,1010,441 +5404,90.06666666666666,1035,444 +5405,90.08333333333333,1062,447 +5406,90.1,1090,450 +5407,90.11666666666666,1120,453 +5408,90.13333333333333,1152,455 +5409,90.15,1185,458 +5410,90.16666666666667,1220,460 +5411,90.18333333333334,1256,462 +5412,90.2,1292,464 +5413,90.21666666666667,1329,465 +5414,90.23333333333333,1367,466 +5415,90.25,1407,467 +5416,90.26666666666667,1447,467 +5417,90.28333333333333,1488,467 +5418,90.3,1528,467 +5419,90.31666666666666,1568,467 +5420,90.33333333333333,1608,465 +5421,90.35,1647,464 +5422,90.36666666666666,1686,462 +5423,90.38333333333333,1724,460 +5424,90.4,1762,457 +5425,90.41666666666667,1797,455 +5426,90.43333333333334,1831,452 +5427,90.45,1865,448 +5428,90.46666666666667,1897,445 +5429,90.48333333333333,1927,441 +5430,90.5,1956,438 +5431,90.51666666666667,1982,435 +5432,90.53333333333333,2005,431 +5433,90.55,2027,429 +5434,90.56666666666666,2045,426 +5435,90.58333333333333,2062,424 +5436,90.6,2076,422 +5437,90.61666666666666,2087,420 +5438,90.63333333333333,2095,419 +5439,90.65,2101,418 +5440,90.66666666666667,2101,418 +5441,90.68333333333334,2101,418 +5442,90.7,2100,418 +5443,90.71666666666667,2094,419 +5444,90.73333333333333,2086,420 +5445,90.75,2074,422 +5446,90.76666666666667,2060,424 +5447,90.78333333333333,2044,426 +5448,90.8,2024,429 +5449,90.81666666666666,2003,432 +5450,90.83333333333333,1979,435 +5451,90.85,1953,438 +5452,90.86666666666666,1924,441 +5453,90.88333333333333,1894,445 +5454,90.9,1862,448 +5455,90.91666666666667,1829,452 +5456,90.93333333333334,1794,455 +5457,90.95,1757,458 +5458,90.96666666666667,1720,460 +5459,90.98333333333333,1682,462 +5460,91.0,1643,464 +5461,91.01666666666667,1603,466 +5462,91.03333333333333,1563,467 +5463,91.05,1523,468 +5464,91.06666666666666,1482,468 +5465,91.08333333333333,1442,468 +5466,91.1,1403,468 +5467,91.11666666666666,1363,467 +5468,91.13333333333333,1325,466 +5469,91.15,1287,465 +5470,91.16666666666667,1251,463 +5471,91.18333333333334,1215,461 +5472,91.2,1181,458 +5473,91.21666666666667,1148,455 +5474,91.23333333333333,1116,453 +5475,91.25,1086,450 +5476,91.26666666666667,1058,447 +5477,91.28333333333333,1032,444 +5478,91.3,1008,441 +5479,91.31666666666666,986,438 +5480,91.33333333333333,966,436 +5481,91.35,948,433 +5482,91.36666666666666,933,431 +5483,91.38333333333333,920,429 +5484,91.4,909,428 +5485,91.41666666666667,901,426 +5486,91.43333333333334,894,425 +5487,91.45,891,425 +5488,91.46666666666667,891,425 +5489,91.48333333333333,891,425 +5490,91.5,895,425 +5491,91.51666666666667,901,426 +5492,91.53333333333333,910,427 +5493,91.55,921,428 +5494,91.56666666666666,934,430 +5495,91.58333333333333,950,433 +5496,91.6,969,436 +5497,91.61666666666666,990,438 +5498,91.63333333333333,1012,441 +5499,91.65,1037,444 +5500,91.66666666666667,1062,447 +5501,91.68333333333334,1091,450 +5502,91.7,1120,453 +5503,91.71666666666667,1152,456 +5504,91.73333333333333,1185,458 +5505,91.75,1219,461 +5506,91.76666666666667,1255,463 +5507,91.78333333333333,1290,466 +5508,91.8,1329,467 +5509,91.81666666666666,1368,467 +5510,91.83333333333333,1408,468 +5511,91.85,1448,468 +5512,91.86666666666666,1488,468 +5513,91.88333333333333,1528,468 +5514,91.9,1568,467 +5515,91.91666666666667,1608,466 +5516,91.93333333333334,1647,464 +5517,91.95,1686,462 +5518,91.96666666666667,1724,460 +5519,91.98333333333333,1761,457 +5520,92.0,1797,454 +5521,92.01666666666667,1832,451 +5522,92.03333333333333,1865,448 +5523,92.05,1897,445 +5524,92.06666666666666,1926,441 +5525,92.08333333333333,1954,438 +5526,92.1,1980,435 +5527,92.11666666666666,2003,432 +5528,92.13333333333333,2024,429 +5529,92.15,2043,426 +5530,92.16666666666667,2059,424 +5531,92.18333333333334,2073,422 +5532,92.2,2084,420 +5533,92.21666666666667,2092,419 +5534,92.23333333333333,2097,418 +5535,92.25,2097,418 +5536,92.26666666666667,2097,418 +5537,92.28333333333333,2097,418 +5538,92.3,2091,419 +5539,92.31666666666666,2082,420 +5540,92.33333333333333,2071,422 +5541,92.35,2056,424 +5542,92.36666666666666,2040,427 +5543,92.38333333333333,2021,430 +5544,92.4,1999,433 +5545,92.41666666666667,1975,435 +5546,92.43333333333334,1949,439 +5547,92.45,1921,442 +5548,92.46666666666667,1891,445 +5549,92.48333333333333,1860,449 +5550,92.5,1826,452 +5551,92.51666666666667,1792,455 +5552,92.53333333333333,1756,457 +5553,92.55,1718,460 +5554,92.56666666666666,1680,462 +5555,92.58333333333333,1642,464 +5556,92.6,1602,466 +5557,92.61666666666666,1563,467 +5558,92.63333333333333,1522,468 +5559,92.65,1482,468 +5560,92.66666666666667,1443,468 +5561,92.68333333333334,1404,468 +5562,92.7,1364,467 +5563,92.71666666666667,1327,466 +5564,92.73333333333333,1289,465 +5565,92.75,1253,463 +5566,92.76666666666667,1217,461 +5567,92.78333333333333,1182,458 +5568,92.8,1149,455 +5569,92.81666666666666,1118,452 +5570,92.83333333333333,1088,449 +5571,92.85,1060,446 +5572,92.86666666666666,1034,443 +5573,92.88333333333333,1010,440 +5574,92.9,987,438 +5575,92.91666666666667,968,435 +5576,92.93333333333334,950,433 +5577,92.95,935,431 +5578,92.96666666666667,922,429 +5579,92.98333333333333,911,428 +5580,93.0,902,426 +5581,93.01666666666667,896,425 +5582,93.03333333333333,893,425 +5583,93.05,893,425 +5584,93.06666666666666,893,425 +5585,93.08333333333333,897,426 +5586,93.1,903,427 +5587,93.11666666666666,912,428 +5588,93.13333333333333,923,430 +5589,93.15,936,432 +5590,93.16666666666667,952,434 +5591,93.18333333333334,970,437 +5592,93.2,991,439 +5593,93.21666666666667,1013,442 +5594,93.23333333333333,1038,445 +5595,93.25,1064,448 +5596,93.26666666666667,1092,450 +5597,93.28333333333333,1122,453 +5598,93.3,1154,456 +5599,93.31666666666666,1187,459 +5600,93.33333333333333,1221,461 +5601,93.35,1257,463 +5602,93.36666666666666,1293,466 +5603,93.38333333333333,1331,467 +5604,93.4,1369,468 +5605,93.41666666666667,1409,468 +5606,93.43333333333334,1449,468 +5607,93.45,1488,468 +5608,93.46666666666667,1528,468 +5609,93.48333333333333,1568,467 +5610,93.5,1608,466 +5611,93.51666666666667,1647,464 +5612,93.53333333333333,1685,462 +5613,93.55,1723,460 +5614,93.56666666666666,1760,457 +5615,93.58333333333333,1796,455 +5616,93.6,1830,452 +5617,93.61666666666666,1863,449 +5618,93.63333333333333,1894,445 +5619,93.65,1924,442 +5620,93.66666666666667,1952,439 +5621,93.68333333333334,1977,436 +5622,93.7,2001,433 +5623,93.71666666666667,2022,430 +5624,93.73333333333333,2040,427 +5625,93.75,2056,425 +5626,93.76666666666667,2070,423 +5627,93.78333333333333,2081,421 +5628,93.8,2089,420 +5629,93.81666666666666,2094,419 +5630,93.83333333333333,2094,419 +5631,93.85,2094,419 +5632,93.86666666666666,2094,419 +5633,93.88333333333333,2088,420 +5634,93.9,2080,421 +5635,93.91666666666667,2068,423 +5636,93.93333333333334,2054,425 +5637,93.95,2038,427 +5638,93.96666666666667,2019,430 +5639,93.98333333333333,1997,433 +5640,94.0,1974,436 +5641,94.01666666666667,1948,439 +5642,94.03333333333333,1921,443 +5643,94.05,1891,446 +5644,94.06666666666666,1859,449 +5645,94.08333333333333,1826,452 +5646,94.1,1791,455 +5647,94.11666666666666,1755,457 +5648,94.13333333333333,1718,460 +5649,94.15,1680,462 +5650,94.16666666666667,1641,464 +5651,94.18333333333334,1602,465 +5652,94.2,1562,467 +5653,94.21666666666667,1522,467 +5654,94.23333333333333,1482,467 +5655,94.25,1443,467 +5656,94.26666666666667,1404,467 +5657,94.28333333333333,1364,467 +5658,94.3,1327,466 +5659,94.31666666666666,1289,465 +5660,94.33333333333333,1253,463 +5661,94.35,1218,461 +5662,94.36666666666666,1183,458 +5663,94.38333333333333,1150,456 +5664,94.4,1119,453 +5665,94.41666666666667,1089,450 +5666,94.43333333333334,1062,447 +5667,94.45,1035,444 +5668,94.46666666666667,1011,442 +5669,94.48333333333333,989,439 +5670,94.5,969,436 +5671,94.51666666666667,951,434 +5672,94.53333333333333,936,432 +5673,94.55,923,430 +5674,94.56666666666666,913,428 +5675,94.58333333333333,904,427 +5676,94.6,898,426 +5677,94.61666666666666,895,426 +5678,94.63333333333333,895,426 +5679,94.65,895,426 +5680,94.66666666666667,899,426 +5681,94.68333333333334,906,427 +5682,94.7,914,428 +5683,94.71666666666667,926,430 +5684,94.73333333333333,939,432 +5685,94.75,955,434 +5686,94.76666666666667,973,437 +5687,94.78333333333333,993,439 +5688,94.8,1015,442 +5689,94.81666666666666,1040,445 +5690,94.83333333333333,1066,448 +5691,94.85,1094,451 +5692,94.86666666666666,1124,454 +5693,94.88333333333333,1155,456 +5694,94.9,1188,459 +5695,94.91666666666667,1223,461 +5696,94.93333333333334,1258,464 +5697,94.95,1294,466 +5698,94.96666666666667,1331,467 +5699,94.98333333333333,1369,468 +5700,95.0,1409,468 +5701,95.01666666666667,1448,468 +5702,95.03333333333333,1488,468 +5703,95.05,1527,468 +5704,95.06666666666666,1567,467 +5705,95.08333333333333,1606,466 +5706,95.1,1645,465 +5707,95.11666666666666,1684,463 +5708,95.13333333333333,1721,460 +5709,95.15,1758,458 +5710,95.16666666666667,1794,455 +5711,95.18333333333334,1828,452 +5712,95.2,1861,449 +5713,95.21666666666667,1893,446 +5714,95.23333333333333,1922,442 +5715,95.25,1950,439 +5716,95.26666666666667,1975,436 +5717,95.28333333333333,1999,433 +5718,95.3,2020,430 +5719,95.31666666666666,2038,427 +5720,95.33333333333333,2054,425 +5721,95.35,2068,423 +5722,95.36666666666666,2079,421 +5723,95.38333333333333,2088,420 +5724,95.4,2094,419 +5725,95.41666666666667,2094,419 +5726,95.43333333333334,2094,419 +5727,95.45,2092,419 +5728,95.46666666666667,2086,420 +5729,95.48333333333333,2078,421 +5730,95.5,2066,423 +5731,95.51666666666667,2053,425 +5732,95.53333333333333,2036,427 +5733,95.55,2016,430 +5734,95.56666666666666,1995,433 +5735,95.58333333333333,1971,436 +5736,95.6,1945,439 +5737,95.61666666666666,1918,442 +5738,95.63333333333333,1888,446 +5739,95.65,1857,449 +5740,95.66666666666667,1824,452 +5741,95.68333333333334,1789,455 +5742,95.7,1754,458 +5743,95.71666666666667,1717,460 +5744,95.73333333333333,1679,463 +5745,95.75,1640,465 +5746,95.76666666666667,1601,466 +5747,95.78333333333333,1562,467 +5748,95.8,1522,468 +5749,95.81666666666666,1482,468 +5750,95.83333333333333,1442,468 +5751,95.85,1403,468 +5752,95.86666666666666,1363,468 +5753,95.88333333333333,1326,467 +5754,95.9,1289,465 +5755,95.91666666666667,1253,463 +5756,95.93333333333334,1218,461 +5757,95.95,1184,459 +5758,95.96666666666667,1152,456 +5759,95.98333333333333,1121,454 +5760,96.0,1091,451 +5761,96.01666666666667,1063,448 +5762,96.03333333333333,1037,445 +5763,96.05,1013,442 +5764,96.06666666666666,991,440 +5765,96.08333333333333,971,437 +5766,96.1,954,435 +5767,96.11666666666666,938,432 +5768,96.13333333333333,925,431 +5769,96.15,914,429 +5770,96.16666666666667,906,428 +5771,96.18333333333334,900,427 +5772,96.2,897,427 +5773,96.21666666666667,897,427 +5774,96.23333333333333,897,427 +5775,96.25,901,427 +5776,96.26666666666667,907,428 +5777,96.28333333333333,916,429 +5778,96.3,927,431 +5779,96.31666666666666,940,433 +5780,96.33333333333333,956,435 +5781,96.35,974,438 +5782,96.36666666666666,994,440 +5783,96.38333333333333,1016,442 +5784,96.4,1041,445 +5785,96.41666666666667,1066,448 +5786,96.43333333333334,1094,451 +5787,96.45,1124,454 +5788,96.46666666666667,1155,457 +5789,96.48333333333333,1188,459 +5790,96.5,1222,462 +5791,96.51666666666667,1257,464 +5792,96.53333333333333,1293,466 +5793,96.55,1331,467 +5794,96.56666666666666,1369,468 +5795,96.58333333333333,1408,468 +5796,96.6,1447,468 +5797,96.61666666666666,1487,468 +5798,96.63333333333333,1527,468 +5799,96.65,1566,468 +5800,96.66666666666667,1606,466 +5801,96.68333333333334,1645,465 +5802,96.7,1683,463 +5803,96.71666666666667,1721,460 +5804,96.73333333333333,1758,458 +5805,96.75,1793,455 +5806,96.76666666666667,1827,452 +5807,96.78333333333333,1860,449 +5808,96.8,1891,446 +5809,96.81666666666666,1921,443 +5810,96.83333333333333,1949,440 +5811,96.85,1974,436 +5812,96.86666666666666,1997,433 +5813,96.88333333333333,2018,430 +5814,96.9,2036,428 +5815,96.91666666666667,2052,425 +5816,96.93333333333334,2066,423 +5817,96.95,2076,421 +5818,96.96666666666667,2085,420 +5819,96.98333333333333,2090,419 +5820,97.0,2090,419 +5821,97.01666666666667,2090,419 +5822,97.03333333333333,2089,420 +5823,97.05,2083,420 +5824,97.06666666666666,2075,422 +5825,97.08333333333333,2064,424 +5826,97.1,2050,426 +5827,97.11666666666666,2033,428 +5828,97.13333333333333,2014,431 +5829,97.15,1993,433 +5830,97.16666666666667,1969,437 +5831,97.18333333333334,1944,440 +5832,97.2,1916,444 +5833,97.21666666666667,1886,447 +5834,97.23333333333333,1854,450 +5835,97.25,1821,453 +5836,97.26666666666667,1787,456 +5837,97.28333333333333,1751,459 +5838,97.3,1715,461 +5839,97.31666666666666,1678,463 +5840,97.33333333333333,1640,465 +5841,97.35,1601,467 +5842,97.36666666666666,1562,468 +5843,97.38333333333333,1522,468 +5844,97.4,1482,469 +5845,97.41666666666667,1443,469 +5846,97.43333333333334,1404,469 +5847,97.45,1365,468 +5848,97.46666666666667,1327,467 +5849,97.48333333333333,1290,466 +5850,97.5,1254,464 +5851,97.51666666666667,1219,461 +5852,97.53333333333333,1185,459 +5853,97.55,1153,456 +5854,97.56666666666666,1122,454 +5855,97.58333333333333,1092,451 +5856,97.6,1064,448 +5857,97.61666666666666,1038,445 +5858,97.63333333333333,1014,443 +5859,97.65,993,440 +5860,97.66666666666667,973,437 +5861,97.68333333333334,955,435 +5862,97.7,940,433 +5863,97.71666666666667,927,431 +5864,97.73333333333333,916,430 +5865,97.75,908,428 +5866,97.76666666666667,902,427 +5867,97.78333333333333,899,427 +5868,97.8,899,427 +5869,97.81666666666666,899,427 +5870,97.83333333333333,902,427 +5871,97.85,909,428 +5872,97.86666666666666,917,429 +5873,97.88333333333333,928,431 +5874,97.9,942,433 +5875,97.91666666666667,957,435 +5876,97.93333333333334,975,438 +5877,97.95,995,440 +5878,97.96666666666667,1017,443 +5879,97.98333333333333,1042,446 +5880,98.0,1068,449 +5881,98.01666666666667,1095,452 +5882,98.03333333333333,1125,454 +5883,98.05,1156,457 +5884,98.06666666666666,1189,460 +5885,98.08333333333333,1223,462 +5886,98.1,1259,464 +5887,98.11666666666666,1294,466 +5888,98.13333333333333,1332,467 +5889,98.15,1370,468 +5890,98.16666666666667,1409,468 +5891,98.18333333333334,1448,468 +5892,98.2,1487,468 +5893,98.21666666666667,1527,468 +5894,98.23333333333333,1566,467 +5895,98.25,1606,466 +5896,98.26666666666667,1644,465 +5897,98.28333333333333,1683,463 +5898,98.3,1721,461 +5899,98.31666666666666,1757,458 +5900,98.33333333333333,1793,455 +5901,98.35,1827,452 +5902,98.36666666666666,1859,449 +5903,98.38333333333333,1890,446 +5904,98.4,1919,443 +5905,98.41666666666667,1947,439 +5906,98.43333333333334,1972,436 +5907,98.45,1995,433 +5908,98.46666666666667,2016,430 +5909,98.48333333333333,2034,428 +5910,98.5,2050,425 +5911,98.51666666666667,2063,424 +5912,98.53333333333333,2074,422 +5913,98.55,2082,421 +5914,98.56666666666666,2088,420 +5915,98.58333333333333,2088,420 +5916,98.6,2088,420 +5917,98.61666666666666,2087,421 +5918,98.63333333333333,2081,421 +5919,98.65,2072,423 +5920,98.66666666666667,2061,424 +5921,98.68333333333334,2047,427 +5922,98.7,2031,429 +5923,98.71666666666667,2012,432 +5924,98.73333333333333,1990,435 +5925,98.75,1966,438 +5926,98.76666666666667,1941,441 +5927,98.78333333333333,1914,444 +5928,98.8,1885,447 +5929,98.81666666666666,1853,450 +5930,98.83333333333333,1821,453 +5931,98.85,1787,456 +5932,98.86666666666666,1752,459 +5933,98.88333333333333,1715,461 +5934,98.9,1678,463 +5935,98.91666666666667,1639,465 +5936,98.93333333333334,1601,467 +5937,98.95,1561,468 +5938,98.96666666666667,1522,468 +5939,98.98333333333333,1482,468 +5940,99.0,1443,468 +5941,99.01666666666667,1405,468 +5942,99.03333333333333,1366,468 +5943,99.05,1328,467 +5944,99.06666666666666,1290,466 +5945,99.08333333333333,1255,464 +5946,99.1,1220,462 +5947,99.11666666666666,1186,459 +5948,99.13333333333333,1154,457 +5949,99.15,1123,454 +5950,99.16666666666667,1094,452 +5951,99.18333333333334,1066,449 +5952,99.2,1040,446 +5953,99.21666666666667,1017,443 +5954,99.23333333333333,995,440 +5955,99.25,975,438 +5956,99.26666666666667,958,435 +5957,99.28333333333333,942,433 +5958,99.3,929,432 +5959,99.31666666666666,918,430 +5960,99.33333333333333,910,429 +5961,99.35,904,428 +5962,99.36666666666666,901,427 +5963,99.38333333333333,901,427 +5964,99.4,901,427 +5965,99.41666666666667,905,428 +5966,99.43333333333334,911,429 +5967,99.45,919,430 +5968,99.46666666666667,930,431 +5969,99.48333333333333,944,433 +5970,99.5,959,436 +5971,99.51666666666667,977,438 +5972,99.53333333333333,997,441 +5973,99.55,1019,443 +5974,99.56666666666666,1043,446 +5975,99.58333333333333,1069,449 +5976,99.6,1097,452 +5977,99.61666666666666,1127,455 +5978,99.63333333333333,1158,457 +5979,99.65,1190,460 +5980,99.66666666666667,1224,462 +5981,99.68333333333334,1259,464 +5982,99.7,1295,466 +5983,99.71666666666667,1332,467 +5984,99.73333333333333,1370,468 +5985,99.75,1409,469 +5986,99.76666666666667,1448,469 +5987,99.78333333333333,1487,469 +5988,99.8,1527,468 +5989,99.81666666666666,1566,468 +5990,99.83333333333333,1606,467 +5991,99.85,1644,465 +5992,99.86666666666666,1683,463 +5993,99.88333333333333,1720,461 +5994,99.9,1757,459 +5995,99.91666666666667,1792,456 +5996,99.93333333333334,1826,452 +5997,99.95,1858,450 +5998,99.96666666666667,1889,446 +5999,99.98333333333333,1918,443 +6000,100.0,1945,440 +6001,100.01666666666667,1970,436 +6002,100.03333333333333,1993,433 +6003,100.05,2013,431 +6004,100.06666666666666,2032,428 +6005,100.08333333333333,2047,426 +6006,100.1,2061,424 +6007,100.11666666666666,2072,423 +6008,100.13333333333333,2080,422 +6009,100.15,2086,421 +6010,100.16666666666667,2086,421 +6011,100.18333333333334,2086,421 +6012,100.2,2085,421 +6013,100.21666666666667,2079,422 +6014,100.23333333333333,2070,423 +6015,100.25,2059,425 +6016,100.26666666666667,2045,427 +6017,100.28333333333333,2029,429 +6018,100.3,2010,432 +6019,100.31666666666666,1989,435 +6020,100.33333333333333,1965,438 +6021,100.35,1939,441 +6022,100.36666666666666,1912,444 +6023,100.38333333333333,1883,447 +6024,100.4,1852,450 +6025,100.41666666666667,1820,453 +6026,100.43333333333334,1786,456 +6027,100.45,1751,459 +6028,100.46666666666667,1714,461 +6029,100.48333333333333,1677,463 +6030,100.5,1639,466 +6031,100.51666666666667,1600,467 +6032,100.53333333333333,1561,468 +6033,100.55,1522,469 +6034,100.56666666666666,1482,469 +6035,100.58333333333333,1443,469 +6036,100.6,1405,469 +6037,100.61666666666666,1366,468 +6038,100.63333333333333,1328,467 +6039,100.65,1291,466 +6040,100.66666666666667,1256,464 +6041,100.68333333333334,1221,462 +6042,100.7,1187,460 +6043,100.71666666666667,1155,457 +6044,100.73333333333333,1124,454 +6045,100.75,1095,452 +6046,100.76666666666667,1067,449 +6047,100.78333333333333,1042,446 +6048,100.8,1018,443 +6049,100.81666666666666,996,440 +6050,100.83333333333333,977,438 +6051,100.85,959,436 +6052,100.86666666666666,944,434 +6053,100.88333333333333,931,432 +6054,100.9,920,430 +6055,100.91666666666667,912,430 +6056,100.93333333333334,906,429 +6057,100.95,903,428 +6058,100.96666666666667,903,428 +6059,100.98333333333333,903,428 +6060,101.0,906,429 +6061,101.01666666666667,913,430 +6062,101.03333333333333,921,431 +6063,101.05,932,432 +6064,101.06666666666666,945,434 +6065,101.08333333333333,961,436 +6066,101.1,979,438 +6067,101.11666666666666,999,441 +6068,101.13333333333333,1021,444 +6069,101.15,1045,447 +6070,101.16666666666667,1070,449 +6071,101.18333333333334,1098,452 +6072,101.2,1128,455 +6073,101.21666666666667,1158,458 +6074,101.23333333333333,1191,460 +6075,101.25,1225,462 +6076,101.26666666666667,1260,465 +6077,101.28333333333333,1296,467 +6078,101.3,1332,468 +6079,101.31666666666666,1371,468 +6080,101.33333333333333,1410,469 +6081,101.35,1448,469 +6082,101.36666666666666,1487,469 +6083,101.38333333333333,1527,469 +6084,101.4,1566,468 +6085,101.41666666666667,1605,467 +6086,101.43333333333334,1643,465 +6087,101.45,1681,463 +6088,101.46666666666667,1718,461 +6089,101.48333333333333,1755,459 +6090,101.5,1790,456 +6091,101.51666666666667,1824,453 +6092,101.53333333333333,1857,450 +6093,101.55,1888,447 +6094,101.56666666666666,1917,444 +6095,101.58333333333333,1944,440 +6096,101.6,1969,437 +6097,101.61666666666666,1992,434 +6098,101.63333333333333,2012,431 +6099,101.65,2030,429 +6100,101.66666666666667,2046,426 +6101,101.68333333333334,2059,424 +6102,101.7,2070,423 +6103,101.71666666666667,2077,421 +6104,101.73333333333333,2083,421 +6105,101.75,2083,421 +6106,101.76666666666667,2083,421 +6107,101.78333333333333,2082,421 +6108,101.8,2076,422 +6109,101.81666666666666,2068,423 +6110,101.83333333333333,2057,425 +6111,101.85,2043,427 +6112,101.86666666666666,2027,429 +6113,101.88333333333333,2008,432 +6114,101.9,1987,435 +6115,101.91666666666667,1964,438 +6116,101.93333333333334,1939,441 +6117,101.95,1911,444 +6118,101.96666666666667,1882,447 +6119,101.98333333333333,1851,451 +6120,102.0,1818,454 +6121,102.01666666666667,1784,457 +6122,102.03333333333333,1749,459 +6123,102.05,1712,462 +6124,102.06666666666666,1675,464 +6125,102.08333333333333,1637,466 +6126,102.1,1598,468 +6127,102.11666666666666,1560,469 +6128,102.13333333333333,1521,469 +6129,102.15,1482,469 +6130,102.16666666666667,1443,469 +6131,102.18333333333334,1405,469 +6132,102.2,1366,468 +6133,102.21666666666667,1329,467 +6134,102.23333333333333,1292,466 +6135,102.25,1256,464 +6136,102.26666666666667,1222,462 +6137,102.28333333333333,1188,460 +6138,102.3,1156,457 +6139,102.31666666666666,1125,454 +6140,102.33333333333333,1096,452 +6141,102.35,1069,449 +6142,102.36666666666666,1043,446 +6143,102.38333333333333,1020,443 +6144,102.4,998,441 +6145,102.41666666666667,978,439 +6146,102.43333333333334,961,436 +6147,102.45,946,434 +6148,102.46666666666667,933,432 +6149,102.48333333333333,922,431 +6150,102.5,914,429 +6151,102.51666666666667,908,429 +6152,102.53333333333333,905,428 +6153,102.55,905,428 +6154,102.56666666666666,905,428 +6155,102.58333333333333,909,429 +6156,102.6,915,430 +6157,102.61666666666666,924,431 +6158,102.63333333333333,935,433 +6159,102.64999999999999,948,435 +6160,102.66666666666667,964,437 +6161,102.68333333333334,981,439 +6162,102.7,1001,441 +6163,102.71666666666667,1023,444 +6164,102.73333333333333,1047,447 +6165,102.75,1073,449 +6166,102.76666666666667,1100,452 +6167,102.78333333333333,1130,455 +6168,102.8,1160,458 +6169,102.81666666666666,1193,460 +6170,102.83333333333333,1226,463 +6171,102.85,1261,465 +6172,102.86666666666666,1297,466 +6173,102.88333333333333,1334,468 +6174,102.89999999999999,1371,468 +6175,102.91666666666667,1410,469 +6176,102.93333333333334,1448,469 +6177,102.95,1487,469 +6178,102.96666666666667,1526,469 +6179,102.98333333333333,1565,468 +6180,103.0,1604,467 +6181,103.01666666666667,1642,465 +6182,103.03333333333333,1680,463 +6183,103.05,1718,461 +6184,103.06666666666666,1753,459 +6185,103.08333333333333,1789,456 +6186,103.1,1822,453 +6187,103.11666666666666,1855,450 +6188,103.13333333333333,1885,447 +6189,103.14999999999999,1914,444 +6190,103.16666666666667,1941,441 +6191,103.18333333333334,1966,438 +6192,103.2,1989,435 +6193,103.21666666666667,2010,432 +6194,103.23333333333333,2028,430 +6195,103.25,2044,427 +6196,103.26666666666667,2057,426 +6197,103.28333333333333,2067,424 +6198,103.3,2076,423 +6199,103.31666666666666,2081,422 +6200,103.33333333333333,2081,422 +6201,103.35,2081,422 +6202,103.36666666666666,2081,422 +6203,103.38333333333333,2075,423 +6204,103.39999999999999,2067,424 +6205,103.41666666666667,2055,426 +6206,103.43333333333334,2042,427 +6207,103.45,2026,429 +6208,103.46666666666667,2007,432 +6209,103.48333333333333,1986,435 +6210,103.5,1962,438 +6211,103.51666666666667,1937,441 +6212,103.53333333333333,1910,444 +6213,103.55,1881,447 +6214,103.56666666666666,1850,450 +6215,103.58333333333333,1817,453 +6216,103.6,1783,456 +6217,103.61666666666666,1748,458 +6218,103.63333333333333,1712,461 +6219,103.64999999999999,1675,463 +6220,103.66666666666667,1637,465 +6221,103.68333333333334,1599,467 +6222,103.7,1560,468 +6223,103.71666666666667,1521,468 +6224,103.73333333333333,1482,468 +6225,103.75,1443,468 +6226,103.76666666666667,1405,468 +6227,103.78333333333333,1366,468 +6228,103.8,1329,467 +6229,103.81666666666666,1292,466 +6230,103.83333333333333,1257,464 +6231,103.85,1223,462 +6232,103.86666666666666,1189,459 +6233,103.88333333333333,1157,457 +6234,103.89999999999999,1126,454 +6235,103.91666666666667,1097,452 +6236,103.93333333333334,1070,449 +6237,103.95,1044,446 +6238,103.96666666666667,1021,444 +6239,103.98333333333333,999,441 +6240,104.0,979,438 +6241,104.01666666666667,962,436 +6242,104.03333333333333,947,434 +6243,104.05,933,432 +6244,104.06666666666666,923,431 +6245,104.08333333333333,914,430 +6246,104.1,909,429 +6247,104.11666666666666,906,429 +6248,104.13333333333333,906,429 +6249,104.14999999999999,906,429 +6250,104.16666666666667,910,429 +6251,104.18333333333334,916,430 +6252,104.2,925,431 +6253,104.21666666666667,936,433 +6254,104.23333333333333,949,435 +6255,104.25,964,437 +6256,104.26666666666667,982,439 +6257,104.28333333333333,1002,442 +6258,104.3,1024,444 +6259,104.31666666666666,1047,447 +6260,104.33333333333333,1073,450 +6261,104.35,1101,452 +6262,104.36666666666666,1130,455 +6263,104.38333333333333,1161,458 +6264,104.39999999999999,1194,460 +6265,104.41666666666667,1227,463 +6266,104.43333333333334,1262,465 +6267,104.45,1297,467 +6268,104.46666666666667,1334,468 +6269,104.48333333333333,1372,469 +6270,104.5,1411,469 +6271,104.51666666666667,1449,469 +6272,104.53333333333333,1488,469 +6273,104.55,1527,469 +6274,104.56666666666666,1566,468 +6275,104.58333333333333,1605,467 +6276,104.6,1643,465 +6277,104.61666666666666,1681,464 +6278,104.63333333333333,1717,461 +6279,104.64999999999999,1754,459 +6280,104.66666666666667,1788,456 +6281,104.68333333333334,1822,453 +6282,104.7,1854,451 +6283,104.71666666666667,1884,448 +6284,104.73333333333333,1913,444 +6285,104.75,1940,441 +6286,104.76666666666667,1965,438 +6287,104.78333333333333,1988,436 +6288,104.8,2008,433 +6289,104.81666666666666,2026,430 +6290,104.83333333333333,2042,428 +6291,104.85,2055,426 +6292,104.86666666666666,2066,425 +6293,104.88333333333333,2073,424 +6294,104.89999999999999,2079,423 +6295,104.91666666666667,2079,423 +6296,104.93333333333334,2079,423 +6297,104.95,2077,423 +6298,104.96666666666667,2072,424 +6299,104.98333333333333,2063,425 +6300,105.0,2053,427 +6301,105.01666666666667,2039,428 +6302,105.03333333333333,2023,431 +6303,105.05,2004,433 +6304,105.06666666666666,1983,436 +6305,105.08333333333333,1960,439 +6306,105.1,1935,442 +6307,105.11666666666666,1908,445 +6308,105.13333333333333,1879,448 +6309,105.14999999999999,1848,451 +6310,105.16666666666667,1816,454 +6311,105.18333333333334,1782,457 +6312,105.2,1747,460 +6313,105.21666666666667,1711,462 +6314,105.23333333333333,1674,464 +6315,105.25,1637,466 +6316,105.26666666666667,1598,468 +6317,105.28333333333333,1560,468 +6318,105.3,1521,469 +6319,105.31666666666666,1482,469 +6320,105.33333333333333,1443,469 +6321,105.35,1405,469 +6322,105.36666666666666,1367,468 +6323,105.38333333333333,1329,468 +6324,105.39999999999999,1293,466 +6325,105.41666666666667,1258,464 +6326,105.43333333333334,1224,462 +6327,105.45,1190,460 +6328,105.46666666666667,1158,458 +6329,105.48333333333333,1127,455 +6330,105.5,1099,453 +6331,105.51666666666667,1071,450 +6332,105.53333333333333,1046,447 +6333,105.55,1023,445 +6334,105.56666666666666,1001,442 +6335,105.58333333333333,982,440 +6336,105.6,965,437 +6337,105.61666666666666,949,435 +6338,105.63333333333333,936,433 +6339,105.64999999999999,925,432 +6340,105.66666666666667,917,430 +6341,105.68333333333334,911,429 +6342,105.7,908,429 +6343,105.71666666666667,908,429 +6344,105.73333333333333,908,429 +6345,105.75,912,429 +6346,105.76666666666667,918,430 +6347,105.78333333333333,926,431 +6348,105.8,937,433 +6349,105.81666666666666,950,434 +6350,105.83333333333333,965,436 +6351,105.85,983,439 +6352,105.86666666666666,1003,441 +6353,105.88333333333333,1025,444 +6354,105.89999999999999,1049,447 +6355,105.91666666666667,1075,450 +6356,105.93333333333334,1102,453 +6357,105.95,1131,455 +6358,105.96666666666667,1162,458 +6359,105.98333333333333,1194,460 +6360,106.0,1228,462 +6361,106.01666666666667,1262,465 +6362,106.03333333333333,1297,466 +6363,106.05,1333,468 +6364,106.06666666666666,1371,469 +6365,106.08333333333333,1409,469 +6366,106.1,1448,469 +6367,106.11666666666666,1486,469 +6368,106.13333333333333,1525,469 +6369,106.14999999999999,1564,469 +6370,106.16666666666667,1602,468 +6371,106.18333333333334,1640,466 +6372,106.2,1678,465 +6373,106.21666666666667,1715,462 +6374,106.23333333333333,1751,460 +6375,106.25,1786,457 +6376,106.26666666666667,1819,454 +6377,106.28333333333333,1852,451 +6378,106.3,1882,448 +6379,106.31666666666666,1911,445 +6380,106.33333333333333,1938,441 +6381,106.35,1963,438 +6382,106.36666666666666,1985,435 +6383,106.38333333333333,2006,433 +6384,106.39999999999999,2024,430 +6385,106.41666666666667,2040,428 +6386,106.43333333333334,2053,426 +6387,106.45,2063,425 +6388,106.46666666666667,2071,424 +6389,106.48333333333333,2076,423 +6390,106.5,2076,423 +6391,106.51666666666667,2076,423 +6392,106.53333333333333,2076,423 +6393,106.55,2070,424 +6394,106.56666666666666,2062,425 +6395,106.58333333333333,2051,427 +6396,106.6,2037,429 +6397,106.61666666666666,2021,431 +6398,106.63333333333333,2003,433 +6399,106.64999999999999,1982,436 +6400,106.66666666666667,1959,439 +6401,106.68333333333334,1934,442 +6402,106.7,1907,445 +6403,106.71666666666667,1878,448 +6404,106.73333333333333,1847,451 +6405,106.75,1815,454 +6406,106.76666666666667,1781,457 +6407,106.78333333333333,1747,460 +6408,106.8,1711,462 +6409,106.81666666666666,1674,464 +6410,106.83333333333333,1637,466 +6411,106.85,1599,467 +6412,106.86666666666666,1560,468 +6413,106.88333333333333,1522,469 +6414,106.89999999999999,1483,469 +6415,106.91666666666667,1444,469 +6416,106.93333333333334,1406,469 +6417,106.95,1368,469 +6418,106.96666666666667,1331,468 +6419,106.98333333333333,1294,466 +6420,107.0,1259,465 +6421,107.01666666666667,1225,462 +6422,107.03333333333333,1191,460 +6423,107.05,1160,458 +6424,107.06666666666666,1129,455 +6425,107.08333333333333,1100,453 +6426,107.1,1073,450 +6427,107.11666666666666,1048,447 +6428,107.13333333333333,1024,445 +6429,107.14999999999999,1002,442 +6430,107.16666666666667,983,440 +6431,107.18333333333334,966,437 +6432,107.2,950,436 +6433,107.21666666666667,938,433 +6434,107.23333333333333,927,432 +6435,107.25,919,431 +6436,107.26666666666667,913,430 +6437,107.28333333333333,910,429 +6438,107.3,910,429 +6439,107.31666666666666,910,429 +6440,107.33333333333333,914,430 +6441,107.35,920,431 +6442,107.36666666666666,928,432 +6443,107.38333333333333,939,434 +6444,107.39999999999999,952,436 +6445,107.41666666666667,967,438 +6446,107.43333333333334,985,440 +6447,107.45,1005,442 +6448,107.46666666666667,1026,445 +6449,107.48333333333333,1050,448 +6450,107.5,1075,451 +6451,107.51666666666667,1103,453 +6452,107.53333333333333,1132,456 +6453,107.55,1163,458 +6454,107.56666666666666,1194,461 +6455,107.58333333333333,1228,463 +6456,107.6,1263,465 +6457,107.61666666666666,1298,467 +6458,107.63333333333333,1334,468 +6459,107.64999999999999,1372,469 +6460,107.66666666666667,1410,469 +6461,107.68333333333334,1448,469 +6462,107.7,1487,469 +6463,107.71666666666667,1526,469 +6464,107.73333333333333,1564,468 +6465,107.75,1603,467 +6466,107.76666666666667,1641,466 +6467,107.78333333333333,1679,464 +6468,107.8,1715,462 +6469,107.81666666666666,1751,460 +6470,107.83333333333333,1785,457 +6471,107.85,1819,454 +6472,107.86666666666666,1851,451 +6473,107.88333333333333,1881,448 +6474,107.89999999999999,1909,445 +6475,107.91666666666667,1936,442 +6476,107.93333333333334,1961,439 +6477,107.95,1984,436 +6478,107.96666666666667,2004,433 +6479,107.98333333333333,2022,431 +6480,108.0,2038,429 +6481,108.01666666666667,2051,427 +6482,108.03333333333333,2062,425 +6483,108.05,2070,424 +6484,108.06666666666666,2075,423 +6485,108.08333333333333,2075,423 +6486,108.1,2075,423 +6487,108.11666666666666,2073,423 +6488,108.13333333333333,2068,424 +6489,108.14999999999999,2059,425 +6490,108.16666666666667,2049,427 +6491,108.18333333333334,2035,429 +6492,108.2,2019,431 +6493,108.21666666666667,2000,433 +6494,108.23333333333333,1980,436 +6495,108.25,1957,439 +6496,108.26666666666667,1932,442 +6497,108.28333333333333,1905,445 +6498,108.3,1876,448 +6499,108.31666666666666,1845,451 +6500,108.33333333333333,1813,454 +6501,108.35,1780,457 +6502,108.36666666666666,1745,459 +6503,108.38333333333333,1709,462 +6504,108.39999999999999,1672,464 +6505,108.41666666666667,1635,466 +6506,108.43333333333334,1597,467 +6507,108.45,1558,468 +6508,108.46666666666667,1520,469 +6509,108.48333333333333,1481,469 +6510,108.5,1443,469 +6511,108.51666666666667,1405,468 +6512,108.53333333333333,1367,468 +6513,108.55,1330,467 +6514,108.56666666666666,1294,466 +6515,108.58333333333333,1259,464 +6516,108.6,1225,462 +6517,108.61666666666666,1192,460 +6518,108.63333333333333,1160,457 +6519,108.64999999999999,1130,455 +6520,108.66666666666667,1101,453 +6521,108.68333333333334,1074,450 +6522,108.7,1049,447 +6523,108.71666666666667,1026,445 +6524,108.73333333333333,1004,442 +6525,108.75,985,440 +6526,108.76666666666667,968,437 +6527,108.78333333333333,952,435 +6528,108.8,939,434 +6529,108.81666666666666,929,432 +6530,108.83333333333333,921,431 +6531,108.85,915,430 +6532,108.86666666666666,912,430 +6533,108.88333333333333,912,430 +6534,108.89999999999999,912,430 +6535,108.91666666666667,915,431 +6536,108.93333333333334,921,431 +6537,108.95,930,433 +6538,108.96666666666667,941,434 +6539,108.98333333333333,954,436 +6540,109.0,969,438 +6541,109.01666666666667,986,440 +6542,109.03333333333333,1006,443 +6543,109.05,1027,445 +6544,109.06666666666666,1051,448 +6545,109.08333333333333,1076,451 +6546,109.1,1104,454 +6547,109.11666666666666,1132,457 +6548,109.13333333333333,1163,459 +6549,109.14999999999999,1195,461 +6550,109.16666666666667,1229,464 +6551,109.18333333333334,1263,466 +6552,109.2,1299,467 +6553,109.21666666666667,1335,468 +6554,109.23333333333333,1373,469 +6555,109.25,1411,469 +6556,109.26666666666667,1449,469 +6557,109.28333333333333,1488,469 +6558,109.3,1526,469 +6559,109.31666666666666,1565,468 +6560,109.33333333333333,1603,468 +6561,109.35,1641,466 +6562,109.36666666666666,1678,464 +6563,109.38333333333333,1715,462 +6564,109.39999999999999,1750,460 +6565,109.41666666666667,1785,457 +6566,109.43333333333334,1818,454 +6567,109.45,1850,451 +6568,109.46666666666667,1880,448 +6569,109.48333333333333,1908,445 +6570,109.5,1935,442 +6571,109.51666666666667,1959,439 +6572,109.53333333333333,1982,436 +6573,109.55,2003,434 +6574,109.56666666666666,2020,431 +6575,109.58333333333333,2036,429 +6576,109.6,2049,427 +6577,109.61666666666666,2059,426 +6578,109.63333333333333,2067,425 +6579,109.64999999999999,2072,424 +6580,109.66666666666667,2072,424 +6581,109.68333333333334,2072,424 +6582,109.7,2071,424 +6583,109.71666666666667,2066,425 +6584,109.73333333333333,2057,426 +6585,109.75,2046,428 +6586,109.76666666666667,2033,430 +6587,109.78333333333333,2017,432 +6588,109.8,1999,434 +6589,109.81666666666666,1978,437 +6590,109.83333333333333,1955,440 +6591,109.85,1930,443 +6592,109.86666666666666,1904,446 +6593,109.88333333333333,1875,449 +6594,109.89999999999999,1845,452 +6595,109.91666666666667,1812,454 +6596,109.93333333333334,1779,457 +6597,109.95,1745,460 +6598,109.96666666666667,1709,462 +6599,109.98333333333333,1673,464 +6600,110.0,1636,466 +6601,110.01666666666667,1598,467 +6602,110.03333333333333,1560,469 +6603,110.05,1521,469 +6604,110.06666666666666,1483,469 +6605,110.08333333333333,1445,469 +6606,110.1,1407,469 +6607,110.11666666666666,1369,469 +6608,110.13333333333333,1332,468 +6609,110.14999999999999,1296,467 +6610,110.16666666666667,1261,465 +6611,110.18333333333334,1227,463 +6612,110.2,1193,460 +6613,110.21666666666667,1162,458 +6614,110.23333333333333,1132,456 +6615,110.25,1103,453 +6616,110.26666666666667,1076,451 +6617,110.28333333333333,1051,448 +6618,110.3,1027,445 +6619,110.31666666666666,1006,443 +6620,110.33333333333333,987,440 +6621,110.35,969,438 +6622,110.36666666666666,954,436 +6623,110.38333333333333,942,435 +6624,110.39999999999999,931,433 +6625,110.41666666666667,923,432 +6626,110.43333333333334,917,431 +6627,110.45,914,431 +6628,110.46666666666667,914,431 +6629,110.48333333333333,914,431 +6630,110.5,918,431 +6631,110.51666666666667,924,432 +6632,110.53333333333333,932,433 +6633,110.55,943,435 +6634,110.56666666666666,956,436 +6635,110.58333333333333,971,439 +6636,110.6,989,441 +6637,110.61666666666666,1008,443 +6638,110.63333333333333,1030,446 +6639,110.64999999999999,1053,448 +6640,110.66666666666667,1079,451 +6641,110.68333333333334,1106,454 +6642,110.7,1135,456 +6643,110.71666666666667,1165,459 +6644,110.73333333333333,1197,462 +6645,110.75,1231,464 +6646,110.76666666666667,1265,466 +6647,110.78333333333333,1300,467 +6648,110.8,1336,468 +6649,110.81666666666666,1373,469 +6650,110.83333333333333,1411,470 +6651,110.85,1449,470 +6652,110.86666666666666,1487,470 +6653,110.88333333333333,1526,469 +6654,110.89999999999999,1564,469 +6655,110.91666666666667,1602,468 +6656,110.93333333333334,1640,466 +6657,110.95,1677,465 +6658,110.96666666666667,1713,462 +6659,110.98333333333333,1749,460 +6660,111.0,1783,458 +6661,111.01666666666667,1816,455 +6662,111.03333333333333,1848,452 +6663,111.05,1878,449 +6664,111.06666666666666,1906,446 +6665,111.08333333333333,1933,442 +6666,111.1,1958,440 +6667,111.11666666666666,1980,437 +6668,111.13333333333333,2000,434 +6669,111.14999999999999,2018,432 +6670,111.16666666666667,2033,429 +6671,111.18333333333334,2046,428 +6672,111.2,2057,426 +6673,111.21666666666667,2064,425 +6674,111.23333333333333,2069,424 +6675,111.25,2069,424 +6676,111.26666666666667,2069,424 +6677,111.28333333333333,2068,424 +6678,111.3,2063,425 +6679,111.31666666666666,2054,426 +6680,111.33333333333333,2043,428 +6681,111.35,2030,430 +6682,111.36666666666666,2014,432 +6683,111.38333333333333,1996,435 +6684,111.39999999999999,1975,437 +6685,111.41666666666667,1952,440 +6686,111.43333333333334,1928,443 +6687,111.45,1901,446 +6688,111.46666666666667,1872,449 +6689,111.48333333333333,1842,452 +6690,111.5,1810,455 +6691,111.51666666666667,1777,457 +6692,111.53333333333333,1743,460 +6693,111.55,1707,462 +6694,111.56666666666666,1671,464 +6695,111.58333333333333,1634,466 +6696,111.6,1596,468 +6697,111.61666666666666,1558,468 +6698,111.63333333333333,1520,469 +6699,111.64999999999999,1481,469 +6700,111.66666666666667,1443,469 +6701,111.68333333333334,1406,469 +6702,111.7,1367,468 +6703,111.71666666666667,1331,468 +6704,111.73333333333333,1295,466 +6705,111.75,1260,465 +6706,111.76666666666667,1226,462 +6707,111.78333333333333,1193,460 +6708,111.8,1162,458 +6709,111.81666666666666,1132,455 +6710,111.83333333333333,1103,453 +6711,111.85,1076,450 +6712,111.86666666666666,1051,447 +6713,111.88333333333333,1028,445 +6714,111.89999999999999,1007,442 +6715,111.91666666666667,987,440 +6716,111.93333333333334,970,438 +6717,111.95,955,436 +6718,111.96666666666667,943,434 +6719,111.98333333333333,932,433 +6720,112.0,924,432 +6721,112.01666666666667,918,431 +6722,112.03333333333333,915,431 +6723,112.05,915,431 +6724,112.06666666666666,915,431 +6725,112.08333333333333,919,431 +6726,112.1,925,432 +6727,112.11666666666666,934,433 +6728,112.13333333333333,945,435 +6729,112.14999999999999,958,437 +6730,112.16666666666667,973,439 +6731,112.18333333333334,991,441 +6732,112.2,1010,444 +6733,112.21666666666667,1032,446 +6734,112.23333333333333,1055,449 +6735,112.25,1081,452 +6736,112.26666666666667,1108,454 +6737,112.28333333333333,1137,457 +6738,112.3,1167,459 +6739,112.31666666666666,1199,462 +6740,112.33333333333333,1232,464 +6741,112.35,1266,465 +6742,112.36666666666666,1301,467 +6743,112.38333333333333,1337,468 +6744,112.39999999999999,1374,469 +6745,112.41666666666667,1411,469 +6746,112.43333333333334,1449,469 +6747,112.45,1487,469 +6748,112.46666666666667,1525,469 +6749,112.48333333333333,1564,468 +6750,112.5,1602,467 +6751,112.51666666666667,1640,466 +6752,112.53333333333333,1677,464 +6753,112.55,1713,462 +6754,112.56666666666666,1748,459 +6755,112.58333333333333,1782,457 +6756,112.6,1815,454 +6757,112.61666666666666,1846,451 +6758,112.63333333333333,1876,448 +6759,112.64999999999999,1904,445 +6760,112.66666666666667,1931,442 +6761,112.68333333333334,1955,439 +6762,112.7,1977,436 +6763,112.71666666666667,1997,434 +6764,112.73333333333333,2015,431 +6765,112.75,2030,429 +6766,112.76666666666667,2043,427 +6767,112.78333333333333,2053,426 +6768,112.8,2061,425 +6769,112.81666666666666,2066,424 +6770,112.83333333333333,2066,424 +6771,112.85,2066,424 +6772,112.86666666666666,2065,424 +6773,112.88333333333333,2059,425 +6774,112.89999999999999,2051,426 +6775,112.91666666666667,2040,428 +6776,112.93333333333334,2027,430 +6777,112.95,2011,432 +6778,112.96666666666667,1993,435 +6779,112.98333333333333,1972,437 +6780,113.0,1950,440 +6781,113.01666666666667,1925,443 +6782,113.03333333333333,1898,446 +6783,113.05,1870,449 +6784,113.06666666666666,1840,452 +6785,113.08333333333333,1808,454 +6786,113.1,1775,457 +6787,113.11666666666666,1741,460 +6788,113.13333333333333,1706,462 +6789,113.14999999999999,1670,464 +6790,113.16666666666667,1633,466 +6791,113.18333333333334,1595,467 +6792,113.2,1557,468 +6793,113.21666666666667,1519,469 +6794,113.23333333333333,1481,469 +6795,113.25,1443,469 +6796,113.26666666666667,1405,469 +6797,113.28333333333333,1368,469 +6798,113.3,1331,467 +6799,113.31666666666666,1296,466 +6800,113.33333333333333,1261,464 +6801,113.35,1227,462 +6802,113.36666666666666,1194,460 +6803,113.38333333333333,1163,458 +6804,113.39999999999999,1133,455 +6805,113.41666666666667,1105,453 +6806,113.43333333333334,1078,450 +6807,113.45,1053,448 +6808,113.46666666666667,1030,445 +6809,113.48333333333333,1009,443 +6810,113.5,990,440 +6811,113.51666666666667,973,438 +6812,113.53333333333333,958,436 +6813,113.55,945,435 +6814,113.56666666666666,934,433 +6815,113.58333333333333,927,432 +6816,113.6,921,431 +6817,113.61666666666666,918,431 +6818,113.63333333333333,918,431 +6819,113.64999999999999,918,431 +6820,113.66666666666667,922,431 +6821,113.68333333333334,928,432 +6822,113.7,936,434 +6823,113.71666666666667,947,435 +6824,113.73333333333333,960,437 +6825,113.75,975,439 +6826,113.76666666666667,992,441 +6827,113.78333333333333,1012,444 +6828,113.8,1033,446 +6829,113.81666666666666,1056,449 +6830,113.83333333333333,1082,451 +6831,113.85,1109,454 +6832,113.86666666666666,1137,457 +6833,113.88333333333333,1167,459 +6834,113.89999999999999,1199,461 +6835,113.91666666666667,1232,463 +6836,113.93333333333334,1266,465 +6837,113.95,1301,467 +6838,113.96666666666667,1337,468 +6839,113.98333333333333,1374,469 +6840,114.0,1411,469 +6841,114.01666666666667,1449,469 +6842,114.03333333333333,1487,469 +6843,114.05,1525,469 +6844,114.06666666666666,1563,469 +6845,114.08333333333333,1601,468 +6846,114.1,1638,466 +6847,114.11666666666666,1675,464 +6848,114.13333333333333,1711,462 +6849,114.14999999999999,1746,460 +6850,114.16666666666667,1780,457 +6851,114.18333333333334,1813,455 +6852,114.2,1844,452 +6853,114.21666666666667,1874,449 +6854,114.23333333333333,1902,446 +6855,114.25,1929,443 +6856,114.26666666666667,1953,440 +6857,114.28333333333333,1975,437 +6858,114.3,1995,435 +6859,114.31666666666666,2012,432 +6860,114.33333333333333,2028,430 +6861,114.35,2041,428 +6862,114.36666666666666,2051,427 +6863,114.38333333333333,2058,426 +6864,114.39999999999999,2064,425 +6865,114.41666666666667,2064,425 +6866,114.43333333333334,2064,425 +6867,114.45,2063,425 +6868,114.46666666666667,2057,426 +6869,114.48333333333333,2049,427 +6870,114.5,2038,429 +6871,114.51666666666667,2025,431 +6872,114.53333333333333,2009,433 +6873,114.55,1991,436 +6874,114.56666666666666,1970,438 +6875,114.58333333333333,1948,441 +6876,114.6,1923,444 +6877,114.61666666666666,1897,447 +6878,114.63333333333333,1868,450 +6879,114.64999999999999,1838,452 +6880,114.66666666666667,1807,455 +6881,114.68333333333334,1774,458 +6882,114.7,1740,461 +6883,114.71666666666667,1705,463 +6884,114.73333333333333,1668,465 +6885,114.75,1632,466 +6886,114.76666666666667,1594,468 +6887,114.78333333333333,1557,469 +6888,114.8,1518,469 +6889,114.81666666666666,1481,469 +6890,114.83333333333333,1443,469 +6891,114.85,1405,469 +6892,114.86666666666666,1368,469 +6893,114.88333333333333,1331,468 +6894,114.89999999999999,1296,467 +6895,114.91666666666667,1261,465 +6896,114.93333333333334,1228,463 +6897,114.95,1195,460 +6898,114.96666666666667,1164,458 +6899,114.98333333333333,1134,456 +6900,115.0,1106,453 +6901,115.01666666666667,1079,450 +6902,115.03333333333333,1054,448 +6903,115.05,1031,445 +6904,115.06666666666666,1010,443 +6905,115.08333333333333,991,440 +6906,115.1,974,438 +6907,115.11666666666666,959,436 +6908,115.13333333333333,946,435 +6909,115.14999999999999,936,433 +6910,115.16666666666667,928,432 +6911,115.18333333333334,922,431 +6912,115.2,919,431 +6913,115.21666666666667,919,431 +6914,115.23333333333333,919,431 +6915,115.25,923,432 +6916,115.26666666666667,929,433 +6917,115.28333333333333,937,434 +6918,115.3,948,435 +6919,115.31666666666666,960,437 +6920,115.33333333333333,976,439 +6921,115.35,993,442 +6922,115.36666666666666,1012,444 +6923,115.38333333333333,1034,446 +6924,115.39999999999999,1057,449 +6925,115.41666666666667,1082,451 +6926,115.43333333333334,1109,454 +6927,115.45,1138,457 +6928,115.46666666666667,1168,459 +6929,115.48333333333333,1199,462 +6930,115.5,1232,464 +6931,115.51666666666667,1266,466 +6932,115.53333333333333,1301,467 +6933,115.55,1336,469 +6934,115.56666666666666,1373,469 +6935,115.58333333333333,1411,470 +6936,115.6,1448,470 +6937,115.61666666666666,1486,470 +6938,115.63333333333333,1524,470 +6939,115.64999999999999,1562,469 +6940,115.66666666666667,1600,468 +6941,115.68333333333334,1637,467 +6942,115.7,1674,465 +6943,115.71666666666667,1710,463 +6944,115.73333333333333,1745,461 +6945,115.75,1779,458 +6946,115.76666666666667,1811,456 +6947,115.78333333333333,1843,453 +6948,115.8,1873,450 +6949,115.81666666666666,1900,447 +6950,115.83333333333333,1927,444 +6951,115.85,1951,441 +6952,115.86666666666666,1973,438 +6953,115.88333333333333,1993,436 +6954,115.89999999999999,2011,433 +6955,115.91666666666667,2026,431 +6956,115.93333333333334,2038,429 +6957,115.95,2048,428 +6958,115.96666666666667,2056,427 +6959,115.98333333333333,2061,426 +6960,116.0,2061,426 +6961,116.01666666666667,2061,426 +6962,116.03333333333333,2060,426 +6963,116.05,2054,427 +6964,116.06666666666666,2046,428 +6965,116.08333333333333,2035,430 +6966,116.1,2022,432 +6967,116.11666666666666,2006,434 +6968,116.13333333333333,1988,436 +6969,116.14999999999999,1968,439 +6970,116.16666666666667,1945,442 +6971,116.18333333333334,1921,445 +6972,116.2,1894,448 +6973,116.21666666666667,1866,450 +6974,116.23333333333333,1836,453 +6975,116.25,1805,456 +6976,116.26666666666667,1772,459 +6977,116.28333333333333,1738,461 +6978,116.3,1703,463 +6979,116.31666666666666,1667,465 +6980,116.33333333333333,1631,467 +6981,116.35,1594,468 +6982,116.36666666666666,1556,469 +6983,116.38333333333333,1518,470 +6984,116.39999999999999,1480,470 +6985,116.41666666666667,1443,470 +6986,116.43333333333334,1405,470 +6987,116.45,1368,469 +6988,116.46666666666667,1332,468 +6989,116.48333333333333,1297,467 +6990,116.5,1262,465 +6991,116.51666666666667,1229,463 +6992,116.53333333333333,1196,461 +6993,116.55,1165,459 +6994,116.56666666666666,1135,456 +6995,116.58333333333333,1107,454 +6996,116.6,1080,451 +6997,116.61666666666666,1055,449 +6998,116.63333333333333,1033,446 +6999,116.64999999999999,1011,443 +7000,116.66666666666667,992,441 +7001,116.68333333333334,976,439 +7002,116.7,961,437 +7003,116.71666666666667,948,435 +7004,116.73333333333333,938,434 +7005,116.75,930,433 +7006,116.76666666666667,924,432 +7007,116.78333333333333,921,432 +7008,116.8,921,432 +7009,116.81666666666666,921,432 +7010,116.83333333333333,924,432 +7011,116.85,930,433 +7012,116.86666666666666,939,434 +7013,116.88333333333333,949,436 +7014,116.89999999999999,962,438 +7015,116.91666666666667,977,440 +7016,116.93333333333334,995,442 +7017,116.95,1014,444 +7018,116.96666666666667,1035,447 +7019,116.98333333333333,1059,449 +7020,117.0,1084,452 +7021,117.01666666666667,1111,454 +7022,117.03333333333333,1140,457 +7023,117.05,1170,460 +7024,117.06666666666666,1201,462 +7025,117.08333333333333,1234,464 +7026,117.1,1268,466 +7027,117.11666666666666,1302,467 +7028,117.13333333333333,1338,468 +7029,117.14999999999999,1375,469 +7030,117.16666666666667,1412,469 +7031,117.18333333333334,1449,469 +7032,117.2,1487,469 +7033,117.21666666666667,1525,469 +7034,117.23333333333333,1563,469 +7035,117.25,1601,468 +7036,117.26666666666667,1638,466 +7037,117.28333333333333,1674,464 +7038,117.3,1710,463 +7039,117.31666666666666,1745,460 +7040,117.33333333333333,1779,458 +7041,117.35,1812,455 +7042,117.36666666666666,1843,452 +7043,117.38333333333333,1872,449 +7044,117.39999999999999,1900,446 +7045,117.41666666666667,1926,443 +7046,117.43333333333334,1951,440 +7047,117.45,1973,438 +7048,117.46666666666667,1992,435 +7049,117.48333333333333,2010,433 +7050,117.5,2025,431 +7051,117.51666666666667,2037,429 +7052,117.53333333333333,2047,428 +7053,117.55,2055,427 +7054,117.56666666666666,2060,426 +7055,117.58333333333333,2060,426 +7056,117.6,2060,426 +7057,117.61666666666666,2059,426 +7058,117.63333333333333,2053,427 +7059,117.64999999999999,2045,428 +7060,117.66666666666667,2035,429 +7061,117.68333333333334,2021,431 +7062,117.7,2006,433 +7063,117.71666666666667,1988,436 +7064,117.73333333333333,1967,438 +7065,117.75,1945,441 +7066,117.76666666666667,1920,444 +7067,117.78333333333333,1894,447 +7068,117.8,1866,450 +7069,117.81666666666666,1836,453 +7070,117.83333333333333,1805,455 +7071,117.85,1772,458 +7072,117.86666666666666,1738,460 +7073,117.88333333333333,1703,463 +7074,117.89999999999999,1667,464 +7075,117.91666666666667,1631,466 +7076,117.93333333333334,1594,467 +7077,117.95,1556,468 +7078,117.96666666666667,1519,469 +7079,117.98333333333333,1481,469 +7080,118.0,1443,469 +7081,118.01666666666667,1406,469 +7082,118.03333333333333,1368,468 +7083,118.05,1332,468 +7084,118.06666666666666,1297,466 +7085,118.08333333333333,1263,464 +7086,118.1,1229,462 +7087,118.11666666666666,1197,460 +7088,118.13333333333333,1166,458 +7089,118.14999999999999,1136,455 +7090,118.16666666666667,1108,453 +7091,118.18333333333334,1081,450 +7092,118.2,1057,448 +7093,118.21666666666667,1034,445 +7094,118.23333333333333,1013,443 +7095,118.25,994,440 +7096,118.26666666666667,977,439 +7097,118.28333333333333,962,436 +7098,118.3,950,435 +7099,118.31666666666666,940,433 +7100,118.33333333333333,931,432 +7101,118.35,926,431 +7102,118.36666666666666,923,431 +7103,118.38333333333333,923,431 +7104,118.39999999999999,923,431 +7105,118.41666666666667,926,432 +7106,118.43333333333334,932,433 +7107,118.45,941,434 +7108,118.46666666666667,951,435 +7109,118.48333333333333,964,437 +7110,118.5,979,439 +7111,118.51666666666667,997,442 +7112,118.53333333333333,1016,444 +7113,118.55,1037,447 +7114,118.56666666666666,1060,449 +7115,118.58333333333333,1086,452 +7116,118.6,1112,454 +7117,118.61666666666666,1141,457 +7118,118.63333333333333,1171,459 +7119,118.64999999999999,1202,462 +7120,118.66666666666667,1235,464 +7121,118.68333333333334,1269,466 +7122,118.7,1303,467 +7123,118.71666666666667,1339,468 +7124,118.73333333333333,1376,469 +7125,118.75,1413,470 +7126,118.76666666666667,1450,470 +7127,118.78333333333333,1488,470 +7128,118.8,1526,469 +7129,118.81666666666666,1564,469 +7130,118.83333333333333,1601,468 +7131,118.85,1638,466 +7132,118.86666666666666,1675,464 +7133,118.88333333333333,1710,462 +7134,118.89999999999999,1745,460 +7135,118.91666666666667,1779,458 +7136,118.93333333333334,1811,455 +7137,118.95,1842,452 +7138,118.96666666666667,1872,449 +7139,118.98333333333333,1900,446 +7140,119.0,1926,443 +7141,119.01666666666667,1949,440 +7142,119.03333333333333,1971,438 +7143,119.05,1991,435 +7144,119.06666666666666,2009,433 +7145,119.08333333333333,2024,431 +7146,119.1,2036,429 +7147,119.11666666666666,2046,428 +7148,119.13333333333333,2054,427 +7149,119.14999999999999,2059,426 +7150,119.16666666666667,2059,426 +7151,119.18333333333334,2059,426 +7152,119.2,2058,426 +7153,119.21666666666667,2052,427 +7154,119.23333333333333,2044,428 +7155,119.25,2033,430 +7156,119.26666666666667,2020,432 +7157,119.28333333333333,2004,433 +7158,119.3,1986,436 +7159,119.31666666666666,1966,438 +7160,119.33333333333333,1944,441 +7161,119.35,1919,444 +7162,119.36666666666666,1892,447 +7163,119.38333333333333,1864,450 +7164,119.39999999999999,1834,453 +7165,119.41666666666667,1803,455 +7166,119.43333333333334,1770,458 +7167,119.45,1737,461 +7168,119.46666666666667,1702,463 +7169,119.48333333333333,1666,465 +7170,119.5,1630,467 +7171,119.51666666666667,1593,468 +7172,119.53333333333333,1555,469 +7173,119.55,1518,469 +7174,119.56666666666666,1480,469 +7175,119.58333333333333,1443,469 +7176,119.6,1406,469 +7177,119.61666666666666,1369,469 +7178,119.63333333333333,1333,468 +7179,119.64999999999999,1297,467 +7180,119.66666666666667,1263,466 +7181,119.68333333333334,1230,463 +7182,119.7,1197,461 +7183,119.71666666666667,1167,459 +7184,119.73333333333333,1137,456 +7185,119.75,1109,454 +7186,119.76666666666667,1083,451 +7187,119.78333333333333,1058,449 +7188,119.8,1035,446 +7189,119.81666666666666,1015,444 +7190,119.83333333333333,996,442 +7191,119.85,979,439 +7192,119.86666666666666,964,438 +7193,119.88333333333333,951,436 +7194,119.89999999999999,941,435 +7195,119.91666666666667,933,434 +7196,119.93333333333334,928,433 +7197,119.95,925,432 +7198,119.96666666666667,925,432 +7199,119.98333333333333,925,432 +7200,120.0,928,433 +7201,120.01666666666667,934,434 +7202,120.03333333333333,942,435 +7203,120.05,953,437 +7204,120.06666666666666,966,438 +7205,120.08333333333333,981,440 +7206,120.1,998,442 +7207,120.11666666666666,1017,445 +7208,120.13333333333333,1039,447 +7209,120.14999999999999,1062,450 +7210,120.16666666666667,1087,452 +7211,120.18333333333334,1114,455 +7212,120.2,1142,457 +7213,120.21666666666667,1172,460 +7214,120.23333333333333,1203,462 +7215,120.25,1236,464 +7216,120.26666666666667,1269,467 +7217,120.28333333333333,1304,468 +7218,120.3,1339,469 +7219,120.31666666666666,1376,469 +7220,120.33333333333333,1413,470 +7221,120.35,1450,470 +7222,120.36666666666666,1488,470 +7223,120.38333333333333,1526,470 +7224,120.39999999999999,1563,469 +7225,120.41666666666667,1601,468 +7226,120.43333333333334,1637,467 +7227,120.45,1674,465 +7228,120.46666666666667,1709,463 +7229,120.48333333333333,1744,461 +7230,120.5,1777,458 +7231,120.51666666666667,1810,456 +7232,120.53333333333333,1841,453 +7233,120.55,1870,450 +7234,120.56666666666666,1898,447 +7235,120.58333333333333,1923,444 +7236,120.6,1947,441 +7237,120.61666666666666,1969,439 +7238,120.63333333333333,1989,436 +7239,120.64999999999999,2006,434 +7240,120.66666666666667,2021,432 +7241,120.68333333333334,2033,430 +7242,120.7,2044,428 +7243,120.71666666666667,2051,427 +7244,120.73333333333333,2056,427 +7245,120.75,2056,427 +7246,120.76666666666667,2056,427 +7247,120.78333333333333,2055,427 +7248,120.8,2049,428 +7249,120.81666666666666,2041,429 +7250,120.83333333333333,2030,430 +7251,120.85,2017,432 +7252,120.86666666666666,2002,434 +7253,120.88333333333333,1984,437 +7254,120.89999999999999,1963,439 +7255,120.91666666666667,1941,442 +7256,120.93333333333334,1917,445 +7257,120.95,1891,448 +7258,120.96666666666667,1863,450 +7259,120.98333333333333,1833,453 +7260,121.0,1802,456 +7261,121.01666666666667,1770,458 +7262,121.03333333333333,1736,461 +7263,121.05,1701,463 +7264,121.06666666666666,1666,465 +7265,121.08333333333333,1630,467 +7266,121.1,1593,468 +7267,121.11666666666666,1556,469 +7268,121.13333333333333,1518,469 +7269,121.14999999999999,1481,470 +7270,121.16666666666667,1444,470 +7271,121.18333333333334,1407,470 +7272,121.2,1370,469 +7273,121.21666666666667,1334,469 +7274,121.23333333333333,1299,467 +7275,121.25,1265,465 +7276,121.26666666666667,1232,463 +7277,121.28333333333333,1199,462 +7278,121.3,1168,459 +7279,121.31666666666666,1138,457 +7280,121.33333333333333,1111,455 +7281,121.35,1084,452 +7282,121.36666666666666,1060,449 +7283,121.38333333333333,1037,447 +7284,121.39999999999999,1016,445 +7285,121.41666666666667,997,442 +7286,121.43333333333334,980,440 +7287,121.45,966,438 +7288,121.46666666666667,953,437 +7289,121.48333333333333,943,435 +7290,121.5,935,434 +7291,121.51666666666667,930,433 +7292,121.53333333333333,927,433 +7293,121.55,927,433 +7294,121.56666666666666,927,433 +7295,121.58333333333333,931,433 +7296,121.6,937,434 +7297,121.61666666666666,945,436 +7298,121.63333333333333,956,437 +7299,121.64999999999999,968,439 +7300,121.66666666666667,983,441 +7301,121.68333333333334,1000,443 +7302,121.7,1020,445 +7303,121.71666666666667,1041,448 +7304,121.73333333333333,1064,450 +7305,121.75,1089,453 +7306,121.76666666666667,1116,455 +7307,121.78333333333333,1144,458 +7308,121.8,1173,460 +7309,121.81666666666666,1205,462 +7310,121.83333333333333,1237,464 +7311,121.85,1271,466 +7312,121.86666666666666,1305,468 +7313,121.88333333333333,1340,469 +7314,121.89999999999999,1377,469 +7315,121.91666666666667,1414,470 +7316,121.93333333333334,1451,470 +7317,121.95,1488,470 +7318,121.96666666666667,1526,469 +7319,121.98333333333333,1563,469 +7320,122.0,1600,468 +7321,122.01666666666667,1637,467 +7322,122.03333333333333,1673,465 +7323,122.05,1709,463 +7324,122.06666666666666,1743,460 +7325,122.08333333333333,1777,458 +7326,122.1,1809,455 +7327,122.11666666666666,1840,453 +7328,122.13333333333333,1869,450 +7329,122.14999999999999,1896,447 +7330,122.16666666666667,1922,444 +7331,122.18333333333334,1946,441 +7332,122.2,1967,439 +7333,122.21666666666667,1986,436 +7334,122.23333333333333,2004,434 +7335,122.25,2019,432 +7336,122.26666666666667,2031,430 +7337,122.28333333333333,2041,429 +7338,122.3,2048,428 +7339,122.31666666666666,2053,427 +7340,122.33333333333333,2053,427 +7341,122.35,2053,427 +7342,122.36666666666666,2051,428 +7343,122.38333333333333,2045,429 +7344,122.39999999999999,2037,430 +7345,122.41666666666667,2027,431 +7346,122.43333333333334,2014,433 +7347,122.45,1998,435 +7348,122.46666666666667,1981,437 +7349,122.48333333333333,1961,439 +7350,122.5,1938,442 +7351,122.51666666666667,1914,445 +7352,122.53333333333333,1888,447 +7353,122.55,1860,450 +7354,122.56666666666666,1831,453 +7355,122.58333333333333,1800,456 +7356,122.6,1767,458 +7357,122.61666666666666,1734,461 +7358,122.63333333333333,1699,463 +7359,122.64999999999999,1664,465 +7360,122.66666666666667,1628,467 +7361,122.68333333333334,1591,468 +7362,122.7,1554,469 +7363,122.71666666666667,1517,469 +7364,122.73333333333333,1480,469 +7365,122.75,1442,469 +7366,122.76666666666667,1405,469 +7367,122.78333333333333,1369,469 +7368,122.8,1332,467 +7369,122.81666666666666,1298,466 +7370,122.83333333333333,1264,465 +7371,122.85,1231,462 +7372,122.86666666666666,1199,460 +7373,122.88333333333333,1168,458 +7374,122.89999999999999,1139,456 +7375,122.91666666666667,1111,453 +7376,122.93333333333334,1085,451 +7377,122.95,1061,448 +7378,122.96666666666667,1038,446 +7379,122.98333333333333,1017,444 +7380,123.0,999,441 +7381,123.01666666666667,982,439 +7382,123.03333333333333,968,438 +7383,123.05,955,436 +7384,123.06666666666666,945,435 +7385,123.08333333333333,937,434 +7386,123.1,932,433 +7387,123.11666666666666,929,433 +7388,123.13333333333333,929,433 +7389,123.14999999999999,929,433 +7390,123.16666666666667,933,434 +7391,123.18333333333334,939,435 +7392,123.2,947,436 +7393,123.21666666666667,958,437 +7394,123.23333333333333,970,439 +7395,123.25,985,441 +7396,123.26666666666667,1002,443 +7397,123.28333333333333,1021,445 +7398,123.3,1042,448 +7399,123.31666666666666,1065,450 +7400,123.33333333333333,1090,453 +7401,123.35,1117,455 +7402,123.36666666666666,1145,458 +7403,123.38333333333333,1174,460 +7404,123.39999999999999,1206,462 +7405,123.41666666666667,1238,464 +7406,123.43333333333334,1271,467 +7407,123.45,1306,468 +7408,123.46666666666667,1341,469 +7409,123.48333333333333,1377,469 +7410,123.5,1414,470 +7411,123.51666666666667,1451,470 +7412,123.53333333333333,1488,470 +7413,123.55,1526,470 +7414,123.56666666666666,1563,469 +7415,123.58333333333333,1600,468 +7416,123.6,1637,467 +7417,123.61666666666666,1673,465 +7418,123.63333333333333,1709,463 +7419,123.64999999999999,1743,461 +7420,123.66666666666667,1776,458 +7421,123.68333333333334,1808,455 +7422,123.7,1838,453 +7423,123.71666666666667,1868,450 +7424,123.73333333333333,1895,447 +7425,123.75,1920,444 +7426,123.76666666666667,1944,441 +7427,123.78333333333333,1966,439 +7428,123.8,1985,436 +7429,123.81666666666666,2002,434 +7430,123.83333333333333,2017,432 +7431,123.85,2029,430 +7432,123.86666666666666,2039,429 +7433,123.88333333333333,2046,428 +7434,123.89999999999999,2051,427 +7435,123.91666666666667,2051,427 +7436,123.93333333333334,2051,427 +7437,123.95,2050,427 +7438,123.96666666666667,2044,428 +7439,123.98333333333333,2036,429 +7440,124.0,2025,431 +7441,124.01666666666667,2012,433 +7442,124.03333333333333,1997,435 +7443,124.05,1979,437 +7444,124.06666666666666,1959,439 +7445,124.08333333333333,1937,442 +7446,124.1,1913,445 +7447,124.11666666666666,1887,448 +7448,124.13333333333333,1859,451 +7449,124.14999999999999,1830,453 +7450,124.16666666666667,1799,456 +7451,124.18333333333334,1766,458 +7452,124.2,1733,461 +7453,124.21666666666667,1699,463 +7454,124.23333333333333,1663,465 +7455,124.25,1627,467 +7456,124.26666666666667,1591,468 +7457,124.28333333333333,1554,469 +7458,124.3,1517,469 +7459,124.31666666666666,1480,470 +7460,124.33333333333333,1443,470 +7461,124.35,1407,470 +7462,124.36666666666666,1370,469 +7463,124.38333333333333,1334,468 +7464,124.39999999999999,1300,467 +7465,124.41666666666667,1266,465 +7466,124.43333333333334,1233,463 +7467,124.45,1201,461 +7468,124.46666666666667,1170,459 +7469,124.48333333333333,1141,457 +7470,124.5,1113,454 +7471,124.51666666666667,1087,452 +7472,124.53333333333333,1062,449 +7473,124.55,1040,447 +7474,124.56666666666666,1019,445 +7475,124.58333333333333,1001,442 +7476,124.6,984,440 +7477,124.61666666666666,969,438 +7478,124.63333333333333,957,437 +7479,124.64999999999999,947,436 +7480,124.66666666666667,939,434 +7481,124.68333333333334,933,434 +7482,124.7,930,433 +7483,124.71666666666667,930,433 +7484,124.73333333333333,930,433 +7485,124.75,934,434 +7486,124.76666666666667,940,435 +7487,124.78333333333333,949,436 +7488,124.8,959,437 +7489,124.81666666666666,972,439 +7490,124.83333333333333,987,441 +7491,124.85,1004,443 +7492,124.86666666666666,1023,445 +7493,124.88333333333333,1044,448 +7494,124.89999999999999,1067,450 +7495,124.91666666666667,1092,453 +7496,124.93333333333334,1118,455 +7497,124.95,1146,458 +7498,124.96666666666667,1176,460 +7499,124.98333333333333,1207,462 +7500,125.0,1240,464 +7501,125.01666666666667,1273,466 +7502,125.03333333333333,1307,467 +7503,125.05,1342,469 +7504,125.06666666666666,1378,469 +7505,125.08333333333333,1415,469 +7506,125.1,1452,469 +7507,125.11666666666666,1489,469 +7508,125.13333333333333,1526,469 +7509,125.14999999999999,1563,469 +7510,125.16666666666667,1600,468 +7511,125.18333333333334,1636,467 +7512,125.2,1672,465 +7513,125.21666666666667,1707,463 +7514,125.23333333333333,1741,461 +7515,125.25,1774,458 +7516,125.26666666666667,1806,456 +7517,125.28333333333333,1836,453 +7518,125.3,1865,450 +7519,125.31666666666666,1893,448 +7520,125.33333333333333,1918,445 +7521,125.35,1942,442 +7522,125.36666666666666,1964,439 +7523,125.38333333333333,1983,436 +7524,125.39999999999999,2001,434 +7525,125.41666666666667,2015,432 +7526,125.43333333333334,2027,430 +7527,125.45,2037,429 +7528,125.46666666666667,2045,428 +7529,125.48333333333333,2049,427 +7530,125.5,2049,427 +7531,125.51666666666667,2049,427 +7532,125.53333333333333,2048,427 +7533,125.55,2042,428 +7534,125.56666666666666,2034,429 +7535,125.58333333333333,2024,431 +7536,125.6,2011,432 +7537,125.61666666666666,1995,434 +7538,125.63333333333333,1977,437 +7539,125.64999999999999,1957,439 +7540,125.66666666666667,1935,442 +7541,125.68333333333334,1910,444 +7542,125.7,1885,447 +7543,125.71666666666667,1857,450 +7544,125.73333333333333,1827,453 +7545,125.75,1797,455 +7546,125.76666666666667,1765,458 +7547,125.78333333333333,1732,460 +7548,125.8,1698,462 +7549,125.81666666666666,1662,464 +7550,125.83333333333333,1627,466 +7551,125.85,1590,467 +7552,125.86666666666666,1554,468 +7553,125.88333333333333,1517,469 +7554,125.89999999999999,1480,469 +7555,125.91666666666667,1443,469 +7556,125.93333333333334,1407,469 +7557,125.95,1370,469 +7558,125.96666666666667,1335,468 +7559,125.98333333333333,1300,467 +7560,126.0,1266,466 +7561,126.01666666666667,1233,464 +7562,126.03333333333333,1201,462 +7563,126.05,1170,459 +7564,126.06666666666666,1141,457 +7565,126.08333333333333,1113,454 +7566,126.1,1087,452 +7567,126.11666666666666,1063,449 +7568,126.13333333333333,1041,447 +7569,126.14999999999999,1020,445 +7570,126.16666666666667,1002,443 +7571,126.18333333333334,985,441 +7572,126.2,970,439 +7573,126.21666666666667,958,437 +7574,126.23333333333333,948,436 +7575,126.25,940,435 +7576,126.26666666666667,935,434 +7577,126.28333333333333,932,434 +7578,126.3,932,434 +7579,126.31666666666666,932,434 +7580,126.33333333333333,936,434 +7581,126.35,942,435 +7582,126.36666666666666,950,436 +7583,126.38333333333333,961,438 +7584,126.39999999999999,973,439 +7585,126.41666666666667,988,441 +7586,126.43333333333334,1005,444 +7587,126.45,1024,446 +7588,126.46666666666667,1045,448 +7589,126.48333333333333,1068,451 +7590,126.5,1093,453 +7591,126.51666666666667,1119,456 +7592,126.53333333333333,1147,458 +7593,126.55,1177,461 +7594,126.56666666666666,1208,463 +7595,126.58333333333333,1240,465 +7596,126.6,1273,467 +7597,126.61666666666666,1307,468 +7598,126.63333333333333,1342,469 +7599,126.64999999999999,1379,469 +7600,126.66666666666667,1415,470 +7601,126.68333333333334,1452,470 +7602,126.7,1489,470 +7603,126.71666666666667,1526,470 +7604,126.73333333333333,1563,469 +7605,126.75,1600,468 +7606,126.76666666666667,1637,467 +7607,126.78333333333333,1672,465 +7608,126.8,1708,463 +7609,126.81666666666666,1742,461 +7610,126.83333333333333,1775,459 +7611,126.85,1807,456 +7612,126.86666666666666,1837,453 +7613,126.88333333333333,1866,450 +7614,126.89999999999999,1893,447 +7615,126.91666666666667,1919,444 +7616,126.93333333333334,1942,442 +7617,126.95,1963,439 +7618,126.96666666666667,1983,437 +7619,126.98333333333333,2000,434 +7620,127.0,2014,432 +7621,127.01666666666667,2026,430 +7622,127.03333333333333,2036,429 +7623,127.05,2044,428 +7624,127.06666666666666,2048,427 +7625,127.08333333333333,2048,427 +7626,127.1,2048,427 +7627,127.11666666666666,2047,428 +7628,127.13333333333333,2041,429 +7629,127.14999999999999,2033,430 +7630,127.16666666666667,2022,431 +7631,127.18333333333334,2009,433 +7632,127.2,1993,435 +7633,127.21666666666667,1976,437 +7634,127.23333333333333,1956,440 +7635,127.25,1934,443 +7636,127.26666666666667,1910,445 +7637,127.28333333333333,1884,448 +7638,127.3,1856,451 +7639,127.31666666666666,1827,454 +7640,127.33333333333333,1796,456 +7641,127.35,1764,459 +7642,127.36666666666666,1731,461 +7643,127.38333333333333,1697,463 +7644,127.39999999999999,1661,465 +7645,127.41666666666667,1626,467 +7646,127.43333333333334,1589,468 +7647,127.45,1553,469 +7648,127.46666666666667,1516,469 +7649,127.48333333333333,1479,469 +7650,127.5,1442,469 +7651,127.51666666666667,1406,469 +7652,127.53333333333333,1369,469 +7653,127.55,1333,469 +7654,127.56666666666666,1299,467 +7655,127.58333333333333,1265,466 +7656,127.6,1232,464 +7657,127.61666666666666,1200,462 +7658,127.63333333333333,1170,459 +7659,127.64999999999999,1141,457 +7660,127.66666666666667,1114,455 +7661,127.68333333333334,1088,452 +7662,127.7,1064,449 +7663,127.71666666666667,1041,447 +7664,127.73333333333333,1021,445 +7665,127.75,1002,443 +7666,127.76666666666667,986,440 +7667,127.78333333333333,972,438 +7668,127.8,960,437 +7669,127.81666666666666,950,436 +7670,127.83333333333333,942,435 +7671,127.85,937,434 +7672,127.86666666666666,934,433 +7673,127.88333333333333,934,433 +7674,127.89999999999999,934,433 +7675,127.91666666666667,938,434 +7676,127.93333333333334,944,435 +7677,127.95,952,436 +7678,127.96666666666667,962,437 +7679,127.98333333333333,975,439 +7680,128.0,990,440 +7681,128.01666666666665,1007,443 +7682,128.03333333333333,1026,445 +7683,128.05,1047,447 +7684,128.06666666666666,1070,450 +7685,128.08333333333334,1095,453 +7686,128.1,1121,455 +7687,128.11666666666667,1149,458 +7688,128.13333333333333,1179,460 +7689,128.15,1210,462 +7690,128.16666666666666,1242,464 +7691,128.18333333333334,1275,466 +7692,128.2,1309,468 +7693,128.21666666666667,1344,469 +7694,128.23333333333332,1380,469 +7695,128.25,1417,470 +7696,128.26666666666665,1454,470 +7697,128.28333333333333,1490,470 +7698,128.3,1527,470 +7699,128.31666666666666,1564,469 +7700,128.33333333333334,1601,468 +7701,128.35,1637,467 +7702,128.36666666666667,1672,465 +7703,128.38333333333333,1707,463 +7704,128.4,1741,461 +7705,128.41666666666666,1774,458 +7706,128.43333333333334,1805,456 +7707,128.45,1836,453 +7708,128.46666666666667,1864,450 +7709,128.48333333333332,1891,448 +7710,128.5,1917,445 +7711,128.51666666666665,1940,442 +7712,128.53333333333333,1961,439 +7713,128.55,1980,437 +7714,128.56666666666666,1997,435 +7715,128.58333333333334,2012,433 +7716,128.6,2024,431 +7717,128.61666666666667,2033,430 +7718,128.63333333333333,2041,429 +7719,128.65,2045,428 +7720,128.66666666666666,2045,428 +7721,128.68333333333334,2045,428 +7722,128.7,2044,428 +7723,128.71666666666667,2038,429 +7724,128.73333333333332,2030,430 +7725,128.75,2019,432 +7726,128.76666666666665,2006,434 +7727,128.78333333333333,1990,436 +7728,128.8,1973,438 +7729,128.81666666666666,1953,440 +7730,128.83333333333334,1931,443 +7731,128.85,1907,446 +7732,128.86666666666667,1882,448 +7733,128.88333333333333,1854,451 +7734,128.9,1825,454 +7735,128.91666666666666,1794,457 +7736,128.93333333333334,1762,459 +7737,128.95,1729,462 +7738,128.96666666666667,1695,464 +7739,128.98333333333332,1661,466 +7740,129.0,1625,467 +7741,129.01666666666665,1589,468 +7742,129.03333333333333,1552,469 +7743,129.05,1516,470 +7744,129.06666666666666,1479,470 +7745,129.08333333333334,1442,470 +7746,129.1,1407,470 +7747,129.11666666666667,1370,469 +7748,129.13333333333333,1335,469 +7749,129.15,1301,467 +7750,129.16666666666666,1267,465 +7751,129.18333333333334,1235,463 +7752,129.2,1203,462 +7753,129.21666666666667,1172,460 +7754,129.23333333333332,1143,457 +7755,129.25,1116,455 +7756,129.26666666666665,1090,452 +7757,129.28333333333333,1066,450 +7758,129.3,1044,448 +7759,129.31666666666666,1023,445 +7760,129.33333333333334,1005,443 +7761,129.35,988,441 +7762,129.36666666666667,974,439 +7763,129.38333333333333,962,438 +7764,129.4,952,437 +7765,129.41666666666666,944,435 +7766,129.43333333333334,939,435 +7767,129.45,936,434 +7768,129.46666666666667,936,434 +7769,129.48333333333332,936,434 +7770,129.5,940,435 +7771,129.51666666666665,946,436 +7772,129.53333333333333,954,437 +7773,129.55,965,438 +7774,129.56666666666666,977,440 +7775,129.58333333333334,992,442 +7776,129.6,1009,444 +7777,129.61666666666667,1028,446 +7778,129.63333333333333,1049,449 +7779,129.65,1071,451 +7780,129.66666666666666,1096,454 +7781,129.68333333333334,1122,456 +7782,129.7,1149,459 +7783,129.71666666666667,1178,461 +7784,129.73333333333332,1210,463 +7785,129.75,1242,465 +7786,129.76666666666665,1275,467 +7787,129.78333333333333,1309,468 +7788,129.8,1344,469 +7789,129.81666666666666,1380,470 +7790,129.83333333333334,1416,470 +7791,129.85,1453,470 +7792,129.86666666666667,1490,470 +7793,129.88333333333333,1527,470 +7794,129.9,1564,469 +7795,129.91666666666666,1600,468 +7796,129.93333333333334,1637,467 +7797,129.95,1672,465 +7798,129.96666666666667,1707,463 +7799,129.98333333333332,1741,461 +7800,130.0,1773,458 +7801,130.01666666666665,1805,456 +7802,130.03333333333333,1835,453 +7803,130.05,1863,450 +7804,130.06666666666666,1890,447 +7805,130.08333333333334,1915,444 +7806,130.1,1938,441 +7807,130.11666666666667,1959,439 +7808,130.13333333333333,1978,436 +7809,130.15,1995,434 +7810,130.16666666666666,2010,432 +7811,130.18333333333334,2022,430 +7812,130.2,2032,429 +7813,130.21666666666667,2039,428 +7814,130.23333333333332,2043,428 +7815,130.25,2043,428 +7816,130.26666666666665,2043,428 +7817,130.28333333333333,2042,428 +7818,130.3,2036,429 +7819,130.31666666666666,2028,430 +7820,130.33333333333334,2017,432 +7821,130.35,2005,434 +7822,130.36666666666667,1990,436 +7823,130.38333333333333,1972,438 +7824,130.4,1952,440 +7825,130.41666666666666,1929,443 +7826,130.43333333333334,1905,445 +7827,130.45,1879,448 +7828,130.46666666666667,1852,451 +7829,130.48333333333332,1823,454 +7830,130.5,1792,456 +7831,130.51666666666665,1760,459 +7832,130.53333333333333,1727,461 +7833,130.55,1693,463 +7834,130.56666666666666,1659,465 +7835,130.58333333333334,1623,467 +7836,130.6,1587,468 +7837,130.61666666666667,1551,469 +7838,130.63333333333333,1514,470 +7839,130.65,1477,470 +7840,130.66666666666666,1441,470 +7841,130.68333333333334,1405,470 +7842,130.7,1368,469 +7843,130.71666666666667,1333,468 +7844,130.73333333333332,1299,467 +7845,130.75,1266,466 +7846,130.76666666666665,1233,464 +7847,130.78333333333333,1202,462 +7848,130.8,1172,460 +7849,130.81666666666666,1143,457 +7850,130.83333333333334,1116,455 +7851,130.85,1090,452 +7852,130.86666666666667,1066,450 +7853,130.88333333333333,1044,448 +7854,130.9,1024,445 +7855,130.91666666666666,1005,443 +7856,130.93333333333334,989,441 +7857,130.95,975,439 +7858,130.96666666666667,963,438 +7859,130.98333333333332,953,436 +7860,131.0,946,435 +7861,131.01666666666665,940,435 +7862,131.03333333333333,938,434 +7863,131.05,938,434 +7864,131.06666666666666,938,434 +7865,131.08333333333334,942,435 +7866,131.1,948,436 +7867,131.11666666666667,956,437 +7868,131.13333333333333,967,438 +7869,131.15,979,440 +7870,131.16666666666666,994,442 +7871,131.18333333333334,1011,444 +7872,131.2,1030,447 +7873,131.21666666666667,1051,449 +7874,131.23333333333332,1074,452 +7875,131.25,1098,454 +7876,131.26666666666665,1125,456 +7877,131.28333333333333,1152,459 +7878,131.3,1182,461 +7879,131.31666666666666,1213,463 +7880,131.33333333333334,1245,465 +7881,131.35,1277,467 +7882,131.36666666666667,1311,468 +7883,131.38333333333333,1346,469 +7884,131.4,1382,470 +7885,131.41666666666666,1418,470 +7886,131.43333333333334,1454,470 +7887,131.45,1491,470 +7888,131.46666666666667,1528,470 +7889,131.48333333333332,1564,469 +7890,131.5,1601,468 +7891,131.51666666666665,1637,467 +7892,131.53333333333333,1672,465 +7893,131.55,1707,463 +7894,131.56666666666666,1740,461 +7895,131.58333333333334,1773,458 +7896,131.6,1804,456 +7897,131.61666666666667,1834,453 +7898,131.63333333333333,1862,450 +7899,131.65,1889,448 +7900,131.66666666666666,1914,445 +7901,131.68333333333334,1936,443 +7902,131.7,1957,440 +7903,131.71666666666667,1976,438 +7904,131.73333333333332,1993,436 +7905,131.75,2007,433 +7906,131.76666666666665,2019,432 +7907,131.78333333333333,2029,430 +7908,131.8,2036,429 +7909,131.81666666666666,2041,428 +7910,131.83333333333334,2041,428 +7911,131.85,2041,428 +7912,131.86666666666667,2039,428 +7913,131.88333333333333,2033,429 +7914,131.9,2025,430 +7915,131.91666666666666,2014,432 +7916,131.93333333333334,2002,434 +7917,131.95,1986,436 +7918,131.96666666666667,1968,438 +7919,131.98333333333332,1948,440 +7920,132.0,1926,442 +7921,132.01666666666665,1902,445 +7922,132.03333333333333,1877,448 +7923,132.05,1850,450 +7924,132.06666666666666,1821,453 +7925,132.08333333333334,1791,456 +7926,132.1,1759,458 +7927,132.11666666666667,1726,461 +7928,132.13333333333333,1692,463 +7929,132.15,1658,465 +7930,132.16666666666666,1623,467 +7931,132.18333333333334,1587,468 +7932,132.2,1551,469 +7933,132.21666666666667,1515,470 +7934,132.23333333333332,1478,470 +7935,132.25,1441,470 +7936,132.26666666666665,1404,469 +7937,132.28333333333333,1369,469 +7938,132.3,1334,468 +7939,132.31666666666666,1299,467 +7940,132.33333333333334,1266,465 +7941,132.35,1234,464 +7942,132.36666666666667,1202,461 +7943,132.38333333333333,1172,459 +7944,132.4,1143,457 +7945,132.41666666666666,1116,455 +7946,132.43333333333334,1091,452 +7947,132.45,1067,450 +7948,132.46666666666667,1045,448 +7949,132.48333333333332,1025,445 +7950,132.5,1006,443 +7951,132.51666666666665,990,441 +7952,132.53333333333333,976,439 +7953,132.55,964,438 +7954,132.56666666666666,954,437 +7955,132.58333333333334,947,435 +7956,132.6,941,435 +7957,132.61666666666667,939,435 +7958,132.63333333333333,939,435 +7959,132.65,939,435 +7960,132.66666666666666,943,435 +7961,132.68333333333334,949,436 +7962,132.7,957,437 +7963,132.71666666666667,968,439 +7964,132.73333333333332,981,440 +7965,132.75,996,442 +7966,132.76666666666665,1013,444 +7967,132.78333333333333,1032,447 +7968,132.8,1052,449 +7969,132.81666666666666,1075,451 +7970,132.83333333333334,1100,454 +7971,132.85,1126,456 +7972,132.86666666666667,1154,458 +7973,132.88333333333333,1184,461 +7974,132.9,1214,463 +7975,132.91666666666666,1246,465 +7976,132.93333333333334,1279,467 +7977,132.95,1313,468 +7978,132.96666666666667,1348,469 +7979,132.98333333333332,1383,470 +7980,133.0,1419,470 +7981,133.01666666666665,1456,470 +7982,133.03333333333333,1492,470 +7983,133.05,1529,469 +7984,133.06666666666666,1565,469 +7985,133.08333333333334,1602,468 +7986,133.1,1637,466 +7987,133.11666666666667,1672,465 +7988,133.13333333333333,1707,463 +7989,133.15,1740,461 +7990,133.16666666666666,1773,458 +7991,133.18333333333334,1804,455 +7992,133.2,1834,453 +7993,133.21666666666667,1862,450 +7994,133.23333333333332,1889,447 +7995,133.25,1914,444 +7996,133.26666666666665,1937,442 +7997,133.28333333333333,1958,440 +7998,133.3,1976,437 +7999,133.31666666666666,1993,435 +8000,133.33333333333334,2007,433 +8001,133.35,2019,432 +8002,133.36666666666667,2028,430 +8003,133.38333333333333,2035,429 +8004,133.4,2039,428 +8005,133.41666666666666,2039,428 +8006,133.43333333333334,2039,428 +8007,133.45,2037,429 +8008,133.46666666666667,2031,430 +8009,133.48333333333332,2023,431 +8010,133.5,2012,432 +8011,133.51666666666665,1999,434 +8012,133.53333333333333,1983,436 +8013,133.55,1965,439 +8014,133.56666666666666,1946,441 +8015,133.58333333333334,1924,443 +8016,133.6,1900,446 +8017,133.61666666666667,1875,448 +8018,133.63333333333333,1848,451 +8019,133.65,1819,454 +8020,133.66666666666666,1789,456 +8021,133.68333333333334,1757,459 +8022,133.7,1724,461 +8023,133.71666666666667,1691,463 +8024,133.73333333333332,1656,465 +8025,133.75,1621,467 +8026,133.76666666666665,1585,467 +8027,133.78333333333333,1548,468 +8028,133.8,1512,469 +8029,133.81666666666666,1476,469 +8030,133.83333333333334,1439,469 +8031,133.85,1404,468 +8032,133.86666666666667,1368,468 +8033,133.88333333333333,1333,467 +8034,133.9,1300,466 +8035,133.91666666666666,1267,465 +8036,133.93333333333334,1235,463 +8037,133.95,1203,461 +8038,133.96666666666667,1174,459 +8039,133.98333333333332,1146,457 +8040,134.0,1119,455 +8041,134.01666666666665,1093,452 +8042,134.03333333333333,1068,450 +8043,134.05,1046,447 +8044,134.06666666666666,1026,445 +8045,134.08333333333334,1008,443 +8046,134.1,992,441 +8047,134.11666666666667,978,439 +8048,134.13333333333333,966,438 +8049,134.15,956,436 +8050,134.16666666666666,949,435 +8051,134.18333333333334,943,435 +8052,134.2,941,434 +8053,134.21666666666667,941,434 +8054,134.23333333333332,941,434 +8055,134.25,945,435 +8056,134.26666666666665,951,436 +8057,134.28333333333333,960,437 +8058,134.3,970,439 +8059,134.31666666666666,983,440 +8060,134.33333333333334,998,442 +8061,134.35,1015,444 +8062,134.36666666666667,1034,446 +8063,134.38333333333333,1054,449 +8064,134.4,1077,451 +8065,134.41666666666666,1101,454 +8066,134.43333333333334,1127,456 +8067,134.45,1155,459 +8068,134.46666666666667,1185,461 +8069,134.48333333333332,1215,463 +8070,134.5,1247,465 +8071,134.51666666666665,1280,467 +8072,134.53333333333333,1314,468 +8073,134.55,1348,469 +8074,134.56666666666666,1384,470 +8075,134.58333333333334,1420,470 +8076,134.6,1456,470 +8077,134.61666666666667,1492,470 +8078,134.63333333333333,1529,470 +8079,134.65,1566,469 +8080,134.66666666666666,1602,468 +8081,134.68333333333334,1637,467 +8082,134.7,1672,465 +8083,134.71666666666667,1707,463 +8084,134.73333333333332,1740,461 +8085,134.75,1773,458 +8086,134.76666666666665,1804,455 +8087,134.78333333333333,1833,453 +8088,134.8,1862,450 +8089,134.81666666666666,1888,447 +8090,134.83333333333334,1913,445 +8091,134.85,1936,442 +8092,134.86666666666667,1956,440 +8093,134.88333333333333,1975,438 +8094,134.9,1991,435 +8095,134.91666666666666,2005,433 +8096,134.93333333333334,2017,432 +8097,134.95,2026,430 +8098,134.96666666666667,2033,430 +8099,134.98333333333332,2037,429 +8100,135.0,2037,429 +8101,135.01666666666665,2037,429 +8102,135.03333333333333,2035,429 +8103,135.05,2030,430 +8104,135.06666666666666,2021,431 +8105,135.08333333333334,2010,433 +8106,135.1,1997,434 +8107,135.11666666666667,1982,436 +8108,135.13333333333333,1964,438 +8109,135.15,1944,441 +8110,135.16666666666666,1922,444 +8111,135.18333333333334,1899,446 +8112,135.2,1873,449 +8113,135.21666666666667,1846,452 +8114,135.23333333333332,1817,454 +8115,135.25,1786,457 +8116,135.26666666666665,1755,459 +8117,135.28333333333333,1722,462 +8118,135.3,1687,464 +8119,135.31666666666666,1653,466 +8120,135.33333333333334,1618,467 +8121,135.35,1583,468 +8122,135.36666666666667,1547,469 +8123,135.38333333333333,1511,469 +8124,135.4,1475,469 +8125,135.41666666666666,1439,469 +8126,135.43333333333334,1403,469 +8127,135.45,1367,469 +8128,135.46666666666667,1332,467 +8129,135.48333333333332,1299,466 +8130,135.5,1266,464 +8131,135.51666666666665,1234,463 +8132,135.53333333333333,1203,461 +8133,135.55,1173,458 +8134,135.56666666666666,1144,456 +8135,135.58333333333334,1118,454 +8136,135.6,1092,451 +8137,135.61666666666667,1069,449 +8138,135.63333333333333,1047,447 +8139,135.65,1027,445 +8140,135.66666666666666,1009,443 +8141,135.68333333333334,993,441 +8142,135.7,980,439 +8143,135.71666666666667,968,438 +8144,135.73333333333332,958,437 +8145,135.75,951,436 +8146,135.76666666666665,946,435 +8147,135.78333333333333,943,435 +8148,135.8,943,435 +8149,135.81666666666666,943,435 +8150,135.83333333333334,947,436 +8151,135.85,953,436 +8152,135.86666666666667,961,438 +8153,135.88333333333333,972,439 +8154,135.9,985,441 +8155,135.91666666666666,1000,443 +8156,135.93333333333334,1016,445 +8157,135.95,1035,447 +8158,135.96666666666667,1056,449 +8159,135.98333333333332,1079,452 +8160,136.0,1103,454 +8161,136.01666666666665,1130,456 +8162,136.03333333333333,1157,459 +8163,136.05,1186,461 +8164,136.06666666666666,1217,463 +8165,136.08333333333334,1249,465 +8166,136.1,1281,467 +8167,136.11666666666667,1315,468 +8168,136.13333333333333,1349,469 +8169,136.15,1384,470 +8170,136.16666666666666,1420,470 +8171,136.18333333333334,1456,470 +8172,136.2,1492,470 +8173,136.21666666666667,1529,470 +8174,136.23333333333332,1565,469 +8175,136.25,1601,468 +8176,136.26666666666665,1637,467 +8177,136.28333333333333,1672,465 +8178,136.3,1706,463 +8179,136.31666666666666,1740,461 +8180,136.33333333333334,1772,459 +8181,136.35,1803,456 +8182,136.36666666666667,1832,454 +8183,136.38333333333333,1860,451 +8184,136.4,1887,448 +8185,136.41666666666666,1911,445 +8186,136.43333333333334,1934,443 +8187,136.45,1955,440 +8188,136.46666666666667,1973,438 +8189,136.48333333333332,1990,436 +8190,136.5,2004,434 +8191,136.51666666666665,2016,432 +8192,136.53333333333333,2025,431 +8193,136.55,2032,430 +8194,136.56666666666666,2036,429 +8195,136.58333333333334,2036,429 +8196,136.6,2036,429 +8197,136.61666666666667,2034,429 +8198,136.63333333333333,2028,430 +8199,136.65,2019,432 +8200,136.66666666666666,2009,433 +8201,136.68333333333334,1996,435 +8202,136.7,1980,437 +8203,136.71666666666667,1962,439 +8204,136.73333333333332,1942,442 +8205,136.75,1921,444 +8206,136.76666666666665,1897,447 +8207,136.78333333333333,1872,449 +8208,136.8,1844,452 +8209,136.81666666666666,1815,454 +8210,136.83333333333334,1785,457 +8211,136.85,1754,459 +8212,136.86666666666667,1721,461 +8213,136.88333333333333,1687,463 +8214,136.9,1653,465 +8215,136.91666666666666,1618,467 +8216,136.93333333333334,1582,468 +8217,136.95,1546,469 +8218,136.96666666666667,1510,469 +8219,136.98333333333332,1474,469 +8220,137.0,1438,469 +8221,137.01666666666665,1402,469 +8222,137.03333333333333,1366,469 +8223,137.05,1331,468 +8224,137.06666666666666,1297,467 +8225,137.08333333333334,1265,465 +8226,137.1,1234,463 +8227,137.11666666666667,1203,461 +8228,137.13333333333333,1173,459 +8229,137.15,1145,456 +8230,137.16666666666666,1118,454 +8231,137.18333333333334,1093,452 +8232,137.2,1069,450 +8233,137.21666666666667,1048,447 +8234,137.23333333333332,1029,445 +8235,137.25,1011,443 +8236,137.26666666666665,995,441 +8237,137.28333333333333,981,439 +8238,137.3,969,437 +8239,137.31666666666666,959,436 +8240,137.33333333333334,952,435 +8241,137.35,947,434 +8242,137.36666666666667,945,434 +8243,137.38333333333333,945,434 +8244,137.4,945,434 +8245,137.41666666666666,949,435 +8246,137.43333333333334,955,436 +8247,137.45,964,438 +8248,137.46666666666667,974,439 +8249,137.48333333333332,987,441 +8250,137.5,1002,443 +8251,137.51666666666665,1019,445 +8252,137.53333333333333,1038,447 +8253,137.55,1059,450 +8254,137.56666666666666,1081,452 +8255,137.58333333333334,1106,454 +8256,137.6,1132,456 +8257,137.61666666666667,1159,458 +8258,137.63333333333333,1188,461 +8259,137.65,1218,463 +8260,137.66666666666666,1250,465 +8261,137.68333333333334,1282,467 +8262,137.7,1316,467 +8263,137.71666666666667,1350,469 +8264,137.73333333333332,1386,469 +8265,137.75,1421,469 +8266,137.76666666666665,1457,469 +8267,137.78333333333333,1494,469 +8268,137.8,1530,469 +8269,137.81666666666666,1566,469 +8270,137.83333333333334,1602,468 +8271,137.85,1637,467 +8272,137.86666666666667,1672,465 +8273,137.88333333333333,1706,463 +8274,137.9,1739,461 +8275,137.91666666666666,1771,459 +8276,137.93333333333334,1802,456 +8277,137.95,1831,453 +8278,137.96666666666667,1859,450 +8279,137.98333333333332,1885,448 +8280,138.0,1910,445 +8281,138.01666666666665,1932,443 +8282,138.03333333333333,1953,440 +8283,138.05,1971,438 +8284,138.06666666666666,1987,436 +8285,138.08333333333334,2002,434 +8286,138.1,2013,432 +8287,138.11666666666667,2022,431 +8288,138.13333333333333,2029,430 +8289,138.15,2033,430 +8290,138.16666666666666,2033,430 +8291,138.18333333333334,2033,430 +8292,138.2,2030,430 +8293,138.21666666666667,2025,431 +8294,138.23333333333332,2016,432 +8295,138.25,2006,433 +8296,138.26666666666665,1993,435 +8297,138.28333333333333,1978,437 +8298,138.3,1960,439 +8299,138.31666666666666,1940,441 +8300,138.33333333333334,1919,444 +8301,138.35,1895,446 +8302,138.36666666666667,1869,449 +8303,138.38333333333333,1842,452 +8304,138.4,1814,454 +8305,138.41666666666666,1783,457 +8306,138.43333333333334,1752,459 +8307,138.45,1720,462 +8308,138.46666666666667,1686,464 +8309,138.48333333333332,1651,466 +8310,138.5,1617,467 +8311,138.51666666666665,1581,468 +8312,138.53333333333333,1545,469 +8313,138.55,1510,469 +8314,138.56666666666666,1473,469 +8315,138.58333333333334,1438,469 +8316,138.6,1402,469 +8317,138.61666666666667,1367,469 +8318,138.63333333333333,1332,468 +8319,138.65,1299,467 +8320,138.66666666666666,1266,465 +8321,138.68333333333334,1234,463 +8322,138.7,1203,461 +8323,138.71666666666667,1173,459 +8324,138.73333333333332,1145,457 +8325,138.75,1118,455 +8326,138.76666666666665,1093,453 +8327,138.78333333333333,1070,450 +8328,138.8,1048,448 +8329,138.81666666666666,1029,445 +8330,138.83333333333334,1011,443 +8331,138.85,995,441 +8332,138.86666666666667,982,440 +8333,138.88333333333333,970,439 +8334,138.9,961,437 +8335,138.91666666666666,953,436 +8336,138.93333333333334,948,436 +8337,138.95,947,435 +8338,138.96666666666667,947,435 +8339,138.98333333333332,947,435 +8340,139.0,951,436 +8341,139.01666666666665,957,437 +8342,139.03333333333333,965,438 +8343,139.05,976,439 +8344,139.06666666666666,988,440 +8345,139.08333333333334,1003,442 +8346,139.1,1020,444 +8347,139.11666666666667,1039,446 +8348,139.13333333333333,1060,449 +8349,139.15,1083,451 +8350,139.16666666666666,1107,454 +8351,139.18333333333334,1133,456 +8352,139.2,1161,459 +8353,139.21666666666667,1190,461 +8354,139.23333333333332,1220,463 +8355,139.25,1252,465 +8356,139.26666666666665,1284,467 +8357,139.28333333333333,1318,468 +8358,139.3,1353,469 +8359,139.31666666666666,1388,469 +8360,139.33333333333334,1423,470 +8361,139.35,1459,470 +8362,139.36666666666667,1495,470 +8363,139.38333333333333,1531,469 +8364,139.4,1567,469 +8365,139.41666666666666,1602,468 +8366,139.43333333333334,1638,466 +8367,139.45,1672,465 +8368,139.46666666666667,1706,463 +8369,139.48333333333332,1739,461 +8370,139.5,1771,458 +8371,139.51666666666665,1802,456 +8372,139.53333333333333,1831,453 +8373,139.55,1859,450 +8374,139.56666666666666,1885,448 +8375,139.58333333333334,1909,445 +8376,139.6,1931,443 +8377,139.61666666666667,1952,440 +8378,139.63333333333333,1970,438 +8379,139.65,1986,436 +8380,139.66666666666666,2000,434 +8381,139.68333333333334,2011,432 +8382,139.7,2020,431 +8383,139.71666666666667,2027,430 +8384,139.73333333333332,2031,430 +8385,139.75,2031,430 +8386,139.76666666666665,2031,430 +8387,139.78333333333333,2028,430 +8388,139.8,2022,431 +8389,139.81666666666666,2014,432 +8390,139.83333333333334,2003,434 +8391,139.85,1990,436 +8392,139.86666666666667,1975,437 +8393,139.88333333333333,1957,440 +8394,139.9,1938,442 +8395,139.91666666666666,1916,445 +8396,139.93333333333334,1892,447 +8397,139.95,1867,450 +8398,139.96666666666667,1840,452 +8399,139.98333333333332,1811,455 +8400,140.0,1781,457 +8401,140.01666666666665,1750,459 +8402,140.03333333333333,1718,462 +8403,140.05,1685,464 +8404,140.06666666666666,1650,466 +8405,140.08333333333334,1615,467 +8406,140.1,1580,468 +8407,140.11666666666667,1545,469 +8408,140.13333333333333,1509,469 +8409,140.15,1473,470 +8410,140.16666666666666,1437,470 +8411,140.18333333333334,1402,470 +8412,140.2,1366,469 +8413,140.21666666666667,1332,468 +8414,140.23333333333332,1298,467 +8415,140.25,1266,466 +8416,140.26666666666665,1234,463 +8417,140.28333333333333,1204,462 +8418,140.3,1174,459 +8419,140.31666666666666,1146,457 +8420,140.33333333333334,1119,455 +8421,140.35,1095,453 +8422,140.36666666666667,1071,450 +8423,140.38333333333333,1050,448 +8424,140.4,1030,446 +8425,140.41666666666666,1012,444 +8426,140.43333333333334,997,442 +8427,140.45,983,440 +8428,140.46666666666667,971,439 +8429,140.48333333333332,961,438 +8430,140.5,954,437 +8431,140.51666666666665,949,436 +8432,140.53333333333333,948,436 +8433,140.55,948,436 +8434,140.56666666666666,948,436 +8435,140.58333333333334,952,436 +8436,140.6,958,437 +8437,140.61666666666667,967,438 +8438,140.63333333333333,977,439 +8439,140.65,990,441 +8440,140.66666666666666,1005,443 +8441,140.68333333333334,1022,445 +8442,140.7,1041,447 +8443,140.71666666666667,1062,450 +8444,140.73333333333332,1085,452 +8445,140.75,1109,454 +8446,140.76666666666665,1135,456 +8447,140.78333333333333,1163,459 +8448,140.8,1191,461 +8449,140.81666666666666,1222,463 +8450,140.83333333333334,1253,464 +8451,140.85,1285,466 +8452,140.86666666666667,1318,467 +8453,140.88333333333333,1352,468 +8454,140.9,1388,469 +8455,140.91666666666666,1423,469 +8456,140.93333333333334,1459,469 +8457,140.95,1496,469 +8458,140.96666666666667,1532,469 +8459,140.98333333333332,1568,468 +8460,141.0,1603,467 +8461,141.01666666666665,1638,466 +8462,141.03333333333333,1673,464 +8463,141.05,1707,462 +8464,141.06666666666666,1740,461 +8465,141.08333333333334,1772,458 +8466,141.1,1803,456 +8467,141.11666666666667,1832,453 +8468,141.13333333333333,1859,451 +8469,141.15,1885,448 +8470,141.16666666666666,1909,445 +8471,141.18333333333334,1931,443 +8472,141.2,1951,440 +8473,141.21666666666667,1969,438 +8474,141.23333333333332,1985,436 +8475,141.25,1998,434 +8476,141.26666666666665,2010,432 +8477,141.28333333333333,2019,431 +8478,141.3,2025,430 +8479,141.31666666666666,2029,430 +8480,141.33333333333334,2029,430 +8481,141.35,2029,430 +8482,141.36666666666667,2026,430 +8483,141.38333333333333,2020,431 +8484,141.4,2012,432 +8485,141.41666666666666,2001,434 +8486,141.43333333333334,1988,435 +8487,141.45,1972,437 +8488,141.46666666666667,1955,439 +8489,141.48333333333332,1935,442 +8490,141.5,1913,444 +8491,141.51666666666665,1890,447 +8492,141.53333333333333,1864,450 +8493,141.55,1837,452 +8494,141.56666666666666,1809,455 +8495,141.58333333333334,1779,457 +8496,141.6,1748,460 +8497,141.61666666666667,1715,462 +8498,141.63333333333333,1682,464 +8499,141.65,1648,466 +8500,141.66666666666666,1613,467 +8501,141.68333333333334,1578,468 +8502,141.7,1543,469 +8503,141.71666666666667,1507,469 +8504,141.73333333333332,1472,469 +8505,141.75,1436,469 +8506,141.76666666666665,1401,469 +8507,141.78333333333333,1366,469 +8508,141.8,1331,468 +8509,141.81666666666666,1298,467 +8510,141.83333333333334,1266,465 +8511,141.85,1235,463 +8512,141.86666666666667,1204,461 +8513,141.88333333333333,1174,459 +8514,141.9,1146,457 +8515,141.91666666666666,1120,455 +8516,141.93333333333334,1095,453 +8517,141.95,1072,450 +8518,141.96666666666667,1051,448 +8519,141.98333333333332,1031,446 +8520,142.0,1013,444 +8521,142.01666666666665,998,442 +8522,142.03333333333333,984,440 +8523,142.05,973,439 +8524,142.06666666666666,964,438 +8525,142.08333333333334,956,437 +8526,142.1,951,436 +8527,142.11666666666667,950,436 +8528,142.13333333333333,950,436 +8529,142.15,950,436 +8530,142.16666666666666,954,437 +8531,142.18333333333334,961,438 +8532,142.2,969,439 +8533,142.21666666666667,980,440 +8534,142.23333333333332,992,442 +8535,142.25,1007,444 +8536,142.26666666666665,1024,446 +8537,142.28333333333333,1042,448 +8538,142.3,1063,450 +8539,142.31666666666666,1085,453 +8540,142.33333333333334,1110,455 +8541,142.35,1136,457 +8542,142.36666666666667,1163,459 +8543,142.38333333333333,1193,461 +8544,142.4,1223,463 +8545,142.41666666666666,1254,465 +8546,142.43333333333334,1286,467 +8547,142.45,1320,468 +8548,142.46666666666667,1354,469 +8549,142.48333333333332,1389,469 +8550,142.5,1425,469 +8551,142.51666666666665,1460,469 +8552,142.53333333333333,1496,469 +8553,142.55,1532,469 +8554,142.56666666666666,1568,468 +8555,142.58333333333334,1604,468 +8556,142.6,1639,466 +8557,142.61666666666667,1673,464 +8558,142.63333333333333,1706,462 +8559,142.65,1739,460 +8560,142.66666666666666,1770,458 +8561,142.68333333333334,1801,455 +8562,142.7,1830,453 +8563,142.71666666666667,1857,450 +8564,142.73333333333332,1883,447 +8565,142.75,1907,445 +8566,142.76666666666665,1929,442 +8567,142.78333333333333,1950,440 +8568,142.8,1968,437 +8569,142.81666666666666,1984,436 +8570,142.83333333333334,1997,434 +8571,142.85,2009,433 +8572,142.86666666666667,2018,432 +8573,142.88333333333333,2024,431 +8574,142.9,2028,430 +8575,142.91666666666666,2028,430 +8576,142.93333333333334,2028,430 +8577,142.95,2025,431 +8578,142.96666666666667,2019,431 +8579,142.98333333333332,2010,433 +8580,143.0,1999,434 +8581,143.01666666666665,1985,436 +8582,143.03333333333333,1970,438 +8583,143.05,1952,440 +8584,143.06666666666666,1933,442 +8585,143.08333333333334,1911,445 +8586,143.1,1887,447 +8587,143.11666666666667,1862,450 +8588,143.13333333333333,1835,452 +8589,143.15,1807,455 +8590,143.16666666666666,1777,457 +8591,143.18333333333334,1745,460 +8592,143.2,1713,462 +8593,143.21666666666667,1680,464 +8594,143.23333333333332,1646,466 +8595,143.25,1611,467 +8596,143.26666666666665,1576,468 +8597,143.28333333333333,1541,469 +8598,143.3,1505,469 +8599,143.31666666666666,1470,469 +8600,143.33333333333334,1434,469 +8601,143.35,1399,469 +8602,143.36666666666667,1365,469 +8603,143.38333333333333,1330,468 +8604,143.4,1297,467 +8605,143.41666666666666,1265,465 +8606,143.43333333333334,1234,463 +8607,143.45,1204,461 +8608,143.46666666666667,1175,459 +8609,143.48333333333332,1147,457 +8610,143.5,1121,455 +8611,143.51666666666665,1096,452 +8612,143.53333333333333,1073,450 +8613,143.55,1052,448 +8614,143.56666666666666,1032,446 +8615,143.58333333333334,1015,444 +8616,143.6,999,442 +8617,143.61666666666667,986,440 +8618,143.63333333333333,975,439 +8619,143.65,966,438 +8620,143.66666666666666,959,437 +8621,143.68333333333334,954,437 +8622,143.7,952,437 +8623,143.71666666666667,952,437 +8624,143.73333333333332,952,437 +8625,143.75,956,437 +8626,143.76666666666665,963,438 +8627,143.78333333333333,971,439 +8628,143.8,982,440 +8629,143.81666666666666,995,442 +8630,143.83333333333334,1010,444 +8631,143.85,1027,446 +8632,143.86666666666667,1046,448 +8633,143.88333333333333,1066,450 +8634,143.9,1089,453 +8635,143.91666666666666,1113,455 +8636,143.93333333333334,1139,457 +8637,143.95,1167,460 +8638,143.96666666666667,1196,461 +8639,143.98333333333332,1226,463 +8640,144.0,1257,465 +8641,144.01666666666665,1289,466 +8642,144.03333333333333,1322,468 +8643,144.05,1356,469 +8644,144.06666666666666,1391,469 +8645,144.08333333333334,1427,469 +8646,144.1,1462,469 +8647,144.11666666666667,1498,469 +8648,144.13333333333333,1533,469 +8649,144.15,1569,468 +8650,144.16666666666666,1604,468 +8651,144.18333333333334,1638,466 +8652,144.2,1672,465 +8653,144.21666666666667,1706,463 +8654,144.23333333333332,1738,461 +8655,144.25,1770,458 +8656,144.26666666666665,1800,455 +8657,144.28333333333333,1829,453 +8658,144.3,1856,450 +8659,144.31666666666666,1882,448 +8660,144.33333333333334,1906,445 +8661,144.35,1928,443 +8662,144.36666666666667,1948,440 +8663,144.38333333333333,1966,438 +8664,144.4,1982,436 +8665,144.41666666666666,1996,434 +8666,144.43333333333334,2006,433 +8667,144.45,2015,431 +8668,144.46666666666667,2021,430 +8669,144.48333333333332,2025,430 +8670,144.5,2025,430 +8671,144.51666666666665,2025,430 +8672,144.53333333333333,2021,430 +8673,144.55,2015,431 +8674,144.56666666666666,2006,432 +8675,144.58333333333334,1995,433 +8676,144.6,1982,435 +8677,144.61666666666667,1967,437 +8678,144.63333333333333,1950,439 +8679,144.65,1930,442 +8680,144.66666666666666,1909,444 +8681,144.68333333333334,1885,447 +8682,144.7,1860,449 +8683,144.71666666666667,1833,452 +8684,144.73333333333332,1805,455 +8685,144.75,1775,457 +8686,144.76666666666665,1744,460 +8687,144.78333333333333,1712,462 +8688,144.8,1679,464 +8689,144.81666666666666,1645,466 +8690,144.83333333333334,1610,467 +8691,144.85,1575,468 +8692,144.86666666666667,1540,469 +8693,144.88333333333333,1504,469 +8694,144.9,1469,469 +8695,144.91666666666666,1433,469 +8696,144.93333333333334,1399,469 +8697,144.95,1364,468 +8698,144.96666666666667,1330,468 +8699,144.98333333333332,1296,467 +8700,145.0,1264,465 +8701,145.01666666666665,1233,463 +8702,145.03333333333333,1203,461 +8703,145.05,1174,459 +8704,145.06666666666666,1146,457 +8705,145.08333333333334,1120,455 +8706,145.1,1096,452 +8707,145.11666666666667,1073,450 +8708,145.13333333333333,1052,448 +8709,145.15,1033,446 +8710,145.16666666666666,1015,444 +8711,145.18333333333334,1000,442 +8712,145.2,987,440 +8713,145.21666666666667,976,439 +8714,145.23333333333332,967,438 +8715,145.25,960,437 +8716,145.26666666666665,955,436 +8717,145.28333333333333,954,436 +8718,145.3,954,436 +8719,145.31666666666666,954,436 +8720,145.33333333333334,959,437 +8721,145.35,965,438 +8722,145.36666666666667,973,439 +8723,145.38333333333333,984,440 +8724,145.4,997,443 +8725,145.41666666666666,1012,444 +8726,145.43333333333334,1029,446 +8727,145.45,1048,448 +8728,145.46666666666667,1069,450 +8729,145.48333333333332,1092,452 +8730,145.5,1116,455 +8731,145.51666666666665,1142,457 +8732,145.53333333333333,1169,459 +8733,145.55,1198,462 +8734,145.56666666666666,1229,464 +8735,145.58333333333334,1260,465 +8736,145.6,1291,467 +8737,145.61666666666667,1325,468 +8738,145.63333333333333,1358,469 +8739,145.65,1394,470 +8740,145.66666666666666,1428,470 +8741,145.68333333333334,1464,470 +8742,145.7,1499,470 +8743,145.71666666666667,1534,469 +8744,145.73333333333332,1570,468 +8745,145.75,1606,467 +8746,145.76666666666665,1640,466 +8747,145.78333333333333,1674,464 +8748,145.8,1707,462 +8749,145.81666666666666,1740,460 +8750,145.83333333333334,1771,458 +8751,145.85,1801,456 +8752,145.86666666666667,1830,453 +8753,145.88333333333333,1857,450 +8754,145.9,1882,448 +8755,145.91666666666666,1906,445 +8756,145.93333333333334,1927,443 +8757,145.95,1947,440 +8758,145.96666666666667,1965,438 +8759,145.98333333333332,1980,436 +8760,146.0,1994,434 +8761,146.01666666666665,2004,433 +8762,146.03333333333333,2013,432 +8763,146.05,2019,431 +8764,146.06666666666666,2023,430 +8765,146.08333333333334,2023,430 +8766,146.1,2023,430 +8767,146.11666666666667,2019,431 +8768,146.13333333333333,2012,432 +8769,146.15,2004,434 +8770,146.16666666666666,1992,435 +8771,146.18333333333334,1979,437 +8772,146.2,1963,438 +8773,146.21666666666667,1946,440 +8774,146.23333333333332,1927,442 +8775,146.25,1905,445 +8776,146.26666666666665,1882,447 +8777,146.28333333333333,1857,450 +8778,146.3,1830,452 +8779,146.31666666666666,1801,455 +8780,146.33333333333334,1772,457 +8781,146.35,1741,460 +8782,146.36666666666667,1709,461 +8783,146.38333333333333,1676,463 +8784,146.4,1642,465 +8785,146.41666666666666,1608,466 +8786,146.43333333333334,1572,467 +8787,146.45,1537,468 +8788,146.46666666666667,1502,468 +8789,146.48333333333332,1466,468 +8790,146.5,1432,468 +8791,146.51666666666665,1397,468 +8792,146.53333333333333,1362,468 +8793,146.55,1329,466 +8794,146.56666666666666,1296,466 +8795,146.58333333333334,1265,464 +8796,146.6,1234,462 +8797,146.61666666666667,1203,461 +8798,146.63333333333333,1175,459 +8799,146.65,1147,457 +8800,146.66666666666666,1122,455 +8801,146.68333333333334,1097,452 +8802,146.7,1074,450 +8803,146.71666666666667,1053,448 +8804,146.73333333333332,1034,446 +8805,146.75,1017,444 +8806,146.76666666666665,1001,442 +8807,146.78333333333333,988,440 +8808,146.8,977,439 +8809,146.81666666666666,968,438 +8810,146.83333333333334,961,437 +8811,146.85,956,436 +8812,146.86666666666667,956,436 +8813,146.88333333333333,956,436 +8814,146.9,956,437 +8815,146.91666666666666,960,437 +8816,146.93333333333334,966,438 +8817,146.95,975,439 +8818,146.96666666666667,986,441 +8819,146.98333333333332,999,442 +8820,147.0,1014,444 +8821,147.01666666666665,1031,446 +8822,147.03333333333333,1049,448 +8823,147.05,1070,450 +8824,147.06666666666666,1093,453 +8825,147.08333333333334,1117,455 +8826,147.1,1143,457 +8827,147.11666666666667,1170,460 +8828,147.13333333333333,1199,462 +8829,147.15,1229,464 +8830,147.16666666666666,1260,466 +8831,147.18333333333334,1292,467 +8832,147.2,1325,468 +8833,147.21666666666667,1359,469 +8834,147.23333333333332,1394,469 +8835,147.25,1429,470 +8836,147.26666666666665,1464,470 +8837,147.28333333333333,1500,470 +8838,147.3,1535,469 +8839,147.31666666666666,1571,469 +8840,147.33333333333334,1606,468 +8841,147.35,1640,466 +8842,147.36666666666667,1674,465 +8843,147.38333333333333,1708,463 +8844,147.4,1740,460 +8845,147.41666666666666,1771,458 +8846,147.43333333333334,1801,456 +8847,147.45,1829,453 +8848,147.46666666666667,1856,451 +8849,147.48333333333332,1882,448 +8850,147.5,1905,445 +8851,147.51666666666665,1927,443 +8852,147.53333333333333,1947,440 +8853,147.55,1964,438 +8854,147.56666666666666,1980,436 +8855,147.58333333333334,1993,434 +8856,147.6,2004,433 +8857,147.61666666666667,2012,432 +8858,147.63333333333333,2018,431 +8859,147.65,2022,431 +8860,147.66666666666666,2022,431 +8861,147.68333333333334,2022,431 +8862,147.7,2018,431 +8863,147.71666666666667,2012,432 +8864,147.73333333333332,2003,433 +8865,147.75,1992,435 +8866,147.76666666666665,1979,436 +8867,147.78333333333333,1963,438 +8868,147.8,1945,441 +8869,147.81666666666666,1926,443 +8870,147.83333333333334,1904,445 +8871,147.85,1881,448 +8872,147.86666666666667,1855,450 +8873,147.88333333333333,1829,453 +8874,147.9,1800,455 +8875,147.91666666666666,1771,458 +8876,147.93333333333334,1740,460 +8877,147.95,1708,462 +8878,147.96666666666667,1674,464 +8879,147.98333333333332,1641,465 +8880,148.0,1607,467 +8881,148.01666666666665,1572,468 +8882,148.03333333333333,1537,469 +8883,148.05,1502,469 +8884,148.06666666666666,1466,469 +8885,148.08333333333334,1431,469 +8886,148.1,1397,469 +8887,148.11666666666667,1362,468 +8888,148.13333333333333,1328,468 +8889,148.15,1295,467 +8890,148.16666666666666,1263,465 +8891,148.18333333333334,1232,463 +8892,148.2,1202,461 +8893,148.21666666666667,1173,459 +8894,148.23333333333332,1147,456 +8895,148.25,1121,455 +8896,148.26666666666665,1097,452 +8897,148.28333333333333,1074,450 +8898,148.3,1053,448 +8899,148.31666666666666,1035,446 +8900,148.33333333333334,1017,444 +8901,148.35,1002,442 +8902,148.36666666666667,989,440 +8903,148.38333333333333,978,439 +8904,148.4,970,438 +8905,148.41666666666666,963,437 +8906,148.43333333333334,959,437 +8907,148.45,958,436 +8908,148.46666666666667,958,436 +8909,148.48333333333332,958,436 +8910,148.5,962,437 +8911,148.51666666666665,969,438 +8912,148.53333333333333,977,439 +8913,148.55,988,440 +8914,148.56666666666666,1000,442 +8915,148.58333333333334,1015,443 +8916,148.6,1032,445 +8917,148.61666666666667,1052,447 +8918,148.63333333333333,1072,450 +8919,148.65,1095,452 +8920,148.66666666666666,1119,454 +8921,148.68333333333334,1145,457 +8922,148.7,1172,459 +8923,148.71666666666667,1201,461 +8924,148.73333333333332,1232,463 +8925,148.75,1263,465 +8926,148.76666666666665,1295,467 +8927,148.78333333333333,1328,468 +8928,148.8,1362,469 +8929,148.81666666666666,1397,469 +8930,148.83333333333334,1431,470 +8931,148.85,1467,470 +8932,148.86666666666667,1502,470 +8933,148.88333333333333,1538,469 +8934,148.9,1573,469 +8935,148.91666666666666,1608,467 +8936,148.93333333333334,1642,466 +8937,148.95,1675,464 +8938,148.96666666666667,1708,462 +8939,148.98333333333332,1740,460 +8940,149.0,1771,458 +8941,149.01666666666665,1801,455 +8942,149.03333333333333,1829,453 +8943,149.05,1856,450 +8944,149.06666666666666,1881,448 +8945,149.08333333333334,1904,445 +8946,149.1,1926,443 +8947,149.11666666666667,1945,440 +8948,149.13333333333333,1963,438 +8949,149.15,1978,436 +8950,149.16666666666666,1991,435 +8951,149.18333333333334,2001,433 +8952,149.2,2010,432 +8953,149.21666666666667,2016,431 +8954,149.23333333333332,2019,431 +8955,149.25,2019,431 +8956,149.26666666666665,2019,431 +8957,149.28333333333333,2015,431 +8958,149.3,2009,432 +8959,149.31666666666666,2000,433 +8960,149.33333333333334,1989,435 +8961,149.35,1976,436 +8962,149.36666666666667,1960,438 +8963,149.38333333333333,1942,441 +8964,149.4,1923,443 +8965,149.41666666666666,1901,445 +8966,149.43333333333334,1878,448 +8967,149.45,1852,450 +8968,149.46666666666667,1826,453 +8969,149.48333333333332,1797,455 +8970,149.5,1768,458 +8971,149.51666666666665,1737,460 +8972,149.53333333333333,1705,462 +8973,149.55,1672,464 +8974,149.56666666666666,1639,466 +8975,149.58333333333334,1605,467 +8976,149.6,1570,468 +8977,149.61666666666667,1535,469 +8978,149.63333333333333,1500,469 +8979,149.65,1465,469 +8980,149.66666666666666,1430,469 +8981,149.68333333333334,1396,469 +8982,149.7,1361,468 +8983,149.71666666666667,1328,468 +8984,149.73333333333332,1296,467 +8985,149.75,1265,466 +8986,149.76666666666665,1234,463 +8987,149.78333333333333,1204,461 +8988,149.8,1175,459 +8989,149.81666666666666,1148,457 +8990,149.83333333333334,1122,455 +8991,149.85,1098,453 +8992,149.86666666666667,1076,451 +8993,149.88333333333333,1055,448 +8994,149.9,1036,446 +8995,149.91666666666666,1019,444 +8996,149.93333333333334,1004,443 +8997,149.95,991,441 +8998,149.96666666666667,980,440 +8999,149.98333333333332,971,439 +9000,150.0,964,438 +9001,150.01666666666665,960,437 +9002,150.03333333333333,960,437 +9003,150.05,960,437 +9004,150.06666666666666,960,438 +9005,150.08333333333334,965,438 +9006,150.1,971,439 +9007,150.11666666666667,980,440 +9008,150.13333333333333,990,441 +9009,150.15,1003,443 +9010,150.16666666666666,1018,445 +9011,150.18333333333334,1035,447 +9012,150.2,1054,449 +9013,150.21666666666667,1075,451 +9014,150.23333333333332,1098,453 +9015,150.25,1122,456 +9016,150.26666666666665,1147,458 +9017,150.28333333333333,1175,460 +9018,150.3,1204,462 +9019,150.31666666666666,1234,464 +9020,150.33333333333334,1265,466 +9021,150.35,1297,467 +9022,150.36666666666667,1329,468 +9023,150.38333333333333,1363,469 +9024,150.4,1398,469 +9025,150.41666666666666,1432,469 +9026,150.43333333333334,1467,469 +9027,150.45,1503,469 +9028,150.46666666666667,1538,469 +9029,150.48333333333332,1573,468 +9030,150.5,1608,468 +9031,150.51666666666665,1642,466 +9032,150.53333333333333,1675,465 +9033,150.55,1708,463 +9034,150.56666666666666,1739,461 +9035,150.58333333333334,1770,458 +9036,150.6,1800,456 +9037,150.61666666666667,1828,454 +9038,150.63333333333333,1855,451 +9039,150.65,1880,448 +9040,150.66666666666666,1903,446 +9041,150.68333333333334,1925,443 +9042,150.7,1944,441 +9043,150.71666666666667,1961,439 +9044,150.73333333333332,1976,437 +9045,150.75,1989,435 +9046,150.76666666666665,2000,434 +9047,150.78333333333333,2008,432 +9048,150.8,2014,432 +9049,150.81666666666666,2017,431 +9050,150.83333333333334,2017,431 +9051,150.85,2017,431 +9052,150.86666666666667,2013,432 +9053,150.88333333333333,2006,433 +9054,150.9,1998,434 +9055,150.91666666666666,1987,435 +9056,150.93333333333334,1973,437 +9057,150.95,1957,438 +9058,150.96666666666667,1939,440 +9059,150.98333333333332,1920,443 +9060,151.0,1898,445 +9061,151.01666666666665,1875,448 +9062,151.03333333333333,1849,450 +9063,151.05,1823,453 +9064,151.06666666666666,1795,455 +9065,151.08333333333334,1765,457 +9066,151.1,1734,459 +9067,151.11666666666667,1703,461 +9068,151.13333333333333,1670,463 +9069,151.15,1637,465 +9070,151.16666666666666,1603,466 +9071,151.18333333333334,1568,468 +9072,151.2,1533,468 +9073,151.21666666666667,1499,469 +9074,151.23333333333332,1464,469 +9075,151.25,1430,469 +9076,151.26666666666665,1395,469 +9077,151.28333333333333,1361,469 +9078,151.3,1327,467 +9079,151.31666666666666,1295,466 +9080,151.33333333333334,1263,465 +9081,151.35,1232,463 +9082,151.36666666666667,1202,461 +9083,151.38333333333333,1174,459 +9084,151.4,1147,456 +9085,151.41666666666666,1121,454 +9086,151.43333333333334,1097,452 +9087,151.45,1075,450 +9088,151.46666666666667,1054,448 +9089,151.48333333333332,1036,446 +9090,151.5,1019,444 +9091,151.51666666666665,1004,443 +9092,151.53333333333333,991,441 +9093,151.55,980,440 +9094,151.56666666666666,972,438 +9095,151.58333333333334,965,438 +9096,151.6,961,437 +9097,151.61666666666667,961,437 +9098,151.63333333333333,961,437 +9099,151.65,961,437 +9100,151.66666666666666,965,438 +9101,151.68333333333334,972,439 +9102,151.7,981,440 +9103,151.71666666666667,992,442 +9104,151.73333333333332,1005,443 +9105,151.75,1020,445 +9106,151.76666666666665,1037,447 +9107,151.78333333333333,1056,449 +9108,151.8,1076,451 +9109,151.81666666666666,1099,454 +9110,151.83333333333334,1123,456 +9111,151.85,1149,458 +9112,151.86666666666667,1176,461 +9113,151.88333333333333,1205,463 +9114,151.9,1235,464 +9115,151.91666666666666,1266,466 +9116,151.93333333333334,1298,468 +9117,151.95,1331,468 +9118,151.96666666666667,1364,469 +9119,151.98333333333332,1399,470 +9120,152.0,1433,470 +9121,152.01666666666665,1469,470 +9122,152.03333333333333,1504,470 +9123,152.05,1539,469 +9124,152.06666666666666,1574,468 +9125,152.08333333333334,1609,468 +9126,152.1,1643,466 +9127,152.11666666666667,1676,465 +9128,152.13333333333333,1709,463 +9129,152.15,1741,460 +9130,152.16666666666666,1771,458 +9131,152.18333333333334,1801,456 +9132,152.2,1829,453 +9133,152.21666666666667,1855,450 +9134,152.23333333333332,1880,448 +9135,152.25,1903,445 +9136,152.26666666666665,1925,443 +9137,152.28333333333333,1944,441 +9138,152.3,1961,439 +9139,152.31666666666666,1976,437 +9140,152.33333333333334,1988,435 +9141,152.35,1999,434 +9142,152.36666666666667,2007,432 +9143,152.38333333333333,2013,431 +9144,152.4,2015,431 +9145,152.41666666666666,2015,431 +9146,152.43333333333334,2015,431 +9147,152.45,2011,432 +9148,152.46666666666667,2005,433 +9149,152.48333333333332,1996,434 +9150,152.5,1985,435 +9151,152.51666666666665,1971,437 +9152,152.53333333333333,1956,439 +9153,152.55,1938,441 +9154,152.56666666666666,1919,443 +9155,152.58333333333334,1897,446 +9156,152.6,1873,448 +9157,152.61666666666667,1848,451 +9158,152.63333333333333,1821,453 +9159,152.65,1793,456 +9160,152.66666666666666,1763,458 +9161,152.68333333333334,1733,460 +9162,152.7,1701,462 +9163,152.71666666666667,1668,464 +9164,152.73333333333332,1635,466 +9165,152.75,1601,467 +9166,152.76666666666665,1566,468 +9167,152.78333333333333,1532,469 +9168,152.8,1497,469 +9169,152.81666666666666,1462,469 +9170,152.83333333333334,1427,469 +9171,152.85,1393,469 +9172,152.86666666666667,1359,468 +9173,152.88333333333333,1326,468 +9174,152.9,1293,466 +9175,152.91666666666666,1262,465 +9176,152.93333333333334,1232,463 +9177,152.95,1202,461 +9178,152.96666666666667,1174,459 +9179,152.98333333333332,1147,457 +9180,153.0,1122,455 +9181,153.01666666666665,1098,453 +9182,153.03333333333333,1076,451 +9183,153.05,1055,448 +9184,153.06666666666666,1036,446 +9185,153.08333333333334,1020,444 +9186,153.1,1005,443 +9187,153.11666666666667,992,441 +9188,153.13333333333333,981,440 +9189,153.15,973,439 +9190,153.16666666666666,966,438 +9191,153.18333333333334,962,438 +9192,153.2,962,438 +9193,153.21666666666667,962,438 +9194,153.23333333333332,962,438 +9195,153.25,967,438 +9196,153.26666666666665,973,439 +9197,153.28333333333333,982,441 +9198,153.3,993,442 +9199,153.31666666666666,1006,444 +9200,153.33333333333334,1022,445 +9201,153.35,1039,447 +9202,153.36666666666667,1058,449 +9203,153.38333333333333,1079,451 +9204,153.4,1101,453 +9205,153.41666666666666,1126,456 +9206,153.43333333333334,1151,458 +9207,153.45,1179,460 +9208,153.46666666666667,1208,462 +9209,153.48333333333332,1238,464 +9210,153.5,1268,466 +9211,153.51666666666665,1300,467 +9212,153.53333333333333,1333,468 +9213,153.55,1366,469 +9214,153.56666666666666,1401,469 +9215,153.58333333333334,1435,469 +9216,153.6,1470,469 +9217,153.61666666666667,1505,469 +9218,153.63333333333333,1541,469 +9219,153.65,1575,468 +9220,153.66666666666666,1610,467 +9221,153.68333333333334,1644,466 +9222,153.7,1678,464 +9223,153.71666666666667,1710,462 +9224,153.73333333333332,1742,460 +9225,153.75,1772,458 +9226,153.76666666666665,1801,455 +9227,153.78333333333333,1829,453 +9228,153.8,1855,450 +9229,153.81666666666666,1880,447 +9230,153.83333333333334,1902,445 +9231,153.85,1923,443 +9232,153.86666666666667,1942,440 +9233,153.88333333333333,1959,438 +9234,153.9,1974,436 +9235,153.91666666666666,1986,435 +9236,153.93333333333334,1997,433 +9237,153.95,2005,432 +9238,153.96666666666667,2010,432 +9239,153.98333333333332,2013,431 +9240,154.0,2013,431 +9241,154.01666666666665,2013,431 +9242,154.03333333333333,2008,432 +9243,154.05,2002,433 +9244,154.06666666666666,1993,434 +9245,154.08333333333334,1982,435 +9246,154.1,1968,437 +9247,154.11666666666667,1953,439 +9248,154.13333333333333,1935,441 +9249,154.15,1915,444 +9250,154.16666666666666,1894,446 +9251,154.18333333333334,1870,449 +9252,154.2,1845,451 +9253,154.21666666666667,1819,453 +9254,154.23333333333332,1791,456 +9255,154.25,1761,458 +9256,154.26666666666665,1731,461 +9257,154.28333333333333,1700,463 +9258,154.3,1667,465 +9259,154.31666666666666,1633,466 +9260,154.33333333333334,1599,467 +9261,154.35,1565,468 +9262,154.36666666666667,1530,469 +9263,154.38333333333333,1495,469 +9264,154.4,1460,469 +9265,154.41666666666666,1426,469 +9266,154.43333333333334,1392,469 +9267,154.45,1358,468 +9268,154.46666666666667,1324,467 +9269,154.48333333333332,1292,466 +9270,154.5,1261,465 +9271,154.51666666666665,1231,463 +9272,154.53333333333333,1201,461 +9273,154.55,1174,459 +9274,154.56666666666666,1147,457 +9275,154.58333333333334,1121,455 +9276,154.6,1098,453 +9277,154.61666666666667,1076,450 +9278,154.63333333333333,1055,448 +9279,154.65,1037,446 +9280,154.66666666666666,1020,445 +9281,154.68333333333334,1006,443 +9282,154.7,993,441 +9283,154.71666666666667,982,440 +9284,154.73333333333332,974,439 +9285,154.75,968,438 +9286,154.76666666666665,963,438 +9287,154.78333333333333,963,438 +9288,154.8,963,438 +9289,154.81666666666666,964,438 +9290,154.83333333333334,969,439 +9291,154.85,976,440 +9292,154.86666666666667,985,441 +9293,154.88333333333333,996,442 +9294,154.9,1009,444 +9295,154.91666666666666,1024,446 +9296,154.93333333333334,1041,447 +9297,154.95,1060,450 +9298,154.96666666666667,1081,452 +9299,154.98333333333332,1103,454 +9300,155.0,1128,456 +9301,155.01666666666665,1153,459 +9302,155.03333333333333,1181,461 +9303,155.05,1209,463 +9304,155.06666666666666,1239,465 +9305,155.08333333333334,1270,467 +9306,155.1,1302,468 +9307,155.11666666666667,1335,469 +9308,155.13333333333333,1368,469 +9309,155.15,1403,470 +9310,155.16666666666666,1437,470 +9311,155.18333333333334,1472,470 +9312,155.2,1507,470 +9313,155.21666666666667,1542,469 +9314,155.23333333333332,1577,468 +9315,155.25,1611,467 +9316,155.26666666666665,1645,466 +9317,155.28333333333333,1678,464 +9318,155.3,1710,463 +9319,155.31666666666666,1742,460 +9320,155.33333333333334,1772,458 +9321,155.35,1801,456 +9322,155.36666666666667,1829,453 +9323,155.38333333333333,1855,451 +9324,155.4,1880,448 +9325,155.41666666666666,1902,446 +9326,155.43333333333334,1923,443 +9327,155.45,1942,441 +9328,155.46666666666667,1959,439 +9329,155.48333333333332,1973,437 +9330,155.5,1985,436 +9331,155.51666666666665,1996,434 +9332,155.53333333333333,2003,433 +9333,155.55,2009,432 +9334,155.56666666666666,2010,432 +9335,155.58333333333334,2010,432 +9336,155.6,2010,432 +9337,155.61666666666667,2006,433 +9338,155.63333333333333,2000,433 +9339,155.65,1991,435 +9340,155.66666666666666,1979,436 +9341,155.68333333333334,1966,438 +9342,155.7,1950,439 +9343,155.71666666666667,1933,442 +9344,155.73333333333332,1913,444 +9345,155.75,1891,446 +9346,155.76666666666665,1868,448 +9347,155.78333333333333,1843,451 +9348,155.8,1816,454 +9349,155.81666666666666,1788,456 +9350,155.83333333333334,1759,458 +9351,155.85,1728,460 +9352,155.86666666666667,1697,462 +9353,155.88333333333333,1664,464 +9354,155.9,1631,466 +9355,155.91666666666666,1597,467 +9356,155.93333333333334,1563,468 +9357,155.95,1529,468 +9358,155.96666666666667,1494,469 +9359,155.98333333333332,1460,469 +9360,156.0,1425,469 +9361,156.01666666666665,1391,469 +9362,156.03333333333333,1357,469 +9363,156.05,1324,468 +9364,156.06666666666666,1292,467 +9365,156.08333333333334,1261,464 +9366,156.1,1231,463 +9367,156.11666666666667,1202,461 +9368,156.13333333333333,1174,459 +9369,156.15,1147,457 +9370,156.16666666666666,1122,455 +9371,156.18333333333334,1099,453 +9372,156.2,1077,451 +9373,156.21666666666667,1056,448 +9374,156.23333333333332,1038,446 +9375,156.25,1021,444 +9376,156.26666666666665,1007,443 +9377,156.28333333333333,995,441 +9378,156.3,984,440 +9379,156.31666666666666,976,439 +9380,156.33333333333334,970,438 +9381,156.35,966,438 +9382,156.36666666666667,966,438 +9383,156.38333333333333,966,438 +9384,156.4,967,438 +9385,156.41666666666666,972,439 +9386,156.43333333333334,978,440 +9387,156.45,987,441 +9388,156.46666666666667,998,442 +9389,156.48333333333332,1012,444 +9390,156.5,1027,446 +9391,156.51666666666665,1044,448 +9392,156.53333333333333,1063,450 +9393,156.55,1084,452 +9394,156.56666666666666,1106,454 +9395,156.58333333333334,1130,456 +9396,156.6,1156,458 +9397,156.61666666666667,1183,461 +9398,156.63333333333333,1212,463 +9399,156.65,1242,464 +9400,156.66666666666666,1273,466 +9401,156.68333333333334,1304,467 +9402,156.7,1336,469 +9403,156.71666666666667,1370,469 +9404,156.73333333333332,1405,469 +9405,156.75,1439,469 +9406,156.76666666666665,1473,469 +9407,156.78333333333333,1508,469 +9408,156.8,1543,469 +9409,156.81666666666666,1578,468 +9410,156.83333333333334,1612,467 +9411,156.85,1645,466 +9412,156.86666666666667,1679,464 +9413,156.88333333333333,1711,462 +9414,156.9,1742,460 +9415,156.91666666666666,1772,458 +9416,156.93333333333334,1801,456 +9417,156.95,1828,453 +9418,156.96666666666667,1854,451 +9419,156.98333333333332,1878,448 +9420,157.0,1901,446 +9421,157.01666666666665,1921,443 +9422,157.03333333333333,1940,441 +9423,157.05,1957,439 +9424,157.06666666666666,1971,437 +9425,157.08333333333334,1983,436 +9426,157.1,1993,435 +9427,157.11666666666667,2000,434 +9428,157.13333333333333,2006,433 +9429,157.15,2007,433 +9430,157.16666666666666,2007,433 +9431,157.18333333333334,2007,433 +9432,157.2,2002,434 +9433,157.21666666666667,1996,435 +9434,157.23333333333332,1987,436 +9435,157.25,1976,437 +9436,157.26666666666665,1962,439 +9437,157.28333333333333,1947,440 +9438,157.3,1929,443 +9439,157.31666666666666,1909,444 +9440,157.33333333333334,1888,447 +9441,157.35,1865,449 +9442,157.36666666666667,1839,451 +9443,157.38333333333333,1813,454 +9444,157.4,1785,456 +9445,157.41666666666666,1756,458 +9446,157.43333333333334,1725,460 +9447,157.45,1694,462 +9448,157.46666666666667,1661,464 +9449,157.48333333333332,1628,466 +9450,157.5,1595,467 +9451,157.51666666666665,1560,468 +9452,157.53333333333333,1526,469 +9453,157.55,1492,469 +9454,157.56666666666666,1457,469 +9455,157.58333333333334,1423,469 +9456,157.6,1389,468 +9457,157.61666666666667,1355,468 +9458,157.63333333333333,1323,467 +9459,157.65,1291,465 +9460,157.66666666666666,1261,464 +9461,157.68333333333334,1230,462 +9462,157.7,1201,460 +9463,157.71666666666667,1173,458 +9464,157.73333333333332,1146,456 +9465,157.75,1121,454 +9466,157.76666666666665,1098,452 +9467,157.78333333333333,1076,449 +9468,157.8,1056,447 +9469,157.81666666666666,1038,445 +9470,157.83333333333334,1022,443 +9471,157.85,1007,442 +9472,157.86666666666667,995,440 +9473,157.88333333333333,985,439 +9474,157.9,977,438 +9475,157.91666666666666,971,437 +9476,157.93333333333334,967,437 +9477,157.95,967,437 +9478,157.96666666666667,967,437 +9479,157.98333333333332,968,437 +9480,158.0,973,438 +9481,158.01666666666665,980,439 +9482,158.03333333333333,989,440 +9483,158.05,1000,442 +9484,158.06666666666666,1013,443 +9485,158.08333333333334,1028,445 +9486,158.1,1046,447 +9487,158.11666666666667,1064,449 +9488,158.13333333333333,1085,451 +9489,158.15,1108,454 +9490,158.16666666666666,1132,456 +9491,158.18333333333334,1158,458 +9492,158.2,1185,460 +9493,158.21666666666667,1214,462 +9494,158.23333333333332,1244,464 +9495,158.25,1274,466 +9496,158.26666666666665,1306,467 +9497,158.28333333333333,1338,468 +9498,158.3,1372,469 +9499,158.31666666666666,1406,469 +9500,158.33333333333334,1440,469 +9501,158.35,1475,469 +9502,158.36666666666667,1510,469 +9503,158.38333333333333,1544,469 +9504,158.4,1579,468 +9505,158.41666666666666,1613,467 +9506,158.43333333333334,1647,466 +9507,158.45,1680,464 +9508,158.46666666666667,1712,462 +9509,158.48333333333332,1743,460 +9510,158.5,1773,458 +9511,158.51666666666665,1802,455 +9512,158.53333333333333,1829,453 +9513,158.55,1855,450 +9514,158.56666666666666,1879,448 +9515,158.58333333333334,1902,445 +9516,158.6,1922,443 +9517,158.61666666666667,1941,441 +9518,158.63333333333333,1957,439 +9519,158.65,1972,437 +9520,158.66666666666666,1984,436 +9521,158.68333333333334,1993,434 +9522,158.7,2001,433 +9523,158.71666666666667,2006,433 +9524,158.73333333333332,2007,433 +9525,158.75,2007,433 +9526,158.76666666666665,2007,433 +9527,158.78333333333333,2003,433 +9528,158.8,1996,434 +9529,158.81666666666666,1987,435 +9530,158.83333333333334,1975,437 +9531,158.85,1962,438 +9532,158.86666666666667,1946,440 +9533,158.88333333333333,1928,442 +9534,158.9,1908,444 +9535,158.91666666666666,1887,447 +9536,158.93333333333334,1863,449 +9537,158.95,1838,451 +9538,158.96666666666667,1811,454 +9539,158.98333333333332,1783,456 +9540,159.0,1754,458 +9541,159.01666666666665,1723,460 +9542,159.03333333333333,1692,462 +9543,159.05,1660,464 +9544,159.06666666666666,1627,466 +9545,159.08333333333334,1593,467 +9546,159.1,1559,468 +9547,159.11666666666667,1525,468 +9548,159.13333333333333,1490,469 +9549,159.15,1456,469 +9550,159.16666666666666,1422,469 +9551,159.18333333333334,1388,468 +9552,159.2,1355,468 +9553,159.21666666666667,1322,467 +9554,159.23333333333332,1290,466 +9555,159.25,1259,464 +9556,159.26666666666665,1230,462 +9557,159.28333333333333,1200,460 +9558,159.3,1173,458 +9559,159.31666666666666,1147,456 +9560,159.33333333333334,1122,454 +9561,159.35,1099,452 +9562,159.36666666666667,1077,450 +9563,159.38333333333333,1057,448 +9564,159.4,1039,446 +9565,159.41666666666666,1023,444 +9566,159.43333333333334,1009,443 +9567,159.45,996,441 +9568,159.46666666666667,986,440 +9569,159.48333333333332,978,439 +9570,159.5,972,438 +9571,159.51666666666665,968,438 +9572,159.53333333333333,968,438 +9573,159.55,968,438 +9574,159.56666666666666,970,438 +9575,159.58333333333334,975,439 +9576,159.6,982,440 +9577,159.61666666666667,991,441 +9578,159.63333333333333,1002,442 +9579,159.65,1015,444 +9580,159.66666666666666,1031,446 +9581,159.68333333333334,1048,448 +9582,159.7,1067,450 +9583,159.71666666666667,1088,452 +9584,159.73333333333332,1110,454 +9585,159.75,1134,457 +9586,159.76666666666665,1160,459 +9587,159.78333333333333,1187,461 +9588,159.8,1216,463 +9589,159.81666666666666,1246,465 +9590,159.83333333333334,1276,466 +9591,159.85,1308,468 +9592,159.86666666666667,1340,469 +9593,159.88333333333333,1373,469 +9594,159.9,1407,469 +9595,159.91666666666666,1442,469 +9596,159.93333333333334,1476,469 +9597,159.95,1511,469 +9598,159.96666666666667,1545,469 +9599,159.98333333333332,1580,468 +9600,160.0,1614,467 +9601,160.01666666666665,1647,466 +9602,160.03333333333333,1680,464 +9603,160.05,1712,462 +9604,160.06666666666666,1743,460 +9605,160.08333333333334,1772,458 +9606,160.1,1801,455 +9607,160.11666666666667,1828,453 +9608,160.13333333333333,1854,450 +9609,160.15,1878,448 +9610,160.16666666666666,1900,445 +9611,160.18333333333334,1920,443 +9612,160.2,1939,441 +9613,160.21666666666667,1955,439 +9614,160.23333333333332,1969,437 +9615,160.25,1981,436 +9616,160.26666666666665,1990,434 +9617,160.28333333333333,1998,433 +9618,160.3,2003,433 +9619,160.31666666666666,2003,433 +9620,160.33333333333334,2003,433 +9621,160.35,2003,433 +9622,160.36666666666667,1999,433 +9623,160.38333333333333,1992,434 +9624,160.4,1983,435 +9625,160.41666666666666,1972,437 +9626,160.43333333333334,1958,438 +9627,160.45,1942,441 +9628,160.46666666666667,1924,442 +9629,160.48333333333332,1904,445 +9630,160.5,1883,447 +9631,160.51666666666665,1859,450 +9632,160.53333333333333,1834,452 +9633,160.55,1808,454 +9634,160.56666666666666,1780,457 +9635,160.58333333333334,1751,459 +9636,160.6,1720,461 +9637,160.61666666666667,1689,463 +9638,160.63333333333333,1657,464 +9639,160.65,1624,466 +9640,160.66666666666666,1591,467 +9641,160.68333333333334,1557,468 +9642,160.7,1523,469 +9643,160.71666666666667,1488,469 +9644,160.73333333333332,1454,469 +9645,160.75,1420,469 +9646,160.76666666666665,1386,468 +9647,160.78333333333333,1353,468 +9648,160.8,1321,467 +9649,160.81666666666666,1289,466 +9650,160.83333333333334,1259,465 +9651,160.85,1229,463 +9652,160.86666666666667,1200,461 +9653,160.88333333333333,1172,459 +9654,160.9,1146,457 +9655,160.91666666666666,1122,455 +9656,160.93333333333334,1098,453 +9657,160.95,1077,451 +9658,160.96666666666667,1057,448 +9659,160.98333333333332,1039,447 +9660,161.0,1023,445 +9661,161.01666666666665,1009,443 +9662,161.03333333333333,997,442 +9663,161.05,987,440 +9664,161.06666666666666,979,440 +9665,161.08333333333334,973,439 +9666,161.1,970,438 +9667,161.11666666666667,970,438 +9668,161.13333333333333,970,438 +9669,161.15,971,439 +9670,161.16666666666666,976,440 +9671,161.18333333333334,984,440 +9672,161.2,993,442 +9673,161.21666666666667,1004,443 +9674,161.23333333333332,1017,445 +9675,161.25,1033,446 +9676,161.26666666666665,1050,448 +9677,161.28333333333333,1069,451 +9678,161.3,1090,452 +9679,161.31666666666666,1112,455 +9680,161.33333333333334,1137,457 +9681,161.35,1162,459 +9682,161.36666666666667,1190,461 +9683,161.38333333333333,1218,463 +9684,161.4,1248,465 +9685,161.41666666666666,1278,467 +9686,161.43333333333334,1310,468 +9687,161.45,1342,469 +9688,161.46666666666667,1376,470 +9689,161.48333333333332,1410,470 +9690,161.5,1444,470 +9691,161.51666666666665,1478,470 +9692,161.53333333333333,1513,470 +9693,161.55,1547,469 +9694,161.56666666666666,1582,468 +9695,161.58333333333334,1615,467 +9696,161.6,1648,466 +9697,161.61666666666667,1681,464 +9698,161.63333333333333,1713,462 +9699,161.65,1743,460 +9700,161.66666666666666,1773,458 +9701,161.68333333333334,1802,456 +9702,161.7,1829,453 +9703,161.71666666666667,1854,451 +9704,161.73333333333332,1878,448 +9705,161.75,1900,446 +9706,161.76666666666665,1920,443 +9707,161.78333333333333,1938,441 +9708,161.8,1954,439 +9709,161.81666666666666,1969,438 +9710,161.83333333333334,1980,436 +9711,161.85,1990,435 +9712,161.86666666666667,1997,434 +9713,161.88333333333333,2002,433 +9714,161.9,2002,433 +9715,161.91666666666666,2002,433 +9716,161.93333333333334,2002,433 +9717,161.95,1997,434 +9718,161.96666666666667,1990,435 +9719,161.98333333333332,1981,436 +9720,162.0,1969,437 +9721,162.01666666666665,1956,439 +9722,162.03333333333333,1940,441 +9723,162.05,1922,443 +9724,162.06666666666666,1902,445 +9725,162.08333333333334,1881,447 +9726,162.1,1857,450 +9727,162.11666666666667,1832,452 +9728,162.13333333333333,1806,454 +9729,162.15,1778,457 +9730,162.16666666666666,1749,459 +9731,162.18333333333334,1718,461 +9732,162.2,1687,463 +9733,162.21666666666667,1655,465 +9734,162.23333333333332,1622,467 +9735,162.25,1589,468 +9736,162.26666666666665,1555,468 +9737,162.28333333333333,1521,469 +9738,162.3,1487,469 +9739,162.31666666666666,1453,469 +9740,162.33333333333334,1419,469 +9741,162.35,1385,469 +9742,162.36666666666667,1352,468 +9743,162.38333333333333,1320,468 +9744,162.4,1289,467 +9745,162.41666666666666,1258,465 +9746,162.43333333333334,1229,463 +9747,162.45,1200,461 +9748,162.46666666666667,1172,459 +9749,162.48333333333332,1146,457 +9750,162.5,1122,455 +9751,162.51666666666665,1099,453 +9752,162.53333333333333,1078,451 +9753,162.55,1058,449 +9754,162.56666666666666,1040,447 +9755,162.58333333333334,1024,445 +9756,162.6,1011,443 +9757,162.61666666666667,999,442 +9758,162.63333333333333,989,441 +9759,162.65,981,440 +9760,162.66666666666666,975,440 +9761,162.68333333333334,972,439 +9762,162.7,972,439 +9763,162.71666666666667,972,439 +9764,162.73333333333332,974,440 +9765,162.75,979,440 +9766,162.76666666666665,986,441 +9767,162.78333333333333,995,443 +9768,162.8,1007,444 +9769,162.81666666666666,1020,446 +9770,162.83333333333334,1035,447 +9771,162.85,1053,449 +9772,162.86666666666667,1072,451 +9773,162.88333333333333,1093,453 +9774,162.9,1115,455 +9775,162.91666666666666,1140,457 +9776,162.93333333333334,1165,459 +9777,162.95,1192,461 +9778,162.96666666666667,1221,464 +9779,162.98333333333332,1251,465 +9780,163.0,1281,467 +9781,163.01666666666665,1313,468 +9782,163.03333333333333,1344,469 +9783,163.05,1378,470 +9784,163.06666666666666,1412,470 +9785,163.08333333333334,1446,470 +9786,163.1,1480,470 +9787,163.11666666666667,1515,470 +9788,163.13333333333333,1549,469 +9789,163.15,1583,468 +9790,163.16666666666666,1617,467 +9791,163.18333333333334,1650,466 +9792,163.2,1682,464 +9793,163.21666666666667,1714,462 +9794,163.23333333333332,1745,460 +9795,163.25,1774,458 +9796,163.26666666666665,1802,456 +9797,163.28333333333333,1829,453 +9798,163.3,1854,451 +9799,163.31666666666666,1878,449 +9800,163.33333333333334,1900,446 +9801,163.35,1920,444 +9802,163.36666666666667,1938,442 +9803,163.38333333333333,1954,440 +9804,163.4,1967,438 +9805,163.41666666666666,1979,437 +9806,163.43333333333334,1988,435 +9807,163.45,1995,434 +9808,163.46666666666667,2000,434 +9809,163.48333333333332,2000,434 +9810,163.5,2000,434 +9811,163.51666666666665,2000,434 +9812,163.53333333333333,1995,434 +9813,163.55,1988,435 +9814,163.56666666666666,1979,436 +9815,163.58333333333334,1967,438 +9816,163.6,1954,439 +9817,163.61666666666667,1938,442 +9818,163.63333333333333,1920,444 +9819,163.65,1900,446 +9820,163.66666666666666,1878,448 +9821,163.68333333333334,1855,450 +9822,163.7,1830,452 +9823,163.71666666666667,1803,455 +9824,163.73333333333332,1775,457 +9825,163.75,1746,459 +9826,163.76666666666665,1716,461 +9827,163.78333333333333,1685,463 +9828,163.8,1653,465 +9829,163.81666666666666,1620,466 +9830,163.83333333333334,1587,468 +9831,163.85,1553,468 +9832,163.86666666666667,1519,469 +9833,163.88333333333333,1485,469 +9834,163.9,1451,469 +9835,163.91666666666666,1417,469 +9836,163.93333333333334,1384,469 +9837,163.95,1351,468 +9838,163.96666666666667,1319,468 +9839,163.98333333333332,1287,466 +9840,164.0,1257,465 +9841,164.01666666666665,1228,463 +9842,164.03333333333333,1199,461 +9843,164.05,1172,459 +9844,164.06666666666666,1146,457 +9845,164.08333333333334,1122,455 +9846,164.1,1099,453 +9847,164.11666666666667,1078,451 +9848,164.13333333333333,1059,449 +9849,164.15,1041,447 +9850,164.16666666666666,1025,445 +9851,164.18333333333334,1011,444 +9852,164.2,1000,442 +9853,164.21666666666667,990,441 +9854,164.23333333333332,982,440 +9855,164.25,976,440 +9856,164.26666666666665,973,439 +9857,164.28333333333333,973,439 +9858,164.3,973,439 +9859,164.31666666666666,975,440 +9860,164.33333333333334,981,440 +9861,164.35,988,441 +9862,164.36666666666667,997,443 +9863,164.38333333333333,1009,444 +9864,164.4,1022,446 +9865,164.41666666666666,1037,447 +9866,164.43333333333334,1055,449 +9867,164.45,1074,451 +9868,164.46666666666667,1095,453 +9869,164.48333333333332,1117,455 +9870,164.5,1142,457 +9871,164.51666666666665,1167,459 +9872,164.53333333333333,1194,462 +9873,164.55,1223,464 +9874,164.56666666666666,1253,465 +9875,164.58333333333334,1283,467 +9876,164.6,1315,468 +9877,164.61666666666667,1347,469 +9878,164.63333333333333,1380,469 +9879,164.65,1414,470 +9880,164.66666666666666,1448,470 +9881,164.68333333333334,1482,470 +9882,164.7,1516,470 +9883,164.71666666666667,1550,469 +9884,164.73333333333332,1584,468 +9885,164.75,1617,467 +9886,164.76666666666665,1650,466 +9887,164.78333333333333,1683,464 +9888,164.8,1714,462 +9889,164.81666666666666,1745,460 +9890,164.83333333333334,1774,458 +9891,164.85,1802,456 +9892,164.86666666666667,1828,453 +9893,164.88333333333333,1853,451 +9894,164.9,1877,448 +9895,164.91666666666666,1899,446 +9896,164.93333333333334,1918,444 +9897,164.95,1936,442 +9898,164.96666666666667,1952,440 +9899,164.98333333333332,1965,438 +9900,165.0,1977,437 +9901,165.01666666666665,1986,435 +9902,165.03333333333333,1993,434 +9903,165.05,1998,434 +9904,165.06666666666666,1998,434 +9905,165.08333333333334,1998,434 +9906,165.1,1997,434 +9907,165.11666666666667,1992,434 +9908,165.13333333333333,1985,435 +9909,165.15,1976,436 +9910,165.16666666666666,1964,438 +9911,165.18333333333334,1950,440 +9912,165.2,1934,442 +9913,165.21666666666667,1917,444 +9914,165.23333333333332,1897,446 +9915,165.25,1875,448 +9916,165.26666666666665,1852,450 +9917,165.28333333333333,1827,453 +9918,165.3,1800,455 +9919,165.31666666666666,1772,457 +9920,165.33333333333334,1743,459 +9921,165.35,1713,462 +9922,165.36666666666667,1682,463 +9923,165.38333333333333,1650,465 +9924,165.4,1617,466 +9925,165.41666666666666,1584,467 +9926,165.43333333333334,1550,468 +9927,165.45,1517,469 +9928,165.46666666666667,1483,469 +9929,165.48333333333332,1449,469 +9930,165.5,1416,469 +9931,165.51666666666665,1382,469 +9932,165.53333333333333,1349,468 +9933,165.55,1317,468 +9934,165.56666666666666,1286,466 +9935,165.58333333333334,1256,464 +9936,165.6,1227,463 +9937,165.61666666666667,1198,461 +9938,165.63333333333333,1172,459 +9939,165.65,1146,457 +9940,165.66666666666666,1122,455 +9941,165.68333333333334,1099,453 +9942,165.7,1078,451 +9943,165.71666666666667,1059,449 +9944,165.73333333333332,1042,447 +9945,165.75,1026,445 +9946,165.76666666666665,1012,444 +9947,165.78333333333333,1000,442 +9948,165.8,991,441 +9949,165.81666666666666,983,440 +9950,165.83333333333334,978,440 +9951,165.85,974,440 +9952,165.86666666666667,974,440 +9953,165.88333333333333,974,440 +9954,165.9,977,440 +9955,165.91666666666666,982,441 +9956,165.93333333333334,990,442 +9957,165.95,999,443 +9958,165.96666666666667,1011,444 +9959,165.98333333333332,1024,446 +9960,166.0,1039,448 +9961,166.01666666666665,1057,449 +9962,166.03333333333333,1076,452 +9963,166.05,1097,454 +9964,166.06666666666666,1120,456 +9965,166.08333333333334,1144,458 +9966,166.1,1170,460 +9967,166.11666666666667,1196,462 +9968,166.13333333333333,1225,464 +9969,166.15,1254,466 +9970,166.16666666666666,1285,467 +9971,166.18333333333334,1316,468 +9972,166.2,1348,469 +9973,166.21666666666667,1382,469 +9974,166.23333333333332,1415,470 +9975,166.25,1449,470 +9976,166.26666666666665,1483,470 +9977,166.28333333333333,1517,470 +9978,166.3,1551,469 +9979,166.31666666666666,1585,468 +9980,166.33333333333334,1618,467 +9981,166.35,1651,466 +9982,166.36666666666667,1684,464 +9983,166.38333333333333,1715,462 +9984,166.4,1745,460 +9985,166.41666666666666,1774,458 +9986,166.43333333333334,1802,455 +9987,166.45,1828,453 +9988,166.46666666666667,1853,451 +9989,166.48333333333332,1877,448 +9990,166.5,1898,446 +9991,166.51666666666665,1918,444 +9992,166.53333333333333,1935,442 +9993,166.55,1951,440 +9994,166.56666666666666,1964,438 +9995,166.58333333333334,1976,437 +9996,166.6,1985,436 +9997,166.61666666666667,1991,435 +9998,166.63333333333333,1996,434 +9999,166.65,1996,434 +10000,166.66666666666666,1996,434 +10001,166.68333333333334,1995,434 +10002,166.7,1990,435 +10003,166.71666666666667,1983,435 +10004,166.73333333333332,1973,437 +10005,166.75,1961,438 +10006,166.76666666666665,1948,440 +10007,166.78333333333333,1932,442 +10008,166.8,1914,444 +10009,166.81666666666666,1894,446 +10010,166.83333333333334,1872,448 +10011,166.85,1849,450 +10012,166.86666666666667,1824,453 +10013,166.88333333333333,1798,455 +10014,166.9,1770,457 +10015,166.91666666666666,1741,460 +10016,166.93333333333334,1711,462 +10017,166.95,1679,463 +10018,166.96666666666667,1648,465 +10019,166.98333333333332,1615,467 +10020,167.0,1582,468 +10021,167.01666666666665,1548,468 +10022,167.03333333333333,1515,469 +10023,167.05,1481,469 +10024,167.06666666666666,1448,469 +10025,167.08333333333334,1414,469 +10026,167.1,1381,469 +10027,167.11666666666667,1348,468 +10028,167.13333333333333,1317,467 +10029,167.15,1285,466 +10030,167.16666666666666,1255,464 +10031,167.18333333333334,1226,463 +10032,167.2,1198,461 +10033,167.21666666666667,1171,459 +10034,167.23333333333332,1145,457 +10035,167.25,1121,455 +10036,167.26666666666665,1099,453 +10037,167.28333333333333,1078,451 +10038,167.3,1059,449 +10039,167.31666666666666,1041,447 +10040,167.33333333333334,1026,445 +10041,167.35,1013,444 +10042,167.36666666666667,1001,443 +10043,167.38333333333333,992,441 +10044,167.4,984,441 +10045,167.41666666666666,979,440 +10046,167.43333333333334,975,440 +10047,167.45,975,440 +10048,167.46666666666667,975,440 +10049,167.48333333333332,979,440 +10050,167.5,984,441 +10051,167.51666666666665,991,442 +10052,167.53333333333333,1001,443 +10053,167.55,1013,444 +10054,167.56666666666666,1026,446 +10055,167.58333333333334,1042,448 +10056,167.6,1059,450 +10057,167.61666666666667,1078,452 +10058,167.63333333333333,1099,454 +10059,167.65,1122,456 +10060,167.66666666666666,1146,458 +10061,167.68333333333334,1172,460 +10062,167.7,1199,462 +10063,167.71666666666667,1228,464 +10064,167.73333333333332,1257,466 +10065,167.75,1287,467 +10066,167.76666666666665,1319,469 +10067,167.78333333333333,1351,469 +10068,167.8,1385,470 +10069,167.81666666666666,1418,470 +10070,167.83333333333334,1452,470 +10071,167.85,1486,470 +10072,167.86666666666667,1520,470 +10073,167.88333333333333,1554,469 +10074,167.9,1588,469 +10075,167.91666666666666,1621,468 +10076,167.93333333333334,1653,466 +10077,167.95,1686,464 +10078,167.96666666666667,1717,462 +10079,167.98333333333332,1746,460 +10080,168.0,1775,458 +10081,168.01666666666665,1803,455 +10082,168.03333333333333,1829,453 +10083,168.05,1854,450 +10084,168.06666666666666,1877,448 +10085,168.08333333333334,1898,446 +10086,168.1,1918,444 +10087,168.11666666666667,1935,442 +10088,168.13333333333333,1950,440 +10089,168.15,1963,438 +10090,168.16666666666666,1975,437 +10091,168.18333333333334,1983,435 +10092,168.2,1990,434 +10093,168.21666666666667,1994,434 +10094,168.23333333333332,1994,434 +10095,168.25,1994,434 +10096,168.26666666666665,1993,434 +10097,168.28333333333333,1988,434 +10098,168.3,1981,435 +10099,168.31666666666666,1971,437 +10100,168.33333333333334,1959,438 +10101,168.35,1945,440 +10102,168.36666666666667,1929,441 +10103,168.38333333333333,1911,443 +10104,168.4,1891,446 +10105,168.41666666666666,1869,448 +10106,168.43333333333334,1846,450 +10107,168.45,1821,452 +10108,168.46666666666667,1795,455 +10109,168.48333333333332,1767,457 +10110,168.5,1738,459 +10111,168.51666666666665,1708,461 +10112,168.53333333333333,1677,463 +10113,168.55,1645,465 +10114,168.56666666666666,1613,466 +10115,168.58333333333334,1580,467 +10116,168.6,1546,468 +10117,168.61666666666667,1512,468 +10118,168.63333333333333,1479,469 +10119,168.65,1445,469 +10120,168.66666666666666,1412,469 +10121,168.68333333333334,1379,468 +10122,168.7,1346,467 +10123,168.71666666666667,1315,466 +10124,168.73333333333332,1284,465 +10125,168.75,1254,463 +10126,168.76666666666665,1225,462 +10127,168.78333333333333,1197,460 +10128,168.8,1171,458 +10129,168.81666666666666,1145,456 +10130,168.83333333333334,1121,454 +10131,168.85,1099,452 +10132,168.86666666666667,1079,450 +10133,168.88333333333333,1060,449 +10134,168.9,1042,447 +10135,168.91666666666666,1027,445 +10136,168.93333333333334,1014,444 +10137,168.95,1003,442 +10138,168.96666666666667,993,441 +10139,168.98333333333332,986,441 +10140,169.0,981,440 +10141,169.01666666666665,977,440 +10142,169.03333333333333,977,440 +10143,169.05,977,440 +10144,169.06666666666666,981,440 +10145,169.08333333333334,986,441 +10146,169.1,993,442 +10147,169.11666666666667,1003,443 +10148,169.13333333333333,1014,445 +10149,169.15,1028,446 +10150,169.16666666666666,1044,448 +10151,169.18333333333334,1061,450 +10152,169.2,1080,452 +10153,169.21666666666667,1101,454 +10154,169.23333333333332,1124,456 +10155,169.25,1148,458 +10156,169.26666666666665,1174,460 +10157,169.28333333333333,1201,462 +10158,169.3,1230,464 +10159,169.31666666666666,1259,466 +10160,169.33333333333334,1289,467 +10161,169.35,1321,468 +10162,169.36666666666667,1352,469 +10163,169.38333333333333,1385,470 +10164,169.4,1418,470 +10165,169.41666666666666,1452,470 +10166,169.43333333333334,1486,470 +10167,169.45,1520,470 +10168,169.46666666666667,1553,469 +10169,169.48333333333332,1587,469 +10170,169.5,1620,467 +10171,169.51666666666665,1653,466 +10172,169.53333333333333,1685,464 +10173,169.55,1716,462 +10174,169.56666666666666,1746,460 +10175,169.58333333333334,1775,458 +10176,169.6,1803,456 +10177,169.61666666666667,1829,453 +10178,169.63333333333333,1854,451 +10179,169.65,1877,448 +10180,169.66666666666666,1898,446 +10181,169.68333333333334,1917,444 +10182,169.7,1934,442 +10183,169.71666666666667,1950,440 +10184,169.73333333333332,1963,438 +10185,169.75,1974,437 +10186,169.76666666666665,1982,436 +10187,169.78333333333333,1989,435 +10188,169.8,1993,434 +10189,169.81666666666666,1993,434 +10190,169.83333333333334,1993,434 +10191,169.85,1991,435 +10192,169.86666666666667,1986,435 +10193,169.88333333333333,1979,436 +10194,169.9,1969,438 +10195,169.91666666666666,1957,439 +10196,169.93333333333334,1944,440 +10197,169.95,1927,442 +10198,169.96666666666667,1909,444 +10199,169.98333333333332,1890,447 +10200,170.0,1868,449 +10201,170.01666666666665,1844,451 +10202,170.03333333333333,1819,453 +10203,170.05,1793,456 +10204,170.06666666666666,1765,458 +10205,170.08333333333334,1736,460 +10206,170.1,1706,462 +10207,170.11666666666667,1675,464 +10208,170.13333333333333,1644,465 +10209,170.15,1611,467 +10210,170.16666666666666,1578,468 +10211,170.18333333333334,1545,469 +10212,170.2,1512,469 +10213,170.21666666666667,1478,469 +10214,170.23333333333332,1445,469 +10215,170.25,1412,469 +10216,170.26666666666665,1379,468 +10217,170.28333333333333,1346,468 +10218,170.3,1315,467 +10219,170.31666666666666,1284,466 +10220,170.33333333333334,1254,465 +10221,170.35,1225,463 +10222,170.36666666666667,1197,461 +10223,170.38333333333333,1171,459 +10224,170.4,1146,457 +10225,170.41666666666666,1122,455 +10226,170.43333333333334,1099,453 +10227,170.45,1079,451 +10228,170.46666666666667,1060,449 +10229,170.48333333333332,1043,448 +10230,170.5,1028,446 +10231,170.51666666666665,1014,444 +10232,170.53333333333333,1003,443 +10233,170.55,994,442 +10234,170.56666666666666,987,441 +10235,170.58333333333334,982,441 +10236,170.6,979,441 +10237,170.61666666666667,979,441 +10238,170.63333333333333,979,441 +10239,170.65,982,441 +10240,170.66666666666666,988,442 +10241,170.68333333333334,996,443 +10242,170.7,1006,444 +10243,170.71666666666667,1017,446 +10244,170.73333333333332,1031,447 +10245,170.75,1047,449 +10246,170.76666666666665,1064,451 +10247,170.78333333333333,1084,453 +10248,170.8,1105,455 +10249,170.81666666666666,1128,457 +10250,170.83333333333334,1152,459 +10251,170.85,1177,461 +10252,170.86666666666667,1204,463 +10253,170.88333333333333,1233,464 +10254,170.9,1262,466 +10255,170.91666666666666,1292,467 +10256,170.93333333333334,1324,469 +10257,170.95,1356,470 +10258,170.96666666666667,1389,470 +10259,170.98333333333332,1422,470 +10260,171.0,1456,470 +10261,171.01666666666665,1489,470 +10262,171.03333333333333,1523,470 +10263,171.05,1557,469 +10264,171.06666666666666,1590,469 +10265,171.08333333333334,1623,467 +10266,171.1,1656,466 +10267,171.11666666666667,1687,464 +10268,171.13333333333333,1718,462 +10269,171.15,1747,460 +10270,171.16666666666666,1776,458 +10271,171.18333333333334,1803,456 +10272,171.2,1829,454 +10273,171.21666666666667,1854,451 +10274,171.23333333333332,1876,449 +10275,171.25,1897,447 +10276,171.26666666666665,1916,445 +10277,171.28333333333333,1933,442 +10278,171.3,1948,441 +10279,171.31666666666666,1961,439 +10280,171.33333333333334,1972,438 +10281,171.35,1981,437 +10282,171.36666666666667,1987,436 +10283,171.38333333333333,1991,435 +10284,171.4,1991,435 +10285,171.41666666666666,1991,435 +10286,171.43333333333334,1989,435 +10287,171.45,1983,436 +10288,171.46666666666667,1976,437 +10289,171.48333333333332,1966,438 +10290,171.5,1954,440 +10291,171.51666666666665,1940,441 +10292,171.53333333333333,1924,443 +10293,171.55,1906,445 +10294,171.56666666666666,1886,447 +10295,171.58333333333334,1864,449 +10296,171.6,1841,452 +10297,171.61666666666667,1816,454 +10298,171.63333333333333,1790,456 +10299,171.65,1762,458 +10300,171.66666666666666,1733,460 +10301,171.68333333333334,1704,462 +10302,171.7,1672,464 +10303,171.71666666666667,1641,466 +10304,171.73333333333332,1609,467 +10305,171.75,1576,468 +10306,171.76666666666665,1543,469 +10307,171.78333333333333,1509,469 +10308,171.8,1476,469 +10309,171.81666666666666,1443,469 +10310,171.83333333333334,1410,469 +10311,171.85,1377,469 +10312,171.86666666666667,1344,469 +10313,171.88333333333333,1313,468 +10314,171.9,1282,466 +10315,171.91666666666666,1253,465 +10316,171.93333333333334,1224,463 +10317,171.95,1196,461 +10318,171.96666666666667,1170,459 +10319,171.98333333333332,1145,457 +10320,172.0,1121,455 +10321,172.01666666666665,1099,453 +10322,172.03333333333333,1079,451 +10323,172.05,1060,449 +10324,172.06666666666666,1043,447 +10325,172.08333333333334,1028,446 +10326,172.1,1015,445 +10327,172.11666666666667,1004,443 +10328,172.13333333333333,995,442 +10329,172.15,988,442 +10330,172.16666666666666,983,441 +10331,172.18333333333334,980,441 +10332,172.2,980,441 +10333,172.21666666666667,980,441 +10334,172.23333333333332,984,441 +10335,172.25,990,442 +10336,172.26666666666665,997,443 +10337,172.28333333333333,1007,444 +10338,172.3,1019,445 +10339,172.31666666666666,1032,447 +10340,172.33333333333334,1048,449 +10341,172.35,1066,451 +10342,172.36666666666667,1085,453 +10343,172.38333333333333,1106,455 +10344,172.4,1129,457 +10345,172.41666666666666,1153,459 +10346,172.43333333333334,1179,461 +10347,172.45,1206,463 +10348,172.46666666666667,1235,465 +10349,172.48333333333332,1265,467 +10350,172.5,1295,468 +10351,172.51666666666665,1326,469 +10352,172.53333333333333,1358,470 +10353,172.55,1391,470 +10354,172.56666666666666,1423,470 +10355,172.58333333333334,1457,470 +10356,172.6,1490,470 +10357,172.61666666666667,1524,470 +10358,172.63333333333333,1558,469 +10359,172.65,1591,468 +10360,172.66666666666666,1624,467 +10361,172.68333333333334,1656,465 +10362,172.7,1688,463 +10363,172.71666666666667,1718,461 +10364,172.73333333333332,1748,459 +10365,172.75,1776,457 +10366,172.76666666666665,1803,455 +10367,172.78333333333333,1829,452 +10368,172.8,1853,450 +10369,172.81666666666666,1875,448 +10370,172.83333333333334,1896,446 +10371,172.85,1915,444 +10372,172.86666666666667,1932,442 +10373,172.88333333333333,1947,440 +10374,172.9,1960,438 +10375,172.91666666666666,1970,437 +10376,172.93333333333334,1979,436 +10377,172.95,1985,435 +10378,172.96666666666667,1989,435 +10379,172.98333333333332,1989,435 +10380,173.0,1989,435 +10381,173.01666666666665,1987,435 +10382,173.03333333333333,1982,436 +10383,173.05,1974,437 +10384,173.06666666666666,1964,438 +10385,173.08333333333334,1952,439 +10386,173.1,1938,441 +10387,173.11666666666667,1922,443 +10388,173.13333333333333,1904,445 +10389,173.15,1884,447 +10390,173.16666666666666,1862,450 +10391,173.18333333333334,1839,452 +10392,173.2,1814,454 +10393,173.21666666666667,1787,456 +10394,173.23333333333332,1760,458 +10395,173.25,1731,461 +10396,173.26666666666665,1701,463 +10397,173.28333333333333,1670,464 +10398,173.3,1638,466 +10399,173.31666666666666,1606,467 +10400,173.33333333333334,1573,468 +10401,173.35,1540,469 +10402,173.36666666666667,1507,469 +10403,173.38333333333333,1474,469 +10404,173.4,1440,469 +10405,173.41666666666666,1407,469 +10406,173.43333333333334,1374,469 +10407,173.45,1342,469 +10408,173.46666666666667,1311,467 +10409,173.48333333333332,1280,467 +10410,173.5,1251,465 +10411,173.51666666666665,1222,463 +10412,173.53333333333333,1195,461 +10413,173.55,1168,460 +10414,173.56666666666666,1144,457 +10415,173.58333333333334,1120,455 +10416,173.6,1099,454 +10417,173.61666666666667,1078,452 +10418,173.63333333333333,1060,450 +10419,173.65,1043,448 +10420,173.66666666666666,1028,446 +10421,173.68333333333334,1016,445 +10422,173.7,1005,444 +10423,173.71666666666667,996,443 +10424,173.73333333333332,989,442 +10425,173.75,984,441 +10426,173.76666666666665,982,441 +10427,173.78333333333333,982,441 +10428,173.8,982,441 +10429,173.81666666666666,986,442 +10430,173.83333333333334,992,442 +10431,173.85,999,444 +10432,173.86666666666667,1009,445 +10433,173.88333333333333,1021,446 +10434,173.9,1035,448 +10435,173.91666666666666,1051,450 +10436,173.93333333333334,1068,451 +10437,173.95,1088,453 +10438,173.96666666666667,1109,455 +10439,173.98333333333332,1132,457 +10440,174.0,1156,459 +10441,174.01666666666665,1182,461 +10442,174.03333333333333,1209,463 +10443,174.05,1237,465 +10444,174.06666666666666,1267,467 +10445,174.08333333333334,1297,468 +10446,174.1,1328,469 +10447,174.11666666666667,1360,469 +10448,174.13333333333333,1393,470 +10449,174.15,1426,470 +10450,174.16666666666666,1459,470 +10451,174.18333333333334,1493,470 +10452,174.2,1526,470 +10453,174.21666666666667,1560,469 +10454,174.23333333333332,1593,468 +10455,174.25,1626,467 +10456,174.26666666666665,1658,466 +10457,174.28333333333333,1689,464 +10458,174.3,1720,462 +10459,174.31666666666666,1749,460 +10460,174.33333333333334,1778,458 +10461,174.35,1805,456 +10462,174.36666666666667,1830,453 +10463,174.38333333333333,1854,451 +10464,174.4,1876,448 +10465,174.41666666666666,1897,446 +10466,174.43333333333334,1916,444 +10467,174.45,1932,442 +10468,174.46666666666667,1947,440 +10469,174.48333333333332,1959,439 +10470,174.5,1970,437 +10471,174.51666666666665,1978,437 +10472,174.53333333333333,1984,436 +10473,174.55,1988,435 +10474,174.56666666666666,1988,435 +10475,174.58333333333334,1988,435 +10476,174.6,1985,436 +10477,174.61666666666667,1980,436 +10478,174.63333333333333,1972,437 +10479,174.65,1962,439 +10480,174.66666666666666,1950,440 +10481,174.68333333333334,1936,442 +10482,174.7,1920,444 +10483,174.71666666666667,1901,446 +10484,174.73333333333332,1881,448 +10485,174.75,1860,450 +10486,174.76666666666665,1836,452 +10487,174.78333333333333,1812,454 +10488,174.8,1785,456 +10489,174.81666666666666,1758,459 +10490,174.83333333333334,1729,461 +10491,174.85,1699,462 +10492,174.86666666666667,1668,464 +10493,174.88333333333333,1636,466 +10494,174.9,1605,467 +10495,174.91666666666666,1572,468 +10496,174.93333333333334,1539,469 +10497,174.95,1505,469 +10498,174.96666666666667,1472,469 +10499,174.98333333333332,1439,469 +10500,175.0,1407,469 +10501,175.01666666666665,1374,468 +10502,175.03333333333333,1342,468 +10503,175.05,1311,467 +10504,175.06666666666666,1280,466 +10505,175.08333333333334,1251,464 +10506,175.1,1223,463 +10507,175.11666666666667,1195,461 +10508,175.13333333333333,1169,459 +10509,175.15,1144,457 +10510,175.16666666666666,1121,455 +10511,175.18333333333334,1099,453 +10512,175.2,1079,451 +10513,175.21666666666667,1061,450 +10514,175.23333333333332,1044,448 +10515,175.25,1029,446 +10516,175.26666666666665,1016,445 +10517,175.28333333333333,1005,444 +10518,175.3,996,442 +10519,175.31666666666666,990,442 +10520,175.33333333333334,985,441 +10521,175.35,983,441 +10522,175.36666666666667,983,441 +10523,175.38333333333333,983,441 +10524,175.4,987,442 +10525,175.41666666666666,993,443 +10526,175.43333333333334,1001,444 +10527,175.45,1011,445 +10528,175.46666666666667,1023,447 +10529,175.48333333333332,1036,448 +10530,175.5,1052,450 +10531,175.51666666666665,1070,451 +10532,175.53333333333333,1089,453 +10533,175.55,1110,455 +10534,175.56666666666666,1133,457 +10535,175.58333333333334,1157,459 +10536,175.6,1183,462 +10537,175.61666666666667,1211,463 +10538,175.63333333333333,1239,465 +10539,175.65,1269,467 +10540,175.66666666666666,1299,468 +10541,175.68333333333334,1330,469 +10542,175.7,1362,470 +10543,175.71666666666667,1395,470 +10544,175.73333333333332,1428,470 +10545,175.75,1461,470 +10546,175.76666666666665,1494,470 +10547,175.78333333333333,1527,470 +10548,175.8,1561,469 +10549,175.81666666666666,1594,468 +10550,175.83333333333334,1626,467 +10551,175.85,1658,465 +10552,175.86666666666667,1689,464 +10553,175.88333333333333,1719,461 +10554,175.9,1749,459 +10555,175.91666666666666,1777,457 +10556,175.93333333333334,1803,455 +10557,175.95,1828,453 +10558,175.96666666666667,1852,451 +10559,175.98333333333332,1874,449 +10560,176.0,1895,446 +10561,176.01666666666665,1914,444 +10562,176.03333333333333,1930,442 +10563,176.05,1945,441 +10564,176.06666666666666,1957,439 +10565,176.08333333333334,1968,438 +10566,176.1,1976,437 +10567,176.11666666666667,1982,436 +10568,176.13333333333333,1986,436 +10569,176.15,1986,436 +10570,176.16666666666666,1986,436 +10571,176.18333333333334,1983,436 +10572,176.2,1977,436 +10573,176.21666666666667,1969,437 +10574,176.23333333333332,1960,439 +10575,176.25,1947,440 +10576,176.26666666666665,1933,442 +10577,176.28333333333333,1917,444 +10578,176.3,1899,446 +10579,176.31666666666666,1878,448 +10580,176.33333333333334,1857,450 +10581,176.35,1833,452 +10582,176.36666666666667,1809,455 +10583,176.38333333333333,1782,457 +10584,176.4,1754,459 +10585,176.41666666666666,1726,461 +10586,176.43333333333334,1696,463 +10587,176.45,1665,465 +10588,176.46666666666667,1633,467 +10589,176.48333333333332,1601,468 +10590,176.5,1569,469 +10591,176.51666666666665,1536,469 +10592,176.53333333333333,1503,470 +10593,176.55,1471,470 +10594,176.56666666666666,1437,470 +10595,176.58333333333334,1405,470 +10596,176.6,1373,469 +10597,176.61666666666667,1340,468 +10598,176.63333333333333,1310,467 +10599,176.65,1279,466 +10600,176.66666666666666,1251,464 +10601,176.68333333333334,1222,463 +10602,176.7,1195,461 +10603,176.71666666666667,1169,459 +10604,176.73333333333332,1144,457 +10605,176.75,1121,455 +10606,176.76666666666665,1099,453 +10607,176.78333333333333,1079,452 +10608,176.8,1061,450 +10609,176.81666666666666,1044,448 +10610,176.83333333333334,1030,447 +10611,176.85,1017,445 +10612,176.86666666666667,1006,444 +10613,176.88333333333333,998,443 +10614,176.9,991,442 +10615,176.91666666666666,986,442 +10616,176.93333333333334,985,442 +10617,176.95,985,442 +10618,176.96666666666667,985,442 +10619,176.98333333333332,989,442 +10620,177.0,995,443 +10621,177.01666666666665,1002,444 +10622,177.03333333333333,1013,445 +10623,177.05,1024,447 +10624,177.06666666666666,1038,448 +10625,177.08333333333334,1054,450 +10626,177.1,1072,452 +10627,177.11666666666667,1091,454 +10628,177.13333333333333,1112,456 +10629,177.15,1135,458 +10630,177.16666666666666,1160,460 +10631,177.18333333333334,1186,462 +10632,177.2,1213,464 +10633,177.21666666666667,1241,465 +10634,177.23333333333332,1271,467 +10635,177.25,1301,468 +10636,177.26666666666665,1332,470 +10637,177.28333333333333,1364,470 +10638,177.3,1397,470 +10639,177.31666666666666,1428,470 +10640,177.33333333333334,1462,470 +10641,177.35,1495,470 +10642,177.36666666666667,1529,470 +10643,177.38333333333333,1562,469 +10644,177.4,1595,468 +10645,177.41666666666666,1628,467 +10646,177.43333333333334,1659,466 +10647,177.45,1690,464 +10648,177.46666666666667,1720,462 +10649,177.48333333333332,1750,460 +10650,177.5,1777,458 +10651,177.51666666666665,1804,456 +10652,177.53333333333333,1829,453 +10653,177.55,1853,451 +10654,177.56666666666666,1875,449 +10655,177.58333333333334,1895,447 +10656,177.6,1913,445 +10657,177.61666666666667,1930,443 +10658,177.63333333333333,1944,441 +10659,177.65,1957,439 +10660,177.66666666666666,1967,438 +10661,177.68333333333334,1975,437 +10662,177.7,1981,436 +10663,177.71666666666667,1984,436 +10664,177.73333333333332,1984,436 +10665,177.75,1984,436 +10666,177.76666666666665,1981,436 +10667,177.78333333333333,1975,437 +10668,177.8,1967,438 +10669,177.81666666666666,1957,439 +10670,177.83333333333334,1945,441 +10671,177.85,1931,442 +10672,177.86666666666667,1915,444 +10673,177.88333333333333,1896,446 +10674,177.9,1876,448 +10675,177.91666666666666,1855,450 +10676,177.93333333333334,1832,452 +10677,177.95,1806,455 +10678,177.96666666666667,1780,457 +10679,177.98333333333332,1753,459 +10680,178.0,1724,461 +10681,178.01666666666665,1694,463 +10682,178.03333333333333,1664,465 +10683,178.05,1632,466 +10684,178.06666666666666,1600,468 +10685,178.08333333333334,1568,468 +10686,178.1,1535,469 +10687,178.11666666666667,1502,469 +10688,178.13333333333333,1469,469 +10689,178.15,1436,469 +10690,178.16666666666666,1404,469 +10691,178.18333333333334,1371,469 +10692,178.2,1339,468 +10693,178.21666666666667,1308,467 +10694,178.23333333333332,1278,466 +10695,178.25,1249,464 +10696,178.26666666666665,1221,463 +10697,178.28333333333333,1194,461 +10698,178.3,1168,459 +10699,178.31666666666666,1144,457 +10700,178.33333333333334,1121,455 +10701,178.35,1099,454 +10702,178.36666666666667,1079,452 +10703,178.38333333333333,1061,450 +10704,178.4,1045,448 +10705,178.41666666666666,1031,447 +10706,178.43333333333334,1019,446 +10707,178.45,1008,444 +10708,178.46666666666667,999,443 +10709,178.48333333333332,992,443 +10710,178.5,988,442 +10711,178.51666666666665,986,442 +10712,178.53333333333333,986,442 +10713,178.55,986,442 +10714,178.56666666666666,990,442 +10715,178.58333333333334,996,443 +10716,178.6,1004,444 +10717,178.61666666666667,1014,445 +10718,178.63333333333333,1026,446 +10719,178.65,1040,448 +10720,178.66666666666666,1056,450 +10721,178.68333333333334,1074,451 +10722,178.7,1093,453 +10723,178.71666666666667,1115,455 +10724,178.73333333333332,1137,457 +10725,178.75,1162,459 +10726,178.76666666666665,1187,461 +10727,178.78333333333333,1215,463 +10728,178.8,1243,465 +10729,178.81666666666666,1272,467 +10730,178.83333333333334,1302,468 +10731,178.85,1333,469 +10732,178.86666666666667,1365,470 +10733,178.88333333333333,1398,470 +10734,178.9,1430,470 +10735,178.91666666666666,1463,470 +10736,178.93333333333334,1497,470 +10737,178.95,1530,470 +10738,178.96666666666667,1563,469 +10739,178.98333333333332,1595,468 +10740,179.0,1627,467 +10741,179.01666666666665,1659,466 +10742,179.03333333333333,1690,464 +10743,179.05,1720,462 +10744,179.06666666666666,1749,461 +10745,179.08333333333334,1776,459 +10746,179.1,1803,457 +10747,179.11666666666667,1828,454 +10748,179.13333333333333,1852,452 +10749,179.15,1874,449 +10750,179.16666666666666,1894,447 +10751,179.18333333333334,1912,445 +10752,179.2,1929,443 +10753,179.21666666666667,1943,441 +10754,179.23333333333332,1956,440 +10755,179.25,1966,438 +10756,179.26666666666665,1974,437 +10757,179.28333333333333,1979,437 +10758,179.3,1983,436 +10759,179.31666666666666,1983,436 +10760,179.33333333333334,1983,436 +10761,179.35,1979,436 +10762,179.36666666666667,1973,437 +10763,179.38333333333333,1965,438 +10764,179.4,1955,439 +10765,179.41666666666666,1943,441 +10766,179.43333333333334,1929,442 +10767,179.45,1912,444 +10768,179.46666666666667,1894,446 +10769,179.48333333333332,1874,448 +10770,179.5,1852,450 +10771,179.51666666666665,1829,453 +10772,179.53333333333333,1804,455 +10773,179.55,1778,457 +10774,179.56666666666666,1750,459 +10775,179.58333333333334,1722,462 +10776,179.6,1692,463 +10777,179.61666666666667,1662,465 +10778,179.63333333333333,1630,466 +10779,179.65,1598,468 +10780,179.66666666666666,1566,468 +10781,179.68333333333334,1533,469 +10782,179.7,1500,469 +10783,179.71666666666667,1468,469 +10784,179.73333333333332,1435,469 +10785,179.75,1403,469 +10786,179.76666666666665,1370,469 +10787,179.78333333333333,1339,469 +10788,179.8,1309,467 +10789,179.81666666666666,1278,466 +10790,179.83333333333334,1250,464 +10791,179.85,1221,463 +10792,179.86666666666667,1194,461 +10793,179.88333333333333,1168,459 +10794,179.9,1144,457 +10795,179.91666666666666,1121,456 +10796,179.93333333333334,1100,453 +10797,179.95,1080,452 +10798,179.96666666666667,1062,450 +10799,179.98333333333332,1046,449 +10800,180.0,1032,447 +10801,180.01666666666665,1019,446 +10802,180.03333333333333,1008,445 +10803,180.05,1000,444 +10804,180.06666666666666,993,443 +10805,180.08333333333334,989,442 +10806,180.1,988,442 +10807,180.11666666666667,988,442 +10808,180.13333333333333,988,442 +10809,180.15,992,443 +10810,180.16666666666666,998,444 +10811,180.18333333333334,1006,445 +10812,180.2,1016,446 +10813,180.21666666666667,1029,448 +10814,180.23333333333332,1043,449 +10815,180.25,1059,451 +10816,180.26666666666665,1076,453 +10817,180.28333333333333,1096,455 +10818,180.3,1117,457 +10819,180.31666666666666,1139,459 +10820,180.33333333333334,1164,461 +10821,180.35,1189,463 +10822,180.36666666666667,1217,464 +10823,180.38333333333333,1245,466 +10824,180.4,1274,467 +10825,180.41666666666666,1304,469 +10826,180.43333333333334,1335,470 +10827,180.45,1367,470 +10828,180.46666666666667,1400,470 +10829,180.48333333333332,1432,470 +10830,180.5,1466,470 +10831,180.51666666666665,1499,470 +10832,180.53333333333333,1532,470 +10833,180.55,1564,469 +10834,180.56666666666666,1597,468 +10835,180.58333333333334,1630,467 +10836,180.6,1661,466 +10837,180.61666666666667,1692,464 +10838,180.63333333333333,1722,463 +10839,180.65,1751,461 +10840,180.66666666666666,1778,458 +10841,180.68333333333334,1805,456 +10842,180.7,1830,454 +10843,180.71666666666667,1853,452 +10844,180.73333333333332,1874,450 +10845,180.75,1894,447 +10846,180.76666666666665,1913,445 +10847,180.78333333333333,1929,444 +10848,180.8,1943,442 +10849,180.81666666666666,1955,440 +10850,180.83333333333334,1965,439 +10851,180.85,1973,438 +10852,180.86666666666667,1978,437 +10853,180.88333333333333,1981,437 +10854,180.9,1981,437 +10855,180.91666666666666,1981,437 +10856,180.93333333333334,1977,437 +10857,180.95,1971,437 +10858,180.96666666666667,1963,439 +10859,180.98333333333332,1953,440 +10860,181.0,1940,441 +10861,181.01666666666665,1926,442 +10862,181.03333333333333,1909,444 +10863,181.05,1891,446 +10864,181.06666666666666,1871,448 +10865,181.08333333333334,1849,451 +10866,181.1,1826,453 +10867,181.11666666666667,1801,455 +10868,181.13333333333333,1774,457 +10869,181.15,1747,459 +10870,181.16666666666666,1718,461 +10871,181.18333333333334,1689,463 +10872,181.2,1658,465 +10873,181.21666666666667,1627,466 +10874,181.23333333333332,1595,467 +10875,181.25,1563,468 +10876,181.26666666666665,1531,469 +10877,181.28333333333333,1498,469 +10878,181.3,1466,469 +10879,181.31666666666666,1433,469 +10880,181.33333333333334,1400,469 +10881,181.35,1368,469 +10882,181.36666666666667,1337,468 +10883,181.38333333333333,1306,467 +10884,181.4,1276,466 +10885,181.41666666666666,1248,464 +10886,181.43333333333334,1220,463 +10887,181.45,1192,461 +10888,181.46666666666667,1167,459 +10889,181.48333333333332,1143,457 +10890,181.5,1120,456 +10891,181.51666666666665,1099,454 +10892,181.53333333333333,1079,452 +10893,181.55,1061,450 +10894,181.56666666666666,1045,448 +10895,181.58333333333334,1031,447 +10896,181.6,1019,446 +10897,181.61666666666667,1008,445 +10898,181.63333333333333,1000,444 +10899,181.65,993,443 +10900,181.66666666666666,989,443 +10901,181.68333333333334,989,443 +10902,181.7,989,443 +10903,181.71666666666667,989,443 +10904,181.73333333333332,993,443 +10905,181.75,1000,444 +10906,181.76666666666665,1008,445 +10907,181.78333333333333,1018,446 +10908,181.8,1030,448 +10909,181.81666666666666,1045,449 +10910,181.83333333333334,1061,451 +10911,181.85,1078,453 +10912,181.86666666666667,1098,455 +10913,181.88333333333333,1120,457 +10914,181.9,1142,459 +10915,181.91666666666666,1167,461 +10916,181.93333333333334,1192,463 +10917,181.95,1220,464 +10918,181.96666666666667,1248,466 +10919,181.98333333333332,1277,467 +10920,182.0,1307,468 +10921,182.01666666666665,1338,470 +10922,182.03333333333333,1370,470 +10923,182.05,1402,470 +10924,182.06666666666666,1434,470 +10925,182.08333333333334,1468,470 +10926,182.1,1501,470 +10927,182.11666666666667,1534,470 +10928,182.13333333333333,1567,469 +10929,182.15,1599,468 +10930,182.16666666666666,1631,467 +10931,182.18333333333334,1663,466 +10932,182.2,1693,464 +10933,182.21666666666667,1723,462 +10934,182.23333333333332,1752,460 +10935,182.25,1779,458 +10936,182.26666666666665,1805,456 +10937,182.28333333333333,1830,454 +10938,182.3,1853,451 +10939,182.31666666666666,1875,449 +10940,182.33333333333334,1894,447 +10941,182.35,1912,445 +10942,182.36666666666667,1928,443 +10943,182.38333333333333,1942,442 +10944,182.4,1953,440 +10945,182.41666666666666,1963,439 +10946,182.43333333333334,1970,438 +10947,182.45,1975,437 +10948,182.46666666666667,1978,437 +10949,182.48333333333332,1978,437 +10950,182.5,1978,437 +10951,182.51666666666665,1974,437 +10952,182.53333333333333,1968,438 +10953,182.55,1960,439 +10954,182.56666666666666,1950,440 +10955,182.58333333333334,1937,442 +10956,182.6,1923,444 +10957,182.61666666666667,1906,446 +10958,182.63333333333333,1888,447 +10959,182.65,1868,450 +10960,182.66666666666666,1846,452 +10961,182.68333333333334,1823,454 +10962,182.7,1798,456 +10963,182.71666666666667,1772,458 +10964,182.73333333333332,1745,460 +10965,182.75,1716,462 +10966,182.76666666666665,1687,464 +10967,182.78333333333333,1656,466 +10968,182.8,1625,467 +10969,182.81666666666666,1593,468 +10970,182.83333333333334,1561,469 +10971,182.85,1529,469 +10972,182.86666666666667,1496,470 +10973,182.88333333333333,1463,470 +10974,182.9,1431,470 +10975,182.91666666666666,1399,470 +10976,182.93333333333334,1367,469 +10977,182.95,1335,469 +10978,182.96666666666667,1305,468 +10979,182.98333333333332,1275,467 +10980,183.0,1247,465 +10981,183.01666666666665,1219,463 +10982,183.03333333333333,1192,461 +10983,183.05,1167,460 +10984,183.06666666666666,1143,457 +10985,183.08333333333334,1120,456 +10986,183.1,1099,454 +10987,183.11666666666667,1080,452 +10988,183.13333333333333,1062,450 +10989,183.15,1046,449 +10990,183.16666666666666,1032,447 +10991,183.18333333333334,1020,446 +10992,183.2,1010,445 +10993,183.21666666666667,1001,444 +10994,183.23333333333332,995,443 +10995,183.25,991,443 +10996,183.26666666666665,991,443 +10997,183.28333333333333,991,443 +10998,183.3,992,443 +10999,183.31666666666666,996,444 +11000,183.33333333333334,1002,445 +11001,183.35,1011,446 +11002,183.36666666666667,1020,447 +11003,183.38333333333333,1033,448 +11004,183.4,1047,450 +11005,183.41666666666666,1063,451 +11006,183.43333333333334,1081,453 +11007,183.45,1100,454 +11008,183.46666666666667,1121,456 +11009,183.48333333333332,1144,458 +11010,183.5,1169,460 +11011,183.51666666666665,1194,462 +11012,183.53333333333333,1221,464 +11013,183.55,1249,465 +11014,183.56666666666666,1278,466 +11015,183.58333333333334,1308,468 +11016,183.6,1338,469 +11017,183.61666666666667,1371,470 +11018,183.63333333333333,1403,470 +11019,183.65,1436,470 +11020,183.66666666666666,1469,470 +11021,183.68333333333334,1502,470 +11022,183.7,1534,470 +11023,183.71666666666667,1567,469 +11024,183.73333333333332,1599,468 +11025,183.75,1631,467 +11026,183.76666666666665,1662,466 +11027,183.78333333333333,1693,464 +11028,183.8,1722,463 +11029,183.81666666666666,1751,460 +11030,183.83333333333334,1778,458 +11031,183.85,1804,456 +11032,183.86666666666667,1828,454 +11033,183.88333333333333,1851,452 +11034,183.9,1872,450 +11035,183.91666666666666,1892,448 +11036,183.93333333333334,1910,446 +11037,183.95,1926,444 +11038,183.96666666666667,1939,442 +11039,183.98333333333332,1951,441 +11040,184.0,1961,439 +11041,184.01666666666665,1968,438 +11042,184.03333333333333,1974,438 +11043,184.05,1976,437 +11044,184.06666666666666,1976,437 +11045,184.08333333333334,1976,437 +11046,184.1,1972,438 +11047,184.11666666666667,1966,439 +11048,184.13333333333333,1958,440 +11049,184.15,1948,441 +11050,184.16666666666666,1935,442 +11051,184.18333333333334,1921,444 +11052,184.2,1905,446 +11053,184.21666666666667,1886,448 +11054,184.23333333333332,1866,450 +11055,184.25,1844,452 +11056,184.26666666666665,1821,454 +11057,184.28333333333333,1796,456 +11058,184.3,1770,458 +11059,184.31666666666666,1743,460 +11060,184.33333333333334,1714,462 +11061,184.35,1685,464 +11062,184.36666666666667,1655,466 +11063,184.38333333333333,1624,467 +11064,184.4,1592,468 +11065,184.41666666666666,1560,469 +11066,184.43333333333334,1528,469 +11067,184.45,1495,470 +11068,184.46666666666667,1463,470 +11069,184.48333333333332,1430,470 +11070,184.5,1399,470 +11071,184.51666666666665,1367,470 +11072,184.53333333333333,1336,469 +11073,184.55,1305,468 +11074,184.56666666666666,1276,466 +11075,184.58333333333334,1247,465 +11076,184.6,1220,463 +11077,184.61666666666667,1193,462 +11078,184.63333333333333,1168,460 +11079,184.65,1143,458 +11080,184.66666666666666,1121,456 +11081,184.68333333333334,1100,454 +11082,184.7,1081,453 +11083,184.71666666666667,1063,451 +11084,184.73333333333332,1047,449 +11085,184.75,1034,448 +11086,184.76666666666665,1022,447 +11087,184.78333333333333,1011,445 +11088,184.8,1003,445 +11089,184.81666666666666,997,444 +11090,184.83333333333334,993,443 +11091,184.85,993,443 +11092,184.86666666666667,993,443 +11093,184.88333333333333,993,444 +11094,184.9,997,444 +11095,184.91666666666666,1004,445 +11096,184.93333333333334,1012,446 +11097,184.95,1022,447 +11098,184.96666666666667,1035,449 +11099,184.98333333333332,1049,450 +11100,185.0,1065,452 +11101,185.01666666666665,1083,454 +11102,185.03333333333333,1102,456 +11103,185.05,1123,458 +11104,185.06666666666666,1146,460 +11105,185.08333333333334,1170,462 +11106,185.1,1196,464 +11107,185.11666666666667,1223,465 +11108,185.13333333333333,1251,467 +11109,185.15,1280,468 +11110,185.16666666666666,1310,469 +11111,185.18333333333334,1341,470 +11112,185.2,1372,470 +11113,185.21666666666667,1405,470 +11114,185.23333333333332,1437,470 +11115,185.25,1470,470 +11116,185.26666666666665,1503,470 +11117,185.28333333333333,1536,470 +11118,185.3,1569,469 +11119,185.31666666666666,1601,469 +11120,185.33333333333334,1633,467 +11121,185.35,1664,466 +11122,185.36666666666667,1694,464 +11123,185.38333333333333,1723,462 +11124,185.4,1752,460 +11125,185.41666666666666,1779,458 +11126,185.43333333333334,1805,456 +11127,185.45,1829,454 +11128,185.46666666666667,1852,452 +11129,185.48333333333332,1873,449 +11130,185.5,1893,447 +11131,185.51666666666665,1911,445 +11132,185.53333333333333,1926,444 +11133,185.55,1940,442 +11134,185.56666666666666,1952,441 +11135,185.58333333333334,1961,439 +11136,185.6,1968,438 +11137,185.61666666666667,1973,438 +11138,185.63333333333333,1975,437 +11139,185.65,1975,437 +11140,185.66666666666666,1975,437 +11141,185.68333333333334,1971,437 +11142,185.7,1964,438 +11143,185.71666666666667,1956,439 +11144,185.73333333333332,1945,440 +11145,185.75,1933,442 +11146,185.76666666666665,1918,443 +11147,185.78333333333333,1902,445 +11148,185.8,1883,447 +11149,185.81666666666666,1863,449 +11150,185.83333333333334,1842,451 +11151,185.85,1818,454 +11152,185.86666666666667,1793,456 +11153,185.88333333333333,1767,458 +11154,185.9,1740,460 +11155,185.91666666666666,1712,462 +11156,185.93333333333334,1682,464 +11157,185.95,1652,466 +11158,185.96666666666667,1621,467 +11159,185.98333333333332,1590,468 +11160,186.0,1558,469 +11161,186.01666666666665,1525,470 +11162,186.03333333333333,1493,470 +11163,186.05,1460,470 +11164,186.06666666666666,1428,470 +11165,186.08333333333334,1397,470 +11166,186.1,1364,469 +11167,186.11666666666667,1333,469 +11168,186.13333333333333,1303,467 +11169,186.15,1274,466 +11170,186.16666666666666,1245,465 +11171,186.18333333333334,1218,463 +11172,186.2,1191,461 +11173,186.21666666666667,1166,460 +11174,186.23333333333332,1142,458 +11175,186.25,1120,456 +11176,186.26666666666665,1099,454 +11177,186.28333333333333,1079,453 +11178,186.3,1062,451 +11179,186.31666666666666,1046,449 +11180,186.33333333333334,1032,448 +11181,186.35,1020,447 +11182,186.36666666666667,1010,446 +11183,186.38333333333333,1003,445 +11184,186.4,997,444 +11185,186.41666666666666,993,444 +11186,186.43333333333334,993,444 +11187,186.45,993,444 +11188,186.46666666666667,994,444 +11189,186.48333333333332,998,445 +11190,186.5,1005,445 +11191,186.51666666666665,1013,446 +11192,186.53333333333333,1024,448 +11193,186.55,1036,449 +11194,186.56666666666666,1051,451 +11195,186.58333333333334,1067,452 +11196,186.6,1085,454 +11197,186.61666666666667,1105,456 +11198,186.63333333333333,1126,458 +11199,186.65,1149,460 +11200,186.66666666666666,1173,462 +11201,186.68333333333334,1199,464 +11202,186.7,1226,465 +11203,186.71666666666667,1255,467 +11204,186.73333333333332,1283,468 +11205,186.75,1314,469 +11206,186.76666666666665,1344,470 +11207,186.78333333333333,1376,471 +11208,186.8,1408,471 +11209,186.81666666666666,1441,471 +11210,186.83333333333334,1473,471 +11211,186.85,1506,471 +11212,186.86666666666667,1539,470 +11213,186.88333333333333,1571,469 +11214,186.9,1604,469 +11215,186.91666666666666,1635,467 +11216,186.93333333333334,1666,466 +11217,186.95,1696,464 +11218,186.96666666666667,1725,462 +11219,186.98333333333332,1754,460 +11220,187.0,1781,458 +11221,187.01666666666665,1806,456 +11222,187.03333333333333,1830,454 +11223,187.05,1853,452 +11224,187.06666666666666,1874,450 +11225,187.08333333333334,1893,448 +11226,187.1,1910,446 +11227,187.11666666666667,1926,444 +11228,187.13333333333333,1939,442 +11229,187.15,1950,441 +11230,187.16666666666666,1960,440 +11231,187.18333333333334,1967,439 +11232,187.2,1972,438 +11233,187.21666666666667,1972,438 +11234,187.23333333333332,1972,438 +11235,187.25,1972,438 +11236,187.26666666666665,1968,438 +11237,187.28333333333333,1962,439 +11238,187.3,1954,440 +11239,187.31666666666666,1943,441 +11240,187.33333333333334,1931,443 +11241,187.35,1916,445 +11242,187.36666666666667,1900,446 +11243,187.38333333333333,1881,448 +11244,187.4,1861,450 +11245,187.41666666666666,1839,452 +11246,187.43333333333334,1816,455 +11247,187.45,1791,457 +11248,187.46666666666667,1765,459 +11249,187.48333333333332,1738,461 +11250,187.5,1709,463 +11251,187.51666666666665,1680,464 +11252,187.53333333333333,1649,466 +11253,187.55,1619,467 +11254,187.56666666666666,1587,468 +11255,187.58333333333334,1555,469 +11256,187.6,1523,470 +11257,187.61666666666667,1491,470 +11258,187.63333333333333,1459,470 +11259,187.65,1426,470 +11260,187.66666666666666,1395,470 +11261,187.68333333333334,1363,469 +11262,187.7,1332,469 +11263,187.71666666666667,1302,468 +11264,187.73333333333332,1273,467 +11265,187.75,1244,465 +11266,187.76666666666665,1217,463 +11267,187.78333333333333,1190,462 +11268,187.8,1165,460 +11269,187.81666666666666,1142,458 +11270,187.83333333333334,1120,456 +11271,187.85,1099,454 +11272,187.86666666666667,1080,453 +11273,187.88333333333333,1063,451 +11274,187.9,1047,449 +11275,187.91666666666666,1034,448 +11276,187.93333333333334,1022,447 +11277,187.95,1012,446 +11278,187.96666666666667,1004,445 +11279,187.98333333333332,999,444 +11280,188.0,995,444 +11281,188.01666666666665,995,444 +11282,188.03333333333333,995,444 +11283,188.05,996,444 +11284,188.06666666666666,1000,445 +11285,188.08333333333334,1007,446 +11286,188.1,1015,446 +11287,188.11666666666667,1026,448 +11288,188.13333333333333,1038,449 +11289,188.15,1052,450 +11290,188.16666666666666,1069,452 +11291,188.18333333333334,1087,454 +11292,188.2,1106,455 +11293,188.21666666666667,1128,457 +11294,188.23333333333332,1150,459 +11295,188.25,1175,461 +11296,188.26666666666665,1200,463 +11297,188.28333333333333,1228,465 +11298,188.3,1256,466 +11299,188.31666666666666,1285,468 +11300,188.33333333333334,1315,469 +11301,188.35,1345,470 +11302,188.36666666666667,1377,470 +11303,188.38333333333333,1409,471 +11304,188.4,1441,471 +11305,188.41666666666666,1474,471 +11306,188.43333333333334,1507,470 +11307,188.45,1539,470 +11308,188.46666666666667,1571,469 +11309,188.48333333333332,1603,469 +11310,188.5,1635,468 +11311,188.51666666666665,1666,466 +11312,188.53333333333333,1695,465 +11313,188.55,1724,463 +11314,188.56666666666666,1752,461 +11315,188.58333333333334,1779,459 +11316,188.6,1804,457 +11317,188.61666666666667,1828,455 +11318,188.63333333333333,1851,453 +11319,188.65,1872,450 +11320,188.66666666666666,1891,448 +11321,188.68333333333334,1909,446 +11322,188.7,1924,444 +11323,188.71666666666667,1937,443 +11324,188.73333333333332,1949,441 +11325,188.75,1958,440 +11326,188.76666666666665,1965,439 +11327,188.78333333333333,1969,438 +11328,188.8,1971,438 +11329,188.81666666666666,1971,438 +11330,188.83333333333334,1971,438 +11331,188.85,1966,438 +11332,188.86666666666667,1960,439 +11333,188.88333333333333,1952,440 +11334,188.9,1941,442 +11335,188.91666666666666,1928,443 +11336,188.93333333333334,1914,445 +11337,188.95,1897,447 +11338,188.96666666666667,1879,449 +11339,188.98333333333332,1859,451 +11340,189.0,1837,453 +11341,189.01666666666665,1814,455 +11342,189.03333333333333,1789,457 +11343,189.05,1763,459 +11344,189.06666666666666,1735,461 +11345,189.08333333333334,1707,463 +11346,189.1,1678,465 +11347,189.11666666666667,1648,466 +11348,189.13333333333333,1617,467 +11349,189.15,1585,468 +11350,189.16666666666666,1554,469 +11351,189.18333333333334,1521,470 +11352,189.2,1489,470 +11353,189.21666666666667,1457,470 +11354,189.23333333333332,1425,470 +11355,189.25,1394,470 +11356,189.26666666666665,1363,470 +11357,189.28333333333333,1332,469 +11358,189.3,1302,468 +11359,189.31666666666666,1273,467 +11360,189.33333333333334,1245,465 +11361,189.35,1217,463 +11362,189.36666666666667,1191,461 +11363,189.38333333333333,1166,460 +11364,189.4,1142,458 +11365,189.41666666666666,1120,456 +11366,189.43333333333334,1100,454 +11367,189.45,1081,452 +11368,189.46666666666667,1064,451 +11369,189.48333333333332,1049,449 +11370,189.5,1035,448 +11371,189.51666666666665,1023,447 +11372,189.53333333333333,1013,446 +11373,189.55,1006,445 +11374,189.56666666666666,1000,444 +11375,189.58333333333334,996,444 +11376,189.6,996,444 +11377,189.61666666666667,996,444 +11378,189.63333333333333,997,445 +11379,189.65,1002,445 +11380,189.66666666666666,1009,446 +11381,189.68333333333334,1017,447 +11382,189.7,1028,448 +11383,189.71666666666667,1040,450 +11384,189.73333333333332,1055,451 +11385,189.75,1071,453 +11386,189.76666666666665,1089,455 +11387,189.78333333333333,1109,457 +11388,189.8,1130,459 +11389,189.81666666666666,1153,461 +11390,189.83333333333334,1177,462 +11391,189.85,1203,464 +11392,189.86666666666667,1230,466 +11393,189.88333333333333,1258,467 +11394,189.9,1287,468 +11395,189.91666666666666,1317,470 +11396,189.93333333333334,1347,470 +11397,189.95,1379,471 +11398,189.96666666666667,1411,471 +11399,189.98333333333332,1443,471 +11400,190.0,1476,471 +11401,190.01666666666665,1508,471 +11402,190.03333333333333,1541,470 +11403,190.05,1573,469 +11404,190.06666666666666,1605,469 +11405,190.08333333333334,1637,468 +11406,190.1,1667,466 +11407,190.11666666666667,1697,465 +11408,190.13333333333333,1726,462 +11409,190.15,1754,460 +11410,190.16666666666666,1780,458 +11411,190.18333333333334,1806,456 +11412,190.2,1829,454 +11413,190.21666666666667,1852,452 +11414,190.23333333333332,1872,450 +11415,190.25,1891,448 +11416,190.26666666666665,1908,446 +11417,190.28333333333333,1924,444 +11418,190.3,1937,443 +11419,190.31666666666666,1948,441 +11420,190.33333333333334,1957,440 +11421,190.35,1964,439 +11422,190.36666666666667,1968,439 +11423,190.38333333333333,1968,438 +11424,190.4,1968,438 +11425,190.41666666666666,1968,438 +11426,190.43333333333334,1964,439 +11427,190.45,1957,440 +11428,190.46666666666667,1949,440 +11429,190.48333333333332,1938,442 +11430,190.5,1925,443 +11431,190.51666666666665,1911,445 +11432,190.53333333333333,1894,446 +11433,190.55,1876,448 +11434,190.56666666666666,1856,450 +11435,190.58333333333334,1834,452 +11436,190.6,1811,454 +11437,190.61666666666667,1786,457 +11438,190.63333333333333,1759,459 +11439,190.65,1732,460 +11440,190.66666666666666,1704,463 +11441,190.68333333333334,1674,464 +11442,190.7,1644,466 +11443,190.71666666666667,1614,467 +11444,190.73333333333332,1583,468 +11445,190.75,1551,469 +11446,190.76666666666665,1519,470 +11447,190.78333333333333,1487,470 +11448,190.8,1455,470 +11449,190.81666666666666,1423,470 +11450,190.83333333333334,1392,470 +11451,190.85,1360,470 +11452,190.86666666666667,1329,469 +11453,190.88333333333333,1300,468 +11454,190.9,1271,467 +11455,190.91666666666666,1243,465 +11456,190.93333333333334,1216,464 +11457,190.95,1189,462 +11458,190.96666666666667,1165,460 +11459,190.98333333333332,1142,458 +11460,191.0,1120,456 +11461,191.01666666666665,1099,454 +11462,191.03333333333333,1080,453 +11463,191.05,1063,451 +11464,191.06666666666666,1048,450 +11465,191.08333333333334,1035,448 +11466,191.1,1023,447 +11467,191.11666666666667,1013,446 +11468,191.13333333333333,1006,445 +11469,191.15,1000,445 +11470,191.16666666666666,997,445 +11471,191.18333333333334,997,445 +11472,191.2,997,445 +11473,191.21666666666667,998,445 +11474,191.23333333333332,1003,445 +11475,191.25,1010,446 +11476,191.26666666666665,1018,447 +11477,191.28333333333333,1030,449 +11478,191.3,1042,450 +11479,191.31666666666666,1057,452 +11480,191.33333333333334,1073,453 +11481,191.35,1091,455 +11482,191.36666666666667,1111,457 +11483,191.38333333333333,1133,459 +11484,191.4,1155,461 +11485,191.41666666666666,1180,463 +11486,191.43333333333334,1206,464 +11487,191.45,1233,466 +11488,191.46666666666667,1261,467 +11489,191.48333333333332,1290,468 +11490,191.5,1320,469 +11491,191.51666666666665,1350,470 +11492,191.53333333333333,1382,471 +11493,191.55,1414,471 +11494,191.56666666666666,1446,471 +11495,191.58333333333334,1478,471 +11496,191.6,1510,471 +11497,191.61666666666667,1543,470 +11498,191.63333333333333,1575,470 +11499,191.65,1607,469 +11500,191.66666666666666,1638,468 +11501,191.68333333333334,1668,466 +11502,191.7,1698,465 +11503,191.71666666666667,1727,463 +11504,191.73333333333332,1755,461 +11505,191.75,1781,459 +11506,191.76666666666665,1806,456 +11507,191.78333333333333,1830,454 +11508,191.8,1852,452 +11509,191.81666666666666,1873,450 +11510,191.83333333333334,1891,448 +11511,191.85,1908,446 +11512,191.86666666666667,1923,444 +11513,191.88333333333333,1936,443 +11514,191.9,1947,441 +11515,191.91666666666666,1955,440 +11516,191.93333333333334,1962,439 +11517,191.95,1966,439 +11518,191.96666666666667,1966,439 +11519,191.98333333333332,1966,439 +11520,192.0,1966,439 +11521,192.01666666666665,1962,439 +11522,192.03333333333333,1956,440 +11523,192.05,1947,441 +11524,192.06666666666666,1936,443 +11525,192.08333333333334,1923,444 +11526,192.1,1909,446 +11527,192.11666666666667,1892,448 +11528,192.13333333333333,1874,449 +11529,192.15,1854,452 +11530,192.16666666666666,1832,454 +11531,192.18333333333334,1809,456 +11532,192.2,1784,458 +11533,192.21666666666667,1758,460 +11534,192.23333333333332,1731,462 +11535,192.25,1702,464 +11536,192.26666666666665,1673,465 +11537,192.28333333333333,1643,467 +11538,192.3,1612,468 +11539,192.31666666666666,1581,469 +11540,192.33333333333334,1549,469 +11541,192.35,1517,470 +11542,192.36666666666667,1485,470 +11543,192.38333333333333,1453,470 +11544,192.4,1422,470 +11545,192.41666666666666,1390,470 +11546,192.43333333333334,1359,469 +11547,192.45,1329,469 +11548,192.46666666666667,1299,468 +11549,192.48333333333332,1270,467 +11550,192.5,1242,466 +11551,192.51666666666665,1215,464 +11552,192.53333333333333,1189,462 +11553,192.55,1165,460 +11554,192.56666666666666,1141,459 +11555,192.58333333333334,1120,457 +11556,192.6,1100,455 +11557,192.61666666666667,1081,453 +11558,192.63333333333333,1064,451 +11559,192.65,1049,450 +11560,192.66666666666666,1036,449 +11561,192.68333333333334,1024,448 +11562,192.7,1015,447 +11563,192.71666666666667,1007,446 +11564,192.73333333333332,1002,445 +11565,192.75,998,445 +11566,192.76666666666665,998,445 +11567,192.78333333333333,998,445 +11568,192.8,1000,445 +11569,192.81666666666666,1005,446 +11570,192.83333333333334,1012,447 +11571,192.85,1020,448 +11572,192.86666666666667,1031,449 +11573,192.88333333333333,1044,450 +11574,192.9,1059,452 +11575,192.91666666666666,1075,454 +11576,192.93333333333334,1093,455 +11577,192.95,1113,457 +11578,192.96666666666667,1135,459 +11579,192.98333333333332,1158,461 +11580,193.0,1182,463 +11581,193.01666666666665,1208,465 +11582,193.03333333333333,1235,466 +11583,193.05,1264,468 +11584,193.06666666666666,1292,468 +11585,193.08333333333334,1322,469 +11586,193.1,1352,470 +11587,193.11666666666667,1383,470 +11588,193.13333333333333,1415,470 +11589,193.15,1447,470 +11590,193.16666666666666,1479,470 +11591,193.18333333333334,1511,470 +11592,193.2,1544,469 +11593,193.21666666666667,1575,469 +11594,193.23333333333332,1607,468 +11595,193.25,1638,467 +11596,193.26666666666665,1668,466 +11597,193.28333333333333,1698,464 +11598,193.3,1726,462 +11599,193.31666666666666,1754,460 +11600,193.33333333333334,1780,458 +11601,193.35,1805,456 +11602,193.36666666666667,1829,454 +11603,193.38333333333333,1851,452 +11604,193.4,1871,450 +11605,193.41666666666666,1890,448 +11606,193.43333333333334,1906,446 +11607,193.45,1921,444 +11608,193.46666666666667,1934,443 +11609,193.48333333333332,1945,442 +11610,193.5,1953,441 +11611,193.51666666666665,1960,440 +11612,193.53333333333333,1964,439 +11613,193.55,1964,439 +11614,193.56666666666666,1964,439 +11615,193.58333333333334,1964,439 +11616,193.6,1959,440 +11617,193.61666666666667,1953,440 +11618,193.63333333333333,1944,442 +11619,193.65,1933,443 +11620,193.66666666666666,1920,445 +11621,193.68333333333334,1906,446 +11622,193.7,1888,448 +11623,193.71666666666667,1870,450 +11624,193.73333333333332,1850,452 +11625,193.75,1828,454 +11626,193.76666666666665,1805,456 +11627,193.78333333333333,1781,458 +11628,193.8,1755,460 +11629,193.81666666666666,1728,462 +11630,193.83333333333334,1700,464 +11631,193.85,1671,465 +11632,193.86666666666667,1641,467 +11633,193.88333333333333,1611,468 +11634,193.9,1579,469 +11635,193.91666666666666,1548,470 +11636,193.93333333333334,1516,470 +11637,193.95,1484,470 +11638,193.96666666666667,1452,470 +11639,193.98333333333332,1421,470 +11640,194.0,1390,470 +11641,194.01666666666665,1359,470 +11642,194.03333333333333,1328,469 +11643,194.05,1299,468 +11644,194.06666666666666,1270,467 +11645,194.08333333333334,1242,466 +11646,194.1,1215,464 +11647,194.11666666666667,1189,462 +11648,194.13333333333333,1165,461 +11649,194.15,1142,459 +11650,194.16666666666666,1120,457 +11651,194.18333333333334,1100,455 +11652,194.2,1082,454 +11653,194.21666666666667,1065,452 +11654,194.23333333333332,1050,450 +11655,194.25,1037,449 +11656,194.26666666666665,1025,448 +11657,194.28333333333333,1016,447 +11658,194.3,1009,446 +11659,194.31666666666666,1003,446 +11660,194.33333333333334,1000,446 +11661,194.35,1000,446 +11662,194.36666666666667,1000,446 +11663,194.38333333333333,1002,446 +11664,194.4,1007,447 +11665,194.41666666666666,1014,447 +11666,194.43333333333334,1023,448 +11667,194.45,1034,450 +11668,194.46666666666667,1046,451 +11669,194.48333333333332,1061,453 +11670,194.5,1077,454 +11671,194.51666666666665,1096,456 +11672,194.53333333333333,1116,458 +11673,194.55,1137,460 +11674,194.56666666666666,1160,462 +11675,194.58333333333334,1185,463 +11676,194.6,1211,465 +11677,194.61666666666667,1238,466 +11678,194.63333333333333,1266,468 +11679,194.65,1294,469 +11680,194.66666666666666,1324,470 +11681,194.68333333333334,1354,471 +11682,194.7,1386,471 +11683,194.71666666666667,1417,471 +11684,194.73333333333332,1449,471 +11685,194.75,1481,471 +11686,194.76666666666665,1513,471 +11687,194.78333333333333,1546,471 +11688,194.8,1578,470 +11689,194.81666666666666,1609,469 +11690,194.83333333333334,1639,468 +11691,194.85,1670,467 +11692,194.86666666666667,1699,465 +11693,194.88333333333333,1728,463 +11694,194.9,1755,461 +11695,194.91666666666666,1781,459 +11696,194.93333333333334,1806,457 +11697,194.95,1829,454 +11698,194.96666666666667,1851,452 +11699,194.98333333333332,1871,451 +11700,195.0,1889,448 +11701,195.01666666666665,1906,446 +11702,195.03333333333333,1921,445 +11703,195.05,1933,443 +11704,195.06666666666666,1944,442 +11705,195.08333333333334,1952,441 +11706,195.1,1959,440 +11707,195.11666666666667,1963,439 +11708,195.13333333333333,1963,439 +11709,195.15,1963,439 +11710,195.16666666666666,1962,439 +11711,195.18333333333334,1958,440 +11712,195.2,1951,441 +11713,195.21666666666667,1942,442 +11714,195.23333333333332,1932,443 +11715,195.25,1919,445 +11716,195.26666666666665,1904,446 +11717,195.28333333333333,1887,448 +11718,195.3,1869,450 +11719,195.31666666666666,1849,452 +11720,195.33333333333334,1827,454 +11721,195.35,1804,456 +11722,195.36666666666667,1779,458 +11723,195.38333333333333,1753,460 +11724,195.4,1726,462 +11725,195.41666666666666,1698,464 +11726,195.43333333333334,1669,465 +11727,195.45,1639,467 +11728,195.46666666666667,1608,468 +11729,195.48333333333332,1577,469 +11730,195.5,1546,469 +11731,195.51666666666665,1514,470 +11732,195.53333333333333,1482,470 +11733,195.55,1450,470 +11734,195.56666666666666,1419,470 +11735,195.58333333333334,1388,470 +11736,195.6,1356,470 +11737,195.61666666666667,1327,469 +11738,195.63333333333333,1297,468 +11739,195.65,1268,467 +11740,195.66666666666666,1241,465 +11741,195.68333333333334,1214,463 +11742,195.7,1188,462 +11743,195.71666666666667,1164,460 +11744,195.73333333333332,1141,458 +11745,195.75,1120,457 +11746,195.76666666666665,1100,455 +11747,195.78333333333333,1081,453 +11748,195.8,1065,452 +11749,195.81666666666666,1050,450 +11750,195.83333333333334,1037,449 +11751,195.85,1026,448 +11752,195.86666666666667,1017,447 +11753,195.88333333333333,1010,446 +11754,195.9,1005,446 +11755,195.91666666666666,1002,446 +11756,195.93333333333334,1002,446 +11757,195.95,1002,446 +11758,195.96666666666667,1004,446 +11759,195.98333333333332,1009,447 +11760,196.0,1016,447 +11761,196.01666666666665,1024,449 +11762,196.03333333333333,1035,450 +11763,196.05,1048,451 +11764,196.06666666666666,1063,453 +11765,196.08333333333334,1079,454 +11766,196.1,1098,456 +11767,196.11666666666667,1117,457 +11768,196.13333333333333,1139,459 +11769,196.15,1162,461 +11770,196.16666666666666,1186,463 +11771,196.18333333333334,1212,464 +11772,196.2,1239,466 +11773,196.21666666666667,1266,467 +11774,196.23333333333332,1295,468 +11775,196.25,1325,469 +11776,196.26666666666665,1355,470 +11777,196.28333333333333,1386,470 +11778,196.3,1418,471 +11779,196.31666666666666,1450,471 +11780,196.33333333333334,1482,471 +11781,196.35,1515,471 +11782,196.36666666666667,1547,471 +11783,196.38333333333333,1579,470 +11784,196.4,1610,469 +11785,196.41666666666666,1641,468 +11786,196.43333333333334,1671,467 +11787,196.45,1700,465 +11788,196.46666666666667,1728,463 +11789,196.48333333333332,1755,461 +11790,196.5,1781,459 +11791,196.51666666666665,1806,457 +11792,196.53333333333333,1829,455 +11793,196.55,1851,453 +11794,196.56666666666666,1871,451 +11795,196.58333333333334,1889,449 +11796,196.6,1905,447 +11797,196.61666666666667,1919,445 +11798,196.63333333333333,1932,444 +11799,196.65,1942,443 +11800,196.66666666666666,1950,442 +11801,196.68333333333334,1956,441 +11802,196.7,1960,441 +11803,196.71666666666667,1960,440 +11804,196.73333333333332,1960,440 +11805,196.75,1960,440 +11806,196.76666666666665,1955,441 +11807,196.78333333333333,1949,442 +11808,196.8,1940,442 +11809,196.81666666666666,1929,444 +11810,196.83333333333334,1916,445 +11811,196.85,1902,447 +11812,196.86666666666667,1885,448 +11813,196.88333333333333,1866,450 +11814,196.9,1846,452 +11815,196.91666666666666,1824,454 +11816,196.93333333333334,1801,456 +11817,196.95,1777,458 +11818,196.96666666666667,1751,460 +11819,196.98333333333332,1724,462 +11820,197.0,1696,464 +11821,197.01666666666665,1667,466 +11822,197.03333333333333,1637,467 +11823,197.05,1606,468 +11824,197.06666666666666,1575,469 +11825,197.08333333333334,1544,469 +11826,197.1,1512,470 +11827,197.11666666666667,1481,470 +11828,197.13333333333333,1449,470 +11829,197.15,1417,470 +11830,197.16666666666666,1386,470 +11831,197.18333333333334,1356,469 +11832,197.2,1325,469 +11833,197.21666666666667,1296,468 +11834,197.23333333333332,1268,467 +11835,197.25,1240,465 +11836,197.26666666666665,1214,464 +11837,197.28333333333333,1188,462 +11838,197.3,1164,460 +11839,197.31666666666666,1141,459 +11840,197.33333333333334,1120,457 +11841,197.35,1100,455 +11842,197.36666666666667,1082,453 +11843,197.38333333333333,1065,452 +11844,197.4,1051,450 +11845,197.41666666666666,1037,449 +11846,197.43333333333334,1027,448 +11847,197.45,1017,447 +11848,197.46666666666667,1011,446 +11849,197.48333333333332,1005,446 +11850,197.5,1002,446 +11851,197.51666666666665,1002,446 +11852,197.53333333333333,1002,446 +11853,197.55,1005,446 +11854,197.56666666666666,1010,447 +11855,197.58333333333334,1017,448 +11856,197.6,1026,449 +11857,197.61666666666667,1037,450 +11858,197.63333333333333,1050,451 +11859,197.65,1065,453 +11860,197.66666666666666,1082,455 +11861,197.68333333333334,1100,456 +11862,197.7,1120,458 +11863,197.71666666666667,1142,460 +11864,197.73333333333332,1165,462 +11865,197.75,1189,464 +11866,197.76666666666665,1215,465 +11867,197.78333333333333,1242,467 +11868,197.8,1270,468 +11869,197.81666666666666,1298,469 +11870,197.83333333333334,1328,470 +11871,197.85,1359,471 +11872,197.86666666666667,1390,471 +11873,197.88333333333333,1421,471 +11874,197.9,1453,471 +11875,197.91666666666666,1485,471 +11876,197.93333333333334,1517,471 +11877,197.95,1549,471 +11878,197.96666666666667,1580,470 +11879,197.98333333333332,1612,469 +11880,198.0,1642,468 +11881,198.01666666666665,1672,467 +11882,198.03333333333333,1701,465 +11883,198.05,1730,463 +11884,198.06666666666666,1756,461 +11885,198.08333333333334,1782,459 +11886,198.1,1807,456 +11887,198.11666666666667,1830,454 +11888,198.13333333333333,1851,453 +11889,198.15,1871,451 +11890,198.16666666666666,1889,449 +11891,198.18333333333334,1905,447 +11892,198.2,1919,445 +11893,198.21666666666667,1931,444 +11894,198.23333333333332,1942,442 +11895,198.25,1950,441 +11896,198.26666666666665,1956,441 +11897,198.28333333333333,1960,440 +11898,198.3,1960,440 +11899,198.31666666666666,1960,440 +11900,198.33333333333334,1958,440 +11901,198.35,1954,441 +11902,198.36666666666667,1947,442 +11903,198.38333333333333,1938,443 +11904,198.4,1927,444 +11905,198.41666666666666,1914,445 +11906,198.43333333333334,1899,447 +11907,198.45,1882,449 +11908,198.46666666666667,1864,451 +11909,198.48333333333332,1843,452 +11910,198.5,1822,455 +11911,198.51666666666665,1799,457 +11912,198.53333333333333,1774,459 +11913,198.55,1748,461 +11914,198.56666666666666,1721,463 +11915,198.58333333333334,1693,464 +11916,198.6,1664,466 +11917,198.61666666666667,1634,467 +11918,198.63333333333333,1604,468 +11919,198.65,1573,469 +11920,198.66666666666666,1542,470 +11921,198.68333333333334,1510,470 +11922,198.7,1478,470 +11923,198.71666666666667,1447,470 +11924,198.73333333333332,1416,470 +11925,198.75,1385,470 +11926,198.76666666666665,1354,470 +11927,198.78333333333333,1324,469 +11928,198.8,1295,468 +11929,198.81666666666666,1267,467 +11930,198.83333333333334,1239,466 +11931,198.85,1213,464 +11932,198.86666666666667,1188,462 +11933,198.88333333333333,1163,461 +11934,198.9,1140,459 +11935,198.91666666666666,1119,457 +11936,198.93333333333334,1100,456 +11937,198.95,1082,454 +11938,198.96666666666667,1065,452 +11939,198.98333333333332,1051,451 +11940,199.0,1038,449 +11941,199.01666666666665,1027,448 +11942,199.03333333333333,1018,447 +11943,199.05,1011,447 +11944,199.06666666666666,1006,446 +11945,199.08333333333334,1003,446 +11946,199.1,1003,446 +11947,199.11666666666667,1003,446 +11948,199.13333333333333,1006,446 +11949,199.15,1011,447 +11950,199.16666666666666,1019,448 +11951,199.18333333333334,1028,449 +11952,199.2,1039,450 +11953,199.21666666666667,1052,452 +11954,199.23333333333332,1067,454 +11955,199.25,1083,455 +11956,199.26666666666665,1102,457 +11957,199.28333333333333,1122,459 +11958,199.3,1143,461 +11959,199.31666666666666,1167,462 +11960,199.33333333333334,1191,464 +11961,199.35,1217,466 +11962,199.36666666666667,1244,467 +11963,199.38333333333333,1272,468 +11964,199.4,1301,469 +11965,199.41666666666666,1330,470 +11966,199.43333333333334,1360,471 +11967,199.45,1392,471 +11968,199.46666666666667,1423,471 +11969,199.48333333333332,1454,471 +11970,199.5,1486,471 +11971,199.51666666666665,1518,471 +11972,199.53333333333333,1550,470 +11973,199.55,1582,469 +11974,199.56666666666666,1613,468 +11975,199.58333333333334,1643,467 +11976,199.6,1673,466 +11977,199.61666666666667,1702,464 +11978,199.63333333333333,1730,462 +11979,199.65,1756,460 +11980,199.66666666666666,1782,458 +11981,199.68333333333334,1806,456 +11982,199.7,1829,454 +11983,199.71666666666667,1850,452 +11984,199.73333333333332,1870,450 +11985,199.75,1887,448 +11986,199.76666666666665,1903,446 +11987,199.78333333333333,1917,445 +11988,199.8,1930,443 +11989,199.81666666666666,1940,442 +11990,199.83333333333334,1948,441 +11991,199.85,1954,440 +11992,199.86666666666667,1958,440 +11993,199.88333333333333,1958,440 +11994,199.9,1958,440 +11995,199.91666666666666,1956,440 +11996,199.93333333333334,1951,440 +11997,199.95,1944,441 +11998,199.96666666666667,1935,442 +11999,199.98333333333332,1924,444 +12000,200.0,1911,445 +12001,200.01666666666665,1896,447 +12002,200.03333333333333,1880,449 +12003,200.05,1861,450 +12004,200.06666666666666,1841,453 +12005,200.08333333333334,1819,454 +12006,200.1,1796,457 +12007,200.11666666666667,1771,459 +12008,200.13333333333333,1745,461 +12009,200.15,1718,462 +12010,200.16666666666666,1690,464 +12011,200.18333333333334,1661,466 +12012,200.2,1631,467 +12013,200.21666666666667,1601,468 +12014,200.23333333333332,1570,469 +12015,200.25,1539,470 +12016,200.26666666666665,1508,470 +12017,200.28333333333333,1476,470 +12018,200.3,1445,470 +12019,200.31666666666666,1414,470 +12020,200.33333333333334,1383,470 +12021,200.35,1352,470 +12022,200.36666666666667,1322,469 +12023,200.38333333333333,1293,468 +12024,200.4,1265,467 +12025,200.41666666666666,1238,465 +12026,200.43333333333334,1211,464 +12027,200.45,1187,462 +12028,200.46666666666667,1162,460 +12029,200.48333333333332,1140,459 +12030,200.5,1119,457 +12031,200.51666666666665,1099,455 +12032,200.53333333333333,1081,454 +12033,200.55,1065,452 +12034,200.56666666666666,1051,451 +12035,200.58333333333334,1038,450 +12036,200.6,1027,449 +12037,200.61666666666667,1018,448 +12038,200.63333333333333,1011,447 +12039,200.65,1006,447 +12040,200.66666666666666,1004,447 +12041,200.68333333333334,1004,447 +12042,200.7,1004,447 +12043,200.71666666666667,1007,447 +12044,200.73333333333332,1012,447 +12045,200.75,1020,448 +12046,200.76666666666665,1029,449 +12047,200.78333333333333,1040,451 +12048,200.8,1053,452 +12049,200.81666666666666,1068,454 +12050,200.83333333333334,1085,455 +12051,200.85,1103,457 +12052,200.86666666666667,1123,459 +12053,200.88333333333333,1145,460 +12054,200.9,1168,462 +12055,200.91666666666666,1192,464 +12056,200.93333333333334,1218,466 +12057,200.95,1245,467 +12058,200.96666666666667,1273,468 +12059,200.98333333333332,1302,469 +12060,201.0,1332,471 +12061,201.01666666666665,1362,471 +12062,201.03333333333333,1393,471 +12063,201.05,1424,471 +12064,201.06666666666666,1456,471 +12065,201.08333333333334,1488,471 +12066,201.1,1519,471 +12067,201.11666666666667,1551,470 +12068,201.13333333333333,1582,470 +12069,201.15,1614,469 +12070,201.16666666666666,1644,468 +12071,201.18333333333334,1674,466 +12072,201.2,1703,465 +12073,201.21666666666667,1730,463 +12074,201.23333333333332,1757,461 +12075,201.25,1783,459 +12076,201.26666666666665,1807,457 +12077,201.28333333333333,1829,454 +12078,201.3,1851,453 +12079,201.31666666666666,1870,451 +12080,201.33333333333334,1888,449 +12081,201.35,1903,447 +12082,201.36666666666667,1917,445 +12083,201.38333333333333,1929,444 +12084,201.4,1939,443 +12085,201.41666666666666,1947,442 +12086,201.43333333333334,1953,441 +12087,201.45,1957,441 +12088,201.46666666666667,1957,441 +12089,201.48333333333332,1957,441 +12090,201.5,1955,441 +12091,201.51666666666665,1950,441 +12092,201.53333333333333,1943,442 +12093,201.55,1934,443 +12094,201.56666666666666,1923,444 +12095,201.58333333333334,1910,446 +12096,201.6,1895,447 +12097,201.61666666666667,1878,449 +12098,201.63333333333333,1860,451 +12099,201.65,1839,453 +12100,201.66666666666666,1818,455 +12101,201.68333333333334,1795,457 +12102,201.7,1770,459 +12103,201.71666666666667,1744,461 +12104,201.73333333333332,1717,463 +12105,201.75,1689,464 +12106,201.76666666666665,1660,466 +12107,201.78333333333333,1631,467 +12108,201.8,1600,468 +12109,201.81666666666666,1570,469 +12110,201.83333333333334,1539,470 +12111,201.85,1508,470 +12112,201.86666666666667,1476,470 +12113,201.88333333333333,1445,470 +12114,201.9,1414,470 +12115,201.91666666666666,1383,470 +12116,201.93333333333334,1353,470 +12117,201.95,1323,470 +12118,201.96666666666667,1294,468 +12119,201.98333333333332,1266,467 +12120,202.0,1239,466 +12121,202.01666666666665,1212,464 +12122,202.03333333333333,1187,462 +12123,202.05,1163,460 +12124,202.06666666666666,1141,459 +12125,202.08333333333334,1120,457 +12126,202.1,1100,456 +12127,202.11666666666667,1083,454 +12128,202.13333333333333,1067,452 +12129,202.15,1052,451 +12130,202.16666666666666,1040,450 +12131,202.18333333333334,1029,449 +12132,202.2,1020,448 +12133,202.21666666666667,1014,447 +12134,202.23333333333332,1009,447 +12135,202.25,1007,447 +12136,202.26666666666665,1007,447 +12137,202.28333333333333,1007,447 +12138,202.3,1010,447 +12139,202.31666666666666,1015,448 +12140,202.33333333333334,1022,449 +12141,202.35,1032,450 +12142,202.36666666666667,1043,451 +12143,202.38333333333333,1056,453 +12144,202.4,1071,454 +12145,202.41666666666666,1087,456 +12146,202.43333333333334,1106,458 +12147,202.45,1126,459 +12148,202.46666666666667,1147,461 +12149,202.48333333333332,1170,463 +12150,202.5,1195,465 +12151,202.51666666666665,1220,466 +12152,202.53333333333333,1247,468 +12153,202.55,1275,469 +12154,202.56666666666666,1304,470 +12155,202.58333333333334,1333,471 +12156,202.6,1364,471 +12157,202.61666666666667,1395,471 +12158,202.63333333333333,1426,472 +12159,202.65,1457,472 +12160,202.66666666666666,1489,472 +12161,202.68333333333334,1521,471 +12162,202.7,1553,471 +12163,202.71666666666667,1584,470 +12164,202.73333333333332,1614,469 +12165,202.75,1645,468 +12166,202.76666666666665,1674,467 +12167,202.78333333333333,1703,465 +12168,202.8,1730,463 +12169,202.81666666666666,1757,461 +12170,202.83333333333334,1782,459 +12171,202.85,1806,457 +12172,202.86666666666667,1829,455 +12173,202.88333333333333,1850,453 +12174,202.9,1869,451 +12175,202.91666666666666,1887,449 +12176,202.93333333333334,1902,447 +12177,202.95,1916,446 +12178,202.96666666666667,1928,444 +12179,202.98333333333332,1938,443 +12180,203.0,1945,442 +12181,203.01666666666665,1951,441 +12182,203.03333333333333,1955,441 +12183,203.05,1955,441 +12184,203.06666666666666,1955,441 +12185,203.08333333333334,1952,441 +12186,203.1,1947,442 +12187,203.11666666666667,1940,443 +12188,203.13333333333333,1931,443 +12189,203.15,1920,445 +12190,203.16666666666666,1907,446 +12191,203.18333333333334,1892,448 +12192,203.2,1875,450 +12193,203.21666666666667,1856,451 +12194,203.23333333333332,1836,453 +12195,203.25,1814,455 +12196,203.26666666666665,1791,457 +12197,203.28333333333333,1767,459 +12198,203.3,1741,461 +12199,203.31666666666666,1714,463 +12200,203.33333333333334,1686,464 +12201,203.35,1657,466 +12202,203.36666666666667,1628,467 +12203,203.38333333333333,1597,468 +12204,203.4,1567,469 +12205,203.41666666666666,1536,470 +12206,203.43333333333334,1505,470 +12207,203.45,1473,470 +12208,203.46666666666667,1442,470 +12209,203.48333333333332,1411,470 +12210,203.5,1381,470 +12211,203.51666666666665,1350,470 +12212,203.53333333333333,1321,469 +12213,203.55,1291,468 +12214,203.56666666666666,1264,467 +12215,203.58333333333334,1237,466 +12216,203.6,1211,464 +12217,203.61666666666667,1186,462 +12218,203.63333333333333,1162,461 +12219,203.65,1140,459 +12220,203.66666666666666,1119,457 +12221,203.68333333333334,1100,456 +12222,203.7,1082,454 +12223,203.71666666666667,1066,452 +12224,203.73333333333332,1052,451 +12225,203.75,1040,450 +12226,203.76666666666665,1029,449 +12227,203.78333333333333,1020,448 +12228,203.8,1014,447 +12229,203.81666666666666,1009,447 +12230,203.83333333333334,1007,447 +12231,203.85,1007,447 +12232,203.86666666666667,1007,447 +12233,203.88333333333333,1011,447 +12234,203.9,1016,448 +12235,203.91666666666666,1023,449 +12236,203.93333333333334,1033,450 +12237,203.95,1044,451 +12238,203.96666666666667,1057,453 +12239,203.98333333333332,1072,454 +12240,204.0,1089,456 +12241,204.01666666666665,1107,457 +12242,204.03333333333333,1127,459 +12243,204.05,1149,461 +12244,204.06666666666666,1172,463 +12245,204.08333333333334,1196,464 +12246,204.1,1222,466 +12247,204.11666666666667,1249,468 +12248,204.13333333333333,1277,468 +12249,204.15,1306,469 +12250,204.16666666666666,1335,470 +12251,204.18333333333334,1365,471 +12252,204.2,1397,471 +12253,204.21666666666667,1428,471 +12254,204.23333333333332,1460,471 +12255,204.25,1491,471 +12256,204.26666666666665,1522,471 +12257,204.28333333333333,1554,471 +12258,204.3,1585,470 +12259,204.31666666666666,1616,469 +12260,204.33333333333334,1646,468 +12261,204.35,1676,467 +12262,204.36666666666667,1705,465 +12263,204.38333333333333,1732,463 +12264,204.4,1759,461 +12265,204.41666666666666,1784,459 +12266,204.43333333333334,1808,457 +12267,204.45,1830,455 +12268,204.46666666666667,1851,453 +12269,204.48333333333332,1870,451 +12270,204.5,1887,449 +12271,204.51666666666665,1903,447 +12272,204.53333333333333,1916,445 +12273,204.55,1928,444 +12274,204.56666666666666,1937,443 +12275,204.58333333333334,1945,442 +12276,204.6,1950,441 +12277,204.61666666666667,1954,441 +12278,204.63333333333333,1954,441 +12279,204.65,1954,441 +12280,204.66666666666666,1951,441 +12281,204.68333333333334,1946,441 +12282,204.7,1939,442 +12283,204.71666666666667,1930,443 +12284,204.73333333333332,1918,445 +12285,204.75,1905,446 +12286,204.76666666666665,1890,448 +12287,204.78333333333333,1873,449 +12288,204.8,1854,451 +12289,204.81666666666666,1834,453 +12290,204.83333333333334,1813,455 +12291,204.85,1789,457 +12292,204.86666666666667,1765,459 +12293,204.88333333333333,1739,461 +12294,204.9,1712,463 +12295,204.91666666666666,1684,464 +12296,204.93333333333334,1655,466 +12297,204.95,1626,467 +12298,204.96666666666667,1596,468 +12299,204.98333333333332,1565,469 +12300,205.0,1534,470 +12301,205.01666666666665,1503,470 +12302,205.03333333333333,1472,470 +12303,205.04999999999998,1441,470 +12304,205.06666666666666,1410,470 +12305,205.08333333333334,1379,470 +12306,205.1,1348,469 +12307,205.11666666666667,1320,469 +12308,205.13333333333333,1291,467 +12309,205.15,1264,466 +12310,205.16666666666666,1237,465 +12311,205.18333333333334,1210,463 +12312,205.2,1186,462 +12313,205.21666666666667,1162,460 +12314,205.23333333333332,1140,459 +12315,205.25,1119,457 +12316,205.26666666666665,1100,455 +12317,205.28333333333333,1083,453 +12318,205.29999999999998,1067,452 +12319,205.31666666666666,1053,451 +12320,205.33333333333334,1041,449 +12321,205.35,1030,448 +12322,205.36666666666667,1022,447 +12323,205.38333333333333,1015,447 +12324,205.4,1011,446 +12325,205.41666666666666,1009,446 +12326,205.43333333333334,1009,446 +12327,205.45,1009,446 +12328,205.46666666666667,1013,447 +12329,205.48333333333332,1018,448 +12330,205.5,1026,448 +12331,205.51666666666665,1035,450 +12332,205.53333333333333,1047,451 +12333,205.54999999999998,1060,452 +12334,205.56666666666666,1075,454 +12335,205.58333333333334,1092,455 +12336,205.6,1110,457 +12337,205.61666666666667,1130,459 +12338,205.63333333333333,1152,461 +12339,205.65,1175,462 +12340,205.66666666666666,1199,464 +12341,205.68333333333334,1225,466 +12342,205.7,1252,467 +12343,205.71666666666667,1279,468 +12344,205.73333333333332,1308,469 +12345,205.75,1337,470 +12346,205.76666666666665,1367,471 +12347,205.78333333333333,1399,471 +12348,205.79999999999998,1430,471 +12349,205.81666666666666,1461,471 +12350,205.83333333333334,1493,471 +12351,205.85,1525,471 +12352,205.86666666666667,1556,470 +12353,205.88333333333333,1587,470 +12354,205.9,1617,469 +12355,205.91666666666666,1647,467 +12356,205.93333333333334,1676,466 +12357,205.95,1705,465 +12358,205.96666666666667,1732,462 +12359,205.98333333333332,1759,461 +12360,206.0,1784,459 +12361,206.01666666666665,1807,457 +12362,206.03333333333333,1829,455 +12363,206.04999999999998,1850,453 +12364,206.06666666666666,1869,451 +12365,206.08333333333334,1886,449 +12366,206.1,1901,447 +12367,206.11666666666667,1915,445 +12368,206.13333333333333,1926,444 +12369,206.15,1935,443 +12370,206.16666666666666,1943,442 +12371,206.18333333333334,1948,441 +12372,206.2,1952,441 +12373,206.21666666666667,1952,441 +12374,206.23333333333332,1952,441 +12375,206.25,1949,441 +12376,206.26666666666665,1943,442 +12377,206.28333333333333,1936,443 +12378,206.29999999999998,1927,444 +12379,206.31666666666666,1915,445 +12380,206.33333333333334,1902,447 +12381,206.35,1887,448 +12382,206.36666666666667,1870,450 +12383,206.38333333333333,1851,452 +12384,206.4,1831,454 +12385,206.41666666666666,1809,456 +12386,206.43333333333334,1786,458 +12387,206.45,1761,460 +12388,206.46666666666667,1736,462 +12389,206.48333333333332,1709,463 +12390,206.5,1681,465 +12391,206.51666666666665,1652,466 +12392,206.53333333333333,1623,468 +12393,206.54999999999998,1593,469 +12394,206.56666666666666,1562,469 +12395,206.58333333333334,1532,470 +12396,206.6,1501,470 +12397,206.61666666666667,1470,470 +12398,206.63333333333333,1439,470 +12399,206.65,1408,470 +12400,206.66666666666666,1377,470 +12401,206.68333333333334,1347,470 +12402,206.7,1318,469 +12403,206.71666666666667,1289,468 +12404,206.73333333333332,1262,467 +12405,206.75,1236,465 +12406,206.76666666666665,1210,464 +12407,206.78333333333333,1185,462 +12408,206.79999999999998,1161,461 +12409,206.81666666666666,1140,459 +12410,206.83333333333334,1119,457 +12411,206.85,1100,456 +12412,206.86666666666667,1083,454 +12413,206.88333333333333,1067,452 +12414,206.9,1053,451 +12415,206.91666666666666,1041,450 +12416,206.93333333333334,1031,449 +12417,206.95,1022,448 +12418,206.96666666666667,1016,447 +12419,206.98333333333332,1012,447 +12420,207.0,1010,447 +12421,207.01666666666665,1010,447 +12422,207.03333333333333,1010,447 +12423,207.04999999999998,1014,448 +12424,207.06666666666666,1020,448 +12425,207.08333333333334,1027,449 +12426,207.1,1037,450 +12427,207.11666666666667,1048,452 +12428,207.13333333333333,1061,453 +12429,207.15,1077,455 +12430,207.16666666666666,1093,456 +12431,207.18333333333334,1112,458 +12432,207.2,1132,460 +12433,207.21666666666667,1154,461 +12434,207.23333333333332,1177,463 +12435,207.25,1201,465 +12436,207.26666666666665,1227,467 +12437,207.28333333333333,1254,468 +12438,207.29999999999998,1281,469 +12439,207.31666666666666,1310,470 +12440,207.33333333333334,1339,471 +12441,207.35,1369,471 +12442,207.36666666666667,1400,471 +12443,207.38333333333333,1431,471 +12444,207.4,1462,471 +12445,207.41666666666666,1494,471 +12446,207.43333333333334,1525,471 +12447,207.45,1556,471 +12448,207.46666666666667,1587,470 +12449,207.48333333333332,1617,469 +12450,207.5,1647,468 +12451,207.51666666666665,1676,467 +12452,207.53333333333333,1704,465 +12453,207.54999999999998,1731,463 +12454,207.56666666666666,1757,462 +12455,207.58333333333334,1782,459 +12456,207.6,1806,458 +12457,207.61666666666667,1827,456 +12458,207.63333333333333,1848,453 +12459,207.65,1866,452 +12460,207.66666666666666,1883,450 +12461,207.68333333333334,1899,448 +12462,207.7,1912,447 +12463,207.71666666666667,1923,445 +12464,207.73333333333332,1933,444 +12465,207.75,1940,443 +12466,207.76666666666665,1946,442 +12467,207.78333333333333,1949,442 +12468,207.79999999999998,1949,442 +12469,207.81666666666666,1949,442 +12470,207.83333333333334,1945,442 +12471,207.85,1940,443 +12472,207.86666666666667,1933,444 +12473,207.88333333333333,1923,445 +12474,207.9,1912,446 +12475,207.91666666666666,1899,448 +12476,207.93333333333334,1884,449 +12477,207.95,1867,451 +12478,207.96666666666667,1848,453 +12479,207.98333333333332,1827,455 +12480,208.0,1806,457 +12481,208.01666666666665,1783,459 +12482,208.03333333333333,1758,460 +12483,208.04999999999998,1732,462 +12484,208.06666666666666,1706,464 +12485,208.08333333333334,1678,466 +12486,208.1,1649,467 +12487,208.11666666666667,1620,468 +12488,208.13333333333333,1590,469 +12489,208.15,1560,470 +12490,208.16666666666666,1529,471 +12491,208.18333333333334,1498,471 +12492,208.2,1467,471 +12493,208.21666666666667,1436,471 +12494,208.23333333333332,1406,471 +12495,208.25,1375,471 +12496,208.26666666666665,1345,471 +12497,208.28333333333333,1316,469 +12498,208.29999999999998,1287,468 +12499,208.31666666666666,1260,467 +12500,208.33333333333334,1234,466 +12501,208.35,1208,465 +12502,208.36666666666667,1184,463 +12503,208.38333333333333,1161,461 +12504,208.4,1139,459 +12505,208.41666666666666,1119,458 +12506,208.43333333333334,1100,456 +12507,208.45,1083,454 +12508,208.46666666666667,1067,453 +12509,208.48333333333332,1053,452 +12510,208.5,1041,451 +12511,208.51666666666665,1031,450 +12512,208.53333333333333,1023,449 +12513,208.54999999999998,1017,448 +12514,208.56666666666666,1013,448 +12515,208.58333333333334,1012,448 +12516,208.6,1012,448 +12517,208.61666666666667,1012,448 +12518,208.63333333333333,1015,448 +12519,208.65,1021,449 +12520,208.66666666666666,1029,450 +12521,208.68333333333334,1038,451 +12522,208.7,1050,452 +12523,208.71666666666667,1063,454 +12524,208.73333333333332,1078,455 +12525,208.75,1095,457 +12526,208.76666666666665,1114,458 +12527,208.78333333333333,1133,460 +12528,208.79999999999998,1155,462 +12529,208.81666666666666,1178,464 +12530,208.83333333333334,1203,465 +12531,208.85,1228,467 +12532,208.86666666666667,1255,468 +12533,208.88333333333333,1283,469 +12534,208.9,1311,470 +12535,208.91666666666666,1340,471 +12536,208.93333333333334,1371,471 +12537,208.95,1402,471 +12538,208.96666666666667,1432,471 +12539,208.98333333333332,1464,471 +12540,209.0,1495,471 +12541,209.01666666666665,1526,471 +12542,209.03333333333333,1558,470 +12543,209.04999999999998,1588,470 +12544,209.06666666666666,1619,469 +12545,209.08333333333334,1648,468 +12546,209.1,1677,466 +12547,209.11666666666667,1705,465 +12548,209.13333333333333,1732,463 +12549,209.15,1758,461 +12550,209.16666666666666,1783,459 +12551,209.18333333333334,1806,457 +12552,209.2,1828,455 +12553,209.21666666666667,1849,453 +12554,209.23333333333332,1867,451 +12555,209.25,1884,449 +12556,209.26666666666665,1899,447 +12557,209.28333333333333,1912,446 +12558,209.29999999999998,1924,445 +12559,209.31666666666666,1933,443 +12560,209.33333333333334,1940,443 +12561,209.35,1945,442 +12562,209.36666666666667,1948,442 +12563,209.38333333333333,1948,442 +12564,209.4,1948,442 +12565,209.41666666666666,1944,442 +12566,209.43333333333334,1939,442 +12567,209.45,1932,443 +12568,209.46666666666667,1922,444 +12569,209.48333333333332,1911,445 +12570,209.5,1897,447 +12571,209.51666666666665,1882,449 +12572,209.53333333333333,1865,450 +12573,209.54999999999998,1847,452 +12574,209.56666666666666,1826,454 +12575,209.58333333333334,1804,456 +12576,209.6,1781,458 +12577,209.61666666666667,1757,460 +12578,209.63333333333333,1731,462 +12579,209.65,1704,463 +12580,209.66666666666666,1677,465 +12581,209.68333333333334,1648,467 +12582,209.7,1619,468 +12583,209.71666666666667,1589,469 +12584,209.73333333333332,1559,470 +12585,209.75,1528,470 +12586,209.76666666666665,1497,471 +12587,209.78333333333333,1466,471 +12588,209.79999999999998,1435,471 +12589,209.81666666666666,1405,471 +12590,209.83333333333334,1375,470 +12591,209.85,1344,470 +12592,209.86666666666667,1316,469 +12593,209.88333333333333,1287,468 +12594,209.9,1260,467 +12595,209.91666666666666,1233,466 +12596,209.93333333333334,1208,464 +12597,209.95,1184,463 +12598,209.96666666666667,1160,461 +12599,209.98333333333332,1139,459 +12600,210.0,1119,458 +12601,210.01666666666665,1100,456 +12602,210.03333333333333,1083,455 +12603,210.04999999999998,1068,453 +12604,210.06666666666666,1054,452 +12605,210.08333333333334,1042,450 +12606,210.1,1032,449 +12607,210.11666666666667,1024,449 +12608,210.13333333333333,1018,448 +12609,210.15,1014,448 +12610,210.16666666666666,1013,448 +12611,210.18333333333334,1013,448 +12612,210.2,1013,448 +12613,210.21666666666667,1017,448 +12614,210.23333333333332,1023,449 +12615,210.25,1030,450 +12616,210.26666666666665,1040,451 +12617,210.28333333333333,1051,452 +12618,210.29999999999998,1065,454 +12619,210.31666666666666,1080,455 +12620,210.33333333333334,1097,457 +12621,210.35,1115,459 +12622,210.36666666666667,1136,460 +12623,210.38333333333333,1157,462 +12624,210.4,1180,464 +12625,210.41666666666666,1204,465 +12626,210.43333333333334,1230,467 +12627,210.45,1257,468 +12628,210.46666666666667,1284,469 +12629,210.48333333333332,1313,470 +12630,210.5,1341,471 +12631,210.51666666666665,1372,472 +12632,210.53333333333333,1402,472 +12633,210.54999999999998,1433,472 +12634,210.56666666666666,1464,472 +12635,210.58333333333334,1496,472 +12636,210.6,1527,472 +12637,210.61666666666667,1558,471 +12638,210.63333333333333,1589,470 +12639,210.65,1619,469 +12640,210.66666666666666,1648,468 +12641,210.68333333333334,1677,467 +12642,210.7,1705,465 +12643,210.71666666666667,1732,464 +12644,210.73333333333332,1758,462 +12645,210.75,1782,459 +12646,210.76666666666665,1805,458 +12647,210.78333333333333,1827,456 +12648,210.79999999999998,1848,454 +12649,210.81666666666666,1866,452 +12650,210.83333333333334,1883,450 +12651,210.85,1898,448 +12652,210.86666666666667,1910,447 +12653,210.88333333333333,1922,445 +12654,210.9,1931,444 +12655,210.91666666666666,1938,444 +12656,210.93333333333334,1943,443 +12657,210.95,1945,442 +12658,210.96666666666667,1945,442 +12659,210.98333333333332,1945,442 +12660,211.0,1942,443 +12661,211.01666666666665,1936,443 +12662,211.03333333333333,1928,444 +12663,211.04999999999998,1919,445 +12664,211.06666666666666,1907,447 +12665,211.08333333333334,1894,448 +12666,211.1,1879,450 +12667,211.11666666666667,1862,451 +12668,211.13333333333333,1843,453 +12669,211.15,1823,455 +12670,211.16666666666666,1801,457 +12671,211.18333333333334,1778,459 +12672,211.2,1754,461 +12673,211.21666666666667,1728,463 +12674,211.23333333333332,1701,464 +12675,211.25,1674,466 +12676,211.26666666666665,1646,467 +12677,211.28333333333333,1616,468 +12678,211.29999999999998,1587,469 +12679,211.31666666666666,1556,470 +12680,211.33333333333334,1526,470 +12681,211.35,1495,471 +12682,211.36666666666667,1465,471 +12683,211.38333333333333,1434,471 +12684,211.4,1404,470 +12685,211.41666666666666,1374,470 +12686,211.43333333333334,1344,470 +12687,211.45,1315,469 +12688,211.46666666666667,1287,468 +12689,211.48333333333332,1260,467 +12690,211.5,1234,466 +12691,211.51666666666665,1208,464 +12692,211.53333333333333,1184,462 +12693,211.54999999999998,1161,460 +12694,211.56666666666666,1139,459 +12695,211.58333333333334,1119,457 +12696,211.6,1101,456 +12697,211.61666666666667,1084,454 +12698,211.63333333333333,1068,453 +12699,211.65,1055,452 +12700,211.66666666666666,1043,450 +12701,211.68333333333334,1033,449 +12702,211.7,1025,449 +12703,211.71666666666667,1019,448 +12704,211.73333333333332,1015,448 +12705,211.75,1015,448 +12706,211.76666666666665,1015,448 +12707,211.78333333333333,1015,448 +12708,211.79999999999998,1019,448 +12709,211.81666666666666,1025,449 +12710,211.83333333333334,1033,450 +12711,211.85,1042,451 +12712,211.86666666666667,1054,452 +12713,211.88333333333333,1067,454 +12714,211.9,1083,455 +12715,211.91666666666666,1099,457 +12716,211.93333333333334,1118,459 +12717,211.95,1138,460 +12718,211.96666666666667,1160,462 +12719,211.98333333333332,1183,463 +12720,212.0,1208,465 +12721,212.01666666666665,1234,467 +12722,212.03333333333333,1260,468 +12723,212.04999999999998,1287,469 +12724,212.06666666666666,1316,470 +12725,212.08333333333334,1345,470 +12726,212.1,1375,471 +12727,212.11666666666667,1406,471 +12728,212.13333333333333,1436,471 +12729,212.15,1468,471 +12730,212.16666666666666,1499,471 +12731,212.18333333333334,1530,471 +12732,212.2,1561,470 +12733,212.21666666666667,1591,469 +12734,212.23333333333332,1621,468 +12735,212.25,1650,467 +12736,212.26666666666665,1679,466 +12737,212.28333333333333,1707,464 +12738,212.29999999999998,1734,462 +12739,212.31666666666666,1759,461 +12740,212.33333333333334,1784,458 +12741,212.35,1807,457 +12742,212.36666666666667,1828,455 +12743,212.38333333333333,1849,453 +12744,212.4,1867,451 +12745,212.41666666666666,1883,449 +12746,212.43333333333334,1898,447 +12747,212.45,1911,446 +12748,212.46666666666667,1922,444 +12749,212.48333333333332,1931,443 +12750,212.5,1937,442 +12751,212.51666666666665,1942,442 +12752,212.53333333333333,1944,441 +12753,212.54999999999998,1944,441 +12754,212.56666666666666,1944,441 +12755,212.58333333333334,1941,442 +12756,212.6,1935,443 +12757,212.61666666666667,1928,443 +12758,212.63333333333333,1918,444 +12759,212.65,1906,446 +12760,212.66666666666666,1893,447 +12761,212.68333333333334,1878,449 +12762,212.7,1861,451 +12763,212.71666666666667,1842,452 +12764,212.73333333333332,1822,454 +12765,212.75,1800,456 +12766,212.76666666666665,1777,458 +12767,212.78333333333333,1752,460 +12768,212.79999999999998,1727,462 +12769,212.81666666666666,1700,463 +12770,212.83333333333334,1672,465 +12771,212.85,1644,466 +12772,212.86666666666667,1615,467 +12773,212.88333333333333,1585,469 +12774,212.9,1555,469 +12775,212.91666666666666,1524,470 +12776,212.93333333333334,1494,470 +12777,212.95,1463,470 +12778,212.96666666666667,1432,470 +12779,212.98333333333332,1402,470 +12780,213.0,1372,470 +12781,213.01666666666665,1342,469 +12782,213.03333333333333,1314,468 +12783,213.04999999999998,1286,467 +12784,213.06666666666666,1259,466 +12785,213.08333333333334,1233,465 +12786,213.1,1207,463 +12787,213.11666666666667,1183,461 +12788,213.13333333333333,1160,460 +12789,213.15,1139,458 +12790,213.16666666666666,1119,457 +12791,213.18333333333334,1101,455 +12792,213.2,1084,454 +12793,213.21666666666667,1069,452 +12794,213.23333333333332,1055,451 +12795,213.25,1044,450 +12796,213.26666666666665,1034,449 +12797,213.28333333333333,1026,448 +12798,213.29999999999998,1020,447 +12799,213.31666666666666,1016,447 +12800,213.33333333333334,1016,447 +12801,213.35,1016,447 +12802,213.36666666666667,1016,447 +12803,213.38333333333333,1020,448 +12804,213.4,1026,449 +12805,213.41666666666666,1034,450 +12806,213.43333333333334,1044,451 +12807,213.45,1056,452 +12808,213.46666666666667,1069,453 +12809,213.48333333333332,1085,455 +12810,213.5,1102,457 +12811,213.51666666666665,1120,458 +12812,213.53333333333333,1141,460 +12813,213.54999999999998,1162,462 +12814,213.56666666666666,1186,463 +12815,213.58333333333334,1210,465 +12816,213.6,1236,466 +12817,213.61666666666667,1263,468 +12818,213.63333333333333,1290,469 +12819,213.65,1319,469 +12820,213.66666666666666,1348,470 +12821,213.68333333333334,1378,471 +12822,213.7,1409,471 +12823,213.71666666666667,1439,471 +12824,213.73333333333332,1470,471 +12825,213.75,1501,471 +12826,213.76666666666665,1532,471 +12827,213.78333333333333,1563,470 +12828,213.79999999999998,1593,469 +12829,213.81666666666666,1623,468 +12830,213.83333333333334,1652,467 +12831,213.85,1681,466 +12832,213.86666666666667,1709,464 +12833,213.88333333333333,1735,462 +12834,213.9,1761,461 +12835,213.91666666666666,1785,459 +12836,213.93333333333334,1808,457 +12837,213.95,1829,455 +12838,213.96666666666667,1849,453 +12839,213.98333333333332,1867,451 +12840,214.0,1883,449 +12841,214.01666666666665,1898,448 +12842,214.03333333333333,1911,446 +12843,214.04999999999998,1921,445 +12844,214.06666666666666,1930,444 +12845,214.08333333333334,1937,443 +12846,214.1,1942,442 +12847,214.11666666666667,1943,442 +12848,214.13333333333333,1943,442 +12849,214.15,1943,442 +12850,214.16666666666666,1940,442 +12851,214.18333333333334,1934,443 +12852,214.2,1926,444 +12853,214.21666666666667,1917,445 +12854,214.23333333333332,1905,446 +12855,214.25,1892,448 +12856,214.26666666666665,1876,449 +12857,214.28333333333333,1859,451 +12858,214.29999999999998,1841,453 +12859,214.31666666666666,1820,455 +12860,214.33333333333334,1798,457 +12861,214.35,1775,459 +12862,214.36666666666667,1751,460 +12863,214.38333333333333,1725,462 +12864,214.4,1698,464 +12865,214.41666666666666,1671,466 +12866,214.43333333333334,1642,467 +12867,214.45,1613,468 +12868,214.46666666666667,1583,469 +12869,214.48333333333332,1553,470 +12870,214.5,1523,470 +12871,214.51666666666665,1492,470 +12872,214.53333333333333,1462,470 +12873,214.54999999999998,1431,470 +12874,214.56666666666666,1401,470 +12875,214.58333333333334,1371,470 +12876,214.6,1341,470 +12877,214.61666666666667,1313,469 +12878,214.63333333333333,1285,468 +12879,214.65,1258,467 +12880,214.66666666666666,1232,465 +12881,214.68333333333334,1207,464 +12882,214.7,1183,462 +12883,214.71666666666667,1160,461 +12884,214.73333333333332,1139,459 +12885,214.75,1119,458 +12886,214.76666666666665,1101,456 +12887,214.78333333333333,1084,455 +12888,214.79999999999998,1069,453 +12889,214.81666666666666,1056,452 +12890,214.83333333333334,1045,451 +12891,214.85,1035,450 +12892,214.86666666666667,1027,449 +12893,214.88333333333333,1021,448 +12894,214.9,1018,448 +12895,214.91666666666666,1018,448 +12896,214.93333333333334,1018,448 +12897,214.95,1018,448 +12898,214.96666666666667,1022,449 +12899,214.98333333333332,1028,450 +12900,215.0,1036,450 +12901,215.01666666666665,1046,452 +12902,215.03333333333333,1058,453 +12903,215.04999999999998,1072,454 +12904,215.06666666666666,1087,456 +12905,215.08333333333334,1104,457 +12906,215.1,1123,459 +12907,215.11666666666667,1143,461 +12908,215.13333333333333,1165,463 +12909,215.15,1188,464 +12910,215.16666666666666,1212,466 +12911,215.18333333333334,1238,467 +12912,215.2,1265,469 +12913,215.21666666666667,1292,469 +12914,215.23333333333332,1321,470 +12915,215.25,1350,471 +12916,215.26666666666665,1380,471 +12917,215.28333333333333,1410,471 +12918,215.29999999999998,1441,471 +12919,215.31666666666666,1472,471 +12920,215.33333333333334,1502,471 +12921,215.35,1533,471 +12922,215.36666666666667,1564,470 +12923,215.38333333333333,1594,470 +12924,215.4,1624,469 +12925,215.41666666666666,1653,467 +12926,215.43333333333334,1681,466 +12927,215.45,1709,464 +12928,215.46666666666667,1735,463 +12929,215.48333333333332,1761,461 +12930,215.5,1785,459 +12931,215.51666666666665,1807,457 +12932,215.53333333333333,1828,455 +12933,215.54999999999998,1848,453 +12934,215.56666666666666,1866,451 +12935,215.58333333333334,1882,449 +12936,215.6,1897,448 +12937,215.61666666666667,1909,446 +12938,215.63333333333333,1920,445 +12939,215.65,1928,444 +12940,215.66666666666666,1935,443 +12941,215.68333333333334,1939,443 +12942,215.7,1941,442 +12943,215.71666666666667,1941,442 +12944,215.73333333333332,1941,442 +12945,215.75,1937,443 +12946,215.76666666666665,1931,443 +12947,215.78333333333333,1923,444 +12948,215.79999999999998,1913,446 +12949,215.81666666666666,1901,447 +12950,215.83333333333334,1888,448 +12951,215.85,1873,450 +12952,215.86666666666667,1856,451 +12953,215.88333333333333,1836,453 +12954,215.9,1816,455 +12955,215.91666666666666,1795,457 +12956,215.93333333333334,1771,459 +12957,215.95,1747,461 +12958,215.96666666666667,1722,463 +12959,215.98333333333332,1695,464 +12960,216.0,1667,466 +12961,216.01666666666665,1639,467 +12962,216.03333333333333,1610,468 +12963,216.04999999999998,1581,469 +12964,216.06666666666666,1551,470 +12965,216.08333333333334,1521,470 +12966,216.1,1490,471 +12967,216.11666666666667,1460,471 +12968,216.13333333333333,1429,471 +12969,216.15,1400,471 +12970,216.16666666666666,1370,471 +12971,216.18333333333334,1340,470 +12972,216.2,1312,469 +12973,216.21666666666667,1284,468 +12974,216.23333333333332,1257,467 +12975,216.25,1232,466 +12976,216.26666666666665,1207,464 +12977,216.28333333333333,1183,462 +12978,216.29999999999998,1160,461 +12979,216.31666666666666,1139,459 +12980,216.33333333333334,1119,458 +12981,216.35,1101,456 +12982,216.36666666666667,1085,454 +12983,216.38333333333333,1070,453 +12984,216.4,1057,452 +12985,216.41666666666666,1045,451 +12986,216.43333333333334,1036,450 +12987,216.45,1029,449 +12988,216.46666666666667,1023,449 +12989,216.48333333333332,1019,449 +12990,216.5,1019,449 +12991,216.51666666666665,1019,449 +12992,216.53333333333333,1020,449 +12993,216.54999999999998,1024,449 +12994,216.56666666666666,1031,450 +12995,216.58333333333334,1039,451 +12996,216.6,1048,452 +12997,216.61666666666667,1061,453 +12998,216.63333333333333,1074,455 +12999,216.65,1090,457 +13000,216.66666666666666,1107,458 +13001,216.68333333333334,1126,460 +13002,216.7,1146,461 +13003,216.71666666666667,1168,463 +13004,216.73333333333332,1191,464 +13005,216.75,1216,466 +13006,216.76666666666665,1242,467 +13007,216.78333333333333,1268,468 +13008,216.79999999999998,1296,469 +13009,216.81666666666666,1324,471 +13010,216.83333333333334,1353,471 +13011,216.85,1383,471 +13012,216.86666666666667,1413,472 +13013,216.88333333333333,1444,472 +13014,216.9,1475,472 +13015,216.91666666666666,1506,472 +13016,216.93333333333334,1536,471 +13017,216.95,1566,470 +13018,216.96666666666667,1596,470 +13019,216.98333333333332,1626,469 +13020,217.0,1655,467 +13021,217.01666666666665,1683,466 +13022,217.03333333333333,1710,464 +13023,217.04999999999998,1737,463 +13024,217.06666666666666,1762,461 +13025,217.08333333333334,1786,459 +13026,217.1,1808,457 +13027,217.11666666666667,1829,455 +13028,217.13333333333333,1849,453 +13029,217.15,1866,451 +13030,217.16666666666666,1882,450 +13031,217.18333333333334,1897,448 +13032,217.2,1909,446 +13033,217.21666666666667,1920,445 +13034,217.23333333333332,1928,444 +13035,217.25,1934,443 +13036,217.26666666666665,1938,443 +13037,217.28333333333333,1939,443 +13038,217.29999999999998,1939,443 +13039,217.31666666666666,1939,443 +13040,217.33333333333334,1935,443 +13041,217.35,1929,444 +13042,217.36666666666667,1921,445 +13043,217.38333333333333,1911,446 +13044,217.4,1900,447 +13045,217.41666666666666,1886,449 +13046,217.43333333333334,1871,450 +13047,217.45,1853,452 +13048,217.46666666666667,1835,453 +13049,217.48333333333332,1814,455 +13050,217.5,1793,457 +13051,217.51666666666665,1770,459 +13052,217.53333333333333,1745,461 +13053,217.54999999999998,1720,463 +13054,217.56666666666666,1693,464 +13055,217.58333333333334,1666,466 +13056,217.6,1638,467 +13057,217.61666666666667,1609,468 +13058,217.63333333333333,1579,469 +13059,217.65,1549,470 +13060,217.66666666666666,1519,470 +13061,217.68333333333334,1489,471 +13062,217.7,1459,471 +13063,217.71666666666667,1428,471 +13064,217.73333333333332,1399,470 +13065,217.75,1369,470 +13066,217.76666666666665,1339,470 +13067,217.78333333333333,1311,469 +13068,217.79999999999998,1283,468 +13069,217.81666666666666,1257,467 +13070,217.83333333333334,1231,466 +13071,217.85,1206,464 +13072,217.86666666666667,1183,462 +13073,217.88333333333333,1160,461 +13074,217.9,1139,459 +13075,217.91666666666666,1120,458 +13076,217.93333333333334,1102,456 +13077,217.95,1085,455 +13078,217.96666666666667,1071,453 +13079,217.98333333333332,1058,452 +13080,218.0,1047,451 +13081,218.01666666666665,1037,450 +13082,218.03333333333333,1030,450 +13083,218.04999999999998,1024,449 +13084,218.06666666666666,1020,449 +13085,218.08333333333334,1020,449 +13086,218.1,1020,449 +13087,218.11666666666667,1021,449 +13088,218.13333333333333,1026,450 +13089,218.15,1032,450 +13090,218.16666666666666,1040,451 +13091,218.18333333333334,1049,453 +13092,218.2,1061,454 +13093,218.21666666666667,1075,455 +13094,218.23333333333332,1090,457 +13095,218.25,1107,458 +13096,218.26666666666665,1126,460 +13097,218.28333333333333,1147,462 +13098,218.29999999999998,1168,463 +13099,218.31666666666666,1191,465 +13100,218.33333333333334,1216,467 +13101,218.35,1242,468 +13102,218.36666666666667,1268,469 +13103,218.38333333333333,1295,470 +13104,218.4,1324,471 +13105,218.41666666666666,1353,471 +13106,218.43333333333334,1383,472 +13107,218.45,1413,472 +13108,218.46666666666667,1444,472 +13109,218.48333333333332,1474,472 +13110,218.5,1505,471 +13111,218.51666666666665,1536,471 +13112,218.53333333333333,1566,471 +13113,218.54999999999998,1596,470 +13114,218.56666666666666,1625,469 +13115,218.58333333333334,1654,468 +13116,218.6,1682,466 +13117,218.61666666666667,1710,465 +13118,218.63333333333333,1736,463 +13119,218.65,1761,461 +13120,218.66666666666666,1784,459 +13121,218.68333333333334,1807,457 +13122,218.7,1828,455 +13123,218.71666666666667,1847,453 +13124,218.73333333333332,1865,451 +13125,218.75,1881,450 +13126,218.76666666666665,1895,448 +13127,218.78333333333333,1907,447 +13128,218.79999999999998,1917,445 +13129,218.81666666666666,1926,444 +13130,218.83333333333334,1932,444 +13131,218.85,1936,443 +13132,218.86666666666667,1937,443 +13133,218.88333333333333,1937,443 +13134,218.9,1937,443 +13135,218.91666666666666,1933,443 +13136,218.93333333333334,1927,444 +13137,218.95,1919,445 +13138,218.96666666666667,1909,446 +13139,218.98333333333332,1897,447 +13140,219.0,1884,448 +13141,219.01666666666665,1868,450 +13142,219.03333333333333,1851,452 +13143,219.04999999999998,1832,453 +13144,219.06666666666666,1812,455 +13145,219.08333333333334,1790,457 +13146,219.1,1767,459 +13147,219.11666666666667,1742,460 +13148,219.13333333333333,1717,462 +13149,219.15,1690,464 +13150,219.16666666666666,1663,465 +13151,219.18333333333334,1634,466 +13152,219.2,1606,468 +13153,219.21666666666667,1576,469 +13154,219.23333333333332,1546,469 +13155,219.25,1517,469 +13156,219.26666666666665,1487,470 +13157,219.28333333333333,1456,470 +13158,219.29999999999998,1426,470 +13159,219.31666666666666,1397,470 +13160,219.33333333333334,1367,469 +13161,219.35,1338,469 +13162,219.36666666666667,1310,468 +13163,219.38333333333333,1283,467 +13164,219.4,1256,466 +13165,219.41666666666666,1231,465 +13166,219.43333333333334,1206,464 +13167,219.45,1182,462 +13168,219.46666666666667,1160,461 +13169,219.48333333333332,1139,459 +13170,219.5,1120,458 +13171,219.51666666666665,1102,456 +13172,219.53333333333333,1086,455 +13173,219.54999999999998,1071,454 +13174,219.56666666666666,1059,453 +13175,219.58333333333334,1047,451 +13176,219.6,1038,450 +13177,219.61666666666667,1031,450 +13178,219.63333333333333,1026,449 +13179,219.65,1022,449 +13180,219.66666666666666,1022,449 +13181,219.68333333333334,1022,449 +13182,219.7,1023,449 +13183,219.71666666666667,1028,450 +13184,219.73333333333332,1034,450 +13185,219.75,1042,451 +13186,219.76666666666665,1052,452 +13187,219.78333333333333,1064,454 +13188,219.79999999999998,1078,455 +13189,219.81666666666666,1093,457 +13190,219.83333333333334,1110,458 +13191,219.85,1129,460 +13192,219.86666666666667,1149,461 +13193,219.88333333333333,1171,463 +13194,219.9,1194,465 +13195,219.91666666666666,1219,466 +13196,219.93333333333334,1245,467 +13197,219.95,1271,468 +13198,219.96666666666667,1298,469 +13199,219.98333333333332,1327,470 +13200,220.0,1356,471 +13201,220.01666666666665,1385,471 +13202,220.03333333333333,1415,471 +13203,220.04999999999998,1446,471 +13204,220.06666666666666,1476,471 +13205,220.08333333333334,1507,471 +13206,220.1,1538,471 +13207,220.11666666666667,1568,470 +13208,220.13333333333333,1598,470 +13209,220.15,1627,469 +13210,220.16666666666666,1656,467 +13211,220.18333333333334,1684,466 +13212,220.2,1711,464 +13213,220.21666666666667,1737,462 +13214,220.23333333333332,1762,460 +13215,220.25,1785,458 +13216,220.26666666666665,1808,457 +13217,220.28333333333333,1828,455 +13218,220.29999999999998,1847,453 +13219,220.31666666666666,1865,451 +13220,220.33333333333334,1881,449 +13221,220.35,1894,448 +13222,220.36666666666667,1907,447 +13223,220.38333333333333,1917,445 +13224,220.4,1925,444 +13225,220.41666666666666,1931,443 +13226,220.43333333333334,1935,443 +13227,220.45,1935,443 +13228,220.46666666666667,1935,443 +13229,220.48333333333332,1935,443 +13230,220.5,1931,443 +13231,220.51666666666665,1925,444 +13232,220.53333333333333,1917,445 +13233,220.54999999999998,1907,446 +13234,220.56666666666666,1895,447 +13235,220.58333333333334,1881,449 +13236,220.6,1866,450 +13237,220.61666666666667,1848,452 +13238,220.63333333333333,1830,453 +13239,220.65,1809,455 +13240,220.66666666666666,1787,457 +13241,220.68333333333334,1764,459 +13242,220.7,1740,461 +13243,220.71666666666667,1715,463 +13244,220.73333333333332,1688,464 +13245,220.75,1661,466 +13246,220.76666666666665,1633,467 +13247,220.78333333333333,1604,468 +13248,220.79999999999998,1575,469 +13249,220.81666666666666,1545,470 +13250,220.83333333333334,1515,470 +13251,220.85,1485,471 +13252,220.86666666666667,1455,471 +13253,220.88333333333333,1424,471 +13254,220.9,1395,471 +13255,220.91666666666666,1366,470 +13256,220.93333333333334,1336,470 +13257,220.95,1309,469 +13258,220.96666666666667,1281,468 +13259,220.98333333333332,1255,467 +13260,221.0,1230,466 +13261,221.01666666666665,1205,464 +13262,221.03333333333333,1181,463 +13263,221.04999999999998,1159,461 +13264,221.06666666666666,1139,459 +13265,221.08333333333334,1119,458 +13266,221.1,1102,456 +13267,221.11666666666667,1086,455 +13268,221.13333333333333,1071,454 +13269,221.15,1058,452 +13270,221.16666666666666,1048,451 +13271,221.18333333333334,1039,450 +13272,221.2,1031,450 +13273,221.21666666666667,1026,450 +13274,221.23333333333332,1023,449 +13275,221.25,1023,449 +13276,221.26666666666665,1023,449 +13277,221.28333333333333,1024,449 +13278,221.29999999999998,1029,450 +13279,221.31666666666666,1036,451 +13280,221.33333333333334,1044,452 +13281,221.35,1054,453 +13282,221.36666666666667,1066,454 +13283,221.38333333333333,1080,455 +13284,221.4,1096,457 +13285,221.41666666666666,1113,459 +13286,221.43333333333334,1132,460 +13287,221.45,1152,462 +13288,221.46666666666667,1174,464 +13289,221.48333333333332,1197,465 +13290,221.5,1222,467 +13291,221.51666666666665,1248,468 +13292,221.53333333333333,1274,469 +13293,221.54999999999998,1302,470 +13294,221.56666666666666,1330,471 +13295,221.58333333333334,1358,471 +13296,221.6,1388,472 +13297,221.61666666666667,1418,472 +13298,221.63333333333333,1449,472 +13299,221.65,1479,472 +13300,221.66666666666666,1510,472 +13301,221.68333333333334,1540,471 +13302,221.7,1570,471 +13303,221.71666666666667,1600,470 +13304,221.73333333333332,1629,469 +13305,221.75,1658,468 +13306,221.76666666666665,1686,466 +13307,221.78333333333333,1713,465 +13308,221.79999999999998,1738,463 +13309,221.81666666666666,1763,461 +13310,221.83333333333334,1787,459 +13311,221.85,1809,457 +13312,221.86666666666667,1829,455 +13313,221.88333333333333,1848,453 +13314,221.9,1865,451 +13315,221.91666666666666,1881,449 +13316,221.93333333333334,1895,448 +13317,221.95,1907,447 +13318,221.96666666666667,1916,445 +13319,221.98333333333332,1925,444 +13320,222.0,1931,443 +13321,222.01666666666665,1935,443 +13322,222.03333333333333,1935,443 +13323,222.04999999999998,1935,443 +13324,222.06666666666666,1934,443 +13325,222.08333333333334,1930,443 +13326,222.1,1924,444 +13327,222.11666666666667,1916,445 +13328,222.13333333333333,1905,446 +13329,222.15,1893,447 +13330,222.16666666666666,1880,449 +13331,222.18333333333334,1864,450 +13332,222.2,1847,452 +13333,222.21666666666667,1828,454 +13334,222.23333333333332,1807,456 +13335,222.25,1786,457 +13336,222.26666666666665,1762,459 +13337,222.28333333333333,1738,461 +13338,222.29999999999998,1713,463 +13339,222.31666666666666,1686,465 +13340,222.33333333333334,1658,466 +13341,222.35,1630,467 +13342,222.36666666666667,1601,468 +13343,222.38333333333333,1572,469 +13344,222.4,1542,470 +13345,222.41666666666666,1512,470 +13346,222.43333333333334,1482,471 +13347,222.45,1452,471 +13348,222.46666666666667,1421,471 +13349,222.48333333333332,1392,471 +13350,222.5,1362,470 +13351,222.51666666666665,1334,470 +13352,222.53333333333333,1306,469 +13353,222.54999999999998,1279,468 +13354,222.56666666666666,1253,466 +13355,222.58333333333334,1228,465 +13356,222.6,1204,464 +13357,222.61666666666667,1180,462 +13358,222.63333333333333,1158,461 +13359,222.65,1138,459 +13360,222.66666666666666,1119,457 +13361,222.68333333333334,1101,456 +13362,222.7,1085,454 +13363,222.71666666666667,1071,453 +13364,222.73333333333332,1058,452 +13365,222.75,1048,451 +13366,222.76666666666665,1039,450 +13367,222.78333333333333,1032,450 +13368,222.79999999999998,1026,449 +13369,222.81666666666666,1023,449 +13370,222.83333333333334,1023,449 +13371,222.85,1023,449 +13372,222.86666666666667,1026,449 +13373,222.88333333333333,1031,450 +13374,222.9,1037,450 +13375,222.91666666666666,1046,451 +13376,222.93333333333334,1056,452 +13377,222.95,1068,453 +13378,222.96666666666667,1082,455 +13379,222.98333333333332,1097,456 +13380,223.0,1114,458 +13381,223.01666666666665,1133,459 +13382,223.03333333333333,1154,461 +13383,223.04999999999998,1175,462 +13384,223.06666666666666,1198,464 +13385,223.08333333333334,1223,466 +13386,223.1,1249,467 +13387,223.11666666666667,1276,468 +13388,223.13333333333333,1303,469 +13389,223.15,1331,470 +13390,223.16666666666666,1360,470 +13391,223.18333333333334,1390,470 +13392,223.2,1420,471 +13393,223.21666666666667,1450,471 +13394,223.23333333333332,1481,471 +13395,223.25,1512,470 +13396,223.26666666666665,1542,470 +13397,223.28333333333333,1572,470 +13398,223.29999999999998,1601,469 +13399,223.31666666666666,1631,468 +13400,223.33333333333334,1659,467 +13401,223.35,1687,465 +13402,223.36666666666667,1713,464 +13403,223.38333333333333,1739,462 +13404,223.4,1764,460 +13405,223.41666666666666,1787,458 +13406,223.43333333333334,1809,456 +13407,223.45,1829,455 +13408,223.46666666666667,1848,453 +13409,223.48333333333332,1865,451 +13410,223.5,1880,449 +13411,223.51666666666665,1894,448 +13412,223.53333333333333,1906,446 +13413,223.54999999999998,1916,445 +13414,223.56666666666666,1923,444 +13415,223.58333333333334,1929,444 +13416,223.6,1933,443 +13417,223.61666666666667,1933,443 +13418,223.63333333333333,1933,443 +13419,223.65,1932,443 +13420,223.66666666666666,1928,444 +13421,223.68333333333334,1921,444 +13422,223.7,1913,445 +13423,223.71666666666667,1903,446 +13424,223.73333333333332,1890,447 +13425,223.75,1876,449 +13426,223.76666666666665,1861,450 +13427,223.78333333333333,1843,452 +13428,223.79999999999998,1825,454 +13429,223.81666666666666,1804,456 +13430,223.83333333333334,1782,457 +13431,223.85,1759,459 +13432,223.86666666666667,1735,461 +13433,223.88333333333333,1709,463 +13434,223.9,1683,465 +13435,223.91666666666666,1656,466 +13436,223.93333333333334,1628,467 +13437,223.95,1599,468 +13438,223.96666666666667,1570,469 +13439,223.98333333333332,1540,470 +13440,224.0,1510,470 +13441,224.01666666666665,1480,470 +13442,224.03333333333333,1450,470 +13443,224.04999999999998,1421,470 +13444,224.06666666666666,1391,470 +13445,224.08333333333334,1362,470 +13446,224.1,1333,470 +13447,224.11666666666667,1305,469 +13448,224.13333333333333,1278,468 +13449,224.15,1252,467 +13450,224.16666666666666,1227,466 +13451,224.18333333333334,1203,464 +13452,224.2,1179,463 +13453,224.21666666666667,1158,461 +13454,224.23333333333332,1137,460 +13455,224.25,1119,458 +13456,224.26666666666665,1101,456 +13457,224.28333333333333,1085,455 +13458,224.29999999999998,1071,454 +13459,224.31666666666666,1059,452 +13460,224.33333333333334,1048,451 +13461,224.35,1040,450 +13462,224.36666666666667,1033,450 +13463,224.38333333333333,1028,450 +13464,224.4,1025,449 +13465,224.41666666666666,1025,449 +13466,224.43333333333334,1025,449 +13467,224.45,1027,450 +13468,224.46666666666667,1032,450 +13469,224.48333333333332,1039,451 +13470,224.5,1047,452 +13471,224.51666666666665,1058,453 +13472,224.53333333333333,1070,454 +13473,224.54999999999998,1084,456 +13474,224.56666666666666,1100,457 +13475,224.58333333333334,1117,459 +13476,224.6,1136,460 +13477,224.61666666666667,1157,462 +13478,224.63333333333333,1179,464 +13479,224.65,1202,466 +13480,224.66666666666666,1227,467 +13481,224.68333333333334,1252,468 +13482,224.7,1278,469 +13483,224.71666666666667,1306,470 +13484,224.73333333333332,1334,471 +13485,224.75,1363,471 +13486,224.76666666666665,1393,471 +13487,224.78333333333333,1423,472 +13488,224.79999999999998,1453,472 +13489,224.81666666666666,1483,472 +13490,224.83333333333334,1514,471 +13491,224.85,1544,471 +13492,224.86666666666667,1574,470 +13493,224.88333333333333,1603,469 +13494,224.9,1632,468 +13495,224.91666666666666,1661,467 +13496,224.93333333333334,1688,466 +13497,224.95,1715,464 +13498,224.96666666666667,1740,462 +13499,224.98333333333332,1764,461 +13500,225.0,1787,459 +13501,225.01666666666665,1809,457 +13502,225.03333333333333,1829,455 +13503,225.04999999999998,1848,453 +13504,225.06666666666666,1865,451 +13505,225.08333333333334,1880,450 +13506,225.1,1893,448 +13507,225.11666666666667,1905,447 +13508,225.13333333333333,1914,446 +13509,225.15,1922,445 +13510,225.16666666666666,1928,444 +13511,225.18333333333334,1931,444 +13512,225.2,1931,444 +13513,225.21666666666667,1931,444 +13514,225.23333333333332,1930,444 +13515,225.25,1926,444 +13516,225.26666666666665,1919,445 +13517,225.28333333333333,1911,446 +13518,225.29999999999998,1901,447 +13519,225.31666666666666,1888,448 +13520,225.33333333333334,1875,450 +13521,225.35,1859,451 +13522,225.36666666666667,1841,453 +13523,225.38333333333333,1822,455 +13524,225.4,1802,456 +13525,225.41666666666666,1780,458 +13526,225.43333333333334,1757,460 +13527,225.45,1733,462 +13528,225.46666666666667,1707,464 +13529,225.48333333333332,1681,465 +13530,225.5,1653,466 +13531,225.51666666666665,1626,468 +13532,225.53333333333333,1597,469 +13533,225.54999999999998,1568,469 +13534,225.56666666666666,1538,470 +13535,225.58333333333334,1509,470 +13536,225.6,1479,471 +13537,225.61666666666667,1449,471 +13538,225.63333333333333,1419,471 +13539,225.65,1390,470 +13540,225.66666666666666,1361,470 +13541,225.68333333333334,1332,470 +13542,225.7,1304,469 +13543,225.71666666666667,1278,467 +13544,225.73333333333332,1251,466 +13545,225.75,1226,465 +13546,225.76666666666665,1202,464 +13547,225.78333333333333,1178,463 +13548,225.79999999999998,1157,461 +13549,225.81666666666666,1136,460 +13550,225.83333333333334,1118,458 +13551,225.85,1100,457 +13552,225.86666666666667,1085,455 +13553,225.88333333333333,1071,454 +13554,225.9,1059,453 +13555,225.91666666666666,1048,452 +13556,225.93333333333334,1040,451 +13557,225.95,1033,450 +13558,225.96666666666667,1028,450 +13559,225.98333333333332,1026,449 +13560,226.0,1026,449 +13561,226.01666666666665,1026,449 +13562,226.03333333333333,1028,450 +13563,226.04999999999998,1033,450 +13564,226.06666666666666,1040,451 +13565,226.08333333333334,1049,452 +13566,226.1,1059,453 +13567,226.11666666666667,1072,454 +13568,226.13333333333333,1086,456 +13569,226.15,1102,457 +13570,226.16666666666666,1119,459 +13571,226.18333333333334,1138,461 +13572,226.2,1159,462 +13573,226.21666666666667,1181,464 +13574,226.23333333333332,1204,465 +13575,226.25,1229,467 +13576,226.26666666666665,1254,468 +13577,226.28333333333333,1281,469 +13578,226.29999999999998,1308,470 +13579,226.31666666666666,1336,470 +13580,226.33333333333334,1365,471 +13581,226.35,1395,471 +13582,226.36666666666667,1424,471 +13583,226.38333333333333,1454,471 +13584,226.4,1485,471 +13585,226.41666666666666,1514,471 +13586,226.43333333333334,1544,470 +13587,226.45,1574,470 +13588,226.46666666666667,1604,469 +13589,226.48333333333332,1632,468 +13590,226.5,1660,466 +13591,226.51666666666665,1688,465 +13592,226.53333333333333,1714,463 +13593,226.54999999999998,1740,462 +13594,226.56666666666666,1764,460 +13595,226.58333333333334,1787,458 +13596,226.6,1808,456 +13597,226.61666666666667,1828,454 +13598,226.63333333333333,1847,452 +13599,226.65,1864,450 +13600,226.66666666666666,1879,449 +13601,226.68333333333334,1892,447 +13602,226.7,1903,446 +13603,226.71666666666667,1913,445 +13604,226.73333333333332,1920,444 +13605,226.75,1926,443 +13606,226.76666666666665,1929,443 +13607,226.78333333333333,1929,443 +13608,226.79999999999998,1929,443 +13609,226.81666666666666,1928,443 +13610,226.83333333333334,1924,444 +13611,226.85,1917,445 +13612,226.86666666666667,1909,446 +13613,226.88333333333333,1899,447 +13614,226.9,1887,448 +13615,226.91666666666666,1873,450 +13616,226.93333333333334,1857,451 +13617,226.95,1840,453 +13618,226.96666666666667,1821,455 +13619,226.98333333333332,1800,456 +13620,227.0,1778,458 +13621,227.01666666666665,1755,460 +13622,227.03333333333333,1730,462 +13623,227.04999999999998,1705,463 +13624,227.06666666666666,1678,465 +13625,227.08333333333334,1651,466 +13626,227.1,1623,468 +13627,227.11666666666667,1595,468 +13628,227.13333333333333,1566,469 +13629,227.15,1537,470 +13630,227.16666666666666,1507,470 +13631,227.18333333333334,1477,470 +13632,227.2,1448,470 +13633,227.21666666666667,1418,470 +13634,227.23333333333332,1389,470 +13635,227.25,1360,470 +13636,227.26666666666665,1331,470 +13637,227.28333333333333,1303,469 +13638,227.29999999999998,1277,468 +13639,227.31666666666666,1251,467 +13640,227.33333333333334,1226,465 +13641,227.35,1202,464 +13642,227.36666666666667,1179,462 +13643,227.38333333333333,1158,461 +13644,227.4,1138,459 +13645,227.41666666666666,1119,458 +13646,227.43333333333334,1102,456 +13647,227.45,1086,455 +13648,227.46666666666667,1072,454 +13649,227.48333333333332,1060,453 +13650,227.5,1050,452 +13651,227.51666666666665,1042,451 +13652,227.53333333333333,1035,450 +13653,227.54999999999998,1030,450 +13654,227.56666666666666,1028,450 +13655,227.58333333333334,1028,450 +13656,227.6,1028,450 +13657,227.61666666666667,1031,450 +13658,227.63333333333333,1036,451 +13659,227.65,1043,452 +13660,227.66666666666666,1051,453 +13661,227.68333333333334,1062,454 +13662,227.7,1074,455 +13663,227.71666666666667,1089,456 +13664,227.73333333333332,1105,458 +13665,227.75,1122,459 +13666,227.76666666666665,1141,461 +13667,227.78333333333333,1162,463 +13668,227.79999999999998,1183,464 +13669,227.81666666666666,1207,466 +13670,227.83333333333334,1231,467 +13671,227.85,1257,468 +13672,227.86666666666667,1283,469 +13673,227.88333333333333,1311,470 +13674,227.9,1338,471 +13675,227.91666666666666,1368,471 +13676,227.93333333333334,1397,471 +13677,227.95,1427,472 +13678,227.96666666666667,1457,472 +13679,227.98333333333332,1487,472 +13680,228.0,1517,471 +13681,228.01666666666665,1547,471 +13682,228.03333333333333,1577,470 +13683,228.04999999999998,1606,469 +13684,228.06666666666666,1635,468 +13685,228.08333333333334,1663,467 +13686,228.1,1690,466 +13687,228.11666666666667,1716,464 +13688,228.13333333333333,1741,462 +13689,228.15,1765,460 +13690,228.16666666666666,1788,458 +13691,228.18333333333334,1809,456 +13692,228.2,1829,455 +13693,228.21666666666667,1847,453 +13694,228.23333333333332,1864,451 +13695,228.25,1879,450 +13696,228.26666666666665,1892,448 +13697,228.28333333333333,1903,447 +13698,228.29999999999998,1913,446 +13699,228.31666666666666,1920,445 +13700,228.33333333333334,1925,444 +13701,228.35,1929,444 +13702,228.36666666666667,1929,444 +13703,228.38333333333333,1929,444 +13704,228.4,1927,444 +13705,228.41666666666666,1922,445 +13706,228.43333333333334,1915,445 +13707,228.45,1907,446 +13708,228.46666666666667,1896,447 +13709,228.48333333333332,1884,449 +13710,228.5,1870,450 +13711,228.51666666666665,1854,452 +13712,228.53333333333333,1837,453 +13713,228.54999999999998,1818,455 +13714,228.56666666666666,1797,457 +13715,228.58333333333334,1776,459 +13716,228.6,1752,461 +13717,228.61666666666667,1728,462 +13718,228.63333333333333,1703,464 +13719,228.65,1677,465 +13720,228.66666666666666,1649,467 +13721,228.68333333333334,1621,468 +13722,228.7,1593,469 +13723,228.71666666666667,1564,469 +13724,228.73333333333332,1535,470 +13725,228.75,1505,471 +13726,228.76666666666665,1475,471 +13727,228.78333333333333,1446,471 +13728,228.79999999999998,1416,471 +13729,228.81666666666666,1387,470 +13730,228.83333333333334,1358,470 +13731,228.85,1330,470 +13732,228.86666666666667,1303,469 +13733,228.88333333333333,1276,468 +13734,228.9,1250,467 +13735,228.91666666666666,1225,465 +13736,228.93333333333334,1201,464 +13737,228.95,1178,462 +13738,228.96666666666667,1157,461 +13739,228.98333333333332,1137,459 +13740,229.0,1118,458 +13741,229.01666666666665,1101,457 +13742,229.03333333333333,1085,455 +13743,229.04999999999998,1072,454 +13744,229.06666666666666,1060,453 +13745,229.08333333333334,1050,452 +13746,229.1,1042,451 +13747,229.11666666666667,1035,450 +13748,229.13333333333333,1031,450 +13749,229.15,1028,450 +13750,229.16666666666666,1028,450 +13751,229.18333333333334,1028,450 +13752,229.2,1032,450 +13753,229.21666666666667,1037,451 +13754,229.23333333333332,1044,451 +13755,229.25,1053,452 +13756,229.26666666666665,1063,454 +13757,229.28333333333333,1076,455 +13758,229.29999999999998,1090,456 +13759,229.31666666666666,1106,458 +13760,229.33333333333334,1124,459 +13761,229.35,1143,461 +13762,229.36666666666667,1163,462 +13763,229.38333333333333,1185,464 +13764,229.4,1209,466 +13765,229.41666666666666,1233,467 +13766,229.43333333333334,1259,468 +13767,229.45,1285,469 +13768,229.46666666666667,1312,470 +13769,229.48333333333332,1340,470 +13770,229.5,1369,471 +13771,229.51666666666665,1399,471 +13772,229.53333333333333,1428,471 +13773,229.54999999999998,1458,471 +13774,229.56666666666666,1488,471 +13775,229.58333333333334,1518,471 +13776,229.6,1547,470 +13777,229.61666666666667,1577,470 +13778,229.63333333333333,1606,469 +13779,229.65,1635,468 +13780,229.66666666666666,1662,466 +13781,229.68333333333334,1690,465 +13782,229.7,1716,463 +13783,229.71666666666667,1741,462 +13784,229.73333333333332,1764,460 +13785,229.75,1787,458 +13786,229.76666666666665,1809,456 +13787,229.78333333333333,1828,454 +13788,229.79999999999998,1846,452 +13789,229.81666666666666,1863,451 +13790,229.83333333333334,1878,449 +13791,229.85,1891,447 +13792,229.86666666666667,1902,446 +13793,229.88333333333333,1911,445 +13794,229.9,1918,444 +13795,229.91666666666666,1924,444 +13796,229.93333333333334,1927,443 +13797,229.95,1927,443 +13798,229.96666666666667,1927,443 +13799,229.98333333333332,1924,444 +13800,230.0,1920,444 +13801,230.01666666666665,1913,445 +13802,230.03333333333333,1905,446 +13803,230.04999999999998,1894,447 +13804,230.06666666666666,1882,448 +13805,230.08333333333334,1868,450 +13806,230.1,1852,452 +13807,230.11666666666667,1835,453 +13808,230.13333333333333,1815,455 +13809,230.15,1795,456 +13810,230.16666666666666,1773,458 +13811,230.18333333333334,1750,460 +13812,230.2,1725,462 +13813,230.21666666666667,1700,463 +13814,230.23333333333332,1673,465 +13815,230.25,1646,466 +13816,230.26666666666665,1618,467 +13817,230.28333333333333,1590,469 +13818,230.29999999999998,1561,469 +13819,230.31666666666666,1532,470 +13820,230.33333333333334,1502,470 +13821,230.35,1473,470 +13822,230.36666666666667,1443,470 +13823,230.38333333333333,1414,470 +13824,230.4,1385,470 +13825,230.41666666666666,1356,470 +13826,230.43333333333334,1328,469 +13827,230.45,1301,469 +13828,230.46666666666667,1274,468 +13829,230.48333333333332,1249,466 +13830,230.5,1224,465 +13831,230.51666666666665,1200,464 +13832,230.53333333333333,1178,462 +13833,230.54999999999998,1157,460 +13834,230.56666666666666,1137,459 +13835,230.58333333333334,1118,458 +13836,230.6,1101,456 +13837,230.61666666666667,1086,455 +13838,230.63333333333333,1072,454 +13839,230.65,1061,453 +13840,230.66666666666666,1051,451 +13841,230.68333333333334,1043,451 +13842,230.7,1036,450 +13843,230.71666666666667,1032,450 +13844,230.73333333333332,1030,450 +13845,230.75,1030,450 +13846,230.76666666666665,1030,450 +13847,230.78333333333333,1033,450 +13848,230.79999999999998,1038,451 +13849,230.81666666666666,1046,452 +13850,230.83333333333334,1055,453 +13851,230.85,1065,454 +13852,230.86666666666667,1078,455 +13853,230.88333333333333,1092,457 +13854,230.9,1108,458 +13855,230.91666666666666,1126,460 +13856,230.93333333333334,1145,461 +13857,230.95,1166,463 +13858,230.96666666666667,1188,464 +13859,230.98333333333332,1211,466 +13860,231.0,1236,467 +13861,231.01666666666665,1261,468 +13862,231.03333333333333,1287,469 +13863,231.04999999999998,1315,470 +13864,231.06666666666666,1342,471 +13865,231.08333333333334,1371,471 +13866,231.1,1402,471 +13867,231.11666666666667,1431,471 +13868,231.13333333333333,1461,471 +13869,231.15,1491,471 +13870,231.16666666666666,1521,471 +13871,231.18333333333334,1551,471 +13872,231.2,1580,470 +13873,231.21666666666667,1609,469 +13874,231.23333333333332,1637,468 +13875,231.25,1665,467 +13876,231.26666666666665,1692,465 +13877,231.28333333333333,1718,464 +13878,231.29999999999998,1743,462 +13879,231.31666666666666,1767,460 +13880,231.33333333333334,1789,458 +13881,231.35,1810,456 +13882,231.36666666666667,1830,454 +13883,231.38333333333333,1847,453 +13884,231.4,1864,451 +13885,231.41666666666666,1878,449 +13886,231.43333333333334,1891,448 +13887,231.45,1902,447 +13888,231.46666666666667,1911,446 +13889,231.48333333333332,1918,445 +13890,231.5,1923,444 +13891,231.51666666666665,1926,444 +13892,231.53333333333333,1926,444 +13893,231.54999999999998,1926,444 +13894,231.56666666666666,1923,444 +13895,231.58333333333334,1918,444 +13896,231.6,1911,445 +13897,231.61666666666667,1903,446 +13898,231.63333333333333,1892,447 +13899,231.65,1879,449 +13900,231.66666666666666,1865,450 +13901,231.68333333333334,1849,452 +13902,231.7,1832,453 +13903,231.71666666666667,1813,455 +13904,231.73333333333332,1792,457 +13905,231.75,1770,459 +13906,231.76666666666665,1747,460 +13907,231.78333333333333,1723,462 +13908,231.79999999999998,1697,464 +13909,231.81666666666666,1671,465 +13910,231.83333333333334,1644,466 +13911,231.85,1616,468 +13912,231.86666666666667,1588,469 +13913,231.88333333333333,1559,469 +13914,231.9,1530,470 +13915,231.91666666666666,1500,470 +13916,231.93333333333334,1471,470 +13917,231.95,1441,470 +13918,231.96666666666667,1412,470 +13919,231.98333333333332,1383,470 +13920,232.0,1354,470 +13921,232.01666666666665,1327,469 +13922,232.03333333333333,1300,468 +13923,232.04999999999998,1273,467 +13924,232.06666666666666,1248,466 +13925,232.08333333333334,1223,465 +13926,232.1,1199,464 +13927,232.11666666666667,1177,462 +13928,232.13333333333333,1156,460 +13929,232.15,1136,459 +13930,232.16666666666666,1117,458 +13931,232.18333333333334,1100,456 +13932,232.2,1085,455 +13933,232.21666666666667,1072,454 +13934,232.23333333333332,1061,453 +13935,232.25,1051,452 +13936,232.26666666666665,1043,451 +13937,232.28333333333333,1037,450 +13938,232.29999999999998,1033,450 +13939,232.31666666666666,1031,450 +13940,232.33333333333334,1031,450 +13941,232.35,1031,450 +13942,232.36666666666667,1035,451 +13943,232.38333333333333,1040,451 +13944,232.4,1047,452 +13945,232.41666666666666,1056,453 +13946,232.43333333333334,1067,454 +13947,232.45,1080,455 +13948,232.46666666666667,1094,457 +13949,232.48333333333332,1110,458 +13950,232.5,1128,459 +13951,232.51666666666665,1147,461 +13952,232.53333333333333,1168,462 +13953,232.54999999999998,1190,464 +13954,232.56666666666666,1214,466 +13955,232.58333333333334,1238,467 +13956,232.6,1264,468 +13957,232.61666666666667,1290,469 +13958,232.63333333333333,1318,470 +13959,232.65,1345,471 +13960,232.66666666666666,1374,471 +13961,232.68333333333334,1404,471 +13962,232.7,1433,471 +13963,232.71666666666667,1463,471 +13964,232.73333333333332,1492,471 +13965,232.75,1522,471 +13966,232.76666666666665,1552,470 +13967,232.78333333333333,1581,469 +13968,232.79999999999998,1610,469 +13969,232.81666666666666,1638,468 +13970,232.83333333333334,1665,466 +13971,232.85,1692,465 +13972,232.86666666666667,1718,463 +13973,232.88333333333333,1742,461 +13974,232.9,1766,459 +13975,232.91666666666666,1788,458 +13976,232.93333333333334,1809,456 +13977,232.95,1829,454 +13978,232.96666666666667,1846,452 +13979,232.98333333333332,1862,450 +13980,233.0,1877,449 +13981,233.01666666666665,1889,447 +13982,233.03333333333333,1900,446 +13983,233.04999999999998,1909,445 +13984,233.06666666666666,1916,444 +13985,233.08333333333334,1921,444 +13986,233.1,1924,444 +13987,233.11666666666667,1924,444 +13988,233.13333333333333,1924,444 +13989,233.15,1921,444 +13990,233.16666666666666,1916,445 +13991,233.18333333333334,1909,445 +13992,233.2,1900,446 +13993,233.21666666666667,1890,448 +13994,233.23333333333332,1877,449 +13995,233.25,1863,450 +13996,233.26666666666665,1847,452 +13997,233.28333333333333,1829,454 +13998,233.29999999999998,1810,455 +13999,233.31666666666666,1790,457 +14000,233.33333333333334,1767,459 +14001,233.35,1745,460 +14002,233.36666666666667,1720,462 +14003,233.38333333333333,1694,464 +14004,233.4,1668,465 +14005,233.41666666666666,1641,467 +14006,233.43333333333334,1613,468 +14007,233.45,1585,469 +14008,233.46666666666667,1556,469 +14009,233.48333333333332,1527,470 +14010,233.5,1498,470 +14011,233.51666666666665,1468,470 +14012,233.53333333333333,1439,470 +14013,233.54999999999998,1410,470 +14014,233.56666666666666,1381,470 +14015,233.58333333333334,1353,470 +14016,233.6,1325,470 +14017,233.61666666666667,1298,468 +14018,233.63333333333333,1272,468 +14019,233.65,1246,467 +14020,233.66666666666666,1222,465 +14021,233.68333333333334,1199,464 +14022,233.7,1177,462 +14023,233.71666666666667,1156,461 +14024,233.73333333333332,1136,459 +14025,233.75,1118,458 +14026,233.76666666666665,1102,456 +14027,233.78333333333333,1087,455 +14028,233.79999999999998,1074,454 +14029,233.81666666666666,1062,453 +14030,233.83333333333334,1052,452 +14031,233.85,1044,451 +14032,233.86666666666667,1038,451 +14033,233.88333333333333,1034,450 +14034,233.9,1033,450 +14035,233.91666666666666,1033,450 +14036,233.93333333333334,1033,450 +14037,233.95,1037,451 +14038,233.96666666666667,1042,451 +14039,233.98333333333332,1050,452 +14040,234.0,1059,453 +14041,234.01666666666665,1070,454 +14042,234.03333333333333,1083,456 +14043,234.04999999999998,1097,457 +14044,234.06666666666666,1113,459 +14045,234.08333333333334,1131,460 +14046,234.1,1150,462 +14047,234.11666666666667,1171,463 +14048,234.13333333333333,1193,465 +14049,234.15,1217,466 +14050,234.16666666666666,1241,468 +14051,234.18333333333334,1266,469 +14052,234.2,1293,470 +14053,234.21666666666667,1320,470 +14054,234.23333333333332,1348,471 +14055,234.25,1377,472 +14056,234.26666666666665,1406,472 +14057,234.28333333333333,1435,472 +14058,234.29999999999998,1465,472 +14059,234.31666666666666,1495,472 +14060,234.33333333333334,1525,471 +14061,234.35,1554,471 +14062,234.36666666666667,1583,470 +14063,234.38333333333333,1612,469 +14064,234.4,1640,468 +14065,234.41666666666666,1668,467 +14066,234.43333333333334,1694,465 +14067,234.45,1720,464 +14068,234.46666666666667,1744,462 +14069,234.48333333333332,1767,460 +14070,234.5,1790,458 +14071,234.51666666666665,1810,456 +14072,234.53333333333333,1829,454 +14073,234.54999999999998,1847,453 +14074,234.56666666666666,1863,451 +14075,234.58333333333334,1877,449 +14076,234.6,1889,448 +14077,234.61666666666667,1900,447 +14078,234.63333333333333,1908,446 +14079,234.65,1915,445 +14080,234.66666666666666,1920,444 +14081,234.68333333333334,1922,444 +14082,234.7,1922,444 +14083,234.71666666666667,1922,444 +14084,234.73333333333332,1919,444 +14085,234.75,1914,445 +14086,234.76666666666665,1907,446 +14087,234.78333333333333,1898,447 +14088,234.79999999999998,1887,448 +14089,234.81666666666666,1874,449 +14090,234.83333333333334,1860,451 +14091,234.85,1844,452 +14092,234.86666666666667,1826,454 +14093,234.88333333333333,1807,455 +14094,234.9,1786,457 +14095,234.91666666666666,1764,459 +14096,234.93333333333334,1741,461 +14097,234.95,1717,463 +14098,234.96666666666667,1692,464 +14099,234.98333333333332,1666,465 +14100,235.0,1639,467 +14101,235.01666666666665,1611,468 +14102,235.03333333333333,1583,469 +14103,235.04999999999998,1554,470 +14104,235.06666666666666,1525,470 +14105,235.08333333333334,1496,470 +14106,235.1,1467,470 +14107,235.11666666666667,1438,470 +14108,235.13333333333333,1409,470 +14109,235.15,1380,470 +14110,235.16666666666666,1351,470 +14111,235.18333333333334,1324,469 +14112,235.2,1297,468 +14113,235.21666666666667,1271,467 +14114,235.23333333333332,1246,466 +14115,235.25,1222,465 +14116,235.26666666666665,1198,463 +14117,235.28333333333333,1176,462 +14118,235.29999999999998,1156,461 +14119,235.31666666666666,1136,459 +14120,235.33333333333334,1118,458 +14121,235.35,1102,456 +14122,235.36666666666667,1087,455 +14123,235.38333333333333,1074,454 +14124,235.4,1062,453 +14125,235.41666666666666,1053,452 +14126,235.43333333333334,1045,451 +14127,235.45,1039,451 +14128,235.46666666666667,1034,451 +14129,235.48333333333332,1034,451 +14130,235.5,1034,451 +14131,235.51666666666665,1034,451 +14132,235.53333333333333,1038,451 +14133,235.54999999999998,1044,452 +14134,235.56666666666666,1051,452 +14135,235.58333333333334,1060,453 +14136,235.6,1072,454 +14137,235.61666666666667,1084,456 +14138,235.63333333333333,1099,457 +14139,235.65,1115,459 +14140,235.66666666666666,1133,460 +14141,235.68333333333334,1152,462 +14142,235.7,1173,463 +14143,235.71666666666667,1195,465 +14144,235.73333333333332,1219,466 +14145,235.75,1244,467 +14146,235.76666666666665,1269,468 +14147,235.78333333333333,1295,469 +14148,235.79999999999998,1322,470 +14149,235.81666666666666,1350,471 +14150,235.83333333333334,1379,471 +14151,235.85,1408,471 +14152,235.86666666666667,1437,471 +14153,235.88333333333333,1467,471 +14154,235.9,1497,471 +14155,235.91666666666666,1526,471 +14156,235.93333333333334,1555,470 +14157,235.95,1584,470 +14158,235.96666666666667,1613,469 +14159,235.98333333333332,1641,468 +14160,236.0,1668,466 +14161,236.01666666666665,1695,465 +14162,236.03333333333333,1720,463 +14163,236.04999999999998,1744,461 +14164,236.06666666666666,1767,459 +14165,236.08333333333334,1789,458 +14166,236.1,1809,456 +14167,236.11666666666667,1828,454 +14168,236.13333333333333,1845,452 +14169,236.15,1861,450 +14170,236.16666666666666,1875,449 +14171,236.18333333333334,1887,448 +14172,236.2,1897,446 +14173,236.21666666666667,1906,445 +14174,236.23333333333332,1912,444 +14175,236.25,1917,444 +14176,236.26666666666665,1919,443 +14177,236.28333333333333,1919,443 +14178,236.29999999999998,1919,443 +14179,236.31666666666666,1916,444 +14180,236.33333333333334,1911,444 +14181,236.35,1904,445 +14182,236.36666666666667,1895,446 +14183,236.38333333333333,1884,447 +14184,236.4,1871,449 +14185,236.41666666666666,1857,450 +14186,236.43333333333334,1841,452 +14187,236.45,1824,453 +14188,236.46666666666667,1805,455 +14189,236.48333333333332,1784,457 +14190,236.5,1762,459 +14191,236.51666666666665,1739,460 +14192,236.53333333333333,1715,462 +14193,236.54999999999998,1690,464 +14194,236.56666666666666,1664,465 +14195,236.58333333333334,1637,467 +14196,236.6,1609,468 +14197,236.61666666666667,1581,469 +14198,236.63333333333333,1553,470 +14199,236.65,1523,470 +14200,236.66666666666666,1494,470 +14201,236.68333333333334,1465,470 +14202,236.7,1436,470 +14203,236.71666666666667,1407,470 +14204,236.73333333333332,1378,470 +14205,236.75,1349,470 +14206,236.76666666666665,1322,469 +14207,236.78333333333333,1296,468 +14208,236.79999999999998,1270,467 +14209,236.81666666666666,1245,466 +14210,236.83333333333334,1221,465 +14211,236.85,1197,463 +14212,236.86666666666667,1176,462 +14213,236.88333333333333,1155,461 +14214,236.9,1136,459 +14215,236.91666666666666,1118,458 +14216,236.93333333333334,1102,457 +14217,236.95,1087,455 +14218,236.96666666666667,1075,454 +14219,236.98333333333332,1063,453 +14220,237.0,1054,452 +14221,237.01666666666665,1046,451 +14222,237.03333333333333,1040,451 +14223,237.04999999999998,1037,451 +14224,237.06666666666666,1036,451 +14225,237.08333333333334,1036,451 +14226,237.1,1036,451 +14227,237.11666666666667,1040,451 +14228,237.13333333333333,1046,452 +14229,237.15,1053,453 +14230,237.16666666666666,1063,454 +14231,237.18333333333334,1074,455 +14232,237.2,1087,456 +14233,237.21666666666667,1101,458 +14234,237.23333333333332,1118,459 +14235,237.25,1135,461 +14236,237.26666666666665,1155,462 +14237,237.28333333333333,1175,464 +14238,237.29999999999998,1197,465 +14239,237.31666666666666,1221,467 +14240,237.33333333333334,1245,468 +14241,237.35,1271,469 +14242,237.36666666666667,1297,470 +14243,237.38333333333333,1324,471 +14244,237.4,1352,471 +14245,237.41666666666666,1381,471 +14246,237.43333333333334,1410,471 +14247,237.45,1439,471 +14248,237.46666666666667,1469,471 +14249,237.48333333333332,1498,471 +14250,237.5,1528,471 +14251,237.51666666666665,1557,470 +14252,237.53333333333333,1586,470 +14253,237.54999999999998,1614,469 +14254,237.56666666666666,1643,468 +14255,237.58333333333334,1669,467 +14256,237.6,1696,466 +14257,237.61666666666667,1721,464 +14258,237.63333333333333,1745,462 +14259,237.65,1768,460 +14260,237.66666666666666,1790,458 +14261,237.68333333333334,1810,457 +14262,237.7,1829,455 +14263,237.71666666666667,1846,453 +14264,237.73333333333332,1862,451 +14265,237.75,1875,450 +14266,237.76666666666665,1888,448 +14267,237.78333333333333,1898,447 +14268,237.79999999999998,1906,446 +14269,237.81666666666666,1912,445 +14270,237.83333333333334,1917,445 +14271,237.85,1919,445 +14272,237.86666666666667,1919,445 +14273,237.88333333333333,1919,445 +14274,237.9,1915,445 +14275,237.91666666666666,1910,445 +14276,237.93333333333334,1903,446 +14277,237.95,1893,447 +14278,237.96666666666667,1883,448 +14279,237.98333333333332,1870,450 +14280,238.0,1855,451 +14281,238.01666666666665,1840,452 +14282,238.03333333333333,1822,454 +14283,238.04999999999998,1803,456 +14284,238.06666666666666,1782,458 +14285,238.08333333333334,1760,460 +14286,238.1,1737,461 +14287,238.11666666666667,1713,463 +14288,238.13333333333333,1688,464 +14289,238.15,1662,466 +14290,238.16666666666666,1635,467 +14291,238.18333333333334,1607,468 +14292,238.2,1579,469 +14293,238.21666666666667,1550,470 +14294,238.23333333333332,1522,470 +14295,238.25,1493,471 +14296,238.26666666666665,1464,471 +14297,238.28333333333333,1435,471 +14298,238.29999999999998,1406,471 +14299,238.31666666666666,1377,471 +14300,238.33333333333334,1349,470 +14301,238.35,1322,470 +14302,238.36666666666667,1295,469 +14303,238.38333333333333,1269,468 +14304,238.4,1245,467 +14305,238.41666666666666,1220,466 +14306,238.43333333333334,1198,464 +14307,238.45,1176,463 +14308,238.46666666666667,1155,461 +14309,238.48333333333332,1136,460 +14310,238.5,1119,458 +14311,238.51666666666665,1102,457 +14312,238.53333333333333,1088,456 +14313,238.54999999999998,1075,454 +14314,238.56666666666666,1064,453 +14315,238.58333333333334,1055,453 +14316,238.6,1047,452 +14317,238.61666666666667,1042,451 +14318,238.63333333333333,1038,451 +14319,238.65,1038,451 +14320,238.66666666666666,1038,451 +14321,238.68333333333334,1038,451 +14322,238.7,1042,452 +14323,238.71666666666667,1048,452 +14324,238.73333333333332,1056,453 +14325,238.75,1065,454 +14326,238.76666666666665,1076,455 +14327,238.78333333333333,1089,457 +14328,238.79999999999998,1104,458 +14329,238.81666666666666,1120,459 +14330,238.83333333333334,1138,461 +14331,238.85,1158,462 +14332,238.86666666666667,1158,462 +14333,238.88333333333333,1179,464 +14334,238.9,1201,465 +14335,238.91666666666666,1224,467 +14336,238.93333333333334,1248,468 +14337,238.95,1274,469 +14338,238.96666666666667,1300,470 +14339,238.98333333333332,1327,471 +14340,239.0,1355,471 +14341,239.01666666666665,1384,471 +14342,239.03333333333333,1412,472 +14343,239.04999999999998,1441,472 +14344,239.06666666666666,1471,472 +14345,239.08333333333334,1500,471 +14346,239.1,1530,471 +14347,239.11666666666667,1559,471 +14348,239.13333333333333,1587,470 +14349,239.15,1616,469 +14350,239.16666666666666,1643,468 +14351,239.18333333333334,1670,467 +14352,239.2,1696,466 +14353,239.21666666666667,1721,464 +14354,239.23333333333332,1745,462 +14355,239.25,1768,461 +14356,239.26666666666665,1789,459 +14357,239.28333333333333,1809,457 +14358,239.29999999999998,1827,455 +14359,239.31666666666666,1845,453 +14360,239.33333333333334,1860,452 +14361,239.35,1874,450 +14362,239.36666666666667,1886,449 +14363,239.38333333333333,1896,447 +14364,239.4,1904,446 +14365,239.41666666666666,1911,446 +14366,239.43333333333334,1915,445 +14367,239.45,1916,445 +14368,239.46666666666667,1916,445 +14369,239.48333333333332,1916,445 +14370,239.5,1913,445 +14371,239.51666666666665,1907,446 +14372,239.53333333333333,1900,446 +14373,239.54999999999998,1891,447 +14374,239.56666666666666,1879,448 +14375,239.58333333333334,1867,450 +14376,239.6,1852,451 +14377,239.61666666666667,1836,453 +14378,239.63333333333333,1818,454 +14379,239.65,1799,456 +14380,239.66666666666666,1779,458 +14381,239.68333333333334,1757,459 +14382,239.7,1734,461 +14383,239.71666666666667,1709,462 +14384,239.73333333333332,1684,464 +14385,239.75,1658,465 +14386,239.76666666666665,1631,467 +14387,239.78333333333333,1604,468 +14388,239.79999999999998,1575,468 +14389,239.81666666666666,1547,469 +14390,239.83333333333334,1518,470 +14391,239.85,1489,470 +14392,239.86666666666667,1460,470 +14393,239.88333333333333,1431,470 +14394,239.9,1403,470 +14395,239.91666666666666,1374,470 +14396,239.93333333333334,1346,469 +14397,239.95,1319,468 +14398,239.96666666666667,1293,467 +14399,239.98333333333332,1267,466 +14400,240.0,1243,465 +14401,240.01666666666665,1219,464 +14402,240.03333333333333,1196,463 +14403,240.04999999999998,1174,461 +14404,240.06666666666666,1154,460 +14405,240.08333333333334,1135,459 +14406,240.1,1118,457 +14407,240.11666666666667,1102,456 +14408,240.13333333333333,1088,455 +14409,240.15,1075,454 +14410,240.16666666666666,1064,453 +14411,240.18333333333334,1055,452 +14412,240.2,1048,452 +14413,240.21666666666667,1042,451 +14414,240.23333333333332,1039,451 +14415,240.25,1039,451 +14416,240.26666666666665,1039,451 +14417,240.28333333333333,1040,451 +14418,240.29999999999998,1044,452 +14419,240.31666666666666,1050,453 +14420,240.33333333333334,1058,453 +14421,240.35,1067,454 +14422,240.36666666666667,1078,455 +14423,240.38333333333333,1091,457 +14424,240.4,1106,458 +14425,240.41666666666666,1122,459 +14426,240.43333333333334,1140,461 +14427,240.45,1160,462 +14428,240.46666666666667,1180,464 +14429,240.48333333333332,1203,465 +14430,240.5,1226,467 +14431,240.51666666666665,1250,468 +14432,240.53333333333333,1276,468 +14433,240.54999999999998,1302,469 +14434,240.56666666666666,1329,470 +14435,240.58333333333334,1357,471 +14436,240.6,1386,471 +14437,240.61666666666667,1414,471 +14438,240.63333333333333,1444,471 +14439,240.65,1473,471 +14440,240.66666666666666,1502,471 +14441,240.68333333333334,1531,471 +14442,240.7,1561,470 +14443,240.71666666666667,1589,469 +14444,240.73333333333332,1618,469 +14445,240.75,1645,467 +14446,240.76666666666665,1672,466 +14447,240.78333333333333,1698,465 +14448,240.79999999999998,1723,463 +14449,240.81666666666666,1747,461 +14450,240.83333333333334,1769,460 +14451,240.85,1791,458 +14452,240.86666666666667,1811,456 +14453,240.88333333333333,1829,454 +14454,240.9,1846,452 +14455,240.91666666666666,1861,451 +14456,240.93333333333334,1874,449 +14457,240.95,1886,448 +14458,240.96666666666667,1896,447 +14459,240.98333333333332,1904,446 +14460,241.0,1910,445 +14461,241.01666666666665,1914,445 +14462,241.03333333333333,1915,444 +14463,241.04999999999998,1915,444 +14464,241.06666666666666,1915,444 +14465,241.08333333333334,1911,445 +14466,241.1,1905,445 +14467,241.11666666666667,1898,446 +14468,241.13333333333333,1889,447 +14469,241.15,1877,448 +14470,241.16666666666666,1864,450 +14471,241.18333333333334,1850,451 +14472,241.2,1833,453 +14473,241.21666666666667,1816,454 +14474,241.23333333333332,1796,456 +14475,241.25,1776,458 +14476,241.26666666666665,1754,460 +14477,241.28333333333333,1731,461 +14478,241.29999999999998,1706,463 +14479,241.31666666666666,1681,465 +14480,241.33333333333334,1655,466 +14481,241.35,1628,467 +14482,241.36666666666667,1601,468 +14483,241.38333333333333,1573,469 +14484,241.4,1544,470 +14485,241.41666666666666,1516,470 +14486,241.43333333333334,1487,471 +14487,241.45,1458,471 +14488,241.46666666666667,1429,471 +14489,241.48333333333332,1401,471 +14490,241.5,1373,470 +14491,241.51666666666665,1345,470 +14492,241.53333333333333,1318,469 +14493,241.54999999999998,1291,469 +14494,241.56666666666666,1266,468 +14495,241.58333333333334,1241,467 +14496,241.6,1218,465 +14497,241.61666666666667,1195,464 +14498,241.63333333333333,1174,462 +14499,241.65,1153,461 +14500,241.66666666666666,1135,459 +14501,241.68333333333334,1117,458 +14502,241.7,1102,457 +14503,241.71666666666667,1088,456 +14504,241.73333333333332,1075,454 +14505,241.75,1065,453 +14506,241.76666666666665,1055,453 +14507,241.78333333333333,1049,452 +14508,241.79999999999998,1043,451 +14509,241.81666666666666,1040,451 +14510,241.83333333333334,1040,451 +14511,241.85,1040,451 +14512,241.86666666666667,1041,452 +14513,241.88333333333333,1045,452 +14514,241.9,1051,453 +14515,241.91666666666666,1059,453 +14516,241.93333333333334,1069,455 +14517,241.95,1081,456 +14518,241.96666666666667,1094,457 +14519,241.98333333333332,1109,458 +14520,242.0,1125,460 +14521,242.01666666666665,1143,461 +14522,242.03333333333333,1163,463 +14523,242.04999999999998,1184,464 +14524,242.06666666666666,1206,465 +14525,242.08333333333334,1230,467 +14526,242.1,1254,468 +14527,242.11666666666667,1280,469 +14528,242.13333333333333,1306,470 +14529,242.15,1333,471 +14530,242.16666666666666,1361,471 +14531,242.18333333333334,1389,472 +14532,242.2,1418,472 +14533,242.21666666666667,1448,472 +14534,242.23333333333332,1476,471 +14535,242.25,1506,471 +14536,242.26666666666665,1535,471 +14537,242.28333333333333,1564,470 +14538,242.29999999999998,1593,469 +14539,242.31666666666666,1621,468 +14540,242.33333333333334,1648,467 +14541,242.35,1675,466 +14542,242.36666666666667,1700,465 +14543,242.38333333333333,1725,463 +14544,242.4,1749,461 +14545,242.41666666666666,1771,460 +14546,242.43333333333334,1792,458 +14547,242.45,1812,456 +14548,242.46666666666667,1830,454 +14549,242.48333333333332,1847,453 +14550,242.5,1862,451 +14551,242.51666666666665,1875,450 +14552,242.53333333333333,1886,448 +14553,242.54999999999998,1896,447 +14554,242.56666666666666,1904,446 +14555,242.58333333333334,1910,446 +14556,242.6,1913,445 +14557,242.61666666666667,1914,445 +14558,242.63333333333333,1914,445 +14559,242.65,1914,445 +14560,242.66666666666666,1910,445 +14561,242.68333333333334,1904,446 +14562,242.7,1897,447 +14563,242.71666666666667,1887,448 +14564,242.73333333333332,1876,449 +14565,242.75,1863,450 +14566,242.76666666666665,1848,452 +14567,242.78333333333333,1832,453 +14568,242.79999999999998,1814,455 +14569,242.81666666666666,1794,457 +14570,242.83333333333334,1774,458 +14571,242.85,1752,460 +14572,242.86666666666667,1729,462 +14573,242.88333333333333,1704,463 +14574,242.9,1679,465 +14575,242.91666666666666,1653,466 +14576,242.93333333333334,1626,467 +14577,242.95,1599,469 +14578,242.96666666666667,1571,469 +14579,242.98333333333332,1543,470 +14580,243.0,1514,470 +14581,243.01666666666665,1485,471 +14582,243.03333333333333,1456,471 +14583,243.04999999999998,1428,471 +14584,243.06666666666666,1400,471 +14585,243.08333333333334,1371,470 +14586,243.1,1343,470 +14587,243.11666666666667,1317,469 +14588,243.13333333333333,1290,468 +14589,243.15,1265,467 +14590,243.16666666666666,1241,466 +14591,243.18333333333334,1217,465 +14592,243.2,1194,463 +14593,243.21666666666667,1173,462 +14594,243.23333333333332,1153,461 +14595,243.25,1134,459 +14596,243.26666666666665,1117,458 +14597,243.28333333333333,1102,457 +14598,243.29999999999998,1088,455 +14599,243.31666666666666,1076,455 +14600,243.33333333333334,1065,453 +14601,243.35,1056,453 +14602,243.36666666666667,1049,452 +14603,243.38333333333333,1044,452 +14604,243.4,1040,452 +14605,243.41666666666666,1040,452 +14606,243.43333333333334,1040,452 +14607,243.45,1042,452 +14608,243.46666666666667,1046,452 +14609,243.48333333333332,1052,453 +14610,243.5,1060,454 +14611,243.51666666666665,1069,455 +14612,243.53333333333333,1081,456 +14613,243.54999999999998,1094,457 +14614,243.56666666666666,1109,459 +14615,243.58333333333334,1126,460 +14616,243.6,1144,462 +14617,243.61666666666667,1163,463 +14618,243.63333333333333,1184,465 +14619,243.65,1207,466 +14620,243.66666666666666,1230,467 +14621,243.68333333333334,1255,468 +14622,243.7,1280,469 +14623,243.71666666666667,1307,470 +14624,243.73333333333332,1333,471 +14625,243.75,1362,471 +14626,243.76666666666665,1390,471 +14627,243.78333333333333,1419,471 +14628,243.79999999999998,1448,471 +14629,243.81666666666666,1477,471 +14630,243.83333333333334,1506,471 +14631,243.85,1535,471 +14632,243.86666666666667,1564,470 +14633,243.88333333333333,1593,470 +14634,243.9,1620,469 +14635,243.91666666666666,1648,468 +14636,243.93333333333334,1674,466 +14637,243.95,1700,465 +14638,243.96666666666667,1725,463 +14639,243.98333333333332,1748,461 +14640,244.0,1770,460 +14641,244.01666666666665,1791,458 +14642,244.03333333333333,1811,456 +14643,244.04999999999998,1829,454 +14644,244.06666666666666,1845,453 +14645,244.08333333333334,1860,451 +14646,244.1,1873,450 +14647,244.11666666666667,1885,448 +14648,244.13333333333333,1894,447 +14649,244.15,1902,446 +14650,244.16666666666666,1907,446 +14651,244.18333333333334,1911,445 +14652,244.2,1911,445 +14653,244.21666666666667,1911,445 +14654,244.23333333333332,1911,445 +14655,244.25,1907,445 +14656,244.26666666666665,1901,446 +14657,244.28333333333333,1893,447 +14658,244.29999999999998,1884,448 +14659,244.31666666666666,1873,449 +14660,244.33333333333334,1859,450 +14661,244.35,1845,452 +14662,244.36666666666667,1828,453 +14663,244.38333333333333,1811,455 +14664,244.4,1791,456 +14665,244.41666666666666,1771,458 +14666,244.43333333333334,1749,460 +14667,244.45,1725,462 +14668,244.46666666666667,1701,463 +14669,244.48333333333332,1676,464 +14670,244.5,1650,466 +14671,244.51666666666665,1623,467 +14672,244.53333333333333,1595,468 +14673,244.54999999999998,1568,469 +14674,244.56666666666666,1539,469 +14675,244.58333333333334,1511,470 +14676,244.6,1482,470 +14677,244.61666666666667,1453,470 +14678,244.63333333333333,1425,470 +14679,244.65,1397,469 +14680,244.66666666666666,1369,469 +14681,244.68333333333334,1341,468 +14682,244.7,1315,468 +14683,244.71666666666667,1289,467 +14684,244.73333333333332,1264,466 +14685,244.75,1240,465 +14686,244.76666666666665,1216,464 +14687,244.78333333333333,1194,463 +14688,244.79999999999998,1172,461 +14689,244.81666666666666,1153,460 +14690,244.83333333333334,1134,459 +14691,244.85,1118,458 +14692,244.86666666666667,1103,456 +14693,244.88333333333333,1089,455 +14694,244.9,1076,454 +14695,244.91666666666666,1066,453 +14696,244.93333333333334,1057,453 +14697,244.95,1051,452 +14698,244.96666666666667,1046,452 +14699,244.98333333333332,1043,452 +14700,245.0,1043,452 +14701,245.01666666666665,1043,452 +14702,245.03333333333333,1045,452 +14703,245.04999999999998,1049,452 +14704,245.06666666666666,1055,453 +14705,245.08333333333334,1063,454 +14706,245.1,1073,455 +14707,245.11666666666667,1085,456 +14708,245.13333333333333,1098,458 +14709,245.15,1114,459 +14710,245.16666666666666,1130,460 +14711,245.18333333333334,1149,462 +14712,245.2,1168,463 +14713,245.21666666666667,1189,465 +14714,245.23333333333332,1211,466 +14715,245.25,1235,467 +14716,245.26666666666665,1259,468 +14717,245.28333333333333,1285,469 +14718,245.29999999999998,1311,470 +14719,245.31666666666666,1338,471 +14720,245.33333333333334,1366,471 +14721,245.35,1394,472 +14722,245.36666666666667,1423,472 +14723,245.38333333333333,1452,472 +14724,245.4,1481,472 +14725,245.41666666666666,1510,471 +14726,245.43333333333334,1539,471 +14727,245.45,1568,470 +14728,245.46666666666667,1596,470 +14729,245.48333333333332,1623,469 +14730,245.5,1650,468 +14731,245.51666666666665,1677,466 +14732,245.53333333333333,1702,465 +14733,245.54999999999998,1726,463 +14734,245.56666666666666,1750,461 +14735,245.58333333333334,1772,459 +14736,245.6,1792,458 +14737,245.61666666666667,1812,456 +14738,245.63333333333333,1830,454 +14739,245.65,1846,453 +14740,245.66666666666666,1861,451 +14741,245.68333333333334,1873,450 +14742,245.7,1884,448 +14743,245.71666666666667,1894,447 +14744,245.73333333333332,1901,446 +14745,245.75,1906,446 +14746,245.76666666666665,1910,445 +14747,245.78333333333333,1910,445 +14748,245.79999999999998,1910,445 +14749,245.81666666666666,1909,445 +14750,245.83333333333334,1905,446 +14751,245.85,1899,446 +14752,245.86666666666667,1891,447 +14753,245.88333333333333,1882,448 +14754,245.9,1870,449 +14755,245.91666666666666,1857,451 +14756,245.93333333333334,1842,452 +14757,245.95,1826,453 +14758,245.96666666666667,1808,455 +14759,245.98333333333332,1789,457 +14760,246.0,1768,458 +14761,246.01666666666665,1746,460 +14762,246.03333333333333,1723,462 +14763,246.04999999999998,1698,463 +14764,246.06666666666666,1673,465 +14765,246.08333333333334,1647,466 +14766,246.1,1621,467 +14767,246.11666666666667,1593,468 +14768,246.13333333333333,1565,469 +14769,246.15,1537,470 +14770,246.16666666666666,1509,470 +14771,246.18333333333334,1480,470 +14772,246.2,1451,470 +14773,246.21666666666667,1423,470 +14774,246.23333333333332,1395,470 +14775,246.25,1367,470 +14776,246.26666666666665,1339,470 +14777,246.28333333333333,1313,469 +14778,246.29999999999998,1287,468 +14779,246.31666666666666,1262,468 +14780,246.33333333333334,1237,467 +14781,246.35,1214,465 +14782,246.36666666666667,1192,464 +14783,246.38333333333333,1171,462 +14784,246.4,1152,461 +14785,246.41666666666666,1133,459 +14786,246.43333333333334,1117,458 +14787,246.45,1102,457 +14788,246.46666666666667,1088,456 +14789,246.48333333333332,1076,454 +14790,246.5,1066,453 +14791,246.51666666666665,1057,453 +14792,246.53333333333333,1051,452 +14793,246.54999999999998,1046,452 +14794,246.56666666666666,1043,452 +14795,246.58333333333334,1043,452 +14796,246.6,1043,452 +14797,246.61666666666667,1045,452 +14798,246.63333333333333,1049,452 +14799,246.65,1056,453 +14800,246.66666666666666,1064,454 +14801,246.68333333333334,1074,455 +14802,246.7,1086,456 +14803,246.71666666666667,1100,457 +14804,246.73333333333332,1115,459 +14805,246.75,1131,460 +14806,246.76666666666665,1149,462 +14807,246.78333333333333,1169,463 +14808,246.79999999999998,1190,465 +14809,246.81666666666666,1212,466 +14810,246.83333333333334,1236,468 +14811,246.85,1261,468 +14812,246.86666666666667,1286,469 +14813,246.88333333333333,1313,470 +14814,246.9,1339,471 +14815,246.91666666666666,1367,471 +14816,246.93333333333334,1396,471 +14817,246.95,1424,471 +14818,246.96666666666667,1453,471 +14819,246.98333333333332,1482,471 +14820,247.0,1511,471 +14821,247.01666666666665,1540,471 +14822,247.03333333333333,1568,470 +14823,247.04999999999998,1597,469 +14824,247.06666666666666,1624,468 +14825,247.08333333333334,1651,467 +14826,247.1,1677,466 +14827,247.11666666666667,1703,464 +14828,247.13333333333333,1727,463 +14829,247.15,1750,461 +14830,247.16666666666666,1772,459 +14831,247.18333333333334,1793,458 +14832,247.2,1812,456 +14833,247.21666666666667,1830,454 +14834,247.23333333333332,1846,453 +14835,247.25,1860,451 +14836,247.26666666666665,1873,450 +14837,247.28333333333333,1884,449 +14838,247.29999999999998,1893,447 +14839,247.31666666666666,1900,447 +14840,247.33333333333334,1906,446 +14841,247.35,1909,446 +14842,247.36666666666667,1909,446 +14843,247.38333333333333,1909,446 +14844,247.4,1908,446 +14845,247.41666666666666,1904,446 +14846,247.43333333333334,1898,447 +14847,247.45,1890,448 +14848,247.46666666666667,1880,448 +14849,247.48333333333332,1868,450 +14850,247.5,1855,451 +14851,247.51666666666665,1840,452 +14852,247.53333333333333,1824,454 +14853,247.54999999999998,1806,456 +14854,247.56666666666666,1786,457 +14855,247.58333333333334,1765,459 +14856,247.6,1744,461 +14857,247.61666666666667,1720,462 +14858,247.63333333333333,1696,464 +14859,247.65,1671,465 +14860,247.66666666666666,1645,467 +14861,247.68333333333334,1618,468 +14862,247.7,1591,469 +14863,247.71666666666667,1563,469 +14864,247.73333333333332,1535,470 +14865,247.75,1507,471 +14866,247.76666666666665,1479,471 +14867,247.78333333333333,1450,471 +14868,247.79999999999998,1422,471 +14869,247.81666666666666,1394,471 +14870,247.83333333333334,1366,471 +14871,247.85,1338,470 +14872,247.86666666666667,1312,470 +14873,247.88333333333333,1286,468 +14874,247.9,1261,467 +14875,247.91666666666666,1238,467 +14876,247.93333333333334,1214,465 +14877,247.95,1192,464 +14878,247.96666666666667,1171,462 +14879,247.98333333333332,1152,461 +14880,248.0,1134,460 +14881,248.01666666666665,1117,458 +14882,248.03333333333333,1102,457 +14883,248.04999999999998,1089,456 +14884,248.06666666666666,1077,455 +14885,248.08333333333334,1067,454 +14886,248.1,1059,453 +14887,248.11666666666667,1052,453 +14888,248.13333333333333,1048,452 +14889,248.15,1045,452 +14890,248.16666666666666,1045,452 +14891,248.18333333333334,1045,452 +14892,248.2,1048,452 +14893,248.21666666666667,1052,453 +14894,248.23333333333332,1059,454 +14895,248.25,1067,454 +14896,248.26666666666665,1077,455 +14897,248.28333333333333,1089,456 +14898,248.29999999999998,1103,458 +14899,248.31666666666666,1118,459 +14900,248.33333333333334,1135,461 +14901,248.35,1153,462 +14902,248.36666666666667,1173,464 +14903,248.38333333333333,1194,465 +14904,248.4,1216,466 +14905,248.41666666666666,1240,467 +14906,248.43333333333334,1265,468 +14907,248.45,1289,469 +14908,248.46666666666667,1316,470 +14909,248.48333333333332,1343,471 +14910,248.5,1371,471 +14911,248.51666666666665,1400,471 +14912,248.53333333333333,1428,471 +14913,248.54999999999998,1457,471 +14914,248.56666666666666,1486,471 +14915,248.58333333333334,1514,471 +14916,248.6,1543,471 +14917,248.61666666666667,1572,470 +14918,248.63333333333333,1600,469 +14919,248.65,1627,468 +14920,248.66666666666666,1654,467 +14921,248.68333333333334,1680,466 +14922,248.7,1705,464 +14923,248.71666666666667,1729,463 +14924,248.73333333333332,1752,461 +14925,248.75,1774,459 +14926,248.76666666666665,1794,457 +14927,248.78333333333333,1813,456 +14928,248.79999999999998,1831,454 +14929,248.81666666666666,1847,452 +14930,248.83333333333334,1861,451 +14931,248.85,1874,450 +14932,248.86666666666667,1884,448 +14933,248.88333333333333,1893,447 +14934,248.9,1900,446 +14935,248.91666666666666,1905,446 +14936,248.93333333333334,1909,445 +14937,248.95,1909,445 +14938,248.96666666666667,1909,445 +14939,248.98333333333332,1907,446 +14940,249.0,1903,446 +14941,249.01666666666665,1896,447 +14942,249.03333333333333,1888,447 +14943,249.04999999999998,1879,448 +14944,249.06666666666666,1867,450 +14945,249.08333333333334,1853,451 +14946,249.1,1838,452 +14947,249.11666666666667,1822,454 +14948,249.13333333333333,1804,456 +14949,249.15,1784,457 +14950,249.16666666666666,1763,459 +14951,249.18333333333334,1741,461 +14952,249.2,1718,462 +14953,249.21666666666667,1694,464 +14954,249.23333333333332,1669,465 +14955,249.25,1643,467 +14956,249.26666666666665,1616,468 +14957,249.28333333333333,1589,469 +14958,249.29999999999998,1561,469 +14959,249.31666666666666,1533,470 +14960,249.33333333333334,1504,470 +14961,249.35,1476,470 +14962,249.36666666666667,1448,470 +14963,249.38333333333333,1419,470 +14964,249.4,1392,470 +14965,249.41666666666666,1364,470 +14966,249.43333333333334,1337,470 +14967,249.45,1310,469 +14968,249.46666666666667,1285,468 +14969,249.48333333333332,1260,467 +14970,249.5,1236,466 +14971,249.51666666666665,1213,465 +14972,249.53333333333333,1191,463 +14973,249.54999999999998,1170,462 +14974,249.56666666666666,1151,460 +14975,249.58333333333334,1133,459 +14976,249.6,1117,458 +14977,249.61666666666667,1102,457 +14978,249.63333333333333,1089,455 +14979,249.65,1077,454 +14980,249.66666666666666,1067,454 +14981,249.68333333333334,1059,453 +14982,249.7,1053,452 +14983,249.71666666666667,1048,452 +14984,249.73333333333332,1046,452 +14985,249.75,1046,452 +14986,249.76666666666665,1046,452 +14987,249.78333333333333,1049,452 +14988,249.79999999999998,1053,453 +14989,249.81666666666666,1060,454 +14990,249.83333333333334,1069,454 +14991,249.85,1079,456 +14992,249.86666666666667,1091,457 +14993,249.88333333333333,1105,458 +14994,249.9,1120,459 +14995,249.91666666666666,1137,461 +14996,249.93333333333334,1155,462 +14997,249.95,1175,463 +14998,249.96666666666667,1196,465 +14999,249.98333333333332,1219,466 +15000,250.0,1242,467 +15001,250.01666666666665,1267,468 +15002,250.03333333333333,1292,469 +15003,250.04999999999998,1318,470 +15004,250.06666666666666,1345,471 +15005,250.08333333333334,1373,471 +15006,250.1,1401,471 +15007,250.11666666666667,1429,471 +15008,250.13333333333333,1459,471 +15009,250.15,1487,471 +15010,250.16666666666666,1516,471 +15011,250.18333333333334,1545,471 +15012,250.2,1573,470 +15013,250.21666666666667,1601,469 +15014,250.23333333333332,1628,468 +15015,250.25,1655,467 +15016,250.26666666666665,1681,466 +15017,250.28333333333333,1706,464 +15018,250.29999999999998,1730,463 +15019,250.31666666666666,1753,461 +15020,250.33333333333334,1774,459 +15021,250.35,1795,458 +15022,250.36666666666667,1813,456 +15023,250.38333333333333,1831,454 +15024,250.4,1847,453 +15025,250.41666666666666,1860,451 +15026,250.43333333333334,1873,450 +15027,250.45,1883,449 +15028,250.46666666666667,1892,448 +15029,250.48333333333332,1899,447 +15030,250.5,1904,446 +15031,250.51666666666665,1907,446 +15032,250.53333333333333,1907,446 +15033,250.54999999999998,1907,446 +15034,250.56666666666666,1905,446 +15035,250.58333333333334,1900,446 +15036,250.6,1894,447 +15037,250.61666666666667,1886,448 +15038,250.63333333333333,1876,449 +15039,250.65,1864,450 +15040,250.66666666666666,1851,451 +15041,250.68333333333334,1836,453 +15042,250.7,1819,454 +15043,250.71666666666667,1801,456 +15044,250.73333333333332,1781,458 +15045,250.75,1760,459 +15046,250.76666666666665,1738,461 +15047,250.78333333333333,1715,462 +15048,250.79999999999998,1691,464 +15049,250.81666666666666,1666,465 +15050,250.83333333333334,1640,467 +15051,250.85,1613,468 +15052,250.86666666666667,1585,469 +15053,250.88333333333333,1558,469 +15054,250.9,1530,470 +15055,250.91666666666666,1502,470 +15056,250.93333333333334,1473,470 +15057,250.95,1445,470 +15058,250.96666666666667,1417,470 +15059,250.98333333333332,1389,470 +15060,251.0,1361,470 +15061,251.01666666666665,1334,470 +15062,251.03333333333333,1308,469 +15063,251.04999999999998,1282,468 +15064,251.06666666666666,1258,467 +15065,251.08333333333334,1234,466 +15066,251.1,1211,464 +15067,251.11666666666667,1189,463 +15068,251.13333333333333,1169,462 +15069,251.15,1150,460 +15070,251.16666666666666,1132,459 +15071,251.18333333333334,1116,458 +15072,251.2,1101,457 +15073,251.21666666666667,1088,455 +15074,251.23333333333332,1077,455 +15075,251.25,1067,454 +15076,251.26666666666665,1059,453 +15077,251.28333333333333,1053,453 +15078,251.29999999999998,1048,452 +15079,251.31666666666666,1047,452 +15080,251.33333333333334,1047,452 +15081,251.35,1047,452 +15082,251.36666666666667,1050,453 +15083,251.38333333333333,1055,453 +15084,251.4,1061,454 +15085,251.41666666666666,1070,455 +15086,251.43333333333334,1080,456 +15087,251.45,1093,457 +15088,251.46666666666667,1106,458 +15089,251.48333333333332,1122,460 +15090,251.5,1139,461 +15091,251.51666666666665,1157,463 +15092,251.53333333333333,1177,464 +15093,251.54999999999998,1198,465 +15094,251.56666666666666,1221,467 +15095,251.58333333333334,1245,468 +15096,251.6,1269,469 +15097,251.61666666666667,1294,469 +15098,251.63333333333333,1320,470 +15099,251.65,1348,471 +15100,251.66666666666666,1375,471 +15101,251.68333333333334,1404,472 +15102,251.7,1432,472 +15103,251.71666666666667,1461,472 +15104,251.73333333333332,1490,471 +15105,251.75,1518,471 +15106,251.76666666666665,1547,471 +15107,251.78333333333333,1575,470 +15108,251.79999999999998,1603,469 +15109,251.81666666666666,1630,468 +15110,251.83333333333334,1656,467 +15111,251.85,1682,466 +15112,251.86666666666667,1707,464 +15113,251.88333333333333,1731,463 +15114,251.9,1753,461 +15115,251.91666666666666,1774,459 +15116,251.93333333333334,1795,458 +15117,251.95,1813,456 +15118,251.96666666666667,1830,454 +15119,251.98333333333332,1846,453 +15120,252.0,1860,451 +15121,252.01666666666665,1872,450 +15122,252.03333333333333,1882,449 +15123,252.04999999999998,1891,448 +15124,252.06666666666666,1897,447 +15125,252.08333333333334,1902,446 +15126,252.1,1905,446 +15127,252.11666666666667,1905,446 +15128,252.13333333333333,1905,446 +15129,252.15,1903,446 +15130,252.16666666666666,1898,447 +15131,252.18333333333334,1891,447 +15132,252.2,1883,448 +15133,252.21666666666667,1873,449 +15134,252.23333333333332,1861,450 +15135,252.25,1847,452 +15136,252.26666666666665,1832,453 +15137,252.28333333333333,1815,455 +15138,252.29999999999998,1797,456 +15139,252.31666666666666,1778,458 +15140,252.33333333333334,1757,460 +15141,252.35,1734,461 +15142,252.36666666666667,1711,463 +15143,252.38333333333333,1687,464 +15144,252.4,1662,466 +15145,252.41666666666666,1636,467 +15146,252.43333333333334,1609,468 +15147,252.45,1582,469 +15148,252.46666666666667,1554,470 +15149,252.48333333333332,1526,470 +15150,252.5,1498,470 +15151,252.51666666666665,1470,471 +15152,252.53333333333333,1442,471 +15153,252.54999999999998,1414,471 +15154,252.56666666666666,1386,471 +15155,252.58333333333334,1358,470 +15156,252.6,1331,470 +15157,252.61666666666667,1305,469 +15158,252.63333333333333,1280,468 +15159,252.65,1255,467 +15160,252.66666666666666,1232,466 +15161,252.68333333333334,1209,465 +15162,252.7,1187,464 +15163,252.71666666666667,1167,462 +15164,252.73333333333332,1148,461 +15165,252.75,1131,460 +15166,252.76666666666665,1115,458 +15167,252.78333333333333,1100,457 +15168,252.79999999999998,1087,456 +15169,252.81666666666666,1076,455 +15170,252.83333333333334,1066,454 +15171,252.85,1059,453 +15172,252.86666666666667,1053,453 +15173,252.88333333333333,1049,453 +15174,252.9,1047,453 +15175,252.91666666666666,1047,453 +15176,252.93333333333334,1047,453 +15177,252.95,1051,453 +15178,252.96666666666667,1056,454 +15179,252.98333333333332,1063,455 +15180,253.0,1071,456 +15181,253.01666666666665,1082,456 +15182,253.03333333333333,1094,458 +15183,253.04999999999998,1108,459 +15184,253.06666666666666,1124,460 +15185,253.08333333333334,1141,462 +15186,253.1,1159,463 +15187,253.11666666666667,1179,465 +15188,253.13333333333333,1200,466 +15189,253.15,1223,467 +15190,253.16666666666666,1246,468 +15191,253.18333333333334,1271,469 +15192,253.2,1296,470 +15193,253.21666666666667,1322,471 +15194,253.23333333333332,1349,472 +15195,253.25,1377,472 +15196,253.26666666666665,1405,472 +15197,253.28333333333333,1433,472 +15198,253.29999999999998,1462,472 +15199,253.31666666666666,1491,472 +15200,253.33333333333334,1520,472 +15201,253.35,1548,471 +15202,253.36666666666667,1576,470 +15203,253.38333333333333,1604,470 +15204,253.4,1631,469 +15205,253.41666666666666,1657,468 +15206,253.43333333333334,1683,466 +15207,253.45,1707,465 +15208,253.46666666666667,1731,463 +15209,253.48333333333332,1753,461 +15210,253.5,1775,460 +15211,253.51666666666665,1794,458 +15212,253.53333333333333,1813,456 +15213,253.54999999999998,1830,454 +15214,253.56666666666666,1845,453 +15215,253.58333333333334,1859,451 +15216,253.6,1871,450 +15217,253.61666666666667,1881,449 +15218,253.63333333333333,1889,448 +15219,253.65,1896,447 +15220,253.66666666666666,1900,447 +15221,253.68333333333334,1903,446 +15222,253.7,1903,446 +15223,253.71666666666667,1903,446 +15224,253.73333333333332,1900,446 +15225,253.75,1895,447 +15226,253.76666666666665,1889,448 +15227,253.78333333333333,1880,448 +15228,253.79999999999998,1870,450 +15229,253.81666666666666,1858,451 +15230,253.83333333333334,1844,452 +15231,253.85,1829,454 +15232,253.86666666666667,1812,455 +15233,253.88333333333333,1794,457 +15234,253.9,1774,458 +15235,253.91666666666666,1753,460 +15236,253.93333333333334,1731,462 +15237,253.95,1708,463 +15238,253.96666666666667,1684,465 +15239,253.98333333333332,1658,466 +15240,254.0,1633,467 +15241,254.01666666666665,1606,468 +15242,254.03333333333333,1579,469 +15243,254.04999999999998,1551,470 +15244,254.06666666666666,1523,470 +15245,254.08333333333334,1495,471 +15246,254.1,1467,471 +15247,254.11666666666667,1439,471 +15248,254.13333333333333,1411,471 +15249,254.15,1383,471 +15250,254.16666666666666,1356,471 +15251,254.18333333333334,1329,470 +15252,254.2,1303,469 +15253,254.21666666666667,1278,468 +15254,254.23333333333332,1254,468 +15255,254.25,1230,466 +15256,254.26666666666665,1208,465 +15257,254.28333333333333,1187,463 +15258,254.29999999999998,1167,462 +15259,254.31666666666666,1148,461 +15260,254.33333333333334,1130,459 +15261,254.35,1115,458 +15262,254.36666666666667,1100,457 +15263,254.38333333333333,1088,456 +15264,254.4,1077,455 +15265,254.41666666666666,1067,454 +15266,254.43333333333334,1060,453 +15267,254.45,1054,453 +15268,254.46666666666667,1050,452 +15269,254.48333333333332,1049,452 +15270,254.5,1049,452 +15271,254.51666666666665,1049,453 +15272,254.53333333333333,1053,453 +15273,254.54999999999998,1058,454 +15274,254.56666666666666,1065,455 +15275,254.58333333333334,1074,455 +15276,254.6,1084,457 +15277,254.61666666666667,1097,458 +15278,254.63333333333333,1111,459 +15279,254.65,1126,461 +15280,254.66666666666666,1143,462 +15281,254.68333333333334,1162,463 +15282,254.7,1182,465 +15283,254.71666666666667,1203,466 +15284,254.73333333333332,1226,467 +15285,254.75,1249,468 +15286,254.76666666666665,1273,469 +15287,254.78333333333333,1299,470 +15288,254.79999999999998,1325,471 +15289,254.81666666666666,1353,471 +15290,254.83333333333334,1380,472 +15291,254.85,1408,472 +15292,254.86666666666667,1437,472 +15293,254.88333333333333,1465,472 +15294,254.9,1494,472 +15295,254.91666666666666,1522,471 +15296,254.93333333333334,1551,471 +15297,254.95,1578,470 +15298,254.96666666666667,1606,469 +15299,254.98333333333332,1633,468 +15300,255.0,1659,467 +15301,255.01666666666665,1685,466 +15302,255.03333333333333,1709,464 +15303,255.04999999999998,1732,463 +15304,255.06666666666666,1755,461 +15305,255.08333333333334,1776,459 +15306,255.1,1795,457 +15307,255.11666666666667,1814,456 +15308,255.13333333333333,1830,454 +15309,255.15,1845,453 +15310,255.16666666666666,1859,451 +15311,255.18333333333334,1871,450 +15312,255.2,1880,449 +15313,255.21666666666667,1889,448 +15314,255.23333333333332,1895,447 +15315,255.25,1899,446 +15316,255.26666666666665,1902,446 +15317,255.28333333333333,1902,446 +15318,255.29999999999998,1902,446 +15319,255.31666666666666,1899,446 +15320,255.33333333333334,1893,447 +15321,255.35,1887,447 +15322,255.36666666666667,1878,448 +15323,255.38333333333333,1868,449 +15324,255.4,1856,451 +15325,255.41666666666666,1842,452 +15326,255.43333333333334,1827,453 +15327,255.45,1810,455 +15328,255.46666666666667,1792,457 +15329,255.48333333333332,1772,458 +15330,255.5,1751,460 +15331,255.51666666666665,1729,461 +15332,255.53333333333333,1706,463 +15333,255.54999999999998,1682,464 +15334,255.56666666666666,1656,466 +15335,255.58333333333334,1631,467 +15336,255.6,1604,468 +15337,255.61666666666667,1577,469 +15338,255.63333333333333,1549,470 +15339,255.65,1522,470 +15340,255.66666666666666,1494,470 +15341,255.68333333333334,1466,471 +15342,255.7,1438,471 +15343,255.71666666666667,1410,471 +15344,255.73333333333332,1382,471 +15345,255.75,1355,470 +15346,255.76666666666665,1328,470 +15347,255.78333333333333,1303,469 +15348,255.79999999999998,1277,468 +15349,255.81666666666666,1253,467 +15350,255.83333333333334,1230,466 +15351,255.85,1207,465 +15352,255.86666666666667,1186,463 +15353,255.88333333333333,1166,462 +15354,255.9,1147,461 +15355,255.91666666666666,1130,459 +15356,255.93333333333334,1115,458 +15357,255.95,1101,457 +15358,255.96666666666667,1088,456 +15359,255.98333333333332,1077,455 +15360,256.0,1068,454 +15361,256.01666666666665,1060,453 +15362,256.0333333333333,1055,453 +15363,256.05,1051,453 +15364,256.06666666666666,1051,453 +15365,256.0833333333333,1051,453 +15366,256.1,1051,453 +15367,256.1166666666667,1054,453 +15368,256.1333333333333,1060,454 +15369,256.15,1067,455 +15370,256.1666666666667,1076,455 +15371,256.18333333333334,1087,456 +15372,256.2,1099,458 +15373,256.21666666666664,1113,459 +15374,256.23333333333335,1129,460 +15375,256.25,1146,462 +15376,256.26666666666665,1165,463 +15377,256.2833333333333,1185,464 +15378,256.3,1206,466 +15379,256.31666666666666,1229,467 +15380,256.3333333333333,1253,468 +15381,256.35,1277,469 +15382,256.3666666666667,1303,470 +15383,256.3833333333333,1329,470 +15384,256.4,1356,471 +15385,256.4166666666667,1384,471 +15386,256.43333333333334,1412,471 +15387,256.45,1440,471 +15388,256.46666666666664,1469,471 +15389,256.48333333333335,1497,471 +15390,256.5,1525,471 +15391,256.51666666666665,1553,470 +15392,256.5333333333333,1581,470 +15393,256.55,1609,469 +15394,256.56666666666666,1635,468 +15395,256.5833333333333,1661,467 +15396,256.6,1687,465 +15397,256.6166666666667,1711,464 +15398,256.6333333333333,1734,462 +15399,256.65,1756,460 +15400,256.6666666666667,1777,459 +15401,256.68333333333334,1797,457 +15402,256.7,1815,455 +15403,256.71666666666664,1831,454 +15404,256.73333333333335,1846,452 +15405,256.75,1859,451 +15406,256.76666666666665,1871,450 +15407,256.7833333333333,1881,449 +15408,256.8,1889,448 +15409,256.81666666666666,1895,447 +15410,256.8333333333333,1899,446 +15411,256.85,1901,446 +15412,256.8666666666667,1901,446 +15413,256.8833333333333,1901,446 +15414,256.9,1897,446 +15415,256.9166666666667,1892,447 +15416,256.93333333333334,1886,448 +15417,256.95,1877,448 +15418,256.96666666666664,1866,449 +15419,256.98333333333335,1854,451 +15420,257.0,1840,452 +15421,257.01666666666665,1825,453 +15422,257.0333333333333,1808,455 +15423,257.05,1790,457 +15424,257.06666666666666,1770,458 +15425,257.0833333333333,1749,460 +15426,257.1,1727,461 +15427,257.1166666666667,1704,463 +15428,257.1333333333333,1679,464 +15429,257.15,1654,466 +15430,257.1666666666667,1628,467 +15431,257.18333333333334,1602,468 +15432,257.2,1575,469 +15433,257.21666666666664,1547,469 +15434,257.23333333333335,1520,470 +15435,257.25,1492,470 +15436,257.26666666666665,1464,470 +15437,257.2833333333333,1436,470 +15438,257.3,1408,470 +15439,257.31666666666666,1381,470 +15440,257.3333333333333,1354,470 +15441,257.35,1327,470 +15442,257.3666666666667,1301,468 +15443,257.3833333333333,1277,468 +15444,257.4,1253,467 +15445,257.4166666666667,1229,466 +15446,257.43333333333334,1207,464 +15447,257.45,1186,463 +15448,257.46666666666664,1166,462 +15449,257.48333333333335,1148,461 +15450,257.5,1131,459 +15451,257.51666666666665,1115,458 +15452,257.5333333333333,1101,457 +15453,257.55,1089,456 +15454,257.56666666666666,1078,455 +15455,257.5833333333333,1069,454 +15456,257.6,1062,454 +15457,257.6166666666667,1056,453 +15458,257.6333333333333,1053,453 +15459,257.65,1053,453 +15460,257.6666666666667,1053,453 +15461,257.68333333333334,1053,453 +15462,257.7,1056,453 +15463,257.71666666666664,1062,454 +15464,257.73333333333335,1069,455 +15465,257.75,1079,456 +15466,257.76666666666665,1089,457 +15467,257.7833333333333,1102,458 +15468,257.8,1116,459 +15469,257.81666666666666,1132,460 +15470,257.8333333333333,1149,462 +15471,257.85,1168,463 +15472,257.8666666666667,1188,465 +15473,257.8833333333333,1210,466 +15474,257.9,1232,467 +15475,257.9166666666667,1256,468 +15476,257.93333333333334,1280,469 +15477,257.95,1306,470 +15478,257.96666666666664,1332,471 +15479,257.98333333333335,1358,471 +15480,258.0,1386,471 +15481,258.01666666666665,1414,472 +15482,258.0333333333333,1442,472 +15483,258.05,1471,472 +15484,258.06666666666666,1499,471 +15485,258.0833333333333,1527,471 +15486,258.1,1555,471 +15487,258.1166666666667,1583,470 +15488,258.1333333333333,1610,469 +15489,258.15,1637,468 +15490,258.1666666666667,1663,467 +15491,258.18333333333334,1688,466 +15492,258.2,1713,464 +15493,258.21666666666664,1736,462 +15494,258.23333333333335,1757,461 +15495,258.25,1778,459 +15496,258.26666666666665,1797,457 +15497,258.2833333333333,1815,456 +15498,258.3,1831,454 +15499,258.31666666666666,1846,453 +15500,258.3333333333333,1859,451 +15501,258.35,1871,450 +15502,258.3666666666667,1880,449 +15503,258.3833333333333,1888,448 +15504,258.4,1894,447 +15505,258.4166666666667,1898,447 +15506,258.43333333333334,1899,447 +15507,258.45,1899,447 +15508,258.46666666666664,1899,447 +15509,258.48333333333335,1896,447 +15510,258.5,1891,447 +15511,258.51666666666665,1884,448 +15512,258.5333333333333,1875,449 +15513,258.55,1864,450 +15514,258.56666666666666,1852,451 +15515,258.5833333333333,1838,453 +15516,258.6,1823,454 +15517,258.6166666666667,1805,456 +15518,258.6333333333333,1787,457 +15519,258.65,1767,459 +15520,258.6666666666667,1746,460 +15521,258.68333333333334,1724,462 +15522,258.7,1701,464 +15523,258.71666666666664,1677,465 +15524,258.73333333333335,1652,466 +15525,258.75,1626,467 +15526,258.76666666666665,1600,468 +15527,258.7833333333333,1572,469 +15528,258.8,1545,470 +15529,258.81666666666666,1518,470 +15530,258.8333333333333,1490,471 +15531,258.85,1462,471 +15532,258.8666666666667,1434,471 +15533,258.8833333333333,1407,471 +15534,258.9,1379,471 +15535,258.9166666666667,1352,470 +15536,258.93333333333334,1326,470 +15537,258.95,1300,469 +15538,258.96666666666664,1275,468 +15539,258.98333333333335,1251,467 +15540,259.0,1228,466 +15541,259.01666666666665,1206,465 +15542,259.0333333333333,1185,463 +15543,259.05,1166,462 +15544,259.06666666666666,1147,461 +15545,259.0833333333333,1131,460 +15546,259.1,1115,459 +15547,259.1166666666667,1101,457 +15548,259.1333333333333,1089,456 +15549,259.15,1078,455 +15550,259.1666666666667,1070,455 +15551,259.18333333333334,1063,454 +15552,259.2,1057,454 +15553,259.21666666666664,1054,453 +15554,259.23333333333335,1054,453 +15555,259.25,1054,453 +15556,259.26666666666665,1055,454 +15557,259.2833333333333,1058,454 +15558,259.3,1064,455 +15559,259.31666666666666,1072,456 +15560,259.3333333333333,1081,456 +15561,259.35,1092,457 +15562,259.3666666666667,1105,459 +15563,259.3833333333333,1119,460 +15564,259.4,1135,461 +15565,259.4166666666667,1152,463 +15566,259.43333333333334,1171,464 +15567,259.45,1191,465 +15568,259.46666666666664,1213,466 +15569,259.48333333333335,1236,467 +15570,259.5,1259,468 +15571,259.51666666666665,1284,469 +15572,259.5333333333333,1310,470 +15573,259.55,1336,471 +15574,259.56666666666666,1362,471 +15575,259.5833333333333,1390,472 +15576,259.6,1418,472 +15577,259.6166666666667,1446,472 +15578,259.6333333333333,1474,472 +15579,259.65,1502,472 +15580,259.6666666666667,1531,471 +15581,259.68333333333334,1558,471 +15582,259.7,1586,470 +15583,259.71666666666664,1613,469 +15584,259.73333333333335,1640,468 +15585,259.75,1666,467 +15586,259.76666666666665,1690,466 +15587,259.7833333333333,1714,464 +15588,259.8,1737,462 +15589,259.81666666666666,1759,461 +15590,259.8333333333333,1779,459 +15591,259.85,1798,457 +15592,259.8666666666667,1816,456 +15593,259.8833333333333,1832,454 +15594,259.9,1846,453 +15595,259.9166666666667,1859,451 +15596,259.93333333333334,1870,450 +15597,259.95,1880,449 +15598,259.96666666666664,1887,448 +15599,259.98333333333335,1893,448 +15600,260.0,1897,447 +15601,260.01666666666665,1898,447 +15602,260.0333333333333,1898,447 +15603,260.05,1898,447 +15604,260.06666666666666,1894,447 +15605,260.0833333333333,1889,448 +15606,260.1,1881,448 +15607,260.1166666666667,1872,449 +15608,260.1333333333333,1862,450 +15609,260.15,1849,452 +15610,260.1666666666667,1835,453 +15611,260.18333333333334,1820,454 +15612,260.2,1803,456 +15613,260.21666666666664,1784,457 +15614,260.23333333333335,1764,459 +15615,260.25,1743,460 +15616,260.26666666666665,1721,462 +15617,260.2833333333333,1698,464 +15618,260.3,1674,465 +15619,260.31666666666666,1649,467 +15620,260.3333333333333,1623,468 +15621,260.35,1596,469 +15622,260.3666666666667,1570,469 +15623,260.3833333333333,1542,470 +15624,260.4,1514,470 +15625,260.4166666666667,1487,471 +15626,260.43333333333334,1459,471 +15627,260.45,1431,471 +15628,260.46666666666664,1404,471 +15629,260.48333333333335,1376,470 +15630,260.5,1350,470 +15631,260.51666666666665,1323,470 +15632,260.5333333333333,1298,469 +15633,260.55,1273,468 +15634,260.56666666666666,1250,467 +15635,260.5833333333333,1227,466 +15636,260.6,1205,465 +15637,260.6166666666667,1184,463 +15638,260.6333333333333,1165,462 +15639,260.65,1147,461 +15640,260.6666666666667,1130,459 +15641,260.68333333333334,1115,458 +15642,260.7,1101,457 +15643,260.71666666666664,1089,456 +15644,260.73333333333335,1078,455 +15645,260.75,1070,455 +15646,260.76666666666665,1063,454 +15647,260.7833333333333,1058,454 +15648,260.8,1054,454 +15649,260.81666666666666,1054,454 +15650,260.8333333333333,1054,454 +15651,260.85,1056,454 +15652,260.8666666666667,1060,454 +15653,260.8833333333333,1065,455 +15654,260.9,1073,456 +15655,260.9166666666667,1082,457 +15656,260.93333333333334,1093,458 +15657,260.95,1106,459 +15658,260.96666666666664,1121,460 +15659,260.98333333333335,1136,462 +15660,261.0,1154,463 +15661,261.01666666666665,1173,464 +15662,261.0333333333333,1193,466 +15663,261.05,1214,467 +15664,261.06666666666666,1237,468 +15665,261.0833333333333,1261,469 +15666,261.1,1285,470 +15667,261.1166666666667,1311,470 +15668,261.1333333333333,1337,471 +15669,261.15,1364,471 +15670,261.1666666666667,1391,472 +15671,261.18333333333334,1419,472 +15672,261.2,1447,472 +15673,261.21666666666664,1475,472 +15674,261.23333333333335,1503,472 +15675,261.25,1531,471 +15676,261.26666666666665,1559,471 +15677,261.2833333333333,1587,470 +15678,261.3,1614,469 +15679,261.31666666666666,1640,468 +15680,261.3333333333333,1666,467 +15681,261.35,1690,466 +15682,261.3666666666667,1714,464 +15683,261.3833333333333,1737,463 +15684,261.4,1758,461 +15685,261.4166666666667,1779,459 +15686,261.43333333333334,1797,458 +15687,261.45,1815,456 +15688,261.46666666666664,1831,454 +15689,261.48333333333335,1845,453 +15690,261.5,1858,452 +15691,261.51666666666665,1869,450 +15692,261.5333333333333,1878,449 +15693,261.55,1885,448 +15694,261.56666666666666,1891,448 +15695,261.5833333333333,1895,447 +15696,261.6,1895,447 +15697,261.6166666666667,1895,447 +15698,261.6333333333333,1895,447 +15699,261.65,1891,447 +15700,261.6666666666667,1885,448 +15701,261.68333333333334,1878,448 +15702,261.7,1869,449 +15703,261.71666666666664,1858,450 +15704,261.73333333333335,1846,452 +15705,261.75,1832,453 +15706,261.76666666666665,1816,454 +15707,261.7833333333333,1799,456 +15708,261.8,1780,458 +15709,261.81666666666666,1761,459 +15710,261.8333333333333,1740,461 +15711,261.85,1717,462 +15712,261.8666666666667,1694,464 +15713,261.8833333333333,1670,465 +15714,261.9,1645,466 +15715,261.9166666666667,1619,468 +15716,261.93333333333334,1593,468 +15717,261.95,1566,469 +15718,261.96666666666664,1539,470 +15719,261.98333333333335,1511,470 +15720,262.0,1484,470 +15721,262.01666666666665,1456,470 +15722,262.0333333333333,1428,470 +15723,262.05,1401,470 +15724,262.06666666666666,1374,470 +15725,262.0833333333333,1347,470 +15726,262.1,1321,469 +15727,262.1166666666667,1296,469 +15728,262.1333333333333,1271,468 +15729,262.15,1248,467 +15730,262.1666666666667,1225,465 +15731,262.18333333333334,1203,464 +15732,262.2,1183,463 +15733,262.21666666666664,1164,462 +15734,262.23333333333335,1146,460 +15735,262.25,1129,459 +15736,262.26666666666665,1114,458 +15737,262.2833333333333,1101,457 +15738,262.3,1089,456 +15739,262.31666666666666,1079,455 +15740,262.3333333333333,1071,455 +15741,262.35,1064,454 +15742,262.3666666666667,1059,454 +15743,262.3833333333333,1056,453 +15744,262.4,1056,453 +15745,262.4166666666667,1056,453 +15746,262.43333333333334,1057,454 +15747,262.45,1061,454 +15748,262.46666666666664,1067,455 +15749,262.48333333333335,1075,455 +15750,262.5,1085,456 +15751,262.51666666666665,1096,458 +15752,262.5333333333333,1109,459 +15753,262.55,1123,460 +15754,262.56666666666666,1139,461 +15755,262.5833333333333,1157,463 +15756,262.6,1176,464 +15757,262.6166666666667,1196,465 +15758,262.6333333333333,1218,467 +15759,262.65,1241,468 +15760,262.6666666666667,1264,469 +15761,262.68333333333334,1289,469 +15762,262.7,1314,471 +15763,262.71666666666664,1340,471 +15764,262.73333333333335,1367,472 +15765,262.75,1395,472 +15766,262.76666666666665,1423,472 +15767,262.7833333333333,1451,472 +15768,262.8,1479,472 +15769,262.81666666666666,1507,472 +15770,262.8333333333333,1535,471 +15771,262.85,1563,471 +15772,262.8666666666667,1590,470 +15773,262.8833333333333,1617,469 +15774,262.9,1642,468 +15775,262.9166666666667,1668,467 +15776,262.93333333333334,1692,465 +15777,262.95,1716,463 +15778,262.96666666666664,1738,462 +15779,262.98333333333335,1760,460 +15780,263.0,1780,458 +15781,263.01666666666665,1799,457 +15782,263.0333333333333,1816,455 +15783,263.05,1832,454 +15784,263.06666666666666,1846,452 +15785,263.0833333333333,1858,451 +15786,263.1,1868,449 +15787,263.1166666666667,1877,448 +15788,263.1333333333333,1885,448 +15789,263.15,1890,447 +15790,263.1666666666667,1893,446 +15791,263.18333333333334,1893,446 +15792,263.2,1893,446 +15793,263.21666666666664,1893,446 +15794,263.23333333333335,1889,446 +15795,263.25,1884,447 +15796,263.26666666666665,1876,448 +15797,263.2833333333333,1867,449 +15798,263.3,1856,450 +15799,263.31666666666666,1844,451 +15800,263.3333333333333,1829,453 +15801,263.35,1813,454 +15802,263.3666666666667,1796,455 +15803,263.3833333333333,1778,457 +15804,263.4,1758,459 +15805,263.4166666666667,1737,460 +15806,263.43333333333334,1714,462 +15807,263.45,1691,463 +15808,263.46666666666664,1667,465 +15809,263.48333333333335,1642,466 +15810,263.5,1616,467 +15811,263.51666666666665,1590,468 +15812,263.5333333333333,1563,469 +15813,263.55,1536,470 +15814,263.56666666666666,1509,470 +15815,263.5833333333333,1481,470 +15816,263.6,1454,470 +15817,263.6166666666667,1426,470 +15818,263.6333333333333,1399,470 +15819,263.65,1372,470 +15820,263.6666666666667,1345,469 +15821,263.68333333333334,1320,469 +15822,263.7,1295,468 +15823,263.71666666666664,1270,467 +15824,263.73333333333335,1247,466 +15825,263.75,1224,465 +15826,263.76666666666665,1203,464 +15827,263.7833333333333,1182,463 +15828,263.8,1163,461 +15829,263.81666666666666,1146,460 +15830,263.8333333333333,1129,459 +15831,263.85,1115,458 +15832,263.8666666666667,1101,457 +15833,263.8833333333333,1090,456 +15834,263.9,1080,455 +15835,263.9166666666667,1072,455 +15836,263.93333333333334,1065,454 +15837,263.95,1060,454 +15838,263.96666666666664,1057,454 +15839,263.98333333333335,1057,454 +15840,264.0,1057,454 +15841,264.01666666666665,1058,454 +15842,264.0333333333333,1063,454 +15843,264.05,1069,455 +15844,264.06666666666666,1077,456 +15845,264.0833333333333,1086,456 +15846,264.1,1098,458 +15847,264.1166666666667,1111,459 +15848,264.1333333333333,1125,460 +15849,264.15,1141,461 +15850,264.1666666666667,1159,463 +15851,264.18333333333334,1178,464 +15852,264.2,1198,466 +15853,264.21666666666664,1220,467 +15854,264.23333333333335,1243,468 +15855,264.25,1266,469 +15856,264.26666666666665,1291,469 +15857,264.2833333333333,1316,470 +15858,264.3,1342,471 +15859,264.31666666666666,1369,471 +15860,264.3333333333333,1396,471 +15861,264.35,1424,472 +15862,264.3666666666667,1452,472 +15863,264.3833333333333,1479,472 +15864,264.4,1507,472 +15865,264.4166666666667,1535,471 +15866,264.43333333333334,1562,471 +15867,264.45,1590,470 +15868,264.46666666666664,1616,469 +15869,264.48333333333335,1642,468 +15870,264.5,1668,467 +15871,264.51666666666665,1692,466 +15872,264.5333333333333,1716,464 +15873,264.55,1738,462 +15874,264.56666666666666,1760,461 +15875,264.5833333333333,1779,459 +15876,264.6,1798,457 +15877,264.6166666666667,1815,456 +15878,264.6333333333333,1831,454 +15879,264.65,1845,453 +15880,264.6666666666667,1857,451 +15881,264.68333333333334,1868,450 +15882,264.7,1877,449 +15883,264.71666666666664,1884,448 +15884,264.73333333333335,1889,448 +15885,264.75,1893,447 +15886,264.76666666666665,1893,447 +15887,264.7833333333333,1893,447 +15888,264.8,1892,447 +15889,264.81666666666666,1888,447 +15890,264.8333333333333,1882,448 +15891,264.85,1874,449 +15892,264.8666666666667,1865,450 +15893,264.8833333333333,1854,451 +15894,264.9,1842,452 +15895,264.9166666666667,1827,453 +15896,264.93333333333334,1812,455 +15897,264.95,1794,456 +15898,264.96666666666664,1776,458 +15899,264.98333333333335,1756,459 +15900,265.0,1735,461 +15901,265.01666666666665,1713,462 +15902,265.0333333333333,1689,464 +15903,265.05,1665,465 +15904,265.06666666666666,1640,467 +15905,265.0833333333333,1615,468 +15906,265.1,1588,469 +15907,265.1166666666667,1562,469 +15908,265.1333333333333,1534,470 +15909,265.15,1507,470 +15910,265.1666666666667,1480,471 +15911,265.18333333333334,1452,471 +15912,265.2,1425,471 +15913,265.21666666666664,1398,471 +15914,265.23333333333335,1370,470 +15915,265.25,1344,470 +15916,265.26666666666665,1318,470 +15917,265.2833333333333,1293,468 +15918,265.3,1269,468 +15919,265.31666666666666,1246,467 +15920,265.3333333333333,1223,466 +15921,265.35,1202,464 +15922,265.3666666666667,1182,463 +15923,265.3833333333333,1163,462 +15924,265.4,1145,461 +15925,265.4166666666667,1129,459 +15926,265.43333333333334,1114,458 +15927,265.45,1101,457 +15928,265.46666666666664,1089,456 +15929,265.48333333333335,1079,455 +15930,265.5,1071,455 +15931,265.51666666666665,1065,454 +15932,265.5333333333333,1060,454 +15933,265.55,1057,454 +15934,265.56666666666666,1057,454 +15935,265.5833333333333,1057,454 +15936,265.6,1060,454 +15937,265.6166666666667,1065,455 +15938,265.6333333333333,1071,455 +15939,265.65,1079,456 +15940,265.6666666666667,1089,457 +15941,265.68333333333334,1100,458 +15942,265.7,1113,459 +15943,265.71666666666664,1128,460 +15944,265.73333333333335,1144,462 +15945,265.75,1162,463 +15946,265.76666666666665,1181,465 +15947,265.7833333333333,1201,466 +15948,265.8,1223,467 +15949,265.81666666666666,1246,468 +15950,265.8333333333333,1269,469 +15951,265.85,1294,470 +15952,265.8666666666667,1320,471 +15953,265.8833333333333,1346,471 +15954,265.9,1373,472 +15955,265.9166666666667,1400,472 +15956,265.93333333333334,1427,472 +15957,265.95,1456,472 +15958,265.96666666666664,1484,472 +15959,265.98333333333335,1512,471 +15960,266.0,1539,471 +15961,266.01666666666665,1567,470 +15962,266.0333333333333,1594,469 +15963,266.05,1620,469 +15964,266.06666666666666,1646,468 +15965,266.0833333333333,1671,466 +15966,266.1,1696,465 +15967,266.1166666666667,1719,463 +15968,266.1333333333333,1741,462 +15969,266.15,1762,461 +15970,266.1666666666667,1781,459 +15971,266.18333333333334,1800,457 +15972,266.2,1817,455 +15973,266.21666666666664,1832,454 +15974,266.23333333333335,1845,453 +15975,266.25,1858,451 +15976,266.26666666666665,1868,450 +15977,266.2833333333333,1877,449 +15978,266.3,1884,448 +15979,266.31666666666666,1889,448 +15980,266.3333333333333,1892,447 +15981,266.35,1892,447 +15982,266.3666666666667,1892,447 +15983,266.3833333333333,1890,448 +15984,266.4,1886,448 +15985,266.4166666666667,1880,448 +15986,266.43333333333334,1872,449 +15987,266.45,1863,450 +15988,266.46666666666664,1852,451 +15989,266.48333333333335,1839,453 +15990,266.5,1825,454 +15991,266.51666666666665,1809,455 +15992,266.5333333333333,1792,457 +15993,266.55,1773,458 +15994,266.56666666666666,1753,460 +15995,266.5833333333333,1732,461 +15996,266.6,1709,463 +15997,266.6166666666667,1686,464 +15998,266.6333333333333,1662,465 +15999,266.65,1637,467 +16000,266.6666666666667,1612,468 +16001,266.68333333333334,1585,469 +16002,266.7,1558,470 +16003,266.71666666666664,1531,470 +16004,266.73333333333335,1504,471 +16005,266.75,1477,471 +16006,266.76666666666665,1449,471 +16007,266.7833333333333,1422,471 +16008,266.8,1395,471 +16009,266.81666666666666,1368,470 +16010,266.8333333333333,1342,470 +16011,266.85,1316,469 +16012,266.8666666666667,1291,469 +16013,266.8833333333333,1267,468 +16014,266.9,1244,467 +16015,266.9166666666667,1222,466 +16016,266.93333333333334,1200,465 +16017,266.95,1180,463 +16018,266.96666666666664,1161,462 +16019,266.98333333333335,1144,461 +16020,267.0,1128,460 +16021,267.01666666666665,1113,459 +16022,267.0333333333333,1100,457 +16023,267.05,1089,456 +16024,267.06666666666666,1079,455 +16025,267.0833333333333,1071,455 +16026,267.1,1065,454 +16027,267.1166666666667,1061,454 +16028,267.1333333333333,1058,454 +16029,267.15,1058,454 +16030,267.1666666666667,1058,454 +16031,267.18333333333334,1061,454 +16032,267.2,1066,455 +16033,267.21666666666664,1072,455 +16034,267.23333333333335,1080,456 +16035,267.25,1090,457 +16036,267.26666666666665,1101,458 +16037,267.2833333333333,1115,460 +16038,267.3,1130,461 +16039,267.31666666666666,1146,462 +16040,267.3333333333333,1164,463 +16041,267.35,1183,465 +16042,267.3666666666667,1203,466 +16043,267.3833333333333,1225,467 +16044,267.4,1248,468 +16045,267.4166666666667,1271,469 +16046,267.43333333333334,1296,470 +16047,267.45,1321,471 +16048,267.46666666666664,1347,471 +16049,267.48333333333335,1374,471 +16050,267.5,1402,472 +16051,267.51666666666665,1429,472 +16052,267.5333333333333,1457,472 +16053,267.55,1485,472 +16054,267.56666666666666,1513,471 +16055,267.5833333333333,1540,471 +16056,267.6,1568,470 +16057,267.6166666666667,1595,470 +16058,267.6333333333333,1621,469 +16059,267.65,1647,468 +16060,267.6666666666667,1672,467 +16061,267.68333333333334,1696,465 +16062,267.7,1719,464 +16063,267.71666666666664,1741,462 +16064,267.73333333333335,1762,460 +16065,267.75,1781,459 +16066,267.76666666666665,1799,457 +16067,267.7833333333333,1816,456 +16068,267.8,1831,454 +16069,267.81666666666666,1845,453 +16070,267.8333333333333,1857,451 +16071,267.85,1867,450 +16072,267.8666666666667,1876,449 +16073,267.8833333333333,1883,448 +16074,267.9,1888,448 +16075,267.9166666666667,1891,447 +16076,267.93333333333334,1891,447 +16077,267.95,1891,447 +16078,267.96666666666664,1889,448 +16079,267.98333333333335,1885,448 +16080,268.0,1879,448 +16081,268.01666666666665,1871,449 +16082,268.0333333333333,1861,450 +16083,268.05,1850,451 +16084,268.06666666666666,1837,453 +16085,268.0833333333333,1823,454 +16086,268.1,1807,455 +16087,268.1166666666667,1790,457 +16088,268.1333333333333,1771,458 +16089,268.15,1751,460 +16090,268.1666666666667,1730,461 +16091,268.18333333333334,1707,462 +16092,268.2,1684,464 +16093,268.21666666666664,1660,465 +16094,268.23333333333335,1635,467 +16095,268.25,1609,468 +16096,268.26666666666665,1583,468 +16097,268.2833333333333,1556,469 +16098,268.3,1529,470 +16099,268.31666666666666,1502,470 +16100,268.3333333333333,1475,470 +16101,268.35,1447,470 +16102,268.3666666666667,1420,470 +16103,268.3833333333333,1393,470 +16104,268.4,1366,470 +16105,268.4166666666667,1340,469 +16106,268.43333333333334,1315,469 +16107,268.45,1290,467 +16108,268.46666666666664,1266,467 +16109,268.48333333333335,1243,466 +16110,268.5,1221,465 +16111,268.51666666666665,1200,463 +16112,268.5333333333333,1180,462 +16113,268.55,1161,461 +16114,268.56666666666666,1144,460 +16115,268.5833333333333,1128,459 +16116,268.6,1114,457 +16117,268.6166666666667,1101,456 +16118,268.6333333333333,1090,456 +16119,268.65,1080,455 +16120,268.6666666666667,1072,454 +16121,268.68333333333334,1066,454 +16122,268.7,1062,453 +16123,268.71666666666664,1060,453 +16124,268.73333333333335,1060,453 +16125,268.75,1060,454 +16126,268.76666666666665,1063,454 +16127,268.7833333333333,1068,455 +16128,268.8,1075,455 +16129,268.81666666666666,1083,456 +16130,268.8333333333333,1093,457 +16131,268.85,1105,458 +16132,268.8666666666667,1118,460 +16133,268.8833333333333,1133,461 +16134,268.9,1149,462 +16135,268.9166666666667,1167,464 +16136,268.93333333333334,1186,465 +16137,268.95,1206,466 +16138,268.96666666666664,1229,467 +16139,268.98333333333335,1251,468 +16140,269.0,1274,469 +16141,269.01666666666665,1299,470 +16142,269.0333333333333,1324,471 +16143,269.05,1350,471 +16144,269.06666666666666,1377,472 +16145,269.0833333333333,1405,472 +16146,269.1,1432,472 +16147,269.1166666666667,1459,472 +16148,269.1333333333333,1487,472 +16149,269.15,1515,471 +16150,269.1666666666667,1542,471 +16151,269.18333333333334,1569,471 +16152,269.2,1596,470 +16153,269.21666666666664,1622,469 +16154,269.23333333333335,1648,468 +16155,269.25,1672,467 +16156,269.26666666666665,1696,466 +16157,269.2833333333333,1719,464 +16158,269.3,1741,463 +16159,269.31666666666666,1762,461 +16160,269.3333333333333,1781,460 +16161,269.35,1799,458 +16162,269.3666666666667,1816,456 +16163,269.3833333333333,1831,455 +16164,269.4,1844,453 +16165,269.4166666666667,1856,452 +16166,269.43333333333334,1866,451 +16167,269.45,1874,450 +16168,269.46666666666664,1881,449 +16169,269.48333333333335,1886,448 +16170,269.5,1889,448 +16171,269.51666666666665,1889,448 +16172,269.5333333333333,1889,448 +16173,269.55,1887,448 +16174,269.56666666666666,1882,448 +16175,269.5833333333333,1876,449 +16176,269.6,1868,450 +16177,269.6166666666667,1858,451 +16178,269.6333333333333,1847,452 +16179,269.65,1834,453 +16180,269.6666666666667,1820,454 +16181,269.68333333333334,1803,456 +16182,269.7,1786,457 +16183,269.71666666666664,1767,459 +16184,269.73333333333335,1747,460 +16185,269.75,1726,462 +16186,269.76666666666665,1704,463 +16187,269.7833333333333,1681,465 +16188,269.8,1657,466 +16189,269.81666666666666,1631,467 +16190,269.8333333333333,1606,468 +16191,269.85,1580,469 +16192,269.8666666666667,1553,470 +16193,269.8833333333333,1526,470 +16194,269.9,1499,471 +16195,269.9166666666667,1472,471 +16196,269.93333333333334,1445,471 +16197,269.95,1418,471 +16198,269.96666666666664,1391,471 +16199,269.98333333333335,1364,471 +16200,270.0,1338,470 +16201,270.01666666666665,1313,469 +16202,270.0333333333333,1288,469 +16203,270.05,1265,468 +16204,270.06666666666666,1242,467 +16205,270.0833333333333,1220,466 +16206,270.1,1199,465 +16207,270.1166666666667,1179,463 +16208,270.1333333333333,1161,462 +16209,270.15,1144,461 +16210,270.1666666666667,1128,460 +16211,270.18333333333334,1114,459 +16212,270.2,1101,458 +16213,270.21666666666664,1090,457 +16214,270.23333333333335,1081,456 +16215,270.25,1074,456 +16216,270.26666666666665,1068,455 +16217,270.2833333333333,1064,455 +16218,270.3,1062,455 +16219,270.31666666666666,1062,455 +16220,270.3333333333333,1062,455 +16221,270.35,1065,455 +16222,270.3666666666667,1070,456 +16223,270.3833333333333,1077,456 +16224,270.4,1085,457 +16225,270.4166666666667,1095,458 +16226,270.43333333333334,1107,459 +16227,270.45,1121,460 +16228,270.46666666666664,1136,462 +16229,270.48333333333335,1152,463 +16230,270.5,1170,464 +16231,270.51666666666665,1190,466 +16232,270.5333333333333,1210,467 +16233,270.55,1232,468 +16234,270.56666666666666,1255,469 +16235,270.5833333333333,1278,469 +16236,270.6,1303,470 +16237,270.6166666666667,1329,471 +16238,270.6333333333333,1354,472 +16239,270.65,1381,472 +16240,270.6666666666667,1408,472 +16241,270.68333333333334,1436,472 +16242,270.7,1463,472 +16243,270.71666666666664,1491,472 +16244,270.73333333333335,1519,472 +16245,270.75,1546,471 +16246,270.76666666666665,1573,471 +16247,270.7833333333333,1600,470 +16248,270.8,1626,469 +16249,270.81666666666666,1651,468 +16250,270.8333333333333,1676,467 +16251,270.85,1699,466 +16252,270.8666666666667,1722,464 +16253,270.8833333333333,1744,462 +16254,270.9,1764,461 +16255,270.9166666666667,1783,459 +16256,270.93333333333334,1801,458 +16257,270.95,1817,456 +16258,270.96666666666664,1831,454 +16259,270.98333333333335,1845,453 +16260,271.0,1856,452 +16261,271.01666666666665,1866,451 +16262,271.0333333333333,1874,450 +16263,271.05,1880,449 +16264,271.06666666666666,1885,449 +16265,271.0833333333333,1888,448 +16266,271.1,1888,448 +16267,271.1166666666667,1888,448 +16268,271.1333333333333,1885,448 +16269,271.15,1880,449 +16270,271.1666666666667,1874,449 +16271,271.18333333333334,1866,450 +16272,271.2,1856,451 +16273,271.21666666666664,1844,452 +16274,271.23333333333335,1832,453 +16275,271.25,1817,455 +16276,271.26666666666665,1801,456 +16277,271.2833333333333,1783,457 +16278,271.3,1764,459 +16279,271.31666666666666,1744,460 +16280,271.3333333333333,1723,462 +16281,271.35,1701,464 +16282,271.3666666666667,1678,465 +16283,271.3833333333333,1653,466 +16284,271.4,1629,467 +16285,271.4166666666667,1603,468 +16286,271.43333333333334,1577,469 +16287,271.45,1550,470 +16288,271.46666666666664,1523,470 +16289,271.48333333333335,1496,471 +16290,271.5,1469,471 +16291,271.51666666666665,1442,471 +16292,271.5333333333333,1416,471 +16293,271.55,1389,471 +16294,271.56666666666666,1362,471 +16295,271.5833333333333,1336,470 +16296,271.6,1311,470 +16297,271.6166666666667,1286,469 +16298,271.6333333333333,1263,468 +16299,271.65,1240,467 +16300,271.6666666666667,1218,466 +16301,271.68333333333334,1198,465 +16302,271.7,1178,463 +16303,271.71666666666664,1160,462 +16304,271.73333333333335,1143,461 +16305,271.75,1127,460 +16306,271.76666666666665,1114,459 +16307,271.7833333333333,1101,458 +16308,271.8,1090,457 +16309,271.81666666666666,1081,456 +16310,271.8333333333333,1074,455 +16311,271.85,1068,455 +16312,271.8666666666667,1064,454 +16313,271.8833333333333,1063,454 +16314,271.9,1063,454 +16315,271.9166666666667,1063,454 +16316,271.93333333333334,1066,455 +16317,271.95,1071,455 +16318,271.96666666666664,1078,456 +16319,271.98333333333335,1086,457 +16320,272.0,1096,458 +16321,272.01666666666665,1108,459 +16322,272.0333333333333,1122,460 +16323,272.05,1137,462 +16324,272.06666666666666,1153,463 +16325,272.0833333333333,1171,464 +16326,272.1,1190,465 +16327,272.1166666666667,1211,467 +16328,272.1333333333333,1233,468 +16329,272.15,1256,468 +16330,272.1666666666667,1279,469 +16331,272.18333333333334,1304,470 +16332,272.2,1329,471 +16333,272.21666666666664,1355,471 +16334,272.23333333333335,1383,472 +16335,272.25,1410,472 +16336,272.26666666666665,1437,472 +16337,272.2833333333333,1465,472 +16338,272.3,1493,472 +16339,272.31666666666666,1520,472 +16340,272.3333333333333,1547,471 +16341,272.35,1574,471 +16342,272.3666666666667,1601,470 +16343,272.3833333333333,1627,469 +16344,272.4,1652,468 +16345,272.4166666666667,1677,467 +16346,272.43333333333334,1700,465 +16347,272.45,1723,464 +16348,272.46666666666664,1744,462 +16349,272.48333333333335,1764,460 +16350,272.5,1783,459 +16351,272.51666666666665,1801,457 +16352,272.5333333333333,1817,455 +16353,272.55,1831,454 +16354,272.56666666666666,1844,452 +16355,272.5833333333333,1856,451 +16356,272.6,1865,450 +16357,272.6166666666667,1873,449 +16358,272.6333333333333,1879,448 +16359,272.65,1884,447 +16360,272.6666666666667,1886,447 +16361,272.68333333333334,1886,447 +16362,272.7,1886,447 +16363,272.71666666666664,1883,447 +16364,272.73333333333335,1878,448 +16365,272.75,1872,448 +16366,272.76666666666665,1863,449 +16367,272.7833333333333,1853,450 +16368,272.8,1842,451 +16369,272.81666666666666,1829,453 +16370,272.8333333333333,1814,454 +16371,272.85,1798,456 +16372,272.8666666666667,1781,457 +16373,272.8833333333333,1762,458 +16374,272.9,1742,460 +16375,272.9166666666667,1721,462 +16376,272.93333333333334,1699,463 +16377,272.95,1675,464 +16378,272.96666666666664,1651,466 +16379,272.98333333333335,1627,467 +16380,273.0,1601,468 +16381,273.01666666666665,1575,469 +16382,273.0333333333333,1549,469 +16383,273.05,1522,470 +16384,273.06666666666666,1495,470 +16385,273.0833333333333,1468,471 +16386,273.1,1441,471 +16387,273.1166666666667,1415,471 +16388,273.1333333333333,1387,470 +16389,273.15,1360,470 +16390,273.1666666666667,1335,470 +16391,273.18333333333334,1310,469 +16392,273.2,1285,468 +16393,273.21666666666664,1262,468 +16394,273.23333333333335,1240,467 +16395,273.25,1218,466 +16396,273.26666666666665,1197,464 +16397,273.2833333333333,1178,463 +16398,273.3,1159,462 +16399,273.31666666666666,1143,461 +16400,273.3333333333333,1127,460 +16401,273.35,1113,458 +16402,273.3666666666667,1101,458 +16403,273.3833333333333,1090,457 +16404,273.4,1081,456 +16405,273.4166666666667,1074,455 +16406,273.43333333333334,1068,455 +16407,273.45,1065,454 +16408,273.46666666666664,1064,454 +16409,273.48333333333335,1064,454 +16410,273.5,1064,455 +16411,273.51666666666665,1067,455 +16412,273.5333333333333,1072,456 +16413,273.55,1079,456 +16414,273.56666666666666,1088,457 +16415,273.5833333333333,1098,458 +16416,273.6,1109,459 +16417,273.6166666666667,1123,461 +16418,273.6333333333333,1138,462 +16419,273.65,1155,463 +16420,273.6666666666667,1173,465 +16421,273.68333333333334,1192,466 +16422,273.7,1213,467 +16423,273.71666666666664,1235,468 +16424,273.73333333333335,1258,469 +16425,273.75,1282,469 +16426,273.76666666666665,1307,470 +16427,273.7833333333333,1332,471 +16428,273.8,1358,471 +16429,273.81666666666666,1385,472 +16430,273.8333333333333,1412,472 +16431,273.85,1439,472 +16432,273.8666666666667,1467,472 +16433,273.8833333333333,1494,472 +16434,273.9,1522,471 +16435,273.9166666666667,1549,471 +16436,273.93333333333334,1576,470 +16437,273.95,1602,470 +16438,273.96666666666664,1628,469 +16439,273.98333333333335,1653,468 +16440,274.0,1678,466 +16441,274.01666666666665,1701,465 +16442,274.0333333333333,1723,463 +16443,274.05,1745,462 +16444,274.06666666666666,1765,460 +16445,274.0833333333333,1784,458 +16446,274.1,1801,457 +16447,274.1166666666667,1817,455 +16448,274.1333333333333,1831,454 +16449,274.15,1844,453 +16450,274.1666666666667,1855,452 +16451,274.18333333333334,1865,451 +16452,274.2,1873,450 +16453,274.21666666666664,1879,449 +16454,274.23333333333335,1883,448 +16455,274.25,1885,448 +16456,274.26666666666665,1885,448 +16457,274.2833333333333,1885,448 +16458,274.3,1882,448 +16459,274.31666666666666,1877,449 +16460,274.3333333333333,1871,449 +16461,274.35,1862,450 +16462,274.3666666666667,1852,451 +16463,274.3833333333333,1841,452 +16464,274.4,1827,454 +16465,274.4166666666667,1813,455 +16466,274.43333333333334,1797,456 +16467,274.45,1779,458 +16468,274.46666666666664,1760,459 +16469,274.48333333333335,1740,461 +16470,274.5,1719,462 +16471,274.51666666666665,1697,464 +16472,274.5333333333333,1674,465 +16473,274.55,1650,467 +16474,274.56666666666666,1625,468 +16475,274.5833333333333,1599,468 +16476,274.6,1573,469 +16477,274.6166666666667,1547,470 +16478,274.6333333333333,1520,470 +16479,274.65,1493,471 +16480,274.6666666666667,1466,471 +16481,274.68333333333334,1439,471 +16482,274.7,1413,471 +16483,274.71666666666664,1386,471 +16484,274.73333333333335,1360,471 +16485,274.75,1334,471 +16486,274.76666666666665,1310,470 +16487,274.7833333333333,1285,469 +16488,274.8,1262,468 +16489,274.81666666666666,1239,467 +16490,274.8333333333333,1218,466 +16491,274.85,1197,465 +16492,274.8666666666667,1177,463 +16493,274.8833333333333,1160,462 +16494,274.9,1143,461 +16495,274.9166666666667,1128,460 +16496,274.93333333333334,1114,459 +16497,274.95,1102,458 +16498,274.96666666666664,1091,457 +16499,274.98333333333335,1083,456 +16500,275.0,1075,456 +16501,275.01666666666665,1070,455 +16502,275.0333333333333,1066,455 +16503,275.05,1066,455 +16504,275.06666666666666,1066,455 +16505,275.0833333333333,1066,455 +16506,275.1,1069,456 +16507,275.1166666666667,1074,456 +16508,275.1333333333333,1081,457 +16509,275.15,1090,458 +16510,275.1666666666667,1100,459 +16511,275.18333333333334,1112,460 +16512,275.2,1126,461 +16513,275.21666666666664,1141,462 +16514,275.23333333333335,1158,464 +16515,275.25,1176,465 +16516,275.26666666666665,1196,466 +16517,275.2833333333333,1216,468 +16518,275.3,1238,468 +16519,275.31666666666666,1261,469 +16520,275.3333333333333,1284,470 +16521,275.35,1309,471 +16522,275.3666666666667,1334,471 +16523,275.3833333333333,1360,472 +16524,275.4,1387,472 +16525,275.4166666666667,1414,472 +16526,275.43333333333334,1441,472 +16527,275.45,1469,472 +16528,275.46666666666664,1496,472 +16529,275.48333333333335,1523,471 +16530,275.5,1551,471 +16531,275.51666666666665,1577,470 +16532,275.5333333333333,1604,469 +16533,275.55,1629,469 +16534,275.56666666666666,1654,467 +16535,275.5833333333333,1678,467 +16536,275.6,1702,465 +16537,275.6166666666667,1724,463 +16538,275.6333333333333,1745,462 +16539,275.65,1765,460 +16540,275.6666666666667,1784,459 +16541,275.68333333333334,1801,457 +16542,275.7,1817,456 +16543,275.71666666666664,1831,454 +16544,275.73333333333335,1844,453 +16545,275.75,1855,452 +16546,275.76666666666665,1864,450 +16547,275.7833333333333,1872,450 +16548,275.8,1877,449 +16549,275.81666666666666,1882,448 +16550,275.8333333333333,1883,448 +16551,275.85,1883,448 +16552,275.8666666666667,1883,448 +16553,275.8833333333333,1880,449 +16554,275.9,1875,449 +16555,275.9166666666667,1868,450 +16556,275.93333333333334,1860,450 +16557,275.95,1850,451 +16558,275.96666666666664,1838,453 +16559,275.98333333333335,1824,454 +16560,276.0,1810,455 +16561,276.01666666666665,1794,457 +16562,276.0333333333333,1776,458 +16563,276.05,1757,460 +16564,276.06666666666666,1737,461 +16565,276.0833333333333,1716,462 +16566,276.1,1693,464 +16567,276.1166666666667,1670,465 +16568,276.1333333333333,1646,466 +16569,276.15,1621,468 +16570,276.1666666666667,1596,469 +16571,276.18333333333334,1570,469 +16572,276.2,1544,470 +16573,276.21666666666664,1517,470 +16574,276.23333333333335,1490,471 +16575,276.25,1463,471 +16576,276.26666666666665,1436,471 +16577,276.2833333333333,1409,471 +16578,276.3,1383,471 +16579,276.31666666666666,1357,471 +16580,276.3333333333333,1332,470 +16581,276.35,1307,469 +16582,276.3666666666667,1283,468 +16583,276.3833333333333,1260,468 +16584,276.4,1237,467 +16585,276.4166666666667,1216,466 +16586,276.43333333333334,1196,465 +16587,276.45,1177,464 +16588,276.46666666666664,1159,462 +16589,276.48333333333335,1143,461 +16590,276.5,1128,460 +16591,276.51666666666665,1114,459 +16592,276.5333333333333,1102,458 +16593,276.55,1092,457 +16594,276.56666666666666,1083,457 +16595,276.5833333333333,1076,456 +16596,276.6,1070,456 +16597,276.6166666666667,1067,455 +16598,276.6333333333333,1067,455 +16599,276.65,1067,455 +16600,276.6666666666667,1067,455 +16601,276.68333333333334,1071,456 +16602,276.7,1076,456 +16603,276.71666666666664,1083,457 +16604,276.73333333333335,1092,458 +16605,276.75,1102,459 +16606,276.76666666666665,1115,460 +16607,276.7833333333333,1128,461 +16608,276.8,1143,462 +16609,276.81666666666666,1160,463 +16610,276.8333333333333,1178,464 +16611,276.85,1198,465 +16612,276.8666666666667,1219,466 +16613,276.8833333333333,1241,467 +16614,276.9,1263,468 +16615,276.9166666666667,1287,468 +16616,276.93333333333334,1311,470 +16617,276.95,1336,471 +16618,276.96666666666664,1362,471 +16619,276.98333333333335,1389,471 +16620,277.0,1416,471 +16621,277.01666666666665,1443,471 +16622,277.0333333333333,1471,471 +16623,277.05,1498,471 +16624,277.06666666666666,1526,471 +16625,277.0833333333333,1553,471 +16626,277.1,1579,470 +16627,277.1166666666667,1606,470 +16628,277.1333333333333,1631,469 +16629,277.15,1656,468 +16630,277.1666666666667,1680,466 +16631,277.18333333333334,1703,465 +16632,277.2,1725,463 +16633,277.21666666666664,1746,462 +16634,277.23333333333335,1766,460 +16635,277.25,1784,458 +16636,277.26666666666665,1801,457 +16637,277.2833333333333,1817,456 +16638,277.3,1831,454 +16639,277.31666666666666,1843,453 +16640,277.3333333333333,1854,452 +16641,277.35,1863,451 +16642,277.3666666666667,1870,450 +16643,277.3833333333333,1876,449 +16644,277.4,1880,449 +16645,277.4166666666667,1881,449 +16646,277.43333333333334,1881,449 +16647,277.45,1881,449 +16648,277.46666666666664,1878,449 +16649,277.48333333333335,1872,449 +16650,277.5,1865,450 +16651,277.51666666666665,1857,451 +16652,277.5333333333333,1847,452 +16653,277.55,1835,453 +16654,277.56666666666666,1822,455 +16655,277.5833333333333,1806,456 +16656,277.6,1790,458 +16657,277.6166666666667,1772,459 +16658,277.6333333333333,1753,461 +16659,277.65,1733,462 +16660,277.6666666666667,1712,463 +16661,277.68333333333334,1690,465 +16662,277.7,1667,466 +16663,277.71666666666664,1643,467 +16664,277.73333333333335,1618,468 +16665,277.75,1593,469 +16666,277.76666666666665,1567,470 +16667,277.7833333333333,1541,470 +16668,277.8,1514,471 +16669,277.81666666666666,1488,471 +16670,277.8333333333333,1461,471 +16671,277.85,1434,471 +16672,277.8666666666667,1408,471 +16673,277.8833333333333,1381,471 +16674,277.9,1355,471 +16675,277.9166666666667,1330,470 +16676,277.93333333333334,1305,469 +16677,277.95,1281,468 +16678,277.96666666666664,1258,468 +16679,277.98333333333335,1236,467 +16680,278.0,1215,466 +16681,278.01666666666665,1194,465 +16682,278.0333333333333,1176,464 +16683,278.05,1158,462 +16684,278.06666666666666,1142,461 +16685,278.0833333333333,1127,460 +16686,278.1,1113,459 +16687,278.1166666666667,1102,458 +16688,278.1333333333333,1092,457 +16689,278.15,1083,457 +16690,278.1666666666667,1076,456 +16691,278.18333333333334,1071,456 +16692,278.2,1067,456 +16693,278.21666666666664,1067,456 +16694,278.23333333333335,1067,456 +16695,278.25,1068,456 +16696,278.26666666666665,1072,456 +16697,278.2833333333333,1078,457 +16698,278.3,1085,457 +16699,278.31666666666666,1094,458 +16700,278.3333333333333,1104,459 +16701,278.35,1117,460 +16702,278.3666666666667,1131,462 +16703,278.3833333333333,1146,463 +16704,278.4,1163,464 +16705,278.4166666666667,1181,466 +16706,278.43333333333334,1201,467 +16707,278.45,1222,468 +16708,278.46666666666664,1244,469 +16709,278.48333333333335,1267,469 +16710,278.5,1290,470 +16711,278.51666666666665,1315,471 +16712,278.5333333333333,1340,472 +16713,278.55,1366,472 +16714,278.56666666666666,1393,472 +16715,278.5833333333333,1420,472 +16716,278.6,1447,472 +16717,278.6166666666667,1474,472 +16718,278.6333333333333,1501,472 +16719,278.65,1528,472 +16720,278.6666666666667,1555,471 +16721,278.68333333333334,1582,470 +16722,278.7,1608,470 +16723,278.71666666666664,1634,469 +16724,278.73333333333335,1658,468 +16725,278.75,1682,466 +16726,278.76666666666665,1705,465 +16727,278.7833333333333,1727,463 +16728,278.8,1748,462 +16729,278.81666666666666,1768,460 +16730,278.8333333333333,1786,459 +16731,278.85,1803,457 +16732,278.8666666666667,1818,456 +16733,278.8833333333333,1832,454 +16734,278.9,1844,453 +16735,278.9166666666667,1855,452 +16736,278.93333333333334,1864,451 +16737,278.95,1871,450 +16738,278.96666666666664,1876,449 +16739,278.98333333333335,1880,448 +16740,279.0,1880,448 +16741,279.01666666666665,1880,448 +16742,279.0333333333333,1880,448 +16743,279.05,1877,449 +16744,279.06666666666666,1871,449 +16745,279.0833333333333,1864,450 +16746,279.1,1856,451 +16747,279.1166666666667,1845,452 +16748,279.1333333333333,1834,453 +16749,279.15,1820,454 +16750,279.1666666666667,1805,456 +16751,279.18333333333334,1789,457 +16752,279.2,1771,459 +16753,279.21666666666664,1752,460 +16754,279.23333333333335,1732,462 +16755,279.25,1711,463 +16756,279.26666666666665,1688,465 +16757,279.2833333333333,1665,466 +16758,279.3,1641,467 +16759,279.31666666666666,1616,468 +16760,279.3333333333333,1591,469 +16761,279.35,1565,470 +16762,279.3666666666667,1539,471 +16763,279.3833333333333,1512,471 +16764,279.4,1486,471 +16765,279.4166666666667,1459,471 +16766,279.43333333333334,1432,471 +16767,279.45,1406,471 +16768,279.46666666666664,1379,471 +16769,279.48333333333335,1353,471 +16770,279.5,1328,470 +16771,279.51666666666665,1304,470 +16772,279.5333333333333,1280,469 +16773,279.55,1257,468 +16774,279.56666666666666,1235,467 +16775,279.5833333333333,1214,466 +16776,279.6,1194,465 +16777,279.6166666666667,1175,464 +16778,279.6333333333333,1157,463 +16779,279.65,1141,461 +16780,279.6666666666667,1126,461 +16781,279.68333333333334,1113,459 +16782,279.7,1102,458 +16783,279.71666666666664,1091,458 +16784,279.73333333333335,1083,457 +16785,279.75,1076,456 +16786,279.76666666666665,1071,456 +16787,279.7833333333333,1068,456 +16788,279.8,1068,456 +16789,279.81666666666666,1068,456 +16790,279.8333333333333,1069,456 +16791,279.85,1073,456 +16792,279.8666666666667,1079,457 +16793,279.8833333333333,1086,458 +16794,279.9,1095,458 +16795,279.9166666666667,1106,459 +16796,279.93333333333334,1118,460 +16797,279.95,1132,462 +16798,279.96666666666664,1148,463 +16799,279.98333333333335,1165,464 +16800,280.0,1183,466 +16801,280.01666666666665,1203,467 +16802,280.0333333333333,1224,468 +16803,280.05,1246,469 +16804,280.06666666666666,1268,469 +16805,280.0833333333333,1292,470 +16806,280.1,1317,471 +16807,280.1166666666667,1342,472 +16808,280.1333333333333,1368,472 +16809,280.15,1395,472 +16810,280.1666666666667,1421,472 +16811,280.18333333333334,1448,472 +16812,280.2,1475,472 +16813,280.21666666666664,1503,472 +16814,280.23333333333335,1530,471 +16815,280.25,1556,471 +16816,280.26666666666665,1583,470 +16817,280.2833333333333,1609,470 +16818,280.3,1634,469 +16819,280.31666666666666,1659,468 +16820,280.3333333333333,1682,466 +16821,280.35,1705,465 +16822,280.3666666666667,1727,464 +16823,280.3833333333333,1747,462 +16824,280.4,1767,460 +16825,280.4166666666667,1784,459 +16826,280.43333333333334,1801,457 +16827,280.45,1817,456 +16828,280.46666666666664,1830,455 +16829,280.48333333333335,1842,453 +16830,280.5,1853,452 +16831,280.51666666666665,1862,451 +16832,280.5333333333333,1869,450 +16833,280.55,1874,450 +16834,280.56666666666666,1878,449 +16835,280.5833333333333,1878,449 +16836,280.6,1878,449 +16837,280.6166666666667,1878,449 +16838,280.6333333333333,1875,449 +16839,280.65,1870,450 +16840,280.6666666666667,1863,451 +16841,280.68333333333334,1854,451 +16842,280.7,1844,452 +16843,280.71666666666664,1832,454 +16844,280.73333333333335,1818,455 +16845,280.75,1803,456 +16846,280.76666666666665,1787,457 +16847,280.7833333333333,1769,459 +16848,280.8,1751,460 +16849,280.81666666666666,1730,462 +16850,280.8333333333333,1708,463 +16851,280.85,1686,465 +16852,280.8666666666667,1663,466 +16853,280.8833333333333,1639,467 +16854,280.9,1614,468 +16855,280.9166666666667,1589,469 +16856,280.93333333333334,1563,470 +16857,280.95,1537,470 +16858,280.96666666666664,1510,470 +16859,280.98333333333335,1484,471 +16860,281.0,1457,471 +16861,281.01666666666665,1430,471 +16862,281.0333333333333,1404,471 +16863,281.05,1378,471 +16864,281.06666666666666,1352,470 +16865,281.0833333333333,1327,470 +16866,281.1,1302,469 +16867,281.1166666666667,1279,468 +16868,281.1333333333333,1256,467 +16869,281.15,1234,466 +16870,281.1666666666667,1213,465 +16871,281.18333333333334,1193,464 +16872,281.2,1175,463 +16873,281.21666666666664,1157,462 +16874,281.23333333333335,1141,460 +16875,281.25,1127,459 +16876,281.26666666666665,1114,458 +16877,281.2833333333333,1102,457 +16878,281.3,1092,456 +16879,281.31666666666666,1084,456 +16880,281.3333333333333,1077,455 +16881,281.35,1073,455 +16882,281.3666666666667,1069,455 +16883,281.3833333333333,1069,455 +16884,281.4,1069,455 +16885,281.4166666666667,1071,455 +16886,281.43333333333334,1075,456 +16887,281.45,1081,456 +16888,281.46666666666664,1088,457 +16889,281.48333333333335,1098,458 +16890,281.5,1109,459 +16891,281.51666666666665,1121,460 +16892,281.5333333333333,1135,461 +16893,281.55,1151,463 +16894,281.56666666666666,1168,464 +16895,281.5833333333333,1186,465 +16896,281.6,1206,467 +16897,281.6166666666667,1227,468 +16898,281.6333333333333,1249,468 +16899,281.65,1271,469 +16900,281.6666666666667,1295,470 +16901,281.68333333333334,1319,471 +16902,281.7,1344,471 +16903,281.71666666666664,1371,472 +16904,281.73333333333335,1397,472 +16905,281.75,1424,472 +16906,281.76666666666665,1451,472 +16907,281.7833333333333,1478,472 +16908,281.8,1505,472 +16909,281.81666666666666,1531,471 +16910,281.8333333333333,1558,471 +16911,281.85,1585,470 +16912,281.8666666666667,1610,469 +16913,281.8833333333333,1635,469 +16914,281.9,1660,468 +16915,281.9166666666667,1683,466 +16916,281.93333333333334,1706,465 +16917,281.95,1727,464 +16918,281.96666666666664,1748,462 +16919,281.98333333333335,1767,460 +16920,282.0,1785,459 +16921,282.01666666666665,1801,458 +16922,282.0333333333333,1816,456 +16923,282.05,1829,455 +16924,282.06666666666666,1841,454 +16925,282.0833333333333,1851,453 +16926,282.1,1860,452 +16927,282.1166666666667,1867,451 +16928,282.1333333333333,1873,450 +16929,282.15,1876,450 +16930,282.1666666666667,1876,449 +16931,282.18333333333334,1876,449 +16932,282.2,1876,449 +16933,282.21666666666664,1872,449 +16934,282.23333333333335,1867,450 +16935,282.25,1860,451 +16936,282.26666666666665,1851,451 +16937,282.2833333333333,1841,453 +16938,282.3,1829,453 +16939,282.31666666666666,1816,455 +16940,282.3333333333333,1801,456 +16941,282.35,1784,458 +16942,282.3666666666667,1766,459 +16943,282.3833333333333,1748,460 +16944,282.4,1727,462 +16945,282.4166666666667,1706,463 +16946,282.43333333333334,1684,465 +16947,282.45,1661,466 +16948,282.46666666666664,1636,467 +16949,282.48333333333335,1612,468 +16950,282.5,1586,469 +16951,282.51666666666665,1561,470 +16952,282.5333333333333,1535,470 +16953,282.55,1508,471 +16954,282.56666666666666,1482,471 +16955,282.5833333333333,1455,471 +16956,282.6,1429,471 +16957,282.6166666666667,1402,471 +16958,282.6333333333333,1376,471 +16959,282.65,1351,471 +16960,282.6666666666667,1325,470 +16961,282.68333333333334,1301,469 +16962,282.7,1278,468 +16963,282.71666666666664,1255,468 +16964,282.73333333333335,1233,467 +16965,282.75,1212,466 +16966,282.76666666666665,1192,465 +16967,282.7833333333333,1174,464 +16968,282.8,1157,463 +16969,282.81666666666666,1141,461 +16970,282.8333333333333,1126,460 +16971,282.85,1114,459 +16972,282.8666666666667,1102,458 +16973,282.8833333333333,1093,458 +16974,282.9,1085,457 +16975,282.9166666666667,1078,457 +16976,282.93333333333334,1073,456 +16977,282.95,1070,456 +16978,282.96666666666664,1070,456 +16979,282.98333333333335,1070,456 +16980,283.0,1073,456 +16981,283.01666666666665,1076,457 +16982,283.0333333333333,1082,458 +16983,283.05,1090,458 +16984,283.06666666666666,1099,459 +16985,283.0833333333333,1110,460 +16986,283.1,1123,461 +16987,283.1166666666667,1137,462 +16988,283.1333333333333,1152,463 +16989,283.15,1169,465 +16990,283.1666666666667,1188,466 +16991,283.18333333333334,1208,467 +16992,283.2,1229,468 +16993,283.21666666666664,1251,469 +16994,283.23333333333335,1273,470 +16995,283.25,1297,470 +16996,283.26666666666665,1322,472 +16997,283.2833333333333,1347,472 +16998,283.3,1373,472 +16999,283.31666666666666,1400,472 +17000,283.3333333333333,1426,472 +17001,283.35,1454,472 +17002,283.3666666666667,1481,472 +17003,283.3833333333333,1508,472 +17004,283.4,1535,471 +17005,283.4166666666667,1561,471 +17006,283.43333333333334,1587,470 +17007,283.45,1613,469 +17008,283.46666666666664,1638,468 +17009,283.48333333333335,1662,467 +17010,283.5,1685,466 +17011,283.51666666666665,1708,465 +17012,283.5333333333333,1729,463 +17013,283.55,1750,462 +17014,283.56666666666666,1769,460 +17015,283.5833333333333,1786,458 +17016,283.6,1803,457 +17017,283.6166666666667,1818,456 +17018,283.6333333333333,1831,454 +17019,283.65,1843,453 +17020,283.6666666666667,1853,452 +17021,283.68333333333334,1861,451 +17022,283.7,1868,450 +17023,283.71666666666664,1873,449 +17024,283.73333333333335,1876,449 +17025,283.75,1876,449 +17026,283.76666666666665,1876,449 +17027,283.7833333333333,1875,449 +17028,283.8,1871,450 +17029,283.81666666666666,1866,450 +17030,283.8333333333333,1859,451 +17031,283.85,1850,452 +17032,283.8666666666667,1839,453 +17033,283.8833333333333,1827,454 +17034,283.9,1813,455 +17035,283.9166666666667,1798,456 +17036,283.93333333333334,1782,458 +17037,283.95,1764,459 +17038,283.96666666666664,1745,461 +17039,283.98333333333335,1724,462 +17040,284.0,1703,464 +17041,284.01666666666665,1681,465 +17042,284.0333333333333,1658,466 +17043,284.05,1634,468 +17044,284.06666666666666,1609,469 +17045,284.0833333333333,1584,469 +17046,284.1,1558,470 +17047,284.1166666666667,1532,471 +17048,284.1333333333333,1505,471 +17049,284.15,1479,471 +17050,284.1666666666667,1452,471 +17051,284.18333333333334,1426,471 +17052,284.2,1400,471 +17053,284.21666666666664,1374,471 +17054,284.23333333333335,1348,471 +17055,284.25,1323,471 +17056,284.26666666666665,1299,470 +17057,284.2833333333333,1276,469 +17058,284.3,1253,468 +17059,284.31666666666666,1231,467 +17060,284.3333333333333,1211,466 +17061,284.35,1191,465 +17062,284.3666666666667,1173,464 +17063,284.3833333333333,1156,463 +17064,284.4,1140,462 +17065,284.4166666666667,1126,461 +17066,284.43333333333334,1113,460 +17067,284.45,1102,459 +17068,284.46666666666664,1092,458 +17069,284.48333333333335,1084,457 +17070,284.5,1078,457 +17071,284.51666666666665,1074,456 +17072,284.5333333333333,1071,456 +17073,284.55,1071,456 +17074,284.56666666666666,1071,456 +17075,284.5833333333333,1073,457 +17076,284.6,1077,457 +17077,284.6166666666667,1083,457 +17078,284.6333333333333,1091,459 +17079,284.65,1100,459 +17080,284.6666666666667,1111,460 +17081,284.68333333333334,1124,462 +17082,284.7,1138,463 +17083,284.71666666666664,1154,464 +17084,284.73333333333335,1171,465 +17085,284.75,1190,466 +17086,284.76666666666665,1209,467 +17087,284.7833333333333,1230,468 +17088,284.8,1252,469 +17089,284.81666666666666,1275,470 +17090,284.8333333333333,1299,470 +17091,284.85,1324,471 +17092,284.8666666666667,1349,472 +17093,284.8833333333333,1375,472 +17094,284.9,1402,472 +17095,284.9166666666667,1428,472 +17096,284.93333333333334,1455,472 +17097,284.95,1482,472 +17098,284.96666666666664,1509,472 +17099,284.98333333333335,1536,471 +17100,285.0,1562,471 +17101,285.01666666666665,1588,470 +17102,285.0333333333333,1614,469 +17103,285.05,1638,468 +17104,285.06666666666666,1663,467 +17105,285.0833333333333,1686,466 +17106,285.1,1708,465 +17107,285.1166666666667,1730,463 +17108,285.1333333333333,1750,462 +17109,285.15,1769,460 +17110,285.1666666666667,1786,459 +17111,285.18333333333334,1802,457 +17112,285.2,1817,456 +17113,285.21666666666664,1830,455 +17114,285.23333333333335,1842,453 +17115,285.25,1852,452 +17116,285.26666666666665,1860,451 +17117,285.2833333333333,1866,450 +17118,285.3,1871,450 +17119,285.31666666666666,1874,449 +17120,285.3333333333333,1874,449 +17121,285.35,1874,449 +17122,285.3666666666667,1873,449 +17123,285.3833333333333,1869,450 +17124,285.4,1864,450 +17125,285.4166666666667,1856,451 +17126,285.43333333333334,1847,452 +17127,285.45,1837,453 +17128,285.46666666666664,1824,454 +17129,285.48333333333335,1811,455 +17130,285.5,1795,457 +17131,285.51666666666665,1779,458 +17132,285.5333333333333,1761,460 +17133,285.55,1742,461 +17134,285.56666666666666,1721,462 +17135,285.5833333333333,1700,464 +17136,285.6,1678,465 +17137,285.6166666666667,1654,467 +17138,285.6333333333333,1631,468 +17139,285.65,1606,469 +17140,285.6666666666667,1581,469 +17141,285.68333333333334,1555,470 +17142,285.7,1529,470 +17143,285.71666666666664,1503,471 +17144,285.73333333333335,1476,471 +17145,285.75,1450,471 +17146,285.76666666666665,1424,471 +17147,285.7833333333333,1398,471 +17148,285.8,1372,471 +17149,285.81666666666666,1346,471 +17150,285.8333333333333,1322,471 +17151,285.85,1298,469 +17152,285.8666666666667,1275,469 +17153,285.8833333333333,1252,468 +17154,285.9,1231,467 +17155,285.9166666666667,1210,466 +17156,285.93333333333334,1191,465 +17157,285.95,1173,464 +17158,285.96666666666664,1156,463 +17159,285.98333333333335,1141,462 +17160,286.0,1127,461 +17161,286.01666666666665,1114,460 +17162,286.0333333333333,1103,459 +17163,286.05,1094,458 +17164,286.06666666666666,1086,457 +17165,286.0833333333333,1079,457 +17166,286.1,1075,457 +17167,286.1166666666667,1073,457 +17168,286.1333333333333,1073,457 +17169,286.15,1073,457 +17170,286.1666666666667,1075,457 +17171,286.18333333333334,1080,457 +17172,286.2,1086,458 +17173,286.21666666666664,1094,459 +17174,286.23333333333335,1103,459 +17175,286.25,1114,460 +17176,286.26666666666665,1127,461 +17177,286.2833333333333,1141,462 +17178,286.3,1157,463 +17179,286.31666666666666,1174,465 +17180,286.3333333333333,1193,466 +17181,286.35,1213,467 +17182,286.3666666666667,1234,468 +17183,286.3833333333333,1256,468 +17184,286.4,1278,469 +17185,286.4166666666667,1302,470 +17186,286.43333333333334,1327,470 +17187,286.45,1352,471 +17188,286.46666666666664,1378,471 +17189,286.48333333333335,1405,471 +17190,286.5,1431,471 +17191,286.51666666666665,1458,471 +17192,286.5333333333333,1484,471 +17193,286.55,1511,471 +17194,286.56666666666666,1538,471 +17195,286.5833333333333,1564,470 +17196,286.6,1590,470 +17197,286.6166666666667,1615,469 +17198,286.6333333333333,1640,468 +17199,286.65,1664,467 +17200,286.6666666666667,1687,466 +17201,286.68333333333334,1709,464 +17202,286.7,1730,463 +17203,286.71666666666664,1750,461 +17204,286.73333333333335,1769,460 +17205,286.75,1786,458 +17206,286.76666666666665,1802,457 +17207,286.7833333333333,1817,455 +17208,286.8,1830,454 +17209,286.81666666666666,1841,453 +17210,286.8333333333333,1851,452 +17211,286.85,1859,451 +17212,286.8666666666667,1865,450 +17213,286.8833333333333,1870,450 +17214,286.9,1873,450 +17215,286.9166666666667,1873,449 +17216,286.93333333333334,1873,449 +17217,286.95,1871,449 +17218,286.96666666666664,1867,450 +17219,286.98333333333335,1861,450 +17220,287.0,1854,451 +17221,287.01666666666665,1845,452 +17222,287.0333333333333,1834,453 +17223,287.05,1822,454 +17224,287.06666666666666,1808,456 +17225,287.0833333333333,1792,457 +17226,287.1,1776,458 +17227,287.1166666666667,1758,459 +17228,287.1333333333333,1739,461 +17229,287.15,1718,462 +17230,287.1666666666667,1697,464 +17231,287.18333333333334,1674,465 +17232,287.2,1651,466 +17233,287.21666666666664,1627,468 +17234,287.23333333333335,1603,468 +17235,287.25,1578,469 +17236,287.26666666666665,1552,470 +17237,287.2833333333333,1526,470 +17238,287.3,1500,471 +17239,287.31666666666666,1473,471 +17240,287.3333333333333,1447,471 +17241,287.35,1421,471 +17242,287.3666666666667,1395,471 +17243,287.3833333333333,1369,471 +17244,287.4,1344,470 +17245,287.4166666666667,1320,470 +17246,287.43333333333334,1296,469 +17247,287.45,1273,468 +17248,287.46666666666664,1251,468 +17249,287.48333333333335,1229,467 +17250,287.5,1209,466 +17251,287.51666666666665,1189,465 +17252,287.5333333333333,1171,463 +17253,287.55,1154,462 +17254,287.56666666666666,1139,461 +17255,287.5833333333333,1125,460 +17256,287.6,1113,459 +17257,287.6166666666667,1102,458 +17258,287.6333333333333,1093,458 +17259,287.65,1085,457 +17260,287.6666666666667,1079,457 +17261,287.68333333333334,1075,456 +17262,287.7,1073,456 +17263,287.71666666666664,1073,456 +17264,287.73333333333335,1073,456 +17265,287.75,1076,457 +17266,287.76666666666665,1080,457 +17267,287.7833333333333,1087,458 +17268,287.8,1095,459 +17269,287.81666666666666,1104,460 +17270,287.8333333333333,1115,461 +17271,287.85,1128,462 +17272,287.8666666666667,1143,463 +17273,287.8833333333333,1158,464 +17274,287.9,1175,466 +17275,287.9166666666667,1194,467 +17276,287.93333333333334,1214,468 +17277,287.95,1235,469 +17278,287.96666666666664,1257,469 +17279,287.98333333333335,1280,470 +17280,288.0,1304,471 +17281,288.01666666666665,1328,472 +17282,288.0333333333333,1354,472 +17283,288.05,1380,472 +17284,288.06666666666666,1406,472 +17285,288.0833333333333,1433,472 +17286,288.1,1460,472 +17287,288.1166666666667,1486,472 +17288,288.1333333333333,1513,472 +17289,288.15,1540,471 +17290,288.1666666666667,1566,471 +17291,288.18333333333334,1592,470 +17292,288.2,1617,469 +17293,288.21666666666664,1642,468 +17294,288.23333333333335,1666,467 +17295,288.25,1689,466 +17296,288.26666666666665,1711,464 +17297,288.2833333333333,1731,463 +17298,288.3,1751,462 +17299,288.31666666666666,1770,460 +17300,288.3333333333333,1787,459 +17301,288.35,1803,457 +17302,288.3666666666667,1817,456 +17303,288.3833333333333,1830,454 +17304,288.4,1841,453 +17305,288.4166666666667,1851,452 +17306,288.43333333333334,1859,451 +17307,288.45,1865,450 +17308,288.46666666666664,1869,450 +17309,288.48333333333335,1872,450 +17310,288.5,1872,450 +17311,288.51666666666665,1872,450 +17312,288.5333333333333,1870,450 +17313,288.55,1866,450 +17314,288.56666666666666,1860,451 +17315,288.5833333333333,1852,451 +17316,288.6,1843,452 +17317,288.6166666666667,1832,453 +17318,288.6333333333333,1820,454 +17319,288.65,1806,456 +17320,288.6666666666667,1791,457 +17321,288.68333333333334,1774,458 +17322,288.7,1756,460 +17323,288.71666666666664,1737,461 +17324,288.73333333333335,1717,463 +17325,288.75,1695,464 +17326,288.76666666666665,1673,465 +17327,288.7833333333333,1650,467 +17328,288.8,1626,468 +17329,288.81666666666666,1601,469 +17330,288.8333333333333,1576,469 +17331,288.85,1550,470 +17332,288.8666666666667,1525,470 +17333,288.8833333333333,1498,471 +17334,288.9,1473,471 +17335,288.9166666666667,1446,471 +17336,288.93333333333334,1420,471 +17337,288.95,1394,471 +17338,288.96666666666664,1369,471 +17339,288.98333333333335,1343,471 +17340,289.0,1319,470 +17341,289.01666666666665,1295,469 +17342,289.0333333333333,1273,469 +17343,289.05,1250,468 +17344,289.06666666666666,1229,467 +17345,289.0833333333333,1209,466 +17346,289.1,1190,465 +17347,289.1166666666667,1172,464 +17348,289.1333333333333,1155,462 +17349,289.15,1140,462 +17350,289.1666666666667,1126,461 +17351,289.18333333333334,1114,460 +17352,289.2,1103,459 +17353,289.21666666666664,1094,458 +17354,289.23333333333335,1087,457 +17355,289.25,1081,457 +17356,289.26666666666665,1077,457 +17357,289.2833333333333,1075,457 +17358,289.3,1075,457 +17359,289.31666666666666,1075,457 +17360,289.3333333333333,1079,457 +17361,289.35,1083,458 +17362,289.3666666666667,1090,458 +17363,289.3833333333333,1098,459 +17364,289.4,1107,460 +17365,289.4166666666667,1119,461 +17366,289.43333333333334,1132,462 +17367,289.45,1146,463 +17368,289.46666666666664,1162,465 +17369,289.48333333333335,1180,466 +17370,289.5,1198,467 +17371,289.51666666666665,1218,468 +17372,289.5333333333333,1239,469 +17373,289.55,1261,469 +17374,289.56666666666666,1284,470 +17375,289.5833333333333,1308,471 +17376,289.6,1332,472 +17377,289.6166666666667,1357,472 +17378,289.6333333333333,1384,472 +17379,289.65,1410,472 +17380,289.6666666666667,1436,472 +17381,289.68333333333334,1463,472 +17382,289.7,1489,472 +17383,289.71666666666664,1516,472 +17384,289.73333333333335,1542,471 +17385,289.75,1569,471 +17386,289.76666666666665,1594,470 +17387,289.7833333333333,1619,469 +17388,289.8,1644,468 +17389,289.81666666666666,1667,467 +17390,289.8333333333333,1690,466 +17391,289.85,1712,465 +17392,289.8666666666667,1733,463 +17393,289.8833333333333,1752,462 +17394,289.9,1771,460 +17395,289.9166666666667,1788,459 +17396,289.93333333333334,1803,457 +17397,289.95,1817,456 +17398,289.96666666666664,1830,454 +17399,289.98333333333335,1841,453 +17400,290.0,1851,452 +17401,290.01666666666665,1858,451 +17402,290.0333333333333,1864,451 +17403,290.05,1869,450 +17404,290.06666666666666,1871,450 +17405,290.0833333333333,1871,450 +17406,290.1,1871,450 +17407,290.1166666666667,1869,450 +17408,290.1333333333333,1864,450 +17409,290.15,1858,451 +17410,290.1666666666667,1851,451 +17411,290.18333333333334,1842,452 +17412,290.2,1831,453 +17413,290.21666666666664,1818,454 +17414,290.23333333333335,1804,456 +17415,290.25,1789,457 +17416,290.26666666666665,1772,458 +17417,290.2833333333333,1754,460 +17418,290.3,1735,461 +17419,290.31666666666666,1715,463 +17420,290.3333333333333,1693,464 +17421,290.35,1671,465 +17422,290.3666666666667,1648,467 +17423,290.3833333333333,1624,468 +17424,290.4,1599,469 +17425,290.4166666666667,1574,469 +17426,290.43333333333334,1549,470 +17427,290.45,1523,471 +17428,290.46666666666664,1497,471 +17429,290.48333333333335,1471,471 +17430,290.5,1445,471 +17431,290.51666666666665,1419,471 +17432,290.5333333333333,1393,471 +17433,290.55,1368,471 +17434,290.56666666666666,1342,471 +17435,290.5833333333333,1318,470 +17436,290.6,1294,470 +17437,290.6166666666667,1272,469 +17438,290.6333333333333,1250,468 +17439,290.65,1230,467 +17440,290.6666666666667,1209,466 +17441,290.68333333333334,1189,465 +17442,290.7,1172,464 +17443,290.71666666666664,1155,463 +17444,290.73333333333335,1140,462 +17445,290.75,1127,461 +17446,290.76666666666665,1115,460 +17447,290.7833333333333,1104,459 +17448,290.8,1095,459 +17449,290.81666666666666,1088,458 +17450,290.8333333333333,1082,458 +17451,290.85,1078,457 +17452,290.8666666666667,1077,457 +17453,290.8833333333333,1077,457 +17454,290.9,1077,457 +17455,290.9166666666667,1080,458 +17456,290.93333333333334,1085,458 +17457,290.95,1091,459 +17458,290.96666666666664,1100,460 +17459,290.98333333333335,1110,460 +17460,291.0,1120,461 +17461,291.01666666666665,1134,463 +17462,291.0333333333333,1148,464 +17463,291.05,1165,465 +17464,291.06666666666666,1182,466 +17465,291.0833333333333,1201,468 +17466,291.1,1221,468 +17467,291.1166666666667,1242,469 +17468,291.1333333333333,1264,470 +17469,291.15,1286,471 +17470,291.1666666666667,1310,471 +17471,291.18333333333334,1334,472 +17472,291.2,1359,472 +17473,291.21666666666664,1385,472 +17474,291.23333333333335,1412,473 +17475,291.25,1438,473 +17476,291.26666666666665,1464,473 +17477,291.2833333333333,1491,472 +17478,291.3,1518,472 +17479,291.31666666666666,1544,472 +17480,291.3333333333333,1570,471 +17481,291.35,1595,470 +17482,291.3666666666667,1620,469 +17483,291.3833333333333,1645,469 +17484,291.4,1668,467 +17485,291.4166666666667,1691,466 +17486,291.43333333333334,1712,465 +17487,291.45,1733,463 +17488,291.46666666666664,1752,462 +17489,291.48333333333335,1770,460 +17490,291.5,1787,459 +17491,291.51666666666665,1803,457 +17492,291.5333333333333,1817,456 +17493,291.55,1829,455 +17494,291.56666666666666,1840,454 +17495,291.5833333333333,1849,453 +17496,291.6,1857,452 +17497,291.6166666666667,1863,451 +17498,291.6333333333333,1867,450 +17499,291.65,1869,450 +17500,291.6666666666667,1869,450 +17501,291.68333333333334,1869,450 +17502,291.7,1866,450 +17503,291.71666666666664,1862,451 +17504,291.73333333333335,1856,451 +17505,291.75,1848,452 +17506,291.76666666666665,1839,453 +17507,291.7833333333333,1828,454 +17508,291.8,1815,455 +17509,291.81666666666666,1801,456 +17510,291.8333333333333,1786,458 +17511,291.85,1769,459 +17512,291.8666666666667,1751,460 +17513,291.8833333333333,1732,462 +17514,291.9,1711,463 +17515,291.9166666666667,1690,464 +17516,291.93333333333334,1668,466 +17517,291.95,1645,467 +17518,291.96666666666664,1621,468 +17519,291.98333333333335,1596,469 +17520,292.0,1571,470 +17521,292.01666666666665,1546,470 +17522,292.0333333333333,1520,471 +17523,292.05,1494,471 +17524,292.06666666666666,1468,471 +17525,292.0833333333333,1442,471 +17526,292.1,1416,471 +17527,292.1166666666667,1390,471 +17528,292.1333333333333,1365,471 +17529,292.15,1340,471 +17530,292.1666666666667,1316,470 +17531,292.18333333333334,1292,470 +17532,292.2,1269,469 +17533,292.21666666666664,1247,469 +17534,292.23333333333335,1226,468 +17535,292.25,1206,466 +17536,292.26666666666665,1187,465 +17537,292.2833333333333,1170,464 +17538,292.3,1154,463 +17539,292.31666666666666,1139,462 +17540,292.3333333333333,1125,461 +17541,292.35,1113,460 +17542,292.3666666666667,1103,459 +17543,292.3833333333333,1094,459 +17544,292.4,1087,458 +17545,292.4166666666667,1082,458 +17546,292.43333333333334,1078,457 +17547,292.45,1077,457 +17548,292.46666666666664,1077,457 +17549,292.48333333333335,1077,457 +17550,292.5,1080,458 +17551,292.51666666666665,1085,458 +17552,292.5333333333333,1092,459 +17553,292.55,1100,460 +17554,292.56666666666666,1110,461 +17555,292.5833333333333,1122,462 +17556,292.6,1135,463 +17557,292.6166666666667,1149,464 +17558,292.6333333333333,1166,465 +17559,292.65,1183,466 +17560,292.6666666666667,1202,467 +17561,292.68333333333334,1222,468 +17562,292.7,1243,469 +17563,292.71666666666664,1265,470 +17564,292.73333333333335,1288,471 +17565,292.75,1312,472 +17566,292.76666666666665,1336,472 +17567,292.7833333333333,1361,472 +17568,292.8,1387,472 +17569,292.81666666666666,1413,472 +17570,292.8333333333333,1440,472 +17571,292.85,1466,472 +17572,292.8666666666667,1493,472 +17573,292.8833333333333,1519,472 +17574,292.9,1545,472 +17575,292.9166666666667,1571,471 +17576,292.93333333333334,1597,470 +17577,292.95,1621,469 +17578,292.96666666666664,1646,468 +17579,292.98333333333335,1669,467 +17580,293.0,1692,466 +17581,293.01666666666665,1713,465 +17582,293.0333333333333,1734,463 +17583,293.05,1753,462 +17584,293.06666666666666,1771,460 +17585,293.0833333333333,1787,459 +17586,293.1,1803,457 +17587,293.1166666666667,1817,456 +17588,293.1333333333333,1829,455 +17589,293.15,1840,454 +17590,293.1666666666667,1849,452 +17591,293.18333333333334,1856,452 +17592,293.2,1862,451 +17593,293.21666666666664,1866,450 +17594,293.23333333333335,1868,450 +17595,293.25,1868,450 +17596,293.26666666666665,1868,450 +17597,293.2833333333333,1865,450 +17598,293.3,1860,451 +17599,293.31666666666666,1854,451 +17600,293.3333333333333,1846,452 +17601,293.35,1836,453 +17602,293.3666666666667,1825,454 +17603,293.3833333333333,1813,455 +17604,293.4,1799,456 +17605,293.4166666666667,1783,458 +17606,293.43333333333334,1766,459 +17607,293.45,1748,461 +17608,293.46666666666664,1729,462 +17609,293.48333333333335,1709,463 +17610,293.5,1687,465 +17611,293.51666666666665,1665,466 +17612,293.5333333333333,1642,467 +17613,293.55,1618,468 +17614,293.56666666666666,1593,469 +17615,293.5833333333333,1568,470 +17616,293.6,1543,470 +17617,293.6166666666667,1517,471 +17618,293.6333333333333,1491,471 +17619,293.65,1465,471 +17620,293.6666666666667,1440,471 +17621,293.68333333333334,1414,471 +17622,293.7,1388,471 +17623,293.71666666666664,1363,471 +17624,293.73333333333335,1337,471 +17625,293.75,1314,470 +17626,293.76666666666665,1290,469 +17627,293.7833333333333,1268,469 +17628,293.8,1246,468 +17629,293.81666666666666,1225,467 +17630,293.8333333333333,1206,466 +17631,293.85,1187,465 +17632,293.8666666666667,1169,464 +17633,293.8833333333333,1153,463 +17634,293.9,1139,462 +17635,293.9166666666667,1125,461 +17636,293.93333333333334,1113,460 +17637,293.95,1103,459 +17638,293.96666666666664,1095,458 +17639,293.98333333333335,1088,458 +17640,294.0,1082,458 +17641,294.01666666666665,1079,457 +17642,294.0333333333333,1078,457 +17643,294.05,1078,457 +17644,294.06666666666666,1078,457 +17645,294.0833333333333,1082,458 +17646,294.1,1087,458 +17647,294.1166666666667,1094,459 +17648,294.1333333333333,1102,460 +17649,294.15,1112,461 +17650,294.1666666666667,1124,462 +17651,294.18333333333334,1137,463 +17652,294.2,1152,464 +17653,294.21666666666664,1168,465 +17654,294.23333333333335,1186,466 +17655,294.25,1204,468 +17656,294.26666666666665,1225,469 +17657,294.2833333333333,1246,469 +17658,294.3,1268,470 +17659,294.31666666666666,1290,471 +17660,294.3333333333333,1314,471 +17661,294.35,1338,472 +17662,294.3666666666667,1364,472 +17663,294.3833333333333,1390,472 +17664,294.4,1416,473 +17665,294.4166666666667,1442,473 +17666,294.43333333333334,1468,473 +17667,294.45,1495,472 +17668,294.46666666666664,1521,472 +17669,294.48333333333335,1547,472 +17670,294.5,1573,471 +17671,294.51666666666665,1598,470 +17672,294.5333333333333,1623,470 +17673,294.55,1647,469 +17674,294.56666666666666,1670,467 +17675,294.5833333333333,1692,466 +17676,294.6,1714,465 +17677,294.6166666666667,1734,463 +17678,294.6333333333333,1753,462 +17679,294.65,1771,460 +17680,294.6666666666667,1787,459 +17681,294.68333333333334,1803,457 +17682,294.7,1816,456 +17683,294.71666666666664,1828,454 +17684,294.73333333333335,1839,453 +17685,294.75,1848,452 +17686,294.76666666666665,1855,452 +17687,294.7833333333333,1861,451 +17688,294.8,1864,450 +17689,294.81666666666666,1866,450 +17690,294.8333333333333,1866,450 +17691,294.85,1866,450 +17692,294.8666666666667,1863,450 +17693,294.8833333333333,1858,451 +17694,294.9,1852,451 +17695,294.9166666666667,1844,452 +17696,294.93333333333334,1834,453 +17697,294.95,1823,454 +17698,294.96666666666664,1810,455 +17699,294.98333333333335,1796,457 +17700,295.0,1781,458 +17701,295.01666666666665,1764,459 +17702,295.0333333333333,1746,461 +17703,295.05,1726,462 +17704,295.06666666666666,1706,463 +17705,295.0833333333333,1685,465 +17706,295.1,1662,466 +17707,295.1166666666667,1639,467 +17708,295.1333333333333,1615,468 +17709,295.15,1591,469 +17710,295.1666666666667,1566,470 +17711,295.18333333333334,1540,471 +17712,295.2,1515,471 +17713,295.21666666666664,1489,471 +17714,295.23333333333335,1463,471 +17715,295.25,1437,471 +17716,295.26666666666665,1411,471 +17717,295.2833333333333,1386,471 +17718,295.3,1361,471 +17719,295.31666666666666,1336,471 +17720,295.3333333333333,1312,470 +17721,295.35,1289,469 +17722,295.3666666666667,1267,469 +17723,295.3833333333333,1245,468 +17724,295.4,1225,467 +17725,295.4166666666667,1204,466 +17726,295.43333333333334,1186,465 +17727,295.45,1169,464 +17728,295.46666666666664,1153,463 +17729,295.48333333333335,1138,462 +17730,295.5,1125,461 +17731,295.51666666666665,1114,460 +17732,295.5333333333333,1104,459 +17733,295.55,1095,458 +17734,295.56666666666666,1088,458 +17735,295.5833333333333,1083,457 +17736,295.6,1080,457 +17737,295.6166666666667,1080,457 +17738,295.6333333333333,1080,457 +17739,295.65,1080,458 +17740,295.6666666666667,1083,458 +17741,295.68333333333334,1089,458 +17742,295.7,1095,459 +17743,295.71666666666664,1104,460 +17744,295.73333333333335,1114,461 +17745,295.75,1126,462 +17746,295.76666666666665,1139,463 +17747,295.7833333333333,1154,464 +17748,295.8,1171,465 +17749,295.81666666666666,1188,466 +17750,295.8333333333333,1207,467 +17751,295.85,1227,468 +17752,295.8666666666667,1248,469 +17753,295.8833333333333,1270,470 +17754,295.9,1293,470 +17755,295.9166666666667,1317,471 +17756,295.93333333333334,1341,472 +17757,295.95,1366,472 +17758,295.96666666666664,1392,472 +17759,295.98333333333335,1418,472 +17760,296.0,1444,472 +17761,296.01666666666665,1471,472 +17762,296.0333333333333,1497,472 +17763,296.05,1523,472 +17764,296.06666666666666,1549,471 +17765,296.0833333333333,1575,471 +17766,296.1,1600,470 +17767,296.1166666666667,1625,469 +17768,296.1333333333333,1649,468 +17769,296.15,1672,467 +17770,296.1666666666667,1694,466 +17771,296.18333333333334,1715,465 +17772,296.2,1735,463 +17773,296.21666666666664,1754,462 +17774,296.23333333333335,1772,460 +17775,296.25,1788,459 +17776,296.26666666666665,1803,457 +17777,296.2833333333333,1817,456 +17778,296.3,1828,455 +17779,296.31666666666666,1839,454 +17780,296.3333333333333,1848,453 +17781,296.35,1855,452 +17782,296.3666666666667,1860,451 +17783,296.3833333333333,1864,451 +17784,296.4,1865,451 +17785,296.4166666666667,1865,451 +17786,296.43333333333334,1865,451 +17787,296.45,1862,451 +17788,296.46666666666664,1857,451 +17789,296.48333333333335,1850,452 +17790,296.5,1842,452 +17791,296.51666666666665,1833,453 +17792,296.5333333333333,1821,454 +17793,296.55,1808,455 +17794,296.56666666666666,1794,457 +17795,296.5833333333333,1779,458 +17796,296.6,1762,459 +17797,296.6166666666667,1744,461 +17798,296.6333333333333,1724,462 +17799,296.65,1704,463 +17800,296.6666666666667,1683,465 +17801,296.68333333333334,1660,466 +17802,296.7,1637,467 +17803,296.71666666666664,1613,469 +17804,296.73333333333335,1589,469 +17805,296.75,1564,470 +17806,296.76666666666665,1539,471 +17807,296.7833333333333,1513,471 +17808,296.8,1487,471 +17809,296.81666666666666,1461,471 +17810,296.8333333333333,1435,471 +17811,296.85,1410,471 +17812,296.8666666666667,1384,471 +17813,296.8833333333333,1359,471 +17814,296.9,1335,471 +17815,296.9166666666667,1311,470 +17816,296.93333333333334,1287,469 +17817,296.95,1265,469 +17818,296.96666666666664,1244,468 +17819,296.98333333333335,1223,467 +17820,297.0,1204,466 +17821,297.01666666666665,1185,465 +17822,297.0333333333333,1168,464 +17823,297.05,1153,463 +17824,297.06666666666666,1138,462 +17825,297.0833333333333,1125,461 +17826,297.1,1114,460 +17827,297.1166666666667,1104,459 +17828,297.1333333333333,1096,459 +17829,297.15,1089,458 +17830,297.1666666666667,1084,458 +17831,297.18333333333334,1081,458 +17832,297.2,1081,458 +17833,297.21666666666664,1081,458 +17834,297.23333333333335,1081,458 +17835,297.25,1085,458 +17836,297.26666666666665,1090,459 +17837,297.2833333333333,1097,459 +17838,297.3,1106,460 +17839,297.31666666666666,1116,461 +17840,297.3333333333333,1128,462 +17841,297.35,1142,463 +17842,297.3666666666667,1157,464 +17843,297.3833333333333,1173,466 +17844,297.4,1190,467 +17845,297.4166666666667,1210,468 +17846,297.43333333333334,1230,468 +17847,297.45,1251,469 +17848,297.46666666666664,1273,470 +17849,297.48333333333335,1295,471 +17850,297.5,1319,472 +17851,297.51666666666665,1344,472 +17852,297.5333333333333,1369,472 +17853,297.55,1395,472 +17854,297.56666666666666,1420,473 +17855,297.5833333333333,1447,473 +17856,297.6,1473,473 +17857,297.6166666666667,1499,472 +17858,297.6333333333333,1525,472 +17859,297.65,1551,472 +17860,297.6666666666667,1577,471 +17861,297.68333333333334,1602,470 +17862,297.7,1626,469 +17863,297.71666666666664,1650,469 +17864,297.73333333333335,1673,467 +17865,297.75,1695,466 +17866,297.76666666666665,1716,465 +17867,297.7833333333333,1736,463 +17868,297.8,1755,462 +17869,297.81666666666666,1772,460 +17870,297.8333333333333,1788,459 +17871,297.85,1803,457 +17872,297.8666666666667,1816,456 +17873,297.8833333333333,1828,455 +17874,297.9,1838,454 +17875,297.9166666666667,1847,453 +17876,297.93333333333334,1854,452 +17877,297.95,1859,451 +17878,297.96666666666664,1863,451 +17879,297.98333333333335,1863,451 +17880,298.0,1863,451 +17881,298.01666666666665,1863,451 +17882,298.0333333333333,1860,451 +17883,298.05,1855,451 +17884,298.06666666666666,1848,452 +17885,298.0833333333333,1840,453 +17886,298.1,1830,454 +17887,298.1166666666667,1819,454 +17888,298.1333333333333,1806,456 +17889,298.15,1792,457 +17890,298.1666666666667,1776,458 +17891,298.18333333333334,1759,460 +17892,298.2,1741,461 +17893,298.21666666666664,1722,462 +17894,298.23333333333335,1701,464 +17895,298.25,1680,465 +17896,298.26666666666665,1657,466 +17897,298.2833333333333,1634,468 +17898,298.3,1611,468 +17899,298.31666666666666,1586,469 +17900,298.3333333333333,1561,470 +17901,298.35,1536,471 +17902,298.3666666666667,1511,471 +17903,298.3833333333333,1485,471 +17904,298.4,1459,471 +17905,298.4166666666667,1433,471 +17906,298.43333333333334,1408,471 +17907,298.45,1382,471 +17908,298.46666666666664,1357,471 +17909,298.48333333333335,1333,471 +17910,298.5,1310,470 +17911,298.51666666666665,1286,469 +17912,298.5333333333333,1264,469 +17913,298.55,1243,468 +17914,298.56666666666666,1223,467 +17915,298.5833333333333,1203,466 +17916,298.6,1185,465 +17917,298.6166666666667,1168,464 +17918,298.6333333333333,1153,463 +17919,298.65,1138,462 +17920,298.6666666666667,1125,461 +17921,298.68333333333334,1114,460 +17922,298.7,1104,459 +17923,298.71666666666664,1096,459 +17924,298.73333333333335,1090,458 +17925,298.75,1085,458 +17926,298.76666666666665,1082,458 +17927,298.7833333333333,1082,458 +17928,298.8,1082,458 +17929,298.81666666666666,1083,458 +17930,298.8333333333333,1086,458 +17931,298.85,1092,459 +17932,298.8666666666667,1099,460 +17933,298.8833333333333,1108,460 +17934,298.9,1118,461 +17935,298.9166666666667,1130,462 +17936,298.93333333333334,1144,463 +17937,298.95,1159,465 +17938,298.96666666666664,1175,466 +17939,298.98333333333335,1193,467 +17940,299.0,1212,468 +17941,299.01666666666665,1232,469 +17942,299.0333333333333,1253,469 +17943,299.05,1275,470 +17944,299.06666666666666,1298,471 +17945,299.0833333333333,1322,472 +17946,299.1,1345,472 +17947,299.1166666666667,1371,472 +17948,299.1333333333333,1397,472 +17949,299.15,1422,472 +17950,299.1666666666667,1449,472 +17951,299.18333333333334,1475,472 +17952,299.2,1501,472 +17953,299.21666666666664,1527,472 +17954,299.23333333333335,1552,471 +17955,299.25,1578,471 +17956,299.26666666666665,1603,470 +17957,299.2833333333333,1627,469 +17958,299.3,1651,468 +17959,299.31666666666666,1674,467 +17960,299.3333333333333,1695,466 +17961,299.35,1716,465 +17962,299.3666666666667,1736,463 +17963,299.3833333333333,1755,462 +17964,299.4,1772,460 +17965,299.4166666666667,1788,459 +17966,299.43333333333334,1803,457 +17967,299.45,1816,456 +17968,299.46666666666664,1827,455 +17969,299.48333333333335,1837,454 +17970,299.5,1846,453 +17971,299.51666666666665,1852,452 +17972,299.5333333333333,1858,452 +17973,299.55,1861,451 +17974,299.56666666666666,1861,451 +17975,299.5833333333333,1861,451 +17976,299.6,1861,451 +17977,299.6166666666667,1858,451 +17978,299.6333333333333,1853,452 +17979,299.65,1846,452 +17980,299.6666666666667,1838,453 +17981,299.68333333333334,1828,454 +17982,299.7,1816,455 +17983,299.71666666666664,1804,456 +17984,299.73333333333335,1789,457 +17985,299.75,1773,459 +17986,299.76666666666665,1756,460 +17987,299.7833333333333,1738,461 +17988,299.8,1719,463 +17989,299.81666666666666,1699,464 +17990,299.8333333333333,1677,466 +17991,299.85,1655,467 +17992,299.8666666666667,1632,468 +17993,299.8833333333333,1608,469 +17994,299.9,1584,470 +17995,299.9166666666667,1559,470 +17996,299.93333333333334,1534,471 +17997,299.95,1508,471 +17998,299.96666666666664,1483,471 +17999,299.98333333333335,1457,471 +18000,300.0,1431,471 +18001,300.01666666666665,1406,471 +18002,300.0333333333333,1381,471 +18003,300.05,1356,471 +18004,300.06666666666666,1332,471 +18005,300.0833333333333,1308,470 +18006,300.1,1285,469 +18007,300.1166666666667,1263,469 +18008,300.1333333333333,1242,468 +18009,300.15,1222,467 +18010,300.1666666666667,1203,466 +18011,300.18333333333334,1185,465 +18012,300.2,1168,464 +18013,300.21666666666664,1152,463 +18014,300.23333333333335,1138,462 +18015,300.25,1125,461 +18016,300.26666666666665,1114,460 +18017,300.2833333333333,1105,459 +18018,300.3,1097,459 +18019,300.31666666666666,1090,458 +18020,300.3333333333333,1086,458 +18021,300.35,1083,458 +18022,300.3666666666667,1083,458 +18023,300.3833333333333,1083,458 +18024,300.4,1084,458 +18025,300.4166666666667,1088,459 +18026,300.43333333333334,1093,459 +18027,300.45,1101,460 +18028,300.46666666666664,1109,461 +18029,300.48333333333335,1120,462 +18030,300.5,1132,462 +18031,300.51666666666665,1146,464 +18032,300.5333333333333,1161,465 +18033,300.55,1177,466 +18034,300.56666666666666,1195,467 +18035,300.5833333333333,1214,468 +18036,300.6,1234,469 +18037,300.6166666666667,1255,470 +18038,300.6333333333333,1277,470 +18039,300.65,1300,471 +18040,300.6666666666667,1324,472 +18041,300.68333333333334,1348,472 +18042,300.7,1373,472 +18043,300.71666666666664,1399,472 +18044,300.73333333333335,1425,472 +18045,300.75,1451,472 +18046,300.76666666666665,1477,472 +18047,300.7833333333333,1503,472 +18048,300.8,1529,472 +18049,300.81666666666666,1555,471 +18050,300.8333333333333,1580,471 +18051,300.85,1605,470 +18052,300.8666666666667,1629,469 +18053,300.8833333333333,1652,468 +18054,300.9,1675,467 +18055,300.9166666666667,1697,466 +18056,300.93333333333334,1717,464 +18057,300.95,1737,463 +18058,300.96666666666664,1755,461 +18059,300.98333333333335,1773,460 +18060,301.0,1789,458 +18061,301.01666666666665,1803,457 +18062,301.0333333333333,1816,456 +18063,301.05,1827,455 +18064,301.06666666666666,1837,454 +18065,301.0833333333333,1845,453 +18066,301.1,1852,452 +18067,301.1166666666667,1857,451 +18068,301.1333333333333,1860,451 +18069,301.15,1860,451 +18070,301.1666666666667,1860,451 +18071,301.18333333333334,1860,451 +18072,301.2,1856,451 +18073,301.21666666666664,1851,451 +18074,301.23333333333335,1844,452 +18075,301.25,1836,453 +18076,301.26666666666665,1826,454 +18077,301.2833333333333,1814,455 +18078,301.3,1801,456 +18079,301.31666666666666,1787,457 +18080,301.3333333333333,1771,459 +18081,301.35,1754,460 +18082,301.3666666666667,1736,461 +18083,301.3833333333333,1717,463 +18084,301.4,1696,464 +18085,301.4166666666667,1675,466 +18086,301.43333333333334,1653,467 +18087,301.45,1630,468 +18088,301.46666666666664,1606,469 +18089,301.48333333333335,1581,470 +18090,301.5,1557,470 +18091,301.51666666666665,1531,471 +18092,301.5333333333333,1506,471 +18093,301.55,1480,471 +18094,301.56666666666666,1455,472 +18095,301.5833333333333,1429,472 +18096,301.6,1404,472 +18097,301.6166666666667,1379,472 +18098,301.6333333333333,1354,471 +18099,301.65,1329,471 +18100,301.6666666666667,1306,470 +18101,301.68333333333334,1283,470 +18102,301.7,1261,469 +18103,301.71666666666664,1240,468 +18104,301.73333333333335,1220,467 +18105,301.75,1201,466 +18106,301.76666666666665,1183,465 +18107,301.7833333333333,1167,464 +18108,301.8,1151,463 +18109,301.81666666666666,1137,462 +18110,301.8333333333333,1124,461 +18111,301.85,1114,460 +18112,301.8666666666667,1104,460 +18113,301.8833333333333,1096,459 +18114,301.9,1090,459 +18115,301.9166666666667,1086,459 +18116,301.93333333333334,1083,458 +18117,301.95,1083,458 +18118,301.96666666666664,1083,458 +18119,301.98333333333335,1085,458 +18120,302.0,1089,459 +18121,302.01666666666665,1094,459 +18122,302.0333333333333,1102,460 +18123,302.05,1111,461 +18124,302.06666666666666,1121,462 +18125,302.0833333333333,1134,463 +18126,302.1,1147,464 +18127,302.1166666666667,1162,465 +18128,302.1333333333333,1179,466 +18129,302.15,1197,467 +18130,302.1666666666667,1216,468 +18131,302.18333333333334,1236,469 +18132,302.2,1257,470 +18133,302.21666666666664,1279,471 +18134,302.23333333333335,1303,471 +18135,302.25,1326,472 +18136,302.26666666666665,1350,472 +18137,302.2833333333333,1376,472 +18138,302.3,1401,472 +18139,302.31666666666666,1427,473 +18140,302.3333333333333,1453,473 +18141,302.35,1479,473 +18142,302.3666666666667,1505,472 +18143,302.3833333333333,1531,472 +18144,302.4,1557,471 +18145,302.4166666666667,1582,471 +18146,302.43333333333334,1606,470 +18147,302.45,1631,469 +18148,302.46666666666664,1654,468 +18149,302.48333333333335,1676,467 +18150,302.5,1698,466 +18151,302.51666666666665,1719,464 +18152,302.5333333333333,1738,463 +18153,302.55,1756,462 +18154,302.56666666666666,1773,460 +18155,302.5833333333333,1789,459 +18156,302.6,1803,457 +18157,302.6166666666667,1816,456 +18158,302.6333333333333,1827,455 +18159,302.65,1837,454 +18160,302.6666666666667,1845,453 +18161,302.68333333333334,1852,452 +18162,302.7,1856,452 +18163,302.71666666666664,1860,451 +18164,302.73333333333335,1860,451 +18165,302.75,1860,451 +18166,302.76666666666665,1859,451 +18167,302.7833333333333,1855,451 +18168,302.8,1850,452 +18169,302.81666666666666,1843,452 +18170,302.8333333333333,1834,453 +18171,302.85,1824,454 +18172,302.8666666666667,1813,455 +18173,302.8833333333333,1800,456 +18174,302.9,1785,457 +18175,302.9166666666667,1769,459 +18176,302.93333333333334,1752,460 +18177,302.95,1734,461 +18178,302.96666666666664,1714,463 +18179,302.98333333333335,1694,464 +18180,303.0,1672,466 +18181,303.01666666666665,1650,467 +18182,303.0333333333333,1627,468 +18183,303.05,1603,469 +18184,303.06666666666666,1579,470 +18185,303.0833333333333,1554,470 +18186,303.1,1529,471 +18187,303.1166666666667,1504,471 +18188,303.1333333333333,1478,471 +18189,303.15,1453,472 +18190,303.1666666666667,1427,472 +18191,303.18333333333334,1402,472 +18192,303.2,1377,472 +18193,303.21666666666664,1352,471 +18194,303.23333333333335,1328,471 +18195,303.25,1305,470 +18196,303.26666666666665,1283,470 +18197,303.2833333333333,1261,469 +18198,303.3,1240,468 +18199,303.31666666666666,1220,468 +18200,303.3333333333333,1201,467 +18201,303.35,1183,465 +18202,303.3666666666667,1167,464 +18203,303.3833333333333,1152,463 +18204,303.4,1138,462 +18205,303.4166666666667,1126,461 +18206,303.43333333333334,1115,460 +18207,303.45,1106,459 +18208,303.46666666666664,1098,459 +18209,303.48333333333335,1092,459 +18210,303.5,1088,458 +18211,303.51666666666665,1085,458 +18212,303.5333333333333,1085,458 +18213,303.55,1085,458 +18214,303.56666666666666,1087,458 +18215,303.5833333333333,1091,459 +18216,303.6,1097,459 +18217,303.6166666666667,1105,460 +18218,303.6333333333333,1114,461 +18219,303.65,1125,462 +18220,303.6666666666667,1137,463 +18221,303.68333333333334,1151,464 +18222,303.7,1166,465 +18223,303.71666666666664,1183,466 +18224,303.73333333333335,1201,467 +18225,303.75,1220,468 +18226,303.76666666666665,1240,469 +18227,303.7833333333333,1262,469 +18228,303.8,1283,470 +18229,303.81666666666666,1307,471 +18230,303.8333333333333,1330,472 +18231,303.85,1354,472 +18232,303.8666666666667,1380,472 +18233,303.8833333333333,1405,472 +18234,303.9,1430,473 +18235,303.9166666666667,1457,473 +18236,303.93333333333334,1483,473 +18237,303.95,1509,472 +18238,303.96666666666664,1534,472 +18239,303.98333333333335,1560,471 +18240,304.0,1585,471 +18241,304.01666666666665,1609,470 +18242,304.0333333333333,1633,469 +18243,304.05,1656,468 +18244,304.06666666666666,1679,467 +18245,304.0833333333333,1700,466 +18246,304.1,1721,465 +18247,304.1166666666667,1740,463 +18248,304.1333333333333,1758,461 +18249,304.15,1775,460 +18250,304.1666666666667,1790,458 +18251,304.18333333333334,1804,457 +18252,304.2,1817,456 +18253,304.21666666666664,1828,454 +18254,304.23333333333335,1837,454 +18255,304.25,1845,453 +18256,304.26666666666665,1851,452 +18257,304.2833333333333,1856,452 +18258,304.3,1859,451 +18259,304.31666666666666,1859,451 +18260,304.3333333333333,1859,451 +18261,304.35,1858,451 +18262,304.3666666666667,1854,451 +18263,304.3833333333333,1848,452 +18264,304.4,1841,452 +18265,304.4166666666667,1833,453 +18266,304.43333333333334,1823,454 +18267,304.45,1811,455 +18268,304.46666666666664,1798,456 +18269,304.48333333333335,1783,458 +18270,304.5,1767,459 +18271,304.51666666666665,1750,460 +18272,304.5333333333333,1731,462 +18273,304.55,1712,463 +18274,304.56666666666666,1691,465 +18275,304.5833333333333,1670,466 +18276,304.6,1648,467 +18277,304.6166666666667,1625,468 +18278,304.6333333333333,1601,469 +18279,304.65,1577,470 +18280,304.6666666666667,1552,470 +18281,304.68333333333334,1527,471 +18282,304.7,1502,471 +18283,304.71666666666664,1476,471 +18284,304.73333333333335,1451,472 +18285,304.75,1425,472 +18286,304.76666666666665,1401,472 +18287,304.7833333333333,1376,472 +18288,304.8,1351,471 +18289,304.81666666666666,1327,471 +18290,304.8333333333333,1304,470 +18291,304.85,1281,469 +18292,304.8666666666667,1260,469 +18293,304.8833333333333,1239,468 +18294,304.9,1219,467 +18295,304.9166666666667,1200,466 +18296,304.93333333333334,1183,465 +18297,304.95,1166,464 +18298,304.96666666666664,1151,463 +18299,304.98333333333335,1138,462 +18300,305.0,1125,461 +18301,305.01666666666665,1115,461 +18302,305.0333333333333,1106,460 +18303,305.05,1099,459 +18304,305.06666666666666,1093,459 +18305,305.0833333333333,1089,459 +18306,305.1,1086,459 +18307,305.1166666666667,1086,459 +18308,305.1333333333333,1086,459 +18309,305.15,1089,459 +18310,305.1666666666667,1093,459 +18311,305.18333333333334,1099,460 +18312,305.2,1107,461 +18313,305.21666666666664,1116,461 +18314,305.23333333333335,1127,462 +18315,305.25,1139,463 +18316,305.26666666666665,1153,464 +18317,305.2833333333333,1169,466 +18318,305.3,1185,466 +18319,305.31666666666666,1203,468 +18320,305.3333333333333,1223,468 +18321,305.35,1243,469 +18322,305.3666666666667,1264,470 +18323,305.3833333333333,1286,470 +18324,305.4,1309,471 +18325,305.4166666666667,1333,472 +18326,305.43333333333334,1357,473 +18327,305.45,1382,473 +18328,305.46666666666664,1408,473 +18329,305.48333333333335,1433,473 +18330,305.5,1459,473 +18331,305.51666666666665,1485,472 +18332,305.5333333333333,1510,472 +18333,305.55,1536,472 +18334,305.56666666666666,1561,471 +18335,305.5833333333333,1586,471 +18336,305.6,1611,470 +18337,305.6166666666667,1635,469 +18338,305.6333333333333,1657,468 +18339,305.65,1679,467 +18340,305.6666666666667,1701,466 +18341,305.68333333333334,1721,464 +18342,305.7,1740,463 +18343,305.71666666666664,1758,461 +18344,305.73333333333335,1775,460 +18345,305.75,1790,459 +18346,305.76666666666665,1804,457 +18347,305.7833333333333,1816,456 +18348,305.8,1827,455 +18349,305.81666666666666,1836,454 +18350,305.8333333333333,1844,453 +18351,305.85,1850,452 +18352,305.8666666666667,1854,452 +18353,305.8833333333333,1857,451 +18354,305.9,1857,451 +18355,305.9166666666667,1857,451 +18356,305.93333333333334,1855,451 +18357,305.95,1851,452 +18358,305.96666666666664,1846,452 +18359,305.98333333333335,1838,453 +18360,306.0,1830,454 +18361,306.01666666666665,1819,455 +18362,306.0333333333333,1807,456 +18363,306.05,1794,457 +18364,306.06666666666666,1779,458 +18365,306.0833333333333,1764,459 +18366,306.1,1746,461 +18367,306.1166666666667,1728,462 +18368,306.1333333333333,1708,463 +18369,306.15,1688,465 +18370,306.1666666666667,1666,466 +18371,306.18333333333334,1644,467 +18372,306.2,1621,468 +18373,306.21666666666664,1598,469 +18374,306.23333333333335,1573,470 +18375,306.25,1549,470 +18376,306.26666666666665,1523,471 +18377,306.2833333333333,1499,471 +18378,306.3,1473,471 +18379,306.31666666666666,1448,472 +18380,306.3333333333333,1423,472 +18381,306.35,1398,472 +18382,306.3666666666667,1372,472 +18383,306.3833333333333,1348,472 +18384,306.4,1325,471 +18385,306.4166666666667,1302,470 +18386,306.43333333333334,1279,469 +18387,306.45,1257,469 +18388,306.46666666666664,1237,468 +18389,306.48333333333335,1217,467 +18390,306.5,1198,466 +18391,306.51666666666665,1181,465 +18392,306.5333333333333,1165,464 +18393,306.55,1149,463 +18394,306.56666666666666,1136,462 +18395,306.5833333333333,1124,462 +18396,306.6,1114,461 +18397,306.6166666666667,1105,460 +18398,306.6333333333333,1098,459 +18399,306.65,1092,459 +18400,306.6666666666667,1088,459 +18401,306.68333333333334,1086,459 +18402,306.7,1086,459 +18403,306.71666666666664,1086,459 +18404,306.73333333333335,1089,459 +18405,306.75,1094,459 +18406,306.76666666666665,1100,460 +18407,306.7833333333333,1108,460 +18408,306.8,1117,461 +18409,306.81666666666666,1128,462 +18410,306.8333333333333,1141,463 +18411,306.85,1154,464 +18412,306.8666666666667,1170,465 +18413,306.8833333333333,1187,466 +18414,306.9,1205,467 +18415,306.9166666666667,1224,468 +18416,306.93333333333334,1244,469 +18417,306.95,1266,470 +18418,306.96666666666664,1287,470 +18419,306.98333333333335,1311,471 +18420,307.0,1334,472 +18421,307.01666666666665,1359,472 +18422,307.0333333333333,1384,472 +18423,307.05,1409,473 +18424,307.06666666666666,1434,473 +18425,307.0833333333333,1460,473 +18426,307.1,1486,472 +18427,307.1166666666667,1511,472 +18428,307.1333333333333,1537,472 +18429,307.15,1562,471 +18430,307.1666666666667,1587,471 +18431,307.18333333333334,1611,470 +18432,307.2,1635,469 +18433,307.21666666666664,1658,468 +18434,307.23333333333335,1680,467 +18435,307.25,1701,466 +18436,307.26666666666665,1721,464 +18437,307.2833333333333,1740,463 +18438,307.3,1758,461 +18439,307.31666666666666,1774,460 +18440,307.3333333333333,1789,458 +18441,307.35,1803,457 +18442,307.3666666666667,1815,456 +18443,307.3833333333333,1826,455 +18444,307.4,1835,454 +18445,307.4166666666667,1842,453 +18446,307.43333333333334,1848,452 +18447,307.45,1852,452 +18448,307.46666666666664,1855,451 +18449,307.48333333333335,1855,451 +18450,307.5,1855,451 +18451,307.51666666666665,1853,451 +18452,307.5333333333333,1849,452 +18453,307.55,1843,452 +18454,307.56666666666666,1836,453 +18455,307.5833333333333,1827,454 +18456,307.6,1817,454 +18457,307.6166666666667,1805,456 +18458,307.6333333333333,1792,457 +18459,307.65,1777,458 +18460,307.6666666666667,1761,459 +18461,307.68333333333334,1744,461 +18462,307.7,1725,462 +18463,307.71666666666664,1706,463 +18464,307.73333333333335,1685,465 +18465,307.75,1664,466 +18466,307.76666666666665,1642,467 +18467,307.7833333333333,1619,468 +18468,307.8,1595,469 +18469,307.81666666666666,1571,470 +18470,307.8333333333333,1546,470 +18471,307.85,1521,471 +18472,307.8666666666667,1496,471 +18473,307.8833333333333,1471,471 +18474,307.9,1445,471 +18475,307.9166666666667,1420,471 +18476,307.93333333333334,1396,471 +18477,307.95,1371,471 +18478,307.96666666666664,1346,470 +18479,307.98333333333335,1323,470 +18480,308.0,1300,469 +18481,308.01666666666665,1278,468 +18482,308.0333333333333,1257,468 +18483,308.05,1237,467 +18484,308.06666666666666,1217,466 +18485,308.0833333333333,1199,465 +18486,308.1,1181,464 +18487,308.1166666666667,1165,463 +18488,308.1333333333333,1151,462 +18489,308.15,1138,461 +18490,308.1666666666667,1126,461 +18491,308.18333333333334,1115,460 +18492,308.2,1107,459 +18493,308.21666666666664,1099,459 +18494,308.23333333333335,1094,458 +18495,308.25,1090,458 +18496,308.26666666666665,1089,458 +18497,308.2833333333333,1089,458 +18498,308.3,1089,458 +18499,308.31666666666666,1091,459 +18500,308.3333333333333,1096,459 +18501,308.35,1102,460 +18502,308.3666666666667,1110,460 +18503,308.3833333333333,1120,461 +18504,308.4,1131,462 +18505,308.4166666666667,1143,463 +18506,308.43333333333334,1157,464 +18507,308.45,1173,465 +18508,308.46666666666664,1190,466 +18509,308.48333333333335,1208,467 +18510,308.5,1227,468 +18511,308.51666666666665,1248,469 +18512,308.5333333333333,1269,469 +18513,308.55,1291,470 +18514,308.56666666666666,1314,471 +18515,308.5833333333333,1338,472 +18516,308.6,1362,472 +18517,308.6166666666667,1387,472 +18518,308.6333333333333,1413,473 +18519,308.65,1438,473 +18520,308.6666666666667,1464,473 +18521,308.68333333333334,1489,472 +18522,308.7,1515,472 +18523,308.71666666666664,1540,472 +18524,308.73333333333335,1566,471 +18525,308.75,1590,471 +18526,308.76666666666665,1614,470 +18527,308.7833333333333,1638,469 +18528,308.8,1660,468 +18529,308.81666666666666,1682,467 +18530,308.8333333333333,1703,465 +18531,308.85,1723,464 +18532,308.8666666666667,1742,462 +18533,308.8833333333333,1759,461 +18534,308.9,1775,460 +18535,308.9166666666667,1790,458 +18536,308.93333333333334,1804,457 +18537,308.95,1816,456 +18538,308.96666666666664,1827,454 +18539,308.98333333333335,1836,453 +18540,309.0,1843,453 +18541,309.01666666666665,1849,452 +18542,309.0333333333333,1852,451 +18543,309.05,1855,451 +18544,309.06666666666666,1855,451 +18545,309.0833333333333,1855,451 +18546,309.1,1852,451 +18547,309.1166666666667,1848,451 +18548,309.1333333333333,1842,452 +18549,309.15,1835,453 +18550,309.1666666666667,1826,453 +18551,309.18333333333334,1815,454 +18552,309.2,1803,455 +18553,309.21666666666664,1790,457 +18554,309.23333333333335,1775,458 +18555,309.25,1759,459 +18556,309.26666666666665,1742,460 +18557,309.2833333333333,1723,462 +18558,309.3,1704,463 +18559,309.31666666666666,1684,464 +18560,309.3333333333333,1662,466 +18561,309.35,1640,467 +18562,309.3666666666667,1617,468 +18563,309.3833333333333,1593,469 +18564,309.4,1569,470 +18565,309.4166666666667,1544,470 +18566,309.43333333333334,1520,471 +18567,309.45,1495,471 +18568,309.46666666666664,1469,471 +18569,309.48333333333335,1444,471 +18570,309.5,1419,471 +18571,309.51666666666665,1395,471 +18572,309.5333333333333,1369,471 +18573,309.55,1345,471 +18574,309.56666666666666,1322,470 +18575,309.5833333333333,1299,470 +18576,309.6,1277,469 +18577,309.6166666666667,1256,469 +18578,309.6333333333333,1236,468 +18579,309.65,1216,467 +18580,309.6666666666667,1198,466 +18581,309.68333333333334,1181,465 +18582,309.7,1165,464 +18583,309.71666666666664,1150,463 +18584,309.73333333333335,1137,462 +18585,309.75,1125,461 +18586,309.76666666666665,1115,461 +18587,309.7833333333333,1107,460 +18588,309.8,1100,459 +18589,309.81666666666666,1094,459 +18590,309.8333333333333,1090,459 +18591,309.85,1089,459 +18592,309.8666666666667,1089,459 +18593,309.8833333333333,1089,459 +18594,309.9,1092,459 +18595,309.9166666666667,1097,460 +18596,309.93333333333334,1103,460 +18597,309.95,1111,461 +18598,309.96666666666664,1121,462 +18599,309.98333333333335,1132,463 +18600,310.0,1144,464 +18601,310.01666666666665,1158,465 +18602,310.0333333333333,1174,466 +18603,310.05,1191,467 +18604,310.06666666666666,1209,468 +18605,310.0833333333333,1228,469 +18606,310.1,1249,469 +18607,310.1166666666667,1270,470 +18608,310.1333333333333,1292,471 +18609,310.15,1315,471 +18610,310.1666666666667,1339,472 +18611,310.18333333333334,1363,472 +18612,310.2,1388,472 +18613,310.21666666666664,1413,473 +18614,310.23333333333335,1439,473 +18615,310.25,1465,473 +18616,310.26666666666665,1490,473 +18617,310.2833333333333,1516,472 +18618,310.3,1541,472 +18619,310.31666666666666,1566,471 +18620,310.3333333333333,1591,470 +18621,310.35,1615,470 +18622,310.3666666666667,1638,469 +18623,310.3833333333333,1661,468 +18624,310.4,1682,467 +18625,310.4166666666667,1703,466 +18626,310.43333333333334,1723,464 +18627,310.45,1742,463 +18628,310.46666666666664,1759,461 +18629,310.48333333333335,1775,460 +18630,310.5,1790,459 +18631,310.51666666666665,1803,457 +18632,310.5333333333333,1815,456 +18633,310.55,1826,455 +18634,310.56666666666666,1835,454 +18635,310.5833333333333,1842,453 +18636,310.6,1848,453 +18637,310.6166666666667,1852,452 +18638,310.6333333333333,1854,452 +18639,310.65,1854,452 +18640,310.6666666666667,1854,452 +18641,310.68333333333334,1851,452 +18642,310.7,1847,452 +18643,310.71666666666664,1841,453 +18644,310.73333333333335,1833,454 +18645,310.75,1824,454 +18646,310.76666666666665,1814,455 +18647,310.7833333333333,1802,456 +18648,310.8,1788,457 +18649,310.81666666666666,1773,459 +18650,310.8333333333333,1757,460 +18651,310.85,1740,461 +18652,310.8666666666667,1721,463 +18653,310.8833333333333,1702,464 +18654,310.9,1681,465 +18655,310.9166666666667,1660,467 +18656,310.93333333333334,1637,468 +18657,310.95,1615,469 +18658,310.96666666666664,1591,469 +18659,310.98333333333335,1567,470 +18660,311.0,1543,471 +18661,311.01666666666665,1518,471 +18662,311.0333333333333,1492,471 +18663,311.05,1467,472 +18664,311.06666666666666,1442,472 +18665,311.0833333333333,1417,472 +18666,311.1,1393,472 +18667,311.1166666666667,1368,472 +18668,311.1333333333333,1344,471 +18669,311.15,1321,471 +18670,311.1666666666667,1298,470 +18671,311.18333333333334,1276,469 +18672,311.2,1256,468 +18673,311.21666666666664,1235,468 +18674,311.23333333333335,1216,467 +18675,311.25,1197,466 +18676,311.26666666666665,1181,465 +18677,311.2833333333333,1165,464 +18678,311.3,1151,463 +18679,311.31666666666666,1137,462 +18680,311.3333333333333,1126,461 +18681,311.35,1116,461 +18682,311.3666666666667,1108,460 +18683,311.3833333333333,1101,460 +18684,311.4,1096,459 +18685,311.4166666666667,1092,459 +18686,311.43333333333334,1091,459 +18687,311.45,1091,459 +18688,311.46666666666664,1091,459 +18689,311.48333333333335,1094,459 +18690,311.5,1099,460 +18691,311.51666666666665,1106,461 +18692,311.5333333333333,1114,461 +18693,311.55,1124,462 +18694,311.56666666666666,1135,463 +18695,311.5833333333333,1147,464 +18696,311.6,1162,465 +18697,311.6166666666667,1177,466 +18698,311.6333333333333,1194,467 +18699,311.65,1212,468 +18700,311.6666666666667,1232,469 +18701,311.68333333333334,1252,469 +18702,311.7,1273,470 +18703,311.71666666666664,1296,471 +18704,311.73333333333335,1319,472 +18705,311.75,1342,472 +18706,311.76666666666665,1366,472 +18707,311.7833333333333,1392,473 +18708,311.8,1417,473 +18709,311.81666666666666,1442,473 +18710,311.8333333333333,1468,473 +18711,311.85,1493,472 +18712,311.8666666666667,1519,472 +18713,311.8833333333333,1544,472 +18714,311.9,1569,471 +18715,311.9166666666667,1593,471 +18716,311.93333333333334,1617,470 +18717,311.95,1641,469 +18718,311.96666666666664,1663,468 +18719,311.98333333333335,1685,467 +18720,312.0,1705,465 +18721,312.01666666666665,1725,464 +18722,312.0333333333333,1743,463 +18723,312.05,1761,461 +18724,312.06666666666666,1777,460 +18725,312.0833333333333,1791,458 +18726,312.1,1804,457 +18727,312.1166666666667,1816,456 +18728,312.1333333333333,1826,455 +18729,312.15,1835,454 +18730,312.1666666666667,1842,453 +18731,312.18333333333334,1847,452 +18732,312.2,1851,452 +18733,312.21666666666664,1852,452 +18734,312.23333333333335,1852,452 +18735,312.25,1852,452 +18736,312.26666666666665,1850,452 +18737,312.2833333333333,1845,452 +18738,312.3,1839,453 +18739,312.31666666666666,1831,453 +18740,312.3333333333333,1822,454 +18741,312.35,1812,455 +18742,312.3666666666667,1799,456 +18743,312.3833333333333,1786,457 +18744,312.4,1771,458 +18745,312.4166666666667,1754,460 +18746,312.43333333333334,1737,461 +18747,312.45,1718,462 +18748,312.46666666666664,1699,464 +18749,312.48333333333335,1678,465 +18750,312.5,1656,466 +18751,312.51666666666665,1634,467 +18752,312.5333333333333,1611,468 +18753,312.55,1588,469 +18754,312.56666666666666,1564,470 +18755,312.5833333333333,1539,470 +18756,312.6,1514,470 +18757,312.6166666666667,1489,471 +18758,312.6333333333333,1464,471 +18759,312.65,1439,471 +18760,312.6666666666667,1414,471 +18761,312.68333333333334,1390,471 +18762,312.7,1365,471 +18763,312.71666666666664,1341,471 +18764,312.73333333333335,1318,470 +18765,312.75,1295,470 +18766,312.76666666666665,1273,469 +18767,312.7833333333333,1252,468 +18768,312.8,1232,468 +18769,312.81666666666666,1213,467 +18770,312.8333333333333,1195,466 +18771,312.85,1178,465 +18772,312.8666666666667,1162,464 +18773,312.8833333333333,1148,463 +18774,312.9,1135,462 +18775,312.9166666666667,1124,461 +18776,312.93333333333334,1114,460 +18777,312.95,1106,460 +18778,312.96666666666664,1099,459 +18779,312.98333333333335,1094,459 +18780,313.0,1091,459 +18781,313.01666666666665,1091,459 +18782,313.0333333333333,1091,459 +18783,313.05,1091,459 +18784,313.06666666666666,1094,459 +18785,313.0833333333333,1100,459 +18786,313.1,1106,460 +18787,313.1166666666667,1115,461 +18788,313.1333333333333,1124,462 +18789,313.15,1136,462 +18790,313.1666666666667,1149,463 +18791,313.18333333333334,1163,464 +18792,313.2,1179,466 +18793,313.21666666666664,1196,467 +18794,313.23333333333335,1215,467 +18795,313.25,1234,469 +18796,313.26666666666665,1254,469 +18797,313.2833333333333,1276,470 +18798,313.3,1298,470 +18799,313.31666666666666,1321,471 +18800,313.3333333333333,1344,472 +18801,313.35,1369,472 +18802,313.3666666666667,1394,472 +18803,313.3833333333333,1419,472 +18804,313.4,1444,472 +18805,313.4166666666667,1470,472 +18806,313.43333333333334,1495,472 +18807,313.45,1521,472 +18808,313.46666666666664,1546,471 +18809,313.48333333333335,1570,471 +18810,313.5,1595,470 +18811,313.51666666666665,1618,469 +18812,313.5333333333333,1641,468 +18813,313.55,1664,467 +18814,313.56666666666666,1685,466 +18815,313.5833333333333,1706,465 +18816,313.6,1725,463 +18817,313.6166666666667,1743,462 +18818,313.6333333333333,1760,461 +18819,313.65,1776,459 +18820,313.6666666666667,1790,458 +18821,313.68333333333334,1804,457 +18822,313.7,1815,455 +18823,313.71666666666664,1825,454 +18824,313.73333333333335,1833,453 +18825,313.75,1840,453 +18826,313.76666666666665,1845,452 +18827,313.7833333333333,1849,451 +18828,313.8,1850,451 +18829,313.81666666666666,1850,451 +18830,313.8333333333333,1850,451 +18831,313.85,1847,451 +18832,313.8666666666667,1842,452 +18833,313.8833333333333,1836,452 +18834,313.9,1828,453 +18835,313.9166666666667,1819,454 +18836,313.93333333333334,1808,455 +18837,313.95,1796,456 +18838,313.96666666666664,1782,457 +18839,313.98333333333335,1767,458 +18840,314.0,1751,459 +18841,314.01666666666665,1733,461 +18842,314.0333333333333,1715,462 +18843,314.05,1695,463 +18844,314.06666666666666,1675,464 +18845,314.0833333333333,1653,466 +18846,314.1,1631,467 +18847,314.1166666666667,1608,468 +18848,314.1333333333333,1585,468 +18849,314.15,1561,469 +18850,314.1666666666667,1536,470 +18851,314.18333333333334,1512,470 +18852,314.2,1487,470 +18853,314.21666666666664,1462,471 +18854,314.23333333333335,1437,471 +18855,314.25,1413,471 +18856,314.26666666666665,1388,471 +18857,314.2833333333333,1364,471 +18858,314.3,1340,471 +18859,314.31666666666666,1318,470 +18860,314.3333333333333,1295,469 +18861,314.35,1273,469 +18862,314.3666666666667,1253,468 +18863,314.3833333333333,1233,467 +18864,314.4,1214,467 +18865,314.4166666666667,1196,466 +18866,314.43333333333334,1180,465 +18867,314.45,1164,464 +18868,314.46666666666664,1150,463 +18869,314.48333333333335,1138,462 +18870,314.5,1126,461 +18871,314.51666666666665,1117,460 +18872,314.5333333333333,1108,460 +18873,314.55,1102,460 +18874,314.56666666666666,1097,459 +18875,314.5833333333333,1094,459 +18876,314.6,1094,459 +18877,314.6166666666667,1094,459 +18878,314.6333333333333,1094,459 +18879,314.65,1097,459 +18880,314.6666666666667,1102,460 +18881,314.68333333333334,1109,460 +18882,314.7,1117,461 +18883,314.71666666666664,1127,462 +18884,314.73333333333335,1139,463 +18885,314.75,1152,464 +18886,314.76666666666665,1166,465 +18887,314.7833333333333,1182,466 +18888,314.8,1199,467 +18889,314.81666666666666,1217,468 +18890,314.8333333333333,1237,469 +18891,314.85,1257,469 +18892,314.8666666666667,1278,470 +18893,314.8833333333333,1301,471 +18894,314.9,1324,471 +18895,314.9166666666667,1347,472 +18896,314.93333333333334,1372,472 +18897,314.95,1397,472 +18898,314.96666666666664,1422,472 +18899,314.98333333333335,1447,472 +18900,315.0,1472,472 +18901,315.01666666666665,1498,472 +18902,315.0333333333333,1523,472 +18903,315.05,1548,472 +18904,315.06666666666666,1572,471 +18905,315.0833333333333,1597,470 +18906,315.1,1620,469 +18907,315.1166666666667,1643,468 +18908,315.1333333333333,1665,468 +18909,315.15,1686,466 +18910,315.1666666666667,1707,465 +18911,315.18333333333334,1726,464 +18912,315.2,1744,462 +18913,315.21666666666664,1761,461 +18914,315.23333333333335,1776,460 +18915,315.25,1791,458 +18916,315.26666666666665,1804,457 +18917,315.2833333333333,1815,456 +18918,315.3,1825,455 +18919,315.31666666666666,1833,454 +18920,315.3333333333333,1840,453 +18921,315.35,1845,452 +18922,315.3666666666667,1848,452 +18923,315.3833333333333,1849,452 +18924,315.4,1849,452 +18925,315.4166666666667,1849,452 +18926,315.43333333333334,1846,452 +18927,315.45,1841,452 +18928,315.46666666666664,1835,453 +18929,315.48333333333335,1827,454 +18930,315.5,1817,454 +18931,315.51666666666665,1806,455 +18932,315.5333333333333,1794,456 +18933,315.55,1780,458 +18934,315.56666666666666,1766,459 +18935,315.5833333333333,1749,460 +18936,315.6,1732,462 +18937,315.6166666666667,1713,463 +18938,315.6333333333333,1693,464 +18939,315.65,1673,465 +18940,315.6666666666667,1651,467 +18941,315.68333333333334,1629,468 +18942,315.7,1606,469 +18943,315.71666666666664,1583,469 +18944,315.73333333333335,1559,470 +18945,315.75,1534,471 +18946,315.76666666666665,1509,471 +18947,315.7833333333333,1485,471 +18948,315.8,1460,471 +18949,315.81666666666666,1435,471 +18950,315.8333333333333,1411,471 +18951,315.85,1386,471 +18952,315.8666666666667,1362,471 +18953,315.8833333333333,1338,471 +18954,315.9,1315,471 +18955,315.9166666666667,1293,470 +18956,315.93333333333334,1272,469 +18957,315.95,1251,468 +18958,315.96666666666664,1231,468 +18959,315.98333333333335,1212,467 +18960,316.0,1195,466 +18961,316.01666666666665,1179,465 +18962,316.0333333333333,1163,464 +18963,316.05,1149,463 +18964,316.06666666666666,1137,462 +18965,316.0833333333333,1126,462 +18966,316.1,1116,461 +18967,316.1166666666667,1108,460 +18968,316.1333333333333,1102,460 +18969,316.15,1097,459 +18970,316.1666666666667,1094,459 +18971,316.18333333333334,1094,459 +18972,316.2,1094,459 +18973,316.21666666666664,1095,459 +18974,316.23333333333335,1099,460 +18975,316.25,1104,460 +18976,316.26666666666665,1111,461 +18977,316.2833333333333,1120,462 +18978,316.3,1130,462 +18979,316.31666666666666,1141,463 +18980,316.3333333333333,1154,465 +18981,316.35,1169,466 +18982,316.3666666666667,1185,466 +18983,316.3833333333333,1202,467 +18984,316.4,1220,468 +18985,316.4166666666667,1240,469 +18986,316.43333333333334,1261,470 +18987,316.45,1281,471 +18988,316.46666666666664,1304,471 +18989,316.48333333333335,1327,472 +18990,316.5,1350,472 +18991,316.51666666666665,1374,473 +18992,316.5333333333333,1400,473 +18993,316.55,1425,473 +18994,316.56666666666666,1450,473 +18995,316.5833333333333,1475,473 +18996,316.6,1500,472 +18997,316.6166666666667,1525,472 +18998,316.6333333333333,1550,472 +18999,316.65,1575,471 +19000,316.6666666666667,1599,470 +19001,316.68333333333334,1622,470 +19002,316.7,1645,469 +19003,316.71666666666664,1667,467 +19004,316.73333333333335,1688,466 +19005,316.75,1708,465 +19006,316.76666666666665,1727,463 +19007,316.7833333333333,1745,462 +19008,316.8,1762,461 +19009,316.81666666666666,1777,460 +19010,316.8333333333333,1791,458 +19011,316.85,1804,457 +19012,316.8666666666667,1815,456 +19013,316.8833333333333,1825,455 +19014,316.9,1833,454 +19015,316.9166666666667,1840,453 +19016,316.93333333333334,1845,453 +19017,316.95,1848,452 +19018,316.96666666666664,1848,452 +19019,316.98333333333335,1848,452 +19020,317.0,1848,452 +19021,317.01666666666665,1845,452 +19022,317.0333333333333,1840,453 +19023,317.05,1833,453 +19024,317.06666666666666,1825,454 +19025,317.0833333333333,1816,455 +19026,317.1,1805,456 +19027,317.1166666666667,1793,457 +19028,317.1333333333333,1779,458 +19029,317.15,1764,459 +19030,317.1666666666667,1747,460 +19031,317.18333333333334,1730,462 +19032,317.2,1711,463 +19033,317.21666666666664,1691,465 +19034,317.23333333333335,1671,466 +19035,317.25,1649,467 +19036,317.26666666666665,1627,468 +19037,317.2833333333333,1604,469 +19038,317.3,1580,470 +19039,317.31666666666666,1557,470 +19040,317.3333333333333,1533,471 +19041,317.35,1508,471 +19042,317.3666666666667,1483,471 +19043,317.3833333333333,1458,472 +19044,317.4,1434,472 +19045,317.4166666666667,1409,472 +19046,317.43333333333334,1385,471 +19047,317.45,1361,471 +19048,317.46666666666664,1337,471 +19049,317.48333333333335,1315,470 +19050,317.5,1292,470 +19051,317.51666666666665,1271,469 +19052,317.5333333333333,1250,468 +19053,317.55,1231,467 +19054,317.56666666666666,1212,467 +19055,317.5833333333333,1194,466 +19056,317.6,1178,465 +19057,317.6166666666667,1163,464 +19058,317.6333333333333,1149,463 +19059,317.65,1137,462 +19060,317.6666666666667,1126,461 +19061,317.68333333333334,1117,460 +19062,317.7,1109,460 +19063,317.71666666666664,1103,459 +19064,317.73333333333335,1098,459 +19065,317.75,1095,459 +19066,317.76666666666665,1095,459 +19067,317.7833333333333,1095,459 +19068,317.8,1096,459 +19069,317.81666666666666,1100,460 +19070,317.8333333333333,1106,460 +19071,317.85,1113,461 +19072,317.8666666666667,1121,461 +19073,317.8833333333333,1132,462 +19074,317.9,1143,463 +19075,317.9166666666667,1156,464 +19076,317.93333333333334,1171,465 +19077,317.95,1187,466 +19078,317.96666666666664,1204,467 +19079,317.98333333333335,1222,468 +19080,318.0,1242,469 +19081,318.01666666666665,1263,470 +19082,318.0333333333333,1283,470 +19083,318.05,1306,471 +19084,318.06666666666666,1329,472 +19085,318.0833333333333,1352,472 +19086,318.1,1376,472 +19087,318.1166666666667,1401,472 +19088,318.1333333333333,1426,472 +19089,318.15,1451,472 +19090,318.1666666666667,1476,472 +19091,318.18333333333334,1501,472 +19092,318.2,1526,472 +19093,318.21666666666664,1551,472 +19094,318.23333333333335,1575,471 +19095,318.25,1599,470 +19096,318.26666666666665,1623,469 +19097,318.2833333333333,1645,469 +19098,318.3,1667,468 +19099,318.31666666666666,1688,466 +19100,318.3333333333333,1708,465 +19101,318.35,1726,464 +19102,318.3666666666667,1744,463 +19103,318.3833333333333,1761,461 +19104,318.4,1776,460 +19105,318.4166666666667,1790,459 +19106,318.43333333333334,1802,457 +19107,318.45,1813,456 +19108,318.46666666666664,1823,455 +19109,318.48333333333335,1831,454 +19110,318.5,1837,453 +19111,318.51666666666665,1842,453 +19112,318.5333333333333,1845,452 +19113,318.55,1845,452 +19114,318.56666666666666,1845,452 +19115,318.5833333333333,1845,452 +19116,318.6,1842,452 +19117,318.6166666666667,1837,453 +19118,318.6333333333333,1830,453 +19119,318.65,1823,454 +19120,318.6666666666667,1813,455 +19121,318.68333333333334,1802,456 +19122,318.7,1790,457 +19123,318.71666666666664,1776,458 +19124,318.73333333333335,1760,459 +19125,318.75,1744,461 +19126,318.76666666666665,1727,462 +19127,318.7833333333333,1708,463 +19128,318.8,1688,464 +19129,318.81666666666666,1667,465 +19130,318.8333333333333,1646,467 +19131,318.85,1624,468 +19132,318.8666666666667,1601,468 +19133,318.8833333333333,1577,469 +19134,318.9,1554,470 +19135,318.9166666666667,1530,471 +19136,318.93333333333334,1505,471 +19137,318.95,1481,471 +19138,318.96666666666664,1456,471 +19139,318.98333333333335,1431,471 +19140,319.0,1407,471 +19141,319.01666666666665,1383,471 +19142,319.0333333333333,1358,471 +19143,319.05,1335,471 +19144,319.06666666666666,1312,470 +19145,319.0833333333333,1290,469 +19146,319.1,1269,468 +19147,319.1166666666667,1249,468 +19148,319.1333333333333,1229,467 +19149,319.15,1210,466 +19150,319.1666666666667,1193,465 +19151,319.18333333333334,1176,464 +19152,319.2,1162,463 +19153,319.21666666666664,1148,462 +19154,319.23333333333335,1136,461 +19155,319.25,1125,460 +19156,319.26666666666665,1116,460 +19157,319.2833333333333,1109,459 +19158,319.3,1103,459 +19159,319.31666666666666,1099,458 +19160,319.3333333333333,1096,458 +19161,319.35,1096,458 +19162,319.3666666666667,1096,458 +19163,319.3833333333333,1097,459 +19164,319.4,1101,459 +19165,319.4166666666667,1107,460 +19166,319.43333333333334,1114,460 +19167,319.45,1123,461 +19168,319.46666666666664,1133,462 +19169,319.48333333333335,1145,463 +19170,319.5,1158,464 +19171,319.51666666666665,1172,465 +19172,319.5333333333333,1189,466 +19173,319.55,1206,467 +19174,319.56666666666666,1225,468 +19175,319.5833333333333,1245,469 +19176,319.6,1265,469 +19177,319.6166666666667,1286,470 +19178,319.6333333333333,1308,471 +19179,319.65,1332,471 +19180,319.6666666666667,1355,472 +19181,319.68333333333334,1379,472 +19182,319.7,1404,473 +19183,319.71666666666664,1429,473 +19184,319.73333333333335,1454,473 +19185,319.75,1479,473 +19186,319.76666666666665,1504,472 +19187,319.7833333333333,1529,472 +19188,319.8,1554,472 +19189,319.81666666666666,1578,471 +19190,319.8333333333333,1602,470 +19191,319.85,1626,470 +19192,319.8666666666667,1648,469 +19193,319.8833333333333,1670,467 +19194,319.9,1691,466 +19195,319.9166666666667,1711,465 +19196,319.93333333333334,1730,463 +19197,319.95,1747,462 +19198,319.96666666666664,1763,461 +19199,319.98333333333335,1778,459 +19200,320.0,1792,458 +19201,320.01666666666665,1804,457 +19202,320.0333333333333,1815,456 +19203,320.05,1824,455 +19204,320.06666666666666,1832,454 +19205,320.0833333333333,1838,453 +19206,320.1,1843,453 +19207,320.1166666666667,1846,452 +19208,320.1333333333333,1846,452 +19209,320.15,1846,452 +19210,320.1666666666667,1845,452 +19211,320.18333333333334,1841,452 +19212,320.2,1836,453 +19213,320.21666666666664,1829,453 +19214,320.23333333333335,1821,454 +19215,320.25,1811,455 +19216,320.26666666666665,1800,456 +19217,320.2833333333333,1788,457 +19218,320.3,1773,458 +19219,320.31666666666666,1758,459 +19220,320.3333333333333,1742,461 +19221,320.35,1724,462 +19222,320.3666666666667,1706,463 +19223,320.3833333333333,1686,465 +19224,320.4,1665,466 +19225,320.4166666666667,1643,467 +19226,320.43333333333334,1621,468 +19227,320.45,1599,469 +19228,320.46666666666664,1575,469 +19229,320.48333333333335,1551,470 +19230,320.5,1527,471 +19231,320.51666666666665,1503,471 +19232,320.5333333333333,1478,471 +19233,320.55,1453,471 +19234,320.56666666666666,1429,471 +19235,320.5833333333333,1405,471 +19236,320.6,1380,471 +19237,320.6166666666667,1356,471 +19238,320.6333333333333,1333,471 +19239,320.65,1310,470 +19240,320.6666666666667,1288,470 +19241,320.68333333333334,1267,469 +19242,320.7,1247,468 +19243,320.71666666666664,1228,468 +19244,320.73333333333335,1209,467 +19245,320.75,1192,466 +19246,320.76666666666665,1176,465 +19247,320.7833333333333,1161,464 +19248,320.8,1148,463 +19249,320.81666666666666,1136,462 +19250,320.8333333333333,1125,461 +19251,320.85,1116,461 +19252,320.8666666666667,1109,460 +19253,320.8833333333333,1103,460 +19254,320.9,1099,460 +19255,320.9166666666667,1096,459 +19256,320.93333333333334,1096,459 +19257,320.95,1096,460 +19258,320.96666666666664,1098,460 +19259,320.98333333333335,1102,460 +19260,321.0,1108,461 +19261,321.01666666666665,1115,461 +19262,321.0333333333333,1124,462 +19263,321.05,1134,463 +19264,321.06666666666666,1146,464 +19265,321.0833333333333,1160,465 +19266,321.1,1175,466 +19267,321.1166666666667,1191,467 +19268,321.1333333333333,1208,468 +19269,321.15,1227,469 +19270,321.1666666666667,1247,469 +19271,321.18333333333334,1267,470 +19272,321.2,1288,471 +19273,321.21666666666664,1311,472 +19274,321.23333333333335,1333,472 +19275,321.25,1357,472 +19276,321.26666666666665,1382,473 +19277,321.2833333333333,1406,473 +19278,321.3,1431,473 +19279,321.31666666666666,1456,473 +19280,321.3333333333333,1481,473 +19281,321.35,1506,472 +19282,321.3666666666667,1531,472 +19283,321.3833333333333,1556,471 +19284,321.4,1580,471 +19285,321.4166666666667,1604,470 +19286,321.43333333333334,1627,469 +19287,321.45,1649,468 +19288,321.46666666666664,1671,467 +19289,321.48333333333335,1691,466 +19290,321.5,1711,465 +19291,321.51666666666665,1730,463 +19292,321.5333333333333,1747,462 +19293,321.55,1763,461 +19294,321.56666666666666,1778,459 +19295,321.5833333333333,1792,458 +19296,321.6,1804,457 +19297,321.6166666666667,1814,456 +19298,321.6333333333333,1823,455 +19299,321.65,1831,454 +19300,321.6666666666667,1837,453 +19301,321.68333333333334,1842,453 +19302,321.7,1845,452 +19303,321.71666666666664,1845,452 +19304,321.73333333333335,1845,452 +19305,321.75,1843,452 +19306,321.76666666666665,1840,453 +19307,321.7833333333333,1834,453 +19308,321.8,1828,454 +19309,321.81666666666666,1819,454 +19310,321.8333333333333,1810,455 +19311,321.85,1798,456 +19312,321.8666666666667,1786,457 +19313,321.8833333333333,1772,458 +19314,321.9,1756,460 +19315,321.9166666666667,1740,461 +19316,321.93333333333334,1722,462 +19317,321.95,1703,463 +19318,321.96666666666664,1684,465 +19319,321.98333333333335,1663,466 +19320,322.0,1642,467 +19321,322.01666666666665,1620,468 +19322,322.0333333333333,1597,469 +19323,322.05,1573,470 +19324,322.06666666666666,1549,470 +19325,322.0833333333333,1525,471 +19326,322.1,1500,471 +19327,322.1166666666667,1476,471 +19328,322.1333333333333,1451,471 +19329,322.15,1427,472 +19330,322.1666666666667,1403,472 +19331,322.18333333333334,1379,472 +19332,322.2,1355,472 +19333,322.21666666666664,1332,471 +19334,322.23333333333335,1310,471 +19335,322.25,1288,470 +19336,322.26666666666665,1267,469 +19337,322.2833333333333,1247,468 +19338,322.3,1228,468 +19339,322.31666666666666,1209,467 +19340,322.3333333333333,1192,466 +19341,322.35,1176,465 +19342,322.3666666666667,1162,464 +19343,322.3833333333333,1149,463 +19344,322.4,1137,463 +19345,322.4166666666667,1126,462 +19346,322.43333333333334,1117,461 +19347,322.45,1110,461 +19348,322.46666666666664,1104,460 +19349,322.48333333333335,1100,460 +19350,322.5,1098,460 +19351,322.51666666666665,1098,460 +19352,322.5333333333333,1098,460 +19353,322.55,1100,460 +19354,322.56666666666666,1105,460 +19355,322.5833333333333,1110,461 +19356,322.6,1118,461 +19357,322.6166666666667,1127,462 +19358,322.6333333333333,1138,463 +19359,322.65,1150,464 +19360,322.6666666666667,1163,465 +19361,322.68333333333334,1178,466 +19362,322.7,1194,467 +19363,322.71666666666664,1211,468 +19364,322.73333333333335,1230,469 +19365,322.75,1250,470 +19366,322.76666666666665,1270,470 +19367,322.7833333333333,1292,471 +19368,322.8,1314,472 +19369,322.81666666666666,1337,472 +19370,322.8333333333333,1361,472 +19371,322.85,1385,473 +19372,322.8666666666667,1409,473 +19373,322.8833333333333,1434,473 +19374,322.9,1459,473 +19375,322.9166666666667,1484,473 +19376,322.93333333333334,1509,472 +19377,322.95,1534,472 +19378,322.96666666666664,1558,471 +19379,322.98333333333335,1582,471 +19380,323.0,1606,470 +19381,323.01666666666665,1629,469 +19382,323.0333333333333,1651,468 +19383,323.05,1672,467 +19384,323.06666666666666,1693,466 +19385,323.0833333333333,1712,465 +19386,323.1,1731,463 +19387,323.1166666666667,1748,462 +19388,323.1333333333333,1764,461 +19389,323.15,1779,459 +19390,323.1666666666667,1792,458 +19391,323.18333333333334,1804,457 +19392,323.2,1814,456 +19393,323.21666666666664,1823,455 +19394,323.23333333333335,1831,454 +19395,323.25,1837,453 +19396,323.26666666666665,1841,453 +19397,323.2833333333333,1844,452 +19398,323.3,1844,452 +19399,323.31666666666666,1844,452 +19400,323.3333333333333,1842,452 +19401,323.35,1838,453 +19402,323.3666666666667,1832,453 +19403,323.3833333333333,1825,454 +19404,323.4,1817,454 +19405,323.4166666666667,1807,455 +19406,323.43333333333334,1795,456 +19407,323.45,1783,458 +19408,323.46666666666664,1769,459 +19409,323.48333333333335,1753,460 +19410,323.5,1737,461 +19411,323.51666666666665,1719,463 +19412,323.5333333333333,1700,464 +19413,323.55,1680,465 +19414,323.56666666666666,1660,466 +19415,323.5833333333333,1638,467 +19416,323.6,1616,468 +19417,323.6166666666667,1593,469 +19418,323.6333333333333,1570,470 +19419,323.65,1546,470 +19420,323.6666666666667,1522,471 +19421,323.68333333333334,1497,471 +19422,323.7,1473,472 +19423,323.71666666666664,1448,472 +19424,323.73333333333335,1424,472 +19425,323.75,1400,472 +19426,323.76666666666665,1375,472 +19427,323.7833333333333,1351,472 +19428,323.8,1328,471 +19429,323.81666666666666,1306,471 +19430,323.8333333333333,1284,470 +19431,323.85,1263,469 +19432,323.8666666666667,1243,468 +19433,323.8833333333333,1225,468 +19434,323.9,1207,467 +19435,323.9166666666667,1190,466 +19436,323.93333333333334,1174,465 +19437,323.95,1160,464 +19438,323.96666666666664,1147,463 +19439,323.98333333333335,1135,462 +19440,324.0,1125,461 +19441,324.01666666666665,1117,461 +19442,324.0333333333333,1110,460 +19443,324.05,1104,460 +19444,324.06666666666666,1100,459 +19445,324.0833333333333,1098,459 +19446,324.1,1098,459 +19447,324.1166666666667,1098,459 +19448,324.1333333333333,1101,460 +19449,324.15,1106,460 +19450,324.1666666666667,1112,461 +19451,324.18333333333334,1119,461 +19452,324.2,1128,462 +19453,324.21666666666664,1139,463 +19454,324.23333333333335,1151,464 +19455,324.25,1165,465 +19456,324.26666666666665,1180,466 +19457,324.2833333333333,1196,467 +19458,324.3,1214,467 +19459,324.31666666666666,1233,468 +19460,324.3333333333333,1252,469 +19461,324.35,1273,470 +19462,324.3666666666667,1294,470 +19463,324.3833333333333,1316,471 +19464,324.4,1339,472 +19465,324.4166666666667,1363,472 +19466,324.43333333333334,1387,472 +19467,324.45,1412,472 +19468,324.46666666666664,1436,472 +19469,324.48333333333335,1461,472 +19470,324.5,1486,472 +19471,324.51666666666665,1511,472 +19472,324.5333333333333,1536,471 +19473,324.55,1560,471 +19474,324.56666666666666,1584,470 +19475,324.5833333333333,1607,470 +19476,324.6,1630,469 +19477,324.6166666666667,1652,468 +19478,324.6333333333333,1673,467 +19479,324.65,1693,466 +19480,324.6666666666667,1713,464 +19481,324.68333333333334,1731,463 +19482,324.7,1748,461 +19483,324.71666666666664,1764,460 +19484,324.73333333333335,1778,459 +19485,324.75,1792,458 +19486,324.76666666666665,1803,456 +19487,324.7833333333333,1813,455 +19488,324.8,1822,454 +19489,324.81666666666666,1830,454 +19490,324.8333333333333,1835,453 +19491,324.85,1839,452 +19492,324.8666666666667,1842,452 +19493,324.8833333333333,1842,452 +19494,324.9,1842,452 +19495,324.9166666666667,1839,452 +19496,324.93333333333334,1835,452 +19497,324.95,1830,453 +19498,324.96666666666664,1823,454 +19499,324.98333333333335,1814,454 +19500,325.0,1804,455 +19501,325.01666666666665,1792,456 +19502,325.0333333333333,1780,457 +19503,325.05,1766,458 +19504,325.06666666666666,1750,459 +19505,325.0833333333333,1734,461 +19506,325.1,1716,462 +19507,325.1166666666667,1697,463 +19508,325.1333333333333,1677,464 +19509,325.15,1657,465 +19510,325.1666666666667,1635,467 +19511,325.18333333333334,1613,468 +19512,325.2,1590,468 +19513,325.21666666666664,1567,469 +19514,325.23333333333335,1543,470 +19515,325.25,1520,470 +19516,325.26666666666665,1495,470 +19517,325.2833333333333,1471,471 +19518,325.3,1446,471 +19519,325.31666666666666,1422,471 +19520,325.3333333333333,1399,471 +19521,325.35,1374,471 +19522,325.3666666666667,1351,471 +19523,325.3833333333333,1328,471 +19524,325.4,1306,470 +19525,325.4166666666667,1285,469 +19526,325.43333333333334,1264,469 +19527,325.45,1244,468 +19528,325.46666666666664,1225,467 +19529,325.48333333333335,1207,466 +19530,325.5,1191,466 +19531,325.51666666666665,1175,465 +19532,325.5333333333333,1161,464 +19533,325.55,1148,463 +19534,325.56666666666666,1137,462 +19535,325.5833333333333,1127,462 +19536,325.6,1119,461 +19537,325.6166666666667,1112,461 +19538,325.6333333333333,1106,460 +19539,325.65,1102,460 +19540,325.6666666666667,1101,460 +19541,325.68333333333334,1101,460 +19542,325.7,1101,460 +19543,325.71666666666664,1104,460 +19544,325.73333333333335,1108,460 +19545,325.75,1114,461 +19546,325.76666666666665,1122,462 +19547,325.7833333333333,1131,463 +19548,325.8,1142,463 +19549,325.81666666666666,1154,464 +19550,325.8333333333333,1167,465 +19551,325.85,1182,466 +19552,325.8666666666667,1199,467 +19553,325.8833333333333,1217,468 +19554,325.9,1235,469 +19555,325.9166666666667,1255,469 +19556,325.93333333333334,1275,470 +19557,325.95,1297,470 +19558,325.96666666666664,1319,472 +19559,325.98333333333335,1342,472 +19560,326.0,1365,472 +19561,326.01666666666665,1389,472 +19562,326.0333333333333,1414,472 +19563,326.05,1439,472 +19564,326.06666666666666,1463,472 +19565,326.0833333333333,1488,472 +19566,326.1,1513,472 +19567,326.1166666666667,1537,472 +19568,326.1333333333333,1562,471 +19569,326.15,1585,471 +19570,326.1666666666667,1608,470 +19571,326.18333333333334,1631,469 +19572,326.2,1653,468 +19573,326.21666666666664,1674,467 +19574,326.23333333333335,1694,466 +19575,326.25,1714,464 +19576,326.26666666666665,1732,463 +19577,326.2833333333333,1749,462 +19578,326.3,1764,460 +19579,326.31666666666666,1778,459 +19580,326.3333333333333,1791,458 +19581,326.35,1803,457 +19582,326.3666666666667,1813,456 +19583,326.3833333333333,1822,455 +19584,326.4,1829,454 +19585,326.4166666666667,1834,453 +19586,326.43333333333334,1838,453 +19587,326.45,1840,452 +19588,326.46666666666664,1840,452 +19589,326.48333333333335,1840,452 +19590,326.5,1838,452 +19591,326.51666666666665,1834,453 +19592,326.5333333333333,1828,453 +19593,326.55,1821,454 +19594,326.56666666666666,1813,455 +19595,326.5833333333333,1802,455 +19596,326.6,1791,457 +19597,326.6166666666667,1778,458 +19598,326.6333333333333,1764,459 +19599,326.65,1748,460 +19600,326.6666666666667,1732,461 +19601,326.68333333333334,1714,463 +19602,326.7,1695,464 +19603,326.71666666666664,1675,465 +19604,326.73333333333335,1654,466 +19605,326.75,1633,467 +19606,326.76666666666665,1611,468 +19607,326.7833333333333,1588,469 +19608,326.8,1564,470 +19609,326.81666666666666,1541,470 +19610,326.8333333333333,1517,471 +19611,326.85,1493,471 +19612,326.8666666666667,1468,471 +19613,326.8833333333333,1444,471 +19614,326.9,1420,471 +19615,326.9166666666667,1396,471 +19616,326.93333333333334,1372,471 +19617,326.95,1348,471 +19618,326.96666666666664,1326,471 +19619,326.98333333333335,1304,470 +19620,327.0,1282,470 +19621,327.01666666666665,1262,469 +19622,327.0333333333333,1242,469 +19623,327.05,1223,468 +19624,327.06666666666666,1205,467 +19625,327.0833333333333,1189,466 +19626,327.1,1174,465 +19627,327.1166666666667,1159,464 +19628,327.1333333333333,1147,463 +19629,327.15,1136,462 +19630,327.1666666666667,1126,462 +19631,327.18333333333334,1117,461 +19632,327.2,1111,461 +19633,327.21666666666664,1105,461 +19634,327.23333333333335,1102,460 +19635,327.25,1101,460 +19636,327.26666666666665,1101,460 +19637,327.2833333333333,1101,460 +19638,327.3,1104,460 +19639,327.31666666666666,1108,461 +19640,327.3333333333333,1115,462 +19641,327.35,1123,462 +19642,327.3666666666667,1132,463 +19643,327.3833333333333,1143,464 +19644,327.4,1155,465 +19645,327.4166666666667,1169,466 +19646,327.43333333333334,1184,467 +19647,327.45,1200,468 +19648,327.46666666666664,1218,469 +19649,327.48333333333335,1237,470 +19650,327.5,1256,470 +19651,327.51666666666665,1277,471 +19652,327.5333333333333,1299,471 +19653,327.55,1321,472 +19654,327.56666666666666,1344,472 +19655,327.5833333333333,1368,473 +19656,327.6,1392,473 +19657,327.6166666666667,1416,473 +19658,327.6333333333333,1441,473 +19659,327.65,1466,473 +19660,327.6666666666667,1490,473 +19661,327.68333333333334,1515,472 +19662,327.7,1539,472 +19663,327.71666666666664,1564,471 +19664,327.73333333333335,1587,471 +19665,327.75,1610,470 +19666,327.76666666666665,1633,469 +19667,327.7833333333333,1655,468 +19668,327.8,1676,467 +19669,327.81666666666666,1696,466 +19670,327.8333333333333,1714,465 +19671,327.85,1733,463 +19672,327.8666666666667,1749,462 +19673,327.8833333333333,1765,461 +19674,327.9,1779,459 +19675,327.9166666666667,1792,458 +19676,327.93333333333334,1803,457 +19677,327.95,1813,456 +19678,327.96666666666664,1822,455 +19679,327.98333333333335,1828,454 +19680,328.0,1834,453 +19681,328.01666666666665,1838,453 +19682,328.0333333333333,1840,453 +19683,328.05,1840,453 +19684,328.06666666666666,1840,453 +19685,328.0833333333333,1837,453 +19686,328.1,1833,453 +19687,328.1166666666667,1827,454 +19688,328.1333333333333,1820,454 +19689,328.15,1811,455 +19690,328.1666666666667,1801,456 +19691,328.18333333333334,1789,457 +19692,328.2,1776,458 +19693,328.21666666666664,1762,459 +19694,328.23333333333335,1746,460 +19695,328.25,1730,462 +19696,328.26666666666665,1712,463 +19697,328.2833333333333,1693,464 +19698,328.3,1673,465 +19699,328.31666666666666,1653,467 +19700,328.3333333333333,1631,468 +19701,328.35,1609,469 +19702,328.3666666666667,1586,469 +19703,328.3833333333333,1563,470 +19704,328.4,1539,471 +19705,328.4166666666667,1515,471 +19706,328.43333333333334,1491,472 +19707,328.45,1467,472 +19708,328.46666666666664,1443,472 +19709,328.48333333333335,1419,472 +19710,328.5,1395,472 +19711,328.51666666666665,1371,472 +19712,328.5333333333333,1348,471 +19713,328.55,1325,471 +19714,328.56666666666666,1304,470 +19715,328.5833333333333,1282,469 +19716,328.6,1262,469 +19717,328.6166666666667,1242,468 +19718,328.6333333333333,1224,468 +19719,328.65,1206,467 +19720,328.6666666666667,1190,466 +19721,328.68333333333334,1174,465 +19722,328.7,1160,464 +19723,328.71666666666664,1148,463 +19724,328.73333333333335,1137,463 +19725,328.75,1127,462 +19726,328.76666666666665,1119,461 +19727,328.7833333333333,1112,461 +19728,328.8,1107,461 +19729,328.81666666666666,1104,460 +19730,328.8333333333333,1103,460 +19731,328.85,1103,460 +19732,328.8666666666667,1103,461 +19733,328.8833333333333,1107,461 +19734,328.9,1111,461 +19735,328.9166666666667,1118,462 +19736,328.93333333333334,1126,462 +19737,328.95,1135,463 +19738,328.96666666666664,1146,464 +19739,328.98333333333335,1158,465 +19740,329.0,1172,466 +19741,329.01666666666665,1187,467 +19742,329.0333333333333,1204,468 +19743,329.05,1222,468 +19744,329.06666666666666,1241,469 +19745,329.0833333333333,1260,470 +19746,329.1,1281,470 +19747,329.1166666666667,1302,471 +19748,329.1333333333333,1325,472 +19749,329.15,1347,472 +19750,329.1666666666667,1371,472 +19751,329.18333333333334,1395,472 +19752,329.2,1419,473 +19753,329.21666666666664,1444,473 +19754,329.23333333333335,1469,473 +19755,329.25,1493,472 +19756,329.26666666666665,1518,472 +19757,329.2833333333333,1542,472 +19758,329.3,1566,471 +19759,329.31666666666666,1590,470 +19760,329.3333333333333,1613,470 +19761,329.35,1635,469 +19762,329.3666666666667,1657,468 +19763,329.3833333333333,1678,467 +19764,329.4,1697,466 +19765,329.4166666666667,1716,464 +19766,329.43333333333334,1734,463 +19767,329.45,1750,461 +19768,329.46666666666664,1766,460 +19769,329.48333333333335,1780,459 +19770,329.5,1792,458 +19771,329.51666666666665,1804,457 +19772,329.5333333333333,1814,456 +19773,329.55,1822,455 +19774,329.56666666666666,1829,454 +19775,329.5833333333333,1834,454 +19776,329.6,1837,453 +19777,329.6166666666667,1839,453 +19778,329.6333333333333,1839,453 +19779,329.65,1839,453 +19780,329.6666666666667,1836,453 +19781,329.68333333333334,1832,453 +19782,329.7,1826,454 +19783,329.71666666666664,1818,454 +19784,329.73333333333335,1809,455 +19785,329.75,1799,456 +19786,329.76666666666665,1787,457 +19787,329.7833333333333,1774,458 +19788,329.8,1760,459 +19789,329.81666666666666,1744,461 +19790,329.8333333333333,1727,462 +19791,329.85,1709,463 +19792,329.8666666666667,1690,464 +19793,329.8833333333333,1671,465 +19794,329.9,1650,467 +19795,329.9166666666667,1628,468 +19796,329.93333333333334,1606,468 +19797,329.95,1584,469 +19798,329.96666666666664,1560,470 +19799,329.98333333333335,1537,470 +19800,330.0,1513,471 +19801,330.01666666666665,1488,471 +19802,330.0333333333333,1464,471 +19803,330.05,1440,471 +19804,330.06666666666666,1416,471 +19805,330.0833333333333,1393,471 +19806,330.1,1368,471 +19807,330.1166666666667,1345,471 +19808,330.1333333333333,1323,471 +19809,330.15,1301,470 +19810,330.1666666666667,1280,469 +19811,330.18333333333334,1260,469 +19812,330.2,1240,468 +19813,330.21666666666664,1222,467 +19814,330.23333333333335,1204,466 +19815,330.25,1188,465 +19816,330.26666666666665,1173,465 +19817,330.2833333333333,1159,464 +19818,330.3,1147,463 +19819,330.31666666666666,1136,462 +19820,330.3333333333333,1126,462 +19821,330.35,1118,461 +19822,330.3666666666667,1112,460 +19823,330.3833333333333,1107,460 +19824,330.4,1104,460 +19825,330.4166666666667,1104,460 +19826,330.43333333333334,1104,460 +19827,330.45,1104,460 +19828,330.46666666666664,1107,460 +19829,330.48333333333335,1112,461 +19830,330.5,1118,461 +19831,330.51666666666665,1127,462 +19832,330.5333333333333,1136,463 +19833,330.55,1147,464 +19834,330.56666666666666,1160,465 +19835,330.5833333333333,1174,466 +19836,330.6,1189,466 +19837,330.6166666666667,1206,467 +19838,330.6333333333333,1224,468 +19839,330.65,1243,469 +19840,330.6666666666667,1262,470 +19841,330.68333333333334,1283,470 +19842,330.7,1304,471 +19843,330.71666666666664,1327,472 +19844,330.73333333333335,1350,472 +19845,330.75,1374,472 +19846,330.76666666666665,1397,472 +19847,330.7833333333333,1422,472 +19848,330.8,1446,472 +19849,330.81666666666666,1471,472 +19850,330.8333333333333,1495,472 +19851,330.85,1520,472 +19852,330.8666666666667,1544,471 +19853,330.8833333333333,1568,471 +19854,330.9,1591,470 +19855,330.9166666666667,1614,470 +19856,330.93333333333334,1636,469 +19857,330.95,1658,468 +19858,330.96666666666664,1679,467 +19859,330.98333333333335,1698,465 +19860,331.0,1717,464 +19861,331.01666666666665,1734,463 +19862,331.0333333333333,1751,461 +19863,331.05,1766,460 +19864,331.06666666666666,1780,459 +19865,331.0833333333333,1792,458 +19866,331.1,1804,456 +19867,331.1166666666667,1813,455 +19868,331.1333333333333,1821,454 +19869,331.15,1828,454 +19870,331.1666666666667,1832,453 +19871,331.18333333333334,1836,453 +19872,331.2,1837,453 +19873,331.21666666666664,1837,453 +19874,331.23333333333335,1837,453 +19875,331.25,1834,453 +19876,331.26666666666665,1829,453 +19877,331.2833333333333,1823,454 +19878,331.3,1815,454 +19879,331.31666666666666,1806,455 +19880,331.3333333333333,1796,456 +19881,331.35,1784,457 +19882,331.3666666666667,1771,458 +19883,331.3833333333333,1756,460 +19884,331.4,1740,461 +19885,331.4166666666667,1724,462 +19886,331.43333333333334,1705,463 +19887,331.45,1686,465 +19888,331.46666666666664,1666,466 +19889,331.48333333333335,1645,467 +19890,331.5,1624,468 +19891,331.51666666666665,1602,469 +19892,331.5333333333333,1579,470 +19893,331.55,1556,471 +19894,331.56666666666666,1532,471 +19895,331.5833333333333,1508,471 +19896,331.6,1484,472 +19897,331.6166666666667,1460,472 +19898,331.6333333333333,1436,472 +19899,331.65,1412,472 +19900,331.6666666666667,1389,472 +19901,331.68333333333334,1365,471 +19902,331.7,1342,471 +19903,331.71666666666664,1320,470 +19904,331.73333333333335,1298,470 +19905,331.75,1278,469 +19906,331.76666666666665,1258,468 +19907,331.7833333333333,1238,468 +19908,331.8,1220,467 +19909,331.81666666666666,1203,466 +19910,331.8333333333333,1187,465 +19911,331.85,1172,465 +19912,331.8666666666667,1158,464 +19913,331.8833333333333,1146,463 +19914,331.9,1135,462 +19915,331.9166666666667,1126,461 +19916,331.93333333333334,1118,461 +19917,331.95,1112,460 +19918,331.96666666666664,1107,460 +19919,331.98333333333335,1104,460 +19920,332.0,1104,460 +19921,332.01666666666665,1104,460 +19922,332.0333333333333,1105,460 +19923,332.05,1108,460 +19924,332.06666666666666,1114,461 +19925,332.0833333333333,1120,461 +19926,332.1,1128,462 +19927,332.1166666666667,1138,463 +19928,332.1333333333333,1149,464 +19929,332.15,1162,464 +19930,332.1666666666667,1176,466 +19931,332.18333333333334,1191,466 +19932,332.2,1208,467 +19933,332.21666666666664,1226,468 +19934,332.23333333333335,1245,469 +19935,332.25,1265,469 +19936,332.26666666666665,1285,470 +19937,332.2833333333333,1307,471 +19938,332.3,1329,472 +19939,332.31666666666666,1352,472 +19940,332.3333333333333,1376,472 +19941,332.35,1400,472 +19942,332.3666666666667,1424,472 +19943,332.3833333333333,1449,472 +19944,332.4,1473,472 +19945,332.4166666666667,1498,472 +19946,332.43333333333334,1522,472 +19947,332.45,1546,471 +19948,332.46666666666664,1570,471 +19949,332.48333333333335,1593,470 +19950,332.5,1616,469 +19951,332.51666666666665,1638,468 +19952,332.5333333333333,1659,467 +19953,332.55,1680,466 +19954,332.56666666666666,1699,465 +19955,332.5833333333333,1717,464 +19956,332.6,1735,462 +19957,332.6166666666667,1751,461 +19958,332.6333333333333,1766,460 +19959,332.65,1780,458 +19960,332.6666666666667,1792,457 +19961,332.68333333333334,1803,456 +19962,332.7,1812,455 +19963,332.71666666666664,1820,454 +19964,332.73333333333335,1827,454 +19965,332.75,1831,453 +19966,332.76666666666665,1835,453 +19967,332.7833333333333,1835,452 +19968,332.8,1835,452 +19969,332.81666666666666,1835,452 +19970,332.8333333333333,1832,453 +19971,332.85,1827,453 +19972,332.8666666666667,1821,453 +19973,332.8833333333333,1813,454 +19974,332.9,1805,455 +19975,332.9166666666667,1794,456 +19976,332.93333333333334,1782,457 +19977,332.95,1769,458 +19978,332.96666666666664,1754,459 +19979,332.98333333333335,1738,460 +19980,333.0,1721,462 +19981,333.01666666666665,1704,463 +19982,333.0333333333333,1685,464 +19983,333.05,1665,465 +19984,333.06666666666666,1644,466 +19985,333.0833333333333,1623,468 +19986,333.1,1600,468 +19987,333.1166666666667,1578,469 +19988,333.1333333333333,1554,470 +19989,333.15,1531,470 +19990,333.1666666666667,1507,471 +19991,333.18333333333334,1483,471 +19992,333.2,1459,471 +19993,333.21666666666664,1435,471 +19994,333.23333333333335,1411,471 +19995,333.25,1387,471 +19996,333.26666666666665,1364,471 +19997,333.2833333333333,1341,470 +19998,333.3,1319,470 +19999,333.31666666666666,1297,469 +20000,333.3333333333333,1277,468 +20001,333.35,1257,468 +20002,333.3666666666667,1238,467 +20003,333.3833333333333,1220,467 +20004,333.4,1202,466 +20005,333.4166666666667,1186,465 +20006,333.43333333333334,1172,464 +20007,333.45,1158,463 +20008,333.46666666666664,1147,462 +20009,333.48333333333335,1136,461 +20010,333.5,1127,461 +20011,333.51666666666665,1119,460 +20012,333.5333333333333,1113,460 +20013,333.55,1109,459 +20014,333.56666666666666,1106,459 +20015,333.5833333333333,1106,459 +20016,333.6,1106,459 +20017,333.6166666666667,1107,459 +20018,333.6333333333333,1111,460 +20019,333.65,1116,460 +20020,333.6666666666667,1123,461 +20021,333.68333333333334,1131,462 +20022,333.7,1141,462 +20023,333.71666666666664,1152,463 +20024,333.73333333333335,1165,464 +20025,333.75,1179,465 +20026,333.76666666666665,1194,466 +20027,333.7833333333333,1211,467 +20028,333.8,1229,467 +20029,333.81666666666666,1248,468 +20030,333.8333333333333,1267,469 +20031,333.85,1288,469 +20032,333.8666666666667,1310,470 +20033,333.8833333333333,1332,471 +20034,333.9,1354,471 +20035,333.9166666666667,1378,471 +20036,333.93333333333334,1402,472 +20037,333.95,1426,472 +20038,333.96666666666664,1451,472 +20039,333.98333333333335,1475,472 +20040,334.0,1500,472 +20041,334.01666666666665,1524,471 +20042,334.0333333333333,1548,471 +20043,334.05,1572,470 +20044,334.06666666666666,1595,470 +20045,334.0833333333333,1617,469 +20046,334.1,1639,468 +20047,334.1166666666667,1660,467 +20048,334.1333333333333,1681,466 +20049,334.15,1700,464 +20050,334.1666666666667,1718,463 +20051,334.18333333333334,1736,462 +20052,334.2,1751,460 +20053,334.21666666666664,1766,459 +20054,334.23333333333335,1780,458 +20055,334.25,1792,457 +20056,334.26666666666665,1802,456 +20057,334.2833333333333,1811,455 +20058,334.3,1819,454 +20059,334.31666666666666,1826,453 +20060,334.3333333333333,1830,452 +20061,334.35,1833,452 +20062,334.3666666666667,1833,452 +20063,334.3833333333333,1833,452 +20064,334.4,1833,452 +20065,334.4166666666667,1830,452 +20066,334.43333333333334,1825,453 +20067,334.45,1819,453 +20068,334.46666666666664,1811,454 +20069,334.48333333333335,1802,455 +20070,334.5,1791,456 +20071,334.51666666666665,1779,457 +20072,334.5333333333333,1766,458 +20073,334.55,1751,459 +20074,334.56666666666666,1735,460 +20075,334.5833333333333,1719,461 +20076,334.6,1701,463 +20077,334.6166666666667,1682,464 +20078,334.6333333333333,1662,465 +20079,334.65,1641,466 +20080,334.6666666666667,1620,467 +20081,334.68333333333334,1598,468 +20082,334.7,1575,469 +20083,334.71666666666664,1552,470 +20084,334.73333333333335,1528,470 +20085,334.75,1505,471 +20086,334.76666666666665,1481,471 +20087,334.7833333333333,1457,471 +20088,334.8,1433,471 +20089,334.81666666666666,1409,471 +20090,334.8333333333333,1386,471 +20091,334.85,1363,471 +20092,334.8666666666667,1340,471 +20093,334.8833333333333,1318,471 +20094,334.9,1297,470 +20095,334.9166666666667,1276,469 +20096,334.93333333333334,1257,468 +20097,334.95,1238,468 +20098,334.96666666666664,1220,467 +20099,334.98333333333335,1203,466 +20100,335.0,1187,466 +20101,335.01666666666665,1172,465 +20102,335.0333333333333,1159,464 +20103,335.05,1148,463 +20104,335.06666666666666,1137,463 +20105,335.0833333333333,1128,462 +20106,335.1,1121,461 +20107,335.1166666666667,1115,461 +20108,335.1333333333333,1110,461 +20109,335.15,1108,461 +20110,335.1666666666667,1108,461 +20111,335.18333333333334,1108,461 +20112,335.2,1109,461 +20113,335.21666666666664,1113,461 +20114,335.23333333333335,1118,462 +20115,335.25,1125,462 +20116,335.26666666666665,1134,463 +20117,335.2833333333333,1144,464 +20118,335.3,1155,465 +20119,335.31666666666666,1168,465 +20120,335.3333333333333,1182,466 +20121,335.35,1197,467 +20122,335.3666666666667,1215,468 +20123,335.3833333333333,1233,469 +20124,335.4,1251,469 +20125,335.4166666666667,1271,470 +20126,335.43333333333334,1292,471 +20127,335.45,1314,472 +20128,335.46666666666664,1335,472 +20129,335.48333333333335,1358,472 +20130,335.5,1382,472 +20131,335.51666666666665,1406,473 +20132,335.5333333333333,1430,473 +20133,335.55,1454,473 +20134,335.56666666666666,1479,472 +20135,335.5833333333333,1503,472 +20136,335.6,1527,472 +20137,335.6166666666667,1551,472 +20138,335.6333333333333,1574,471 +20139,335.65,1598,470 +20140,335.6666666666667,1620,469 +20141,335.68333333333334,1642,469 +20142,335.7,1663,468 +20143,335.71666666666664,1683,467 +20144,335.73333333333335,1702,465 +20145,335.75,1720,464 +20146,335.76666666666665,1737,462 +20147,335.7833333333333,1753,461 +20148,335.8,1768,460 +20149,335.81666666666666,1781,459 +20150,335.8333333333333,1793,458 +20151,335.85,1803,457 +20152,335.8666666666667,1812,456 +20153,335.8833333333333,1820,455 +20154,335.9,1826,454 +20155,335.9166666666667,1830,453 +20156,335.93333333333334,1833,453 +20157,335.95,1833,453 +20158,335.96666666666664,1833,453 +20159,335.98333333333335,1832,453 +20160,336.0,1829,453 +20161,336.01666666666665,1824,454 +20162,336.0333333333333,1818,454 +20163,336.05,1810,455 +20164,336.06666666666666,1801,456 +20165,336.0833333333333,1790,456 +20166,336.1,1778,458 +20167,336.1166666666667,1764,459 +20168,336.1333333333333,1750,460 +20169,336.15,1734,461 +20170,336.1666666666667,1717,462 +20171,336.18333333333334,1699,463 +20172,336.2,1680,465 +20173,336.21666666666664,1660,466 +20174,336.23333333333335,1639,467 +20175,336.25,1618,468 +20176,336.26666666666665,1596,469 +20177,336.2833333333333,1573,470 +20178,336.3,1550,470 +20179,336.31666666666666,1526,471 +20180,336.3333333333333,1502,471 +20181,336.35,1479,471 +20182,336.3666666666667,1455,471 +20183,336.3833333333333,1431,471 +20184,336.4,1407,471 +20185,336.4166666666667,1384,471 +20186,336.43333333333334,1360,471 +20187,336.45,1338,471 +20188,336.46666666666664,1316,471 +20189,336.48333333333335,1294,470 +20190,336.5,1274,469 +20191,336.51666666666665,1254,469 +20192,336.5333333333333,1236,468 +20193,336.55,1218,467 +20194,336.56666666666666,1201,466 +20195,336.5833333333333,1185,465 +20196,336.6,1171,465 +20197,336.6166666666667,1158,464 +20198,336.6333333333333,1146,463 +20199,336.65,1136,462 +20200,336.6666666666667,1127,462 +20201,336.68333333333334,1120,461 +20202,336.7,1114,461 +20203,336.71666666666664,1110,461 +20204,336.73333333333335,1108,461 +20205,336.75,1108,461 +20206,336.76666666666665,1108,461 +20207,336.7833333333333,1109,461 +20208,336.8,1113,461 +20209,336.81666666666666,1119,462 +20210,336.8333333333333,1126,462 +20211,336.85,1134,463 +20212,336.8666666666667,1145,464 +20213,336.8833333333333,1156,465 +20214,336.9,1169,466 +20215,336.9166666666667,1183,466 +20216,336.93333333333334,1199,467 +20217,336.95,1216,468 +20218,336.96666666666664,1234,469 +20219,336.98333333333335,1252,470 +20220,337.0,1273,470 +20221,337.01666666666665,1293,471 +20222,337.0333333333333,1315,472 +20223,337.05,1337,472 +20224,337.06666666666666,1360,472 +20225,337.0833333333333,1383,472 +20226,337.1,1407,472 +20227,337.1166666666667,1431,472 +20228,337.1333333333333,1456,472 +20229,337.15,1480,472 +20230,337.1666666666667,1504,472 +20231,337.18333333333334,1528,472 +20232,337.2,1552,471 +20233,337.21666666666664,1575,471 +20234,337.23333333333335,1598,470 +20235,337.25,1621,469 +20236,337.26666666666665,1642,469 +20237,337.2833333333333,1663,468 +20238,337.3,1683,467 +20239,337.31666666666666,1702,465 +20240,337.3333333333333,1720,464 +20241,337.35,1737,463 +20242,337.3666666666667,1753,461 +20243,337.3833333333333,1767,460 +20244,337.4,1780,459 +20245,337.4166666666667,1792,457 +20246,337.43333333333334,1802,456 +20247,337.45,1811,456 +20248,337.46666666666664,1819,455 +20249,337.48333333333335,1824,454 +20250,337.5,1829,453 +20251,337.51666666666665,1832,453 +20252,337.5333333333333,1832,453 +20253,337.55,1832,453 +20254,337.56666666666666,1830,453 +20255,337.5833333333333,1827,453 +20256,337.6,1822,454 +20257,337.6166666666667,1815,454 +20258,337.6333333333333,1808,455 +20259,337.65,1798,456 +20260,337.6666666666667,1787,457 +20261,337.68333333333334,1775,458 +20262,337.7,1762,459 +20263,337.71666666666664,1747,460 +20264,337.73333333333335,1731,461 +20265,337.75,1714,462 +20266,337.76666666666665,1696,464 +20267,337.7833333333333,1677,465 +20268,337.8,1657,466 +20269,337.81666666666666,1636,467 +20270,337.8333333333333,1615,468 +20271,337.85,1592,469 +20272,337.8666666666667,1570,470 +20273,337.8833333333333,1547,470 +20274,337.9,1523,471 +20275,337.9166666666667,1500,471 +20276,337.93333333333334,1476,471 +20277,337.95,1452,472 +20278,337.96666666666664,1428,472 +20279,337.98333333333335,1405,472 +20280,338.0,1381,472 +20281,338.01666666666665,1358,471 +20282,338.0333333333333,1336,471 +20283,338.05,1314,471 +20284,338.06666666666666,1293,470 +20285,338.0833333333333,1272,469 +20286,338.1,1253,469 +20287,338.1166666666667,1235,468 +20288,338.1333333333333,1217,467 +20289,338.15,1200,466 +20290,338.1666666666667,1185,465 +20291,338.18333333333334,1170,465 +20292,338.2,1158,464 +20293,338.21666666666664,1146,463 +20294,338.23333333333335,1136,462 +20295,338.25,1127,462 +20296,338.26666666666665,1120,461 +20297,338.2833333333333,1115,461 +20298,338.3,1110,461 +20299,338.31666666666666,1108,461 +20300,338.3333333333333,1108,461 +20301,338.35,1108,461 +20302,338.3666666666667,1110,461 +20303,338.3833333333333,1115,461 +20304,338.4,1120,462 +20305,338.4166666666667,1127,462 +20306,338.43333333333334,1136,463 +20307,338.45,1146,464 +20308,338.46666666666664,1158,464 +20309,338.48333333333335,1171,465 +20310,338.5,1185,466 +20311,338.51666666666665,1201,467 +20312,338.5333333333333,1218,468 +20313,338.55,1236,469 +20314,338.56666666666666,1255,469 +20315,338.5833333333333,1275,470 +20316,338.6,1296,471 +20317,338.6166666666667,1318,472 +20318,338.6333333333333,1339,472 +20319,338.65,1363,472 +20320,338.6666666666667,1386,472 +20321,338.68333333333334,1410,472 +20322,338.7,1434,472 +20323,338.71666666666664,1458,472 +20324,338.73333333333335,1482,472 +20325,338.75,1507,472 +20326,338.76666666666665,1531,472 +20327,338.7833333333333,1554,471 +20328,338.8,1577,471 +20329,338.81666666666666,1600,470 +20330,338.8333333333333,1623,469 +20331,338.85,1644,468 +20332,338.8666666666667,1665,467 +20333,338.8833333333333,1685,466 +20334,338.9,1704,465 +20335,338.9166666666667,1721,464 +20336,338.93333333333334,1738,462 +20337,338.95,1754,461 +20338,338.96666666666664,1768,460 +20339,338.98333333333335,1781,458 +20340,339.0,1792,457 +20341,339.01666666666665,1802,456 +20342,339.0333333333333,1811,455 +20343,339.05,1818,454 +20344,339.06666666666666,1824,454 +20345,339.0833333333333,1828,453 +20346,339.1,1831,453 +20347,339.1166666666667,1831,453 +20348,339.1333333333333,1831,453 +20349,339.15,1829,453 +20350,339.1666666666667,1825,453 +20351,339.18333333333334,1820,454 +20352,339.2,1814,454 +20353,339.21666666666664,1805,455 +20354,339.23333333333335,1796,456 +20355,339.25,1785,457 +20356,339.26666666666665,1773,458 +20357,339.2833333333333,1759,459 +20358,339.3,1744,460 +20359,339.31666666666666,1728,461 +20360,339.3333333333333,1711,462 +20361,339.35,1693,464 +20362,339.3666666666667,1674,465 +20363,339.3833333333333,1654,466 +20364,339.4,1633,467 +20365,339.4166666666667,1612,468 +20366,339.43333333333334,1590,469 +20367,339.45,1567,470 +20368,339.46666666666664,1544,470 +20369,339.48333333333335,1521,471 +20370,339.5,1497,471 +20371,339.51666666666665,1473,471 +20372,339.5333333333333,1449,471 +20373,339.55,1426,471 +20374,339.56666666666666,1402,471 +20375,339.5833333333333,1379,471 +20376,339.6,1356,471 +20377,339.6166666666667,1334,471 +20378,339.6333333333333,1312,470 +20379,339.65,1291,469 +20380,339.6666666666667,1271,469 +20381,339.68333333333334,1252,469 +20382,339.7,1233,468 +20383,339.71666666666664,1216,467 +20384,339.73333333333335,1199,466 +20385,339.75,1184,466 +20386,339.76666666666665,1170,465 +20387,339.7833333333333,1157,464 +20388,339.8,1146,463 +20389,339.81666666666666,1136,462 +20390,339.8333333333333,1127,462 +20391,339.85,1120,461 +20392,339.8666666666667,1115,461 +20393,339.8833333333333,1111,461 +20394,339.9,1109,461 +20395,339.9166666666667,1109,461 +20396,339.93333333333334,1109,461 +20397,339.95,1112,461 +20398,339.96666666666664,1116,461 +20399,339.98333333333335,1122,462 +20400,340.0,1129,462 +20401,340.01666666666665,1138,463 +20402,340.0333333333333,1148,464 +20403,340.05,1160,465 +20404,340.06666666666666,1173,466 +20405,340.0833333333333,1188,466 +20406,340.1,1203,467 +20407,340.1166666666667,1220,468 +20408,340.1333333333333,1239,469 +20409,340.15,1258,470 +20410,340.1666666666667,1277,470 +20411,340.18333333333334,1298,471 +20412,340.2,1320,472 +20413,340.21666666666664,1342,472 +20414,340.23333333333335,1365,472 +20415,340.25,1389,472 +20416,340.26666666666665,1413,472 +20417,340.2833333333333,1437,472 +20418,340.3,1461,472 +20419,340.31666666666666,1485,472 +20420,340.3333333333333,1509,472 +20421,340.35,1533,472 +20422,340.3666666666667,1556,471 +20423,340.3833333333333,1580,471 +20424,340.4,1602,470 +20425,340.4166666666667,1624,469 +20426,340.43333333333334,1646,468 +20427,340.45,1666,467 +20428,340.46666666666664,1686,466 +20429,340.48333333333335,1705,465 +20430,340.5,1722,464 +20431,340.51666666666665,1739,462 +20432,340.5333333333333,1754,461 +20433,340.55,1768,460 +20434,340.56666666666666,1781,459 +20435,340.5833333333333,1792,457 +20436,340.6,1802,456 +20437,340.6166666666667,1811,455 +20438,340.6333333333333,1818,455 +20439,340.65,1823,454 +20440,340.6666666666667,1827,454 +20441,340.68333333333334,1830,453 +20442,340.7,1830,453 +20443,340.71666666666664,1830,453 +20444,340.73333333333335,1827,453 +20445,340.75,1824,454 +20446,340.76666666666665,1819,454 +20447,340.7833333333333,1812,455 +20448,340.8,1803,455 +20449,340.81666666666666,1794,456 +20450,340.8333333333333,1783,457 +20451,340.85,1770,458 +20452,340.8666666666667,1757,459 +20453,340.8833333333333,1742,460 +20454,340.9,1725,461 +20455,340.9166666666667,1708,463 +20456,340.93333333333334,1690,464 +20457,340.95,1671,465 +20458,340.96666666666664,1651,466 +20459,340.98333333333335,1630,467 +20460,341.0,1609,468 +20461,341.01666666666665,1587,469 +20462,341.0333333333333,1564,470 +20463,341.05,1541,470 +20464,341.06666666666666,1518,471 +20465,341.0833333333333,1494,471 +20466,341.1,1471,471 +20467,341.1166666666667,1447,471 +20468,341.1333333333333,1424,471 +20469,341.15,1400,471 +20470,341.1666666666667,1377,471 +20471,341.18333333333334,1354,471 +20472,341.2,1332,471 +20473,341.21666666666664,1310,470 +20474,341.23333333333335,1289,470 +20475,341.25,1270,469 +20476,341.26666666666665,1250,468 +20477,341.2833333333333,1232,468 +20478,341.3,1215,467 +20479,341.31666666666666,1199,466 +20480,341.3333333333333,1183,466 +20481,341.35,1170,465 +20482,341.3666666666667,1157,464 +20483,341.3833333333333,1146,463 +20484,341.4,1136,462 +20485,341.4166666666667,1128,462 +20486,341.43333333333334,1121,461 +20487,341.45,1116,461 +20488,341.46666666666664,1112,461 +20489,341.48333333333335,1111,461 +20490,341.5,1111,461 +20491,341.51666666666665,1111,461 +20492,341.5333333333333,1114,461 +20493,341.55,1118,461 +20494,341.56666666666666,1124,462 +20495,341.5833333333333,1131,463 +20496,341.6,1140,463 +20497,341.6166666666667,1151,464 +20498,341.6333333333333,1163,465 +20499,341.65,1176,466 +20500,341.6666666666667,1190,467 +20501,341.68333333333334,1206,468 +20502,341.7,1223,468 +20503,341.71666666666664,1242,469 +20504,341.73333333333335,1261,470 +20505,341.75,1280,470 +20506,341.76666666666665,1301,471 +20507,341.7833333333333,1323,472 +20508,341.8,1345,472 +20509,341.81666666666666,1368,472 +20510,341.8333333333333,1392,472 +20511,341.85,1416,472 +20512,341.8666666666667,1439,472 +20513,341.8833333333333,1464,472 +20514,341.9,1488,472 +20515,341.9166666666667,1512,472 +20516,341.93333333333334,1535,472 +20517,341.95,1559,471 +20518,341.96666666666664,1582,471 +20519,341.98333333333335,1604,470 +20520,342.0,1626,469 +20521,342.01666666666665,1648,468 +20522,342.0333333333333,1668,467 +20523,342.05,1687,466 +20524,342.06666666666666,1706,465 +20525,342.0833333333333,1723,463 +20526,342.1,1740,462 +20527,342.1166666666667,1755,461 +20528,342.1333333333333,1769,460 +20529,342.15,1781,459 +20530,342.1666666666667,1793,457 +20531,342.18333333333334,1802,456 +20532,342.2,1811,456 +20533,342.21666666666664,1818,455 +20534,342.23333333333335,1823,454 +20535,342.25,1827,454 +20536,342.26666666666665,1829,453 +20537,342.2833333333333,1829,453 +20538,342.3,1829,453 +20539,342.31666666666666,1827,454 +20540,342.3333333333333,1823,454 +20541,342.35,1817,454 +20542,342.3666666666667,1810,455 +20543,342.3833333333333,1802,456 +20544,342.4,1792,456 +20545,342.4166666666667,1781,457 +20546,342.43333333333334,1769,458 +20547,342.45,1755,460 +20548,342.46666666666664,1740,461 +20549,342.48333333333335,1724,462 +20550,342.5,1707,463 +20551,342.51666666666665,1688,464 +20552,342.5333333333333,1669,466 +20553,342.55,1649,467 +20554,342.56666666666666,1629,468 +20555,342.5833333333333,1607,469 +20556,342.6,1585,470 +20557,342.6166666666667,1563,470 +20558,342.6333333333333,1540,471 +20559,342.65,1517,471 +20560,342.6666666666667,1493,471 +20561,342.68333333333334,1470,472 +20562,342.7,1446,472 +20563,342.71666666666664,1422,472 +20564,342.73333333333335,1399,472 +20565,342.75,1376,472 +20566,342.76666666666665,1353,471 +20567,342.7833333333333,1331,471 +20568,342.8,1310,470 +20569,342.81666666666666,1289,470 +20570,342.8333333333333,1269,469 +20571,342.85,1250,469 +20572,342.8666666666667,1232,468 +20573,342.8833333333333,1215,467 +20574,342.9,1199,466 +20575,342.9166666666667,1183,466 +20576,342.93333333333334,1170,465 +20577,342.95,1158,464 +20578,342.96666666666664,1147,463 +20579,342.98333333333335,1137,463 +20580,343.0,1129,462 +20581,343.01666666666665,1122,462 +20582,343.0333333333333,1117,461 +20583,343.05,1114,461 +20584,343.06666666666666,1113,461 +20585,343.0833333333333,1113,461 +20586,343.1,1113,461 +20587,343.1166666666667,1116,462 +20588,343.1333333333333,1121,462 +20589,343.15,1127,463 +20590,343.1666666666667,1134,463 +20591,343.18333333333334,1143,464 +20592,343.2,1154,465 +20593,343.21666666666664,1166,466 +20594,343.23333333333335,1179,466 +20595,343.25,1194,467 +20596,343.26666666666665,1210,468 +20597,343.2833333333333,1227,469 +20598,343.3,1246,469 +20599,343.31666666666666,1264,470 +20600,343.3333333333333,1285,471 +20601,343.35,1305,471 +20602,343.3666666666667,1326,472 +20603,343.3833333333333,1348,472 +20604,343.4,1372,473 +20605,343.4166666666667,1395,473 +20606,343.43333333333334,1418,473 +20607,343.45,1442,473 +20608,343.46666666666664,1467,473 +20609,343.48333333333335,1490,472 +20610,343.5,1514,472 +20611,343.51666666666665,1538,472 +20612,343.5333333333333,1561,471 +20613,343.55,1584,470 +20614,343.56666666666666,1606,470 +20615,343.5833333333333,1628,469 +20616,343.6,1649,468 +20617,343.6166666666667,1669,467 +20618,343.6333333333333,1688,466 +20619,343.65,1707,465 +20620,343.6666666666667,1724,463 +20621,343.68333333333334,1740,462 +20622,343.7,1755,461 +20623,343.71666666666664,1769,459 +20624,343.73333333333335,1781,458 +20625,343.75,1792,457 +20626,343.76666666666665,1801,456 +20627,343.7833333333333,1810,455 +20628,343.8,1816,454 +20629,343.81666666666666,1822,454 +20630,343.8333333333333,1825,453 +20631,343.85,1827,453 +20632,343.8666666666667,1827,453 +20633,343.8833333333333,1827,453 +20634,343.9,1824,453 +20635,343.9166666666667,1820,453 +20636,343.93333333333334,1815,454 +20637,343.95,1808,454 +20638,343.96666666666664,1799,455 +20639,343.98333333333335,1789,456 +20640,344.0,1778,457 +20641,344.01666666666665,1766,458 +20642,344.0333333333333,1752,459 +20643,344.05,1737,460 +20644,344.06666666666666,1721,461 +20645,344.0833333333333,1704,462 +20646,344.1,1685,463 +20647,344.1166666666667,1666,465 +20648,344.1333333333333,1646,466 +20649,344.15,1626,467 +20650,344.1666666666667,1604,468 +20651,344.18333333333334,1582,469 +20652,344.2,1560,469 +20653,344.21666666666664,1537,470 +20654,344.23333333333335,1514,470 +20655,344.25,1490,470 +20656,344.26666666666665,1467,471 +20657,344.2833333333333,1443,471 +20658,344.3,1420,471 +20659,344.31666666666666,1397,471 +20660,344.3333333333333,1374,471 +20661,344.35,1352,471 +20662,344.3666666666667,1330,470 +20663,344.3833333333333,1308,470 +20664,344.4,1287,469 +20665,344.4166666666667,1268,468 +20666,344.43333333333334,1249,468 +20667,344.45,1231,467 +20668,344.46666666666664,1214,466 +20669,344.48333333333335,1198,466 +20670,344.5,1183,465 +20671,344.51666666666665,1169,464 +20672,344.5333333333333,1157,463 +20673,344.55,1146,462 +20674,344.56666666666666,1137,462 +20675,344.5833333333333,1129,461 +20676,344.6,1123,461 +20677,344.6166666666667,1118,460 +20678,344.6333333333333,1114,460 +20679,344.65,1114,460 +20680,344.6666666666667,1114,460 +20681,344.68333333333334,1114,460 +20682,344.7,1117,461 +20683,344.71666666666664,1121,461 +20684,344.73333333333335,1127,461 +20685,344.75,1135,462 +20686,344.76666666666665,1144,463 +20687,344.7833333333333,1155,464 +20688,344.8,1167,464 +20689,344.81666666666666,1180,465 +20690,344.8333333333333,1195,466 +20691,344.85,1211,467 +20692,344.8666666666667,1228,468 +20693,344.8833333333333,1246,468 +20694,344.9,1265,469 +20695,344.9166666666667,1285,470 +20696,344.93333333333334,1306,470 +20697,344.95,1327,471 +20698,344.96666666666664,1349,471 +20699,344.98333333333335,1372,472 +20700,345.0,1396,472 +20701,345.01666666666665,1419,472 +20702,345.0333333333333,1443,472 +20703,345.05,1467,472 +20704,345.06666666666666,1491,472 +20705,345.0833333333333,1515,472 +20706,345.1,1539,471 +20707,345.1166666666667,1562,471 +20708,345.1333333333333,1584,470 +20709,345.15,1607,469 +20710,345.1666666666667,1628,469 +20711,345.18333333333334,1649,468 +20712,345.2,1670,467 +20713,345.21666666666664,1689,466 +20714,345.23333333333335,1707,464 +20715,345.25,1724,463 +20716,345.26666666666665,1740,462 +20717,345.2833333333333,1755,460 +20718,345.3,1769,459 +20719,345.31666666666666,1781,458 +20720,345.3333333333333,1792,457 +20721,345.35,1801,456 +20722,345.3666666666667,1809,455 +20723,345.3833333333333,1816,455 +20724,345.4,1821,454 +20725,345.4166666666667,1824,454 +20726,345.43333333333334,1826,453 +20727,345.45,1826,453 +20728,345.46666666666664,1826,453 +20729,345.48333333333335,1823,453 +20730,345.5,1819,454 +20731,345.51666666666665,1814,454 +20732,345.5333333333333,1807,455 +20733,345.55,1798,456 +20734,345.56666666666666,1788,456 +20735,345.5833333333333,1777,457 +20736,345.6,1764,458 +20737,345.6166666666667,1750,460 +20738,345.6333333333333,1735,461 +20739,345.65,1719,462 +20740,345.6666666666667,1702,463 +20741,345.68333333333334,1684,465 +20742,345.7,1664,466 +20743,345.71666666666664,1644,467 +20744,345.73333333333335,1623,468 +20745,345.75,1602,468 +20746,345.76666666666665,1580,469 +20747,345.7833333333333,1558,470 +20748,345.8,1535,470 +20749,345.81666666666666,1512,471 +20750,345.8333333333333,1488,471 +20751,345.85,1465,471 +20752,345.8666666666667,1441,471 +20753,345.8833333333333,1418,471 +20754,345.9,1395,471 +20755,345.9166666666667,1372,471 +20756,345.93333333333334,1348,471 +20757,345.95,1328,471 +20758,345.96666666666664,1306,470 +20759,345.98333333333335,1286,469 +20760,346.0,1267,469 +20761,346.01666666666665,1248,468 +20762,346.0333333333333,1230,468 +20763,346.05,1213,467 +20764,346.06666666666666,1197,466 +20765,346.0833333333333,1182,465 +20766,346.1,1169,464 +20767,346.1166666666667,1157,464 +20768,346.1333333333333,1146,463 +20769,346.15,1137,462 +20770,346.1666666666667,1129,462 +20771,346.18333333333334,1123,461 +20772,346.2,1118,461 +20773,346.21666666666664,1114,461 +20774,346.23333333333335,1114,461 +20775,346.25,1114,461 +20776,346.26666666666665,1114,461 +20777,346.2833333333333,1118,461 +20778,346.3,1122,462 +20779,346.31666666666666,1129,462 +20780,346.3333333333333,1136,463 +20781,346.35,1146,464 +20782,346.3666666666667,1157,465 +20783,346.3833333333333,1169,465 +20784,346.4,1182,466 +20785,346.4166666666667,1197,467 +20786,346.43333333333334,1214,468 +20787,346.45,1231,469 +20788,346.46666666666664,1249,469 +20789,346.48333333333335,1268,470 +20790,346.5,1287,470 +20791,346.51666666666665,1309,471 +20792,346.5333333333333,1330,472 +20793,346.55,1352,472 +20794,346.56666666666666,1375,472 +20795,346.5833333333333,1399,473 +20796,346.6,1422,473 +20797,346.6166666666667,1446,473 +20798,346.6333333333333,1470,473 +20799,346.65,1494,472 +20800,346.6666666666667,1517,472 +20801,346.68333333333334,1541,472 +20802,346.7,1564,471 +20803,346.71666666666664,1587,471 +20804,346.73333333333335,1609,470 +20805,346.75,1630,469 +20806,346.76666666666665,1651,469 +20807,346.7833333333333,1671,467 +20808,346.8,1690,466 +20809,346.81666666666666,1708,465 +20810,346.8333333333333,1725,464 +20811,346.85,1741,462 +20812,346.8666666666667,1755,461 +20813,346.8833333333333,1769,460 +20814,346.9,1781,459 +20815,346.9166666666667,1791,458 +20816,346.93333333333334,1800,457 +20817,346.95,1808,456 +20818,346.96666666666664,1815,456 +20819,346.98333333333335,1819,455 +20820,347.0,1823,455 +20821,347.01666666666665,1823,455 +20822,347.0333333333333,1823,455 +20823,347.05,1823,455 +20824,347.06666666666666,1821,455 +20825,347.0833333333333,1816,455 +20826,347.1,1811,455 +20827,347.1166666666667,1803,456 +20828,347.1333333333333,1795,457 +20829,347.15,1785,457 +20830,347.1666666666667,1774,459 +20831,347.18333333333334,1761,460 +20832,347.2,1747,461 +20833,347.21666666666664,1732,462 +20834,347.23333333333335,1715,463 +20835,347.25,1698,464 +20836,347.26666666666665,1680,465 +20837,347.2833333333333,1661,466 +20838,347.3,1640,467 +20839,347.31666666666666,1620,468 +20840,347.3333333333333,1598,469 +20841,347.35,1576,470 +20842,347.3666666666667,1553,470 +20843,347.3833333333333,1531,471 +20844,347.4,1508,471 +20845,347.4166666666667,1485,472 +20846,347.43333333333334,1461,472 +20847,347.45,1438,472 +20848,347.46666666666664,1415,472 +20849,347.48333333333335,1392,472 +20850,347.5,1369,472 +20851,347.51666666666665,1346,471 +20852,347.5333333333333,1325,471 +20853,347.55,1304,470 +20854,347.56666666666666,1283,469 +20855,347.5833333333333,1264,469 +20856,347.6,1245,468 +20857,347.6166666666667,1227,468 +20858,347.6333333333333,1211,467 +20859,347.65,1195,467 +20860,347.6666666666667,1181,466 +20861,347.68333333333334,1167,465 +20862,347.7,1155,464 +20863,347.71666666666664,1145,464 +20864,347.73333333333335,1136,463 +20865,347.75,1128,462 +20866,347.76666666666665,1122,462 +20867,347.7833333333333,1118,462 +20868,347.8,1115,462 +20869,347.81666666666666,1115,462 +20870,347.8333333333333,1115,462 +20871,347.85,1116,462 +20872,347.8666666666667,1119,462 +20873,347.8833333333333,1124,462 +20874,347.9,1130,463 +20875,347.9166666666667,1138,464 +20876,347.93333333333334,1148,464 +20877,347.95,1159,465 +20878,347.96666666666664,1171,466 +20879,347.98333333333335,1185,467 +20880,348.0,1200,468 +20881,348.01666666666665,1216,468 +20882,348.0333333333333,1233,469 +20883,348.05,1252,470 +20884,348.06666666666666,1271,470 +20885,348.0833333333333,1291,471 +20886,348.1,1312,471 +20887,348.1166666666667,1333,472 +20888,348.1333333333333,1356,472 +20889,348.15,1379,473 +20890,348.1666666666667,1402,473 +20891,348.18333333333334,1426,473 +20892,348.2,1450,473 +20893,348.21666666666664,1473,473 +20894,348.23333333333335,1497,472 +20895,348.25,1521,472 +20896,348.26666666666665,1544,472 +20897,348.2833333333333,1567,471 +20898,348.3,1589,471 +20899,348.31666666666666,1611,470 +20900,348.3333333333333,1633,469 +20901,348.35,1654,468 +20902,348.3666666666667,1673,467 +20903,348.3833333333333,1692,466 +20904,348.4,1710,465 +20905,348.4166666666667,1727,463 +20906,348.43333333333334,1743,462 +20907,348.45,1757,461 +20908,348.46666666666664,1770,460 +20909,348.48333333333335,1782,458 +20910,348.5,1792,458 +20911,348.51666666666665,1801,457 +20912,348.5333333333333,1809,456 +20913,348.55,1815,455 +20914,348.56666666666666,1820,455 +20915,348.5833333333333,1823,454 +20916,348.6,1823,454 +20917,348.6166666666667,1823,454 +20918,348.6333333333333,1823,454 +20919,348.65,1820,454 +20920,348.6666666666667,1816,454 +20921,348.68333333333334,1810,455 +20922,348.7,1802,456 +20923,348.71666666666664,1794,456 +20924,348.73333333333335,1784,457 +20925,348.75,1772,458 +20926,348.76666666666665,1759,459 +20927,348.7833333333333,1745,460 +20928,348.8,1730,461 +20929,348.81666666666666,1713,463 +20930,348.8333333333333,1696,464 +20931,348.85,1678,465 +20932,348.8666666666667,1658,466 +20933,348.8833333333333,1638,467 +20934,348.9,1618,468 +20935,348.9166666666667,1596,469 +20936,348.93333333333334,1574,470 +20937,348.95,1552,470 +20938,348.96666666666664,1529,471 +20939,348.98333333333335,1506,471 +20940,349.0,1482,471 +20941,349.01666666666665,1459,471 +20942,349.0333333333333,1436,472 +20943,349.05,1413,472 +20944,349.06666666666666,1390,472 +20945,349.0833333333333,1368,472 +20946,349.1,1345,471 +20947,349.1166666666667,1324,471 +20948,349.1333333333333,1303,470 +20949,349.15,1282,469 +20950,349.1666666666667,1263,469 +20951,349.18333333333334,1245,469 +20952,349.2,1227,468 +20953,349.21666666666664,1211,467 +20954,349.23333333333335,1195,467 +20955,349.25,1181,466 +20956,349.26666666666665,1168,465 +20957,349.2833333333333,1156,464 +20958,349.3,1146,464 +20959,349.31666666666666,1137,463 +20960,349.3333333333333,1130,463 +20961,349.35,1124,462 +20962,349.3666666666667,1119,462 +20963,349.3833333333333,1117,462 +20964,349.4,1117,462 +20965,349.4166666666667,1117,462 +20966,349.43333333333334,1118,462 +20967,349.45,1121,462 +20968,349.46666666666664,1126,463 +20969,349.48333333333335,1133,463 +20970,349.5,1141,464 +20971,349.51666666666665,1151,464 +20972,349.5333333333333,1162,465 +20973,349.55,1174,466 +20974,349.56666666666666,1188,467 +20975,349.5833333333333,1203,468 +20976,349.6,1219,468 +20977,349.6166666666667,1237,469 +20978,349.6333333333333,1255,470 +20979,349.65,1274,470 +20980,349.6666666666667,1294,471 +20981,349.68333333333334,1316,472 +20982,349.7,1337,472 +20983,349.71666666666664,1359,473 +20984,349.73333333333335,1383,473 +20985,349.75,1406,473 +20986,349.76666666666665,1429,473 +20987,349.7833333333333,1453,473 +20988,349.8,1477,473 +20989,349.81666666666666,1500,472 +20990,349.8333333333333,1524,472 +20991,349.85,1547,472 +20992,349.8666666666667,1570,471 +20993,349.8833333333333,1592,470 +20994,349.9,1614,469 +20995,349.9166666666667,1635,469 +20996,349.93333333333334,1655,468 +20997,349.95,1675,467 +20998,349.96666666666664,1694,466 +20999,349.98333333333335,1711,464 +21000,350.0,1728,463 +21001,350.01666666666665,1743,462 +21002,350.0333333333333,1758,461 +21003,350.05,1771,460 +21004,350.06666666666666,1782,458 +21005,350.0833333333333,1793,457 +21006,350.1,1802,456 +21007,350.1166666666667,1809,455 +21008,350.1333333333333,1815,455 +21009,350.15,1820,454 +21010,350.1666666666667,1822,454 +21011,350.18333333333334,1822,454 +21012,350.2,1822,454 +21013,350.21666666666664,1822,454 +21014,350.23333333333335,1819,454 +21015,350.25,1814,454 +21016,350.26666666666665,1808,455 +21017,350.2833333333333,1801,456 +21018,350.3,1792,456 +21019,350.31666666666666,1781,457 +21020,350.3333333333333,1770,458 +21021,350.35,1757,459 +21022,350.3666666666667,1743,460 +21023,350.3833333333333,1727,461 +21024,350.4,1711,463 +21025,350.4166666666667,1693,464 +21026,350.43333333333334,1675,465 +21027,350.45,1656,466 +21028,350.46666666666664,1636,467 +21029,350.48333333333335,1615,469 +21030,350.5,1594,469 +21031,350.51666666666665,1572,470 +21032,350.5333333333333,1550,470 +21033,350.55,1527,471 +21034,350.56666666666666,1504,471 +21035,350.5833333333333,1481,472 +21036,350.6,1457,472 +21037,350.6166666666667,1434,472 +21038,350.6333333333333,1411,472 +21039,350.65,1388,472 +21040,350.6666666666667,1366,472 +21041,350.68333333333334,1344,472 +21042,350.7,1323,471 +21043,350.71666666666664,1302,471 +21044,350.73333333333335,1282,470 +21045,350.75,1263,469 +21046,350.76666666666665,1244,469 +21047,350.7833333333333,1227,468 +21048,350.8,1210,468 +21049,350.81666666666666,1195,467 +21050,350.8333333333333,1181,466 +21051,350.85,1168,465 +21052,350.8666666666667,1156,465 +21053,350.8833333333333,1146,464 +21054,350.9,1138,464 +21055,350.9166666666667,1130,463 +21056,350.93333333333334,1125,462 +21057,350.95,1120,462 +21058,350.96666666666664,1118,462 +21059,350.98333333333335,1118,462 +21060,351.0,1118,462 +21061,351.01666666666665,1119,462 +21062,351.0333333333333,1123,463 +21063,351.05,1128,463 +21064,351.06666666666666,1135,464 +21065,351.0833333333333,1143,464 +21066,351.1,1153,465 +21067,351.1166666666667,1164,466 +21068,351.1333333333333,1176,467 +21069,351.15,1190,467 +21070,351.1666666666667,1205,468 +21071,351.18333333333334,1221,469 +21072,351.2,1239,469 +21073,351.21666666666664,1257,470 +21074,351.23333333333335,1276,471 +21075,351.25,1297,471 +21076,351.26666666666665,1318,472 +21077,351.2833333333333,1339,472 +21078,351.3,1361,472 +21079,351.31666666666666,1384,473 +21080,351.3333333333333,1407,473 +21081,351.35,1430,473 +21082,351.3666666666667,1454,473 +21083,351.3833333333333,1477,473 +21084,351.4,1501,473 +21085,351.4166666666667,1524,472 +21086,351.43333333333334,1548,472 +21087,351.45,1570,471 +21088,351.46666666666664,1592,471 +21089,351.48333333333335,1614,470 +21090,351.5,1635,469 +21091,351.51666666666665,1655,468 +21092,351.5333333333333,1675,467 +21093,351.55,1693,466 +21094,351.56666666666666,1711,465 +21095,351.5833333333333,1727,463 +21096,351.6,1742,462 +21097,351.6166666666667,1757,461 +21098,351.6333333333333,1769,460 +21099,351.65,1781,459 +21100,351.6666666666667,1791,458 +21101,351.68333333333334,1799,457 +21102,351.7,1807,456 +21103,351.71666666666664,1813,455 +21104,351.73333333333335,1817,455 +21105,351.75,1820,454 +21106,351.76666666666665,1820,454 +21107,351.7833333333333,1820,454 +21108,351.8,1819,454 +21109,351.81666666666666,1816,455 +21110,351.8333333333333,1811,455 +21111,351.85,1805,455 +21112,351.8666666666667,1798,456 +21113,351.8833333333333,1789,457 +21114,351.9,1778,458 +21115,351.9166666666667,1767,459 +21116,351.93333333333334,1754,460 +21117,351.95,1740,461 +21118,351.96666666666664,1724,462 +21119,351.98333333333335,1708,463 +21120,352.0,1691,464 +21121,352.01666666666665,1672,465 +21122,352.0333333333333,1653,467 +21123,352.05,1633,468 +21124,352.06666666666666,1612,468 +21125,352.0833333333333,1591,469 +21126,352.1,1569,470 +21127,352.1166666666667,1547,471 +21128,352.1333333333333,1524,471 +21129,352.15,1501,471 +21130,352.1666666666667,1478,472 +21131,352.18333333333334,1455,472 +21132,352.2,1432,472 +21133,352.21666666666664,1409,472 +21134,352.23333333333335,1386,472 +21135,352.25,1364,472 +21136,352.26666666666665,1342,472 +21137,352.2833333333333,1321,471 +21138,352.3,1300,471 +21139,352.31666666666666,1280,470 +21140,352.3333333333333,1261,469 +21141,352.35,1243,469 +21142,352.3666666666667,1226,468 +21143,352.3833333333333,1209,467 +21144,352.4,1194,467 +21145,352.4166666666667,1180,466 +21146,352.43333333333334,1168,465 +21147,352.45,1156,464 +21148,352.46666666666664,1146,464 +21149,352.48333333333335,1138,463 +21150,352.5,1131,462 +21151,352.51666666666665,1125,462 +21152,352.5333333333333,1121,462 +21153,352.55,1119,462 +21154,352.56666666666666,1119,462 +21155,352.5833333333333,1119,462 +21156,352.6,1120,462 +21157,352.6166666666667,1124,462 +21158,352.6333333333333,1130,463 +21159,352.65,1136,463 +21160,352.6666666666667,1145,464 +21161,352.68333333333334,1155,465 +21162,352.7,1166,466 +21163,352.71666666666664,1178,466 +21164,352.73333333333335,1192,467 +21165,352.75,1207,468 +21166,352.76666666666665,1224,469 +21167,352.7833333333333,1241,469 +21168,352.8,1260,470 +21169,352.81666666666666,1278,470 +21170,352.8333333333333,1299,471 +21171,352.85,1320,472 +21172,352.8666666666667,1341,472 +21173,352.8833333333333,1363,472 +21174,352.9,1386,472 +21175,352.9166666666667,1409,473 +21176,352.93333333333334,1432,473 +21177,352.95,1456,473 +21178,352.96666666666664,1480,472 +21179,352.98333333333335,1503,472 +21180,353.0,1526,472 +21181,353.01666666666665,1549,472 +21182,353.0333333333333,1572,471 +21183,353.05,1594,470 +21184,353.06666666666666,1616,470 +21185,353.0833333333333,1637,469 +21186,353.1,1657,468 +21187,353.1166666666667,1677,467 +21188,353.1333333333333,1695,466 +21189,353.15,1712,464 +21190,353.1666666666667,1729,463 +21191,353.18333333333334,1744,462 +21192,353.2,1758,461 +21193,353.21666666666664,1771,460 +21194,353.23333333333335,1782,459 +21195,353.25,1792,458 +21196,353.26666666666665,1800,457 +21197,353.2833333333333,1808,456 +21198,353.3,1814,455 +21199,353.31666666666666,1818,455 +21200,353.3333333333333,1820,454 +21201,353.35,1820,454 +21202,353.3666666666667,1820,454 +21203,353.3833333333333,1819,454 +21204,353.4,1816,454 +21205,353.4166666666667,1811,454 +21206,353.43333333333334,1805,455 +21207,353.45,1797,456 +21208,353.46666666666664,1788,456 +21209,353.48333333333335,1777,457 +21210,353.5,1766,458 +21211,353.51666666666665,1752,459 +21212,353.5333333333333,1738,460 +21213,353.55,1723,462 +21214,353.56666666666666,1707,463 +21215,353.5833333333333,1689,464 +21216,353.6,1671,465 +21217,353.6166666666667,1651,466 +21218,353.6333333333333,1631,467 +21219,353.65,1611,468 +21220,353.6666666666667,1589,469 +21221,353.68333333333334,1567,469 +21222,353.7,1545,470 +21223,353.71666666666664,1522,470 +21224,353.73333333333335,1499,471 +21225,353.75,1477,471 +21226,353.76666666666665,1453,471 +21227,353.7833333333333,1430,471 +21228,353.8,1408,471 +21229,353.81666666666666,1385,471 +21230,353.8333333333333,1362,471 +21231,353.85,1340,471 +21232,353.8666666666667,1320,470 +21233,353.8833333333333,1299,469 +21234,353.9,1279,468 +21235,353.9166666666667,1260,468 +21236,353.93333333333334,1242,467 +21237,353.95,1225,467 +21238,353.96666666666664,1209,466 +21239,353.98333333333335,1194,466 +21240,354.0,1180,465 +21241,354.01666666666665,1167,464 +21242,354.0333333333333,1156,463 +21243,354.05,1146,463 +21244,354.06666666666666,1138,462 +21245,354.0833333333333,1131,462 +21246,354.1,1125,461 +21247,354.1166666666667,1121,461 +21248,354.1333333333333,1119,461 +21249,354.15,1119,461 +21250,354.1666666666667,1119,461 +21251,354.18333333333334,1121,461 +21252,354.2,1125,461 +21253,354.21666666666664,1130,462 +21254,354.23333333333335,1137,463 +21255,354.25,1146,463 +21256,354.26666666666665,1156,464 +21257,354.2833333333333,1167,465 +21258,354.3,1180,466 +21259,354.31666666666666,1194,467 +21260,354.3333333333333,1209,467 +21261,354.35,1226,468 +21262,354.3666666666667,1243,469 +21263,354.3833333333333,1262,469 +21264,354.4,1281,470 +21265,354.4166666666667,1301,470 +21266,354.43333333333334,1322,471 +21267,354.45,1343,472 +21268,354.46666666666664,1366,472 +21269,354.48333333333335,1389,472 +21270,354.5,1412,472 +21271,354.51666666666665,1435,472 +21272,354.5333333333333,1459,472 +21273,354.55,1482,472 +21274,354.56666666666666,1505,472 +21275,354.5833333333333,1529,472 +21276,354.6,1551,471 +21277,354.6166666666667,1574,471 +21278,354.6333333333333,1596,470 +21279,354.65,1617,470 +21280,354.6666666666667,1638,469 +21281,354.68333333333334,1658,468 +21282,354.7,1677,467 +21283,354.71666666666664,1696,466 +21284,354.73333333333335,1713,464 +21285,354.75,1729,463 +21286,354.76666666666665,1744,462 +21287,354.7833333333333,1758,461 +21288,354.8,1770,460 +21289,354.81666666666666,1781,458 +21290,354.8333333333333,1791,457 +21291,354.85,1799,456 +21292,354.8666666666667,1806,456 +21293,354.8833333333333,1812,455 +21294,354.9,1816,455 +21295,354.9166666666667,1818,454 +21296,354.93333333333334,1818,454 +21297,354.95,1818,454 +21298,354.96666666666664,1817,454 +21299,354.98333333333335,1813,454 +21300,355.0,1808,455 +21301,355.01666666666665,1802,455 +21302,355.0333333333333,1794,456 +21303,355.05,1785,457 +21304,355.06666666666666,1774,458 +21305,355.0833333333333,1763,459 +21306,355.1,1749,460 +21307,355.1166666666667,1735,461 +21308,355.1333333333333,1719,462 +21309,355.15,1703,463 +21310,355.1666666666667,1685,464 +21311,355.18333333333334,1667,466 +21312,355.2,1648,467 +21313,355.21666666666664,1627,468 +21314,355.23333333333335,1606,469 +21315,355.25,1585,469 +21316,355.26666666666665,1563,470 +21317,355.2833333333333,1541,471 +21318,355.3,1519,471 +21319,355.31666666666666,1496,472 +21320,355.3333333333333,1472,472 +21321,355.35,1449,472 +21322,355.3666666666667,1426,472 +21323,355.3833333333333,1403,472 +21324,355.4,1381,472 +21325,355.4166666666667,1359,472 +21326,355.43333333333334,1337,472 +21327,355.45,1316,471 +21328,355.46666666666664,1296,470 +21329,355.48333333333335,1276,470 +21330,355.5,1257,469 +21331,355.51666666666665,1239,469 +21332,355.5333333333333,1222,468 +21333,355.55,1206,467 +21334,355.56666666666666,1191,467 +21335,355.5833333333333,1178,466 +21336,355.6,1165,465 +21337,355.6166666666667,1154,464 +21338,355.6333333333333,1145,464 +21339,355.65,1137,463 +21340,355.6666666666667,1130,463 +21341,355.68333333333334,1125,462 +21342,355.7,1121,462 +21343,355.71666666666664,1119,462 +21344,355.73333333333335,1119,462 +21345,355.75,1119,462 +21346,355.76666666666665,1122,462 +21347,355.7833333333333,1126,463 +21348,355.8,1132,463 +21349,355.81666666666666,1139,463 +21350,355.8333333333333,1148,464 +21351,355.85,1158,465 +21352,355.8666666666667,1169,466 +21353,355.8833333333333,1182,467 +21354,355.9,1196,467 +21355,355.9166666666667,1212,468 +21356,355.93333333333334,1228,469 +21357,355.95,1246,469 +21358,355.96666666666664,1264,470 +21359,355.98333333333335,1283,470 +21360,356.0,1304,471 +21361,356.01666666666665,1325,472 +21362,356.0333333333333,1346,472 +21363,356.05,1369,472 +21364,356.06666666666666,1392,472 +21365,356.0833333333333,1415,473 +21366,356.1,1438,473 +21367,356.1166666666667,1461,473 +21368,356.1333333333333,1485,472 +21369,356.15,1508,472 +21370,356.1666666666667,1531,472 +21371,356.18333333333334,1554,471 +21372,356.2,1577,471 +21373,356.21666666666664,1598,470 +21374,356.23333333333335,1620,469 +21375,356.25,1641,468 +21376,356.26666666666665,1660,468 +21377,356.2833333333333,1679,467 +21378,356.3,1698,465 +21379,356.31666666666666,1715,464 +21380,356.3333333333333,1731,463 +21381,356.35,1745,462 +21382,356.3666666666667,1759,461 +21383,356.3833333333333,1771,459 +21384,356.4,1782,458 +21385,356.4166666666667,1792,457 +21386,356.43333333333334,1800,457 +21387,356.45,1807,456 +21388,356.46666666666664,1812,455 +21389,356.48333333333335,1816,455 +21390,356.5,1819,454 +21391,356.51666666666665,1819,454 +21392,356.5333333333333,1819,454 +21393,356.55,1817,454 +21394,356.56666666666666,1813,455 +21395,356.5833333333333,1808,455 +21396,356.6,1801,456 +21397,356.6166666666667,1793,456 +21398,356.6333333333333,1784,457 +21399,356.65,1774,458 +21400,356.6666666666667,1762,459 +21401,356.68333333333334,1748,460 +21402,356.7,1734,461 +21403,356.71666666666664,1718,462 +21404,356.73333333333335,1702,464 +21405,356.75,1684,465 +21406,356.76666666666665,1665,466 +21407,356.7833333333333,1646,467 +21408,356.8,1626,468 +21409,356.81666666666666,1605,468 +21410,356.8333333333333,1584,469 +21411,356.85,1562,470 +21412,356.8666666666667,1540,470 +21413,356.8833333333333,1517,471 +21414,356.9,1494,471 +21415,356.9166666666667,1472,472 +21416,356.93333333333334,1449,472 +21417,356.95,1426,472 +21418,356.96666666666664,1403,472 +21419,356.98333333333335,1381,472 +21420,357.0,1359,472 +21421,357.01666666666665,1337,472 +21422,357.0333333333333,1316,471 +21423,357.05,1296,471 +21424,357.06666666666666,1276,469 +21425,357.0833333333333,1258,469 +21426,357.1,1240,468 +21427,357.1166666666667,1223,468 +21428,357.1333333333333,1207,467 +21429,357.15,1193,467 +21430,357.1666666666667,1179,466 +21431,357.18333333333334,1167,465 +21432,357.2,1156,464 +21433,357.21666666666664,1146,464 +21434,357.23333333333335,1138,463 +21435,357.25,1132,463 +21436,357.26666666666665,1127,462 +21437,357.2833333333333,1123,462 +21438,357.3,1122,462 +21439,357.31666666666666,1122,462 +21440,357.3333333333333,1122,462 +21441,357.35,1125,462 +21442,357.3666666666667,1129,463 +21443,357.3833333333333,1135,463 +21444,357.4,1142,464 +21445,357.4166666666667,1150,464 +21446,357.43333333333334,1161,465 +21447,357.45,1172,466 +21448,357.46666666666664,1185,466 +21449,357.48333333333335,1200,467 +21450,357.5,1215,468 +21451,357.51666666666665,1232,469 +21452,357.5333333333333,1250,469 +21453,357.55,1268,470 +21454,357.56666666666666,1287,471 +21455,357.5833333333333,1308,471 +21456,357.6,1328,472 +21457,357.6166666666667,1350,472 +21458,357.6333333333333,1372,472 +21459,357.65,1395,472 +21460,357.6666666666667,1418,473 +21461,357.68333333333334,1441,472 +21462,357.7,1465,472 +21463,357.71666666666664,1488,472 +21464,357.73333333333335,1511,472 +21465,357.75,1534,472 +21466,357.76666666666665,1557,471 +21467,357.7833333333333,1579,471 +21468,357.8,1601,470 +21469,357.81666666666666,1622,470 +21470,357.8333333333333,1642,469 +21471,357.85,1662,468 +21472,357.8666666666667,1681,467 +21473,357.8833333333333,1699,465 +21474,357.9,1716,464 +21475,357.9166666666667,1731,463 +21476,357.93333333333334,1746,462 +21477,357.95,1759,461 +21478,357.96666666666664,1772,459 +21479,357.98333333333335,1782,458 +21480,358.0,1792,457 +21481,358.01666666666665,1800,457 +21482,358.0333333333333,1807,456 +21483,358.05,1811,455 +21484,358.06666666666666,1815,455 +21485,358.0833333333333,1817,455 +21486,358.1,1817,455 +21487,358.1166666666667,1817,455 +21488,358.1333333333333,1815,455 +21489,358.15,1811,455 +21490,358.1666666666667,1806,455 +21491,358.18333333333334,1799,456 +21492,358.2,1791,456 +21493,358.21666666666664,1781,457 +21494,358.23333333333335,1770,458 +21495,358.25,1758,459 +21496,358.26666666666665,1745,460 +21497,358.2833333333333,1731,461 +21498,358.3,1715,463 +21499,358.31666666666666,1698,464 +21500,358.3333333333333,1681,465 +21501,358.35,1662,466 +21502,358.3666666666667,1643,467 +21503,358.3833333333333,1623,468 +21504,358.4,1602,469 +21505,358.4166666666667,1581,469 +21506,358.43333333333334,1559,470 +21507,358.45,1536,471 +21508,358.46666666666664,1514,471 +21509,358.48333333333335,1491,471 +21510,358.5,1468,472 +21511,358.51666666666665,1445,472 +21512,358.5333333333333,1422,472 +21513,358.55,1400,472 +21514,358.56666666666666,1378,472 +21515,358.5833333333333,1356,472 +21516,358.6,1334,472 +21517,358.6166666666667,1313,471 +21518,358.6333333333333,1293,470 +21519,358.65,1274,470 +21520,358.6666666666667,1255,470 +21521,358.68333333333334,1237,469 +21522,358.7,1221,468 +21523,358.71666666666664,1205,467 +21524,358.73333333333335,1190,467 +21525,358.75,1177,466 +21526,358.76666666666665,1165,465 +21527,358.7833333333333,1155,465 +21528,358.8,1145,464 +21529,358.81666666666666,1138,463 +21530,358.8333333333333,1131,463 +21531,358.85,1126,462 +21532,358.8666666666667,1123,462 +21533,358.8833333333333,1122,462 +21534,358.9,1122,462 +21535,358.9166666666667,1122,463 +21536,358.93333333333334,1125,463 +21537,358.95,1130,463 +21538,358.96666666666664,1135,464 +21539,358.98333333333335,1143,464 +21540,359.0,1152,465 +21541,359.01666666666665,1162,466 +21542,359.0333333333333,1174,467 +21543,359.05,1187,467 +21544,359.06666666666666,1201,468 +21545,359.0833333333333,1217,469 +21546,359.1,1233,470 +21547,359.1166666666667,1251,470 +21548,359.1333333333333,1270,471 +21549,359.15,1289,471 +21550,359.1666666666667,1309,472 +21551,359.18333333333334,1330,472 +21552,359.2,1352,472 +21553,359.21666666666664,1374,473 +21554,359.23333333333335,1397,473 +21555,359.25,1420,473 +21556,359.26666666666665,1443,473 +21557,359.2833333333333,1466,473 +21558,359.3,1489,473 +21559,359.31666666666666,1513,473 +21560,359.3333333333333,1535,472 +21561,359.35,1558,472 +21562,359.3666666666667,1580,471 +21563,359.3833333333333,1602,470 +21564,359.4,1623,470 +21565,359.4166666666667,1643,469 +21566,359.43333333333334,1663,468 +21567,359.45,1681,467 +21568,359.46666666666664,1699,465 +21569,359.48333333333335,1716,464 +21570,359.5,1731,463 +21571,359.51666666666665,1746,462 +21572,359.5333333333333,1759,461 +21573,359.55,1771,460 +21574,359.56666666666666,1781,459 +21575,359.5833333333333,1791,458 +21576,359.6,1798,457 +21577,359.6166666666667,1805,456 +21578,359.6333333333333,1810,456 +21579,359.65,1813,455 +21580,359.6666666666667,1815,455 +21581,359.68333333333334,1815,455 +21582,359.7,1815,455 +21583,359.71666666666664,1813,455 +21584,359.73333333333335,1809,455 +21585,359.75,1803,456 +21586,359.76666666666665,1797,456 +21587,359.7833333333333,1788,457 +21588,359.8,1779,458 +21589,359.81666666666666,1768,459 +21590,359.8333333333333,1756,459 +21591,359.85,1743,461 +21592,359.8666666666667,1728,462 +21593,359.8833333333333,1712,463 +21594,359.9,1696,464 +21595,359.9166666666667,1678,465 +21596,359.93333333333334,1660,466 +21597,359.95,1641,467 +21598,359.96666666666664,1621,468 +21599,359.98333333333335,1600,469 +21600,360.0,1579,470 +21601,360.01666666666665,1557,471 +21602,360.0333333333333,1535,471 +21603,360.05,1512,471 +21604,360.06666666666666,1490,472 +21605,360.0833333333333,1467,472 +21606,360.1,1445,472 +21607,360.1166666666667,1422,472 +21608,360.1333333333333,1400,472 +21609,360.15,1377,472 +21610,360.1666666666667,1355,472 +21611,360.18333333333334,1334,472 +21612,360.2,1313,471 +21613,360.21666666666664,1293,470 +21614,360.23333333333335,1274,470 +21615,360.25,1256,469 +21616,360.26666666666665,1238,469 +21617,360.2833333333333,1221,468 +21618,360.3,1206,467 +21619,360.31666666666666,1191,467 +21620,360.3333333333333,1178,466 +21621,360.35,1166,465 +21622,360.3666666666667,1156,465 +21623,360.3833333333333,1147,464 +21624,360.4,1139,463 +21625,360.4166666666667,1133,463 +21626,360.43333333333334,1128,463 +21627,360.45,1125,462 +21628,360.46666666666664,1124,462 +21629,360.48333333333335,1124,462 +21630,360.5,1124,463 +21631,360.51666666666665,1127,463 +21632,360.5333333333333,1132,463 +21633,360.55,1138,464 +21634,360.56666666666666,1145,464 +21635,360.5833333333333,1154,465 +21636,360.6,1165,465 +21637,360.6166666666667,1176,466 +21638,360.6333333333333,1189,467 +21639,360.65,1203,467 +21640,360.6666666666667,1219,468 +21641,360.68333333333334,1236,468 +21642,360.7,1253,469 +21643,360.71666666666664,1272,469 +21644,360.73333333333335,1291,470 +21645,360.75,1312,470 +21646,360.76666666666665,1332,471 +21647,360.7833333333333,1354,472 +21648,360.8,1376,472 +21649,360.81666666666666,1399,472 +21650,360.8333333333333,1421,472 +21651,360.85,1445,472 +21652,360.8666666666667,1468,472 +21653,360.8833333333333,1491,472 +21654,360.9,1514,472 +21655,360.9166666666667,1537,471 +21656,360.93333333333334,1559,471 +21657,360.95,1581,470 +21658,360.96666666666664,1603,470 +21659,360.98333333333335,1624,469 +21660,361.0,1644,468 +21661,361.01666666666665,1663,467 +21662,361.0333333333333,1682,466 +21663,361.05,1699,465 +21664,361.06666666666666,1716,464 +21665,361.0833333333333,1732,463 +21666,361.1,1746,461 +21667,361.1166666666667,1759,460 +21668,361.1333333333333,1771,459 +21669,361.15,1781,458 +21670,361.1666666666667,1790,457 +21671,361.18333333333334,1798,457 +21672,361.2,1804,456 +21673,361.21666666666664,1809,455 +21674,361.23333333333335,1813,455 +21675,361.25,1814,455 +21676,361.26666666666665,1814,455 +21677,361.2833333333333,1814,455 +21678,361.3,1811,455 +21679,361.31666666666666,1807,455 +21680,361.3333333333333,1802,456 +21681,361.35,1795,456 +21682,361.3666666666667,1786,457 +21683,361.3833333333333,1776,458 +21684,361.4,1766,459 +21685,361.4166666666667,1753,460 +21686,361.43333333333334,1740,461 +21687,361.45,1725,462 +21688,361.46666666666664,1710,463 +21689,361.48333333333335,1693,464 +21690,361.5,1675,465 +21691,361.51666666666665,1657,466 +21692,361.5333333333333,1637,467 +21693,361.55,1617,468 +21694,361.56666666666666,1597,469 +21695,361.5833333333333,1575,470 +21696,361.6,1553,470 +21697,361.6166666666667,1531,471 +21698,361.6333333333333,1509,471 +21699,361.65,1486,471 +21700,361.6666666666667,1464,472 +21701,361.68333333333334,1441,472 +21702,361.7,1419,472 +21703,361.71666666666664,1396,472 +21704,361.73333333333335,1374,472 +21705,361.75,1352,472 +21706,361.76666666666665,1331,471 +21707,361.7833333333333,1311,471 +21708,361.8,1290,470 +21709,361.81666666666666,1271,470 +21710,361.8333333333333,1253,469 +21711,361.85,1236,468 +21712,361.8666666666667,1219,468 +21713,361.8833333333333,1204,467 +21714,361.9,1190,466 +21715,361.9166666666667,1177,466 +21716,361.93333333333334,1165,465 +21717,361.95,1155,464 +21718,361.96666666666664,1146,464 +21719,361.98333333333335,1138,463 +21720,362.0,1132,463 +21721,362.01666666666665,1128,463 +21722,362.0333333333333,1125,463 +21723,362.05,1124,463 +21724,362.06666666666666,1124,463 +21725,362.0833333333333,1124,463 +21726,362.1,1128,463 +21727,362.1166666666667,1132,463 +21728,362.1333333333333,1138,464 +21729,362.15,1146,465 +21730,362.1666666666667,1155,465 +21731,362.18333333333334,1165,466 +21732,362.2,1177,467 +21733,362.21666666666664,1190,468 +21734,362.23333333333335,1205,468 +21735,362.25,1220,469 +21736,362.26666666666665,1237,470 +21737,362.2833333333333,1255,470 +21738,362.3,1274,471 +21739,362.31666666666666,1293,471 +21740,362.3333333333333,1314,472 +21741,362.35,1335,472 +21742,362.3666666666667,1356,473 +21743,362.3833333333333,1379,473 +21744,362.4,1402,473 +21745,362.4166666666667,1425,473 +21746,362.43333333333334,1447,473 +21747,362.45,1471,473 +21748,362.46666666666664,1494,473 +21749,362.48333333333335,1517,472 +21750,362.5,1539,472 +21751,362.51666666666665,1562,471 +21752,362.5333333333333,1584,471 +21753,362.55,1605,470 +21754,362.56666666666666,1626,469 +21755,362.5833333333333,1646,469 +21756,362.6,1665,468 +21757,362.6166666666667,1684,467 +21758,362.6333333333333,1701,465 +21759,362.65,1717,464 +21760,362.6666666666667,1733,463 +21761,362.68333333333334,1747,462 +21762,362.7,1760,461 +21763,362.71666666666664,1771,460 +21764,362.73333333333335,1782,459 +21765,362.75,1791,458 +21766,362.76666666666665,1798,457 +21767,362.7833333333333,1804,456 +21768,362.8,1809,456 +21769,362.81666666666666,1812,455 +21770,362.8333333333333,1813,455 +21771,362.85,1813,455 +21772,362.8666666666667,1813,455 +21773,362.8833333333333,1810,455 +21774,362.9,1806,455 +21775,362.9166666666667,1801,456 +21776,362.93333333333334,1794,456 +21777,362.95,1785,457 +21778,362.96666666666664,1776,458 +21779,362.98333333333335,1765,459 +21780,363.0,1752,460 +21781,363.01666666666665,1739,461 +21782,363.0333333333333,1724,462 +21783,363.05,1709,463 +21784,363.06666666666666,1692,464 +21785,363.0833333333333,1674,466 +21786,363.1,1655,467 +21787,363.1166666666667,1636,468 +21788,363.1333333333333,1616,469 +21789,363.15,1595,469 +21790,363.1666666666667,1574,470 +21791,363.18333333333334,1552,471 +21792,363.2,1530,471 +21793,363.21666666666664,1508,471 +21794,363.23333333333335,1485,472 +21795,363.25,1463,472 +21796,363.26666666666665,1440,472 +21797,363.2833333333333,1418,472 +21798,363.3,1395,472 +21799,363.31666666666666,1373,472 +21800,363.3333333333333,1352,472 +21801,363.35,1331,472 +21802,363.3666666666667,1310,471 +21803,363.3833333333333,1290,470 +21804,363.4,1271,470 +21805,363.4166666666667,1253,469 +21806,363.43333333333334,1236,469 +21807,363.45,1220,468 +21808,363.46666666666664,1204,467 +21809,363.48333333333335,1190,467 +21810,363.5,1177,466 +21811,363.51666666666665,1166,465 +21812,363.5333333333333,1156,465 +21813,363.55,1147,464 +21814,363.56666666666666,1140,464 +21815,363.5833333333333,1134,463 +21816,363.6,1129,463 +21817,363.6166666666667,1126,463 +21818,363.6333333333333,1126,463 +21819,363.65,1126,463 +21820,363.6666666666667,1127,463 +21821,363.68333333333334,1130,463 +21822,363.7,1135,464 +21823,363.71666666666664,1141,464 +21824,363.73333333333335,1149,465 +21825,363.75,1158,466 +21826,363.76666666666665,1169,467 +21827,363.7833333333333,1181,467 +21828,363.8,1194,468 +21829,363.81666666666666,1208,468 +21830,363.8333333333333,1224,469 +21831,363.85,1241,469 +21832,363.8666666666667,1259,470 +21833,363.8833333333333,1277,471 +21834,363.9,1297,471 +21835,363.9166666666667,1318,472 +21836,363.93333333333334,1339,473 +21837,363.95,1360,473 +21838,363.96666666666664,1383,473 +21839,363.98333333333335,1405,473 +21840,364.0,1428,473 +21841,364.01666666666665,1451,473 +21842,364.0333333333333,1474,473 +21843,364.05,1497,472 +21844,364.06666666666666,1520,472 +21845,364.0833333333333,1542,472 +21846,364.1,1564,471 +21847,364.1166666666667,1586,471 +21848,364.1333333333333,1607,470 +21849,364.15,1628,470 +21850,364.1666666666667,1648,469 +21851,364.18333333333334,1667,468 +21852,364.2,1685,467 +21853,364.21666666666664,1703,465 +21854,364.23333333333335,1719,464 +21855,364.25,1734,463 +21856,364.26666666666665,1748,462 +21857,364.2833333333333,1761,461 +21858,364.3,1772,460 +21859,364.31666666666666,1782,459 +21860,364.3333333333333,1791,458 +21861,364.35,1798,457 +21862,364.3666666666667,1804,456 +21863,364.3833333333333,1808,456 +21864,364.4,1812,455 +21865,364.4166666666667,1812,455 +21866,364.43333333333334,1812,455 +21867,364.45,1812,455 +21868,364.46666666666664,1809,455 +21869,364.48333333333335,1805,455 +21870,364.5,1799,456 +21871,364.51666666666665,1792,457 +21872,364.5333333333333,1783,457 +21873,364.55,1773,458 +21874,364.56666666666666,1762,459 +21875,364.5833333333333,1750,460 +21876,364.6,1736,461 +21877,364.6166666666667,1721,462 +21878,364.6333333333333,1706,463 +21879,364.65,1689,465 +21880,364.6666666666667,1671,466 +21881,364.68333333333334,1652,467 +21882,364.7,1633,468 +21883,364.71666666666664,1613,469 +21884,364.73333333333335,1592,469 +21885,364.75,1571,470 +21886,364.76666666666665,1549,471 +21887,364.7833333333333,1527,471 +21888,364.8,1505,472 +21889,364.81666666666666,1482,472 +21890,364.8333333333333,1460,472 +21891,364.85,1437,472 +21892,364.8666666666667,1415,472 +21893,364.8833333333333,1393,472 +21894,364.9,1370,472 +21895,364.9166666666667,1348,472 +21896,364.93333333333334,1328,472 +21897,364.95,1308,471 +21898,364.96666666666664,1288,471 +21899,364.98333333333335,1269,470 +21900,365.0,1251,470 +21901,365.01666666666665,1234,469 +21902,365.0333333333333,1218,468 +21903,365.05,1203,468 +21904,365.06666666666666,1189,467 +21905,365.0833333333333,1176,467 +21906,365.1,1165,466 +21907,365.1166666666667,1155,465 +21908,365.1333333333333,1146,464 +21909,365.15,1139,464 +21910,365.1666666666667,1133,464 +21911,365.18333333333334,1129,464 +21912,365.2,1126,463 +21913,365.21666666666664,1126,463 +21914,365.23333333333335,1126,463 +21915,365.25,1127,464 +21916,365.26666666666665,1130,464 +21917,365.2833333333333,1135,464 +21918,365.3,1142,465 +21919,365.31666666666666,1150,465 +21920,365.3333333333333,1159,466 +21921,365.35,1170,467 +21922,365.3666666666667,1182,467 +21923,365.3833333333333,1195,468 +21924,365.4,1210,468 +21925,365.4166666666667,1226,469 +21926,365.43333333333334,1243,470 +21927,365.45,1261,470 +21928,365.46666666666664,1279,471 +21929,365.48333333333335,1298,472 +21930,365.5,1319,472 +21931,365.51666666666665,1340,473 +21932,365.5333333333333,1361,473 +21933,365.55,1384,473 +21934,365.56666666666666,1407,473 +21935,365.5833333333333,1428,473 +21936,365.6,1452,473 +21937,365.6166666666667,1475,473 +21938,365.6333333333333,1498,473 +21939,365.65,1521,472 +21940,365.6666666666667,1543,472 +21941,365.68333333333334,1565,471 +21942,365.7,1587,471 +21943,365.71666666666664,1608,470 +21944,365.73333333333335,1629,470 +21945,365.75,1648,469 +21946,365.76666666666665,1667,468 +21947,365.7833333333333,1686,467 +21948,365.8,1703,465 +21949,365.81666666666666,1719,464 +21950,365.8333333333333,1734,463 +21951,365.85,1748,462 +21952,365.8666666666667,1760,461 +21953,365.8833333333333,1771,460 +21954,365.9,1781,459 +21955,365.9166666666667,1790,458 +21956,365.93333333333334,1797,457 +21957,365.95,1803,456 +21958,365.96666666666664,1807,456 +21959,365.98333333333335,1811,455 +21960,366.0,1811,455 +21961,366.01666666666665,1811,455 +21962,366.0333333333333,1810,455 +21963,366.05,1807,455 +21964,366.06666666666666,1802,456 +21965,366.0833333333333,1796,456 +21966,366.1,1789,457 +21967,366.1166666666667,1781,458 +21968,366.1333333333333,1771,458 +21969,366.15,1760,459 +21970,366.1666666666667,1747,460 +21971,366.18333333333334,1734,461 +21972,366.2,1719,463 +21973,366.21666666666664,1703,463 +21974,366.23333333333335,1686,465 +21975,366.25,1668,466 +21976,366.26666666666665,1650,467 +21977,366.2833333333333,1630,468 +21978,366.3,1610,469 +21979,366.31666666666666,1589,470 +21980,366.3333333333333,1568,470 +21981,366.35,1546,471 +21982,366.3666666666667,1524,471 +21983,366.3833333333333,1502,472 +21984,366.4,1480,472 +21985,366.4166666666667,1457,472 +21986,366.43333333333334,1434,472 +21987,366.45,1412,472 +21988,366.46666666666664,1390,472 +21989,366.48333333333335,1368,472 +21990,366.5,1347,472 +21991,366.51666666666665,1326,472 +21992,366.5333333333333,1306,471 +21993,366.55,1286,471 +21994,366.56666666666666,1268,470 +21995,366.5833333333333,1250,469 +21996,366.6,1233,469 +21997,366.6166666666667,1217,468 +21998,366.6333333333333,1202,467 +21999,366.65,1188,467 +22000,366.6666666666667,1176,466 +22001,366.68333333333334,1165,465 +22002,366.7,1155,465 +22003,366.71666666666664,1146,464 +22004,366.73333333333335,1139,464 +22005,366.75,1134,463 +22006,366.76666666666665,1130,463 +22007,366.7833333333333,1127,463 +22008,366.8,1127,463 +22009,366.81666666666666,1127,463 +22010,366.8333333333333,1129,463 +22011,366.85,1132,463 +22012,366.8666666666667,1138,464 +22013,366.8833333333333,1144,464 +22014,366.9,1152,465 +22015,366.9166666666667,1162,466 +22016,366.93333333333334,1172,466 +22017,366.95,1185,467 +22018,366.96666666666664,1198,468 +22019,366.98333333333335,1213,468 +22020,367.0,1229,469 +22021,367.01666666666665,1246,470 +22022,367.0333333333333,1264,470 +22023,367.05,1282,471 +22024,367.06666666666666,1302,471 +22025,367.0833333333333,1322,472 +22026,367.1,1343,473 +22027,367.1166666666667,1365,473 +22028,367.1333333333333,1388,473 +22029,367.15,1410,473 +22030,367.1666666666667,1433,473 +22031,367.18333333333334,1456,473 +22032,367.2,1479,473 +22033,367.21666666666664,1502,473 +22034,367.23333333333335,1525,473 +22035,367.25,1547,472 +22036,367.26666666666665,1569,472 +22037,367.2833333333333,1591,471 +22038,367.3,1611,470 +22039,367.31666666666666,1631,469 +22040,367.3333333333333,1651,468 +22041,367.35,1670,468 +22042,367.3666666666667,1688,466 +22043,367.3833333333333,1704,465 +22044,367.4,1720,464 +22045,367.4166666666667,1735,463 +22046,367.43333333333334,1749,461 +22047,367.45,1761,460 +22048,367.46666666666664,1772,459 +22049,367.48333333333335,1782,458 +22050,367.5,1790,457 +22051,367.51666666666665,1797,456 +22052,367.5333333333333,1802,456 +22053,367.55,1807,455 +22054,367.56666666666666,1809,455 +22055,367.5833333333333,1809,455 +22056,367.6,1809,455 +22057,367.6166666666667,1809,455 +22058,367.6333333333333,1805,455 +22059,367.65,1801,455 +22060,367.6666666666667,1795,456 +22061,367.68333333333334,1788,456 +22062,367.7,1779,457 +22063,367.71666666666664,1769,458 +22064,367.73333333333335,1758,459 +22065,367.75,1745,460 +22066,367.76666666666665,1731,461 +22067,367.7833333333333,1716,462 +22068,367.8,1700,463 +22069,367.81666666666666,1683,464 +22070,367.8333333333333,1666,465 +22071,367.85,1647,466 +22072,367.8666666666667,1628,467 +22073,367.8833333333333,1607,468 +22074,367.9,1587,469 +22075,367.9166666666667,1565,469 +22076,367.93333333333334,1544,470 +22077,367.95,1522,470 +22078,367.96666666666664,1500,471 +22079,367.98333333333335,1477,471 +22080,368.0,1455,471 +22081,368.01666666666665,1432,471 +22082,368.0333333333333,1410,471 +22083,368.05,1388,471 +22084,368.06666666666666,1367,471 +22085,368.0833333333333,1345,471 +22086,368.1,1324,470 +22087,368.1166666666667,1304,470 +22088,368.1333333333333,1285,469 +22089,368.15,1267,469 +22090,368.1666666666667,1249,468 +22091,368.18333333333334,1232,468 +22092,368.2,1216,467 +22093,368.21666666666664,1202,466 +22094,368.23333333333335,1188,466 +22095,368.25,1176,465 +22096,368.26666666666665,1165,465 +22097,368.2833333333333,1155,464 +22098,368.3,1147,463 +22099,368.31666666666666,1140,463 +22100,368.3333333333333,1134,463 +22101,368.35,1130,462 +22102,368.3666666666667,1128,462 +22103,368.3833333333333,1128,462 +22104,368.4,1128,462 +22105,368.4166666666667,1130,463 +22106,368.43333333333334,1134,463 +22107,368.45,1139,463 +22108,368.46666666666664,1146,464 +22109,368.48333333333335,1154,465 +22110,368.5,1164,465 +22111,368.51666666666665,1175,466 +22112,368.5333333333333,1187,467 +22113,368.55,1201,467 +22114,368.56666666666666,1216,468 +22115,368.5833333333333,1231,469 +22116,368.6,1248,469 +22117,368.6166666666667,1266,470 +22118,368.6333333333333,1285,471 +22119,368.65,1304,471 +22120,368.6666666666667,1325,472 +22121,368.68333333333334,1346,472 +22122,368.7,1367,473 +22123,368.71666666666664,1390,473 +22124,368.73333333333335,1412,473 +22125,368.75,1435,473 +22126,368.76666666666665,1457,473 +22127,368.7833333333333,1480,473 +22128,368.8,1503,473 +22129,368.81666666666666,1525,472 +22130,368.8333333333333,1547,472 +22131,368.85,1569,471 +22132,368.8666666666667,1590,471 +22133,368.8833333333333,1612,470 +22134,368.9,1632,469 +22135,368.9166666666667,1651,468 +22136,368.93333333333334,1670,467 +22137,368.95,1687,466 +22138,368.96666666666664,1704,465 +22139,368.98333333333335,1720,464 +22140,369.0,1734,463 +22141,369.01666666666665,1748,462 +22142,369.0333333333333,1760,460 +22143,369.05,1771,459 +22144,369.06666666666666,1780,459 +22145,369.0833333333333,1789,458 +22146,369.1,1796,457 +22147,369.1166666666667,1801,456 +22148,369.1333333333333,1805,456 +22149,369.15,1808,456 +22150,369.1666666666667,1808,456 +22151,369.18333333333334,1808,456 +22152,369.2,1807,456 +22153,369.21666666666664,1803,456 +22154,369.23333333333335,1799,456 +22155,369.25,1792,457 +22156,369.26666666666665,1785,457 +22157,369.2833333333333,1776,458 +22158,369.3,1766,459 +22159,369.31666666666666,1754,460 +22160,369.3333333333333,1742,461 +22161,369.35,1728,462 +22162,369.3666666666667,1713,463 +22163,369.3833333333333,1697,464 +22164,369.4,1681,465 +22165,369.4166666666667,1663,466 +22166,369.43333333333334,1644,467 +22167,369.45,1625,468 +22168,369.46666666666664,1604,469 +22169,369.48333333333335,1584,470 +22170,369.5,1562,470 +22171,369.51666666666665,1541,471 +22172,369.5333333333333,1519,471 +22173,369.55,1497,472 +22174,369.56666666666666,1475,472 +22175,369.5833333333333,1452,472 +22176,369.6,1430,472 +22177,369.6166666666667,1408,472 +22178,369.6333333333333,1386,472 +22179,369.65,1364,472 +22180,369.6666666666667,1343,472 +22181,369.68333333333334,1323,471 +22182,369.7,1303,471 +22183,369.71666666666664,1283,470 +22184,369.73333333333335,1265,470 +22185,369.75,1248,469 +22186,369.76666666666665,1231,469 +22187,369.7833333333333,1215,468 +22188,369.8,1201,467 +22189,369.81666666666666,1187,467 +22190,369.8333333333333,1175,466 +22191,369.85,1165,466 +22192,369.8666666666667,1155,465 +22193,369.8833333333333,1147,465 +22194,369.9,1140,464 +22195,369.9166666666667,1135,464 +22196,369.93333333333334,1131,464 +22197,369.95,1129,464 +22198,369.96666666666664,1129,464 +22199,369.98333333333335,1129,464 +22200,370.0,1131,464 +22201,370.01666666666665,1135,464 +22202,370.0333333333333,1140,465 +22203,370.05,1147,465 +22204,370.06666666666666,1155,466 +22205,370.0833333333333,1165,466 +22206,370.1,1176,467 +22207,370.1166666666667,1188,468 +22208,370.1333333333333,1202,468 +22209,370.15,1217,469 +22210,370.1666666666667,1233,469 +22211,370.18333333333334,1250,470 +22212,370.2,1268,470 +22213,370.21666666666664,1287,471 +22214,370.23333333333335,1307,472 +22215,370.25,1327,472 +22216,370.26666666666665,1348,473 +22217,370.2833333333333,1370,473 +22218,370.3,1392,473 +22219,370.31666666666666,1414,473 +22220,370.3333333333333,1437,473 +22221,370.35,1459,473 +22222,370.3666666666667,1482,473 +22223,370.3833333333333,1505,472 +22224,370.4,1527,472 +22225,370.4166666666667,1549,472 +22226,370.43333333333334,1571,471 +22227,370.45,1593,471 +22228,370.46666666666664,1613,470 +22229,370.48333333333335,1633,469 +22230,370.5,1653,468 +22231,370.51666666666665,1671,467 +22232,370.5333333333333,1689,466 +22233,370.55,1705,465 +22234,370.56666666666666,1721,464 +22235,370.5833333333333,1736,463 +22236,370.6,1749,462 +22237,370.6166666666667,1761,461 +22238,370.6333333333333,1772,459 +22239,370.65,1781,458 +22240,370.6666666666667,1789,458 +22241,370.68333333333334,1796,457 +22242,370.7,1801,456 +22243,370.71666666666664,1805,456 +22244,370.73333333333335,1808,456 +22245,370.75,1808,455 +22246,370.76666666666665,1808,455 +22247,370.7833333333333,1806,455 +22248,370.8,1803,456 +22249,370.81666666666666,1798,456 +22250,370.8333333333333,1792,456 +22251,370.85,1784,457 +22252,370.8666666666667,1775,458 +22253,370.8833333333333,1765,459 +22254,370.9,1754,460 +22255,370.9166666666667,1741,461 +22256,370.93333333333334,1727,462 +22257,370.95,1712,463 +22258,370.96666666666664,1696,464 +22259,370.98333333333335,1679,465 +22260,371.0,1661,466 +22261,371.01666666666665,1643,467 +22262,371.0333333333333,1623,468 +22263,371.05,1603,469 +22264,371.06666666666666,1583,470 +22265,371.0833333333333,1562,470 +22266,371.1,1540,471 +22267,371.1166666666667,1518,471 +22268,371.1333333333333,1496,472 +22269,371.15,1474,472 +22270,371.1666666666667,1452,472 +22271,371.18333333333334,1429,472 +22272,371.2,1407,472 +22273,371.21666666666664,1385,472 +22274,371.23333333333335,1364,472 +22275,371.25,1343,472 +22276,371.26666666666665,1322,472 +22277,371.2833333333333,1303,471 +22278,371.3,1284,470 +22279,371.31666666666666,1265,470 +22280,371.3333333333333,1248,469 +22281,371.35,1231,469 +22282,371.3666666666667,1216,468 +22283,371.3833333333333,1202,467 +22284,371.4,1188,467 +22285,371.4166666666667,1176,466 +22286,371.43333333333334,1166,466 +22287,371.45,1156,465 +22288,371.46666666666664,1148,464 +22289,371.48333333333335,1142,464 +22290,371.5,1137,464 +22291,371.51666666666665,1133,464 +22292,371.5333333333333,1131,464 +22293,371.55,1131,464 +22294,371.56666666666666,1131,464 +22295,371.5833333333333,1134,464 +22296,371.6,1138,464 +22297,371.6166666666667,1143,465 +22298,371.6333333333333,1150,465 +22299,371.65,1158,466 +22300,371.6666666666667,1168,466 +22301,371.68333333333334,1179,467 +22302,371.7,1192,467 +22303,371.71666666666664,1205,468 +22304,371.73333333333335,1220,469 +22305,371.75,1236,469 +22306,371.76666666666665,1253,470 +22307,371.7833333333333,1271,470 +22308,371.8,1290,471 +22309,371.81666666666666,1309,472 +22310,371.8333333333333,1330,473 +22311,371.85,1350,473 +22312,371.8666666666667,1372,473 +22313,371.8833333333333,1394,473 +22314,371.9,1417,473 +22315,371.9166666666667,1439,473 +22316,371.93333333333334,1462,473 +22317,371.95,1484,473 +22318,371.96666666666664,1507,473 +22319,371.98333333333335,1529,472 +22320,372.0,1551,472 +22321,372.01666666666665,1573,471 +22322,372.0333333333333,1594,471 +22323,372.05,1615,470 +22324,372.06666666666666,1635,469 +22325,372.0833333333333,1654,469 +22326,372.1,1672,467 +22327,372.1166666666667,1690,466 +22328,372.1333333333333,1706,465 +22329,372.15,1722,464 +22330,372.1666666666667,1736,462 +22331,372.18333333333334,1749,461 +22332,372.2,1761,460 +22333,372.21666666666664,1771,459 +22334,372.23333333333335,1781,458 +22335,372.25,1789,458 +22336,372.26666666666665,1795,457 +22337,372.2833333333333,1801,456 +22338,372.3,1804,456 +22339,372.31666666666666,1807,456 +22340,372.3333333333333,1807,456 +22341,372.35,1807,456 +22342,372.3666666666667,1805,456 +22343,372.3833333333333,1801,456 +22344,372.4,1797,456 +22345,372.4166666666667,1790,456 +22346,372.43333333333334,1782,457 +22347,372.45,1773,458 +22348,372.46666666666664,1763,459 +22349,372.48333333333335,1752,460 +22350,372.5,1739,461 +22351,372.51666666666665,1725,462 +22352,372.5333333333333,1710,463 +22353,372.55,1694,464 +22354,372.56666666666666,1677,465 +22355,372.5833333333333,1659,466 +22356,372.6,1641,467 +22357,372.6166666666667,1621,468 +22358,372.6333333333333,1601,469 +22359,372.65,1581,470 +22360,372.6666666666667,1560,470 +22361,372.68333333333334,1538,471 +22362,372.7,1516,471 +22363,372.71666666666664,1494,472 +22364,372.73333333333335,1472,472 +22365,372.75,1450,472 +22366,372.76666666666665,1428,472 +22367,372.7833333333333,1406,472 +22368,372.8,1384,472 +22369,372.81666666666666,1362,472 +22370,372.8333333333333,1341,472 +22371,372.85,1321,471 +22372,372.8666666666667,1301,471 +22373,372.8833333333333,1283,470 +22374,372.9,1265,470 +22375,372.9166666666667,1247,469 +22376,372.93333333333334,1231,468 +22377,372.95,1215,468 +22378,372.96666666666664,1201,467 +22379,372.98333333333335,1188,467 +22380,373.0,1176,466 +22381,373.01666666666665,1166,466 +22382,373.0333333333333,1156,465 +22383,373.05,1149,465 +22384,373.06666666666666,1142,464 +22385,373.0833333333333,1137,464 +22386,373.1,1134,464 +22387,373.1166666666667,1132,464 +22388,373.1333333333333,1132,464 +22389,373.15,1132,464 +22390,373.1666666666667,1135,464 +22391,373.18333333333334,1139,464 +22392,373.2,1145,465 +22393,373.21666666666664,1152,465 +22394,373.23333333333335,1160,466 +22395,373.25,1170,466 +22396,373.26666666666665,1181,467 +22397,373.2833333333333,1194,468 +22398,373.3,1208,468 +22399,373.31666666666666,1223,469 +22400,373.3333333333333,1239,469 +22401,373.35,1256,470 +22402,373.3666666666667,1274,470 +22403,373.3833333333333,1293,471 +22404,373.4,1312,472 +22405,373.4166666666667,1332,472 +22406,373.43333333333334,1353,473 +22407,373.45,1375,473 +22408,373.46666666666664,1397,473 +22409,373.48333333333335,1419,473 +22410,373.5,1442,473 +22411,373.51666666666665,1464,473 +22412,373.5333333333333,1487,473 +22413,373.55,1509,473 +22414,373.56666666666666,1532,472 +22415,373.5833333333333,1554,472 +22416,373.6,1575,471 +22417,373.6166666666667,1596,471 +22418,373.6333333333333,1617,470 +22419,373.65,1637,469 +22420,373.6666666666667,1656,468 +22421,373.68333333333334,1674,467 +22422,373.7,1691,466 +22423,373.71666666666664,1708,465 +22424,373.73333333333335,1723,464 +22425,373.75,1737,463 +22426,373.76666666666665,1750,462 +22427,373.7833333333333,1762,460 +22428,373.8,1772,459 +22429,373.81666666666666,1781,459 +22430,373.8333333333333,1789,458 +22431,373.85,1795,457 +22432,373.8666666666667,1800,456 +22433,373.8833333333333,1804,456 +22434,373.9,1806,456 +22435,373.9166666666667,1806,456 +22436,373.93333333333334,1806,456 +22437,373.95,1804,456 +22438,373.96666666666664,1800,456 +22439,373.98333333333335,1795,456 +22440,374.0,1789,457 +22441,374.01666666666665,1781,458 +22442,374.0333333333333,1772,458 +22443,374.05,1761,459 +22444,374.06666666666666,1750,460 +22445,374.0833333333333,1737,461 +22446,374.1,1723,462 +22447,374.1166666666667,1708,463 +22448,374.1333333333333,1692,464 +22449,374.15,1675,466 +22450,374.1666666666667,1657,467 +22451,374.18333333333334,1638,468 +22452,374.2,1619,469 +22453,374.21666666666664,1599,469 +22454,374.23333333333335,1578,470 +22455,374.25,1557,471 +22456,374.26666666666665,1535,471 +22457,374.2833333333333,1513,472 +22458,374.3,1491,472 +22459,374.31666666666666,1469,472 +22460,374.3333333333333,1447,472 +22461,374.35,1425,472 +22462,374.3666666666667,1403,472 +22463,374.3833333333333,1382,472 +22464,374.4,1360,472 +22465,374.4166666666667,1339,472 +22466,374.43333333333334,1319,472 +22467,374.45,1299,471 +22468,374.46666666666664,1280,471 +22469,374.48333333333335,1263,470 +22470,374.5,1246,469 +22471,374.51666666666665,1230,469 +22472,374.5333333333333,1214,469 +22473,374.55,1200,468 +22474,374.56666666666666,1187,467 +22475,374.5833333333333,1175,467 +22476,374.6,1165,466 +22477,374.6166666666667,1156,466 +22478,374.6333333333333,1148,465 +22479,374.65,1142,465 +22480,374.6666666666667,1137,464 +22481,374.68333333333334,1134,464 +22482,374.7,1133,464 +22483,374.71666666666664,1133,464 +22484,374.73333333333335,1133,464 +22485,374.75,1135,464 +22486,374.76666666666665,1140,465 +22487,374.7833333333333,1145,465 +22488,374.8,1153,466 +22489,374.81666666666666,1161,466 +22490,374.8333333333333,1171,467 +22491,374.85,1183,467 +22492,374.8666666666667,1195,468 +22493,374.8833333333333,1209,469 +22494,374.9,1224,470 +22495,374.9166666666667,1240,470 +22496,374.93333333333334,1257,471 +22497,374.95,1275,471 +22498,374.96666666666664,1294,472 +22499,374.98333333333335,1314,473 +22500,375.0,1334,473 +22501,375.01666666666665,1355,473 +22502,375.0333333333333,1377,473 +22503,375.05,1399,473 +22504,375.06666666666666,1421,473 +22505,375.0833333333333,1444,473 +22506,375.1,1466,473 +22507,375.1166666666667,1489,473 +22508,375.1333333333333,1511,473 +22509,375.15,1533,472 +22510,375.1666666666667,1555,472 +22511,375.18333333333334,1576,471 +22512,375.2,1598,471 +22513,375.21666666666664,1618,470 +22514,375.23333333333335,1638,469 +22515,375.25,1656,468 +22516,375.26666666666665,1674,467 +22517,375.2833333333333,1691,466 +22518,375.3,1708,465 +22519,375.31666666666666,1723,464 +22520,375.3333333333333,1737,463 +22521,375.35,1750,462 +22522,375.3666666666667,1761,461 +22523,375.3833333333333,1771,460 +22524,375.4,1780,459 +22525,375.4166666666667,1788,458 +22526,375.43333333333334,1794,457 +22527,375.45,1799,457 +22528,375.46666666666664,1802,456 +22529,375.48333333333335,1804,456 +22530,375.5,1804,456 +22531,375.51666666666665,1804,456 +22532,375.5333333333333,1802,456 +22533,375.55,1798,457 +22534,375.56666666666666,1793,457 +22535,375.5833333333333,1786,457 +22536,375.6,1778,458 +22537,375.6166666666667,1769,459 +22538,375.6333333333333,1758,459 +22539,375.65,1747,460 +22540,375.6666666666667,1734,462 +22541,375.68333333333334,1720,463 +22542,375.7,1704,464 +22543,375.71666666666664,1688,465 +22544,375.73333333333335,1671,466 +22545,375.75,1653,467 +22546,375.76666666666665,1635,468 +22547,375.7833333333333,1615,468 +22548,375.8,1595,469 +22549,375.81666666666666,1574,470 +22550,375.8333333333333,1553,471 +22551,375.85,1532,471 +22552,375.8666666666667,1510,472 +22553,375.8833333333333,1488,472 +22554,375.9,1466,472 +22555,375.9166666666667,1444,472 +22556,375.93333333333334,1422,472 +22557,375.95,1400,472 +22558,375.96666666666664,1379,472 +22559,375.98333333333335,1357,472 +22560,376.0,1337,472 +22561,376.01666666666665,1317,472 +22562,376.0333333333333,1297,471 +22563,376.05,1278,471 +22564,376.06666666666666,1260,470 +22565,376.0833333333333,1243,470 +22566,376.1,1227,469 +22567,376.1166666666667,1213,469 +22568,376.1333333333333,1199,468 +22569,376.15,1186,467 +22570,376.1666666666667,1174,467 +22571,376.18333333333334,1164,466 +22572,376.2,1155,466 +22573,376.21666666666664,1148,465 +22574,376.23333333333335,1142,465 +22575,376.25,1137,464 +22576,376.26666666666665,1134,464 +22577,376.2833333333333,1134,464 +22578,376.3,1134,464 +22579,376.31666666666666,1134,464 +22580,376.3333333333333,1136,464 +22581,376.35,1141,465 +22582,376.3666666666667,1147,465 +22583,376.3833333333333,1154,466 +22584,376.4,1163,466 +22585,376.4166666666667,1173,467 +22586,376.43333333333334,1185,468 +22587,376.45,1197,468 +22588,376.46666666666664,1211,469 +22589,376.48333333333335,1226,470 +22590,376.5,1243,470 +22591,376.51666666666665,1260,471 +22592,376.5333333333333,1277,471 +22593,376.55,1296,472 +22594,376.56666666666666,1316,472 +22595,376.5833333333333,1337,472 +22596,376.6,1357,473 +22597,376.6166666666667,1379,473 +22598,376.6333333333333,1401,473 +22599,376.65,1424,473 +22600,376.6666666666667,1446,473 +22601,376.68333333333334,1468,473 +22602,376.7,1491,473 +22603,376.71666666666664,1513,473 +22604,376.73333333333335,1535,472 +22605,376.75,1557,472 +22606,376.76666666666665,1578,471 +22607,376.7833333333333,1599,471 +22608,376.8,1619,470 +22609,376.81666666666666,1638,469 +22610,376.8333333333333,1657,468 +22611,376.85,1675,467 +22612,376.8666666666667,1692,466 +22613,376.8833333333333,1708,465 +22614,376.9,1723,464 +22615,376.9166666666667,1737,463 +22616,376.93333333333334,1749,462 +22617,376.95,1761,461 +22618,376.96666666666664,1771,460 +22619,376.98333333333335,1780,459 +22620,377.0,1787,458 +22621,377.01666666666665,1793,457 +22622,377.0333333333333,1798,457 +22623,377.05,1801,456 +22624,377.06666666666666,1802,456 +22625,377.0833333333333,1802,456 +22626,377.1,1802,456 +22627,377.1166666666667,1800,456 +22628,377.1333333333333,1796,456 +22629,377.15,1791,457 +22630,377.1666666666667,1784,457 +22631,377.18333333333334,1776,458 +22632,377.2,1766,459 +22633,377.21666666666664,1756,460 +22634,377.23333333333335,1744,461 +22635,377.25,1731,462 +22636,377.26666666666665,1717,463 +22637,377.2833333333333,1702,464 +22638,377.3,1686,465 +22639,377.31666666666666,1668,466 +22640,377.3333333333333,1651,467 +22641,377.35,1632,468 +22642,377.3666666666667,1612,469 +22643,377.3833333333333,1592,470 +22644,377.4,1572,470 +22645,377.4166666666667,1551,471 +22646,377.43333333333334,1529,471 +22647,377.45,1508,472 +22648,377.46666666666664,1486,472 +22649,377.48333333333335,1464,472 +22650,377.5,1442,472 +22651,377.51666666666665,1420,472 +22652,377.5333333333333,1398,472 +22653,377.55,1377,472 +22654,377.56666666666666,1355,472 +22655,377.5833333333333,1335,472 +22656,377.6,1315,471 +22657,377.6166666666667,1296,471 +22658,377.6333333333333,1277,470 +22659,377.65,1260,470 +22660,377.6666666666667,1243,470 +22661,377.68333333333334,1227,469 +22662,377.7,1212,469 +22663,377.71666666666664,1198,468 +22664,377.73333333333335,1186,467 +22665,377.75,1174,467 +22666,377.76666666666665,1164,466 +22667,377.7833333333333,1155,465 +22668,377.8,1148,465 +22669,377.81666666666666,1142,465 +22670,377.8333333333333,1138,464 +22671,377.85,1135,464 +22672,377.8666666666667,1135,464 +22673,377.8833333333333,1135,464 +22674,377.9,1135,464 +22675,377.9166666666667,1138,464 +22676,377.93333333333334,1143,465 +22677,377.95,1149,465 +22678,377.96666666666664,1156,466 +22679,377.98333333333335,1165,467 +22680,378.0,1175,467 +22681,378.01666666666665,1187,468 +22682,378.0333333333333,1200,468 +22683,378.05,1214,469 +22684,378.06666666666666,1229,470 +22685,378.0833333333333,1245,470 +22686,378.1,1262,471 +22687,378.1166666666667,1280,471 +22688,378.1333333333333,1299,472 +22689,378.15,1319,472 +22690,378.1666666666667,1339,473 +22691,378.18333333333334,1360,473 +22692,378.2,1382,473 +22693,378.21666666666664,1404,473 +22694,378.23333333333335,1426,473 +22695,378.25,1448,473 +22696,378.26666666666665,1470,473 +22697,378.2833333333333,1493,473 +22698,378.3,1515,473 +22699,378.31666666666666,1537,472 +22700,378.3333333333333,1559,472 +22701,378.35,1580,471 +22702,378.3666666666667,1601,470 +22703,378.3833333333333,1620,470 +22704,378.4,1640,469 +22705,378.4166666666667,1658,468 +22706,378.43333333333334,1676,467 +22707,378.45,1693,466 +22708,378.46666666666664,1709,465 +22709,378.48333333333335,1723,464 +22710,378.5,1737,462 +22711,378.51666666666665,1750,461 +22712,378.5333333333333,1761,460 +22713,378.55,1771,459 +22714,378.56666666666666,1779,458 +22715,378.5833333333333,1787,458 +22716,378.6,1792,457 +22717,378.6166666666667,1797,457 +22718,378.6333333333333,1800,456 +22719,378.65,1801,456 +22720,378.6666666666667,1801,456 +22721,378.68333333333334,1801,456 +22722,378.7,1798,456 +22723,378.71666666666664,1794,456 +22724,378.73333333333335,1789,457 +22725,378.75,1782,458 +22726,378.76666666666665,1774,458 +22727,378.7833333333333,1764,459 +22728,378.8,1754,460 +22729,378.81666666666666,1742,461 +22730,378.8333333333333,1729,462 +22731,378.85,1715,463 +22732,378.8666666666667,1700,464 +22733,378.8833333333333,1683,465 +22734,378.9,1666,466 +22735,378.9166666666667,1648,467 +22736,378.93333333333334,1630,468 +22737,378.95,1610,469 +22738,378.96666666666664,1590,470 +22739,378.98333333333335,1570,470 +22740,379.0,1549,471 +22741,379.01666666666665,1527,471 +22742,379.0333333333333,1505,472 +22743,379.05,1484,472 +22744,379.06666666666666,1462,472 +22745,379.0833333333333,1440,472 +22746,379.1,1418,472 +22747,379.1166666666667,1397,472 +22748,379.1333333333333,1375,472 +22749,379.15,1354,472 +22750,379.1666666666667,1333,472 +22751,379.18333333333334,1314,472 +22752,379.2,1294,471 +22753,379.21666666666664,1276,470 +22754,379.23333333333335,1259,470 +22755,379.25,1242,470 +22756,379.26666666666665,1226,469 +22757,379.2833333333333,1211,468 +22758,379.3,1198,468 +22759,379.31666666666666,1185,467 +22760,379.3333333333333,1174,467 +22761,379.35,1164,466 +22762,379.3666666666667,1155,466 +22763,379.3833333333333,1148,465 +22764,379.4,1143,465 +22765,379.4166666666667,1138,464 +22766,379.43333333333334,1136,464 +22767,379.45,1136,464 +22768,379.46666666666664,1136,464 +22769,379.48333333333335,1136,464 +22770,379.5,1139,465 +22771,379.51666666666665,1144,465 +22772,379.5333333333333,1150,465 +22773,379.55,1158,466 +22774,379.56666666666666,1167,466 +22775,379.5833333333333,1177,467 +22776,379.6,1189,468 +22777,379.6166666666667,1202,468 +22778,379.6333333333333,1216,469 +22779,379.65,1231,470 +22780,379.6666666666667,1247,470 +22781,379.68333333333334,1265,471 +22782,379.7,1282,471 +22783,379.71666666666664,1301,472 +22784,379.73333333333335,1321,472 +22785,379.75,1342,473 +22786,379.76666666666665,1363,473 +22787,379.7833333333333,1384,473 +22788,379.8,1406,473 +22789,379.81666666666666,1428,473 +22790,379.8333333333333,1451,473 +22791,379.85,1473,473 +22792,379.8666666666667,1495,473 +22793,379.8833333333333,1517,473 +22794,379.9,1539,472 +22795,379.9166666666667,1561,472 +22796,379.93333333333334,1581,471 +22797,379.95,1602,471 +22798,379.96666666666664,1622,470 +22799,379.98333333333335,1642,469 +22800,380.0,1660,468 +22801,380.01666666666665,1677,467 +22802,380.0333333333333,1694,466 +22803,380.05,1710,465 +22804,380.06666666666666,1724,464 +22805,380.0833333333333,1738,462 +22806,380.1,1750,461 +22807,380.1166666666667,1761,460 +22808,380.1333333333333,1771,459 +22809,380.15,1780,458 +22810,380.1666666666667,1787,458 +22811,380.18333333333334,1792,457 +22812,380.2,1797,457 +22813,380.21666666666664,1799,456 +22814,380.23333333333335,1800,456 +22815,380.25,1800,456 +22816,380.26666666666665,1800,456 +22817,380.2833333333333,1797,456 +22818,380.3,1793,456 +22819,380.31666666666666,1787,457 +22820,380.3333333333333,1781,458 +22821,380.35,1772,458 +22822,380.3666666666667,1763,459 +22823,380.3833333333333,1752,460 +22824,380.4,1740,461 +22825,380.4166666666667,1727,462 +22826,380.43333333333334,1713,463 +22827,380.45,1697,464 +22828,380.46666666666664,1681,465 +22829,380.48333333333335,1664,466 +22830,380.5,1646,467 +22831,380.51666666666665,1627,468 +22832,380.5333333333333,1608,469 +22833,380.55,1588,470 +22834,380.56666666666666,1567,470 +22835,380.5833333333333,1546,471 +22836,380.6,1525,471 +22837,380.6166666666667,1503,472 +22838,380.6333333333333,1481,472 +22839,380.65,1459,472 +22840,380.6666666666667,1438,472 +22841,380.68333333333334,1416,472 +22842,380.7,1395,472 +22843,380.71666666666664,1373,472 +22844,380.73333333333335,1352,472 +22845,380.75,1332,472 +22846,380.76666666666665,1312,471 +22847,380.7833333333333,1293,471 +22848,380.8,1275,470 +22849,380.81666666666666,1257,470 +22850,380.8333333333333,1241,469 +22851,380.85,1225,469 +22852,380.8666666666667,1211,468 +22853,380.8833333333333,1197,468 +22854,380.9,1185,467 +22855,380.9166666666667,1174,466 +22856,380.93333333333334,1164,466 +22857,380.95,1156,465 +22858,380.96666666666664,1149,465 +22859,380.98333333333335,1143,465 +22860,381.0,1139,464 +22861,381.01666666666665,1136,464 +22862,381.0333333333333,1136,464 +22863,381.05,1136,464 +22864,381.06666666666666,1137,465 +22865,381.0833333333333,1141,465 +22866,381.1,1145,465 +22867,381.1166666666667,1152,466 +22868,381.1333333333333,1159,466 +22869,381.15,1169,467 +22870,381.1666666666667,1179,467 +22871,381.18333333333334,1191,468 +22872,381.2,1204,468 +22873,381.21666666666664,1218,469 +22874,381.23333333333335,1233,470 +22875,381.25,1250,471 +22876,381.26666666666665,1267,471 +22877,381.2833333333333,1284,471 +22878,381.3,1304,472 +22879,381.31666666666666,1323,473 +22880,381.3333333333333,1344,473 +22881,381.35,1365,473 +22882,381.3666666666667,1387,473 +22883,381.3833333333333,1408,473 +22884,381.4,1430,473 +22885,381.4166666666667,1453,473 +22886,381.43333333333334,1475,473 +22887,381.45,1497,473 +22888,381.46666666666664,1519,473 +22889,381.48333333333335,1541,472 +22890,381.5,1562,472 +22891,381.51666666666665,1583,471 +22892,381.5333333333333,1604,471 +22893,381.55,1623,470 +22894,381.56666666666666,1643,469 +22895,381.5833333333333,1661,468 +22896,381.6,1678,467 +22897,381.6166666666667,1695,466 +22898,381.6333333333333,1710,465 +22899,381.65,1725,463 +22900,381.6666666666667,1738,462 +22901,381.68333333333334,1750,461 +22902,381.7,1761,460 +22903,381.71666666666664,1771,459 +22904,381.73333333333335,1779,459 +22905,381.75,1786,458 +22906,381.76666666666665,1792,457 +22907,381.7833333333333,1796,457 +22908,381.8,1799,457 +22909,381.81666666666666,1799,456 +22910,381.8333333333333,1799,456 +22911,381.85,1799,456 +22912,381.8666666666667,1796,456 +22913,381.8833333333333,1791,457 +22914,381.9,1786,457 +22915,381.9166666666667,1779,458 +22916,381.93333333333334,1770,458 +22917,381.95,1761,459 +22918,381.96666666666664,1750,460 +22919,381.98333333333335,1738,461 +22920,382.0,1725,462 +22921,382.01666666666665,1710,463 +22922,382.0333333333333,1695,464 +22923,382.05,1679,465 +22924,382.06666666666666,1662,466 +22925,382.0833333333333,1644,467 +22926,382.1,1625,468 +22927,382.1166666666667,1605,469 +22928,382.1333333333333,1585,470 +22929,382.15,1565,470 +22930,382.1666666666667,1544,471 +22931,382.18333333333334,1522,472 +22932,382.2,1501,472 +22933,382.21666666666664,1479,472 +22934,382.23333333333335,1457,472 +22935,382.25,1435,472 +22936,382.26666666666665,1414,472 +22937,382.2833333333333,1393,472 +22938,382.3,1371,472 +22939,382.31666666666666,1350,472 +22940,382.3333333333333,1330,472 +22941,382.35,1311,471 +22942,382.3666666666667,1291,471 +22943,382.3833333333333,1273,470 +22944,382.4,1256,470 +22945,382.4166666666667,1240,469 +22946,382.43333333333334,1224,469 +22947,382.45,1210,468 +22948,382.46666666666664,1196,467 +22949,382.48333333333335,1184,467 +22950,382.5,1173,466 +22951,382.51666666666665,1164,466 +22952,382.5333333333333,1156,465 +22953,382.55,1149,465 +22954,382.56666666666666,1144,465 +22955,382.5833333333333,1140,464 +22956,382.6,1137,464 +22957,382.6166666666667,1137,464 +22958,382.6333333333333,1137,464 +22959,382.65,1139,464 +22960,382.6666666666667,1142,465 +22961,382.68333333333334,1147,465 +22962,382.7,1154,466 +22963,382.71666666666664,1162,466 +22964,382.73333333333335,1171,467 +22965,382.75,1181,467 +22966,382.76666666666665,1193,468 +22967,382.7833333333333,1206,469 +22968,382.8,1220,469 +22969,382.81666666666666,1236,470 +22970,382.8333333333333,1252,470 +22971,382.85,1270,471 +22972,382.8666666666667,1288,471 +22973,382.8833333333333,1307,472 +22974,382.9,1327,473 +22975,382.9166666666667,1347,473 +22976,382.93333333333334,1368,473 +22977,382.95,1390,473 +22978,382.96666666666664,1411,473 +22979,382.98333333333335,1433,473 +22980,383.0,1456,473 +22981,383.01666666666665,1478,473 +22982,383.0333333333333,1500,473 +22983,383.05,1522,472 +22984,383.06666666666666,1543,472 +22985,383.0833333333333,1565,472 +22986,383.1,1585,471 +22987,383.1166666666667,1606,470 +22988,383.1333333333333,1625,470 +22989,383.15,1645,469 +22990,383.1666666666667,1663,468 +22991,383.18333333333334,1680,467 +22992,383.2,1697,466 +22993,383.21666666666664,1712,465 +22994,383.23333333333335,1726,463 +22995,383.25,1739,462 +22996,383.26666666666665,1751,462 +22997,383.2833333333333,1762,460 +22998,383.3,1771,460 +22999,383.31666666666666,1779,459 +23000,383.3333333333333,1786,458 +23001,383.35,1792,458 +23002,383.3666666666667,1796,457 +23003,383.3833333333333,1798,457 +23004,383.4,1798,456 +23005,383.4166666666667,1798,456 +23006,383.43333333333334,1798,456 +23007,383.45,1794,457 +23008,383.46666666666664,1790,457 +23009,383.48333333333335,1784,458 +23010,383.5,1777,458 +23011,383.51666666666665,1768,459 +23012,383.5333333333333,1759,460 +23013,383.55,1748,460 +23014,383.56666666666666,1736,461 +23015,383.5833333333333,1723,462 +23016,383.6,1708,463 +23017,383.6166666666667,1693,464 +23018,383.6333333333333,1676,465 +23019,383.65,1659,466 +23020,383.6666666666667,1641,468 +23021,383.68333333333334,1622,468 +23022,383.7,1603,469 +23023,383.71666666666664,1583,470 +23024,383.73333333333335,1562,471 +23025,383.75,1541,471 +23026,383.76666666666665,1520,471 +23027,383.7833333333333,1498,472 +23028,383.8,1476,472 +23029,383.81666666666666,1455,472 +23030,383.8333333333333,1433,472 +23031,383.85,1412,472 +23032,383.8666666666667,1390,472 +23033,383.8833333333333,1369,472 +23034,383.9,1348,472 +23035,383.9166666666667,1328,472 +23036,383.93333333333334,1309,472 +23037,383.95,1290,471 +23038,383.96666666666664,1272,471 +23039,383.98333333333335,1255,470 +23040,384.0,1239,470 +23041,384.01666666666665,1224,469 +23042,384.0333333333333,1209,469 +23043,384.05,1196,468 +23044,384.06666666666666,1184,467 +23045,384.0833333333333,1173,467 +23046,384.1,1164,466 +23047,384.1166666666667,1156,466 +23048,384.1333333333333,1149,465 +23049,384.15,1144,465 +23050,384.1666666666667,1140,465 +23051,384.18333333333334,1138,465 +23052,384.2,1138,465 +23053,384.21666666666664,1138,465 +23054,384.23333333333335,1140,465 +23055,384.25,1144,465 +23056,384.26666666666665,1149,466 +23057,384.2833333333333,1155,466 +23058,384.3,1163,467 +23059,384.31666666666666,1172,467 +23060,384.3333333333333,1183,468 +23061,384.35,1195,468 +23062,384.3666666666667,1209,469 +23063,384.3833333333333,1223,470 +23064,384.4,1238,470 +23065,384.4166666666667,1255,471 +23066,384.43333333333334,1272,471 +23067,384.45,1290,472 +23068,384.46666666666664,1310,472 +23069,384.48333333333335,1329,473 +23070,384.5,1349,473 +23071,384.51666666666665,1370,473 +23072,384.5333333333333,1392,473 +23073,384.55,1414,473 +23074,384.56666666666666,1436,473 +23075,384.5833333333333,1458,473 +23076,384.6,1480,473 +23077,384.6166666666667,1502,473 +23078,384.6333333333333,1524,472 +23079,384.65,1545,472 +23080,384.6666666666667,1566,472 +23081,384.68333333333334,1587,471 +23082,384.7,1607,470 +23083,384.71666666666664,1627,470 +23084,384.73333333333335,1646,469 +23085,384.75,1664,468 +23086,384.76666666666665,1681,467 +23087,384.7833333333333,1697,466 +23088,384.8,1712,465 +23089,384.81666666666666,1726,464 +23090,384.8333333333333,1739,463 +23091,384.85,1751,461 +23092,384.8666666666667,1762,460 +23093,384.8833333333333,1771,459 +23094,384.9,1779,459 +23095,384.9166666666667,1785,458 +23096,384.93333333333334,1791,458 +23097,384.95,1794,457 +23098,384.96666666666664,1797,457 +23099,384.98333333333335,1797,457 +23100,385.0,1797,457 +23101,385.01666666666665,1796,457 +23102,385.0333333333333,1792,457 +23103,385.05,1788,457 +23104,385.06666666666666,1782,458 +23105,385.0833333333333,1774,458 +23106,385.1,1766,459 +23107,385.1166666666667,1756,460 +23108,385.1333333333333,1745,461 +23109,385.15,1733,461 +23110,385.1666666666667,1719,462 +23111,385.18333333333334,1705,464 +23112,385.2,1690,465 +23113,385.21666666666664,1673,466 +23114,385.23333333333335,1656,467 +23115,385.25,1638,468 +23116,385.26666666666665,1619,469 +23117,385.2833333333333,1600,469 +23118,385.3,1580,470 +23119,385.31666666666666,1559,471 +23120,385.3333333333333,1538,471 +23121,385.35,1517,472 +23122,385.3666666666667,1495,472 +23123,385.3833333333333,1474,472 +23124,385.4,1452,472 +23125,385.4166666666667,1430,472 +23126,385.43333333333334,1409,472 +23127,385.45,1388,472 +23128,385.46666666666664,1367,472 +23129,385.48333333333335,1346,472 +23130,385.5,1326,472 +23131,385.51666666666665,1307,471 +23132,385.5333333333333,1288,471 +23133,385.55,1271,470 +23134,385.56666666666666,1253,470 +23135,385.5833333333333,1237,470 +23136,385.6,1222,469 +23137,385.6166666666667,1208,468 +23138,385.6333333333333,1195,468 +23139,385.65,1183,467 +23140,385.6666666666667,1173,467 +23141,385.68333333333334,1164,466 +23142,385.7,1156,466 +23143,385.71666666666664,1149,465 +23144,385.73333333333335,1144,465 +23145,385.75,1141,465 +23146,385.76666666666665,1138,465 +23147,385.7833333333333,1138,465 +23148,385.8,1138,465 +23149,385.81666666666666,1141,465 +23150,385.8333333333333,1145,465 +23151,385.85,1150,466 +23152,385.8666666666667,1157,466 +23153,385.8833333333333,1165,467 +23154,385.9,1174,467 +23155,385.9166666666667,1185,468 +23156,385.93333333333334,1197,468 +23157,385.95,1210,469 +23158,385.96666666666664,1225,469 +23159,385.98333333333335,1240,470 +23160,386.0,1257,471 +23161,386.01666666666665,1274,472 +23162,386.0333333333333,1292,472 +23163,386.05,1312,472 +23164,386.06666666666666,1331,473 +23165,386.0833333333333,1352,473 +23166,386.1,1373,473 +23167,386.1166666666667,1395,473 +23168,386.1333333333333,1416,473 +23169,386.15,1438,473 +23170,386.1666666666667,1460,473 +23171,386.18333333333334,1482,473 +23172,386.2,1504,473 +23173,386.21666666666664,1525,473 +23174,386.23333333333335,1547,472 +23175,386.25,1568,472 +23176,386.26666666666665,1589,471 +23177,386.2833333333333,1609,470 +23178,386.3,1628,470 +23179,386.31666666666666,1647,469 +23180,386.3333333333333,1665,468 +23181,386.35,1682,467 +23182,386.3666666666667,1698,466 +23183,386.3833333333333,1713,465 +23184,386.4,1727,464 +23185,386.4166666666667,1740,463 +23186,386.43333333333334,1751,462 +23187,386.45,1761,461 +23188,386.46666666666664,1771,460 +23189,386.48333333333335,1778,459 +23190,386.5,1785,458 +23191,386.51666666666665,1790,458 +23192,386.5333333333333,1793,457 +23193,386.55,1796,457 +23194,386.56666666666666,1796,457 +23195,386.5833333333333,1796,457 +23196,386.6,1794,457 +23197,386.6166666666667,1791,457 +23198,386.6333333333333,1786,457 +23199,386.65,1780,458 +23200,386.6666666666667,1773,459 +23201,386.68333333333334,1764,459 +23202,386.7,1754,460 +23203,386.71666666666664,1743,461 +23204,386.73333333333335,1731,462 +23205,386.75,1718,463 +23206,386.76666666666665,1703,464 +23207,386.7833333333333,1688,465 +23208,386.8,1671,466 +23209,386.81666666666666,1654,467 +23210,386.8333333333333,1636,468 +23211,386.85,1617,469 +23212,386.8666666666667,1598,469 +23213,386.8833333333333,1578,470 +23214,386.9,1557,471 +23215,386.9166666666667,1536,471 +23216,386.93333333333334,1515,472 +23217,386.95,1494,472 +23218,386.96666666666664,1472,472 +23219,386.98333333333335,1451,472 +23220,387.0,1429,472 +23221,387.01666666666665,1408,472 +23222,387.0333333333333,1387,472 +23223,387.05,1366,472 +23224,387.06666666666666,1345,472 +23225,387.0833333333333,1326,472 +23226,387.1,1306,472 +23227,387.1166666666667,1288,471 +23228,387.1333333333333,1270,471 +23229,387.15,1254,470 +23230,387.1666666666667,1238,470 +23231,387.18333333333334,1222,469 +23232,387.2,1209,468 +23233,387.21666666666664,1196,468 +23234,387.23333333333335,1184,467 +23235,387.25,1174,467 +23236,387.26666666666665,1165,466 +23237,387.2833333333333,1157,466 +23238,387.3,1151,466 +23239,387.31666666666666,1146,465 +23240,387.3333333333333,1142,465 +23241,387.35,1141,465 +23242,387.3666666666667,1141,465 +23243,387.3833333333333,1141,465 +23244,387.4,1143,465 +23245,387.4166666666667,1147,466 +23246,387.43333333333334,1152,466 +23247,387.45,1159,466 +23248,387.46666666666664,1167,467 +23249,387.48333333333335,1177,467 +23250,387.5,1188,468 +23251,387.51666666666665,1200,469 +23252,387.5333333333333,1214,469 +23253,387.55,1228,470 +23254,387.56666666666666,1244,471 +23255,387.5833333333333,1260,471 +23256,387.6,1277,472 +23257,387.6166666666667,1296,472 +23258,387.6333333333333,1315,473 +23259,387.65,1335,473 +23260,387.6666666666667,1355,473 +23261,387.68333333333334,1376,473 +23262,387.7,1398,473 +23263,387.71666666666664,1419,473 +23264,387.73333333333335,1441,473 +23265,387.75,1463,473 +23266,387.76666666666665,1484,473 +23267,387.7833333333333,1506,473 +23268,387.8,1528,473 +23269,387.81666666666666,1549,472 +23270,387.8333333333333,1570,472 +23271,387.85,1591,471 +23272,387.8666666666667,1611,471 +23273,387.8833333333333,1630,470 +23274,387.9,1649,469 +23275,387.9166666666667,1666,468 +23276,387.93333333333334,1683,467 +23277,387.95,1699,466 +23278,387.96666666666664,1714,465 +23279,387.98333333333335,1728,464 +23280,388.0,1740,463 +23281,388.01666666666665,1752,462 +23282,388.0333333333333,1762,461 +23283,388.05,1771,460 +23284,388.06666666666666,1779,459 +23285,388.0833333333333,1785,458 +23286,388.1,1790,457 +23287,388.1166666666667,1793,457 +23288,388.1333333333333,1795,457 +23289,388.15,1795,457 +23290,388.1666666666667,1795,457 +23291,388.18333333333334,1794,457 +23292,388.2,1790,457 +23293,388.21666666666664,1785,457 +23294,388.23333333333335,1779,458 +23295,388.25,1772,458 +23296,388.26666666666665,1763,459 +23297,388.2833333333333,1753,460 +23298,388.3,1742,461 +23299,388.31666666666666,1729,461 +23300,388.3333333333333,1716,463 +23301,388.35,1702,463 +23302,388.3666666666667,1686,465 +23303,388.3833333333333,1670,466 +23304,388.4,1652,467 +23305,388.4166666666667,1634,468 +23306,388.43333333333334,1616,469 +23307,388.45,1596,470 +23308,388.46666666666664,1576,470 +23309,388.48333333333335,1556,471 +23310,388.5,1535,471 +23311,388.51666666666665,1513,472 +23312,388.5333333333333,1492,472 +23313,388.55,1471,472 +23314,388.56666666666666,1449,472 +23315,388.5833333333333,1428,472 +23316,388.6,1407,472 +23317,388.6166666666667,1386,472 +23318,388.6333333333333,1365,472 +23319,388.65,1345,472 +23320,388.6666666666667,1325,472 +23321,388.68333333333334,1306,471 +23322,388.7,1287,471 +23323,388.71666666666664,1270,470 +23324,388.73333333333335,1253,470 +23325,388.75,1238,469 +23326,388.76666666666665,1223,469 +23327,388.7833333333333,1209,468 +23328,388.8,1196,468 +23329,388.81666666666666,1185,467 +23330,388.8333333333333,1175,467 +23331,388.85,1165,466 +23332,388.8666666666667,1158,466 +23333,388.8833333333333,1152,465 +23334,388.9,1147,465 +23335,388.9166666666667,1144,465 +23336,388.93333333333334,1142,465 +23337,388.95,1142,465 +23338,388.96666666666664,1142,465 +23339,388.98333333333335,1145,465 +23340,389.0,1149,465 +23341,389.01666666666665,1155,466 +23342,389.0333333333333,1161,466 +23343,389.05,1170,467 +23344,389.06666666666666,1179,467 +23345,389.0833333333333,1190,468 +23346,389.1,1202,469 +23347,389.1166666666667,1216,469 +23348,389.1333333333333,1231,469 +23349,389.15,1246,470 +23350,389.1666666666667,1263,470 +23351,389.18333333333334,1280,471 +23352,389.2,1299,472 +23353,389.21666666666664,1318,472 +23354,389.23333333333335,1337,473 +23355,389.25,1358,473 +23356,389.26666666666665,1379,473 +23357,389.2833333333333,1400,473 +23358,389.3,1422,473 +23359,389.31666666666666,1444,473 +23360,389.3333333333333,1465,473 +23361,389.35,1487,473 +23362,389.3666666666667,1509,473 +23363,389.3833333333333,1531,472 +23364,389.4,1552,472 +23365,389.4166666666667,1573,471 +23366,389.43333333333334,1593,471 +23367,389.45,1613,470 +23368,389.46666666666664,1632,469 +23369,389.48333333333335,1650,468 +23370,389.5,1668,468 +23371,389.51666666666665,1685,467 +23372,389.5333333333333,1700,465 +23373,389.55,1715,464 +23374,389.56666666666666,1729,463 +23375,389.5833333333333,1741,462 +23376,389.6,1752,461 +23377,389.6166666666667,1762,460 +23378,389.6333333333333,1771,460 +23379,389.65,1779,459 +23380,389.6666666666667,1785,458 +23381,389.68333333333334,1789,458 +23382,389.7,1793,457 +23383,389.71666666666664,1795,457 +23384,389.73333333333335,1795,457 +23385,389.75,1795,457 +23386,389.76666666666665,1793,457 +23387,389.7833333333333,1789,457 +23388,389.8,1784,458 +23389,389.81666666666666,1778,458 +23390,389.8333333333333,1770,459 +23391,389.85,1761,459 +23392,389.8666666666667,1751,460 +23393,389.8833333333333,1740,461 +23394,389.9,1727,462 +23395,389.9166666666667,1714,463 +23396,389.93333333333334,1699,464 +23397,389.95,1684,465 +23398,389.96666666666664,1667,466 +23399,389.98333333333335,1650,467 +23400,390.0,1632,468 +23401,390.01666666666665,1613,469 +23402,390.0333333333333,1593,469 +23403,390.05,1573,470 +23404,390.06666666666666,1553,471 +23405,390.0833333333333,1532,471 +23406,390.1,1511,472 +23407,390.1166666666667,1490,472 +23408,390.1333333333333,1468,472 +23409,390.15,1447,472 +23410,390.1666666666667,1426,472 +23411,390.18333333333334,1404,472 +23412,390.2,1384,472 +23413,390.21666666666664,1362,472 +23414,390.23333333333335,1342,472 +23415,390.25,1323,472 +23416,390.26666666666665,1304,471 +23417,390.2833333333333,1286,470 +23418,390.3,1268,470 +23419,390.31666666666666,1252,470 +23420,390.3333333333333,1236,469 +23421,390.35,1221,469 +23422,390.3666666666667,1208,468 +23423,390.3833333333333,1195,468 +23424,390.4,1184,467 +23425,390.4166666666667,1174,467 +23426,390.43333333333334,1165,466 +23427,390.45,1157,466 +23428,390.46666666666664,1151,465 +23429,390.48333333333335,1147,465 +23430,390.5,1144,465 +23431,390.51666666666665,1143,465 +23432,390.5333333333333,1143,465 +23433,390.55,1143,465 +23434,390.56666666666666,1146,465 +23435,390.5833333333333,1150,465 +23436,390.6,1155,466 +23437,390.6166666666667,1162,466 +23438,390.6333333333333,1171,467 +23439,390.65,1180,467 +23440,390.6666666666667,1192,468 +23441,390.68333333333334,1204,468 +23442,390.7,1218,469 +23443,390.71666666666664,1232,470 +23444,390.73333333333335,1248,470 +23445,390.75,1265,470 +23446,390.76666666666665,1282,471 +23447,390.7833333333333,1300,471 +23448,390.8,1319,472 +23449,390.81666666666666,1339,473 +23450,390.8333333333333,1359,473 +23451,390.85,1381,473 +23452,390.8666666666667,1402,473 +23453,390.8833333333333,1423,473 +23454,390.9,1445,473 +23455,390.9166666666667,1467,473 +23456,390.93333333333334,1489,473 +23457,390.95,1510,472 +23458,390.96666666666664,1532,472 +23459,390.98333333333335,1553,472 +23460,391.0,1574,471 +23461,391.01666666666665,1594,470 +23462,391.0333333333333,1614,470 +23463,391.05,1633,469 +23464,391.06666666666666,1651,468 +23465,391.0833333333333,1669,467 +23466,391.1,1685,466 +23467,391.1166666666667,1701,465 +23468,391.1333333333333,1716,464 +23469,391.15,1729,463 +23470,391.1666666666667,1741,462 +23471,391.18333333333334,1752,461 +23472,391.2,1762,460 +23473,391.21666666666664,1771,459 +23474,391.23333333333335,1778,458 +23475,391.25,1784,458 +23476,391.26666666666665,1789,457 +23477,391.2833333333333,1792,457 +23478,391.3,1793,457 +23479,391.31666666666666,1793,457 +23480,391.3333333333333,1793,457 +23481,391.35,1791,457 +23482,391.3666666666667,1787,457 +23483,391.3833333333333,1782,457 +23484,391.4,1776,458 +23485,391.4166666666667,1768,458 +23486,391.43333333333334,1759,459 +23487,391.45,1749,460 +23488,391.46666666666664,1738,461 +23489,391.48333333333335,1725,462 +23490,391.5,1712,463 +23491,391.51666666666665,1697,464 +23492,391.5333333333333,1681,465 +23493,391.55,1665,466 +23494,391.56666666666666,1647,467 +23495,391.5833333333333,1629,468 +23496,391.6,1610,469 +23497,391.6166666666667,1591,469 +23498,391.6333333333333,1571,470 +23499,391.65,1551,471 +23500,391.6666666666667,1530,471 +23501,391.68333333333334,1508,471 +23502,391.7,1487,472 +23503,391.71666666666664,1466,472 +23504,391.73333333333335,1444,472 +23505,391.75,1423,472 +23506,391.76666666666665,1402,472 +23507,391.7833333333333,1381,472 +23508,391.8,1360,472 +23509,391.81666666666666,1340,472 +23510,391.8333333333333,1321,472 +23511,391.85,1302,471 +23512,391.8666666666667,1283,470 +23513,391.8833333333333,1266,470 +23514,391.9,1250,469 +23515,391.9166666666667,1234,469 +23516,391.93333333333334,1219,469 +23517,391.95,1206,468 +23518,391.96666666666664,1193,468 +23519,391.98333333333335,1182,467 +23520,392.0,1172,467 +23521,392.01666666666665,1164,466 +23522,392.0333333333333,1156,466 +23523,392.05,1151,465 +23524,392.06666666666666,1146,465 +23525,392.0833333333333,1143,465 +23526,392.1,1143,465 +23527,392.1166666666667,1143,465 +23528,392.1333333333333,1143,465 +23529,392.15,1146,465 +23530,392.1666666666667,1150,466 +23531,392.18333333333334,1156,466 +23532,392.2,1163,467 +23533,392.21666666666664,1171,467 +23534,392.23333333333335,1181,468 +23535,392.25,1193,468 +23536,392.26666666666665,1205,469 +23537,392.2833333333333,1219,469 +23538,392.3,1234,469 +23539,392.31666666666666,1249,470 +23540,392.3333333333333,1266,471 +23541,392.35,1283,471 +23542,392.3666666666667,1302,472 +23543,392.3833333333333,1321,472 +23544,392.4,1340,473 +23545,392.4166666666667,1361,473 +23546,392.43333333333334,1382,473 +23547,392.45,1403,473 +23548,392.46666666666664,1425,473 +23549,392.48333333333335,1447,473 +23550,392.5,1468,473 +23551,392.51666666666665,1490,473 +23552,392.5333333333333,1512,473 +23553,392.55,1533,473 +23554,392.56666666666666,1554,472 +23555,392.5833333333333,1575,471 +23556,392.6,1595,471 +23557,392.6166666666667,1615,470 +23558,392.6333333333333,1633,469 +23559,392.65,1652,469 +23560,392.6666666666667,1669,468 +23561,392.68333333333334,1685,467 +23562,392.7,1701,466 +23563,392.71666666666664,1715,464 +23564,392.73333333333335,1729,463 +23565,392.75,1741,462 +23566,392.76666666666665,1752,461 +23567,392.7833333333333,1762,460 +23568,392.8,1770,460 +23569,392.81666666666666,1777,459 +23570,392.8333333333333,1783,458 +23571,392.85,1787,458 +23572,392.8666666666667,1790,457 +23573,392.8833333333333,1792,457 +23574,392.9,1792,457 +23575,392.9166666666667,1792,457 +23576,392.93333333333334,1789,457 +23577,392.95,1785,457 +23578,392.96666666666664,1780,458 +23579,392.98333333333335,1774,458 +23580,393.0,1766,459 +23581,393.01666666666665,1757,460 +23582,393.0333333333333,1747,460 +23583,393.05,1735,461 +23584,393.06666666666666,1722,462 +23585,393.0833333333333,1709,463 +23586,393.1,1694,464 +23587,393.1166666666667,1678,465 +23588,393.1333333333333,1662,466 +23589,393.15,1644,467 +23590,393.1666666666667,1626,468 +23591,393.18333333333334,1607,469 +23592,393.2,1588,469 +23593,393.21666666666664,1568,470 +23594,393.23333333333335,1547,471 +23595,393.25,1527,471 +23596,393.26666666666665,1505,471 +23597,393.2833333333333,1484,472 +23598,393.3,1463,472 +23599,393.31666666666666,1442,472 +23600,393.3333333333333,1420,472 +23601,393.35,1400,472 +23602,393.3666666666667,1378,472 +23603,393.3833333333333,1358,472 +23604,393.4,1338,472 +23605,393.4166666666667,1320,471 +23606,393.43333333333334,1301,471 +23607,393.45,1282,470 +23608,393.46666666666664,1266,470 +23609,393.48333333333335,1249,469 +23610,393.5,1234,469 +23611,393.51666666666665,1220,468 +23612,393.5333333333333,1206,468 +23613,393.55,1194,467 +23614,393.56666666666666,1183,467 +23615,393.5833333333333,1173,466 +23616,393.6,1165,465 +23617,393.6166666666667,1158,465 +23618,393.6333333333333,1152,465 +23619,393.65,1148,464 +23620,393.6666666666667,1145,464 +23621,393.68333333333334,1145,464 +23622,393.7,1145,464 +23623,393.71666666666664,1145,464 +23624,393.73333333333335,1148,464 +23625,393.75,1153,465 +23626,393.76666666666665,1158,465 +23627,393.7833333333333,1166,466 +23628,393.8,1174,466 +23629,393.81666666666666,1184,467 +23630,393.8333333333333,1195,467 +23631,393.85,1208,468 +23632,393.8666666666667,1222,468 +23633,393.8833333333333,1237,469 +23634,393.9,1252,469 +23635,393.9166666666667,1269,470 +23636,393.93333333333334,1286,470 +23637,393.95,1305,471 +23638,393.96666666666664,1324,472 +23639,393.98333333333335,1344,472 +23640,394.0,1364,472 +23641,394.01666666666665,1385,472 +23642,394.0333333333333,1406,473 +23643,394.05,1427,473 +23644,394.06666666666666,1450,473 +23645,394.0833333333333,1471,473 +23646,394.1,1493,472 +23647,394.1166666666667,1514,472 +23648,394.1333333333333,1536,472 +23649,394.15,1557,471 +23650,394.1666666666667,1577,471 +23651,394.18333333333334,1597,470 +23652,394.2,1617,469 +23653,394.21666666666664,1635,468 +23654,394.23333333333335,1653,467 +23655,394.25,1670,467 +23656,394.26666666666665,1687,466 +23657,394.2833333333333,1702,464 +23658,394.3,1716,463 +23659,394.31666666666666,1729,462 +23660,394.3333333333333,1741,461 +23661,394.35,1752,460 +23662,394.3666666666667,1762,459 +23663,394.3833333333333,1770,458 +23664,394.4,1777,458 +23665,394.4166666666667,1783,457 +23666,394.43333333333334,1787,457 +23667,394.45,1790,456 +23668,394.46666666666664,1790,456 +23669,394.48333333333335,1790,456 +23670,394.5,1790,456 +23671,394.51666666666665,1787,456 +23672,394.5333333333333,1784,457 +23673,394.55,1778,457 +23674,394.56666666666666,1772,458 +23675,394.5833333333333,1764,458 +23676,394.6,1755,459 +23677,394.6166666666667,1744,460 +23678,394.6333333333333,1733,461 +23679,394.65,1720,462 +23680,394.6666666666667,1706,463 +23681,394.68333333333334,1692,464 +23682,394.7,1676,465 +23683,394.71666666666664,1659,466 +23684,394.73333333333335,1642,467 +23685,394.75,1624,468 +23686,394.76666666666665,1605,469 +23687,394.7833333333333,1586,470 +23688,394.8,1566,470 +23689,394.81666666666666,1545,471 +23690,394.8333333333333,1525,471 +23691,394.85,1504,472 +23692,394.8666666666667,1483,472 +23693,394.8833333333333,1462,472 +23694,394.9,1441,472 +23695,394.9166666666667,1420,472 +23696,394.93333333333334,1399,472 +23697,394.95,1378,472 +23698,394.96666666666664,1357,472 +23699,394.98333333333335,1338,472 +23700,395.0,1319,472 +23701,395.01666666666665,1300,471 +23702,395.0333333333333,1282,471 +23703,395.05,1265,470 +23704,395.06666666666666,1249,470 +23705,395.0833333333333,1233,469 +23706,395.1,1219,468 +23707,395.1166666666667,1206,468 +23708,395.1333333333333,1194,468 +23709,395.15,1183,467 +23710,395.1666666666667,1173,467 +23711,395.18333333333334,1165,466 +23712,395.2,1158,466 +23713,395.21666666666664,1153,465 +23714,395.23333333333335,1149,465 +23715,395.25,1146,465 +23716,395.26666666666665,1146,465 +23717,395.2833333333333,1146,465 +23718,395.3,1147,465 +23719,395.31666666666666,1150,465 +23720,395.3333333333333,1154,465 +23721,395.35,1161,466 +23722,395.3666666666667,1168,466 +23723,395.3833333333333,1177,467 +23724,395.4,1187,467 +23725,395.4166666666667,1198,468 +23726,395.43333333333334,1211,468 +23727,395.45,1224,469 +23728,395.46666666666664,1239,470 +23729,395.48333333333335,1255,470 +23730,395.5,1272,470 +23731,395.51666666666665,1289,471 +23732,395.5333333333333,1308,472 +23733,395.55,1327,472 +23734,395.56666666666666,1346,473 +23735,395.5833333333333,1367,473 +23736,395.6,1388,473 +23737,395.6166666666667,1409,473 +23738,395.6333333333333,1430,473 +23739,395.65,1452,473 +23740,395.6666666666667,1474,473 +23741,395.68333333333334,1495,473 +23742,395.7,1516,472 +23743,395.71666666666664,1538,472 +23744,395.73333333333335,1559,472 +23745,395.75,1579,471 +23746,395.76666666666665,1599,470 +23747,395.7833333333333,1618,470 +23748,395.8,1637,469 +23749,395.81666666666666,1655,468 +23750,395.8333333333333,1671,467 +23751,395.85,1687,466 +23752,395.8666666666667,1703,465 +23753,395.8833333333333,1716,464 +23754,395.9,1729,463 +23755,395.9166666666667,1741,462 +23756,395.93333333333334,1752,461 +23757,395.95,1761,460 +23758,395.96666666666664,1770,459 +23759,395.98333333333335,1776,458 +23760,396.0,1782,458 +23761,396.01666666666665,1786,457 +23762,396.0333333333333,1789,457 +23763,396.05,1789,457 +23764,396.06666666666666,1789,457 +23765,396.0833333333333,1789,457 +23766,396.1,1786,457 +23767,396.1166666666667,1782,457 +23768,396.1333333333333,1777,458 +23769,396.15,1770,458 +23770,396.1666666666667,1762,459 +23771,396.18333333333334,1753,460 +23772,396.2,1742,460 +23773,396.21666666666664,1731,461 +23774,396.23333333333335,1718,462 +23775,396.25,1704,463 +23776,396.26666666666665,1689,464 +23777,396.2833333333333,1674,465 +23778,396.3,1657,466 +23779,396.31666666666666,1640,468 +23780,396.3333333333333,1621,468 +23781,396.35,1603,469 +23782,396.3666666666667,1583,470 +23783,396.3833333333333,1563,471 +23784,396.4,1543,471 +23785,396.4166666666667,1522,471 +23786,396.43333333333334,1501,472 +23787,396.45,1480,472 +23788,396.46666666666664,1459,472 +23789,396.48333333333335,1438,472 +23790,396.5,1417,472 +23791,396.51666666666665,1396,472 +23792,396.5333333333333,1375,472 +23793,396.55,1355,472 +23794,396.56666666666666,1335,472 +23795,396.5833333333333,1317,472 +23796,396.6,1298,471 +23797,396.6166666666667,1280,471 +23798,396.6333333333333,1263,470 +23799,396.65,1247,470 +23800,396.6666666666667,1232,469 +23801,396.68333333333334,1218,469 +23802,396.7,1205,468 +23803,396.71666666666664,1193,468 +23804,396.73333333333335,1182,467 +23805,396.75,1173,467 +23806,396.76666666666665,1165,466 +23807,396.7833333333333,1158,466 +23808,396.8,1153,466 +23809,396.81666666666666,1149,466 +23810,396.8333333333333,1146,466 +23811,396.85,1146,466 +23812,396.8666666666667,1146,466 +23813,396.8833333333333,1147,466 +23814,396.9,1151,466 +23815,396.9166666666667,1155,466 +23816,396.93333333333334,1162,467 +23817,396.95,1169,467 +23818,396.96666666666664,1178,468 +23819,396.98333333333335,1188,468 +23820,397.0,1199,469 +23821,397.01666666666665,1212,469 +23822,397.0333333333333,1226,470 +23823,397.05,1241,470 +23824,397.06666666666666,1257,471 +23825,397.0833333333333,1274,471 +23826,397.1,1291,472 +23827,397.1166666666667,1310,472 +23828,397.1333333333333,1329,473 +23829,397.15,1349,473 +23830,397.1666666666667,1369,473 +23831,397.18333333333334,1390,473 +23832,397.2,1411,473 +23833,397.21666666666664,1433,473 +23834,397.23333333333335,1454,473 +23835,397.25,1475,473 +23836,397.26666666666665,1497,473 +23837,397.2833333333333,1518,473 +23838,397.3,1539,472 +23839,397.31666666666666,1560,472 +23840,397.3333333333333,1580,471 +23841,397.35,1600,471 +23842,397.3666666666667,1619,470 +23843,397.3833333333333,1638,469 +23844,397.4,1655,469 +23845,397.4166666666667,1672,467 +23846,397.43333333333334,1688,466 +23847,397.45,1703,465 +23848,397.46666666666664,1717,464 +23849,397.48333333333335,1730,463 +23850,397.5,1742,462 +23851,397.51666666666665,1752,461 +23852,397.5333333333333,1761,460 +23853,397.55,1769,460 +23854,397.56666666666666,1776,459 +23855,397.5833333333333,1781,458 +23856,397.6,1786,458 +23857,397.6166666666667,1788,458 +23858,397.6333333333333,1788,457 +23859,397.65,1788,457 +23860,397.6666666666667,1788,457 +23861,397.68333333333334,1785,457 +23862,397.7,1781,458 +23863,397.71666666666664,1775,458 +23864,397.73333333333335,1769,459 +23865,397.75,1761,459 +23866,397.76666666666665,1751,460 +23867,397.7833333333333,1741,461 +23868,397.8,1729,462 +23869,397.81666666666666,1716,463 +23870,397.8333333333333,1703,464 +23871,397.85,1688,465 +23872,397.8666666666667,1672,466 +23873,397.8833333333333,1655,467 +23874,397.9,1638,468 +23875,397.9166666666667,1620,469 +23876,397.93333333333334,1601,469 +23877,397.95,1582,470 +23878,397.96666666666664,1562,471 +23879,397.98333333333335,1541,471 +23880,398.0,1521,472 +23881,398.01666666666665,1500,472 +23882,398.0333333333333,1479,472 +23883,398.05,1458,472 +23884,398.06666666666666,1437,472 +23885,398.0833333333333,1416,472 +23886,398.1,1395,472 +23887,398.1166666666667,1374,472 +23888,398.1333333333333,1354,472 +23889,398.15,1335,472 +23890,398.1666666666667,1316,472 +23891,398.18333333333334,1298,471 +23892,398.2,1280,471 +23893,398.21666666666664,1264,470 +23894,398.23333333333335,1248,470 +23895,398.25,1233,469 +23896,398.26666666666665,1219,469 +23897,398.2833333333333,1206,468 +23898,398.3,1194,468 +23899,398.31666666666666,1184,467 +23900,398.3333333333333,1174,467 +23901,398.35,1166,466 +23902,398.3666666666667,1159,466 +23903,398.3833333333333,1154,466 +23904,398.4,1151,465 +23905,398.4166666666667,1148,465 +23906,398.43333333333334,1148,465 +23907,398.45,1148,465 +23908,398.46666666666664,1150,466 +23909,398.48333333333335,1153,466 +23910,398.5,1158,466 +23911,398.51666666666665,1164,466 +23912,398.5333333333333,1172,467 +23913,398.55,1181,467 +23914,398.56666666666666,1191,468 +23915,398.5833333333333,1203,468 +23916,398.6,1216,469 +23917,398.6166666666667,1230,469 +23918,398.6333333333333,1245,470 +23919,398.65,1261,470 +23920,398.6666666666667,1277,471 +23921,398.68333333333334,1295,471 +23922,398.7,1313,472 +23923,398.71666666666664,1332,473 +23924,398.73333333333335,1352,473 +23925,398.75,1372,473 +23926,398.76666666666665,1393,473 +23927,398.7833333333333,1415,473 +23928,398.8,1436,473 +23929,398.81666666666666,1457,473 +23930,398.8333333333333,1479,473 +23931,398.85,1500,473 +23932,398.8666666666667,1521,473 +23933,398.8833333333333,1542,472 +23934,398.9,1562,472 +23935,398.9166666666667,1583,471 +23936,398.93333333333334,1602,470 +23937,398.95,1621,470 +23938,398.96666666666664,1640,469 +23939,398.98333333333335,1657,468 +23940,399.0,1674,467 +23941,399.01666666666665,1690,466 +23942,399.0333333333333,1705,465 +23943,399.05,1718,464 +23944,399.06666666666666,1731,463 +23945,399.0833333333333,1743,462 +23946,399.1,1753,461 +23947,399.1166666666667,1762,461 +23948,399.1333333333333,1770,460 +23949,399.15,1776,459 +23950,399.1666666666667,1781,458 +23951,399.18333333333334,1785,458 +23952,399.2,1788,458 +23953,399.21666666666664,1788,458 +23954,399.23333333333335,1788,458 +23955,399.25,1787,458 +23956,399.26666666666665,1784,458 +23957,399.2833333333333,1780,458 +23958,399.3,1774,458 +23959,399.31666666666666,1768,459 +23960,399.3333333333333,1759,460 +23961,399.35,1750,460 +23962,399.3666666666667,1739,461 +23963,399.3833333333333,1727,462 +23964,399.4,1715,463 +23965,399.4166666666667,1701,464 +23966,399.43333333333334,1686,465 +23967,399.45,1670,466 +23968,399.46666666666664,1654,467 +23969,399.48333333333335,1636,468 +23970,399.5,1618,469 +23971,399.51666666666665,1599,469 +23972,399.5333333333333,1579,470 +23973,399.55,1559,471 +23974,399.56666666666666,1539,471 +23975,399.5833333333333,1518,471 +23976,399.6,1498,472 +23977,399.6166666666667,1477,472 +23978,399.6333333333333,1455,472 +23979,399.65,1435,472 +23980,399.6666666666667,1413,472 +23981,399.68333333333334,1393,472 +23982,399.7,1372,472 +23983,399.71666666666664,1352,472 +23984,399.73333333333335,1333,472 +23985,399.75,1314,471 +23986,399.76666666666665,1296,471 +23987,399.7833333333333,1278,470 +23988,399.8,1262,470 +23989,399.81666666666666,1246,469 +23990,399.8333333333333,1231,469 +23991,399.85,1217,468 +23992,399.8666666666667,1205,468 +23993,399.8833333333333,1193,467 +23994,399.9,1183,467 +23995,399.9166666666667,1173,466 +23996,399.93333333333334,1166,466 +23997,399.95,1159,466 +23998,399.96666666666664,1154,465 +23999,399.98333333333335,1150,465 +24000,400.0,1148,465 +24001,400.01666666666665,1148,465 +24002,400.0333333333333,1148,465 +24003,400.05,1150,465 +24004,400.06666666666666,1154,465 +24005,400.0833333333333,1159,466 +24006,400.1,1165,466 +24007,400.1166666666667,1173,467 +24008,400.1333333333333,1182,467 +24009,400.15,1193,468 +24010,400.1666666666667,1204,468 +24011,400.18333333333334,1217,469 +24012,400.2,1231,469 +24013,400.21666666666664,1246,470 +24014,400.23333333333335,1262,470 +24015,400.25,1279,471 +24016,400.26666666666665,1297,471 +24017,400.2833333333333,1316,472 +24018,400.3,1334,473 +24019,400.31666666666666,1354,473 +24020,400.3333333333333,1374,473 +24021,400.35,1396,473 +24022,400.3666666666667,1416,473 +24023,400.3833333333333,1438,473 +24024,400.4,1459,473 +24025,400.4166666666667,1480,473 +24026,400.43333333333334,1502,473 +24027,400.45,1523,472 +24028,400.46666666666664,1543,472 +24029,400.48333333333335,1564,472 +24030,400.5,1584,471 +24031,400.51666666666665,1604,470 +24032,400.5333333333333,1623,470 +24033,400.55,1641,469 +24034,400.56666666666666,1658,468 +24035,400.5833333333333,1675,467 +24036,400.6,1691,466 +24037,400.6166666666667,1705,465 +24038,400.6333333333333,1719,464 +24039,400.65,1731,463 +24040,400.6666666666667,1743,462 +24041,400.68333333333334,1753,461 +24042,400.7,1762,460 +24043,400.71666666666664,1769,459 +24044,400.73333333333335,1775,459 +24045,400.75,1780,458 +24046,400.76666666666665,1784,458 +24047,400.7833333333333,1786,457 +24048,400.8,1786,457 +24049,400.81666666666666,1786,457 +24050,400.8333333333333,1785,457 +24051,400.85,1782,457 +24052,400.8666666666667,1777,458 +24053,400.8833333333333,1772,458 +24054,400.9,1764,459 +24055,400.9166666666667,1756,459 +24056,400.93333333333334,1746,460 +24057,400.95,1735,461 +24058,400.96666666666664,1723,462 +24059,400.98333333333335,1710,463 +24060,401.0,1697,464 +24061,401.01666666666665,1681,465 +24062,401.0333333333333,1666,466 +24063,401.05,1649,467 +24064,401.06666666666666,1632,468 +24065,401.0833333333333,1614,469 +24066,401.1,1595,470 +24067,401.1166666666667,1575,470 +24068,401.1333333333333,1555,471 +24069,401.15,1535,471 +24070,401.1666666666667,1515,472 +24071,401.18333333333334,1494,472 +24072,401.2,1473,472 +24073,401.21666666666664,1452,472 +24074,401.23333333333335,1431,472 +24075,401.25,1410,472 +24076,401.26666666666665,1390,472 +24077,401.2833333333333,1369,472 +24078,401.3,1350,472 +24079,401.31666666666666,1330,472 +24080,401.3333333333333,1312,471 +24081,401.35,1293,470 +24082,401.3666666666667,1276,470 +24083,401.3833333333333,1260,470 +24084,401.4,1244,469 +24085,401.4166666666667,1230,469 +24086,401.43333333333334,1216,468 +24087,401.45,1204,467 +24088,401.46666666666664,1192,467 +24089,401.48333333333335,1182,466 +24090,401.5,1173,466 +24091,401.51666666666665,1165,466 +24092,401.5333333333333,1159,465 +24093,401.55,1154,465 +24094,401.56666666666666,1151,465 +24095,401.5833333333333,1149,465 +24096,401.6,1149,465 +24097,401.6166666666667,1149,465 +24098,401.6333333333333,1151,465 +24099,401.65,1155,465 +24100,401.6666666666667,1160,466 +24101,401.68333333333334,1167,466 +24102,401.7,1174,467 +24103,401.71666666666664,1184,467 +24104,401.73333333333335,1194,468 +24105,401.75,1206,468 +24106,401.76666666666665,1219,469 +24107,401.7833333333333,1233,469 +24108,401.8,1248,470 +24109,401.81666666666666,1265,470 +24110,401.8333333333333,1281,471 +24111,401.85,1299,471 +24112,401.8666666666667,1318,472 +24113,401.8833333333333,1337,472 +24114,401.9,1356,473 +24115,401.9166666666667,1377,473 +24116,401.93333333333334,1398,473 +24117,401.95,1419,473 +24118,401.96666666666664,1440,473 +24119,401.98333333333335,1462,473 +24120,402.0,1483,473 +24121,402.01666666666665,1504,473 +24122,402.0333333333333,1525,472 +24123,402.05,1546,472 +24124,402.06666666666666,1566,471 +24125,402.0833333333333,1586,471 +24126,402.1,1605,470 +24127,402.1166666666667,1624,469 +24128,402.1333333333333,1642,469 +24129,402.15,1659,468 +24130,402.1666666666667,1676,467 +24131,402.18333333333334,1691,465 +24132,402.2,1705,465 +24133,402.21666666666664,1719,464 +24134,402.23333333333335,1731,462 +24135,402.25,1742,461 +24136,402.26666666666665,1752,461 +24137,402.2833333333333,1761,460 +24138,402.3,1768,459 +24139,402.31666666666666,1774,458 +24140,402.3333333333333,1779,458 +24141,402.35,1783,457 +24142,402.3666666666667,1785,457 +24143,402.3833333333333,1785,457 +24144,402.4,1785,457 +24145,402.4166666666667,1783,457 +24146,402.43333333333334,1780,457 +24147,402.45,1776,457 +24148,402.46666666666664,1770,458 +24149,402.48333333333335,1763,458 +24150,402.5,1754,459 +24151,402.51666666666665,1745,460 +24152,402.5333333333333,1734,461 +24153,402.55,1722,461 +24154,402.56666666666666,1709,462 +24155,402.5833333333333,1695,463 +24156,402.6,1680,464 +24157,402.6166666666667,1664,465 +24158,402.6333333333333,1647,466 +24159,402.65,1630,467 +24160,402.6666666666667,1612,468 +24161,402.68333333333334,1593,469 +24162,402.7,1573,470 +24163,402.71666666666664,1554,470 +24164,402.73333333333335,1533,471 +24165,402.75,1513,471 +24166,402.76666666666665,1492,471 +24167,402.7833333333333,1471,472 +24168,402.8,1450,472 +24169,402.81666666666666,1429,472 +24170,402.8333333333333,1409,472 +24171,402.85,1388,472 +24172,402.8666666666667,1368,472 +24173,402.8833333333333,1348,472 +24174,402.9,1329,472 +24175,402.9166666666667,1311,471 +24176,402.93333333333334,1293,471 +24177,402.95,1276,470 +24178,402.96666666666664,1260,470 +24179,402.98333333333335,1244,469 +24180,403.0,1230,469 +24181,403.01666666666665,1216,469 +24182,403.0333333333333,1204,468 +24183,403.05,1192,468 +24184,403.06666666666666,1182,467 +24185,403.0833333333333,1174,467 +24186,403.1,1167,466 +24187,403.1166666666667,1160,466 +24188,403.1333333333333,1156,466 +24189,403.15,1152,466 +24190,403.1666666666667,1151,466 +24191,403.18333333333334,1151,466 +24192,403.2,1151,466 +24193,403.21666666666664,1153,466 +24194,403.23333333333335,1157,466 +24195,403.25,1163,466 +24196,403.26666666666665,1169,467 +24197,403.2833333333333,1177,467 +24198,403.3,1186,468 +24199,403.31666666666666,1197,468 +24200,403.3333333333333,1209,469 +24201,403.35,1222,469 +24202,403.3666666666667,1236,470 +24203,403.3833333333333,1251,470 +24204,403.4,1267,471 +24205,403.4166666666667,1284,471 +24206,403.43333333333334,1302,472 +24207,403.45,1320,472 +24208,403.46666666666664,1339,473 +24209,403.48333333333335,1359,473 +24210,403.5,1379,473 +24211,403.51666666666665,1401,473 +24212,403.5333333333333,1421,473 +24213,403.55,1442,473 +24214,403.56666666666666,1442,473 +24215,403.5833333333333,1464,473 +24216,403.6,1485,473 +24217,403.6166666666667,1506,473 +24218,403.6333333333333,1527,472 +24219,403.65,1548,472 +24220,403.6666666666667,1568,471 +24221,403.68333333333334,1588,471 +24222,403.7,1607,470 +24223,403.71666666666664,1626,469 +24224,403.73333333333335,1644,469 +24225,403.75,1661,468 +24226,403.76666666666665,1677,467 +24227,403.7833333333333,1692,466 +24228,403.8,1707,465 +24229,403.81666666666666,1720,464 +24230,403.8333333333333,1732,463 +24231,403.85,1743,462 +24232,403.8666666666667,1753,461 +24233,403.8833333333333,1761,460 +24234,403.9,1769,459 +24235,403.9166666666667,1775,459 +24236,403.93333333333334,1780,458 +24237,403.95,1783,458 +24238,403.96666666666664,1785,458 +24239,403.98333333333335,1785,457 +24240,404.0,1785,457 +24241,404.01666666666665,1783,457 +24242,404.0333333333333,1779,458 +24243,404.05,1775,458 +24244,404.06666666666666,1769,458 +24245,404.0833333333333,1761,459 +24246,404.1,1753,460 +24247,404.1166666666667,1743,461 +24248,404.1333333333333,1733,461 +24249,404.15,1720,462 +24250,404.1666666666667,1707,463 +24251,404.18333333333334,1693,464 +24252,404.2,1678,465 +24253,404.21666666666664,1662,466 +24254,404.23333333333335,1645,467 +24255,404.25,1628,468 +24256,404.26666666666665,1609,469 +24257,404.2833333333333,1590,470 +24258,404.3,1571,470 +24259,404.31666666666666,1551,471 +24260,404.3333333333333,1531,471 +24261,404.35,1511,472 +24262,404.3666666666667,1490,472 +24263,404.3833333333333,1469,472 +24264,404.4,1448,473 +24265,404.4166666666667,1427,473 +24266,404.43333333333334,1407,473 +24267,404.45,1386,472 +24268,404.46666666666664,1366,472 +24269,404.48333333333335,1346,472 +24270,404.5,1327,472 +24271,404.51666666666665,1309,472 +24272,404.5333333333333,1291,471 +24273,404.55,1274,471 +24274,404.56666666666666,1258,470 +24275,404.5833333333333,1243,470 +24276,404.6,1228,470 +24277,404.6166666666667,1215,469 +24278,404.6333333333333,1202,468 +24279,404.65,1192,468 +24280,404.6666666666667,1182,467 +24281,404.68333333333334,1173,467 +24282,404.7,1166,466 +24283,404.71666666666664,1160,466 +24284,404.73333333333335,1155,466 +24285,404.75,1152,466 +24286,404.76666666666665,1151,466 +24287,404.7833333333333,1151,466 +24288,404.8,1151,466 +24289,404.81666666666666,1154,466 +24290,404.8333333333333,1158,466 +24291,404.85,1163,467 +24292,404.8666666666667,1170,467 +24293,404.8833333333333,1178,467 +24294,404.9,1188,468 +24295,404.9166666666667,1198,468 +24296,404.93333333333334,1210,469 +24297,404.95,1223,469 +24298,404.96666666666664,1237,470 +24299,404.98333333333335,1253,470 +24300,405.0,1269,471 +24301,405.01666666666665,1285,471 +24302,405.0333333333333,1304,472 +24303,405.05,1322,472 +24304,405.06666666666666,1341,473 +24305,405.0833333333333,1361,473 +24306,405.1,1382,473 +24307,405.1166666666667,1403,473 +24308,405.1333333333333,1423,473 +24309,405.15,1444,473 +24310,405.1666666666667,1466,473 +24311,405.18333333333334,1487,473 +24312,405.2,1508,473 +24313,405.21666666666664,1528,472 +24314,405.23333333333335,1549,472 +24315,405.25,1569,471 +24316,405.26666666666665,1589,471 +24317,405.2833333333333,1608,470 +24318,405.3,1627,470 +24319,405.31666666666666,1644,469 +24320,405.3333333333333,1662,468 +24321,405.35,1678,467 +24322,405.3666666666667,1693,466 +24323,405.3833333333333,1707,465 +24324,405.4,1720,464 +24325,405.4166666666667,1732,463 +24326,405.43333333333334,1743,462 +24327,405.45,1753,461 +24328,405.46666666666664,1761,460 +24329,405.48333333333335,1768,459 +24330,405.5,1774,459 +24331,405.51666666666665,1779,458 +24332,405.5333333333333,1782,458 +24333,405.55,1783,458 +24334,405.56666666666666,1783,458 +24335,405.5833333333333,1783,458 +24336,405.6,1781,458 +24337,405.6166666666667,1778,458 +24338,405.6333333333333,1773,458 +24339,405.65,1767,459 +24340,405.6666666666667,1760,459 +24341,405.68333333333334,1751,460 +24342,405.7,1741,461 +24343,405.71666666666664,1730,462 +24344,405.73333333333335,1718,462 +24345,405.75,1705,463 +24346,405.76666666666665,1691,464 +24347,405.7833333333333,1676,465 +24348,405.8,1660,466 +24349,405.81666666666666,1643,467 +24350,405.8333333333333,1626,468 +24351,405.85,1607,469 +24352,405.8666666666667,1588,470 +24353,405.8833333333333,1569,470 +24354,405.9,1549,471 +24355,405.9166666666667,1529,471 +24356,405.93333333333334,1508,472 +24357,405.95,1488,472 +24358,405.96666666666664,1467,472 +24359,405.98333333333335,1446,472 +24360,406.0,1425,472 +24361,406.01666666666665,1405,472 +24362,406.0333333333333,1385,472 +24363,406.05,1365,472 +24364,406.06666666666666,1345,472 +24365,406.0833333333333,1326,472 +24366,406.1,1308,472 +24367,406.1166666666667,1290,471 +24368,406.1333333333333,1273,471 +24369,406.15,1257,470 +24370,406.1666666666667,1242,470 +24371,406.18333333333334,1228,469 +24372,406.2,1215,469 +24373,406.21666666666664,1203,468 +24374,406.23333333333335,1191,468 +24375,406.25,1182,467 +24376,406.26666666666665,1173,467 +24377,406.2833333333333,1167,466 +24378,406.3,1161,466 +24379,406.31666666666666,1156,466 +24380,406.3333333333333,1153,466 +24381,406.35,1153,466 +24382,406.3666666666667,1153,466 +24383,406.3833333333333,1153,466 +24384,406.4,1155,466 +24385,406.4166666666667,1160,466 +24386,406.43333333333334,1165,466 +24387,406.45,1172,466 +24388,406.46666666666664,1180,467 +24389,406.48333333333335,1190,468 +24390,406.5,1201,468 +24391,406.51666666666665,1213,468 +24392,406.5333333333333,1226,469 +24393,406.55,1241,470 +24394,406.56666666666666,1256,470 +24395,406.5833333333333,1272,470 +24396,406.6,1289,471 +24397,406.6166666666667,1307,472 +24398,406.6333333333333,1326,472 +24399,406.65,1345,473 +24400,406.6666666666667,1364,473 +24401,406.68333333333334,1385,473 +24402,406.7,1406,473 +24403,406.71666666666664,1427,473 +24404,406.73333333333335,1447,473 +24405,406.75,1468,473 +24406,406.76666666666665,1490,473 +24407,406.7833333333333,1511,473 +24408,406.8,1532,472 +24409,406.81666666666666,1552,472 +24410,406.8333333333333,1572,471 +24411,406.85,1592,471 +24412,406.8666666666667,1611,470 +24413,406.8833333333333,1629,469 +24414,406.9,1647,468 +24415,406.9166666666667,1664,467 +24416,406.93333333333334,1680,467 +24417,406.95,1695,465 +24418,406.96666666666664,1709,464 +24419,406.98333333333335,1722,463 +24420,407.0,1734,462 +24421,407.01666666666665,1745,461 +24422,407.0333333333333,1754,461 +24423,407.05,1762,460 +24424,407.06666666666666,1769,459 +24425,407.0833333333333,1775,458 +24426,407.1,1779,458 +24427,407.1166666666667,1782,458 +24428,407.1333333333333,1784,457 +24429,407.15,1784,457 +24430,407.1666666666667,1784,457 +24431,407.18333333333334,1781,457 +24432,407.2,1778,458 +24433,407.21666666666664,1773,458 +24434,407.23333333333335,1766,459 +24435,407.25,1759,459 +24436,407.26666666666665,1750,460 +24437,407.2833333333333,1740,461 +24438,407.3,1729,462 +24439,407.31666666666666,1717,463 +24440,407.3333333333333,1704,464 +24441,407.35,1689,464 +24442,407.3666666666667,1674,466 +24443,407.3833333333333,1658,467 +24444,407.4,1641,468 +24445,407.4166666666667,1624,468 +24446,407.43333333333334,1605,469 +24447,407.45,1586,470 +24448,407.46666666666664,1567,470 +24449,407.48333333333335,1547,471 +24450,407.5,1527,471 +24451,407.51666666666665,1506,472 +24452,407.5333333333333,1486,472 +24453,407.55,1465,472 +24454,407.56666666666666,1444,473 +24455,407.5833333333333,1424,473 +24456,407.6,1403,473 +24457,407.6166666666667,1383,473 +24458,407.6333333333333,1363,473 +24459,407.65,1343,472 +24460,407.6666666666667,1324,472 +24461,407.68333333333334,1306,472 +24462,407.7,1289,471 +24463,407.71666666666664,1272,470 +24464,407.73333333333335,1256,470 +24465,407.75,1241,469 +24466,407.76666666666665,1227,469 +24467,407.7833333333333,1214,469 +24468,407.8,1202,468 +24469,407.81666666666666,1191,467 +24470,407.8333333333333,1182,467 +24471,407.85,1174,467 +24472,407.8666666666667,1167,467 +24473,407.8833333333333,1161,466 +24474,407.9,1157,466 +24475,407.9166666666667,1154,466 +24476,407.93333333333334,1154,466 +24477,407.95,1154,466 +24478,407.96666666666664,1154,466 +24479,407.98333333333335,1157,466 +24480,408.0,1161,466 +24481,408.01666666666665,1167,467 +24482,408.0333333333333,1174,467 +24483,408.05,1182,468 +24484,408.06666666666666,1192,468 +24485,408.0833333333333,1203,468 +24486,408.1,1215,469 +24487,408.1166666666667,1228,469 +24488,408.1333333333333,1242,470 +24489,408.15,1258,470 +24490,408.1666666666667,1274,471 +24491,408.18333333333334,1291,471 +24492,408.2,1309,472 +24493,408.21666666666664,1327,473 +24494,408.23333333333335,1346,473 +24495,408.25,1367,473 +24496,408.26666666666665,1387,473 +24497,408.2833333333333,1408,473 +24498,408.3,1428,473 +24499,408.31666666666666,1450,473 +24500,408.3333333333333,1471,473 +24501,408.35,1492,473 +24502,408.3666666666667,1513,472 +24503,408.3833333333333,1533,472 +24504,408.4,1554,472 +24505,408.4166666666667,1574,471 +24506,408.43333333333334,1593,471 +24507,408.45,1612,470 +24508,408.46666666666664,1630,469 +24509,408.48333333333335,1648,468 +24510,408.5,1664,468 +24511,408.51666666666665,1680,467 +24512,408.5333333333333,1695,466 +24513,408.55,1709,464 +24514,408.56666666666666,1722,463 +24515,408.5833333333333,1734,462 +24516,408.6,1744,461 +24517,408.6166666666667,1754,461 +24518,408.6333333333333,1762,460 +24519,408.65,1769,459 +24520,408.6666666666667,1774,458 +24521,408.68333333333334,1779,458 +24522,408.7,1781,458 +24523,408.71666666666664,1782,458 +24524,408.73333333333335,1782,458 +24525,408.75,1782,458 +24526,408.76666666666665,1780,458 +24527,408.7833333333333,1776,458 +24528,408.8,1771,458 +24529,408.81666666666666,1765,459 +24530,408.8333333333333,1757,459 +24531,408.85,1748,460 +24532,408.8666666666667,1738,461 +24533,408.8833333333333,1727,462 +24534,408.9,1715,463 +24535,408.9166666666667,1701,464 +24536,408.93333333333334,1687,464 +24537,408.95,1672,465 +24538,408.96666666666664,1656,466 +24539,408.98333333333335,1639,467 +24540,409.0,1621,468 +24541,409.01666666666665,1603,469 +24542,409.0333333333333,1584,470 +24543,409.05,1564,470 +24544,409.06666666666666,1544,471 +24545,409.0833333333333,1524,471 +24546,409.1,1504,472 +24547,409.1166666666667,1483,472 +24548,409.1333333333333,1462,472 +24549,409.15,1442,472 +24550,409.1666666666667,1421,472 +24551,409.18333333333334,1401,472 +24552,409.2,1380,472 +24553,409.21666666666664,1360,472 +24554,409.23333333333335,1340,472 +24555,409.25,1322,472 +24556,409.26666666666665,1304,471 +24557,409.2833333333333,1286,471 +24558,409.3,1270,470 +24559,409.31666666666666,1254,470 +24560,409.3333333333333,1239,469 +24561,409.35,1225,469 +24562,409.3666666666667,1212,468 +24563,409.3833333333333,1200,468 +24564,409.4,1189,468 +24565,409.4166666666667,1180,467 +24566,409.43333333333334,1172,467 +24567,409.45,1165,466 +24568,409.46666666666664,1159,466 +24569,409.48333333333335,1156,466 +24570,409.5,1153,466 +24571,409.51666666666665,1153,466 +24572,409.5333333333333,1153,466 +24573,409.55,1154,466 +24574,409.56666666666666,1156,466 +24575,409.5833333333333,1161,466 +24576,409.6,1167,467 +24577,409.6166666666667,1174,467 +24578,409.6333333333333,1183,467 +24579,409.65,1193,468 +24580,409.6666666666667,1203,468 +24581,409.68333333333334,1216,469 +24582,409.7,1229,469 +24583,409.71666666666664,1244,470 +24584,409.73333333333335,1259,470 +24585,409.75,1275,471 +24586,409.76666666666665,1293,471 +24587,409.7833333333333,1311,472 +24588,409.8,1329,472 +24589,409.81666666666666,1348,473 +24590,409.8333333333333,1368,473 +24591,409.84999999999997,1389,473 +24592,409.8666666666667,1409,473 +24593,409.8833333333333,1430,473 +24594,409.9,1451,473 +24595,409.9166666666667,1472,473 +24596,409.93333333333334,1493,473 +24597,409.95,1514,472 +24598,409.96666666666664,1535,472 +24599,409.98333333333335,1555,472 +24600,410.0,1575,471 +24601,410.01666666666665,1594,471 +24602,410.0333333333333,1613,470 +24603,410.05,1631,469 +24604,410.06666666666666,1648,468 +24605,410.0833333333333,1665,468 +24606,410.09999999999997,1681,467 +24607,410.1166666666667,1695,466 +24608,410.1333333333333,1709,465 +24609,410.15,1722,464 +24610,410.1666666666667,1733,462 +24611,410.18333333333334,1744,462 +24612,410.2,1753,461 +24613,410.21666666666664,1761,460 +24614,410.23333333333335,1768,459 +24615,410.25,1773,459 +24616,410.26666666666665,1777,458 +24617,410.2833333333333,1780,458 +24618,410.3,1780,458 +24619,410.31666666666666,1780,458 +24620,410.3333333333333,1780,458 +24621,410.34999999999997,1778,458 +24622,410.3666666666667,1774,458 +24623,410.3833333333333,1768,458 +24624,410.4,1762,459 +24625,410.4166666666667,1754,460 +24626,410.43333333333334,1745,460 +24627,410.45,1735,461 +24628,410.46666666666664,1724,462 +24629,410.48333333333335,1712,463 +24630,410.5,1698,464 +24631,410.51666666666665,1684,465 +24632,410.5333333333333,1669,466 +24633,410.55,1652,467 +24634,410.56666666666666,1635,467 +24635,410.5833333333333,1618,468 +24636,410.59999999999997,1600,469 +24637,410.6166666666667,1581,470 +24638,410.6333333333333,1561,470 +24639,410.65,1541,471 +24640,410.6666666666667,1521,471 +24641,410.68333333333334,1501,472 +24642,410.7,1481,472 +24643,410.71666666666664,1460,472 +24644,410.73333333333335,1439,472 +24645,410.75,1419,472 +24646,410.76666666666665,1399,472 +24647,410.7833333333333,1378,472 +24648,410.8,1359,472 +24649,410.81666666666666,1339,472 +24650,410.8333333333333,1321,471 +24651,410.84999999999997,1303,471 +24652,410.8666666666667,1286,470 +24653,410.8833333333333,1269,470 +24654,410.9,1253,470 +24655,410.9166666666667,1239,469 +24656,410.93333333333334,1225,469 +24657,410.95,1212,468 +24658,410.96666666666664,1201,468 +24659,410.98333333333335,1190,467 +24660,411.0,1181,467 +24661,411.01666666666665,1173,466 +24662,411.0333333333333,1166,466 +24663,411.05,1161,465 +24664,411.06666666666666,1157,465 +24665,411.0833333333333,1155,465 +24666,411.09999999999997,1155,465 +24667,411.1166666666667,1155,465 +24668,411.1333333333333,1156,465 +24669,411.15,1159,466 +24670,411.1666666666667,1163,466 +24671,411.18333333333334,1169,466 +24672,411.2,1177,467 +24673,411.21666666666664,1185,467 +24674,411.23333333333335,1195,467 +24675,411.25,1206,468 +24676,411.26666666666665,1219,468 +24677,411.2833333333333,1232,469 +24678,411.3,1247,469 +24679,411.31666666666666,1262,470 +24680,411.3333333333333,1278,470 +24681,411.34999999999997,1295,471 +24682,411.3666666666667,1313,471 +24683,411.3833333333333,1332,472 +24684,411.4,1351,472 +24685,411.4166666666667,1371,472 +24686,411.43333333333334,1391,472 +24687,411.45,1412,473 +24688,411.46666666666664,1433,473 +24689,411.48333333333335,1454,473 +24690,411.5,1475,472 +24691,411.51666666666665,1495,472 +24692,411.5333333333333,1516,472 +24693,411.55,1537,472 +24694,411.56666666666666,1557,471 +24695,411.5833333333333,1577,471 +24696,411.59999999999997,1596,470 +24697,411.6166666666667,1615,470 +24698,411.6333333333333,1633,469 +24699,411.65,1650,468 +24700,411.6666666666667,1666,467 +24701,411.68333333333334,1682,466 +24702,411.7,1696,465 +24703,411.71666666666664,1710,464 +24704,411.73333333333335,1722,463 +24705,411.75,1734,462 +24706,411.76666666666665,1744,461 +24707,411.7833333333333,1753,460 +24708,411.8,1761,459 +24709,411.81666666666666,1767,459 +24710,411.8333333333333,1772,458 +24711,411.84999999999997,1776,458 +24712,411.8666666666667,1779,457 +24713,411.8833333333333,1779,457 +24714,411.9,1779,457 +24715,411.9166666666667,1779,457 +24716,411.93333333333334,1776,457 +24717,411.95,1772,457 +24718,411.96666666666664,1766,458 +24719,411.98333333333335,1760,458 +24720,412.0,1752,459 +24721,412.01666666666665,1743,460 +24722,412.0333333333333,1733,460 +24723,412.05,1722,461 +24724,412.06666666666666,1709,462 +24725,412.0833333333333,1696,463 +24726,412.09999999999997,1681,464 +24727,412.1166666666667,1666,465 +24728,412.1333333333333,1650,466 +24729,412.15,1633,467 +24730,412.1666666666667,1615,468 +24731,412.18333333333334,1597,469 +24732,412.2,1578,469 +24733,412.21666666666664,1559,470 +24734,412.23333333333335,1539,470 +24735,412.25,1519,471 +24736,412.26666666666665,1498,471 +24737,412.2833333333333,1478,471 +24738,412.3,1457,472 +24739,412.31666666666666,1437,472 +24740,412.3333333333333,1417,472 +24741,412.34999999999997,1397,472 +24742,412.3666666666667,1377,472 +24743,412.3833333333333,1357,472 +24744,412.4,1338,472 +24745,412.4166666666667,1320,471 +24746,412.43333333333334,1301,471 +24747,412.45,1284,470 +24748,412.46666666666664,1268,470 +24749,412.48333333333335,1253,469 +24750,412.5,1238,469 +24751,412.51666666666665,1225,469 +24752,412.5333333333333,1212,468 +24753,412.55,1201,468 +24754,412.56666666666666,1190,467 +24755,412.5833333333333,1181,467 +24756,412.59999999999997,1174,467 +24757,412.6166666666667,1167,466 +24758,412.6333333333333,1162,466 +24759,412.65,1158,466 +24760,412.6666666666667,1156,466 +24761,412.68333333333334,1156,466 +24762,412.7,1156,466 +24763,412.71666666666664,1158,466 +24764,412.73333333333335,1161,466 +24765,412.75,1166,467 +24766,412.76666666666665,1172,467 +24767,412.7833333333333,1179,467 +24768,412.8,1188,468 +24769,412.81666666666666,1198,468 +24770,412.8333333333333,1209,469 +24771,412.84999999999997,1222,469 +24772,412.8666666666667,1235,470 +24773,412.8833333333333,1250,470 +24774,412.9,1265,471 +24775,412.9166666666667,1282,471 +24776,412.93333333333334,1299,472 +24777,412.95,1317,472 +24778,412.96666666666664,1336,473 +24779,412.98333333333335,1355,473 +24780,413.0,1375,473 +24781,413.01666666666665,1395,473 +24782,413.0333333333333,1415,473 +24783,413.05,1436,473 +24784,413.06666666666666,1457,473 +24785,413.0833333333333,1478,473 +24786,413.09999999999997,1499,473 +24787,413.1166666666667,1520,473 +24788,413.1333333333333,1540,472 +24789,413.15,1560,472 +24790,413.1666666666667,1580,471 +24791,413.18333333333334,1599,471 +24792,413.2,1617,470 +24793,413.21666666666664,1635,469 +24794,413.23333333333335,1652,469 +24795,413.25,1668,468 +24796,413.26666666666665,1684,467 +24797,413.2833333333333,1698,466 +24798,413.3,1712,464 +24799,413.31666666666666,1724,463 +24800,413.3333333333333,1735,463 +24801,413.34999999999997,1745,462 +24802,413.3666666666667,1754,461 +24803,413.3833333333333,1762,460 +24804,413.4,1768,459 +24805,413.4166666666667,1773,459 +24806,413.43333333333334,1777,458 +24807,413.45,1779,458 +24808,413.46666666666664,1779,458 +24809,413.48333333333335,1779,458 +24810,413.5,1778,458 +24811,413.51666666666665,1775,458 +24812,413.5333333333333,1771,458 +24813,413.55,1765,459 +24814,413.56666666666666,1759,459 +24815,413.5833333333333,1751,460 +24816,413.59999999999997,1742,460 +24817,413.6166666666667,1731,461 +24818,413.6333333333333,1720,462 +24819,413.65,1707,463 +24820,413.6666666666667,1694,464 +24821,413.68333333333334,1679,465 +24822,413.7,1664,466 +24823,413.71666666666664,1648,467 +24824,413.73333333333335,1631,468 +24825,413.75,1613,469 +24826,413.76666666666665,1595,469 +24827,413.7833333333333,1576,470 +24828,413.8,1556,471 +24829,413.81666666666666,1537,471 +24830,413.8333333333333,1517,471 +24831,413.84999999999997,1496,472 +24832,413.8666666666667,1476,472 +24833,413.8833333333333,1455,472 +24834,413.9,1435,472 +24835,413.9166666666667,1414,472 +24836,413.93333333333334,1394,472 +24837,413.95,1375,472 +24838,413.96666666666664,1355,472 +24839,413.98333333333335,1336,472 +24840,414.0,1318,472 +24841,414.01666666666665,1300,471 +24842,414.0333333333333,1283,471 +24843,414.05,1266,470 +24844,414.06666666666666,1251,470 +24845,414.0833333333333,1237,470 +24846,414.09999999999997,1224,469 +24847,414.1166666666667,1211,469 +24848,414.1333333333333,1199,468 +24849,414.15,1189,468 +24850,414.1666666666667,1180,467 +24851,414.18333333333334,1173,467 +24852,414.2,1167,467 +24853,414.21666666666664,1162,466 +24854,414.23333333333335,1158,466 +24855,414.25,1156,466 +24856,414.26666666666665,1156,466 +24857,414.2833333333333,1156,466 +24858,414.3,1158,466 +24859,414.31666666666666,1162,466 +24860,414.3333333333333,1166,467 +24861,414.34999999999997,1172,467 +24862,414.3666666666667,1180,467 +24863,414.3833333333333,1189,468 +24864,414.4,1199,468 +24865,414.4166666666667,1211,469 +24866,414.43333333333334,1223,469 +24867,414.45,1237,470 +24868,414.46666666666664,1251,470 +24869,414.48333333333335,1267,471 +24870,414.5,1283,471 +24871,414.51666666666665,1300,472 +24872,414.5333333333333,1319,472 +24873,414.55,1337,473 +24874,414.56666666666666,1356,473 +24875,414.5833333333333,1376,473 +24876,414.59999999999997,1397,473 +24877,414.6166666666667,1417,473 +24878,414.6333333333333,1438,473 +24879,414.65,1459,473 +24880,414.6666666666667,1479,473 +24881,414.68333333333334,1500,473 +24882,414.7,1521,473 +24883,414.71666666666664,1541,472 +24884,414.73333333333335,1561,472 +24885,414.75,1581,471 +24886,414.76666666666665,1599,471 +24887,414.7833333333333,1618,470 +24888,414.8,1636,469 +24889,414.81666666666666,1652,468 +24890,414.8333333333333,1669,467 +24891,414.84999999999997,1684,467 +24892,414.8666666666667,1698,465 +24893,414.8833333333333,1711,464 +24894,414.9,1724,463 +24895,414.9166666666667,1735,462 +24896,414.93333333333334,1745,461 +24897,414.95,1753,461 +24898,414.96666666666664,1760,460 +24899,414.98333333333335,1767,459 +24900,415.0,1772,459 +24901,415.01666666666665,1775,458 +24902,415.0333333333333,1778,458 +24903,415.05,1778,458 +24904,415.06666666666666,1778,458 +24905,415.0833333333333,1776,458 +24906,415.09999999999997,1773,458 +24907,415.1166666666667,1769,458 +24908,415.1333333333333,1764,459 +24909,415.15,1757,459 +24910,415.1666666666667,1749,460 +24911,415.18333333333334,1740,461 +24912,415.2,1729,461 +24913,415.21666666666664,1718,462 +24914,415.23333333333335,1705,463 +24915,415.25,1692,464 +24916,415.26666666666665,1677,465 +24917,415.2833333333333,1662,466 +24918,415.3,1646,467 +24919,415.31666666666666,1629,468 +24920,415.3333333333333,1611,469 +24921,415.34999999999997,1592,469 +24922,415.3666666666667,1573,470 +24923,415.3833333333333,1554,470 +24924,415.4,1535,471 +24925,415.4166666666667,1514,471 +24926,415.43333333333334,1494,472 +24927,415.45,1474,472 +24928,415.46666666666664,1453,472 +24929,415.48333333333335,1433,472 +24930,415.5,1413,472 +24931,415.51666666666665,1393,472 +24932,415.5333333333333,1373,472 +24933,415.55,1353,472 +24934,415.56666666666666,1334,472 +24935,415.5833333333333,1316,472 +24936,415.59999999999997,1298,471 +24937,415.6166666666667,1281,471 +24938,415.6333333333333,1266,470 +24939,415.65,1250,470 +24940,415.6666666666667,1236,469 +24941,415.68333333333334,1223,469 +24942,415.7,1210,468 +24943,415.71666666666664,1199,468 +24944,415.73333333333335,1189,467 +24945,415.75,1180,467 +24946,415.76666666666665,1173,466 +24947,415.7833333333333,1167,466 +24948,415.8,1162,466 +24949,415.81666666666666,1159,466 +24950,415.8333333333333,1157,466 +24951,415.84999999999997,1157,466 +24952,415.8666666666667,1157,466 +24953,415.8833333333333,1159,466 +24954,415.9,1163,466 +24955,415.9166666666667,1168,467 +24956,415.93333333333334,1174,467 +24957,415.95,1181,467 +24958,415.96666666666664,1190,468 +24959,415.98333333333335,1200,468 +24960,416.0,1212,469 +24961,416.01666666666665,1225,469 +24962,416.0333333333333,1238,470 +24963,416.05,1253,470 +24964,416.06666666666666,1269,471 +24965,416.0833333333333,1285,471 +24966,416.09999999999997,1302,472 +24967,416.1166666666667,1321,472 +24968,416.1333333333333,1339,473 +24969,416.15,1358,473 +24970,416.1666666666667,1378,473 +24971,416.18333333333334,1399,473 +24972,416.2,1419,473 +24973,416.21666666666664,1439,473 +24974,416.23333333333335,1461,473 +24975,416.25,1481,473 +24976,416.26666666666665,1502,473 +24977,416.2833333333333,1522,473 +24978,416.3,1543,472 +24979,416.31666666666666,1563,472 +24980,416.3333333333333,1582,471 +24981,416.34999999999997,1601,471 +24982,416.3666666666667,1619,470 +24983,416.3833333333333,1637,469 +24984,416.4,1653,468 +24985,416.4166666666667,1669,467 +24986,416.43333333333334,1684,466 +24987,416.45,1699,465 +24988,416.46666666666664,1712,464 +24989,416.48333333333335,1724,463 +24990,416.5,1735,462 +24991,416.51666666666665,1744,461 +24992,416.5333333333333,1753,461 +24993,416.55,1760,460 +24994,416.56666666666666,1766,459 +24995,416.5833333333333,1771,459 +24996,416.59999999999997,1775,458 +24997,416.6166666666667,1777,458 +24998,416.6333333333333,1777,458 +24999,416.65,1777,458 +25000,416.6666666666667,1775,458 +25001,416.68333333333334,1772,458 +25002,416.7,1768,458 +25003,416.71666666666664,1762,459 +25004,416.73333333333335,1755,459 +25005,416.75,1747,460 +25006,416.76666666666665,1738,461 +25007,416.7833333333333,1727,462 +25008,416.8,1716,462 +25009,416.81666666666666,1703,463 +25010,416.8333333333333,1689,464 +25011,416.84999999999997,1675,465 +25012,416.8666666666667,1659,466 +25013,416.8833333333333,1643,467 +25014,416.9,1626,468 +25015,416.9166666666667,1608,469 +25016,416.93333333333334,1590,469 +25017,416.95,1571,470 +25018,416.96666666666664,1552,470 +25019,416.98333333333335,1532,471 +25020,417.0,1512,471 +25021,417.01666666666665,1492,472 +25022,417.0333333333333,1471,472 +25023,417.05,1451,472 +25024,417.06666666666666,1431,472 +25025,417.0833333333333,1411,472 +25026,417.09999999999997,1391,472 +25027,417.1166666666667,1371,472 +25028,417.1333333333333,1352,472 +25029,417.15,1333,472 +25030,417.1666666666667,1315,472 +25031,417.18333333333334,1297,471 +25032,417.2,1280,471 +25033,417.21666666666664,1264,471 +25034,417.23333333333335,1249,470 +25035,417.25,1235,470 +25036,417.26666666666665,1222,469 +25037,417.2833333333333,1210,469 +25038,417.3,1199,468 +25039,417.31666666666666,1189,468 +25040,417.3333333333333,1180,467 +25041,417.34999999999997,1173,467 +25042,417.3666666666667,1167,467 +25043,417.3833333333333,1163,466 +25044,417.4,1159,466 +25045,417.4166666666667,1158,466 +25046,417.43333333333334,1158,466 +25047,417.45,1158,466 +25048,417.46666666666664,1160,466 +25049,417.48333333333335,1164,467 +25050,417.5,1169,467 +25051,417.51666666666665,1176,467 +25052,417.5333333333333,1183,468 +25053,417.55,1192,468 +25054,417.56666666666666,1203,469 +25055,417.5833333333333,1215,469 +25056,417.59999999999997,1227,470 +25057,417.6166666666667,1241,470 +25058,417.6333333333333,1256,471 +25059,417.65,1271,471 +25060,417.6666666666667,1288,472 +25061,417.68333333333334,1305,472 +25062,417.7,1323,473 +25063,417.71666666666664,1342,473 +25064,417.73333333333335,1361,473 +25065,417.75,1381,473 +25066,417.76666666666665,1402,473 +25067,417.7833333333333,1422,473 +25068,417.8,1443,473 +25069,417.81666666666666,1463,473 +25070,417.8333333333333,1484,473 +25071,417.84999999999997,1505,473 +25072,417.8666666666667,1525,472 +25073,417.8833333333333,1545,472 +25074,417.9,1565,471 +25075,417.9166666666667,1585,471 +25076,417.93333333333334,1603,470 +25077,417.95,1621,470 +25078,417.96666666666664,1639,469 +25079,417.98333333333335,1655,468 +25080,418.0,1671,467 +25081,418.01666666666665,1686,466 +25082,418.0333333333333,1700,465 +25083,418.05,1713,464 +25084,418.06666666666666,1725,463 +25085,418.0833333333333,1736,462 +25086,418.09999999999997,1745,461 +25087,418.1166666666667,1754,461 +25088,418.1333333333333,1761,460 +25089,418.15,1767,459 +25090,418.1666666666667,1771,459 +25091,418.18333333333334,1774,458 +25092,418.2,1776,458 +25093,418.21666666666664,1776,458 +25094,418.23333333333335,1776,458 +25095,418.25,1775,458 +25096,418.26666666666665,1771,458 +25097,418.2833333333333,1767,458 +25098,418.3,1761,459 +25099,418.31666666666666,1754,459 +25100,418.3333333333333,1746,460 +25101,418.34999999999997,1736,461 +25102,418.3666666666667,1726,461 +25103,418.3833333333333,1714,462 +25104,418.4,1701,463 +25105,418.4166666666667,1687,464 +25106,418.43333333333334,1673,465 +25107,418.45,1657,466 +25108,418.46666666666664,1641,467 +25109,418.48333333333335,1624,468 +25110,418.5,1606,469 +25111,418.51666666666665,1588,469 +25112,418.5333333333333,1569,470 +25113,418.55,1549,471 +25114,418.56666666666666,1530,471 +25115,418.5833333333333,1510,472 +25116,418.59999999999997,1490,472 +25117,418.6166666666667,1469,472 +25118,418.6333333333333,1449,472 +25119,418.65,1429,472 +25120,418.6666666666667,1409,472 +25121,418.68333333333334,1389,472 +25122,418.7,1369,472 +25123,418.71666666666664,1350,472 +25124,418.73333333333335,1331,472 +25125,418.75,1313,472 +25126,418.76666666666665,1296,471 +25127,418.7833333333333,1279,471 +25128,418.8,1263,470 +25129,418.81666666666666,1249,470 +25130,418.8333333333333,1235,469 +25131,418.84999999999997,1221,469 +25132,418.8666666666667,1209,468 +25133,418.8833333333333,1199,468 +25134,418.9,1189,468 +25135,418.9166666666667,1181,467 +25136,418.93333333333334,1173,467 +25137,418.95,1168,466 +25138,418.96666666666664,1163,466 +25139,418.98333333333335,1160,466 +25140,419.0,1159,466 +25141,419.01666666666665,1159,466 +25142,419.0333333333333,1159,466 +25143,419.05,1162,466 +25144,419.06666666666666,1166,466 +25145,419.0833333333333,1171,467 +25146,419.09999999999997,1178,467 +25147,419.1166666666667,1186,468 +25148,419.1333333333333,1195,468 +25149,419.15,1205,469 +25150,419.1666666666667,1217,469 +25151,419.18333333333334,1230,470 +25152,419.2,1244,470 +25153,419.21666666666664,1259,471 +25154,419.23333333333335,1274,471 +25155,419.25,1291,472 +25156,419.26666666666665,1308,472 +25157,419.2833333333333,1326,473 +25158,419.3,1345,473 +25159,419.31666666666666,1365,473 +25160,419.3333333333333,1385,473 +25161,419.34999999999997,1405,473 +25162,419.3666666666667,1425,473 +25163,419.3833333333333,1446,473 +25164,419.4,1466,473 +25165,419.4166666666667,1487,473 +25166,419.43333333333334,1507,473 +25167,419.45,1528,472 +25168,419.46666666666664,1548,472 +25169,419.48333333333335,1567,471 +25170,419.5,1586,471 +25171,419.51666666666665,1605,470 +25172,419.5333333333333,1623,470 +25173,419.55,1641,469 +25174,419.56666666666666,1657,468 +25175,419.5833333333333,1673,467 +25176,419.59999999999997,1688,466 +25177,419.6166666666667,1701,465 +25178,419.6333333333333,1714,464 +25179,419.65,1726,463 +25180,419.6666666666667,1736,462 +25181,419.68333333333334,1746,462 +25182,419.7,1754,461 +25183,419.71666666666664,1761,460 +25184,419.73333333333335,1766,459 +25185,419.75,1771,459 +25186,419.76666666666665,1774,458 +25187,419.7833333333333,1776,458 +25188,419.8,1776,458 +25189,419.81666666666666,1776,458 +25190,419.8333333333333,1773,458 +25191,419.84999999999997,1770,458 +25192,419.8666666666667,1765,459 +25193,419.8833333333333,1759,459 +25194,419.9,1752,460 +25195,419.9166666666667,1744,460 +25196,419.93333333333334,1734,461 +25197,419.95,1724,462 +25198,419.96666666666664,1712,463 +25199,419.98333333333335,1699,464 +25200,420.0,1685,465 +25201,420.01666666666665,1670,466 +25202,420.0333333333333,1655,467 +25203,420.05,1638,467 +25204,420.06666666666666,1621,468 +25205,420.0833333333333,1603,469 +25206,420.09999999999997,1585,470 +25207,420.1166666666667,1566,470 +25208,420.1333333333333,1547,471 +25209,420.15,1527,471 +25210,420.1666666666667,1507,472 +25211,420.18333333333334,1487,472 +25212,420.2,1467,472 +25213,420.21666666666664,1447,472 +25214,420.23333333333335,1426,472 +25215,420.25,1406,472 +25216,420.26666666666665,1387,472 +25217,420.2833333333333,1367,472 +25218,420.3,1348,472 +25219,420.31666666666666,1330,472 +25220,420.3333333333333,1312,472 +25221,420.34999999999997,1294,472 +25222,420.3666666666667,1278,471 +25223,420.3833333333333,1262,471 +25224,420.4,1247,470 +25225,420.4166666666667,1234,470 +25226,420.43333333333334,1221,469 +25227,420.45,1209,469 +25228,420.46666666666664,1198,468 +25229,420.48333333333335,1189,468 +25230,420.5,1181,467 +25231,420.51666666666665,1174,467 +25232,420.5333333333333,1168,467 +25233,420.55,1164,467 +25234,420.56666666666666,1161,467 +25235,420.5833333333333,1161,466 +25236,420.59999999999997,1161,466 +25237,420.6166666666667,1161,466 +25238,420.6333333333333,1163,467 +25239,420.65,1168,467 +25240,420.6666666666667,1173,467 +25241,420.68333333333334,1180,468 +25242,420.7,1188,468 +25243,420.71666666666664,1197,468 +25244,420.73333333333335,1208,469 +25245,420.75,1220,469 +25246,420.76666666666665,1233,470 +25247,420.7833333333333,1246,470 +25248,420.8,1261,471 +25249,420.81666666666666,1277,472 +25250,420.8333333333333,1294,472 +25251,420.84999999999997,1311,473 +25252,420.8666666666667,1329,473 +25253,420.8833333333333,1348,473 +25254,420.9,1367,473 +25255,420.9166666666667,1387,473 +25256,420.93333333333334,1407,473 +25257,420.95,1427,473 +25258,420.96666666666664,1448,473 +25259,420.98333333333335,1469,473 +25260,421.0,1489,473 +25261,421.01666666666665,1510,473 +25262,421.0333333333333,1530,473 +25263,421.05,1550,472 +25264,421.06666666666666,1569,472 +25265,421.0833333333333,1588,471 +25266,421.09999999999997,1607,470 +25267,421.1166666666667,1625,470 +25268,421.1333333333333,1642,469 +25269,421.15,1658,468 +25270,421.1666666666667,1674,467 +25271,421.18333333333334,1688,466 +25272,421.2,1702,465 +25273,421.21666666666664,1715,464 +25274,421.23333333333335,1726,463 +25275,421.25,1737,462 +25276,421.26666666666665,1746,462 +25277,421.2833333333333,1754,461 +25278,421.3,1761,460 +25279,421.31666666666666,1766,460 +25280,421.3333333333333,1770,459 +25281,421.34999999999997,1773,458 +25282,421.3666666666667,1774,458 +25283,421.3833333333333,1774,458 +25284,421.4,1774,458 +25285,421.4166666666667,1772,458 +25286,421.43333333333334,1768,458 +25287,421.45,1764,459 +25288,421.46666666666664,1757,459 +25289,421.48333333333335,1750,460 +25290,421.5,1742,460 +25291,421.51666666666665,1732,461 +25292,421.5333333333333,1721,462 +25293,421.55,1709,463 +25294,421.56666666666666,1697,464 +25295,421.5833333333333,1683,465 +25296,421.59999999999997,1668,466 +25297,421.6166666666667,1652,467 +25298,421.6333333333333,1636,468 +25299,421.65,1619,468 +25300,421.6666666666667,1601,469 +25301,421.68333333333334,1583,470 +25302,421.7,1564,470 +25303,421.71666666666664,1544,471 +25304,421.73333333333335,1525,471 +25305,421.75,1505,472 +25306,421.76666666666665,1485,472 +25307,421.7833333333333,1464,472 +25308,421.8,1444,472 +25309,421.81666666666666,1425,472 +25310,421.8333333333333,1405,472 +25311,421.84999999999997,1385,472 +25312,421.8666666666667,1366,472 +25313,421.8833333333333,1346,472 +25314,421.9,1328,472 +25315,421.9166666666667,1310,471 +25316,421.93333333333334,1293,471 +25317,421.95,1277,471 +25318,421.96666666666664,1262,471 +25319,421.98333333333335,1247,470 +25320,422.0,1233,469 +25321,422.01666666666665,1221,469 +25322,422.0333333333333,1209,469 +25323,422.05,1198,468 +25324,422.06666666666666,1189,468 +25325,422.0833333333333,1181,467 +25326,422.09999999999997,1174,467 +25327,422.1166666666667,1169,467 +25328,422.1333333333333,1165,467 +25329,422.15,1162,467 +25330,422.1666666666667,1162,467 +25331,422.18333333333334,1162,467 +25332,422.2,1162,467 +25333,422.21666666666664,1165,467 +25334,422.23333333333335,1169,467 +25335,422.25,1174,467 +25336,422.26666666666665,1182,468 +25337,422.2833333333333,1190,468 +25338,422.3,1199,469 +25339,422.31666666666666,1210,469 +25340,422.3333333333333,1222,470 +25341,422.34999999999997,1235,470 +25342,422.3666666666667,1249,471 +25343,422.3833333333333,1264,471 +25344,422.4,1279,471 +25345,422.4166666666667,1296,472 +25346,422.43333333333334,1314,472 +25347,422.45,1331,473 +25348,422.46666666666664,1350,473 +25349,422.48333333333335,1370,473 +25350,422.5,1389,473 +25351,422.51666666666665,1410,473 +25352,422.5333333333333,1430,473 +25353,422.55,1450,473 +25354,422.56666666666666,1471,473 +25355,422.5833333333333,1491,473 +25356,422.59999999999997,1512,473 +25357,422.6166666666667,1532,472 +25358,422.6333333333333,1551,472 +25359,422.65,1571,471 +25360,422.6666666666667,1590,471 +25361,422.68333333333334,1608,470 +25362,422.7,1626,469 +25363,422.71666666666664,1643,469 +25364,422.73333333333335,1659,468 +25365,422.75,1674,467 +25366,422.76666666666665,1689,466 +25367,422.7833333333333,1702,465 +25368,422.8,1715,464 +25369,422.81666666666666,1726,463 +25370,422.8333333333333,1736,462 +25371,422.84999999999997,1745,461 +25372,422.8666666666667,1753,460 +25373,422.8833333333333,1760,460 +25374,422.9,1765,459 +25375,422.9166666666667,1769,459 +25376,422.93333333333334,1772,458 +25377,422.95,1773,458 +25378,422.96666666666664,1773,458 +25379,422.98333333333335,1773,458 +25380,423.0,1770,458 +25381,423.01666666666665,1767,459 +25382,423.0333333333333,1762,459 +25383,423.05,1755,459 +25384,423.06666666666666,1748,460 +25385,423.0833333333333,1740,461 +25386,423.09999999999997,1730,461 +25387,423.1166666666667,1719,462 +25388,423.1333333333333,1707,463 +25389,423.15,1694,464 +25390,423.1666666666667,1680,465 +25391,423.18333333333334,1665,466 +25392,423.2,1650,467 +25393,423.21666666666664,1633,468 +25394,423.23333333333335,1616,468 +25395,423.25,1598,469 +25396,423.26666666666665,1580,470 +25397,423.2833333333333,1561,470 +25398,423.3,1542,471 +25399,423.31666666666666,1522,471 +25400,423.3333333333333,1502,472 +25401,423.34999999999997,1483,472 +25402,423.3666666666667,1462,472 +25403,423.3833333333333,1442,472 +25404,423.4,1422,472 +25405,423.4166666666667,1403,472 +25406,423.43333333333334,1383,472 +25407,423.45,1364,472 +25408,423.46666666666664,1345,472 +25409,423.48333333333335,1326,472 +25410,423.5,1309,471 +25411,423.51666666666665,1292,471 +25412,423.5333333333333,1276,471 +25413,423.55,1260,470 +25414,423.56666666666666,1246,470 +25415,423.5833333333333,1232,469 +25416,423.59999999999997,1220,469 +25417,423.6166666666667,1208,469 +25418,423.6333333333333,1198,468 +25419,423.65,1189,468 +25420,423.6666666666667,1181,467 +25421,423.68333333333334,1174,467 +25422,423.7,1169,467 +25423,423.71666666666664,1165,467 +25424,423.73333333333335,1163,467 +25425,423.75,1163,467 +25426,423.76666666666665,1163,467 +25427,423.7833333333333,1163,467 +25428,423.8,1166,467 +25429,423.81666666666666,1170,467 +25430,423.8333333333333,1176,468 +25431,423.84999999999997,1183,468 +25432,423.8666666666667,1191,468 +25433,423.8833333333333,1201,469 +25434,423.9,1211,469 +25435,423.9166666666667,1224,470 +25436,423.93333333333334,1237,470 +25437,423.95,1251,471 +25438,423.96666666666664,1266,471 +25439,423.98333333333335,1281,471 +25440,424.0,1298,472 +25441,424.01666666666665,1316,472 +25442,424.0333333333333,1334,473 +25443,424.05,1352,473 +25444,424.06666666666666,1372,473 +25445,424.0833333333333,1392,473 +25446,424.09999999999997,1412,473 +25447,424.1166666666667,1432,473 +25448,424.1333333333333,1452,473 +25449,424.15,1473,473 +25450,424.1666666666667,1493,473 +25451,424.18333333333334,1513,473 +25452,424.2,1533,472 +25453,424.21666666666664,1553,472 +25454,424.23333333333335,1572,471 +25455,424.25,1591,471 +25456,424.26666666666665,1609,470 +25457,424.2833333333333,1627,469 +25458,424.3,1644,469 +25459,424.31666666666666,1660,468 +25460,424.3333333333333,1675,467 +25461,424.34999999999997,1689,466 +25462,424.3666666666667,1703,465 +25463,424.3833333333333,1715,464 +25464,424.4,1726,463 +25465,424.4166666666667,1736,462 +25466,424.43333333333334,1745,461 +25467,424.45,1753,460 +25468,424.46666666666664,1759,460 +25469,424.48333333333335,1765,459 +25470,424.5,1768,459 +25471,424.51666666666665,1771,458 +25472,424.5333333333333,1772,458 +25473,424.55,1772,458 +25474,424.56666666666666,1772,458 +25475,424.5833333333333,1769,458 +25476,424.59999999999997,1765,458 +25477,424.6166666666667,1760,459 +25478,424.6333333333333,1754,459 +25479,424.65,1746,460 +25480,424.6666666666667,1738,460 +25481,424.68333333333334,1728,461 +25482,424.7,1717,462 +25483,424.71666666666664,1705,463 +25484,424.73333333333335,1692,464 +25485,424.75,1678,465 +25486,424.76666666666665,1663,466 +25487,424.7833333333333,1648,467 +25488,424.8,1631,468 +25489,424.81666666666666,1614,468 +25490,424.8333333333333,1596,469 +25491,424.84999999999997,1578,470 +25492,424.8666666666667,1559,470 +25493,424.8833333333333,1540,471 +25494,424.9,1520,471 +25495,424.9166666666667,1500,472 +25496,424.93333333333334,1480,472 +25497,424.95,1460,472 +25498,424.96666666666664,1440,472 +25499,424.98333333333335,1420,472 +25500,425.0,1401,472 +25501,425.01666666666665,1381,472 +25502,425.0333333333333,1362,472 +25503,425.05,1343,472 +25504,425.06666666666666,1325,472 +25505,425.0833333333333,1307,471 +25506,425.09999999999997,1290,471 +25507,425.1166666666667,1274,470 +25508,425.1333333333333,1259,470 +25509,425.15,1245,470 +25510,425.1666666666667,1232,469 +25511,425.18333333333334,1219,469 +25512,425.2,1208,468 +25513,425.21666666666664,1197,468 +25514,425.23333333333335,1188,468 +25515,425.25,1181,467 +25516,425.26666666666665,1174,467 +25517,425.2833333333333,1169,467 +25518,425.3,1165,466 +25519,425.31666666666666,1163,466 +25520,425.3333333333333,1163,466 +25521,425.34999999999997,1163,466 +25522,425.3666666666667,1164,466 +25523,425.3833333333333,1167,467 +25524,425.4,1171,467 +25525,425.4166666666667,1177,467 +25526,425.43333333333334,1184,468 +25527,425.45,1193,468 +25528,425.46666666666664,1202,468 +25529,425.48333333333335,1213,469 +25530,425.5,1225,469 +25531,425.51666666666665,1238,470 +25532,425.5333333333333,1252,470 +25533,425.55,1268,471 +25534,425.56666666666666,1283,471 +25535,425.5833333333333,1300,471 +25536,425.59999999999997,1318,472 +25537,425.6166666666667,1336,473 +25538,425.6333333333333,1355,473 +25539,425.65,1374,473 +25540,425.6666666666667,1394,473 +25541,425.68333333333334,1413,473 +25542,425.7,1434,473 +25543,425.71666666666664,1454,473 +25544,425.73333333333335,1475,473 +25545,425.75,1495,473 +25546,425.76666666666665,1515,472 +25547,425.7833333333333,1535,472 +25548,425.8,1555,472 +25549,425.81666666666666,1574,471 +25550,425.8333333333333,1593,470 +25551,425.84999999999997,1611,470 +25552,425.8666666666667,1628,469 +25553,425.8833333333333,1645,468 +25554,425.9,1661,468 +25555,425.9166666666667,1676,467 +25556,425.93333333333334,1690,466 +25557,425.95,1703,465 +25558,425.96666666666664,1715,464 +25559,425.98333333333335,1727,463 +25560,426.0,1736,462 +25561,426.01666666666665,1745,461 +25562,426.0333333333333,1753,460 +25563,426.05,1759,460 +25564,426.06666666666666,1764,459 +25565,426.0833333333333,1768,459 +25566,426.09999999999997,1770,458 +25567,426.1166666666667,1770,458 +25568,426.1333333333333,1770,458 +25569,426.15,1770,458 +25570,426.1666666666667,1768,458 +25571,426.18333333333334,1764,459 +25572,426.2,1759,459 +25573,426.21666666666664,1752,459 +25574,426.23333333333335,1745,460 +25575,426.25,1736,461 +25576,426.26666666666665,1726,462 +25577,426.2833333333333,1715,462 +25578,426.3,1703,463 +25579,426.31666666666666,1690,464 +25580,426.3333333333333,1676,465 +25581,426.34999999999997,1661,466 +25582,426.3666666666667,1645,467 +25583,426.3833333333333,1629,468 +25584,426.4,1611,468 +25585,426.4166666666667,1594,469 +25586,426.43333333333334,1575,470 +25587,426.45,1557,471 +25588,426.46666666666664,1537,471 +25589,426.48333333333335,1518,471 +25590,426.5,1498,472 +25591,426.51666666666665,1478,472 +25592,426.5333333333333,1458,472 +25593,426.55,1438,472 +25594,426.56666666666666,1418,472 +25595,426.5833333333333,1398,472 +25596,426.59999999999997,1379,472 +25597,426.6166666666667,1359,472 +25598,426.6333333333333,1341,472 +25599,426.65,1323,472 +25600,426.6666666666667,1305,471 +25601,426.68333333333334,1289,471 +25602,426.7,1273,470 +25603,426.71666666666664,1258,470 +25604,426.73333333333335,1243,470 +25605,426.75,1230,469 +25606,426.76666666666665,1218,469 +25607,426.7833333333333,1207,468 +25608,426.8,1197,468 +25609,426.81666666666666,1188,468 +25610,426.8333333333333,1180,467 +25611,426.84999999999997,1174,467 +25612,426.8666666666667,1169,467 +25613,426.8833333333333,1165,466 +25614,426.9,1163,466 +25615,426.9166666666667,1163,466 +25616,426.93333333333334,1163,466 +25617,426.95,1165,466 +25618,426.96666666666664,1168,467 +25619,426.98333333333335,1173,467 +25620,427.0,1179,467 +25621,427.01666666666665,1186,468 +25622,427.0333333333333,1194,468 +25623,427.05,1204,469 +25624,427.06666666666666,1215,469 +25625,427.0833333333333,1228,470 +25626,427.09999999999997,1241,470 +25627,427.1166666666667,1255,471 +25628,427.1333333333333,1270,471 +25629,427.15,1285,472 +25630,427.1666666666667,1302,472 +25631,427.18333333333334,1320,472 +25632,427.2,1338,473 +25633,427.21666666666664,1357,473 +25634,427.23333333333335,1376,473 +25635,427.25,1396,473 +25636,427.26666666666665,1416,473 +25637,427.2833333333333,1436,473 +25638,427.3,1457,473 +25639,427.31666666666666,1477,473 +25640,427.3333333333333,1497,473 +25641,427.34999999999997,1517,472 +25642,427.3666666666667,1537,472 +25643,427.3833333333333,1556,471 +25644,427.4,1576,471 +25645,427.4166666666667,1594,470 +25646,427.43333333333334,1612,470 +25647,427.45,1630,469 +25648,427.46666666666664,1646,468 +25649,427.48333333333335,1662,467 +25650,427.5,1677,466 +25651,427.51666666666665,1691,465 +25652,427.5333333333333,1704,464 +25653,427.55,1716,463 +25654,427.56666666666666,1727,462 +25655,427.5833333333333,1737,462 +25656,427.59999999999997,1745,461 +25657,427.6166666666667,1753,460 +25658,427.6333333333333,1759,460 +25659,427.65,1764,459 +25660,427.6666666666667,1768,459 +25661,427.68333333333334,1770,458 +25662,427.7,1770,458 +25663,427.71666666666664,1770,458 +25664,427.73333333333335,1769,458 +25665,427.75,1767,458 +25666,427.76666666666665,1762,458 +25667,427.7833333333333,1757,459 +25668,427.8,1751,459 +25669,427.81666666666666,1743,460 +25670,427.8333333333333,1734,461 +25671,427.84999999999997,1724,461 +25672,427.8666666666667,1713,462 +25673,427.8833333333333,1701,463 +25674,427.9,1687,464 +25675,427.9166666666667,1674,465 +25676,427.93333333333334,1658,466 +25677,427.95,1643,467 +25678,427.96666666666664,1626,468 +25679,427.98333333333335,1609,469 +25680,428.0,1591,469 +25681,428.01666666666665,1573,470 +25682,428.0333333333333,1554,470 +25683,428.05,1535,471 +25684,428.06666666666666,1515,471 +25685,428.0833333333333,1495,472 +25686,428.09999999999997,1475,472 +25687,428.1166666666667,1456,472 +25688,428.1333333333333,1436,472 +25689,428.15,1416,472 +25690,428.1666666666667,1396,472 +25691,428.18333333333334,1376,472 +25692,428.2,1358,472 +25693,428.21666666666664,1339,472 +25694,428.23333333333335,1321,471 +25695,428.25,1304,471 +25696,428.26666666666665,1287,470 +25697,428.2833333333333,1272,470 +25698,428.3,1257,470 +25699,428.31666666666666,1243,469 +25700,428.3333333333333,1229,469 +25701,428.34999999999997,1217,468 +25702,428.3666666666667,1206,468 +25703,428.3833333333333,1196,467 +25704,428.4,1188,467 +25705,428.4166666666667,1180,467 +25706,428.43333333333334,1174,466 +25707,428.45,1169,466 +25708,428.46666666666664,1166,466 +25709,428.48333333333335,1164,466 +25710,428.5,1164,466 +25711,428.51666666666665,1164,466 +25712,428.5333333333333,1166,466 +25713,428.55,1169,466 +25714,428.56666666666666,1174,467 +25715,428.5833333333333,1180,467 +25716,428.59999999999997,1188,467 +25717,428.6166666666667,1196,468 +25718,428.6333333333333,1206,468 +25719,428.65,1217,469 +25720,428.6666666666667,1230,469 +25721,428.68333333333334,1243,470 +25722,428.7,1257,470 +25723,428.71666666666664,1272,470 +25724,428.73333333333335,1288,471 +25725,428.75,1305,471 +25726,428.76666666666665,1322,472 +25727,428.7833333333333,1341,473 +25728,428.8,1360,473 +25729,428.81666666666666,1379,473 +25730,428.8333333333333,1399,473 +25731,428.84999999999997,1419,473 +25732,428.8666666666667,1439,473 +25733,428.8833333333333,1459,473 +25734,428.9,1479,473 +25735,428.9166666666667,1500,473 +25736,428.93333333333334,1520,472 +25737,428.95,1539,472 +25738,428.96666666666664,1559,471 +25739,428.98333333333335,1578,471 +25740,429.0,1596,470 +25741,429.01666666666665,1614,470 +25742,429.0333333333333,1631,469 +25743,429.05,1648,468 +25744,429.06666666666666,1664,467 +25745,429.0833333333333,1679,466 +25746,429.09999999999997,1692,466 +25747,429.1166666666667,1705,465 +25748,429.1333333333333,1717,464 +25749,429.15,1728,463 +25750,429.1666666666667,1738,462 +25751,429.18333333333334,1746,461 +25752,429.2,1753,460 +25753,429.21666666666664,1760,460 +25754,429.23333333333335,1764,459 +25755,429.25,1768,459 +25756,429.26666666666665,1770,458 +25757,429.2833333333333,1770,458 +25758,429.3,1770,458 +25759,429.31666666666666,1769,458 +25760,429.3333333333333,1766,458 +25761,429.34999999999997,1762,459 +25762,429.3666666666667,1756,459 +25763,429.3833333333333,1750,460 +25764,429.4,1742,460 +25765,429.4166666666667,1733,461 +25766,429.43333333333334,1723,462 +25767,429.45,1712,462 +25768,429.46666666666664,1700,463 +25769,429.48333333333335,1686,464 +25770,429.5,1672,465 +25771,429.51666666666665,1657,466 +25772,429.5333333333333,1642,467 +25773,429.55,1625,468 +25774,429.56666666666666,1608,469 +25775,429.5833333333333,1590,470 +25776,429.59999999999997,1572,470 +25777,429.6166666666667,1553,471 +25778,429.6333333333333,1534,471 +25779,429.65,1514,472 +25780,429.6666666666667,1494,472 +25781,429.68333333333334,1475,472 +25782,429.7,1454,472 +25783,429.71666666666664,1434,472 +25784,429.73333333333335,1415,472 +25785,429.75,1395,472 +25786,429.76666666666665,1376,472 +25787,429.7833333333333,1357,472 +25788,429.8,1338,472 +25789,429.81666666666666,1321,472 +25790,429.8333333333333,1304,471 +25791,429.84999999999997,1287,471 +25792,429.8666666666667,1272,470 +25793,429.8833333333333,1257,470 +25794,429.9,1243,470 +25795,429.9166666666667,1230,469 +25796,429.93333333333334,1218,469 +25797,429.95,1207,468 +25798,429.96666666666664,1198,468 +25799,429.98333333333335,1189,467 +25800,430.0,1182,467 +25801,430.01666666666665,1176,467 +25802,430.0333333333333,1171,466 +25803,430.05,1168,466 +25804,430.06666666666666,1166,466 +25805,430.0833333333333,1166,466 +25806,430.09999999999997,1166,466 +25807,430.1166666666667,1169,466 +25808,430.1333333333333,1172,467 +25809,430.15,1177,467 +25810,430.1666666666667,1183,467 +25811,430.18333333333334,1191,468 +25812,430.2,1200,468 +25813,430.21666666666664,1210,469 +25814,430.23333333333335,1221,469 +25815,430.25,1233,469 +25816,430.26666666666665,1246,470 +25817,430.2833333333333,1261,470 +25818,430.3,1276,471 +25819,430.31666666666666,1291,471 +25820,430.3333333333333,1309,472 +25821,430.34999999999997,1326,472 +25822,430.3666666666667,1344,473 +25823,430.3833333333333,1363,473 +25824,430.4,1382,473 +25825,430.4166666666667,1402,473 +25826,430.43333333333334,1422,473 +25827,430.45,1442,473 +25828,430.46666666666664,1462,473 +25829,430.48333333333335,1482,472 +25830,430.5,1502,472 +25831,430.51666666666665,1522,472 +25832,430.5333333333333,1542,471 +25833,430.55,1561,471 +25834,430.56666666666666,1580,470 +25835,430.5833333333333,1598,470 +25836,430.59999999999997,1616,469 +25837,430.6166666666667,1633,468 +25838,430.6333333333333,1649,468 +25839,430.65,1665,467 +25840,430.6666666666667,1679,466 +25841,430.68333333333334,1693,465 +25842,430.7,1706,464 +25843,430.71666666666664,1717,463 +25844,430.73333333333335,1728,462 +25845,430.75,1737,461 +25846,430.76666666666665,1746,460 +25847,430.7833333333333,1752,459 +25848,430.8,1758,459 +25849,430.81666666666666,1763,459 +25850,430.8333333333333,1766,458 +25851,430.84999999999997,1768,458 +25852,430.8666666666667,1768,458 +25853,430.8833333333333,1768,458 +25854,430.9,1767,458 +25855,430.9166666666667,1764,458 +25856,430.93333333333334,1759,458 +25857,430.95,1754,459 +25858,430.96666666666664,1747,459 +25859,430.98333333333335,1739,460 +25860,431.0,1730,460 +25861,431.01666666666665,1720,461 +25862,431.0333333333333,1708,462 +25863,431.05,1696,463 +25864,431.06666666666666,1683,464 +25865,431.0833333333333,1668,465 +25866,431.09999999999997,1653,465 +25867,431.1166666666667,1637,467 +25868,431.1333333333333,1621,467 +25869,431.15,1604,468 +25870,431.1666666666667,1586,469 +25871,431.18333333333334,1567,469 +25872,431.2,1549,470 +25873,431.21666666666664,1529,470 +25874,431.23333333333335,1510,471 +25875,431.25,1490,471 +25876,431.26666666666665,1470,471 +25877,431.2833333333333,1450,472 +25878,431.3,1431,472 +25879,431.31666666666666,1411,472 +25880,431.3333333333333,1392,472 +25881,431.34999999999997,1373,472 +25882,431.3666666666667,1354,471 +25883,431.3833333333333,1336,471 +25884,431.4,1318,471 +25885,431.4166666666667,1301,471 +25886,431.43333333333334,1284,470 +25887,431.45,1269,470 +25888,431.46666666666664,1255,469 +25889,431.48333333333335,1241,469 +25890,431.5,1228,468 +25891,431.51666666666665,1216,468 +25892,431.5333333333333,1206,468 +25893,431.55,1196,467 +25894,431.56666666666666,1188,467 +25895,431.5833333333333,1181,466 +25896,431.59999999999997,1175,466 +25897,431.6166666666667,1170,466 +25898,431.6333333333333,1167,466 +25899,431.65,1166,466 +25900,431.6666666666667,1166,466 +25901,431.68333333333334,1166,466 +25902,431.7,1168,466 +25903,431.71666666666664,1172,467 +25904,431.73333333333335,1177,467 +25905,431.75,1184,467 +25906,431.76666666666665,1191,468 +25907,431.7833333333333,1200,468 +25908,431.8,1211,468 +25909,431.81666666666666,1222,469 +25910,431.8333333333333,1234,469 +25911,431.84999999999997,1248,470 +25912,431.8666666666667,1262,470 +25913,431.8833333333333,1277,471 +25914,431.9,1293,471 +25915,431.9166666666667,1310,472 +25916,431.93333333333334,1328,472 +25917,431.95,1346,473 +25918,431.96666666666664,1364,473 +25919,431.98333333333335,1385,473 +25920,432.0,1404,473 +25921,432.01666666666665,1424,473 +25922,432.0333333333333,1444,473 +25923,432.05,1464,473 +25924,432.06666666666666,1484,473 +25925,432.0833333333333,1504,473 +25926,432.09999999999997,1524,472 +25927,432.1166666666667,1543,472 +25928,432.1333333333333,1562,471 +25929,432.15,1581,471 +25930,432.1666666666667,1599,470 +25931,432.18333333333334,1617,470 +25932,432.2,1634,469 +25933,432.21666666666664,1650,468 +25934,432.23333333333335,1665,467 +25935,432.25,1680,466 +25936,432.26666666666665,1693,465 +25937,432.2833333333333,1706,464 +25938,432.3,1717,463 +25939,432.31666666666666,1728,462 +25940,432.3333333333333,1737,462 +25941,432.34999999999997,1745,461 +25942,432.3666666666667,1752,460 +25943,432.3833333333333,1758,460 +25944,432.4,1762,459 +25945,432.4166666666667,1765,459 +25946,432.43333333333334,1767,458 +25947,432.45,1767,458 +25948,432.46666666666664,1767,458 +25949,432.48333333333335,1765,458 +25950,432.5,1762,459 +25951,432.51666666666665,1758,459 +25952,432.5333333333333,1752,459 +25953,432.55,1745,460 +25954,432.56666666666666,1737,460 +25955,432.5833333333333,1728,461 +25956,432.59999999999997,1718,462 +25957,432.6166666666667,1706,463 +25958,432.6333333333333,1694,464 +25959,432.65,1681,465 +25960,432.6666666666667,1667,466 +25961,432.68333333333334,1651,466 +25962,432.7,1635,467 +25963,432.71666666666664,1619,468 +25964,432.73333333333335,1602,469 +25965,432.75,1584,470 +25966,432.76666666666665,1565,470 +25967,432.7833333333333,1546,471 +25968,432.8,1528,471 +25969,432.81666666666666,1508,472 +25970,432.8333333333333,1488,472 +25971,432.84999999999997,1468,472 +25972,432.8666666666667,1449,472 +25973,432.8833333333333,1429,472 +25974,432.9,1409,472 +25975,432.9166666666667,1390,472 +25976,432.93333333333334,1371,472 +25977,432.95,1353,472 +25978,432.96666666666664,1334,472 +25979,432.98333333333335,1317,472 +25980,433.0,1300,471 +25981,433.01666666666665,1283,471 +25982,433.0333333333333,1268,470 +25983,433.05,1254,470 +25984,433.06666666666666,1240,469 +25985,433.0833333333333,1227,469 +25986,433.09999999999997,1216,468 +25987,433.1166666666667,1205,468 +25988,433.1333333333333,1196,468 +25989,433.15,1188,467 +25990,433.1666666666667,1181,467 +25991,433.18333333333334,1175,467 +25992,433.2,1171,467 +25993,433.21666666666664,1168,466 +25994,433.23333333333335,1167,466 +25995,433.25,1167,466 +25996,433.26666666666665,1167,467 +25997,433.2833333333333,1169,467 +25998,433.3,1173,467 +25999,433.31666666666666,1178,467 +26000,433.3333333333333,1185,468 +26001,433.34999999999997,1193,468 +26002,433.3666666666667,1201,468 +26003,433.3833333333333,1211,469 +26004,433.4,1223,469 +26005,433.4166666666667,1235,470 +26006,433.43333333333334,1249,470 +26007,433.45,1263,471 +26008,433.46666666666664,1278,471 +26009,433.48333333333335,1294,471 +26010,433.5,1312,472 +26011,433.51666666666665,1329,473 +26012,433.5333333333333,1347,473 +26013,433.55,1366,473 +26014,433.56666666666666,1386,473 +26015,433.5833333333333,1405,473 +26016,433.59999999999997,1425,473 +26017,433.6166666666667,1445,473 +26018,433.6333333333333,1465,473 +26019,433.65,1486,473 +26020,433.6666666666667,1506,473 +26021,433.68333333333334,1526,472 +26022,433.7,1545,472 +26023,433.71666666666664,1564,471 +26024,433.73333333333335,1583,471 +26025,433.75,1601,470 +26026,433.76666666666665,1618,469 +26027,433.7833333333333,1635,469 +26028,433.8,1651,468 +26029,433.81666666666666,1666,467 +26030,433.8333333333333,1681,466 +26031,433.84999999999997,1694,465 +26032,433.8666666666667,1707,464 +26033,433.8833333333333,1718,463 +26034,433.9,1728,463 +26035,433.9166666666667,1737,462 +26036,433.93333333333334,1746,461 +26037,433.95,1752,460 +26038,433.96666666666664,1758,460 +26039,433.98333333333335,1762,459 +26040,434.0,1765,459 +26041,434.01666666666665,1767,459 +26042,434.0333333333333,1767,459 +26043,434.05,1767,459 +26044,434.06666666666666,1765,459 +26045,434.0833333333333,1761,459 +26046,434.09999999999997,1757,459 +26047,434.1166666666667,1751,460 +26048,434.1333333333333,1744,460 +26049,434.15,1736,461 +26050,434.1666666666667,1727,461 +26051,434.18333333333334,1717,462 +26052,434.2,1705,463 +26053,434.21666666666664,1693,464 +26054,434.23333333333335,1679,465 +26055,434.25,1665,466 +26056,434.26666666666665,1650,467 +26057,434.2833333333333,1634,468 +26058,434.3,1617,468 +26059,434.31666666666666,1600,469 +26060,434.3333333333333,1582,470 +26061,434.34999999999997,1564,470 +26062,434.3666666666667,1545,471 +26063,434.3833333333333,1526,471 +26064,434.4,1507,472 +26065,434.4166666666667,1487,472 +26066,434.43333333333334,1467,472 +26067,434.45,1448,472 +26068,434.46666666666664,1428,472 +26069,434.48333333333335,1408,472 +26070,434.5,1389,472 +26071,434.51666666666665,1370,472 +26072,434.5333333333333,1351,472 +26073,434.55,1333,472 +26074,434.56666666666666,1316,471 +26075,434.5833333333333,1299,471 +26076,434.59999999999997,1283,471 +26077,434.6166666666667,1268,470 +26078,434.6333333333333,1254,470 +26079,434.65,1240,469 +26080,434.6666666666667,1228,469 +26081,434.68333333333334,1216,469 +26082,434.7,1206,468 +26083,434.71666666666664,1197,468 +26084,434.73333333333335,1188,467 +26085,434.75,1181,467 +26086,434.76666666666665,1176,467 +26087,434.7833333333333,1172,467 +26088,434.8,1169,467 +26089,434.81666666666666,1168,467 +26090,434.8333333333333,1168,467 +26091,434.84999999999997,1168,467 +26092,434.8666666666667,1171,467 +26093,434.8833333333333,1175,467 +26094,434.9,1180,467 +26095,434.9166666666667,1187,468 +26096,434.93333333333334,1195,468 +26097,434.95,1204,468 +26098,434.96666666666664,1214,469 +26099,434.98333333333335,1226,469 +26100,435.0,1238,470 +26101,435.01666666666665,1252,470 +26102,435.0333333333333,1266,471 +26103,435.05,1282,471 +26104,435.06666666666666,1298,472 +26105,435.0833333333333,1315,472 +26106,435.09999999999997,1332,473 +26107,435.1166666666667,1351,473 +26108,435.1333333333333,1370,473 +26109,435.15,1389,473 +26110,435.1666666666667,1408,473 +26111,435.18333333333334,1428,473 +26112,435.2,1448,473 +26113,435.21666666666664,1468,473 +26114,435.23333333333335,1488,473 +26115,435.25,1508,473 +26116,435.26666666666665,1528,472 +26117,435.2833333333333,1547,472 +26118,435.3,1566,472 +26119,435.31666666666666,1585,471 +26120,435.3333333333333,1603,470 +26121,435.34999999999997,1620,470 +26122,435.3666666666667,1637,469 +26123,435.3833333333333,1653,468 +26124,435.4,1668,467 +26125,435.4166666666667,1682,466 +26126,435.43333333333334,1696,465 +26127,435.45,1708,464 +26128,435.46666666666664,1719,463 +26129,435.48333333333335,1729,463 +26130,435.5,1738,462 +26131,435.51666666666665,1746,461 +26132,435.5333333333333,1753,460 +26133,435.55,1758,460 +26134,435.56666666666666,1762,459 +26135,435.5833333333333,1765,459 +26136,435.59999999999997,1766,459 +26137,435.6166666666667,1766,459 +26138,435.6333333333333,1766,459 +26139,435.65,1764,459 +26140,435.6666666666667,1761,459 +26141,435.68333333333334,1756,459 +26142,435.7,1750,460 +26143,435.71666666666664,1743,460 +26144,435.73333333333335,1735,461 +26145,435.75,1726,462 +26146,435.76666666666665,1715,463 +26147,435.7833333333333,1704,463 +26148,435.8,1691,464 +26149,435.81666666666666,1678,465 +26150,435.8333333333333,1664,466 +26151,435.84999999999997,1648,467 +26152,435.8666666666667,1632,468 +26153,435.8833333333333,1616,469 +26154,435.9,1598,469 +26155,435.9166666666667,1581,470 +26156,435.93333333333334,1562,470 +26157,435.95,1543,471 +26158,435.96666666666664,1524,471 +26159,435.98333333333335,1505,472 +26160,436.0,1485,472 +26161,436.01666666666665,1466,472 +26162,436.0333333333333,1446,472 +26163,436.05,1427,472 +26164,436.06666666666666,1407,472 +26165,436.0833333333333,1388,472 +26166,436.09999999999997,1369,472 +26167,436.1166666666667,1351,472 +26168,436.1333333333333,1333,472 +26169,436.15,1316,472 +26170,436.1666666666667,1299,471 +26171,436.18333333333334,1283,471 +26172,436.2,1268,470 +26173,436.21666666666664,1253,470 +26174,436.23333333333335,1240,469 +26175,436.25,1228,469 +26176,436.26666666666665,1216,469 +26177,436.2833333333333,1206,468 +26178,436.3,1197,468 +26179,436.31666666666666,1189,467 +26180,436.3333333333333,1183,467 +26181,436.34999999999997,1177,467 +26182,436.3666666666667,1173,467 +26183,436.3833333333333,1171,467 +26184,436.4,1171,467 +26185,436.4166666666667,1171,467 +26186,436.43333333333334,1171,467 +26187,436.45,1173,467 +26188,436.46666666666664,1178,467 +26189,436.48333333333335,1183,467 +26190,436.5,1190,468 +26191,436.51666666666665,1197,468 +26192,436.5333333333333,1207,468 +26193,436.55,1217,469 +26194,436.56666666666666,1230,469 +26195,436.5833333333333,1241,469 +26196,436.59999999999997,1255,470 +26197,436.6166666666667,1269,471 +26198,436.6333333333333,1284,471 +26199,436.65,1301,472 +26200,436.6666666666667,1318,472 +26201,436.68333333333334,1335,473 +26202,436.7,1353,473 +26203,436.71666666666664,1372,473 +26204,436.73333333333335,1392,473 +26205,436.75,1411,473 +26206,436.76666666666665,1430,473 +26207,436.7833333333333,1451,473 +26208,436.8,1471,473 +26209,436.81666666666666,1491,473 +26210,436.8333333333333,1510,473 +26211,436.84999999999997,1530,473 +26212,436.8666666666667,1550,472 +26213,436.8833333333333,1568,472 +26214,436.9,1587,471 +26215,436.9166666666667,1604,470 +26216,436.93333333333334,1622,470 +26217,436.95,1638,469 +26218,436.96666666666664,1654,468 +26219,436.98333333333335,1669,467 +26220,437.0,1683,466 +26221,437.01666666666665,1696,465 +26222,437.0333333333333,1708,464 +26223,437.05,1719,464 +26224,437.06666666666666,1729,463 +26225,437.0833333333333,1738,462 +26226,437.09999999999997,1745,461 +26227,437.1166666666667,1752,460 +26228,437.1333333333333,1757,460 +26229,437.15,1761,460 +26230,437.1666666666667,1764,459 +26231,437.18333333333334,1765,459 +26232,437.2,1765,459 +26233,437.21666666666664,1765,459 +26234,437.23333333333335,1762,459 +26235,437.25,1759,459 +26236,437.26666666666665,1754,460 +26237,437.2833333333333,1748,460 +26238,437.3,1741,460 +26239,437.31666666666666,1732,461 +26240,437.3333333333333,1723,462 +26241,437.34999999999997,1712,463 +26242,437.3666666666667,1701,464 +26243,437.3833333333333,1688,464 +26244,437.4,1675,465 +26245,437.4166666666667,1660,466 +26246,437.43333333333334,1645,467 +26247,437.45,1629,468 +26248,437.46666666666664,1613,469 +26249,437.48333333333335,1595,470 +26250,437.5,1577,470 +26251,437.51666666666665,1559,471 +26252,437.5333333333333,1540,471 +26253,437.55,1521,472 +26254,437.56666666666666,1502,472 +26255,437.5833333333333,1482,472 +26256,437.59999999999997,1463,472 +26257,437.6166666666667,1443,472 +26258,437.6333333333333,1423,472 +26259,437.65,1404,473 +26260,437.6666666666667,1385,473 +26261,437.68333333333334,1366,473 +26262,437.7,1348,472 +26263,437.71666666666664,1330,472 +26264,437.73333333333335,1313,472 +26265,437.75,1296,471 +26266,437.76666666666665,1280,471 +26267,437.7833333333333,1265,471 +26268,437.8,1251,470 +26269,437.81666666666666,1238,470 +26270,437.8333333333333,1226,470 +26271,437.84999999999997,1215,469 +26272,437.8666666666667,1205,469 +26273,437.8833333333333,1196,468 +26274,437.9,1188,468 +26275,437.9166666666667,1181,468 +26276,437.93333333333334,1176,468 +26277,437.95,1172,467 +26278,437.96666666666664,1170,467 +26279,437.98333333333335,1170,467 +26280,438.0,1170,467 +26281,438.01666666666665,1170,467 +26282,438.0333333333333,1173,467 +26283,438.05,1177,468 +26284,438.06666666666666,1183,468 +26285,438.0833333333333,1190,468 +26286,438.09999999999997,1198,469 +26287,438.1166666666667,1207,469 +26288,438.1333333333333,1218,470 +26289,438.15,1229,470 +26290,438.1666666666667,1242,470 +26291,438.18333333333334,1256,471 +26292,438.2,1270,471 +26293,438.21666666666664,1286,471 +26294,438.23333333333335,1302,472 +26295,438.25,1319,472 +26296,438.26666666666665,1337,473 +26297,438.2833333333333,1355,473 +26298,438.3,1374,473 +26299,438.31666666666666,1394,473 +26300,438.3333333333333,1413,473 +26301,438.34999999999997,1433,473 +26302,438.3666666666667,1452,473 +26303,438.3833333333333,1472,473 +26304,438.4,1492,473 +26305,438.4166666666667,1512,473 +26306,438.43333333333334,1531,472 +26307,438.45,1550,472 +26308,438.46666666666664,1569,472 +26309,438.48333333333335,1588,471 +26310,438.5,1605,470 +26311,438.51666666666665,1622,470 +26312,438.5333333333333,1639,469 +26313,438.55,1655,468 +26314,438.56666666666666,1669,467 +26315,438.5833333333333,1683,466 +26316,438.59999999999997,1696,465 +26317,438.6166666666667,1708,464 +26318,438.6333333333333,1719,464 +26319,438.65,1729,463 +26320,438.6666666666667,1737,462 +26321,438.68333333333334,1745,461 +26322,438.7,1751,461 +26323,438.71666666666664,1756,460 +26324,438.73333333333335,1760,460 +26325,438.75,1763,459 +26326,438.76666666666665,1763,459 +26327,438.7833333333333,1763,459 +26328,438.8,1763,459 +26329,438.81666666666666,1760,459 +26330,438.8333333333333,1757,460 +26331,438.84999999999997,1752,460 +26332,438.8666666666667,1746,460 +26333,438.8833333333333,1738,461 +26334,438.9,1730,461 +26335,438.9166666666667,1720,462 +26336,438.93333333333334,1710,463 +26337,438.95,1698,464 +26338,438.96666666666664,1686,465 +26339,438.98333333333335,1672,466 +26340,439.0,1658,466 +26341,439.01666666666665,1642,467 +26342,439.0333333333333,1626,468 +26343,439.05,1610,469 +26344,439.06666666666666,1592,470 +26345,439.0833333333333,1575,470 +26346,439.09999999999997,1556,471 +26347,439.1166666666667,1537,471 +26348,439.1333333333333,1518,472 +26349,439.15,1499,472 +26350,439.1666666666667,1480,472 +26351,439.18333333333334,1460,472 +26352,439.2,1441,473 +26353,439.21666666666664,1421,473 +26354,439.23333333333335,1402,473 +26355,439.25,1383,473 +26356,439.26666666666665,1364,473 +26357,439.2833333333333,1346,472 +26358,439.3,1328,472 +26359,439.31666666666666,1311,472 +26360,439.3333333333333,1295,471 +26361,439.34999999999997,1279,471 +26362,439.3666666666667,1264,471 +26363,439.3833333333333,1250,470 +26364,439.4,1237,470 +26365,439.4166666666667,1225,469 +26366,439.43333333333334,1214,469 +26367,439.45,1204,468 +26368,439.46666666666664,1196,468 +26369,439.48333333333335,1188,468 +26370,439.5,1182,467 +26371,439.51666666666665,1177,467 +26372,439.5333333333333,1173,467 +26373,439.55,1171,467 +26374,439.56666666666666,1171,467 +26375,439.5833333333333,1171,467 +26376,439.59999999999997,1172,467 +26377,439.6166666666667,1175,467 +26378,439.6333333333333,1179,467 +26379,439.65,1185,468 +26380,439.6666666666667,1192,468 +26381,439.68333333333334,1200,468 +26382,439.7,1210,469 +26383,439.71666666666664,1220,469 +26384,439.73333333333335,1232,470 +26385,439.75,1245,470 +26386,439.76666666666665,1258,471 +26387,439.7833333333333,1273,471 +26388,439.8,1288,471 +26389,439.81666666666666,1305,472 +26390,439.8333333333333,1322,473 +26391,439.84999999999997,1339,473 +26392,439.8666666666667,1358,473 +26393,439.8833333333333,1377,473 +26394,439.9,1396,473 +26395,439.9166666666667,1415,473 +26396,439.93333333333334,1435,473 +26397,439.95,1455,473 +26398,439.96666666666664,1475,473 +26399,439.98333333333335,1495,473 +26400,440.0,1514,473 +26401,440.01666666666665,1534,472 +26402,440.0333333333333,1553,472 +26403,440.05,1572,472 +26404,440.06666666666666,1590,471 +26405,440.0833333333333,1608,471 +26406,440.09999999999997,1625,470 +26407,440.1166666666667,1641,469 +26408,440.1333333333333,1657,468 +26409,440.15,1671,467 +26410,440.1666666666667,1685,466 +26411,440.18333333333334,1698,465 +26412,440.2,1710,464 +26413,440.21666666666664,1721,464 +26414,440.23333333333335,1730,463 +26415,440.25,1739,462 +26416,440.26666666666665,1746,461 +26417,440.2833333333333,1752,461 +26418,440.3,1757,460 +26419,440.31666666666666,1760,460 +26420,440.3333333333333,1763,459 +26421,440.34999999999997,1763,459 +26422,440.3666666666667,1763,459 +26423,440.3833333333333,1763,459 +26424,440.4,1760,459 +26425,440.4166666666667,1756,459 +26426,440.43333333333334,1751,460 +26427,440.45,1745,460 +26428,440.46666666666664,1737,460 +26429,440.48333333333335,1729,461 +26430,440.5,1719,462 +26431,440.51666666666665,1708,463 +26432,440.5333333333333,1697,463 +26433,440.55,1684,464 +26434,440.56666666666666,1671,465 +26435,440.5833333333333,1656,466 +26436,440.59999999999997,1641,467 +26437,440.6166666666667,1625,468 +26438,440.6333333333333,1608,469 +26439,440.65,1591,469 +26440,440.6666666666667,1573,470 +26441,440.68333333333334,1554,470 +26442,440.7,1536,471 +26443,440.71666666666664,1517,471 +26444,440.73333333333335,1497,471 +26445,440.75,1478,472 +26446,440.76666666666665,1459,472 +26447,440.7833333333333,1439,472 +26448,440.8,1420,472 +26449,440.81666666666666,1401,472 +26450,440.8333333333333,1382,472 +26451,440.84999999999997,1363,472 +26452,440.8666666666667,1345,472 +26453,440.8833333333333,1327,471 +26454,440.9,1310,471 +26455,440.9166666666667,1294,470 +26456,440.93333333333334,1278,470 +26457,440.95,1264,469 +26458,440.96666666666664,1250,469 +26459,440.98333333333335,1237,469 +26460,441.0,1225,468 +26461,441.01666666666665,1214,468 +26462,441.0333333333333,1205,468 +26463,441.05,1196,467 +26464,441.06666666666666,1188,467 +26465,441.0833333333333,1182,467 +26466,441.09999999999997,1177,466 +26467,441.1166666666667,1174,466 +26468,441.1333333333333,1172,466 +26469,441.15,1172,466 +26470,441.1666666666667,1172,466 +26471,441.18333333333334,1173,466 +26472,441.2,1177,466 +26473,441.21666666666664,1181,467 +26474,441.23333333333335,1187,467 +26475,441.25,1194,467 +26476,441.26666666666665,1202,468 +26477,441.2833333333333,1212,468 +26478,441.3,1222,468 +26479,441.31666666666666,1234,469 +26480,441.3333333333333,1247,469 +26481,441.34999999999997,1261,470 +26482,441.3666666666667,1275,470 +26483,441.3833333333333,1291,471 +26484,441.4,1307,471 +26485,441.4166666666667,1324,472 +26486,441.43333333333334,1341,472 +26487,441.45,1360,472 +26488,441.46666666666664,1379,472 +26489,441.48333333333335,1398,473 +26490,441.5,1417,473 +26491,441.51666666666665,1437,473 +26492,441.5333333333333,1457,473 +26493,441.55,1477,473 +26494,441.56666666666666,1496,473 +26495,441.5833333333333,1516,472 +26496,441.59999999999997,1535,472 +26497,441.6166666666667,1554,471 +26498,441.6333333333333,1573,471 +26499,441.65,1591,471 +26500,441.6666666666667,1608,470 +26501,441.68333333333334,1625,469 +26502,441.7,1641,468 +26503,441.71666666666664,1657,468 +26504,441.73333333333335,1671,467 +26505,441.75,1685,466 +26506,441.76666666666665,1698,465 +26507,441.7833333333333,1709,464 +26508,441.8,1720,463 +26509,441.81666666666666,1729,462 +26510,441.8333333333333,1738,461 +26511,441.84999999999997,1745,461 +26512,441.8666666666667,1751,460 +26513,441.8833333333333,1756,460 +26514,441.9,1759,459 +26515,441.9166666666667,1761,459 +26516,441.93333333333334,1761,459 +26517,441.95,1761,459 +26518,441.96666666666664,1761,459 +26519,441.98333333333335,1758,459 +26520,442.0,1754,459 +26521,442.01666666666665,1749,460 +26522,442.0333333333333,1743,460 +26523,442.05,1735,461 +26524,442.06666666666666,1726,461 +26525,442.0833333333333,1717,462 +26526,442.09999999999997,1706,463 +26527,442.1166666666667,1694,464 +26528,442.1333333333333,1681,465 +26529,442.15,1668,466 +26530,442.1666666666667,1653,467 +26531,442.18333333333334,1638,467 +26532,442.2,1622,468 +26533,442.21666666666664,1605,469 +26534,442.23333333333335,1588,470 +26535,442.25,1570,470 +26536,442.26666666666665,1552,471 +26537,442.2833333333333,1533,471 +26538,442.3,1514,472 +26539,442.31666666666666,1495,472 +26540,442.3333333333333,1475,472 +26541,442.34999999999997,1456,472 +26542,442.3666666666667,1436,472 +26543,442.3833333333333,1417,472 +26544,442.4,1398,472 +26545,442.4166666666667,1379,472 +26546,442.43333333333334,1361,472 +26547,442.45,1343,472 +26548,442.46666666666664,1325,472 +26549,442.48333333333335,1308,471 +26550,442.5,1292,471 +26551,442.51666666666665,1277,470 +26552,442.5333333333333,1262,470 +26553,442.55,1249,470 +26554,442.56666666666666,1236,469 +26555,442.5833333333333,1225,469 +26556,442.59999999999997,1214,469 +26557,442.6166666666667,1204,468 +26558,442.6333333333333,1196,468 +26559,442.65,1188,468 +26560,442.6666666666667,1182,467 +26561,442.68333333333334,1178,467 +26562,442.7,1174,467 +26563,442.71666666666664,1172,467 +26564,442.73333333333335,1172,467 +26565,442.75,1172,467 +26566,442.76666666666665,1174,467 +26567,442.7833333333333,1177,467 +26568,442.8,1182,468 +26569,442.81666666666666,1188,468 +26570,442.8333333333333,1195,468 +26571,442.84999999999997,1203,469 +26572,442.8666666666667,1213,469 +26573,442.8833333333333,1224,469 +26574,442.9,1236,470 +26575,442.9166666666667,1248,470 +26576,442.93333333333334,1262,471 +26577,442.95,1277,471 +26578,442.96666666666664,1293,472 +26579,442.98333333333335,1309,472 +26580,443.0,1326,473 +26581,443.01666666666665,1343,473 +26582,443.0333333333333,1361,473 +26583,443.05,1380,473 +26584,443.06666666666666,1400,473 +26585,443.0833333333333,1419,474 +26586,443.09999999999997,1438,474 +26587,443.1166666666667,1458,474 +26588,443.1333333333333,1478,474 +26589,443.15,1498,473 +26590,443.1666666666667,1517,473 +26591,443.18333333333334,1537,473 +26592,443.2,1555,472 +26593,443.21666666666664,1574,472 +26594,443.23333333333335,1592,471 +26595,443.25,1609,470 +26596,443.26666666666665,1626,470 +26597,443.2833333333333,1642,469 +26598,443.3,1657,468 +26599,443.31666666666666,1672,467 +26600,443.3333333333333,1685,467 +26601,443.34999999999997,1698,465 +26602,443.3666666666667,1709,465 +26603,443.3833333333333,1720,464 +26604,443.4,1729,463 +26605,443.4166666666667,1737,462 +26606,443.43333333333334,1744,461 +26607,443.45,1750,461 +26608,443.46666666666664,1755,460 +26609,443.48333333333335,1759,460 +26610,443.5,1761,459 +26611,443.51666666666665,1761,459 +26612,443.5333333333333,1761,459 +26613,443.55,1760,459 +26614,443.56666666666666,1757,459 +26615,443.5833333333333,1753,460 +26616,443.59999999999997,1748,460 +26617,443.6166666666667,1741,461 +26618,443.6333333333333,1733,461 +26619,443.65,1725,462 +26620,443.6666666666667,1715,462 +26621,443.68333333333334,1704,463 +26622,443.7,1692,464 +26623,443.71666666666664,1680,465 +26624,443.73333333333335,1666,466 +26625,443.75,1651,467 +26626,443.76666666666665,1636,468 +26627,443.7833333333333,1620,468 +26628,443.8,1603,469 +26629,443.81666666666666,1586,470 +26630,443.8333333333333,1568,470 +26631,443.84999999999997,1550,471 +26632,443.8666666666667,1531,471 +26633,443.8833333333333,1512,472 +26634,443.9,1493,472 +26635,443.9166666666667,1473,472 +26636,443.93333333333334,1454,472 +26637,443.95,1435,472 +26638,443.96666666666664,1416,473 +26639,443.98333333333335,1397,473 +26640,444.0,1378,472 +26641,444.01666666666665,1360,472 +26642,444.0333333333333,1342,472 +26643,444.05,1324,472 +26644,444.06666666666666,1308,472 +26645,444.0833333333333,1291,471 +26646,444.09999999999997,1276,471 +26647,444.1166666666667,1262,470 +26648,444.1333333333333,1248,470 +26649,444.15,1236,470 +26650,444.1666666666667,1224,469 +26651,444.18333333333334,1213,469 +26652,444.2,1204,468 +26653,444.21666666666664,1196,468 +26654,444.23333333333335,1189,468 +26655,444.25,1183,468 +26656,444.26666666666665,1178,467 +26657,444.2833333333333,1175,467 +26658,444.3,1173,467 +26659,444.31666666666666,1173,467 +26660,444.3333333333333,1173,467 +26661,444.34999999999997,1176,467 +26662,444.3666666666667,1179,467 +26663,444.3833333333333,1184,468 +26664,444.4,1190,468 +26665,444.4166666666667,1197,468 +26666,444.43333333333334,1206,469 +26667,444.45,1215,469 +26668,444.46666666666664,1226,470 +26669,444.48333333333335,1238,470 +26670,444.5,1251,470 +26671,444.51666666666665,1265,471 +26672,444.5333333333333,1280,471 +26673,444.55,1296,472 +26674,444.56666666666666,1312,473 +26675,444.5833333333333,1329,473 +26676,444.59999999999997,1347,473 +26677,444.6166666666667,1365,473 +26678,444.6333333333333,1384,473 +26679,444.65,1404,473 +26680,444.6666666666667,1423,473 +26681,444.68333333333334,1442,473 +26682,444.7,1462,473 +26683,444.71666666666664,1482,473 +26684,444.73333333333335,1501,473 +26685,444.75,1521,473 +26686,444.76666666666665,1540,472 +26687,444.7833333333333,1558,472 +26688,444.8,1577,471 +26689,444.81666666666666,1594,471 +26690,444.8333333333333,1612,470 +26691,444.84999999999997,1628,469 +26692,444.8666666666667,1644,469 +26693,444.8833333333333,1659,468 +26694,444.9,1674,467 +26695,444.9166666666667,1687,466 +26696,444.93333333333334,1699,465 +26697,444.95,1711,464 +26698,444.96666666666664,1721,463 +26699,444.98333333333335,1730,463 +26700,445.0,1738,462 +26701,445.01666666666665,1745,461 +26702,445.0333333333333,1751,461 +26703,445.05,1755,460 +26704,445.06666666666666,1758,460 +26705,445.0833333333333,1760,459 +26706,445.09999999999997,1760,459 +26707,445.1166666666667,1760,459 +26708,445.1333333333333,1759,459 +26709,445.15,1756,459 +26710,445.1666666666667,1752,460 +26711,445.18333333333334,1746,460 +26712,445.2,1740,461 +26713,445.21666666666664,1732,461 +26714,445.23333333333335,1723,462 +26715,445.25,1714,463 +26716,445.26666666666665,1703,464 +26717,445.2833333333333,1691,464 +26718,445.3,1678,465 +26719,445.31666666666666,1664,466 +26720,445.3333333333333,1649,467 +26721,445.34999999999997,1634,468 +26722,445.3666666666667,1618,469 +26723,445.3833333333333,1601,469 +26724,445.4,1584,470 +26725,445.4166666666667,1566,471 +26726,445.43333333333334,1548,471 +26727,445.45,1529,471 +26728,445.46666666666664,1510,472 +26729,445.48333333333335,1491,472 +26730,445.5,1472,472 +26731,445.51666666666665,1452,473 +26732,445.5333333333333,1433,473 +26733,445.55,1414,473 +26734,445.56666666666666,1395,473 +26735,445.5833333333333,1377,473 +26736,445.59999999999997,1358,473 +26737,445.6166666666667,1340,473 +26738,445.6333333333333,1323,472 +26739,445.65,1307,472 +26740,445.6666666666667,1291,471 +26741,445.68333333333334,1276,471 +26742,445.7,1262,470 +26743,445.71666666666664,1248,470 +26744,445.73333333333335,1236,469 +26745,445.75,1224,469 +26746,445.76666666666665,1214,469 +26747,445.7833333333333,1204,469 +26748,445.8,1196,468 +26749,445.81666666666666,1189,468 +26750,445.8333333333333,1184,468 +26751,445.84999999999997,1180,468 +26752,445.8666666666667,1176,468 +26753,445.8833333333333,1175,467 +26754,445.9,1175,467 +26755,445.9166666666667,1175,468 +26756,445.93333333333334,1178,468 +26757,445.95,1181,468 +26758,445.96666666666664,1186,468 +26759,445.98333333333335,1192,468 +26760,446.0,1200,469 +26761,446.01666666666665,1209,469 +26762,446.0333333333333,1219,469 +26763,446.05,1229,470 +26764,446.06666666666666,1241,470 +26765,446.0833333333333,1254,470 +26766,446.09999999999997,1269,471 +26767,446.1166666666667,1283,472 +26768,446.1333333333333,1299,472 +26769,446.15,1315,473 +26770,446.1666666666667,1332,473 +26771,446.18333333333334,1350,473 +26772,446.2,1368,473 +26773,446.21666666666664,1387,473 +26774,446.23333333333335,1407,474 +26775,446.25,1426,474 +26776,446.26666666666665,1445,474 +26777,446.2833333333333,1465,473 +26778,446.3,1484,473 +26779,446.31666666666666,1504,473 +26780,446.3333333333333,1523,473 +26781,446.34999999999997,1542,472 +26782,446.3666666666667,1560,472 +26783,446.3833333333333,1578,471 +26784,446.4,1596,471 +26785,446.4166666666667,1613,470 +26786,446.43333333333334,1630,469 +26787,446.45,1646,469 +26788,446.46666666666664,1660,468 +26789,446.48333333333335,1675,467 +26790,446.5,1688,466 +26791,446.51666666666665,1700,465 +26792,446.5333333333333,1711,464 +26793,446.55,1721,463 +26794,446.56666666666666,1730,463 +26795,446.5833333333333,1738,462 +26796,446.59999999999997,1745,461 +26797,446.6166666666667,1750,460 +26798,446.6333333333333,1754,460 +26799,446.65,1757,460 +26800,446.6666666666667,1759,459 +26801,446.68333333333334,1759,459 +26802,446.7,1759,459 +26803,446.71666666666664,1757,459 +26804,446.73333333333335,1754,460 +26805,446.75,1750,460 +26806,446.76666666666665,1745,460 +26807,446.7833333333333,1738,461 +26808,446.8,1730,462 +26809,446.81666666666666,1721,462 +26810,446.8333333333333,1711,463 +26811,446.84999999999997,1700,464 +26812,446.8666666666667,1688,464 +26813,446.8833333333333,1675,465 +26814,446.9,1661,466 +26815,446.9166666666667,1647,467 +26816,446.93333333333334,1631,468 +26817,446.95,1615,469 +26818,446.96666666666664,1598,470 +26819,446.98333333333335,1581,470 +26820,447.0,1563,471 +26821,447.01666666666665,1545,471 +26822,447.0333333333333,1526,472 +26823,447.05,1507,472 +26824,447.06666666666666,1488,472 +26825,447.0833333333333,1469,472 +26826,447.09999999999997,1450,473 +26827,447.1166666666667,1431,473 +26828,447.1333333333333,1412,473 +26829,447.15,1393,473 +26830,447.1666666666667,1374,473 +26831,447.18333333333334,1356,473 +26832,447.2,1338,472 +26833,447.21666666666664,1321,472 +26834,447.23333333333335,1305,472 +26835,447.25,1289,472 +26836,447.26666666666665,1274,471 +26837,447.2833333333333,1260,471 +26838,447.3,1246,470 +26839,447.31666666666666,1234,470 +26840,447.3333333333333,1223,469 +26841,447.34999999999997,1213,469 +26842,447.3666666666667,1203,469 +26843,447.3833333333333,1195,468 +26844,447.4,1189,468 +26845,447.4166666666667,1183,468 +26846,447.43333333333334,1179,468 +26847,447.45,1176,468 +26848,447.46666666666664,1175,468 +26849,447.48333333333335,1175,468 +26850,447.5,1175,468 +26851,447.51666666666665,1178,468 +26852,447.5333333333333,1181,468 +26853,447.55,1187,468 +26854,447.56666666666666,1193,469 +26855,447.5833333333333,1200,469 +26856,447.59999999999997,1209,469 +26857,447.6166666666667,1219,470 +26858,447.6333333333333,1230,470 +26859,447.65,1242,471 +26860,447.6666666666667,1255,471 +26861,447.68333333333334,1269,471 +26862,447.7,1284,472 +26863,447.71666666666664,1300,472 +26864,447.73333333333335,1317,473 +26865,447.75,1334,473 +26866,447.76666666666665,1352,473 +26867,447.7833333333333,1370,473 +26868,447.8,1389,473 +26869,447.81666666666666,1408,474 +26870,447.8333333333333,1427,474 +26871,447.84999999999997,1447,474 +26872,447.8666666666667,1466,473 +26873,447.8833333333333,1486,473 +26874,447.9,1505,473 +26875,447.9166666666667,1524,473 +26876,447.93333333333334,1543,472 +26877,447.95,1562,472 +26878,447.96666666666664,1580,471 +26879,447.98333333333335,1597,471 +26880,448.0,1614,470 +26881,448.01666666666665,1631,470 +26882,448.0333333333333,1646,469 +26883,448.05,1661,468 +26884,448.06666666666666,1675,467 +26885,448.0833333333333,1688,466 +26886,448.09999999999997,1700,465 +26887,448.1166666666667,1711,464 +26888,448.1333333333333,1721,463 +26889,448.15,1730,463 +26890,448.1666666666667,1737,462 +26891,448.18333333333334,1744,461 +26892,448.2,1749,461 +26893,448.21666666666664,1754,460 +26894,448.23333333333335,1756,460 +26895,448.25,1758,460 +26896,448.26666666666665,1758,460 +26897,448.2833333333333,1758,460 +26898,448.3,1756,460 +26899,448.31666666666666,1753,460 +26900,448.3333333333333,1748,460 +26901,448.34999999999997,1743,461 +26902,448.3666666666667,1736,461 +26903,448.3833333333333,1728,462 +26904,448.4,1719,463 +26905,448.4166666666667,1709,463 +26906,448.43333333333334,1698,464 +26907,448.45,1686,465 +26908,448.46666666666664,1673,466 +26909,448.48333333333335,1659,467 +26910,448.5,1644,468 +26911,448.51666666666665,1629,468 +26912,448.5333333333333,1613,469 +26913,448.55,1596,470 +26914,448.56666666666666,1578,470 +26915,448.5833333333333,1561,471 +26916,448.59999999999997,1542,471 +26917,448.6166666666667,1524,472 +26918,448.6333333333333,1505,472 +26919,448.65,1486,472 +26920,448.6666666666667,1466,473 +26921,448.68333333333334,1447,473 +26922,448.7,1428,473 +26923,448.71666666666664,1409,473 +26924,448.73333333333335,1391,473 +26925,448.75,1372,473 +26926,448.76666666666665,1354,473 +26927,448.7833333333333,1336,472 +26928,448.8,1319,472 +26929,448.81666666666666,1303,472 +26930,448.8333333333333,1287,471 +26931,448.84999999999997,1273,471 +26932,448.8666666666667,1259,471 +26933,448.8833333333333,1246,470 +26934,448.9,1234,470 +26935,448.9166666666667,1222,470 +26936,448.93333333333334,1212,469 +26937,448.95,1203,469 +26938,448.96666666666664,1195,469 +26939,448.98333333333335,1189,468 +26940,449.0,1184,468 +26941,449.01666666666665,1180,468 +26942,449.0333333333333,1177,468 +26943,449.05,1177,468 +26944,449.06666666666666,1177,468 +26945,449.0833333333333,1177,468 +26946,449.09999999999997,1179,468 +26947,449.1166666666667,1183,468 +26948,449.1333333333333,1188,468 +26949,449.15,1195,468 +26950,449.1666666666667,1202,469 +26951,449.18333333333334,1211,469 +26952,449.2,1221,470 +26953,449.21666666666664,1233,470 +26954,449.23333333333335,1245,471 +26955,449.25,1258,471 +26956,449.26666666666665,1272,471 +26957,449.2833333333333,1286,472 +26958,449.3,1303,472 +26959,449.31666666666666,1319,473 +26960,449.3333333333333,1336,473 +26961,449.34999999999997,1354,473 +26962,449.3666666666667,1372,473 +26963,449.3833333333333,1391,473 +26964,449.4,1410,473 +26965,449.4166666666667,1429,473 +26966,449.43333333333334,1449,473 +26967,449.45,1468,473 +26968,449.46666666666664,1488,473 +26969,449.48333333333335,1507,473 +26970,449.5,1526,473 +26971,449.51666666666665,1545,472 +26972,449.5333333333333,1563,472 +26973,449.55,1581,471 +26974,449.56666666666666,1599,471 +26975,449.5833333333333,1616,470 +26976,449.59999999999997,1632,469 +26977,449.6166666666667,1647,468 +26978,449.6333333333333,1662,468 +26979,449.65,1676,467 +26980,449.6666666666667,1688,466 +26981,449.68333333333334,1700,465 +26982,449.7,1711,464 +26983,449.71666666666664,1721,463 +26984,449.73333333333335,1730,462 +26985,449.75,1737,462 +26986,449.76666666666665,1743,461 +26987,449.7833333333333,1749,461 +26988,449.8,1753,460 +26989,449.81666666666666,1756,460 +26990,449.8333333333333,1756,460 +26991,449.84999999999997,1756,460 +26992,449.8666666666667,1756,460 +26993,449.8833333333333,1754,460 +26994,449.9,1751,460 +26995,449.9166666666667,1746,460 +26996,449.93333333333334,1741,461 +26997,449.95,1734,461 +26998,449.96666666666664,1726,462 +26999,449.98333333333335,1717,462 +27000,450.0,1707,463 +27001,450.01666666666665,1695,464 +27002,450.0333333333333,1683,465 +27003,450.05,1670,465 +27004,450.06666666666666,1656,466 +27005,450.0833333333333,1642,467 +27006,450.09999999999997,1626,468 +27007,450.1166666666667,1610,469 +27008,450.1333333333333,1593,470 +27009,450.15,1576,470 +27010,450.1666666666667,1558,471 +27011,450.18333333333334,1540,471 +27012,450.2,1521,472 +27013,450.21666666666664,1502,472 +27014,450.23333333333335,1483,472 +27015,450.25,1464,472 +27016,450.26666666666665,1445,473 +27017,450.2833333333333,1426,473 +27018,450.3,1408,473 +27019,450.31666666666666,1389,473 +27020,450.3333333333333,1370,473 +27021,450.34999999999997,1352,473 +27022,450.3666666666667,1335,472 +27023,450.3833333333333,1318,472 +27024,450.4,1302,472 +27025,450.4166666666667,1286,471 +27026,450.43333333333334,1272,471 +27027,450.45,1258,470 +27028,450.46666666666664,1245,470 +27029,450.48333333333335,1233,470 +27030,450.5,1222,469 +27031,450.51666666666665,1212,469 +27032,450.5333333333333,1203,469 +27033,450.55,1196,468 +27034,450.56666666666666,1189,468 +27035,450.5833333333333,1184,467 +27036,450.59999999999997,1180,467 +27037,450.6166666666667,1178,467 +27038,450.6333333333333,1178,467 +27039,450.65,1178,467 +27040,450.6666666666667,1178,467 +27041,450.68333333333334,1181,467 +27042,450.7,1185,468 +27043,450.71666666666664,1190,468 +27044,450.73333333333335,1196,468 +27045,450.75,1204,469 +27046,450.76666666666665,1213,469 +27047,450.7833333333333,1223,469 +27048,450.8,1235,470 +27049,450.81666666666666,1247,470 +27050,450.8333333333333,1260,471 +27051,450.84999999999997,1274,471 +27052,450.8666666666667,1289,472 +27053,450.8833333333333,1305,472 +27054,450.9,1322,473 +27055,450.9166666666667,1339,473 +27056,450.93333333333334,1357,473 +27057,450.95,1375,473 +27058,450.96666666666664,1394,473 +27059,450.98333333333335,1413,474 +27060,451.0,1432,474 +27061,451.01666666666665,1452,474 +27062,451.0333333333333,1471,474 +27063,451.05,1491,473 +27064,451.06666666666666,1510,473 +27065,451.0833333333333,1529,473 +27066,451.09999999999997,1548,472 +27067,451.1166666666667,1566,472 +27068,451.1333333333333,1584,471 +27069,451.15,1601,471 +27070,451.1666666666667,1618,470 +27071,451.18333333333334,1634,469 +27072,451.2,1649,469 +27073,451.21666666666664,1663,468 +27074,451.23333333333335,1677,467 +27075,451.25,1690,466 +27076,451.26666666666665,1701,465 +27077,451.2833333333333,1712,464 +27078,451.3,1722,463 +27079,451.31666666666666,1730,462 +27080,451.3333333333333,1737,461 +27081,451.34999999999997,1744,461 +27082,451.3666666666667,1749,460 +27083,451.3833333333333,1753,460 +27084,451.4,1755,460 +27085,451.4166666666667,1756,459 +27086,451.43333333333334,1756,459 +27087,451.45,1756,459 +27088,451.46666666666664,1754,459 +27089,451.48333333333335,1750,460 +27090,451.5,1746,460 +27091,451.51666666666665,1740,460 +27092,451.5333333333333,1733,461 +27093,451.55,1725,461 +27094,451.56666666666666,1716,462 +27095,451.5833333333333,1706,463 +27096,451.59999999999997,1694,464 +27097,451.6166666666667,1682,465 +27098,451.6333333333333,1669,465 +27099,451.65,1655,466 +27100,451.6666666666667,1640,467 +27101,451.68333333333334,1625,468 +27102,451.7,1608,469 +27103,451.71666666666664,1592,469 +27104,451.73333333333335,1574,470 +27105,451.75,1556,470 +27106,451.76666666666665,1538,471 +27107,451.7833333333333,1520,471 +27108,451.8,1501,472 +27109,451.81666666666666,1482,472 +27110,451.8333333333333,1463,472 +27111,451.84999999999997,1444,472 +27112,451.8666666666667,1425,472 +27113,451.8833333333333,1406,472 +27114,451.9,1387,472 +27115,451.9166666666667,1369,472 +27116,451.93333333333334,1351,472 +27117,451.95,1334,472 +27118,451.96666666666664,1317,472 +27119,451.98333333333335,1301,471 +27120,452.0,1285,471 +27121,452.01666666666665,1271,470 +27122,452.0333333333333,1258,470 +27123,452.05,1245,469 +27124,452.06666666666666,1233,469 +27125,452.0833333333333,1222,469 +27126,452.09999999999997,1212,468 +27127,452.1166666666667,1203,468 +27128,452.1333333333333,1196,468 +27129,452.15,1189,467 +27130,452.1666666666667,1185,467 +27131,452.18333333333334,1181,467 +27132,452.2,1178,467 +27133,452.21666666666664,1178,467 +27134,452.23333333333335,1178,467 +27135,452.25,1179,467 +27136,452.26666666666665,1182,467 +27137,452.2833333333333,1186,467 +27138,452.3,1191,468 +27139,452.31666666666666,1198,468 +27140,452.3333333333333,1206,468 +27141,452.34999999999997,1215,469 +27142,452.3666666666667,1225,469 +27143,452.3833333333333,1237,469 +27144,452.4,1249,469 +27145,452.4166666666667,1263,470 +27146,452.43333333333334,1276,470 +27147,452.45,1291,471 +27148,452.46666666666664,1307,471 +27149,452.48333333333335,1324,472 +27150,452.5,1340,472 +27151,452.51666666666665,1358,472 +27152,452.5333333333333,1377,472 +27153,452.55,1396,473 +27154,452.56666666666666,1414,473 +27155,452.5833333333333,1434,473 +27156,452.59999999999997,1453,473 +27157,452.6166666666667,1472,473 +27158,452.6333333333333,1491,472 +27159,452.65,1511,472 +27160,452.6666666666667,1530,472 +27161,452.68333333333334,1548,471 +27162,452.7,1566,471 +27163,452.71666666666664,1584,471 +27164,452.73333333333335,1601,470 +27165,452.75,1618,469 +27166,452.76666666666665,1634,469 +27167,452.7833333333333,1649,468 +27168,452.8,1663,467 +27169,452.81666666666666,1677,466 +27170,452.8333333333333,1689,465 +27171,452.84999999999997,1701,464 +27172,452.8666666666667,1711,463 +27173,452.8833333333333,1721,463 +27174,452.9,1729,462 +27175,452.9166666666667,1736,461 +27176,452.93333333333334,1743,460 +27177,452.95,1747,460 +27178,452.96666666666664,1751,459 +27179,452.98333333333335,1754,459 +27180,453.0,1754,459 +27181,453.01666666666665,1754,459 +27182,453.0333333333333,1754,459 +27183,453.05,1752,459 +27184,453.06666666666666,1748,459 +27185,453.0833333333333,1744,460 +27186,453.09999999999997,1737,460 +27187,453.1166666666667,1730,461 +27188,453.1333333333333,1722,461 +27189,453.15,1713,462 +27190,453.1666666666667,1703,463 +27191,453.18333333333334,1691,464 +27192,453.2,1679,464 +27193,453.21666666666664,1666,466 +27194,453.23333333333335,1652,466 +27195,453.25,1637,467 +27196,453.26666666666665,1622,468 +27197,453.2833333333333,1605,469 +27198,453.3,1589,469 +27199,453.31666666666666,1571,470 +27200,453.3333333333333,1553,471 +27201,453.34999999999997,1535,471 +27202,453.3666666666667,1517,471 +27203,453.3833333333333,1498,472 +27204,453.4,1479,472 +27205,453.4166666666667,1460,472 +27206,453.43333333333334,1441,472 +27207,453.45,1422,472 +27208,453.46666666666664,1403,472 +27209,453.48333333333335,1385,472 +27210,453.5,1367,472 +27211,453.51666666666665,1349,472 +27212,453.5333333333333,1331,472 +27213,453.55,1315,471 +27214,453.56666666666666,1299,471 +27215,453.5833333333333,1284,470 +27216,453.59999999999997,1270,470 +27217,453.6166666666667,1256,470 +27218,453.6333333333333,1244,469 +27219,453.65,1232,469 +27220,453.6666666666667,1221,469 +27221,453.68333333333334,1212,468 +27222,453.7,1203,468 +27223,453.71666666666664,1196,468 +27224,453.73333333333335,1190,468 +27225,453.75,1185,467 +27226,453.76666666666665,1181,467 +27227,453.7833333333333,1179,467 +27228,453.8,1179,467 +27229,453.81666666666666,1179,467 +27230,453.8333333333333,1180,467 +27231,453.84999999999997,1183,467 +27232,453.8666666666667,1188,468 +27233,453.8833333333333,1193,468 +27234,453.9,1200,468 +27235,453.9166666666667,1208,469 +27236,453.93333333333334,1217,469 +27237,453.95,1228,469 +27238,453.96666666666664,1239,470 +27239,453.98333333333335,1251,470 +27240,454.0,1265,471 +27241,454.01666666666665,1279,471 +27242,454.0333333333333,1294,472 +27243,454.05,1310,472 +27244,454.06666666666666,1326,472 +27245,454.0833333333333,1343,473 +27246,454.09999999999997,1361,473 +27247,454.1166666666667,1380,473 +27248,454.1333333333333,1399,473 +27249,454.15,1417,473 +27250,454.1666666666667,1436,473 +27251,454.18333333333334,1456,473 +27252,454.2,1475,473 +27253,454.21666666666664,1494,473 +27254,454.23333333333335,1513,473 +27255,454.25,1532,472 +27256,454.26666666666665,1550,472 +27257,454.2833333333333,1568,471 +27258,454.3,1586,471 +27259,454.31666666666666,1603,470 +27260,454.3333333333333,1619,470 +27261,454.34999999999997,1635,469 +27262,454.3666666666667,1650,468 +27263,454.3833333333333,1665,468 +27264,454.4,1678,467 +27265,454.4166666666667,1690,466 +27266,454.43333333333334,1702,465 +27267,454.45,1712,464 +27268,454.46666666666664,1722,463 +27269,454.48333333333335,1730,462 +27270,454.5,1737,461 +27271,454.51666666666665,1743,461 +27272,454.5333333333333,1748,461 +27273,454.55,1751,460 +27274,454.56666666666666,1753,460 +27275,454.5833333333333,1753,460 +27276,454.59999999999997,1753,460 +27277,454.6166666666667,1753,460 +27278,454.6333333333333,1751,460 +27279,454.65,1747,460 +27280,454.6666666666667,1742,460 +27281,454.68333333333334,1736,461 +27282,454.7,1729,462 +27283,454.71666666666664,1721,462 +27284,454.73333333333335,1711,463 +27285,454.75,1701,464 +27286,454.76666666666665,1689,465 +27287,454.7833333333333,1677,465 +27288,454.8,1664,466 +27289,454.81666666666666,1650,467 +27290,454.8333333333333,1635,468 +27291,454.84999999999997,1619,469 +27292,454.8666666666667,1603,469 +27293,454.8833333333333,1586,470 +27294,454.9,1569,470 +27295,454.9166666666667,1551,471 +27296,454.93333333333334,1533,471 +27297,454.95,1514,472 +27298,454.96666666666664,1496,472 +27299,454.98333333333335,1477,472 +27300,455.0,1458,473 +27301,455.01666666666665,1439,473 +27302,455.0333333333333,1420,473 +27303,455.05,1402,473 +27304,455.06666666666666,1383,473 +27305,455.0833333333333,1365,473 +27306,455.09999999999997,1347,473 +27307,455.1166666666667,1330,472 +27308,455.1333333333333,1314,472 +27309,455.15,1298,471 +27310,455.1666666666667,1282,471 +27311,455.18333333333334,1268,471 +27312,455.2,1255,470 +27313,455.21666666666664,1243,470 +27314,455.23333333333335,1231,470 +27315,455.25,1221,469 +27316,455.26666666666665,1211,469 +27317,455.2833333333333,1203,469 +27318,455.3,1196,468 +27319,455.31666666666666,1190,468 +27320,455.3333333333333,1185,468 +27321,455.34999999999997,1182,468 +27322,455.3666666666667,1180,468 +27323,455.3833333333333,1180,468 +27324,455.4,1180,468 +27325,455.4166666666667,1181,468 +27326,455.43333333333334,1184,468 +27327,455.45,1189,468 +27328,455.46666666666664,1194,468 +27329,455.48333333333335,1201,469 +27330,455.5,1210,469 +27331,455.51666666666665,1219,470 +27332,455.5333333333333,1230,470 +27333,455.55,1240,470 +27334,455.56666666666666,1253,471 +27335,455.5833333333333,1266,471 +27336,455.59999999999997,1280,472 +27337,455.6166666666667,1296,472 +27338,455.6333333333333,1312,473 +27339,455.65,1328,473 +27340,455.6666666666667,1345,473 +27341,455.68333333333334,1363,473 +27342,455.7,1382,474 +27343,455.71666666666664,1401,474 +27344,455.73333333333335,1419,474 +27345,455.75,1438,474 +27346,455.76666666666665,1457,474 +27347,455.7833333333333,1477,473 +27348,455.8,1496,473 +27349,455.81666666666666,1515,473 +27350,455.8333333333333,1533,473 +27351,455.84999999999997,1552,472 +27352,455.8666666666667,1570,472 +27353,455.8833333333333,1587,471 +27354,455.9,1604,471 +27355,455.9166666666667,1620,470 +27356,455.93333333333334,1636,469 +27357,455.95,1651,469 +27358,455.96666666666664,1665,468 +27359,455.98333333333335,1678,467 +27360,456.0,1691,466 +27361,456.01666666666665,1702,465 +27362,456.0333333333333,1712,464 +27363,456.05,1721,463 +27364,456.06666666666666,1729,463 +27365,456.0833333333333,1736,462 +27366,456.09999999999997,1742,461 +27367,456.1166666666667,1747,461 +27368,456.1333333333333,1750,461 +27369,456.15,1752,460 +27370,456.1666666666667,1752,460 +27371,456.18333333333334,1752,460 +27372,456.2,1752,460 +27373,456.21666666666664,1749,460 +27374,456.23333333333335,1745,461 +27375,456.25,1740,461 +27376,456.26666666666665,1734,461 +27377,456.2833333333333,1727,462 +27378,456.3,1718,463 +27379,456.31666666666666,1709,463 +27380,456.3333333333333,1698,464 +27381,456.34999999999997,1687,465 +27382,456.3666666666667,1674,466 +27383,456.3833333333333,1661,466 +27384,456.4,1647,467 +27385,456.4166666666667,1632,468 +27386,456.43333333333334,1616,469 +27387,456.45,1600,470 +27388,456.46666666666664,1583,470 +27389,456.48333333333335,1566,471 +27390,456.5,1548,471 +27391,456.51666666666665,1530,472 +27392,456.5333333333333,1511,472 +27393,456.55,1493,473 +27394,456.56666666666666,1474,473 +27395,456.5833333333333,1455,473 +27396,456.59999999999997,1436,473 +27397,456.6166666666667,1417,473 +27398,456.6333333333333,1399,473 +27399,456.65,1380,473 +27400,456.6666666666667,1362,473 +27401,456.68333333333334,1345,473 +27402,456.7,1328,472 +27403,456.71666666666664,1312,472 +27404,456.73333333333335,1296,471 +27405,456.75,1281,471 +27406,456.76666666666665,1267,471 +27407,456.7833333333333,1253,470 +27408,456.8,1241,470 +27409,456.81666666666666,1230,470 +27410,456.8333333333333,1219,469 +27411,456.84999999999997,1210,469 +27412,456.8666666666667,1202,469 +27413,456.8833333333333,1195,468 +27414,456.9,1189,468 +27415,456.9166666666667,1184,468 +27416,456.93333333333334,1181,468 +27417,456.95,1179,468 +27418,456.96666666666664,1179,468 +27419,456.98333333333335,1179,468 +27420,457.0,1181,468 +27421,457.01666666666665,1185,468 +27422,457.0333333333333,1189,468 +27423,457.05,1195,468 +27424,457.06666666666666,1202,469 +27425,457.0833333333333,1210,469 +27426,457.09999999999997,1220,469 +27427,457.1166666666667,1230,470 +27428,457.1333333333333,1242,470 +27429,457.15,1254,471 +27430,457.1666666666667,1268,471 +27431,457.18333333333334,1282,471 +27432,457.2,1297,472 +27433,457.21666666666664,1313,472 +27434,457.23333333333335,1330,473 +27435,457.25,1347,473 +27436,457.26666666666665,1365,473 +27437,457.2833333333333,1384,474 +27438,457.3,1402,474 +27439,457.31666666666666,1420,474 +27440,457.3333333333333,1440,474 +27441,457.34999999999997,1459,474 +27442,457.3666666666667,1478,474 +27443,457.3833333333333,1497,474 +27444,457.4,1516,473 +27445,457.4166666666667,1534,473 +27446,457.43333333333334,1553,472 +27447,457.45,1571,472 +27448,457.46666666666664,1588,471 +27449,457.48333333333335,1605,471 +27450,457.5,1621,470 +27451,457.51666666666665,1637,469 +27452,457.5333333333333,1652,469 +27453,457.55,1665,468 +27454,457.56666666666666,1679,467 +27455,457.5833333333333,1691,466 +27456,457.59999999999997,1702,465 +27457,457.6166666666667,1712,464 +27458,457.6333333333333,1721,464 +27459,457.65,1729,463 +27460,457.6666666666667,1736,462 +27461,457.68333333333334,1741,462 +27462,457.7,1746,461 +27463,457.71666666666664,1749,461 +27464,457.73333333333335,1751,461 +27465,457.75,1751,461 +27466,457.76666666666665,1751,461 +27467,457.7833333333333,1750,461 +27468,457.8,1747,461 +27469,457.81666666666666,1743,461 +27470,457.8333333333333,1738,461 +27471,457.84999999999997,1732,462 +27472,457.8666666666667,1725,462 +27473,457.8833333333333,1716,463 +27474,457.9,1707,464 +27475,457.9166666666667,1696,464 +27476,457.93333333333334,1684,465 +27477,457.95,1672,466 +27478,457.96666666666664,1659,467 +27479,457.98333333333335,1644,468 +27480,458.0,1630,469 +27481,458.01666666666665,1614,469 +27482,458.0333333333333,1598,470 +27483,458.05,1581,471 +27484,458.06666666666666,1563,471 +27485,458.0833333333333,1546,472 +27486,458.09999999999997,1528,472 +27487,458.1166666666667,1509,472 +27488,458.1333333333333,1490,473 +27489,458.15,1472,473 +27490,458.1666666666667,1453,473 +27491,458.18333333333334,1434,473 +27492,458.2,1416,473 +27493,458.21666666666664,1397,473 +27494,458.23333333333335,1379,473 +27495,458.25,1361,473 +27496,458.26666666666665,1343,473 +27497,458.2833333333333,1327,473 +27498,458.3,1310,472 +27499,458.31666666666666,1295,472 +27500,458.3333333333333,1280,471 +27501,458.34999999999997,1266,471 +27502,458.3666666666667,1253,471 +27503,458.3833333333333,1241,470 +27504,458.4,1229,470 +27505,458.4166666666667,1219,470 +27506,458.43333333333334,1210,469 +27507,458.45,1202,469 +27508,458.46666666666664,1195,469 +27509,458.48333333333335,1189,468 +27510,458.5,1185,468 +27511,458.51666666666665,1182,468 +27512,458.5333333333333,1180,468 +27513,458.55,1180,468 +27514,458.56666666666666,1180,468 +27515,458.5833333333333,1182,468 +27516,458.59999999999997,1186,469 +27517,458.6166666666667,1191,469 +27518,458.6333333333333,1196,469 +27519,458.65,1204,469 +27520,458.6666666666667,1212,470 +27521,458.68333333333334,1222,470 +27522,458.7,1232,470 +27523,458.71666666666664,1244,471 +27524,458.73333333333335,1257,471 +27525,458.75,1270,471 +27526,458.76666666666665,1284,472 +27527,458.7833333333333,1300,472 +27528,458.8,1316,473 +27529,458.81666666666666,1332,473 +27530,458.8333333333333,1349,473 +27531,458.84999999999997,1367,474 +27532,458.8666666666667,1386,474 +27533,458.8833333333333,1404,474 +27534,458.9,1423,474 +27535,458.9166666666667,1442,474 +27536,458.93333333333334,1461,474 +27537,458.95,1480,474 +27538,458.96666666666664,1500,473 +27539,458.98333333333335,1518,473 +27540,459.0,1537,473 +27541,459.01666666666665,1555,472 +27542,459.0333333333333,1573,472 +27543,459.05,1590,471 +27544,459.06666666666666,1607,471 +27545,459.0833333333333,1623,470 +27546,459.09999999999997,1638,469 +27547,459.1166666666667,1653,469 +27548,459.1333333333333,1667,468 +27549,459.15,1680,467 +27550,459.1666666666667,1691,466 +27551,459.18333333333334,1703,465 +27552,459.2,1713,464 +27553,459.21666666666664,1721,464 +27554,459.23333333333335,1729,463 +27555,459.25,1736,462 +27556,459.26666666666665,1741,462 +27557,459.2833333333333,1746,461 +27558,459.3,1749,461 +27559,459.31666666666666,1751,461 +27560,459.3333333333333,1751,461 +27561,459.34999999999997,1751,461 +27562,459.3666666666667,1749,461 +27563,459.3833333333333,1747,461 +27564,459.4,1742,461 +27565,459.4166666666667,1737,461 +27566,459.43333333333334,1731,462 +27567,459.45,1723,462 +27568,459.46666666666664,1715,463 +27569,459.48333333333335,1705,464 +27570,459.5,1695,464 +27571,459.51666666666665,1683,465 +27572,459.5333333333333,1671,466 +27573,459.55,1657,467 +27574,459.56666666666666,1643,468 +27575,459.5833333333333,1628,469 +27576,459.59999999999997,1612,469 +27577,459.6166666666667,1596,470 +27578,459.6333333333333,1579,470 +27579,459.65,1562,471 +27580,459.6666666666667,1544,471 +27581,459.68333333333334,1526,472 +27582,459.7,1507,472 +27583,459.71666666666664,1489,473 +27584,459.73333333333335,1470,473 +27585,459.75,1451,473 +27586,459.76666666666665,1433,473 +27587,459.7833333333333,1414,473 +27588,459.8,1396,473 +27589,459.81666666666666,1377,473 +27590,459.8333333333333,1359,473 +27591,459.84999999999997,1342,473 +27592,459.8666666666667,1325,473 +27593,459.8833333333333,1309,472 +27594,459.9,1294,472 +27595,459.9166666666667,1279,471 +27596,459.93333333333334,1265,471 +27597,459.95,1252,471 +27598,459.96666666666664,1240,470 +27599,459.98333333333335,1229,470 +27600,460.0,1219,470 +27601,460.01666666666665,1209,469 +27602,460.0333333333333,1202,469 +27603,460.05,1195,469 +27604,460.06666666666666,1189,469 +27605,460.0833333333333,1185,468 +27606,460.09999999999997,1182,468 +27607,460.1166666666667,1181,468 +27608,460.1333333333333,1181,468 +27609,460.15,1181,468 +27610,460.1666666666667,1183,468 +27611,460.18333333333334,1187,468 +27612,460.2,1192,469 +27613,460.21666666666664,1198,469 +27614,460.23333333333335,1205,469 +27615,460.25,1213,470 +27616,460.26666666666665,1223,470 +27617,460.2833333333333,1234,470 +27618,460.3,1246,471 +27619,460.31666666666666,1258,471 +27620,460.3333333333333,1272,471 +27621,460.34999999999997,1286,472 +27622,460.3666666666667,1302,472 +27623,460.3833333333333,1318,473 +27624,460.4,1334,473 +27625,460.4166666666667,1351,474 +27626,460.43333333333334,1370,474 +27627,460.45,1388,474 +27628,460.46666666666664,1406,474 +27629,460.48333333333335,1425,474 +27630,460.5,1444,474 +27631,460.51666666666665,1463,474 +27632,460.5333333333333,1482,474 +27633,460.55,1501,473 +27634,460.56666666666666,1520,473 +27635,460.5833333333333,1538,473 +27636,460.59999999999997,1556,472 +27637,460.6166666666667,1574,472 +27638,460.6333333333333,1591,471 +27639,460.65,1608,471 +27640,460.6666666666667,1624,470 +27641,460.68333333333334,1639,469 +27642,460.7,1654,468 +27643,460.71666666666664,1667,468 +27644,460.73333333333335,1680,467 +27645,460.75,1692,466 +27646,460.76666666666665,1703,465 +27647,460.7833333333333,1713,464 +27648,460.8,1721,463 +27649,460.81666666666666,1729,463 +27650,460.8333333333333,1735,462 +27651,460.84999999999997,1741,461 +27652,460.8666666666667,1745,461 +27653,460.8833333333333,1748,461 +27654,460.9,1750,461 +27655,460.9166666666667,1750,460 +27656,460.93333333333334,1750,460 +27657,460.95,1748,460 +27658,460.96666666666664,1745,461 +27659,460.98333333333335,1741,461 +27660,461.0,1736,461 +27661,461.01666666666665,1729,462 +27662,461.0333333333333,1722,462 +27663,461.05,1713,463 +27664,461.06666666666666,1703,464 +27665,461.0833333333333,1693,465 +27666,461.09999999999997,1681,465 +27667,461.1166666666667,1668,466 +27668,461.1333333333333,1655,467 +27669,461.15,1640,468 +27670,461.1666666666667,1625,469 +27671,461.18333333333334,1610,470 +27672,461.2,1593,470 +27673,461.21666666666664,1577,471 +27674,461.23333333333335,1559,471 +27675,461.25,1541,472 +27676,461.26666666666665,1523,472 +27677,461.2833333333333,1505,472 +27678,461.3,1486,473 +27679,461.31666666666666,1468,473 +27680,461.3333333333333,1449,473 +27681,461.34999999999997,1430,473 +27682,461.3666666666667,1412,473 +27683,461.3833333333333,1393,473 +27684,461.4,1375,473 +27685,461.4166666666667,1357,473 +27686,461.43333333333334,1340,473 +27687,461.45,1323,473 +27688,461.46666666666664,1308,472 +27689,461.48333333333335,1292,472 +27690,461.5,1278,471 +27691,461.51666666666665,1264,471 +27692,461.5333333333333,1251,471 +27693,461.55,1239,470 +27694,461.56666666666666,1228,470 +27695,461.5833333333333,1218,469 +27696,461.59999999999997,1210,469 +27697,461.6166666666667,1202,469 +27698,461.6333333333333,1195,469 +27699,461.65,1190,468 +27700,461.6666666666667,1186,468 +27701,461.68333333333334,1183,468 +27702,461.7,1182,468 +27703,461.71666666666664,1182,468 +27704,461.73333333333335,1182,468 +27705,461.75,1185,468 +27706,461.76666666666665,1188,468 +27707,461.7833333333333,1194,469 +27708,461.8,1199,469 +27709,461.81666666666666,1207,469 +27710,461.8333333333333,1215,470 +27711,461.84999999999997,1225,470 +27712,461.8666666666667,1236,470 +27713,461.8833333333333,1248,471 +27714,461.9,1260,471 +27715,461.9166666666667,1274,471 +27716,461.93333333333334,1288,472 +27717,461.95,1304,472 +27718,461.96666666666664,1320,473 +27719,461.98333333333335,1336,473 +27720,462.0,1353,474 +27721,462.01666666666665,1371,474 +27722,462.0333333333333,1390,474 +27723,462.05,1408,474 +27724,462.06666666666666,1427,474 +27725,462.0833333333333,1446,474 +27726,462.09999999999997,1465,474 +27727,462.1166666666667,1484,474 +27728,462.1333333333333,1503,473 +27729,462.15,1521,473 +27730,462.1666666666667,1540,473 +27731,462.18333333333334,1558,472 +27732,462.2,1575,472 +27733,462.21666666666664,1592,471 +27734,462.23333333333335,1609,471 +27735,462.25,1625,470 +27736,462.26666666666665,1640,469 +27737,462.2833333333333,1654,469 +27738,462.3,1668,468 +27739,462.31666666666666,1681,467 +27740,462.3333333333333,1692,466 +27741,462.34999999999997,1703,465 +27742,462.3666666666667,1712,465 +27743,462.3833333333333,1721,464 +27744,462.4,1729,463 +27745,462.4166666666667,1735,463 +27746,462.43333333333334,1740,462 +27747,462.45,1744,462 +27748,462.46666666666664,1747,461 +27749,462.48333333333335,1748,461 +27750,462.5,1748,461 +27751,462.51666666666665,1748,461 +27752,462.5333333333333,1746,461 +27753,462.55,1743,461 +27754,462.56666666666666,1739,461 +27755,462.5833333333333,1733,462 +27756,462.59999999999997,1727,462 +27757,462.6166666666667,1719,463 +27758,462.6333333333333,1711,464 +27759,462.65,1701,464 +27760,462.6666666666667,1690,465 +27761,462.68333333333334,1679,466 +27762,462.7,1666,466 +27763,462.71666666666664,1652,467 +27764,462.73333333333335,1638,468 +27765,462.75,1623,469 +27766,462.76666666666665,1607,470 +27767,462.7833333333333,1591,470 +27768,462.8,1574,471 +27769,462.81666666666666,1557,471 +27770,462.8333333333333,1539,472 +27771,462.84999999999997,1521,472 +27772,462.8666666666667,1503,472 +27773,462.8833333333333,1484,472 +27774,462.9,1466,473 +27775,462.9166666666667,1447,473 +27776,462.93333333333334,1428,473 +27777,462.95,1410,473 +27778,462.96666666666664,1392,473 +27779,462.98333333333335,1374,473 +27780,463.0,1356,473 +27781,463.01666666666665,1339,473 +27782,463.0333333333333,1322,472 +27783,463.05,1307,472 +27784,463.06666666666666,1292,471 +27785,463.0833333333333,1277,471 +27786,463.09999999999997,1264,471 +27787,463.1166666666667,1251,470 +27788,463.1333333333333,1239,470 +27789,463.15,1228,469 +27790,463.1666666666667,1219,469 +27791,463.18333333333334,1210,469 +27792,463.2,1202,468 +27793,463.21666666666664,1196,468 +27794,463.23333333333335,1191,468 +27795,463.25,1186,468 +27796,463.26666666666665,1184,468 +27797,463.2833333333333,1184,468 +27798,463.3,1184,468 +27799,463.31666666666666,1184,468 +27800,463.3333333333333,1186,468 +27801,463.34999999999997,1190,468 +27802,463.3666666666667,1195,468 +27803,463.3833333333333,1201,469 +27804,463.4,1209,469 +27805,463.4166666666667,1218,469 +27806,463.43333333333334,1228,470 +27807,463.45,1238,470 +27808,463.46666666666664,1250,470 +27809,463.48333333333335,1263,471 +27810,463.5,1276,471 +27811,463.51666666666665,1291,472 +27812,463.5333333333333,1306,472 +27813,463.55,1322,473 +27814,463.56666666666666,1339,473 +27815,463.5833333333333,1356,473 +27816,463.59999999999997,1375,473 +27817,463.6166666666667,1393,473 +27818,463.6333333333333,1411,473 +27819,463.65,1430,473 +27820,463.6666666666667,1449,473 +27821,463.68333333333334,1468,473 +27822,463.7,1486,473 +27823,463.71666666666664,1505,473 +27824,463.73333333333335,1524,473 +27825,463.75,1542,472 +27826,463.76666666666665,1560,472 +27827,463.7833333333333,1577,471 +27828,463.8,1594,471 +27829,463.81666666666666,1611,470 +27830,463.8333333333333,1627,469 +27831,463.84999999999997,1641,469 +27832,463.8666666666667,1656,468 +27833,463.8833333333333,1669,467 +27834,463.9,1682,466 +27835,463.9166666666667,1693,465 +27836,463.93333333333334,1704,464 +27837,463.95,1713,464 +27838,463.96666666666664,1722,463 +27839,463.98333333333335,1729,462 +27840,464.0,1735,462 +27841,464.01666666666665,1740,461 +27842,464.0333333333333,1744,461 +27843,464.05,1747,460 +27844,464.06666666666666,1748,460 +27845,464.0833333333333,1748,460 +27846,464.09999999999997,1748,460 +27847,464.1166666666667,1746,460 +27848,464.1333333333333,1742,460 +27849,464.15,1738,461 +27850,464.1666666666667,1733,461 +27851,464.18333333333334,1726,462 +27852,464.2,1718,462 +27853,464.21666666666664,1709,463 +27854,464.23333333333335,1699,463 +27855,464.25,1689,464 +27856,464.26666666666665,1677,465 +27857,464.2833333333333,1664,466 +27858,464.3,1651,467 +27859,464.31666666666666,1636,468 +27860,464.3333333333333,1621,468 +27861,464.34999999999997,1605,469 +27862,464.3666666666667,1589,470 +27863,464.3833333333333,1572,470 +27864,464.4,1555,471 +27865,464.4166666666667,1537,471 +27866,464.43333333333334,1519,472 +27867,464.45,1501,472 +27868,464.46666666666664,1483,472 +27869,464.48333333333335,1464,473 +27870,464.5,1446,473 +27871,464.51666666666665,1427,473 +27872,464.5333333333333,1409,473 +27873,464.55,1391,473 +27874,464.56666666666666,1373,473 +27875,464.5833333333333,1355,473 +27876,464.59999999999997,1338,472 +27877,464.6166666666667,1322,472 +27878,464.6333333333333,1306,472 +27879,464.65,1291,471 +27880,464.6666666666667,1277,471 +27881,464.68333333333334,1263,470 +27882,464.7,1251,470 +27883,464.71666666666664,1239,470 +27884,464.73333333333335,1228,470 +27885,464.75,1219,469 +27886,464.76666666666665,1210,469 +27887,464.7833333333333,1203,469 +27888,464.8,1196,468 +27889,464.81666666666666,1191,468 +27890,464.8333333333333,1188,468 +27891,464.84999999999997,1185,468 +27892,464.8666666666667,1185,468 +27893,464.8833333333333,1185,468 +27894,464.9,1185,468 +27895,464.9166666666667,1188,468 +27896,464.93333333333334,1192,468 +27897,464.95,1197,468 +27898,464.96666666666664,1203,469 +27899,464.98333333333335,1211,469 +27900,465.0,1220,469 +27901,465.01666666666665,1230,470 +27902,465.0333333333333,1241,470 +27903,465.05,1252,471 +27904,465.06666666666666,1265,471 +27905,465.0833333333333,1279,471 +27906,465.09999999999997,1294,472 +27907,465.1166666666667,1309,472 +27908,465.1333333333333,1325,473 +27909,465.15,1342,473 +27910,465.1666666666667,1359,473 +27911,465.18333333333334,1377,473 +27912,465.2,1396,473 +27913,465.21666666666664,1414,473 +27914,465.23333333333335,1433,473 +27915,465.25,1452,473 +27916,465.26666666666665,1471,473 +27917,465.2833333333333,1489,473 +27918,465.3,1508,473 +27919,465.31666666666666,1526,472 +27920,465.3333333333333,1545,472 +27921,465.34999999999997,1562,472 +27922,465.3666666666667,1580,471 +27923,465.3833333333333,1597,471 +27924,465.4,1613,470 +27925,465.4166666666667,1629,469 +27926,465.43333333333334,1643,469 +27927,465.45,1658,468 +27928,465.46666666666664,1671,467 +27929,465.48333333333335,1683,466 +27930,465.5,1694,465 +27931,465.51666666666665,1705,464 +27932,465.5333333333333,1714,464 +27933,465.55,1722,463 +27934,465.56666666666666,1730,462 +27935,465.5833333333333,1736,462 +27936,465.59999999999997,1740,461 +27937,465.6166666666667,1744,461 +27938,465.6333333333333,1747,460 +27939,465.65,1747,460 +27940,465.6666666666667,1747,460 +27941,465.68333333333334,1747,460 +27942,465.7,1745,460 +27943,465.71666666666664,1742,460 +27944,465.73333333333335,1737,461 +27945,465.75,1731,461 +27946,465.76666666666665,1725,462 +27947,465.7833333333333,1717,462 +27948,465.8,1708,463 +27949,465.81666666666666,1698,463 +27950,465.8333333333333,1687,464 +27951,465.84999999999997,1675,465 +27952,465.8666666666667,1663,466 +27953,465.8833333333333,1649,467 +27954,465.9,1634,467 +27955,465.9166666666667,1619,468 +27956,465.93333333333334,1604,469 +27957,465.95,1587,470 +27958,465.96666666666664,1571,470 +27959,465.98333333333335,1553,471 +27960,466.0,1535,471 +27961,466.01666666666665,1517,472 +27962,466.0333333333333,1499,472 +27963,466.05,1481,472 +27964,466.06666666666666,1462,472 +27965,466.0833333333333,1443,472 +27966,466.09999999999997,1425,472 +27967,466.1166666666667,1407,472 +27968,466.1333333333333,1389,472 +27969,466.15,1371,472 +27970,466.1666666666667,1353,472 +27971,466.18333333333334,1336,472 +27972,466.2,1320,472 +27973,466.21666666666664,1305,471 +27974,466.23333333333335,1290,471 +27975,466.25,1275,470 +27976,466.26666666666665,1262,470 +27977,466.2833333333333,1250,469 +27978,466.3,1238,469 +27979,466.31666666666666,1228,469 +27980,466.3333333333333,1218,469 +27981,466.34999999999997,1209,468 +27982,466.3666666666667,1202,468 +27983,466.3833333333333,1196,468 +27984,466.4,1191,467 +27985,466.4166666666667,1188,467 +27986,466.43333333333334,1185,467 +27987,466.45,1185,467 +27988,466.46666666666664,1185,467 +27989,466.48333333333335,1186,467 +27990,466.5,1189,467 +27991,466.51666666666665,1193,468 +27992,466.5333333333333,1198,468 +27993,466.55,1205,468 +27994,466.56666666666666,1213,468 +27995,466.5833333333333,1222,469 +27996,466.59999999999997,1232,469 +27997,466.6166666666667,1243,470 +27998,466.6333333333333,1255,470 +27999,466.65,1267,470 +28000,466.6666666666667,1281,471 +28001,466.68333333333334,1296,471 +28002,466.7,1311,471 +28003,466.71666666666664,1327,472 +28004,466.73333333333335,1344,472 +28005,466.75,1361,473 +28006,466.76666666666665,1379,473 +28007,466.7833333333333,1398,473 +28008,466.8,1416,473 +28009,466.81666666666666,1434,473 +28010,466.8333333333333,1453,473 +28011,466.84999999999997,1472,473 +28012,466.8666666666667,1491,473 +28013,466.8833333333333,1509,472 +28014,466.9,1528,472 +28015,466.9166666666667,1546,472 +28016,466.93333333333334,1563,471 +28017,466.95,1581,470 +28018,466.96666666666664,1597,470 +28019,466.98333333333335,1614,469 +28020,467.0,1629,469 +28021,467.01666666666665,1644,468 +28022,467.0333333333333,1658,467 +28023,467.05,1671,466 +28024,467.06666666666666,1683,465 +28025,467.0833333333333,1694,464 +28026,467.09999999999997,1705,464 +28027,467.1166666666667,1714,463 +28028,467.1333333333333,1722,462 +28029,467.15,1729,461 +28030,467.1666666666667,1735,461 +28031,467.18333333333334,1740,460 +28032,467.2,1743,460 +28033,467.21666666666664,1746,460 +28034,467.23333333333335,1746,460 +28035,467.25,1746,460 +28036,467.26666666666665,1746,460 +28037,467.2833333333333,1744,460 +28038,467.3,1740,460 +28039,467.31666666666666,1736,460 +28040,467.3333333333333,1730,461 +28041,467.34999999999997,1723,461 +28042,467.3666666666667,1715,462 +28043,467.3833333333333,1706,462 +28044,467.4,1696,463 +28045,467.4166666666667,1685,464 +28046,467.43333333333334,1673,465 +28047,467.45,1660,465 +28048,467.46666666666664,1647,466 +28049,467.48333333333335,1632,467 +28050,467.5,1617,468 +28051,467.51666666666665,1601,469 +28052,467.5333333333333,1585,469 +28053,467.55,1568,470 +28054,467.56666666666666,1551,470 +28055,467.5833333333333,1533,471 +28056,467.59999999999997,1515,471 +28057,467.6166666666667,1497,471 +28058,467.6333333333333,1479,472 +28059,467.65,1460,472 +28060,467.6666666666667,1442,472 +28061,467.68333333333334,1423,472 +28062,467.7,1405,472 +28063,467.71666666666664,1387,472 +28064,467.73333333333335,1370,472 +28065,467.75,1353,472 +28066,467.76666666666665,1336,472 +28067,467.7833333333333,1320,472 +28068,467.8,1304,471 +28069,467.81666666666666,1289,471 +28070,467.8333333333333,1275,470 +28071,467.84999999999997,1262,470 +28072,467.8666666666667,1250,470 +28073,467.8833333333333,1239,470 +28074,467.9,1228,469 +28075,467.9166666666667,1219,469 +28076,467.93333333333334,1211,469 +28077,467.95,1204,468 +28078,467.96666666666664,1198,468 +28079,467.98333333333335,1193,468 +28080,468.0,1190,468 +28081,468.01666666666665,1187,468 +28082,468.0333333333333,1187,468 +28083,468.05,1187,468 +28084,468.06666666666666,1189,468 +28085,468.0833333333333,1191,468 +28086,468.09999999999997,1196,468 +28087,468.1166666666667,1201,469 +28088,468.1333333333333,1208,469 +28089,468.15,1216,469 +28090,468.1666666666667,1225,469 +28091,468.18333333333334,1235,470 +28092,468.2,1246,470 +28093,468.21666666666664,1258,470 +28094,468.23333333333335,1271,471 +28095,468.25,1285,471 +28096,468.26666666666665,1299,472 +28097,468.2833333333333,1315,473 +28098,468.3,1331,473 +28099,468.31666666666666,1348,473 +28100,468.3333333333333,1365,473 +28101,468.34999999999997,1383,473 +28102,468.3666666666667,1401,473 +28103,468.3833333333333,1420,473 +28104,468.4,1438,473 +28105,468.4166666666667,1457,473 +28106,468.43333333333334,1476,473 +28107,468.45,1494,473 +28108,468.46666666666664,1513,473 +28109,468.48333333333335,1531,473 +28110,468.5,1549,472 +28111,468.51666666666665,1567,472 +28112,468.5333333333333,1584,471 +28113,468.55,1600,471 +28114,468.56666666666666,1616,470 +28115,468.5833333333333,1632,469 +28116,468.59999999999997,1646,469 +28117,468.6166666666667,1660,468 +28118,468.6333333333333,1673,467 +28119,468.65,1685,466 +28120,468.6666666666667,1696,466 +28121,468.68333333333334,1706,465 +28122,468.7,1715,464 +28123,468.71666666666664,1723,463 +28124,468.73333333333335,1730,462 +28125,468.75,1736,462 +28126,468.76666666666665,1741,461 +28127,468.7833333333333,1744,461 +28128,468.8,1746,461 +28129,468.81666666666666,1746,461 +28130,468.8333333333333,1746,461 +28131,468.84999999999997,1746,461 +28132,468.8666666666667,1743,461 +28133,468.8833333333333,1740,461 +28134,468.9,1735,461 +28135,468.9166666666667,1729,462 +28136,468.93333333333334,1722,462 +28137,468.95,1714,463 +28138,468.96666666666664,1705,463 +28139,468.98333333333335,1695,464 +28140,469.0,1684,465 +28141,469.01666666666665,1672,466 +28142,469.0333333333333,1659,467 +28143,469.05,1645,467 +28144,469.06666666666666,1631,468 +28145,469.0833333333333,1616,469 +28146,469.09999999999997,1600,469 +28147,469.1166666666667,1583,470 +28148,469.1333333333333,1566,471 +28149,469.15,1549,471 +28150,469.1666666666667,1531,472 +28151,469.18333333333334,1513,472 +28152,469.2,1495,472 +28153,469.21666666666664,1477,472 +28154,469.23333333333335,1458,473 +28155,469.25,1440,473 +28156,469.26666666666665,1422,473 +28157,469.2833333333333,1403,473 +28158,469.3,1385,473 +28159,469.31666666666666,1368,473 +28160,469.3333333333333,1350,473 +28161,469.34999999999997,1334,472 +28162,469.3666666666667,1318,472 +28163,469.3833333333333,1302,472 +28164,469.4,1288,471 +28165,469.4166666666667,1274,471 +28166,469.43333333333334,1261,471 +28167,469.45,1249,470 +28168,469.46666666666664,1238,470 +28169,469.48333333333335,1227,470 +28170,469.5,1218,469 +28171,469.51666666666665,1210,469 +28172,469.5333333333333,1203,469 +28173,469.55,1197,468 +28174,469.56666666666666,1193,468 +28175,469.5833333333333,1189,468 +28176,469.59999999999997,1188,468 +28177,469.6166666666667,1188,468 +28178,469.6333333333333,1188,468 +28179,469.65,1189,468 +28180,469.6666666666667,1192,468 +28181,469.68333333333334,1196,469 +28182,469.7,1202,469 +28183,469.71666666666664,1209,469 +28184,469.73333333333335,1216,469 +28185,469.75,1225,470 +28186,469.76666666666665,1235,470 +28187,469.7833333333333,1247,471 +28188,469.8,1259,471 +28189,469.81666666666666,1272,471 +28190,469.8333333333333,1286,472 +28191,469.84999999999997,1300,472 +28192,469.8666666666667,1316,473 +28193,469.8833333333333,1332,473 +28194,469.9,1349,473 +28195,469.9166666666667,1366,473 +28196,469.93333333333334,1384,473 +28197,469.95,1402,473 +28198,469.96666666666664,1420,473 +28199,469.98333333333335,1439,473 +28200,470.0,1458,473 +28201,470.01666666666665,1477,473 +28202,470.0333333333333,1495,473 +28203,470.05,1514,473 +28204,470.06666666666666,1532,473 +28205,470.0833333333333,1550,472 +28206,470.09999999999997,1567,472 +28207,470.1166666666667,1584,471 +28208,470.1333333333333,1601,471 +28209,470.15,1617,470 +28210,470.1666666666667,1632,469 +28211,470.18333333333334,1646,469 +28212,470.2,1660,468 +28213,470.21666666666664,1673,467 +28214,470.23333333333335,1685,466 +28215,470.25,1696,465 +28216,470.26666666666665,1706,464 +28217,470.2833333333333,1714,464 +28218,470.3,1722,463 +28219,470.31666666666666,1729,462 +28220,470.3333333333333,1735,462 +28221,470.34999999999997,1739,461 +28222,470.3666666666667,1742,461 +28223,470.3833333333333,1745,461 +28224,470.4,1745,461 +28225,470.4166666666667,1745,461 +28226,470.43333333333334,1744,461 +28227,470.45,1741,461 +28228,470.46666666666664,1738,461 +28229,470.48333333333335,1733,461 +28230,470.5,1727,462 +28231,470.51666666666665,1720,462 +28232,470.5333333333333,1712,463 +28233,470.55,1702,463 +28234,470.56666666666666,1692,464 +28235,470.5833333333333,1681,465 +28236,470.59999999999997,1669,466 +28237,470.6166666666667,1656,467 +28238,470.6333333333333,1643,468 +28239,470.65,1628,468 +28240,470.6666666666667,1613,469 +28241,470.68333333333334,1597,470 +28242,470.7,1580,470 +28243,470.71666666666664,1564,471 +28244,470.73333333333335,1546,471 +28245,470.75,1529,472 +28246,470.76666666666665,1511,472 +28247,470.7833333333333,1492,472 +28248,470.8,1474,473 +28249,470.81666666666666,1456,473 +28250,470.8333333333333,1438,473 +28251,470.84999999999997,1419,473 +28252,470.8666666666667,1401,473 +28253,470.8833333333333,1383,473 +28254,470.9,1366,473 +28255,470.9166666666667,1348,473 +28256,470.93333333333334,1332,473 +28257,470.95,1317,473 +28258,470.96666666666664,1301,472 +28259,470.98333333333335,1286,472 +28260,471.0,1273,472 +28261,471.01666666666665,1260,471 +28262,471.0333333333333,1248,471 +28263,471.05,1237,471 +28264,471.06666666666666,1226,470 +28265,471.0833333333333,1217,470 +28266,471.09999999999997,1209,469 +28267,471.1166666666667,1203,469 +28268,471.1333333333333,1197,469 +28269,471.15,1193,469 +28270,471.1666666666667,1189,469 +28271,471.18333333333334,1187,469 +28272,471.2,1187,469 +28273,471.21666666666664,1187,469 +28274,471.23333333333335,1189,469 +28275,471.25,1192,469 +28276,471.26666666666665,1197,469 +28277,471.2833333333333,1203,469 +28278,471.3,1210,470 +28279,471.31666666666666,1218,470 +28280,471.3333333333333,1227,470 +28281,471.34999999999997,1237,471 +28282,471.3666666666667,1248,471 +28283,471.3833333333333,1261,471 +28284,471.4,1273,472 +28285,471.4166666666667,1287,472 +28286,471.43333333333334,1302,472 +28287,471.45,1318,473 +28288,471.46666666666664,1334,473 +28289,471.48333333333335,1351,473 +28290,471.5,1369,474 +28291,471.51666666666665,1386,474 +28292,471.5333333333333,1404,474 +28293,471.55,1422,474 +28294,471.56666666666666,1441,474 +28295,471.5833333333333,1460,474 +28296,471.59999999999997,1478,474 +28297,471.6166666666667,1497,473 +28298,471.6333333333333,1515,473 +28299,471.65,1533,473 +28300,471.6666666666667,1551,472 +28301,471.68333333333334,1569,472 +28302,471.7,1585,471 +28303,471.71666666666664,1602,471 +28304,471.73333333333335,1617,470 +28305,471.75,1633,469 +28306,471.76666666666665,1647,469 +28307,471.7833333333333,1660,468 +28308,471.8,1673,467 +28309,471.81666666666666,1685,466 +28310,471.8333333333333,1696,465 +28311,471.84999999999997,1705,464 +28312,471.8666666666667,1714,464 +28313,471.8833333333333,1722,463 +28314,471.9,1728,462 +28315,471.9166666666667,1734,462 +28316,471.93333333333334,1738,461 +28317,471.95,1742,461 +28318,471.96666666666664,1744,461 +28319,471.98333333333335,1744,461 +28320,472.0,1744,461 +28321,472.01666666666665,1742,461 +28322,472.0333333333333,1740,461 +28323,472.05,1736,461 +28324,472.06666666666666,1731,461 +28325,472.0833333333333,1725,462 +28326,472.09999999999997,1718,462 +28327,472.1166666666667,1710,463 +28328,472.1333333333333,1700,464 +28329,472.15,1690,464 +28330,472.1666666666667,1679,465 +28331,472.18333333333334,1667,466 +28332,472.2,1654,467 +28333,472.21666666666664,1640,468 +28334,472.23333333333335,1626,468 +28335,472.25,1611,469 +28336,472.26666666666665,1595,470 +28337,472.2833333333333,1578,470 +28338,472.3,1562,471 +28339,472.31666666666666,1544,471 +28340,472.3333333333333,1527,472 +28341,472.34999999999997,1509,472 +28342,472.3666666666667,1490,472 +28343,472.3833333333333,1472,473 +28344,472.4,1454,473 +28345,472.4166666666667,1435,473 +28346,472.43333333333334,1417,473 +28347,472.45,1400,473 +28348,472.46666666666664,1382,473 +28349,472.48333333333335,1365,473 +28350,472.5,1347,473 +28351,472.51666666666665,1331,473 +28352,472.5333333333333,1315,472 +28353,472.55,1300,472 +28354,472.56666666666666,1286,472 +28355,472.5833333333333,1272,471 +28356,472.59999999999997,1259,471 +28357,472.6166666666667,1248,471 +28358,472.6333333333333,1237,470 +28359,472.65,1227,470 +28360,472.6666666666667,1218,470 +28361,472.68333333333334,1210,469 +28362,472.7,1203,469 +28363,472.71666666666664,1198,469 +28364,472.73333333333335,1194,469 +28365,472.75,1191,469 +28366,472.76666666666665,1190,469 +28367,472.7833333333333,1190,469 +28368,472.8,1190,469 +28369,472.81666666666666,1192,469 +28370,472.8333333333333,1195,469 +28371,472.84999999999997,1199,469 +28372,472.8666666666667,1205,469 +28373,472.8833333333333,1212,470 +28374,472.9,1220,470 +28375,472.9166666666667,1230,471 +28376,472.93333333333334,1240,471 +28377,472.95,1251,471 +28378,472.96666666666664,1264,472 +28379,472.98333333333335,1277,472 +28380,473.0,1291,473 +28381,473.01666666666665,1306,473 +28382,473.0333333333333,1321,473 +28383,473.05,1337,473 +28384,473.06666666666666,1354,474 +28385,473.0833333333333,1372,474 +28386,473.09999999999997,1389,474 +28387,473.1166666666667,1408,474 +28388,473.1333333333333,1426,474 +28389,473.15,1445,474 +28390,473.1666666666667,1463,474 +28391,473.18333333333334,1481,474 +28392,473.2,1500,473 +28393,473.21666666666664,1518,473 +28394,473.23333333333335,1536,473 +28395,473.25,1554,472 +28396,473.26666666666665,1571,472 +28397,473.2833333333333,1588,471 +28398,473.3,1604,471 +28399,473.31666666666666,1620,470 +28400,473.3333333333333,1635,469 +28401,473.34999999999997,1649,469 +28402,473.3666666666667,1662,468 +28403,473.3833333333333,1675,467 +28404,473.4,1687,466 +28405,473.4166666666667,1697,465 +28406,473.43333333333334,1707,464 +28407,473.45,1715,464 +28408,473.46666666666664,1723,463 +28409,473.48333333333335,1729,462 +28410,473.5,1735,462 +28411,473.51666666666665,1739,461 +28412,473.5333333333333,1742,461 +28413,473.55,1744,461 +28414,473.56666666666666,1744,461 +28415,473.5833333333333,1744,461 +28416,473.59999999999997,1742,461 +28417,473.6166666666667,1740,461 +28418,473.6333333333333,1736,461 +28419,473.65,1730,461 +28420,473.6666666666667,1724,462 +28421,473.68333333333334,1717,462 +28422,473.7,1709,463 +28423,473.71666666666664,1699,463 +28424,473.73333333333335,1689,464 +28425,473.75,1678,465 +28426,473.76666666666665,1666,466 +28427,473.7833333333333,1653,467 +28428,473.8,1639,468 +28429,473.81666666666666,1625,468 +28430,473.8333333333333,1609,469 +28431,473.84999999999997,1593,470 +28432,473.8666666666667,1577,470 +28433,473.8833333333333,1560,471 +28434,473.9,1542,471 +28435,473.9166666666667,1525,472 +28436,473.93333333333334,1507,472 +28437,473.95,1489,473 +28438,473.96666666666664,1471,473 +28439,473.98333333333335,1452,473 +28440,474.0,1434,473 +28441,474.01666666666665,1417,473 +28442,474.0333333333333,1399,473 +28443,474.05,1381,473 +28444,474.06666666666666,1364,473 +28445,474.0833333333333,1347,473 +28446,474.09999999999997,1331,473 +28447,474.1166666666667,1315,472 +28448,474.1333333333333,1300,472 +28449,474.15,1285,471 +28450,474.1666666666667,1272,471 +28451,474.18333333333334,1260,471 +28452,474.2,1248,471 +28453,474.21666666666664,1238,470 +28454,474.23333333333335,1228,470 +28455,474.25,1219,470 +28456,474.26666666666665,1211,469 +28457,474.2833333333333,1204,469 +28458,474.3,1199,469 +28459,474.31666666666666,1195,469 +28460,474.3333333333333,1192,469 +28461,474.34999999999997,1191,469 +28462,474.3666666666667,1191,469 +28463,474.3833333333333,1191,469 +28464,474.4,1193,469 +28465,474.4166666666667,1197,469 +28466,474.43333333333334,1202,469 +28467,474.45,1207,469 +28468,474.46666666666664,1215,470 +28469,474.48333333333335,1223,470 +28470,474.5,1232,470 +28471,474.51666666666665,1243,471 +28472,474.5333333333333,1254,471 +28473,474.55,1266,471 +28474,474.56666666666666,1279,472 +28475,474.5833333333333,1294,472 +28476,474.59999999999997,1309,473 +28477,474.6166666666667,1324,473 +28478,474.6333333333333,1340,474 +28479,474.65,1357,474 +28480,474.6666666666667,1375,474 +28481,474.68333333333334,1393,474 +28482,474.7,1410,474 +28483,474.71666666666664,1428,474 +28484,474.73333333333335,1447,474 +28485,474.75,1465,474 +28486,474.76666666666665,1484,473 +28487,474.7833333333333,1502,473 +28488,474.8,1520,473 +28489,474.81666666666666,1538,473 +28490,474.8333333333333,1556,472 +28491,474.84999999999997,1573,472 +28492,474.8666666666667,1590,471 +28493,474.8833333333333,1606,471 +28494,474.9,1621,470 +28495,474.9166666666667,1636,469 +28496,474.93333333333334,1650,469 +28497,474.95,1663,468 +28498,474.96666666666664,1676,467 +28499,474.98333333333335,1687,467 +28500,475.0,1698,466 +28501,475.01666666666665,1707,465 +28502,475.0333333333333,1715,464 +28503,475.05,1723,463 +28504,475.06666666666666,1729,463 +28505,475.0833333333333,1734,462 +28506,475.09999999999997,1738,462 +28507,475.1166666666667,1741,461 +28508,475.1333333333333,1743,461 +28509,475.15,1743,461 +28510,475.1666666666667,1743,461 +28511,475.18333333333334,1741,461 +28512,475.2,1738,461 +28513,475.21666666666664,1734,461 +28514,475.23333333333335,1729,462 +28515,475.25,1722,462 +28516,475.26666666666665,1715,463 +28517,475.2833333333333,1707,463 +28518,475.3,1697,464 +28519,475.31666666666666,1687,465 +28520,475.3333333333333,1675,466 +28521,475.34999999999997,1663,466 +28522,475.3666666666667,1650,467 +28523,475.3833333333333,1636,468 +28524,475.4,1622,469 +28525,475.4166666666667,1607,470 +28526,475.43333333333334,1591,470 +28527,475.45,1574,471 +28528,475.46666666666664,1558,471 +28529,475.48333333333335,1540,472 +28530,475.5,1523,472 +28531,475.51666666666665,1505,472 +28532,475.5333333333333,1487,473 +28533,475.55,1469,473 +28534,475.56666666666666,1450,473 +28535,475.5833333333333,1432,473 +28536,475.59999999999997,1414,473 +28537,475.6166666666667,1397,473 +28538,475.6333333333333,1379,473 +28539,475.65,1362,473 +28540,475.6666666666667,1345,473 +28541,475.68333333333334,1328,473 +28542,475.7,1313,472 +28543,475.71666666666664,1298,472 +28544,475.73333333333335,1284,471 +28545,475.75,1270,471 +28546,475.76666666666665,1258,471 +28547,475.7833333333333,1246,470 +28548,475.8,1236,470 +28549,475.81666666666666,1226,470 +28550,475.8333333333333,1218,470 +28551,475.84999999999997,1210,469 +28552,475.8666666666667,1204,469 +28553,475.8833333333333,1199,469 +28554,475.9,1195,469 +28555,475.9166666666667,1192,469 +28556,475.93333333333334,1191,469 +28557,475.95,1191,469 +28558,475.96666666666664,1191,469 +28559,475.98333333333335,1194,469 +28560,476.0,1197,469 +28561,476.01666666666665,1202,469 +28562,476.0333333333333,1208,469 +28563,476.05,1215,470 +28564,476.06666666666666,1224,470 +28565,476.0833333333333,1233,470 +28566,476.09999999999997,1244,471 +28567,476.1166666666667,1255,471 +28568,476.1333333333333,1268,471 +28569,476.15,1281,472 +28570,476.1666666666667,1295,472 +28571,476.18333333333334,1310,473 +28572,476.2,1326,473 +28573,476.21666666666664,1342,473 +28574,476.23333333333335,1359,473 +28575,476.25,1376,474 +28576,476.26666666666665,1394,474 +28577,476.2833333333333,1412,474 +28578,476.3,1430,474 +28579,476.31666666666666,1449,474 +28580,476.3333333333333,1467,474 +28581,476.34999999999997,1485,473 +28582,476.3666666666667,1504,473 +28583,476.3833333333333,1522,473 +28584,476.4,1539,473 +28585,476.4166666666667,1557,472 +28586,476.43333333333334,1574,472 +28587,476.45,1591,471 +28588,476.46666666666664,1607,470 +28589,476.48333333333335,1622,470 +28590,476.5,1637,469 +28591,476.51666666666665,1651,469 +28592,476.5333333333333,1664,468 +28593,476.55,1676,467 +28594,476.56666666666666,1687,466 +28595,476.5833333333333,1697,465 +28596,476.59999999999997,1707,465 +28597,476.6166666666667,1715,464 +28598,476.6333333333333,1722,463 +28599,476.65,1728,463 +28600,476.6666666666667,1734,462 +28601,476.68333333333334,1738,462 +28602,476.7,1740,461 +28603,476.71666666666664,1741,461 +28604,476.73333333333335,1741,461 +28605,476.75,1741,461 +28606,476.76666666666665,1740,461 +28607,476.7833333333333,1736,461 +28608,476.8,1732,462 +28609,476.81666666666666,1727,462 +28610,476.8333333333333,1720,462 +28611,476.84999999999997,1713,463 +28612,476.8666666666667,1704,463 +28613,476.8833333333333,1695,464 +28614,476.9,1684,465 +28615,476.9166666666667,1673,466 +28616,476.93333333333334,1661,466 +28617,476.95,1648,467 +28618,476.96666666666664,1634,468 +28619,476.98333333333335,1619,469 +28620,477.0,1604,469 +28621,477.01666666666665,1588,470 +28622,477.0333333333333,1571,470 +28623,477.05,1555,471 +28624,477.06666666666666,1538,472 +28625,477.0833333333333,1520,472 +28626,477.09999999999997,1502,472 +28627,477.1166666666667,1484,473 +28628,477.1333333333333,1466,473 +28629,477.15,1448,473 +28630,477.1666666666667,1429,473 +28631,477.18333333333334,1411,473 +28632,477.2,1394,473 +28633,477.21666666666664,1376,473 +28634,477.23333333333335,1359,473 +28635,477.25,1342,473 +28636,477.26666666666665,1326,473 +28637,477.2833333333333,1311,472 +28638,477.3,1296,472 +28639,477.31666666666666,1282,472 +28640,477.3333333333333,1268,471 +28641,477.34999999999997,1256,471 +28642,477.3666666666667,1245,470 +28643,477.3833333333333,1234,470 +28644,477.4,1225,470 +28645,477.4166666666667,1216,469 +28646,477.43333333333334,1209,469 +28647,477.45,1203,469 +28648,477.46666666666664,1198,469 +28649,477.48333333333335,1194,468 +28650,477.5,1192,468 +28651,477.51666666666665,1192,468 +28652,477.5333333333333,1192,468 +28653,477.55,1192,468 +28654,477.56666666666666,1194,469 +28655,477.5833333333333,1198,469 +28656,477.59999999999997,1203,469 +28657,477.6166666666667,1209,469 +28658,477.6333333333333,1217,470 +28659,477.65,1225,470 +28660,477.6666666666667,1234,470 +28661,477.68333333333334,1245,470 +28662,477.7,1257,471 +28663,477.71666666666664,1269,471 +28664,477.73333333333335,1282,472 +28665,477.75,1297,472 +28666,477.76666666666665,1312,472 +28667,477.7833333333333,1327,473 +28668,477.8,1343,473 +28669,477.81666666666666,1360,473 +28670,477.8333333333333,1378,473 +28671,477.84999999999997,1396,473 +28672,477.8666666666667,1413,473 +28673,477.8833333333333,1432,473 +28674,477.9,1450,473 +28675,477.9166666666667,1468,473 +28676,477.93333333333334,1487,473 +28677,477.95,1505,473 +28678,477.96666666666664,1523,473 +28679,477.98333333333335,1541,472 +28680,478.0,1558,472 +28681,478.01666666666665,1575,471 +28682,478.0333333333333,1592,471 +28683,478.05,1607,470 +28684,478.06666666666666,1622,470 +28685,478.0833333333333,1637,469 +28686,478.09999999999997,1651,468 +28687,478.1166666666667,1664,467 +28688,478.1333333333333,1676,467 +28689,478.15,1687,466 +28690,478.1666666666667,1697,465 +28691,478.18333333333334,1706,464 +28692,478.2,1715,463 +28693,478.21666666666664,1722,463 +28694,478.23333333333335,1728,462 +28695,478.25,1733,462 +28696,478.26666666666665,1736,461 +28697,478.2833333333333,1739,461 +28698,478.3,1740,461 +28699,478.31666666666666,1740,461 +28700,478.3333333333333,1740,461 +28701,478.34999999999997,1738,461 +28702,478.3666666666667,1735,461 +28703,478.3833333333333,1731,461 +28704,478.4,1725,462 +28705,478.4166666666667,1719,462 +28706,478.43333333333334,1711,463 +28707,478.45,1702,463 +28708,478.46666666666664,1693,464 +28709,478.48333333333335,1682,465 +28710,478.5,1671,465 +28711,478.51666666666665,1658,466 +28712,478.5333333333333,1645,467 +28713,478.55,1631,468 +28714,478.56666666666666,1617,469 +28715,478.5833333333333,1601,469 +28716,478.59999999999997,1586,470 +28717,478.6166666666667,1569,470 +28718,478.6333333333333,1553,471 +28719,478.65,1535,471 +28720,478.6666666666667,1518,472 +28721,478.68333333333334,1500,472 +28722,478.7,1482,472 +28723,478.71666666666664,1464,472 +28724,478.73333333333335,1446,473 +28725,478.75,1428,473 +28726,478.76666666666665,1411,473 +28727,478.7833333333333,1393,473 +28728,478.8,1375,473 +28729,478.81666666666666,1358,473 +28730,478.8333333333333,1342,472 +28731,478.84999999999997,1326,472 +28732,478.8666666666667,1311,472 +28733,478.8833333333333,1296,471 +28734,478.9,1282,471 +28735,478.9166666666667,1269,471 +28736,478.93333333333334,1257,470 +28737,478.95,1245,470 +28738,478.96666666666664,1235,469 +28739,478.98333333333335,1226,469 +28740,479.0,1217,469 +28741,479.01666666666665,1210,469 +28742,479.0333333333333,1204,468 +28743,479.05,1199,468 +28744,479.06666666666666,1195,468 +28745,479.0833333333333,1193,468 +28746,479.09999999999997,1193,468 +28747,479.1166666666667,1193,468 +28748,479.1333333333333,1193,468 +28749,479.15,1196,468 +28750,479.1666666666667,1200,468 +28751,479.18333333333334,1205,468 +28752,479.2,1211,469 +28753,479.21666666666664,1219,469 +28754,479.23333333333335,1227,469 +28755,479.25,1237,470 +28756,479.26666666666665,1247,470 +28757,479.2833333333333,1259,470 +28758,479.3,1271,471 +28759,479.31666666666666,1284,471 +28760,479.3333333333333,1299,471 +28761,479.34999999999997,1314,472 +28762,479.3666666666667,1329,472 +28763,479.3833333333333,1345,472 +28764,479.4,1362,473 +28765,479.4166666666667,1380,473 +28766,479.43333333333334,1398,473 +28767,479.45,1416,473 +28768,479.46666666666664,1433,473 +28769,479.48333333333335,1452,473 +28770,479.5,1470,473 +28771,479.51666666666665,1488,473 +28772,479.5333333333333,1506,472 +28773,479.55,1524,472 +28774,479.56666666666666,1542,472 +28775,479.5833333333333,1559,471 +28776,479.59999999999997,1576,471 +28777,479.6166666666667,1592,470 +28778,479.6333333333333,1608,469 +28779,479.65,1624,469 +28780,479.6666666666667,1638,468 +28781,479.68333333333334,1652,468 +28782,479.7,1664,467 +28783,479.71666666666664,1677,466 +28784,479.73333333333335,1687,465 +28785,479.75,1698,464 +28786,479.76666666666665,1707,463 +28787,479.7833333333333,1715,463 +28788,479.8,1722,462 +28789,479.81666666666666,1728,461 +28790,479.8333333333333,1732,461 +28791,479.84999999999997,1736,461 +28792,479.8666666666667,1739,460 +28793,479.8833333333333,1739,460 +28794,479.9,1739,460 +28795,479.9166666666667,1739,460 +28796,479.93333333333334,1737,460 +28797,479.95,1733,460 +28798,479.96666666666664,1729,461 +28799,479.98333333333335,1724,461 +28800,480.0,1717,461 +28801,480.01666666666665,1709,462 +28802,480.0333333333333,1701,463 +28803,480.05,1691,463 +28804,480.06666666666666,1681,464 +28805,480.0833333333333,1669,465 +28806,480.09999999999997,1657,466 +28807,480.1166666666667,1644,467 +28808,480.1333333333333,1630,467 +28809,480.15,1615,468 +28810,480.1666666666667,1600,469 +28811,480.18333333333334,1584,470 +28812,480.2,1568,470 +28813,480.21666666666664,1551,471 +28814,480.23333333333335,1533,471 +28815,480.25,1516,471 +28816,480.26666666666665,1498,472 +28817,480.2833333333333,1481,472 +28818,480.3,1462,472 +28819,480.31666666666666,1444,473 +28820,480.3333333333333,1426,473 +28821,480.34999999999997,1409,473 +28822,480.3666666666667,1391,473 +28823,480.3833333333333,1374,473 +28824,480.4,1357,473 +28825,480.4166666666667,1341,473 +28826,480.43333333333334,1325,472 +28827,480.45,1310,472 +28828,480.46666666666664,1295,472 +28829,480.48333333333335,1282,471 +28830,480.5,1269,471 +28831,480.51666666666665,1257,471 +28832,480.5333333333333,1245,470 +28833,480.55,1235,470 +28834,480.56666666666666,1226,470 +28835,480.5833333333333,1218,470 +28836,480.59999999999997,1211,469 +28837,480.6166666666667,1205,469 +28838,480.6333333333333,1200,469 +28839,480.65,1197,469 +28840,480.6666666666667,1195,469 +28841,480.68333333333334,1195,469 +28842,480.7,1195,469 +28843,480.71666666666664,1195,469 +28844,480.73333333333335,1198,469 +28845,480.75,1202,469 +28846,480.76666666666665,1207,469 +28847,480.7833333333333,1213,470 +28848,480.8,1221,470 +28849,480.81666666666666,1230,470 +28850,480.8333333333333,1239,470 +28851,480.84999999999997,1250,471 +28852,480.8666666666667,1262,471 +28853,480.8833333333333,1274,471 +28854,480.9,1287,472 +28855,480.9166666666667,1302,472 +28856,480.93333333333334,1317,473 +28857,480.95,1332,473 +28858,480.96666666666664,1349,473 +28859,480.98333333333335,1365,473 +28860,481.0,1383,474 +28861,481.01666666666665,1401,474 +28862,481.0333333333333,1418,473 +28863,481.05,1437,473 +28864,481.06666666666666,1455,473 +28865,481.0833333333333,1473,473 +28866,481.09999999999997,1491,473 +28867,481.1166666666667,1510,473 +28868,481.1333333333333,1527,473 +28869,481.15,1545,472 +28870,481.1666666666667,1562,472 +28871,481.18333333333334,1579,471 +28872,481.2,1595,471 +28873,481.21666666666664,1611,470 +28874,481.23333333333335,1626,470 +28875,481.25,1640,469 +28876,481.26666666666665,1653,468 +28877,481.2833333333333,1666,467 +28878,481.3,1678,466 +28879,481.31666666666666,1689,466 +28880,481.3333333333333,1698,465 +28881,481.34999999999997,1707,464 +28882,481.3666666666667,1715,463 +28883,481.3833333333333,1722,463 +28884,481.4,1728,462 +28885,481.4166666666667,1732,462 +28886,481.43333333333334,1736,461 +28887,481.45,1738,461 +28888,481.46666666666664,1738,461 +28889,481.48333333333335,1738,461 +28890,481.5,1738,461 +28891,481.51666666666665,1736,461 +28892,481.5333333333333,1732,461 +28893,481.55,1728,461 +28894,481.56666666666666,1722,462 +28895,481.5833333333333,1716,462 +28896,481.59999999999997,1708,463 +28897,481.6166666666667,1699,464 +28898,481.6333333333333,1689,464 +28899,481.65,1679,465 +28900,481.6666666666667,1667,466 +28901,481.68333333333334,1655,467 +28902,481.7,1641,467 +28903,481.71666666666664,1627,468 +28904,481.73333333333335,1613,469 +28905,481.75,1597,470 +28906,481.76666666666665,1581,470 +28907,481.7833333333333,1565,471 +28908,481.8,1548,471 +28909,481.81666666666666,1531,472 +28910,481.8333333333333,1513,472 +28911,481.84999999999997,1495,472 +28912,481.8666666666667,1478,472 +28913,481.8833333333333,1460,473 +28914,481.9,1442,473 +28915,481.9166666666667,1424,473 +28916,481.93333333333334,1406,473 +28917,481.95,1389,473 +28918,481.96666666666664,1371,473 +28919,481.98333333333335,1355,473 +28920,482.0,1338,473 +28921,482.01666666666665,1323,472 +28922,482.0333333333333,1308,472 +28923,482.05,1293,472 +28924,482.06666666666666,1280,471 +28925,482.0833333333333,1267,471 +28926,482.09999999999997,1255,471 +28927,482.1166666666667,1244,470 +28928,482.1333333333333,1234,470 +28929,482.15,1225,470 +28930,482.1666666666667,1217,469 +28931,482.18333333333334,1210,469 +28932,482.2,1204,469 +28933,482.21666666666664,1200,469 +28934,482.23333333333335,1196,469 +28935,482.25,1194,469 +28936,482.26666666666665,1194,469 +28937,482.2833333333333,1194,469 +28938,482.3,1195,469 +28939,482.31666666666666,1198,469 +28940,482.3333333333333,1203,469 +28941,482.34999999999997,1208,469 +28942,482.3666666666667,1214,470 +28943,482.3833333333333,1222,470 +28944,482.4,1231,470 +28945,482.4166666666667,1241,470 +28946,482.43333333333334,1251,471 +28947,482.45,1263,471 +28948,482.46666666666664,1276,472 +28949,482.48333333333335,1289,472 +28950,482.5,1304,472 +28951,482.51666666666665,1319,473 +28952,482.5333333333333,1334,473 +28953,482.55,1350,473 +28954,482.56666666666666,1368,473 +28955,482.5833333333333,1385,473 +28956,482.59999999999997,1403,473 +28957,482.6166666666667,1420,474 +28958,482.6333333333333,1439,474 +28959,482.65,1457,474 +28960,482.6666666666667,1475,473 +28961,482.68333333333334,1493,473 +28962,482.7,1511,473 +28963,482.71666666666664,1529,473 +28964,482.73333333333335,1546,472 +28965,482.75,1563,472 +28966,482.76666666666665,1580,471 +28967,482.7833333333333,1596,471 +28968,482.8,1612,470 +28969,482.81666666666666,1627,470 +28970,482.8333333333333,1641,469 +28971,482.84999999999997,1654,468 +28972,482.8666666666667,1667,467 +28973,482.8833333333333,1678,466 +28974,482.9,1689,466 +28975,482.9166666666667,1699,465 +28976,482.93333333333334,1707,464 +28977,482.95,1715,463 +28978,482.96666666666664,1722,463 +28979,482.98333333333335,1727,462 +28980,483.0,1732,462 +28981,483.01666666666665,1735,461 +28982,483.0333333333333,1737,461 +28983,483.05,1737,461 +28984,483.06666666666666,1737,461 +28985,483.0833333333333,1737,461 +28986,483.09999999999997,1734,461 +28987,483.1166666666667,1731,461 +28988,483.1333333333333,1726,462 +28989,483.15,1720,462 +28990,483.1666666666667,1714,463 +28991,483.18333333333334,1706,463 +28992,483.2,1697,464 +28993,483.21666666666664,1687,465 +28994,483.23333333333335,1676,465 +28995,483.25,1664,466 +28996,483.26666666666665,1652,467 +28997,483.2833333333333,1639,468 +28998,483.3,1625,469 +28999,483.31666666666666,1610,469 +29000,483.3333333333333,1595,470 +29001,483.34999999999997,1579,470 +29002,483.3666666666667,1562,471 +29003,483.3833333333333,1545,471 +29004,483.4,1528,472 +29005,483.4166666666667,1510,472 +29006,483.43333333333334,1493,472 +29007,483.45,1475,473 +29008,483.46666666666664,1457,473 +29009,483.48333333333335,1439,473 +29010,483.5,1422,473 +29011,483.51666666666665,1404,473 +29012,483.5333333333333,1387,473 +29013,483.55,1370,473 +29014,483.56666666666666,1353,473 +29015,483.5833333333333,1337,473 +29016,483.59999999999997,1321,472 +29017,483.6166666666667,1306,472 +29018,483.6333333333333,1292,472 +29019,483.65,1278,472 +29020,483.6666666666667,1266,471 +29021,483.68333333333334,1254,471 +29022,483.7,1243,471 +29023,483.71666666666664,1233,470 +29024,483.73333333333335,1225,470 +29025,483.75,1217,470 +29026,483.76666666666665,1210,469 +29027,483.7833333333333,1205,469 +29028,483.8,1200,469 +29029,483.81666666666666,1197,469 +29030,483.8333333333333,1195,469 +29031,483.84999999999997,1195,469 +29032,483.8666666666667,1195,469 +29033,483.8833333333333,1197,469 +29034,483.9,1200,469 +29035,483.9166666666667,1204,469 +29036,483.93333333333334,1210,470 +29037,483.95,1216,470 +29038,483.96666666666664,1224,470 +29039,483.98333333333335,1233,471 +29040,484.0,1242,471 +29041,484.01666666666665,1253,471 +29042,484.0333333333333,1265,471 +29043,484.05,1278,472 +29044,484.06666666666666,1292,472 +29045,484.0833333333333,1306,473 +29046,484.09999999999997,1321,473 +29047,484.1166666666667,1337,473 +29048,484.1333333333333,1353,474 +29049,484.15,1370,474 +29050,484.1666666666667,1388,474 +29051,484.18333333333334,1405,474 +29052,484.2,1423,474 +29053,484.21666666666664,1441,474 +29054,484.23333333333335,1459,474 +29055,484.25,1477,474 +29056,484.26666666666665,1495,473 +29057,484.2833333333333,1513,473 +29058,484.3,1531,473 +29059,484.31666666666666,1548,472 +29060,484.3333333333333,1565,472 +29061,484.34999999999997,1582,471 +29062,484.3666666666667,1598,471 +29063,484.3833333333333,1613,470 +29064,484.4,1628,470 +29065,484.4166666666667,1642,469 +29066,484.43333333333334,1655,468 +29067,484.45,1667,468 +29068,484.46666666666664,1679,467 +29069,484.48333333333335,1689,466 +29070,484.5,1699,465 +29071,484.51666666666665,1708,464 +29072,484.5333333333333,1715,464 +29073,484.55,1722,463 +29074,484.56666666666666,1727,462 +29075,484.5833333333333,1732,462 +29076,484.59999999999997,1735,462 +29077,484.6166666666667,1737,462 +29078,484.6333333333333,1737,462 +29079,484.65,1737,462 +29080,484.6666666666667,1736,462 +29081,484.68333333333334,1733,462 +29082,484.7,1730,462 +29083,484.71666666666664,1725,462 +29084,484.73333333333335,1719,463 +29085,484.75,1712,463 +29086,484.76666666666665,1704,464 +29087,484.7833333333333,1695,464 +29088,484.8,1685,465 +29089,484.81666666666666,1675,466 +29090,484.8333333333333,1663,466 +29091,484.84999999999997,1651,467 +29092,484.8666666666667,1637,468 +29093,484.8833333333333,1623,469 +29094,484.9,1608,470 +29095,484.9166666666667,1593,470 +29096,484.93333333333334,1577,471 +29097,484.95,1561,471 +29098,484.96666666666664,1544,472 +29099,484.98333333333335,1527,472 +29100,485.0,1509,472 +29101,485.01666666666665,1492,472 +29102,485.0333333333333,1474,473 +29103,485.05,1456,473 +29104,485.06666666666666,1438,473 +29105,485.0833333333333,1420,473 +29106,485.09999999999997,1403,473 +29107,485.1166666666667,1386,473 +29108,485.1333333333333,1369,473 +29109,485.15,1352,473 +29110,485.1666666666667,1336,473 +29111,485.18333333333334,1321,473 +29112,485.2,1306,472 +29113,485.21666666666664,1292,472 +29114,485.23333333333335,1278,471 +29115,485.25,1266,471 +29116,485.26666666666665,1254,471 +29117,485.2833333333333,1244,471 +29118,485.3,1234,470 +29119,485.31666666666666,1225,470 +29120,485.3333333333333,1218,470 +29121,485.34999999999997,1211,469 +29122,485.3666666666667,1206,469 +29123,485.3833333333333,1202,469 +29124,485.4,1199,469 +29125,485.4166666666667,1197,468 +29126,485.43333333333334,1197,468 +29127,485.45,1197,468 +29128,485.46666666666664,1199,469 +29129,485.48333333333335,1202,469 +29130,485.5,1206,469 +29131,485.51666666666665,1212,469 +29132,485.5333333333333,1219,469 +29133,485.55,1227,470 +29134,485.56666666666666,1236,470 +29135,485.5833333333333,1246,470 +29136,485.59999999999997,1257,471 +29137,485.6166666666667,1268,471 +29138,485.6333333333333,1281,472 +29139,485.65,1295,472 +29140,485.6666666666667,1310,473 +29141,485.68333333333334,1324,473 +29142,485.7,1340,473 +29143,485.71666666666664,1356,473 +29144,485.73333333333335,1373,474 +29145,485.75,1391,474 +29146,485.76666666666665,1408,474 +29147,485.7833333333333,1426,474 +29148,485.8,1444,474 +29149,485.81666666666666,1462,474 +29150,485.8333333333333,1480,473 +29151,485.84999999999997,1498,473 +29152,485.8666666666667,1516,473 +29153,485.8833333333333,1534,473 +29154,485.9,1551,472 +29155,485.9166666666667,1568,472 +29156,485.93333333333334,1584,471 +29157,485.95,1600,471 +29158,485.96666666666664,1615,470 +29159,485.98333333333335,1630,469 +29160,486.0,1644,469 +29161,486.01666666666665,1657,468 +29162,486.0333333333333,1669,467 +29163,486.05,1680,466 +29164,486.06666666666666,1691,466 +29165,486.0833333333333,1700,465 +29166,486.09999999999997,1709,464 +29167,486.1166666666667,1716,463 +29168,486.1333333333333,1723,463 +29169,486.15,1728,462 +29170,486.1666666666667,1732,462 +29171,486.18333333333334,1735,461 +29172,486.2,1737,461 +29173,486.21666666666664,1737,461 +29174,486.23333333333335,1737,461 +29175,486.25,1736,461 +29176,486.26666666666665,1733,461 +29177,486.2833333333333,1729,461 +29178,486.3,1725,462 +29179,486.31666666666666,1719,462 +29180,486.3333333333333,1712,463 +29181,486.34999999999997,1704,463 +29182,486.3666666666667,1695,464 +29183,486.3833333333333,1685,465 +29184,486.4,1673,466 +29185,486.4166666666667,1662,466 +29186,486.43333333333334,1649,467 +29187,486.45,1636,468 +29188,486.46666666666664,1621,469 +29189,486.48333333333335,1607,469 +29190,486.5,1591,470 +29191,486.51666666666665,1575,470 +29192,486.5333333333333,1559,471 +29193,486.55,1542,471 +29194,486.56666666666666,1525,472 +29195,486.5833333333333,1507,472 +29196,486.59999999999997,1490,473 +29197,486.6166666666667,1472,473 +29198,486.6333333333333,1454,473 +29199,486.65,1436,473 +29200,486.6666666666667,1419,473 +29201,486.68333333333334,1401,473 +29202,486.7,1384,473 +29203,486.71666666666664,1367,473 +29204,486.73333333333335,1350,473 +29205,486.75,1334,473 +29206,486.76666666666665,1319,472 +29207,486.7833333333333,1305,472 +29208,486.8,1290,472 +29209,486.81666666666666,1277,471 +29210,486.8333333333333,1265,471 +29211,486.84999999999997,1253,471 +29212,486.8666666666667,1243,470 +29213,486.8833333333333,1233,470 +29214,486.9,1225,470 +29215,486.9166666666667,1217,470 +29216,486.93333333333334,1211,469 +29217,486.95,1206,469 +29218,486.96666666666664,1201,469 +29219,486.98333333333335,1199,469 +29220,487.0,1197,469 +29221,487.01666666666665,1197,469 +29222,487.0333333333333,1197,469 +29223,487.05,1199,469 +29224,487.06666666666666,1203,469 +29225,487.0833333333333,1207,469 +29226,487.09999999999997,1213,470 +29227,487.1166666666667,1219,470 +29228,487.1333333333333,1228,470 +29229,487.15,1237,470 +29230,487.1666666666667,1247,471 +29231,487.18333333333334,1258,471 +29232,487.2,1270,471 +29233,487.21666666666664,1282,471 +29234,487.23333333333335,1296,472 +29235,487.25,1311,473 +29236,487.26666666666665,1326,473 +29237,487.2833333333333,1342,473 +29238,487.3,1358,473 +29239,487.31666666666666,1375,474 +29240,487.3333333333333,1392,474 +29241,487.34999999999997,1410,474 +29242,487.3666666666667,1427,474 +29243,487.3833333333333,1446,473 +29244,487.4,1464,473 +29245,487.4166666666667,1481,473 +29246,487.43333333333334,1499,473 +29247,487.45,1517,473 +29248,487.46666666666664,1535,473 +29249,487.48333333333335,1552,472 +29250,487.5,1569,472 +29251,487.51666666666665,1585,471 +29252,487.5333333333333,1601,471 +29253,487.55,1616,470 +29254,487.56666666666666,1630,469 +29255,487.5833333333333,1644,469 +29256,487.59999999999997,1657,468 +29257,487.6166666666667,1669,467 +29258,487.6333333333333,1680,466 +29259,487.65,1691,466 +29260,487.6666666666667,1700,465 +29261,487.68333333333334,1708,464 +29262,487.7,1716,464 +29263,487.71666666666664,1722,463 +29264,487.73333333333335,1727,463 +29265,487.75,1731,462 +29266,487.76666666666665,1734,462 +29267,487.7833333333333,1736,461 +29268,487.8,1736,461 +29269,487.81666666666666,1736,461 +29270,487.8333333333333,1734,461 +29271,487.84999999999997,1731,461 +29272,487.8666666666667,1727,462 +29273,487.8833333333333,1722,462 +29274,487.9,1716,462 +29275,487.9166666666667,1709,463 +29276,487.93333333333334,1701,463 +29277,487.95,1692,464 +29278,487.96666666666664,1682,465 +29279,487.98333333333335,1671,466 +29280,488.0,1659,466 +29281,488.01666666666665,1647,467 +29282,488.0333333333333,1633,468 +29283,488.05,1619,469 +29284,488.06666666666666,1604,469 +29285,488.0833333333333,1589,470 +29286,488.09999999999997,1573,471 +29287,488.1166666666667,1556,471 +29288,488.1333333333333,1539,471 +29289,488.15,1522,472 +29290,488.1666666666667,1505,472 +29291,488.18333333333334,1487,473 +29292,488.2,1469,473 +29293,488.21666666666664,1452,473 +29294,488.23333333333335,1434,473 +29295,488.25,1417,473 +29296,488.26666666666665,1400,473 +29297,488.2833333333333,1382,473 +29298,488.3,1365,473 +29299,488.31666666666666,1349,473 +29300,488.3333333333333,1333,473 +29301,488.34999999999997,1318,472 +29302,488.3666666666667,1303,472 +29303,488.3833333333333,1290,471 +29304,488.4,1276,471 +29305,488.4166666666667,1264,471 +29306,488.43333333333334,1253,470 +29307,488.45,1243,470 +29308,488.46666666666664,1233,470 +29309,488.48333333333335,1225,469 +29310,488.5,1217,469 +29311,488.51666666666665,1211,469 +29312,488.5333333333333,1206,469 +29313,488.55,1202,469 +29314,488.56666666666666,1199,469 +29315,488.5833333333333,1198,469 +29316,488.59999999999997,1198,469 +29317,488.6166666666667,1198,469 +29318,488.6333333333333,1201,469 +29319,488.65,1204,469 +29320,488.6666666666667,1209,469 +29321,488.68333333333334,1215,469 +29322,488.7,1221,470 +29323,488.71666666666664,1229,470 +29324,488.73333333333335,1239,470 +29325,488.75,1249,471 +29326,488.76666666666665,1260,471 +29327,488.7833333333333,1272,471 +29328,488.8,1285,472 +29329,488.81666666666666,1299,472 +29330,488.8333333333333,1313,473 +29331,488.84999999999997,1329,473 +29332,488.8666666666667,1344,473 +29333,488.8833333333333,1361,473 +29334,488.9,1377,473 +29335,488.9166666666667,1395,473 +29336,488.93333333333334,1412,473 +29337,488.95,1430,473 +29338,488.96666666666664,1448,473 +29339,488.98333333333335,1466,473 +29340,489.0,1484,473 +29341,489.01666666666665,1502,473 +29342,489.0333333333333,1519,473 +29343,489.05,1537,472 +29344,489.06666666666666,1554,472 +29345,489.0833333333333,1570,472 +29346,489.09999999999997,1587,471 +29347,489.1166666666667,1602,470 +29348,489.1333333333333,1617,470 +29349,489.15,1632,469 +29350,489.1666666666667,1645,468 +29351,489.18333333333334,1658,468 +29352,489.2,1670,467 +29353,489.21666666666664,1681,466 +29354,489.23333333333335,1691,466 +29355,489.25,1700,465 +29356,489.26666666666665,1708,464 +29357,489.2833333333333,1716,463 +29358,489.3,1722,463 +29359,489.31666666666666,1727,462 +29360,489.3333333333333,1731,462 +29361,489.34999999999997,1733,462 +29362,489.3666666666667,1735,461 +29363,489.3833333333333,1735,461 +29364,489.4,1735,461 +29365,489.4166666666667,1733,461 +29366,489.43333333333334,1730,461 +29367,489.45,1726,462 +29368,489.46666666666664,1721,462 +29369,489.48333333333335,1715,462 +29370,489.5,1707,463 +29371,489.51666666666665,1699,464 +29372,489.5333333333333,1690,464 +29373,489.55,1680,465 +29374,489.56666666666666,1669,466 +29375,489.5833333333333,1657,467 +29376,489.59999999999997,1644,467 +29377,489.6166666666667,1631,468 +29378,489.6333333333333,1616,469 +29379,489.65,1601,469 +29380,489.6666666666667,1586,470 +29381,489.68333333333334,1570,471 +29382,489.7,1554,471 +29383,489.71666666666664,1537,472 +29384,489.73333333333335,1520,472 +29385,489.75,1502,472 +29386,489.76666666666665,1485,473 +29387,489.7833333333333,1467,473 +29388,489.8,1449,473 +29389,489.81666666666666,1432,473 +29390,489.8333333333333,1414,473 +29391,489.84999999999997,1397,473 +29392,489.8666666666667,1380,473 +29393,489.8833333333333,1363,473 +29394,489.9,1347,473 +29395,489.9166666666667,1331,472 +29396,489.93333333333334,1316,472 +29397,489.95,1301,472 +29398,489.96666666666664,1288,471 +29399,489.98333333333335,1274,471 +29400,490.0,1262,471 +29401,490.01666666666665,1251,470 +29402,490.0333333333333,1241,470 +29403,490.05,1232,470 +29404,490.06666666666666,1223,470 +29405,490.0833333333333,1216,470 +29406,490.09999999999997,1210,469 +29407,490.1166666666667,1205,469 +29408,490.1333333333333,1201,469 +29409,490.15,1199,469 +29410,490.1666666666667,1198,469 +29411,490.18333333333334,1198,469 +29412,490.2,1198,469 +29413,490.21666666666664,1200,469 +29414,490.23333333333335,1204,469 +29415,490.25,1209,469 +29416,490.26666666666665,1215,470 +29417,490.2833333333333,1222,470 +29418,490.3,1230,470 +29419,490.31666666666666,1239,470 +29420,490.3333333333333,1249,471 +29421,490.34999999999997,1261,471 +29422,490.3666666666667,1273,472 +29423,490.3833333333333,1286,472 +29424,490.4,1300,472 +29425,490.4166666666667,1314,473 +29426,490.43333333333334,1329,473 +29427,490.45,1345,474 +29428,490.46666666666664,1361,474 +29429,490.48333333333335,1378,474 +29430,490.5,1396,474 +29431,490.51666666666665,1413,474 +29432,490.5333333333333,1431,474 +29433,490.55,1449,474 +29434,490.56666666666666,1467,474 +29435,490.5833333333333,1485,474 +29436,490.59999999999997,1502,473 +29437,490.6166666666667,1520,473 +29438,490.6333333333333,1537,473 +29439,490.65,1554,472 +29440,490.6666666666667,1571,472 +29441,490.68333333333334,1587,472 +29442,490.7,1602,471 +29443,490.71666666666664,1617,470 +29444,490.73333333333335,1631,470 +29445,490.75,1645,469 +29446,490.76666666666665,1658,468 +29447,490.7833333333333,1669,468 +29448,490.8,1680,467 +29449,490.81666666666666,1691,466 +29450,490.8333333333333,1700,465 +29451,490.84999999999997,1708,465 +29452,490.8666666666667,1714,464 +29453,490.8833333333333,1720,463 +29454,490.9,1725,463 +29455,490.9166666666667,1728,462 +29456,490.93333333333334,1731,462 +29457,490.95,1732,462 +29458,490.96666666666664,1732,462 +29459,490.98333333333335,1732,462 +29460,491.0,1730,462 +29461,491.01666666666665,1727,462 +29462,491.0333333333333,1723,462 +29463,491.05,1718,463 +29464,491.06666666666666,1712,463 +29465,491.0833333333333,1704,464 +29466,491.09999999999997,1696,464 +29467,491.1166666666667,1687,465 +29468,491.1333333333333,1677,466 +29469,491.15,1666,466 +29470,491.1666666666667,1654,467 +29471,491.18333333333334,1641,468 +29472,491.2,1627,469 +29473,491.21666666666664,1613,469 +29474,491.23333333333335,1598,470 +29475,491.25,1583,470 +29476,491.26666666666665,1567,471 +29477,491.2833333333333,1550,471 +29478,491.3,1534,472 +29479,491.31666666666666,1516,472 +29480,491.3333333333333,1499,472 +29481,491.34999999999997,1482,472 +29482,491.3666666666667,1464,473 +29483,491.3833333333333,1447,473 +29484,491.4,1429,473 +29485,491.4166666666667,1412,473 +29486,491.43333333333334,1395,473 +29487,491.45,1377,473 +29488,491.46666666666664,1361,473 +29489,491.48333333333335,1345,473 +29490,491.5,1329,473 +29491,491.51666666666665,1314,472 +29492,491.5333333333333,1300,472 +29493,491.55,1286,471 +29494,491.56666666666666,1274,471 +29495,491.5833333333333,1262,471 +29496,491.59999999999997,1251,470 +29497,491.6166666666667,1241,470 +29498,491.6333333333333,1232,470 +29499,491.65,1223,470 +29500,491.6666666666667,1216,469 +29501,491.68333333333334,1211,469 +29502,491.7,1206,469 +29503,491.71666666666664,1202,469 +29504,491.73333333333335,1200,469 +29505,491.75,1200,469 +29506,491.76666666666665,1200,469 +29507,491.7833333333333,1200,469 +29508,491.8,1202,469 +29509,491.81666666666666,1206,469 +29510,491.8333333333333,1211,469 +29511,491.84999999999997,1217,469 +29512,491.8666666666667,1225,470 +29513,491.8833333333333,1233,470 +29514,491.9,1242,470 +29515,491.9166666666667,1252,471 +29516,491.93333333333334,1264,471 +29517,491.95,1275,471 +29518,491.96666666666664,1288,472 +29519,491.98333333333335,1303,472 +29520,492.0,1317,473 +29521,492.01666666666665,1332,473 +29522,492.0333333333333,1348,473 +29523,492.05,1365,473 +29524,492.06666666666666,1381,473 +29525,492.0833333333333,1399,473 +29526,492.09999999999997,1416,473 +29527,492.1166666666667,1434,473 +29528,492.1333333333333,1452,473 +29529,492.15,1469,473 +29530,492.1666666666667,1487,473 +29531,492.18333333333334,1505,473 +29532,492.2,1523,473 +29533,492.21666666666664,1540,472 +29534,492.23333333333335,1557,472 +29535,492.25,1573,471 +29536,492.26666666666665,1589,471 +29537,492.2833333333333,1604,470 +29538,492.3,1619,470 +29539,492.31666666666666,1633,469 +29540,492.3333333333333,1647,468 +29541,492.34999999999997,1659,468 +29542,492.3666666666667,1671,467 +29543,492.3833333333333,1682,466 +29544,492.4,1691,465 +29545,492.4166666666667,1700,464 +29546,492.43333333333334,1708,464 +29547,492.45,1715,463 +29548,492.46666666666664,1721,463 +29549,492.48333333333335,1725,462 +29550,492.5,1729,462 +29551,492.51666666666665,1731,462 +29552,492.5333333333333,1732,461 +29553,492.55,1732,461 +29554,492.56666666666666,1732,461 +29555,492.5833333333333,1730,461 +29556,492.59999999999997,1727,462 +29557,492.6166666666667,1722,462 +29558,492.6333333333333,1717,462 +29559,492.65,1711,463 +29560,492.6666666666667,1703,463 +29561,492.68333333333334,1695,464 +29562,492.7,1686,465 +29563,492.71666666666664,1675,465 +29564,492.73333333333335,1664,466 +29565,492.75,1652,467 +29566,492.76666666666665,1639,468 +29567,492.7833333333333,1626,468 +29568,492.8,1611,469 +29569,492.81666666666666,1597,470 +29570,492.8333333333333,1581,470 +29571,492.84999999999997,1565,471 +29572,492.8666666666667,1549,471 +29573,492.8833333333333,1532,472 +29574,492.9,1515,472 +29575,492.9166666666667,1498,472 +29576,492.93333333333334,1480,473 +29577,492.95,1463,473 +29578,492.96666666666664,1445,473 +29579,492.98333333333335,1428,473 +29580,493.0,1410,473 +29581,493.01666666666665,1394,473 +29582,493.0333333333333,1376,473 +29583,493.05,1359,473 +29584,493.06666666666666,1343,473 +29585,493.0833333333333,1328,472 +29586,493.09999999999997,1314,472 +29587,493.1166666666667,1299,472 +29588,493.1333333333333,1286,471 +29589,493.15,1273,471 +29590,493.1666666666667,1262,471 +29591,493.18333333333334,1251,470 +29592,493.2,1241,470 +29593,493.21666666666664,1232,470 +29594,493.23333333333335,1224,470 +29595,493.25,1217,469 +29596,493.26666666666665,1211,469 +29597,493.2833333333333,1207,469 +29598,493.3,1203,469 +29599,493.31666666666666,1201,469 +29600,493.3333333333333,1201,469 +29601,493.34999999999997,1201,469 +29602,493.3666666666667,1202,469 +29603,493.3833333333333,1204,469 +29604,493.4,1208,469 +29605,493.4166666666667,1213,469 +29606,493.43333333333334,1219,469 +29607,493.45,1226,470 +29608,493.46666666666664,1235,470 +29609,493.48333333333335,1244,470 +29610,493.5,1254,471 +29611,493.51666666666665,1266,471 +29612,493.5333333333333,1278,471 +29613,493.55,1291,472 +29614,493.56666666666666,1305,472 +29615,493.5833333333333,1320,473 +29616,493.59999999999997,1335,473 +29617,493.6166666666667,1350,473 +29618,493.6333333333333,1367,473 +29619,493.65,1384,473 +29620,493.6666666666667,1402,473 +29621,493.68333333333334,1419,473 +29622,493.7,1436,473 +29623,493.71666666666664,1454,473 +29624,493.73333333333335,1472,473 +29625,493.75,1490,473 +29626,493.76666666666665,1507,473 +29627,493.7833333333333,1525,473 +29628,493.8,1542,472 +29629,493.81666666666666,1559,472 +29630,493.8333333333333,1575,471 +29631,493.84999999999997,1591,471 +29632,493.8666666666667,1606,470 +29633,493.8833333333333,1621,469 +29634,493.9,1634,469 +29635,493.9166666666667,1648,468 +29636,493.93333333333334,1660,467 +29637,493.95,1672,467 +29638,493.96666666666664,1682,466 +29639,493.98333333333335,1692,465 +29640,494.0,1701,464 +29641,494.01666666666665,1709,464 +29642,494.0333333333333,1715,463 +29643,494.05,1721,462 +29644,494.06666666666666,1725,462 +29645,494.0833333333333,1729,462 +29646,494.09999999999997,1731,461 +29647,494.1166666666667,1731,461 +29648,494.1333333333333,1731,461 +29649,494.15,1731,461 +29650,494.1666666666667,1729,461 +29651,494.18333333333334,1726,461 +29652,494.2,1722,462 +29653,494.21666666666664,1716,462 +29654,494.23333333333335,1709,463 +29655,494.25,1702,463 +29656,494.26666666666665,1694,464 +29657,494.2833333333333,1684,465 +29658,494.3,1674,465 +29659,494.31666666666666,1663,466 +29660,494.3333333333333,1650,467 +29661,494.34999999999997,1638,467 +29662,494.3666666666667,1624,468 +29663,494.3833333333333,1610,469 +29664,494.4,1595,469 +29665,494.4166666666667,1579,470 +29666,494.43333333333334,1563,470 +29667,494.45,1547,471 +29668,494.46666666666664,1530,471 +29669,494.48333333333335,1513,472 +29670,494.5,1496,472 +29671,494.51666666666665,1478,472 +29672,494.5333333333333,1461,473 +29673,494.55,1443,473 +29674,494.56666666666666,1426,473 +29675,494.5833333333333,1409,473 +29676,494.59999999999997,1392,472 +29677,494.6166666666667,1374,472 +29678,494.6333333333333,1358,472 +29679,494.65,1342,472 +29680,494.6666666666667,1327,472 +29681,494.68333333333334,1312,471 +29682,494.7,1298,471 +29683,494.71666666666664,1285,471 +29684,494.73333333333335,1272,470 +29685,494.75,1261,470 +29686,494.76666666666665,1250,470 +29687,494.7833333333333,1240,470 +29688,494.8,1231,469 +29689,494.81666666666666,1223,469 +29690,494.8333333333333,1217,469 +29691,494.84999999999997,1211,469 +29692,494.8666666666667,1206,468 +29693,494.8833333333333,1203,468 +29694,494.9,1201,468 +29695,494.9166666666667,1201,468 +29696,494.93333333333334,1201,468 +29697,494.95,1202,468 +29698,494.96666666666664,1205,468 +29699,494.98333333333335,1209,469 +29700,495.0,1214,469 +29701,495.01666666666665,1220,469 +29702,495.0333333333333,1228,469 +29703,495.05,1236,470 +29704,495.06666666666666,1245,470 +29705,495.0833333333333,1256,470 +29706,495.09999999999997,1267,470 +29707,495.1166666666667,1279,471 +29708,495.1333333333333,1293,471 +29709,495.15,1307,472 +29710,495.1666666666667,1321,472 +29711,495.18333333333334,1337,472 +29712,495.2,1352,473 +29713,495.21666666666664,1369,473 +29714,495.23333333333335,1386,473 +29715,495.25,1403,473 +29716,495.26666666666665,1420,473 +29717,495.2833333333333,1438,473 +29718,495.3,1456,473 +29719,495.31666666666666,1473,473 +29720,495.3333333333333,1491,473 +29721,495.34999999999997,1509,473 +29722,495.3666666666667,1526,472 +29723,495.3833333333333,1543,472 +29724,495.4,1560,471 +29725,495.4166666666667,1576,471 +29726,495.43333333333334,1592,470 +29727,495.45,1607,470 +29728,495.46666666666664,1621,470 +29729,495.48333333333335,1635,469 +29730,495.5,1648,468 +29731,495.51666666666665,1660,467 +29732,495.5333333333333,1672,466 +29733,495.55,1682,466 +29734,495.56666666666666,1692,465 +29735,495.5833333333333,1701,464 +29736,495.59999999999997,1708,463 +29737,495.6166666666667,1715,463 +29738,495.6333333333333,1720,462 +29739,495.65,1725,462 +29740,495.6666666666667,1728,462 +29741,495.68333333333334,1730,461 +29742,495.7,1730,461 +29743,495.71666666666664,1730,461 +29744,495.73333333333335,1730,461 +29745,495.75,1728,461 +29746,495.76666666666665,1724,461 +29747,495.7833333333333,1720,462 +29748,495.8,1714,462 +29749,495.81666666666666,1707,463 +29750,495.8333333333333,1700,463 +29751,495.84999999999997,1691,464 +29752,495.8666666666667,1682,464 +29753,495.8833333333333,1671,465 +29754,495.9,1660,466 +29755,495.9166666666667,1648,467 +29756,495.93333333333334,1635,467 +29757,495.95,1621,468 +29758,495.96666666666664,1607,469 +29759,495.98333333333335,1592,469 +29760,496.0,1577,470 +29761,496.01666666666665,1561,470 +29762,496.0333333333333,1544,471 +29763,496.05,1527,471 +29764,496.06666666666666,1510,471 +29765,496.0833333333333,1493,472 +29766,496.09999999999997,1476,472 +29767,496.1166666666667,1458,472 +29768,496.1333333333333,1441,472 +29769,496.15,1424,472 +29770,496.1666666666667,1407,472 +29771,496.18333333333334,1390,472 +29772,496.2,1373,472 +29773,496.21666666666664,1356,472 +29774,496.23333333333335,1341,472 +29775,496.25,1326,472 +29776,496.26666666666665,1311,471 +29777,496.2833333333333,1297,471 +29778,496.3,1284,470 +29779,496.31666666666666,1271,470 +29780,496.3333333333333,1260,470 +29781,496.34999999999997,1249,470 +29782,496.3666666666667,1240,469 +29783,496.3833333333333,1231,469 +29784,496.4,1223,469 +29785,496.4166666666667,1217,469 +29786,496.43333333333334,1211,468 +29787,496.45,1207,468 +29788,496.46666666666664,1204,468 +29789,496.48333333333335,1202,468 +29790,496.5,1202,468 +29791,496.51666666666665,1202,468 +29792,496.5333333333333,1203,468 +29793,496.55,1206,468 +29794,496.56666666666666,1210,469 +29795,496.5833333333333,1215,469 +29796,496.59999999999997,1222,469 +29797,496.6166666666667,1229,469 +29798,496.6333333333333,1238,469 +29799,496.65,1248,470 +29800,496.6666666666667,1258,470 +29801,496.68333333333334,1269,470 +29802,496.7,1282,471 +29803,496.71666666666664,1295,471 +29804,496.73333333333335,1309,472 +29805,496.75,1324,472 +29806,496.76666666666665,1339,472 +29807,496.7833333333333,1355,473 +29808,496.8,1371,473 +29809,496.81666666666666,1388,473 +29810,496.8333333333333,1406,473 +29811,496.84999999999997,1423,473 +29812,496.8666666666667,1440,473 +29813,496.8833333333333,1458,473 +29814,496.9,1476,473 +29815,496.9166666666667,1493,473 +29816,496.93333333333334,1511,472 +29817,496.95,1528,472 +29818,496.96666666666664,1545,471 +29819,496.98333333333335,1561,471 +29820,497.0,1578,471 +29821,497.01666666666665,1593,470 +29822,497.0333333333333,1608,469 +29823,497.05,1623,469 +29824,497.06666666666666,1636,468 +29825,497.0833333333333,1649,468 +29826,497.09999999999997,1661,467 +29827,497.1166666666667,1673,466 +29828,497.1333333333333,1683,465 +29829,497.15,1692,465 +29830,497.1666666666667,1701,464 +29831,497.18333333333334,1709,463 +29832,497.2,1715,462 +29833,497.21666666666664,1720,462 +29834,497.23333333333335,1725,461 +29835,497.25,1728,461 +29836,497.26666666666665,1730,461 +29837,497.2833333333333,1730,461 +29838,497.3,1730,461 +29839,497.31666666666666,1729,461 +29840,497.3333333333333,1727,461 +29841,497.34999999999997,1724,461 +29842,497.3666666666667,1719,461 +29843,497.3833333333333,1713,462 +29844,497.4,1707,462 +29845,497.4166666666667,1699,463 +29846,497.43333333333334,1690,464 +29847,497.45,1681,464 +29848,497.46666666666664,1670,465 +29849,497.48333333333335,1659,466 +29850,497.5,1647,466 +29851,497.51666666666665,1634,467 +29852,497.5333333333333,1620,468 +29853,497.55,1605,469 +29854,497.56666666666666,1591,469 +29855,497.5833333333333,1575,470 +29856,497.59999999999997,1559,470 +29857,497.6166666666667,1543,471 +29858,497.6333333333333,1526,471 +29859,497.65,1509,471 +29860,497.6666666666667,1492,472 +29861,497.68333333333334,1474,472 +29862,497.7,1457,472 +29863,497.71666666666664,1440,472 +29864,497.73333333333335,1422,472 +29865,497.75,1405,472 +29866,497.76666666666665,1388,472 +29867,497.7833333333333,1371,472 +29868,497.8,1355,472 +29869,497.81666666666666,1339,472 +29870,497.8333333333333,1324,472 +29871,497.84999999999997,1310,471 +29872,497.8666666666667,1296,471 +29873,497.8833333333333,1283,470 +29874,497.9,1271,470 +29875,497.9166666666667,1260,470 +29876,497.93333333333334,1249,470 +29877,497.95,1240,469 +29878,497.96666666666664,1231,469 +29879,497.98333333333335,1223,469 +29880,498.0,1217,469 +29881,498.01666666666665,1212,469 +29882,498.0333333333333,1207,469 +29883,498.05,1204,468 +29884,498.06666666666666,1203,468 +29885,498.0833333333333,1203,468 +29886,498.09999999999997,1203,468 +29887,498.1166666666667,1204,468 +29888,498.1333333333333,1208,469 +29889,498.15,1212,469 +29890,498.1666666666667,1217,469 +29891,498.18333333333334,1224,469 +29892,498.2,1231,469 +29893,498.21666666666664,1240,470 +29894,498.23333333333335,1250,470 +29895,498.25,1261,470 +29896,498.26666666666665,1272,471 +29897,498.2833333333333,1284,471 +29898,498.3,1298,471 +29899,498.31666666666666,1312,472 +29900,498.3333333333333,1326,472 +29901,498.34999999999997,1341,473 +29902,498.3666666666667,1357,473 +29903,498.3833333333333,1374,473 +29904,498.4,1391,473 +29905,498.4166666666667,1408,473 +29906,498.43333333333334,1425,473 +29907,498.45,1443,473 +29908,498.46666666666664,1460,473 +29909,498.48333333333335,1478,473 +29910,498.5,1496,473 +29911,498.51666666666665,1513,472 +29912,498.5333333333333,1530,472 +29913,498.55,1547,472 +29914,498.56666666666666,1563,471 +29915,498.5833333333333,1579,471 +29916,498.59999999999997,1595,470 +29917,498.6166666666667,1610,470 +29918,498.6333333333333,1624,469 +29919,498.65,1638,468 +29920,498.6666666666667,1651,468 +29921,498.68333333333334,1663,467 +29922,498.7,1674,466 +29923,498.71666666666664,1684,465 +29924,498.73333333333335,1693,464 +29925,498.75,1702,464 +29926,498.76666666666665,1709,463 +29927,498.7833333333333,1715,462 +29928,498.8,1721,462 +29929,498.81666666666666,1725,462 +29930,498.8333333333333,1727,461 +29931,498.84999999999997,1730,461 +29932,498.8666666666667,1730,461 +29933,498.8833333333333,1730,461 +29934,498.9,1729,461 +29935,498.9166666666667,1726,461 +29936,498.93333333333334,1722,461 +29937,498.95,1718,462 +29938,498.96666666666664,1712,462 +29939,498.98333333333335,1705,462 +29940,499.0,1697,463 +29941,499.01666666666665,1689,464 +29942,499.0333333333333,1679,464 +29943,499.05,1668,465 +29944,499.06666666666666,1657,466 +29945,499.0833333333333,1645,466 +29946,499.09999999999997,1632,467 +29947,499.1166666666667,1618,468 +29948,499.1333333333333,1603,469 +29949,499.15,1588,469 +29950,499.1666666666667,1573,470 +29951,499.18333333333334,1557,470 +29952,499.2,1540,471 +29953,499.21666666666664,1524,471 +29954,499.23333333333335,1507,471 +29955,499.25,1490,472 +29956,499.26666666666665,1472,472 +29957,499.2833333333333,1455,472 +29958,499.3,1438,472 +29959,499.31666666666666,1420,472 +29960,499.3333333333333,1403,472 +29961,499.34999999999997,1387,472 +29962,499.3666666666667,1370,472 +29963,499.3833333333333,1354,472 +29964,499.4,1338,472 +29965,499.4166666666667,1323,472 +29966,499.43333333333334,1309,471 +29967,499.45,1295,471 +29968,499.46666666666664,1282,471 +29969,499.48333333333335,1270,470 +29970,499.5,1259,470 +29971,499.51666666666665,1249,470 +29972,499.5333333333333,1240,469 +29973,499.55,1231,469 +29974,499.56666666666666,1223,469 +29975,499.5833333333333,1217,469 +29976,499.59999999999997,1212,469 +29977,499.6166666666667,1208,468 +29978,499.6333333333333,1205,468 +29979,499.65,1204,468 +29980,499.6666666666667,1204,468 +29981,499.68333333333334,1204,468 +29982,499.7,1206,468 +29983,499.71666666666664,1209,469 +29984,499.73333333333335,1213,469 +29985,499.75,1219,469 +29986,499.76666666666665,1225,469 +29987,499.7833333333333,1233,469 +29988,499.8,1242,470 +29989,499.81666666666666,1252,470 +29990,499.8333333333333,1263,470 +29991,499.84999999999997,1274,471 +29992,499.8666666666667,1286,471 +29993,499.8833333333333,1299,471 +29994,499.9,1314,472 +29995,499.9166666666667,1328,472 +29996,499.93333333333334,1343,472 +29997,499.95,1359,472 +29998,499.96666666666664,1376,473 +29999,499.98333333333335,1394,473 +30000,500.0,1410,473 +30001,500.01666666666665,1427,473 +30002,500.0333333333333,1445,473 +30003,500.05,1462,473 +30004,500.06666666666666,1480,472 +30005,500.0833333333333,1498,472 +30006,500.09999999999997,1515,472 +30007,500.1166666666667,1532,472 +30008,500.1333333333333,1549,471 +30009,500.15,1565,471 +30010,500.1666666666667,1581,471 +30011,500.18333333333334,1596,470 +30012,500.2,1611,469 +30013,500.21666666666664,1625,469 +30014,500.23333333333335,1639,468 +30015,500.25,1651,467 +30016,500.26666666666665,1663,467 +30017,500.2833333333333,1674,466 +30018,500.3,1684,465 +30019,500.31666666666666,1694,464 +30020,500.3333333333333,1702,463 +30021,500.34999999999997,1709,463 +30022,500.3666666666667,1715,462 +30023,500.3833333333333,1720,462 +30024,500.4,1724,462 +30025,500.4166666666667,1727,461 +30026,500.43333333333334,1728,461 +30027,500.45,1728,461 +30028,500.46666666666664,1728,461 +30029,500.48333333333335,1727,461 +30030,500.5,1725,461 +30031,500.51666666666665,1721,461 +30032,500.5333333333333,1716,462 +30033,500.55,1711,462 +30034,500.56666666666666,1703,462 +30035,500.5833333333333,1695,463 +30036,500.59999999999997,1687,464 +30037,500.6166666666667,1677,465 +30038,500.6333333333333,1666,465 +30039,500.65,1655,466 +30040,500.6666666666667,1642,467 +30041,500.68333333333334,1629,467 +30042,500.7,1616,468 +30043,500.71666666666664,1601,469 +30044,500.73333333333335,1586,469 +30045,500.75,1570,470 +30046,500.76666666666665,1554,470 +30047,500.7833333333333,1538,471 +30048,500.8,1522,471 +30049,500.81666666666666,1504,471 +30050,500.8333333333333,1487,472 +30051,500.84999999999997,1470,472 +30052,500.8666666666667,1453,472 +30053,500.8833333333333,1435,472 +30054,500.9,1418,472 +30055,500.9166666666667,1401,472 +30056,500.93333333333334,1385,472 +30057,500.95,1368,472 +30058,500.96666666666664,1352,472 +30059,500.98333333333335,1336,472 +30060,501.0,1322,471 +30061,501.01666666666665,1307,471 +30062,501.0333333333333,1294,471 +30063,501.05,1281,470 +30064,501.06666666666666,1269,470 +30065,501.0833333333333,1258,470 +30066,501.09999999999997,1248,469 +30067,501.1166666666667,1239,469 +30068,501.1333333333333,1230,469 +30069,501.15,1223,469 +30070,501.1666666666667,1217,468 +30071,501.18333333333334,1212,468 +30072,501.2,1208,468 +30073,501.21666666666664,1205,468 +30074,501.23333333333335,1204,468 +30075,501.25,1204,468 +30076,501.26666666666665,1204,468 +30077,501.2833333333333,1207,468 +30078,501.3,1210,468 +30079,501.31666666666666,1214,468 +30080,501.3333333333333,1220,469 +30081,501.34999999999997,1227,469 +30082,501.3666666666667,1235,469 +30083,501.3833333333333,1244,470 +30084,501.4,1253,470 +30085,501.4166666666667,1264,470 +30086,501.43333333333334,1276,470 +30087,501.45,1288,471 +30088,501.46666666666664,1302,471 +30089,501.48333333333335,1316,472 +30090,501.5,1330,472 +30091,501.51666666666665,1345,472 +30092,501.5333333333333,1361,472 +30093,501.55,1378,473 +30094,501.56666666666666,1395,473 +30095,501.5833333333333,1412,473 +30096,501.59999999999997,1429,473 +30097,501.6166666666667,1447,473 +30098,501.6333333333333,1464,473 +30099,501.65,1482,473 +30100,501.6666666666667,1499,472 +30101,501.68333333333334,1517,472 +30102,501.7,1533,472 +30103,501.71666666666664,1550,471 +30104,501.73333333333335,1567,471 +30105,501.75,1582,470 +30106,501.76666666666665,1597,470 +30107,501.7833333333333,1612,469 +30108,501.8,1626,469 +30109,501.81666666666666,1639,468 +30110,501.8333333333333,1652,467 +30111,501.84999999999997,1664,466 +30112,501.8666666666667,1674,466 +30113,501.8833333333333,1684,465 +30114,501.9,1693,464 +30115,501.9166666666667,1701,464 +30116,501.93333333333334,1708,463 +30117,501.95,1714,462 +30118,501.96666666666664,1719,462 +30119,501.98333333333335,1723,461 +30120,502.0,1726,461 +30121,502.01666666666665,1727,461 +30122,502.0333333333333,1727,461 +30123,502.05,1727,461 +30124,502.06666666666666,1726,461 +30125,502.0833333333333,1723,461 +30126,502.09999999999997,1719,461 +30127,502.1166666666667,1714,462 +30128,502.1333333333333,1708,462 +30129,502.15,1701,463 +30130,502.1666666666667,1693,463 +30131,502.18333333333334,1684,464 +30132,502.2,1675,464 +30133,502.21666666666664,1664,465 +30134,502.23333333333335,1652,466 +30135,502.25,1640,467 +30136,502.26666666666665,1627,468 +30137,502.2833333333333,1613,468 +30138,502.3,1599,469 +30139,502.31666666666666,1583,469 +30140,502.3333333333333,1568,470 +30141,502.34999999999997,1552,470 +30142,502.3666666666667,1536,471 +30143,502.3833333333333,1519,471 +30144,502.4,1502,471 +30145,502.4166666666667,1485,472 +30146,502.43333333333334,1467,472 +30147,502.45,1450,472 +30148,502.46666666666664,1433,472 +30149,502.48333333333335,1416,472 +30150,502.5,1399,472 +30151,502.51666666666665,1383,472 +30152,502.5333333333333,1366,472 +30153,502.55,1350,472 +30154,502.56666666666666,1335,472 +30155,502.5833333333333,1320,471 +30156,502.59999999999997,1306,471 +30157,502.6166666666667,1293,471 +30158,502.6333333333333,1280,470 +30159,502.65,1268,470 +30160,502.6666666666667,1257,470 +30161,502.68333333333334,1247,470 +30162,502.7,1238,469 +30163,502.71666666666664,1230,469 +30164,502.73333333333335,1223,469 +30165,502.75,1217,468 +30166,502.76666666666665,1212,468 +30167,502.7833333333333,1208,468 +30168,502.8,1205,468 +30169,502.81666666666666,1205,468 +30170,502.8333333333333,1205,468 +30171,502.84999999999997,1205,468 +30172,502.8666666666667,1207,468 +30173,502.8833333333333,1211,468 +30174,502.9,1215,469 +30175,502.9166666666667,1221,469 +30176,502.93333333333334,1228,469 +30177,502.95,1236,470 +30178,502.96666666666664,1245,470 +30179,502.98333333333335,1255,470 +30180,503.0,1265,470 +30181,503.01666666666665,1277,471 +30182,503.0333333333333,1290,471 +30183,503.05,1303,472 +30184,503.06666666666666,1317,472 +30185,503.0833333333333,1332,472 +30186,503.09999999999997,1347,472 +30187,503.1166666666667,1363,473 +30188,503.1333333333333,1380,473 +30189,503.15,1397,473 +30190,503.1666666666667,1413,473 +30191,503.18333333333334,1431,473 +30192,503.2,1449,473 +30193,503.21666666666664,1466,473 +30194,503.23333333333335,1484,473 +30195,503.25,1501,473 +30196,503.26666666666665,1518,472 +30197,503.2833333333333,1535,472 +30198,503.3,1551,472 +30199,503.31666666666666,1568,471 +30200,503.3333333333333,1583,471 +30201,503.34999999999997,1599,470 +30202,503.3666666666667,1613,470 +30203,503.3833333333333,1627,469 +30204,503.4,1640,469 +30205,503.4166666666667,1652,468 +30206,503.43333333333334,1664,467 +30207,503.45,1675,466 +30208,503.46666666666664,1685,465 +30209,503.48333333333335,1694,465 +30210,503.5,1702,464 +30211,503.51666666666665,1709,463 +30212,503.5333333333333,1714,463 +30213,503.55,1719,462 +30214,503.56666666666666,1723,462 +30215,503.5833333333333,1726,462 +30216,503.59999999999997,1727,461 +30217,503.6166666666667,1727,461 +30218,503.6333333333333,1727,461 +30219,503.65,1725,462 +30220,503.6666666666667,1722,462 +30221,503.68333333333334,1718,462 +30222,503.7,1713,462 +30223,503.71666666666664,1707,463 +30224,503.73333333333335,1700,463 +30225,503.75,1692,464 +30226,503.76666666666665,1683,464 +30227,503.7833333333333,1673,465 +30228,503.8,1662,466 +30229,503.81666666666666,1651,466 +30230,503.8333333333333,1638,467 +30231,503.84999999999997,1625,468 +30232,503.8666666666667,1611,469 +30233,503.8833333333333,1597,469 +30234,503.9,1582,470 +30235,503.9166666666667,1566,470 +30236,503.93333333333334,1550,471 +30237,503.95,1534,471 +30238,503.96666666666664,1517,472 +30239,503.98333333333335,1500,472 +30240,504.0,1483,472 +30241,504.01666666666665,1466,472 +30242,504.0333333333333,1449,472 +30243,504.05,1432,473 +30244,504.06666666666666,1414,473 +30245,504.0833333333333,1398,473 +30246,504.09999999999997,1381,472 +30247,504.1166666666667,1365,472 +30248,504.1333333333333,1349,472 +30249,504.15,1334,472 +30250,504.1666666666667,1319,472 +30251,504.18333333333334,1306,471 +30252,504.2,1292,471 +30253,504.21666666666664,1279,471 +30254,504.23333333333335,1267,470 +30255,504.25,1257,470 +30256,504.26666666666665,1247,470 +30257,504.2833333333333,1238,470 +30258,504.3,1230,469 +30259,504.31666666666666,1223,469 +30260,504.3333333333333,1217,469 +30261,504.34999999999997,1212,469 +30262,504.3666666666667,1209,469 +30263,504.3833333333333,1206,469 +30264,504.4,1206,469 +30265,504.4166666666667,1206,469 +30266,504.43333333333334,1206,469 +30267,504.45,1209,469 +30268,504.46666666666664,1212,469 +30269,504.48333333333335,1217,469 +30270,504.5,1223,469 +30271,504.51666666666665,1230,469 +30272,504.5333333333333,1238,470 +30273,504.55,1247,470 +30274,504.56666666666666,1257,470 +30275,504.5833333333333,1268,471 +30276,504.59999999999997,1280,471 +30277,504.6166666666667,1292,471 +30278,504.6333333333333,1306,472 +30279,504.65,1320,472 +30280,504.6666666666667,1335,473 +30281,504.68333333333334,1350,473 +30282,504.7,1366,473 +30283,504.71666666666664,1383,473 +30284,504.73333333333335,1400,473 +30285,504.75,1417,473 +30286,504.76666666666665,1434,473 +30287,504.7833333333333,1452,473 +30288,504.8,1469,473 +30289,504.81666666666666,1486,473 +30290,504.8333333333333,1504,473 +30291,504.84999999999997,1521,473 +30292,504.8666666666667,1538,472 +30293,504.8833333333333,1554,472 +30294,504.9,1570,471 +30295,504.9166666666667,1586,471 +30296,504.93333333333334,1601,470 +30297,504.95,1615,470 +30298,504.96666666666664,1629,469 +30299,504.98333333333335,1642,469 +30300,505.0,1654,468 +30301,505.01666666666665,1666,467 +30302,505.0333333333333,1676,466 +30303,505.05,1686,466 +30304,505.06666666666666,1695,465 +30305,505.0833333333333,1702,464 +30306,505.09999999999997,1709,464 +30307,505.1166666666667,1715,463 +30308,505.1333333333333,1719,463 +30309,505.15,1723,462 +30310,505.1666666666667,1726,462 +30311,505.18333333333334,1726,462 +30312,505.2,1726,462 +30313,505.21666666666664,1726,462 +30314,505.23333333333335,1724,462 +30315,505.25,1722,462 +30316,505.26666666666665,1717,462 +30317,505.2833333333333,1712,463 +30318,505.3,1706,463 +30319,505.31666666666666,1699,464 +30320,505.3333333333333,1691,464 +30321,505.34999999999997,1682,465 +30322,505.3666666666667,1672,466 +30323,505.3833333333333,1661,466 +30324,505.4,1649,467 +30325,505.4166666666667,1637,468 +30326,505.43333333333334,1623,468 +30327,505.45,1609,469 +30328,505.46666666666664,1595,470 +30329,505.48333333333335,1580,470 +30330,505.5,1564,471 +30331,505.51666666666665,1548,471 +30332,505.5333333333333,1532,472 +30333,505.55,1515,472 +30334,505.56666666666666,1498,472 +30335,505.5833333333333,1481,472 +30336,505.59999999999997,1464,473 +30337,505.6166666666667,1447,473 +30338,505.6333333333333,1429,473 +30339,505.65,1413,473 +30340,505.6666666666667,1396,473 +30341,505.68333333333334,1379,473 +30342,505.7,1363,473 +30343,505.71666666666664,1347,473 +30344,505.73333333333335,1332,473 +30345,505.75,1318,472 +30346,505.76666666666665,1305,472 +30347,505.7833333333333,1291,472 +30348,505.8,1278,471 +30349,505.81666666666666,1267,471 +30350,505.8333333333333,1256,470 +30351,505.84999999999997,1247,470 +30352,505.8666666666667,1237,470 +30353,505.8833333333333,1230,470 +30354,505.9,1223,470 +30355,505.9166666666667,1217,469 +30356,505.93333333333334,1213,469 +30357,505.95,1209,469 +30358,505.96666666666664,1207,469 +30359,505.98333333333335,1207,469 +30360,506.0,1207,469 +30361,506.01666666666665,1208,469 +30362,506.0333333333333,1210,469 +30363,506.05,1214,469 +30364,506.06666666666666,1218,470 +30365,506.0833333333333,1224,470 +30366,506.09999999999997,1231,470 +30367,506.1166666666667,1240,470 +30368,506.1333333333333,1249,471 +30369,506.15,1259,471 +30370,506.1666666666667,1270,471 +30371,506.18333333333334,1282,471 +30372,506.2,1295,472 +30373,506.21666666666664,1308,472 +30374,506.23333333333335,1322,473 +30375,506.25,1337,473 +30376,506.26666666666665,1352,473 +30377,506.2833333333333,1369,473 +30378,506.3,1385,473 +30379,506.31666666666666,1402,474 +30380,506.3333333333333,1419,474 +30381,506.34999999999997,1436,474 +30382,506.3666666666667,1454,473 +30383,506.3833333333333,1471,473 +30384,506.4,1488,473 +30385,506.4166666666667,1505,473 +30386,506.43333333333334,1522,473 +30387,506.45,1539,472 +30388,506.46666666666664,1556,472 +30389,506.48333333333335,1571,471 +30390,506.5,1587,471 +30391,506.51666666666665,1602,470 +30392,506.5333333333333,1616,470 +30393,506.55,1630,469 +30394,506.56666666666666,1643,468 +30395,506.5833333333333,1655,468 +30396,506.59999999999997,1666,467 +30397,506.6166666666667,1676,466 +30398,506.6333333333333,1686,466 +30399,506.65,1695,465 +30400,506.6666666666667,1702,464 +30401,506.68333333333334,1709,464 +30402,506.7,1714,463 +30403,506.71666666666664,1719,463 +30404,506.73333333333335,1722,462 +30405,506.75,1724,462 +30406,506.76666666666665,1725,462 +30407,506.7833333333333,1725,462 +30408,506.8,1725,462 +30409,506.81666666666666,1723,462 +30410,506.8333333333333,1719,462 +30411,506.84999999999997,1716,463 +30412,506.8666666666667,1710,463 +30413,506.8833333333333,1704,463 +30414,506.9,1697,464 +30415,506.9166666666667,1688,464 +30416,506.93333333333334,1679,465 +30417,506.95,1669,466 +30418,506.96666666666664,1658,467 +30419,506.98333333333335,1646,467 +30420,507.0,1634,468 +30421,507.01666666666665,1621,469 +30422,507.0333333333333,1607,469 +30423,507.05,1592,470 +30424,507.06666666666666,1577,470 +30425,507.0833333333333,1562,471 +30426,507.09999999999997,1546,471 +30427,507.1166666666667,1529,472 +30428,507.1333333333333,1513,472 +30429,507.15,1496,472 +30430,507.1666666666667,1479,473 +30431,507.18333333333334,1462,473 +30432,507.2,1445,473 +30433,507.21666666666664,1427,473 +30434,507.23333333333335,1410,473 +30435,507.25,1394,473 +30436,507.26666666666665,1378,473 +30437,507.2833333333333,1362,473 +30438,507.3,1346,473 +30439,507.31666666666666,1331,473 +30440,507.3333333333333,1317,473 +30441,507.34999999999997,1303,472 +30442,507.3666666666667,1290,472 +30443,507.3833333333333,1277,471 +30444,507.4,1266,471 +30445,507.4166666666667,1255,471 +30446,507.43333333333334,1246,470 +30447,507.45,1237,470 +30448,507.46666666666664,1230,470 +30449,507.48333333333335,1223,470 +30450,507.5,1217,470 +30451,507.51666666666665,1213,470 +30452,507.5333333333333,1210,469 +30453,507.55,1208,469 +30454,507.56666666666666,1208,469 +30455,507.5833333333333,1208,469 +30456,507.59999999999997,1209,469 +30457,507.6166666666667,1211,470 +30458,507.6333333333333,1215,470 +30459,507.65,1220,470 +30460,507.6666666666667,1226,470 +30461,507.68333333333334,1233,470 +30462,507.7,1241,470 +30463,507.71666666666664,1250,471 +30464,507.73333333333335,1261,471 +30465,507.75,1271,471 +30466,507.76666666666665,1283,472 +30467,507.7833333333333,1296,472 +30468,507.8,1310,473 +30469,507.81666666666666,1324,473 +30470,507.8333333333333,1338,473 +30471,507.84999999999997,1354,474 +30472,507.8666666666667,1370,474 +30473,507.8833333333333,1387,474 +30474,507.9,1404,474 +30475,507.9166666666667,1420,474 +30476,507.93333333333334,1438,474 +30477,507.95,1455,474 +30478,507.96666666666664,1472,474 +30479,507.98333333333335,1490,473 +30480,508.0,1507,473 +30481,508.01666666666665,1523,473 +30482,508.0333333333333,1540,473 +30483,508.05,1556,472 +30484,508.06666666666666,1572,472 +30485,508.0833333333333,1588,472 +30486,508.09999999999997,1602,471 +30487,508.1166666666667,1617,470 +30488,508.1333333333333,1630,470 +30489,508.15,1643,469 +30490,508.1666666666667,1655,468 +30491,508.18333333333334,1666,468 +30492,508.2,1676,467 +30493,508.21666666666664,1686,466 +30494,508.23333333333335,1694,465 +30495,508.25,1702,465 +30496,508.26666666666665,1708,464 +30497,508.2833333333333,1714,464 +30498,508.3,1718,463 +30499,508.31666666666666,1721,463 +30500,508.3333333333333,1724,463 +30501,508.34999999999997,1724,463 +30502,508.3666666666667,1724,463 +30503,508.3833333333333,1724,463 +30504,508.4,1722,463 +30505,508.4166666666667,1718,463 +30506,508.43333333333334,1714,463 +30507,508.45,1709,464 +30508,508.46666666666664,1702,464 +30509,508.48333333333335,1695,465 +30510,508.5,1687,465 +30511,508.51666666666665,1678,466 +30512,508.5333333333333,1668,466 +30513,508.55,1657,467 +30514,508.56666666666666,1645,468 +30515,508.5833333333333,1632,468 +30516,508.59999999999997,1619,469 +30517,508.6166666666667,1605,470 +30518,508.6333333333333,1591,470 +30519,508.65,1575,471 +30520,508.6666666666667,1560,471 +30521,508.68333333333334,1544,472 +30522,508.7,1527,472 +30523,508.71666666666664,1511,472 +30524,508.73333333333335,1494,473 +30525,508.75,1477,473 +30526,508.76666666666665,1460,473 +30527,508.7833333333333,1443,473 +30528,508.8,1426,473 +30529,508.81666666666666,1409,473 +30530,508.8333333333333,1393,473 +30531,508.84999999999997,1376,473 +30532,508.8666666666667,1360,473 +30533,508.8833333333333,1345,473 +30534,508.9,1330,473 +30535,508.9166666666667,1316,472 +30536,508.93333333333334,1302,472 +30537,508.95,1289,472 +30538,508.96666666666664,1277,471 +30539,508.98333333333335,1266,471 +30540,509.0,1255,471 +30541,509.01666666666665,1246,471 +30542,509.0333333333333,1237,470 +30543,509.05,1230,470 +30544,509.06666666666666,1223,470 +30545,509.0833333333333,1218,470 +30546,509.09999999999997,1213,470 +30547,509.1166666666667,1210,469 +30548,509.1333333333333,1208,469 +30549,509.15,1208,469 +30550,509.1666666666667,1208,469 +30551,509.18333333333334,1210,469 +30552,509.2,1212,469 +30553,509.21666666666664,1216,470 +30554,509.23333333333335,1221,470 +30555,509.25,1227,470 +30556,509.26666666666665,1235,470 +30557,509.2833333333333,1243,471 +30558,509.3,1252,471 +30559,509.31666666666666,1263,471 +30560,509.3333333333333,1274,471 +30561,509.34999999999997,1286,472 +30562,509.3666666666667,1299,472 +30563,509.3833333333333,1313,472 +30564,509.4,1327,473 +30565,509.4166666666667,1342,473 +30566,509.43333333333334,1357,473 +30567,509.45,1373,474 +30568,509.46666666666664,1390,474 +30569,509.48333333333335,1406,474 +30570,509.5,1423,474 +30571,509.51666666666665,1440,474 +30572,509.5333333333333,1458,474 +30573,509.55,1475,474 +30574,509.56666666666666,1492,473 +30575,509.5833333333333,1509,473 +30576,509.59999999999997,1526,473 +30577,509.6166666666667,1542,472 +30578,509.6333333333333,1559,472 +30579,509.65,1574,472 +30580,509.6666666666667,1590,471 +30581,509.68333333333334,1604,471 +30582,509.7,1618,470 +30583,509.71666666666664,1632,469 +30584,509.73333333333335,1645,469 +30585,509.75,1656,468 +30586,509.76666666666665,1668,467 +30587,509.7833333333333,1678,466 +30588,509.8,1687,466 +30589,509.81666666666666,1695,465 +30590,509.8333333333333,1703,464 +30591,509.84999999999997,1709,464 +30592,509.8666666666667,1714,463 +30593,509.8833333333333,1718,463 +30594,509.9,1721,463 +30595,509.9166666666667,1723,462 +30596,509.93333333333334,1723,462 +30597,509.95,1723,462 +30598,509.96666666666664,1723,462 +30599,509.98333333333335,1721,462 +30600,510.0,1718,463 +30601,510.01666666666665,1713,463 +30602,510.0333333333333,1708,463 +30603,510.05,1701,464 +30604,510.06666666666666,1694,464 +30605,510.0833333333333,1686,465 +30606,510.09999999999997,1676,465 +30607,510.1166666666667,1666,466 +30608,510.1333333333333,1655,467 +30609,510.15,1643,468 +30610,510.1666666666667,1631,468 +30611,510.18333333333334,1617,469 +30612,510.2,1603,470 +30613,510.21666666666664,1589,470 +30614,510.23333333333335,1574,471 +30615,510.25,1558,471 +30616,510.26666666666665,1542,471 +30617,510.2833333333333,1526,472 +30618,510.3,1509,472 +30619,510.31666666666666,1492,473 +30620,510.3333333333333,1475,473 +30621,510.34999999999997,1458,473 +30622,510.3666666666667,1441,473 +30623,510.3833333333333,1425,473 +30624,510.4,1408,473 +30625,510.4166666666667,1391,473 +30626,510.43333333333334,1375,473 +30627,510.45,1359,473 +30628,510.46666666666664,1344,473 +30629,510.48333333333335,1329,473 +30630,510.5,1315,472 +30631,510.51666666666665,1301,472 +30632,510.5333333333333,1289,472 +30633,510.55,1276,471 +30634,510.56666666666666,1265,471 +30635,510.5833333333333,1255,471 +30636,510.59999999999997,1246,470 +30637,510.6166666666667,1237,470 +30638,510.6333333333333,1230,470 +30639,510.65,1224,470 +30640,510.6666666666667,1218,470 +30641,510.68333333333334,1214,469 +30642,510.7,1211,469 +30643,510.71666666666664,1209,469 +30644,510.73333333333335,1209,469 +30645,510.75,1209,469 +30646,510.76666666666665,1211,470 +30647,510.7833333333333,1214,470 +30648,510.8,1218,470 +30649,510.81666666666666,1223,470 +30650,510.8333333333333,1230,470 +30651,510.84999999999997,1237,470 +30652,510.8666666666667,1245,471 +30653,510.8833333333333,1255,471 +30654,510.9,1265,471 +30655,510.9166666666667,1276,472 +30656,510.93333333333334,1288,472 +30657,510.95,1301,472 +30658,510.96666666666664,1315,473 +30659,510.98333333333335,1329,473 +30660,511.0,1344,474 +30661,511.01666666666665,1360,474 +30662,511.0333333333333,1376,474 +30663,511.05,1392,474 +30664,511.06666666666666,1409,474 +30665,511.0833333333333,1426,474 +30666,511.09999999999997,1443,474 +30667,511.1166666666667,1460,474 +30668,511.1333333333333,1477,474 +30669,511.15,1495,474 +30670,511.1666666666667,1511,473 +30671,511.18333333333334,1528,473 +30672,511.2,1545,473 +30673,511.21666666666664,1561,472 +30674,511.23333333333335,1576,472 +30675,511.25,1592,471 +30676,511.26666666666665,1606,471 +30677,511.2833333333333,1620,470 +30678,511.3,1633,469 +30679,511.31666666666666,1646,469 +30680,511.3333333333333,1658,468 +30681,511.34999999999997,1669,467 +30682,511.3666666666667,1678,467 +30683,511.3833333333333,1688,466 +30684,511.4,1696,465 +30685,511.4166666666667,1703,465 +30686,511.43333333333334,1709,464 +30687,511.45,1714,463 +30688,511.46666666666664,1718,463 +30689,511.48333333333335,1721,463 +30690,511.5,1723,463 +30691,511.51666666666665,1723,462 +30692,511.5333333333333,1723,462 +30693,511.55,1723,462 +30694,511.56666666666666,1720,463 +30695,511.5833333333333,1717,463 +30696,511.59999999999997,1712,463 +30697,511.6166666666667,1707,464 +30698,511.6333333333333,1700,464 +30699,511.65,1692,464 +30700,511.6666666666667,1684,465 +30701,511.68333333333334,1675,466 +30702,511.7,1664,466 +30703,511.71666666666664,1653,467 +30704,511.73333333333335,1641,468 +30705,511.75,1629,468 +30706,511.76666666666665,1615,469 +30707,511.7833333333333,1601,470 +30708,511.8,1587,470 +30709,511.81666666666666,1572,471 +30710,511.8333333333333,1556,471 +30711,511.84999999999997,1540,472 +30712,511.8666666666667,1524,472 +30713,511.8833333333333,1507,472 +30714,511.9,1490,473 +30715,511.9166666666667,1473,473 +30716,511.93333333333334,1457,473 +30717,511.95,1440,473 +30718,511.96666666666664,1423,473 +30719,511.98333333333335,1406,473 +30720,512.0,1390,473 +30721,512.0166666666667,1374,473 +30722,512.0333333333333,1358,473 +30723,512.05,1343,473 +30724,512.0666666666666,1328,473 +30725,512.0833333333334,1314,473 +30726,512.1,1300,472 +30727,512.1166666666667,1288,472 +30728,512.1333333333333,1276,472 +30729,512.15,1265,471 +30730,512.1666666666666,1255,471 +30731,512.1833333333333,1245,471 +30732,512.2,1237,470 +30733,512.2166666666667,1230,470 +30734,512.2333333333333,1223,470 +30735,512.25,1219,470 +30736,512.2666666666667,1215,470 +30737,512.2833333333333,1212,470 +30738,512.3,1210,470 +30739,512.3166666666666,1210,470 +30740,512.3333333333334,1210,470 +30741,512.35,1212,470 +30742,512.3666666666667,1215,470 +30743,512.3833333333333,1219,470 +30744,512.4,1225,470 +30745,512.4166666666666,1231,470 +30746,512.4333333333333,1239,471 +30747,512.45,1247,471 +30748,512.4666666666667,1257,471 +30749,512.4833333333333,1267,471 +30750,512.5,1279,472 +30751,512.5166666666667,1291,472 +30752,512.5333333333333,1304,472 +30753,512.55,1317,473 +30754,512.5666666666666,1332,473 +30755,512.5833333333334,1347,474 +30756,512.6,1362,474 +30757,512.6166666666667,1378,474 +30758,512.6333333333333,1395,474 +30759,512.65,1412,474 +30760,512.6666666666666,1428,474 +30761,512.6833333333333,1446,474 +30762,512.7,1463,474 +30763,512.7166666666667,1480,473 +30764,512.7333333333333,1497,473 +30765,512.75,1514,473 +30766,512.7666666666667,1530,473 +30767,512.7833333333333,1547,472 +30768,512.8,1563,472 +30769,512.8166666666666,1578,471 +30770,512.8333333333334,1593,471 +30771,512.85,1608,470 +30772,512.8666666666667,1622,470 +30773,512.8833333333333,1635,469 +30774,512.9,1647,468 +30775,512.9166666666666,1659,468 +30776,512.9333333333333,1669,467 +30777,512.95,1679,466 +30778,512.9666666666667,1688,466 +30779,512.9833333333333,1697,465 +30780,513.0,1704,464 +30781,513.0166666666667,1710,464 +30782,513.0333333333333,1715,463 +30783,513.05,1719,463 +30784,513.0666666666666,1721,463 +30785,513.0833333333334,1723,462 +30786,513.1,1723,462 +30787,513.1166666666667,1723,462 +30788,513.1333333333333,1722,462 +30789,513.15,1719,462 +30790,513.1666666666666,1716,463 +30791,513.1833333333333,1711,463 +30792,513.2,1705,463 +30793,513.2166666666667,1699,464 +30794,513.2333333333333,1691,464 +30795,513.25,1683,465 +30796,513.2666666666667,1673,466 +30797,513.2833333333333,1663,466 +30798,513.3,1652,467 +30799,513.3166666666666,1639,468 +30800,513.3333333333334,1627,468 +30801,513.35,1613,469 +30802,513.3666666666667,1600,470 +30803,513.3833333333333,1585,470 +30804,513.4,1570,471 +30805,513.4166666666666,1554,471 +30806,513.4333333333333,1538,472 +30807,513.45,1522,472 +30808,513.4666666666667,1505,473 +30809,513.4833333333333,1489,473 +30810,513.5,1472,473 +30811,513.5166666666667,1455,473 +30812,513.5333333333333,1438,473 +30813,513.55,1421,473 +30814,513.5666666666666,1405,473 +30815,513.5833333333334,1389,473 +30816,513.6,1372,473 +30817,513.6166666666667,1357,473 +30818,513.6333333333333,1341,473 +30819,513.65,1327,473 +30820,513.6666666666666,1313,473 +30821,513.6833333333333,1300,472 +30822,513.7,1287,472 +30823,513.7166666666667,1275,472 +30824,513.7333333333333,1265,471 +30825,513.75,1255,471 +30826,513.7666666666667,1246,471 +30827,513.7833333333333,1238,470 +30828,513.8,1231,470 +30829,513.8166666666666,1225,470 +30830,513.8333333333334,1220,470 +30831,513.85,1216,470 +30832,513.8666666666667,1213,470 +30833,513.8833333333333,1212,470 +30834,513.9,1212,470 +30835,513.9166666666666,1212,470 +30836,513.9333333333333,1214,470 +30837,513.95,1217,470 +30838,513.9666666666667,1221,470 +30839,513.9833333333333,1227,470 +30840,514.0,1233,470 +30841,514.0166666666667,1241,471 +30842,514.0333333333333,1249,471 +30843,514.05,1259,472 +30844,514.0666666666666,1269,472 +30845,514.0833333333334,1280,472 +30846,514.1,1293,472 +30847,514.1166666666667,1306,473 +30848,514.1333333333333,1319,473 +30849,514.15,1333,473 +30850,514.1666666666666,1348,473 +30851,514.1833333333333,1365,474 +30852,514.2,1380,474 +30853,514.2166666666667,1397,474 +30854,514.2333333333333,1413,474 +30855,514.25,1430,474 +30856,514.2666666666667,1447,474 +30857,514.2833333333333,1465,474 +30858,514.3,1482,474 +30859,514.3166666666666,1499,474 +30860,514.3333333333334,1515,473 +30861,514.35,1532,473 +30862,514.3666666666667,1548,473 +30863,514.3833333333333,1564,472 +30864,514.4,1579,472 +30865,514.4166666666666,1594,471 +30866,514.4333333333333,1609,471 +30867,514.45,1622,470 +30868,514.4666666666667,1635,469 +30869,514.4833333333333,1648,469 +30870,514.5,1659,468 +30871,514.5166666666667,1669,467 +30872,514.5333333333333,1679,467 +30873,514.55,1688,466 +30874,514.5666666666666,1696,465 +30875,514.5833333333334,1703,465 +30876,514.6,1709,464 +30877,514.6166666666667,1713,464 +30878,514.6333333333333,1717,463 +30879,514.65,1720,463 +30880,514.6666666666666,1722,463 +30881,514.6833333333333,1722,463 +30882,514.7,1722,463 +30883,514.7166666666667,1720,463 +30884,514.7333333333333,1717,463 +30885,514.75,1714,463 +30886,514.7666666666667,1709,463 +30887,514.7833333333333,1703,464 +30888,514.8,1697,464 +30889,514.8166666666666,1689,465 +30890,514.8333333333334,1680,465 +30891,514.85,1671,466 +30892,514.8666666666667,1660,467 +30893,514.8833333333333,1649,468 +30894,514.9,1637,468 +30895,514.9166666666666,1624,469 +30896,514.9333333333333,1611,470 +30897,514.95,1597,470 +30898,514.9666666666667,1582,471 +30899,514.9833333333333,1567,471 +30900,515.0,1551,472 +30901,515.0166666666667,1535,472 +30902,515.0333333333333,1519,472 +30903,515.05,1502,473 +30904,515.0666666666666,1486,473 +30905,515.0833333333334,1469,473 +30906,515.1,1452,473 +30907,515.1166666666667,1435,473 +30908,515.1333333333333,1418,473 +30909,515.15,1402,473 +30910,515.1666666666666,1386,473 +30911,515.1833333333333,1370,473 +30912,515.2,1354,473 +30913,515.2166666666667,1339,473 +30914,515.2333333333333,1325,473 +30915,515.25,1311,473 +30916,515.2666666666667,1298,473 +30917,515.2833333333333,1285,472 +30918,515.3,1274,472 +30919,515.3166666666666,1263,471 +30920,515.3333333333334,1253,471 +30921,515.35,1244,471 +30922,515.3666666666667,1236,471 +30923,515.3833333333333,1230,471 +30924,515.4,1224,470 +30925,515.4166666666666,1219,470 +30926,515.4333333333333,1215,470 +30927,515.45,1213,470 +30928,515.4666666666667,1212,470 +30929,515.4833333333333,1212,470 +30930,515.5,1212,470 +30931,515.5166666666667,1214,470 +30932,515.5333333333333,1217,470 +30933,515.55,1222,470 +30934,515.5666666666666,1227,470 +30935,515.5833333333334,1234,471 +30936,515.6,1242,471 +30937,515.6166666666667,1250,471 +30938,515.6333333333333,1260,472 +30939,515.65,1270,472 +30940,515.6666666666666,1282,472 +30941,515.6833333333333,1294,473 +30942,515.7,1307,473 +30943,515.7166666666667,1321,473 +30944,515.7333333333333,1336,474 +30945,515.75,1350,474 +30946,515.7666666666667,1366,474 +30947,515.7833333333333,1383,474 +30948,515.8,1399,474 +30949,515.8166666666666,1415,474 +30950,515.8333333333334,1432,474 +30951,515.85,1449,474 +30952,515.8666666666667,1466,474 +30953,515.8833333333333,1483,474 +30954,515.9,1500,473 +30955,515.9166666666666,1517,473 +30956,515.9333333333333,1533,473 +30957,515.95,1549,472 +30958,515.9666666666667,1565,472 +30959,515.9833333333333,1581,471 +30960,516.0,1595,471 +30961,516.0166666666667,1609,470 +30962,516.0333333333333,1623,470 +30963,516.05,1636,469 +30964,516.0666666666666,1648,468 +30965,516.0833333333334,1659,468 +30966,516.1,1670,467 +30967,516.1166666666667,1679,466 +30968,516.1333333333333,1688,466 +30969,516.15,1696,465 +30970,516.1666666666666,1703,464 +30971,516.1833333333333,1708,464 +30972,516.2,1713,463 +30973,516.2166666666667,1716,463 +30974,516.2333333333333,1719,463 +30975,516.25,1721,463 +30976,516.2666666666667,1721,463 +30977,516.2833333333333,1721,463 +30978,516.3,1719,463 +30979,516.3166666666666,1716,463 +30980,516.3333333333334,1712,463 +30981,516.35,1707,463 +30982,516.3666666666667,1701,464 +30983,516.3833333333333,1695,464 +30984,516.4,1687,465 +30985,516.4166666666666,1678,465 +30986,516.4333333333333,1669,466 +30987,516.45,1658,467 +30988,516.4666666666667,1647,468 +30989,516.4833333333333,1635,468 +30990,516.5,1622,469 +30991,516.5166666666667,1608,469 +30992,516.5333333333333,1594,470 +30993,516.55,1580,471 +30994,516.5666666666666,1564,471 +30995,516.5833333333334,1549,471 +30996,516.6,1533,472 +30997,516.6166666666667,1516,472 +30998,516.6333333333333,1500,473 +30999,516.65,1483,473 +31000,516.6666666666666,1466,473 +31001,516.6833333333333,1450,473 +31002,516.7,1433,473 +31003,516.7166666666667,1416,473 +31004,516.7333333333333,1400,473 +31005,516.75,1383,473 +31006,516.7666666666667,1368,473 +31007,516.7833333333333,1352,473 +31008,516.8,1337,473 +31009,516.8166666666666,1323,473 +31010,516.8333333333334,1309,473 +31011,516.85,1296,472 +31012,516.8666666666667,1284,472 +31013,516.8833333333333,1273,472 +31014,516.9,1262,472 +31015,516.9166666666666,1252,471 +31016,516.9333333333333,1243,471 +31017,516.95,1236,471 +31018,516.9666666666667,1229,470 +31019,516.9833333333333,1223,470 +31020,517.0,1219,470 +31021,517.0166666666667,1215,470 +31022,517.0333333333333,1213,470 +31023,517.05,1213,470 +31024,517.0666666666666,1213,470 +31025,517.0833333333334,1213,470 +31026,517.1,1215,470 +31027,517.1166666666667,1219,470 +31028,517.1333333333333,1223,470 +31029,517.15,1229,470 +31030,517.1666666666666,1236,471 +31031,517.1833333333333,1243,471 +31032,517.2,1252,471 +31033,517.2166666666667,1262,472 +31034,517.2333333333333,1272,472 +31035,517.25,1284,472 +31036,517.2666666666667,1297,472 +31037,517.2833333333333,1310,473 +31038,517.3,1323,473 +31039,517.3166666666666,1338,473 +31040,517.3333333333334,1353,473 +31041,517.35,1369,474 +31042,517.3666666666667,1385,474 +31043,517.3833333333333,1401,474 +31044,517.4,1417,474 +31045,517.4166666666666,1434,474 +31046,517.4333333333333,1451,474 +31047,517.45,1468,474 +31048,517.4666666666667,1485,474 +31049,517.4833333333333,1502,473 +31050,517.5,1519,473 +31051,517.5166666666667,1535,473 +31052,517.5333333333333,1551,472 +31053,517.55,1567,472 +31054,517.5666666666666,1582,471 +31055,517.5833333333334,1597,471 +31056,517.6,1611,470 +31057,517.6166666666667,1624,470 +31058,517.6333333333333,1637,469 +31059,517.65,1649,468 +31060,517.6666666666666,1660,468 +31061,517.6833333333333,1670,467 +31062,517.7,1680,466 +31063,517.7166666666667,1688,466 +31064,517.7333333333333,1696,465 +31065,517.75,1702,464 +31066,517.7666666666667,1708,464 +31067,517.7833333333333,1712,463 +31068,517.8,1716,463 +31069,517.8166666666666,1718,463 +31070,517.8333333333334,1719,462 +31071,517.85,1719,462 +31072,517.8666666666667,1719,462 +31073,517.8833333333333,1717,463 +31074,517.9,1715,463 +31075,517.9166666666666,1710,463 +31076,517.9333333333333,1706,463 +31077,517.95,1700,464 +31078,517.9666666666667,1693,464 +31079,517.9833333333333,1685,465 +31080,518.0,1676,465 +31081,518.0166666666667,1667,466 +31082,518.0333333333333,1656,467 +31083,518.05,1644,467 +31084,518.0666666666666,1632,468 +31085,518.0833333333334,1620,469 +31086,518.1,1606,470 +31087,518.1166666666667,1592,470 +31088,518.1333333333333,1577,471 +31089,518.15,1562,471 +31090,518.1666666666666,1546,472 +31091,518.1833333333333,1531,472 +31092,518.2,1514,472 +31093,518.2166666666667,1498,472 +31094,518.2333333333333,1481,473 +31095,518.25,1465,473 +31096,518.2666666666667,1448,473 +31097,518.2833333333333,1431,473 +31098,518.3,1414,473 +31099,518.3166666666666,1398,473 +31100,518.3333333333334,1382,473 +31101,518.35,1366,473 +31102,518.3666666666667,1350,473 +31103,518.3833333333333,1336,473 +31104,518.4,1322,472 +31105,518.4166666666666,1309,472 +31106,518.4333333333333,1295,472 +31107,518.45,1283,472 +31108,518.4666666666667,1272,471 +31109,518.4833333333333,1262,471 +31110,518.5,1252,470 +31111,518.5166666666667,1244,470 +31112,518.5333333333333,1236,470 +31113,518.55,1229,470 +31114,518.5666666666666,1224,470 +31115,518.5833333333334,1219,470 +31116,518.6,1216,469 +31117,518.6166666666667,1214,469 +31118,518.6333333333333,1214,469 +31119,518.65,1214,469 +31120,518.6666666666666,1214,470 +31121,518.6833333333333,1216,470 +31122,518.7,1220,470 +31123,518.7166666666667,1225,470 +31124,518.7333333333333,1231,470 +31125,518.75,1238,470 +31126,518.7666666666667,1245,470 +31127,518.7833333333333,1254,471 +31128,518.8,1264,471 +31129,518.8166666666666,1275,472 +31130,518.8333333333334,1286,472 +31131,518.85,1299,472 +31132,518.8666666666667,1312,473 +31133,518.8833333333333,1326,473 +31134,518.9,1341,473 +31135,518.9166666666666,1356,474 +31136,518.9333333333333,1371,474 +31137,518.95,1388,474 +31138,518.9666666666667,1404,474 +31139,518.9833333333333,1421,474 +31140,519.0,1437,474 +31141,519.0166666666667,1454,474 +31142,519.0333333333333,1471,474 +31143,519.05,1488,474 +31144,519.0666666666666,1505,473 +31145,519.0833333333334,1521,473 +31146,519.1,1538,473 +31147,519.1166666666667,1554,472 +31148,519.1333333333333,1569,472 +31149,519.15,1584,471 +31150,519.1666666666666,1598,471 +31151,519.1833333333333,1612,470 +31152,519.2,1625,470 +31153,519.2166666666667,1638,469 +31154,519.2333333333333,1650,468 +31155,519.25,1661,468 +31156,519.2666666666667,1671,467 +31157,519.2833333333333,1681,466 +31158,519.3,1689,465 +31159,519.3166666666666,1696,465 +31160,519.3333333333334,1703,464 +31161,519.35,1708,463 +31162,519.3666666666667,1713,463 +31163,519.3833333333333,1716,463 +31164,519.4,1718,462 +31165,519.4166666666666,1719,462 +31166,519.4333333333333,1719,462 +31167,519.45,1719,462 +31168,519.4666666666667,1717,462 +31169,519.4833333333333,1714,462 +31170,519.5,1710,463 +31171,519.5166666666667,1705,463 +31172,519.5333333333333,1699,464 +31173,519.55,1692,464 +31174,519.5666666666666,1684,465 +31175,519.5833333333334,1675,465 +31176,519.6,1665,466 +31177,519.6166666666667,1654,467 +31178,519.6333333333333,1643,467 +31179,519.65,1631,468 +31180,519.6666666666666,1618,468 +31181,519.6833333333333,1604,469 +31182,519.7,1590,470 +31183,519.7166666666667,1575,470 +31184,519.7333333333333,1560,470 +31185,519.75,1544,471 +31186,519.7666666666667,1529,471 +31187,519.7833333333333,1512,472 +31188,519.8,1496,472 +31189,519.8166666666666,1479,472 +31190,519.8333333333334,1463,472 +31191,519.85,1446,472 +31192,519.8666666666667,1429,472 +31193,519.8833333333333,1413,472 +31194,519.9,1397,472 +31195,519.9166666666666,1380,472 +31196,519.9333333333333,1365,472 +31197,519.95,1350,472 +31198,519.9666666666667,1335,472 +31199,519.9833333333333,1321,471 +31200,520.0,1307,471 +31201,520.0166666666667,1295,471 +31202,520.0333333333333,1283,471 +31203,520.05,1272,470 +31204,520.0666666666666,1261,470 +31205,520.0833333333334,1252,470 +31206,520.1,1243,469 +31207,520.1166666666667,1236,469 +31208,520.1333333333333,1229,469 +31209,520.15,1224,469 +31210,520.1666666666666,1220,469 +31211,520.1833333333333,1216,469 +31212,520.2,1214,469 +31213,520.2166666666667,1214,469 +31214,520.2333333333333,1214,469 +31215,520.25,1215,469 +31216,520.2666666666667,1218,469 +31217,520.2833333333333,1221,469 +31218,520.3,1226,469 +31219,520.3166666666666,1232,470 +31220,520.3333333333334,1239,470 +31221,520.35,1247,470 +31222,520.3666666666667,1256,470 +31223,520.3833333333333,1265,471 +31224,520.4,1276,471 +31225,520.4166666666666,1287,471 +31226,520.4333333333333,1300,472 +31227,520.45,1313,472 +31228,520.4666666666667,1327,472 +31229,520.4833333333333,1341,472 +31230,520.5,1357,473 +31231,520.5166666666667,1372,473 +31232,520.5333333333333,1388,473 +31233,520.55,1405,473 +31234,520.5666666666666,1421,473 +31235,520.5833333333334,1438,473 +31236,520.6,1455,473 +31237,520.6166666666667,1472,473 +31238,520.6333333333333,1489,473 +31239,520.65,1505,473 +31240,520.6666666666666,1522,473 +31241,520.6833333333333,1538,472 +31242,520.7,1554,472 +31243,520.7166666666667,1569,472 +31244,520.7333333333333,1584,471 +31245,520.75,1599,471 +31246,520.7666666666667,1613,470 +31247,520.7833333333333,1626,470 +31248,520.8,1638,469 +31249,520.8166666666666,1650,468 +31250,520.8333333333334,1661,467 +31251,520.85,1671,467 +31252,520.8666666666667,1680,466 +31253,520.8833333333333,1689,465 +31254,520.9,1696,465 +31255,520.9166666666666,1702,464 +31256,520.9333333333333,1708,464 +31257,520.95,1712,463 +31258,520.9666666666667,1715,463 +31259,520.9833333333333,1717,462 +31260,521.0,1717,462 +31261,521.0166666666667,1717,462 +31262,521.0333333333333,1717,462 +31263,521.05,1715,462 +31264,521.0666666666666,1712,463 +31265,521.0833333333334,1708,463 +31266,521.1,1703,463 +31267,521.1166666666667,1697,464 +31268,521.1333333333333,1690,464 +31269,521.15,1682,465 +31270,521.1666666666666,1673,466 +31271,521.1833333333333,1663,466 +31272,521.2,1652,467 +31273,521.2166666666667,1641,468 +31274,521.2333333333333,1629,468 +31275,521.25,1615,469 +31276,521.2666666666667,1602,469 +31277,521.2833333333333,1588,470 +31278,521.3,1573,471 +31279,521.3166666666666,1558,471 +31280,521.3333333333334,1543,471 +31281,521.35,1527,472 +31282,521.3666666666667,1510,472 +31283,521.3833333333333,1494,472 +31284,521.4,1478,473 +31285,521.4166666666666,1461,473 +31286,521.4333333333333,1444,473 +31287,521.45,1427,473 +31288,521.4666666666667,1411,473 +31289,521.4833333333333,1395,473 +31290,521.5,1379,473 +31291,521.5166666666667,1363,473 +31292,521.5333333333333,1348,473 +31293,521.55,1334,473 +31294,521.5666666666666,1320,472 +31295,521.5833333333334,1307,472 +31296,521.6,1294,472 +31297,521.6166666666667,1282,471 +31298,521.6333333333333,1271,471 +31299,521.65,1261,471 +31300,521.6666666666666,1252,471 +31301,521.6833333333333,1243,470 +31302,521.7,1236,470 +31303,521.7166666666667,1230,470 +31304,521.7333333333333,1224,470 +31305,521.75,1220,470 +31306,521.7666666666667,1217,470 +31307,521.7833333333333,1215,470 +31308,521.8,1215,470 +31309,521.8166666666666,1215,470 +31310,521.8333333333334,1216,470 +31311,521.85,1219,470 +31312,521.8666666666667,1223,470 +31313,521.8833333333333,1228,470 +31314,521.9,1234,470 +31315,521.9166666666666,1241,471 +31316,521.9333333333333,1249,471 +31317,521.95,1258,471 +31318,521.9666666666667,1268,471 +31319,521.9833333333333,1278,472 +31320,522.0,1290,472 +31321,522.0166666666667,1302,473 +31322,522.0333333333333,1316,473 +31323,522.05,1329,473 +31324,522.0666666666666,1344,473 +31325,522.0833333333334,1359,474 +31326,522.1,1375,474 +31327,522.1166666666667,1391,474 +31328,522.1333333333333,1407,474 +31329,522.15,1423,474 +31330,522.1666666666666,1440,474 +31331,522.1833333333333,1457,474 +31332,522.2,1474,474 +31333,522.2166666666667,1491,473 +31334,522.2333333333333,1507,473 +31335,522.25,1523,473 +31336,522.2666666666667,1540,473 +31337,522.2833333333333,1555,472 +31338,522.3,1571,472 +31339,522.3166666666666,1586,471 +31340,522.3333333333334,1600,471 +31341,522.35,1614,470 +31342,522.3666666666667,1627,470 +31343,522.3833333333333,1639,469 +31344,522.4,1651,469 +31345,522.4166666666666,1661,468 +31346,522.4333333333333,1671,467 +31347,522.45,1680,466 +31348,522.4666666666667,1688,466 +31349,522.4833333333333,1695,465 +31350,522.5,1702,465 +31351,522.5166666666667,1707,465 +31352,522.5333333333333,1711,464 +31353,522.55,1714,464 +31354,522.5666666666666,1716,464 +31355,522.5833333333334,1716,464 +31356,522.6,1716,464 +31357,522.6166666666667,1715,464 +31358,522.6333333333333,1713,464 +31359,522.65,1710,464 +31360,522.6666666666666,1706,464 +31361,522.6833333333333,1701,464 +31362,522.7,1694,465 +31363,522.7166666666667,1687,465 +31364,522.7333333333333,1679,466 +31365,522.75,1670,466 +31366,522.7666666666667,1660,467 +31367,522.7833333333333,1650,468 +31368,522.8,1638,468 +31369,522.8166666666666,1626,469 +31370,522.8333333333334,1613,470 +31371,522.85,1599,470 +31372,522.8666666666667,1585,471 +31373,522.8833333333333,1570,471 +31374,522.9,1555,472 +31375,522.9166666666666,1540,472 +31376,522.9333333333333,1524,472 +31377,522.95,1508,473 +31378,522.9666666666667,1491,473 +31379,522.9833333333333,1475,473 +31380,523.0,1458,473 +31381,523.0166666666667,1442,473 +31382,523.0333333333333,1425,473 +31383,523.05,1409,473 +31384,523.0666666666666,1393,473 +31385,523.0833333333334,1377,473 +31386,523.1,1361,473 +31387,523.1166666666667,1347,473 +31388,523.1333333333333,1332,473 +31389,523.15,1318,473 +31390,523.1666666666666,1305,472 +31391,523.1833333333333,1292,472 +31392,523.2,1281,472 +31393,523.2166666666667,1270,471 +31394,523.2333333333333,1260,471 +31395,523.25,1250,471 +31396,523.2666666666667,1242,471 +31397,523.2833333333333,1235,470 +31398,523.3,1229,470 +31399,523.3166666666666,1224,470 +31400,523.3333333333334,1220,470 +31401,523.35,1217,470 +31402,523.3666666666667,1215,470 +31403,523.3833333333333,1215,470 +31404,523.4,1215,470 +31405,523.4166666666666,1217,470 +31406,523.4333333333333,1220,470 +31407,523.45,1223,470 +31408,523.4666666666667,1228,470 +31409,523.4833333333333,1235,470 +31410,523.5,1242,470 +31411,523.5166666666667,1250,471 +31412,523.5333333333333,1259,471 +31413,523.55,1269,471 +31414,523.5666666666666,1280,472 +31415,523.5833333333334,1292,472 +31416,523.6,1305,472 +31417,523.6166666666667,1318,473 +31418,523.6333333333333,1332,473 +31419,523.65,1346,473 +31420,523.6666666666666,1362,473 +31421,523.6833333333333,1377,473 +31422,523.7,1394,473 +31423,523.7166666666667,1410,474 +31424,523.7333333333333,1426,474 +31425,523.75,1443,474 +31426,523.7666666666667,1460,473 +31427,523.7833333333333,1477,473 +31428,523.8,1493,473 +31429,523.8166666666666,1510,473 +31430,523.8333333333334,1526,473 +31431,523.85,1542,472 +31432,523.8666666666667,1558,472 +31433,523.8833333333333,1573,471 +31434,523.9,1588,471 +31435,523.9166666666666,1602,471 +31436,523.9333333333333,1616,470 +31437,523.95,1629,469 +31438,523.9666666666667,1641,469 +31439,523.9833333333333,1652,468 +31440,524.0,1663,467 +31441,524.0166666666667,1673,467 +31442,524.0333333333333,1682,466 +31443,524.05,1690,465 +31444,524.0666666666666,1697,465 +31445,524.0833333333334,1703,464 +31446,524.1,1708,464 +31447,524.1166666666667,1712,463 +31448,524.1333333333333,1715,463 +31449,524.15,1717,463 +31450,524.1666666666666,1717,463 +31451,524.1833333333333,1717,463 +31452,524.2,1716,463 +31453,524.2166666666667,1714,463 +31454,524.2333333333333,1710,463 +31455,524.25,1706,463 +31456,524.2666666666667,1701,464 +31457,524.2833333333333,1694,464 +31458,524.3,1687,465 +31459,524.3166666666666,1679,466 +31460,524.3333333333334,1670,466 +31461,524.35,1659,467 +31462,524.3666666666667,1649,468 +31463,524.3833333333333,1637,468 +31464,524.4,1625,469 +31465,524.4166666666666,1612,469 +31466,524.4333333333333,1598,470 +31467,524.45,1584,471 +31468,524.4666666666667,1569,471 +31469,524.4833333333333,1554,471 +31470,524.5,1539,472 +31471,524.5166666666667,1523,472 +31472,524.5333333333333,1507,473 +31473,524.55,1490,473 +31474,524.5666666666666,1474,473 +31475,524.5833333333334,1457,473 +31476,524.6,1441,473 +31477,524.6166666666667,1424,473 +31478,524.6333333333333,1408,473 +31479,524.65,1392,473 +31480,524.6666666666666,1376,473 +31481,524.6833333333333,1361,473 +31482,524.7,1346,473 +31483,524.7166666666667,1331,473 +31484,524.7333333333333,1318,473 +31485,524.75,1305,473 +31486,524.7666666666667,1292,472 +31487,524.7833333333333,1281,472 +31488,524.8,1270,471 +31489,524.8166666666666,1260,471 +31490,524.8333333333334,1251,471 +31491,524.85,1243,471 +31492,524.8666666666667,1236,471 +31493,524.8833333333333,1230,470 +31494,524.9,1225,470 +31495,524.9166666666666,1221,470 +31496,524.9333333333333,1218,470 +31497,524.95,1217,470 +31498,524.9666666666667,1217,470 +31499,524.9833333333333,1217,470 +31500,525.0,1219,470 +31501,525.0166666666667,1222,470 +31502,525.0333333333333,1226,470 +31503,525.05,1231,470 +31504,525.0666666666666,1237,471 +31505,525.0833333333334,1244,471 +31506,525.1,1252,471 +31507,525.1166666666667,1262,471 +31508,525.1333333333333,1272,472 +31509,525.15,1283,472 +31510,525.1666666666666,1295,472 +31511,525.1833333333333,1308,473 +31512,525.2,1321,473 +31513,525.2166666666667,1335,474 +31514,525.2333333333333,1349,474 +31515,525.25,1365,474 +31516,525.2666666666667,1380,474 +31517,525.2833333333333,1397,474 +31518,525.3,1412,474 +31519,525.3166666666666,1429,474 +31520,525.3333333333334,1445,474 +31521,525.35,1462,474 +31522,525.3666666666667,1479,474 +31523,525.3833333333333,1496,474 +31524,525.4,1512,473 +31525,525.4166666666666,1528,473 +31526,525.4333333333333,1544,473 +31527,525.45,1560,472 +31528,525.4666666666667,1575,472 +31529,525.4833333333333,1590,471 +31530,525.5,1604,471 +31531,525.5166666666667,1617,470 +31532,525.5333333333333,1630,470 +31533,525.55,1642,469 +31534,525.5666666666666,1654,468 +31535,525.5833333333334,1664,468 +31536,525.6,1673,467 +31537,525.6166666666667,1682,466 +31538,525.6333333333333,1690,466 +31539,525.65,1697,465 +31540,525.6666666666666,1703,465 +31541,525.6833333333333,1708,464 +31542,525.7,1712,464 +31543,525.7166666666667,1714,464 +31544,525.7333333333333,1716,463 +31545,525.75,1716,463 +31546,525.7666666666667,1716,463 +31547,525.7833333333333,1715,463 +31548,525.8,1713,463 +31549,525.8166666666666,1709,464 +31550,525.8333333333334,1705,464 +31551,525.85,1699,464 +31552,525.8666666666667,1693,465 +31553,525.8833333333333,1685,465 +31554,525.9,1677,466 +31555,525.9166666666666,1668,467 +31556,525.9333333333333,1658,467 +31557,525.95,1647,468 +31558,525.9666666666667,1635,469 +31559,525.9833333333333,1623,469 +31560,526.0,1610,470 +31561,526.0166666666667,1596,470 +31562,526.0333333333333,1582,471 +31563,526.05,1567,471 +31564,526.0666666666666,1552,472 +31565,526.0833333333334,1536,472 +31566,526.1,1521,472 +31567,526.1166666666667,1505,473 +31568,526.1333333333333,1488,473 +31569,526.15,1472,473 +31570,526.1666666666666,1455,473 +31571,526.1833333333333,1439,474 +31572,526.2,1423,474 +31573,526.2166666666667,1407,474 +31574,526.2333333333333,1391,474 +31575,526.25,1375,474 +31576,526.2666666666667,1359,474 +31577,526.2833333333333,1345,474 +31578,526.3,1330,473 +31579,526.3166666666666,1317,473 +31580,526.3333333333334,1304,473 +31581,526.35,1292,472 +31582,526.3666666666667,1280,472 +31583,526.3833333333333,1269,472 +31584,526.4,1260,471 +31585,526.4166666666666,1251,471 +31586,526.4333333333333,1243,471 +31587,526.45,1236,471 +31588,526.4666666666667,1230,470 +31589,526.4833333333333,1226,470 +31590,526.5,1222,470 +31591,526.5166666666667,1219,470 +31592,526.5333333333333,1218,470 +31593,526.55,1218,470 +31594,526.5666666666666,1218,470 +31595,526.5833333333334,1220,470 +31596,526.6,1223,470 +31597,526.6166666666667,1227,470 +31598,526.6333333333333,1233,470 +31599,526.65,1239,471 +31600,526.6666666666666,1247,471 +31601,526.6833333333333,1255,471 +31602,526.7,1264,471 +31603,526.7166666666667,1274,472 +31604,526.7333333333333,1285,472 +31605,526.75,1297,473 +31606,526.7666666666667,1310,473 +31607,526.7833333333333,1324,473 +31608,526.8,1337,473 +31609,526.8166666666666,1352,474 +31610,526.8333333333334,1367,474 +31611,526.85,1383,474 +31612,526.8666666666667,1399,474 +31613,526.8833333333333,1415,474 +31614,526.9,1432,474 +31615,526.9166666666666,1448,474 +31616,526.9333333333333,1465,474 +31617,526.95,1481,474 +31618,526.9666666666667,1498,474 +31619,526.9833333333333,1514,473 +31620,527.0,1531,473 +31621,527.0166666666667,1546,473 +31622,527.0333333333333,1561,472 +31623,527.05,1577,472 +31624,527.0666666666666,1591,471 +31625,527.0833333333334,1605,471 +31626,527.1,1618,470 +31627,527.1166666666667,1631,469 +31628,527.1333333333333,1643,469 +31629,527.15,1654,468 +31630,527.1666666666666,1665,467 +31631,527.1833333333333,1674,467 +31632,527.2,1683,466 +31633,527.2166666666667,1690,465 +31634,527.2333333333333,1697,465 +31635,527.25,1703,464 +31636,527.2666666666667,1708,464 +31637,527.2833333333333,1711,463 +31638,527.3,1714,463 +31639,527.3166666666666,1716,463 +31640,527.3333333333334,1716,463 +31641,527.35,1716,463 +31642,527.3666666666667,1715,463 +31643,527.3833333333333,1712,463 +31644,527.4,1708,463 +31645,527.4166666666666,1704,464 +31646,527.4333333333333,1698,464 +31647,527.45,1691,464 +31648,527.4666666666667,1684,465 +31649,527.4833333333333,1676,466 +31650,527.5,1666,466 +31651,527.5166666666667,1656,467 +31652,527.5333333333333,1645,468 +31653,527.55,1634,468 +31654,527.5666666666666,1621,469 +31655,527.5833333333334,1608,470 +31656,527.6,1594,470 +31657,527.6166666666667,1580,471 +31658,527.6333333333333,1565,471 +31659,527.65,1550,472 +31660,527.6666666666666,1534,472 +31661,527.6833333333333,1519,473 +31662,527.7,1503,473 +31663,527.7166666666667,1486,473 +31664,527.7333333333333,1470,473 +31665,527.75,1453,473 +31666,527.7666666666667,1437,474 +31667,527.7833333333333,1421,474 +31668,527.8,1405,474 +31669,527.8166666666666,1389,474 +31670,527.8333333333334,1373,474 +31671,527.85,1358,473 +31672,527.8666666666667,1343,473 +31673,527.8833333333333,1329,473 +31674,527.9,1316,473 +31675,527.9166666666666,1303,473 +31676,527.9333333333333,1291,472 +31677,527.95,1279,472 +31678,527.9666666666667,1269,472 +31679,527.9833333333333,1259,471 +31680,528.0,1250,471 +31681,528.0166666666667,1243,471 +31682,528.0333333333333,1236,471 +31683,528.05,1231,471 +31684,528.0666666666666,1226,470 +31685,528.0833333333334,1222,470 +31686,528.1,1220,470 +31687,528.1166666666667,1219,470 +31688,528.1333333333333,1219,470 +31689,528.15,1219,470 +31690,528.1666666666666,1221,470 +31691,528.1833333333333,1224,471 +31692,528.2,1228,471 +31693,528.2166666666667,1234,471 +31694,528.2333333333333,1240,471 +31695,528.25,1248,471 +31696,528.2666666666667,1256,472 +31697,528.2833333333333,1265,472 +31698,528.3,1275,472 +31699,528.3166666666666,1286,473 +31700,528.3333333333334,1299,473 +31701,528.35,1312,473 +31702,528.3666666666667,1325,473 +31703,528.3833333333333,1338,474 +31704,528.4,1353,474 +31705,528.4166666666666,1368,474 +31706,528.4333333333333,1384,474 +31707,528.45,1401,474 +31708,528.4666666666667,1416,474 +31709,528.4833333333333,1433,474 +31710,528.5,1449,474 +31711,528.5166666666667,1466,474 +31712,528.5333333333333,1482,474 +31713,528.55,1499,474 +31714,528.5666666666666,1515,473 +31715,528.5833333333334,1531,473 +31716,528.6,1547,473 +31717,528.6166666666667,1562,472 +31718,528.6333333333333,1577,472 +31719,528.65,1591,471 +31720,528.6666666666666,1605,471 +31721,528.6833333333333,1619,470 +31722,528.7,1631,469 +31723,528.7166666666667,1643,469 +31724,528.7333333333333,1654,468 +31725,528.75,1664,468 +31726,528.7666666666667,1674,467 +31727,528.7833333333333,1682,466 +31728,528.8,1690,466 +31729,528.8166666666666,1696,465 +31730,528.8333333333334,1702,464 +31731,528.85,1707,464 +31732,528.8666666666667,1710,464 +31733,528.8833333333333,1713,463 +31734,528.9,1714,463 +31735,528.9166666666666,1714,463 +31736,528.9333333333333,1714,463 +31737,528.95,1713,463 +31738,528.9666666666667,1710,463 +31739,528.9833333333333,1706,464 +31740,529.0,1702,464 +31741,529.0166666666667,1696,464 +31742,529.0333333333333,1689,465 +31743,529.05,1681,465 +31744,529.0666666666666,1673,466 +31745,529.0833333333334,1664,467 +31746,529.1,1654,467 +31747,529.1166666666667,1643,468 +31748,529.1333333333333,1631,469 +31749,529.15,1618,469 +31750,529.1666666666666,1605,470 +31751,529.1833333333333,1592,470 +31752,529.2,1577,471 +31753,529.2166666666667,1563,471 +31754,529.2333333333333,1547,472 +31755,529.25,1532,472 +31756,529.2666666666667,1516,473 +31757,529.2833333333333,1500,473 +31758,529.3,1484,473 +31759,529.3166666666666,1467,473 +31760,529.3333333333334,1451,473 +31761,529.35,1435,473 +31762,529.3666666666667,1418,474 +31763,529.3833333333333,1402,474 +31764,529.4,1387,474 +31765,529.4166666666666,1371,474 +31766,529.4333333333333,1356,474 +31767,529.45,1341,473 +31768,529.4666666666667,1327,473 +31769,529.4833333333333,1314,473 +31770,529.5,1301,472 +31771,529.5166666666667,1289,472 +31772,529.5333333333333,1278,472 +31773,529.55,1268,472 +31774,529.5666666666666,1258,472 +31775,529.5833333333334,1250,471 +31776,529.6,1242,471 +31777,529.6166666666667,1235,471 +31778,529.6333333333333,1230,471 +31779,529.65,1225,471 +31780,529.6666666666666,1222,471 +31781,529.6833333333333,1219,471 +31782,529.7,1219,471 +31783,529.7166666666667,1219,471 +31784,529.7333333333333,1219,471 +31785,529.75,1222,471 +31786,529.7666666666667,1225,471 +31787,529.7833333333333,1229,471 +31788,529.8,1235,471 +31789,529.8166666666666,1241,471 +31790,529.8333333333334,1248,472 +31791,529.85,1257,472 +31792,529.8666666666667,1267,472 +31793,529.8833333333333,1276,472 +31794,529.9,1288,473 +31795,529.9166666666666,1300,473 +31796,529.9333333333333,1313,473 +31797,529.95,1326,473 +31798,529.9666666666667,1340,474 +31799,529.9833333333333,1355,474 +31800,530.0,1370,474 +31801,530.0166666666667,1386,474 +31802,530.0333333333333,1402,474 +31803,530.05,1418,474 +31804,530.0666666666666,1434,474 +31805,530.0833333333334,1451,474 +31806,530.1,1467,474 +31807,530.1166666666667,1484,474 +31808,530.1333333333333,1500,474 +31809,530.15,1517,473 +31810,530.1666666666666,1533,473 +31811,530.1833333333333,1548,472 +31812,530.2,1564,472 +31813,530.2166666666667,1578,472 +31814,530.2333333333333,1593,471 +31815,530.25,1606,471 +31816,530.2666666666667,1619,470 +31817,530.2833333333333,1632,469 +31818,530.3,1643,469 +31819,530.3166666666666,1655,468 +31820,530.3333333333334,1665,468 +31821,530.35,1674,467 +31822,530.3666666666667,1682,466 +31823,530.3833333333333,1690,466 +31824,530.4,1696,465 +31825,530.4166666666666,1702,465 +31826,530.4333333333333,1706,464 +31827,530.45,1709,464 +31828,530.4666666666667,1712,464 +31829,530.4833333333333,1713,463 +31830,530.5,1713,463 +31831,530.5166666666667,1713,463 +31832,530.5333333333333,1711,463 +31833,530.55,1708,464 +31834,530.5666666666666,1705,464 +31835,530.5833333333334,1700,464 +31836,530.6,1694,465 +31837,530.6166666666667,1687,465 +31838,530.6333333333333,1680,466 +31839,530.65,1671,466 +31840,530.6666666666666,1662,467 +31841,530.6833333333333,1651,468 +31842,530.7,1640,468 +31843,530.7166666666667,1628,469 +31844,530.7333333333333,1616,469 +31845,530.75,1603,470 +31846,530.7666666666667,1589,470 +31847,530.7833333333333,1575,471 +31848,530.8,1560,471 +31849,530.8166666666666,1545,472 +31850,530.8333333333334,1529,472 +31851,530.85,1514,473 +31852,530.8666666666667,1497,473 +31853,530.8833333333333,1481,473 +31854,530.9,1465,473 +31855,530.9166666666666,1449,473 +31856,530.9333333333333,1432,474 +31857,530.95,1416,474 +31858,530.9666666666667,1400,474 +31859,530.9833333333333,1385,474 +31860,531.0,1369,473 +31861,531.0166666666667,1354,473 +31862,531.0333333333333,1339,473 +31863,531.05,1326,473 +31864,531.0666666666666,1312,473 +31865,531.0833333333334,1300,472 +31866,531.1,1288,472 +31867,531.1166666666667,1277,472 +31868,531.1333333333333,1267,471 +31869,531.15,1257,471 +31870,531.1666666666666,1249,471 +31871,531.1833333333333,1241,471 +31872,531.2,1235,471 +31873,531.2166666666667,1229,471 +31874,531.2333333333333,1225,470 +31875,531.25,1222,470 +31876,531.2666666666667,1220,470 +31877,531.2833333333333,1220,470 +31878,531.3,1220,470 +31879,531.3166666666666,1220,470 +31880,531.3333333333334,1222,470 +31881,531.35,1225,471 +31882,531.3666666666667,1230,471 +31883,531.3833333333333,1236,471 +31884,531.4,1242,471 +31885,531.4166666666666,1250,471 +31886,531.4333333333333,1259,472 +31887,531.45,1268,472 +31888,531.4666666666667,1278,472 +31889,531.4833333333333,1290,473 +31890,531.5,1302,473 +31891,531.5166666666667,1315,473 +31892,531.5333333333333,1328,474 +31893,531.55,1342,474 +31894,531.5666666666666,1357,474 +31895,531.5833333333334,1373,474 +31896,531.6,1388,474 +31897,531.6166666666667,1404,474 +31898,531.6333333333333,1420,474 +31899,531.65,1436,474 +31900,531.6666666666666,1453,474 +31901,531.6833333333333,1470,474 +31902,531.7,1486,474 +31903,531.7166666666667,1502,474 +31904,531.7333333333333,1518,473 +31905,531.75,1534,473 +31906,531.7666666666667,1550,473 +31907,531.7833333333333,1565,472 +31908,531.8,1580,472 +31909,531.8166666666666,1594,471 +31910,531.8333333333334,1608,471 +31911,531.85,1621,470 +31912,531.8666666666667,1633,469 +31913,531.8833333333333,1645,469 +31914,531.9,1655,468 +31915,531.9166666666666,1665,467 +31916,531.9333333333333,1675,467 +31917,531.95,1683,466 +31918,531.9666666666667,1690,465 +31919,531.9833333333333,1697,465 +31920,532.0,1702,464 +31921,532.0166666666667,1706,464 +31922,532.0333333333333,1710,463 +31923,532.05,1712,463 +31924,532.0666666666666,1712,463 +31925,532.0833333333334,1712,463 +31926,532.1,1712,463 +31927,532.1166666666667,1710,463 +31928,532.1333333333333,1708,463 +31929,532.15,1704,464 +31930,532.1666666666666,1699,464 +31931,532.1833333333333,1693,464 +31932,532.2,1686,465 +31933,532.2166666666667,1679,465 +31934,532.2333333333333,1670,466 +31935,532.25,1660,466 +31936,532.2666666666667,1650,467 +31937,532.2833333333333,1639,468 +31938,532.3,1627,469 +31939,532.3166666666666,1614,469 +31940,532.3333333333334,1601,470 +31941,532.35,1587,470 +31942,532.3666666666667,1573,471 +31943,532.3833333333333,1558,471 +31944,532.4,1543,472 +31945,532.4166666666666,1527,472 +31946,532.4333333333333,1512,472 +31947,532.45,1496,473 +31948,532.4666666666667,1479,473 +31949,532.4833333333333,1463,473 +31950,532.5,1447,473 +31951,532.5166666666667,1431,473 +31952,532.5333333333333,1415,473 +31953,532.55,1399,473 +31954,532.5666666666666,1383,473 +31955,532.5833333333334,1368,473 +31956,532.6,1353,473 +31957,532.6166666666667,1338,473 +31958,532.6333333333333,1325,473 +31959,532.65,1311,472 +31960,532.6666666666666,1299,472 +31961,532.6833333333333,1287,472 +31962,532.7,1276,472 +31963,532.7166666666667,1266,472 +31964,532.7333333333333,1257,471 +31965,532.75,1249,471 +31966,532.7666666666667,1241,471 +31967,532.7833333333333,1235,471 +31968,532.8,1230,471 +31969,532.8166666666666,1225,470 +31970,532.8333333333334,1222,470 +31971,532.85,1220,470 +31972,532.8666666666667,1220,470 +31973,532.8833333333333,1220,470 +31974,532.9,1221,470 +31975,532.9166666666666,1223,470 +31976,532.9333333333333,1227,470 +31977,532.95,1232,471 +31978,532.9666666666667,1237,471 +31979,532.9833333333333,1244,471 +31980,533.0,1252,471 +31981,533.0166666666667,1260,471 +31982,533.0333333333333,1270,472 +31983,533.05,1280,472 +31984,533.0666666666666,1292,472 +31985,533.0833333333334,1304,472 +31986,533.1,1317,473 +31987,533.1166666666667,1330,473 +31988,533.1333333333333,1344,473 +31989,533.15,1359,474 +31990,533.1666666666666,1375,474 +31991,533.1833333333333,1391,474 +31992,533.2,1407,474 +31993,533.2166666666667,1422,474 +31994,533.2333333333333,1439,474 +31995,533.25,1455,474 +31996,533.2666666666667,1472,474 +31997,533.2833333333333,1488,474 +31998,533.3,1505,473 +31999,533.3166666666666,1520,473 +32000,533.3333333333334,1536,473 +32001,533.35,1552,472 +32002,533.3666666666667,1567,472 +32003,533.3833333333333,1582,471 +32004,533.4,1596,471 +32005,533.4166666666666,1609,470 +32006,533.4333333333333,1622,470 +32007,533.45,1634,469 +32008,533.4666666666667,1646,468 +32009,533.4833333333333,1656,468 +32010,533.5,1666,467 +32011,533.5166666666667,1675,466 +32012,533.5333333333333,1683,466 +32013,533.55,1691,465 +32014,533.5666666666666,1697,465 +32015,533.5833333333334,1702,464 +32016,533.6,1706,464 +32017,533.6166666666667,1709,463 +32018,533.6333333333333,1711,463 +32019,533.65,1712,463 +32020,533.6666666666666,1712,463 +32021,533.6833333333333,1712,463 +32022,533.7,1710,463 +32023,533.7166666666667,1707,463 +32024,533.7333333333333,1703,464 +32025,533.75,1698,464 +32026,533.7666666666667,1692,464 +32027,533.7833333333333,1685,465 +32028,533.8,1677,465 +32029,533.8166666666666,1668,466 +32030,533.8333333333334,1658,467 +32031,533.85,1648,467 +32032,533.8666666666667,1637,468 +32033,533.8833333333333,1625,469 +32034,533.9,1612,469 +32035,533.9166666666666,1599,470 +32036,533.9333333333333,1585,470 +32037,533.95,1571,471 +32038,533.9666666666667,1556,471 +32039,533.9833333333333,1541,472 +32040,534.0,1525,472 +32041,534.0166666666667,1509,472 +32042,534.0333333333333,1493,473 +32043,534.05,1477,473 +32044,534.0666666666666,1461,473 +32045,534.0833333333334,1445,473 +32046,534.1,1428,473 +32047,534.1166666666667,1413,473 +32048,534.1333333333333,1397,473 +32049,534.15,1381,473 +32050,534.1666666666666,1366,473 +32051,534.1833333333333,1351,473 +32052,534.2,1337,473 +32053,534.2166666666667,1323,473 +32054,534.2333333333333,1310,472 +32055,534.25,1298,472 +32056,534.2666666666667,1286,472 +32057,534.2833333333333,1275,471 +32058,534.3,1265,471 +32059,534.3166666666666,1256,471 +32060,534.3333333333334,1248,471 +32061,534.35,1241,471 +32062,534.3666666666667,1235,470 +32063,534.3833333333333,1230,470 +32064,534.4,1226,470 +32065,534.4166666666666,1223,470 +32066,534.4333333333333,1221,470 +32067,534.45,1221,470 +32068,534.4666666666667,1221,470 +32069,534.4833333333333,1222,470 +32070,534.5,1224,470 +32071,534.5166666666667,1228,470 +32072,534.5333333333333,1233,470 +32073,534.55,1239,470 +32074,534.5666666666666,1246,471 +32075,534.5833333333334,1253,471 +32076,534.6,1262,471 +32077,534.6166666666667,1271,472 +32078,534.6333333333333,1282,472 +32079,534.65,1294,472 +32080,534.6666666666666,1306,472 +32081,534.6833333333333,1319,473 +32082,534.7,1332,473 +32083,534.7166666666667,1346,473 +32084,534.7333333333333,1361,474 +32085,534.75,1377,474 +32086,534.7666666666667,1393,474 +32087,534.7833333333333,1408,474 +32088,534.8,1424,474 +32089,534.8166666666666,1441,474 +32090,534.8333333333334,1457,474 +32091,534.85,1474,474 +32092,534.8666666666667,1490,474 +32093,534.8833333333333,1506,473 +32094,534.9,1522,473 +32095,534.9166666666666,1538,473 +32096,534.9333333333333,1553,472 +32097,534.95,1569,472 +32098,534.9666666666667,1583,471 +32099,534.9833333333333,1597,471 +32100,535.0,1611,470 +32101,535.0166666666667,1623,470 +32102,535.0333333333333,1635,469 +32103,535.05,1647,468 +32104,535.0666666666666,1657,468 +32105,535.0833333333334,1667,467 +32106,535.1,1676,466 +32107,535.1166666666667,1684,466 +32108,535.1333333333333,1691,465 +32109,535.15,1697,465 +32110,535.1666666666666,1702,464 +32111,535.1833333333333,1706,464 +32112,535.2,1709,464 +32113,535.2166666666667,1711,463 +32114,535.2333333333333,1711,463 +32115,535.25,1711,463 +32116,535.2666666666667,1711,463 +32117,535.2833333333333,1709,463 +32118,535.3,1706,464 +32119,535.3166666666666,1702,464 +32120,535.3333333333334,1697,464 +32121,535.35,1691,465 +32122,535.3666666666667,1684,465 +32123,535.3833333333333,1676,466 +32124,535.4,1667,466 +32125,535.4166666666666,1658,467 +32126,535.4333333333333,1647,468 +32127,535.45,1636,468 +32128,535.4666666666667,1624,469 +32129,535.4833333333333,1611,470 +32130,535.5,1598,470 +32131,535.5166666666667,1584,471 +32132,535.5333333333333,1570,471 +32133,535.55,1555,472 +32134,535.5666666666666,1540,472 +32135,535.5833333333334,1524,472 +32136,535.6,1509,473 +32137,535.6166666666667,1493,473 +32138,535.6333333333333,1477,473 +32139,535.65,1460,473 +32140,535.6666666666666,1444,473 +32141,535.6833333333333,1428,473 +32142,535.7,1412,473 +32143,535.7166666666667,1396,473 +32144,535.7333333333333,1381,473 +32145,535.75,1366,473 +32146,535.7666666666667,1351,473 +32147,535.7833333333333,1336,473 +32148,535.8,1323,473 +32149,535.8166666666666,1310,473 +32150,535.8333333333334,1298,472 +32151,535.85,1286,472 +32152,535.8666666666667,1276,472 +32153,535.8833333333333,1266,471 +32154,535.9,1257,471 +32155,535.9166666666666,1249,471 +32156,535.9333333333333,1242,471 +32157,535.95,1236,471 +32158,535.9666666666667,1231,470 +32159,535.9833333333333,1227,470 +32160,536.0,1224,470 +32161,536.0166666666667,1222,470 +32162,536.0333333333333,1222,470 +32163,536.05,1222,470 +32164,536.0666666666666,1224,470 +32165,536.0833333333334,1227,470 +32166,536.1,1231,471 +32167,536.1166666666667,1235,471 +32168,536.1333333333333,1241,471 +32169,536.15,1248,471 +32170,536.1666666666666,1256,471 +32171,536.1833333333333,1265,472 +32172,536.2,1274,472 +32173,536.2166666666667,1285,472 +32174,536.2333333333333,1297,473 +32175,536.25,1309,473 +32176,536.2666666666667,1322,474 +32177,536.2833333333333,1336,474 +32178,536.3,1350,474 +32179,536.3166666666666,1365,474 +32180,536.3333333333334,1380,474 +32181,536.35,1396,474 +32182,536.3666666666667,1412,474 +32183,536.3833333333333,1428,474 +32184,536.4,1444,474 +32185,536.4166666666666,1461,474 +32186,536.4333333333333,1477,474 +32187,536.45,1493,474 +32188,536.4666666666667,1509,474 +32189,536.4833333333333,1525,473 +32190,536.5,1541,473 +32191,536.5166666666667,1556,473 +32192,536.5333333333333,1571,472 +32193,536.55,1585,472 +32194,536.5666666666666,1599,471 +32195,536.5833333333334,1612,470 +32196,536.6,1625,470 +32197,536.6166666666667,1637,469 +32198,536.6333333333333,1648,469 +32199,536.65,1658,468 +32200,536.6666666666666,1668,467 +32201,536.6833333333333,1677,467 +32202,536.7,1684,466 +32203,536.7166666666667,1691,465 +32204,536.7333333333333,1697,465 +32205,536.75,1702,465 +32206,536.7666666666667,1706,464 +32207,536.7833333333333,1709,464 +32208,536.8,1711,464 +32209,536.8166666666666,1711,463 +32210,536.8333333333334,1711,463 +32211,536.85,1710,463 +32212,536.8666666666667,1708,464 +32213,536.8833333333333,1705,464 +32214,536.9,1701,464 +32215,536.9166666666666,1696,464 +32216,536.9333333333333,1690,465 +32217,536.95,1682,465 +32218,536.9666666666667,1674,466 +32219,536.9833333333333,1665,467 +32220,537.0,1656,467 +32221,537.0166666666667,1645,468 +32222,537.0333333333333,1634,468 +32223,537.05,1622,469 +32224,537.0666666666666,1609,470 +32225,537.0833333333334,1596,470 +32226,537.1,1582,471 +32227,537.1166666666667,1568,471 +32228,537.1333333333333,1553,472 +32229,537.15,1538,472 +32230,537.1666666666666,1523,472 +32231,537.1833333333333,1507,473 +32232,537.2,1491,473 +32233,537.2166666666667,1475,473 +32234,537.2333333333333,1459,474 +32235,537.25,1442,474 +32236,537.2666666666667,1426,474 +32237,537.2833333333333,1411,474 +32238,537.3,1395,474 +32239,537.3166666666666,1379,474 +32240,537.3333333333334,1364,474 +32241,537.35,1350,473 +32242,537.3666666666667,1336,473 +32243,537.3833333333333,1322,473 +32244,537.4,1310,473 +32245,537.4166666666666,1298,472 +32246,537.4333333333333,1286,472 +32247,537.45,1275,472 +32248,537.4666666666667,1266,472 +32249,537.4833333333333,1257,472 +32250,537.5,1249,471 +32251,537.5166666666667,1242,471 +32252,537.5333333333333,1236,471 +32253,537.55,1231,470 +32254,537.5666666666666,1227,470 +32255,537.5833333333334,1225,470 +32256,537.6,1223,470 +32257,537.6166666666667,1223,470 +32258,537.6333333333333,1223,470 +32259,537.65,1225,470 +32260,537.6666666666666,1228,470 +32261,537.6833333333333,1232,471 +32262,537.7,1237,471 +32263,537.7166666666667,1243,471 +32264,537.7333333333333,1250,471 +32265,537.75,1258,471 +32266,537.7666666666667,1267,471 +32267,537.7833333333333,1276,472 +32268,537.8,1287,472 +32269,537.8166666666666,1299,473 +32270,537.8333333333334,1311,473 +32271,537.85,1324,473 +32272,537.8666666666667,1337,473 +32273,537.8833333333333,1352,474 +32274,537.9,1366,474 +32275,537.9166666666666,1382,474 +32276,537.9333333333333,1398,474 +32277,537.95,1413,474 +32278,537.9666666666667,1429,474 +32279,537.9833333333333,1445,474 +32280,538.0,1462,474 +32281,538.0166666666667,1478,474 +32282,538.0333333333333,1494,474 +32283,538.05,1510,473 +32284,538.0666666666666,1526,473 +32285,538.0833333333334,1542,473 +32286,538.1,1557,472 +32287,538.1166666666667,1572,472 +32288,538.1333333333333,1586,472 +32289,538.15,1600,471 +32290,538.1666666666666,1613,470 +32291,538.1833333333333,1625,470 +32292,538.2,1637,469 +32293,538.2166666666667,1649,468 +32294,538.2333333333333,1659,468 +32295,538.25,1668,467 +32296,538.2666666666667,1677,466 +32297,538.2833333333333,1685,466 +32298,538.3,1691,465 +32299,538.3166666666666,1697,465 +32300,538.3333333333334,1702,464 +32301,538.35,1706,464 +32302,538.3666666666667,1709,463 +32303,538.3833333333333,1711,463 +32304,538.4,1711,463 +32305,538.4166666666666,1711,463 +32306,538.4333333333333,1710,463 +32307,538.45,1707,463 +32308,538.4666666666667,1704,464 +32309,538.4833333333333,1700,464 +32310,538.5,1695,464 +32311,538.5166666666667,1688,465 +32312,538.5333333333333,1681,465 +32313,538.55,1673,466 +32314,538.5666666666666,1664,466 +32315,538.5833333333334,1654,467 +32316,538.6,1643,468 +32317,538.6166666666667,1632,468 +32318,538.6333333333333,1620,469 +32319,538.65,1607,470 +32320,538.6666666666666,1594,470 +32321,538.6833333333333,1580,471 +32322,538.7,1566,471 +32323,538.7166666666667,1551,471 +32324,538.7333333333333,1535,472 +32325,538.75,1520,472 +32326,538.7666666666667,1504,473 +32327,538.7833333333333,1488,473 +32328,538.8,1472,473 +32329,538.8166666666666,1456,473 +32330,538.8333333333334,1440,473 +32331,538.85,1424,473 +32332,538.8666666666667,1408,473 +32333,538.8833333333333,1393,473 +32334,538.9,1377,473 +32335,538.9166666666666,1362,473 +32336,538.9333333333333,1348,473 +32337,538.95,1334,473 +32338,538.9666666666667,1321,473 +32339,538.9833333333333,1308,472 +32340,539.0,1296,472 +32341,539.0166666666667,1285,472 +32342,539.0333333333333,1274,472 +32343,539.05,1265,471 +32344,539.0666666666666,1256,471 +32345,539.0833333333334,1248,471 +32346,539.1,1242,471 +32347,539.1166666666667,1236,471 +32348,539.1333333333333,1231,470 +32349,539.15,1227,470 +32350,539.1666666666666,1225,470 +32351,539.1833333333333,1224,470 +32352,539.2,1224,470 +32353,539.2166666666667,1224,470 +32354,539.2333333333333,1225,470 +32355,539.25,1228,470 +32356,539.2666666666667,1232,470 +32357,539.2833333333333,1237,471 +32358,539.3,1244,471 +32359,539.3166666666666,1251,471 +32360,539.3333333333334,1259,471 +32361,539.35,1268,471 +32362,539.3666666666667,1277,472 +32363,539.3833333333333,1288,472 +32364,539.4,1300,472 +32365,539.4166666666666,1313,473 +32366,539.4333333333333,1326,473 +32367,539.45,1339,473 +32368,539.4666666666667,1353,473 +32369,539.4833333333333,1368,474 +32370,539.5,1384,474 +32371,539.5166666666667,1400,474 +32372,539.5333333333333,1415,474 +32373,539.55,1431,474 +32374,539.5666666666666,1447,474 +32375,539.5833333333334,1464,474 +32376,539.6,1480,474 +32377,539.6166666666667,1496,473 +32378,539.6333333333333,1512,473 +32379,539.65,1528,473 +32380,539.6666666666666,1543,472 +32381,539.6833333333333,1558,472 +32382,539.7,1573,472 +32383,539.7166666666667,1587,471 +32384,539.7333333333333,1601,471 +32385,539.75,1614,470 +32386,539.7666666666667,1626,469 +32387,539.7833333333333,1638,469 +32388,539.8,1649,468 +32389,539.8166666666666,1659,468 +32390,539.8333333333334,1668,467 +32391,539.85,1677,466 +32392,539.8666666666667,1685,465 +32393,539.8833333333333,1691,465 +32394,539.9,1697,464 +32395,539.9166666666666,1702,464 +32396,539.9333333333333,1705,464 +32397,539.95,1708,463 +32398,539.9666666666667,1710,463 +32399,539.9833333333333,1710,463 +32400,540.0,1710,463 +32401,540.0166666666667,1708,463 +32402,540.0333333333333,1706,463 +32403,540.05,1703,463 +32404,540.0666666666666,1698,464 +32405,540.0833333333334,1693,464 +32406,540.1,1686,465 +32407,540.1166666666667,1679,465 +32408,540.1333333333333,1671,466 +32409,540.15,1662,466 +32410,540.1666666666666,1652,467 +32411,540.1833333333333,1641,468 +32412,540.2,1630,468 +32413,540.2166666666667,1618,469 +32414,540.2333333333333,1605,469 +32415,540.25,1592,470 +32416,540.2666666666667,1578,471 +32417,540.2833333333333,1563,471 +32418,540.3,1548,471 +32419,540.3166666666666,1533,472 +32420,540.3333333333334,1518,472 +32421,540.35,1502,473 +32422,540.3666666666667,1486,473 +32423,540.3833333333333,1470,473 +32424,540.4,1454,473 +32425,540.4166666666666,1438,473 +32426,540.4333333333333,1422,473 +32427,540.45,1407,473 +32428,540.4666666666667,1391,473 +32429,540.4833333333333,1376,473 +32430,540.5,1361,473 +32431,540.5166666666667,1347,473 +32432,540.5333333333333,1333,473 +32433,540.55,1320,473 +32434,540.5666666666666,1307,472 +32435,540.5833333333334,1295,472 +32436,540.6,1284,472 +32437,540.6166666666667,1274,471 +32438,540.6333333333333,1264,471 +32439,540.65,1256,471 +32440,540.6666666666666,1248,471 +32441,540.6833333333333,1241,471 +32442,540.7,1236,470 +32443,540.7166666666667,1231,470 +32444,540.7333333333333,1228,470 +32445,540.75,1225,470 +32446,540.7666666666667,1225,470 +32447,540.7833333333333,1225,470 +32448,540.8,1225,470 +32449,540.8166666666666,1227,470 +32450,540.8333333333334,1230,470 +32451,540.85,1234,470 +32452,540.8666666666667,1239,471 +32453,540.8833333333333,1245,471 +32454,540.9,1252,471 +32455,540.9166666666666,1261,471 +32456,540.9333333333333,1270,472 +32457,540.95,1279,472 +32458,540.9666666666667,1290,472 +32459,540.9833333333333,1302,473 +32460,541.0,1315,473 +32461,541.0166666666667,1328,473 +32462,541.0333333333333,1341,473 +32463,541.05,1355,474 +32464,541.0666666666666,1370,474 +32465,541.0833333333334,1386,474 +32466,541.1,1402,474 +32467,541.1166666666667,1417,474 +32468,541.1333333333333,1433,474 +32469,541.15,1450,474 +32470,541.1666666666666,1466,474 +32471,541.1833333333333,1482,474 +32472,541.2,1498,474 +32473,541.2166666666667,1514,473 +32474,541.2333333333333,1529,473 +32475,541.25,1545,472 +32476,541.2666666666667,1560,472 +32477,541.2833333333333,1574,472 +32478,541.3,1589,471 +32479,541.3166666666666,1602,471 +32480,541.3333333333334,1615,470 +32481,541.35,1627,469 +32482,541.3666666666667,1639,469 +32483,541.3833333333333,1650,468 +32484,541.4,1660,467 +32485,541.4166666666666,1669,467 +32486,541.4333333333333,1677,466 +32487,541.45,1685,466 +32488,541.4666666666667,1691,465 +32489,541.4833333333333,1697,464 +32490,541.5,1701,464 +32491,541.5166666666667,1705,464 +32492,541.5333333333333,1707,463 +32493,541.55,1709,463 +32494,541.5666666666666,1709,463 +32495,541.5833333333334,1709,463 +32496,541.6,1707,463 +32497,541.6166666666667,1705,463 +32498,541.6333333333333,1701,463 +32499,541.65,1697,464 +32500,541.6666666666666,1691,464 +32501,541.6833333333333,1685,465 +32502,541.7,1678,465 +32503,541.7166666666667,1669,466 +32504,541.7333333333333,1660,466 +32505,541.75,1650,467 +32506,541.7666666666667,1639,468 +32507,541.7833333333333,1628,468 +32508,541.8,1616,469 +32509,541.8166666666666,1603,470 +32510,541.8333333333334,1590,470 +32511,541.85,1576,471 +32512,541.8666666666667,1561,471 +32513,541.8833333333333,1547,471 +32514,541.9,1532,472 +32515,541.9166666666666,1516,472 +32516,541.9333333333333,1501,473 +32517,541.95,1484,473 +32518,541.9666666666667,1469,473 +32519,541.9833333333333,1453,473 +32520,542.0,1437,473 +32521,542.0166666666667,1421,474 +32522,542.0333333333333,1406,474 +32523,542.05,1390,474 +32524,542.0666666666666,1375,474 +32525,542.0833333333334,1360,473 +32526,542.1,1346,473 +32527,542.1166666666667,1332,473 +32528,542.1333333333333,1319,473 +32529,542.15,1306,473 +32530,542.1666666666666,1295,472 +32531,542.1833333333333,1284,472 +32532,542.2,1273,472 +32533,542.2166666666667,1264,471 +32534,542.2333333333333,1256,471 +32535,542.25,1249,471 +32536,542.2666666666667,1242,471 +32537,542.2833333333333,1236,471 +32538,542.3,1232,471 +32539,542.3166666666666,1228,470 +32540,542.3333333333334,1226,470 +32541,542.35,1226,470 +32542,542.3666666666667,1226,470 +32543,542.3833333333333,1226,470 +32544,542.4,1228,470 +32545,542.4166666666666,1231,471 +32546,542.4333333333333,1235,471 +32547,542.45,1240,471 +32548,542.4666666666667,1247,471 +32549,542.4833333333333,1254,471 +32550,542.5,1262,472 +32551,542.5166666666667,1272,472 +32552,542.5333333333333,1282,472 +32553,542.55,1292,473 +32554,542.5666666666666,1305,473 +32555,542.5833333333334,1317,473 +32556,542.6,1330,474 +32557,542.6166666666667,1344,474 +32558,542.6333333333333,1358,474 +32559,542.65,1373,474 +32560,542.6666666666666,1388,474 +32561,542.6833333333333,1404,474 +32562,542.7,1420,474 +32563,542.7166666666667,1436,474 +32564,542.7333333333333,1452,474 +32565,542.75,1468,474 +32566,542.7666666666667,1484,474 +32567,542.7833333333333,1500,474 +32568,542.8,1516,473 +32569,542.8166666666666,1532,473 +32570,542.8333333333334,1547,473 +32571,542.85,1562,472 +32572,542.8666666666667,1577,472 +32573,542.8833333333333,1591,471 +32574,542.9,1604,471 +32575,542.9166666666666,1617,470 +32576,542.9333333333333,1629,470 +32577,542.95,1641,469 +32578,542.9666666666667,1651,469 +32579,542.9833333333333,1661,468 +32580,543.0,1670,467 +32581,543.0166666666667,1678,466 +32582,543.0333333333333,1686,466 +32583,543.05,1692,465 +32584,543.0666666666666,1697,465 +32585,543.0833333333334,1702,464 +32586,543.1,1705,464 +32587,543.1166666666667,1708,464 +32588,543.1333333333333,1709,464 +32589,543.15,1709,464 +32590,543.1666666666666,1709,464 +32591,543.1833333333333,1707,464 +32592,543.2,1705,464 +32593,543.2166666666667,1701,464 +32594,543.2333333333333,1696,464 +32595,543.25,1691,465 +32596,543.2666666666667,1684,465 +32597,543.2833333333333,1677,466 +32598,543.3,1668,466 +32599,543.3166666666666,1659,467 +32600,543.3333333333334,1649,468 +32601,543.35,1638,468 +32602,543.3666666666667,1627,469 +32603,543.3833333333333,1615,469 +32604,543.4,1602,470 +32605,543.4166666666666,1589,471 +32606,543.4333333333333,1575,471 +32607,543.45,1560,471 +32608,543.4666666666667,1545,472 +32609,543.4833333333333,1530,472 +32610,543.5,1515,473 +32611,543.5166666666667,1499,473 +32612,543.5333333333333,1483,473 +32613,543.55,1467,473 +32614,543.5666666666666,1451,473 +32615,543.5833333333334,1435,473 +32616,543.6,1419,473 +32617,543.6166666666667,1404,473 +32618,543.6333333333333,1388,473 +32619,543.65,1373,473 +32620,543.6666666666666,1358,473 +32621,543.6833333333333,1344,473 +32622,543.7,1330,473 +32623,543.7166666666667,1317,473 +32624,543.7333333333333,1305,473 +32625,543.75,1293,472 +32626,543.7666666666667,1283,472 +32627,543.7833333333333,1273,471 +32628,543.8,1263,471 +32629,543.8166666666666,1255,471 +32630,543.8333333333334,1248,471 +32631,543.85,1241,471 +32632,543.8666666666667,1236,470 +32633,543.8833333333333,1231,470 +32634,543.9,1228,470 +32635,543.9166666666666,1226,470 +32636,543.9333333333333,1226,470 +32637,543.95,1226,470 +32638,543.9666666666667,1226,470 +32639,543.9833333333333,1228,470 +32640,544.0,1231,470 +32641,544.0166666666667,1236,471 +32642,544.0333333333333,1241,471 +32643,544.05,1248,471 +32644,544.0666666666666,1255,471 +32645,544.0833333333334,1263,472 +32646,544.1,1272,472 +32647,544.1166666666667,1282,472 +32648,544.1333333333333,1294,473 +32649,544.15,1306,473 +32650,544.1666666666666,1318,473 +32651,544.1833333333333,1331,474 +32652,544.2,1345,474 +32653,544.2166666666667,1359,474 +32654,544.2333333333333,1374,474 +32655,544.25,1390,474 +32656,544.2666666666667,1405,474 +32657,544.2833333333333,1421,474 +32658,544.3,1437,474 +32659,544.3166666666666,1453,474 +32660,544.3333333333334,1469,474 +32661,544.35,1485,474 +32662,544.3666666666667,1501,474 +32663,544.3833333333333,1517,473 +32664,544.4,1532,473 +32665,544.4166666666666,1548,473 +32666,544.4333333333333,1563,472 +32667,544.45,1577,472 +32668,544.4666666666667,1591,471 +32669,544.4833333333333,1604,471 +32670,544.5,1617,470 +32671,544.5166666666667,1629,470 +32672,544.5333333333333,1641,469 +32673,544.55,1651,468 +32674,544.5666666666666,1661,468 +32675,544.5833333333334,1670,467 +32676,544.6,1678,466 +32677,544.6166666666667,1685,466 +32678,544.6333333333333,1692,465 +32679,544.65,1697,465 +32680,544.6666666666666,1701,464 +32681,544.6833333333333,1704,464 +32682,544.7,1707,464 +32683,544.7166666666667,1708,464 +32684,544.7333333333333,1708,464 +32685,544.75,1708,464 +32686,544.7666666666667,1706,464 +32687,544.7833333333333,1703,464 +32688,544.8,1699,464 +32689,544.8166666666666,1694,465 +32690,544.8333333333334,1689,465 +32691,544.85,1682,465 +32692,544.8666666666667,1675,466 +32693,544.8833333333333,1666,467 +32694,544.9,1657,467 +32695,544.9166666666666,1647,468 +32696,544.9333333333333,1636,468 +32697,544.95,1624,469 +32698,544.9666666666667,1612,470 +32699,544.9833333333333,1599,470 +32700,545.0,1586,471 +32701,545.0166666666667,1572,471 +32702,545.0333333333333,1557,472 +32703,545.05,1542,472 +32704,545.0666666666666,1527,472 +32705,545.0833333333334,1512,473 +32706,545.1,1496,473 +32707,545.1166666666667,1480,473 +32708,545.1333333333333,1464,473 +32709,545.15,1448,473 +32710,545.1666666666666,1432,473 +32711,545.1833333333333,1417,473 +32712,545.2,1401,474 +32713,545.2166666666667,1386,474 +32714,545.2333333333333,1371,473 +32715,545.25,1356,473 +32716,545.2666666666667,1342,473 +32717,545.2833333333333,1328,473 +32718,545.3,1316,473 +32719,545.3166666666666,1304,473 +32720,545.3333333333334,1292,472 +32721,545.35,1281,472 +32722,545.3666666666667,1271,472 +32723,545.3833333333333,1262,472 +32724,545.4,1254,471 +32725,545.4166666666666,1247,471 +32726,545.4333333333333,1240,471 +32727,545.45,1235,471 +32728,545.4666666666667,1231,471 +32729,545.4833333333333,1228,471 +32730,545.5,1226,470 +32731,545.5166666666667,1226,470 +32732,545.5333333333333,1226,470 +32733,545.55,1226,471 +32734,545.5666666666666,1229,471 +32735,545.5833333333334,1232,471 +32736,545.6,1236,471 +32737,545.6166666666667,1242,471 +32738,545.6333333333333,1249,471 +32739,545.65,1256,471 +32740,545.6666666666666,1265,472 +32741,545.6833333333333,1274,472 +32742,545.7,1284,472 +32743,545.7166666666667,1295,472 +32744,545.7333333333333,1307,473 +32745,545.75,1320,473 +32746,545.7666666666667,1332,473 +32747,545.7833333333333,1346,474 +32748,545.8,1361,474 +32749,545.8166666666666,1376,474 +32750,545.8333333333334,1391,474 +32751,545.85,1407,474 +32752,545.8666666666667,1422,474 +32753,545.8833333333333,1438,474 +32754,545.9,1454,474 +32755,545.9166666666666,1470,474 +32756,545.9333333333333,1486,474 +32757,545.95,1502,473 +32758,545.9666666666667,1518,473 +32759,545.9833333333333,1534,473 +32760,546.0,1549,472 +32761,546.0166666666667,1563,472 +32762,546.0333333333333,1578,472 +32763,546.05,1592,471 +32764,546.0666666666666,1605,470 +32765,546.0833333333334,1618,470 +32766,546.1,1630,469 +32767,546.1166666666667,1641,469 +32768,546.1333333333333,1651,468 +32769,546.15,1661,468 +32770,546.1666666666666,1670,467 +32771,546.1833333333333,1678,466 +32772,546.2,1685,466 +32773,546.2166666666667,1691,465 +32774,546.2333333333333,1696,465 +32775,546.25,1701,464 +32776,546.2666666666667,1704,464 +32777,546.2833333333333,1706,464 +32778,546.3,1706,464 +32779,546.3166666666666,1706,464 +32780,546.3333333333334,1706,464 +32781,546.35,1704,464 +32782,546.3666666666667,1702,464 +32783,546.3833333333333,1698,464 +32784,546.4,1693,464 +32785,546.4166666666666,1687,465 +32786,546.4333333333333,1681,465 +32787,546.45,1673,466 +32788,546.4666666666667,1665,466 +32789,546.4833333333333,1655,467 +32790,546.5,1645,468 +32791,546.5166666666667,1634,468 +32792,546.5333333333333,1622,469 +32793,546.55,1610,469 +32794,546.5666666666666,1597,470 +32795,546.5833333333334,1584,471 +32796,546.6,1569,471 +32797,546.6166666666667,1555,472 +32798,546.6333333333333,1540,472 +32799,546.65,1525,472 +32800,546.6666666666666,1510,473 +32801,546.6833333333333,1494,473 +32802,546.7,1478,473 +32803,546.7166666666667,1462,473 +32804,546.7333333333333,1446,473 +32805,546.75,1430,473 +32806,546.7666666666667,1415,473 +32807,546.7833333333333,1400,473 +32808,546.8,1384,473 +32809,546.8166666666666,1369,473 +32810,546.8333333333334,1355,473 +32811,546.85,1341,473 +32812,546.8666666666667,1327,473 +32813,546.8833333333333,1314,473 +32814,546.9,1302,473 +32815,546.9166666666666,1291,472 +32816,546.9333333333333,1280,472 +32817,546.95,1270,472 +32818,546.9666666666667,1262,471 +32819,546.9833333333333,1253,471 +32820,547.0,1246,471 +32821,547.0166666666667,1240,471 +32822,547.0333333333333,1235,471 +32823,547.05,1231,470 +32824,547.0666666666666,1228,470 +32825,547.0833333333334,1226,470 +32826,547.1,1226,470 +32827,547.1166666666667,1226,470 +32828,547.1333333333333,1227,470 +32829,547.15,1230,471 +32830,547.1666666666666,1233,471 +32831,547.1833333333333,1238,471 +32832,547.2,1243,471 +32833,547.2166666666667,1250,471 +32834,547.2333333333333,1257,472 +32835,547.25,1266,472 +32836,547.2666666666667,1275,472 +32837,547.2833333333333,1286,472 +32838,547.3,1297,473 +32839,547.3166666666666,1309,473 +32840,547.3333333333334,1322,474 +32841,547.35,1335,474 +32842,547.3666666666667,1349,474 +32843,547.3833333333333,1363,474 +32844,547.4,1378,474 +32845,547.4166666666666,1394,474 +32846,547.4333333333333,1409,474 +32847,547.45,1425,474 +32848,547.4666666666667,1441,474 +32849,547.4833333333333,1456,474 +32850,547.5,1473,474 +32851,547.5166666666667,1488,474 +32852,547.5333333333333,1505,473 +32853,547.55,1520,473 +32854,547.5666666666666,1536,473 +32855,547.5833333333334,1551,473 +32856,547.6,1566,472 +32857,547.6166666666667,1580,472 +32858,547.6333333333333,1593,471 +32859,547.65,1606,471 +32860,547.6666666666666,1619,470 +32861,547.6833333333333,1631,470 +32862,547.7,1642,469 +32863,547.7166666666667,1652,468 +32864,547.7333333333333,1662,468 +32865,547.75,1671,467 +32866,547.7666666666667,1679,466 +32867,547.7833333333333,1685,466 +32868,547.8,1691,465 +32869,547.8166666666666,1696,465 +32870,547.8333333333334,1701,464 +32871,547.85,1704,464 +32872,547.8666666666667,1706,464 +32873,547.8833333333333,1706,464 +32874,547.9,1706,464 +32875,547.9166666666666,1706,464 +32876,547.9333333333333,1704,464 +32877,547.95,1701,464 +32878,547.9666666666667,1697,464 +32879,547.9833333333333,1692,465 +32880,548.0,1686,465 +32881,548.0166666666667,1679,466 +32882,548.0333333333333,1671,466 +32883,548.05,1663,467 +32884,548.0666666666666,1653,467 +32885,548.0833333333334,1643,468 +32886,548.1,1632,469 +32887,548.1166666666667,1620,469 +32888,548.1333333333333,1608,470 +32889,548.15,1595,470 +32890,548.1666666666666,1582,471 +32891,548.1833333333333,1568,471 +32892,548.2,1553,472 +32893,548.2166666666667,1538,472 +32894,548.2333333333333,1523,472 +32895,548.25,1508,473 +32896,548.2666666666667,1492,473 +32897,548.2833333333333,1476,473 +32898,548.3,1460,473 +32899,548.3166666666666,1445,474 +32900,548.3333333333334,1429,474 +32901,548.35,1413,474 +32902,548.3666666666667,1398,474 +32903,548.3833333333333,1383,474 +32904,548.4,1368,474 +32905,548.4166666666666,1353,474 +32906,548.4333333333333,1339,473 +32907,548.45,1326,473 +32908,548.4666666666667,1314,473 +32909,548.4833333333333,1301,472 +32910,548.5,1290,472 +32911,548.5166666666667,1279,472 +32912,548.5333333333333,1270,472 +32913,548.55,1261,472 +32914,548.5666666666666,1253,471 +32915,548.5833333333334,1246,471 +32916,548.6,1240,471 +32917,548.6166666666667,1235,471 +32918,548.6333333333333,1231,471 +32919,548.65,1228,471 +32920,548.6666666666666,1227,471 +32921,548.6833333333333,1227,471 +32922,548.7,1227,471 +32923,548.7166666666667,1228,471 +32924,548.7333333333333,1230,471 +32925,548.75,1234,471 +32926,548.7666666666667,1239,471 +32927,548.7833333333333,1244,471 +32928,548.8,1251,471 +32929,548.8166666666666,1259,472 +32930,548.8333333333334,1267,472 +32931,548.85,1277,472 +32932,548.8666666666667,1287,472 +32933,548.8833333333333,1298,473 +32934,548.9,1310,473 +32935,548.9166666666666,1323,473 +32936,548.9333333333333,1336,474 +32937,548.95,1350,474 +32938,548.9666666666667,1365,474 +32939,548.9833333333333,1380,474 +32940,549.0,1395,474 +32941,549.0166666666667,1411,474 +32942,549.0333333333333,1426,474 +32943,549.05,1442,474 +32944,549.0666666666666,1458,474 +32945,549.0833333333334,1474,474 +32946,549.1,1490,474 +32947,549.1166666666667,1506,474 +32948,549.1333333333333,1522,473 +32949,549.15,1537,473 +32950,549.1666666666666,1552,473 +32951,549.1833333333333,1566,472 +32952,549.2,1581,472 +32953,549.2166666666667,1594,471 +32954,549.2333333333333,1607,471 +32955,549.25,1620,470 +32956,549.2666666666667,1631,470 +32957,549.2833333333333,1642,469 +32958,549.3,1653,468 +32959,549.3166666666666,1662,468 +32960,549.3333333333334,1671,467 +32961,549.35,1678,467 +32962,549.3666666666667,1685,466 +32963,549.3833333333333,1691,465 +32964,549.4,1696,465 +32965,549.4166666666666,1700,464 +32966,549.4333333333333,1703,464 +32967,549.45,1705,464 +32968,549.4666666666667,1705,464 +32969,549.4833333333333,1705,464 +32970,549.5,1704,464 +32971,549.5166666666667,1702,464 +32972,549.5333333333333,1699,464 +32973,549.55,1695,464 +32974,549.5666666666666,1690,465 +32975,549.5833333333334,1684,465 +32976,549.6,1677,466 +32977,549.6166666666667,1669,466 +32978,549.6333333333333,1661,467 +32979,549.65,1651,468 +32980,549.6666666666666,1641,468 +32981,549.6833333333333,1630,469 +32982,549.7,1619,469 +32983,549.7166666666667,1606,470 +32984,549.7333333333333,1593,470 +32985,549.75,1580,471 +32986,549.7666666666667,1566,471 +32987,549.7833333333333,1551,472 +32988,549.8,1536,472 +32989,549.8166666666666,1521,472 +32990,549.8333333333334,1506,473 +32991,549.85,1490,473 +32992,549.8666666666667,1474,473 +32993,549.8833333333333,1459,474 +32994,549.9,1443,474 +32995,549.9166666666666,1427,474 +32996,549.9333333333333,1411,474 +32997,549.95,1396,474 +32998,549.9666666666667,1381,474 +32999,549.9833333333333,1366,474 +33000,550.0,1352,473 +33001,550.0166666666667,1338,473 +33002,550.0333333333333,1325,473 +33003,550.05,1313,473 +33004,550.0666666666666,1300,473 +33005,550.0833333333334,1289,472 +33006,550.1,1279,472 +33007,550.1166666666667,1269,472 +33008,550.1333333333333,1261,472 +33009,550.15,1253,472 +33010,550.1666666666666,1246,472 +33011,550.1833333333333,1240,471 +33012,550.2,1236,471 +33013,550.2166666666667,1232,471 +33014,550.2333333333333,1229,471 +33015,550.25,1227,471 +33016,550.2666666666667,1227,471 +33017,550.2833333333333,1227,471 +33018,550.3,1229,471 +33019,550.3166666666666,1232,471 +33020,550.3333333333334,1236,471 +33021,550.35,1240,471 +33022,550.3666666666667,1246,471 +33023,550.3833333333333,1253,472 +33024,550.4,1261,472 +33025,550.4166666666666,1270,472 +33026,550.4333333333333,1279,472 +33027,550.45,1289,473 +33028,550.4666666666667,1301,473 +33029,550.4833333333333,1313,473 +33030,550.5,1326,474 +33031,550.5166666666667,1339,474 +33032,550.5333333333333,1353,474 +33033,550.55,1367,474 +33034,550.5666666666666,1382,474 +33035,550.5833333333334,1398,474 +33036,550.6,1413,474 +33037,550.6166666666667,1429,474 +33038,550.6333333333333,1445,474 +33039,550.65,1461,474 +33040,550.6666666666666,1477,474 +33041,550.6833333333333,1493,474 +33042,550.7,1508,473 +33043,550.7166666666667,1524,473 +33044,550.7333333333333,1539,473 +33045,550.75,1554,472 +33046,550.7666666666667,1568,472 +33047,550.7833333333333,1582,472 +33048,550.8,1596,471 +33049,550.8166666666666,1609,471 +33050,550.8333333333334,1621,470 +33051,550.85,1633,469 +33052,550.8666666666667,1644,469 +33053,550.8833333333333,1654,468 +33054,550.9,1663,468 +33055,550.9166666666666,1671,467 +33056,550.9333333333333,1679,466 +33057,550.95,1686,466 +33058,550.9666666666667,1691,465 +33059,550.9833333333333,1696,465 +33060,551.0,1700,465 +33061,551.0166666666667,1703,464 +33062,551.0333333333333,1705,464 +33063,551.05,1705,464 +33064,551.0666666666666,1705,464 +33065,551.0833333333334,1704,464 +33066,551.1,1702,464 +33067,551.1166666666667,1699,464 +33068,551.1333333333333,1695,465 +33069,551.15,1689,465 +33070,551.1666666666666,1683,465 +33071,551.1833333333333,1676,466 +33072,551.2,1668,467 +33073,551.2166666666667,1659,467 +33074,551.2333333333333,1650,468 +33075,551.25,1640,468 +33076,551.2666666666667,1629,469 +33077,551.2833333333333,1617,469 +33078,551.3,1604,470 +33079,551.3166666666666,1592,471 +33080,551.3333333333334,1578,471 +33081,551.35,1564,472 +33082,551.3666666666667,1549,472 +33083,551.3833333333333,1535,472 +33084,551.4,1519,473 +33085,551.4166666666666,1504,473 +33086,551.4333333333333,1488,473 +33087,551.45,1473,473 +33088,551.4666666666667,1457,474 +33089,551.4833333333333,1441,474 +33090,551.5,1425,474 +33091,551.5166666666667,1410,474 +33092,551.5333333333333,1395,474 +33093,551.55,1380,474 +33094,551.5666666666666,1365,474 +33095,551.5833333333334,1351,474 +33096,551.6,1337,473 +33097,551.6166666666667,1324,473 +33098,551.6333333333333,1312,473 +33099,551.65,1300,473 +33100,551.6666666666666,1289,472 +33101,551.6833333333333,1279,472 +33102,551.7,1269,472 +33103,551.7166666666667,1261,472 +33104,551.7333333333333,1253,472 +33105,551.75,1247,472 +33106,551.7666666666667,1241,471 +33107,551.7833333333333,1236,471 +33108,551.8,1233,471 +33109,551.8166666666666,1230,471 +33110,551.8333333333334,1229,471 +33111,551.85,1229,471 +33112,551.8666666666667,1229,471 +33113,551.8833333333333,1231,471 +33114,551.9,1233,471 +33115,551.9166666666666,1237,471 +33116,551.9333333333333,1242,471 +33117,551.95,1248,472 +33118,551.9666666666667,1255,472 +33119,551.9833333333333,1263,472 +33120,552.0,1272,472 +33121,552.0166666666667,1281,472 +33122,552.0333333333333,1292,473 +33123,552.05,1303,473 +33124,552.0666666666666,1315,473 +33125,552.0833333333334,1328,474 +33126,552.1,1342,474 +33127,552.1166666666667,1355,474 +33128,552.1333333333333,1370,474 +33129,552.15,1385,474 +33130,552.1666666666666,1400,474 +33131,552.1833333333333,1415,474 +33132,552.2,1431,474 +33133,552.2166666666667,1447,474 +33134,552.2333333333333,1463,474 +33135,552.25,1479,474 +33136,552.2666666666667,1495,474 +33137,552.2833333333333,1510,473 +33138,552.3,1526,473 +33139,552.3166666666666,1541,473 +33140,552.3333333333334,1556,472 +33141,552.35,1570,472 +33142,552.3666666666667,1584,472 +33143,552.3833333333333,1598,471 +33144,552.4,1610,470 +33145,552.4166666666666,1623,470 +33146,552.4333333333333,1634,469 +33147,552.45,1645,469 +33148,552.4666666666667,1655,468 +33149,552.4833333333333,1664,468 +33150,552.5,1672,467 +33151,552.5166666666667,1680,466 +33152,552.5333333333333,1686,466 +33153,552.55,1692,465 +33154,552.5666666666666,1696,465 +33155,552.5833333333334,1700,464 +33156,552.6,1703,464 +33157,552.6166666666667,1704,464 +33158,552.6333333333333,1704,464 +33159,552.65,1704,464 +33160,552.6666666666666,1703,464 +33161,552.6833333333333,1701,464 +33162,552.7,1698,464 +33163,552.7166666666667,1693,465 +33164,552.7333333333333,1688,465 +33165,552.75,1682,466 +33166,552.7666666666667,1675,466 +33167,552.7833333333333,1667,466 +33168,552.8,1658,467 +33169,552.8166666666666,1649,468 +33170,552.8333333333334,1638,468 +33171,552.85,1627,469 +33172,552.8666666666667,1615,469 +33173,552.8833333333333,1603,470 +33174,552.9,1590,470 +33175,552.9166666666666,1576,471 +33176,552.9333333333333,1562,471 +33177,552.95,1548,472 +33178,552.9666666666667,1533,472 +33179,552.9833333333333,1518,473 +33180,553.0,1503,473 +33181,553.0166666666667,1487,473 +33182,553.0333333333333,1472,473 +33183,553.05,1456,474 +33184,553.0666666666666,1440,474 +33185,553.0833333333334,1424,474 +33186,553.1,1409,474 +33187,553.1166666666667,1394,474 +33188,553.1333333333333,1379,474 +33189,553.15,1364,474 +33190,553.1666666666666,1350,474 +33191,553.1833333333333,1337,474 +33192,553.2,1324,473 +33193,553.2166666666667,1312,473 +33194,553.2333333333333,1300,472 +33195,553.25,1289,472 +33196,553.2666666666667,1279,472 +33197,553.2833333333333,1269,472 +33198,553.3,1261,471 +33199,553.3166666666666,1253,471 +33200,553.3333333333334,1247,471 +33201,553.35,1241,471 +33202,553.3666666666667,1237,471 +33203,553.3833333333333,1233,471 +33204,553.4,1231,471 +33205,553.4166666666666,1230,471 +33206,553.4333333333333,1230,471 +33207,553.45,1230,471 +33208,553.4666666666667,1232,471 +33209,553.4833333333333,1235,471 +33210,553.5,1239,471 +33211,553.5166666666667,1244,471 +33212,553.5333333333333,1250,471 +33213,553.55,1257,472 +33214,553.5666666666666,1265,472 +33215,553.5833333333334,1274,472 +33216,553.6,1283,472 +33217,553.6166666666667,1294,473 +33218,553.6333333333333,1306,473 +33219,553.65,1318,473 +33220,553.6666666666666,1330,474 +33221,553.6833333333333,1344,474 +33222,553.7,1358,474 +33223,553.7166666666667,1372,474 +33224,553.7333333333333,1387,474 +33225,553.75,1403,474 +33226,553.7666666666667,1418,474 +33227,553.7833333333333,1433,474 +33228,553.8,1449,474 +33229,553.8166666666666,1465,474 +33230,553.8333333333334,1481,474 +33231,553.85,1497,473 +33232,553.8666666666667,1512,473 +33233,553.8833333333333,1528,473 +33234,553.9,1543,473 +33235,553.9166666666666,1557,472 +33236,553.9333333333333,1572,472 +33237,553.95,1586,472 +33238,553.9666666666667,1599,471 +33239,553.9833333333333,1611,470 +33240,554.0,1623,470 +33241,554.0166666666667,1635,470 +33242,554.0333333333333,1646,469 +33243,554.05,1656,468 +33244,554.0666666666666,1664,468 +33245,554.0833333333334,1673,467 +33246,554.1,1680,466 +33247,554.1166666666667,1686,466 +33248,554.1333333333333,1692,465 +33249,554.15,1696,465 +33250,554.1666666666666,1700,465 +33251,554.1833333333333,1702,465 +33252,554.2,1704,464 +33253,554.2166666666667,1704,464 +33254,554.2333333333333,1704,464 +33255,554.25,1702,464 +33256,554.2666666666667,1700,464 +33257,554.2833333333333,1697,465 +33258,554.3,1692,465 +33259,554.3166666666666,1687,465 +33260,554.3333333333334,1681,466 +33261,554.35,1674,466 +33262,554.3666666666667,1665,467 +33263,554.3833333333333,1657,468 +33264,554.4,1647,468 +33265,554.4166666666666,1637,469 +33266,554.4333333333333,1625,469 +33267,554.45,1613,470 +33268,554.4666666666667,1601,470 +33269,554.4833333333333,1588,471 +33270,554.5,1574,471 +33271,554.5166666666667,1560,472 +33272,554.5333333333333,1545,472 +33273,554.55,1531,472 +33274,554.5666666666666,1516,473 +33275,554.5833333333334,1500,473 +33276,554.6,1485,473 +33277,554.6166666666667,1469,473 +33278,554.6333333333333,1453,474 +33279,554.65,1438,474 +33280,554.6666666666666,1422,474 +33281,554.6833333333333,1407,474 +33282,554.7,1392,474 +33283,554.7166666666667,1377,474 +33284,554.7333333333333,1362,474 +33285,554.75,1348,474 +33286,554.7666666666667,1335,473 +33287,554.7833333333333,1322,473 +33288,554.8,1310,473 +33289,554.8166666666666,1298,473 +33290,554.8333333333334,1288,472 +33291,554.85,1277,472 +33292,554.8666666666667,1268,472 +33293,554.8833333333333,1260,472 +33294,554.9,1253,471 +33295,554.9166666666666,1246,471 +33296,554.9333333333333,1241,471 +33297,554.95,1236,471 +33298,554.9666666666667,1233,471 +33299,554.9833333333333,1231,471 +33300,555.0,1230,471 +33301,555.0166666666667,1230,471 +33302,555.0333333333333,1230,471 +33303,555.05,1232,471 +33304,555.0666666666666,1235,471 +33305,555.0833333333334,1239,471 +33306,555.1,1245,471 +33307,555.1166666666667,1251,471 +33308,555.1333333333333,1258,471 +33309,555.15,1266,472 +33310,555.1666666666666,1275,472 +33311,555.1833333333333,1285,472 +33312,555.2,1295,473 +33313,555.2166666666667,1307,473 +33314,555.2333333333333,1319,473 +33315,555.25,1332,474 +33316,555.2666666666667,1345,474 +33317,555.2833333333333,1359,474 +33318,555.3,1374,474 +33319,555.3166666666666,1389,474 +33320,555.3333333333334,1404,474 +33321,555.35,1419,474 +33322,555.3666666666667,1435,474 +33323,555.3833333333333,1451,474 +33324,555.4,1467,474 +33325,555.4166666666666,1482,474 +33326,555.4333333333333,1498,473 +33327,555.45,1514,473 +33328,555.4666666666667,1529,473 +33329,555.4833333333333,1544,472 +33330,555.5,1559,472 +33331,555.5166666666667,1573,472 +33332,555.5333333333333,1586,471 +33333,555.55,1600,471 +33334,555.5666666666666,1612,470 +33335,555.5833333333334,1624,470 +33336,555.6,1635,469 +33337,555.6166666666667,1646,468 +33338,555.6333333333333,1656,468 +33339,555.65,1665,467 +33340,555.6666666666666,1673,467 +33341,555.6833333333333,1680,466 +33342,555.7,1686,466 +33343,555.7166666666667,1692,465 +33344,555.7333333333333,1696,465 +33345,555.75,1699,464 +33346,555.7666666666667,1702,464 +33347,555.7833333333333,1703,464 +33348,555.8,1703,464 +33349,555.8166666666666,1703,464 +33350,555.8333333333334,1702,464 +33351,555.85,1699,464 +33352,555.8666666666667,1695,464 +33353,555.8833333333333,1691,465 +33354,555.9,1686,465 +33355,555.9166666666666,1679,466 +33356,555.9333333333333,1672,466 +33357,555.95,1664,467 +33358,555.9666666666667,1655,467 +33359,555.9833333333333,1645,468 +33360,556.0,1634,468 +33361,556.0166666666667,1623,469 +33362,556.0333333333333,1611,470 +33363,556.05,1599,470 +33364,556.0666666666666,1586,470 +33365,556.0833333333334,1572,471 +33366,556.1,1558,471 +33367,556.1166666666667,1543,472 +33368,556.1333333333333,1528,472 +33369,556.15,1513,472 +33370,556.1666666666666,1498,473 +33371,556.1833333333333,1482,473 +33372,556.2,1467,473 +33373,556.2166666666667,1451,473 +33374,556.2333333333333,1436,474 +33375,556.25,1420,474 +33376,556.2666666666667,1405,474 +33377,556.2833333333333,1390,474 +33378,556.3,1375,474 +33379,556.3166666666666,1361,473 +33380,556.3333333333334,1346,473 +33381,556.35,1333,473 +33382,556.3666666666667,1321,473 +33383,556.3833333333333,1309,472 +33384,556.4,1297,472 +33385,556.4166666666666,1286,472 +33386,556.4333333333333,1276,472 +33387,556.45,1268,472 +33388,556.4666666666667,1259,472 +33389,556.4833333333333,1252,471 +33390,556.5,1246,471 +33391,556.5166666666667,1240,471 +33392,556.5333333333333,1236,471 +33393,556.55,1233,471 +33394,556.5666666666666,1231,471 +33395,556.5833333333334,1230,471 +33396,556.6,1230,471 +33397,556.6166666666667,1230,471 +33398,556.6333333333333,1233,471 +33399,556.65,1236,471 +33400,556.6666666666666,1240,471 +33401,556.6833333333333,1245,471 +33402,556.7,1251,471 +33403,556.7166666666667,1259,472 +33404,556.7333333333333,1267,472 +33405,556.75,1276,472 +33406,556.7666666666667,1286,472 +33407,556.7833333333333,1296,473 +33408,556.8,1308,473 +33409,556.8166666666666,1320,474 +33410,556.8333333333334,1333,474 +33411,556.85,1346,474 +33412,556.8666666666667,1360,474 +33413,556.8833333333333,1375,474 +33414,556.9,1390,474 +33415,556.9166666666666,1405,474 +33416,556.9333333333333,1420,474 +33417,556.95,1436,474 +33418,556.9666666666667,1452,474 +33419,556.9833333333333,1468,474 +33420,557.0,1483,474 +33421,557.0166666666667,1499,474 +33422,557.0333333333333,1514,474 +33423,557.05,1529,473 +33424,557.0666666666666,1544,473 +33425,557.0833333333334,1559,473 +33426,557.1,1573,472 +33427,557.1166666666667,1587,472 +33428,557.1333333333333,1600,472 +33429,557.15,1612,471 +33430,557.1666666666666,1624,470 +33431,557.1833333333333,1635,470 +33432,557.2,1645,469 +33433,557.2166666666667,1655,469 +33434,557.2333333333333,1664,468 +33435,557.25,1672,468 +33436,557.2666666666667,1679,467 +33437,557.2833333333333,1685,467 +33438,557.3,1690,466 +33439,557.3166666666666,1694,466 +33440,557.3333333333334,1697,465 +33441,557.35,1700,465 +33442,557.3666666666667,1701,465 +33443,557.3833333333333,1701,465 +33444,557.4,1701,465 +33445,557.4166666666666,1699,465 +33446,557.4333333333333,1697,465 +33447,557.45,1693,465 +33448,557.4666666666667,1688,465 +33449,557.4833333333333,1683,466 +33450,557.5,1676,466 +33451,557.5166666666667,1669,467 +33452,557.5333333333333,1661,467 +33453,557.55,1652,468 +33454,557.5666666666666,1642,468 +33455,557.5833333333334,1632,469 +33456,557.6,1620,469 +33457,557.6166666666667,1608,470 +33458,557.6333333333333,1596,470 +33459,557.65,1583,471 +33460,557.6666666666666,1569,471 +33461,557.6833333333333,1555,472 +33462,557.7,1540,472 +33463,557.7166666666667,1526,472 +33464,557.7333333333333,1510,473 +33465,557.75,1495,473 +33466,557.7666666666667,1480,473 +33467,557.7833333333333,1464,473 +33468,557.8,1449,473 +33469,557.8166666666666,1433,473 +33470,557.8333333333334,1418,473 +33471,557.85,1403,473 +33472,557.8666666666667,1388,473 +33473,557.8833333333333,1373,473 +33474,557.9,1359,473 +33475,557.9166666666666,1345,473 +33476,557.9333333333333,1332,473 +33477,557.95,1319,473 +33478,557.9666666666667,1307,473 +33479,557.9833333333333,1296,472 +33480,558.0,1285,472 +33481,558.0166666666667,1275,471 +33482,558.0333333333333,1267,471 +33483,558.05,1259,471 +33484,558.0666666666666,1252,471 +33485,558.0833333333334,1246,471 +33486,558.1,1241,470 +33487,558.1166666666667,1237,470 +33488,558.1333333333333,1234,470 +33489,558.15,1232,470 +33490,558.1666666666666,1232,470 +33491,558.1833333333333,1232,470 +33492,558.2,1232,470 +33493,558.2166666666667,1234,470 +33494,558.2333333333333,1237,470 +33495,558.25,1242,470 +33496,558.2666666666667,1247,471 +33497,558.2833333333333,1253,471 +33498,558.3,1261,471 +33499,558.3166666666666,1269,471 +33500,558.3333333333334,1278,471 +33501,558.35,1288,472 +33502,558.3666666666667,1299,472 +33503,558.3833333333333,1311,473 +33504,558.4,1323,473 +33505,558.4166666666666,1335,473 +33506,558.4333333333333,1349,473 +33507,558.45,1363,473 +33508,558.4666666666667,1378,474 +33509,558.4833333333333,1393,474 +33510,558.5,1408,474 +33511,558.5166666666667,1423,474 +33512,558.5333333333333,1439,474 +33513,558.55,1455,474 +33514,558.5666666666666,1470,474 +33515,558.5833333333334,1486,473 +33516,558.6,1502,473 +33517,558.6166666666667,1517,473 +33518,558.6333333333333,1532,472 +33519,558.65,1547,472 +33520,558.6666666666666,1562,472 +33521,558.6833333333333,1576,471 +33522,558.7,1589,471 +33523,558.7166666666667,1602,470 +33524,558.7333333333333,1614,470 +33525,558.75,1626,469 +33526,558.7666666666667,1637,469 +33527,558.7833333333333,1647,468 +33528,558.8,1657,468 +33529,558.8166666666666,1665,467 +33530,558.8333333333334,1673,466 +33531,558.85,1680,466 +33532,558.8666666666667,1686,465 +33533,558.8833333333333,1691,465 +33534,558.9,1695,464 +33535,558.9166666666666,1699,464 +33536,558.9333333333333,1700,464 +33537,558.95,1701,464 +33538,558.9666666666667,1701,464 +33539,558.9833333333333,1701,464 +33540,559.0,1699,464 +33541,559.0166666666667,1696,464 +33542,559.0333333333333,1692,464 +33543,559.05,1688,464 +33544,559.0666666666666,1682,465 +33545,559.0833333333334,1676,465 +33546,559.1,1668,466 +33547,559.1166666666667,1660,466 +33548,559.1333333333333,1651,467 +33549,559.15,1641,467 +33550,559.1666666666666,1630,468 +33551,559.1833333333333,1619,469 +33552,559.2,1607,469 +33553,559.2166666666667,1594,470 +33554,559.2333333333333,1581,470 +33555,559.25,1567,471 +33556,559.2666666666667,1553,471 +33557,559.2833333333333,1539,472 +33558,559.3,1524,472 +33559,559.3166666666666,1508,472 +33560,559.3333333333334,1493,472 +33561,559.35,1478,473 +33562,559.3666666666667,1462,473 +33563,559.3833333333333,1447,473 +33564,559.4,1431,473 +33565,559.4166666666666,1416,473 +33566,559.4333333333333,1401,473 +33567,559.45,1386,473 +33568,559.4666666666667,1371,473 +33569,559.4833333333333,1357,473 +33570,559.5,1343,472 +33571,559.5166666666667,1330,472 +33572,559.5333333333333,1317,472 +33573,559.55,1306,472 +33574,559.5666666666666,1295,471 +33575,559.5833333333334,1284,471 +33576,559.6,1275,471 +33577,559.6166666666667,1266,471 +33578,559.6333333333333,1258,470 +33579,559.65,1251,470 +33580,559.6666666666666,1245,470 +33581,559.6833333333333,1240,470 +33582,559.7,1236,470 +33583,559.7166666666667,1234,470 +33584,559.7333333333333,1232,470 +33585,559.75,1232,470 +33586,559.7666666666667,1232,470 +33587,559.7833333333333,1233,470 +33588,559.8,1235,470 +33589,559.8166666666666,1239,470 +33590,559.8333333333334,1243,470 +33591,559.85,1249,470 +33592,559.8666666666667,1255,470 +33593,559.8833333333333,1263,471 +33594,559.9,1271,471 +33595,559.9166666666666,1280,471 +33596,559.9333333333333,1290,471 +33597,559.95,1301,472 +33598,559.9666666666667,1313,472 +33599,559.9833333333333,1325,472 +33600,560.0,1338,473 +33601,560.0166666666667,1351,473 +33602,560.0333333333333,1365,473 +33603,560.05,1380,473 +33604,560.0666666666666,1395,473 +33605,560.0833333333334,1410,473 +33606,560.1,1425,473 +33607,560.1166666666667,1441,473 +33608,560.1333333333333,1457,473 +33609,560.15,1472,473 +33610,560.1666666666666,1488,473 +33611,560.1833333333333,1503,473 +33612,560.2,1519,472 +33613,560.2166666666667,1534,472 +33614,560.2333333333333,1548,472 +33615,560.25,1563,471 +33616,560.2666666666667,1577,471 +33617,560.2833333333333,1590,470 +33618,560.3,1603,470 +33619,560.3166666666666,1615,469 +33620,560.3333333333334,1627,469 +33621,560.35,1637,469 +33622,560.3666666666667,1648,468 +33623,560.3833333333333,1657,467 +33624,560.4,1666,467 +33625,560.4166666666666,1673,466 +33626,560.4333333333333,1680,465 +33627,560.45,1686,465 +33628,560.4666666666667,1691,465 +33629,560.4833333333333,1695,464 +33630,560.5,1698,464 +33631,560.5166666666667,1700,464 +33632,560.5333333333333,1700,464 +33633,560.55,1700,464 +33634,560.5666666666666,1700,464 +33635,560.5833333333334,1698,464 +33636,560.6,1695,464 +33637,560.6166666666667,1691,464 +33638,560.6333333333333,1687,465 +33639,560.65,1681,465 +33640,560.6666666666666,1674,465 +33641,560.6833333333333,1667,466 +33642,560.7,1659,467 +33643,560.7166666666667,1649,467 +33644,560.7333333333333,1640,468 +33645,560.75,1629,469 +33646,560.7666666666667,1617,469 +33647,560.7833333333333,1605,470 +33648,560.8,1593,470 +33649,560.8166666666666,1579,471 +33650,560.8333333333334,1566,471 +33651,560.85,1552,472 +33652,560.8666666666667,1538,472 +33653,560.8833333333333,1523,472 +33654,560.9,1508,473 +33655,560.9166666666666,1493,473 +33656,560.9333333333333,1477,473 +33657,560.95,1462,473 +33658,560.9666666666667,1446,473 +33659,560.9833333333333,1431,474 +33660,561.0,1416,474 +33661,561.0166666666667,1401,474 +33662,561.0333333333333,1386,474 +33663,561.05,1371,473 +33664,561.0666666666666,1357,473 +33665,561.0833333333334,1343,473 +33666,561.1,1330,473 +33667,561.1166666666667,1318,473 +33668,561.1333333333333,1307,473 +33669,561.15,1295,472 +33670,561.1666666666666,1285,472 +33671,561.1833333333333,1275,472 +33672,561.2,1267,472 +33673,561.2166666666667,1259,471 +33674,561.2333333333333,1252,471 +33675,561.25,1247,471 +33676,561.2666666666667,1242,471 +33677,561.2833333333333,1238,471 +33678,561.3,1235,471 +33679,561.3166666666666,1233,471 +33680,561.3333333333334,1233,471 +33681,561.35,1233,471 +33682,561.3666666666667,1234,471 +33683,561.3833333333333,1237,471 +33684,561.4,1240,471 +33685,561.4166666666666,1245,471 +33686,561.4333333333333,1250,471 +33687,561.45,1257,471 +33688,561.4666666666667,1264,472 +33689,561.4833333333333,1273,472 +33690,561.5,1282,472 +33691,561.5166666666667,1292,472 +33692,561.5333333333333,1303,473 +33693,561.55,1315,473 +33694,561.5666666666666,1327,473 +33695,561.5833333333334,1340,474 +33696,561.6,1354,474 +33697,561.6166666666667,1368,474 +33698,561.6333333333333,1382,474 +33699,561.65,1397,474 +33700,561.6666666666666,1412,474 +33701,561.6833333333333,1427,474 +33702,561.7,1443,474 +33703,561.7166666666667,1459,474 +33704,561.7333333333333,1475,474 +33705,561.75,1490,474 +33706,561.7666666666667,1505,473 +33707,561.7833333333333,1520,473 +33708,561.8,1536,473 +33709,561.8166666666666,1550,473 +33710,561.8333333333334,1564,472 +33711,561.85,1578,472 +33712,561.8666666666667,1592,471 +33713,561.8833333333333,1604,471 +33714,561.9,1616,470 +33715,561.9166666666666,1628,470 +33716,561.9333333333333,1639,469 +33717,561.95,1649,469 +33718,561.9666666666667,1658,468 +33719,561.9833333333333,1666,467 +33720,562.0,1674,467 +33721,562.0166666666667,1680,466 +33722,562.0333333333333,1686,466 +33723,562.05,1691,465 +33724,562.0666666666666,1695,465 +33725,562.0833333333334,1698,465 +33726,562.1,1699,464 +33727,562.1166666666667,1699,464 +33728,562.1333333333333,1699,464 +33729,562.15,1699,464 +33730,562.1666666666666,1697,464 +33731,562.1833333333333,1694,464 +33732,562.2,1690,465 +33733,562.2166666666667,1685,465 +33734,562.2333333333333,1680,466 +33735,562.25,1673,466 +33736,562.2666666666667,1665,467 +33737,562.2833333333333,1657,467 +33738,562.3,1648,468 +33739,562.3166666666666,1638,468 +33740,562.3333333333334,1627,469 +33741,562.35,1615,470 +33742,562.3666666666667,1603,470 +33743,562.3833333333333,1591,470 +33744,562.4,1578,471 +33745,562.4166666666666,1564,471 +33746,562.4333333333333,1550,472 +33747,562.45,1535,472 +33748,562.4666666666667,1521,473 +33749,562.4833333333333,1505,473 +33750,562.5,1490,473 +33751,562.5166666666667,1475,473 +33752,562.5333333333333,1459,473 +33753,562.55,1444,474 +33754,562.5666666666666,1428,474 +33755,562.5833333333334,1413,473 +33756,562.6,1398,473 +33757,562.6166666666667,1383,473 +33758,562.6333333333333,1369,473 +33759,562.65,1355,473 +33760,562.6666666666666,1341,473 +33761,562.6833333333333,1328,473 +33762,562.7,1316,473 +33763,562.7166666666667,1305,473 +33764,562.7333333333333,1293,472 +33765,562.75,1283,472 +33766,562.7666666666667,1274,472 +33767,562.7833333333333,1266,472 +33768,562.8,1258,472 +33769,562.8166666666666,1251,471 +33770,562.8333333333334,1246,471 +33771,562.85,1241,471 +33772,562.8666666666667,1237,471 +33773,562.8833333333333,1234,471 +33774,562.9,1233,471 +33775,562.9166666666666,1233,471 +33776,562.9333333333333,1233,471 +33777,562.95,1234,471 +33778,562.9666666666667,1237,471 +33779,562.9833333333333,1241,471 +33780,563.0,1245,471 +33781,563.0166666666667,1251,472 +33782,563.0333333333333,1258,472 +33783,563.05,1265,472 +33784,563.0666666666666,1274,472 +33785,563.0833333333334,1283,472 +33786,563.1,1294,473 +33787,563.1166666666667,1305,473 +33788,563.1333333333333,1316,473 +33789,563.15,1329,474 +33790,563.1666666666666,1341,474 +33791,563.1833333333333,1355,474 +33792,563.2,1369,474 +33793,563.2166666666667,1384,474 +33794,563.2333333333333,1399,474 +33795,563.25,1414,474 +33796,563.2666666666667,1429,474 +33797,563.2833333333333,1445,474 +33798,563.3,1460,474 +33799,563.3166666666666,1476,474 +33800,563.3333333333334,1492,474 +33801,563.35,1507,473 +33802,563.3666666666667,1522,473 +33803,563.3833333333333,1537,473 +33804,563.4,1552,473 +33805,563.4166666666666,1566,472 +33806,563.4333333333333,1579,472 +33807,563.45,1593,471 +33808,563.4666666666667,1605,471 +33809,563.4833333333333,1617,470 +33810,563.5,1629,470 +33811,563.5166666666667,1639,469 +33812,563.5333333333333,1649,469 +33813,563.55,1658,468 +33814,563.5666666666666,1667,467 +33815,563.5833333333334,1674,467 +33816,563.6,1680,466 +33817,563.6166666666667,1686,466 +33818,563.6333333333333,1691,465 +33819,563.65,1694,465 +33820,563.6666666666666,1697,465 +33821,563.6833333333333,1699,464 +33822,563.7,1699,464 +33823,563.7166666666667,1699,464 +33824,563.7333333333333,1698,464 +33825,563.75,1696,464 +33826,563.7666666666667,1693,465 +33827,563.7833333333333,1689,465 +33828,563.8,1684,465 +33829,563.8166666666666,1678,466 +33830,563.8333333333334,1671,466 +33831,563.85,1663,467 +33832,563.8666666666667,1655,467 +33833,563.8833333333333,1645,468 +33834,563.9,1635,469 +33835,563.9166666666666,1625,469 +33836,563.9333333333333,1613,470 +33837,563.95,1601,470 +33838,563.9666666666667,1588,471 +33839,563.9833333333333,1575,471 +33840,564.0,1561,472 +33841,564.0166666666667,1547,472 +33842,564.0333333333333,1532,472 +33843,564.05,1518,473 +33844,564.0666666666666,1502,473 +33845,564.0833333333334,1487,473 +33846,564.1,1472,473 +33847,564.1166666666667,1457,474 +33848,564.1333333333333,1441,474 +33849,564.15,1426,474 +33850,564.1666666666666,1411,474 +33851,564.1833333333333,1396,474 +33852,564.2,1381,474 +33853,564.2166666666667,1367,474 +33854,564.2333333333333,1353,474 +33855,564.25,1339,473 +33856,564.2666666666667,1327,473 +33857,564.2833333333333,1315,473 +33858,564.3,1303,473 +33859,564.3166666666666,1292,472 +33860,564.3333333333334,1282,472 +33861,564.35,1273,472 +33862,564.3666666666667,1265,472 +33863,564.3833333333333,1257,472 +33864,564.4,1251,471 +33865,564.4166666666666,1245,471 +33866,564.4333333333333,1241,471 +33867,564.45,1237,471 +33868,564.4666666666667,1235,471 +33869,564.4833333333333,1234,471 +33870,564.5,1234,471 +33871,564.5166666666667,1234,471 +33872,564.5333333333333,1235,471 +33873,564.55,1238,471 +33874,564.5666666666666,1242,471 +33875,564.5833333333334,1247,471 +33876,564.6,1252,472 +33877,564.6166666666667,1259,472 +33878,564.6333333333333,1267,472 +33879,564.65,1276,472 +33880,564.6666666666666,1285,472 +33881,564.6833333333333,1295,473 +33882,564.7,1306,473 +33883,564.7166666666667,1318,473 +33884,564.7333333333333,1331,474 +33885,564.75,1344,474 +33886,564.7666666666667,1358,474 +33887,564.7833333333333,1372,474 +33888,564.8,1386,474 +33889,564.8166666666666,1402,474 +33890,564.8333333333334,1416,474 +33891,564.85,1432,474 +33892,564.8666666666667,1447,474 +33893,564.8833333333333,1463,474 +33894,564.9,1478,474 +33895,564.9166666666666,1494,473 +33896,564.9333333333333,1509,473 +33897,564.95,1524,473 +33898,564.9666666666667,1539,473 +33899,564.9833333333333,1554,472 +33900,565.0,1568,472 +33901,565.0166666666667,1581,471 +33902,565.0333333333333,1594,471 +33903,565.05,1607,470 +33904,565.0666666666666,1619,470 +33905,565.0833333333334,1630,469 +33906,565.1,1640,469 +33907,565.1166666666667,1650,468 +33908,565.1333333333333,1659,468 +33909,565.15,1667,467 +33910,565.1666666666666,1674,466 +33911,565.1833333333333,1681,466 +33912,565.2,1686,465 +33913,565.2166666666667,1691,465 +33914,565.2333333333333,1695,465 +33915,565.25,1697,464 +33916,565.2666666666667,1699,464 +33917,565.2833333333333,1699,464 +33918,565.3,1699,464 +33919,565.3166666666666,1698,464 +33920,565.3333333333334,1695,464 +33921,565.35,1692,465 +33922,565.3666666666667,1688,465 +33923,565.3833333333333,1683,465 +33924,565.4,1677,466 +33925,565.4166666666666,1670,466 +33926,565.4333333333333,1662,467 +33927,565.45,1654,468 +33928,565.4666666666667,1644,468 +33929,565.4833333333333,1634,469 +33930,565.5,1623,469 +33931,565.5166666666667,1612,470 +33932,565.5333333333333,1599,470 +33933,565.55,1587,471 +33934,565.5666666666666,1573,471 +33935,565.5833333333334,1559,471 +33936,565.6,1545,472 +33937,565.6166666666667,1531,472 +33938,565.6333333333333,1516,473 +33939,565.65,1501,473 +33940,565.6666666666666,1486,473 +33941,565.6833333333333,1470,473 +33942,565.7,1455,473 +33943,565.7166666666667,1440,474 +33944,565.7333333333333,1424,474 +33945,565.75,1410,474 +33946,565.7666666666667,1395,474 +33947,565.7833333333333,1380,474 +33948,565.8,1366,474 +33949,565.8166666666666,1352,474 +33950,565.8333333333334,1339,474 +33951,565.85,1326,473 +33952,565.8666666666667,1314,473 +33953,565.8833333333333,1303,473 +33954,565.9,1292,472 +33955,565.9166666666666,1282,472 +33956,565.9333333333333,1273,472 +33957,565.95,1265,472 +33958,565.9666666666667,1257,472 +33959,565.9833333333333,1251,472 +33960,566.0,1246,471 +33961,566.0166666666667,1242,471 +33962,566.0333333333333,1238,471 +33963,566.05,1236,471 +33964,566.0666666666666,1235,471 +33965,566.0833333333334,1235,471 +33966,566.1,1235,471 +33967,566.1166666666667,1237,471 +33968,566.1333333333333,1240,471 +33969,566.15,1244,471 +33970,566.1666666666666,1249,471 +33971,566.1833333333333,1255,472 +33972,566.2,1262,472 +33973,566.2166666666667,1269,472 +33974,566.2333333333333,1278,472 +33975,566.25,1288,473 +33976,566.2666666666667,1298,473 +33977,566.2833333333333,1310,473 +33978,566.3,1321,473 +33979,566.3166666666666,1333,473 +33980,566.3333333333334,1346,474 +33981,566.35,1360,474 +33982,566.3666666666667,1375,474 +33983,566.3833333333333,1390,474 +33984,566.4,1404,474 +33985,566.4166666666666,1419,474 +33986,566.4333333333333,1435,474 +33987,566.45,1450,474 +33988,566.4666666666667,1465,474 +33989,566.4833333333333,1481,474 +33990,566.5,1496,473 +33991,566.5166666666667,1512,473 +33992,566.5333333333333,1526,473 +33993,566.55,1541,472 +33994,566.5666666666666,1556,472 +33995,566.5833333333334,1570,472 +33996,566.6,1583,471 +33997,566.6166666666667,1596,471 +33998,566.6333333333333,1609,470 +33999,566.65,1620,470 +34000,566.6666666666666,1631,469 +34001,566.6833333333333,1642,469 +34002,566.7,1651,468 +34003,566.7166666666667,1660,467 +34004,566.7333333333333,1668,466 +34005,566.75,1675,466 +34006,566.7666666666667,1681,465 +34007,566.7833333333333,1687,465 +34008,566.8,1691,465 +34009,566.8166666666666,1695,464 +34010,566.8333333333334,1697,464 +34011,566.85,1699,464 +34012,566.8666666666667,1699,464 +34013,566.8833333333333,1699,464 +34014,566.9,1697,464 +34015,566.9166666666666,1695,464 +34016,566.9333333333333,1691,464 +34017,566.95,1687,465 +34018,566.9666666666667,1682,465 +34019,566.9833333333333,1676,465 +34020,567.0,1669,466 +34021,567.0166666666667,1661,466 +34022,567.0333333333333,1652,467 +34023,567.05,1643,467 +34024,567.0666666666666,1633,468 +34025,567.0833333333334,1622,469 +34026,567.1,1610,469 +34027,567.1166666666667,1598,470 +34028,567.1333333333333,1585,470 +34029,567.15,1572,471 +34030,567.1666666666666,1558,471 +34031,567.1833333333333,1544,472 +34032,567.2,1529,472 +34033,567.2166666666667,1514,472 +34034,567.2333333333333,1499,473 +34035,567.25,1484,473 +34036,567.2666666666667,1469,473 +34037,567.2833333333333,1454,473 +34038,567.3,1438,473 +34039,567.3166666666666,1423,473 +34040,567.3333333333334,1408,473 +34041,567.35,1394,474 +34042,567.3666666666667,1379,473 +34043,567.3833333333333,1365,473 +34044,567.4,1351,473 +34045,567.4166666666666,1338,473 +34046,567.4333333333333,1326,473 +34047,567.45,1314,473 +34048,567.4666666666667,1303,472 +34049,567.4833333333333,1292,472 +34050,567.5,1282,472 +34051,567.5166666666667,1273,472 +34052,567.5333333333333,1266,471 +34053,567.55,1258,471 +34054,567.5666666666666,1252,471 +34055,567.5833333333334,1247,471 +34056,567.6,1243,471 +34057,567.6166666666667,1240,471 +34058,567.6333333333333,1237,471 +34059,567.65,1237,471 +34060,567.6666666666666,1237,471 +34061,567.6833333333333,1237,471 +34062,567.7,1239,471 +34063,567.7166666666667,1242,471 +34064,567.7333333333333,1246,471 +34065,567.75,1251,471 +34066,567.7666666666667,1257,471 +34067,567.7833333333333,1264,471 +34068,567.8,1272,472 +34069,567.8166666666666,1280,472 +34070,567.8333333333334,1290,472 +34071,567.85,1301,472 +34072,567.8666666666667,1312,473 +34073,567.8833333333333,1324,473 +34074,567.9,1336,473 +34075,567.9166666666666,1349,474 +34076,567.9333333333333,1363,474 +34077,567.95,1377,474 +34078,567.9666666666667,1392,474 +34079,567.9833333333333,1407,474 +34080,568.0,1422,474 +34081,568.0166666666667,1437,474 +34082,568.0333333333333,1452,474 +34083,568.05,1468,474 +34084,568.0666666666666,1483,473 +34085,568.0833333333334,1498,473 +34086,568.1,1514,473 +34087,568.1166666666667,1529,473 +34088,568.1333333333333,1543,472 +34089,568.15,1558,472 +34090,568.1666666666666,1571,471 +34091,568.1833333333333,1585,471 +34092,568.2,1598,471 +34093,568.2166666666667,1610,470 +34094,568.2333333333333,1621,470 +34095,568.25,1621,470 +34096,568.2666666666667,1632,469 +34097,568.2833333333333,1643,469 +34098,568.3,1652,468 +34099,568.3166666666666,1661,467 +34100,568.3333333333334,1669,467 +34101,568.35,1676,466 +34102,568.3666666666667,1682,466 +34103,568.3833333333333,1687,465 +34104,568.4,1691,465 +34105,568.4166666666666,1695,464 +34106,568.4333333333333,1697,464 +34107,568.45,1698,464 +34108,568.4666666666667,1698,464 +34109,568.4833333333333,1698,464 +34110,568.5,1697,464 +34111,568.5166666666667,1694,464 +34112,568.5333333333333,1691,465 +34113,568.55,1686,465 +34114,568.5666666666666,1681,465 +34115,568.5833333333334,1675,466 +34116,568.6,1668,466 +34117,568.6166666666667,1660,467 +34118,568.6333333333333,1651,467 +34119,568.65,1641,468 +34120,568.6666666666666,1631,468 +34121,568.6833333333333,1620,469 +34122,568.7,1608,470 +34123,568.7166666666667,1596,470 +34124,568.7333333333333,1583,470 +34125,568.75,1570,471 +34126,568.7666666666667,1556,471 +34127,568.7833333333333,1542,472 +34128,568.8,1527,472 +34129,568.8166666666666,1513,472 +34130,568.8333333333334,1497,473 +34131,568.85,1482,473 +34132,568.8666666666667,1467,473 +34133,568.8833333333333,1452,473 +34134,568.9,1437,473 +34135,568.9166666666666,1422,473 +34136,568.9333333333333,1407,473 +34137,568.95,1392,473 +34138,568.9666666666667,1378,473 +34139,568.9833333333333,1364,473 +34140,569.0,1350,473 +34141,569.0166666666667,1337,473 +34142,569.0333333333333,1324,473 +34143,569.05,1313,473 +34144,569.0666666666666,1301,472 +34145,569.0833333333334,1291,472 +34146,569.1,1281,472 +34147,569.1166666666667,1272,472 +34148,569.1333333333333,1265,471 +34149,569.15,1258,471 +34150,569.1666666666666,1251,471 +34151,569.1833333333333,1246,471 +34152,569.2,1242,471 +34153,569.2166666666667,1239,471 +34154,569.2333333333333,1237,471 +34155,569.25,1237,471 +34156,569.2666666666667,1237,471 +34157,569.2833333333333,1237,471 +34158,569.3,1239,471 +34159,569.3166666666666,1243,471 +34160,569.3333333333334,1247,471 +34161,569.35,1252,471 +34162,569.3666666666667,1258,471 +34163,569.3833333333333,1265,471 +34164,569.4,1273,472 +34165,569.4166666666666,1281,472 +34166,569.4333333333333,1291,472 +34167,569.45,1302,473 +34168,569.4666666666667,1313,473 +34169,569.4833333333333,1325,473 +34170,569.5,1338,473 +34171,569.5166666666667,1351,473 +34172,569.5333333333333,1365,474 +34173,569.55,1379,474 +34174,569.5666666666666,1393,474 +34175,569.5833333333334,1408,474 +34176,569.6,1423,474 +34177,569.6166666666667,1438,474 +34178,569.6333333333333,1454,474 +34179,569.65,1469,474 +34180,569.6666666666666,1484,473 +34181,569.6833333333333,1500,473 +34182,569.7,1515,473 +34183,569.7166666666667,1530,473 +34184,569.7333333333333,1544,473 +34185,569.75,1558,472 +34186,569.7666666666667,1572,472 +34187,569.7833333333333,1585,471 +34188,569.8,1598,471 +34189,569.8166666666666,1610,470 +34190,569.8333333333334,1622,470 +34191,569.85,1633,469 +34192,569.8666666666667,1643,469 +34193,569.8833333333333,1652,468 +34194,569.9,1661,468 +34195,569.9166666666666,1668,467 +34196,569.9333333333333,1675,467 +34197,569.95,1681,466 +34198,569.9666666666667,1686,466 +34199,569.9833333333333,1691,465 +34200,570.0,1694,465 +34201,570.0166666666667,1696,464 +34202,570.0333333333333,1697,464 +34203,570.05,1697,464 +34204,570.0666666666666,1697,464 +34205,570.0833333333334,1695,464 +34206,570.1,1692,465 +34207,570.1166666666667,1689,465 +34208,570.1333333333333,1684,465 +34209,570.15,1679,465 +34210,570.1666666666666,1673,466 +34211,570.1833333333333,1666,466 +34212,570.2,1657,467 +34213,570.2166666666667,1648,468 +34214,570.2333333333333,1639,468 +34215,570.25,1629,469 +34216,570.2666666666667,1618,469 +34217,570.2833333333333,1606,470 +34218,570.3,1594,470 +34219,570.3166666666666,1581,470 +34220,570.3333333333334,1567,471 +34221,570.35,1554,472 +34222,570.3666666666667,1539,472 +34223,570.3833333333333,1525,472 +34224,570.4,1510,472 +34225,570.4166666666666,1496,473 +34226,570.4333333333333,1480,473 +34227,570.45,1465,473 +34228,570.4666666666667,1450,473 +34229,570.4833333333333,1435,474 +34230,570.5,1420,474 +34231,570.5166666666667,1405,474 +34232,570.5333333333333,1391,473 +34233,570.55,1376,473 +34234,570.5666666666666,1362,473 +34235,570.5833333333334,1348,473 +34236,570.6,1336,473 +34237,570.6166666666667,1323,473 +34238,570.6333333333333,1312,473 +34239,570.65,1300,472 +34240,570.6666666666666,1290,472 +34241,570.6833333333333,1281,472 +34242,570.7,1272,471 +34243,570.7166666666667,1264,471 +34244,570.7333333333333,1257,471 +34245,570.75,1251,471 +34246,570.7666666666667,1246,471 +34247,570.7833333333333,1242,471 +34248,570.8,1239,471 +34249,570.8166666666666,1238,471 +34250,570.8333333333334,1238,471 +34251,570.85,1238,471 +34252,570.8666666666667,1238,471 +34253,570.8833333333333,1240,471 +34254,570.9,1243,471 +34255,570.9166666666666,1248,471 +34256,570.9333333333333,1253,471 +34257,570.95,1259,471 +34258,570.9666666666667,1266,471 +34259,570.9833333333333,1275,471 +34260,571.0,1283,472 +34261,571.0166666666667,1293,472 +34262,571.0333333333333,1304,472 +34263,571.05,1315,473 +34264,571.0666666666666,1327,473 +34265,571.0833333333334,1339,473 +34266,571.1,1353,474 +34267,571.1166666666667,1366,474 +34268,571.1333333333333,1381,474 +34269,571.15,1396,474 +34270,571.1666666666666,1410,474 +34271,571.1833333333333,1425,474 +34272,571.2,1440,474 +34273,571.2166666666667,1456,474 +34274,571.2333333333333,1471,474 +34275,571.25,1487,473 +34276,571.2666666666667,1502,473 +34277,571.2833333333333,1517,473 +34278,571.3,1532,473 +34279,571.3166666666666,1546,472 +34280,571.3333333333334,1560,472 +34281,571.35,1574,471 +34282,571.3666666666667,1587,471 +34283,571.3833333333333,1600,470 +34284,571.4,1612,470 +34285,571.4166666666666,1623,470 +34286,571.4333333333333,1634,469 +34287,571.45,1644,468 +34288,571.4666666666667,1653,468 +34289,571.4833333333333,1661,467 +34290,571.5,1669,467 +34291,571.5166666666667,1676,466 +34292,571.5333333333333,1682,466 +34293,571.55,1687,465 +34294,571.5666666666666,1691,465 +34295,571.5833333333334,1694,464 +34296,571.6,1696,464 +34297,571.6166666666667,1696,464 +34298,571.6333333333333,1696,464 +34299,571.65,1696,464 +34300,571.6666666666666,1694,464 +34301,571.6833333333333,1692,464 +34302,571.7,1688,464 +34303,571.7166666666667,1684,465 +34304,571.7333333333333,1678,465 +34305,571.75,1671,466 +34306,571.7666666666667,1664,466 +34307,571.7833333333333,1656,467 +34308,571.8,1647,467 +34309,571.8166666666666,1637,468 +34310,571.8333333333334,1627,468 +34311,571.85,1616,469 +34312,571.8666666666667,1604,470 +34313,571.8833333333333,1592,470 +34314,571.9,1579,471 +34315,571.9166666666666,1566,471 +34316,571.9333333333333,1552,471 +34317,571.95,1538,472 +34318,571.9666666666667,1523,472 +34319,571.9833333333333,1508,472 +34320,572.0,1493,473 +34321,572.0166666666667,1478,473 +34322,572.0333333333333,1463,473 +34323,572.05,1448,473 +34324,572.0666666666666,1433,473 +34325,572.0833333333334,1418,473 +34326,572.1,1403,473 +34327,572.1166666666667,1389,473 +34328,572.1333333333333,1374,473 +34329,572.15,1360,473 +34330,572.1666666666666,1347,473 +34331,572.1833333333333,1334,473 +34332,572.2,1322,473 +34333,572.2166666666667,1311,472 +34334,572.2333333333333,1300,472 +34335,572.25,1289,472 +34336,572.2666666666667,1280,472 +34337,572.2833333333333,1272,471 +34338,572.3,1264,471 +34339,572.3166666666666,1257,471 +34340,572.3333333333334,1251,471 +34341,572.35,1246,471 +34342,572.3666666666667,1243,470 +34343,572.3833333333333,1240,470 +34344,572.4,1238,470 +34345,572.4166666666666,1238,470 +34346,572.4333333333333,1238,470 +34347,572.45,1239,470 +34348,572.4666666666667,1241,470 +34349,572.4833333333333,1245,471 +34350,572.5,1249,471 +34351,572.5166666666667,1254,471 +34352,572.5333333333333,1261,471 +34353,572.55,1268,471 +34354,572.5666666666666,1276,471 +34355,572.5833333333334,1285,472 +34356,572.6,1295,472 +34357,572.6166666666667,1306,472 +34358,572.6333333333333,1317,473 +34359,572.65,1329,473 +34360,572.6666666666666,1342,473 +34361,572.6833333333333,1355,473 +34362,572.7,1369,474 +34363,572.7166666666667,1384,474 +34364,572.7333333333333,1398,474 +34365,572.75,1413,474 +34366,572.7666666666667,1428,474 +34367,572.7833333333333,1443,474 +34368,572.8,1458,474 +34369,572.8166666666666,1473,473 +34370,572.8333333333334,1489,473 +34371,572.85,1504,473 +34372,572.8666666666667,1519,473 +34373,572.8833333333333,1534,472 +34374,572.9,1548,472 +34375,572.9166666666666,1562,472 +34376,572.9333333333333,1576,471 +34377,572.95,1589,471 +34378,572.9666666666667,1601,470 +34379,572.9833333333333,1613,470 +34380,573.0,1624,469 +34381,573.0166666666667,1635,469 +34382,573.0333333333333,1645,468 +34383,573.05,1654,468 +34384,573.0666666666666,1662,467 +34385,573.0833333333334,1670,467 +34386,573.1,1676,466 +34387,573.1166666666667,1682,465 +34388,573.1333333333333,1687,465 +34389,573.15,1691,465 +34390,573.1666666666666,1694,465 +34391,573.1833333333333,1696,464 +34392,573.2,1696,464 +34393,573.2166666666667,1696,464 +34394,573.2333333333333,1695,464 +34395,573.25,1694,464 +34396,573.2666666666667,1691,465 +34397,573.2833333333333,1687,465 +34398,573.3,1682,465 +34399,573.3166666666666,1677,465 +34400,573.3333333333334,1670,466 +34401,573.35,1663,466 +34402,573.3666666666667,1654,467 +34403,573.3833333333333,1645,468 +34404,573.4,1635,468 +34405,573.4166666666666,1625,469 +34406,573.4333333333333,1614,469 +34407,573.45,1602,470 +34408,573.4666666666667,1590,470 +34409,573.4833333333333,1577,471 +34410,573.5,1563,471 +34411,573.5166666666667,1549,472 +34412,573.5333333333333,1535,472 +34413,573.55,1521,472 +34414,573.5666666666666,1506,473 +34415,573.5833333333334,1491,473 +34416,573.6,1476,473 +34417,573.6166666666667,1461,473 +34418,573.6333333333333,1446,473 +34419,573.65,1430,473 +34420,573.6666666666666,1416,473 +34421,573.6833333333333,1401,473 +34422,573.7,1387,473 +34423,573.7166666666667,1372,473 +34424,573.7333333333333,1359,473 +34425,573.75,1345,473 +34426,573.7666666666667,1332,473 +34427,573.7833333333333,1320,473 +34428,573.8,1309,473 +34429,573.8166666666666,1298,472 +34430,573.8333333333334,1288,472 +34431,573.85,1279,471 +34432,573.8666666666667,1270,471 +34433,573.8833333333333,1263,471 +34434,573.9,1256,471 +34435,573.9166666666666,1251,471 +34436,573.9333333333333,1246,471 +34437,573.95,1242,471 +34438,573.9666666666667,1240,471 +34439,573.9833333333333,1238,471 +34440,574.0,1238,471 +34441,574.0166666666667,1238,471 +34442,574.0333333333333,1239,471 +34443,574.05,1242,471 +34444,574.0666666666666,1245,471 +34445,574.0833333333334,1250,471 +34446,574.1,1255,471 +34447,574.1166666666667,1262,471 +34448,574.1333333333333,1269,472 +34449,574.15,1278,472 +34450,574.1666666666666,1287,472 +34451,574.1833333333333,1297,472 +34452,574.2,1308,473 +34453,574.2166666666667,1319,473 +34454,574.2333333333333,1331,473 +34455,574.25,1344,473 +34456,574.2666666666667,1357,474 +34457,574.2833333333333,1371,474 +34458,574.3,1385,474 +34459,574.3166666666666,1400,474 +34460,574.3333333333334,1414,474 +34461,574.35,1429,474 +34462,574.3666666666667,1445,474 +34463,574.3833333333333,1460,474 +34464,574.4,1475,473 +34465,574.4166666666666,1491,473 +34466,574.4333333333333,1506,473 +34467,574.45,1520,473 +34468,574.4666666666667,1535,473 +34469,574.4833333333333,1549,472 +34470,574.5,1563,472 +34471,574.5166666666667,1577,471 +34472,574.5333333333333,1589,471 +34473,574.55,1601,471 +34474,574.5666666666666,1613,470 +34475,574.5833333333334,1625,469 +34476,574.6,1635,469 +34477,574.6166666666667,1645,468 +34478,574.6333333333333,1654,467 +34479,574.65,1662,467 +34480,574.6666666666666,1669,466 +34481,574.6833333333333,1676,466 +34482,574.7,1681,466 +34483,574.7166666666667,1686,465 +34484,574.7333333333333,1690,465 +34485,574.75,1692,465 +34486,574.7666666666667,1694,464 +34487,574.7833333333333,1694,464 +34488,574.8,1694,464 +34489,574.8166666666666,1694,464 +34490,574.8333333333334,1692,464 +34491,574.85,1689,465 +34492,574.8666666666667,1685,465 +34493,574.8833333333333,1680,465 +34494,574.9,1674,466 diff --git a/single_pdl/geom_utils.py b/single_pdl/geom_utils.py new file mode 100644 index 0000000..a93f2fe --- /dev/null +++ b/single_pdl/geom_utils.py @@ -0,0 +1,116 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +几何与坐标变换工具: +- 基于最小二乘的圆拟合 +- 像素坐标 <-> 单位圆 (sin, cos) 变换 + +与训练脚本的定义保持一致: + theta = atan2(x - cx, cy - y) + sin = sin(theta) = (x - cx) / r + cos = cos(theta) = (cy - y) / r = -(y - cy) / r + +因此,反变换: + x = cx + r * sin + y = cy - r * cos +""" +from __future__ import annotations + +import math +import numpy as np +from typing import Tuple + + +def fit_circle_lstsq(x: np.ndarray, y: np.ndarray) -> Tuple[float, float, float]: + """最小二乘拟合圆:解 x^2 + y^2 = 2 a x + 2 b y + c + + 返回 (cx, cy, r) + """ + x = np.asarray(x, dtype=np.float64) + y = np.asarray(y, dtype=np.float64) + A = np.c_[2 * x, 2 * y, np.ones_like(x)] + b = x * x + y * y + sol, *_ = np.linalg.lstsq(A, b, rcond=None) + a, b_, c = sol + cx, cy = a, b_ + r = math.sqrt(max(cx * cx + cy * cy + c, 0.0)) + return float(cx), float(cy), float(r) + + +def _estimate_center_radius(seq_xy: np.ndarray) -> Tuple[float, float, float]: + """对单条序列估计 (cx, cy, r)。 + - 当样本点 >=3 时使用最小二乘拟合 + - 否则使用均值点作为中心、均距为半径;若半径过小,则回退为 1.0 + """ + seq_xy = np.asarray(seq_xy, dtype=np.float64) + S = seq_xy.shape[0] + if S >= 3: + cx, cy, r = fit_circle_lstsq(seq_xy[:, 0], seq_xy[:, 1]) + else: + cx, cy = np.mean(seq_xy, axis=0) + d = np.linalg.norm(seq_xy - np.array([cx, cy], dtype=np.float64), axis=1) + r = float(np.median(d) if d.size else 1.0) + r = float(max(r, 1e-6)) + return float(cx), float(cy), r + + +def pixels_to_unit_sincos(seq_xy: np.ndarray) -> Tuple[np.ndarray, Tuple[float, float, float]]: + """将单条像素轨迹 [S,2] 转为单位 (sin,cos) [S,2],并返回 (cx,cy,r)。""" + seq_xy = np.asarray(seq_xy, dtype=np.float64) + cx, cy, r = _estimate_center_radius(seq_xy) + x = seq_xy[:, 0] + y = seq_xy[:, 1] + # 与训练一致的角度定义 + theta = np.arctan2(x - cx, cy - y) + sc = np.stack([np.sin(theta), np.cos(theta)], axis=-1).astype(np.float32) + return sc, (float(cx), float(cy), float(r)) + + +def batch_pixels_to_unit_sincos(batch_xy: np.ndarray) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: + """批量像素 -> 单位 (sin,cos)。 + + 参数: + batch_xy: [B,S,2] 像素坐标 + 返回: + sc: [B,S,2] 单位 (sin,cos) + centers: [B,2] (cx,cy) + radii: [B] r + """ + batch_xy = np.asarray(batch_xy, dtype=np.float64) + B, S, _ = batch_xy.shape + sc = np.empty((B, S, 2), dtype=np.float32) + centers = np.empty((B, 2), dtype=np.float32) + radii = np.empty((B,), dtype=np.float32) + for i in range(B): + seq = batch_xy[i] + sc_i, (cx, cy, r) = pixels_to_unit_sincos(seq) + sc[i] = sc_i + centers[i] = (cx, cy) + radii[i] = r + return sc, centers, radii + + +def unit_sincos_to_pixels(sc: np.ndarray, centers: np.ndarray, radii: np.ndarray) -> np.ndarray: + """单位 (sin,cos) -> 像素坐标。 + + 支持广播: + sc: [B,S,2] + centers: [B,2] + radii: [B] or [B,1] + 返回: + pix: [B,S,2] + """ + sc = np.asarray(sc, dtype=np.float64) + centers = np.asarray(centers, dtype=np.float64) + radii = np.asarray(radii, dtype=np.float64).reshape(-1, 1, 1) # [B,1,1] + + sin = sc[..., 0] + cos = sc[..., 1] + cx = centers[:, 0].reshape(-1, 1) + cy = centers[:, 1].reshape(-1, 1) + + x = cx + radii[:, 0, 0:1] * sin # 广播 [B,1] * [B,S] + y = cy - radii[:, 0, 0:1] * cos + + pix = np.stack([x, y], axis=-1) + return pix.astype(np.float32) diff --git a/single_pdl/pendulum_transformer.py b/single_pdl/pendulum_transformer.py new file mode 100644 index 0000000..f933add --- /dev/null +++ b/single_pdl/pendulum_transformer.py @@ -0,0 +1,479 @@ +# pendulum_transformer.py +import argparse, math, os +import numpy as np +import pandas as pd +import torch +import torch.nn as nn +from torch.utils.data import Dataset, DataLoader +import matplotlib.pyplot as plt + +# ============ 工具函数 ============ +def moving_average(a, w=5): + if w <= 1: return a + pad = np.pad(a, (w//2, w-1-w//2), mode='edge') + k = np.ones(w)/w + return np.convolve(pad, k, mode='valid') + +def fit_circle_lstsq(x, y): + # 解: x^2 + y^2 = 2 a x + 2 b y + c + A = np.c_[2*x, 2*y, np.ones_like(x)] + b = x**2 + y**2 + sol, *_ = np.linalg.lstsq(A, b, rcond=None) + a, b_, c = sol + cx, cy = a, b_ + r = math.sqrt(max(cx*cx + cy*cy + c, 0.0)) + return cx, cy, r + +def wrap_to_pi(a): + return (a + np.pi) % (2*np.pi) - np.pi + +def build_windows(arr, s_in=120, s_out=30, stride=10): + # arr: [T, F] + T, F = arr.shape + X, Y, t_idx = [], [], [] + for t in range(0, T - s_in - s_out + 1, stride): + X.append(arr[t:t+s_in]) + Y.append(arr[t+s_in:t+s_in+s_out]) + t_idx.append(t) + return np.array(X), np.array(Y), np.array(t_idx) # [N, S, F], [N, S, F], [N] + +def sincos_to_angle(s, c): + return np.arctan2(s, c) + +def angle_rmse(pred_sc, true_sc): + # pred_sc, true_sc: [..., 2] -> (sin, cos) + ps, pc = pred_sc[...,0], pred_sc[...,1] + ts, tc = true_sc[...,0], true_sc[...,1] + pa = np.arctan2(ps, pc) + ta = np.arctan2(ts, tc) + diff = wrap_to_pi(pa - ta) + return np.sqrt(np.mean(diff**2)) + +def split_even_indices(n, ratios=(0.7, 0.15, 0.15), block=50, seed=123): + """将 [0..n-1] 均匀地分成三部分(train/val/test)""" + if n <= 0: + return np.array([], dtype=int), np.array([], dtype=int), np.array([], dtype=int) + probs = np.array(ratios, dtype=np.float64) + s = probs.sum() + probs = probs / (s if s > 0 else 1.0) + rng = np.random.default_rng(seed) + idxs = np.arange(n) + tr, va, te = [], [], [] + for start in range(0, n, block): + end = min(start + block, n) + m = end - start + target = probs * m + base = np.floor(target).astype(int) + rem = m - int(base.sum()) + if rem > 0: + frac = target - base + order = np.argsort(-(frac + 1e-9 * rng.random(frac.shape))) + for k in order[:rem]: + base[k] += 1 + local = idxs[start:end].copy() + rng.shuffle(local) + a, b, c = int(base[0]), int(base[1]), int(base[2]) + tr.extend(local[:a]); va.extend(local[a:a+b]); te.extend(local[a+b:a+b+c]) + return np.array(tr, dtype=int), np.array(va, dtype=int), np.array(te, dtype=int) + +# ============ 数据集 ============ +class SeqDataset(Dataset): + def __init__(self, X, Y, mu=None, std=None): + self.X = X.astype(np.float32) + self.Y = Y.astype(np.float32) + if mu is None or std is None: + mu = self.X.reshape(-1, self.X.shape[-1]).mean(0, keepdims=True) + std = self.X.reshape(-1, self.X.shape[-1]).std(0, keepdims=True) + 1e-8 + self.mu = mu.astype(np.float32) + self.std = std.astype(np.float32) + + def __len__(self): return self.X.shape[0] + def __getitem__(self, i): + x = (self.X[i] - self.mu) / self.std + y = (self.Y[i] - self.mu) / self.std + return torch.from_numpy(x), torch.from_numpy(y) + +# ============ 位置编码 ============ +class PositionalEncoding(nn.Module): + def __init__(self, d_model, max_len=4096): + super().__init__() + pe = torch.zeros(max_len, d_model) + pos = torch.arange(0, max_len, dtype=torch.float32).unsqueeze(1) + div = torch.exp(torch.arange(0, d_model, 2, dtype=torch.float32) * (-math.log(10000.0) / d_model)) + pe[:, 0::2] = torch.sin(pos * div) + pe[:, 1::2] = torch.cos(pos * div) + self.register_buffer('pe', pe.unsqueeze(0)) # [1, L, D] + def forward(self, x): + return x + self.pe[:, :x.size(1), :] + +# ============ 极简 Transformer ============ +class TimeSeriesTransformer(nn.Module): + def __init__(self, in_dim=2, d_model=256, nhead=4, enc_layers=3, dec_layers=3, d_ff=512, dropout=0.1, out_dim=2): + super().__init__() + self.in_proj = nn.Linear(in_dim, d_model) + self.out_proj = nn.Linear(d_model, out_dim) + self.tgt_proj = nn.Linear(out_dim, d_model) + self.pos_enc = PositionalEncoding(d_model) + self.tf = nn.Transformer( + d_model=d_model, nhead=nhead, + num_encoder_layers=enc_layers, num_decoder_layers=dec_layers, + dim_feedforward=d_ff, dropout=dropout, batch_first=True + ) + + def forward(self, src, tgt_in, tgt_mask=None): + src = self.pos_enc(self.in_proj(src)) + tgt = self.pos_enc(self.tgt_proj(tgt_in)) + out = self.tf(src, tgt, tgt_mask=tgt_mask) # [B, S_out, D] + return self.out_proj(out) + +# ============ 主流程 ============ +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--csv", type=str, nargs='+', required=True, help="CSV files") + ap.add_argument("--split", type=float, nargs=3, default=[0.7, 0.15, 0.15]) + ap.add_argument("--s_in", type=int, default=180) + ap.add_argument("--s_out", type=int, default=30) + ap.add_argument("--stride", type=int, default=10) + ap.add_argument("--epochs", type=int, default=10) + ap.add_argument("--batch", type=int, default=64) + ap.add_argument("--lr", type=float, default=1e-3) + ap.add_argument("--ckpt", type=str, default="ckpt/pendulum_tf_base.pt") + ap.add_argument("--eval_only", action="store_true") + # 新增:评估相关 + ap.add_argument("--eval_all", action="store_true", help="Evaluate on the entire test set") + ap.add_argument("--eval_samples", type=int, default=6, help="How many random samples to plot from test set") + ap.add_argument("--seed", type=int, default=123, help="Random seed for eval sampling") + args = ap.parse_args() + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + + # 规范化路径 + def _norm(p: str) -> str: + return os.path.abspath(os.path.expanduser(p)) + + csv_list = sorted(set(_norm(p) for p in (args.csv or []))) + if not csv_list: + raise ValueError("No CSV files provided.") + + ratios = np.array(args.split, dtype=np.float64) + s = ratios.sum() + ratios = ratios / (s if s > 0 else 1.0) + print(f"[Split] auto per-CSV even mode: files={len(csv_list)} | ratios train/val/test = {ratios.tolist()}") + + Xtr_list, Ytr_list, Xva_list, Yva_list, Xte_list, Yte_list = [], [], [], [], [], [] + + for i, csv_path in enumerate(csv_list): + df = pd.read_csv(csv_path) + x = df['x'].to_numpy(dtype=np.float64) + y = df['y'].to_numpy(dtype=np.float64) + + # 圆拟合 => 悬点 + cx, cy, r = fit_circle_lstsq(x, y) + print(f"[{i+1}/{len(csv_list)}] {os.path.basename(csv_path)} pivot=({cx:.2f},{cy:.2f}), r~{r:.2f}") + + # 像素 -> 角度;竖直向下为 0 + theta = np.arctan2(x - cx, cy - y) + theta = np.unwrap(theta) + sin_t, cos_t = np.sin(theta), np.cos(theta) + feats = np.stack([sin_t, cos_t], axis=1) # [T, 2] + + # 滑窗 + Xi, Yi, _ = build_windows(feats, s_in=args.s_in, s_out=args.s_out, stride=args.stride) + if Xi.size == 0: + continue + tr_idx, va_idx, te_idx = split_even_indices(Xi.shape[0], ratios) + if tr_idx.size: Xtr_list.append(Xi[tr_idx]); Ytr_list.append(Yi[tr_idx]) + if va_idx.size: Xva_list.append(Xi[va_idx]); Yva_list.append(Yi[va_idx]) + if te_idx.size: Xte_list.append(Xi[te_idx]); Yte_list.append(Yi[te_idx]) + + def _concat(lst, steps): + if not lst: + return np.zeros((0, steps, 2), dtype=np.float32) + return np.concatenate(lst, axis=0).astype(np.float32) + + Xtr = _concat(Xtr_list, args.s_in) + Ytr = _concat(Ytr_list, args.s_out) + Xva = _concat(Xva_list, args.s_in) + Yva = _concat(Yva_list, args.s_out) + Xte = _concat(Xte_list, args.s_in) + Yte = _concat(Yte_list, args.s_out) + + if Xtr.shape[0] == 0: raise ValueError("No training samples produced.") + if Xva.shape[0] == 0: raise ValueError("No validation samples produced.") + if Xte.shape[0] == 0: raise ValueError("No test samples produced.") + + # 标准化参数(仅基于训练集) + base = Xtr + mu = base.reshape(-1, base.shape[-1]).mean(0, keepdims=True).astype(np.float32) + std = base.reshape(-1, base.shape[-1]).std(0, keepdims=True).astype(np.float32) + 1e-8 + + dtr = SeqDataset(Xtr, Ytr, mu, std) + dva = SeqDataset(Xva, Yva, mu, std) + dte = SeqDataset(Xte, Yte, mu, std) + + nw = 2 + Ltr = DataLoader(dtr, batch_size=args.batch, shuffle=True, drop_last=True, pin_memory=True, num_workers=nw) + Lva = DataLoader(dva, batch_size=args.batch, shuffle=False, pin_memory=True, num_workers=nw) + Lte = DataLoader(dte, batch_size=args.batch, shuffle=False, pin_memory=True, num_workers=nw) + + cfg = dict(d_model=256, nhead=4, enc_layers=3, dec_layers=3, d_ff=512) + net = TimeSeriesTransformer(in_dim=2, out_dim=2, **cfg).to(device) + + mse = nn.MSELoss() + opt = torch.optim.AdamW(net.parameters(), lr=args.lr, weight_decay=1e-4) + + # ---- warmup + cosine 调度(按 step)---- + total_steps = max(1, args.epochs * len(Ltr)) + warmup = min(500, max(1, total_steps // 10)) + def lr_lambda(step): + if step < warmup: + return float(step + 1) / float(warmup) + progress = (step - warmup) / max(1, total_steps - warmup) + cosine = 0.5 * (1.0 + math.cos(math.pi * progress)) + min_factor = 0.01 + return min_factor + (1 - min_factor) * cosine + scheduler = torch.optim.lr_scheduler.LambdaLR(opt, lr_lambda=lr_lambda) + + # === 标准化 <-> 原始空间 转换 & 单位化 === + mu_t = torch.from_numpy(mu).to(device) # [1, 2] + std_t = torch.from_numpy(std).to(device) # [1, 2] + + def to_raw(z): return z * std_t + mu_t + def to_std(z): return (z - mu_t) / std_t + def unitize(z, eps=1e-6): + n = torch.clamp(torch.linalg.norm(z, dim=-1, keepdim=True), min=eps) + return z / n + + # === 预测一个 batch 的自回归函数(返回 raw 空间预测) === + def rollout_raw(xb_std, steps): + # xb_std: [B, S_in, 2] 标准化空间 + tgt_tokens = xb_std[:, -1:, :2].clone() # 起始 token(标准化空间) + for _ in range(steps): + mask = nn.Transformer.generate_square_subsequent_mask(tgt_tokens.size(1)).to(device) + out = net(xb_std, tgt_tokens, tgt_mask=mask) # 标准化 + next_std = out[:, -1:, :] + next_raw = to_raw(next_std) # -> 原始 + next_raw = unitize(next_raw) # 单位圆约束 + next_std = to_std(next_raw) # -> 标准化(与训练分布一致) + tgt_tokens = torch.cat([tgt_tokens, next_std], dim=1) + pred_std = tgt_tokens[:, 1:, :] # [B, steps, 2] 标准化 + return to_raw(pred_std) # -> 原始 + + # === 改动一:闭环 rollout 损失所需的角度/方向损失 === + def cosine_ang_loss(pred_sc_raw, true_sc_raw, eps=1e-6): + """ + pred_sc_raw/true_sc_raw: [B,S,2],分别是 RAW 空间下的 (sin,cos) + 计算 1 - cos(Δθ) 的平均值,忽略向量长度,只关注方向(角度)差。 + """ + pu = pred_sc_raw / torch.clamp(torch.linalg.norm(pred_sc_raw, dim=-1, keepdim=True), min=eps) + tu = true_sc_raw / torch.clamp(torch.linalg.norm(true_sc_raw, dim=-1, keepdim=True), min=eps) + return (1.0 - (pu * tu).sum(dim=-1)).mean() + + # === 训练 or 加载 === + os.makedirs(os.path.dirname(args.ckpt) or ".", exist_ok=True) + if args.eval_only: + if not os.path.exists(args.ckpt): + raise FileNotFoundError(f"Checkpoint not found: {args.ckpt}. 请先训练一次或指定正确路径。") + # 关键修复:显式关闭 weights_only 的安全反序列化限制(你信任本地 ckpt) + payload = torch.load(args.ckpt, map_location=device, weights_only=False) + # 若 ckpt 中包含 cfg,用 ckpt 的配置重建网络,避免结构不一致 + ckpt_cfg = payload.get("cfg", None) + if ckpt_cfg is not None: + # 如果与当前构造的不同,则重建 + if ckpt_cfg != cfg: + net = TimeSeriesTransformer(in_dim=2, out_dim=2, **ckpt_cfg).to(device) + net.load_state_dict(payload["model"], strict=True) + + mu = payload["mu"]; std = payload["std"] + mu_t = torch.from_numpy(mu).to(device); std_t = torch.from_numpy(std).to(device) + print(f"Loaded checkpoint from {args.ckpt}") + else: + # Sanity:原始空间下 ||yb|| 应 ~1 + with torch.no_grad(): + xb0, yb0 = next(iter(Ltr)) + m_norm_raw = torch.linalg.norm(to_raw(yb0.to(device)), dim=-1).mean().item() + print(f"[Sanity] mean ||yb|| in RAW space ~= {m_norm_raw:.4f}") + + best_val = float("inf") + global_step = 0 + for ep in range(1, args.epochs+1): + net.train() + total = 0.0 + total_tf = 0.0 + total_roll = 0.0 + + # ρ:闭环损失权重(线性升到 1.0;如需更稳可改为升到 0.5) + rho = min(1.0, ep / max(1, args.epochs // 2)) + + for xb, yb in Ltr: + xb = xb.to(device, non_blocking=True); yb = yb.to(device, non_blocking=True) + B, S, F = yb.shape + + # ---------- (A) Teacher Forcing 分支(与原来一致) ---------- + x_last = xb[:, -1:, :F] + tgt_in = torch.cat([x_last, yb[:, :-1, :]], dim=1) + mask = nn.Transformer.generate_square_subsequent_mask(S).to(device) + + pred_tf = net(xb, tgt_in, tgt_mask=mask) # 标准化空间 + pred_tf_u = unitize(to_raw(pred_tf)) # 原始空间单位圆(只对方向约束) + yb_u = unitize(to_raw(yb)) + loss_tf = mse(pred_tf_u, yb_u) + + # ---------- (B) 闭环 rollout 分支(改动一的核心) ---------- + with torch.no_grad(): + y_true_raw = to_raw(yb) # RAW,用于对齐真值方向 + y_pred_raw = rollout_raw(xb, steps=S) # RAW,模型自回归滚动预测 + loss_roll = cosine_ang_loss(y_pred_raw, y_true_raw) + + # ---------- 合成总损失 ---------- + loss = (1.0 - rho) * loss_tf + rho * loss_roll + + opt.zero_grad(set_to_none=True) + loss.backward() + torch.nn.utils.clip_grad_norm_(net.parameters(), 1.0) + opt.step() + scheduler.step() + + total += loss.item() * xb.size(0) + total_tf += loss_tf.item() * xb.size(0) + total_roll += loss_roll.item() * xb.size(0) + global_step += 1 + + tr_loss = total / len(dtr) + tr_tf = total_tf / len(dtr) + tr_rl = total_roll / len(dtr) + + # 验证:保持原先的 TF-式度量(也可扩展加闭环验证,这里先不改动) + net.eval() + with torch.no_grad(): + total_v = 0.0 + for xb, yb in Lva: + xb = xb.to(device, non_blocking=True); yb = yb.to(device, non_blocking=True) + x_last = xb[:, -1:, :2] + tgt_in = torch.cat([x_last, yb[:, :-1, :]], dim=1) + mask = nn.Transformer.generate_square_subsequent_mask(yb.size(1)).to(device) + pred = net(xb, tgt_in, tgt_mask=mask) + pred_u = unitize(to_raw(pred)) + yb_u = unitize(to_raw(yb)) + total_v += mse(pred_u, yb_u).item() * xb.size(0) + va_loss = total_v / len(dva) + + cur_lr = scheduler.get_last_lr()[0] + print(f"[Epoch {ep:02d}] ρ={rho:.2f} | train TOTAL={tr_loss:.6f} (TF={tr_tf:.6f}, ROLL={tr_rl:.6f}) | val MSE(u_raw)={va_loss:.6f} | lr={cur_lr:.6e}") + + if not np.isnan(va_loss) and va_loss < best_val: + best_val = va_loss + payload = {"model": net.state_dict(), "mu": mu, "std": std, "cfg": cfg} + torch.save(payload, args.ckpt) + print(f"Saved checkpoint -> {args.ckpt}") + + # ===== 评估 ===== + net.eval() + rng = np.random.default_rng(args.seed) + + with torch.no_grad(): + # --- 1) 全量评估(可选) --- + if args.eval_all: + steps = args.s_out + sum_sq = 0.0 + n_total = 0 + per_step_sq = np.zeros(steps, dtype=np.float64) + total_samples = 0 + + for xb, yb in Lte: + xb = xb.to(device, non_blocking=True); yb = yb.to(device, non_blocking=True) + y_pred_raw = rollout_raw(xb, steps) # [B, steps, 2] raw + y_true_raw = to_raw(yb) # [B, steps, 2] raw + y_pred_np = y_pred_raw.cpu().numpy() + y_true_np = y_true_raw.cpu().numpy() + + # 单位圆 -> 角度误差 + n1 = np.clip(np.linalg.norm(y_pred_np, axis=-1, keepdims=True), 1e-6, None) + n2 = np.clip(np.linalg.norm(y_true_np, axis=-1, keepdims=True), 1e-6, None) + y_pred_u = y_pred_np / n1 + y_true_u = y_true_np / n2 + + pa = np.arctan2(y_pred_u[...,0], y_pred_u[...,1]) # 注意顺序 (sin,cos) + ta = np.arctan2(y_true_u[...,0], y_true_u[...,1]) + diff = wrap_to_pi(pa - ta) # [B, steps] + + sum_sq += np.sum(diff**2) + per_step_sq += np.sum(diff**2, axis=0) + n_total += diff.size + total_samples += diff.shape[0] + + overall_rmse = math.sqrt(sum_sq / n_total) + per_step_rmse = np.sqrt(per_step_sq / max(1, total_samples)) + + print(f"[Test:ALL] overall angle RMSE = {overall_rmse:.6f} rad ({overall_rmse*180/np.pi:.3f} deg)") + # 保存每步 RMSE 曲线 + ts = np.arange(1, steps+1) + plt.figure(figsize=(6,4)) + plt.plot(ts, per_step_rmse * 180/np.pi, marker='o') + plt.xlabel("horizon (step)"); plt.ylabel("RMSE (deg)") + plt.title("Per-step angle RMSE on test set") + plt.grid(True, linestyle="--", alpha=0.5) + plt.tight_layout() + plt.savefig("rmse_per_step.png", dpi=150) + print("Saved plot -> rmse_per_step.png") + + # --- 2) 随机抽样 K 个样本可视化 --- + X_list, Y_list = [], [] + for xb, yb in Lte: + X_list.append(xb); Y_list.append(yb) + X_all = torch.cat(X_list, dim=0).to(device, non_blocking=True) + Y_all = torch.cat(Y_list, dim=0).to(device, non_blocking=True) + + N = X_all.size(0) + K = min(max(0, args.eval_samples), N) + if K > 0: + idxs = rng.choice(N, size=K, replace=False) + steps = Y_all.size(1) + y_pred_raw_all = rollout_raw(X_all[idxs], steps) # [K, steps, 2] + y_true_raw_all = to_raw(Y_all[idxs]) # [K, steps, 2] + + def unit_np(z): + n = np.linalg.norm(z, axis=-1, keepdims=True) + n = np.clip(n, 1e-6, None) + return z / n + + y_pred_np = y_pred_raw_all.cpu().numpy() + y_true_np = y_true_raw_all.cpu().numpy() + y_pred_u = unit_np(y_pred_np) + y_true_u = unit_np(y_true_np) + + for j in range(K): + ya = np.arctan2(y_true_u[j,:,0], y_true_u[j,:,1]) + pa = np.arctan2(y_pred_u[j,:,0], y_pred_u[j,:,1]) + pa_aligned = pa + 2*np.pi * np.round((ya - pa)/(2*np.pi)) + + plt.figure(figsize=(8,4)) + plt.plot(np.arange(steps), ya, label="true θ") + plt.plot(np.arange(steps), pa_aligned, '--', label="pred θ (aligned)") + plt.xlabel("future step"); plt.ylabel("angle (rad)") + plt.title(f"{steps}-step forecast (test sample {j})") + plt.legend(); plt.tight_layout() + out_png = f"pred_plot_sample_{j}.png" + plt.savefig(out_png, dpi=150) + plt.close() + print(f"Saved plot -> {out_png}") + + # 如果没开 --eval_all,也输出一个“单 batch”对齐的整体 RMSE 以免落差太大 + if not args.eval_all: + steps = args.s_out + xb, yb = X_all[:args.batch], Y_all[:args.batch] + y_pred_raw = rollout_raw(xb, steps) + y_true_raw = to_raw(yb) + y_pred_np = y_pred_raw.cpu().numpy() + y_true_np = y_true_raw.cpu().numpy() + n1 = np.clip(np.linalg.norm(y_pred_np, axis=-1, keepdims=True), 1e-6, None) + n2 = np.clip(np.linalg.norm(y_true_np, axis=-1, keepdims=True), 1e-6, None) + y_pred_u = y_pred_np / n1; y_true_u = y_true_np / n2 + pa = np.arctan2(y_pred_u[...,0], y_pred_u[...,1]) + ta = np.arctan2(y_true_u[...,0], y_true_u[...,1]) + diff = wrap_to_pi(pa - ta) + rmse = math.sqrt(np.mean(diff**2)) + print(f"[Test:Mini] angle RMSE = {rmse:.6f} rad ({rmse*180/np.pi:.3f} deg)") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/single_pdl/serve_pendulum.py b/single_pdl/serve_pendulum.py new file mode 100644 index 0000000..30f23d4 --- /dev/null +++ b/single_pdl/serve_pendulum.py @@ -0,0 +1,238 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +启动一个仅 CUDA 的 HTTP 推理服务,输入/输出均为像素坐标。 +内部将像素轨迹拟合圆并转换为单位 (sin,cos) 以适配训练空间, +并把预测结果再还原为像素坐标返回。 + + POST /predict + body: + { + "sequences": [ # 批量,每个序列为 [S_in, 2] 像素 [x,y] + [[x, y], [x, y], ...], + ... + ], + "steps": 30, # 预测步数 (>0) + "centers": [[cx,cy], ...], # 可选 [B,2],若已标定则可传入 + "radii": [r, ...] # 可选 [B] + } + + 返回: + { + "pred_xy": [[[x,y], ...], ...], # [B, steps, 2] 像素 + "device": "cuda", + "centers": [[cx,cy], ...], # 用于本次变换的参数 + "radii": [r, ...] + } + +运行示例: + uv run serve_pendulum.py --ckpt ckpt/pendulum_tf_base.pt --host 0.0.0.0 --port 8000 +""" +import argparse +import math +import os +from typing import List, Optional + +import numpy as np +import torch +import torch.nn as nn +from fastapi import FastAPI, HTTPException +from fastapi.middleware.cors import CORSMiddleware +from pydantic import BaseModel, Field +import uvicorn +# 兼容直接脚本运行与包内相对导入 +try: + from .geom_utils import batch_pixels_to_unit_sincos, unit_sincos_to_pixels # type: ignore +except Exception: # noqa + from geom_utils import batch_pixels_to_unit_sincos, unit_sincos_to_pixels + +# ----------------- 与训练一致的模块 ----------------- +class PositionalEncoding(nn.Module): + def __init__(self, d_model: int, max_len: int = 4096): + super().__init__() + pe = torch.zeros(max_len, d_model) + pos = torch.arange(0, max_len, dtype=torch.float32).unsqueeze(1) + div = torch.exp(torch.arange(0, d_model, 2, dtype=torch.float32) * (-math.log(10000.0) / d_model)) + pe[:, 0::2] = torch.sin(pos * div) + pe[:, 1::2] = torch.cos(pos * div) + self.register_buffer("pe", pe.unsqueeze(0)) # [1, L, D] + + def forward(self, x): + return x + self.pe[:, : x.size(1), :] + +class TimeSeriesTransformer(nn.Module): + def __init__(self, in_dim=2, d_model=256, nhead=4, enc_layers=3, dec_layers=3, d_ff=512, dropout=0.1, out_dim=2): + super().__init__() + self.in_proj = nn.Linear(in_dim, d_model) + self.out_proj = nn.Linear(d_model, out_dim) + self.tgt_proj = nn.Linear(out_dim, d_model) + self.pos_enc = PositionalEncoding(d_model) + self.tf = nn.Transformer( + d_model=d_model, + nhead=nhead, + num_encoder_layers=enc_layers, + num_decoder_layers=dec_layers, + dim_feedforward=d_ff, + dropout=dropout, + batch_first=True, + ) + + def forward(self, src, tgt_in, tgt_mask=None): + src = self.pos_enc(self.in_proj(src)) + tgt = self.pos_enc(self.tgt_proj(tgt_in)) + out = self.tf(src, tgt, tgt_mask=tgt_mask) # [B, S_out, D] + return self.out_proj(out) + +# ----------------- 推理引擎(仅 CUDA) ----------------- +class InferenceEngine: + def __init__(self, ckpt_path: str): + if not torch.cuda.is_available(): + raise RuntimeError("CUDA 不可用:该服务仅支持 CUDA。") + self.device = torch.device("cuda") + + if not os.path.exists(ckpt_path): + raise FileNotFoundError(f"Checkpoint not found: {ckpt_path}") + + # 显式关闭 weights_only 的安全限制(信任本地 ckpt) + payload = torch.load(ckpt_path, map_location=self.device, weights_only=False) + + default_cfg = dict(d_model=256, nhead=4, enc_layers=3, dec_layers=3, d_ff=512) + ckpt_cfg = payload.get("cfg", default_cfg) + self.net = TimeSeriesTransformer(in_dim=2, out_dim=2, **ckpt_cfg).to(self.device) + self.net.load_state_dict(payload["model"], strict=True) + self.net.eval() + torch.set_grad_enabled(False) + + # 标准化参数 + self.mu = payload["mu"] # numpy + self.std = payload["std"] + self.mu_t = torch.from_numpy(self.mu).to(self.device) + self.std_t = torch.from_numpy(self.std).to(self.device) + + @staticmethod + def _unitize_t(t: torch.Tensor, eps: float = 1e-6) -> torch.Tensor: + n = torch.clamp(torch.linalg.norm(t, dim=-1, keepdim=True), min=eps) + return t / n + + def _to_raw(self, z: torch.Tensor) -> torch.Tensor: + return z * self.std_t + self.mu_t + + def _to_std(self, z: torch.Tensor) -> torch.Tensor: + return (z - self.mu_t) / self.std_t + + def rollout(self, xb_raw: torch.Tensor, steps: int) -> torch.Tensor: + """ + xb_raw: [B, S_in, 2],raw 空间(即训练时用的 (sin, cos) 或等价的 [x,y] 单位向量) + 返回:raw 空间预测 [B, steps, 2] + """ + xb_raw = self._unitize_t(xb_raw) # 规整到单位圆 + xb_std = self._to_std(xb_raw) # -> 标准化 + + tgt_tokens = xb_std[:, -1:, :2].clone() # 起始 token + for _ in range(steps): + mask = nn.Transformer.generate_square_subsequent_mask(tgt_tokens.size(1)).to(self.device) + out = self.net(xb_std, tgt_tokens, tgt_mask=mask) # 标准化空间 + next_std = out[:, -1:, :] + next_raw = self._to_raw(next_std) # -> raw + next_raw = self._unitize_t(next_raw) # 单位圆约束 + next_std = self._to_std(next_raw) # -> 标准化 + tgt_tokens = torch.cat([tgt_tokens, next_std], dim=1) + + pred_std = tgt_tokens[:, 1:, :] + pred_raw = self._to_raw(pred_std) + pred_raw = self._unitize_t(pred_raw) # 返回前再规整 + return pred_raw + +# ----------------- HTTP 层(仅 /predict) ----------------- +class PredictRequest(BaseModel): + sequences: List[List[List[float]]] = Field( + ..., description="批量序列:每个为 [S_in,2] 的像素 [x,y] 轨迹(来自图像跟踪)" + ) + steps: int = Field(..., gt=0, description="预测步数 (>0)") + # 可选:若客户端已标定可传入,以避免重复拟合 + centers: Optional[List[List[float]]] = Field( + default=None, description="可选 [B,2],每条序列的圆心 (cx,cy)" + ) + radii: Optional[List[float]] = Field( + default=None, description="可选 [B],每条序列的半径 r" + ) + +class PredictResponse(BaseModel): + pred_xy: List[List[List[float]]] # 未来像素坐标 [B, steps, 2] + device: str + centers: Optional[List[List[float]]] = None + radii: Optional[List[float]] = None + +app = FastAPI(title="Pendulum Transformer Inference (CUDA Only)", version="1.0.0") + +# CORS: 允许任意来源 +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], + allow_credentials=False, + allow_methods=["*"], + allow_headers=["*"], +) + +ENGINE: InferenceEngine | None = None # 运行时注入 + +@app.post("/predict", response_model=PredictResponse) +def predict(req: PredictRequest): + if ENGINE is None: + raise HTTPException(500, "Engine not initialized") + + try: + pix = np.array(req.sequences, dtype=np.float32) # [B, S_in, 2] + except Exception as e: + raise HTTPException(400, f"Invalid 'sequences': {e}") + + if pix.ndim != 3 or pix.shape[-1] != 2: + raise HTTPException(400, f"'sequences' must be [B, S_in, 2], got {pix.shape}") + if req.steps <= 0: + raise HTTPException(400, "'steps' must be > 0") + if pix.shape[1] < 1: + raise HTTPException(400, "Each sequence must have S_in >= 1") + + # 1) 像素 -> 单位 (sin,cos),并获取每条序列的 (cx,cy,r) + if req.centers is not None and req.radii is not None: + # 使用来自拍端的标定参数 + centers = np.array(req.centers, dtype=np.float32) # [B,2] + radii = np.array(req.radii, dtype=np.float32) # [B] + if centers.shape[0] != pix.shape[0] or centers.shape[1] != 2 or radii.shape[0] != pix.shape[0]: + raise HTTPException(400, "centers 应为 [B,2] 且 radii 为 [B]") + radii = np.clip(radii, 1e-6, None) + # 根据训练时定义:sin=(x-cx)/r, cos=(cy-y)/r + sin = (pix[..., 0] - centers[:, 0:1]) / radii[:, None] + cos = (centers[:, 1:2] - pix[..., 1]) / radii[:, None] + sc = np.stack([sin, cos], axis=-1).astype(np.float32) # [B,S,2] + else: + sc, centers, radii = batch_pixels_to_unit_sincos(pix) + + # 2) 送入引擎:期望输入为 raw (即单位向量的 sin,cos) + x = torch.from_numpy(sc).to(ENGINE.device) + pred_sc = ENGINE.rollout(x, steps=req.steps) # [B, steps, 2] 单位 (sin,cos) + pred_sc_np = pred_sc.detach().cpu().numpy() + + # 3) 单位 (sin,cos) -> 像素 + pred_pix = unit_sincos_to_pixels(pred_sc_np, centers, radii) # [B, steps, 2] + + return PredictResponse( + pred_xy=pred_pix.tolist(), device="cuda", + centers=centers.tolist(), radii=radii.tolist() + ) + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--ckpt", type=str, required=True, help="Path to checkpoint (.pt)") + parser.add_argument("--host", type=str, default="0.0.0.0") + parser.add_argument("--port", type=int, default=8000) + args = parser.parse_args() + + global ENGINE + ENGINE = InferenceEngine(args.ckpt) + print(f"[serve] Loaded ckpt from {args.ckpt} on device=cuda") + + uvicorn.run(app, host=args.host, port=args.port, log_level="info") + +if __name__ == "__main__": + main() diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..5095e9e --- /dev/null +++ b/uv.lock @@ -0,0 +1,966 @@ +version = 1 +revision = 3 +requires-python = ">=3.12" + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, +] + +[[package]] +name = "anyio" +version = "4.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "sniffio" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/b4/636b3b65173d3ce9a38ef5f0522789614e590dab6a8d505340a4efe4c567/anyio-4.10.0.tar.gz", hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6", size = 213252, upload-time = "2025-08-04T08:54:26.451Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl", hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1", size = 107213, upload-time = "2025-08-04T08:54:24.882Z" }, +] + +[[package]] +name = "click" +version = "8.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/60/6c/8ca2efa64cf75a977a0d7fac081354553ebe483345c734fb6b6515d96bbc/click-8.2.1.tar.gz", hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202", size = 286342, upload-time = "2025-05-20T23:19:49.832Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl", hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b", size = 102215, upload-time = "2025-05-20T23:19:47.796Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb", size = 293419, upload-time = "2025-07-26T12:01:21.16Z" }, + { url = "https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6", size = 273979, upload-time = "2025-07-26T12:01:22.448Z" }, + { url = "https://files.pythonhosted.org/packages/d4/1c/a12359b9b2ca3a845e8f7f9ac08bdf776114eb931392fcad91743e2ea17b/contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7", size = 332653, upload-time = "2025-07-26T12:01:24.155Z" }, + { url = "https://files.pythonhosted.org/packages/63/12/897aeebfb475b7748ea67b61e045accdfcf0d971f8a588b67108ed7f5512/contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8", size = 379536, upload-time = "2025-07-26T12:01:25.91Z" }, + { url = "https://files.pythonhosted.org/packages/43/8a/a8c584b82deb248930ce069e71576fc09bd7174bbd35183b7943fb1064fd/contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea", size = 384397, upload-time = "2025-07-26T12:01:27.152Z" }, + { url = "https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1", size = 362601, upload-time = "2025-07-26T12:01:28.808Z" }, + { url = "https://files.pythonhosted.org/packages/05/0a/a3fe3be3ee2dceb3e615ebb4df97ae6f3828aa915d3e10549ce016302bd1/contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7", size = 1331288, upload-time = "2025-07-26T12:01:31.198Z" }, + { url = "https://files.pythonhosted.org/packages/33/1d/acad9bd4e97f13f3e2b18a3977fe1b4a37ecf3d38d815333980c6c72e963/contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411", size = 1403386, upload-time = "2025-07-26T12:01:33.947Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8f/5847f44a7fddf859704217a99a23a4f6417b10e5ab1256a179264561540e/contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69", size = 185018, upload-time = "2025-07-26T12:01:35.64Z" }, + { url = "https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b", size = 226567, upload-time = "2025-07-26T12:01:36.804Z" }, + { url = "https://files.pythonhosted.org/packages/d1/e2/f05240d2c39a1ed228d8328a78b6f44cd695f7ef47beb3e684cf93604f86/contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc", size = 193655, upload-time = "2025-07-26T12:01:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5", size = 293257, upload-time = "2025-07-26T12:01:39.367Z" }, + { url = "https://files.pythonhosted.org/packages/96/e4/7adcd9c8362745b2210728f209bfbcf7d91ba868a2c5f40d8b58f54c509b/contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1", size = 274034, upload-time = "2025-07-26T12:01:40.645Z" }, + { url = "https://files.pythonhosted.org/packages/73/23/90e31ceeed1de63058a02cb04b12f2de4b40e3bef5e082a7c18d9c8ae281/contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286", size = 334672, upload-time = "2025-07-26T12:01:41.942Z" }, + { url = "https://files.pythonhosted.org/packages/ed/93/b43d8acbe67392e659e1d984700e79eb67e2acb2bd7f62012b583a7f1b55/contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5", size = 381234, upload-time = "2025-07-26T12:01:43.499Z" }, + { url = "https://files.pythonhosted.org/packages/46/3b/bec82a3ea06f66711520f75a40c8fc0b113b2a75edb36aa633eb11c4f50f/contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67", size = 385169, upload-time = "2025-07-26T12:01:45.219Z" }, + { url = "https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9", size = 362859, upload-time = "2025-07-26T12:01:46.519Z" }, + { url = "https://files.pythonhosted.org/packages/33/71/e2a7945b7de4e58af42d708a219f3b2f4cff7386e6b6ab0a0fa0033c49a9/contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659", size = 1332062, upload-time = "2025-07-26T12:01:48.964Z" }, + { url = "https://files.pythonhosted.org/packages/12/fc/4e87ac754220ccc0e807284f88e943d6d43b43843614f0a8afa469801db0/contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7", size = 1403932, upload-time = "2025-07-26T12:01:51.979Z" }, + { url = "https://files.pythonhosted.org/packages/a6/2e/adc197a37443f934594112222ac1aa7dc9a98faf9c3842884df9a9d8751d/contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d", size = 185024, upload-time = "2025-07-26T12:01:53.245Z" }, + { url = "https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263", size = 226578, upload-time = "2025-07-26T12:01:54.422Z" }, + { url = "https://files.pythonhosted.org/packages/8a/9a/2f6024a0c5995243cd63afdeb3651c984f0d2bc727fd98066d40e141ad73/contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9", size = 193524, upload-time = "2025-07-26T12:01:55.73Z" }, + { url = "https://files.pythonhosted.org/packages/c0/b3/f8a1a86bd3298513f500e5b1f5fd92b69896449f6cab6a146a5d52715479/contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d", size = 306730, upload-time = "2025-07-26T12:01:57.051Z" }, + { url = "https://files.pythonhosted.org/packages/3f/11/4780db94ae62fc0c2053909b65dc3246bd7cecfc4f8a20d957ad43aa4ad8/contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216", size = 287897, upload-time = "2025-07-26T12:01:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/15/e59f5f3ffdd6f3d4daa3e47114c53daabcb18574a26c21f03dc9e4e42ff0/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae", size = 326751, upload-time = "2025-07-26T12:02:00.343Z" }, + { url = "https://files.pythonhosted.org/packages/0f/81/03b45cfad088e4770b1dcf72ea78d3802d04200009fb364d18a493857210/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20", size = 375486, upload-time = "2025-07-26T12:02:02.128Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ba/49923366492ffbdd4486e970d421b289a670ae8cf539c1ea9a09822b371a/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99", size = 388106, upload-time = "2025-07-26T12:02:03.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/52/5b00ea89525f8f143651f9f03a0df371d3cbd2fccd21ca9b768c7a6500c2/contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b", size = 352548, upload-time = "2025-07-26T12:02:05.165Z" }, + { url = "https://files.pythonhosted.org/packages/32/1d/a209ec1a3a3452d490f6b14dd92e72280c99ae3d1e73da74f8277d4ee08f/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a", size = 1322297, upload-time = "2025-07-26T12:02:07.379Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9e/46f0e8ebdd884ca0e8877e46a3f4e633f6c9c8c4f3f6e72be3fe075994aa/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e", size = 1391023, upload-time = "2025-07-26T12:02:10.171Z" }, + { url = "https://files.pythonhosted.org/packages/b9/70/f308384a3ae9cd2209e0849f33c913f658d3326900d0ff5d378d6a1422d2/contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3", size = 196157, upload-time = "2025-07-26T12:02:11.488Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/880f890a6663b84d9e34a6f88cded89d78f0091e0045a284427cb6b18521/contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8", size = 240570, upload-time = "2025-07-26T12:02:12.754Z" }, + { url = "https://files.pythonhosted.org/packages/80/99/2adc7d8ffead633234817ef8e9a87115c8a11927a94478f6bb3d3f4d4f7d/contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301", size = 199713, upload-time = "2025-07-26T12:02:14.4Z" }, + { url = "https://files.pythonhosted.org/packages/72/8b/4546f3ab60f78c514ffb7d01a0bd743f90de36f0019d1be84d0a708a580a/contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a", size = 292189, upload-time = "2025-07-26T12:02:16.095Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e1/3542a9cb596cadd76fcef413f19c79216e002623158befe6daa03dbfa88c/contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77", size = 273251, upload-time = "2025-07-26T12:02:17.524Z" }, + { url = "https://files.pythonhosted.org/packages/b1/71/f93e1e9471d189f79d0ce2497007731c1e6bf9ef6d1d61b911430c3db4e5/contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5", size = 335810, upload-time = "2025-07-26T12:02:18.9Z" }, + { url = "https://files.pythonhosted.org/packages/91/f9/e35f4c1c93f9275d4e38681a80506b5510e9327350c51f8d4a5a724d178c/contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4", size = 382871, upload-time = "2025-07-26T12:02:20.418Z" }, + { url = "https://files.pythonhosted.org/packages/b5/71/47b512f936f66a0a900d81c396a7e60d73419868fba959c61efed7a8ab46/contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36", size = 386264, upload-time = "2025-07-26T12:02:21.916Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/9ff93450ba96b09c7c2b3f81c94de31c89f92292f1380261bd7195bea4ea/contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3", size = 363819, upload-time = "2025-07-26T12:02:23.759Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a6/0b185d4cc480ee494945cde102cb0149ae830b5fa17bf855b95f2e70ad13/contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b", size = 1333650, upload-time = "2025-07-26T12:02:26.181Z" }, + { url = "https://files.pythonhosted.org/packages/43/d7/afdc95580ca56f30fbcd3060250f66cedbde69b4547028863abd8aa3b47e/contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36", size = 1404833, upload-time = "2025-07-26T12:02:28.782Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/366af18a6d386f41132a48f033cbd2102e9b0cf6345d35ff0826cd984566/contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d", size = 189692, upload-time = "2025-07-26T12:02:30.128Z" }, + { url = "https://files.pythonhosted.org/packages/7d/c2/57f54b03d0f22d4044b8afb9ca0e184f8b1afd57b4f735c2fa70883dc601/contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd", size = 232424, upload-time = "2025-07-26T12:02:31.395Z" }, + { url = "https://files.pythonhosted.org/packages/18/79/a9416650df9b525737ab521aa181ccc42d56016d2123ddcb7b58e926a42c/contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339", size = 198300, upload-time = "2025-07-26T12:02:32.956Z" }, + { url = "https://files.pythonhosted.org/packages/1f/42/38c159a7d0f2b7b9c04c64ab317042bb6952b713ba875c1681529a2932fe/contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772", size = 306769, upload-time = "2025-07-26T12:02:34.2Z" }, + { url = "https://files.pythonhosted.org/packages/c3/6c/26a8205f24bca10974e77460de68d3d7c63e282e23782f1239f226fcae6f/contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77", size = 287892, upload-time = "2025-07-26T12:02:35.807Z" }, + { url = "https://files.pythonhosted.org/packages/66/06/8a475c8ab718ebfd7925661747dbb3c3ee9c82ac834ccb3570be49d129f4/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13", size = 326748, upload-time = "2025-07-26T12:02:37.193Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a3/c5ca9f010a44c223f098fccd8b158bb1cb287378a31ac141f04730dc49be/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe", size = 375554, upload-time = "2025-07-26T12:02:38.894Z" }, + { url = "https://files.pythonhosted.org/packages/80/5b/68bd33ae63fac658a4145088c1e894405e07584a316738710b636c6d0333/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f", size = 388118, upload-time = "2025-07-26T12:02:40.642Z" }, + { url = "https://files.pythonhosted.org/packages/40/52/4c285a6435940ae25d7410a6c36bda5145839bc3f0beb20c707cda18b9d2/contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0", size = 352555, upload-time = "2025-07-26T12:02:42.25Z" }, + { url = "https://files.pythonhosted.org/packages/24/ee/3e81e1dd174f5c7fefe50e85d0892de05ca4e26ef1c9a59c2a57e43b865a/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4", size = 1322295, upload-time = "2025-07-26T12:02:44.668Z" }, + { url = "https://files.pythonhosted.org/packages/3c/b2/6d913d4d04e14379de429057cd169e5e00f6c2af3bb13e1710bcbdb5da12/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f", size = 1391027, upload-time = "2025-07-26T12:02:47.09Z" }, + { url = "https://files.pythonhosted.org/packages/93/8a/68a4ec5c55a2971213d29a9374913f7e9f18581945a7a31d1a39b5d2dfe5/contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae", size = 202428, upload-time = "2025-07-26T12:02:48.691Z" }, + { url = "https://files.pythonhosted.org/packages/fa/96/fd9f641ffedc4fa3ace923af73b9d07e869496c9cc7a459103e6e978992f/contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc", size = 250331, upload-time = "2025-07-26T12:02:50.137Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8c/469afb6465b853afff216f9528ffda78a915ff880ed58813ba4faf4ba0b6/contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b", size = 203831, upload-time = "2025-07-26T12:02:51.449Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "fastapi" +version = "0.116.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic" }, + { name = "starlette" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/d7/6c8b3bfe33eeffa208183ec037fee0cce9f7f024089ab1c5d12ef04bd27c/fastapi-0.116.1.tar.gz", hash = "sha256:ed52cbf946abfd70c5a0dccb24673f0670deeb517a88b3544d03c2a6bf283143", size = 296485, upload-time = "2025-07-11T16:22:32.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/47/d63c60f59a59467fda0f93f46335c9d18526d7071f025cb5b89d5353ea42/fastapi-0.116.1-py3-none-any.whl", hash = "sha256:c46ac7c312df840f0c9e220f7964bada936781bc4e2e6eb71f1c4d7553786565", size = 95631, upload-time = "2025-07-11T16:22:30.485Z" }, +] + +[[package]] +name = "filelock" +version = "3.19.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/40/bb/0ab3e58d22305b6f5440629d20683af28959bf793d98d11950e305c1c326/filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58", size = 17687, upload-time = "2025-08-14T16:56:03.016Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d", size = 15988, upload-time = "2025-08-14T16:56:01.633Z" }, +] + +[[package]] +name = "fonttools" +version = "4.59.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/a5/fba25f9fbdab96e26dedcaeeba125e5f05a09043bf888e0305326e55685b/fonttools-4.59.2.tar.gz", hash = "sha256:e72c0749b06113f50bcb80332364c6be83a9582d6e3db3fe0b280f996dc2ef22", size = 3540889, upload-time = "2025-08-27T16:40:30.97Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/3d/1f45db2df51e7bfa55492e8f23f383d372200be3a0ded4bf56a92753dd1f/fonttools-4.59.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:82906d002c349cad647a7634b004825a7335f8159d0d035ae89253b4abf6f3ea", size = 2769711, upload-time = "2025-08-27T16:39:04.423Z" }, + { url = "https://files.pythonhosted.org/packages/29/df/cd236ab32a8abfd11558f296e064424258db5edefd1279ffdbcfd4fd8b76/fonttools-4.59.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a10c1bd7644dc58f8862d8ba0cf9fb7fef0af01ea184ba6ce3f50ab7dfe74d5a", size = 2340225, upload-time = "2025-08-27T16:39:06.143Z" }, + { url = "https://files.pythonhosted.org/packages/98/12/b6f9f964fe6d4b4dd4406bcbd3328821c3de1f909ffc3ffa558fe72af48c/fonttools-4.59.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:738f31f23e0339785fd67652a94bc69ea49e413dfdb14dcb8c8ff383d249464e", size = 4912766, upload-time = "2025-08-27T16:39:08.138Z" }, + { url = "https://files.pythonhosted.org/packages/73/78/82bde2f2d2c306ef3909b927363170b83df96171f74e0ccb47ad344563cd/fonttools-4.59.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ec99f9bdfee9cdb4a9172f9e8fd578cce5feb231f598909e0aecf5418da4f25", size = 4955178, upload-time = "2025-08-27T16:39:10.094Z" }, + { url = "https://files.pythonhosted.org/packages/92/77/7de766afe2d31dda8ee46d7e479f35c7d48747e558961489a2d6e3a02bd4/fonttools-4.59.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0476ea74161322e08c7a982f83558a2b81b491509984523a1a540baf8611cc31", size = 4897898, upload-time = "2025-08-27T16:39:12.087Z" }, + { url = "https://files.pythonhosted.org/packages/c5/77/ce0e0b905d62a06415fda9f2b2e109a24a5db54a59502b769e9e297d2242/fonttools-4.59.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:95922a922daa1f77cc72611747c156cfb38030ead72436a2c551d30ecef519b9", size = 5049144, upload-time = "2025-08-27T16:39:13.84Z" }, + { url = "https://files.pythonhosted.org/packages/d9/ea/870d93aefd23fff2e07cbeebdc332527868422a433c64062c09d4d5e7fe6/fonttools-4.59.2-cp312-cp312-win32.whl", hash = "sha256:39ad9612c6a622726a6a130e8ab15794558591f999673f1ee7d2f3d30f6a3e1c", size = 2206473, upload-time = "2025-08-27T16:39:15.854Z" }, + { url = "https://files.pythonhosted.org/packages/61/c4/e44bad000c4a4bb2e9ca11491d266e857df98ab6d7428441b173f0fe2517/fonttools-4.59.2-cp312-cp312-win_amd64.whl", hash = "sha256:980fd7388e461b19a881d35013fec32c713ffea1fc37aef2f77d11f332dfd7da", size = 2254706, upload-time = "2025-08-27T16:39:17.893Z" }, + { url = "https://files.pythonhosted.org/packages/13/7b/d0d3b9431642947b5805201fbbbe938a47b70c76685ef1f0cb5f5d7140d6/fonttools-4.59.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:381bde13216ba09489864467f6bc0c57997bd729abfbb1ce6f807ba42c06cceb", size = 2761563, upload-time = "2025-08-27T16:39:20.286Z" }, + { url = "https://files.pythonhosted.org/packages/76/be/fc5fe58dd76af7127b769b68071dbc32d4b95adc8b58d1d28d42d93c90f2/fonttools-4.59.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f33839aa091f7eef4e9078f5b7ab1b8ea4b1d8a50aeaef9fdb3611bba80869ec", size = 2335671, upload-time = "2025-08-27T16:39:22.027Z" }, + { url = "https://files.pythonhosted.org/packages/f2/9f/bf231c2a3fac99d1d7f1d89c76594f158693f981a4aa02be406e9f036832/fonttools-4.59.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6235fc06bcbdb40186f483ba9d5d68f888ea68aa3c8dac347e05a7c54346fbc8", size = 4893967, upload-time = "2025-08-27T16:39:23.664Z" }, + { url = "https://files.pythonhosted.org/packages/26/a9/d46d2ad4fcb915198504d6727f83aa07f46764c64f425a861aa38756c9fd/fonttools-4.59.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:83ad6e5d06ef3a2884c4fa6384a20d6367b5cfe560e3b53b07c9dc65a7020e73", size = 4951986, upload-time = "2025-08-27T16:39:25.379Z" }, + { url = "https://files.pythonhosted.org/packages/07/90/1cc8d7dd8f707dfeeca472b82b898d3add0ebe85b1f645690dcd128ee63f/fonttools-4.59.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d029804c70fddf90be46ed5305c136cae15800a2300cb0f6bba96d48e770dde0", size = 4891630, upload-time = "2025-08-27T16:39:27.494Z" }, + { url = "https://files.pythonhosted.org/packages/d8/04/f0345b0d9fe67d65aa8d3f2d4cbf91d06f111bc7b8d802e65914eb06194d/fonttools-4.59.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:95807a3b5e78f2714acaa26a33bc2143005cc05c0217b322361a772e59f32b89", size = 5035116, upload-time = "2025-08-27T16:39:29.406Z" }, + { url = "https://files.pythonhosted.org/packages/d7/7d/5ba5eefffd243182fbd067cdbfeb12addd4e5aec45011b724c98a344ea33/fonttools-4.59.2-cp313-cp313-win32.whl", hash = "sha256:b3ebda00c3bb8f32a740b72ec38537d54c7c09f383a4cfefb0b315860f825b08", size = 2204907, upload-time = "2025-08-27T16:39:31.42Z" }, + { url = "https://files.pythonhosted.org/packages/ea/a9/be7219fc64a6026cc0aded17fa3720f9277001c185434230bd351bf678e6/fonttools-4.59.2-cp313-cp313-win_amd64.whl", hash = "sha256:a72155928d7053bbde499d32a9c77d3f0f3d29ae72b5a121752481bcbd71e50f", size = 2253742, upload-time = "2025-08-27T16:39:33.079Z" }, + { url = "https://files.pythonhosted.org/packages/fc/c7/486580d00be6fa5d45e41682e5ffa5c809f3d25773c6f39628d60f333521/fonttools-4.59.2-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:d09e487d6bfbe21195801323ba95c91cb3523f0fcc34016454d4d9ae9eaa57fe", size = 2762444, upload-time = "2025-08-27T16:39:34.759Z" }, + { url = "https://files.pythonhosted.org/packages/d3/9b/950ea9b7b764ceb8d18645c62191e14ce62124d8e05cb32a4dc5e65fde0b/fonttools-4.59.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:dec2f22486d7781087b173799567cffdcc75e9fb2f1c045f05f8317ccce76a3e", size = 2333256, upload-time = "2025-08-27T16:39:40.777Z" }, + { url = "https://files.pythonhosted.org/packages/9b/4d/8ee9d563126de9002eede950cde0051be86cc4e8c07c63eca0c9fc95734a/fonttools-4.59.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1647201af10993090120da2e66e9526c4e20e88859f3e34aa05b8c24ded2a564", size = 4834846, upload-time = "2025-08-27T16:39:42.885Z" }, + { url = "https://files.pythonhosted.org/packages/03/26/f26d947b0712dce3d118e92ce30ca88f98938b066498f60d0ee000a892ae/fonttools-4.59.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:47742c33fe65f41eabed36eec2d7313a8082704b7b808752406452f766c573fc", size = 4930871, upload-time = "2025-08-27T16:39:44.818Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/ebe878061a5a5e6b6502f0548489e01100f7e6c0049846e6546ba19a3ab4/fonttools-4.59.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:92ac2d45794f95d1ad4cb43fa07e7e3776d86c83dc4b9918cf82831518165b4b", size = 4876971, upload-time = "2025-08-27T16:39:47.027Z" }, + { url = "https://files.pythonhosted.org/packages/eb/0d/0d22e3a20ac566836098d30718092351935487e3271fd57385db1adb2fde/fonttools-4.59.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:fa9ecaf2dcef8941fb5719e16322345d730f4c40599bbf47c9753de40eb03882", size = 4987478, upload-time = "2025-08-27T16:39:48.774Z" }, + { url = "https://files.pythonhosted.org/packages/3b/a3/960cc83182a408ffacc795e61b5f698c6f7b0cfccf23da4451c39973f3c8/fonttools-4.59.2-cp314-cp314-win32.whl", hash = "sha256:a8d40594982ed858780e18a7e4c80415af65af0f22efa7de26bdd30bf24e1e14", size = 2208640, upload-time = "2025-08-27T16:39:50.592Z" }, + { url = "https://files.pythonhosted.org/packages/d8/74/55e5c57c414fa3965fee5fc036ed23f26a5c4e9e10f7f078a54ff9c7dfb7/fonttools-4.59.2-cp314-cp314-win_amd64.whl", hash = "sha256:9cde8b6a6b05f68516573523f2013a3574cb2c75299d7d500f44de82ba947b80", size = 2258457, upload-time = "2025-08-27T16:39:52.611Z" }, + { url = "https://files.pythonhosted.org/packages/e1/dc/8e4261dc591c5cfee68fecff3ffee2a9b29e1edc4c4d9cbafdc5aefe74ee/fonttools-4.59.2-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:036cd87a2dbd7ef72f7b68df8314ced00b8d9973aee296f2464d06a836aeb9a9", size = 2829901, upload-time = "2025-08-27T16:39:55.014Z" }, + { url = "https://files.pythonhosted.org/packages/fb/05/331538dcf21fd6331579cd628268150e85210d0d2bdae20f7598c2b36c05/fonttools-4.59.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:14870930181493b1d740b6f25483e20185e5aea58aec7d266d16da7be822b4bb", size = 2362717, upload-time = "2025-08-27T16:39:56.843Z" }, + { url = "https://files.pythonhosted.org/packages/60/ae/d26428ca9ede809c0a93f0af91f44c87433dc0251e2aec333da5ed00d38f/fonttools-4.59.2-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7ff58ea1eb8fc7e05e9a949419f031890023f8785c925b44d6da17a6a7d6e85d", size = 4835120, upload-time = "2025-08-27T16:39:59.06Z" }, + { url = "https://files.pythonhosted.org/packages/07/c4/0f6ac15895de509e07688cb1d45f1ae583adbaa0fa5a5699d73f3bd58ca0/fonttools-4.59.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6dee142b8b3096514c96ad9e2106bf039e2fe34a704c587585b569a36df08c3c", size = 5071115, upload-time = "2025-08-27T16:40:01.009Z" }, + { url = "https://files.pythonhosted.org/packages/b2/b6/147a711b7ecf7ea39f9da9422a55866f6dd5747c2f36b3b0a7a7e0c6820b/fonttools-4.59.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8991bdbae39cf78bcc9cd3d81f6528df1f83f2e7c23ccf6f990fa1f0b6e19708", size = 4943905, upload-time = "2025-08-27T16:40:03.179Z" }, + { url = "https://files.pythonhosted.org/packages/5b/4e/2ab19006646b753855e2b02200fa1cabb75faa4eeca4ef289f269a936974/fonttools-4.59.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:53c1a411b7690042535a4f0edf2120096a39a506adeb6c51484a232e59f2aa0c", size = 4960313, upload-time = "2025-08-27T16:40:05.45Z" }, + { url = "https://files.pythonhosted.org/packages/98/3d/df77907e5be88adcca93cc2cee00646d039da220164be12bee028401e1cf/fonttools-4.59.2-cp314-cp314t-win32.whl", hash = "sha256:59d85088e29fa7a8f87d19e97a1beae2a35821ee48d8ef6d2c4f965f26cb9f8a", size = 2269719, upload-time = "2025-08-27T16:40:07.553Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/d4c4bc5b50275449a9a908283b567caa032a94505fe1976e17f994faa6be/fonttools-4.59.2-cp314-cp314t-win_amd64.whl", hash = "sha256:7ad5d8d8cc9e43cb438b3eb4a0094dd6d4088daa767b0a24d52529361fd4c199", size = 2333169, upload-time = "2025-08-27T16:40:09.656Z" }, + { url = "https://files.pythonhosted.org/packages/65/a4/d2f7be3c86708912c02571db0b550121caab8cd88a3c0aacb9cfa15ea66e/fonttools-4.59.2-py3-none-any.whl", hash = "sha256:8bd0f759020e87bb5d323e6283914d9bf4ae35a7307dafb2cbd1e379e720ad37", size = 1132315, upload-time = "2025-08-27T16:40:28.984Z" }, +] + +[[package]] +name = "fsspec" +version = "2025.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/de/e0/bab50af11c2d75c9c4a2a26a5254573c0bd97cea152254401510950486fa/fsspec-2025.9.0.tar.gz", hash = "sha256:19fd429483d25d28b65ec68f9f4adc16c17ea2c7c7bf54ec61360d478fb19c19", size = 304847, upload-time = "2025-09-02T19:10:49.215Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/71/70db47e4f6ce3e5c37a607355f80da8860a33226be640226ac52cb05ef2e/fsspec-2025.9.0-py3-none-any.whl", hash = "sha256:530dc2a2af60a414a832059574df4a6e10cce927f6f4a78209390fe38955cfb7", size = 199289, upload-time = "2025-09-02T19:10:47.708Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.4.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/3c/85844f1b0feb11ee581ac23fe5fce65cd049a200c1446708cc1b7f922875/kiwisolver-1.4.9.tar.gz", hash = "sha256:c3b22c26c6fd6811b0ae8363b95ca8ce4ea3c202d3d0975b2914310ceb1bcc4d", size = 97564, upload-time = "2025-08-10T21:27:49.279Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/c9/13573a747838aeb1c76e3267620daa054f4152444d1f3d1a2324b78255b5/kiwisolver-1.4.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ac5a486ac389dddcc5bef4f365b6ae3ffff2c433324fb38dd35e3fab7c957999", size = 123686, upload-time = "2025-08-10T21:26:10.034Z" }, + { url = "https://files.pythonhosted.org/packages/51/ea/2ecf727927f103ffd1739271ca19c424d0e65ea473fbaeea1c014aea93f6/kiwisolver-1.4.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f2ba92255faa7309d06fe44c3a4a97efe1c8d640c2a79a5ef728b685762a6fd2", size = 66460, upload-time = "2025-08-10T21:26:11.083Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/51f5464373ce2aeb5194508298a508b6f21d3867f499556263c64c621914/kiwisolver-1.4.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a2899935e724dd1074cb568ce7ac0dce28b2cd6ab539c8e001a8578eb106d14", size = 64952, upload-time = "2025-08-10T21:26:12.058Z" }, + { url = "https://files.pythonhosted.org/packages/70/90/6d240beb0f24b74371762873e9b7f499f1e02166a2d9c5801f4dbf8fa12e/kiwisolver-1.4.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f6008a4919fdbc0b0097089f67a1eb55d950ed7e90ce2cc3e640abadd2757a04", size = 1474756, upload-time = "2025-08-10T21:26:13.096Z" }, + { url = "https://files.pythonhosted.org/packages/12/42/f36816eaf465220f683fb711efdd1bbf7a7005a2473d0e4ed421389bd26c/kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:67bb8b474b4181770f926f7b7d2f8c0248cbcb78b660fdd41a47054b28d2a752", size = 1276404, upload-time = "2025-08-10T21:26:14.457Z" }, + { url = "https://files.pythonhosted.org/packages/2e/64/bc2de94800adc830c476dce44e9b40fd0809cddeef1fde9fcf0f73da301f/kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2327a4a30d3ee07d2fbe2e7933e8a37c591663b96ce42a00bc67461a87d7df77", size = 1294410, upload-time = "2025-08-10T21:26:15.73Z" }, + { url = "https://files.pythonhosted.org/packages/5f/42/2dc82330a70aa8e55b6d395b11018045e58d0bb00834502bf11509f79091/kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a08b491ec91b1d5053ac177afe5290adacf1f0f6307d771ccac5de30592d198", size = 1343631, upload-time = "2025-08-10T21:26:17.045Z" }, + { url = "https://files.pythonhosted.org/packages/22/fd/f4c67a6ed1aab149ec5a8a401c323cee7a1cbe364381bb6c9c0d564e0e20/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8fc5c867c22b828001b6a38d2eaeb88160bf5783c6cb4a5e440efc981ce286d", size = 2224963, upload-time = "2025-08-10T21:26:18.737Z" }, + { url = "https://files.pythonhosted.org/packages/45/aa/76720bd4cb3713314677d9ec94dcc21ced3f1baf4830adde5bb9b2430a5f/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:3b3115b2581ea35bb6d1f24a4c90af37e5d9b49dcff267eeed14c3893c5b86ab", size = 2321295, upload-time = "2025-08-10T21:26:20.11Z" }, + { url = "https://files.pythonhosted.org/packages/80/19/d3ec0d9ab711242f56ae0dc2fc5d70e298bb4a1f9dfab44c027668c673a1/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858e4c22fb075920b96a291928cb7dea5644e94c0ee4fcd5af7e865655e4ccf2", size = 2487987, upload-time = "2025-08-10T21:26:21.49Z" }, + { url = "https://files.pythonhosted.org/packages/39/e9/61e4813b2c97e86b6fdbd4dd824bf72d28bcd8d4849b8084a357bc0dd64d/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ed0fecd28cc62c54b262e3736f8bb2512d8dcfdc2bcf08be5f47f96bf405b145", size = 2291817, upload-time = "2025-08-10T21:26:22.812Z" }, + { url = "https://files.pythonhosted.org/packages/a0/41/85d82b0291db7504da3c2defe35c9a8a5c9803a730f297bd823d11d5fb77/kiwisolver-1.4.9-cp312-cp312-win_amd64.whl", hash = "sha256:f68208a520c3d86ea51acf688a3e3002615a7f0238002cccc17affecc86a8a54", size = 73895, upload-time = "2025-08-10T21:26:24.37Z" }, + { url = "https://files.pythonhosted.org/packages/e2/92/5f3068cf15ee5cb624a0c7596e67e2a0bb2adee33f71c379054a491d07da/kiwisolver-1.4.9-cp312-cp312-win_arm64.whl", hash = "sha256:2c1a4f57df73965f3f14df20b80ee29e6a7930a57d2d9e8491a25f676e197c60", size = 64992, upload-time = "2025-08-10T21:26:25.732Z" }, + { url = "https://files.pythonhosted.org/packages/31/c1/c2686cda909742ab66c7388e9a1a8521a59eb89f8bcfbee28fc980d07e24/kiwisolver-1.4.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5d0432ccf1c7ab14f9949eec60c5d1f924f17c037e9f8b33352fa05799359b8", size = 123681, upload-time = "2025-08-10T21:26:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/ca/f0/f44f50c9f5b1a1860261092e3bc91ecdc9acda848a8b8c6abfda4a24dd5c/kiwisolver-1.4.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efb3a45b35622bb6c16dbfab491a8f5a391fe0e9d45ef32f4df85658232ca0e2", size = 66464, upload-time = "2025-08-10T21:26:27.733Z" }, + { url = "https://files.pythonhosted.org/packages/2d/7a/9d90a151f558e29c3936b8a47ac770235f436f2120aca41a6d5f3d62ae8d/kiwisolver-1.4.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a12cf6398e8a0a001a059747a1cbf24705e18fe413bc22de7b3d15c67cffe3f", size = 64961, upload-time = "2025-08-10T21:26:28.729Z" }, + { url = "https://files.pythonhosted.org/packages/e9/e9/f218a2cb3a9ffbe324ca29a9e399fa2d2866d7f348ec3a88df87fc248fc5/kiwisolver-1.4.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b67e6efbf68e077dd71d1a6b37e43e1a99d0bff1a3d51867d45ee8908b931098", size = 1474607, upload-time = "2025-08-10T21:26:29.798Z" }, + { url = "https://files.pythonhosted.org/packages/d9/28/aac26d4c882f14de59041636292bc838db8961373825df23b8eeb807e198/kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5656aa670507437af0207645273ccdfee4f14bacd7f7c67a4306d0dcaeaf6eed", size = 1276546, upload-time = "2025-08-10T21:26:31.401Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ad/8bfc1c93d4cc565e5069162f610ba2f48ff39b7de4b5b8d93f69f30c4bed/kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bfc08add558155345129c7803b3671cf195e6a56e7a12f3dde7c57d9b417f525", size = 1294482, upload-time = "2025-08-10T21:26:32.721Z" }, + { url = "https://files.pythonhosted.org/packages/da/f1/6aca55ff798901d8ce403206d00e033191f63d82dd708a186e0ed2067e9c/kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:40092754720b174e6ccf9e845d0d8c7d8e12c3d71e7fc35f55f3813e96376f78", size = 1343720, upload-time = "2025-08-10T21:26:34.032Z" }, + { url = "https://files.pythonhosted.org/packages/d1/91/eed031876c595c81d90d0f6fc681ece250e14bf6998c3d7c419466b523b7/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:497d05f29a1300d14e02e6441cf0f5ee81c1ff5a304b0d9fb77423974684e08b", size = 2224907, upload-time = "2025-08-10T21:26:35.824Z" }, + { url = "https://files.pythonhosted.org/packages/e9/ec/4d1925f2e49617b9cca9c34bfa11adefad49d00db038e692a559454dfb2e/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdd1a81a1860476eb41ac4bc1e07b3f07259e6d55bbf739b79c8aaedcf512799", size = 2321334, upload-time = "2025-08-10T21:26:37.534Z" }, + { url = "https://files.pythonhosted.org/packages/43/cb/450cd4499356f68802750c6ddc18647b8ea01ffa28f50d20598e0befe6e9/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e6b93f13371d341afee3be9f7c5964e3fe61d5fa30f6a30eb49856935dfe4fc3", size = 2488313, upload-time = "2025-08-10T21:26:39.191Z" }, + { url = "https://files.pythonhosted.org/packages/71/67/fc76242bd99f885651128a5d4fa6083e5524694b7c88b489b1b55fdc491d/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d75aa530ccfaa593da12834b86a0724f58bff12706659baa9227c2ccaa06264c", size = 2291970, upload-time = "2025-08-10T21:26:40.828Z" }, + { url = "https://files.pythonhosted.org/packages/75/bd/f1a5d894000941739f2ae1b65a32892349423ad49c2e6d0771d0bad3fae4/kiwisolver-1.4.9-cp313-cp313-win_amd64.whl", hash = "sha256:dd0a578400839256df88c16abddf9ba14813ec5f21362e1fe65022e00c883d4d", size = 73894, upload-time = "2025-08-10T21:26:42.33Z" }, + { url = "https://files.pythonhosted.org/packages/95/38/dce480814d25b99a391abbddadc78f7c117c6da34be68ca8b02d5848b424/kiwisolver-1.4.9-cp313-cp313-win_arm64.whl", hash = "sha256:d4188e73af84ca82468f09cadc5ac4db578109e52acb4518d8154698d3a87ca2", size = 64995, upload-time = "2025-08-10T21:26:43.889Z" }, + { url = "https://files.pythonhosted.org/packages/e2/37/7d218ce5d92dadc5ebdd9070d903e0c7cf7edfe03f179433ac4d13ce659c/kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:5a0f2724dfd4e3b3ac5a82436a8e6fd16baa7d507117e4279b660fe8ca38a3a1", size = 126510, upload-time = "2025-08-10T21:26:44.915Z" }, + { url = "https://files.pythonhosted.org/packages/23/b0/e85a2b48233daef4b648fb657ebbb6f8367696a2d9548a00b4ee0eb67803/kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:1b11d6a633e4ed84fc0ddafd4ebfd8ea49b3f25082c04ad12b8315c11d504dc1", size = 67903, upload-time = "2025-08-10T21:26:45.934Z" }, + { url = "https://files.pythonhosted.org/packages/44/98/f2425bc0113ad7de24da6bb4dae1343476e95e1d738be7c04d31a5d037fd/kiwisolver-1.4.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61874cdb0a36016354853593cffc38e56fc9ca5aa97d2c05d3dcf6922cd55a11", size = 66402, upload-time = "2025-08-10T21:26:47.101Z" }, + { url = "https://files.pythonhosted.org/packages/98/d8/594657886df9f34c4177cc353cc28ca7e6e5eb562d37ccc233bff43bbe2a/kiwisolver-1.4.9-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:60c439763a969a6af93b4881db0eed8fadf93ee98e18cbc35bc8da868d0c4f0c", size = 1582135, upload-time = "2025-08-10T21:26:48.665Z" }, + { url = "https://files.pythonhosted.org/packages/5c/c6/38a115b7170f8b306fc929e166340c24958347308ea3012c2b44e7e295db/kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92a2f997387a1b79a75e7803aa7ded2cfbe2823852ccf1ba3bcf613b62ae3197", size = 1389409, upload-time = "2025-08-10T21:26:50.335Z" }, + { url = "https://files.pythonhosted.org/packages/bf/3b/e04883dace81f24a568bcee6eb3001da4ba05114afa622ec9b6fafdc1f5e/kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a31d512c812daea6d8b3be3b2bfcbeb091dbb09177706569bcfc6240dcf8b41c", size = 1401763, upload-time = "2025-08-10T21:26:51.867Z" }, + { url = "https://files.pythonhosted.org/packages/9f/80/20ace48e33408947af49d7d15c341eaee69e4e0304aab4b7660e234d6288/kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:52a15b0f35dad39862d376df10c5230155243a2c1a436e39eb55623ccbd68185", size = 1453643, upload-time = "2025-08-10T21:26:53.592Z" }, + { url = "https://files.pythonhosted.org/packages/64/31/6ce4380a4cd1f515bdda976a1e90e547ccd47b67a1546d63884463c92ca9/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a30fd6fdef1430fd9e1ba7b3398b5ee4e2887783917a687d86ba69985fb08748", size = 2330818, upload-time = "2025-08-10T21:26:55.051Z" }, + { url = "https://files.pythonhosted.org/packages/fa/e9/3f3fcba3bcc7432c795b82646306e822f3fd74df0ee81f0fa067a1f95668/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cc9617b46837c6468197b5945e196ee9ca43057bb7d9d1ae688101e4e1dddf64", size = 2419963, upload-time = "2025-08-10T21:26:56.421Z" }, + { url = "https://files.pythonhosted.org/packages/99/43/7320c50e4133575c66e9f7dadead35ab22d7c012a3b09bb35647792b2a6d/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:0ab74e19f6a2b027ea4f845a78827969af45ce790e6cb3e1ebab71bdf9f215ff", size = 2594639, upload-time = "2025-08-10T21:26:57.882Z" }, + { url = "https://files.pythonhosted.org/packages/65/d6/17ae4a270d4a987ef8a385b906d2bdfc9fce502d6dc0d3aea865b47f548c/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dba5ee5d3981160c28d5490f0d1b7ed730c22470ff7f6cc26cfcfaacb9896a07", size = 2391741, upload-time = "2025-08-10T21:26:59.237Z" }, + { url = "https://files.pythonhosted.org/packages/2a/8f/8f6f491d595a9e5912971f3f863d81baddccc8a4d0c3749d6a0dd9ffc9df/kiwisolver-1.4.9-cp313-cp313t-win_arm64.whl", hash = "sha256:0749fd8f4218ad2e851e11cc4dc05c7cbc0cbc4267bdfdb31782e65aace4ee9c", size = 68646, upload-time = "2025-08-10T21:27:00.52Z" }, + { url = "https://files.pythonhosted.org/packages/6b/32/6cc0fbc9c54d06c2969faa9c1d29f5751a2e51809dd55c69055e62d9b426/kiwisolver-1.4.9-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:9928fe1eb816d11ae170885a74d074f57af3a0d65777ca47e9aeb854a1fba386", size = 123806, upload-time = "2025-08-10T21:27:01.537Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/2bfb1d4a4823d92e8cbb420fe024b8d2167f72079b3bb941207c42570bdf/kiwisolver-1.4.9-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d0005b053977e7b43388ddec89fa567f43d4f6d5c2c0affe57de5ebf290dc552", size = 66605, upload-time = "2025-08-10T21:27:03.335Z" }, + { url = "https://files.pythonhosted.org/packages/f7/69/00aafdb4e4509c2ca6064646cba9cd4b37933898f426756adb2cb92ebbed/kiwisolver-1.4.9-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2635d352d67458b66fd0667c14cb1d4145e9560d503219034a18a87e971ce4f3", size = 64925, upload-time = "2025-08-10T21:27:04.339Z" }, + { url = "https://files.pythonhosted.org/packages/43/dc/51acc6791aa14e5cb6d8a2e28cefb0dc2886d8862795449d021334c0df20/kiwisolver-1.4.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:767c23ad1c58c9e827b649a9ab7809fd5fd9db266a9cf02b0e926ddc2c680d58", size = 1472414, upload-time = "2025-08-10T21:27:05.437Z" }, + { url = "https://files.pythonhosted.org/packages/3d/bb/93fa64a81db304ac8a246f834d5094fae4b13baf53c839d6bb6e81177129/kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72d0eb9fba308b8311685c2268cf7d0a0639a6cd027d8128659f72bdd8a024b4", size = 1281272, upload-time = "2025-08-10T21:27:07.063Z" }, + { url = "https://files.pythonhosted.org/packages/70/e6/6df102916960fb8d05069d4bd92d6d9a8202d5a3e2444494e7cd50f65b7a/kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f68e4f3eeca8fb22cc3d731f9715a13b652795ef657a13df1ad0c7dc0e9731df", size = 1298578, upload-time = "2025-08-10T21:27:08.452Z" }, + { url = "https://files.pythonhosted.org/packages/7c/47/e142aaa612f5343736b087864dbaebc53ea8831453fb47e7521fa8658f30/kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d84cd4061ae292d8ac367b2c3fa3aad11cb8625a95d135fe93f286f914f3f5a6", size = 1345607, upload-time = "2025-08-10T21:27:10.125Z" }, + { url = "https://files.pythonhosted.org/packages/54/89/d641a746194a0f4d1a3670fb900d0dbaa786fb98341056814bc3f058fa52/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a60ea74330b91bd22a29638940d115df9dc00af5035a9a2a6ad9399ffb4ceca5", size = 2230150, upload-time = "2025-08-10T21:27:11.484Z" }, + { url = "https://files.pythonhosted.org/packages/aa/6b/5ee1207198febdf16ac11f78c5ae40861b809cbe0e6d2a8d5b0b3044b199/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ce6a3a4e106cf35c2d9c4fa17c05ce0b180db622736845d4315519397a77beaf", size = 2325979, upload-time = "2025-08-10T21:27:12.917Z" }, + { url = "https://files.pythonhosted.org/packages/fc/ff/b269eefd90f4ae14dcc74973d5a0f6d28d3b9bb1afd8c0340513afe6b39a/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:77937e5e2a38a7b48eef0585114fe7930346993a88060d0bf886086d2aa49ef5", size = 2491456, upload-time = "2025-08-10T21:27:14.353Z" }, + { url = "https://files.pythonhosted.org/packages/fc/d4/10303190bd4d30de547534601e259a4fbf014eed94aae3e5521129215086/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:24c175051354f4a28c5d6a31c93906dc653e2bf234e8a4bbfb964892078898ce", size = 2294621, upload-time = "2025-08-10T21:27:15.808Z" }, + { url = "https://files.pythonhosted.org/packages/28/e0/a9a90416fce5c0be25742729c2ea52105d62eda6c4be4d803c2a7be1fa50/kiwisolver-1.4.9-cp314-cp314-win_amd64.whl", hash = "sha256:0763515d4df10edf6d06a3c19734e2566368980d21ebec439f33f9eb936c07b7", size = 75417, upload-time = "2025-08-10T21:27:17.436Z" }, + { url = "https://files.pythonhosted.org/packages/1f/10/6949958215b7a9a264299a7db195564e87900f709db9245e4ebdd3c70779/kiwisolver-1.4.9-cp314-cp314-win_arm64.whl", hash = "sha256:0e4e2bf29574a6a7b7f6cb5fa69293b9f96c928949ac4a53ba3f525dffb87f9c", size = 66582, upload-time = "2025-08-10T21:27:18.436Z" }, + { url = "https://files.pythonhosted.org/packages/ec/79/60e53067903d3bc5469b369fe0dfc6b3482e2133e85dae9daa9527535991/kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d976bbb382b202f71c67f77b0ac11244021cfa3f7dfd9e562eefcea2df711548", size = 126514, upload-time = "2025-08-10T21:27:19.465Z" }, + { url = "https://files.pythonhosted.org/packages/25/d1/4843d3e8d46b072c12a38c97c57fab4608d36e13fe47d47ee96b4d61ba6f/kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2489e4e5d7ef9a1c300a5e0196e43d9c739f066ef23270607d45aba368b91f2d", size = 67905, upload-time = "2025-08-10T21:27:20.51Z" }, + { url = "https://files.pythonhosted.org/packages/8c/ae/29ffcbd239aea8b93108de1278271ae764dfc0d803a5693914975f200596/kiwisolver-1.4.9-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:e2ea9f7ab7fbf18fffb1b5434ce7c69a07582f7acc7717720f1d69f3e806f90c", size = 66399, upload-time = "2025-08-10T21:27:21.496Z" }, + { url = "https://files.pythonhosted.org/packages/a1/ae/d7ba902aa604152c2ceba5d352d7b62106bedbccc8e95c3934d94472bfa3/kiwisolver-1.4.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b34e51affded8faee0dfdb705416153819d8ea9250bbbf7ea1b249bdeb5f1122", size = 1582197, upload-time = "2025-08-10T21:27:22.604Z" }, + { url = "https://files.pythonhosted.org/packages/f2/41/27c70d427eddb8bc7e4f16420a20fefc6f480312122a59a959fdfe0445ad/kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8aacd3d4b33b772542b2e01beb50187536967b514b00003bdda7589722d2a64", size = 1390125, upload-time = "2025-08-10T21:27:24.036Z" }, + { url = "https://files.pythonhosted.org/packages/41/42/b3799a12bafc76d962ad69083f8b43b12bf4fe78b097b12e105d75c9b8f1/kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7cf974dd4e35fa315563ac99d6287a1024e4dc2077b8a7d7cd3d2fb65d283134", size = 1402612, upload-time = "2025-08-10T21:27:25.773Z" }, + { url = "https://files.pythonhosted.org/packages/d2/b5/a210ea073ea1cfaca1bb5c55a62307d8252f531beb364e18aa1e0888b5a0/kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:85bd218b5ecfbee8c8a82e121802dcb519a86044c9c3b2e4aef02fa05c6da370", size = 1453990, upload-time = "2025-08-10T21:27:27.089Z" }, + { url = "https://files.pythonhosted.org/packages/5f/ce/a829eb8c033e977d7ea03ed32fb3c1781b4fa0433fbadfff29e39c676f32/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0856e241c2d3df4efef7c04a1e46b1936b6120c9bcf36dd216e3acd84bc4fb21", size = 2331601, upload-time = "2025-08-10T21:27:29.343Z" }, + { url = "https://files.pythonhosted.org/packages/e0/4b/b5e97eb142eb9cd0072dacfcdcd31b1c66dc7352b0f7c7255d339c0edf00/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9af39d6551f97d31a4deebeac6f45b156f9755ddc59c07b402c148f5dbb6482a", size = 2422041, upload-time = "2025-08-10T21:27:30.754Z" }, + { url = "https://files.pythonhosted.org/packages/40/be/8eb4cd53e1b85ba4edc3a9321666f12b83113a178845593307a3e7891f44/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:bb4ae2b57fc1d8cbd1cf7b1d9913803681ffa903e7488012be5b76dedf49297f", size = 2594897, upload-time = "2025-08-10T21:27:32.803Z" }, + { url = "https://files.pythonhosted.org/packages/99/dd/841e9a66c4715477ea0abc78da039832fbb09dac5c35c58dc4c41a407b8a/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:aedff62918805fb62d43a4aa2ecd4482c380dc76cd31bd7c8878588a61bd0369", size = 2391835, upload-time = "2025-08-10T21:27:34.23Z" }, + { url = "https://files.pythonhosted.org/packages/0c/28/4b2e5c47a0da96896fdfdb006340ade064afa1e63675d01ea5ac222b6d52/kiwisolver-1.4.9-cp314-cp314t-win_amd64.whl", hash = "sha256:1fa333e8b2ce4d9660f2cda9c0e1b6bafcfb2457a9d259faa82289e73ec24891", size = 79988, upload-time = "2025-08-10T21:27:35.587Z" }, + { url = "https://files.pythonhosted.org/packages/80/be/3578e8afd18c88cdf9cb4cffde75a96d2be38c5a903f1ed0ceec061bd09e/kiwisolver-1.4.9-cp314-cp314t-win_arm64.whl", hash = "sha256:4a48a2ce79d65d363597ef7b567ce3d14d68783d2b2263d98db3d9477805ba32", size = 70260, upload-time = "2025-08-10T21:27:36.606Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274, upload-time = "2024-10-18T15:21:13.777Z" }, + { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348, upload-time = "2024-10-18T15:21:14.822Z" }, + { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149, upload-time = "2024-10-18T15:21:15.642Z" }, + { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118, upload-time = "2024-10-18T15:21:17.133Z" }, + { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993, upload-time = "2024-10-18T15:21:18.064Z" }, + { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178, upload-time = "2024-10-18T15:21:18.859Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319, upload-time = "2024-10-18T15:21:19.671Z" }, + { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352, upload-time = "2024-10-18T15:21:20.971Z" }, + { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097, upload-time = "2024-10-18T15:21:22.646Z" }, + { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601, upload-time = "2024-10-18T15:21:23.499Z" }, + { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274, upload-time = "2024-10-18T15:21:24.577Z" }, + { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352, upload-time = "2024-10-18T15:21:25.382Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122, upload-time = "2024-10-18T15:21:26.199Z" }, + { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085, upload-time = "2024-10-18T15:21:27.029Z" }, + { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978, upload-time = "2024-10-18T15:21:27.846Z" }, + { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208, upload-time = "2024-10-18T15:21:28.744Z" }, + { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357, upload-time = "2024-10-18T15:21:29.545Z" }, + { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344, upload-time = "2024-10-18T15:21:30.366Z" }, + { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101, upload-time = "2024-10-18T15:21:31.207Z" }, + { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603, upload-time = "2024-10-18T15:21:32.032Z" }, + { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510, upload-time = "2024-10-18T15:21:33.625Z" }, + { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486, upload-time = "2024-10-18T15:21:34.611Z" }, + { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480, upload-time = "2024-10-18T15:21:35.398Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914, upload-time = "2024-10-18T15:21:36.231Z" }, + { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796, upload-time = "2024-10-18T15:21:37.073Z" }, + { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473, upload-time = "2024-10-18T15:21:37.932Z" }, + { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114, upload-time = "2024-10-18T15:21:39.799Z" }, + { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098, upload-time = "2024-10-18T15:21:40.813Z" }, + { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208, upload-time = "2024-10-18T15:21:41.814Z" }, + { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739, upload-time = "2024-10-18T15:21:42.784Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a0/59/c3e6453a9676ffba145309a73c462bb407f4400de7de3f2b41af70720a3c/matplotlib-3.10.6.tar.gz", hash = "sha256:ec01b645840dd1996df21ee37f208cd8ba57644779fa20464010638013d3203c", size = 34804264, upload-time = "2025-08-30T00:14:25.137Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ea/1a/7042f7430055d567cc3257ac409fcf608599ab27459457f13772c2d9778b/matplotlib-3.10.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:31ca662df6a80bd426f871105fdd69db7543e28e73a9f2afe80de7e531eb2347", size = 8272404, upload-time = "2025-08-30T00:12:59.112Z" }, + { url = "https://files.pythonhosted.org/packages/a9/5d/1d5f33f5b43f4f9e69e6a5fe1fb9090936ae7bc8e2ff6158e7a76542633b/matplotlib-3.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1678bb61d897bb4ac4757b5ecfb02bfb3fddf7f808000fb81e09c510712fda75", size = 8128262, upload-time = "2025-08-30T00:13:01.141Z" }, + { url = "https://files.pythonhosted.org/packages/67/c3/135fdbbbf84e0979712df58e5e22b4f257b3f5e52a3c4aacf1b8abec0d09/matplotlib-3.10.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:56cd2d20842f58c03d2d6e6c1f1cf5548ad6f66b91e1e48f814e4fb5abd1cb95", size = 8697008, upload-time = "2025-08-30T00:13:03.24Z" }, + { url = "https://files.pythonhosted.org/packages/9c/be/c443ea428fb2488a3ea7608714b1bd85a82738c45da21b447dc49e2f8e5d/matplotlib-3.10.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:662df55604a2f9a45435566d6e2660e41efe83cd94f4288dfbf1e6d1eae4b0bb", size = 9530166, upload-time = "2025-08-30T00:13:05.951Z" }, + { url = "https://files.pythonhosted.org/packages/a9/35/48441422b044d74034aea2a3e0d1a49023f12150ebc58f16600132b9bbaf/matplotlib-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:08f141d55148cd1fc870c3387d70ca4df16dee10e909b3b038782bd4bda6ea07", size = 9593105, upload-time = "2025-08-30T00:13:08.356Z" }, + { url = "https://files.pythonhosted.org/packages/45/c3/994ef20eb4154ab84cc08d033834555319e4af970165e6c8894050af0b3c/matplotlib-3.10.6-cp312-cp312-win_amd64.whl", hash = "sha256:590f5925c2d650b5c9d813c5b3b5fc53f2929c3f8ef463e4ecfa7e052044fb2b", size = 8122784, upload-time = "2025-08-30T00:13:10.367Z" }, + { url = "https://files.pythonhosted.org/packages/57/b8/5c85d9ae0e40f04e71bedb053aada5d6bab1f9b5399a0937afb5d6b02d98/matplotlib-3.10.6-cp312-cp312-win_arm64.whl", hash = "sha256:f44c8d264a71609c79a78d50349e724f5d5fc3684ead7c2a473665ee63d868aa", size = 7992823, upload-time = "2025-08-30T00:13:12.24Z" }, + { url = "https://files.pythonhosted.org/packages/a0/db/18380e788bb837e724358287b08e223b32bc8dccb3b0c12fa8ca20bc7f3b/matplotlib-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:819e409653c1106c8deaf62e6de6b8611449c2cd9939acb0d7d4e57a3d95cc7a", size = 8273231, upload-time = "2025-08-30T00:13:13.881Z" }, + { url = "https://files.pythonhosted.org/packages/d3/0f/38dd49445b297e0d4f12a322c30779df0d43cb5873c7847df8a82e82ec67/matplotlib-3.10.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:59c8ac8382fefb9cb71308dde16a7c487432f5255d8f1fd32473523abecfecdf", size = 8128730, upload-time = "2025-08-30T00:13:15.556Z" }, + { url = "https://files.pythonhosted.org/packages/e5/b8/9eea6630198cb303d131d95d285a024b3b8645b1763a2916fddb44ca8760/matplotlib-3.10.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:84e82d9e0fd70c70bc55739defbd8055c54300750cbacf4740c9673a24d6933a", size = 8698539, upload-time = "2025-08-30T00:13:17.297Z" }, + { url = "https://files.pythonhosted.org/packages/71/34/44c7b1f075e1ea398f88aeabcc2907c01b9cc99e2afd560c1d49845a1227/matplotlib-3.10.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:25f7a3eb42d6c1c56e89eacd495661fc815ffc08d9da750bca766771c0fd9110", size = 9529702, upload-time = "2025-08-30T00:13:19.248Z" }, + { url = "https://files.pythonhosted.org/packages/b5/7f/e5c2dc9950c7facaf8b461858d1b92c09dd0cf174fe14e21953b3dda06f7/matplotlib-3.10.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f9c862d91ec0b7842920a4cfdaaec29662195301914ea54c33e01f1a28d014b2", size = 9593742, upload-time = "2025-08-30T00:13:21.181Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1d/70c28528794f6410ee2856cd729fa1f1756498b8d3126443b0a94e1a8695/matplotlib-3.10.6-cp313-cp313-win_amd64.whl", hash = "sha256:1b53bd6337eba483e2e7d29c5ab10eee644bc3a2491ec67cc55f7b44583ffb18", size = 8122753, upload-time = "2025-08-30T00:13:23.44Z" }, + { url = "https://files.pythonhosted.org/packages/e8/74/0e1670501fc7d02d981564caf7c4df42974464625935424ca9654040077c/matplotlib-3.10.6-cp313-cp313-win_arm64.whl", hash = "sha256:cbd5eb50b7058b2892ce45c2f4e92557f395c9991f5c886d1bb74a1582e70fd6", size = 7992973, upload-time = "2025-08-30T00:13:26.632Z" }, + { url = "https://files.pythonhosted.org/packages/b1/4e/60780e631d73b6b02bd7239f89c451a72970e5e7ec34f621eda55cd9a445/matplotlib-3.10.6-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:acc86dd6e0e695c095001a7fccff158c49e45e0758fdf5dcdbb0103318b59c9f", size = 8316869, upload-time = "2025-08-30T00:13:28.262Z" }, + { url = "https://files.pythonhosted.org/packages/f8/15/baa662374a579413210fc2115d40c503b7360a08e9cc254aa0d97d34b0c1/matplotlib-3.10.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e228cd2ffb8f88b7d0b29e37f68ca9aaf83e33821f24a5ccc4f082dd8396bc27", size = 8178240, upload-time = "2025-08-30T00:13:30.007Z" }, + { url = "https://files.pythonhosted.org/packages/c6/3f/3c38e78d2aafdb8829fcd0857d25aaf9e7dd2dfcf7ec742765b585774931/matplotlib-3.10.6-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:658bc91894adeab669cf4bb4a186d049948262987e80f0857216387d7435d833", size = 8711719, upload-time = "2025-08-30T00:13:31.72Z" }, + { url = "https://files.pythonhosted.org/packages/96/4b/2ec2bbf8cefaa53207cc56118d1fa8a0f9b80642713ea9390235d331ede4/matplotlib-3.10.6-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8913b7474f6dd83ac444c9459c91f7f0f2859e839f41d642691b104e0af056aa", size = 9541422, upload-time = "2025-08-30T00:13:33.611Z" }, + { url = "https://files.pythonhosted.org/packages/83/7d/40255e89b3ef11c7871020563b2dd85f6cb1b4eff17c0f62b6eb14c8fa80/matplotlib-3.10.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:091cea22e059b89f6d7d1a18e2c33a7376c26eee60e401d92a4d6726c4e12706", size = 9594068, upload-time = "2025-08-30T00:13:35.833Z" }, + { url = "https://files.pythonhosted.org/packages/f0/a9/0213748d69dc842537a113493e1c27daf9f96bd7cc316f933dc8ec4de985/matplotlib-3.10.6-cp313-cp313t-win_amd64.whl", hash = "sha256:491e25e02a23d7207629d942c666924a6b61e007a48177fdd231a0097b7f507e", size = 8200100, upload-time = "2025-08-30T00:13:37.668Z" }, + { url = "https://files.pythonhosted.org/packages/be/15/79f9988066ce40b8a6f1759a934ea0cde8dc4adc2262255ee1bc98de6ad0/matplotlib-3.10.6-cp313-cp313t-win_arm64.whl", hash = "sha256:3d80d60d4e54cda462e2cd9a086d85cd9f20943ead92f575ce86885a43a565d5", size = 8042142, upload-time = "2025-08-30T00:13:39.426Z" }, + { url = "https://files.pythonhosted.org/packages/7c/58/e7b6d292beae6fb4283ca6fb7fa47d7c944a68062d6238c07b497dd35493/matplotlib-3.10.6-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:70aaf890ce1d0efd482df969b28a5b30ea0b891224bb315810a3940f67182899", size = 8273802, upload-time = "2025-08-30T00:13:41.006Z" }, + { url = "https://files.pythonhosted.org/packages/9f/f6/7882d05aba16a8cdd594fb9a03a9d3cca751dbb6816adf7b102945522ee9/matplotlib-3.10.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1565aae810ab79cb72e402b22facfa6501365e73ebab70a0fdfb98488d2c3c0c", size = 8131365, upload-time = "2025-08-30T00:13:42.664Z" }, + { url = "https://files.pythonhosted.org/packages/94/bf/ff32f6ed76e78514e98775a53715eca4804b12bdcf35902cdd1cf759d324/matplotlib-3.10.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3b23315a01981689aa4e1a179dbf6ef9fbd17143c3eea77548c2ecfb0499438", size = 9533961, upload-time = "2025-08-30T00:13:44.372Z" }, + { url = "https://files.pythonhosted.org/packages/fe/c3/6bf88c2fc2da7708a2ff8d2eeb5d68943130f50e636d5d3dcf9d4252e971/matplotlib-3.10.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:30fdd37edf41a4e6785f9b37969de57aea770696cb637d9946eb37470c94a453", size = 9804262, upload-time = "2025-08-30T00:13:46.614Z" }, + { url = "https://files.pythonhosted.org/packages/0f/7a/e05e6d9446d2d577b459427ad060cd2de5742d0e435db3191fea4fcc7e8b/matplotlib-3.10.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:bc31e693da1c08012c764b053e702c1855378e04102238e6a5ee6a7117c53a47", size = 9595508, upload-time = "2025-08-30T00:13:48.731Z" }, + { url = "https://files.pythonhosted.org/packages/39/fb/af09c463ced80b801629fd73b96f726c9f6124c3603aa2e480a061d6705b/matplotlib-3.10.6-cp314-cp314-win_amd64.whl", hash = "sha256:05be9bdaa8b242bc6ff96330d18c52f1fc59c6fb3a4dd411d953d67e7e1baf98", size = 8252742, upload-time = "2025-08-30T00:13:50.539Z" }, + { url = "https://files.pythonhosted.org/packages/b1/f9/b682f6db9396d9ab8f050c0a3bfbb5f14fb0f6518f08507c04cc02f8f229/matplotlib-3.10.6-cp314-cp314-win_arm64.whl", hash = "sha256:f56a0d1ab05d34c628592435781d185cd99630bdfd76822cd686fb5a0aecd43a", size = 8124237, upload-time = "2025-08-30T00:13:54.3Z" }, + { url = "https://files.pythonhosted.org/packages/b5/d2/b69b4a0923a3c05ab90527c60fdec899ee21ca23ede7f0fb818e6620d6f2/matplotlib-3.10.6-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:94f0b4cacb23763b64b5dace50d5b7bfe98710fed5f0cef5c08135a03399d98b", size = 8316956, upload-time = "2025-08-30T00:13:55.932Z" }, + { url = "https://files.pythonhosted.org/packages/28/e9/dc427b6f16457ffaeecb2fc4abf91e5adb8827861b869c7a7a6d1836fa73/matplotlib-3.10.6-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cc332891306b9fb39462673d8225d1b824c89783fee82840a709f96714f17a5c", size = 8178260, upload-time = "2025-08-30T00:14:00.942Z" }, + { url = "https://files.pythonhosted.org/packages/c4/89/1fbd5ad611802c34d1c7ad04607e64a1350b7fb9c567c4ec2c19e066ed35/matplotlib-3.10.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee1d607b3fb1590deb04b69f02ea1d53ed0b0bf75b2b1a5745f269afcbd3cdd3", size = 9541422, upload-time = "2025-08-30T00:14:02.664Z" }, + { url = "https://files.pythonhosted.org/packages/b0/3b/65fec8716025b22c1d72d5a82ea079934c76a547696eaa55be6866bc89b1/matplotlib-3.10.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:376a624a218116461696b27b2bbf7a8945053e6d799f6502fc03226d077807bf", size = 9803678, upload-time = "2025-08-30T00:14:04.741Z" }, + { url = "https://files.pythonhosted.org/packages/c7/b0/40fb2b3a1ab9381bb39a952e8390357c8be3bdadcf6d5055d9c31e1b35ae/matplotlib-3.10.6-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:83847b47f6524c34b4f2d3ce726bb0541c48c8e7692729865c3df75bfa0f495a", size = 9594077, upload-time = "2025-08-30T00:14:07.012Z" }, + { url = "https://files.pythonhosted.org/packages/76/34/c4b71b69edf5b06e635eee1ed10bfc73cf8df058b66e63e30e6a55e231d5/matplotlib-3.10.6-cp314-cp314t-win_amd64.whl", hash = "sha256:c7e0518e0d223683532a07f4b512e2e0729b62674f1b3a1a69869f98e6b1c7e3", size = 8342822, upload-time = "2025-08-30T00:14:09.041Z" }, + { url = "https://files.pythonhosted.org/packages/e8/62/aeabeef1a842b6226a30d49dd13e8a7a1e81e9ec98212c0b5169f0a12d83/matplotlib-3.10.6-cp314-cp314t-win_arm64.whl", hash = "sha256:4dd83e029f5b4801eeb87c64efd80e732452781c16a9cf7415b7b63ec8f374d7", size = 8172588, upload-time = "2025-08-30T00:14:11.166Z" }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "networkx" +version = "3.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/4f/ccdb8ad3a38e583f214547fd2f7ff1fc160c43a75af88e6aec213404b96a/networkx-3.5.tar.gz", hash = "sha256:d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037", size = 2471065, upload-time = "2025-05-29T11:35:07.804Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl", hash = "sha256:0030d386a9a06dee3565298b4a734b68589749a544acbb6c412dc9e2489ec6ec", size = 2034406, upload-time = "2025-05-29T11:35:04.961Z" }, +] + +[[package]] +name = "numpy" +version = "2.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/7d/3fec4199c5ffb892bed55cff901e4f39a58c81df9c44c280499e92cad264/numpy-2.3.2.tar.gz", hash = "sha256:e0486a11ec30cdecb53f184d496d1c6a20786c81e55e41640270130056f8ee48", size = 20489306, upload-time = "2025-07-24T21:32:07.553Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/6d/745dd1c1c5c284d17725e5c802ca4d45cfc6803519d777f087b71c9f4069/numpy-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bc3186bea41fae9d8e90c2b4fb5f0a1f5a690682da79b92574d63f56b529080b", size = 20956420, upload-time = "2025-07-24T20:28:18.002Z" }, + { url = "https://files.pythonhosted.org/packages/bc/96/e7b533ea5740641dd62b07a790af5d9d8fec36000b8e2d0472bd7574105f/numpy-2.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f4f0215edb189048a3c03bd5b19345bdfa7b45a7a6f72ae5945d2a28272727f", size = 14184660, upload-time = "2025-07-24T20:28:39.522Z" }, + { url = "https://files.pythonhosted.org/packages/2b/53/102c6122db45a62aa20d1b18c9986f67e6b97e0d6fbc1ae13e3e4c84430c/numpy-2.3.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:8b1224a734cd509f70816455c3cffe13a4f599b1bf7130f913ba0e2c0b2006c0", size = 5113382, upload-time = "2025-07-24T20:28:48.544Z" }, + { url = "https://files.pythonhosted.org/packages/2b/21/376257efcbf63e624250717e82b4fae93d60178f09eb03ed766dbb48ec9c/numpy-2.3.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3dcf02866b977a38ba3ec10215220609ab9667378a9e2150615673f3ffd6c73b", size = 6647258, upload-time = "2025-07-24T20:28:59.104Z" }, + { url = "https://files.pythonhosted.org/packages/91/ba/f4ebf257f08affa464fe6036e13f2bf9d4642a40228781dc1235da81be9f/numpy-2.3.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:572d5512df5470f50ada8d1972c5f1082d9a0b7aa5944db8084077570cf98370", size = 14281409, upload-time = "2025-07-24T20:40:30.298Z" }, + { url = "https://files.pythonhosted.org/packages/59/ef/f96536f1df42c668cbacb727a8c6da7afc9c05ece6d558927fb1722693e1/numpy-2.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8145dd6d10df13c559d1e4314df29695613575183fa2e2d11fac4c208c8a1f73", size = 16641317, upload-time = "2025-07-24T20:40:56.625Z" }, + { url = "https://files.pythonhosted.org/packages/f6/a7/af813a7b4f9a42f498dde8a4c6fcbff8100eed00182cc91dbaf095645f38/numpy-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:103ea7063fa624af04a791c39f97070bf93b96d7af7eb23530cd087dc8dbe9dc", size = 16056262, upload-time = "2025-07-24T20:41:20.797Z" }, + { url = "https://files.pythonhosted.org/packages/8b/5d/41c4ef8404caaa7f05ed1cfb06afe16a25895260eacbd29b4d84dff2920b/numpy-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc927d7f289d14f5e037be917539620603294454130b6de200091e23d27dc9be", size = 18579342, upload-time = "2025-07-24T20:41:50.753Z" }, + { url = "https://files.pythonhosted.org/packages/a1/4f/9950e44c5a11636f4a3af6e825ec23003475cc9a466edb7a759ed3ea63bd/numpy-2.3.2-cp312-cp312-win32.whl", hash = "sha256:d95f59afe7f808c103be692175008bab926b59309ade3e6d25009e9a171f7036", size = 6320610, upload-time = "2025-07-24T20:42:01.551Z" }, + { url = "https://files.pythonhosted.org/packages/7c/2f/244643a5ce54a94f0a9a2ab578189c061e4a87c002e037b0829dd77293b6/numpy-2.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:9e196ade2400c0c737d93465327d1ae7c06c7cb8a1756121ebf54b06ca183c7f", size = 12786292, upload-time = "2025-07-24T20:42:20.738Z" }, + { url = "https://files.pythonhosted.org/packages/54/cd/7b5f49d5d78db7badab22d8323c1b6ae458fbf86c4fdfa194ab3cd4eb39b/numpy-2.3.2-cp312-cp312-win_arm64.whl", hash = "sha256:ee807923782faaf60d0d7331f5e86da7d5e3079e28b291973c545476c2b00d07", size = 10194071, upload-time = "2025-07-24T20:42:36.657Z" }, + { url = "https://files.pythonhosted.org/packages/1c/c0/c6bb172c916b00700ed3bf71cb56175fd1f7dbecebf8353545d0b5519f6c/numpy-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c8d9727f5316a256425892b043736d63e89ed15bbfe6556c5ff4d9d4448ff3b3", size = 20949074, upload-time = "2025-07-24T20:43:07.813Z" }, + { url = "https://files.pythonhosted.org/packages/20/4e/c116466d22acaf4573e58421c956c6076dc526e24a6be0903219775d862e/numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:efc81393f25f14d11c9d161e46e6ee348637c0a1e8a54bf9dedc472a3fae993b", size = 14177311, upload-time = "2025-07-24T20:43:29.335Z" }, + { url = "https://files.pythonhosted.org/packages/78/45/d4698c182895af189c463fc91d70805d455a227261d950e4e0f1310c2550/numpy-2.3.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dd937f088a2df683cbb79dda9a772b62a3e5a8a7e76690612c2737f38c6ef1b6", size = 5106022, upload-time = "2025-07-24T20:43:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/9f/76/3e6880fef4420179309dba72a8c11f6166c431cf6dee54c577af8906f914/numpy-2.3.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:11e58218c0c46c80509186e460d79fbdc9ca1eb8d8aee39d8f2dc768eb781089", size = 6640135, upload-time = "2025-07-24T20:43:49.28Z" }, + { url = "https://files.pythonhosted.org/packages/34/fa/87ff7f25b3c4ce9085a62554460b7db686fef1e0207e8977795c7b7d7ba1/numpy-2.3.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5ad4ebcb683a1f99f4f392cc522ee20a18b2bb12a2c1c42c3d48d5a1adc9d3d2", size = 14278147, upload-time = "2025-07-24T20:44:10.328Z" }, + { url = "https://files.pythonhosted.org/packages/1d/0f/571b2c7a3833ae419fe69ff7b479a78d313581785203cc70a8db90121b9a/numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:938065908d1d869c7d75d8ec45f735a034771c6ea07088867f713d1cd3bbbe4f", size = 16635989, upload-time = "2025-07-24T20:44:34.88Z" }, + { url = "https://files.pythonhosted.org/packages/24/5a/84ae8dca9c9a4c592fe11340b36a86ffa9fd3e40513198daf8a97839345c/numpy-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:66459dccc65d8ec98cc7df61307b64bf9e08101f9598755d42d8ae65d9a7a6ee", size = 16053052, upload-time = "2025-07-24T20:44:58.872Z" }, + { url = "https://files.pythonhosted.org/packages/57/7c/e5725d99a9133b9813fcf148d3f858df98511686e853169dbaf63aec6097/numpy-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a7af9ed2aa9ec5950daf05bb11abc4076a108bd3c7db9aa7251d5f107079b6a6", size = 18577955, upload-time = "2025-07-24T20:45:26.714Z" }, + { url = "https://files.pythonhosted.org/packages/ae/11/7c546fcf42145f29b71e4d6f429e96d8d68e5a7ba1830b2e68d7418f0bbd/numpy-2.3.2-cp313-cp313-win32.whl", hash = "sha256:906a30249315f9c8e17b085cc5f87d3f369b35fedd0051d4a84686967bdbbd0b", size = 6311843, upload-time = "2025-07-24T20:49:24.444Z" }, + { url = "https://files.pythonhosted.org/packages/aa/6f/a428fd1cb7ed39b4280d057720fed5121b0d7754fd2a9768640160f5517b/numpy-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:c63d95dc9d67b676e9108fe0d2182987ccb0f11933c1e8959f42fa0da8d4fa56", size = 12782876, upload-time = "2025-07-24T20:49:43.227Z" }, + { url = "https://files.pythonhosted.org/packages/65/85/4ea455c9040a12595fb6c43f2c217257c7b52dd0ba332c6a6c1d28b289fe/numpy-2.3.2-cp313-cp313-win_arm64.whl", hash = "sha256:b05a89f2fb84d21235f93de47129dd4f11c16f64c87c33f5e284e6a3a54e43f2", size = 10192786, upload-time = "2025-07-24T20:49:59.443Z" }, + { url = "https://files.pythonhosted.org/packages/80/23/8278f40282d10c3f258ec3ff1b103d4994bcad78b0cba9208317f6bb73da/numpy-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4e6ecfeddfa83b02318f4d84acf15fbdbf9ded18e46989a15a8b6995dfbf85ab", size = 21047395, upload-time = "2025-07-24T20:45:58.821Z" }, + { url = "https://files.pythonhosted.org/packages/1f/2d/624f2ce4a5df52628b4ccd16a4f9437b37c35f4f8a50d00e962aae6efd7a/numpy-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:508b0eada3eded10a3b55725b40806a4b855961040180028f52580c4729916a2", size = 14300374, upload-time = "2025-07-24T20:46:20.207Z" }, + { url = "https://files.pythonhosted.org/packages/f6/62/ff1e512cdbb829b80a6bd08318a58698867bca0ca2499d101b4af063ee97/numpy-2.3.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:754d6755d9a7588bdc6ac47dc4ee97867271b17cee39cb87aef079574366db0a", size = 5228864, upload-time = "2025-07-24T20:46:30.58Z" }, + { url = "https://files.pythonhosted.org/packages/7d/8e/74bc18078fff03192d4032cfa99d5a5ca937807136d6f5790ce07ca53515/numpy-2.3.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f66e7d2b2d7712410d3bc5684149040ef5f19856f20277cd17ea83e5006286", size = 6737533, upload-time = "2025-07-24T20:46:46.111Z" }, + { url = "https://files.pythonhosted.org/packages/19/ea/0731efe2c9073ccca5698ef6a8c3667c4cf4eea53fcdcd0b50140aba03bc/numpy-2.3.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de6ea4e5a65d5a90c7d286ddff2b87f3f4ad61faa3db8dabe936b34c2275b6f8", size = 14352007, upload-time = "2025-07-24T20:47:07.1Z" }, + { url = "https://files.pythonhosted.org/packages/cf/90/36be0865f16dfed20f4bc7f75235b963d5939707d4b591f086777412ff7b/numpy-2.3.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3ef07ec8cbc8fc9e369c8dcd52019510c12da4de81367d8b20bc692aa07573a", size = 16701914, upload-time = "2025-07-24T20:47:32.459Z" }, + { url = "https://files.pythonhosted.org/packages/94/30/06cd055e24cb6c38e5989a9e747042b4e723535758e6153f11afea88c01b/numpy-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:27c9f90e7481275c7800dc9c24b7cc40ace3fdb970ae4d21eaff983a32f70c91", size = 16132708, upload-time = "2025-07-24T20:47:58.129Z" }, + { url = "https://files.pythonhosted.org/packages/9a/14/ecede608ea73e58267fd7cb78f42341b3b37ba576e778a1a06baffbe585c/numpy-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:07b62978075b67eee4065b166d000d457c82a1efe726cce608b9db9dd66a73a5", size = 18651678, upload-time = "2025-07-24T20:48:25.402Z" }, + { url = "https://files.pythonhosted.org/packages/40/f3/2fe6066b8d07c3685509bc24d56386534c008b462a488b7f503ba82b8923/numpy-2.3.2-cp313-cp313t-win32.whl", hash = "sha256:c771cfac34a4f2c0de8e8c97312d07d64fd8f8ed45bc9f5726a7e947270152b5", size = 6441832, upload-time = "2025-07-24T20:48:37.181Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ba/0937d66d05204d8f28630c9c60bc3eda68824abde4cf756c4d6aad03b0c6/numpy-2.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:72dbebb2dcc8305c431b2836bcc66af967df91be793d63a24e3d9b741374c450", size = 12927049, upload-time = "2025-07-24T20:48:56.24Z" }, + { url = "https://files.pythonhosted.org/packages/e9/ed/13542dd59c104d5e654dfa2ac282c199ba64846a74c2c4bcdbc3a0f75df1/numpy-2.3.2-cp313-cp313t-win_arm64.whl", hash = "sha256:72c6df2267e926a6d5286b0a6d556ebe49eae261062059317837fda12ddf0c1a", size = 10262935, upload-time = "2025-07-24T20:49:13.136Z" }, + { url = "https://files.pythonhosted.org/packages/c9/7c/7659048aaf498f7611b783e000c7268fcc4dcf0ce21cd10aad7b2e8f9591/numpy-2.3.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:448a66d052d0cf14ce9865d159bfc403282c9bc7bb2a31b03cc18b651eca8b1a", size = 20950906, upload-time = "2025-07-24T20:50:30.346Z" }, + { url = "https://files.pythonhosted.org/packages/80/db/984bea9d4ddf7112a04cfdfb22b1050af5757864cfffe8e09e44b7f11a10/numpy-2.3.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:546aaf78e81b4081b2eba1d105c3b34064783027a06b3ab20b6eba21fb64132b", size = 14185607, upload-time = "2025-07-24T20:50:51.923Z" }, + { url = "https://files.pythonhosted.org/packages/e4/76/b3d6f414f4eca568f469ac112a3b510938d892bc5a6c190cb883af080b77/numpy-2.3.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:87c930d52f45df092f7578889711a0768094debf73cfcde105e2d66954358125", size = 5114110, upload-time = "2025-07-24T20:51:01.041Z" }, + { url = "https://files.pythonhosted.org/packages/9e/d2/6f5e6826abd6bca52392ed88fe44a4b52aacb60567ac3bc86c67834c3a56/numpy-2.3.2-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:8dc082ea901a62edb8f59713c6a7e28a85daddcb67454c839de57656478f5b19", size = 6642050, upload-time = "2025-07-24T20:51:11.64Z" }, + { url = "https://files.pythonhosted.org/packages/c4/43/f12b2ade99199e39c73ad182f103f9d9791f48d885c600c8e05927865baf/numpy-2.3.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:af58de8745f7fa9ca1c0c7c943616c6fe28e75d0c81f5c295810e3c83b5be92f", size = 14296292, upload-time = "2025-07-24T20:51:33.488Z" }, + { url = "https://files.pythonhosted.org/packages/5d/f9/77c07d94bf110a916b17210fac38680ed8734c236bfed9982fd8524a7b47/numpy-2.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed5527c4cf10f16c6d0b6bee1f89958bccb0ad2522c8cadc2efd318bcd545f5", size = 16638913, upload-time = "2025-07-24T20:51:58.517Z" }, + { url = "https://files.pythonhosted.org/packages/9b/d1/9d9f2c8ea399cc05cfff8a7437453bd4e7d894373a93cdc46361bbb49a7d/numpy-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:095737ed986e00393ec18ec0b21b47c22889ae4b0cd2d5e88342e08b01141f58", size = 16071180, upload-time = "2025-07-24T20:52:22.827Z" }, + { url = "https://files.pythonhosted.org/packages/4c/41/82e2c68aff2a0c9bf315e47d61951099fed65d8cb2c8d9dc388cb87e947e/numpy-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b5e40e80299607f597e1a8a247ff8d71d79c5b52baa11cc1cce30aa92d2da6e0", size = 18576809, upload-time = "2025-07-24T20:52:51.015Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/4b4fd3efb0837ed252d0f583c5c35a75121038a8c4e065f2c259be06d2d8/numpy-2.3.2-cp314-cp314-win32.whl", hash = "sha256:7d6e390423cc1f76e1b8108c9b6889d20a7a1f59d9a60cac4a050fa734d6c1e2", size = 6366410, upload-time = "2025-07-24T20:56:44.949Z" }, + { url = "https://files.pythonhosted.org/packages/11/9e/b4c24a6b8467b61aced5c8dc7dcfce23621baa2e17f661edb2444a418040/numpy-2.3.2-cp314-cp314-win_amd64.whl", hash = "sha256:b9d0878b21e3918d76d2209c924ebb272340da1fb51abc00f986c258cd5e957b", size = 12918821, upload-time = "2025-07-24T20:57:06.479Z" }, + { url = "https://files.pythonhosted.org/packages/0e/0f/0dc44007c70b1007c1cef86b06986a3812dd7106d8f946c09cfa75782556/numpy-2.3.2-cp314-cp314-win_arm64.whl", hash = "sha256:2738534837c6a1d0c39340a190177d7d66fdf432894f469728da901f8f6dc910", size = 10477303, upload-time = "2025-07-24T20:57:22.879Z" }, + { url = "https://files.pythonhosted.org/packages/8b/3e/075752b79140b78ddfc9c0a1634d234cfdbc6f9bbbfa6b7504e445ad7d19/numpy-2.3.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:4d002ecf7c9b53240be3bb69d80f86ddbd34078bae04d87be81c1f58466f264e", size = 21047524, upload-time = "2025-07-24T20:53:22.086Z" }, + { url = "https://files.pythonhosted.org/packages/fe/6d/60e8247564a72426570d0e0ea1151b95ce5bd2f1597bb878a18d32aec855/numpy-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:293b2192c6bcce487dbc6326de5853787f870aeb6c43f8f9c6496db5b1781e45", size = 14300519, upload-time = "2025-07-24T20:53:44.053Z" }, + { url = "https://files.pythonhosted.org/packages/4d/73/d8326c442cd428d47a067070c3ac6cc3b651a6e53613a1668342a12d4479/numpy-2.3.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:0a4f2021a6da53a0d580d6ef5db29947025ae8b35b3250141805ea9a32bbe86b", size = 5228972, upload-time = "2025-07-24T20:53:53.81Z" }, + { url = "https://files.pythonhosted.org/packages/34/2e/e71b2d6dad075271e7079db776196829019b90ce3ece5c69639e4f6fdc44/numpy-2.3.2-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9c144440db4bf3bb6372d2c3e49834cc0ff7bb4c24975ab33e01199e645416f2", size = 6737439, upload-time = "2025-07-24T20:54:04.742Z" }, + { url = "https://files.pythonhosted.org/packages/15/b0/d004bcd56c2c5e0500ffc65385eb6d569ffd3363cb5e593ae742749b2daa/numpy-2.3.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f92d6c2a8535dc4fe4419562294ff957f83a16ebdec66df0805e473ffaad8bd0", size = 14352479, upload-time = "2025-07-24T20:54:25.819Z" }, + { url = "https://files.pythonhosted.org/packages/11/e3/285142fcff8721e0c99b51686426165059874c150ea9ab898e12a492e291/numpy-2.3.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cefc2219baa48e468e3db7e706305fcd0c095534a192a08f31e98d83a7d45fb0", size = 16702805, upload-time = "2025-07-24T20:54:50.814Z" }, + { url = "https://files.pythonhosted.org/packages/33/c3/33b56b0e47e604af2c7cd065edca892d180f5899599b76830652875249a3/numpy-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:76c3e9501ceb50b2ff3824c3589d5d1ab4ac857b0ee3f8f49629d0de55ecf7c2", size = 16133830, upload-time = "2025-07-24T20:55:17.306Z" }, + { url = "https://files.pythonhosted.org/packages/6e/ae/7b1476a1f4d6a48bc669b8deb09939c56dd2a439db1ab03017844374fb67/numpy-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:122bf5ed9a0221b3419672493878ba4967121514b1d7d4656a7580cd11dddcbf", size = 18652665, upload-time = "2025-07-24T20:55:46.665Z" }, + { url = "https://files.pythonhosted.org/packages/14/ba/5b5c9978c4bb161034148ade2de9db44ec316fab89ce8c400db0e0c81f86/numpy-2.3.2-cp314-cp314t-win32.whl", hash = "sha256:6f1ae3dcb840edccc45af496f312528c15b1f79ac318169d094e85e4bb35fdf1", size = 6514777, upload-time = "2025-07-24T20:55:57.66Z" }, + { url = "https://files.pythonhosted.org/packages/eb/46/3dbaf0ae7c17cdc46b9f662c56da2054887b8d9e737c1476f335c83d33db/numpy-2.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:087ffc25890d89a43536f75c5fe8770922008758e8eeeef61733957041ed2f9b", size = 13111856, upload-time = "2025-07-24T20:56:17.318Z" }, + { url = "https://files.pythonhosted.org/packages/c1/9e/1652778bce745a67b5fe05adde60ed362d38eb17d919a540e813d30f6874/numpy-2.3.2-cp314-cp314t-win_arm64.whl", hash = "sha256:092aeb3449833ea9c0bf0089d70c29ae480685dd2377ec9cdbbb620257f84631", size = 10544226, upload-time = "2025-07-24T20:56:34.509Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.8.4.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/61/e24b560ab2e2eaeb3c839129175fb330dfcfc29e5203196e5541a4c44682/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8ac4e771d5a348c551b2a426eda6193c19aa630236b418086020df5ba9667142", size = 594346921, upload-time = "2025-03-07T01:44:31.254Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/02/2adcaa145158bf1a8295d83591d22e4103dbfd821bcaf6f3f53151ca4ffa/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea0cb07ebda26bb9b29ba82cda34849e73c166c18162d3913575b0c9db9a6182", size = 10248621, upload-time = "2025-03-07T01:40:21.213Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.8.93" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/9b/a997b638fcd068ad6e4d53b8551a7d30fe8b404d6f1804abf1df69838932/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adade8dcbd0edf427b7204d480d6066d33902cab2a4707dcfc48a2d0fd44ab90", size = 954765, upload-time = "2025-03-07T01:40:01.615Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.10.2.21" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/51/e123d997aa098c61d029f76663dedbfb9bc8dcf8c60cbd6adbe42f76d049/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:949452be657fa16687d0930933f032835951ef0892b37d2d53824d1a84dc97a8", size = 706758467, upload-time = "2025-06-06T21:54:08.597Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.3.3.83" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/13/ee4e00f30e676b66ae65b4f08cb5bcbb8392c03f54f2d5413ea99a5d1c80/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d2dd21ec0b88cf61b62e6b43564355e5222e4a3fb394cac0db101f2dd0d4f74", size = 193118695, upload-time = "2025-03-07T01:45:27.821Z" }, +] + +[[package]] +name = "nvidia-cufile-cu12" +version = "1.13.1.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.9.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/aa/6584b56dc84ebe9cf93226a5cde4d99080c8e90ab40f0c27bda7a0f29aa1/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:b32331d4f4df5d6eefa0554c565b626c7216f87a06a4f56fab27c3b68a830ec9", size = 63619976, upload-time = "2025-03-07T01:46:23.323Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.7.3.90" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, + { name = "nvidia-cusparse-cu12" }, + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/48/9a13d2975803e8cf2777d5ed57b87a0b6ca2cc795f9a4f59796a910bfb80/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4376c11ad263152bd50ea295c05370360776f8c3427b30991df774f9fb26c450", size = 267506905, upload-time = "2025-03-07T01:47:16.273Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.5.8.93" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/f5/e1854cb2f2bcd4280c44736c93550cc300ff4b8c95ebe370d0aa7d2b473d/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ec05d76bbbd8b61b06a80e1eaf8cf4959c3d4ce8e711b65ebd0443bb0ebb13b", size = 288216466, upload-time = "2025-03-07T01:48:13.779Z" }, +] + +[[package]] +name = "nvidia-cusparselt-cu12" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/79/12978b96bd44274fe38b5dde5cfb660b1d114f70a65ef962bcbbed99b549/nvidia_cusparselt_cu12-0.7.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:f1bb701d6b930d5a7cea44c19ceb973311500847f81b634d802b7b539dc55623", size = 287193691, upload-time = "2025-02-26T00:15:44.104Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.27.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/5b/4e4fff7bad39adf89f735f2bc87248c81db71205b62bcc0d5ca5b606b3c3/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adf27ccf4238253e0b826bce3ff5fa532d65fc42322c8bfdfaf28024c0fbe039", size = 322364134, upload-time = "2025-06-03T21:58:04.013Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.8.93" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836, upload-time = "2025-03-07T01:49:55.661Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/eb/86626c1bbc2edb86323022371c39aa48df6fd8b0a1647bc274577f72e90b/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b17e2001cc0d751a5bc2c6ec6d26ad95913324a4adb86788c944f8ce9ba441f", size = 89954, upload-time = "2025-03-07T01:42:44.131Z" }, +] + +[[package]] +name = "packaging" +version = "25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, +] + +[[package]] +name = "pandas" +version = "2.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/79/8e/0e90233ac205ad182bd6b422532695d2b9414944a280488105d598c70023/pandas-2.3.2.tar.gz", hash = "sha256:ab7b58f8f82706890924ccdfb5f48002b83d2b5a3845976a9fb705d36c34dcdb", size = 4488684, upload-time = "2025-08-21T10:28:29.257Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/db/614c20fb7a85a14828edd23f1c02db58a30abf3ce76f38806155d160313c/pandas-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fbb977f802156e7a3f829e9d1d5398f6192375a3e2d1a9ee0803e35fe70a2b9", size = 11587652, upload-time = "2025-08-21T10:27:15.888Z" }, + { url = "https://files.pythonhosted.org/packages/99/b0/756e52f6582cade5e746f19bad0517ff27ba9c73404607c0306585c201b3/pandas-2.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b9b52693123dd234b7c985c68b709b0b009f4521000d0525f2b95c22f15944b", size = 10717686, upload-time = "2025-08-21T10:27:18.486Z" }, + { url = "https://files.pythonhosted.org/packages/37/4c/dd5ccc1e357abfeee8353123282de17997f90ff67855f86154e5a13b81e5/pandas-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bd281310d4f412733f319a5bc552f86d62cddc5f51d2e392c8787335c994175", size = 11278722, upload-time = "2025-08-21T10:27:21.149Z" }, + { url = "https://files.pythonhosted.org/packages/d3/a4/f7edcfa47e0a88cda0be8b068a5bae710bf264f867edfdf7b71584ace362/pandas-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96d31a6b4354e3b9b8a2c848af75d31da390657e3ac6f30c05c82068b9ed79b9", size = 11987803, upload-time = "2025-08-21T10:27:23.767Z" }, + { url = "https://files.pythonhosted.org/packages/f6/61/1bce4129f93ab66f1c68b7ed1c12bac6a70b1b56c5dab359c6bbcd480b52/pandas-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:df4df0b9d02bb873a106971bb85d448378ef14b86ba96f035f50bbd3688456b4", size = 12766345, upload-time = "2025-08-21T10:27:26.6Z" }, + { url = "https://files.pythonhosted.org/packages/8e/46/80d53de70fee835531da3a1dae827a1e76e77a43ad22a8cd0f8142b61587/pandas-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:213a5adf93d020b74327cb2c1b842884dbdd37f895f42dcc2f09d451d949f811", size = 13439314, upload-time = "2025-08-21T10:27:29.213Z" }, + { url = "https://files.pythonhosted.org/packages/28/30/8114832daff7489f179971dbc1d854109b7f4365a546e3ea75b6516cea95/pandas-2.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:8c13b81a9347eb8c7548f53fd9a4f08d4dfe996836543f805c987bafa03317ae", size = 10983326, upload-time = "2025-08-21T10:27:31.901Z" }, + { url = "https://files.pythonhosted.org/packages/27/64/a2f7bf678af502e16b472527735d168b22b7824e45a4d7e96a4fbb634b59/pandas-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0c6ecbac99a354a051ef21c5307601093cb9e0f4b1855984a084bfec9302699e", size = 11531061, upload-time = "2025-08-21T10:27:34.647Z" }, + { url = "https://files.pythonhosted.org/packages/54/4c/c3d21b2b7769ef2f4c2b9299fcadd601efa6729f1357a8dbce8dd949ed70/pandas-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6f048aa0fd080d6a06cc7e7537c09b53be6642d330ac6f54a600c3ace857ee9", size = 10668666, upload-time = "2025-08-21T10:27:37.203Z" }, + { url = "https://files.pythonhosted.org/packages/50/e2/f775ba76ecfb3424d7f5862620841cf0edb592e9abd2d2a5387d305fe7a8/pandas-2.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0064187b80a5be6f2f9c9d6bdde29372468751dfa89f4211a3c5871854cfbf7a", size = 11332835, upload-time = "2025-08-21T10:27:40.188Z" }, + { url = "https://files.pythonhosted.org/packages/8f/52/0634adaace9be2d8cac9ef78f05c47f3a675882e068438b9d7ec7ef0c13f/pandas-2.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac8c320bded4718b298281339c1a50fb00a6ba78cb2a63521c39bec95b0209b", size = 12057211, upload-time = "2025-08-21T10:27:43.117Z" }, + { url = "https://files.pythonhosted.org/packages/0b/9d/2df913f14b2deb9c748975fdb2491da1a78773debb25abbc7cbc67c6b549/pandas-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:114c2fe4f4328cf98ce5716d1532f3ab79c5919f95a9cfee81d9140064a2e4d6", size = 12749277, upload-time = "2025-08-21T10:27:45.474Z" }, + { url = "https://files.pythonhosted.org/packages/87/af/da1a2417026bd14d98c236dba88e39837182459d29dcfcea510b2ac9e8a1/pandas-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:48fa91c4dfb3b2b9bfdb5c24cd3567575f4e13f9636810462ffed8925352be5a", size = 13415256, upload-time = "2025-08-21T10:27:49.885Z" }, + { url = "https://files.pythonhosted.org/packages/22/3c/f2af1ce8840ef648584a6156489636b5692c162771918aa95707c165ad2b/pandas-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:12d039facec710f7ba305786837d0225a3444af7bbd9c15c32ca2d40d157ed8b", size = 10982579, upload-time = "2025-08-21T10:28:08.435Z" }, + { url = "https://files.pythonhosted.org/packages/f3/98/8df69c4097a6719e357dc249bf437b8efbde808038268e584421696cbddf/pandas-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c624b615ce97864eb588779ed4046186f967374185c047070545253a52ab2d57", size = 12028163, upload-time = "2025-08-21T10:27:52.232Z" }, + { url = "https://files.pythonhosted.org/packages/0e/23/f95cbcbea319f349e10ff90db488b905c6883f03cbabd34f6b03cbc3c044/pandas-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0cee69d583b9b128823d9514171cabb6861e09409af805b54459bd0c821a35c2", size = 11391860, upload-time = "2025-08-21T10:27:54.673Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1b/6a984e98c4abee22058aa75bfb8eb90dce58cf8d7296f8bc56c14bc330b0/pandas-2.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2319656ed81124982900b4c37f0e0c58c015af9a7bbc62342ba5ad07ace82ba9", size = 11309830, upload-time = "2025-08-21T10:27:56.957Z" }, + { url = "https://files.pythonhosted.org/packages/15/d5/f0486090eb18dd8710bf60afeaf638ba6817047c0c8ae5c6a25598665609/pandas-2.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b37205ad6f00d52f16b6d09f406434ba928c1a1966e2771006a9033c736d30d2", size = 11883216, upload-time = "2025-08-21T10:27:59.302Z" }, + { url = "https://files.pythonhosted.org/packages/10/86/692050c119696da19e20245bbd650d8dfca6ceb577da027c3a73c62a047e/pandas-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:837248b4fc3a9b83b9c6214699a13f069dc13510a6a6d7f9ba33145d2841a012", size = 12699743, upload-time = "2025-08-21T10:28:02.447Z" }, + { url = "https://files.pythonhosted.org/packages/cd/d7/612123674d7b17cf345aad0a10289b2a384bff404e0463a83c4a3a59d205/pandas-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d2c3554bd31b731cd6490d94a28f3abb8dd770634a9e06eb6d2911b9827db370", size = 13186141, upload-time = "2025-08-21T10:28:05.377Z" }, +] + +[[package]] +name = "pendulum-transformer" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "fastapi" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "torch" }, + { name = "uvicorn" }, +] + +[package.metadata] +requires-dist = [ + { name = "fastapi", specifier = ">=0.116.1" }, + { name = "matplotlib", specifier = ">=3.10.6" }, + { name = "numpy", specifier = ">=2.3.2" }, + { name = "pandas", specifier = ">=2.3.2" }, + { name = "torch", specifier = ">=2.8.0" }, + { name = "uvicorn", specifier = ">=0.35.0" }, +] + +[[package]] +name = "pillow" +version = "11.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/d0d6dea55cd152ce3d6767bb38a8fc10e33796ba4ba210cbab9354b6d238/pillow-11.3.0.tar.gz", hash = "sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523", size = 47113069, upload-time = "2025-07-01T09:16:30.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/fe/1bc9b3ee13f68487a99ac9529968035cca2f0a51ec36892060edcc51d06a/pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdae223722da47b024b867c1ea0be64e0df702c5e0a60e27daad39bf960dd1e4", size = 5278800, upload-time = "2025-07-01T09:14:17.648Z" }, + { url = "https://files.pythonhosted.org/packages/2c/32/7e2ac19b5713657384cec55f89065fb306b06af008cfd87e572035b27119/pillow-11.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:921bd305b10e82b4d1f5e802b6850677f965d8394203d182f078873851dada69", size = 4686296, upload-time = "2025-07-01T09:14:19.828Z" }, + { url = "https://files.pythonhosted.org/packages/8e/1e/b9e12bbe6e4c2220effebc09ea0923a07a6da1e1f1bfbc8d7d29a01ce32b/pillow-11.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:eb76541cba2f958032d79d143b98a3a6b3ea87f0959bbe256c0b5e416599fd5d", size = 5871726, upload-time = "2025-07-03T13:10:04.448Z" }, + { url = "https://files.pythonhosted.org/packages/8d/33/e9200d2bd7ba00dc3ddb78df1198a6e80d7669cce6c2bdbeb2530a74ec58/pillow-11.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:67172f2944ebba3d4a7b54f2e95c786a3a50c21b88456329314caaa28cda70f6", size = 7644652, upload-time = "2025-07-03T13:10:10.391Z" }, + { url = "https://files.pythonhosted.org/packages/41/f1/6f2427a26fc683e00d985bc391bdd76d8dd4e92fac33d841127eb8fb2313/pillow-11.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f07ed9f56a3b9b5f49d3661dc9607484e85c67e27f3e8be2c7d28ca032fec7", size = 5977787, upload-time = "2025-07-01T09:14:21.63Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024", size = 6645236, upload-time = "2025-07-01T09:14:23.321Z" }, + { url = "https://files.pythonhosted.org/packages/40/e7/848f69fb79843b3d91241bad658e9c14f39a32f71a301bcd1d139416d1be/pillow-11.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e184b2f26ff146363dd07bde8b711833d7b0202e27d13540bfe2e35a323a809", size = 6086950, upload-time = "2025-07-01T09:14:25.237Z" }, + { url = "https://files.pythonhosted.org/packages/0b/1a/7cff92e695a2a29ac1958c2a0fe4c0b2393b60aac13b04a4fe2735cad52d/pillow-11.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6be31e3fc9a621e071bc17bb7de63b85cbe0bfae91bb0363c893cbe67247780d", size = 6723358, upload-time = "2025-07-01T09:14:27.053Z" }, + { url = "https://files.pythonhosted.org/packages/26/7d/73699ad77895f69edff76b0f332acc3d497f22f5d75e5360f78cbcaff248/pillow-11.3.0-cp312-cp312-win32.whl", hash = "sha256:7b161756381f0918e05e7cb8a371fff367e807770f8fe92ecb20d905d0e1c149", size = 6275079, upload-time = "2025-07-01T09:14:30.104Z" }, + { url = "https://files.pythonhosted.org/packages/8c/ce/e7dfc873bdd9828f3b6e5c2bbb74e47a98ec23cc5c74fc4e54462f0d9204/pillow-11.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6444696fce635783440b7f7a9fc24b3ad10a9ea3f0ab66c5905be1c19ccf17d", size = 6986324, upload-time = "2025-07-01T09:14:31.899Z" }, + { url = "https://files.pythonhosted.org/packages/16/8f/b13447d1bf0b1f7467ce7d86f6e6edf66c0ad7cf44cf5c87a37f9bed9936/pillow-11.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:2aceea54f957dd4448264f9bf40875da0415c83eb85f55069d89c0ed436e3542", size = 2423067, upload-time = "2025-07-01T09:14:33.709Z" }, + { url = "https://files.pythonhosted.org/packages/1e/93/0952f2ed8db3a5a4c7a11f91965d6184ebc8cd7cbb7941a260d5f018cd2d/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd", size = 2128328, upload-time = "2025-07-01T09:14:35.276Z" }, + { url = "https://files.pythonhosted.org/packages/4b/e8/100c3d114b1a0bf4042f27e0f87d2f25e857e838034e98ca98fe7b8c0a9c/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8", size = 2170652, upload-time = "2025-07-01T09:14:37.203Z" }, + { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" }, + { url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" }, + { url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" }, + { url = "https://files.pythonhosted.org/packages/ff/b0/3426e5c7f6565e752d81221af9d3676fdbb4f352317ceafd42899aaf5d8a/pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e", size = 5864407, upload-time = "2025-07-03T13:10:15.628Z" }, + { url = "https://files.pythonhosted.org/packages/fc/c1/c6c423134229f2a221ee53f838d4be9d82bab86f7e2f8e75e47b6bf6cd77/pillow-11.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1", size = 7639094, upload-time = "2025-07-03T13:10:21.857Z" }, + { url = "https://files.pythonhosted.org/packages/ba/c9/09e6746630fe6372c67c648ff9deae52a2bc20897d51fa293571977ceb5d/pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805", size = 5973503, upload-time = "2025-07-01T09:14:45.698Z" }, + { url = "https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8", size = 6642574, upload-time = "2025-07-01T09:14:47.415Z" }, + { url = "https://files.pythonhosted.org/packages/36/de/d5cc31cc4b055b6c6fd990e3e7f0f8aaf36229a2698501bcb0cdf67c7146/pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2", size = 6084060, upload-time = "2025-07-01T09:14:49.636Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ea/502d938cbaeec836ac28a9b730193716f0114c41325db428e6b280513f09/pillow-11.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b", size = 6721407, upload-time = "2025-07-01T09:14:51.962Z" }, + { url = "https://files.pythonhosted.org/packages/45/9c/9c5e2a73f125f6cbc59cc7087c8f2d649a7ae453f83bd0362ff7c9e2aee2/pillow-11.3.0-cp313-cp313-win32.whl", hash = "sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3", size = 6273841, upload-time = "2025-07-01T09:14:54.142Z" }, + { url = "https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51", size = 6978450, upload-time = "2025-07-01T09:14:56.436Z" }, + { url = "https://files.pythonhosted.org/packages/17/d2/622f4547f69cd173955194b78e4d19ca4935a1b0f03a302d655c9f6aae65/pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580", size = 2423055, upload-time = "2025-07-01T09:14:58.072Z" }, + { url = "https://files.pythonhosted.org/packages/dd/80/a8a2ac21dda2e82480852978416cfacd439a4b490a501a288ecf4fe2532d/pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e", size = 5281110, upload-time = "2025-07-01T09:14:59.79Z" }, + { url = "https://files.pythonhosted.org/packages/44/d6/b79754ca790f315918732e18f82a8146d33bcd7f4494380457ea89eb883d/pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d", size = 4689547, upload-time = "2025-07-01T09:15:01.648Z" }, + { url = "https://files.pythonhosted.org/packages/49/20/716b8717d331150cb00f7fdd78169c01e8e0c219732a78b0e59b6bdb2fd6/pillow-11.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced", size = 5901554, upload-time = "2025-07-03T13:10:27.018Z" }, + { url = "https://files.pythonhosted.org/packages/74/cf/a9f3a2514a65bb071075063a96f0a5cf949c2f2fce683c15ccc83b1c1cab/pillow-11.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c", size = 7669132, upload-time = "2025-07-03T13:10:33.01Z" }, + { url = "https://files.pythonhosted.org/packages/98/3c/da78805cbdbee9cb43efe8261dd7cc0b4b93f2ac79b676c03159e9db2187/pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8", size = 6005001, upload-time = "2025-07-01T09:15:03.365Z" }, + { url = "https://files.pythonhosted.org/packages/6c/fa/ce044b91faecf30e635321351bba32bab5a7e034c60187fe9698191aef4f/pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59", size = 6668814, upload-time = "2025-07-01T09:15:05.655Z" }, + { url = "https://files.pythonhosted.org/packages/7b/51/90f9291406d09bf93686434f9183aba27b831c10c87746ff49f127ee80cb/pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe", size = 6113124, upload-time = "2025-07-01T09:15:07.358Z" }, + { url = "https://files.pythonhosted.org/packages/cd/5a/6fec59b1dfb619234f7636d4157d11fb4e196caeee220232a8d2ec48488d/pillow-11.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c", size = 6747186, upload-time = "2025-07-01T09:15:09.317Z" }, + { url = "https://files.pythonhosted.org/packages/49/6b/00187a044f98255225f172de653941e61da37104a9ea60e4f6887717e2b5/pillow-11.3.0-cp313-cp313t-win32.whl", hash = "sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788", size = 6277546, upload-time = "2025-07-01T09:15:11.311Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5c/6caaba7e261c0d75bab23be79f1d06b5ad2a2ae49f028ccec801b0e853d6/pillow-11.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31", size = 6985102, upload-time = "2025-07-01T09:15:13.164Z" }, + { url = "https://files.pythonhosted.org/packages/f3/7e/b623008460c09a0cb38263c93b828c666493caee2eb34ff67f778b87e58c/pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e", size = 2424803, upload-time = "2025-07-01T09:15:15.695Z" }, + { url = "https://files.pythonhosted.org/packages/73/f4/04905af42837292ed86cb1b1dabe03dce1edc008ef14c473c5c7e1443c5d/pillow-11.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12", size = 5278520, upload-time = "2025-07-01T09:15:17.429Z" }, + { url = "https://files.pythonhosted.org/packages/41/b0/33d79e377a336247df6348a54e6d2a2b85d644ca202555e3faa0cf811ecc/pillow-11.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a", size = 4686116, upload-time = "2025-07-01T09:15:19.423Z" }, + { url = "https://files.pythonhosted.org/packages/49/2d/ed8bc0ab219ae8768f529597d9509d184fe8a6c4741a6864fea334d25f3f/pillow-11.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0743841cabd3dba6a83f38a92672cccbd69af56e3e91777b0ee7f4dba4385632", size = 5864597, upload-time = "2025-07-03T13:10:38.404Z" }, + { url = "https://files.pythonhosted.org/packages/b5/3d/b932bb4225c80b58dfadaca9d42d08d0b7064d2d1791b6a237f87f661834/pillow-11.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2465a69cf967b8b49ee1b96d76718cd98c4e925414ead59fdf75cf0fd07df673", size = 7638246, upload-time = "2025-07-03T13:10:44.987Z" }, + { url = "https://files.pythonhosted.org/packages/09/b5/0487044b7c096f1b48f0d7ad416472c02e0e4bf6919541b111efd3cae690/pillow-11.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027", size = 5973336, upload-time = "2025-07-01T09:15:21.237Z" }, + { url = "https://files.pythonhosted.org/packages/a8/2d/524f9318f6cbfcc79fbc004801ea6b607ec3f843977652fdee4857a7568b/pillow-11.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77", size = 6642699, upload-time = "2025-07-01T09:15:23.186Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d2/a9a4f280c6aefedce1e8f615baaa5474e0701d86dd6f1dede66726462bbd/pillow-11.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874", size = 6083789, upload-time = "2025-07-01T09:15:25.1Z" }, + { url = "https://files.pythonhosted.org/packages/fe/54/86b0cd9dbb683a9d5e960b66c7379e821a19be4ac5810e2e5a715c09a0c0/pillow-11.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:98a9afa7b9007c67ed84c57c9e0ad86a6000da96eaa638e4f8abe5b65ff83f0a", size = 6720386, upload-time = "2025-07-01T09:15:27.378Z" }, + { url = "https://files.pythonhosted.org/packages/e7/95/88efcaf384c3588e24259c4203b909cbe3e3c2d887af9e938c2022c9dd48/pillow-11.3.0-cp314-cp314-win32.whl", hash = "sha256:02a723e6bf909e7cea0dac1b0e0310be9d7650cd66222a5f1c571455c0a45214", size = 6370911, upload-time = "2025-07-01T09:15:29.294Z" }, + { url = "https://files.pythonhosted.org/packages/2e/cc/934e5820850ec5eb107e7b1a72dd278140731c669f396110ebc326f2a503/pillow-11.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:a418486160228f64dd9e9efcd132679b7a02a5f22c982c78b6fc7dab3fefb635", size = 7117383, upload-time = "2025-07-01T09:15:31.128Z" }, + { url = "https://files.pythonhosted.org/packages/d6/e9/9c0a616a71da2a5d163aa37405e8aced9a906d574b4a214bede134e731bc/pillow-11.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6", size = 2511385, upload-time = "2025-07-01T09:15:33.328Z" }, + { url = "https://files.pythonhosted.org/packages/1a/33/c88376898aff369658b225262cd4f2659b13e8178e7534df9e6e1fa289f6/pillow-11.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae", size = 5281129, upload-time = "2025-07-01T09:15:35.194Z" }, + { url = "https://files.pythonhosted.org/packages/1f/70/d376247fb36f1844b42910911c83a02d5544ebd2a8bad9efcc0f707ea774/pillow-11.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653", size = 4689580, upload-time = "2025-07-01T09:15:37.114Z" }, + { url = "https://files.pythonhosted.org/packages/eb/1c/537e930496149fbac69efd2fc4329035bbe2e5475b4165439e3be9cb183b/pillow-11.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ee92f2fd10f4adc4b43d07ec5e779932b4eb3dbfbc34790ada5a6669bc095aa6", size = 5902860, upload-time = "2025-07-03T13:10:50.248Z" }, + { url = "https://files.pythonhosted.org/packages/bd/57/80f53264954dcefeebcf9dae6e3eb1daea1b488f0be8b8fef12f79a3eb10/pillow-11.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c96d333dcf42d01f47b37e0979b6bd73ec91eae18614864622d9b87bbd5bbf36", size = 7670694, upload-time = "2025-07-03T13:10:56.432Z" }, + { url = "https://files.pythonhosted.org/packages/70/ff/4727d3b71a8578b4587d9c276e90efad2d6fe0335fd76742a6da08132e8c/pillow-11.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b", size = 6005888, upload-time = "2025-07-01T09:15:39.436Z" }, + { url = "https://files.pythonhosted.org/packages/05/ae/716592277934f85d3be51d7256f3636672d7b1abfafdc42cf3f8cbd4b4c8/pillow-11.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477", size = 6670330, upload-time = "2025-07-01T09:15:41.269Z" }, + { url = "https://files.pythonhosted.org/packages/e7/bb/7fe6cddcc8827b01b1a9766f5fdeb7418680744f9082035bdbabecf1d57f/pillow-11.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50", size = 6114089, upload-time = "2025-07-01T09:15:43.13Z" }, + { url = "https://files.pythonhosted.org/packages/8b/f5/06bfaa444c8e80f1a8e4bff98da9c83b37b5be3b1deaa43d27a0db37ef84/pillow-11.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a1bc6ba083b145187f648b667e05a2534ecc4b9f2784c2cbe3089e44868f2b9b", size = 6748206, upload-time = "2025-07-01T09:15:44.937Z" }, + { url = "https://files.pythonhosted.org/packages/f0/77/bc6f92a3e8e6e46c0ca78abfffec0037845800ea38c73483760362804c41/pillow-11.3.0-cp314-cp314t-win32.whl", hash = "sha256:118ca10c0d60b06d006be10a501fd6bbdfef559251ed31b794668ed569c87e12", size = 6377370, upload-time = "2025-07-01T09:15:46.673Z" }, + { url = "https://files.pythonhosted.org/packages/4a/82/3a721f7d69dca802befb8af08b7c79ebcab461007ce1c18bd91a5d5896f9/pillow-11.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:8924748b688aa210d79883357d102cd64690e56b923a186f35a82cbc10f997db", size = 7121500, upload-time = "2025-07-01T09:15:48.512Z" }, + { url = "https://files.pythonhosted.org/packages/89/c7/5572fa4a3f45740eaab6ae86fcdf7195b55beac1371ac8c619d880cfe948/pillow-11.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa", size = 2512835, upload-time = "2025-07-01T09:15:50.399Z" }, +] + +[[package]] +name = "pydantic" +version = "2.11.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types" }, + { name = "pydantic-core" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/dd/4325abf92c39ba8623b5af936ddb36ffcfe0beae70405d456ab1fb2f5b8c/pydantic-2.11.7.tar.gz", hash = "sha256:d989c3c6cb79469287b1569f7447a17848c998458d49ebe294e975b9baf0f0db", size = 788350, upload-time = "2025-06-14T08:33:17.137Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl", hash = "sha256:dde5df002701f6de26248661f6835bbe296a47bf73990135c7d07ce741b9623b", size = 444782, upload-time = "2025-06-14T08:33:14.905Z" }, +] + +[[package]] +name = "pydantic-core" +version = "2.33.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz", hash = "sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc", size = 435195, upload-time = "2025-04-23T18:33:52.104Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/8a/2b41c97f554ec8c71f2a8a5f85cb56a8b0956addfe8b0efb5b3d77e8bdc3/pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc", size = 2009000, upload-time = "2025-04-23T18:31:25.863Z" }, + { url = "https://files.pythonhosted.org/packages/a1/02/6224312aacb3c8ecbaa959897af57181fb6cf3a3d7917fd44d0f2917e6f2/pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7", size = 1847996, upload-time = "2025-04-23T18:31:27.341Z" }, + { url = "https://files.pythonhosted.org/packages/d6/46/6dcdf084a523dbe0a0be59d054734b86a981726f221f4562aed313dbcb49/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025", size = 1880957, upload-time = "2025-04-23T18:31:28.956Z" }, + { url = "https://files.pythonhosted.org/packages/ec/6b/1ec2c03837ac00886ba8160ce041ce4e325b41d06a034adbef11339ae422/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011", size = 1964199, upload-time = "2025-04-23T18:31:31.025Z" }, + { url = "https://files.pythonhosted.org/packages/2d/1d/6bf34d6adb9debd9136bd197ca72642203ce9aaaa85cfcbfcf20f9696e83/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f", size = 2120296, upload-time = "2025-04-23T18:31:32.514Z" }, + { url = "https://files.pythonhosted.org/packages/e0/94/2bd0aaf5a591e974b32a9f7123f16637776c304471a0ab33cf263cf5591a/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88", size = 2676109, upload-time = "2025-04-23T18:31:33.958Z" }, + { url = "https://files.pythonhosted.org/packages/f9/41/4b043778cf9c4285d59742281a769eac371b9e47e35f98ad321349cc5d61/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1", size = 2002028, upload-time = "2025-04-23T18:31:39.095Z" }, + { url = "https://files.pythonhosted.org/packages/cb/d5/7bb781bf2748ce3d03af04d5c969fa1308880e1dca35a9bd94e1a96a922e/pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b", size = 2100044, upload-time = "2025-04-23T18:31:41.034Z" }, + { url = "https://files.pythonhosted.org/packages/fe/36/def5e53e1eb0ad896785702a5bbfd25eed546cdcf4087ad285021a90ed53/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1", size = 2058881, upload-time = "2025-04-23T18:31:42.757Z" }, + { url = "https://files.pythonhosted.org/packages/01/6c/57f8d70b2ee57fc3dc8b9610315949837fa8c11d86927b9bb044f8705419/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6", size = 2227034, upload-time = "2025-04-23T18:31:44.304Z" }, + { url = "https://files.pythonhosted.org/packages/27/b9/9c17f0396a82b3d5cbea4c24d742083422639e7bb1d5bf600e12cb176a13/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea", size = 2234187, upload-time = "2025-04-23T18:31:45.891Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6a/adf5734ffd52bf86d865093ad70b2ce543415e0e356f6cacabbc0d9ad910/pydantic_core-2.33.2-cp312-cp312-win32.whl", hash = "sha256:9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290", size = 1892628, upload-time = "2025-04-23T18:31:47.819Z" }, + { url = "https://files.pythonhosted.org/packages/43/e4/5479fecb3606c1368d496a825d8411e126133c41224c1e7238be58b87d7e/pydantic_core-2.33.2-cp312-cp312-win_amd64.whl", hash = "sha256:f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2", size = 1955866, upload-time = "2025-04-23T18:31:49.635Z" }, + { url = "https://files.pythonhosted.org/packages/0d/24/8b11e8b3e2be9dd82df4b11408a67c61bb4dc4f8e11b5b0fc888b38118b5/pydantic_core-2.33.2-cp312-cp312-win_arm64.whl", hash = "sha256:cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab", size = 1888894, upload-time = "2025-04-23T18:31:51.609Z" }, + { url = "https://files.pythonhosted.org/packages/46/8c/99040727b41f56616573a28771b1bfa08a3d3fe74d3d513f01251f79f172/pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f", size = 2015688, upload-time = "2025-04-23T18:31:53.175Z" }, + { url = "https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6", size = 1844808, upload-time = "2025-04-23T18:31:54.79Z" }, + { url = "https://files.pythonhosted.org/packages/6f/5e/a0a7b8885c98889a18b6e376f344da1ef323d270b44edf8174d6bce4d622/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef", size = 1885580, upload-time = "2025-04-23T18:31:57.393Z" }, + { url = "https://files.pythonhosted.org/packages/3b/2a/953581f343c7d11a304581156618c3f592435523dd9d79865903272c256a/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a", size = 1973859, upload-time = "2025-04-23T18:31:59.065Z" }, + { url = "https://files.pythonhosted.org/packages/e6/55/f1a813904771c03a3f97f676c62cca0c0a4138654107c1b61f19c644868b/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916", size = 2120810, upload-time = "2025-04-23T18:32:00.78Z" }, + { url = "https://files.pythonhosted.org/packages/aa/c3/053389835a996e18853ba107a63caae0b9deb4a276c6b472931ea9ae6e48/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a", size = 2676498, upload-time = "2025-04-23T18:32:02.418Z" }, + { url = "https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d", size = 2000611, upload-time = "2025-04-23T18:32:04.152Z" }, + { url = "https://files.pythonhosted.org/packages/59/a7/63ef2fed1837d1121a894d0ce88439fe3e3b3e48c7543b2a4479eb99c2bd/pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56", size = 2107924, upload-time = "2025-04-23T18:32:06.129Z" }, + { url = "https://files.pythonhosted.org/packages/04/8f/2551964ef045669801675f1cfc3b0d74147f4901c3ffa42be2ddb1f0efc4/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5", size = 2063196, upload-time = "2025-04-23T18:32:08.178Z" }, + { url = "https://files.pythonhosted.org/packages/26/bd/d9602777e77fc6dbb0c7db9ad356e9a985825547dce5ad1d30ee04903918/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e", size = 2236389, upload-time = "2025-04-23T18:32:10.242Z" }, + { url = "https://files.pythonhosted.org/packages/42/db/0e950daa7e2230423ab342ae918a794964b053bec24ba8af013fc7c94846/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162", size = 2239223, upload-time = "2025-04-23T18:32:12.382Z" }, + { url = "https://files.pythonhosted.org/packages/58/4d/4f937099c545a8a17eb52cb67fe0447fd9a373b348ccfa9a87f141eeb00f/pydantic_core-2.33.2-cp313-cp313-win32.whl", hash = "sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849", size = 1900473, upload-time = "2025-04-23T18:32:14.034Z" }, + { url = "https://files.pythonhosted.org/packages/a0/75/4a0a9bac998d78d889def5e4ef2b065acba8cae8c93696906c3a91f310ca/pydantic_core-2.33.2-cp313-cp313-win_amd64.whl", hash = "sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9", size = 1955269, upload-time = "2025-04-23T18:32:15.783Z" }, + { url = "https://files.pythonhosted.org/packages/f9/86/1beda0576969592f1497b4ce8e7bc8cbdf614c352426271b1b10d5f0aa64/pydantic_core-2.33.2-cp313-cp313-win_arm64.whl", hash = "sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9", size = 1893921, upload-time = "2025-04-23T18:32:18.473Z" }, + { url = "https://files.pythonhosted.org/packages/a4/7d/e09391c2eebeab681df2b74bfe6c43422fffede8dc74187b2b0bf6fd7571/pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac", size = 1806162, upload-time = "2025-04-23T18:32:20.188Z" }, + { url = "https://files.pythonhosted.org/packages/f1/3d/847b6b1fed9f8ed3bb95a9ad04fbd0b212e832d4f0f50ff4d9ee5a9f15cf/pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5", size = 1981560, upload-time = "2025-04-23T18:32:22.354Z" }, + { url = "https://files.pythonhosted.org/packages/6f/9a/e73262f6c6656262b5fdd723ad90f518f579b7bc8622e43a942eec53c938/pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl", hash = "sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9", size = 1935777, upload-time = "2025-04-23T18:32:25.088Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608, upload-time = "2025-03-25T05:01:28.114Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120, upload-time = "2025-03-25T05:01:24.908Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "pytz" +version = "2025.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884, upload-time = "2025-03-25T02:25:00.538Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" }, +] + +[[package]] +name = "setuptools" +version = "80.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/5d/3bf57dcd21979b887f014ea83c24ae194cfcd12b9e0fda66b957c69d1fca/setuptools-80.9.0.tar.gz", hash = "sha256:f36b47402ecde768dbfafc46e8e4207b4360c654f1f3bb84475f0a28628fb19c", size = 1319958, upload-time = "2025-05-27T00:56:51.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl", hash = "sha256:062d34222ad13e0cc312a4c02d73f059e86a4acbfbdea8f8f76b28c99f306922", size = 1201486, upload-time = "2025-05-27T00:56:49.664Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" }, +] + +[[package]] +name = "starlette" +version = "0.47.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/15/b9/cc3017f9a9c9b6e27c5106cc10cc7904653c3eec0729793aec10479dd669/starlette-0.47.3.tar.gz", hash = "sha256:6bc94f839cc176c4858894f1f8908f0ab79dfec1a6b8402f6da9be26ebea52e9", size = 2584144, upload-time = "2025-08-24T13:36:42.122Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/fd/901cfa59aaa5b30a99e16876f11abe38b59a1a2c51ffb3d7142bb6089069/starlette-0.47.3-py3-none-any.whl", hash = "sha256:89c0778ca62a76b826101e7c709e70680a1699ca7da6b44d38eb0a7e61fe4b51", size = 72991, upload-time = "2025-08-24T13:36:40.887Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + +[[package]] +name = "torch" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufile-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparselt-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvjitlink-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "setuptools" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/0c/2fd4df0d83a495bb5e54dca4474c4ec5f9c62db185421563deeb5dabf609/torch-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e2fab4153768d433f8ed9279c8133a114a034a61e77a3a104dcdf54388838705", size = 101906089, upload-time = "2025-08-06T14:53:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/99/a8/6acf48d48838fb8fe480597d98a0668c2beb02ee4755cc136de92a0a956f/torch-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2aca0939fb7e4d842561febbd4ffda67a8e958ff725c1c27e244e85e982173c", size = 887913624, upload-time = "2025-08-06T14:56:44.33Z" }, + { url = "https://files.pythonhosted.org/packages/af/8a/5c87f08e3abd825c7dfecef5a0f1d9aa5df5dd0e3fd1fa2f490a8e512402/torch-2.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:2f4ac52f0130275d7517b03a33d2493bab3693c83dcfadf4f81688ea82147d2e", size = 241326087, upload-time = "2025-08-06T14:53:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/be/66/5c9a321b325aaecb92d4d1855421e3a055abd77903b7dab6575ca07796db/torch-2.8.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:619c2869db3ada2c0105487ba21b5008defcc472d23f8b80ed91ac4a380283b0", size = 73630478, upload-time = "2025-08-06T14:53:57.144Z" }, + { url = "https://files.pythonhosted.org/packages/10/4e/469ced5a0603245d6a19a556e9053300033f9c5baccf43a3d25ba73e189e/torch-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2b2f96814e0345f5a5aed9bf9734efa913678ed19caf6dc2cddb7930672d6128", size = 101936856, upload-time = "2025-08-06T14:54:01.526Z" }, + { url = "https://files.pythonhosted.org/packages/16/82/3948e54c01b2109238357c6f86242e6ecbf0c63a1af46906772902f82057/torch-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:65616ca8ec6f43245e1f5f296603e33923f4c30f93d65e103d9e50c25b35150b", size = 887922844, upload-time = "2025-08-06T14:55:50.78Z" }, + { url = "https://files.pythonhosted.org/packages/e3/54/941ea0a860f2717d86a811adf0c2cd01b3983bdd460d0803053c4e0b8649/torch-2.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:659df54119ae03e83a800addc125856effda88b016dfc54d9f65215c3975be16", size = 241330968, upload-time = "2025-08-06T14:54:45.293Z" }, + { url = "https://files.pythonhosted.org/packages/de/69/8b7b13bba430f5e21d77708b616f767683629fc4f8037564a177d20f90ed/torch-2.8.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:1a62a1ec4b0498930e2543535cf70b1bef8c777713de7ceb84cd79115f553767", size = 73915128, upload-time = "2025-08-06T14:54:34.769Z" }, + { url = "https://files.pythonhosted.org/packages/15/0e/8a800e093b7f7430dbaefa80075aee9158ec22e4c4fc3c1a66e4fb96cb4f/torch-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:83c13411a26fac3d101fe8035a6b0476ae606deb8688e904e796a3534c197def", size = 102020139, upload-time = "2025-08-06T14:54:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/4a/15/5e488ca0bc6162c86a33b58642bc577c84ded17c7b72d97e49b5833e2d73/torch-2.8.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:8f0a9d617a66509ded240add3754e462430a6c1fc5589f86c17b433dd808f97a", size = 887990692, upload-time = "2025-08-06T14:56:18.286Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a8/6a04e4b54472fc5dba7ca2341ab219e529f3c07b6941059fbf18dccac31f/torch-2.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a7242b86f42be98ac674b88a4988643b9bc6145437ec8f048fea23f72feb5eca", size = 241603453, upload-time = "2025-08-06T14:55:22.945Z" }, + { url = "https://files.pythonhosted.org/packages/04/6e/650bb7f28f771af0cb791b02348db8b7f5f64f40f6829ee82aa6ce99aabe/torch-2.8.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:7b677e17f5a3e69fdef7eb3b9da72622f8d322692930297e4ccb52fefc6c8211", size = 73632395, upload-time = "2025-08-06T14:55:28.645Z" }, +] + +[[package]] +name = "triton" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/66/b1eb52839f563623d185f0927eb3530ee4d5ffe9d377cdaf5346b306689e/triton-3.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c1d84a5c0ec2c0f8e8a072d7fd150cab84a9c239eaddc6706c081bfae4eb04", size = 155560068, upload-time = "2025-07-30T19:58:37.081Z" }, + { url = "https://files.pythonhosted.org/packages/30/7b/0a685684ed5322d2af0bddefed7906674f67974aa88b0fae6e82e3b766f6/triton-3.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00be2964616f4c619193cb0d1b29a99bd4b001d7dc333816073f92cf2a8ccdeb", size = 155569223, upload-time = "2025-07-30T19:58:44.017Z" }, + { url = "https://files.pythonhosted.org/packages/20/63/8cb444ad5cdb25d999b7d647abac25af0ee37d292afc009940c05b82dda0/triton-3.4.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7936b18a3499ed62059414d7df563e6c163c5e16c3773678a3ee3d417865035d", size = 155659780, upload-time = "2025-07-30T19:58:51.171Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "typing-inspection" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/b1/0c11f5058406b3af7609f121aaa6b609744687f1d158b3c3a5bf4cc94238/typing_inspection-0.4.1.tar.gz", hash = "sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28", size = 75726, upload-time = "2025-05-21T18:55:23.885Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl", hash = "sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51", size = 14552, upload-time = "2025-05-21T18:55:22.152Z" }, +] + +[[package]] +name = "tzdata" +version = "2025.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380, upload-time = "2025-03-23T13:54:43.652Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" }, +] + +[[package]] +name = "uvicorn" +version = "0.35.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/42/e0e305207bb88c6b8d3061399c6a961ffe5fbb7e2aa63c9234df7259e9cd/uvicorn-0.35.0.tar.gz", hash = "sha256:bc662f087f7cf2ce11a1d7fd70b90c9f98ef2e2831556dd078d131b96cc94a01", size = 78473, upload-time = "2025-06-28T16:15:46.058Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/e2/dc81b1bd1dcfe91735810265e9d26bc8ec5da45b4c0f6237e286819194c3/uvicorn-0.35.0-py3-none-any.whl", hash = "sha256:197535216b25ff9b785e29a0b79199f55222193d47f820816e7da751e9bc8d4a", size = 66406, upload-time = "2025-06-28T16:15:44.816Z" }, +]